diff --git a/.claude/skills/rtl-docker-fixture/SKILL.md b/.claude/skills/rtl-docker-fixture/SKILL.md new file mode 100644 index 00000000..ac333923 --- /dev/null +++ b/.claude/skills/rtl-docker-fixture/SKILL.md @@ -0,0 +1,98 @@ +--- +name: rtl-docker-fixture +description: Bring up and use the docker/ regtest fixture (bitcoind + LND alice/bob/carol + Core Lightning + Eclair + RTL) to test RTL end-to-end. Use when testing a branch against real Lightning nodes, seeding channels and payments, driving RTL's API for verification, taking screenshots of live data, or reproducing disconnected-peer states. +--- + +# Testing against a live network — `docker/` regtest fixture + +`docker/` is a self-contained regtest network for developing and testing RTL end-to-end: +`bitcoind` + three LND nodes (**alice → bob → carol**) + a **Core Lightning node** (`cln`, +with a channel to alice) + RTL wired to all four. bob sits in the middle so it accrues +forwarding history and RTL's routing screens have data; the CLN node gives RTL's Core +Lightning screens a real backend (it talks to RTL over clnrest with rune auth). LND/bitcoind +images come from [Polar](https://lightningpolar.com), CLN from `elementsproject/lightningd` +(all multi-arch, so it works on Apple Silicon). **Dev only; every credential is throwaway.** +Full details in `docker/README.md`. + +Bring it up (from `docker/`, needs Compose v2 — `docker compose`, not `docker-compose`): + +```bash +docker compose up -d # bitcoind, alice, bob, carol, cln, rtl +./scripts/seed.sh # fund, connect, open channels, make payments +``` + +Then open , password `rtldev`; all four nodes show in the switcher. +Reset to a clean slate: `docker compose down -v && docker compose up -d && ./scripts/seed.sh`. + +Helpers and logs: + +```bash +bin/b-cli getblockcount # bitcoin-cli +bin/ln-cli alice getinfo # lncli (node name required; handles --lnddir) +bin/ln-cli bob fwdinghistory +docker compose logs -f rtl +``` + +Testing the **BTCPay Server integration** (RTL in single-sign-on mode behind a proxy) — +behind a compose profile, so a plain `up` does not start it: + +```bash +docker compose --profile sso up -d +./scripts/verify-sso.sh # 11 assertions over the whole entry path; non-zero on failure +open "$(bin/sso-url)" # the link BTCPay renders on its Services page +``` + +Key facts when working with the fixture: + +- **Run `scripts/verify-sso.sh` after touching authentication, CSRF or static serving.** + BTCPay reaches RTL over a path the standalone login never exercises — a rotating cookie + file, an unregistered `/rtl/api/authenticate/cookie` URL that falls through to the + catch-all in `server/utils/app.ts`, and a reverse proxy. Note `GET /rtl/` is served by + `express.static` and mints **no** `XSRF-TOKEN`; only the catch-all does, so a client + entering there 403s on its first POST. That is long-standing, not a regression. +- **`scripts/seed.sh` is deterministic but not idempotent.** Every amount is fixed, so a + fresh run always produces identical state (screenshots differ only by your change) — so + **do not introduce randomness**. It refuses to run twice against an already-seeded + network; use the `down -v` reset above to start over. +- Seed creates: 10M sat on-chain per node; channels alice→bob (5M), bob→carol (3M), + cln→alice (4M) and eclair→bob (3.5M); 5 routed alice→carol payments + 2 direct + alice→bob + 2 direct eclair→bob; 2 unpaid invoices on carol + 1 on eclair; + carol as MERCHANT, everyone else OPERATOR. +- **`rtl/RTL-Config.regtest.json`** is the tracked config template. RTL rewrites its config + on startup, so an init container copies it into a volume rather than bind-mounting it + (a read-only mount → `EROFS`; a writable one would edit a tracked file). It's not named + `RTL-Config.json` because `.gitignore` matches that bare name at any depth. +- **Payments right after a channel opens fail** until the graph propagates to the sender; + the seed waits for this and so should anything you script. +- **Eclair node** (`eclair`, `polarlightning/eclair` — the official `acinq/eclair` image is + amd64-only and stale): RTL talks to its HTTP API with basic auth (`lnApiPassword`). Eclair + has no wallet of its own — `eclair-wallet-init` creates a dedicated `eclair` bitcoind + wallet before it starts, else it grabs the mining wallet. Its channels confirm at 8 blocks + (`channel.min-depth-blocks`), not 6. Helper: `bin/e-cli `. +- **Not included:** the Boltz swap service. + +## Testing an unreleased branch against the fixture + +The `rtl` service defaults to a published image but is overridable — build your branch and +point the fixture at it: + +```bash +docker build -t rtl:pr . # from repo root (RTL/) +cd docker && RTL_IMAGE=rtl:pr docker compose up -d +``` + +To confirm your change is actually running, grep inside the container: compiled backend at +`/RTL/backend/...`, built frontend bundle at `/RTL/frontend/*.js`. + +- **Reproduce a disconnected CLN channel** (to exercise `peer_connected` states): the `cln` + node has a channel to alice, so `docker compose stop alice` flips it to disconnected within + ~1s. Gotcha: **`docker compose up -d rtl` restarts stopped dependencies** (rtl `depends_on` + them), silently reconnecting the peer — don't re-run `up` on rtl mid-test. Restore with + `docker compose start alice`. +- **Driving RTL's API for verification** (host→container network is often blocked; run a Node + script via `docker compose exec -T rtl node < script.js`): the base href is `/rtl`, so all + API paths are `/rtl/api/...`; auth needs the CSRF handshake (`GET /` for the `XSRF-TOKEN`, + echoed as an `x-xsrf-token` header) and a **SHA256-hashed** password; and you must call + `/rtl/api/cln/getinfo` before CLN channel endpoints (it initializes the session's rune auth, + else `listPeerChannels` 401s). Prefer verifying the data layer (API) separately from frontend + rendering — a template can crash mid-render while the API returns correct data. diff --git a/.github/README.md b/.github/README.md index f56825cd..e478d9b6 100644 --- a/.github/README.md +++ b/.github/README.md @@ -4,7 +4,7 @@ Known Vulnerabilities [![license](https://img.shields.io/github/license/DAVFoundation/captain-n3m0.svg?style=flat-square)](https://github.com/DAVFoundation/captain-n3m0/blob/master/LICENSE) -**Intro** -- [Application Features](./docs/Application_features.md) -- [Road Map](./docs/Roadmap.md) -- [Application Configurations](./docs/Application_configurations.md) -- [Core Lightning](./docs/Core_lightning_setup.md) -- [Eclair](./docs/Eclair_setup.md) -- [Contribution](./docs/Contributing.md) +**Intro** -- [Application Features](./docs/Application_features.md) -- [Road Map](./docs/Roadmap.md) -- [Application Configurations](./docs/Application_configurations.md) -- [Core Lightning](./docs/Core_lightning_setup.md) -- [Eclair](./docs/Eclair_setup.md) -- [Contribution](./docs/Contributing.md) -- [Release Notes](../release-notes) * [Introduction](#intro) * [Architecture](#arch) @@ -124,6 +124,8 @@ For details on all the configuration options refer to [this page](./docs/Applica RTL requires the user to be authenticated by the application first, before allowing access to LND functions. Specific password must be provided in RTL-Config.json (in plain text) for authentication. Password should be set with `multiPass:` in the `Authentication` section of RTL-Config.json. Default initial password is `password`. +For hosted solutions such as BTCPayServer, we implemented an "SSO" setup using a one-time-use cookie. For other vendors which have their own authentication service, we introduced a "disableAuth" option, which disables authentication at the RTL level. When using this option, the authentication security is the responsibility of the Vendor. This option is NOT recommended for standalone users of RTL. + ### Start the Server Run the following command: diff --git a/.github/docs/Application_configurations.md b/.github/docs/Application_configurations.md index 2e89e958..59e79ee4 100644 --- a/.github/docs/Application_configurations.md +++ b/.github/docs/Application_configurations.md @@ -5,7 +5,8 @@ parameters have `default` values for initial setup and can be updated after RTL ### RTL-Config.json
``` { - "multiPass": "", + "multiPass": "", + "disableAuth": "", "port": "", "host": "", "defaultNodeIndex": , @@ -55,7 +56,8 @@ If the environment variables are set, it will take precedence over the parameter PORT (port number for the rtl node server, default 3000, Optional)
HOST (host for the rtl node server, default localhost, Optional)
DB_DIRECTORY_PATH (Path for the folder where rtl database file should be saved, default RTL root directory, Optional) -APP_PASSWORD (Plaintext password to be provided by the parent container, NOT suggested for standalone RTL applications, to be used by Umbrel) (Optional)
+APP_PASSWORD (Plaintext password to be provided by the parent container, NOT suggested for standalone RTL applications, only to be used by Vendors providing their own authentication service) (Optional)
+DISABLE_AUTH (Flag to disable authentication, NOT recommended for standalone RTL applications, only to be used by Vendors providing their own authentication service) (Optional)
LN_SERVER_URL (LN server URL for LNP REST APIs, default https://127.0.0.1:8080) (Optional)
SWAP_SERVER_URL (Swap server URL for REST APIs, default http://127.0.0.1:8081) (Optional)
diff --git a/.github/workflows/rtlreviewbot.yml b/.github/workflows/rtlreviewbot.yml new file mode 100644 index 00000000..b54eeeea --- /dev/null +++ b/.github/workflows/rtlreviewbot.yml @@ -0,0 +1,31 @@ + name: rtlreviewbot + + on: + issue_comment: + types: [created] + pull_request: + types: [review_requested, closed] + + permissions: + contents: read + + jobs: + review: + if: ${{ github.event_name != 'issue_comment' || github.event.issue.pull_request != null }} + runs-on: ubuntu-latest + timeout-minutes: 20 + steps: + - uses: Ride-The-Lightning/rtlreviewbot-action@main + with: + event_name: ${{ github.event_name }} + event_action: ${{ github.event.action }} + repo: ${{ github.repository }} + pr_number: ${{ github.event.issue.number || github.event.pull_request.number }} + actor: ${{ github.event.sender.login }} + comment_body: ${{ github.event.comment.body }} + comment_id: ${{ github.event.comment.id }} + installation_id: 127679607 + app_id: ${{ secrets.GATEWAY_APP_ID }} + private_key: ${{ secrets.GATEWAY_PRIVATE_KEY }} + anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} + claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 00000000..6fbba349 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,122 @@ +# RTL — notes for AI coding agents + +RTL (Ride The Lightning) is a device-agnostic web UI for Lightning node operations: +an Angular single-page frontend plus a Node/Express backend, both TypeScript. + +`CONTRIBUTING.md` is the process document — how to install, run the dev servers, package a +build, open a PR, add a library, and handle Dependabot. **Read it first.** This file covers +only the things that are easy to get wrong and aren't obvious from the tree. + +## Source vs. generated — read this before editing anything + +| Directory | What it is | Edit it? | +|-------------|-----------------------------------|----------| +| `src/` | Angular frontend source | yes | +| `server/` | Express backend source | yes | +| `frontend/` | Built AOT bundle, **committed** | never by hand | +| `backend/` | Compiled `server/` output, **committed** | never by hand | + +`frontend/` and `backend/` look like ignorable build artifacts, but they are tracked in git +and are expected to stay in sync with the sources. So a code change is a two-step edit: +change `src/`/`server/`, then rebuild and commit the regenerated output in the same PR. + +```bash +npm run buildbackend # tsc: server/ -> backend/ +npm run buildfrontend # ng build --configuration production: src/ -> frontend/ +``` + +`backend/` is a plain `tsc` transpile of `server/`, so it changes only when `server/` does — +a dependency bump alone won't move it. `frontend/` is a bundle, so it also carries the app +version and any bundled dependency. + +## The three-implementation pattern + +RTL supports three Lightning implementations, and the layout mirrors that everywhere: + +``` +src/app/{lnd,cln,eclair,shared}/ +server/controllers/{lnd,cln,eclair,shared}/ +server/routes/{lnd,cln,eclair,shared}/ +``` + +A feature or fix usually touches the matching folder in **each layer** for the +implementations it affects; genuinely cross-cutting logic belongs in `shared/`. When fixing a +bug in one implementation, check whether the same shape exists in the other two — they +frequently do, since the controllers were written in parallel. + +## Commands, and where they bite + +- **Install with `npm ci --legacy-peer-deps`**, not `npm install`. Plain `npm ci` fails on an + `ERESOLVE` conflict from `@fortawesome/angular-fontawesome`. +- **`npm run server` only works on Windows** — it sets `NODE_ENV` with `set X=Y&&` syntax. On + macOS/Linux use `npm run serverUbuntu`. +- **`npm run lint` and `npm run test` must both be green before a PR.** Nothing will check + this for you: no build or test CI runs on an open PR. `checks.yml` fires on + `pull_request: closed` (i.e. on merge) and on tags/releases, and `rtlreviewbot` only on a + requested review or a comment — so running both locally is the only gate before merge. +- If lint reports hundreds of template "Parsing error" failures, look for a stale + **`coverage/`** directory (git-ignored Karma output). The template linter walks its HTML + report. Delete it and re-run. +- The repo README is at **`.github/README.md`** — there is none at the root. + +## Branches and releases + +- **PRs target the current `Release-x.y.z` branch, not `master`.** Because release branches + merge into `master` by *rebase*, a `Fixes #N` reference never auto-closes its issue (GitHub + only does that for the default branch) — close it manually after the merge. +- **Every PR adds its own release-note entry**, in the same PR as the change: + `release-notes/Release-notes-.md`, under `## Bug Fixes`, `## Enhancements`, + `## Code Health` or `## Developer Tooling`. Create the file if it doesn't exist yet. + Link the PR and any issue, and state the root cause briefly. Because the PR number isn't + known until the PR exists, commit the entry with `#TBD` and follow up with a + `Fill in PR number in release note (#N)` commit. + +### If a release ships while your PR is open + +The rebase-merge rewrites every commit of the release branch to a new hash, and the next +release branch is cut from `master` — so a branch based on the old release branch shares no +recent ancestor with the new one. Retargeting it makes the merge base collapse to before the +release cycle, and GitHub replays the entire cycle into your PR: hundreds of files, and a +`CONFLICTING` state. Replay just your own commits instead: + +```bash +git rebase --onto Release- Release- +``` + +Then confirm `git diff Release-..` is identical to +`git diff Release-..` before force-pushing. Retargeting *before* the release +branch is merged avoids the problem entirely. + +## Testing against real nodes + +`docker/` is a self-contained regtest fixture — bitcoind, three LND nodes, Core Lightning and +Eclair, wired to RTL — for end-to-end testing across all three implementations. See +`docker/README.md`, or the `rtl-docker-fixture` skill in `.claude/skills/`. It is dev-only; +every credential in it is throwaway. + +The fixture also carries a **BTCPay Server SSO harness** behind a compose profile +(`docker compose --profile sso up -d`). BTCPay bundles RTL and reaches it over a path the +standalone login never exercises: a rotating cookie file, an unregistered +`/rtl/api/authenticate/cookie` URL that is not a route at all and falls through to the +catch-all in `server/utils/app.ts`, and a reverse proxy serving it under `/rtl`. Run +`docker/scripts/verify-sso.sh` (11 assertions, exits non-zero) after touching +authentication, CSRF or static serving — none of that path is covered by logging into the +fixture's own RTL. One trap it encodes: `GET /rtl/` is served by `express.static`, which +sits above the catch-all and mints no `XSRF-TOKEN`, so a client entering there gets a 403 +on its first POST. That is long-standing behaviour, not a regression. + +Backend regression tests live in `test/backend/` (plain `node:test`, run against the +compiled `backend/`). `npm run test` compiles the backend, then runs them +(`npm run testbackend`) before the frontend Karma/Jasmine specs, so they never test stale +code. For backend changes, also verify against the fixture and say so in the PR. + +## Conventions + +- **Be conservative about dependencies.** This is security-sensitive software. Prefer what's + already there, and raise an issue before adding anything. Never run `npm audit fix` — it + reaches for breaking major bumps. Dependabot PRs are batched, not merged individually; see + `CONTRIBUTING.md`. +- Match the surrounding code's style, naming and structure. Only fix style in code you're + already changing. +- `RTL-Config.json` is local runtime config and git-ignored; `Sample-RTL-Config.json` is the + template, and `RTL.conf` is an alternate config format. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index dfc0b50d..579d7e84 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -77,3 +77,15 @@ Contributions via code is the most sought after contribution and something we en * We are conservative in adding new dependencies to the repository. Do your best to not add any new libraries on RTL. We believe this is the best strategy to keep the software safe from vulnerabilites. * Confirm before starting by creating an issue about adding the library * The library should be popular, well maintained and pre-existing vulnerability free. + +##### Handling Dependabot PRs (dependency updates) +Dependabot files its security PRs against `master`, but they are not merged individually: they conflict with each other on `package-lock.json`, and `master` only advances when a release is merged. Instead, all open Dependabot alerts are resolved together in a single dependency-update PR against the current release branch (see [#1633](https://github.com/Ride-The-Lightning/RTL/pull/1633) for an example). The process: + +1. **Collect the targets.** Gather the fixed versions from every open Dependabot PR. Also review `npm audit` for findings *without* an open Dependabot PR — many are fixable in the same pass, and exact version pins in `package.json` can hide an available in-range fix for a direct dependency (check `fixAvailable` in `npm audit --json`). +2. **Apply the bumps.** Update the pins in `package.json` for direct dependencies (Dependabot's validated version for runtime deps; the latest patch of the same minor for build tooling). Keep all `@angular/*` framework packages on a single version, and the CLI line (`@angular/cli`, `@angular/build`, `@angular-devkit/build-angular`) on its own matching version — Angular is under devDependencies but is compiled into the shipped frontend bundle. Never run a blanket `npm audit fix`. +3. **Regenerate the lockfile from scratch.** Delete `package-lock.json` and run `npm install --legacy-peer-deps`. This produces one clean, fully re-resolved tree instead of an incrementally patched lockfile, and typically picks up additional in-range fixes for deep transitive dependencies. +4. **Rebuild the compiled outputs.** Run `npm run buildbackend && npm run buildfrontend` and commit the regenerated `backend/` and `frontend/` artifacts along with `package.json` and `package-lock.json`, so the shipped bundles match the updated dependency tree. +5. **Verify before opening the PR.** `npm run lint`, `npm run test`, and a functional check against real nodes — the regtest fixture under `docker/` covers all three implementations (see `docker/README.md`). +6. **Open one PR** against the current release branch with a release-note entry summarizing the before/after `npm audit` counts. Once the release branch is merged to `master`, Dependabot closes its superseded PRs automatically. + +Vulnerabilities in deprecated packages (e.g. an unmaintained dependency with no fixed release) cannot be resolved by version bumps — track those in a dedicated issue for a code-level replacement instead of leaving them in the batch PR. diff --git a/LICENSE b/LICENSE index 59adeea4..9d875ab6 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 Shahana Farooqui +Copyright (c) 2018-2026 Shahana Farooqui Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/backend/controllers/cln/channels.js b/backend/controllers/cln/channels.js index f9b31ba3..b9e0eece 100644 --- a/backend/controllers/cln/channels.js +++ b/backend/controllers/cln/channels.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { getAlias } from './network.js'; @@ -21,6 +21,11 @@ export const listPeerChannels = (req, res, next) => { const getPeerAliasesTasks = body.channels.map((channel) => () => { channel.to_them_msat = channel.total_msat - channel.to_us_msat; channel.balancedness = (channel.total_msat === 0) ? 1 : (1 - Math.abs((channel.to_us_msat - channel.to_them_msat) / channel.total_msat)).toFixed(3); + // listpeerchannels reports connection state as peer_connected. Mirror it onto the + // documented legacy 'connected' field (see the Channel model) as a real boolean, so + // any backward-compat consumer of this endpoint gets a defined true/false rather than + // undefined when peer_connected is absent (issue #1606). + channel.connected = !!channel.peer_connected; return getAlias(req.session.selectedNode, channel, 'peer_id'); }); common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { diff --git a/backend/controllers/cln/getInfo.js b/backend/controllers/cln/getInfo.js index 53a9101e..e8714c30 100644 --- a/backend/controllers/cln/getInfo.js +++ b/backend/controllers/cln/getInfo.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { CLWSClient } from './webSocketClient.js'; diff --git a/backend/controllers/cln/invoices.js b/backend/controllers/cln/invoices.js index 0ff81ff7..d1f04c1f 100644 --- a/backend/controllers/cln/invoices.js +++ b/backend/controllers/cln/invoices.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/cln/network.js b/backend/controllers/cln/network.js index b31b1415..ae132580 100644 --- a/backend/controllers/cln/network.js +++ b/backend/controllers/cln/network.js @@ -1,9 +1,13 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; const logger = Logger; const common = Common; +// Alias cache: peerId -> { alias, ts }. Bounded by a TTL so an updated node alias is picked +// up without an RTL restart, and by a max size so it can't grow unbounded (evicts oldest). +const ALIAS_CACHE_TTL = 6 * 60 * 60 * 1000; // 6 hours +const ALIAS_CACHE_MAX = 5000; const aliasCache = new Map(); export const getRoute = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Getting Network Routes..' }); @@ -15,9 +19,21 @@ export const getRoute = (req, res, next) => { options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Network Routes Received', data: body }); - return Promise.all(body.route?.map((rt) => getAlias(req.session.selectedNode, rt, 'id'))).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Network Routes with Alias Received', data: body }); - res.status(200).json(body || []); + // Resolve hop aliases with a bounded number of concurrent listnodes calls, matching the + // peers/channels paths, so a long route can't storm clnrest (#1501). + const getRouteAliasesTasks = (body.route || []).map((rt) => () => getAlias(req.session.selectedNode, rt, 'id')); + common.runWithConcurrencyLimit(getRouteAliasesTasks, 20, () => { + // Guard the response-send: the limiter invokes this outside the surrounding .catch. + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Network Routes with Alias Received', data: body }); + res.status(200).json(body || []); + } + catch (e) { + const err = common.handleError(e, 'Network', 'Query Routes Error', req.session.selectedNode); + if (!res.headersSent) { + res.status(err.statusCode).json({ message: err.message, error: err.error }); + } + } }); }).catch((errRes) => { const err = common.handleError(errRes, 'Network', 'Query Routes Error', req.session.selectedNode); @@ -87,16 +103,34 @@ export const getAlias = (selNode, peer, id) => { peer.alias = ''; return Promise.resolve(peer); } - if (aliasCache.has(peerId)) { - peer.alias = aliasCache.get(peerId); + const cached = aliasCache.get(peerId); + if (cached && (Date.now() - cached.ts) < ALIAS_CACHE_TTL) { + peer.alias = cached.alias; return Promise.resolve(peer); } - options.url = selNode.settings.lnServerUrl + '/v1/listnodes'; - options.body = { id: peerId }; - return request.post(options).then((body) => { + // Build a self-contained request from the selected node's own auth options rather than the + // shared module-level 'options', which is only set by a prior network.ts endpoint call. That + // coupling meant a cold Peers/route lookup (no prior network call) dereferenced a null 'options' + // and threw; now that the limiter swallows per-task throws, that surfaced as a 200 with every + // alias unset (#1501 review F1). selNode.authentication.options is guaranteed present here + // because every caller runs getOptions() first. + const nodeOptions = selNode.authentication?.options; + if (!nodeOptions || !nodeOptions.headers) { + peer.alias = peerId.substring(0, 20); + return Promise.resolve(peer); + } + const aliasOptions = { ...nodeOptions, method: 'POST', url: selNode.settings.lnServerUrl + '/v1/listnodes', body: { id: peerId }, json: true, qs: {} }; + delete aliasOptions.form; + return request.post(aliasOptions).then((body) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Network', msg: 'Peer Alias Finished', data: body }); const alias = body.nodes?.[0]?.alias || peerId.substring(0, 20); - aliasCache.set(peerId, alias); + // Re-insert so a refreshed entry moves to the most-recent position, then evict the + // oldest if we're over the cap (Map preserves insertion order). + aliasCache.delete(peerId); + aliasCache.set(peerId, { alias, ts: Date.now() }); + if (aliasCache.size > ALIAS_CACHE_MAX) { + aliasCache.delete(aliasCache.keys().next().value); + } peer.alias = alias; return peer; }).catch((errRes) => { diff --git a/backend/controllers/cln/offers.js b/backend/controllers/cln/offers.js index 13080bd9..09290695 100644 --- a/backend/controllers/cln/offers.js +++ b/backend/controllers/cln/offers.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { Database } from '../../utils/database.js'; diff --git a/backend/controllers/cln/onchain.js b/backend/controllers/cln/onchain.js index f4615442..37ca3e26 100644 --- a/backend/controllers/cln/onchain.js +++ b/backend/controllers/cln/onchain.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/cln/payments.js b/backend/controllers/cln/payments.js index 6a756a00..77573cad 100644 --- a/backend/controllers/cln/payments.js +++ b/backend/controllers/cln/payments.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { Database } from '../../utils/database.js'; diff --git a/backend/controllers/cln/peers.js b/backend/controllers/cln/peers.js index dba0c304..4889d189 100644 --- a/backend/controllers/cln/peers.js +++ b/backend/controllers/cln/peers.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { getAlias } from './network.js'; @@ -15,9 +15,23 @@ export const getPeers = (req, res, next) => { request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers List Received', data: body }); const peers = !body.peers ? [] : body.peers; - return Promise.all(peers?.map((peer) => getAlias(req.session.selectedNode, peer, 'id'))).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); - res.status(200).json(body.peers || []); + // Resolve peer aliases with a bounded number of concurrent listnodes calls. An unbounded + // Promise.all here fires one request per peer at once, which overwhelms clnrest on nodes + // with many peers and fails with "Resource temporarily unavailable (os error 11)" (#1501). + const getPeerAliasesTasks = peers.map((peer) => () => getAlias(req.session.selectedNode, peer, 'id')); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { + // The limiter invokes this outside the surrounding .then/.catch chain, so guard the + // response-send: a throw here would otherwise be an unhandled rejection with no response. + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); + res.status(200).json(body.peers || []); + } + catch (e) { + const err = common.handleError(e, 'Peers', 'List Peers Error', req.session.selectedNode); + if (!res.headersSent) { + res.status(err.statusCode).json({ message: err.message, error: err.error }); + } + } }); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'List Peers Error', req.session.selectedNode); @@ -38,8 +52,21 @@ export const postPeer = (req, res, next) => { listOptions.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listpeers'; request.post(listOptions).then((listPeersRes) => { const peers = listPeersRes && listPeersRes.peers ? common.newestOnTop(listPeersRes.peers, 'id', connectRes.id) : []; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: peers }); - res.status(201).json(peers); + // Resolve aliases (bounded) for the returned peers so a freshly connected peer shows its + // alias rather than a raw node id, matching getPeers and the LND postPeer path (#1629 F5). + const getPeerAliasesTasks = peers.map((peer) => () => getAlias(req.session.selectedNode, peer, 'id')); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: peers }); + res.status(201).json(peers); + } + catch (e) { + const err = common.handleError(e, 'Peers', 'Connect Peer Error', req.session.selectedNode); + if (!res.headersSent) { + res.status(err.statusCode).json({ message: err.message, error: err.error }); + } + } + }); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'Connect Peer Error', req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); diff --git a/backend/controllers/cln/utility.js b/backend/controllers/cln/utility.js index 5a10dcdc..964b8f34 100644 --- a/backend/controllers/cln/utility.js +++ b/backend/controllers/cln/utility.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; @@ -44,7 +44,7 @@ export const verifyMessage = (req, res, next) => { } options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/checkmessage'; options.body = req.body; - request.post(options, (error, response, body) => { + request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Message Verified', data: body }); res.status(201).json(body); }).catch((errRes) => { diff --git a/backend/controllers/eclair/channels.js b/backend/controllers/eclair/channels.js index 7b883de7..b2a0a26b 100644 --- a/backend/controllers/eclair/channels.js +++ b/backend/controllers/eclair/channels.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { createInvoiceRequestCall, listPendingInvoicesRequestCall } from './invoices.js'; @@ -53,7 +53,10 @@ export const getChannels = (req, res, next) => { options.form = req.query; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Channels Node Id', data: options.form }); } - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Options', data: options }); + // Log the call's shape only. Eclair authenticates with HTTP basic auth, so the options + // object carries the node's lnApiPassword in its authorization header, and node logs are + // routinely shared when debugging. + logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Options', data: { url: options.url, form: options.form } }); if (common.read_dummy_data) { common.getDummyData('Channels', req.session.selectedNode.lnImplementation).then((data) => { res.status(200).json(data); }); } @@ -68,7 +71,7 @@ export const getChannels = (req, res, next) => { } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Empty Channels List Received' }); - res.status(200).json([]); + return res.status(200).json([]); } }). catch((errRes) => { diff --git a/backend/controllers/eclair/fees.js b/backend/controllers/eclair/fees.js index 0b4f4018..a84f78b4 100644 --- a/backend/controllers/eclair/fees.js +++ b/backend/controllers/eclair/fees.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/eclair/getInfo.js b/backend/controllers/eclair/getInfo.js index 813baa53..b5092f9d 100644 --- a/backend/controllers/eclair/getInfo.js +++ b/backend/controllers/eclair/getInfo.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { ECLWSClient } from './webSocketClient.js'; diff --git a/backend/controllers/eclair/invoices.js b/backend/controllers/eclair/invoices.js index f3d48cd3..e960c299 100644 --- a/backend/controllers/eclair/invoices.js +++ b/backend/controllers/eclair/invoices.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/eclair/network.js b/backend/controllers/eclair/network.js index c9924fd4..0a18622e 100644 --- a/backend/controllers/eclair/network.js +++ b/backend/controllers/eclair/network.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/eclair/onchain.js b/backend/controllers/eclair/onchain.js index 858e3e0e..4c3cacdd 100644 --- a/backend/controllers/eclair/onchain.js +++ b/backend/controllers/eclair/onchain.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/eclair/payments.js b/backend/controllers/eclair/payments.js index 25f6d974..1f07ab0f 100644 --- a/backend/controllers/eclair/payments.js +++ b/backend/controllers/eclair/payments.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; @@ -96,7 +96,7 @@ export const queryPaymentRoute = (req, res, next) => { } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Empty Payment Route Information Received' }); - res.status(200).json({ routes: [] }); + return res.status(200).json({ routes: [] }); } }).catch((errRes) => { const err = common.handleError(errRes, 'Payments', 'Query Route Error', req.session.selectedNode); diff --git a/backend/controllers/eclair/peers.js b/backend/controllers/eclair/peers.js index c29f4e22..8584e178 100644 --- a/backend/controllers/eclair/peers.js +++ b/backend/controllers/eclair/peers.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; @@ -43,7 +43,7 @@ export const getPeers = (req, res, next) => { } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Empty Peers Received' }); - res.status(200).json([]); + return res.status(200).json([]); } }). catch((errRes) => { @@ -95,7 +95,7 @@ export const connectPeer = (req, res, next) => { }); } else { - res.status(201).json([]); + return res.status(201).json([]); } }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'Connect Peer Error', req.session.selectedNode); diff --git a/backend/controllers/lnd/balance.js b/backend/controllers/lnd/balance.js index b49f7a02..4dcc5bfa 100644 --- a/backend/controllers/lnd/balance.js +++ b/backend/controllers/lnd/balance.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/lnd/channels.js b/backend/controllers/lnd/channels.js index 5f35b7ad..ac9e9daf 100644 --- a/backend/controllers/lnd/channels.js +++ b/backend/controllers/lnd/channels.js @@ -1,13 +1,13 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; const logger = Logger; const common = Common; -export const getAliasForChannel = (selNode, channel) => { +export const getAliasForChannel = (selNode, channel, requestOptions) => { const pubkey = (channel.remote_pubkey) ? channel.remote_pubkey : (channel.remote_node_pub) ? channel.remote_node_pub : ''; - options.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; - return request(options).then((aliasBody) => { + requestOptions.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; + return request(requestOptions).then((aliasBody) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Channels', msg: 'Alias Received', data: aliasBody.node.alias }); channel.remote_alias = aliasBody.node.alias && aliasBody.node.alias !== '' ? aliasBody.node.alias : aliasBody.node.pub_key.slice(0, 20); return channel; @@ -30,18 +30,26 @@ export const getAllChannels = (req, res, next) => { request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Channels List Received', data: body }); if (body.channels) { - return Promise.all(body.channels?.map((channel) => { + body.channels.forEach((channel) => { local = (channel.local_balance) ? +channel.local_balance : 0; remote = (channel.remote_balance) ? +channel.remote_balance : 0; total = local + remote; channel.balancedness = (total === 0) ? 1 : (1 - Math.abs((local - remote) / total)).toFixed(3); - return getAliasForChannel(req.session.selectedNode, channel); - })).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Sorted Channels List Received', data: body }); - return res.status(200).json(body); - }).catch((errRes) => { - const err = common.handleError(errRes, 'Channels', 'Get All Channel Aliases Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); + }); + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getChannelAliasesTasks = body.channels.map((channel) => () => getAliasForChannel(selNode, channel, { ...requestOptions })); + common.runWithConcurrencyLimit(getChannelAliasesTasks, 20, () => { + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Sorted Channels List Received', data: body }); + return res.status(200).json(body); + } + catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Channels', msg: 'Get All Channel Aliases Error', error: e.message }); + if (!res.headersSent) { + res.status(500).json({ message: 'Get All Channel Aliases Error', error: e.message }); + } + } }); } else { @@ -66,26 +74,32 @@ export const getPendingChannels = (req, res, next) => { if (!body.total_limbo_balance) { body.total_limbo_balance = 0; } - const promises = []; + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getPendingAliasesTasks = []; if (body.pending_open_channels && body.pending_open_channels.length > 0) { - body.pending_open_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + body.pending_open_channels?.map((channel) => getPendingAliasesTasks.push(() => getAliasForChannel(selNode, channel.channel, { ...requestOptions }))); } if (body.pending_force_closing_channels && body.pending_force_closing_channels.length > 0) { - body.pending_force_closing_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + body.pending_force_closing_channels?.map((channel) => getPendingAliasesTasks.push(() => getAliasForChannel(selNode, channel.channel, { ...requestOptions }))); } if (body.pending_closing_channels && body.pending_closing_channels.length > 0) { - body.pending_closing_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + body.pending_closing_channels?.map((channel) => getPendingAliasesTasks.push(() => getAliasForChannel(selNode, channel.channel, { ...requestOptions }))); } if (body.waiting_close_channels && body.waiting_close_channels.length > 0) { - body.waiting_close_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + body.waiting_close_channels?.map((channel) => getPendingAliasesTasks.push(() => getAliasForChannel(selNode, channel.channel, { ...requestOptions }))); } - return Promise.all(promises).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Pending Channels List Received', data: body }); - return res.status(200).json(body); - }). - catch((errRes) => { - const err = common.handleError(errRes, 'Channels', 'Get Pending Channel Aliases Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); + common.runWithConcurrencyLimit(getPendingAliasesTasks, 20, () => { + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Pending Channels List Received', data: body }); + return res.status(200).json(body); + } + catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Channels', msg: 'Get Pending Channel Aliases Error', error: e.message }); + if (!res.headersSent) { + res.status(500).json({ message: 'Get Pending Channel Aliases Error', error: e.message }); + } + } }); }).catch((errRes) => { const err = common.handleError(errRes, 'Channels', 'List Pending Channels Error', req.session.selectedNode); @@ -102,15 +116,23 @@ export const getClosedChannels = (req, res, next) => { options.qs = req.query; request(options).then((body) => { if (body.channels && body.channels.length > 0) { - return Promise.all(body.channels?.map((channel) => { + body.channels.forEach((channel) => { channel.close_type = (!channel.close_type) ? 'COOPERATIVE_CLOSE' : channel.close_type; - return getAliasForChannel(req.session.selectedNode, channel); - })).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Closed Channels List Received', data: body }); - return res.status(200).json(body); - }).catch((errRes) => { - const err = common.handleError(errRes, 'Channels', 'Get Closed Channel Aliases Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); + }); + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getClosedAliasesTasks = body.channels.map((channel) => () => getAliasForChannel(selNode, channel, { ...requestOptions })); + common.runWithConcurrencyLimit(getClosedAliasesTasks, 20, () => { + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Closed Channels List Received', data: body }); + return res.status(200).json(body); + } + catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Channels', msg: 'Get Closed Channel Aliases Error', error: e.message }); + if (!res.headersSent) { + res.status(500).json({ message: 'Get Closed Channel Aliases Error', error: e.message }); + } + } }); } else { @@ -140,7 +162,7 @@ export const postChannel = (req, res, next) => { options.form.target_conf = trans_type_value; } else if (trans_type === '2') { - options.form.sat_per_byte = trans_type_value; + options.form.sat_per_vbyte = trans_type_value; } if (commitment_type) { options.form.commitment_type = commitment_type; @@ -171,11 +193,17 @@ export const closeChannel = (req, res, next) => { if (req.query.target_conf) { options.url = options.url + '&target_conf=' + req.query.target_conf; } - if (req.query.sat_per_byte) { - options.url = options.url + '&sat_per_byte=' + req.query.sat_per_byte; + if (req.query.sat_per_vbyte) { + options.url = options.url + '&sat_per_vbyte=' + req.query.sat_per_vbyte; } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Closing Channel Options URL', data: options.url }); - request.delete(options); + // Fire-and-forget: LND keeps the close stream open until the closing tx + // confirms, so exempt it from the request timeout; the 202 is already sent, + // so log a rejection instead of letting it crash the process. + request.delete({ ...options, timeout: 0 }).catch((errRes) => { + const err = common.handleError(errRes, 'Channels', 'Close Channel Error', req.session.selectedNode); + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Channels', msg: 'Close Channel Error', error: err }); + }); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Channel Close Requested' }); res.status(202).json({ message: 'Close channel request has been submitted.' }); } diff --git a/backend/controllers/lnd/channelsBackup.js b/backend/controllers/lnd/channelsBackup.js index 3df40e53..27ffa5af 100644 --- a/backend/controllers/lnd/channelsBackup.js +++ b/backend/controllers/lnd/channelsBackup.js @@ -1,6 +1,6 @@ import * as fs from 'fs'; import { sep } from 'path'; -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/lnd/fees.js b/backend/controllers/lnd/fees.js index 643a5e91..708a96e0 100644 --- a/backend/controllers/lnd/fees.js +++ b/backend/controllers/lnd/fees.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { getAllForwardingEvents } from './switch.js'; diff --git a/backend/controllers/lnd/getInfo.js b/backend/controllers/lnd/getInfo.js index dd846ee9..a83f7617 100644 --- a/backend/controllers/lnd/getInfo.js +++ b/backend/controllers/lnd/getInfo.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { LNDWSClient } from './webSocketClient.js'; diff --git a/backend/controllers/lnd/graph.js b/backend/controllers/lnd/graph.js index 7d008e40..49146f12 100644 --- a/backend/controllers/lnd/graph.js +++ b/backend/controllers/lnd/graph.js @@ -1,12 +1,12 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; const logger = Logger; const common = Common; -export const getAliasFromPubkey = (selNode, pubkey) => { - options.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; - return request(options).then((res) => { +export const getAliasFromPubkey = (selNode, pubkey, requestOptions) => { + requestOptions.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; + return request(requestOptions).then((res) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Graph', msg: 'Alias Received', data: res.node.alias }); return res.node.alias; }). @@ -79,26 +79,29 @@ export const getQueryRoutes = (req, res, next) => { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/graph/routes/' + req.params.destPubkey + '/' + req.params.amount; - if (req.query.outgoing_chan_id) { - options.url = options.url + '?outgoing_chan_id=' + req.query.outgoing_chan_id; - } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Graph', msg: 'Query Routes URL', data: options.url }); request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Graph', msg: 'Query Routes Received', data: body }); if (body.routes && body.routes.length && body.routes.length > 0 && body.routes[0].hops && body.routes[0].hops.length && body.routes[0].hops.length > 0) { - return Promise.all(body.routes[0].hops?.map((hop) => getAliasFromPubkey(req.session.selectedNode, hop.pub_key))). - then((values) => { - body.routes[0].hops?.map((hop, i) => { - hop.hop_sequence = i + 1; - hop.pubkey_alias = values[i]; - return hop; - }); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Graph Routes with Alias Received', data: body }); - res.status(200).json(body); - }). - catch((errRes) => { - const err = common.handleError(errRes, 'Graph', 'Get Query Routes Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getRouteAliasesTasks = body.routes[0].hops.map((hop) => () => getAliasFromPubkey(selNode, hop.pub_key, { ...requestOptions })); + common.runWithConcurrencyLimit(getRouteAliasesTasks, 20, (values) => { + try { + body.routes[0].hops?.map((hop, i) => { + hop.hop_sequence = i + 1; + hop.pubkey_alias = typeof values[i] === 'string' ? values[i] : 'Unknown'; + return hop; + }); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Graph Routes with Alias Received', data: body }); + res.status(200).json(body); + } + catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Graph', msg: 'Get Query Routes Error', error: e.message }); + if (!res.headersSent) { + res.status(500).json({ message: 'Get Query Routes Error', error: e.message }); + } + } }); } else { @@ -148,14 +151,21 @@ export const getAliasesForPubkeys = (req, res, next) => { } if (req.query.pubkeys) { const pubkeyArr = req.query.pubkeys.split(','); - return Promise.all(pubkeyArr?.map((pubkey) => getAliasFromPubkey(req.session.selectedNode, pubkey))). - then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Node Alias', data: values }); - res.status(200).json(values); - }). - catch((errRes) => { - const err = common.handleError(errRes, 'Graph', 'Get Aliases for Pubkeys Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getAliasesTasks = pubkeyArr.map((pubkey) => () => getAliasFromPubkey(selNode, pubkey, { ...requestOptions })); + common.runWithConcurrencyLimit(getAliasesTasks, 20, (values) => { + try { + const safeValues = values.map((v) => (typeof v === 'string' ? v : 'Unknown')); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Node Alias', data: safeValues }); + res.status(200).json(safeValues); + } + catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Graph', msg: 'Get Aliases for Pubkeys Error', error: e.message }); + if (!res.headersSent) { + res.status(500).json({ message: 'Get Aliases for Pubkeys Error', error: e.message }); + } + } }); } else { diff --git a/backend/controllers/lnd/invoices.js b/backend/controllers/lnd/invoices.js index b9567e94..928007e8 100644 --- a/backend/controllers/lnd/invoices.js +++ b/backend/controllers/lnd/invoices.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { LNDWSClient } from './webSocketClient.js'; @@ -20,7 +20,7 @@ const extractKeysendMessage = (invoice) => { } } } - return ''; + return invoice.memo || ''; }; export const invoiceLookup = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Getting Invoice Information..' }); @@ -62,7 +62,7 @@ export const listInvoices = (req, res, next) => { invoice.r_preimage = invoice.r_preimage ? Buffer.from(invoice.r_preimage, 'base64').toString('hex') : ''; invoice.r_hash = invoice.r_hash ? Buffer.from(invoice.r_hash, 'base64').toString('hex') : ''; invoice.description_hash = invoice.description_hash ? Buffer.from(invoice.description_hash, 'base64').toString('hex') : null; - invoice.memo = extractKeysendMessage(invoice) || ''; + invoice.memo = extractKeysendMessage(invoice); }); } logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Sorted Invoices List Received', data: body }); diff --git a/backend/controllers/lnd/message.js b/backend/controllers/lnd/message.js index 65a1328f..57219707 100644 --- a/backend/controllers/lnd/message.js +++ b/backend/controllers/lnd/message.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/lnd/newAddress.js b/backend/controllers/lnd/newAddress.js index b8857064..90aec06f 100644 --- a/backend/controllers/lnd/newAddress.js +++ b/backend/controllers/lnd/newAddress.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/lnd/payments.js b/backend/controllers/lnd/payments.js index 56814bf5..acf7ce58 100644 --- a/backend/controllers/lnd/payments.js +++ b/backend/controllers/lnd/payments.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; @@ -89,6 +89,9 @@ export const paymentLookup = (req, res, next) => { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/router/track/' + req.params.paymentHash; + // Deliberately keep the wrapper's default timeout here: this holds a + // browser-facing response open while tracking, and payments in flight + // longer than that are delivered via the websocket subscription instead. request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Information Received for ' + req.params.paymentHash, data: body }); res.status(200).json(body.result || body); @@ -108,10 +111,13 @@ export const sendPayment = (req, res, next) => { req.body.last_hop_pubkey = Buffer.from(req.body.last_hop_pubkey, 'hex').toString('base64'); } req.body.amp = req.body.amp ?? false; - req.body.timeout_seconds = req.body.timeout_seconds || 600; + req.body.timeout_seconds = (Number.isFinite(+req.body.timeout_seconds) && +req.body.timeout_seconds > 0) ? +req.body.timeout_seconds : 600; options.form = JSON.stringify(req.body); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'Send Payment Options', data: options.form }); - request.post(options).then((body) => { + // LND ends the stream at timeout_seconds with a FAILURE_REASON_TIMEOUT result; + // give the transport a margin over that so LND's mapped failure always wins + // the race against the wrapper's own timeout. + request.post({ ...options, timeout: (+req.body.timeout_seconds + 60) * 1000 }).then((body) => { const results = body.split('\n').filter(Boolean).map((jsonString) => JSON.parse(jsonString)); body = results.length > 0 ? results[results.length - 1] : { result: { status: 'UNKNOWN' } }; if (body.result.status === 'FAILED') { diff --git a/backend/controllers/lnd/peers.js b/backend/controllers/lnd/peers.js index 104dc753..917e910c 100644 --- a/backend/controllers/lnd/peers.js +++ b/backend/controllers/lnd/peers.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; @@ -25,9 +25,21 @@ export const getPeers = (req, res, next) => { request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers List Received', data: body }); const peers = !body.peers ? [] : body.peers; - return Promise.all(peers?.map((peer) => getAliasForPeers(req.session.selectedNode, peer))).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); - res.status(200).json(body.peers); + // Bound concurrent alias lookups so a node with many peers can't fire one graph/node + // request per peer at once and overwhelm the backend (parity with the CLN fix, #1501). + const getPeerAliasesTasks = peers.map((peer) => () => getAliasForPeers(req.session.selectedNode, peer)); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { + // Guard the response-send: the limiter invokes this outside the surrounding .catch. + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); + res.status(200).json(body.peers); + } + catch (e) { + const err = common.handleError(e, 'Peers', 'List Peers Error', req.session.selectedNode); + if (!res.headersSent) { + res.status(err.statusCode).json({ message: err.message, error: err.error }); + } + } }); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'List Peers Error', req.session.selectedNode); @@ -51,15 +63,24 @@ export const postPeer = (req, res, next) => { options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/peers'; request(options).then((body) => { const peers = (!body.peers) ? [] : body.peers; - return Promise.all(peers?.map((peer) => getAliasForPeers(req.session.selectedNode, peer))).then((values) => { - if (body.peers) { - body.peers = common.newestOnTop(body.peers, 'pub_key', pubkey); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: body }); + // Bound concurrent alias lookups (parity with the CLN fix, #1501). + const getPeerAliasesTasks = peers.map((peer) => () => getAliasForPeers(req.session.selectedNode, peer)); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { + // Guard the response-send: the limiter invokes this outside the surrounding .catch, and + // this replaced an explicit inner .catch — a throw here must not hang the POST (#1629 F4). + try { + if (body.peers) { + body.peers = common.newestOnTop(body.peers, 'pub_key', pubkey); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: body }); + } + res.status(201).json(body.peers); + } + catch (e) { + const err = common.handleError(e, 'Peers', 'Connect Peer Error', req.session.selectedNode); + if (!res.headersSent) { + res.status(err.statusCode).json({ message: err.message, error: err.error }); + } } - res.status(201).json(body.peers); - }).catch((errRes) => { - const err = common.handleError(errRes, 'Peers', 'Connect Peer Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); }); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'Connect Peer Error', req.session.selectedNode); diff --git a/backend/controllers/lnd/switch.js b/backend/controllers/lnd/switch.js index a8571941..dceea934 100644 --- a/backend/controllers/lnd/switch.js +++ b/backend/controllers/lnd/switch.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/lnd/transactions.js b/backend/controllers/lnd/transactions.js index cb715822..452f9333 100644 --- a/backend/controllers/lnd/transactions.js +++ b/backend/controllers/lnd/transactions.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; @@ -30,7 +30,7 @@ export const postTransactions = (req, res, next) => { options.form = { amount: amount, addr: address, - sat_per_byte: fees, + sat_per_vbyte: fees, target_conf: blocks }; if (sendAll) { diff --git a/backend/controllers/lnd/wallet.js b/backend/controllers/lnd/wallet.js index be5a7296..e876d4a2 100644 --- a/backend/controllers/lnd/wallet.js +++ b/backend/controllers/lnd/wallet.js @@ -1,5 +1,5 @@ import atob from 'atob'; -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; @@ -120,7 +120,7 @@ export const getUTXOs = (req, res, next) => { }); }; export const bumpFee = (req, res, next) => { - const { txid, outputIndex, targetConf, satPerByte } = req.body; + const { txid, outputIndex, targetConf, satPerVByte } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Bumping Fee..' }); options = common.getOptions(req); if (options.error) { @@ -135,8 +135,8 @@ export const bumpFee = (req, res, next) => { if (targetConf) { options.form.target_conf = targetConf; } - else if (satPerByte) { - options.form.sat_per_byte = satPerByte; + else if (satPerVByte) { + options.form.sat_per_vbyte = satPerVByte; } options.form = JSON.stringify(options.form); request.post(options).then((body) => { diff --git a/backend/controllers/lnd/webSocketClient.js b/backend/controllers/lnd/webSocketClient.js index 0519da4f..943a1b56 100644 --- a/backend/controllers/lnd/webSocketClient.js +++ b/backend/controllers/lnd/webSocketClient.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import * as fs from 'fs'; import { join } from 'path'; import { Logger } from '../../utils/logger.js'; @@ -44,7 +44,9 @@ export class LNDWebSocketClient { this.subscribeToInvoice = (options, selectedNode, rHash) => { rHash = rHash?.replace(/\+/g, '-')?.replace(/[/]/g, '_'); this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Subscribing to Invoice ' + rHash + ' ..' }); - options.url = selectedNode.settings.lnServerUrl + '/v2/invoices/subscribe/' + rHash; + // Copy the options: the caller may pass the session-cached object, and the + // long poll needs an unbounded timeout without leaking it to other calls. + options = { ...options, url: selectedNode.settings.lnServerUrl + '/v2/invoices/subscribe/' + rHash, timeout: 0 }; request(options).then((msg) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Invoice Information Received for ' + rHash }); if (typeof msg === 'string') { @@ -67,7 +69,9 @@ export class LNDWebSocketClient { }; this.subscribeToPayment = (options, selectedNode, paymentHash) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Subscribing to Payment ' + paymentHash + ' ..' }); - options.url = selectedNode.settings.lnServerUrl + '/v2/router/track/' + paymentHash; + // Copy the options: the long poll needs an unbounded timeout without + // leaking it to other calls sharing the object. + options = { ...options, url: selectedNode.settings.lnServerUrl + '/v2/router/track/' + paymentHash, timeout: 0 }; request(options).then((msg) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Payment Information Received for ' + paymentHash }); msg['type'] = 'payment'; diff --git a/backend/controllers/shared/RTLConf.js b/backend/controllers/shared/RTLConf.js index f8c78b4f..60f35764 100644 --- a/backend/controllers/shared/RTLConf.js +++ b/backend/controllers/shared/RTLConf.js @@ -1,9 +1,9 @@ import jwt from 'jsonwebtoken'; import * as fs from 'fs'; -import { sep } from 'path'; +import { resolve, sep } from 'path'; import ini from 'ini'; import parseHocon from 'hocon-parser'; -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Database } from '../../utils/database.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; @@ -76,7 +76,23 @@ export const getCurrencyRates = (req, res, next) => { }; export const getFile = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting File..' }); - const file = req.query.path ? req.query.path : (req.session.selectedNode.settings.channelBackupPath + sep + 'channel-' + req.query.channel?.replace(':', '-') + '.bak'); + const channelBackupPath = req.session.selectedNode.settings.channelBackupPath; + let file = ''; + if (req.query.path) { + // The UI only ever requests channel backup files; contain caller paths to the node's + // backup directory so this endpoint cannot read the config, macaroons or the SSO + // cookie (getConfig serves the config file masked; this must not bypass that). + const resolved = resolve(req.query.path); + if (resolved !== resolve(channelBackupPath) && !resolved.startsWith(resolve(channelBackupPath) + sep)) { + logger.log({ selectedNode: req.session.selectedNode, level: 'WARN', fileName: 'RTLConf', msg: 'Blocked file read outside the channel backup directory', data: req.query.path }); + const err = common.handleError({ statusCode: 403, message: 'Reading File Error', error: 'File path is outside the channel backup directory' }, 'RTLConf', 'Reading File Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + } + file = resolved; + } + else { + file = channelBackupPath + sep + 'channel-' + req.query.channel?.replace(':', '-') + '.bak'; + } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'RTLConf', msg: 'Channel Point', data: req.query.channel }); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'RTLConf', msg: 'File Path', data: file }); fs.readFile(file, 'utf8', (errRes, data) => { @@ -89,7 +105,8 @@ export const getFile = (req, res, next) => { return res.status(err.statusCode).json({ message: err.error, error: err.error }); } else { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'File Data Received', data: data }); + // File contents can carry node credentials; never write them to the log. + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'File Data Received' }); res.status(200).json(data); } }); @@ -109,7 +126,6 @@ export const getApplicationSettings = (req, res, next) => { delete appConfData.SSO.rtlCookiePath; delete appConfData.SSO.cookieValue; delete appConfData.SSO.logoutRedirectLink; - appConfData.secret2FA = ''; appConfData.dbDirectoryPath = ''; appConfData.nodes[selNodeIdx].authentication = new Authentication(); delete appConfData.nodes[selNodeIdx].settings.bitcoindConfigPath; @@ -197,30 +213,51 @@ export const getConfig = (req, res, next) => { export const updateNodeSettings = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Node Settings..' }); const RTLConfFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; - const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); - const node = config.nodes.find((node) => (node.index === req.session.selectedNode.index)); - if (node && node.settings) { - node.settings = req.body.settings; - if (req.body.authentication.boltzMacaroonPath) { - node.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; - } - else { - delete node.authentication.boltzMacaroonPath; - } - if (req.body.authentication.swapMacaroonPath) { - node.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; - } - else { - delete node.authentication.swapMacaroonPath; - } - } try { + const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); + const node = config.nodes.find((node) => (node.index === req.session.selectedNode.index)); + if (node && node.settings) { + // channelBackupPath anchors getFile's containment root and is documented as a + // config-file-only setting; accepting it from the API would let the caller being + // contained choose the containment base. Pin it to the server-held value. + const serverChannelBackupPath = node.settings.channelBackupPath; + node.settings = { ...node.settings, ...req.body.settings }; + node.settings.channelBackupPath = serverChannelBackupPath; + if (node.authentication && req.body.authentication) { + if (req.body.authentication.boltzMacaroonPath) { + node.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; + } + else { + delete node.authentication.boltzMacaroonPath; + } + if (req.body.authentication.swapMacaroonPath) { + node.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; + } + else { + delete node.authentication.swapMacaroonPath; + } + } + } fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); const selectedNode = common.findNode(req.session.selectedNode.index); if (selectedNode && selectedNode.settings) { - selectedNode.settings = req.body.settings; - selectedNode.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; - selectedNode.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; + const serverChannelBackupPath = selectedNode.settings.channelBackupPath; + selectedNode.settings = { ...selectedNode.settings, ...req.body.settings }; + selectedNode.settings.channelBackupPath = serverChannelBackupPath; + if (selectedNode.authentication && req.body.authentication) { + if (req.body.authentication.boltzMacaroonPath) { + selectedNode.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; + } + else { + delete selectedNode.authentication.boltzMacaroonPath; + } + if (req.body.authentication.swapMacaroonPath) { + selectedNode.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; + } + else { + delete selectedNode.authentication.swapMacaroonPath; + } + } common.replaceNode(req, selectedNode); } let responseNode = JSON.parse(JSON.stringify(common.selectedNode)); @@ -238,17 +275,82 @@ export const updateApplicationSettings = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Application Settings..' }); const RTLConfFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; try { - const config = common.addSecureData(req.body); - common.appConfig = JSON.parse(JSON.stringify(config)); - delete config.selectedNodeIndex; - delete config.enable2FA; - delete config.allowPasswordUpdate; - delete config.rtlConfFilePath; - delete config.rtlPass; - fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); - const newConfig = JSON.parse(JSON.stringify(common.appConfig)); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Application Settings Updated', data: common.maskPasswords(newConfig) }); - res.status(201).json(common.removeSecureData(newConfig)); + const oldConfig = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); + const config = common.addSecureData(JSON.parse(JSON.stringify(req.body))); + const runtimeConfig = oldConfig; + Object.keys(config).forEach((key) => { + if (key !== 'nodes') { + runtimeConfig[key] = config[key]; + } + }); + if (config.nodes && config.nodes.length > 0) { + const oldNodes = (common.appConfig.nodes && common.appConfig.nodes.length > 0) ? common.appConfig.nodes : (oldConfig.nodes || []); + const newNodesMap = new Map(config.nodes.map((node) => [node.index, node])); + const updatedAndExistingNodes = oldNodes.map((oldNode) => { + const newNode = newNodesMap.get(oldNode.index); + newNodesMap.delete(oldNode.index); + const node = newNode ? { + ...oldNode, + ...newNode, + authentication: { ...(oldNode.authentication || {}), ...(newNode.authentication || {}) }, + settings: { ...(oldNode.settings || {}), ...(newNode.settings || {}) } + } : { + ...oldNode, + authentication: { ...(oldNode.authentication || {}) }, + settings: { ...(oldNode.settings || {}) } + }; + return node; + }); + const newOnlyNodes = [...newNodesMap.values()].map((newNode) => JSON.parse(JSON.stringify(newNode))); + runtimeConfig.nodes = [...updatedAndExistingNodes, ...newOnlyNodes]; + } + const newAppConfig = JSON.parse(JSON.stringify({ + ...runtimeConfig, + selectedNodeIndex: config.selectedNodeIndex !== undefined ? + config.selectedNodeIndex : common.appConfig.selectedNodeIndex, + enable2FA: config.enable2FA !== undefined ? + config.enable2FA : common.appConfig.enable2FA, + allowPasswordUpdate: config.allowPasswordUpdate !== undefined ? + config.allowPasswordUpdate : common.appConfig.allowPasswordUpdate, + rtlConfFilePath: common.appConfig.rtlConfFilePath, + rtlPass: common.appConfig.rtlPass + })); + const fileConfig = JSON.parse(JSON.stringify(newAppConfig)); + delete fileConfig.selectedNodeIndex; + delete fileConfig.enable2FA; + delete fileConfig.allowPasswordUpdate; + delete fileConfig.rtlConfFilePath; + delete fileConfig.rtlPass; + delete fileConfig.multiPass; + // Runtime-only SSO bearer; must not be persisted with the config. + if (fileConfig.SSO) { + delete fileConfig.SSO.cookieValue; + } + fileConfig.nodes?.forEach((node) => { + delete node.authentication?.options; + delete node.authentication?.runeValue; + }); + // Persist atomically (temp file + rename, so a mid-write failure cannot truncate the + // config) and only then adopt the new runtime config, so a failed write leaves the + // process on the old one. The temp file inherits the existing file's mode so a + // hardened 0600 is not silently downgraded; a fresh file gets 0600. Symlinks and + // single-file bind mounts cannot be renamed over — fall back to an in-place write, + // which preserves inode and mode. + const tempConfigFile = RTLConfFile + '.tmp'; + try { + fs.writeFileSync(tempConfigFile, JSON.stringify(fileConfig, null, 2), 'utf-8'); + fs.chmodSync(tempConfigFile, fs.existsSync(RTLConfFile) ? (fs.statSync(RTLConfFile).mode & 0o777) : 0o600); + fs.renameSync(tempConfigFile, RTLConfFile); + } + catch { + fs.rmSync(tempConfigFile, { force: true, recursive: true }); + fs.writeFileSync(RTLConfFile, JSON.stringify(fileConfig, null, 2), 'utf-8'); + } + common.appConfig = newAppConfig; + // removeSecureData clones, so the runtime config is untouched; it strips rtlPass, + // the TOTP seed, the SSO cookie and all per-node credentials symmetrically. + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Application Settings Updated', data: common.removeSecureData(newAppConfig) }); + res.status(201).json(common.removeSecureData(newAppConfig)); } catch (errRes) { const errMsg = 'Update Default Node Error'; diff --git a/backend/controllers/shared/authenticate.js b/backend/controllers/shared/authenticate.js index 7ffa4bb1..13b64988 100644 --- a/backend/controllers/shared/authenticate.js +++ b/backend/controllers/shared/authenticate.js @@ -19,6 +19,9 @@ const loginInterval = setInterval(() => { } } }, LOCKING_PERIOD); +// The sweeper must not hold the event loop open on its own (it would keep +// `node --test` or a CLI invocation alive for the full 30-minute period). +loginInterval.unref(); export const getFailedInfo = (reqIP, currentTime) => { let failed = { count: 0, lastTried: currentTime }; if ((!failedLoginAttempts[reqIP]) || (currentTime > (failed.lastTried + LOCKING_PERIOD))) { @@ -45,10 +48,33 @@ const handleMultipleFailedAttemptsError = (failed, currentTime, errMsg) => { } }; export const verifyToken = (twoFAToken) => !!(common.appConfig.secret2FA && common.appConfig.secret2FA !== '' && otplib.authenticator.check(twoFAToken, common.appConfig.secret2FA)); +// Mirrors isAuthenticated: a request carrying a valid session JWT has already +// completed 2FA at login, since tokens are only minted after verification when +// 2FA is enabled. Used to exempt in-app re-authorization (e.g. the password +// prompt before on-chain sends) from the TOTP requirement without opening a +// password-only path. +const hasValidAuthToken = (req) => { + try { + const token = req.headers.authorization.split(' ')[1]; + jwt.verify(token, common.secret_key); + return true; + } + catch (error) { + return false; + } +}; export const authenticateUser = (req, res, next) => { const { authenticateWith, authenticationValue, twoFAToken } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'Authenticating User..' }); - if (+common.appConfig.SSO.rtlSSO) { + if (!!common.appConfig.disableAuth) { + if (!req.session.selectedNode) { + req.session.selectedNode = common.selectedNode; + } + const token = jwt.sign({ user: 'AUTH_DISABLED_USER' }, common.secret_key); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'User Disabled Authentication' }); + res.status(200).json({ token: token }); + } + else if (+common.appConfig.SSO.rtlSSO) { if (authenticateWith === 'JWT' && jwt.verify(authenticationValue, common.secret_key)) { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'User Authenticated' }); res.status(406).json({ message: 'SSO Authentication Error', error: 'Login with Password is not allowed with SSO.' }); @@ -76,8 +102,15 @@ export const authenticateUser = (req, res, next) => { const failed = getFailedInfo(reqIP, currentTime); const password = authenticationValue; if (common.appConfig.rtlPass === password && failed.count < ALLOWED_LOGIN_ATTEMPTS) { - if (twoFAToken && twoFAToken !== '') { - if (!verifyToken(twoFAToken)) { + // Gate on the server-side 2FA configuration, not on the request: when 2FA is + // enabled a token is mandatory, so a request omitting twoFAToken is rejected + // instead of silently skipping verification. The login UI keys its token prompt + // on enable2FA, so both fields are consulted — a stale secret with 2FA disabled + // must not lock the operator out of a UI that never prompts for a token. + // Requests with a valid session token (in-app re-authorization, e.g. the + // password prompt before on-chain sends) are exempt from the TOTP requirement. + if (common.appConfig.enable2FA && common.appConfig.secret2FA && common.appConfig.secret2FA !== '' && !hasValidAuthToken(req)) { + if (typeof twoFAToken !== 'string' || twoFAToken === '' || !verifyToken(twoFAToken)) { logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Authenticate', msg: 'Invalid Token! Failed IP ' + reqIP, error: { error: 'Invalid token.' } }); failed.count = failed.count + 1; failed.lastTried = currentTime; diff --git a/backend/controllers/shared/boltz.js b/backend/controllers/shared/boltz.js index caa9d700..a1c69592 100644 --- a/backend/controllers/shared/boltz.js +++ b/backend/controllers/shared/boltz.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/shared/loop.js b/backend/controllers/shared/loop.js index 525b635d..72fecfb7 100644 --- a/backend/controllers/shared/loop.js +++ b/backend/controllers/shared/loop.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/models/config.model.js b/backend/models/config.model.js index 9a66e2d4..4c2b14c9 100644 --- a/backend/models/config.model.js +++ b/backend/models/config.model.js @@ -40,11 +40,12 @@ export class Authentication { } } export class ApplicationConfig { - constructor(defaultNodeIndex, selectedNodeIndex, dbDirectoryPath, rtlConfFilePath, rtlPass, multiPass, multiPassHashed, allowPasswordUpdate, enable2FA, secret2FA, SSO, nodes) { + constructor(defaultNodeIndex, selectedNodeIndex, dbDirectoryPath, rtlConfFilePath, disableAuth, rtlPass, multiPass, multiPassHashed, allowPasswordUpdate, enable2FA, secret2FA, SSO, nodes) { this.defaultNodeIndex = defaultNodeIndex; this.selectedNodeIndex = selectedNodeIndex; this.dbDirectoryPath = dbDirectoryPath; this.rtlConfFilePath = rtlConfFilePath; + this.disableAuth = disableAuth; this.rtlPass = rtlPass; this.multiPass = multiPass; this.multiPassHashed = multiPassHashed; diff --git a/backend/routes/shared/authenticate.js b/backend/routes/shared/authenticate.js index 0cbdbbe4..7e1559a2 100644 --- a/backend/routes/shared/authenticate.js +++ b/backend/routes/shared/authenticate.js @@ -1,9 +1,12 @@ import exprs from 'express'; const { Router } = exprs; import { authenticateUser, verifyToken, resetPassword, logoutUser } from '../../controllers/shared/authenticate.js'; +import { isAuthenticated } from '../../utils/authCheck.js'; const router = Router(); router.post('/', authenticateUser); router.post('/token', verifyToken); -router.post('/reset', resetPassword); +// Password changes mint a fresh session token, so the route requires an existing +// authenticated session; the frontend interceptor attaches it for the settings UI. +router.post('/reset', isAuthenticated, resetPassword); router.get('/logout', logoutUser); export default router; diff --git a/backend/utils/app.js b/backend/utils/app.js index 5471cf88..8cd5e096 100644 --- a/backend/utils/app.js +++ b/backend/utils/app.js @@ -37,17 +37,21 @@ export class ExpressApplication { this.app.use(this.common.baseHref + '/api/ecl', eclRoutes); this.app.use(this.common.baseHref, express.static(join(this.directoryName, '../..', 'frontend'))); this.app.use((req, res, next) => { - res.cookie('XSRF-TOKEN', req.csrfToken ? req.csrfToken() : (req.cookies && req.cookies._csrf) ? req.cookies._csrf : ''); // RTL Angular Frontend - res.setHeader('XSRF-TOKEN', req.csrfToken ? req.csrfToken() : (req.cookies && req.cookies._csrf) ? req.cookies._csrf : ''); // RTL Quickpay JQuery + // Generate the token once per request: with csrf-csrf every call mints a + // new token on a first visit, so calling twice would desync the cookie + // from the header and the _csrf cookie it must match. + const csrfToken = req.csrfToken ? req.csrfToken() : (req.cookies && req.cookies._csrf) ? req.cookies._csrf : ''; + res.cookie('XSRF-TOKEN', csrfToken); // RTL Angular Frontend + res.setHeader('XSRF-TOKEN', csrfToken); // RTL Quickpay JQuery res.sendFile(join(this.directoryName, '../..', 'frontend', 'index.html')); }); this.app.use((err, req, res, next) => { - this.handleApplicationErrors(err, res); + this.handleApplicationErrors(err, req, res); next(); }); this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'App', msg: 'Application Routes Set' }); }; - this.handleApplicationErrors = (err, res) => { + this.handleApplicationErrors = (err, req, res) => { switch (err.code) { case 'EACCES': this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'Server requires elevated privileges' }); @@ -62,6 +66,16 @@ export class ExpressApplication { res.status(401).send('Server is down/locked.'); break; case 'EBADCSRFTOKEN': + // Re-mint the token for the current session so a client retry succeeds + // (the stale one may be bound to a destroyed session or rotated secret). + try { + const csrfToken = CSRF.reMintToken(req, res); + res.cookie('XSRF-TOKEN', csrfToken); + res.setHeader('XSRF-TOKEN', csrfToken); + } + catch (csrfError) { + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'CSRF Token Re-Mint Failed', error: csrfError }); + } this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'Invalid CSRF token. Form tempered.' }); res.status(403).send('Invalid CSRF token, form tempered.'); break; diff --git a/backend/utils/authCheck.js b/backend/utils/authCheck.js index e6ee9dd1..2e8d23ae 100644 --- a/backend/utils/authCheck.js +++ b/backend/utils/authCheck.js @@ -1,10 +1,10 @@ import jwt from 'jsonwebtoken'; -import csurf from 'csurf/index.js'; +import CSRF from './csrf.js'; import { Common } from './common.js'; import { Logger } from './logger.js'; const common = Common; const logger = Logger; -const csurfProtection = csurf({ cookie: true }); +const csurfProtection = CSRF.csrfProtection; export const isAuthenticated = (req, res, next) => { try { const token = req.headers.authorization.split(' ')[1]; diff --git a/backend/utils/common.js b/backend/utils/common.js index 91dbe64d..5ffd6a11 100644 --- a/backend/utils/common.js +++ b/backend/utils/common.js @@ -2,7 +2,7 @@ import * as fs from 'fs'; import { join, dirname, isAbsolute, resolve, sep } from 'path'; import { fileURLToPath } from 'url'; import * as crypto from 'crypto'; -import request from 'request-promise'; +import request from './request.js'; import { Logger } from './logger.js'; export class CommonService { constructor() { @@ -22,22 +22,37 @@ export class CommonService { { name: 'JUL', days: 31 }, { name: 'AUG', days: 31 }, { name: 'SEP', days: 30 }, { name: 'OCT', days: 31 }, { name: 'NOV', days: 30 }, { name: 'DEC', days: 31 } ]; this.maskPasswords = (obj) => { - const keys = Object.keys(obj); - const length = keys.length; - if (length !== 0) { - for (let i = 0; i < length; i++) { - if (typeof obj[keys[i]] === 'object') { - keys[keys[i]] = this.maskPasswords(obj[keys[i]]); - } - if (typeof keys[i] === 'string' && - ((keys[i].toLowerCase().includes('password') && keys[i] !== 'allowPasswordUpdate') || keys[i].toLowerCase().includes('multipass') || - keys[i].toLowerCase().includes('rpcpass') || keys[i].toLowerCase().includes('rpcpassword') || - keys[i].toLowerCase().includes('rpcuser'))) { - obj[keys[i]] = '*'.repeat(20); + // Clone up front: masking a live config object must not blank the credentials LN + // requests authenticate with (mirrors removeSecureData). + const masked = JSON.parse(JSON.stringify(obj)); + const maskRecursive = (current) => { + const keys = Object.keys(current); + const length = keys.length; + if (length !== 0) { + for (let i = 0; i < length; i++) { + // Header maps always carry credentials in this codebase (macaroon, rune, basic + // auth). Key-substring matching cannot catch them without also hiding the *Path + // fields the settings UI legitimately shows, so mask the whole map. + if (keys[i] === 'headers' && current[keys[i]] && typeof current[keys[i]] === 'object') { + Object.keys(current[keys[i]]).forEach((headerKey) => { current[keys[i]][headerKey] = '*'.repeat(20); }); + } + else if (current[keys[i]] && typeof current[keys[i]] === 'object') { + // Truthiness guard: null is 'object' too and must not reach Object.keys. + maskRecursive(current[keys[i]]); + } + if (typeof keys[i] === 'string' && + ((keys[i].toLowerCase().includes('password') && keys[i] !== 'allowPasswordUpdate') || keys[i].toLowerCase().includes('multipass') || + keys[i].toLowerCase().includes('rpcpass') || keys[i].toLowerCase().includes('rpcpassword') || + keys[i].toLowerCase().includes('rpcuser') || keys[i].toLowerCase().includes('rpcauth') || + keys[i].toLowerCase().includes('secret2fa') || keys[i].toLowerCase().includes('cookievalue') || + keys[i].toLowerCase().includes('rtlpass') || keys[i].toLowerCase().includes('runevalue'))) { + current[keys[i]] = '*'.repeat(20); + } } } - } - return obj; + return current; + }; + return maskRecursive(masked); }; this.removeAuthSecureData = (node) => { if (node.authentication) { @@ -50,38 +65,70 @@ export class CommonService { return node; }; this.removeSecureData = (config) => { - delete config.rtlConfFilePath; - delete config.rtlPass; - delete config.multiPass; - delete config.multiPassHashed; - delete config.secret2FA; - config.nodes?.map((node) => this.removeAuthSecureData(node)); - return config; + // Clone before deleting: cookieValue is runtime-only, so mutating a caller's live + // appConfig would destroy SSO state with no way to restore it. + const sanitized = JSON.parse(JSON.stringify(config)); + delete sanitized.rtlConfFilePath; + delete sanitized.rtlPass; + delete sanitized.multiPass; + delete sanitized.multiPassHashed; + delete sanitized.secret2FA; + // The SSO cookie is a live bearer credential; it must never leave the server. + if (sanitized.SSO) { + delete sanitized.SSO.cookieValue; + } + sanitized.nodes?.forEach((node) => this.removeAuthSecureData(node)); + return sanitized; }; this.addSecureData = (config) => { config.rtlConfFilePath = this.appConfig.rtlConfFilePath; config.rtlPass = this.appConfig.rtlPass; - config.multiPassHashed = this.appConfig.multiPassHashed; - config.SSO.rtlCookiePath = this.appConfig.SSO.rtlCookiePath; + // Pin the hash only when the server holds one: on a default install's first boot the + // file already has multiPassHashed but the in-memory config does not, and pinning + // undefined would erase the only password from the file on save, bricking the boot. + if (this.appConfig.multiPassHashed) { + config.multiPassHashed = this.appConfig.multiPassHashed; + } + else { + delete config.multiPassHashed; + } + // Deployment-level switches are pinned to server-held values: the settings API must + // not flip the authentication mode (disableAuth, SSO) or move SSO fields, the + // password policy, or the database location; no UI flow writes them. Pinning the + // whole SSO object also means a trimmed or missing SSO object can never wipe server + // state. + config.disableAuth = this.appConfig.disableAuth; + config.allowPasswordUpdate = this.appConfig.allowPasswordUpdate; + config.dbDirectoryPath = this.appConfig.dbDirectoryPath; + config.SSO = JSON.parse(JSON.stringify(this.appConfig.SSO || {})); if (this.appConfig.multiPass) { config.multiPass = this.appConfig.multiPass; } - if (config.secret2FA === this.appConfig.secret2FA) { + // Restore the TOTP seed when the client omits it — and when it sends an empty seed + // while still claiming 2FA is on (an inconsistent pair no honest flow produces). + // The settings UI's enable flow sends a non-empty seed; its disable flow sends an + // empty seed with enable2FA false. Both are honored. + if (config.secret2FA === undefined || (config.secret2FA === '' && config.enable2FA)) { config.secret2FA = this.appConfig.secret2FA; } - config.nodes.map((node, i) => { - if (this.appConfig && this.appConfig.nodes && this.appConfig.nodes.length > i && this.appConfig.nodes[i].authentication) { - if (this.appConfig.nodes[i].authentication.macaroonPath) { - node.authentication.macaroonPath = this.appConfig.nodes[i].authentication.macaroonPath; + // enable2FA derives from the seed, matching the boot-time derivation in config.ts, + // so the two fields can never diverge after a save. + config.enable2FA = !!config.secret2FA; + const appConfigNodes = new Map(this.appConfig.nodes?.map((node) => [node.index, node]) || []); + config.nodes?.forEach((node) => { + const appConfigNode = appConfigNodes.get(node.index); + if (appConfigNode?.authentication) { + node.authentication = node.authentication || {}; + if (appConfigNode.authentication.macaroonPath) { + node.authentication.macaroonPath = appConfigNode.authentication.macaroonPath; } - if (this.appConfig.nodes[i].authentication.runePath) { - node.authentication.runePath = this.appConfig.nodes[i].authentication.runePath; + if (appConfigNode.authentication.runePath) { + node.authentication.runePath = appConfigNode.authentication.runePath; } - if (this.appConfig.nodes[i].authentication.lnApiPassword) { - node.authentication.lnApiPassword = this.appConfig.nodes[i].authentication.lnApiPassword; + if (appConfigNode.authentication.lnApiPassword) { + node.authentication.lnApiPassword = appConfigNode.authentication.lnApiPassword; } } - return node; }); return config; }; @@ -101,7 +148,7 @@ export class CommonService { this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Loop macaroon Error', error: err }); } } - this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Swap Options', data: swapOptions }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Swap Options Set' }); return swapOptions; }; this.getBoltzServerOptions = (req) => { @@ -119,7 +166,7 @@ export class CommonService { this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Boltz macaroon Error', error: err }); } } - this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Boltz Options', data: boltzOptions }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Boltz Options Set' }); return boltzOptions; }; this.getOptions = (req) => { @@ -165,7 +212,7 @@ export class CommonService { } } if (req.session.selectedNode) { - this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Updated Node Options for ' + req.session.selectedNode.lnNode, data: req.session.selectedNode.authentication.options }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Updated Node Options for ' + req.session.selectedNode.lnNode }); } return { status: 200, message: 'Updated Successfully' }; } @@ -192,11 +239,11 @@ export class CommonService { } }; this.setOptions = (req) => { - if (this.nodes[0].authentication.options && this.nodes[0].authentication.options.headers) { - return; - } if (this.nodes && this.nodes.length > 0) { this.nodes.forEach((node) => { + if (node.authentication.options && node.authentication.options.headers) { + return; + } node.authentication.options = { url: '', rejectUnauthorized: false, @@ -235,7 +282,7 @@ export class CommonService { form: '' }; } - this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Set Node Options for ' + node.lnNode, data: node.authentication.options }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Set Node Options for ' + node.lnNode }); }); this.updateSelectedNodeOptions(req); } @@ -343,10 +390,11 @@ export class CommonService { this.logger.log({ selectedNode: selectedNode, level: 'ERROR', fileName: fileName, msg: errMsg, error: (typeof err === 'object' ? JSON.stringify(err) : err) }); let newErrorObj = { statusCode: 500, message: '', error: '' }; if (err.code && err.code === 'ENOENT') { + // The absolute path stays in the server log above but is not echoed to clients. newErrorObj = { statusCode: 500, - message: 'No such file or directory ' + (err.path ? err.path : ''), - error: 'No such file or directory ' + (err.path ? err.path : '') + message: 'No such file or directory', + error: 'No such file or directory' }; } else { @@ -609,13 +657,28 @@ export class CommonService { return JSON.parse(dataStr); }; this.runWithConcurrencyLimit = (tasks, limit, done) => { - const results = new Array(tasks.length); + const results = new Array(tasks?.length || 0); + // 'done' must fire exactly once. Guard it: multiple runNext() completions (e.g. several + // non-function task elements draining synchronously) must not send the response twice. + let finished = false; + const finish = () => { + if (finished) { + return; + } + finished = true; + done(results); + }; + // No tasks: the start loop below never runs, so 'done' would never fire and the + // response would hang. Resolve immediately for empty lists (e.g. a node with no peers). + if (!tasks || tasks.length === 0) { + return finish(); + } let nextIndex = 0; let activeCount = 0; const runNext = () => { if (nextIndex >= tasks.length) { if (activeCount === 0) { - done(results); // all tasks are finished + finish(); // all tasks are finished } return; } @@ -637,7 +700,10 @@ export class CommonService { runNext(); }); }; - for (let i = 0; i < limit && i < tasks.length; i++) { + // Normalize to at least 1: a non-positive limit would start no tasks, so 'done' (only + // reached from a task's finally) would never fire and the response would hang. + const startCount = Math.max(1, limit); + for (let i = 0; i < startCount && i < tasks.length; i++) { runNext(); } }; diff --git a/backend/utils/config.js b/backend/utils/config.js index 60f3d0d9..36ecca30 100644 --- a/backend/utils/config.js +++ b/backend/utils/config.js @@ -118,9 +118,18 @@ export class ConfigService { this.validateNodeConfig = (config) => { config.allowPasswordUpdate = true; if ((process?.env?.RTL_SSO && +process?.env?.RTL_SSO === 0) || (typeof process?.env?.RTL_SSO === 'undefined' && +config.SSO.rtlSSO === 0)) { - if (process?.env?.APP_PASSWORD && process?.env?.APP_PASSWORD.trim() !== '') { + if (!!process?.env?.DISABLE_AUTH || !!config.disableAuth) { + config.allowPasswordUpdate = false; + config.enable2FA = false; + this.logger.log({ selectedNode: this.common.selectedNode, level: 'WARN', fileName: 'Config', msg: 'Authentication is Disabled via environment or config' }); + if (process?.env?.APP_PASSWORD && process?.env?.APP_PASSWORD.trim() !== '') { + this.errMsg = this.errMsg + '\nRTL Password cannot be set with disabled authentication. Please remove disableAuth option or password.'; + } + } + else if (process?.env?.APP_PASSWORD && process?.env?.APP_PASSWORD.trim() !== '') { config.rtlPass = this.hash.update(process?.env?.APP_PASSWORD).digest('hex'); config.allowPasswordUpdate = false; + this.logger.log({ selectedNode: this.common.selectedNode, level: 'WARN', fileName: 'Config', msg: 'Passing APP_PASSWORD via environment is suggested for standalone RTL application' }); } else if (config.multiPassHashed && config.multiPassHashed !== '') { config.rtlPass = config.multiPassHashed; @@ -293,7 +302,9 @@ export class ConfigService { this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while creating the backup directory: \n' + err }); } this.common.nodes[idx].settings.logFile = config.rtlConfFilePath + '/logs/RTL-Node-' + node.index + '.log'; - this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'Config', msg: 'Node Config: ' + JSON.stringify(this.common.nodes[idx]) }); + // maskPasswords keeps paths visible for debugging while redacting credential + // fields such as lnApiPassword before they reach the log file. + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'Config', msg: 'Node Config: ' + JSON.stringify(this.common.maskPasswords(this.common.nodes[idx])) }); const log_file = this.common.nodes[idx].settings.logFile; if (fs.existsSync(log_file || '')) { fs.writeFile((log_file || ''), '', () => { }); diff --git a/backend/utils/csrf.js b/backend/utils/csrf.js index 94c3b41d..0f98607d 100644 --- a/backend/utils/csrf.js +++ b/backend/utils/csrf.js @@ -1,11 +1,30 @@ -import csurf from 'csurf/index.js'; +import { doubleCsrf } from 'csrf-csrf'; import { Logger } from './logger.js'; import { Common } from './common.js'; class CSRF { constructor() { - this.csrfProtection = csurf({ cookie: true }); this.logger = Logger; this.common = Common; + // Signed double-submit-cookie protection (replaces the deprecated csurf). + // The signed token lives in the httpOnly '_csrf' cookie; the client echoes + // the same token (read from the XSRF-TOKEN cookie set in app.ts) in a + // header. The cookie is not secure-only because RTL commonly serves plain + // HTTP (matching the session cookie); token sources match what csurf + // accepted. The error code EBADCSRFTOKEN is handled in app.ts. + this.doubleCsrfUtilities = doubleCsrf({ + getSecret: () => this.common.secret_key, + getSessionIdentifier: (req) => (req.session ? req.session.id : ''), + cookieName: '_csrf', + cookieOptions: { sameSite: 'strict', path: '/', secure: false, httpOnly: true }, + getCsrfTokenFromRequest: (req) => (req.body && req.body._csrf) || (req.query && req.query._csrf) || + req.headers['csrf-token'] || req.headers['xsrf-token'] || + req.headers['x-csrf-token'] || req.headers['x-xsrf-token'] + }); + this.csrfProtection = this.doubleCsrfUtilities.doubleCsrfProtection; + // Force-mints a fresh token for the current session, discarding any token + // cookie bound to a previous session or boot secret (used by the + // EBADCSRFTOKEN error path in app.ts so a client retry succeeds). + this.reMintToken = (req, res) => this.doubleCsrfUtilities.generateCsrfToken(req, res, { overwrite: true }); } mount(app) { this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'CSRF', msg: 'Setting up CSRF..' }); diff --git a/backend/utils/request.js b/backend/utils/request.js new file mode 100644 index 00000000..72a776f4 --- /dev/null +++ b/backend/utils/request.js @@ -0,0 +1,96 @@ +import axios from 'axios'; +import * as https from 'https'; +// Drop-in replacement for the deprecated request-promise, backed by axios. +// Accepts the same options shape used across the controllers ({ url, baseUrl, +// uri, qs, form, body, headers, rejectUnauthorized, json }), resolves with the +// response body directly and rejects with a plain, serializable object that +// mirrors request-promise's StatusCodeError/RequestError shape expected by +// CommonService.handleError. Auth headers are intentionally excluded from the +// rejected error so they can never leak into logs or API error responses. +const insecureAgent = new https.Agent({ rejectUnauthorized: false }); +const buildConfig = (options, method) => { + const config = { + url: options.url && options.url !== '' ? options.url : options.uri, + method: method || options.method || 'GET', + headers: options.headers ? { ...options.headers } : {}, + // Bound hung upstreams; 10 minutes accommodates the slowest legitimate + // operations (LND's /v2/router/send streams up to timeout_seconds=600 and + // slow CLN channel operations get req.setTimeout(600000) upstream). + // Callers can override per request; 0 disables the bound entirely, which + // the LND invoice/payment subscription streams need (open until settled). + timeout: options.timeout !== null && options.timeout !== undefined ? options.timeout : 600000 + }; + if (options.baseUrl) { + config.baseURL = options.baseUrl; + } + if (options.qs && Object.keys(options.qs).length > 0) { + config.params = options.qs; + } + if (options.rejectUnauthorized === false) { + config.httpsAgent = insecureAgent; + } + if (options.form !== null && options.form !== undefined) { + if (typeof options.form === 'string') { + // Pre-encoded (or raw JSON string for LND's wallet endpoints), send as-is. + config.data = options.form; + } + else { + const params = new URLSearchParams(); + Object.entries(options.form).forEach(([key, value]) => { + if (value === null || value === undefined) { + return; + } + if (Array.isArray(value)) { + // Eclair parses list fields as comma-separated values; omit empty lists + // (request-promise's qs encoding also dropped them). + if (value.length > 0) { + params.append(key, value.join(',')); + } + } + else { + params.append(key, String(value)); + } + }); + config.data = params; + } + config.headers['Content-Type'] = 'application/x-www-form-urlencoded'; + } + else if (options.body !== null && options.body !== undefined) { + config.data = options.body; + } + if (options.json !== true) { + // Callers without json: true (block explorer, currency rates) JSON.parse the body themselves. + config.responseType = 'text'; + config.transformResponse = [(data) => data]; + } + return config; +}; +const toRequestPromiseError = (err, config) => { + const errOptions = { url: config.url, method: config.method }; + if (err.response) { + return { + name: 'StatusCodeError', + statusCode: err.response.status, + message: err.response.status + ' - ' + JSON.stringify(err.response.data), + error: err.response.data, + options: errOptions + }; + } + const message = err.message && err.message !== '' ? err.message : err.code; + return { + name: 'RequestError', + message: message, + error: { code: err.code, message: message }, + options: errOptions + }; +}; +const call = (options, method) => { + const config = buildConfig(options, method); + return axios.request(config).then((response) => response.data).catch((err) => Promise.reject(toRequestPromiseError(err, config))); +}; +const request = (options) => call(options); +request.get = (options) => call(options, 'GET'); +request.post = (options) => call(options, 'POST'); +request.put = (options) => call(options, 'PUT'); +request.delete = (options) => call(options, 'DELETE'); +export default request; diff --git a/docker/.env b/docker/.env index ed45187c..9bfd439a 100644 --- a/docker/.env +++ b/docker/.env @@ -1,18 +1,32 @@ -BITCOIN_HOST=bitcoind -BITCOIN_PORT=18889 -BITCOIN_RPC_USER=bitcoin -BITCOIN_RPC_PASSWORD=bitcoin -BITCOIN_RPC_PORT=18888 -BITCOIN_ZMQ_TX_PORT=28888 -BITCOIN_ZMQ_BLOCK_PORT=28889 - -LIGHTNING_HOST=lnd -LIGHTNING_PORT=9735 -LIGHTNING_RPC_PORT=10009 -LIGHTNING_REST_PORT=8080 -LIGHTNING_LOOP_PORT=8081 - -RTL_PORT=3000 +# Regtest dev fixture. NOT for production. Credentials here are throwaway. COMPOSE_FILE=docker-compose.yml COMPOSE_PROJECT_NAME=rtldev + +# bitcoind. The rpcauth hash for these credentials is baked into docker-compose.yml; +# if you change the user/password here you must regenerate it (see README). +BITCOIN_HOST=bitcoind +BITCOIN_RPC_USER=rtldev +BITCOIN_RPC_PASSWORD=rtldev +BITCOIN_RPC_PORT=18443 +BITCOIN_P2P_PORT=18444 +BITCOIN_ZMQ_BLOCK_PORT=28334 +BITCOIN_ZMQ_TX_PORT=28335 + +# LND. Ports are the container-internal ones (identical for every node); +# host-side mappings are assigned per node in docker-compose.yml. +LIGHTNING_REST_PORT=8080 +LIGHTNING_RPC_PORT=10009 +LIGHTNING_P2P_PORT=9735 + +# Host-side LND REST ports, one per node +ALICE_REST_PORT=8081 +BOB_REST_PORT=8082 +CAROL_REST_PORT=8083 + +# RTL. Must not be one of RTL's blacklisted weak passwords +# ('password', 'changeme', 'moneyprintergobrrr') or RTL forces a password change +# on every login and parks you on the auth settings screen. Set in +# rtl/RTL-Config.regtest.json as multiPass; this is only used for messages. +RTL_PORT=3000 +RTL_PASSWORD=rtldev diff --git a/docker/README.md b/docker/README.md index 0e3134d6..7cf8ccb9 100644 --- a/docker/README.md +++ b/docker/README.md @@ -1,96 +1,278 @@ -# 1) RTL Docker Dev Setup +# RTL regtest dev fixture -### This is not suitable for production deployments. ONLY FOR DEVELOPMENT. +### NOT suitable for production. Development only. Every credential here is throwaway. -This `docker-compose` template launches `bitcoind`, `lnd` and `rtl` containers. - -It is configured to run in **regtest** mode but can be modified to suit your needs. - -### 1.1) Notes - - `bitcoind` is built from an Ubuntu repository and should not be used in production. - - `lnd` will not sync to chain until Bitcoin regtest blocks are generated (see below). - - `rtl` image is from the Docker Hub repository but you can change this to your needs. - - Various ports and configs can be adjusted in the `.env` or `docker-compose.yml` files. - -## 1.2) How to run -It may take several minutes if containers need to be built. - -1.2.1) From the terminal in this folder: +A self-contained regtest network for developing and testing RTL: `bitcoind`, three +LND nodes, a Core Lightning node, an Eclair node, and RTL wired to all five. ``` -$ docker-compose up -d bitcoind -$ bin/b-cli generate 101 -$ docker-compose up -d lnd rtl +alice --[ 5,000,000 sat ]--> bob --[ 3,000,000 sat ]--> carol +cln --[ 4,000,000 sat ]--> alice +eclair --[ 3,500,000 sat ]--> bob ``` -1.2.2) Check containers are up and running with: -``` -$ docker-compose ps +## Topology + +```mermaid +flowchart TB + subgraph chain["Chain backend"] + bitcoind["bitcoind (regtest)
RPC · ZMQ rawblock/rawtx · ZMQ hashblock"] + end + + subgraph ln["Lightning nodes"] + alice["alice (LND)"] + bob["bob (LND)
forwards payments"] + carol["carol (LND)"] + cln["cln (Core Lightning)"] + eclair["eclair (Eclair)"] + end + + alice =="5M sat"==> bob + bob =="3M sat"==> carol + cln =="4M sat"==> alice + eclair =="3.5M sat"==> bob + + alice -.-> bitcoind + bob -.-> bitcoind + carol -.-> bitcoind + cln -.-> bitcoind + eclair -.->|"dedicated 'eclair' wallet
+ hashblock ZMQ"| bitcoind + + rtl["RTL
localhost:3000"] + rtl -->|"REST + macaroon"| alice + rtl -->|"REST + macaroon"| bob + rtl -->|"REST + macaroon"| carol + rtl -->|"clnrest + rune"| cln + rtl -->|"HTTP API + basic auth"| eclair ``` -1.2.3) Use the cli tools to get responses from the containers: -``` -$ bin/ln-cli getinfo -$ bin/b-cli getblockchaininfo +Thick arrows are channels (opener → peer), dotted arrows the chain backend each node +uses, and solid arrows how RTL reaches each node. + +bob sits in the middle so it accrues forwarding history, which is what gives RTL's +routing screens something to show. Two nodes would leave them empty. The `cln` +(Core Lightning) node gives RTL's CLN screens a real backend — it talks to RTL over +clnrest with rune auth. The `eclair` node does the same for RTL's Eclair screens — +RTL talks to its HTTP API with basic auth. + +LND, bitcoind and Eclair images come from [Polar](https://lightningpolar.com); the Core +Lightning image is the official [`elementsproject/lightningd`](https://hub.docker.com/r/elementsproject/lightningd). +All are multi-arch (amd64 + arm64) and nothing is built locally, so this works on +Apple Silicon. (The official `acinq/eclair` image is amd64-only and its versioned tags +are years stale, which is why Polar's build of the same source is used instead.) + +## Requirements + +Docker with Compose v2 (`docker compose`, not `docker-compose`). + +## Quick start + +From this directory: + +```bash +docker compose up -d # bitcoind, alice, bob, carol, cln, eclair, rtl +./scripts/seed.sh # fund, connect, open channels, make payments ``` -1.2.4) View daemon logs as follows: -``` -$ docker-compose logs bitcoind lnd rtl +To also bring up the BTCPay single-sign-on harness, add `--profile sso` — see +[BTCPay SSO harness](#btcpay-sso-harness). + +Then open — password `rtldev`. All five nodes (alice, bob, +carol, cln, eclair) appear in the node switcher. + +Tear down, discarding all state: + +```bash +docker compose down -v ``` -Once the containers are running you can access the RTL UI at http://localhost:3000 +## What the seed creates - - Default password is `password`. - - Default host, port and password can be changed in `.env`. +| | | +|---|---| +| On-chain | 10,000,000 sats per node (LND) + 10,000,000 sats each on cln and eclair, confirmed | +| Channels | alice→bob 5,000,000 · bob→carol 3,000,000 · eclair→bob 3,500,000 sats (1,000,000 pushed each) · cln→alice 4,000,000 sats (no push) | +| Routed payments | 5 × alice→carol via bob (10k, 25k, 50k, 75k, 100k sats) | +| Direct payments | 2 × alice→bob (5k, 15k sats) · 2 × eclair→bob (8k, 18k sats) | +| Open invoices | 2 unpaid on carol (20k, 40k sats) · 1 unpaid on eclair (30k sats) | +| Personas | alice + bob + cln + eclair OPERATOR, carol MERCHANT | -When you are done you can destroy containers with: -``` -$ docker-compose down -v -``` ---- -# 2) Stand alone RTL Setup -This is suitable when you already have a LND node running and configured. +## Determinism -## 2.1) From docker image pull -``` -RTL_VERSION=0.12.0 -docker run --name rtl -d -it \ --e RTL_CONFIG_PATH=/RTLConfig \ --v /path/to/RTLConfig/dir:/RTLConfig \ --v /path/to/macaroon/dir:/path/as/specified/in/RTLConfig \ --v /path/to/database/dir:/RTL/database \ --p 3000:3000/tcp \ -shahanafarooqui/rtl:${RTL_VERSION} +Every amount and payment in `scripts/seed.sh` is fixed. A fresh run always produces +identical state, so screenshots taken before and after a change differ only by the +change. **Do not introduce randomness.** + +The seed is deterministic but deliberately *not* idempotent — running it twice would +fund every node again and open a second set of channels. It refuses to run against an +already-seeded network. To start over: + +```bash +docker compose down -v && docker compose up -d && ./scripts/seed.sh ``` -## 2.2) From local docker build -### 2.2.1) Build the image locally -``` -RTL_VERSION=0.12.0 -docker build -t rtl:${RTL_VERSION} -f dockerfiles/Dockerfile . -``` -### 2.2.2) Create .env file -Create an environment file with your required configurations. Sample .env: -``` -RTL_CONFIG_PATH=/RTLConfig -LN_IMPLEMENTATION=LND -MACAROON_PATH=/LNDMacaroon -LN_SERVER_URL=https://host.docker.internal:8080 +## Helpers +```bash +bin/b-cli getblockcount # bitcoin-cli +bin/b-cli -rpcwallet=rtldev getbalance +bin/ln-cli alice getinfo # lncli, node name required +bin/ln-cli bob listchannels +bin/ln-cli bob fwdinghistory # forwarding history +bin/e-cli getinfo # eclair-cli +bin/e-cli channels +bin/sso-url # BTCPay-style SSO link (needs --profile sso) +docker compose exec cln lightning-cli --network=regtest listpeerchannels # Core Lightning ``` -### 2.2.3) Run the newly built image with .env configurations -``` -RTL_VERSION=0.12.0 -docker run -d -it \ --v /path/to/RTLConfig/dir:/RTLConfig \ --v /path/to/macaroon/dir:/LNDMacaroon \ --v /path/to/database/dir:/RTL/database \ ---env-file=.env -p 3000:3000 rtl:${RTL_VERSION} +Logs: + +```bash +docker compose logs -f rtl +docker compose logs alice ``` -Once the container is running you can access the RTL UI at http://localhost:3000 +## BTCPay SSO harness ---- -@hashamadeus on Twitter +BTCPay Server bundles RTL and runs it in single-sign-on mode, reached through a very +different entry path than the standalone login: no password, a rotating cookie, and a +reverse proxy in front. That path has broken before without the standalone flow +noticing, so the fixture can reproduce it. + +It is behind a compose profile, so a plain `docker compose up -d` does not start it: + +```bash +docker compose --profile sso up -d +./scripts/verify-sso.sh # 11 assertions over the whole entry path +open "$(bin/sso-url)" # or click through it yourself +``` + +`bin/sso-url` prints the link BTCPay renders on its Services page. Following it lands +you in RTL already authenticated, against the `alice` node. + +### How the flow works + +```mermaid +sequenceDiagram + participant B as Browser + participant P as rtl-sso-proxy
(stands in for traefik) + participant R as rtl-sso
(RTL_SSO=1) + participant C as .cookie
(shared volume) + + R->>C: writes 64 random bytes at startup + Note over B: bin/sso-url reads the cookie —
BTCPay reads the same file + B->>P: GET /rtl/api/authenticate/cookie?access-key= + P->>R: same URI, prefix passed through + R-->>B: not a registered route → catch-all:
mints XSRF-TOKEN, serves index.html + B->>P: POST /rtl/api/authenticate
{ PASSWORD, sha256(access-key) } + P->>R: + R->>C: matches → rotates the cookie + R-->>B: JWT +``` + +The three services are `rtl-sso-config-init` (stages `rtl/RTL-Config.sso.json`, same +copy-into-a-volume dance as the standalone RTL), `rtl-sso` (RTL with `RTL_SSO=1`, +`RTL_COOKIE_PATH` and `LOGOUT_REDIRECT_LINK` — the env block is lifted verbatim from +BTCPay's own compose fragment), and `rtl-sso-proxy` (nginx standing in for BTCPay's +traefik). `RTL_IMAGE` overrides both RTL containers at once, so a branch build gets +tested through both entry paths. + +It is a second RTL container rather than a flag on the first because RTL picks one +authentication mode at startup — SSO and the password login cannot coexist in one +instance. Both are up at the same time on different ports. + +### Things this makes visible + +**No prefix stripping anywhere.** RTL is built with `` and mounts +every route under `baseHref '/rtl'`, so BTCPay's traefik — and the nginx here — pass +`/rtl/…` through unmodified. The proxy deliberately 404s everything outside `/rtl`, so +a request escaping the prefix shows up as a failure instead of being quietly served. + +**The entry URL is not a real route.** `/rtl/api/authenticate/cookie` matches nothing in +`server/routes/shared/authenticate.ts`; it falls through to the catch-all in +`server/utils/app.ts`, which is what mints the `XSRF-TOKEN` cookie and serves the SPA. +The access-key is the raw cookie file content — the frontend sha256s it before posting +and the backend compares against `sha256(cookieValue)`. + +**`GET /rtl/` mints no CSRF token.** That path is served by `express.static`, which +sits *above* the catch-all, so a client entering there has no `XSRF-TOKEN` and its first +POST gets a 403. Only the catch-all mints one. This is long-standing behaviour, not a +regression — but it is why `verify-sso.sh` always seeds its cookie jar from the entry +URL, and worth remembering before concluding that CSRF is broken. + +**The cookie is effectively single-use.** Authenticating rotates it, so a stale +`bin/sso-url` link fails. BTCPay re-reads the file on every page render, which is why +this is invisible in normal use. + +### What it does not cover + +BTCPay itself is not here — no postgres, nbxplorer or btcpayserver container. So this +does not exercise BTCPay *generating* the link, its Services page, or its own upgrades. +For that, run BTCPay's own regtest stack and point it at a local image: + +```bash +# in a btcpayserver-docker checkout, after building an RTL image locally +docker build -t shahanafarooqui/rtl:dev /path/to/RTL +# then edit the rtl image tag in the generated docker-compose, or set it in +# docker-compose-generator/docker-fragments/bitcoin-lnd.yml before generating +``` + +That tests the real composition rather than this reconstruction of it; the harness here +is the fast everyday check. + +## Notes and gotchas + +**RTL's config.** `rtl/RTL-Config.regtest.json` is the tracked template. RTL rewrites +its config on startup, so an init container copies it into a volume rather than +bind-mounting it — a read-only mount makes RTL exit with `EROFS`, and a writable one +would let RTL modify a version-controlled file. The name is not `RTL-Config.json` +because `.gitignore` matches that bare filename at any depth. + +**`lncli` needs `--lnddir=/home/lnd/.lnd`.** `docker compose exec` lands as root, +whose HOME is `/root`, but lnd's datadir is `/home/lnd/.lnd`. `bin/ln-cli` handles this. + +**Changing bitcoind credentials.** `docker-compose.yml` carries an `-rpcauth` hash for +the `BITCOIN_RPC_USER` / `BITCOIN_RPC_PASSWORD` in `.env`. Changing them there is not +enough; regenerate the hash: + +```bash +python3 - <<'EOF' +import hmac, hashlib +user, password, salt = "rtldev", "rtldev", "8a1f2c3d4e5b6a7c8d9e0f1a2b3c4d5e" +print(f"{user}:{salt}${hmac.new(salt.encode(), password.encode(), hashlib.sha256).hexdigest()}") +EOF +``` + +In `docker-compose.yml` the `$` must be written `$$` to escape Compose interpolation. + +**Payments right after channel open will fail.** The channel graph has to reach alice +before she can route to carol. The seed waits for this; anything you script yourself +should too. + +**Core Lightning auth uses a rune.** RTL talks to `cln` over clnrest and authenticates +with a rune, not a macaroon. `cln/create-rune.sh` — run from the `cln` healthcheck — +creates a master rune once the RPC is up and writes it as `LIGHTNING_RUNE="…"` to +`rtl.rune` in the shared `cln_data` volume; RTL reads it via the `runePath` in its config. +The healthcheck reports unhealthy until that file exists, so RTL (which waits on +`service_healthy`) starts only once the rune is ready. Because it runs on every +healthcheck tick (idempotent), a transient RPC-startup race just retries and self-heals +rather than wedging the stack. `--clnrest-host=0.0.0.0` is required for RTL (another +container) to reach clnrest; the default `127.0.0.1` would only be reachable from inside +the node. + +**Eclair has no wallet of its own.** It drives a bitcoind wallet over RPC. The +`eclair-wallet-init` service creates a dedicated `eclair` wallet before the node starts; +without it eclair would attach to "the default loaded wallet" — the `rtldev` mining +wallet — and report the miner's balance as its own. RTL authenticates to eclair with +`lnApiPassword` (HTTP basic auth), no file mount needed. Eclair also confirms channels +at 8 blocks (`channel.min-depth-blocks`), not 6 — the seed mines accordingly. And its +`bitcoind.zmqblock` must point at a `zmqpubhashblock` endpoint — wired to the rawblock +one LND uses, eclair never sees new blocks and channels never confirm. + +## Not included + +The Boltz swap service. + +BTCPay Server itself (postgres + nbxplorer + btcpayserver). The `sso` profile +reproduces the entry path BTCPay uses to reach RTL without running BTCPay — see +[BTCPay SSO harness](#btcpay-sso-harness) for what that covers and what it does not. diff --git a/docker/bin/b-cli b/docker/bin/b-cli index d43ba4d4..55d1002c 100755 --- a/docker/bin/b-cli +++ b/docker/bin/b-cli @@ -1,10 +1,20 @@ #!/usr/bin/env bash +# +# bitcoin-cli against the regtest fixture. +# +# bin/b-cli getblockchaininfo +# bin/b-cli -rpcwallet=rtldev getbalance +# bin/b-cli -rpcwallet=rtldev generatetoaddress 6
+set -euo pipefail + +cd "$(dirname "$0")/.." +# shellcheck disable=SC1091 source .env -docker-compose exec bitcoind bitcoin-cli \ - -datadir=/bitcoin \ - -rpcuser=$BITCOIN_RPC_USER \ - -rpcpassword=$BITCOIN_RPC_PASSWORD \ - -rpcport=$BITCOIN_RPC_PORT \ - "$@" \ No newline at end of file +exec docker compose exec -T bitcoind bitcoin-cli \ + -regtest \ + -rpcuser="$BITCOIN_RPC_USER" \ + -rpcpassword="$BITCOIN_RPC_PASSWORD" \ + -rpcport="$BITCOIN_RPC_PORT" \ + "$@" diff --git a/docker/bin/e-cli b/docker/bin/e-cli new file mode 100755 index 00000000..e01dc8c8 --- /dev/null +++ b/docker/bin/e-cli @@ -0,0 +1,20 @@ +#!/usr/bin/env bash +# +# eclair-cli against the regtest fixture's eclair node. +# +# bin/e-cli getinfo +# bin/e-cli channels +# bin/e-cli createinvoice --amountMsat=1000000 --description=test +# +# The API password is passed explicitly because 'docker compose exec' does not +# read eclair's config for auth; it defaults to the fixture's throwaway value. + +set -euo pipefail + +cd "$(dirname "$0")/.." +# shellcheck disable=SC1091 +source .env + +exec docker compose exec -T eclair eclair-cli \ + -p "${ECLAIR_API_PASSWORD:-rtldev}" \ + "$@" diff --git a/docker/bin/ln-cli b/docker/bin/ln-cli index 0ef12af1..e87c213c 100755 --- a/docker/bin/ln-cli +++ b/docker/bin/ln-cli @@ -1,8 +1,32 @@ #!/usr/bin/env bash +# +# lncli against one node of the regtest fixture. The node name is required, +# because the fixture runs three of them. +# +# bin/ln-cli alice getinfo +# bin/ln-cli bob listchannels +# bin/ln-cli carol addinvoice --amt=1000 +# +# --lnddir is passed explicitly: 'docker compose exec' lands as root, whose HOME +# is /root, but lnd's datadir is /home/lnd/.lnd. Without it lncli looks for the +# TLS cert in the wrong place and fails. -source .env +set -euo pipefail -docker-compose exec lnd lncli \ - --macaroonpath /shared/admin.macaroon \ - --tlscertpath /shared/tls.cert \ - "$@" \ No newline at end of file +cd "$(dirname "$0")/.." + +node="${1:-}" +case "$node" in + alice|bob|carol) + shift + ;; + *) + echo "usage: $(basename "$0") [lncli args...]" >&2 + exit 1 + ;; +esac + +exec docker compose exec -T "$node" lncli \ + --network=regtest \ + --lnddir=/home/lnd/.lnd \ + "$@" diff --git a/docker/bin/sso-url b/docker/bin/sso-url new file mode 100755 index 00000000..08d92870 --- /dev/null +++ b/docker/bin/sso-url @@ -0,0 +1,39 @@ +#!/usr/bin/env bash +# +# Print the BTCPay-style single-sign-on entry URL for the SSO harness. +# +# docker compose --profile sso up -d +# bin/sso-url # print it +# open "$(bin/sso-url)" # or follow it straight into RTL +# +# This is the link BTCPay renders on its Services page. BTCPay builds it from +# BTCPAY_BTCEXTERNALRTL="server=/rtl/api/authenticate/cookie;cookiefile=..." +# by reading the cookie file RTL wrote and appending it as ?access-key=. The +# value is the raw file content: RTL's frontend sha256s it before posting +# (src/app/app.component.ts) and the backend compares against +# sha256(cookieValue), so no hashing happens here. +# +# Authenticating rotates the cookie (common.refreshCookie), so re-run this for +# each login -- exactly as BTCPay re-reads the file on every page render. + +set -euo pipefail + +cd "$(dirname "$0")/.." +# shellcheck disable=SC1091 +[ -f .env ] && source .env + +port="${RTL_SSO_PORT:-3001}" + +if ! docker compose --profile sso ps --status running --services 2>/dev/null | grep -qx rtl-sso; then + echo "rtl-sso is not running. Start it with: docker compose --profile sso up -d" >&2 + exit 1 +fi + +cookie="$(docker compose --profile sso exec -T rtl-sso cat /RTL/cookie/.cookie | tr -d '\r\n')" + +if [ -z "$cookie" ]; then + echo "The cookie file /RTL/cookie/.cookie is empty. Is RTL_SSO=1 set on rtl-sso?" >&2 + exit 1 +fi + +echo "http://localhost:${port}/rtl/api/authenticate/cookie?access-key=${cookie}" diff --git a/docker/bitcoind/Dockerfile b/docker/bitcoind/Dockerfile deleted file mode 100644 index def696ca..00000000 --- a/docker/bitcoind/Dockerfile +++ /dev/null @@ -1,10 +0,0 @@ -FROM ubuntu:18.04 - -RUN apt-get -qq update && apt-get install -y software-properties-common - -RUN add-apt-repository -y ppa:bitcoin/bitcoin \ - && add-apt-repository -y universe && apt-get update - -RUN apt-get install -y bitcoind - -ADD ./bitcoin.conf /bitcoin/bitcoin.conf diff --git a/docker/bitcoind/bitcoin.conf b/docker/bitcoind/bitcoin.conf deleted file mode 100644 index 0e320e91..00000000 --- a/docker/bitcoind/bitcoin.conf +++ /dev/null @@ -1,2 +0,0 @@ -daemon=0 -printtoconsole=1 \ No newline at end of file diff --git a/docker/cln/create-rune.sh b/docker/cln/create-rune.sh new file mode 100755 index 00000000..3fd3e3d1 --- /dev/null +++ b/docker/cln/create-rune.sh @@ -0,0 +1,31 @@ +#!/usr/bin/env bash +# +# Ensure the RTL rune exists. One quick, idempotent attempt: +# - already have it -> succeed +# - RPC up, createrune works -> write it, succeed +# - RPC not ready / failure -> fail, so the caller retries +# +# This is invoked from the cln healthcheck (not a one-shot poststart hook) so a +# transient RPC-startup race self-heals on the next healthcheck tick instead of +# permanently wedging the stack. Stores the rune as LIGHTNING_RUNE="", the +# format RTL reads via its runePath. POSIX sh compatible. +set -u + +# Hardcoded to match the single source of truth used everywhere else in the fixture: +# the cln volume mount (cln_data:/root/.lightning), the healthcheck's `test -f`, and +# RTL's runePath (/cln/rtl.rune, /cln being cln_data mounted read-only). Keep these in +# lockstep — do not switch to ${LIGHTNINGD_DATA}, which would silently diverge if the +# image's data dir ever changed while the mounts/healthcheck stayed on /root/.lightning. +RUNE_FILE="/root/.lightning/rtl.rune" + +[ -f "${RUNE_FILE}" ] && exit 0 + +lightning-cli --network="${LIGHTNINGD_NETWORK}" getinfo >/dev/null 2>&1 || exit 1 + +rune=$(lightning-cli --network="${LIGHTNINGD_NETWORK}" createrune 2>/dev/null \ + | grep -o '"rune"[[:space:]]*:[[:space:]]*"[^"]*"' \ + | sed -e 's/.*"rune"[[:space:]]*:[[:space:]]*"//' -e 's/"$//') + +[ -n "${rune}" ] || exit 1 + +printf 'LIGHTNING_RUNE="%s"\n' "${rune}" > "${RUNE_FILE}" diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 8daed008..e059ab3a 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -1,132 +1,400 @@ -version: "2.4" +# Regtest dev fixture for RTL: bitcoind + 3 LND nodes + RTL. +# +# NOT suitable for production. All credentials are throwaway. +# +# Topology is alice -> bob -> carol, so bob forwards payments and RTL's +# routing/forwarding screens have data in them. See README.md. +# +# Node images come from Polar (https://lightningpolar.com), which publishes +# multi-arch (amd64 + arm64) builds. Nothing is built locally. volumes: - bitcoin_data: - lightning_data: - lightning_shared: + bitcoind_data: + alice_data: + bob_data: + carol_data: + cln_data: + eclair_data: rtl_db: + rtl_config: + rtl_sso_db: + rtl_sso_config: + rtl_sso_cookie: + +x-lnd: &lnd + image: polarlightning/lnd:0.20.0-beta + restart: unless-stopped + depends_on: + - bitcoind services: bitcoind: container_name: ${COMPOSE_PROJECT_NAME}_bitcoind - image: bitcoind:0.19.0 - build: ./bitcoind - command: [ - "bitcoind", - "-datadir=/bitcoin", - "-port=${BITCOIN_PORT}", - "-upnp=0", - "-dnsseed=0", - "-txindex=1", - "-listen=0", - "-onlynet=ipv4", - "-regtest=1", - "-regtest.rpcport=${BITCOIN_RPC_PORT}", - "-regtest.port=${BITCOIN_PORT}", - "-rpcport=${BITCOIN_RPC_PORT}", - "-rpcuser=${BITCOIN_RPC_USER}", - "-rpcpassword=${BITCOIN_RPC_PASSWORD}", - "-rpcallowip=0.0.0.0/0", - "-zmqpubrawtx=tcp://0.0.0.0:${BITCOIN_ZMQ_TX_PORT}", - "-zmqpubrawblock=tcp://0.0.0.0:${BITCOIN_ZMQ_BLOCK_PORT}", - "-zmqpubhashblock=tcp://0.0.0.0:${BITCOIN_ZMQ_BLOCK_PORT}" - ] - ports: - - "${BITCOIN_PORT}:${BITCOIN_PORT}" - volumes: - - bitcoin_data:/bitcoin - - lnd: - container_name: ${COMPOSE_PROJECT_NAME}_lnd - image: lnd:0.12.0-beta - build: ./lnd + image: polarlightning/bitcoind:30.0 + restart: unless-stopped + command: + - bitcoind + - -server=1 + - -regtest=1 + # rpcauth hash for ${BITCOIN_RPC_USER}/${BITCOIN_RPC_PASSWORD}. '$$' escapes + # compose interpolation and reaches bitcoind as a single '$'. + - -rpcauth=rtldev:8a1f2c3d4e5b6a7c8d9e0f1a2b3c4d5e$$010df4b32c5e9a556cba1857eb5865990c983d8a56dadc0fdbf457cf90073c6c + - -zmqpubrawblock=tcp://0.0.0.0:${BITCOIN_ZMQ_BLOCK_PORT} + - -zmqpubrawtx=tcp://0.0.0.0:${BITCOIN_ZMQ_TX_PORT} + # eclair's zmqblock consumes the hashblock topic, not rawblock (LND uses + # rawblock/rawtx above); without this endpoint eclair never sees new + # blocks and channels stay in WAIT_FOR_FUNDING_CONFIRMED forever. + - -zmqpubhashblock=tcp://0.0.0.0:${BITCOIN_ZMQ_HASHBLOCK_PORT:-28336} + - -txindex=1 + - -dnsseed=0 + - -rpcbind=0.0.0.0 + - -rpcallowip=0.0.0.0/0 + - -rpcport=${BITCOIN_RPC_PORT} + - -listen=1 + - -listenonion=0 + - -fallbackfee=0.0002 + ports: + - "${BITCOIN_RPC_PORT}:${BITCOIN_RPC_PORT}" + volumes: + - bitcoind_data:/home/bitcoin/.bitcoin + + # --alias / --externalip / --tlsextradomain are per-node on purpose: the alias + # is what RTL displays, and the extradomain must match the hostname RTL dials + # (https://alice:8080) or TLS validation fails. + alice: + <<: *lnd + container_name: ${COMPOSE_PROJECT_NAME}_alice + command: + - lnd + - --noseedbackup + - --trickledelay=5000 + - --alias=alice + - --externalip=alice + - --tlsextradomain=alice + - --tlsextradomain=${COMPOSE_PROJECT_NAME}_alice + - --tlsextradomain=host.docker.internal + - --listen=0.0.0.0:${LIGHTNING_P2P_PORT} + - --rpclisten=0.0.0.0:${LIGHTNING_RPC_PORT} + - --restlisten=0.0.0.0:${LIGHTNING_REST_PORT} + - --bitcoin.active + - --bitcoin.regtest + - --bitcoin.node=bitcoind + - --bitcoind.rpchost=${BITCOIN_HOST}:${BITCOIN_RPC_PORT} + - --bitcoind.rpcuser=${BITCOIN_RPC_USER} + - --bitcoind.rpcpass=${BITCOIN_RPC_PASSWORD} + - --bitcoind.zmqpubrawblock=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_BLOCK_PORT} + - --bitcoind.zmqpubrawtx=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_TX_PORT} + - --accept-keysend + - --accept-amp + ports: + - "${ALICE_REST_PORT}:${LIGHTNING_REST_PORT}" + volumes: + - alice_data:/home/lnd/.lnd + + bob: + <<: *lnd + container_name: ${COMPOSE_PROJECT_NAME}_bob + command: + - lnd + - --noseedbackup + - --trickledelay=5000 + - --alias=bob + - --externalip=bob + - --tlsextradomain=bob + - --tlsextradomain=${COMPOSE_PROJECT_NAME}_bob + - --tlsextradomain=host.docker.internal + - --listen=0.0.0.0:${LIGHTNING_P2P_PORT} + - --rpclisten=0.0.0.0:${LIGHTNING_RPC_PORT} + - --restlisten=0.0.0.0:${LIGHTNING_REST_PORT} + - --bitcoin.active + - --bitcoin.regtest + - --bitcoin.node=bitcoind + - --bitcoind.rpchost=${BITCOIN_HOST}:${BITCOIN_RPC_PORT} + - --bitcoind.rpcuser=${BITCOIN_RPC_USER} + - --bitcoind.rpcpass=${BITCOIN_RPC_PASSWORD} + - --bitcoind.zmqpubrawblock=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_BLOCK_PORT} + - --bitcoind.zmqpubrawtx=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_TX_PORT} + - --accept-keysend + - --accept-amp + ports: + - "${BOB_REST_PORT}:${LIGHTNING_REST_PORT}" + volumes: + - bob_data:/home/lnd/.lnd + + carol: + <<: *lnd + container_name: ${COMPOSE_PROJECT_NAME}_carol + command: + - lnd + - --noseedbackup + - --trickledelay=5000 + - --alias=carol + - --externalip=carol + - --tlsextradomain=carol + - --tlsextradomain=${COMPOSE_PROJECT_NAME}_carol + - --tlsextradomain=host.docker.internal + - --listen=0.0.0.0:${LIGHTNING_P2P_PORT} + - --rpclisten=0.0.0.0:${LIGHTNING_RPC_PORT} + - --restlisten=0.0.0.0:${LIGHTNING_REST_PORT} + - --bitcoin.active + - --bitcoin.regtest + - --bitcoin.node=bitcoind + - --bitcoind.rpchost=${BITCOIN_HOST}:${BITCOIN_RPC_PORT} + - --bitcoind.rpcuser=${BITCOIN_RPC_USER} + - --bitcoind.rpcpass=${BITCOIN_RPC_PASSWORD} + - --bitcoind.zmqpubrawblock=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_BLOCK_PORT} + - --bitcoind.zmqpubrawtx=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_TX_PORT} + - --accept-keysend + - --accept-amp + ports: + - "${CAROL_REST_PORT}:${LIGHTNING_REST_PORT}" + volumes: + - carol_data:/home/lnd/.lnd + + # Core Lightning node. Unlike the LND nodes it talks to RTL over clnrest (the + # built-in REST plugin) using rune auth, so it needs --clnrest-* options and a + # rune written where RTL can read it. create-rune.sh (run from the healthcheck) + # creates the rune and writes it to /root/.lightning/rtl.rune (RTL mounts that + # read-only); the healthcheck is unhealthy until it exists, so rtl waits for it. + # --clnrest-host=0.0.0.0 is required so the rtl container can reach it; the default + # 127.0.0.1 would only be reachable from inside this container. Protocol stays https + # (clnrest default, self-signed) — RTL connects with rejectUnauthorized:false. + cln: + image: elementsproject/lightningd:v25.09 + container_name: ${COMPOSE_PROJECT_NAME}_cln restart: unless-stopped - command: [ - "lnd", - "--noseedbackup", - "--rpclisten=0.0.0.0:${LIGHTNING_RPC_PORT}", - "--restlisten=0.0.0.0:${LIGHTNING_REST_PORT}", - "--adminmacaroonpath=/shared/admin.macaroon", - "--tlsextradomain=${LIGHTNING_HOST}", - "--tlsextraip=0.0.0.0", - "--tlscertpath=/shared/tls.cert", - "--datadir=/lnd", - "--bitcoin.active", - "--bitcoin.regtest", - "--bitcoin.node=bitcoind", - "--bitcoind.rpchost=${BITCOIN_HOST}:${BITCOIN_RPC_PORT}", - "--bitcoind.rpcuser=${BITCOIN_RPC_USER}", - "--bitcoind.rpcpass=${BITCOIN_RPC_PASSWORD}", - "--bitcoind.zmqpubrawtx=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_TX_PORT}", - "--bitcoind.zmqpubrawblock=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_BLOCK_PORT}" - ] depends_on: - bitcoind + environment: + LIGHTNINGD_NETWORK: regtest + command: + - --alias=cln + - --bitcoin-rpcconnect=${BITCOIN_HOST} + - --bitcoin-rpcport=${BITCOIN_RPC_PORT} + - --bitcoin-rpcuser=${BITCOIN_RPC_USER} + - --bitcoin-rpcpassword=${BITCOIN_RPC_PASSWORD} + - --bitcoin-retry-timeout=3600 + - --addr=0.0.0.0:9735 + - --announce-addr=cln:9735 + - --large-channels + - --clnrest-host=0.0.0.0 + - --clnrest-port=3010 ports: - - "${LIGHTNING_REST_PORT}:${LIGHTNING_REST_PORT}" + - "${CLN_REST_PORT:-3010}:3010" volumes: - - lightning_data:/lnd - - lightning_shared:/shared + - cln_data:/root/.lightning + - ./cln/create-rune.sh:/opt/create-rune.sh:ro + healthcheck: + # create-rune.sh ensures the rune exists (idempotent, one quick attempt) and + # this reports healthy only once it does. Driving it from the healthcheck — which + # retries on its interval — means a transient RPC-startup race self-heals instead + # of a one-shot script permanently wedging the stack. rtl waits on this via + # depends_on: condition: service_healthy before reading the rune at startup. + test: ["CMD-SHELL", "sh /opt/create-rune.sh && test -f /root/.lightning/rtl.rune"] + interval: 5s + timeout: 10s + retries: 40 - boltz: - container_name: ${COMPOSE_PROJECT_NAME}_boltz - image: boltz:1.2.0 - build: ./boltz - restart: unless-stopped - command: [ - "boltz", - "--noseedbackup", - "--rpclisten=0.0.0.0:${BOLTZ_RPC_PORT}", - "--restlisten=0.0.0.0:${BOLTZ_REST_PORT}", - "--adminmacaroonpath=/shared/admin.macaroon", - "--tlsextradomain=${BOLTZ_HOST}", - "--tlsextraip=0.0.0.0", - "--tlscertpath=/shared/tls.cert", - "--datadir=/boltz", - "--bitcoin.active", - "--bitcoin.regtest", - "--bitcoin.node=bitcoind", - "--bitcoind.rpchost=${BITCOIN_HOST}:${BITCOIN_RPC_PORT}", - "--bitcoind.rpcuser=${BITCOIN_RPC_USER}", - "--bitcoind.rpcpass=${BITCOIN_RPC_PASSWORD}", - "--bitcoind.zmqpubrawtx=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_TX_PORT}", - "--bitcoind.zmqpubrawblock=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_BLOCK_PORT}" - ] + # Eclair has no on-chain wallet of its own -- it drives a bitcoind wallet over + # RPC. Without a dedicated wallet it would grab "the default loaded wallet", + # which here is the rtldev mining wallet, and eclair's on-chain balance would + # show the miner's coins. This init container creates (or reloads) a wallet + # named "eclair" before the eclair node starts; load_on_startup survives + # bitcoind restarts. + eclair-wallet-init: + container_name: ${COMPOSE_PROJECT_NAME}_eclair_wallet_init + image: polarlightning/bitcoind:30.0 depends_on: - bitcoind + entrypoint: ["/bin/sh", "-c"] + command: + - | + bcli() { bitcoin-cli -regtest -rpcconnect=${BITCOIN_HOST} -rpcport=${BITCOIN_RPC_PORT} -rpcuser=${BITCOIN_RPC_USER} -rpcpassword=${BITCOIN_RPC_PASSWORD} "$$@"; } + i=0 + until bcli getblockchaininfo >/dev/null 2>&1; do + i=$$((i+1)); [ "$$i" -ge 60 ] && echo "bitcoind never came up" && exit 1 + sleep 1 + done + bcli -named createwallet wallet_name=eclair load_on_startup=true >/dev/null 2>&1 \ + || bcli loadwallet eclair true >/dev/null 2>&1 \ + || true + bcli -rpcwallet=eclair getwalletinfo >/dev/null + echo "eclair wallet ready" + + # Eclair node. Talks to RTL over its HTTP API with basic auth (the + # lnApiPassword in RTL's config). The polarlightning image is used because + # acinq/eclair on Docker Hub is amd64-only and its newest versioned tag is + # years stale; Polar builds the same ACINQ source multi-arch (amd64 + arm64). + # The image entrypoint translates each --key=value into -Declair.key=value. + # The entrypoint also overrides server.public-ips.0 with the container IP, but + # the arg must still be present for that substitution to happen. + eclair: + image: polarlightning/eclair:0.13.1 + container_name: ${COMPOSE_PROJECT_NAME}_eclair + restart: unless-stopped + depends_on: + bitcoind: + condition: service_started + eclair-wallet-init: + condition: service_completed_successfully + command: + - polar-eclair + - --node-alias=eclair + - --server.public-ips.0=eclair + - --server.port=9735 + - --api.enabled=true + - --api.binding-ip=0.0.0.0 + - --api.port=8080 + - --api.password=${ECLAIR_API_PASSWORD:-rtldev} + - --chain=regtest + - --bitcoind.host=${BITCOIN_HOST} + - --bitcoind.rpcport=${BITCOIN_RPC_PORT} + - --bitcoind.rpcuser=${BITCOIN_RPC_USER} + - --bitcoind.rpcpassword=${BITCOIN_RPC_PASSWORD} + # zmqblock must be bitcoind's *hashblock* endpoint (eclair subscribes to + # that topic); pointing it at the rawblock endpoint the LND nodes use + # leaves eclair blind to new blocks. + - --bitcoind.zmqblock=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_HASHBLOCK_PORT:-28336} + - --bitcoind.zmqtx=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_TX_PORT} + - --bitcoind.wallet=eclair + - --datadir=/home/eclair/.eclair + - --printToConsole=true + # Regtest feerates are far from mainnet estimates; without a wide + # tolerance eclair closes channels over feerate disagreements. + - --on-chain-fees.feerate-tolerance.ratio-low=0.00001 + - --on-chain-fees.feerate-tolerance.ratio-high=10000.0 ports: - - "${BOLTZ_REST_PORT}:${BOLTZ_REST_PORT}" + - "${ECLAIR_REST_PORT:-8281}:8080" volumes: - - boltz_data:/boltz - - boltz_shared:/shared - + - eclair_data:/home/eclair + + # RTL rewrites its config file on startup, so it cannot be given the tracked + # template directly: a bind mount would either be read-only (RTL exits with + # EROFS) or would let RTL scribble into a version-controlled file. Instead the + # template is copied into a volume that 'down -v' discards, which keeps the + # source pristine and every run starting from identical config. + rtl-config-init: + container_name: ${COMPOSE_PROJECT_NAME}_rtl_config_init + image: busybox:1.36 + command: > + sh -c "cp /template/RTL-Config.regtest.json /config/RTL-Config.json && + chmod 644 /config/RTL-Config.json && + echo 'config staged'" + volumes: + - ./rtl/RTL-Config.regtest.json:/template/RTL-Config.regtest.json:ro + - rtl_config:/config + rtl: container_name: ${COMPOSE_PROJECT_NAME}_rtl - image: shahanafarooqui/rtl:0.12.0 + # Defaults to the published image; override with RTL_IMAGE (e.g. a locally built + # branch image) to test unreleased changes: RTL_IMAGE=rtl:pr1625 docker compose up. + image: ${RTL_IMAGE:-shahanafarooqui/rtl:v0.15.10} restart: unless-stopped depends_on: - - lnd - volumes: - - lightning_shared:/shared:ro - - rtl_db:/database + rtl-config-init: + condition: service_completed_successfully + alice: + condition: service_started + bob: + condition: service_started + carol: + condition: service_started + cln: + condition: service_healthy + eclair: + condition: service_started ports: - "${RTL_PORT}:${RTL_PORT}" environment: - PORT: ${RTL_PORT} - HOST: 192.168.0.27 - MACAROON_PATH: /shared - LN_SERVER_URL: https://${LIGHTNING_HOST}:${LIGHTNING_REST_PORT} - CONFIG_PATH: '' - LN_IMPLEMENTATION: LND - SWAP_SERVER_URL: https://${LIGHTNING_HOST}:${LIGHTNING_LOOP_PORT} - SWAP_MACAROON_PATH: /shared - BOLTZ_SERVER_URL: https://${BOLTZ_HOST}:${BOLTZ_PORT} - BOLTZ_MACAROON_PATH: /shared - RTL_SSO: 0 - RTL_COOKIE_PATH: '' - LOGOUT_REDIRECT_LINK: '' - RTL_CONFIG_PATH: /RTL - BITCOIND_CONFIG_PATH: '' - CHANNEL_BACKUP_PATH: /shared/lnd/backup - ENABLE_OFFERS: false - ENABLE_PEERSWAP: false + RTL_CONFIG_PATH: /RTL/config + volumes: + - rtl_config:/RTL/config + - alice_data:/lnd/alice:ro + - bob_data:/lnd/bob:ro + - carol_data:/lnd/carol:ro + - cln_data:/cln:ro + - rtl_db:/RTL/database + + # --------------------------------------------------------------------------- + # BTCPay Server SSO harness -- profile "sso", so a plain 'up' does not start it: + # + # docker compose --profile sso up -d + # bin/sso-url + # + # BTCPay bundles RTL as a service and runs it in single-sign-on mode. RTL + # writes a random cookie to RTL_COOKIE_PATH; BTCPay reads that file and renders + # a link to /rtl/api/authenticate/cookie?access-key= on its Services + # page. That path is not a registered route -- it falls through to RTL's + # catch-all, which mints the XSRF-TOKEN cookie and serves index.html, and the + # SPA then reads access-key from the query string and posts it as a password + # login. Reproducing that entry path is the whole point of this harness: it is + # where RTL's auth, CSRF and static-serving behaviour meet an external caller, + # and it has broken before without the standalone flow noticing. + # + # BTCPay itself (postgres + nbxplorer + btcpayserver) is deliberately not here. + # See README.md, "BTCPay SSO harness", for what that leaves untested and how to + # run against a real BTCPay when it matters. + # --------------------------------------------------------------------------- + + # Same copy-into-a-volume dance as rtl-config-init above, and for the same + # reason: RTL rewrites its config on startup. + rtl-sso-config-init: + container_name: ${COMPOSE_PROJECT_NAME}_rtl_sso_config_init + profiles: ["sso"] + image: busybox:1.36 + command: > + sh -c "cp /template/RTL-Config.sso.json /config/RTL-Config.json && + chmod 644 /config/RTL-Config.json && + echo 'sso config staged'" + volumes: + - ./rtl/RTL-Config.sso.json:/template/RTL-Config.sso.json:ro + - rtl_sso_config:/config + + # A second RTL rather than a flag on the first: RTL picks one authentication + # mode at startup, so SSO and the password login cannot coexist in one + # instance. Only alice is wired up, matching BTCPay's one-node-per-RTL layout. + # + # The environment block is copied from BTCPay's own compose fragment + # (docker-compose-generator/docker-fragments/bitcoin-lnd.yml in + # btcpayserver-docker), so this exercises the env-driven SSO path BTCPay + # actually uses rather than the config-file equivalent -- which is why + # RTL-Config.sso.json leaves its SSO block zeroed and carries no multiPass. + # + # Only 'expose'd, never published: all access goes through the proxy, as it + # does under BTCPay. + rtl-sso: + container_name: ${COMPOSE_PROJECT_NAME}_rtl_sso + profiles: ["sso"] + image: ${RTL_IMAGE:-shahanafarooqui/rtl:v0.15.10} + restart: unless-stopped + depends_on: + rtl-sso-config-init: + condition: service_completed_successfully + alice: + condition: service_started + environment: + RTL_CONFIG_PATH: /RTL/config + RTL_SSO: 1 + RTL_COOKIE_PATH: /RTL/cookie/.cookie + LOGOUT_REDIRECT_LINK: /server/services + expose: + - "3000" + volumes: + - rtl_sso_config:/RTL/config + - rtl_sso_cookie:/RTL/cookie + - alice_data:/lnd/alice:ro + - rtl_sso_db:/RTL/database + + # Stands in for BTCPay's traefik. Routes only /rtl and /rtl/*, mirroring the + # label BTCPay puts on its RTL container; see nginx/rtl-sso.conf. + rtl-sso-proxy: + container_name: ${COMPOSE_PROJECT_NAME}_rtl_sso_proxy + profiles: ["sso"] + image: nginx:1.27-alpine + restart: unless-stopped + depends_on: + - rtl-sso + ports: + - "${RTL_SSO_PORT:-3001}:80" + volumes: + - ./nginx/rtl-sso.conf:/etc/nginx/conf.d/default.conf:ro diff --git a/docker/lnd/Dockerfile b/docker/lnd/Dockerfile deleted file mode 100644 index 65297f0d..00000000 --- a/docker/lnd/Dockerfile +++ /dev/null @@ -1,29 +0,0 @@ -FROM golang:1.11-alpine as builder - -WORKDIR /go/src/github.com/lightningnetwork/lnd - -# Force Go to use the cgo based DNS resolver. This is required to ensure DNS -# queries required to connect to linked containers succeed. -ENV GODEBUG netdns=cgo - -RUN apk add --no-cache --update alpine-sdk git make \ - && git clone -n https://github.com/lightningnetwork/lnd . \ - && git checkout d2186cc9da29853091175189268b073f49586cf0 \ - && make \ - && make install - -# Start a new, final image to reduce size. -FROM alpine as final - -# Expose lnd ports (server, rpc). -EXPOSE 9735 10009 - -# Copy the binaries and entrypoint from the builder image. -COPY --from=builder /go/bin/lncli /bin/ -COPY --from=builder /go/bin/lnd /bin/ - -# Add bash. -RUN apk add --no-cache bash - -# Import the config -ADD ./lnd.conf /root/.lnd/lnd.conf \ No newline at end of file diff --git a/docker/lnd/lnd.conf b/docker/lnd/lnd.conf deleted file mode 100644 index a9c97140..00000000 --- a/docker/lnd/lnd.conf +++ /dev/null @@ -1,2 +0,0 @@ -[Application Options] -debuglevel=info \ No newline at end of file diff --git a/docker/nginx/rtl-sso.conf b/docker/nginx/rtl-sso.conf new file mode 100644 index 00000000..314aa605 --- /dev/null +++ b/docker/nginx/rtl-sso.conf @@ -0,0 +1,46 @@ +# Reverse proxy in front of RTL running in BTCPay Server's single-sign-on mode. +# +# Stands in for the traefik instance BTCPay puts in front of its bundled RTL. +# The location regex mirrors the router rule BTCPay labels that container with: +# +# Host(`${BTCPAY_HOST}`) && (Path(`/rtl`) || PathPrefix(`/rtl/`)) +# +# so only /rtl and /rtl/* are proxied and everything else 404s here. That +# strictness is deliberate: RTL is built with (angular.json) +# and mounts every route under baseHref '/rtl' (server/utils/common.ts), so a +# request that escapes the prefix is a bug the harness should surface rather +# than quietly serve. +# +# The prefix is passed through unmodified -- there is no strip-prefix step to +# get wrong, because RTL expects to see it. proxy_pass without a URI part +# preserves the original request URI. + +map $http_upgrade $connection_upgrade { + default upgrade; + '' close; +} + +server { + listen 80; + server_name _; + + location ~ ^/rtl(/|$) { + proxy_pass http://rtl-sso:3000; + + # RTL runs with Express 'trust proxy' enabled, so these are what it sees + # as the client address in its logs and rate limiting. + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + + # RTL's websocket lives at /rtl/api/ws and stays open for the life of the + # session. Without the upgrade headers it fails the handshake and the UI + # silently stops receiving live updates; without the long read timeout + # nginx drops it after 60s. + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection $connection_upgrade; + proxy_read_timeout 3600s; + } +} diff --git a/docker/rtl/RTL-Config.regtest.json b/docker/rtl/RTL-Config.regtest.json new file mode 100644 index 00000000..73f85f4d --- /dev/null +++ b/docker/rtl/RTL-Config.regtest.json @@ -0,0 +1,103 @@ +{ + "multiPass": "rtldev", + "port": "3000", + "defaultNodeIndex": 1, + "dbDirectoryPath": "/RTL/database", + "SSO": { + "rtlSSO": 0, + "rtlCookiePath": "", + "logoutRedirectLink": "" + }, + "nodes": [ + { + "index": 1, + "lnNode": "alice", + "lnImplementation": "LND", + "authentication": { + "macaroonPath": "/lnd/alice/data/chain/bitcoin/regtest" + }, + "settings": { + "userPersona": "OPERATOR", + "themeMode": "DAY", + "themeColor": "PURPLE", + "logLevel": "ERROR", + "lnServerUrl": "https://alice:8080", + "fiatConversion": false, + "unannouncedChannels": false, + "blockExplorerUrl": "https://mempool.space" + } + }, + { + "index": 2, + "lnNode": "bob", + "lnImplementation": "LND", + "authentication": { + "macaroonPath": "/lnd/bob/data/chain/bitcoin/regtest" + }, + "settings": { + "userPersona": "OPERATOR", + "themeMode": "DAY", + "themeColor": "PURPLE", + "logLevel": "ERROR", + "lnServerUrl": "https://bob:8080", + "fiatConversion": false, + "unannouncedChannels": false, + "blockExplorerUrl": "https://mempool.space" + } + }, + { + "index": 3, + "lnNode": "carol", + "lnImplementation": "LND", + "authentication": { + "macaroonPath": "/lnd/carol/data/chain/bitcoin/regtest" + }, + "settings": { + "userPersona": "MERCHANT", + "themeMode": "DAY", + "themeColor": "PURPLE", + "logLevel": "ERROR", + "lnServerUrl": "https://carol:8080", + "fiatConversion": false, + "unannouncedChannels": false, + "blockExplorerUrl": "https://mempool.space" + } + }, + { + "index": 4, + "lnNode": "cln", + "lnImplementation": "CLN", + "authentication": { + "runePath": "/cln/rtl.rune" + }, + "settings": { + "userPersona": "OPERATOR", + "themeMode": "DAY", + "themeColor": "PURPLE", + "logLevel": "ERROR", + "lnServerUrl": "https://cln:3010", + "fiatConversion": false, + "unannouncedChannels": false, + "blockExplorerUrl": "https://mempool.space" + } + }, + { + "index": 5, + "lnNode": "eclair", + "lnImplementation": "ECL", + "authentication": { + "lnApiPassword": "rtldev" + }, + "settings": { + "userPersona": "OPERATOR", + "themeMode": "DAY", + "themeColor": "PURPLE", + "logLevel": "ERROR", + "lnServerUrl": "http://eclair:8080", + "fiatConversion": false, + "unannouncedChannels": false, + "blockExplorerUrl": "https://mempool.space" + } + } + ] +} diff --git a/docker/rtl/RTL-Config.sso.json b/docker/rtl/RTL-Config.sso.json new file mode 100644 index 00000000..59b7b1b4 --- /dev/null +++ b/docker/rtl/RTL-Config.sso.json @@ -0,0 +1,30 @@ +{ + "port": "3000", + "defaultNodeIndex": 1, + "dbDirectoryPath": "/RTL/database", + "SSO": { + "rtlSSO": 0, + "rtlCookiePath": "", + "logoutRedirectLink": "" + }, + "nodes": [ + { + "index": 1, + "lnNode": "alice", + "lnImplementation": "LND", + "authentication": { + "macaroonPath": "/lnd/alice/data/chain/bitcoin/regtest" + }, + "settings": { + "userPersona": "OPERATOR", + "themeMode": "DAY", + "themeColor": "PURPLE", + "logLevel": "ERROR", + "lnServerUrl": "https://alice:8080", + "fiatConversion": false, + "unannouncedChannels": false, + "blockExplorerUrl": "https://mempool.space" + } + } + ] +} diff --git a/docker/scripts/seed.sh b/docker/scripts/seed.sh new file mode 100755 index 00000000..bbe5779e --- /dev/null +++ b/docker/scripts/seed.sh @@ -0,0 +1,367 @@ +#!/usr/bin/env bash +# +# Seed the regtest fixture with a deterministic scenario. +# +# Every amount, capacity and payment below is fixed on purpose. Re-running this +# against a fresh network must produce the same state, so that screenshots taken +# now and after a redesign differ only by the design. Do not introduce randomness. +# +# Topology: +# +# alice --[ 5,000,000 sat ]--> bob --[ 3,000,000 sat ]--> carol +# cln --[ 4,000,000 sat ]--> alice +# eclair --[ 3,500,000 sat ]--> bob +# +# bob sits in the middle so it accrues forwarding history, which is what +# populates RTL's routing screens. +# +# Usage: ./scripts/seed.sh (from the docker/ directory) + +set -euo pipefail + +cd "$(dirname "$0")/.." + +# Docker Compose reads .env by itself; bash does not. Without this the defaults +# below silently win, and the summary at the end prints a password that does not +# work. +if [ -f .env ]; then + set -a + # shellcheck disable=SC1091 + source .env + set +a +fi + +BITCOIN_RPC_USER="${BITCOIN_RPC_USER:-rtldev}" +BITCOIN_RPC_PASSWORD="${BITCOIN_RPC_PASSWORD:-rtldev}" +ECLAIR_API_PASSWORD="${ECLAIR_API_PASSWORD:-rtldev}" + +NODES=(alice bob carol) + +# Deterministic scenario constants +FUND_SATS=10000000 # on-chain funding per node +CH_ALICE_BOB=5000000 # channel capacity alice -> bob +CH_BOB_CAROL=3000000 # channel capacity bob -> carol +CH_CLN_ALICE=4000000 # channel capacity cln -> alice (Core Lightning node) +CH_ECL_BOB=3500000 # channel capacity eclair -> bob (Eclair node) +PUSH_SATS=1000000 # pushed to remote on open, so both sides have liquidity +MINE_CONFIRM=6 # blocks to confirm a funding tx +ECL_MINE_CONFIRM=8 # eclair's channel.min-depth-blocks default is 8, not 6 + +log() { printf '\n\033[1;34m==>\033[0m %s\n' "$*"; } +info() { printf ' %s\n' "$*"; } +die() { printf '\n\033[1;31mERROR:\033[0m %s\n' "$*" >&2; exit 1; } + +bcli() { + docker compose exec -T bitcoind bitcoin-cli -regtest \ + -rpcuser="$BITCOIN_RPC_USER" -rpcpassword="$BITCOIN_RPC_PASSWORD" "$@" +} + +# 'docker compose exec' lands as root, whose HOME is /root, but lnd's datadir is +# /home/lnd/.lnd -- so lncli must be told where to find the cert and macaroon. +lncli() { + local node=$1; shift + docker compose exec -T "$node" lncli --network=regtest --lnddir=/home/lnd/.lnd "$@" +} + +# Core Lightning cli. Runs inside the cln container against the regtest node. +clncli() { + docker compose exec -T cln lightning-cli --network=regtest "$@" +} + +# Eclair cli. Runs inside the eclair container; auths with the API password. +ecli() { + docker compose exec -T eclair eclair-cli -p "$ECLAIR_API_PASSWORD" "$@" +} + +# Extract the first value for a JSON key from lncli output. +# 'first' matters: walletbalance reports confirmed_balance at the top level AND +# again under account_balance.default, and lncli emits no --json flag we can use. +json_first() { + grep -o "\"$1\": *\"[^\"]*\"" | head -1 | sed -e 's/^[^:]*: *"//' -e 's/"$//' +} + +# Wait for a command to succeed, up to N attempts. +wait_for() { + local desc=$1 attempts=$2; shift 2 + local i=1 + while (( i <= attempts )); do + if "$@" >/dev/null 2>&1; then + info "$desc ready (${i}s)" + return 0 + fi + sleep 1 + (( i++ )) + done + die "timed out after ${attempts}s waiting for: $desc" +} + +# ---------------------------------------------------------------- bitcoind + +log "Waiting for bitcoind" +wait_for "bitcoind RPC" 60 bcli getblockchaininfo + +log "Preparing wallet" +if ! bcli listwallets | grep -q '"rtldev"'; then + bcli createwallet rtldev >/dev/null 2>&1 || bcli loadwallet rtldev >/dev/null +fi +info "wallet rtldev present" + +MINE_ADDR=$(bcli -rpcwallet=rtldev getnewaddress) +info "mining address: $MINE_ADDR" + +HEIGHT=$(bcli getblockcount) +if (( HEIGHT < 101 )); then + log "Mining 101 blocks (coinbase maturity)" + bcli -rpcwallet=rtldev generatetoaddress 101 "$MINE_ADDR" >/dev/null +else + info "chain already at height $HEIGHT, skipping initial mine" +fi + +# ---------------------------------------------------------------- lnd nodes + +log "Waiting for LND nodes" +for n in "${NODES[@]}"; do + wait_for "$n" 120 lncli "$n" getinfo +done + +# This script is deterministic, not idempotent: running it twice would fund every +# node again and open a second set of channels. Refuse rather than corrupt the +# fixture, since the whole point is that a fresh run reproduces identical state. +if lncli alice listchannels | grep -q '"chan_id"'; then + die "network is already seeded -- re-running would double-fund it. + Reset with: docker compose down -v && docker compose up -d && ./scripts/seed.sh" +fi + +log "Funding nodes (${FUND_SATS} sats each)" +BTC_AMOUNT=$(awk "BEGIN{printf \"%.8f\", $FUND_SATS/100000000}") +for n in "${NODES[@]}"; do + addr=$(lncli "$n" newaddress p2wkh | json_first address) + [ -n "$addr" ] || die "could not get address for $n" + bcli -rpcwallet=rtldev sendtoaddress "$addr" "$BTC_AMOUNT" >/dev/null + info "$n <- $BTC_AMOUNT BTC ($addr)" +done + +bcli -rpcwallet=rtldev generatetoaddress "$MINE_CONFIRM" "$MINE_ADDR" >/dev/null +info "mined $MINE_CONFIRM blocks to confirm funding" + +log "Waiting for confirmed on-chain balances" +for n in "${NODES[@]}"; do + for i in $(seq 1 60); do + bal=$(lncli "$n" walletbalance | json_first confirmed_balance) + bal=${bal:-0} + (( bal > 0 )) && { info "$n confirmed balance: $bal sats"; break; } + sleep 1 + (( i == 60 )) && die "$n never saw confirmed funds" + done +done + +# ---------------------------------------------------------------- peers + +pubkey_of() { + lncli "$1" getinfo | json_first identity_pubkey +} + +log "Connecting peers" +ALICE_PUB=$(pubkey_of alice) +BOB_PUB=$(pubkey_of bob) +CAROL_PUB=$(pubkey_of carol) +info "alice pubkey: $ALICE_PUB" +info "bob pubkey: $BOB_PUB" +info "carol pubkey: $CAROL_PUB" + +lncli alice connect "${BOB_PUB}@bob:9735" >/dev/null 2>&1 || info "alice->bob already connected" +lncli bob connect "${CAROL_PUB}@carol:9735" >/dev/null 2>&1 || info "bob->carol already connected" +info "peers connected" + +# ---------------------------------------------------------------- channels + +log "Opening channels" +lncli alice openchannel --node_key="$BOB_PUB" \ + --local_amt="$CH_ALICE_BOB" --push_amt="$PUSH_SATS" >/dev/null +info "alice -> bob ${CH_ALICE_BOB} sats (push ${PUSH_SATS})" + +lncli bob openchannel --node_key="$CAROL_PUB" \ + --local_amt="$CH_BOB_CAROL" --push_amt="$PUSH_SATS" >/dev/null +info "bob -> carol ${CH_BOB_CAROL} sats (push ${PUSH_SATS})" + +bcli -rpcwallet=rtldev generatetoaddress "$MINE_CONFIRM" "$MINE_ADDR" >/dev/null +info "mined $MINE_CONFIRM blocks to confirm channels" + +log "Waiting for channels to become active" +for n in alice bob; do + for i in $(seq 1 60); do + active=$(lncli "$n" listchannels | grep -c '"active": *true' || true) + (( active > 0 )) && { info "$n has $active active channel(s)"; break; } + sleep 1 + (( i == 60 )) && die "$n has no active channels" + done +done + +# ---------------------------------------------------------------- payments + +# alice can only route to carol once the bob->carol channel has been announced and +# reached her graph. Channels are confirmed by now, but gossip is not instant -- +# --trickledelay alone is 5s. Paying before this lands fails with "no route". +log "Waiting for the channel graph to reach alice" +for i in $(seq 1 90); do + edges=$(lncli alice describegraph | grep -c '"channel_id"' || true) + (( ${edges:-0} >= 2 )) && { info "alice sees ${edges} channels in her graph"; break; } + sleep 1 + (( i == 90 )) && die "channel graph never propagated to alice" +done + +# Fixed amounts. alice -> carol routes through bob, generating forwarding history. +log "Sending payments (alice -> carol, routed via bob)" +for amt in 10000 25000 50000 75000 100000; do + inv=$(lncli carol addinvoice --amt="$amt" --memo="seed payment ${amt} sats" \ + | json_first payment_request) + if lncli alice payinvoice --force --pay_req="$inv" >/dev/null 2>&1; then + info "alice -> carol ${amt} sats (routed)" + else + info "alice -> carol ${amt} sats FAILED (route not ready?)" + fi +done + +log "Sending direct payments (alice -> bob)" +for amt in 5000 15000; do + inv=$(lncli bob addinvoice --amt="$amt" --memo="direct payment ${amt} sats" \ + | json_first payment_request) + lncli alice payinvoice --force --pay_req="$inv" >/dev/null 2>&1 \ + && info "alice -> bob ${amt} sats" \ + || info "alice -> bob ${amt} sats FAILED" +done + +# Unsettled invoices, so the invoice list shows more than one state. +log "Creating open (unpaid) invoices on carol" +for amt in 20000 40000; do + lncli carol addinvoice --amt="$amt" --memo="open invoice ${amt} sats" >/dev/null + info "carol open invoice ${amt} sats" +done + +# ---------------------------------------------------------------- core lightning + +# A Core Lightning node with one active channel, so RTL's CLN screens have data. +# An active (peer_connected) channel is what exercises the connection-status column. +log "Waiting for Core Lightning node" +wait_for "cln" 120 clncli getinfo + +log "Funding Core Lightning (${FUND_SATS} sats)" +CLN_ADDR=$(clncli newaddr | json_first bech32) +[ -n "$CLN_ADDR" ] || die "could not get address for cln" +bcli -rpcwallet=rtldev sendtoaddress "$CLN_ADDR" "$BTC_AMOUNT" >/dev/null +info "cln <- $BTC_AMOUNT BTC ($CLN_ADDR)" +bcli -rpcwallet=rtldev generatetoaddress "$MINE_CONFIRM" "$MINE_ADDR" >/dev/null +info "mined $MINE_CONFIRM blocks to confirm cln funding" + +log "Waiting for cln confirmed on-chain balance" +for i in $(seq 1 60); do + clncli listfunds | grep -q '"status": "confirmed"' && { info "cln funds confirmed"; break; } + sleep 1 + (( i == 60 )) && die "cln never saw confirmed funds" +done + +log "Opening channel cln -> alice" +clncli connect "${ALICE_PUB}@alice:9735" >/dev/null 2>&1 || info "cln->alice already connected" +clncli fundchannel "$ALICE_PUB" "$CH_CLN_ALICE" >/dev/null +info "cln -> alice ${CH_CLN_ALICE} sats" +bcli -rpcwallet=rtldev generatetoaddress "$MINE_CONFIRM" "$MINE_ADDR" >/dev/null +info "mined $MINE_CONFIRM blocks to confirm the cln channel" + +log "Waiting for the cln channel to become active" +for i in $(seq 1 90); do + if clncli listpeerchannels | grep -o '"state": "[A-Z_]*"' | grep -q "CHANNELD_NORMAL"; then + info "cln channel is CHANNELD_NORMAL"; break + fi + sleep 1 + (( i == 90 )) && die "cln channel never reached CHANNELD_NORMAL" +done + +# ---------------------------------------------------------------- eclair + +# An Eclair node with one active channel to bob plus a couple of settled and +# open invoices, so RTL's Eclair screens have data. Eclair's on-chain wallet is +# the dedicated "eclair" bitcoind wallet (created by eclair-wallet-init), but +# funding still goes through eclair's own API so its balances update. +log "Waiting for Eclair node" +wait_for "eclair" 180 ecli getinfo + +log "Funding Eclair (${FUND_SATS} sats)" +ECL_ADDR=$(ecli getnewaddress | tr -d '"') +[ -n "$ECL_ADDR" ] || die "could not get address for eclair" +bcli -rpcwallet=rtldev sendtoaddress "$ECL_ADDR" "$BTC_AMOUNT" >/dev/null +info "eclair <- $BTC_AMOUNT BTC ($ECL_ADDR)" +bcli -rpcwallet=rtldev generatetoaddress "$MINE_CONFIRM" "$MINE_ADDR" >/dev/null +info "mined $MINE_CONFIRM blocks to confirm eclair funding" + +log "Waiting for eclair confirmed on-chain balance" +for i in $(seq 1 60); do + ecli onchainbalance | grep -q '"confirmed": *[1-9]' && { info "eclair funds confirmed"; break; } + sleep 1 + (( i == 60 )) && die "eclair never saw confirmed funds" +done + +log "Opening channel eclair -> bob" +ecli connect --uri="${BOB_PUB}@bob:9735" >/dev/null 2>&1 || info "eclair->bob already connected" +ecli open --nodeId="$BOB_PUB" --fundingSatoshis="$CH_ECL_BOB" --pushMsat=$(( PUSH_SATS * 1000 )) >/dev/null +info "eclair -> bob ${CH_ECL_BOB} sats (push ${PUSH_SATS})" + +# 'open' returns before eclair broadcasts the funding tx; mining too early would +# confirm nothing and leave the channel waiting forever. +for i in $(seq 1 30); do + bcli getrawmempool | grep -q '"' && { info "funding tx in mempool"; break; } + sleep 1 + (( i == 30 )) && die "eclair funding tx never reached the mempool" +done +bcli -rpcwallet=rtldev generatetoaddress "$ECL_MINE_CONFIRM" "$MINE_ADDR" >/dev/null +info "mined $ECL_MINE_CONFIRM blocks to confirm the eclair channel" + +log "Waiting for the eclair channel to become active" +for i in $(seq 1 90); do + if ecli channels | grep -q '"state" *: *"NORMAL"'; then + info "eclair channel is NORMAL"; break + fi + sleep 1 + (( i == 90 )) && die "eclair channel never reached NORMAL" +done + +# Direct payments over the eclair->bob channel; no routing, so no gossip wait. +# payinvoice is asynchronous -- confirm settlement on bob's side. +log "Sending direct payments (eclair -> bob)" +for amt in 8000 18000; do + inv_out=$(lncli bob addinvoice --amt="$amt" --memo="eclair payment ${amt} sats") + inv=$(echo "$inv_out" | json_first payment_request) + rhash=$(echo "$inv_out" | json_first r_hash) + ecli payinvoice --invoice="$inv" >/dev/null 2>&1 + paid="" + for i in $(seq 1 30); do + if lncli bob lookupinvoice "$rhash" | grep -q '"state": *"SETTLED"'; then + paid=1; break + fi + sleep 1 + done + [ -n "$paid" ] && info "eclair -> bob ${amt} sats" \ + || info "eclair -> bob ${amt} sats FAILED (never settled)" +done + +# An unpaid invoice, so the eclair invoice list shows more than one state. +log "Creating an open (unpaid) invoice on eclair" +ecli createinvoice --amountMsat=$(( 30000 * 1000 )) --description="open invoice 30000 sats" >/dev/null +info "eclair open invoice 30000 sats" + +# ---------------------------------------------------------------- summary + +log "Seed complete" +for n in "${NODES[@]}"; do + chans=$(lncli "$n" listchannels | grep -c '"active": *true' || true) + bal=$(lncli "$n" walletbalance | json_first confirmed_balance) + printf ' %-6s channels: %-3s on-chain: %s sats\n' "$n" "${chans:-0}" "${bal:-0}" +done +cln_chans=$(clncli listpeerchannels | grep -o '"state": "[A-Z_]*"' | grep -c "CHANNELD_NORMAL" || true) +printf ' %-6s channels: %-3s (Core Lightning)\n' "cln" "${cln_chans:-0}" +ecl_chans=$(ecli channels | grep -o '"state" *: *"NORMAL"' | grep -c NORMAL || true) +printf ' %-6s channels: %-3s (Eclair)\n' "eclair" "${ecl_chans:-0}" +# '|| echo 0' would be wrong here: grep -c already prints 0 when it finds nothing +# and then exits 1, so the echo would append a second line. +fwds=$(lncli bob fwdinghistory | grep -c '"chan_id_in"' || true) +printf ' bob forwarded %s payment(s)\n' "${fwds:-0}" +printf '\n RTL: http://localhost:%s (password: %s)\n\n' "${RTL_PORT:-3000}" "${RTL_PASSWORD:-password}" diff --git a/docker/scripts/verify-sso.sh b/docker/scripts/verify-sso.sh new file mode 100755 index 00000000..c9fe0e1f --- /dev/null +++ b/docker/scripts/verify-sso.sh @@ -0,0 +1,110 @@ +#!/usr/bin/env bash +# +# Check the BTCPay SSO harness end to end. +# +# Walks the exact path a browser takes when an operator clicks the RTL link on +# BTCPay Server's Services page, and asserts each step. Run it after any change +# to authentication, CSRF or static serving -- this is the entry path BTCPay +# uses, and none of it is covered by logging into the standalone fixture RTL. +# +# docker compose --profile sso up -d +# ./scripts/verify-sso.sh +# +# Usage: ./scripts/verify-sso.sh (from the docker/ directory) +# +# Exits non-zero if any check fails, so it can gate a PR. + +# Deliberately no -e: a failing assertion must record itself and let the rest of +# the checks run, rather than aborting on the first one. That means anything +# that would normally rely on -e needs its own guard. +set -uo pipefail + +cd "$(dirname "$0")/.." || exit 1 + +if [ -f .env ]; then + set -a + # shellcheck disable=SC1091 + source .env + set +a +fi + +BASE="http://localhost:${RTL_SSO_PORT:-3001}" +JAR="$(mktemp)" +JAR2="$(mktemp)" +trap 'rm -f "$JAR" "$JAR2"' EXIT + +pass=0 +fail=0 +# Both return 0 explicitly: the checks below are written as `test && ok || bad`, +# which would also run `bad` if `ok` itself ever returned non-zero. +ok() { echo " PASS: $1"; pass=$((pass + 1)); return 0; } +bad() { echo " FAIL: $1"; fail=$((fail + 1)); return 0; } + +if ! docker compose --profile sso ps --status running --services 2>/dev/null | grep -qx rtl-sso; then + echo "rtl-sso is not running. Start it with: docker compose --profile sso up -d" >&2 + exit 1 +fi + +cookie="$(docker compose --profile sso exec -T rtl-sso cat /RTL/cookie/.cookie | tr -d '\r\n')" +echo "cookie: ${cookie:0:16}... (${#cookie} chars)" + +echo +echo "1. the proxy routes only /rtl, mirroring BTCPay's traefik rule" +code=$(curl -s -o /dev/null -w '%{http_code}' "$BASE/") +[ "$code" = "404" ] && ok "GET / -> 404" || bad "GET / -> $code (want 404)" +code=$(curl -s -o /dev/null -w '%{http_code}' "$BASE/api/authenticate") +[ "$code" = "404" ] && ok "GET /api/authenticate -> 404" || bad "GET /api/authenticate -> $code (want 404)" +code=$(curl -s -o /dev/null -w '%{http_code}' "$BASE/rtl/") +[ "$code" = "200" ] && ok "GET /rtl/ -> 200" || bad "GET /rtl/ -> $code (want 200)" + +echo +echo "2. the entry URL falls through to the catch-all, which mints the CSRF token" +body=$(curl -s -c "$JAR" "$BASE/rtl/api/authenticate/cookie?access-key=$cookie") +echo "$body" | grep -q '' \ + && ok "entry URL serves the SPA shell with base href /rtl/" \ + || bad "entry URL did not serve index.html" +xsrf=$(awk '/XSRF-TOKEN/ {print $7}' "$JAR") +[ -n "$xsrf" ] && ok "XSRF-TOKEN cookie minted" || bad "no XSRF-TOKEN cookie" +grep -q '_csrf' "$JAR" && ok "_csrf cookie set" || bad "no _csrf cookie" + +echo +echo "3. the SPA posts sha256(access-key) as a password login" +hash=$(printf '%s' "$cookie" | shasum -a 256 | cut -d' ' -f1) +resp=$(curl -s -b "$JAR" -c "$JAR" -X POST "$BASE/rtl/api/authenticate" \ + -H 'Content-Type: application/json' -H "X-XSRF-TOKEN: $xsrf" \ + -d "{\"authenticateWith\":\"PASSWORD\",\"authenticationValue\":\"$hash\"}") +token=$(echo "$resp" | python3 -c 'import sys,json;print(json.load(sys.stdin).get("token",""))' 2>/dev/null) +[ -n "$token" ] && ok "authenticated, JWT issued" || bad "auth failed: $resp" + +echo +echo "4. the JWT reaches the node behind it" +info=$(curl -s -b "$JAR" "$BASE/rtl/api/lnd/getinfo" -H "Authorization: Bearer $token") +node_alias=$(echo "$info" | python3 -c 'import sys,json;print(json.load(sys.stdin).get("alias",""))' 2>/dev/null) +[ "$node_alias" = "alice" ] && ok "GET /rtl/api/lnd/getinfo -> alias '$node_alias'" || bad "getinfo returned: ${info:0:200}" + +echo +echo "5. the cookie rotates on login, so each BTCPay page render hands out a fresh one" +after=$(docker compose --profile sso exec -T rtl-sso cat /RTL/cookie/.cookie | tr -d '\r\n') +[ "$after" != "$cookie" ] && ok "cookie rotated after authentication" || bad "cookie did NOT rotate" + +echo +echo "6. a wrong access-key is refused" +# The token has to come from the catch-all: GET /rtl/ is served by express.static, +# which mints no XSRF-TOKEN, and the POST would then fail CSRF (403) before it +# ever reached the access-key comparison this step is checking. +curl -s -c "$JAR2" "$BASE/rtl/api/authenticate/cookie?access-key=x" > /dev/null +x2=$(awk '/XSRF-TOKEN/ {print $7}' "$JAR2") +badhash=$(printf '%s' "not-the-cookie-value-but-long-enough-to-pass-the-length-check" | shasum -a 256 | cut -d' ' -f1) +code=$(curl -s -o /dev/null -w '%{http_code}' -b "$JAR2" -X POST "$BASE/rtl/api/authenticate" \ + -H 'Content-Type: application/json' -H "X-XSRF-TOKEN: $x2" \ + -d "{\"authenticateWith\":\"PASSWORD\",\"authenticationValue\":\"$badhash\"}") +[ "$code" = "406" ] && ok "wrong access-key -> 406" || bad "wrong access-key -> $code (want 406)" + +echo +echo "7. the standalone fixture RTL is unaffected" +code=$(curl -s -o /dev/null -w '%{http_code}' "http://localhost:${RTL_PORT:-3000}/rtl/") +[ "$code" = "200" ] && ok "standalone RTL still serving on ${RTL_PORT:-3000}" || bad "standalone RTL -> $code" + +echo +echo "=== $pass passed, $fail failed ===" +[ "$fail" -eq 0 ] diff --git a/frontend/17.b882df9dedeedc74.js b/frontend/17.b882df9dedeedc74.js deleted file mode 100644 index 5adac1df..00000000 --- a/frontend/17.b882df9dedeedc74.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[17],{89017:(wp,St,C)=>{C.r(St),C.d(St,{ECLModule:()=>Tp});var d=C(72200),W=C(38132),L=C(43694),qt=C(9881),t=C(73664),H=C(67575),_=C(52920);function Qt(i,s){1&i&&t.nrm(0,"mat-progress-bar",3)}let vt=(()=>{var i;class s{constructor(n){this.router=n,this.loading=!1,this.router.events.subscribe(a=>{switch(!0){case a instanceof L.Z:this.loading=!0;break;case a instanceof L.wF:case a instanceof L.j5:case a instanceof L.L6:this.loading=!1}})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-root"]],standalone:!1,decls:4,vars:1,consts:[["outlet","outlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["color","primary","mode","indeterminate"]],template:function(a,o){1&a&&(t.j41(0,"div",1),t.DNE(1,Qt,1,0,"mat-progress-bar",2),t.nrm(2,"router-outlet",null,0),t.k0s()),2&a&&(t.R7$(),t.Y8G("ngIf",o.loading))},dependencies:[d.bT,H.HM,_.DJ,_.sA,_.UI,L.n3],encapsulation:2,data:{animation:[qt.E]}}))}return i(),s})();var h=C(21413),g=C(56977),pt=C(53993),Rt=C(90614),E=C(45383),c=C(4416),J=C(79647),b=C(72730),r=C(2615),A=C(98570),I=C(59640),$=C(82571),D=C(20060),Zt=C(22598),x=C(25596),kt=C(82885),ut=C(12629),dt=C(59115),v=C(16038),P=C(96850);const It=i=>({backgroundColor:i});function Wt(i,s){if(1&i&&t.nrm(0,"span",6),2&i){const e=t.XpG();t.Y8G("ngStyle",t.eq3(1,It,null==e.information?null:e.information.color))}}function Kt(i,s){if(1&i&&(t.j41(0,"div")(1,"h4",1),t.EFF(2,"Color"),t.k0s(),t.j41(3,"div",2),t.nrm(4,"span",7),t.EFF(5),t.nI1(6,"uppercase"),t.k0s()()),2&i){const e=t.XpG();t.R7$(4),t.Y8G("ngStyle",t.eq3(4,It,null==e.information?null:e.information.color)),t.R7$(),t.SpI(" ",t.bMT(6,2,null==e.information?null:e.information.color)," ")}}function te(i,s){if(1&i&&(t.j41(0,"span",2),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(e)}}let ee=(()=>{var i;class s{constructor(n){this.commonService=n,this.chains=[""]}ngOnChanges(){this.chains=[],this.chains.push("Bitcoin "+(this.information.network?this.commonService.titleCase(this.information.network):"Testnet"))}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU($.h))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},standalone:!1,features:[t.OA$],decls:17,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"]],template:function(a,o){1&a&&(t.j41(0,"div",0)(1,"div")(2,"h4",1),t.EFF(3,"Alias"),t.k0s(),t.j41(4,"div",2),t.EFF(5),t.DNE(6,Wt,1,3,"span",3),t.k0s()(),t.DNE(7,Kt,7,6,"div",4),t.j41(8,"div")(9,"h4",1),t.EFF(10,"Implementation"),t.k0s(),t.j41(11,"div",2),t.EFF(12),t.k0s()(),t.j41(13,"div")(14,"h4",1),t.EFF(15,"Chain"),t.k0s(),t.DNE(16,te,2,1,"span",5),t.k0s()()),2&a&&(t.R7$(5),t.SpI(" ",null==o.information?null:o.information.alias," "),t.R7$(),t.Y8G("ngIf",!o.showColorFieldSeparately),t.R7$(),t.Y8G("ngIf",o.showColorFieldSeparately),t.R7$(5),t.JRh(null!=o.information&&o.information.lnImplementation||null!=o.information&&o.information.version?(null==o.information?null:o.information.lnImplementation)+" "+(null==o.information?null:o.information.version):""),t.R7$(4),t.Y8G("ngForOf",o.chains))},dependencies:[d.Sq,d.bT,d.B3,_.DJ,_.sA,_.UI,v.eI,d.Pc],encapsulation:2}))}return i(),s})();function ne(i,s){if(1&i&&(t.j41(0,"div",2)(1,"div")(2,"h4",3),t.EFF(3,"Lightning"),t.k0s(),t.j41(4,"div",4),t.EFF(5),t.nI1(6,"number"),t.k0s(),t.nrm(7,"mat-progress-bar",5),t.k0s(),t.j41(8,"div")(9,"h4",3),t.EFF(10,"On-chain"),t.k0s(),t.j41(11,"div",4),t.EFF(12),t.nI1(13,"number"),t.k0s(),t.nrm(14,"mat-progress-bar",5),t.k0s(),t.j41(15,"div")(16,"h4",3),t.EFF(17,"Total"),t.k0s(),t.j41(18,"div",4),t.EFF(19),t.nI1(20,"number"),t.k0s()()()),2&i){const e=t.XpG();t.R7$(5),t.SpI("",t.bMT(6,7,e.balances.lightning)," Sats"),t.R7$(2),t.Y8G("value",t.mNQ(e.balances.lightning/e.balances.total*100)),t.R7$(5),t.SpI("",t.bMT(13,9,e.balances.onchain)," Sats"),t.R7$(2),t.Y8G("value",t.mNQ(e.balances.onchain/e.balances.total*100)),t.R7$(5),t.SpI("",t.bMT(20,11,e.balances.total)," Sats")}}function ie(i,s){if(1&i&&(t.j41(0,"div",6)(1,"p"),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let ae=(()=>{var i;class s{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,o){if(1&a&&t.DNE(0,ne,21,13,"div",1)(1,ie,3,1,"ng-template",null,0,t.C5r),2&a){const l=t.sdS(2);t.Y8G("ngIf",""===(null==o.errorMessage?null:o.errorMessage.trim()))("ngIfElse",l)}},dependencies:[d.bT,H.HM,_.DJ,_.sA,_.UI,d.QX],encapsulation:2}))}return i(),s})();function oe(i,s){if(1&i&&(t.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),t.EFF(4,"Daily"),t.k0s(),t.j41(5,"div",5),t.EFF(6),t.nI1(7,"number"),t.k0s()(),t.j41(8,"div")(9,"h4",4),t.EFF(10,"Weekly"),t.k0s(),t.j41(11,"div",5),t.EFF(12),t.nI1(13,"number"),t.k0s()(),t.j41(14,"div")(15,"h4",4),t.EFF(16,"Monthly"),t.k0s(),t.j41(17,"div",5),t.EFF(18),t.nI1(19,"number"),t.k0s()()(),t.j41(20,"div",3)(21,"div")(22,"h4",4),t.EFF(23,"Transactions"),t.k0s(),t.j41(24,"div",5),t.EFF(25),t.nI1(26,"number"),t.k0s()(),t.j41(27,"div")(28,"h4",4),t.EFF(29,"Transactions"),t.k0s(),t.j41(30,"div",5),t.EFF(31),t.nI1(32,"number"),t.k0s()(),t.j41(33,"div")(34,"h4",4),t.EFF(35,"Transactions"),t.k0s(),t.j41(36,"div",5),t.EFF(37),t.nI1(38,"number"),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(6),t.SpI("",t.bMT(7,6,null==e.fees?null:e.fees.daily_fee)," Sats"),t.R7$(6),t.SpI("",t.bMT(13,8,null==e.fees?null:e.fees.weekly_fee)," Sats"),t.R7$(6),t.SpI("",t.bMT(19,10,null==e.fees?null:e.fees.monthly_fee)," Sats"),t.R7$(7),t.JRh(t.bMT(26,12,null==e.fees?null:e.fees.daily_txs)),t.R7$(6),t.JRh(t.bMT(32,14,null==e.fees?null:e.fees.weekly_txs)),t.R7$(6),t.JRh(t.bMT(38,16,null==e.fees?null:e.fees.monthly_txs))}}function se(i,s){if(1&i&&(t.j41(0,"div",6)(1,"p"),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let le=(()=>{var i;class s{constructor(){this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100}ngOnChanges(){if(this.fees?.monthly_fee){this.totalFees=[{name:"Monthly",value:this.fees.monthly_fee},{name:"Weekly",value:this.fees.weekly_fee||0},{name:"Daily ",value:this.fees.daily_fee||0}];const a=10**(Math.ceil(Math.log(this.fees.monthly_fee+1)/Math.LN10)-1);this.maxFeeValue=Math.ceil(this.fees.monthly_fee/a)*a/5||100,Object.assign(this,this.totalFees)}else this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100,Object.assign(this,this.totalFees)}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},standalone:!1,features:[t.OA$],decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,o){if(1&a&&t.DNE(0,oe,39,18,"div",1)(1,se,3,1,"ng-template",null,0,t.C5r),2&a){const l=t.sdS(2);t.Y8G("ngIf",""===(null==o.errorMessage?null:o.errorMessage.trim()))("ngIfElse",l)}},dependencies:[d.bT,_.DJ,_.sA,_.UI,d.QX],encapsulation:2}))}return i(),s})();function re(i,s){if(1&i&&(t.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),t.EFF(4,"Active"),t.k0s(),t.j41(5,"div",5),t.nrm(6,"span",6),t.EFF(7),t.nI1(8,"number"),t.k0s()(),t.j41(9,"div")(10,"h4",4),t.EFF(11,"Pending"),t.k0s(),t.j41(12,"div",5),t.nrm(13,"span",7),t.EFF(14),t.nI1(15,"number"),t.k0s()(),t.j41(16,"div")(17,"h4",4),t.EFF(18,"Inactive"),t.k0s(),t.j41(19,"div",5),t.nrm(20,"span",8),t.EFF(21),t.nI1(22,"number"),t.k0s()()(),t.j41(23,"div",3)(24,"div")(25,"h4",4),t.EFF(26,"Capacity"),t.k0s(),t.j41(27,"div",5),t.EFF(28),t.nI1(29,"number"),t.k0s()(),t.j41(30,"div")(31,"h4",4),t.EFF(32,"Capacity"),t.k0s(),t.j41(33,"div",5),t.EFF(34),t.nI1(35,"number"),t.k0s()(),t.j41(36,"div")(37,"h4",4),t.EFF(38,"Capacity"),t.k0s(),t.j41(39,"div",5),t.EFF(40),t.nI1(41,"number"),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(7),t.JRh(t.bMT(8,6,(null==e.channelsStatus.active?null:e.channelsStatus.active.channels)||0)),t.R7$(7),t.JRh(t.bMT(15,8,(null==e.channelsStatus.pending?null:e.channelsStatus.pending.channels)||0)),t.R7$(7),t.JRh(t.bMT(22,10,(null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.channels)||0)),t.R7$(7),t.SpI("",t.bMT(29,12,(null==e.channelsStatus.active?null:e.channelsStatus.active.capacity)||0)," Sats"),t.R7$(6),t.SpI("",t.bMT(35,14,(null==e.channelsStatus.pending?null:e.channelsStatus.pending.capacity)||0)," Sats"),t.R7$(6),t.SpI("",t.bMT(41,16,(null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.capacity)||0)," Sats")}}function ce(i,s){if(1&i&&(t.j41(0,"div",9)(1,"p"),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let me=(()=>{var i;class s{constructor(){this.channelsStatus={}}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,o){if(1&a&&t.DNE(0,re,42,18,"div",1)(1,ce,3,1,"ng-template",null,0,t.C5r),2&a){const l=t.sdS(2);t.Y8G("ngIf",""===(null==o.errorMessage?null:o.errorMessage.trim()))("ngIfElse",l)}},dependencies:[d.bT,_.DJ,_.sA,_.UI,d.QX],encapsulation:2}))}return i(),s})();var N=C(88834),y=C(69588),tt=C(71997),Q=C(40455),B=C(10497);const pe=()=>["../connections/channels/open"],ue=(i,s)=>({filterColumn:i,filterValue:s});function de(i,s){if(1&i&&(t.j41(0,"div",19)(1,"a",20),t.EFF(2),t.nI1(3,"slice"),t.k0s(),t.j41(4,"div",6)(5,"mat-hint",21)(6,"strong",8),t.EFF(7,"Local:"),t.k0s(),t.EFF(8),t.nI1(9,"number"),t.k0s(),t.j41(10,"mat-hint",22),t.nrm(11,"fa-icon",23),t.EFF(12),t.nI1(13,"number"),t.k0s(),t.j41(14,"mat-hint",24)(15,"strong",8),t.EFF(16,"Remote:"),t.k0s(),t.EFF(17),t.nI1(18,"number"),t.k0s()(),t.nrm(19,"mat-progress-bar",25),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(3);t.R7$(),t.Y8G("matTooltip",t.mNQ(e.alias||e.shortChannelId))("matTooltipDisabled",t.mNQ((e.alias||e.shortChannelId).length<26))("routerLink",t.lJ4(26,pe))("state",t.l_i(27,ue,e.alias?"alias":"shortChannelId",e.alias||e.shortChannelId)),t.R7$(),t.Lme(" ",t.brH(3,14,(null==e?null:e.alias)||(null==e?null:e.shortChannelId),0,24),"",((null==e?null:e.alias)||(null==e?null:e.shortChannelId)).length>25?"...":""," "),t.R7$(6),t.SpI("",t.i5U(9,18,(null==e?null:e.toLocal)||0,"1.0-0")," Sats"),t.R7$(3),t.Y8G("icon",n.faBalanceScale),t.R7$(),t.SpI(" (",t.bMT(13,21,(null==e?null:e.balancedness)||0),") "),t.R7$(5),t.SpI("",t.i5U(18,23,(null==e?null:e.toRemote)||0,"1.0-0")," Sats"),t.R7$(2),t.Y8G("value",t.mNQ(e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0))}}function he(i,s){if(1&i&&(t.j41(0,"div",17),t.DNE(1,de,20,30,"div",18),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.allChannels)}}function fe(i,s){if(1&i&&(t.j41(0,"div",3)(1,"div",4)(2,"span",5),t.EFF(3,"Total Capacity"),t.k0s(),t.j41(4,"div",6)(5,"mat-hint",7)(6,"strong",8),t.EFF(7,"Local:"),t.k0s(),t.EFF(8),t.nI1(9,"number"),t.k0s(),t.j41(10,"mat-hint",9),t.nrm(11,"fa-icon",10),t.EFF(12),t.nI1(13,"number"),t.k0s(),t.j41(14,"mat-hint",11)(15,"strong",8),t.EFF(16,"Remote:"),t.k0s(),t.EFF(17),t.nI1(18,"number"),t.k0s()(),t.nrm(19,"mat-progress-bar",12),t.k0s(),t.j41(20,"div",13),t.nrm(21,"mat-divider",14),t.k0s(),t.j41(22,"div",15),t.DNE(23,he,2,1,"div",16),t.k0s()()),2&i){const e=t.XpG(),n=t.sdS(2);t.R7$(8),t.SpI("",t.i5U(9,8,(null==e.channelBalances?null:e.channelBalances.localBalance)||0,"1.0-0")," Sats"),t.R7$(3),t.Y8G("icon",e.faBalanceScale),t.R7$(),t.SpI(" (",t.bMT(13,11,(null==e.channelBalances?null:e.channelBalances.balancedness)||0),") "),t.R7$(5),t.SpI("",t.i5U(18,13,(null==e.channelBalances?null:e.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),t.R7$(2),t.Y8G("value",t.mNQ(null!=e.channelBalances&&e.channelBalances.localBalance&&(null==e.channelBalances?null:e.channelBalances.localBalance)>0?+(null==e.channelBalances?null:e.channelBalances.localBalance)/(+(null==e.channelBalances?null:e.channelBalances.localBalance)+ +(null==e.channelBalances?null:e.channelBalances.remoteBalance))*100:0)),t.R7$(4),t.Y8G("ngIf",e.allChannels&&(null==e.allChannels?null:e.allChannels.length)>0)("ngIfElse",n)}}function _e(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",26),t.EFF(1," No channels available. "),t.j41(2,"button",27),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.goToChannels())}),t.EFF(3,"Open Channel"),t.k0s()()}}function ge(i,s){if(1&i&&(t.j41(0,"div",28)(1,"p"),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let Ce=(()=>{var i;class s{constructor(n){this.router=n,this.faBalanceScale=E.GR4,this.faDumbbell=E.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/ecl/connections")}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,o){if(1&a&&t.DNE(0,fe,24,16,"div",2)(1,_e,4,0,"ng-template",null,0,t.C5r)(3,ge,3,1,"ng-template",null,1,t.C5r),2&a){const l=t.sdS(4);t.Y8G("ngIf",""===(null==o.errorMessage?null:o.errorMessage.trim()))("ngIfElse",l)}},dependencies:[d.Sq,d.bT,D.aY,N.$z,y.MV,tt.q,H.HM,_.DJ,_.sA,_.UI,Q.oV,B.Ld,W.Wk,d.P9,d.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]}))}return i(),s})();const ye=(i,s,e)=>({"mb-4":i,"mb-2":s,"mb-1":e}),be=()=>["../connections/channels/open"],Fe=(i,s)=>({filterColumn:i,filterValue:s});function Ee(i,s){if(1&i&&(t.j41(0,"mat-hint",19)(1,"strong",20),t.EFF(2,"Capacity: "),t.k0s(),t.EFF(3),t.nI1(4,"number"),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(3),t.SpI("",t.i5U(4,1,e.toRemote||0,"1.0-0")," Sats")}}function xe(i,s){if(1&i&&(t.j41(0,"mat-hint",19)(1,"strong",20),t.EFF(2,"Capacity: "),t.k0s(),t.EFF(3),t.nI1(4,"number"),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(3),t.SpI("",t.i5U(4,1,e.toLocal||0,"1.0-0")," Sats")}}function Le(i,s){if(1&i&&t.nrm(0,"mat-progress-bar",21),2&i){const e=t.XpG().$implicit,n=t.XpG(3);t.Y8G("value",t.mNQ(n.totalLiquidity>0?(+e.toRemote||0)/n.totalLiquidity*100:0))}}function Se(i,s){if(1&i&&t.nrm(0,"mat-progress-bar",21),2&i){const e=t.XpG().$implicit,n=t.XpG(3);t.Y8G("value",t.mNQ(n.totalLiquidity>0?(+e.toLocal||0)/n.totalLiquidity*100:0))}}function ve(i,s){if(1&i&&(t.j41(0,"div",14)(1,"a",15),t.EFF(2),t.nI1(3,"slice"),t.k0s(),t.j41(4,"div",16),t.DNE(5,Ee,5,4,"mat-hint",17)(6,xe,5,4,"mat-hint",17),t.k0s(),t.DNE(7,Le,1,2,"mat-progress-bar",18)(8,Se,1,2,"mat-progress-bar",18),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(3);t.R7$(),t.Y8G("matTooltip",t.mNQ(e.alias||e.shortChannelId))("matTooltipDisabled",t.mNQ((e.alias||e.shortChannelId).length<26))("routerLink",t.lJ4(16,be))("state",t.l_i(17,Fe,e.alias?"alias":"shortChannelId",e.alias||e.shortChannelId)),t.R7$(),t.Lme(" ",t.brH(3,12,e.alias||e.shortChannelId,0,24),"",(e.alias||e.shortChannelId).length>25?"...":""," "),t.R7$(3),t.Y8G("ngIf","In"===n.direction),t.R7$(),t.Y8G("ngIf","Out"===n.direction),t.R7$(),t.Y8G("ngIf","In"===n.direction),t.R7$(),t.Y8G("ngIf","Out"===n.direction)}}function Re(i,s){if(1&i&&(t.j41(0,"div",12),t.DNE(1,ve,9,20,"div",13),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.allChannels)}}function ke(i,s){if(1&i&&(t.j41(0,"div",3)(1,"div",4)(2,"span",5),t.EFF(3,"Total Capacity"),t.k0s(),t.j41(4,"mat-hint",6),t.EFF(5),t.nI1(6,"number"),t.k0s(),t.nrm(7,"mat-progress-bar",7),t.k0s(),t.j41(8,"div",8),t.nrm(9,"mat-divider",9),t.k0s(),t.j41(10,"div",10),t.DNE(11,Re,2,1,"div",11),t.k0s()()),2&i){const e=t.XpG(),n=t.sdS(2);t.Y8G("ngClass",t.sMw(7,ye,e.screenSize===e.screenSizeEnum.XS||e.screenSize===e.screenSizeEnum.SM,e.screenSize===e.screenSizeEnum.MD,e.screenSize===e.screenSizeEnum.LG||e.screenSize===e.screenSizeEnum.XL)),t.R7$(5),t.SpI("",t.i5U(6,4,e.totalLiquidity,"1.0-0")," Sats"),t.R7$(6),t.Y8G("ngIf",e.allChannels&&e.allChannels.length>0)("ngIfElse",n)}}function Ie(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",24),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.goToChannels())}),t.EFF(1,"Open Channel"),t.k0s()}}function Te(i,s){if(1&i&&(t.j41(0,"div",22),t.EFF(1," No channels available. "),t.DNE(2,Ie,2,0,"button",23),t.k0s()),2&i){const e=t.XpG();t.R7$(2),t.Y8G("ngIf","Out"===e.direction)}}function we(i,s){if(1&i&&(t.j41(0,"div",25)(1,"p"),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let je=(()=>{var i;class s{constructor(n,a){this.router=n,this.commonService=a,this.screenSize="",this.screenSizeEnum=c.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/ecl/connections")}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix),t.rXU($.h))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],["fxLayout","column","fxFlex.gt-sm","88","fxFlex","84","fxLayoutAlign","start start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","class","w-100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100",1,"w-100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","100","fxLayoutAlign","start center","class","font-size-90 color-primary",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,o){if(1&a&&t.DNE(0,ke,12,11,"div",2)(1,Te,3,1,"ng-template",null,0,t.C5r)(3,we,3,1,"ng-template",null,1,t.C5r),2&a){const l=t.sdS(4);t.Y8G("ngIf",""===(null==o.errorMessage?null:o.errorMessage.trim()))("ngIfElse",l)}},dependencies:[d.YU,d.Sq,d.bT,N.$z,y.MV,tt.q,H.HM,_.DJ,_.sA,_.UI,v.PW,Q.oV,B.Ld,W.Wk,d.P9,d.QX],encapsulation:2}))}return i(),s})();var Z=C(96697),w=C(96695),S=C(2042),p=C(19295),R=C(96183),X=C(5964),j=C(95428),V=C(51585),ht=C(13017),K=C(11747),nt=C(51534),f=C(89417),Y=C(33746),et=C(89587);const De=["paymentReq"];function Pe(i,s){if(1&i&&(t.j41(0,"span",23),t.nrm(1,"fa-icon",24),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function Ge(i,s){if(1&i&&t.nrm(0,"span",25),2&i){const e=t.XpG(2);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function Ae(i,s){if(1&i&&(t.j41(0,"mat-hint",20),t.EFF(1),t.DNE(2,Pe,2,1,"span",21)(3,Ge,1,1,"span",22),t.EFF(4),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI(" ",e.paymentDecodedHintPre," "),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.SpI(" ",e.paymentDecodedHintPost," ")}}function Ne(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Payment request is required."),t.k0s())}function Be(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.JRh(e.paymentDecodedHint)}}function Me(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Payment amount is required."),t.k0s())}function $e(i,s){if(1&i){const e=t.RV6();t.j41(0,"mat-form-field",4)(1,"mat-label"),t.EFF(2,"Amount (Sats)"),t.k0s(),t.j41(3,"input",26,2),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.paymentAmount,a)||(o.paymentAmount=a),r.Njj(a)}),t.bIt("change",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onAmountChange(a))}),t.k0s(),t.j41(5,"mat-hint"),t.EFF(6,"It is a zero amount invoice, enter amount to be paid."),t.k0s(),t.DNE(7,Me,2,0,"mat-error",14),t.k0s()}if(2&i){const e=t.XpG();t.R7$(3),t.R50("ngModel",e.paymentAmount),t.R7$(4),t.Y8G("ngIf",!e.paymentAmount)}}function Ve(i,s){if(1&i&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.paymentError)}}function Oe(i,s){if(1&i&&(t.j41(0,"div",27),t.nrm(1,"fa-icon",28),t.DNE(2,Ve,2,1,"span",14),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.paymentError)}}let He=(()=>{var i;class s{constructor(n,a,o,l,m,u,T,F){this.dialogRef=n,this.store=a,this.eclEffects=o,this.logger=l,this.commonService=m,this.decimalPipe=u,this.actions=T,this.dataService=F,this.faExclamationTriangle=E.zpE,this.convertedCurrency=null,this.paymentDecoded={},this.zeroAmtInvoice=!1,this.paymentAmount=null,this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.selActiveChannel={},this.activeChannels={},this.feeLimit=null,this.selFeeLimitType=c.nv[0],this.feeLimitTypes=c.nv,this.paymentError="",this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.activeChannels=n.activeChannels,this.logger.info(n)}),this.actions.pipe((0,g.Q)(this.unSubs[1]),(0,X.p)(n=>n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL||n.type===c.Uu.SEND_PAYMENT_STATUS_ECL)).subscribe(n=>{n.type===c.Uu.SEND_PAYMENT_STATUS_ECL&&this.dialogRef.close(),n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&n.payload.status===c.wn.ERROR&&"SendPayment"===n.payload.action&&(delete this.paymentDecoded.amount,this.paymentError=n.payload.message)})}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():(this.paymentAmount=null,this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors(null),this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,Z.s)(1)).subscribe({next:n=>{this.paymentDecoded=n,this.paymentDecoded.timestamp&&!this.paymentDecoded.amount?(this.paymentDecoded.amount=0,this.zeroAmtInvoice=!0,this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion&&this.paymentDecoded.amount?this.commonService.convertCurrency(+this.paymentDecoded.amount,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[2])).subscribe({next:a=>{this.convertedCurrency=a,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,c.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:a=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""))},error:n=>{this.logger.error(n),this.paymentDecodedHintPre="ERROR: "+(n.message?n.message:"string"==typeof n?n:JSON.stringify(n)),this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}sendPayment(){this.store.dispatch((0,j.Fd)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{invoice:this.paymentRequest,amountMsat:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{invoice:this.paymentRequest,fromDialog:!0}}))}onPaymentRequestEntry(n){this.paymentRequest=n&&"string"==typeof n?n.trim():n,this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentRequest&&this.paymentRequest.length>100&&(this.paymentReq.control.setErrors(null),this.zeroAmtInvoice=!1,this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,Z.s)(1)).subscribe({next:a=>{this.paymentDecoded=a,this.paymentDecoded.timestamp&&!this.paymentDecoded.amount?(this.paymentDecoded.amount=0,this.zeroAmtInvoice=!0,this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion&&this.paymentDecoded.amount?this.commonService.convertCurrency(+this.paymentDecoded.amount,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[3])).subscribe({next:o=>{this.convertedCurrency=o,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,c.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:o=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""))},error:a=>{this.logger.error(a),this.paymentDecodedHintPre="ERROR: "+(a.message?a.message:"string"==typeof a?a:JSON.stringify(a)),this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}onAmountChange(n){delete this.paymentDecoded.amount,this.paymentDecoded.amount=n}resetData(){this.paymentDecoded={},this.paymentRequest="",this.selActiveChannel=null,this.feeLimit=null,this.selFeeLimitType=c.nv[0],this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(I.il),t.rXU(ht.B),t.rXU(A.gP),t.rXU($.h),t.rXU(d.QX),t.rXU(K.En),t.rXU(nt.u))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-lightning-send-payments"]],viewQuery:function(a,o){if(1&a&&t.GBs(De,5),2&a){let l;t.mGM(l=t.lsd())&&(o.paymentReq=l.first)}},standalone:!1,decls:26,vars:7,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["paymentAmt","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayoutAlign","space-between stretch","fxLayout","column"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","name","paymentRequest","rows","4","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["matInput","","name","amount","tabindex","2","required","",3,"ngModelChange","change","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",3)(1,"div",4)(2,"mat-card-header",5)(3,"div",6)(4,"span",7),t.EFF(5,"Send Payment"),t.k0s()(),t.j41(6,"button",8),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",9)(9,"form",10,0)(11,"mat-form-field",11)(12,"mat-label"),t.EFF(13,"Payment Request"),t.k0s(),t.j41(14,"textarea",12,1),t.bIt("ngModelChange",function(u){return r.eBV(l),r.Njj(o.onPaymentRequestEntry(u))})("matTextareaAutosize",function(){return r.eBV(l),r.Njj(!0)}),t.k0s(),t.DNE(16,Ae,5,4,"mat-hint",13)(17,Ne,2,0,"mat-error",14)(18,Be,2,1,"mat-error",14),t.k0s(),t.DNE(19,$e,8,2,"mat-form-field",15)(20,Oe,3,2,"div",16),t.j41(21,"div",17)(22,"button",18),t.bIt("click",function(){return r.eBV(l),r.Njj(o.resetData())}),t.EFF(23,"Clear Fields"),t.k0s(),t.j41(24,"button",19),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onSendPayment())}),t.EFF(25,"Send Payment"),t.k0s()()()()()()}if(2&a){const l=t.sdS(15);t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(8),t.Y8G("ngModel",o.paymentRequest),t.R7$(2),t.Y8G("ngIf",o.paymentRequest&&""!==o.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",!o.paymentRequest),t.R7$(),t.Y8G("ngIf",null==l.errors?null:l.errors.decodeError),t.R7$(),t.Y8G("ngIf",o.zeroAmtInvoice),t.R7$(),t.Y8G("ngIf",""!==o.paymentError)}},dependencies:[d.bT,f.qT,f.me,f.BC,f.cb,f.YS,f.vS,f.cV,D.aY,V.tx,N.$z,x.m2,x.MM,Y.fg,y.rl,y.nJ,y.MV,y.TL,_.DJ,_.sA,_.UI,et.N],encapsulation:2}))}return i(),s})();var U=C(9454);const Ye=["scrollContainer"];function Xe(i,s){if(1&i&&(t.j41(0,"div",9)(1,"div",2)(2,"h4",11),t.EFF(3,"Description"),t.k0s(),t.j41(4,"span",12),t.EFF(5),t.k0s()()()),2&i){const e=t.XpG();t.R7$(5),t.JRh(e.description)}}function Ue(i,s){1&i&&t.nrm(0,"mat-divider",14)}function ze(i,s){if(1&i){const e=t.RV6();t.j41(0,"mat-expansion-panel",23),t.bIt("opened",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onExpansionOpen(!0))})("closed",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onExpansionOpen(!1))}),t.j41(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"h4",24),t.EFF(4),t.k0s(),t.j41(5,"h4",25),t.EFF(6),t.nI1(7,"number"),t.k0s()()(),t.j41(8,"div",8)(9,"div",9)(10,"div",26)(11,"h4",11),t.EFF(12,"Fees (mSats)"),t.k0s(),t.j41(13,"span",12),t.EFF(14),t.nI1(15,"number"),t.k0s()(),t.j41(16,"div",26)(17,"h4",11),t.EFF(18,"Date/Time"),t.k0s(),t.j41(19,"span",12),t.EFF(20),t.nI1(21,"date"),t.k0s()()(),t.nrm(22,"mat-divider",14),t.j41(23,"div",9)(24,"div",2)(25,"h4",11),t.EFF(26,"ID"),t.k0s(),t.j41(27,"span",27),t.EFF(28),t.k0s()()(),t.nrm(29,"mat-divider",14),t.j41(30,"div",9)(31,"div",2)(32,"h4",11),t.EFF(33,"To Channel"),t.k0s(),t.j41(34,"span",27),t.EFF(35),t.k0s()()()()()}if(2&i){const e=s.$implicit,n=s.index,a=t.XpG();t.Y8G("expanded",a.expansionOpen),t.R7$(4),t.SpI("Part ",n+1),t.R7$(2),t.SpI("",t.bMT(7,7,e.amount)," (Sats)"),t.R7$(8),t.JRh(t.bMT(15,9,e.feesPaid)),t.R7$(6),t.JRh(t.i5U(21,11,e.timestamp,"dd/MMM/y HH:mm")),t.R7$(8),t.JRh(e.id),t.R7$(7),t.JRh(e.toChannelAlias)}}let Je=(()=>{var i;class s{constructor(n,a){this.dialogRef=n,this.data=a,this.description=null,this.shouldScroll=!0,this.expansionOpen=!0}ngOnInit(){this.payment=this.data.payment,this.data.sentPaymentInfo.length>0&&this.data.sentPaymentInfo[0].paymentRequest&&this.data.sentPaymentInfo[0].paymentRequest.description&&""!==this.data.sentPaymentInfo[0].paymentRequest.description&&(this.description=this.data.sentPaymentInfo[0].paymentRequest.description)}ngAfterViewChecked(){this.shouldScroll=this.scrollContainer.nativeElement.classList.value.includes("ps--active-y")}onScrollDown(){this.scrollContainer.nativeElement.scrollTop=this.scrollContainer.nativeElement.scrollTop+62.6}onExpansionOpen(n){this.expansionOpen=n}onClose(){this.dialogRef.close(!1)}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(V.Vh))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-payment-information"]],viewQuery:function(a,o){if(1&a&&t.GBs(Ye,5),2&a){let l;t.mGM(l=t.lsd())&&(o.scrollContainer=l.first)}},standalone:!1,decls:66,vars:15,consts:[["scrollContainer",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"h-40","padding-gap-x-large",3,"perfectScrollbar"],["fxLayout","column"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],["fxFlex","70"],[1,"w-100","my-1"],["fxLayout","row",4,"ngIf"],["class","w-100 my-1",4,"ngIf"],["class","flat-expansion-panel my-1",3,"expanded","opened","closed",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll Down","fxLayoutAlign","center center",3,"click"],["fxLayoutAlign","center center"],["fxLayout","row","fxLayoutAlign","end center",1,"padding-gap-x-large","padding-gap-bottom-large"],["fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",1,"mr-1",3,"mat-dialog-close"],[1,"flat-expansion-panel","my-1",3,"opened","closed","expanded"],["fxFlex","30","fxLayoutAlign","start",1,"font-bold-500"],["fxFlex","70","fxLayoutAlign","start",1,"font-bold-500"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Payment Information"),t.k0s()(),t.j41(6,"button",6),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7,0)(10,"div",8)(11,"div",9)(12,"div",10)(13,"h4",11),t.EFF(14,"Amount (Sats)"),t.k0s(),t.j41(15,"span",12),t.EFF(16),t.nI1(17,"number"),t.k0s()(),t.j41(18,"div",13)(19,"h4",11),t.EFF(20,"Date/Time"),t.k0s(),t.j41(21,"span",12),t.EFF(22),t.nI1(23,"date"),t.k0s()()(),t.nrm(24,"mat-divider",14),t.j41(25,"div",9)(26,"div",2)(27,"h4",11),t.EFF(28,"ID"),t.k0s(),t.j41(29,"span",12),t.EFF(30),t.k0s()()(),t.nrm(31,"mat-divider",14),t.j41(32,"div",9)(33,"div",2)(34,"h4",11),t.EFF(35,"Payment Hash"),t.k0s(),t.j41(36,"span",12),t.EFF(37),t.k0s()()(),t.nrm(38,"mat-divider",14),t.j41(39,"div",9)(40,"div",2)(41,"h4",11),t.EFF(42,"Payment Preimage"),t.k0s(),t.j41(43,"span",12),t.EFF(44),t.k0s()()(),t.nrm(45,"mat-divider",14),t.j41(46,"div",9)(47,"div",2)(48,"h4",11),t.EFF(49,"Recipient Node"),t.k0s(),t.j41(50,"span",12),t.EFF(51),t.k0s()()(),t.nrm(52,"mat-divider",14),t.DNE(53,Xe,6,1,"div",15)(54,Ue,1,0,"mat-divider",16),t.j41(55,"div",9)(56,"div",2)(57,"mat-accordion"),t.DNE(58,ze,36,14,"mat-expansion-panel",17),t.k0s()()()()(),t.j41(59,"div",18)(60,"button",19),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onScrollDown())}),t.j41(61,"mat-icon",20),t.EFF(62,"arrow_downward"),t.k0s()()(),t.j41(63,"div",21)(64,"button",22),t.EFF(65,"OK"),t.k0s()()()()}2&a&&(t.R7$(16),t.JRh(t.bMT(17,10,o.payment.recipientAmount)),t.R7$(6),t.JRh(t.i5U(23,12,o.payment.firstPartTimestamp,"dd/MMM/y HH:mm")),t.R7$(8),t.JRh(o.payment.id),t.R7$(7),t.JRh(o.payment.paymentHash),t.R7$(7),t.JRh(o.payment.paymentPreimage),t.R7$(7),t.JRh(o.payment.recipientNodeAlias),t.R7$(2),t.Y8G("ngIf",o.description),t.R7$(),t.Y8G("ngIf",o.description),t.R7$(4),t.Y8G("ngForOf",o.payment.parts),t.R7$(6),t.Y8G("mat-dialog-close",!1))},dependencies:[d.Sq,d.bT,V.tx,N.$z,N.$0,x.m2,x.MM,U.BS,U.GK,U.Z2,U.WN,ut.An,tt.q,_.DJ,_.sA,_.UI,B.Ld,d.QX,d.vh],encapsulation:2}))}return i(),s})();var k=C(11771),lt=C(37541),q=C(52929),z=C(23029);const qe=["sendPaymentForm"],Qe=()=>["all"],Ze=i=>({"error-border":i}),We=()=>["no_payment"],O=i=>({width:i}),Ke=i=>({"display-none":i});function tn(i,s){if(1&i&&(t.j41(0,"span",18),t.nrm(1,"fa-icon",19),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function en(i,s){if(1&i&&t.nrm(0,"span",20),2&i){const e=t.XpG(3);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function nn(i,s){if(1&i&&(t.j41(0,"mat-hint",15),t.EFF(1),t.DNE(2,tn,2,1,"span",16)(3,en,1,1,"span",17),t.EFF(4),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.SpI(" ",e.paymentDecodedHintPre," "),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.SpI(" ",e.paymentDecodedHintPost," ")}}function an(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Payment request is required."),t.k0s())}function on(i,s){if(1&i){const e=t.RV6();t.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),t.EFF(4,"Payment Request"),t.k0s(),t.j41(5,"textarea",9,1),t.bIt("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onPaymentRequestEntry(a))})("matTextareaAutosize",function(){return r.eBV(e),r.Njj(!0)}),t.k0s(),t.DNE(7,nn,5,4,"mat-hint",10)(8,an,2,0,"mat-error",11),t.k0s(),t.j41(9,"div",12)(10,"button",13),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.resetData())}),t.EFF(11,"Clear Field"),t.k0s(),t.j41(12,"button",14),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onSendPayment())}),t.EFF(13,"Send Payment"),t.k0s()()()}if(2&i){const e=t.XpG();t.R7$(5),t.Y8G("ngModel",e.paymentRequest),t.R7$(2),t.Y8G("ngIf",e.paymentRequest&&""!==e.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",!e.paymentRequest)}}function sn(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",21)(1,"button",14),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.openSendPaymentModal())}),t.EFF(2,"Send Payment"),t.k0s()()}}function ln(i,s){if(1&i&&(t.j41(0,"mat-option",66),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function rn(i,s){1&i&&t.nrm(0,"mat-progress-bar",67)}function cn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Date/Time"),t.k0s())}function mn(i,s){if(1&i&&(t.j41(0,"td",69),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.i5U(2,1,null==e?null:e.firstPartTimestamp,"dd/MMM/y HH:mm"))}}function pn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"ID"),t.k0s())}function un(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.id)}}function dn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Destination Node ID"),t.k0s())}function hn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeId)}}function fn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Destination"),t.k0s())}function _n(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeAlias)}}function gn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Description"),t.k0s())}function Cn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description)}}function yn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Payment Hash"),t.k0s())}function bn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function Fn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Preimage"),t.k0s())}function En(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentPreimage)}}function xn(i,s){1&i&&(t.j41(0,"th",72),t.EFF(1,"Amount (Sats)"),t.k0s())}function Ln(i,s){if(1&i&&(t.j41(0,"td",69)(1,"span",73),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.recipientAmount))}}function Sn(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",74)(1,"div",75)(2,"mat-select",76),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",77),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function vn(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",78)(1,"button",79),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onPaymentClick(a))}),t.EFF(2,"View Info"),t.k0s()()}}function Rn(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No payment available."),t.k0s())}function kn(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting payments..."),t.k0s())}function In(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function Tn(i,s){if(1&i&&(t.j41(0,"td",80),t.DNE(1,Rn,2,0,"p",11)(2,kn,2,0,"p",11)(3,In,2,1,"p",11),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function wn(i,s){if(1&i&&(t.j41(0,"span",81),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,e.timestamp,"dd/MMM/y HH:mm")," ")}}function jn(i,s){if(1&i&&(t.qex(0),t.DNE(1,wn,3,4,"span",82),t.bVm()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Dn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"span",81),t.EFF(2),t.k0s(),t.DNE(3,jn,2,1,"ng-container",11),t.k0s()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" Total Attempts: ",(null==e||null==e.parts?null:e.parts.length)||0," "),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Pn(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(e.id)}}function Gn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,Pn,4,4,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function An(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Gn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.id),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Nn(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(e.toChannelId)}}function Bn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,Nn,4,4,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Mn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Bn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeId),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function $n(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(e.toChannelAlias)}}function Vn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,$n,4,4,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function On(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Vn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeAlias),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Hn(i,s){if(1&i&&(t.j41(0,"span",84),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,e.amount,"1.0-0")," ")}}function Yn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,Hn,3,4,"span",85),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Xn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"span",84),t.EFF(2),t.nI1(3,"number"),t.k0s(),t.DNE(4,Yn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.i5U(3,2,null==e?null:e.recipientAmount,"1.0-0")),t.R7$(2),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Un(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function zn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,Un,5,7,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Jn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,zn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function qn(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Qn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,qn,5,7,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Zn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Qn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Wn(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Kn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,Wn,5,7,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function ti(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Kn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentPreimage),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function ei(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",89)(1,"button",90),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2).$implicit,l=t.XpG(2);return r.Njj(l.onPartClick(a,o))}),t.EFF(2),t.k0s()()}if(2&i){const e=s.index;t.R7$(2),t.SpI("View ",e+1)}}function ni(i,s){if(1&i&&(t.j41(0,"div"),t.DNE(1,ei,3,1,"div",88),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function ii(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",69)(1,"span",86)(2,"button",87),t.bIt("click",function(){const a=r.eBV(e).$implicit;return r.Njj(a.is_expanded=!a.is_expanded)}),t.EFF(3),t.k0s()(),t.DNE(4,ni,2,1,"div",11),t.k0s()}if(2&i){const e=s.$implicit;t.R7$(3),t.JRh(null!=e&&e.is_expanded?"Hide":"Show"),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function ai(i,s){1&i&&t.nrm(0,"tr",91)}function oi(i,s){if(1&i&&t.nrm(0,"tr",92),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ke,(null==e.payments||null==e.payments.data?null:e.payments.data.length)>0))}}function si(i,s){1&i&&t.nrm(0,"tr",93)}function li(i,s){1&i&&t.nrm(0,"tr",91)}function ri(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",22)(1,"div",23)(2,"div",24),t.nrm(3,"fa-icon",25),t.j41(4,"span",26),t.EFF(5,"Payments History"),t.k0s()(),t.j41(6,"div",27)(7,"mat-form-field",28)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",29),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilterBy,a)||(o.selFilterBy=a),r.Njj(a)}),t.bIt("selectionChange",function(){r.eBV(e);const a=t.XpG();return a.selFilter="",r.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,ln,2,2,"mat-option",30),t.k0s()()(),t.j41(13,"mat-form-field",28)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",31),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilter,a)||(o.selFilter=a),r.Njj(a)}),t.bIt("input",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())})("keyup",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",32)(18,"div",33),t.DNE(19,rn,1,0,"mat-progress-bar",34),t.j41(20,"table",35,2),t.qex(22,36),t.DNE(23,cn,2,0,"th",37)(24,mn,3,4,"td",38),t.bVm(),t.qex(25,39),t.DNE(26,pn,2,0,"th",37)(27,un,4,4,"td",38),t.bVm(),t.qex(28,40),t.DNE(29,dn,2,0,"th",37)(30,hn,4,4,"td",38),t.bVm(),t.qex(31,41),t.DNE(32,fn,2,0,"th",37)(33,_n,4,4,"td",38),t.bVm(),t.qex(34,42),t.DNE(35,gn,2,0,"th",37)(36,Cn,4,4,"td",38),t.bVm(),t.qex(37,43),t.DNE(38,yn,2,0,"th",37)(39,bn,4,4,"td",38),t.bVm(),t.qex(40,44),t.DNE(41,Fn,2,0,"th",37)(42,En,4,4,"td",38),t.bVm(),t.qex(43,45),t.DNE(44,xn,2,0,"th",46)(45,Ln,4,3,"td",38),t.bVm(),t.qex(46,47),t.DNE(47,Sn,6,0,"th",48)(48,vn,3,0,"td",49),t.bVm(),t.qex(49,50),t.DNE(50,Tn,4,3,"td",51),t.bVm(),t.qex(51,52),t.DNE(52,Dn,4,2,"td",38),t.bVm(),t.qex(53,53),t.DNE(54,An,5,5,"td",38),t.bVm(),t.qex(55,54),t.DNE(56,Mn,5,5,"td",38),t.bVm(),t.qex(57,55),t.DNE(58,On,5,5,"td",38),t.bVm(),t.qex(59,56),t.DNE(60,Xn,5,5,"td",38),t.bVm(),t.qex(61,57),t.DNE(62,Jn,5,5,"td",38),t.bVm(),t.qex(63,58),t.DNE(64,Zn,5,5,"td",38),t.bVm(),t.qex(65,59),t.DNE(66,ti,5,5,"td",38),t.bVm(),t.qex(67,60),t.DNE(68,ii,5,2,"td",38),t.bVm(),t.DNE(69,ai,1,0,"tr",61)(70,oi,1,3,"tr",62)(71,si,1,0,"tr",63)(72,li,1,0,"tr",64),t.k0s()()(),t.nrm(73,"mat-paginator",65),t.k0s()}if(2&i){const e=t.XpG();t.R7$(3),t.Y8G("icon",e.faHistory),t.R7$(7),t.R50("ngModel",e.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(17,Qe).concat(e.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",e.selFilter),t.R7$(3),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.payments)("ngClass",t.eq3(18,Ze,""!==e.errorMessage)),t.R7$(49),t.Y8G("matRowDefColumns",e.partColumns)("matRowDefWhen",e.is_group),t.R7$(),t.Y8G("matFooterRowDef",t.lJ4(20,We)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("hidePageSize",e.screenSize!==e.screenSizeEnum.XS)}}let Tt=(()=>{var i;class s{constructor(n,a,o,l,m,u,T,F){this.logger=n,this.commonService=a,this.store=o,this.rtlEffects=l,this.decimalPipe=m,this.dataService=u,this.datePipe=T,this.camelCaseWithSpaces=F,this.calledFrom="transactions",this.convertedCurrency=null,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:c.md,sortBy:"firstPartTimestamp",sortOrder:c.oi.DESCENDING},this.faHistory=E.Int,this.newlyAddedPayment="",this.information={},this.payments=new p.I6([]),this.paymentJSONArr=[],this.paymentDecoded={},this.displayedColumns=[],this.partColumns=[],this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.information=n}),this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.partColumns=[],this.displayedColumns.map(a=>this.partColumns.push("group_"+a)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.flgInit||(this.flgInit=!0,this.store.dispatch((0,j.CK)({payload:{count:1e6,skip:0}}))),this.logger.info(this.displayedColumns)}),this.store.select(b.KT).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=n.payments&&n.payments.sent&&n.payments.sent.length>0?n.payments.sent:[],this.paymentJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(n)})}ngAfterViewInit(){this.paymentJSONArr.length>0&&this.loadPaymentsTable(this.paymentJSONArr)}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.payments.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=(n.firstPartTimestamp?this.datePipe.transform(new Date(n.firstPartTimestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(n).toLowerCase();break;case"firstPartTimestamp":o=this.datePipe.transform(new Date(n.firstPartTimestamp||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}loadPaymentsTable(n){this.payments=new p.I6(n?[...n]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(a,o)=>{switch(o){case"firstPartTimestamp":return this.commonService.sortByKey(a.parts,"timestamp","number",this.sort?.direction),a.firstPartTimestamp;case"id":return this.commonService.sortByKey(a.parts,"id","string",this.sort?.direction),a.id;case"recipientNodeAlias":return this.commonService.sortByKey(a.parts,"toChannelAlias","string",this.sort?.direction),a.recipientNodeAlias;case"recipientAmount":return this.commonService.sortByKey(a.parts,"amount","number",this.sort?.direction),a.recipientAmount;default:return a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null}},this.payments.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,Z.s)(1)).subscribe(n=>{this.paymentDecoded=n,this.paymentDecoded.timestamp?(this.paymentDecoded.amount||(this.paymentDecoded.amount=0),this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded.paymentHash||"",this.paymentDecoded.amount&&0!==this.paymentDecoded.amount?(this.store.dispatch((0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"paymentHash",value:this.paymentDecoded.paymentHash,title:"Payment Hash",width:100}],[{key:"nodeId",value:this.paymentDecoded.nodeId,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:50,type:c.UN.DATE_TIME},{key:"amount",value:this.paymentDecoded.amount,title:"Amount (Sats)",width:50,type:c.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:c.UN.NUMBER},{key:"minFinalCltvExpiry",value:this.paymentDecoded.minFinalCltvExpiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,Z.s)(1)).subscribe(a=>{a&&(this.store.dispatch((0,j.Fd)({payload:{invoice:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",message:[[{key:"paymentHash",value:this.paymentDecoded.paymentHash,title:"Payment Hash",width:100}],[{key:"nodeId",value:this.paymentDecoded.nodeId,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:40,type:c.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:c.UN.NUMBER},{key:"minFinalCltvExpiry",value:this.paymentDecoded.minFinalCltvExpiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",getInputs:[{placeholder:"Amount (Sats)",inputType:c.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,Z.s)(1)).subscribe(o=>{o&&(this.paymentDecoded.amount=o[0].inputValue,this.store.dispatch((0,j.Fd)({payload:{invoice:this.paymentRequest,amountMsat:1e3*o[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(n){this.paymentRequest=n,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,Z.s)(1)).subscribe(a=>{this.paymentDecoded=a,this.paymentDecoded.amount?this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.amount,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[4])).subscribe({next:o=>{this.convertedCurrency=o,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,c.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:o=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost="")})}openSendPaymentModal(){this.store.dispatch((0,k.xO)({payload:{data:{component:He}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}is_group(n,a){return a.parts&&a.parts.length>1}onPaymentClick(n){n.paymentHash&&""!==n.paymentHash.trim()?this.dataService.decodePayments(n.paymentHash).pipe((0,Z.s)(1)).subscribe({next:a=>{setTimeout(()=>{this.showPaymentView(n,a.length&&a.length>0?a[0]:[])},0)},error:a=>{this.showPaymentView(n,[])}}):this.showPaymentView(n,[])}showPaymentView(n,a){this.store.dispatch((0,k.xO)({payload:{data:{sentPaymentInfo:a,payment:n,component:Je}}}))}onPartClick(n,a){a.paymentHash&&""!==a.paymentHash.trim()?this.dataService.decodePayments(a.paymentHash).pipe((0,Z.s)(1)).subscribe({next:o=>{setTimeout(()=>{this.showPartView(n,a,o.length&&o.length>0?o[0]:[])},0)},error:o=>{this.showPartView(n,a,[])}}):this.showPartView(n,a,[])}showPartView(n,a,o){const l=[[{key:"paymentHash",value:a.paymentHash,title:"Payment Hash",width:100,type:c.UN.STRING}],[{key:"paymentPreimage",value:a.paymentPreimage,title:"Payment Preimage",width:100,type:c.UN.STRING}],[{key:"toChannelId",value:n.toChannelId,title:"Channel",width:100,type:c.UN.STRING}],[{key:"id",value:n.id,title:"Part ID",width:50,type:c.UN.STRING},{key:"timestamp",value:n.timestamp,title:"Time",width:50,type:c.UN.DATE_TIME}],[{key:"amount",value:n.amount,title:"Amount (Sats)",width:50,type:c.UN.NUMBER},{key:"feesPaid",value:n.feesPaid,title:"Fee (Sats)",width:50,type:c.UN.NUMBER}]];o&&o.length>0&&o[0].paymentRequest&&o[0].paymentRequest.description&&""!==o[0].paymentRequest.description&&l.splice(3,0,[{key:"description",value:o[0].paymentRequest.description,title:"Description",width:100,type:c.UN.STRING}]),this.store.dispatch((0,k.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Payment Part Information",message:l}}}))}onPageChange(n){this.store.dispatch((0,j.CK)({payload:{count:this.pageSize,skip:n.pageIndex*n.pageSize}}))}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const n=JSON.parse(JSON.stringify(this.payments.data)),a=n?.reduce((o,l)=>(l.paymentHash&&""!==l.paymentHash.trim()&&(o=""===o?l.paymentHash:o+","+l.paymentHash),o),"");this.dataService.decodePayments(a).pipe((0,g.Q)(this.unSubs[5])).subscribe(o=>{o.forEach((m,u)=>{m.length>0&&m[0].paymentRequest&&m[0].paymentRequest.description&&""!==m[0].paymentRequest.description&&(n[u].description=m[0].paymentRequest.description)});const l=n?.reduce((m,u)=>m.concat(u),[]);this.commonService.downloadFile(l,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il),t.rXU(lt.H),t.rXU(d.QX),t.rXU(nt.u),t.rXU(d.vh),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-lightning-payments"]],viewQuery:function(a,o){if(1&a&&(t.GBs(qe,5),t.GBs(S.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first),t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Payments")}])],decls:4,vars:3,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["table",""],["fxLayout","column","fxFlex","colWidth","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100"],["matInput","","name","paymentRequest","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","perfectScrollbar","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","colWidth",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","colWidth","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","firstPartTimestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","id"],["matColumnDef","recipientNodeId"],["matColumnDef","recipientNodeAlias"],["matColumnDef","description"],["matColumnDef","paymentHash"],["matColumnDef","paymentPreimage"],["matColumnDef","recipientAmount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","group_firstPartTimestamp"],["matColumnDef","group_id"],["matColumnDef","group_recipientNodeId"],["matColumnDef","group_recipientNodeAlias"],["matColumnDef","group_recipientAmount"],["matColumnDef","group_description"],["matColumnDef","group_paymentHash"],["matColumnDef","group_paymentPreimage"],["matColumnDef","group_actions"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"part-row-span"],["fxLayoutAlign","start center","class","part-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"ellipsis-parent","part-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"part-row-span"],["fxLayoutAlign","end center","class","part-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"part-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-part-expand",3,"click"],["class","part-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"part-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-part-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(a,o){1&a&&(t.j41(0,"div",3),t.DNE(1,on,14,3,"form",4)(2,sn,3,0,"div",5)(3,ri,74,21,"div",6),t.k0s()),2&a&&(t.R7$(),t.Y8G("ngIf","home"===o.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===o.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===o.calledFrom))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.qT,f.me,f.BC,f.cb,f.YS,f.vS,f.cV,D.aY,N.$z,Y.fg,y.rl,y.nJ,y.MV,y.TL,H.HM,_.DJ,_.sA,_.UI,v.PW,v.eI,R.VO,R.$2,z.wT,S.B4,S.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,w.iy,B.ZF,B.Ld,d.QX,d.vh],styles:[".mat-column-group_actions[_ngcontent-%COMP%] .part-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .part-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-part-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-part-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_firstPartTimestamp[_ngcontent-%COMP%] .part-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem}.part-row-span[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_firstPartTimestamp[_ngcontent-%COMP%]{min-width:11rem}"]}))}return i(),s})();var it=C(56114);function ci(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Description is required."),t.k0s())}function mi(i,s){1&i&&(t.j41(0,"span",29),t.EFF(1,"= "),t.k0s())}function pi(i,s){if(1&i&&(t.j41(0,"span",30),t.nrm(1,"fa-icon",31),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function ui(i,s){if(1&i&&t.nrm(0,"span",32),2&i){const e=t.XpG();t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function di(i,s){if(1&i&&(t.j41(0,"mat-option",33),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&i){const e=s.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(t.bMT(2,2,e))}}function hi(i,s){if(1&i&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.invoiceError)}}function fi(i,s){if(1&i&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.DNE(2,hi,2,1,"span",11),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.invoiceError)}}let _i=(()=>{var i;class s{constructor(n,a,o,l,m,u){this.dialogRef=n,this.data=a,this.store=o,this.decimalPipe=l,this.commonService=m,this.actions=u,this.faExclamationTriangle=E.zpE,this.convertedCurrency=null,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=c.md,this.timeUnitEnum=c.F7,this.timeUnits=c.SY,this.selTimeUnit=c.F7.SECS,this.invoiceError="",this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.information=n}),this.actions.pipe((0,g.Q)(this.unSubs[2]),(0,X.p)(n=>n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(n=>{n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&"CreateInvoice"===n.payload.action&&(n.payload.status===c.wn.ERROR&&(this.invoiceError=n.payload.message),n.payload.status===c.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(n){if(this.invoiceError="",!this.description)return!0;let a=this.expiry?this.expiry:c.It;this.expiry&&this.selTimeUnit!==c.F7.SECS&&(a=this.commonService.convertTime(this.expiry,this.selTimeUnit,c.F7.SECS));let o=null;o=this.invoiceValue?{description:this.description,expireIn:a,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:a},this.store.dispatch((0,j.iO)({payload:o}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=c.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[3])).subscribe({next:n=>{this.convertedCurrency=n,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,c.k.OTHER)+" "+this.convertedCurrency.unit},error:n=>{this.invoiceValueHint="Conversion Error: "+n}}))}onTimeUnitChange(n){this.expiry&&this.selTimeUnit!==n.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,n.value)),this.selTimeUnit=n.value}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(V.Vh),t.rXU(I.il),t.rXU(d.QX),t.rXU($.h),t.rXU(K.En))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-create-invoices"]],standalone:!1,decls:44,vars:19,consts:[["addInvoiceForm","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","tabindex","2","name","description","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","tabindex","3","name","invValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","type","number","name","exp","tabindex","4",3,"ngModelChange","step","min","ngModel"],["fxLayout","column","fxFlex","26"],["tabindex","5","name","timeUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","8",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Create Invoice"),t.k0s()(),t.j41(6,"button",6),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),t.EFF(13,"Description"),t.k0s(),t.j41(14,"input",10),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.description,u)||(o.description=u),r.Njj(u)}),t.k0s(),t.DNE(15,ci,2,0,"mat-error",11),t.k0s(),t.j41(16,"div",12)(17,"mat-form-field",13)(18,"mat-label"),t.EFF(19,"Amount"),t.k0s(),t.j41(20,"input",14),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.invoiceValue,u)||(o.invoiceValue=u),r.Njj(u)}),t.bIt("keyup",function(){return r.eBV(l),r.Njj(o.onInvoiceValueChange())}),t.k0s(),t.j41(21,"span",15),t.EFF(22,"Sats "),t.k0s(),t.j41(23,"mat-hint",16),t.DNE(24,mi,2,0,"span",17)(25,pi,2,1,"span",18)(26,ui,1,1,"span",19),t.EFF(27),t.k0s()(),t.j41(28,"mat-form-field",20)(29,"mat-label"),t.EFF(30,"Expiry"),t.k0s(),t.j41(31,"input",21),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.expiry,u)||(o.expiry=u),r.Njj(u)}),t.k0s(),t.j41(32,"span",15),t.EFF(33),t.nI1(34,"titlecase"),t.k0s()(),t.j41(35,"mat-form-field",22)(36,"mat-select",23),t.bIt("selectionChange",function(u){return r.eBV(l),r.Njj(o.onTimeUnitChange(u))}),t.DNE(37,di,3,4,"mat-option",24),t.k0s()()(),t.DNE(38,fi,3,2,"div",25),t.j41(39,"div",26)(40,"button",27),t.bIt("click",function(){return r.eBV(l),r.Njj(o.resetData())}),t.EFF(41,"Clear Field"),t.k0s(),t.j41(42,"button",28),t.bIt("click",function(){r.eBV(l);const u=t.sdS(10);return r.Njj(o.onAddInvoice(u))}),t.EFF(43,"Create Invoice"),t.k0s()()()()()()}2&a&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(8),t.R50("ngModel",o.description),t.R7$(),t.Y8G("ngIf",!o.description),t.R7$(5),t.Y8G("step",100)("min",1),t.R50("ngModel",o.invoiceValue),t.R7$(4),t.Y8G("ngIf",""!==o.invoiceValueHint),t.R7$(),t.Y8G("ngIf",o.convertedCurrency&&"FA"===o.convertedCurrency.iconType&&""!==o.invoiceValueHint),t.R7$(),t.Y8G("ngIf",o.convertedCurrency&&"SVG"===o.convertedCurrency.iconType&&""!==o.invoiceValueHint),t.R7$(),t.SpI(" ",o.invoiceValueHint," "),t.R7$(4),t.Y8G("step",o.selTimeUnit===o.timeUnitEnum.SECS?300:o.selTimeUnit===o.timeUnitEnum.MINS?10:o.selTimeUnit===o.timeUnitEnum.HOURS?2:1)("min",1),t.R50("ngModel",o.expiry),t.R7$(2),t.SpI("",t.bMT(34,17,o.selTimeUnit)," "),t.R7$(3),t.Y8G("value",o.selTimeUnit),t.R7$(),t.Y8G("ngForOf",o.timeUnits),t.R7$(),t.Y8G("ngIf",""!==o.invoiceError))},dependencies:[d.Sq,d.bT,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.VZ,f.vS,f.cV,D.aY,V.tx,N.$z,x.m2,x.MM,Y.fg,y.rl,y.nJ,y.MV,y.TL,y.yw,_.DJ,_.sA,_.UI,R.VO,z.wT,et.N,it.V,d.PV],encapsulation:2}))}return i(),s})();var gi=C(86439);const Ci=()=>["all"],yi=i=>({"error-border":i}),bi=()=>["no_invoice"],ft=i=>({"mr-0":i}),_t=i=>({width:i}),Fi=i=>({"display-none":i});function Ei(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Description is required."),t.k0s())}function xi(i,s){1&i&&(t.j41(0,"span",21),t.EFF(1,"= "),t.k0s())}function Li(i,s){if(1&i&&(t.j41(0,"span",22),t.nrm(1,"fa-icon",23),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function Si(i,s){if(1&i&&t.nrm(0,"span",24),2&i){const e=t.XpG(2);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function vi(i,s){if(1&i){const e=t.RV6();t.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),t.EFF(4,"Description"),t.k0s(),t.j41(5,"input",9),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.description,a)||(o.description=a),r.Njj(a)}),t.k0s(),t.DNE(6,Ei,2,0,"mat-error",10),t.k0s(),t.j41(7,"mat-form-field",11)(8,"mat-label"),t.EFF(9,"Amount"),t.k0s(),t.j41(10,"input",12,1),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.invoiceValue,a)||(o.invoiceValue=a),r.Njj(a)}),t.bIt("keyup",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onInvoiceValueChange())}),t.k0s(),t.j41(12,"span",13),t.EFF(13,"Sats "),t.k0s(),t.j41(14,"mat-hint",14),t.DNE(15,xi,2,0,"span",15)(16,Li,2,1,"span",16)(17,Si,1,1,"span",17),t.EFF(18),t.k0s()(),t.j41(19,"div",18)(20,"button",19),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.resetData())}),t.EFF(21,"Clear Field"),t.k0s(),t.j41(22,"button",20),t.bIt("click",function(){r.eBV(e);const a=t.sdS(1),o=t.XpG();return r.Njj(o.onAddInvoice(a))}),t.EFF(23,"Create Invoice"),t.k0s()()()}if(2&i){const e=t.XpG();t.R7$(5),t.R50("ngModel",e.description),t.R7$(),t.Y8G("ngIf",!e.description),t.R7$(4),t.Y8G("step",100)("min",1),t.R50("ngModel",e.invoiceValue),t.R7$(5),t.Y8G("ngIf",""!==e.invoiceValueHint),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.invoiceValueHint),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.invoiceValueHint),t.R7$(),t.SpI(" ",e.invoiceValueHint," ")}}function Ri(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",25)(1,"button",26),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.openCreateInvoiceModal())}),t.EFF(2,"Create Invoice"),t.k0s()()}}function ki(i,s){if(1&i&&(t.j41(0,"mat-option",63),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function Ii(i,s){1&i&&t.nrm(0,"mat-progress-bar",64)}function Ti(i,s){1&i&&t.nrm(0,"th",65)}function wi(i,s){if(1&i&&t.nrm(0,"span",70),2&i){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ft,e.screenSize===e.screenSizeEnum.XS))}}function ji(i,s){if(1&i&&t.nrm(0,"span",71),2&i){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ft,e.screenSize===e.screenSizeEnum.XS))}}function Di(i,s){if(1&i&&t.nrm(0,"span",72),2&i){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ft,e.screenSize===e.screenSizeEnum.XS))}}function Pi(i,s){if(1&i&&(t.j41(0,"td",66),t.DNE(1,wi,1,3,"span",67)(2,ji,1,3,"span",68)(3,Di,1,3,"span",69),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf","received"===(null==e?null:e.status)),t.R7$(),t.Y8G("ngIf","unpaid"===(null==e?null:e.status)),t.R7$(),t.Y8G("ngIf",!(null!=e&&e.status)||"expired"===(null==e?null:e.status)||"unknown"===(null==e?null:e.status))}}function Gi(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Date Created"),t.k0s())}function Ai(i,s){if(1&i&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function Ni(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Date Expiry"),t.k0s())}function Bi(i,s){if(1&i&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.expiresAt),"dd/MMM/y HH:mm")||"-")}}function Mi(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Date Settled"),t.k0s())}function $i(i,s){if(1&i&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.receivedAt),"dd/MMM/y HH:mm")||"-")}}function Vi(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Node ID"),t.k0s())}function Oi(i,s){if(1&i&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,_t,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Hi(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Description"),t.k0s())}function Yi(i,s){if(1&i&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,_t,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description)}}function Xi(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Payment Hash"),t.k0s())}function Ui(i,s){if(1&i&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,_t,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function zi(i,s){1&i&&(t.j41(0,"th",76),t.EFF(1,"Amount (Sats)"),t.k0s())}function Ji(i,s){if(1&i&&(t.j41(0,"td",66)(1,"span",77),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(null!=e&&e.amount?t.i5U(3,1,null==e?null:e.amount,"1.0-0"):"-")}}function qi(i,s){1&i&&(t.j41(0,"th",78),t.EFF(1," Amount Settled (Sats)"),t.k0s())}function Qi(i,s){if(1&i&&(t.j41(0,"td",66)(1,"span",77),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(null!=e&&e.amountSettled?t.i5U(3,1,null==e?null:e.amountSettled,"1.0-0"):"-")}}function Zi(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",79)(1,"div",80)(2,"mat-select",81),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",82),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function Wi(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",83)(1,"div",80)(2,"mat-select",84),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",82),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onInvoiceClick(a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",82),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onRefreshInvoice(a))}),t.EFF(7,"Refresh"),t.k0s()()()()}}function Ki(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No invoice available."),t.k0s())}function ta(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting invoices..."),t.k0s())}function ea(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function na(i,s){if(1&i&&(t.j41(0,"td",85),t.DNE(1,Ki,2,0,"p",10)(2,ta,2,0,"p",10)(3,ea,2,1,"p",10),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function ia(i,s){if(1&i&&t.nrm(0,"tr",86),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Fi,(null==e.invoices?null:e.invoices.data)&&(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)>0))}}function aa(i,s){1&i&&t.nrm(0,"tr",87)}function oa(i,s){1&i&&t.nrm(0,"tr",88)}function sa(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",27)(1,"div",28)(2,"div",29),t.nrm(3,"fa-icon",30),t.j41(4,"span",31),t.EFF(5,"Invoices History"),t.k0s()(),t.j41(6,"div",32)(7,"mat-form-field",33)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",34),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilterBy,a)||(o.selFilterBy=a),r.Njj(a)}),t.bIt("selectionChange",function(){r.eBV(e);const a=t.XpG();return a.selFilter="",r.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,ki,2,2,"mat-option",35),t.k0s()()(),t.j41(13,"mat-form-field",33)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",36),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilter,a)||(o.selFilter=a),r.Njj(a)}),t.bIt("input",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())})("keyup",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",37),t.DNE(18,Ii,1,0,"mat-progress-bar",38),t.j41(19,"table",39,2),t.qex(21,40),t.DNE(22,Ti,1,0,"th",41)(23,Pi,4,3,"td",42),t.bVm(),t.qex(24,43),t.DNE(25,Gi,2,0,"th",44)(26,Ai,3,4,"td",42),t.bVm(),t.qex(27,45),t.DNE(28,Ni,2,0,"th",44)(29,Bi,3,4,"td",42),t.bVm(),t.qex(30,46),t.DNE(31,Mi,2,0,"th",44)(32,$i,3,4,"td",42),t.bVm(),t.qex(33,47),t.DNE(34,Vi,2,0,"th",44)(35,Oi,4,4,"td",42),t.bVm(),t.qex(36,48),t.DNE(37,Hi,2,0,"th",44)(38,Yi,4,4,"td",42),t.bVm(),t.qex(39,49),t.DNE(40,Xi,2,0,"th",44)(41,Ui,4,4,"td",42),t.bVm(),t.qex(42,50),t.DNE(43,zi,2,0,"th",51)(44,Ji,4,4,"td",42),t.bVm(),t.qex(45,52),t.DNE(46,qi,2,0,"th",53)(47,Qi,4,4,"td",42),t.bVm(),t.qex(48,54),t.DNE(49,Zi,6,0,"th",55)(50,Wi,8,0,"td",56),t.bVm(),t.qex(51,57),t.DNE(52,na,4,3,"td",58),t.bVm(),t.DNE(53,ia,1,3,"tr",59)(54,aa,1,0,"tr",60)(55,oa,1,0,"tr",61),t.k0s()(),t.nrm(56,"mat-paginator",62),t.k0s()}if(2&i){const e=t.XpG();t.R7$(3),t.Y8G("icon",e.faHistory),t.R7$(7),t.R50("ngModel",e.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,Ci).concat(e.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",e.selFilter),t.R7$(2),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.invoices)("ngClass",t.eq3(16,yi,""!==e.errorMessage)),t.R7$(34),t.Y8G("matFooterRowDef",t.lJ4(18,bi)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("hidePageSize",e.screenSize!==e.screenSizeEnum.XS)}}let wt=(()=>{var i;class s{constructor(n,a,o,l,m,u,T){this.logger=n,this.store=a,this.decimalPipe=o,this.commonService=l,this.datePipe=m,this.actions=u,this.camelCaseWithSpaces=T,this.calledFrom="transactions",this.faHistory=E.Int,this.convertedCurrency=null,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:c.md,sortBy:"expiresAt",sortOrder:c.oi.DESCENDING},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoices=new p.I6([]),this.invoiceJSONArr=[],this.information={},this.selFilter="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.information=n}),this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.flgInit||(this.flgInit=!0,this.store.dispatch((0,j.Do)({payload:{count:1e6,skip:0}}))),this.logger.info(this.displayedColumns)}),this.store.select(b.rN).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.invoiceJSONArr=n.invoices&&n.invoices.length>0?n.invoices:[],this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(n)}),this.actions.pipe((0,g.Q)(this.unSubs[4]),(0,X.p)(n=>n.type===c.Uu.SET_LOOKUP_ECL||n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(n=>{n.type===c.Uu.SET_LOOKUP_ECL&&this.invoiceJSONArr&&this.sort&&this.paginator&&n.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(n.payload))),this.loadInvoicesTable(this.invoiceJSONArr))})}ngAfterViewInit(){this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr)}openCreateInvoiceModal(){this.store.dispatch((0,k.xO)({payload:{data:{pageSize:this.pageSize,component:_i}}}))}onAddInvoice(n){if(!this.description)return!0;const a=this.expiry?this.expiry:c.It;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue;let o=null;o=this.invoiceValue?{description:this.description,expireIn:a,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:a},this.store.dispatch((0,j.iO)({payload:o})),this.resetData()}onInvoiceClick(n){this.store.dispatch((0,k.xO)({payload:{data:{invoice:n,newlyAdded:!1,component:gi.Z}}}))}onRefreshInvoice(n){this.store.dispatch((0,j.Yi)({payload:n.paymentHash}))}updateInvoicesData(n){this.invoiceJSONArr=this.invoiceJSONArr?.map(a=>a.paymentHash===n.paymentHash?n:a)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.invoices.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=(n.timestamp?this.datePipe.transform(new Date(1e3*n.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(n).toLowerCase();break;case"status":o=n?.status&&"expired"!==n?.status&&"unknown"!==n?.status?n.status?.toLowerCase():"expired/unknown";break;case"timestamp":case"expiresAt":case"receivedAt":o=this.datePipe.transform(new Date(1e3*(n[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"amount":case"amountSettled":o=n[this.selFilterBy]?.toString()||"-";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return"status"===this.selFilterBy?0===o.indexOf(a):o.includes(a)}}loadInvoicesTable(n){this.invoices=new p.I6(n?[...n]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.invoices.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}resetData(){this.description="",this.invoiceValue=null,this.expiry=null,this.invoiceValueHint=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[5])).subscribe({next:n=>{this.convertedCurrency=n,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,c.k.OTHER)+" "+this.convertedCurrency.unit},error:n=>{this.invoiceValueHint="Conversion Error: "+n}}))}onPageChange(n){this.store.dispatch((0,j.Do)({payload:{count:this.pageSize,skip:n.pageIndex*n.pageSize}}))}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(d.QX),t.rXU($.h),t.rXU(d.vh),t.rXU(K.En),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-lightning-invoices"]],viewQuery:function(a,o){if(1&a&&(t.GBs(S.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Invoices")}])],decls:4,vars:3,consts:[["addInvoiceForm","ngForm"],["invcVal","ngModel"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["matInput","","tabindex","2","name","description","required","true",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","3","name","invValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","9","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","10",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","expiresAt"],["matColumnDef","receivedAt"],["matColumnDef","nodeId"],["matColumnDef","description"],["matColumnDef","paymentHash"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amountSettled"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","p1-3",4,"matHeaderCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Received","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Expired/Unknown","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Received","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Expired/Unknown","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"p1-3"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){1&a&&(t.j41(0,"div",3),t.DNE(1,vi,24,9,"form",4)(2,Ri,3,0,"div",5)(3,sa,57,19,"div",6),t.k0s()),2&a&&(t.R7$(),t.Y8G("ngIf","home"===o.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===o.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===o.calledFrom))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.VZ,f.vS,f.cV,D.aY,N.$z,Y.fg,y.rl,y.nJ,y.MV,y.TL,y.yw,H.HM,_.DJ,_.sA,_.UI,v.PW,v.eI,R.VO,R.$2,z.wT,S.B4,S.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld,it.V,d.QX,d.vh],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return i(),s})();const jt=i=>({"dashboard-card-content":!0,"error-border":i}),la=i=>({"p-0":i});function ra(i,s){if(1&i&&(t.j41(0,"button",28)(1,"mat-icon"),t.EFF(2,"more_vert"),t.k0s()()),2&i){t.XpG();const e=t.sdS(11);t.Y8G("matMenuTriggerFor",e)}}function ca(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=r.eBV(e).index,o=t.XpG().$implicit,l=t.XpG(2);return r.Njj(l.onNavigateTo(o.links[a]))}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit;t.R7$(),t.JRh(e)}}function ma(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){r.eBV(e);const a=t.XpG(3);return r.Njj(a.onsortChannelsBy())}),t.EFF(1),t.k0s()}if(2&i){const e=t.XpG(3);t.R7$(),t.SpI("Sort By ","Balance Score"===e.sortField?"Capacity":"Balance Score")}}function pa(i,s){1&i&&t.nrm(0,"mat-progress-bar",30)}function ua(i,s){if(1&i&&t.nrm(0,"rtl-ecl-node-info",31),2&i){const e=t.XpG(3);t.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function da(i,s){if(1&i&&t.nrm(0,"rtl-ecl-balances-info",32),2&i){const e=t.XpG(3);t.Y8G("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function ha(i,s){if(1&i&&t.nrm(0,"rtl-ecl-channel-capacity-info",33),2&i){const e=t.XpG(3);t.Y8G("sortBy",e.sortField)("channelBalances",e.channelBalances)("allChannels",e.allChannelsCapacity)("errorMessage",e.errorMessages[2])}}function fa(i,s){if(1&i&&t.nrm(0,"rtl-ecl-fee-info",34),2&i){const e=t.XpG(3);t.Y8G("fees",e.fees)("errorMessage",e.errorMessages[1])}}function _a(i,s){if(1&i&&t.nrm(0,"rtl-ecl-channel-status-info",35),2&i){const e=t.XpG(3);t.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[2])}}function ga(i,s){1&i&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find information!"),t.k0s())}function Ca(i,s){if(1&i&&(t.j41(0,"mat-grid-tile",11)(1,"mat-card",12)(2,"mat-card-header")(3,"mat-card-title",13)(4,"div"),t.nrm(5,"fa-icon",14),t.j41(6,"span"),t.EFF(7),t.k0s()(),t.j41(8,"div"),t.DNE(9,ra,3,1,"button",15),t.j41(10,"mat-menu",16,1),t.DNE(12,ca,2,1,"button",17)(13,ma,2,1,"button",18),t.k0s()()()(),t.j41(14,"mat-card-content",19),t.DNE(15,pa,1,0,"mat-progress-bar",20),t.j41(16,"div",21),t.DNE(17,ua,1,2,"rtl-ecl-node-info",22)(18,da,1,2,"rtl-ecl-balances-info",23)(19,ha,1,4,"rtl-ecl-channel-capacity-info",24)(20,fa,1,2,"rtl-ecl-fee-info",25)(21,_a,1,2,"rtl-ecl-channel-status-info",26)(22,ga,2,0,"h3",27),t.k0s()()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.Y8G("colspan",e.cols)("rowspan",e.rows),t.R7$(5),t.Y8G("icon",e.icon),t.R7$(2),t.JRh(e.title),t.R7$(2),t.Y8G("ngIf",e.links[0]),t.R7$(3),t.Y8G("ngForOf",e.goToOptions),t.R7$(),t.Y8G("ngIf","capacity"===e.id),t.R7$(),t.Y8G("fxFlex",t.mNQ("capacity"===e.id?90:70))("ngClass",t.eq3(17,jt,"node"===e.id&&n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.ERROR||"balance"===e.id&&(n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.ERROR||n.apiCallStatusOCBal.status===n.apiCallStatusEnum.ERROR)||("capacity"===e.id||"status"===e.id)&&n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.ERROR||"fee"===e.id&&n.apiCallStatusFees.status===n.apiCallStatusEnum.ERROR)),t.R7$(),t.Y8G("ngIf","node"===e.id&&n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.INITIATED||"balance"===e.id&&(n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.INITIATED||n.apiCallStatusOCBal.status===n.apiCallStatusEnum.INITIATED)||("capacity"===e.id||"status"===e.id)&&n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.INITIATED||"fee"===e.id&&n.apiCallStatusFees.status===n.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngSwitch",e.id),t.R7$(),t.Y8G("ngSwitchCase","node"),t.R7$(),t.Y8G("ngSwitchCase","balance"),t.R7$(),t.Y8G("ngSwitchCase","capacity"),t.R7$(),t.Y8G("ngSwitchCase","fee"),t.R7$(),t.Y8G("ngSwitchCase","status")}}function ya(i,s){if(1&i&&(t.j41(0,"div",5)(1,"div",6),t.nrm(2,"fa-icon",7),t.j41(3,"span",8),t.EFF(4),t.k0s()(),t.j41(5,"mat-grid-list",9),t.DNE(6,Ca,23,19,"mat-grid-tile",10),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.Y8G("icon",e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.ERROR?e.faFrown:e.faSmile),t.R7$(2),t.JRh(e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.COMPLETED?"Welcome "+e.information.alias+"! Your node is up and running.":e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),t.R7$(),t.Y8G("rowHeight",e.operatorCardHeight),t.R7$(),t.Y8G("ngForOf",e.operatorCards)}}function ba(i,s){if(1&i&&(t.j41(0,"button",28)(1,"mat-icon"),t.EFF(2,"more_vert"),t.k0s()()),2&i){t.XpG();const e=t.sdS(9);t.Y8G("matMenuTriggerFor",e)}}function Fa(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=r.eBV(e).index,o=t.XpG(2).$implicit,l=t.XpG(2);return r.Njj(l.onNavigateTo(o.links[a]))}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit;t.R7$(),t.JRh(e)}}function Ea(i,s){if(1&i&&(t.j41(0,"mat-card-header")(1,"mat-card-title",13)(2,"div"),t.nrm(3,"fa-icon",14),t.j41(4,"span"),t.EFF(5),t.k0s()(),t.j41(6,"div"),t.DNE(7,ba,3,1,"button",15),t.j41(8,"mat-menu",16,2),t.DNE(10,Fa,2,1,"button",17),t.k0s()()()()),2&i){const e=t.XpG().$implicit;t.R7$(3),t.Y8G("icon",e.icon),t.R7$(2),t.JRh(e.title),t.R7$(2),t.Y8G("ngIf",e.links[0]),t.R7$(3),t.Y8G("ngForOf",e.goToOptions)}}function xa(i,s){1&i&&t.nrm(0,"mat-progress-bar",30)}function La(i,s){if(1&i&&t.nrm(0,"rtl-ecl-node-info",45),2&i){const e=t.XpG(3);t.Y8G("information",e.information)}}function Sa(i,s){if(1&i&&t.nrm(0,"rtl-ecl-balances-info",32),2&i){const e=t.XpG(3);t.Y8G("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function va(i,s){if(1&i&&t.nrm(0,"rtl-ecl-channel-liquidity-info",46),2&i){const e=t.XpG(3);t.Y8G("totalLiquidity",e.totalInboundLiquidity)("allChannels",e.allInboundChannels)("errorMessage",e.errorMessages[2])}}function Ra(i,s){if(1&i&&t.nrm(0,"rtl-ecl-channel-liquidity-info",47),2&i){const e=t.XpG(3);t.Y8G("totalLiquidity",e.totalOutboundLiquidity)("allChannels",e.allOutboundChannels)("errorMessage",e.errorMessages[2])}}function ka(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=r.eBV(e).index,o=t.XpG(2).$implicit,l=t.XpG(2);return r.Njj(l.onNavigateTo(o.links[a]))}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit;t.R7$(),t.JRh(e)}}function Ia(i,s){if(1&i&&(t.j41(0,"span",48)(1,"mat-tab-group",49)(2,"mat-tab",50),t.nrm(3,"rtl-ecl-lightning-invoices",51),t.k0s(),t.j41(4,"mat-tab",52),t.nrm(5,"rtl-ecl-lightning-payments",53),t.k0s()(),t.j41(6,"div",54)(7,"button",28)(8,"mat-icon"),t.EFF(9,"more_vert"),t.k0s()(),t.j41(10,"mat-menu",16,3),t.DNE(12,ka,2,1,"button",17),t.k0s()()()),2&i){const e=t.sdS(11),n=t.XpG().$implicit;t.R7$(7),t.Y8G("matMenuTriggerFor",e),t.R7$(5),t.Y8G("ngForOf",n.goToOptions)}}function Ta(i,s){1&i&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find information!"),t.k0s())}function wa(i,s){if(1&i&&(t.j41(0,"mat-grid-tile",11)(1,"mat-card",38),t.DNE(2,Ea,11,4,"mat-card-header",39),t.j41(3,"mat-card-content",40),t.DNE(4,xa,1,0,"mat-progress-bar",20),t.j41(5,"div",21),t.DNE(6,La,1,1,"rtl-ecl-node-info",41)(7,Sa,1,2,"rtl-ecl-balances-info",23)(8,va,1,3,"rtl-ecl-channel-liquidity-info",42)(9,Ra,1,3,"rtl-ecl-channel-liquidity-info",43)(10,Ia,13,2,"span",44)(11,Ta,2,0,"h3",27),t.k0s()()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.Y8G("colspan",e.cols)("rowspan",e.rows),t.R7$(),t.Y8G("ngClass",t.eq3(14,la,"transactions"===e.id)),t.R7$(),t.Y8G("ngIf","transactions"!==e.id),t.R7$(),t.Y8G("fxFlex",t.mNQ("transactions"===e.id?100:"balance"===e.id?70:90))("ngClass",t.eq3(16,jt,"node"===e.id&&n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.ERROR||"balance"===e.id&&(n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.ERROR||n.apiCallStatusOCBal.status===n.apiCallStatusEnum.ERROR)||("inboundLiq"===e.id||"outboundLiq"===e.id)&&n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.ERROR)),t.R7$(),t.Y8G("ngIf","node"===e.id&&n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.INITIATED||"balance"===e.id&&(n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.INITIATED||n.apiCallStatusOCBal.status===n.apiCallStatusEnum.INITIATED)||("inboundLiq"===e.id||"outboundLiq"===e.id)&&n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngSwitch",e.id),t.R7$(),t.Y8G("ngSwitchCase","node"),t.R7$(),t.Y8G("ngSwitchCase","balance"),t.R7$(),t.Y8G("ngSwitchCase","inboundLiq"),t.R7$(),t.Y8G("ngSwitchCase","outboundLiq"),t.R7$(),t.Y8G("ngSwitchCase","transactions")}}function ja(i,s){if(1&i&&(t.j41(0,"div",36),t.nrm(1,"fa-icon",7),t.j41(2,"span",8),t.EFF(3),t.k0s()(),t.j41(4,"mat-grid-list",37),t.DNE(5,wa,12,18,"mat-grid-tile",10),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faSmile),t.R7$(2),t.SpI("Welcome ",e.information.alias,"! Your node is up and running."),t.R7$(),t.Y8G("rowHeight",e.merchantCardHeight),t.R7$(),t.Y8G("ngForOf",e.merchantCards)}}let Da=(()=>{var i;class s{constructor(n,a,o,l){this.logger=n,this.store=a,this.commonService=o,this.router=l,this.faSmile=Rt.Qpm,this.faFrown=Rt.wB1,this.faAngleDoubleDown=E.WxX,this.faAngleDoubleUp=E.$sC,this.faChartPie=E.W1p,this.faBolt=E.zm_,this.faServer=E.D6w,this.faNetworkWired=E.eGi,this.userPersonaEnum=c.HW,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.information={},this.channels=[],this.onchainBalance={},this.balances={onchain:-1,lightning:-1,total:0},this.channelsStatus={},this.allChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="390px",this.merchantCardHeight="62px",this.sortField="Balance Score",this.errorMessages=["","","",""],this.apiCallStatusNodeInfo={status:c.wn.COMPLETED},this.apiCallStatusFees={status:c.wn.COMPLETED},this.apiCallStatusOCBal={status:c.wn.COMPLETED},this.apiCallStatusAllChannels={status:c.wn.COMPLETED},this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===c.f7.XS?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}]):this.screenSize===c.f7.SM||this.screenSize===c.f7.MD?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}]):(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}])}ngOnInit(){this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n}),this.store.select(b.b_).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=n.apiCallStatus,this.apiCallStatusNodeInfo.status===c.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.information=n.information}),this.store.select(b.oR).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.errorMessages[1]="",this.apiCallStatusFees=n.apiCallStatus,this.apiCallStatusFees.status===c.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=n.fees}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[3]),(0,pt.E)(this.store.select(b.DW))).subscribe(([n,a])=>{this.errorMessages[2]="",this.errorMessages[3]="",this.apiCallStatusAllChannels=n.apiCallStatus,this.apiCallStatusOCBal=a.apiCallStatus,this.apiCallStatusAllChannels.status===c.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusAllChannels.message?JSON.stringify(this.apiCallStatusAllChannels.message):this.apiCallStatusAllChannels.message?this.apiCallStatusAllChannels.message:""),this.apiCallStatusOCBal.status===c.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusOCBal.message?JSON.stringify(this.apiCallStatusOCBal.message):this.apiCallStatusOCBal.message?this.apiCallStatusOCBal.message:""),this.channels=n.activeChannels,this.onchainBalance=a.onchainBalance,this.balances.onchain=this.onchainBalance.total||0,this.balances.lightning=n.lightningBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const o=n.lightningBalance.localBalance?+n.lightningBalance.localBalance:0,l=n.lightningBalance.remoteBalance?+n.lightningBalance.remoteBalance:0;this.channelBalances={localBalance:o,remoteBalance:l,balancedness:+(1-Math.abs((o-l)/(o+l))).toFixed(3)},this.channelsStatus=n.channelsStatus,this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.allChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels,"balancedness"))),this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels?.filter(u=>(u.toRemote||0)>0),"toRemote"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels?.filter(u=>(u.toLocal||0)>0),"toLocal"))),this.channels.forEach(u=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil(u.toRemote||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor(u.toLocal||0)}),this.logger.info(n)})}onNavigateTo(n){this.router.navigateByUrl("/ecl/"+n)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.channels.sort((n,a)=>{const o=+(n.toLocal||0)+ +(n.toRemote||0),l=+(a.toLocal||0)+ +(a.toRemote||0);return o>l?-1:o{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU($.h),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-home"]],standalone:!1,decls:3,vars:2,consts:[["merchantDashboard",""],["menuOperator","matMenu"],["menuMerchant","matMenu"],["menuTransactions","matMenu"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100","direction","In",3,"totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100","direction","Out",3,"totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100","direction","In",3,"totalLiquidity","allChannels","errorMessage"],["fxFlex","100","direction","Out",3,"totalLiquidity","allChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],["calledFrom","home",1,"h-100"],["label","Pay"],["calledFrom","home"],[1,"underline"]],template:function(a,o){if(1&a&&t.DNE(0,ya,7,4,"div",4)(1,ja,6,4,"ng-template",null,0,t.C5r),2&a){const l=t.sdS(2);t.Y8G("ngIf",(null==o.selNode?null:o.selNode.settings.userPersona)===o.userPersonaEnum.OPERATOR)("ngIfElse",l)}},dependencies:[d.YU,d.Sq,d.bT,d.ux,d.e1,d.fG,D.aY,Zt.iY,x.RN,x.m2,x.MM,x.dh,kt.B_,kt.NS,ut.An,dt.kk,dt.fb,dt.Cp,H.HM,_.DJ,_.sA,_.UI,v.PW,P.mq,P.T8,ee,ae,le,me,Ce,je,Tt,wt],encapsulation:2}))}return i(),s})();const Pa=["form"];function Ga(i,s){if(1&i&&(t.j41(0,"div",30),t.nrm(1,"fa-icon",31),t.j41(2,"span",32)(3,"div"),t.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),t.k0s(),t.j41(5,"span",33)(6,"span"),t.EFF(7),t.k0s(),t.j41(8,"span"),t.EFF(9),t.k0s(),t.j41(10,"span"),t.EFF(11),t.k0s(),t.j41(12,"span"),t.EFF(13),t.k0s(),t.j41(14,"span"),t.EFF(15),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faInfoCircle),t.R7$(6),t.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),t.R7$(2),t.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),t.R7$(2),t.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),t.R7$(2),t.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),t.R7$(2),t.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function Aa(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Bitcoin address is required."),t.k0s())}function Na(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.JRh(e.amountError)}}function Ba(i,s){if(1&i&&(t.j41(0,"mat-option",34),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(e)}}function Ma(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Target Confirmation Blocks is required."),t.k0s())}function $a(i,s){if(1&i&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.sendFundError)}}function Va(i,s){if(1&i&&(t.j41(0,"div",35),t.nrm(1,"fa-icon",31),t.DNE(2,$a,2,1,"span",15),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.sendFundError)}}let Dt=(()=>{var i;class s{constructor(n,a,o,l,m,u,T){this.dialogRef=n,this.logger=a,this.dataService=o,this.store=l,this.commonService=m,this.decimalPipe=u,this.actions=T,this.faExclamationTriangle=E.zpE,this.faInfoCircle=E.iW_,this.addressTypes=[],this.selectedAddress=c.Ld[1],this.blockchainBalance={},this.information={},this.newAddress="",this.transaction={},this.sendFundError="",this.fiatConversion=!1,this.amountUnits=c.A0,this.selAmountUnit=c.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=c.k,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.amountError="Amount is Required.",this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[0])).subscribe({next:n=>{this.recommendedFee=n},error:n=>{this.logger.error(n)}}),this.store.select(J._c).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.fiatConversion=n.settings.fiatConversion,this.amountUnits=n.settings.currencyUnits,this.logger.info(n)}),this.actions.pipe((0,g.Q)(this.unSubs[2]),(0,X.p)(n=>n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL||n.type===c.Uu.SEND_ONCHAIN_FUNDS_RES_ECL)).subscribe(n=>{n.type===c.Uu.SEND_ONCHAIN_FUNDS_RES_ECL&&(this.store.dispatch((0,k.UI)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&n.payload.status===c.wn.ERROR&&"SendOnchainFunds"===n.payload.action&&(this.sendFundError=n.payload.message)})}onSendFunds(){if(this.invalidValues)return!0;this.sendFundError="",this.transaction.amount&&this.selAmountUnit!==c.BQ.SATS?this.commonService.convertCurrency(this.transaction.amount,this.selAmountUnit===this.amountUnits[2]?c.BQ.OTHER:this.selAmountUnit,c.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,g.Q)(this.unSubs[3])).subscribe({next:n=>{this.transaction.amount=parseInt(n[c.BQ.SATS]),this.selAmountUnit=c.BQ.SATS,this.store.dispatch((0,j.Lz)({payload:this.transaction}))},error:n=>{this.selAmountUnit=c.BQ.SATS,this.amountError="Conversion Error: "+n}}):this.store.dispatch((0,j.Lz)({payload:this.transaction}))}get invalidValues(){return!this.transaction.address||""===this.transaction.address||!this.transaction.amount||this.transaction.amount<=0||!this.transaction.blocks||this.transaction.blocks<=0}resetData(){this.sendFundError="",this.transaction={}}onAmountUnitChange(n){const a=this,o=this.selAmountUnit===this.amountUnits[2]?c.BQ.OTHER:this.selAmountUnit;let l=n.value===this.amountUnits[2]?c.BQ.OTHER:n.value;this.transaction.amount&&this.selAmountUnit!==n.value&&this.commonService.convertCurrency(this.transaction.amount,o,l,this.amountUnits[2],this.fiatConversion).pipe((0,g.Q)(this.unSubs[4])).subscribe({next:m=>{this.selAmountUnit=n.value,a.transaction.amount=+a.decimalPipe.transform(m[l],a.currencyUnitFormats[l]).replace(/,/g,"")},error:m=>{this.amountError="Conversion Error: "+m,this.selAmountUnit=o,l=o}})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(A.gP),t.rXU(nt.u),t.rXU(I.il),t.rXU($.h),t.rXU(d.QX),t.rXU(K.En))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-on-chain-send-modal"]],viewQuery:function(a,o){if(1&a&&t.GBs(Pa,7),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first)}},standalone:!1,decls:43,vars:16,consts:[["form","ngForm"],["addrs","ngModel"],["amnt","ngModel"],["blocks","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],["fxLayout","column",1,"padding-gap-x-large"],["fxFlex","100","class","alert alert-info mb-2",4,"ngIf"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"overflow-x-hidden",3,"submit","reset"],["fxLayout","column","fxFlex","55"],["matInput","","autoFocus","","tabindex","1","name","addr","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","name","amt","type","number","tabindex","2","required","",3,"ngModelChange","step","min","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex","10","fxLayoutAlign","start end"],["tabindex","3","required","","name","amountUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","60","fxLayoutAlign","space-between stretch","fxLayout","row wrap"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start center"],["matInput","","type","number","name","blocks","tabindex","8","required","true",3,"ngModelChange","step","min","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],["fxFlex","100",1,"alert","alert-info","mb-2"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),t.EFF(5,"Send Payment"),t.k0s()(),t.j41(6,"button",9),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",10),t.DNE(9,Ga,16,6,"div",11),t.j41(10,"form",12,0),t.bIt("submit",function(){return r.eBV(l),r.Njj(o.onSendFunds())})("reset",function(){return r.eBV(l),r.Njj(o.resetData())}),t.j41(12,"mat-form-field",13)(13,"mat-label"),t.EFF(14,"Bitcoin Address"),t.k0s(),t.j41(15,"input",14,1),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.transaction.address,u)||(o.transaction.address=u),r.Njj(u)}),t.k0s(),t.DNE(17,Aa,2,0,"mat-error",15),t.k0s(),t.j41(18,"mat-form-field",16)(19,"mat-label"),t.EFF(20,"Amount"),t.k0s(),t.j41(21,"input",17,2),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.transaction.amount,u)||(o.transaction.amount=u),r.Njj(u)}),t.k0s(),t.j41(23,"span",18),t.EFF(24),t.k0s(),t.DNE(25,Na,2,1,"mat-error",15),t.k0s(),t.j41(26,"mat-form-field",19)(27,"mat-select",20),t.bIt("selectionChange",function(u){return r.eBV(l),r.Njj(o.onAmountUnitChange(u))}),t.DNE(28,Ba,2,2,"mat-option",21),t.k0s()(),t.j41(29,"div",22)(30,"mat-form-field",23)(31,"mat-label"),t.EFF(32,"Target Confirmation Blocks"),t.k0s(),t.j41(33,"input",24,3),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.transaction.blocks,u)||(o.transaction.blocks=u),r.Njj(u)}),t.k0s(),t.DNE(35,Ma,2,0,"mat-error",15),t.k0s()(),t.nrm(36,"div",25),t.DNE(37,Va,3,2,"div",26),t.j41(38,"div",27)(39,"button",28),t.EFF(40,"Clear Fields"),t.k0s(),t.j41(41,"button",29),t.EFF(42,"Send Funds"),t.k0s()()()()()()}2&a&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(3),t.Y8G("ngIf",o.recommendedFee.minimumFee),t.R7$(6),t.R50("ngModel",o.transaction.address),t.R7$(2),t.Y8G("ngIf",!o.transaction.address),t.R7$(4),t.Y8G("step",100)("min",0),t.R50("ngModel",o.transaction.amount),t.R7$(3),t.SpI("",o.selAmountUnit," "),t.R7$(),t.Y8G("ngIf",!o.transaction.amount),t.R7$(2),t.Y8G("value",o.selAmountUnit),t.R7$(),t.Y8G("ngForOf",o.amountUnits),t.R7$(5),t.Y8G("step",1)("min",0),t.R50("ngModel",o.transaction.blocks),t.R7$(2),t.Y8G("ngIf",!o.transaction.blocks),t.R7$(2),t.Y8G("ngIf",""!==o.sendFundError))},dependencies:[d.Sq,d.bT,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.VZ,f.vS,f.cV,D.aY,V.tx,N.$z,x.m2,x.MM,Y.fg,y.rl,y.nJ,y.TL,y.yw,_.DJ,_.sA,_.UI,R.VO,z.wT,et.N,it.V],encapsulation:2}))}return i(),s})();var gt=C(25837);const Oa=()=>["all"],Ha=i=>({"error-border":i}),Ya=()=>["no_transaction"],Ct=i=>({width:i}),Xa=i=>({"display-none":i});function Ua(i,s){if(1&i&&(t.j41(0,"mat-option",34),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function za(i,s){1&i&&t.nrm(0,"mat-progress-bar",35)}function Ja(i,s){1&i&&(t.j41(0,"th",36),t.EFF(1,"Date/Time"),t.k0s())}function qa(i,s){if(1&i&&(t.j41(0,"td",37),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function Qa(i,s){1&i&&(t.j41(0,"th",36),t.EFF(1,"Address"),t.k0s())}function Za(i,s){if(1&i&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ct,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.address)}}function Wa(i,s){1&i&&(t.j41(0,"th",36),t.EFF(1,"Blockhash"),t.k0s())}function Ka(i,s){if(1&i&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ct,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.blockHash)}}function to(i,s){1&i&&(t.j41(0,"th",36),t.EFF(1,"Transaction ID"),t.k0s())}function eo(i,s){if(1&i&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ct,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.txid)}}function no(i,s){1&i&&(t.j41(0,"th",40),t.EFF(1,"Amount (Sats)"),t.k0s())}function io(i,s){if(1&i&&(t.j41(0,"span",43),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.amount))}}function ao(i,s){if(1&i&&(t.j41(0,"span",44),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.SpI("(",t.bMT(2,1,-1*(null==e?null:e.amount)),")")}}function oo(i,s){if(1&i&&(t.j41(0,"td",37),t.DNE(1,io,3,3,"span",41)(2,ao,3,3,"span",42),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf",(null==e?null:e.amount)>0||0===(null==e?null:e.amount)),t.R7$(),t.Y8G("ngIf",(null==e?null:e.amount)<0)}}function so(i,s){1&i&&(t.j41(0,"th",40),t.EFF(1,"Fees (Sats)"),t.k0s())}function lo(i,s){if(1&i&&(t.j41(0,"td",37)(1,"span",43),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.fees))}}function ro(i,s){1&i&&(t.j41(0,"th",40),t.EFF(1,"Confirmations"),t.k0s())}function co(i,s){if(1&i&&(t.j41(0,"td",37)(1,"span",43),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.bMT(3,1,null==e?null:e.confirmations)," ")}}function mo(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",48),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function po(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",49)(1,"button",50),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG();return r.Njj(l.onTransactionClick(o,a))}),t.EFF(2,"View Info"),t.k0s()()}}function uo(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No transaction available."),t.k0s())}function ho(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting transactions..."),t.k0s())}function fo(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function _o(i,s){if(1&i&&(t.j41(0,"td",51),t.DNE(1,uo,2,0,"p",52)(2,ho,2,0,"p",52)(3,fo,2,1,"p",52),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function go(i,s){if(1&i&&t.nrm(0,"tr",53),2&i){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,Xa,(null==e.listTransactions?null:e.listTransactions.data)&&(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)>0))}}function Co(i,s){1&i&&t.nrm(0,"tr",54)}function yo(i,s){1&i&&t.nrm(0,"tr",55)}let bo=(()=>{var i;class s{constructor(n,a,o,l,m){this.logger=n,this.commonService=a,this.store=o,this.datePipe=l,this.camelCaseWithSpaces=m,this.faHistory=E.Int,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"transaction",recordsPerPage:c.md,sortBy:"timestamp",sortOrder:c.oi.DESCENDING},this.displayedColumns=[],this.listTransactions=new p.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.apiCallStatus.status===c.wn.COMPLETED&&(this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.flgInit||(this.flgInit=!0,this.store.dispatch((0,j.mh)({payload:{count:1e3,skip:0}}))),this.logger.info(this.displayedColumns))}),this.store.select(b.gN).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),n.transactions&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadTransactionsTable(n.transactions),this.logger.info(n)})}applyFilter(){this.listTransactions.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.listTransactions.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=(n.timestamp?this.datePipe.transform(new Date(1e3*n.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(n).toLowerCase();break;case"timestamp":o=this.datePipe.transform(new Date(1e3*(n[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}onTransactionClick(n,a){this.store.dispatch((0,k.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"blockHash",value:n.blockHash||n.blockId_opt,title:"Block Hash",width:100,explorerLink:"block"}],[{key:"txid",value:n.txid,title:"Transaction ID",width:100,explorerLink:"tx"}],[{key:"timestamp",value:n.timestamp,title:"Date/Time",width:50,type:c.UN.DATE_TIME},{key:"confirmations",value:n.confirmations,title:"Number of Confirmations",width:50,type:c.UN.NUMBER}],[{key:"fees",value:n.fees,title:"Fees (Sats)",width:50,type:c.UN.NUMBER},{key:"amount",value:n.amount,title:"Amount (Sats)",width:50,type:c.UN.NUMBER}],[{key:"address",value:n.address,title:"Address",width:100,type:c.UN.STRING}]]}}}))}loadTransactionsTable(n){this.listTransactions=new p.I6([...n]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.listTransactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listTransactions)}onPageChange(n){this.store.dispatch((0,j.mh)({payload:{count:this.pageSize,skip:n.pageIndex*n.pageSize}}))}onDownloadCSV(){this.listTransactions.data&&this.listTransactions.data.length>0&&this.commonService.downloadFile(this.listTransactions.data,"Transactions")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il),t.rXU(d.vh),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-on-chain-transaction-history"]],viewQuery:function(a,o){if(1&a&&(t.GBs(S.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Transactions")}])],decls:52,vars:19,consts:[["table",""],["fxLayout","row wrap","fxLayoutAlign","start start","fxLayout.gt-sm","column","fxFlex","100","fxLayoutAlign.gt-sm","start stretch"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","blockHash"],["matColumnDef","txid"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","fees"],["matColumnDef","confirmations"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"div",3),t.nrm(3,"fa-icon",4),t.j41(4,"span",5),t.EFF(5,"Transaction History"),t.k0s()(),t.j41(6,"div",6)(7,"mat-form-field",7)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",8),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilterBy,u)||(o.selFilterBy=u),r.Njj(u)}),t.bIt("selectionChange",function(){return r.eBV(l),o.selFilter="",r.Njj(o.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,Ua,2,2,"mat-option",9),t.k0s()()(),t.j41(13,"mat-form-field",7)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",10),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilter,u)||(o.selFilter=u),r.Njj(u)}),t.bIt("input",function(){return r.eBV(l),r.Njj(o.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(o.applyFilter())}),t.k0s()()()(),t.j41(17,"div",11)(18,"div",12),t.DNE(19,za,1,0,"mat-progress-bar",13),t.j41(20,"table",14,0),t.qex(22,15),t.DNE(23,Ja,2,0,"th",16)(24,qa,3,4,"td",17),t.bVm(),t.qex(25,18),t.DNE(26,Qa,2,0,"th",16)(27,Za,4,4,"td",17),t.bVm(),t.qex(28,19),t.DNE(29,Wa,2,0,"th",16)(30,Ka,4,4,"td",17),t.bVm(),t.qex(31,20),t.DNE(32,to,2,0,"th",16)(33,eo,4,4,"td",17),t.bVm(),t.qex(34,21),t.DNE(35,no,2,0,"th",22)(36,oo,3,2,"td",17),t.bVm(),t.qex(37,23),t.DNE(38,so,2,0,"th",22)(39,lo,4,3,"td",17),t.bVm(),t.qex(40,24),t.DNE(41,ro,2,0,"th",22)(42,co,4,3,"td",17),t.bVm(),t.qex(43,25),t.DNE(44,mo,6,0,"th",26)(45,po,3,0,"td",27),t.bVm(),t.qex(46,28),t.DNE(47,_o,4,3,"td",29),t.bVm(),t.DNE(48,go,1,3,"tr",30)(49,Co,1,0,"tr",31)(50,yo,1,0,"tr",32),t.k0s(),t.nrm(51,"mat-paginator",33),t.k0s()()()}2&a&&(t.R7$(3),t.Y8G("icon",o.faHistory),t.R7$(7),t.R50("ngModel",o.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,Oa).concat(o.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",o.selFilter),t.R7$(3),t.Y8G("ngIf",o.apiCallStatus.status===o.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",o.tableSetting.sortBy)("matSortDirection",o.tableSetting.sortOrder)("dataSource",o.listTransactions)("ngClass",t.eq3(16,Ha,""!==o.errorMessage)),t.R7$(28),t.Y8G("matFooterRowDef",t.lJ4(18,Ya)),t.R7$(),t.Y8G("matHeaderRowDef",o.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",o.displayedColumns),t.R7$(),t.Y8G("pageSize",o.pageSize)("pageSizeOptions",o.pageSizeOptions)("hidePageSize",o.screenSize!==o.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.me,f.BC,f.vS,D.aY,N.$z,Y.fg,y.rl,y.nJ,H.HM,_.DJ,_.sA,_.UI,v.PW,v.eI,R.VO,R.$2,z.wT,S.B4,S.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,w.iy,B.ZF,B.Ld,d.QX,d.vh],encapsulation:2}))}return i(),s})();function Fo(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG();t.Y8G("routerLink",t.mNQ(e.link))("active",n.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Eo=(()=>{var i;class s{constructor(n,a){this.store=n,this.router=a,this.faExchangeAlt=E._qq,this.faChartPie=E.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){const n=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=n?n.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(a=>a instanceof L.gx)).subscribe({next:a=>{const o=this.links.find(l=>a.urlAfterRedirects.includes(l.link));this.activeLink=o?o.link:this.links[0].link}}),this.store.select(J._c).pipe((0,g.Q)(this.unSubs[1])).subscribe(a=>{this.selNode=a}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[2])).subscribe(a=>{this.balances=[{title:"Total Balance",dataValue:a.onchainBalance.total||0},{title:"Confirmed",dataValue:a.onchainBalance.confirmed||0},{title:"Unconfirmed",dataValue:a.onchainBalance.unconfirmed||0}]})}openSendFundsModal(){this.store.dispatch((0,k.xO)({payload:{data:{component:Dt}}}))}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(I.il),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-on-chain"]],standalone:!1,decls:23,vars:5,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(a,o){if(1&a&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"On-chain Balance"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),t.nrm(7,"rtl-currency-unit-converter",6),t.k0s()()(),t.j41(8,"div",1),t.nrm(9,"fa-icon",2),t.j41(10,"span",3),t.EFF(11,"On-chain Transactions"),t.k0s()(),t.j41(12,"div",7)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",8),t.DNE(16,Fo,2,4,"div",9),t.k0s(),t.nrm(17,"mat-tab-nav-panel",null,0),t.j41(19,"div",10),t.nrm(20,"router-outlet"),t.k0s(),t.j41(21,"div",10),t.nrm(22,"rtl-ecl-on-chain-transaction-history",11),t.k0s()()()()),2&a){const l=t.sdS(18);t.R7$(),t.Y8G("icon",o.faChartPie),t.R7$(6),t.Y8G("values",o.balances),t.R7$(2),t.Y8G("icon",o.faExchangeAlt),t.R7$(6),t.Y8G("tabPanel",l),t.R7$(),t.Y8G("ngForOf",o.links)}},dependencies:[d.Sq,D.aY,x.RN,x.m2,_.DJ,_.sA,_.UI,P.Bu,P.hQ,P.Ql,gt.f,L.n3,W.Wk,bo],encapsulation:2}))}return i(),s})();var Pt=C(1975);function xo(i,s){if(1&i&&(t.j41(0,"span",10),t.EFF(1,"Channels"),t.k0s()),2&i){const e=t.XpG();t.Y8G("matBadge",t.mNQ(e.activeChannels))}}function Lo(i,s){if(1&i&&(t.j41(0,"span",10),t.EFF(1,"Peers"),t.k0s()),2&i){const e=t.XpG();t.Y8G("matBadge",t.mNQ(e.activePeers))}}let So=(()=>{var i;class s{constructor(n,a){this.store=n,this.router=a,this.activePeers=0,this.activeChannels=0,this.faUsers=E.gdJ,this.faChartPie=E.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.activeLink=this.links.findIndex(n=>n.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(n=>n instanceof L.gx)).subscribe({next:n=>{this.activeLink=this.links.findIndex(a=>a.link===n.urlAfterRedirects.substring(n.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.activePeers=n.peers&&n.peers.length?n.peers.length:0}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.activeChannels=n.channelsStatus&&n.channelsStatus.active&&n.channelsStatus.active.channels?n.channelsStatus.active.channels:0}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.balances=[{title:"Total Balance",dataValue:n.onchainBalance.total||0},{title:"Confirmed",dataValue:n.onchainBalance.confirmed||0},{title:"Unconfirmed",dataValue:n.onchainBalance.unconfirmed||0}]})}onSelectedTabChange(n){this.router.navigateByUrl("/ecl/connections/"+this.links[n.index].link)}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(I.il),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-connections"]],standalone:!1,decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(a,o){1&a&&(t.j41(0,"div",0),t.nrm(1,"fa-icon",1),t.j41(2,"span",2),t.EFF(3,"On-chain Balance"),t.k0s()(),t.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),t.nrm(7,"rtl-currency-unit-converter",5),t.k0s()()(),t.j41(8,"div",0),t.nrm(9,"fa-icon",1),t.j41(10,"span",2),t.EFF(11,"Connections"),t.k0s()(),t.j41(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),t.mxI("selectedIndexChange",function(m){return t.DH7(o.activeLink,m)||(o.activeLink=m),m}),t.bIt("selectedTabChange",function(m){return o.onSelectedTabChange(m)}),t.j41(16,"mat-tab"),t.DNE(17,xo,2,2,"ng-template",8),t.k0s(),t.j41(18,"mat-tab"),t.DNE(19,Lo,2,2,"ng-template",8),t.k0s()(),t.j41(20,"div",9),t.nrm(21,"router-outlet"),t.k0s()()()()),2&a&&(t.R7$(),t.Y8G("icon",o.faChartPie),t.R7$(6),t.Y8G("values",o.balances),t.R7$(2),t.Y8G("icon",o.faUsers),t.R7$(6),t.R50("selectedIndex",o.activeLink))},dependencies:[D.aY,x.RN,x.m2,_.DJ,_.sA,_.UI,Pt.k,P.ES,P.mq,P.T8,gt.f,L.n3],encapsulation:2}))}return i(),s})();function vo(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG();t.Y8G("routerLink",t.mNQ(e.link))("active",n.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Ro=(()=>{var i;class s{constructor(n,a,o){this.logger=n,this.store=a,this.router=o,this.faExchangeAlt=E._qq,this.faChartPie=E.W1p,this.currencyUnits=[],this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){const n=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=n?n.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(a=>a instanceof L.gx)).subscribe({next:a=>{const o=this.links.find(l=>a.urlAfterRedirects.includes(l.link));this.activeLink=o?o.link:this.links[0].link}}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1]),(0,pt.E)(this.store.select(J._c))).subscribe(([a,o])=>{this.currencyUnits=o?.settings.currencyUnits||[],this.balances=o&&o.settings.userPersona===c.HW.OPERATOR?[{title:"Local Capacity",dataValue:a.lightningBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:a.lightningBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:a.lightningBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:a.lightningBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(a)})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-transactions"]],standalone:!1,decls:21,vars:5,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(a,o){if(1&a&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Lightning Balance"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),t.nrm(7,"rtl-currency-unit-converter",6),t.k0s()()(),t.j41(8,"div",7),t.nrm(9,"fa-icon",2),t.j41(10,"span",3),t.EFF(11,"Lightning Transactions"),t.k0s()(),t.j41(12,"div",8)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",9),t.DNE(16,vo,2,4,"div",10),t.k0s(),t.nrm(17,"mat-tab-nav-panel",null,0),t.j41(19,"div",11),t.nrm(20,"router-outlet"),t.k0s()()()()),2&a){const l=t.sdS(18);t.R7$(),t.Y8G("icon",o.faChartPie),t.R7$(6),t.Y8G("values",o.balances),t.R7$(2),t.Y8G("icon",o.faExchangeAlt),t.R7$(6),t.Y8G("tabPanel",l),t.R7$(),t.Y8G("ngForOf",o.links)}},dependencies:[d.Sq,D.aY,x.RN,x.m2,_.DJ,_.sA,_.UI,P.Bu,P.hQ,P.Ql,gt.f,L.n3,W.Wk],encapsulation:2}))}return i(),s})();function ko(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG();t.Y8G("routerLink",t.mNQ(e.link))("active",n.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Io=(()=>{var i;class s{constructor(n){this.router=n,this.faMapSigns=E.knH,this.events=[],this.flgLoading=[!0],this.errorMessage="",this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"peers",name:"Routing Peers"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B]}ngOnInit(){const n=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=n?n.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(a=>a instanceof L.gx)).subscribe({next:a=>{const o=this.links.find(l=>a.urlAfterRedirects.includes(l.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-routing"]],standalone:!1,decls:15,vars:3,consts:[["tabPanel",""],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(a,o){if(1&a&&(t.j41(0,"div",1)(1,"div",2),t.nrm(2,"fa-icon",3),t.j41(3,"span",4),t.EFF(4,"Routing"),t.k0s()(),t.j41(5,"div",5)(6,"mat-card",6)(7,"mat-card-content",7)(8,"div",8)(9,"nav",9),t.DNE(10,ko,2,4,"div",10),t.k0s(),t.nrm(11,"mat-tab-nav-panel",null,0),t.k0s(),t.j41(13,"div",11),t.nrm(14,"router-outlet"),t.k0s()()()()()),2&a){const l=t.sdS(12);t.R7$(2),t.Y8G("icon",o.faMapSigns),t.R7$(7),t.Y8G("tabPanel",l),t.R7$(),t.Y8G("ngForOf",o.links)}},dependencies:[d.Sq,D.aY,x.RN,x.m2,_.DJ,_.sA,_.UI,P.Bu,P.hQ,P.Ql,L.n3,W.Wk],encapsulation:2}))}return i(),s})();var rt=C(5951),Gt=C(30450),at=C(36013);const To=["peersForm"],wo=["stepper"];function jo(i,s){if(1&i&&t.EFF(0),2&i){const e=t.XpG();t.JRh(e.peerFormLabel)}}function Do(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Address is required."),t.k0s())}function Po(i,s){if(1&i&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(2),t.JRh(e.peerConnectionError)}}function Go(i,s){if(1&i&&t.EFF(0),2&i){const e=t.XpG();t.JRh(e.channelFormLabel)}}function Ao(i,s){if(1&i&&(t.j41(0,"div",36),t.nrm(1,"fa-icon",35),t.j41(2,"span",13)(3,"div"),t.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),t.k0s(),t.j41(5,"span",37)(6,"span"),t.EFF(7),t.k0s(),t.j41(8,"span"),t.EFF(9),t.k0s(),t.j41(10,"span"),t.EFF(11),t.k0s(),t.j41(12,"span"),t.EFF(13),t.k0s(),t.j41(14,"span"),t.EFF(15),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faInfoCircle),t.R7$(6),t.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),t.R7$(2),t.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),t.R7$(2),t.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),t.R7$(2),t.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),t.R7$(2),t.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function No(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function Bo(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount must be a positive number."),t.k0s())}function Mo(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function $o(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function Vo(i,s){if(1&i&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(2),t.JRh(e.channelConnectionError)}}let At=(()=>{var i;class s{constructor(n,a,o,l,m,u,T){this.dialogRef=n,this.data=a,this.store=o,this.formBuilder=l,this.actions=m,this.logger=u,this.dataService=T,this.faExclamationTriangle=E.zpE,this.faInfoCircle=E.iW_,this.peerAddress="",this.totalBalance=0,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.data.message?(this.totalBalance=this.data.message.balance,this.peerAddress=this.data.message.peer&&this.data.message.peer.nodeId&&this.data.message.peer.address?this.data.message.peer.nodeId+"@"+this.data.message.peer.address:this.data.message.peer&&this.data.message.peer.nodeId&&!this.data.message.peer.address?this.data.message.peer.nodeId:""):(this.totalBalance=0,this.peerAddress=""),this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[f.k0.required]],peerAddress:[this.peerAddress,[f.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[f.k0.required,f.k0.min(1),f.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],feeRate:[null],hiddenAmount:["",[f.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n,this.channelFormGroup.controls.isPrivate.setValue(!!n?.settings.unannouncedChannels)}),this.actions.pipe((0,g.Q)(this.unSubs[1]),(0,X.p)(n=>n.type===c.Uu.NEWLY_ADDED_PEER_ECL||n.type===c.Uu.FETCH_CHANNELS_ECL||n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(n=>{n.type===c.Uu.NEWLY_ADDED_PEER_ECL&&(this.logger.info(n.payload),this.flgEditable=!1,this.newlyAddedPeer=n.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),n.type===c.Uu.FETCH_CHANNELS_ECL&&this.dialogRef.close(),n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&n.payload.status===c.wn.ERROR&&("SaveNewPeer"===n.payload.action?this.peerConnectionError=n.payload.message:"SaveNewChannel"===n.payload.action&&(this.channelConnectionError=n.payload.message))}),this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[2])).subscribe({next:n=>{this.recommendedFee=n},error:n=>{this.logger.error(n)}})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,j.sq)({payload:{id:this.peerFormGroup.controls.peerAddress.value}}))}onOpenChannel(){return this.channelFormGroup.controls.feeRate.value&&this.recommendedFee.minimumFee>this.channelFormGroup.controls.feeRate.value?(this.channelFormGroup.controls.feeRate.setErrors({minimum:!0}),!0):!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||(this.channelConnectionError="",void this.store.dispatch((0,j.vL)({payload:{nodeId:this.newlyAddedPeer?.nodeId,amount:this.channelFormGroup.controls.fundingAmount.value,private:this.channelFormGroup.controls.isPrivate.value,feeRate:this.channelFormGroup.controls.feeRate.value}})))}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(n){switch(n.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.nodeId):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.nodeId):"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}n.selectedIndex{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(V.Vh),t.rXU(I.il),t.rXU(f.ze),t.rXU(K.En),t.rXU(A.gP),t.rXU(nt.u))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-connect-peer"]],viewQuery:function(a,o){if(1&a&&(t.GBs(To,5),t.GBs(wo,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first),t.mGM(l=t.lsd())&&(o.stepper=l.first)}},standalone:!1,decls:59,vars:25,consts:[["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","35","fxLayoutAlign","start end"],["matInput","","autoFocus","","formControlName","fundingAmount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxLayout","column","fxFlex","40"],["matInput","","formControlName","feeRate","type","number","name","feeRate","tabindex","7",3,"step","min"],["fxFlex","20","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Connect to a new peer"),t.k0s()(),t.j41(6,"button",6),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),t.bIt("selectionChange",function(u){return r.eBV(l),r.Njj(o.stepSelectionChanged(u))}),t.j41(12,"mat-step",10)(13,"form",11),t.DNE(14,jo,1,1,"ng-template",12),t.j41(15,"mat-form-field",13)(16,"mat-label"),t.EFF(17,"Lightning Address (pubkey OR pubkey@ip:port)"),t.k0s(),t.nrm(18,"input",14),t.DNE(19,Do,2,0,"mat-error",15),t.k0s(),t.DNE(20,Po,4,2,"div",16),t.j41(21,"div",17)(22,"button",18),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onConnectPeer())}),t.EFF(23),t.k0s()()()(),t.j41(24,"mat-step",10)(25,"form",19),t.DNE(26,Go,1,1,"ng-template",20),t.j41(27,"div",21),t.DNE(28,Ao,16,6,"div",22),t.j41(29,"div",23)(30,"mat-form-field",24)(31,"mat-label"),t.EFF(32,"Amount"),t.k0s(),t.nrm(33,"input",25),t.j41(34,"mat-hint"),t.EFF(35),t.nI1(36,"number"),t.k0s(),t.j41(37,"span",26),t.EFF(38," Sats "),t.k0s(),t.DNE(39,No,2,0,"mat-error",15)(40,Bo,2,0,"mat-error",15)(41,Mo,2,1,"mat-error",15),t.k0s(),t.j41(42,"mat-form-field",27)(43,"mat-label"),t.EFF(44,"Fee (Sats/vByte)"),t.k0s(),t.nrm(45,"input",28),t.j41(46,"mat-hint"),t.EFF(47),t.k0s(),t.DNE(48,$o,2,1,"mat-error",15),t.k0s(),t.j41(49,"div",29)(50,"mat-slide-toggle",30),t.EFF(51,"Private Channel"),t.k0s()()()(),t.DNE(52,Vo,4,2,"div",16),t.j41(53,"div",17)(54,"button",31),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onOpenChannel())}),t.EFF(55),t.k0s()()()()(),t.j41(56,"div",32)(57,"button",33),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onClose())}),t.EFF(58),t.k0s()()()()()()}2&a&&(t.R7$(10),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",o.peerFormGroup)("editable",o.flgEditable),t.R7$(),t.Y8G("formGroup",o.peerFormGroup),t.R7$(6),t.Y8G("ngIf",null==o.peerFormGroup.controls.peerAddress.errors?null:o.peerFormGroup.controls.peerAddress.errors.required),t.R7$(),t.Y8G("ngIf",""!==o.peerConnectionError),t.R7$(3),t.JRh(""!==o.peerConnectionError?"Retry":"Add Peer"),t.R7$(),t.Y8G("stepControl",o.channelFormGroup)("editable",o.flgEditable),t.R7$(),t.Y8G("formGroup",o.channelFormGroup),t.R7$(3),t.Y8G("ngIf",o.recommendedFee.minimumFee),t.R7$(5),t.Y8G("step",1e3),t.R7$(2),t.SpI("Remaining: ",t.bMT(36,23,o.totalBalance-(o.channelFormGroup.controls.fundingAmount.value?o.channelFormGroup.controls.fundingAmount.value:0))),t.R7$(4),t.Y8G("ngIf",null==o.channelFormGroup.controls.fundingAmount.errors?null:o.channelFormGroup.controls.fundingAmount.errors.required),t.R7$(),t.Y8G("ngIf",null==o.channelFormGroup.controls.fundingAmount.errors?null:o.channelFormGroup.controls.fundingAmount.errors.min),t.R7$(),t.Y8G("ngIf",null==o.channelFormGroup.controls.fundingAmount.errors?null:o.channelFormGroup.controls.fundingAmount.errors.max),t.R7$(4),t.Y8G("step",1)("min",o.recommendedFee.minimumFee||0),t.R7$(2),t.SpI("Mempool Min: ",o.recommendedFee.minimumFee," (Sats/vByte)"),t.R7$(),t.Y8G("ngIf",null==o.channelFormGroup.controls.feeRate.errors?null:o.channelFormGroup.controls.feeRate.errors.minimum),t.R7$(4),t.Y8G("ngIf",""!==o.channelConnectionError),t.R7$(3),t.JRh(""!==o.channelConnectionError?"Retry":"Open Channel"),t.R7$(3),t.JRh(null!=o.newlyAddedPeer&&o.newlyAddedPeer.nodeId?"Do It Later":"Close"))},dependencies:[d.bT,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.VZ,f.j4,f.JD,D.aY,N.$z,x.m2,x.MM,Y.fg,y.rl,y.nJ,y.MV,y.TL,y.yw,_.DJ,_.sA,_.UI,Gt.sG,at.V5,at.Ti,at.M6,et.N,it.V,d.QX],encapsulation:2}))}return i(),s})();var Nt=C(95416),Bt=C(29157);const Oo=i=>({"background-color":i});function Ho(i,s){if(1&i&&(t.j41(0,"span",10)(1,"div"),t.EFF(2),t.nI1(3,"titlecase"),t.k0s()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(2),t.Lme("",n.nodeFeaturesEnum[e.key]||e.key,": ",t.bMT(3,2,e.value))}}function Yo(i,s){1&i&&(t.j41(0,"th",24),t.EFF(1,"Address"),t.k0s())}function Xo(i,s){if(1&i&&(t.j41(0,"td",25),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(e)}}function Uo(i,s){1&i&&(t.j41(0,"th",26)(1,"div",27),t.EFF(2,"Actions"),t.k0s()())}function zo(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",28)(1,"div",29)(2,"mat-select",30),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",31),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onConnectNode(a))}),t.EFF(5,"Connect"),t.k0s(),t.j41(6,"mat-option",32),t.bIt("copied",function(a){r.eBV(e);const o=t.XpG(2);return r.Njj(o.onCopyNodeURI(a))}),t.EFF(7,"Copy URI"),t.k0s()()()()}if(2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(6),t.Y8G("payload",(null==n.lookupResult?null:n.lookupResult.nodeId)+"@"+e)}}function Jo(i,s){1&i&&t.nrm(0,"tr",33)}function qo(i,s){1&i&&t.nrm(0,"tr",34)}function Qo(i,s){if(1&i&&(t.j41(0,"div",2),t.nrm(1,"mat-divider",3),t.j41(2,"div",4)(3,"div",5)(4,"h4",6),t.EFF(5,"Alias"),t.k0s(),t.j41(6,"span",7),t.EFF(7),t.j41(8,"span",8),t.EFF(9),t.k0s()()(),t.j41(10,"div",9)(11,"h4",6),t.EFF(12,"Pub Key"),t.k0s(),t.j41(13,"span",10),t.EFF(14),t.k0s()()(),t.nrm(15,"mat-divider",3),t.j41(16,"div",4)(17,"div",5)(18,"h4",6),t.EFF(19,"Date/Time"),t.k0s(),t.j41(20,"span",7),t.EFF(21),t.nI1(22,"date"),t.k0s()(),t.j41(23,"div",9)(24,"h4",6),t.EFF(25,"Features"),t.k0s(),t.DNE(26,Ho,4,4,"span",11),t.nI1(27,"keyvalue"),t.k0s()(),t.nrm(28,"mat-divider",3),t.j41(29,"div",4)(30,"div",12)(31,"h4",6),t.EFF(32,"Signature"),t.k0s(),t.j41(33,"span",7),t.EFF(34),t.k0s()()(),t.nrm(35,"mat-divider",3),t.j41(36,"div",2)(37,"h4",13),t.EFF(38,"Addresses"),t.k0s(),t.j41(39,"div",14)(40,"table",15,0),t.qex(42,16),t.DNE(43,Yo,2,0,"th",17)(44,Xo,2,1,"td",18),t.bVm(),t.qex(45,19),t.DNE(46,Uo,3,0,"th",20)(47,zo,8,1,"td",21),t.bVm(),t.DNE(48,Jo,1,0,"tr",22)(49,qo,1,0,"tr",23),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(null==e.lookupResult?null:e.lookupResult.alias),t.R7$(),t.Y8G("ngStyle",t.eq3(19,Oo,null==e.lookupResult?null:e.lookupResult.rgbColor)),t.R7$(),t.JRh(null!=e.lookupResult&&e.lookupResult.rgbColor?null==e.lookupResult?null:e.lookupResult.rgbColor:""),t.R7$(5),t.JRh(null==e.lookupResult?null:e.lookupResult.nodeId),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(t.i5U(22,14,1e3*(null==e.lookupResult?null:e.lookupResult.timestamp),"dd/MMM/y HH:mm")),t.R7$(5),t.Y8G("ngForOf",t.bMT(27,17,null==e.lookupResult?null:e.lookupResult.features.activated)),t.R7$(2),t.Y8G("inset",!0),t.R7$(6),t.JRh(null==e.lookupResult?null:e.lookupResult.signature),t.R7$(),t.Y8G("inset",!0),t.R7$(5),t.Y8G("dataSource",e.addresses),t.R7$(8),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns)}}let Zo=(()=>{var i;class s{constructor(n,a,o){this.logger=n,this.snackBar=a,this.store=o,this.lookupResult={},this.addresses=new p.I6([]),this.displayedColumns=["address","actions"],this.nodeFeaturesEnum=c.Uq,this.information={},this.availableBalance=0,this.unSubs=[new h.B,new h.B,new h.B]}ngOnInit(){this.addresses=new p.I6(this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(n,a)=>n[a]&&isNaN(n[a])?n[a].toLocaleLowerCase():n[a]?+n[a]:null,this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.information=n}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.availableBalance=n.onchainBalance.total||0})}onConnectNode(n){this.store.dispatch((0,k.xO)({payload:{data:{message:{peer:this.lookupResult.nodeId?{nodeId:this.lookupResult.nodeId,address:n}:null,information:this.information,balance:this.availableBalance},component:At}}}))}onCopyNodeURI(n){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+n)}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(Nt.UG),t.rXU(I.il))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-node-lookup"]],viewQuery:function(a,o){if(1&a&&t.GBs(S.B4,5),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first)}},inputs:{lookupResult:"lookupResult"},standalone:!1,decls:1,vars:1,consts:[["table",""],["fxLayout","column",4,"ngIf"],["fxLayout","column"],[1,"my-1",3,"inset"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"ml-2",3,"ngStyle"],["fxFlex","70"],[1,"foreground-secondary-text","w-100"],["class","foreground-secondary-text w-100",4,"ngFor","ngForOf"],["fxFlex","100"],["fxFlex","100","fxLayoutAlign","start",1,"font-bold-500","mb-1"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto",3,"dataSource"],["matColumnDef","address"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select","btn-action"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"copied","payload"],["mat-header-row",""],["mat-row",""]],template:function(a,o){1&a&&t.DNE(0,Qo,50,21,"div",1),2&a&&t.Y8G("ngIf",o.lookupResult)},dependencies:[d.Sq,d.bT,d.B3,tt.q,_.DJ,_.sA,_.UI,v.eI,R.VO,R.$2,z.wT,S.B4,S.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.KS,p.$R,p.YZ,p.NB,B.Ld,Bt.U,d.PV,d.vh,d.lG],encapsulation:2}))}return i(),s})();const Wo=["form"],Ko=i=>({"mt-1":!0,"mt-2":i});function ts(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder," is required.")}}function es(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("Invalid ",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder,".")}}function ns(i,s){if(1&i&&(t.j41(0,"div"),t.nrm(1,"rtl-ecl-node-lookup",25),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.Y8G("lookupResult",e.nodeLookupValue)}}function is(i,s){if(1&i&&(t.j41(0,"span",23),t.DNE(1,ns,2,1,"div",24),t.k0s()),2&i){const e=t.XpG(2),n=t.sdS(23);t.R7$(),t.Y8G("ngIf",e.nodeLookupValue.nodeId)("ngIfElse",n)}}function as(i,s){1&i&&(t.j41(0,"span"),t.EFF(1,' fxFlex="100"'),t.j41(2,"h3"),t.EFF(3,"Error! Unable to find details!"),t.k0s()())}function os(i,s){if(1&i&&(t.j41(0,"div",17)(1,"div",18)(2,"span",19),t.EFF(3),t.k0s()(),t.j41(4,"div",20),t.DNE(5,is,2,2,"span",21)(6,as,4,0,"span",22),t.k0s()()),2&i){const e=t.XpG();t.R7$(3),t.SpI("",e.lookupFields[e.selectedFieldId].name," Details"),t.R7$(),t.Y8G("ngSwitch",e.selectedFieldId),t.R7$(),t.Y8G("ngSwitchCase",0)}}function ss(i,s){1&i&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find details!"),t.k0s())}let ls=(()=>{var i;class s{constructor(n,a,o,l){this.logger=n,this.commonService=a,this.store=o,this.actions=l,this.lookupKeyCtrl=new f.hs,this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Node ID"},{id:1,name:"Channel",placeholder:"Short Channel ID"}],this.flgLoading=[!0],this.faSearch=E.MjD,this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKeyCtrl.setValue(window.history.state.lookupValue||"")),this.actions.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(n=>n.type===c.Uu.SET_LOOKUP_ECL||n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(n=>{if(n.type===c.Uu.SET_LOOKUP_ECL){switch(this.flgLoading[0]=!0,this.selectedFieldId){case 0:this.nodeLookupValue=n.payload[0]?JSON.parse(JSON.stringify(n.payload[0])):{nodeid:""};break;case 1:this.channelLookupValue=JSON.parse(JSON.stringify(n.payload))||[]}this.flgSetLookupValue=!0,this.logger.info(this.nodeLookupValue),this.logger.info(this.channelLookupValue)}n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&n.payload.status===c.wn.ERROR&&"Lookup"===n.payload.action&&(this.flgLoading[0]="error")}),this.lookupKeyCtrl.valueChanges.pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1})}onLookup(){return this.lookupKeyCtrl.value?this.lookupKeyCtrl.value&&(this.lookupKeyCtrl.value.includes("@")||this.lookupKeyCtrl.value.includes(","))?(this.lookupKeyCtrl.setErrors({invalid:!0}),!0):void(0===(this.selectedFieldId||(this.selectedFieldId=0),this.flgSetLookupValue=!1,this.nodeLookupValue={},this.channelLookupValue=[],this.selectedFieldId)&&this.store.dispatch((0,j.zU)({payload:this.lookupKeyCtrl.value.trim()}))):(this.lookupKeyCtrl.setErrors({required:!0}),!0)}onSelectChange(n){this.resetData(),this.selectedFieldId=n.value}resetData(){this.flgSetLookupValue=!1,this.nodeLookupValue={},this.channelLookupValue=[],this.lookupKeyCtrl.setValue(""),this.lookupKeyCtrl.setErrors(null),this.form.resetForm()}clearLookupValue(){this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il),t.rXU(K.En))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-lookups"]],viewQuery:function(a,o){if(1&a&&t.GBs(Wo,7),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first)}},standalone:!1,decls:24,vars:9,consts:[["form","ngForm"],["key",""],["errorBlock",""],["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField"],["checked","",1,"mr-4",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"formControl"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxFlex","100"],[4,"ngIf","ngIfElse"],[3,"lookupResult"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",3)(1,"div",4)(2,"mat-card-content",5)(3,"form",6,0)(5,"div",7)(6,"mat-radio-group",8)(7,"mat-radio-button",9),t.EFF(8,"Node"),t.k0s()()(),t.j41(9,"mat-form-field",10)(10,"mat-label"),t.EFF(11),t.k0s(),t.nrm(12,"input",11,1),t.DNE(14,ts,2,1,"mat-error",12)(15,es,2,1,"mat-error",12),t.k0s(),t.j41(16,"div",13)(17,"button",14),t.bIt("click",function(){return r.eBV(l),r.Njj(o.resetData())}),t.EFF(18,"Clear"),t.k0s(),t.j41(19,"button",15),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onLookup())}),t.EFF(20,"Lookup"),t.k0s()()(),t.DNE(21,os,7,3,"div",16),t.k0s()()(),t.DNE(22,ss,2,0,"ng-template",null,2,t.C5r)}2&a&&(t.R7$(7),t.Y8G("value",0),t.R7$(2),t.Y8G("ngClass",t.eq3(7,Ko,o.screenSize===o.screenSizeEnum.XS||o.screenSize===o.screenSizeEnum.SM)),t.R7$(2),t.JRh((null==o.lookupFields[o.selectedFieldId]?null:o.lookupFields[o.selectedFieldId].placeholder)||"Lookup Key"),t.R7$(),t.Y8G("formControl",o.lookupKeyCtrl),t.R7$(2),t.Y8G("ngIf",null==o.lookupKeyCtrl.errors?null:o.lookupKeyCtrl.errors.required),t.R7$(),t.Y8G("ngIf",null==o.lookupKeyCtrl.errors?null:o.lookupKeyCtrl.errors.invalid),t.R7$(6),t.Y8G("ngIf",o.flgSetLookupValue))},dependencies:[d.YU,d.bT,d.ux,d.e1,d.fG,f.qT,f.me,f.BC,f.cb,f.YS,f.cV,f.l_,N.$z,x.m2,Y.fg,y.rl,y.nJ,y.TL,rt.VT,rt._g,_.DJ,_.sA,_.UI,v.PW,Zo],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]}))}return i(),s})();var rs=C(80396);let cs=(()=>{var i;class s{constructor(n,a){this.store=n,this.eclEffects=a,this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,j.XT)()),this.eclEffects.setNewAddress.pipe((0,Z.s)(1)).subscribe(n=>{this.newAddress=n,setTimeout(()=>{this.store.dispatch((0,k.xO)({payload:{data:{address:this.newAddress,addressType:"",component:rs.f}}}))},0)})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(I.il),t.rXU(ht.B))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-on-chain-receive"]],standalone:!1,decls:4,vars:0,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","1",3,"click"]],template:function(a,o){1&a&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return o.onGenerateAddress()}),t.EFF(3,"Generate Address"),t.k0s()()())},dependencies:[N.$z,_.DJ,_.sA,_.UI],encapsulation:2}))}return i(),s})(),ms=(()=>{var i;class s{constructor(n,a){this.store=n,this.activatedRoute=a,this.sweepAll=!1,this.unSubs=[new h.B,new h.B]}ngOnInit(){this.activatedRoute.data.pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.sweepAll=n.sweepAll})}openSendFundsModal(){this.store.dispatch((0,k.xO)({payload:{data:{sweepAll:this.sweepAll,component:Dt}}}))}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(I.il),t.rXU(L.nX))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-on-chain-send"]],standalone:!1,decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(a,o){1&a&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return o.openSendFundsModal()}),t.EFF(3),t.k0s()()()),2&a&&(t.R7$(3),t.JRh(o.sweepAll?"Sweep All":"Send Funds"))},dependencies:[N.$z,_.DJ,_.sA,_.UI],encapsulation:2}))}return i(),s})();var yt=C(99172),Mt=C(96354),ct=C(22628),ps=C(60092);const us=["form"];function ds(i,s){if(1&i&&(t.j41(0,"mat-option",36),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(e.alias?e.alias:e.nodeId?e.nodeId:"")}}function hs(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Peer alias is required."),t.k0s())}function fs(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Peer not found in the list."),t.k0s())}function _s(i,s){if(1&i){const e=t.RV6();t.j41(0,"mat-form-field",6)(1,"mat-label"),t.EFF(2,"Peer Alias"),t.k0s(),t.j41(3,"input",33),t.bIt("change",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onSelectedPeerChanged())}),t.k0s(),t.j41(4,"mat-autocomplete",34,4),t.bIt("optionSelected",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onSelectedPeerChanged())}),t.DNE(6,ds,2,2,"mat-option",35),t.nI1(7,"async"),t.k0s(),t.DNE(8,hs,2,0,"mat-error",20)(9,fs,2,0,"mat-error",20),t.k0s()}if(2&i){const e=t.sdS(5),n=t.XpG();t.R7$(3),t.Y8G("formControl",n.selectedPeer)("matAutocomplete",e),t.R7$(),t.Y8G("displayWith",n.displayFn),t.R7$(2),t.Y8G("ngForOf",t.bMT(7,6,n.filteredPeers)),t.R7$(2),t.Y8G("ngIf",null==n.selectedPeer.errors?null:n.selectedPeer.errors.required),t.R7$(),t.Y8G("ngIf",null==n.selectedPeer.errors?null:n.selectedPeer.errors.notfound)}}function gs(i,s){1&i&&t.eu8(0)}function Cs(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function ys(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function bs(i,s){if(1&i&&(t.j41(0,"div",37),t.nrm(1,"fa-icon",38),t.j41(2,"span",39)(3,"div"),t.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),t.k0s(),t.j41(5,"span",40)(6,"span"),t.EFF(7),t.k0s(),t.j41(8,"span"),t.EFF(9),t.k0s(),t.j41(10,"span"),t.EFF(11),t.k0s(),t.j41(12,"span"),t.EFF(13),t.k0s(),t.j41(14,"span"),t.EFF(15),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faInfoCircle),t.R7$(6),t.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),t.R7$(2),t.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),t.R7$(2),t.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),t.R7$(2),t.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),t.R7$(2),t.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function Fs(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function Es(i,s){if(1&i&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.channelConnectionError)}}function xs(i,s){if(1&i&&(t.j41(0,"div",41),t.nrm(1,"fa-icon",38),t.DNE(2,Es,2,1,"span",20),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.channelConnectionError)}}function Ls(i,s){if(1&i&&(t.j41(0,"mat-expansion-panel",43)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),t.EFF(4,"Peer: \xa0"),t.k0s(),t.j41(5,"strong",44),t.EFF(6),t.k0s()()(),t.j41(7,"div",13)(8,"div",5)(9,"div",6)(10,"h4",45),t.EFF(11,"Pubkey"),t.k0s(),t.j41(12,"span",46),t.EFF(13),t.k0s()()(),t.nrm(14,"mat-divider",47),t.j41(15,"div",5)(16,"div",48)(17,"h4",45),t.EFF(18,"Address"),t.k0s(),t.j41(19,"span",49),t.EFF(20),t.k0s()(),t.j41(21,"div",48)(22,"h4",45),t.EFF(23,"State"),t.k0s(),t.j41(24,"span",49),t.EFF(25),t.nI1(26,"titlecase"),t.k0s()()()()()),2&i){const e=t.XpG(2);t.R7$(6),t.JRh((null==e.peer?null:e.peer.alias)||(null==e.peer?null:e.peer.nodeId)),t.R7$(7),t.JRh(e.peer.nodeId),t.R7$(7),t.JRh(null==e.peer?null:e.peer.address),t.R7$(5),t.JRh(t.bMT(26,4,null==e.peer?null:e.peer.state))}}function Ss(i,s){if(1&i&&t.DNE(0,Ls,27,6,"mat-expansion-panel",42),2&i){const e=t.XpG();t.Y8G("ngIf",e.peer)}}let $t=(()=>{var i;class s{constructor(n,a,o,l,m,u){this.logger=n,this.dialogRef=a,this.data=o,this.store=l,this.actions=m,this.dataService=u,this.selectedPeer=new f.hs,this.faExclamationTriangle=E.zpE,this.faInfoCircle=E.iW_,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.selectedPubkey="",this.isPrivate=!1,this.feeRate=null,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.data.message?(this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[]):(this.information={},this.totalBalance=0,this.peer=null,this.peers=[]),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(o=>{this.selNode=o,this.isPrivate=!!o?.settings.unannouncedChannels}),this.actions.pipe((0,g.Q)(this.unSubs[1]),(0,X.p)(o=>o.type===c.Uu.UPDATE_API_CALL_STATUS_ECL||o.type===c.Uu.FETCH_CHANNELS_ECL)).subscribe(o=>{o.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&o.payload.status===c.wn.ERROR&&"SaveNewChannel"===o.payload.action&&(this.channelConnectionError=o.payload.message),o.type===c.Uu.FETCH_CHANNELS_ECL&&this.dialogRef.close()});let n="",a="";this.sortedPeers=this.peers.sort((o,l)=>(n=o.alias?o.alias.toLowerCase():o.nodeId?o.nodeId.toLowerCase():"",a=l.alias?l.alias.toLowerCase():o.nodeId?o.nodeId.toLowerCase():"",na?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,g.Q)(this.unSubs[2]),(0,yt.Z)(""),(0,Mt.T)(o=>"string"==typeof o?o:o.alias?o.alias:o.nodeId),(0,Mt.T)(o=>o?this.filterPeers(o):this.sortedPeers.slice()))}filterPeers(n){return this.sortedPeers?.filter(a=>0===a.alias?.toLowerCase().indexOf(n?n.toLowerCase():""))}displayFn(n){return n&&n.alias?n.alias:n&&n.nodeId?n.nodeId:""}onSelectedPeerChanged(){if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.nodeId?this.selectedPeer.value.nodeId:null,"string"==typeof this.selectedPeer.value){const n=this.peers?.filter(a=>a.alias?.length===this.selectedPeer.value.length&&0===a.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===n.length&&n[0].nodeId&&(this.selectedPubkey=n[0].nodeId)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){this.feeRate=null,this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!!this.selNode?.settings.unannouncedChannels,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onAdvancedPanelToggle(n){this.advancedTitle="Advanced Options",n?this.feeRate&&this.feeRate>0&&(this.advancedTitle=this.advancedTitle+" | Fee (Sats/vByte): "+this.feeRate):this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[3])).subscribe({next:a=>{this.recommendedFee=a},error:a=>{this.logger.error(a)}})}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||this.feeRate&&this.recommendedFee.minimumFee>this.feeRate)return!0;const n={nodeId:this.peer&&this.peer.nodeId?this.peer.nodeId:this.selectedPubkey,amount:this.fundingAmount,private:this.isPrivate};this.feeRate&&(n.feeRate=this.feeRate),this.store.dispatch((0,j.vL)({payload:n}))}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(V.CP),t.rXU(V.Vh),t.rXU(I.il),t.rXU(K.En),t.rXU(nt.u))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-open-channel"]],viewQuery:function(a,o){if(1&a&&t.GBs(us,7),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first)}},standalone:!1,decls:56,vars:21,consts:[["form","ngForm"],["amount","ngModel"],["fee","ngModel"],["peerDetailsExpansionBlock",""],["auto","matAutocomplete"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","11","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","1","required","","name","amount",3,"ngModelChange","step","min","max","ngModel"],["matSuffix",""],[4,"ngIf"],["fxFlex","25","fxLayoutAlign","start center"],["tabindex","2","color","primary","name","isPrivate",3,"ngModelChange","ngModel"],["expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxFlex","100","fxLayout","row","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","49"],["matInput","","type","number","name","fee","tabindex","7",3,"ngModelChange","step","min","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","9","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","10"],["type","text","aria-label","Peers","matInput","","tabindex","1","required","",3,"change","formControl","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value",4,"ngFor","ngForOf"],[3,"value"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",5)(1,"div",6)(2,"mat-card-header",7)(3,"div",8)(4,"span",9),t.EFF(5),t.k0s()(),t.j41(6,"button",10),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",11)(9,"form",12,0),t.bIt("submit",function(){return r.eBV(l),r.Njj(o.onOpenChannel())})("reset",function(){return r.eBV(l),r.Njj(o.resetData())}),t.j41(11,"div",13),t.DNE(12,_s,10,8,"mat-form-field",14),t.k0s(),t.DNE(13,gs,1,0,"ng-container",15),t.j41(14,"div",13)(15,"div",16)(16,"mat-form-field",17)(17,"mat-label"),t.EFF(18,"Amount"),t.k0s(),t.j41(19,"input",18,1),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.fundingAmount,u)||(o.fundingAmount=u),r.Njj(u)}),t.k0s(),t.j41(21,"mat-hint"),t.EFF(22),t.nI1(23,"number"),t.k0s(),t.j41(24,"span",19),t.EFF(25,"Sats "),t.k0s(),t.DNE(26,Cs,2,0,"mat-error",20)(27,ys,2,1,"mat-error",20),t.k0s(),t.j41(28,"div",21)(29,"mat-slide-toggle",22),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.isPrivate,u)||(o.isPrivate=u),r.Njj(u)}),t.EFF(30,"Private Channel"),t.k0s()()(),t.j41(31,"mat-expansion-panel",23),t.bIt("closed",function(){return r.eBV(l),r.Njj(o.onAdvancedPanelToggle(!0))})("opened",function(){return r.eBV(l),r.Njj(o.onAdvancedPanelToggle(!1))}),t.j41(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),t.EFF(35),t.k0s()()(),t.j41(36,"div",24),t.DNE(37,bs,16,6,"div",25),t.j41(38,"div",16)(39,"div",26)(40,"mat-form-field",27)(41,"mat-label"),t.EFF(42,"Fee (Sats/vByte)"),t.k0s(),t.j41(43,"input",28,2),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.feeRate,u)||(o.feeRate=u),r.Njj(u)}),t.k0s(),t.j41(45,"mat-hint"),t.EFF(46),t.k0s(),t.DNE(47,Fs,2,1,"mat-error",20),t.k0s()()()()()(),t.DNE(48,xs,3,2,"div",29),t.j41(49,"div",30)(50,"button",31),t.EFF(51,"Clear Fields"),t.k0s(),t.j41(52,"button",32),t.EFF(53,"Open Channel"),t.k0s()()()()()(),t.DNE(54,Ss,1,1,"ng-template",null,3,t.C5r)}if(2&a){const l=t.sdS(20),m=t.sdS(55);t.R7$(5),t.JRh(o.alertTitle),t.R7$(7),t.Y8G("ngIf",!o.peer&&o.peers&&o.peers.length>0),t.R7$(),t.Y8G("ngTemplateOutlet",m),t.R7$(6),t.Y8G("step",1e3)("min",1)("max",o.totalBalance),t.R50("ngModel",o.fundingAmount),t.R7$(3),t.SpI("Remaining: ",t.bMT(23,19,o.totalBalance-(o.fundingAmount?o.fundingAmount:0))),t.R7$(4),t.Y8G("ngIf",null==l.errors?null:l.errors.required),t.R7$(),t.Y8G("ngIf",null==l.errors?null:l.errors.max),t.R7$(2),t.R50("ngModel",o.isPrivate),t.R7$(6),t.JRh(o.advancedTitle),t.R7$(2),t.Y8G("ngIf",o.recommendedFee.minimumFee),t.R7$(6),t.Y8G("step",1)("min",o.recommendedFee.minimumFee),t.R50("ngModel",o.feeRate),t.R7$(3),t.SpI("Mempool Min: ",o.recommendedFee.minimumFee," (Sats/vByte)"),t.R7$(),t.Y8G("ngIf",o.feeRate&&o.feeRate{var i;class s{constructor(n,a,o){this.logger=n,this.store=a,this.router=o,this.numOfOpenChannels=0,this.numOfPendingChannels=0,this.numOfInactiveChannels=0,this.information={},this.peers=[],this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending"},{link:"inactive",name:"Inactive"}],this.activeLink=0,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.activeLink=this.links.findIndex(n=>n.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(n=>n instanceof L.gx)).subscribe({next:n=>{this.activeLink=this.links.findIndex(a=>a.link===n.urlAfterRedirects.substring(n.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.numOfOpenChannels=n.channelsStatus&&n.channelsStatus.active&&n.channelsStatus.active.channels?n.channelsStatus.active.channels:0,this.numOfPendingChannels=n.channelsStatus&&n.channelsStatus.pending&&n.channelsStatus.pending.channels?n.channelsStatus.pending.channels:0,this.numOfInactiveChannels=n.channelsStatus&&n.channelsStatus.inactive&&n.channelsStatus.inactive.channels?n.channelsStatus.inactive.channels:0,this.logger.info(n)}),this.store.select(J._c).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.selNode=n}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.information=n}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[4])).subscribe(n=>{this.peers=n.peers}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[5])).subscribe(n=>{this.totalBalance=n.onchainBalance.total||0})}onOpenChannel(){this.store.dispatch((0,k.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:$t}}}))}onSelectedTabChange(n){this.router.navigateByUrl("/ecl/connections/channels/"+this.links[n.index].link)}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channels-tables"]],standalone:!1,decls:14,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(a,o){1&a&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return o.onOpenChannel()}),t.EFF(3,"Open Channel"),t.k0s()(),t.j41(4,"div",3)(5,"mat-tab-group",4),t.mxI("selectedIndexChange",function(m){return t.DH7(o.activeLink,m)||(o.activeLink=m),m}),t.bIt("selectedTabChange",function(m){return o.onSelectedTabChange(m)}),t.j41(6,"mat-tab"),t.DNE(7,vs,2,2,"ng-template",5),t.k0s(),t.j41(8,"mat-tab"),t.DNE(9,Rs,2,2,"ng-template",5),t.k0s(),t.j41(10,"mat-tab"),t.DNE(11,ks,2,2,"ng-template",5),t.k0s()(),t.j41(12,"div",6),t.nrm(13,"router-outlet"),t.k0s()()()),2&a&&(t.R7$(5),t.R50("selectedIndex",o.activeLink))},dependencies:[N.$z,_.DJ,_.sA,_.UI,Pt.k,P.ES,P.mq,P.T8,L.n3],encapsulation:2}))}return i(),s})();const Ts=i=>({"xs-scroll-y":i}),ws=(i,s)=>({"mt-2":i,"mt-1":s});function js(i,s){if(1&i&&(t.j41(0,"div",12)(1,"h4",13),t.EFF(2,"Short Channel ID"),t.k0s(),t.j41(3,"span",14),t.EFF(4),t.k0s()()),2&i){const e=t.XpG();t.R7$(4),t.JRh(e.channel.shortChannelId)}}function Ds(i,s){if(1&i&&(t.j41(0,"div",12)(1,"h4",13),t.EFF(2,"State"),t.k0s(),t.j41(3,"span",17),t.EFF(4),t.nI1(5,"titlecase"),t.k0s()()),2&i){const e=t.XpG();t.R7$(4),t.JRh(t.bMT(5,1,e.channel.state))}}function Ps(i,s){if(1&i&&(t.j41(0,"div")(1,"div",10)(2,"div",12)(3,"h4",13),t.EFF(4,"Local Balance (Sats)"),t.k0s(),t.j41(5,"span",17),t.EFF(6),t.nI1(7,"number"),t.k0s()(),t.j41(8,"div",12)(9,"h4",13),t.EFF(10,"Remote Balance (Sats)"),t.k0s(),t.j41(11,"span",17),t.EFF(12),t.nI1(13,"number"),t.k0s()()(),t.nrm(14,"mat-divider",15),t.j41(15,"div",10)(16,"div",12)(17,"h4",13),t.EFF(18,"Base Fee (mSats)"),t.k0s(),t.j41(19,"span",17),t.EFF(20),t.nI1(21,"number"),t.k0s()(),t.j41(22,"div",12)(23,"h4",13),t.EFF(24,"Fee Rate (mili mSats)"),t.k0s(),t.j41(25,"span",17),t.EFF(26),t.nI1(27,"number"),t.k0s()()(),t.nrm(28,"mat-divider",15),t.k0s()),2&i){const e=t.XpG();t.R7$(6),t.JRh(t.bMT(7,6,e.channel.toLocal)),t.R7$(6),t.JRh(t.bMT(13,8,e.channel.toRemote)),t.R7$(2),t.Y8G("inset",!0),t.R7$(6),t.JRh(t.bMT(21,10,e.channel.feeBaseMsat)),t.R7$(6),t.JRh(t.bMT(27,12,e.channel.feeProportionalMillionths)),t.R7$(2),t.Y8G("inset",!0)}}function Gs(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Show Advanced"),t.k0s())}function As(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Hide Advanced"),t.k0s())}function Ns(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",23),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onShowAdvanced())}),t.DNE(1,Gs,2,0,"p",24)(2,As,2,0,"ng-template",null,0,t.C5r),t.k0s()}if(2&i){const e=t.sdS(3),n=t.XpG();t.R7$(),t.Y8G("ngIf",!n.showAdvanced)("ngIfElse",e)}}function Bs(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",25),t.bIt("copied",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onCopyChanID(a))}),t.EFF(1,"Copy Short Channel ID"),t.k0s()}if(2&i){const e=t.XpG();t.Y8G("payload",e.channel.shortChannelId)}}function Ms(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",26),t.bIt("copied",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onCopyChanID(a))}),t.EFF(1,"Copy Channel ID"),t.k0s()}if(2&i){const e=t.XpG();t.Y8G("payload",e.channel.channelId)}}let bt=(()=>{var i;class s{constructor(n,a,o,l,m,u){this.dialogRef=n,this.data=a,this.logger=o,this.commonService=l,this.snackBar=m,this.router=u,this.faReceipt=E.Mf0,this.showAdvanced=!1,this.channelsType="open",this.screenSize="",this.screenSizeEnum=c.f7}ngOnInit(){this.channel=this.data.channel,this.channelsType=this.data.channelsType||"",this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(n){this.snackBar.open("open"===this.channelsType?"Short channel ID "+n+" copied.":"Channel ID copied."),this.logger.info("Copied Text: "+n)}onGoToLink(n,a){this.router.navigateByUrl("/ecl/graph/lookups",{state:{lookupType:n,lookupValue:a}}),this.onClose()}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(V.Vh),t.rXU(A.gP),t.rXU($.h),t.rXU(Nt.UG),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-information"]],standalone:!1,decls:59,vars:27,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50",4,"ngIf"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["tabindex","1","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"overflow-wrap","foreground-secondary-text"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","2","class","mr-1",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","3","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","4","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["mat-button","","color","primary","type","reset","tabindex","2",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","3","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","4","type","submit","rtlClipboard","",3,"copied","payload"]],template:function(a,o){1&a&&(t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4),t.nrm(4,"fa-icon",5),t.j41(5,"span",6),t.EFF(6,"Channel Information"),t.k0s()(),t.j41(7,"button",7),t.bIt("click",function(){return o.onClose()}),t.EFF(8,"X"),t.k0s()(),t.j41(9,"mat-card-content",8)(10,"div",9)(11,"div",10),t.DNE(12,js,5,1,"div",11),t.j41(13,"div",12)(14,"h4",13),t.EFF(15,"Peer Alias"),t.k0s(),t.j41(16,"span",14),t.EFF(17),t.k0s()(),t.DNE(18,Ds,6,3,"div",11),t.k0s(),t.nrm(19,"mat-divider",15),t.j41(20,"div",10)(21,"div",2)(22,"h4",13),t.EFF(23,"Channel ID"),t.k0s(),t.j41(24,"span",14),t.EFF(25),t.k0s()()(),t.nrm(26,"mat-divider",15),t.j41(27,"div",10)(28,"div",2)(29,"h4",13),t.EFF(30,"Peer Public Key"),t.k0s(),t.j41(31,"span",16),t.bIt("click",function(){return o.onGoToLink("0",o.channel.nodeId)}),t.EFF(32),t.k0s()()(),t.nrm(33,"mat-divider",15),t.j41(34,"div",10)(35,"div",2)(36,"h4",13),t.EFF(37,"State"),t.k0s(),t.j41(38,"span",17),t.EFF(39),t.nI1(40,"titlecase"),t.k0s()()(),t.nrm(41,"mat-divider",15),t.j41(42,"div",10)(43,"div",12)(44,"h4",13),t.EFF(45,"Private"),t.k0s(),t.j41(46,"span",17),t.EFF(47),t.k0s()(),t.j41(48,"div",12)(49,"h4",13),t.EFF(50,"Initiator"),t.k0s(),t.j41(51,"span",17),t.EFF(52),t.k0s()()(),t.nrm(53,"mat-divider",15),t.DNE(54,Ps,29,14,"div",18),t.j41(55,"div",19),t.DNE(56,Ns,4,2,"button",20)(57,Bs,2,1,"button",21)(58,Ms,2,1,"button",22),t.k0s()()()()()),2&a&&(t.R7$(4),t.Y8G("icon",o.faReceipt),t.R7$(5),t.Y8G("ngClass",t.eq3(22,Ts,o.screenSize===o.screenSizeEnum.XS)),t.R7$(3),t.Y8G("ngIf","open"===o.channelsType),t.R7$(5),t.JRh(o.channel.alias),t.R7$(),t.Y8G("ngIf","open"!==o.channelsType),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(o.channel.channelId),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.SpI(" ",o.channel.nodeId," "),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(t.bMT(40,20,o.channel.state)),t.R7$(2),t.Y8G("inset",!0),t.R7$(6),t.JRh(o.channel.announceChannel?"No":"Yes"),t.R7$(5),t.JRh(o.channel.isInitiator?"Yes":"No"),t.R7$(),t.Y8G("inset",!0),t.R7$(),t.Y8G("ngIf",o.showAdvanced&&"open"===o.channelsType),t.R7$(),t.Y8G("ngClass",t.l_i(24,ws,!o.showAdvanced,o.showAdvanced)),t.R7$(),t.Y8G("ngIf","open"===o.channelsType),t.R7$(),t.Y8G("ngIf","open"===o.channelsType),t.R7$(),t.Y8G("ngIf","open"!==o.channelsType))},dependencies:[d.YU,d.bT,D.aY,N.$z,x.m2,x.MM,tt.q,_.DJ,_.sA,_.UI,v.PW,Q.oV,Bt.U,et.N,d.QX,d.PV],encapsulation:2}))}return i(),s})();var Ft=C(7673),Et=C(1001),$s=C(16949);const ot=(i,s)=>({"small-svg":i,"large-svg":s});function Vs(i,s){1&i&&t.eu8(0)}function Os(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onSwipe(a))}),r.qSk(),t.j41(1,"svg",7),t.nrm(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17)(12,"path",18)(13,"path",19)(14,"path",20)(15,"path",21)(16,"path",22)(17,"path",23)(18,"path",24)(19,"path",25)(20,"path",26)(21,"path",27)(22,"path",28)(23,"path",29)(24,"path",30)(25,"path",31)(26,"path",32)(27,"path",33)(28,"path",34)(29,"path",35)(30,"path",36)(31,"path",37)(32,"path",38)(33,"path",39)(34,"path",40)(35,"path",41)(36,"path",42)(37,"path",43)(38,"path",44)(39,"path",45)(40,"path",46),t.k0s(),r.joV(),t.j41(41,"div",47)(42,"mat-card-title"),t.EFF(43,"Circular rebalancing explained."),t.k0s()(),t.j41(44,"div",48)(45,"mat-card-subtitle",49),t.EFF(46," Circular payments are a completely off-chain rebalancing strategy where a node makes a payment to itself across a circular path of chained payment channels. "),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,ot,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Hs(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onSwipe(a))}),r.qSk(),t.j41(1,"svg",51),t.nrm(2,"path",52)(3,"path",53)(4,"path",54)(5,"path",55)(6,"path",56)(7,"path",57)(8,"path",58)(9,"path",59)(10,"path",60)(11,"path",61)(12,"path",62)(13,"path",63)(14,"path",64)(15,"path",65)(16,"path",66)(17,"path",67)(18,"path",68)(19,"path",69)(20,"path",70)(21,"path",71)(22,"path",72)(23,"path",73)(24,"path",74)(25,"path",75)(26,"path",76)(27,"path",77)(28,"path",78)(29,"path",79)(30,"path",80)(31,"path",81)(32,"path",82)(33,"path",52)(34,"path",53)(35,"path",54)(36,"path",55)(37,"path",56)(38,"path",57)(39,"path",58)(40,"path",59)(41,"path",60)(42,"path",83)(43,"path",84)(44,"path",63)(45,"path",85)(46,"path",86)(47,"path",87)(48,"path",67)(49,"path",68)(50,"path",69)(51,"path",70)(52,"path",71)(53,"path",72)(54,"path",73)(55,"path",74)(56,"path",75)(57,"path",76)(58,"path",77)(59,"path",78)(60,"path",79)(61,"path",80)(62,"path",88)(63,"path",82)(64,"path",89),t.j41(65,"defs")(66,"linearGradient",90),t.nrm(67,"stop",91)(68,"stop",92)(69,"stop",93),t.k0s(),t.j41(70,"linearGradient",94),t.nrm(71,"stop",91)(72,"stop",92)(73,"stop",93),t.k0s(),t.j41(74,"linearGradient",95),t.nrm(75,"stop",91)(76,"stop",92)(77,"stop",93),t.k0s(),t.j41(78,"linearGradient",96),t.nrm(79,"stop",91)(80,"stop",92)(81,"stop",93),t.k0s(),t.j41(82,"linearGradient",97),t.nrm(83,"stop",91)(84,"stop",92)(85,"stop",93),t.k0s(),t.j41(86,"linearGradient",98),t.nrm(87,"stop",91)(88,"stop",92)(89,"stop",93),t.k0s()()(),r.joV(),t.j41(90,"div",47)(91,"mat-card-title"),t.EFF(92,"Step 1: Unbalanced channel"),t.k0s()(),t.j41(93,"div",48)(94,"mat-card-subtitle",49),t.EFF(95," It starts with an unbalanced channel, that needs to be rebalanced in order to continue to route payments. "),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,ot,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Ys(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onSwipe(a))}),r.qSk(),t.j41(1,"svg",99),t.nrm(2,"path",100)(3,"path",101)(4,"path",102)(5,"path",103)(6,"path",104)(7,"path",105)(8,"path",106)(9,"path",107)(10,"path",108)(11,"path",109)(12,"path",110)(13,"path",111)(14,"path",112)(15,"path",113)(16,"path",114)(17,"path",52)(18,"path",115)(19,"path",116)(20,"path",117)(21,"path",118)(22,"path",119)(23,"path",120)(24,"path",121)(25,"path",122)(26,"path",83)(27,"path",84)(28,"path",123)(29,"path",124)(30,"path",125)(31,"path",126)(32,"path",67)(33,"path",127)(34,"path",128)(35,"path",129)(36,"path",130)(37,"path",131)(38,"path",132)(39,"path",74)(40,"path",75)(41,"path",133)(42,"path",77)(43,"path",78)(44,"path",79)(45,"path",80)(46,"path",134)(47,"path",135)(48,"path",136),t.j41(49,"defs")(50,"linearGradient",137),t.nrm(51,"stop",91)(52,"stop",92)(53,"stop",93),t.k0s(),t.j41(54,"linearGradient",138),t.nrm(55,"stop",91)(56,"stop",92)(57,"stop",93),t.k0s(),t.j41(58,"linearGradient",139),t.nrm(59,"stop",91)(60,"stop",92)(61,"stop",93),t.k0s()()(),r.joV(),t.j41(62,"div",47)(63,"mat-card-title"),t.EFF(64,"Step 2: Invoice/Payment"),t.k0s()(),t.j41(65,"div",48)(66,"mat-card-subtitle",49),t.EFF(67," All you have to do is make a payment to yourself in a favorable direction by generating and paying an invoice. This is taken care automatically by your node. "),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,ot,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Xs(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onSwipe(a))}),r.qSk(),t.j41(1,"svg",140),t.nrm(2,"path",141)(3,"path",142)(4,"path",143)(5,"path",144)(6,"path",145)(7,"path",146)(8,"path",147)(9,"path",148)(10,"path",149)(11,"path",150)(12,"path",151)(13,"path",152)(14,"path",153)(15,"path",154)(16,"path",155)(17,"path",156)(18,"path",157)(19,"path",158)(20,"path",159)(21,"path",160)(22,"path",161)(23,"path",162)(24,"path",163)(25,"path",164)(26,"path",163)(27,"path",165)(28,"path",166)(29,"path",167)(30,"path",168)(31,"path",169)(32,"path",170)(33,"path",171)(34,"path",172)(35,"path",173)(36,"path",174)(37,"path",175)(38,"path",176)(39,"path",177)(40,"path",178)(41,"path",179),t.j41(42,"defs")(43,"linearGradient",180),t.nrm(44,"stop",91)(45,"stop",92)(46,"stop",93),t.k0s()()(),r.joV(),t.j41(47,"div",47)(48,"mat-card-title"),t.EFF(49,"Step 3: Rebalance amount"),t.k0s()(),t.j41(50,"div",48)(51,"mat-card-subtitle",49),t.EFF(52," You will be moving part or all of the local balance to the remote side. For the route to be circular, there should be at least 3 nodes involved. "),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,ot,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Us(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onSwipe(a))}),r.qSk(),t.j41(1,"svg",140),t.nrm(2,"path",181)(3,"path",143)(4,"path",182)(5,"path",145)(6,"path",146)(7,"path",183)(8,"path",148)(9,"path",184)(10,"path",185)(11,"path",186)(12,"path",187)(13,"path",188)(14,"path",189)(15,"path",190)(16,"path",191)(17,"path",192)(18,"path",158)(19,"path",193)(20,"path",194)(21,"path",179)(22,"path",160)(23,"path",161)(24,"path",195)(25,"path",163)(26,"path",164)(27,"path",163)(28,"path",165)(29,"path",166)(30,"path",167)(31,"path",168)(32,"path",196)(33,"path",170)(34,"path",197)(35,"path",172)(36,"path",173)(37,"path",174)(38,"path",175)(39,"path",176)(40,"path",198),t.j41(41,"defs")(42,"linearGradient",199),t.nrm(43,"stop",91)(44,"stop",92)(45,"stop",93),t.k0s()()(),r.joV(),t.j41(46,"div",47)(47,"mat-card-title"),t.EFF(48,"Rebalance successful!"),t.k0s()(),t.j41(49,"div",48)(50,"mat-card-subtitle",49),t.EFF(51," Your channel is successfully rebalanced and is able to continue to route payments. "),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,ot,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}let zs=(()=>{var i;class s{constructor(n){this.commonService=n,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.bkB,this.screenSize="",this.screenSizeEnum=c.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(n){2===n.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===n.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU($.h))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-rebalance-infographics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["infoStepBlock1",""],["infoStepBlock2",""],["infoStepBlock3",""],["infoStepBlock4",""],["infoStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between starts",3,"swipe"],["fxFlex","30","viewBox","0 0 246 154","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M187.8 136C203.043 136 215.4 133.493 215.4 130.4C215.4 127.307 203.043 124.8 187.8 124.8C172.557 124.8 160.2 127.307 160.2 130.4C160.2 133.493 172.557 136 187.8 136Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M128.6 148.8C143.843 148.8 156.2 146.293 156.2 143.2C156.2 140.107 143.843 137.6 128.6 137.6C113.357 137.6 101 140.107 101 143.2C101 146.293 113.357 148.8 128.6 148.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["opacity","0.1","d","M100.2 117.421C100.2 117.421 99.0633 117.494 99.4998 117.722C99.9363 117.95 100.2 117.421 100.2 117.421Z","fill","black"],["opacity","0.1","d","M101 118.4C100.986 118.471 98.1102 119.483 98.673 119.933C99.2358 120.384 101 118.4 101 118.4Z","fill","black"],["opacity","0.1","d","M97.8 128.98C98.0492 128.966 100.509 128.241 101 128.89L97.8 128.98Z","fill","black"],["opacity","0.1","d","M100.2 129.709C100.2 129.709 100.563 129.362 100.926 129.543C101.289 129.725 100.2 129.709 100.2 129.709Z","fill","black"],["opacity","0.1","d","M101.8 132C101.8 132 101.641 133.198 101 133.6L101.8 132Z","fill","black"],["d","M119.223 21.4239L123.102 22.0818L118.209 50.9111L114.33 50.2532L119.223 21.4239Z",1,"fill-color-primary-darker"],["d","M127.4 137.844L128.262 144L129 137.6L127.4 137.844Z",1,"fill-color-29"],["d","M100.2 134.349V138.226L101 141.6H101.571L102.258 137.976L102.6 133.6L100.2 134.349Z",1,"fill-color-28"],["d","M110.75 50.4L104.806 87.6521C104.806 87.6521 96.0162 127.358 99.3581 135.2H103.57L116.2 58.9791L110.75 50.4Z",1,"fill-color-29"],["d","M125.308 45.6L129.979 83.02C129.979 83.02 133.381 130.691 129.656 138.4H125.976L119.4 53.9698L125.308 45.6Z",1,"fill-color-29"],["d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z","fill","black"],["d","M112.922 39.2661C113.364 37.7699 114.731 36.7605 116.259 36.8012C118.804 36.8682 122.74 37.3423 124.787 39.4927C127.969 42.8316 122.638 54.0832 122.638 54.0832C122.638 54.0832 117.661 63.4872 113.092 51.5396C113.092 51.5327 111.203 45.1393 112.922 39.2661Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M131.383 131.52C131.69 131.628 131.968 131.791 132.2 132C131.813 131.613 130.708 131.42 130.166 131.24C129.495 131.019 128.764 130.793 128.2 130.4C129.29 130.705 130.354 131.079 131.383 131.52Z","fill","black"],["opacity","0.1","d","M94.2 24.8C96.1882 24.8 97.8 23.1882 97.8 21.2C97.8 19.2118 96.1882 17.6 94.2 17.6C92.2117 17.6 90.6 19.2118 90.6 21.2C90.6 23.1882 92.2117 24.8 94.2 24.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M107 12C110.314 12 113 9.31371 113 6C113 2.68629 110.314 0 107 0C103.686 0 101 2.68629 101 6C101 9.31371 103.686 12 107 12Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M99 40.8C102.314 40.8 105 38.1137 105 34.8C105 31.4863 102.314 28.8 99 28.8C95.6863 28.8 93 31.4863 93 34.8C93 38.1137 95.6863 40.8 99 40.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M223 67.2C224.988 67.2 226.6 65.5882 226.6 63.6C226.6 61.6118 224.988 60 223 60C221.012 60 219.4 61.6118 219.4 63.6C219.4 65.5882 221.012 67.2 223 67.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M210.2 54.4C213.514 54.4 216.2 51.7137 216.2 48.4C216.2 45.0863 213.514 42.4 210.2 42.4C206.886 42.4 204.2 45.0863 204.2 48.4C204.2 51.7137 206.886 54.4 210.2 54.4Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M218.2 83.2C221.514 83.2 224.2 80.5137 224.2 77.2C224.2 73.8863 221.514 71.2 218.2 71.2C214.886 71.2 212.2 73.8863 212.2 77.2C212.2 80.5137 214.886 83.2 218.2 83.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M23.8 72C24.9046 72 25.8 71.1046 25.8 70C25.8 68.8954 24.9046 68 23.8 68C22.6954 68 21.8 68.8954 21.8 70C21.8 71.1046 22.6954 72 23.8 72Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M33 65.6C34.7673 65.6 36.2 64.1673 36.2 62.4C36.2 60.6327 34.7673 59.2 33 59.2C31.2327 59.2 29.8 60.6327 29.8 62.4C29.8 64.1673 31.2327 65.6 33 65.6Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M17 71.2C18.7673 71.2 20.2 69.7673 20.2 68C20.2 66.2327 18.7673 64.8 17 64.8C15.2327 64.8 13.8 66.2327 13.8 68C13.8 69.7673 15.2327 71.2 17 71.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M171.8 60C172.905 60 173.8 59.1046 173.8 58C173.8 56.8954 172.905 56 171.8 56C170.695 56 169.8 56.8954 169.8 58C169.8 59.1046 170.695 60 171.8 60Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M180.2 53.6C181.967 53.6 183.4 52.1673 183.4 50.4C183.4 48.6327 181.967 47.2 180.2 47.2C178.433 47.2 177 48.6327 177 50.4C177 52.1673 178.433 53.6 180.2 53.6Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M164.2 59.2C165.967 59.2 167.4 57.7673 167.4 56C167.4 54.2327 165.967 52.8 164.2 52.8C162.433 52.8 161 54.2327 161 56C161 57.7673 162.433 59.2 164.2 59.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M51 40.8C55.6392 40.8 59.4 37.0392 59.4 32.4C59.4 27.7608 55.6392 24 51 24C46.3608 24 42.6 27.7608 42.6 32.4C42.6 37.0392 46.3608 40.8 51 40.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M98.6 64.8C101.251 64.8 103.4 62.651 103.4 60C103.4 57.349 101.251 55.2 98.6 55.2C95.949 55.2 93.8 57.349 93.8 60C93.8 62.651 95.949 64.8 98.6 64.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M145.8 96.8C148.451 96.8 150.6 94.651 150.6 92C150.6 89.349 148.451 87.2 145.8 87.2C143.149 87.2 141 89.349 141 92C141 94.651 143.149 96.8 145.8 96.8Z",1,"fill-color-primary-darker"],["fill-rule","evenodd","clip-rule","evenodd","d","M59.8 136.8C75.0431 136.8 87.4 134.293 87.4 131.2C87.4 128.107 75.0431 125.6 59.8 125.6C44.557 125.6 32.2 128.107 32.2 131.2C32.2 134.293 44.557 136.8 59.8 136.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M217.4 152.8C232.643 152.8 245 150.293 245 147.2C245 144.107 232.643 141.6 217.4 141.6C202.157 141.6 189.8 144.107 189.8 147.2C189.8 150.293 202.157 152.8 217.4 152.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M28.6 152.8C43.8431 152.8 56.2 150.293 56.2 147.2C56.2 144.107 43.8431 141.6 28.6 141.6C13.3569 141.6 1 144.107 1 147.2C1 150.293 13.3569 152.8 28.6 152.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["d","M122.425 44.7H119.162L120.372 41.0719C120.484 40.6219 120.147 40.2 119.725 40.2H115.675C115.337 40.2 115.028 40.4531 115 40.7906L114.1 47.5406C114.044 47.9625 114.353 48.3 114.775 48.3H118.094L116.8 53.7844C116.716 54.2063 117.025 54.6 117.447 54.6C117.7 54.6 117.925 54.4875 118.037 54.2625L122.987 45.7125C123.269 45.2906 122.931 44.7 122.425 44.7Z","fill","white"],["d","M23.5204 123.2C23.0498 123.2 22.6141 123.375 22.2807 123.669C21.9491 123.96 21.7189 124.369 21.6565 124.837L20.2164 135.712C20.1423 136.278 20.3237 136.811 20.6643 137.203C21.0076 137.598 21.5119 137.85 22.0804 137.85H26.4117L24.5687 145.68C24.4289 146.274 24.5836 146.851 24.9204 147.28C25.2626 147.716 25.7931 148 26.3959 148C26.7289 148 27.0539 147.911 27.3385 147.746C27.616 147.585 27.8553 147.351 28.0254 147.055L35.9453 133.28C36.3068 132.658 36.2644 131.95 35.9495 131.398C35.7868 131.113 35.551 130.871 35.2622 130.703C34.9905 130.544 34.6717 130.45 34.3203 130.45H30.1609L31.7043 124.49C31.5476 124.305 31.4051 124.176 31.278 124.085C31.004 123.89 30.5348 123.687 29.7238 123.539C28.6009 123.335 26.6977 123.2 23.5204 123.2Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M185.5 109.6C185.075 109.6 184.682 109.757 184.381 110.02C184.08 110.284 183.872 110.652 183.815 111.073L182.615 120.074C182.548 120.585 182.712 121.066 183.021 121.419C183.331 121.774 183.787 122 184.3 122H187.74L186.244 128.309C186.117 128.846 186.258 129.366 186.564 129.753C186.873 130.145 187.352 130.4 187.897 130.4C188.505 130.4 189.084 130.074 189.391 129.512L195.745 115.6H191.208L192.467 110.771C192.308 110.576 192.165 110.445 192.04 110.357C191.803 110.189 191.397 110.01 190.693 109.883C189.753 109.713 188.16 109.6 185.5 109.6Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M215.1 128C214.675 128 214.282 128.157 213.981 128.42C213.68 128.683 213.472 129.052 213.415 129.473L212.215 138.474C212.148 138.985 212.312 139.466 212.621 139.819C212.931 140.174 213.387 140.4 213.9 140.4H217.34L215.844 146.709C215.717 147.246 215.858 147.766 216.164 148.153C216.473 148.545 216.952 148.8 217.497 148.8C218.105 148.8 218.684 148.474 218.991 147.912L225.345 134H220.808L222.067 129.171C221.908 128.976 221.765 128.845 221.64 128.757C221.403 128.589 220.997 128.41 220.293 128.283C219.353 128.113 217.76 128 215.1 128Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M55.9003 111.2C55.4754 111.2 55.0822 111.357 54.7812 111.62C54.4802 111.883 54.2716 112.252 54.215 112.673L53.0149 121.674C52.9475 122.185 53.112 122.666 53.4214 123.019C53.7314 123.374 54.1868 123.6 54.7004 123.6H58.1398L56.6444 129.909C56.5174 130.446 56.6576 130.966 56.9637 131.353C57.2728 131.745 57.7518 132 58.2966 132C58.9052 132 59.4843 131.674 59.7907 131.112L66.1452 117.2H61.6081L62.8674 112.371C62.7082 112.176 62.5651 112.045 62.4402 111.957C62.2025 111.789 61.7969 111.61 61.0927 111.483C60.1529 111.313 58.5599 111.2 55.9003 111.2Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 210 124","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M90.1491 0H0V100.616H90.1491V0Z",1,"fill-color-10"],["d","M88.6575 67.1775H1.48926V98.4248H88.6575V67.1775Z","fill","white"],["d","M59.844 74.5891H8.64404V90.6009H59.844V74.5891Z",1,"fill-color-primary-darker"],["d","M76.3172 90.6426C80.8187 90.6426 84.4679 86.9934 84.4679 82.4919C84.4679 77.9904 80.8187 74.3412 76.3172 74.3412C71.8157 74.3412 68.1665 77.9904 68.1665 82.4919C68.1665 86.9934 71.8157 90.6426 76.3172 90.6426Z",1,"fill-color-primary-darker"],["d","M88.6575 34.7129H1.48926V65.9602H88.6575V34.7129Z","fill","white"],["d","M59.844 42.1244H8.64404V58.1363H59.844V42.1244Z",1,"fill-color-primary-darker"],["d","M76.3172 58.1801C80.8187 58.1801 84.4679 54.5309 84.4679 50.0294C84.4679 45.5279 80.8187 41.8787 76.3172 41.8787C71.8157 41.8787 68.1665 45.5279 68.1665 50.0294C68.1665 54.5309 71.8157 58.1801 76.3172 58.1801Z",1,"fill-color-primary-darker"],["d","M88.6575 2.24823H1.48926V33.4955H88.6575V2.24823Z","fill","white"],["d","M59.844 9.66199H8.64404V25.6739H59.844V9.66199Z",1,"fill-color-primary-darker"],["d","M32.644 74.5891H8.64404V90.6009H32.644V74.5891Z",1,"fill-color-17"],["d","M45.444 42.1244H8.64404V58.1363H45.444V42.1244Z",1,"fill-color-17"],["d","M59.644 9.66199H8.64404V25.662H59.644V9.66199Z",1,"fill-color-17"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint0_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint2_linear)"],["d","M76.1507 25.3014C80.6522 25.3014 84.3014 21.6522 84.3014 17.1507C84.3014 12.6492 80.6522 9 76.1507 9C71.6492 9 68 12.6492 68 17.1507C68 21.6522 71.6492 25.3014 76.1507 25.3014Z",1,"fill-color-17"],["d","M193.435 36.7899H142.709V35.7444H119.709V36.7899H68.7744C67.8644 36.7899 66.9917 37.1514 66.3482 37.7949C65.7048 38.4384 65.3433 39.3111 65.3433 40.2211V109.679C65.3433 110.589 65.7048 111.462 66.3482 112.106C66.9917 112.749 67.8644 113.111 68.7744 113.111H193.435C195.33 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.345 36.7899 193.435 36.7899Z",1,"fill-color-19"],["d","M192.266 42.8538H69.9434V111.856H192.266V42.8538Z",1,"fill-color-22"],["opacity","0.1","d","M157.284 111.856H69.9434V42.8538L157.284 111.856Z","fill","black"],["d","M89.0832 106.693C95.577 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.577 83.1766 89.0832 83.1766C82.5894 83.1766 77.3252 88.4408 77.3252 94.9346C77.3252 101.428 82.5894 106.693 89.0832 106.693Z",1,"fill-color-25"],["d","M91.7005 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7005 103.772ZM91.7005 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7005 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7005 74.7115Z",1,"fill-color-28"],["d","M170.967 80.0673H159.541V82.4548H170.967V80.0673Z",1,"fill-color-19"],["d","M184.781 61.4783H145.727V62.5015H184.781V61.4783Z",1,"fill-color-19"],["d","M184.781 64.7186H145.727V65.7418H184.781V64.7186Z",1,"fill-color-19"],["d","M184.781 67.9589H145.727V68.9821H184.781V67.9589Z",1,"fill-color-19"],["d","M184.781 71.1991H145.727V72.2224H184.781V71.1991Z",1,"fill-color-19"],["d","M184.781 74.4394H145.727V75.4626H184.781V74.4394Z",1,"fill-color-19"],["d","M184.781 44.2537H180.006V49.0288H184.781V44.2537Z",1,"fill-color-25"],["d","M186.998 51.2458H181.2V45.4474H186.998V51.2458ZM181.452 50.9937H186.746V45.6996H181.452V50.9937Z",1,"fill-color-19"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.115C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.261 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.042 109.589 156.01 109.621C155.978 109.653 155.96 109.696 155.96 109.741V110.601H153.402V109.741C153.402 109.696 153.384 109.653 153.352 109.621C153.32 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.089 109.589 114.057 109.621C114.025 109.653 114.007 109.696 114.007 109.741V110.601H111.449V109.741C111.449 109.696 111.431 109.653 111.399 109.621C111.367 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.148 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.4642V109.741C97.4642 109.696 97.4462 109.653 97.4142 109.621C97.3822 109.589 97.3388 109.571 97.2936 109.571H93.2006C93.1554 109.571 93.112 109.589 93.08 109.621C93.048 109.653 93.0301 109.696 93.0301 109.741V110.601H90.472V109.741C90.472 109.696 90.454 109.653 90.422 109.621C90.39 109.589 90.3467 109.571 90.3014 109.571H86.2085C86.1632 109.571 86.1198 109.589 86.0879 109.621C86.0559 109.653 86.0379 109.696 86.0379 109.741V110.601H83.4798V109.741C83.4798 109.696 83.4618 109.653 83.4299 109.621C83.3979 109.589 83.3545 109.571 83.3093 109.571H79.2163C79.171 109.571 79.1277 109.589 79.0957 109.621C79.0637 109.653 79.0457 109.696 79.0457 109.741V110.601H76.4876V109.741C76.4876 109.696 76.4697 109.653 76.4377 109.621C76.4057 109.589 76.3623 109.571 76.3171 109.571H72.2241C72.1789 109.571 72.1355 109.589 72.1035 109.621C72.0715 109.653 72.0536 109.696 72.0536 109.741V110.601H64.2087C61.9482 110.601 60.1157 112.434 60.1157 114.694V116.545C60.1157 118.806 61.9482 120.638 64.2087 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z",1,"fill-color-19"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8456 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9773 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1718L88.0762 87.0663C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5347 96.5996L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z",1,"fill-color-21"],["d","M42 75H9V91H42V75Z",1,"fill-color-17"],["d","M42 42H9V58H42V42Z",1,"fill-color-17"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint3_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint4_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint5_linear)"],["d","M205.185 113.031H193.247V112.171C193.247 112.125 193.229 112.082 193.197 112.05C193.165 112.018 193.121 112 193.076 112H188.983C188.938 112 188.895 112.018 188.863 112.05C188.831 112.082 188.813 112.125 188.813 112.171V113.031H186.254V112.171C186.254 112.125 186.237 112.082 186.205 112.05C186.173 112.018 186.129 112 186.084 112H181.991C181.946 112 181.902 112.018 181.87 112.05C181.838 112.082 181.82 112.125 181.82 112.171V113.031H179.262V112.171C179.262 112.125 179.244 112.082 179.212 112.05C179.18 112.018 179.137 112 179.092 112H174.999C174.954 112 174.91 112.018 174.878 112.05C174.846 112.082 174.828 112.125 174.828 112.171V113.031H172.27V112.171C172.27 112.125 172.252 112.082 172.22 112.05C172.188 112.018 172.145 112 172.1 112H168.007C167.961 112 167.918 112.018 167.886 112.05C167.854 112.082 167.836 112.125 167.836 112.171V113.031H165.278V112.171C165.278 112.125 165.26 112.082 165.228 112.05C165.196 112.018 165.153 112 165.107 112H161.014C160.969 112 160.926 112.018 160.894 112.05C160.862 112.082 160.844 112.125 160.844 112.171V113.031H158.286V112.171C158.286 112.125 158.268 112.082 158.236 112.05C158.204 112.018 158.16 112 158.115 112H154.022C153.977 112 153.934 112.018 153.902 112.05C153.87 112.082 153.852 112.125 153.852 112.171V113.031H151.294V112.171C151.294 112.125 151.276 112.082 151.244 112.05C151.212 112.018 151.168 112 151.123 112H119.061C119.016 112 118.973 112.018 118.941 112.05C118.909 112.082 118.891 112.125 118.891 112.171V113.031H116.333V112.171C116.333 112.125 116.315 112.082 116.283 112.05C116.251 112.018 116.207 112 116.162 112H112.069C112.024 112 111.981 112.018 111.949 112.05C111.917 112.082 111.899 112.125 111.899 112.171V113.031H109.341V112.171C109.341 112.125 109.323 112.082 109.291 112.05C109.259 112.018 109.215 112 109.17 112H105.077C105.032 112 104.988 112.018 104.956 112.05C104.924 112.082 104.907 112.125 104.907 112.171V113.031H102.348V112.171C102.348 112.125 102.33 112.082 102.298 112.05C102.266 112.018 102.223 112 102.178 112H98.0849C98.0397 112 97.9963 112.018 97.9643 112.05C97.9323 112.082 97.9144 112.125 97.9144 112.171V113.031H95.3563V112.171C95.3563 112.125 95.3383 112.082 95.3063 112.05C95.2743 112.018 95.2309 112 95.1857 112H91.0927C91.0475 112 91.0041 112.018 90.9721 112.05C90.9402 112.082 90.9222 112.125 90.9222 112.171V113.031H88.3641V112.171C88.3641 112.125 88.3461 112.082 88.3141 112.05C88.2822 112.018 88.2388 112 88.1935 112H84.1006C84.0553 112 84.0119 112.018 83.98 112.05C83.948 112.082 83.93 112.125 83.93 112.171V113.031H81.3719V112.171C81.3719 112.125 81.3539 112.082 81.322 112.05C81.29 112.018 81.2466 112 81.2014 112H77.1084C77.0632 112 77.0198 112.018 76.9878 112.05C76.9558 112.082 76.9378 112.125 76.9379 112.171V113.031H69.093C66.8325 113.031 65 114.863 65 117.124V118.974C65 121.235 66.8325 123.067 69.093 123.067H205.185C207.445 123.067 209.277 121.235 209.277 118.974V117.124C209.277 114.863 207.445 113.031 205.185 113.031Z",1,"fill-color-19"],["d","M78.375 20.625C78.375 19.5938 77.5312 18.75 76.5 18.75C75.4453 18.75 74.625 19.5938 74.625 20.625C74.625 21.6797 75.4453 22.5 76.5 22.5C77.5312 22.5 78.375 21.6797 78.375 20.625ZM74.8359 11.1094L75.1406 17.4844C75.1641 17.7656 75.4219 18 75.7031 18H77.2734C77.5547 18 77.8125 17.7656 77.8359 17.4844L78.1406 11.1094C78.1641 10.7812 77.9062 10.5 77.5781 10.5H75.3984C75.0703 10.5 74.8125 10.7812 74.8359 11.1094Z","fill","white"],["id","paint0_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["stop-color","#808080","stop-opacity","0.25"],["offset","0.54","stop-color","#808080","stop-opacity","0.12"],["offset","1","stop-color","#808080","stop-opacity","0.1"],["id","paint1_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["id","paint3_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["id","paint4_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint5_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 370 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M327.488 99.9755C350.953 99.9755 369.975 80.9531 369.975 57.4877C369.975 34.0224 350.953 15 327.488 15C304.022 15 285 34.0224 285 57.4877C285 80.9531 304.022 99.9755 327.488 99.9755Z",1,"fill-color-25"],["d","M115.068 85.6077H349.8V86.5722H113L115.068 85.6077Z",1,"fill-color-19"],["d","M236.776 84.376H226.024V91.544H236.776V84.376Z",1,"fill-color-primary-lighter"],["d","M218.856 87.96H233.192V79H218.856V87.96ZM232.569 87.5704H219.479V79.3896H232.569V87.5704Z",1,"fill-color-19"],["d","M265 57.3624H357.392V120.307H265V57.3624Z",1,"fill-color-22"],["d","M362.545 50H271.626C271.016 50.0009 270.521 50.495 270.521 51.1048V112.577C270.521 112.87 270.638 113.151 270.845 113.358C271.052 113.565 271.333 113.681 271.626 113.681H362.545C362.838 113.681 363.119 113.565 363.326 113.358C363.533 113.151 363.65 112.87 363.65 112.577V51.1048C363.65 50.495 363.155 50.0009 362.545 50ZM362.913 112.577C362.913 112.674 362.875 112.768 362.806 112.837C362.736 112.907 362.643 112.945 362.545 112.945H271.626C271.528 112.945 271.434 112.907 271.365 112.837C271.296 112.768 271.258 112.674 271.258 112.577V51.1048C271.258 50.9015 271.423 50.7365 271.626 50.7365H362.545C362.748 50.7365 362.913 50.9015 362.913 51.1048V112.577Z",1,"fill-color-19"],["d","M316.364 93.4359H275.844C275.547 93.4359 275.307 93.6766 275.307 93.9735V97.6835C275.307 97.9804 275.547 98.2211 275.844 98.2211H316.364C316.661 98.2211 316.901 97.9804 316.901 97.6835V93.9735C316.901 93.6766 316.661 93.4359 316.364 93.4359Z",1,"fill-color-19"],["d","M354.814 89.3873H341.565C341.272 89.3873 340.991 89.5036 340.784 89.7108C340.577 89.918 340.46 90.199 340.46 90.492V100.798C340.46 101.091 340.577 101.372 340.784 101.579C340.991 101.786 341.272 101.903 341.565 101.903H354.814C355.107 101.903 355.388 101.786 355.595 101.579C355.803 101.372 355.919 101.091 355.919 100.798V90.492C355.919 90.199 355.803 89.918 355.595 89.7108C355.388 89.5036 355.107 89.3873 354.814 89.3873ZM355.182 100.798C355.182 101.001 355.017 101.166 354.814 101.166H341.565C341.362 101.166 341.197 101.001 341.197 100.798V90.492C341.196 90.3943 341.235 90.3004 341.304 90.2313C341.373 90.1622 341.467 90.1235 341.565 90.1238H354.814C354.912 90.1235 355.006 90.1622 355.075 90.2313C355.144 90.3004 355.183 90.3943 355.182 90.492V100.798Z",1,"fill-color-19"],["d","M352.168 91.7653H344.211C343.914 91.7653 343.673 92.006 343.673 92.3029V93.0965C343.673 93.3934 343.914 93.6341 344.211 93.6341H352.168C352.465 93.6341 352.706 93.3934 352.706 93.0965V92.3029C352.706 92.006 352.465 91.7653 352.168 91.7653Z",1,"fill-color-19"],["d","M352.168 94.71H344.211C343.914 94.71 343.673 94.9507 343.673 95.2476V96.0412C343.673 96.3381 343.914 96.5788 344.211 96.5788H352.168C352.465 96.5788 352.706 96.3381 352.706 96.0412V95.2476C352.706 94.9507 352.465 94.71 352.168 94.71Z",1,"fill-color-19"],["d","M352.168 97.6548H344.211C343.914 97.6548 343.673 97.8955 343.673 98.1924V98.986C343.673 99.2829 343.914 99.5236 344.211 99.5236H352.168C352.465 99.5236 352.706 99.2829 352.706 98.986V98.1924C352.706 97.8955 352.465 97.6548 352.168 97.6548Z",1,"fill-color-19"],["d","M295.014 54.4177H276.949C276.652 54.4177 276.411 54.6584 276.411 54.9553V61.9782C276.411 62.2752 276.652 62.5158 276.949 62.5158H295.014C295.311 62.5158 295.552 62.2752 295.552 61.9782V54.9553C295.552 54.6584 295.311 54.4177 295.014 54.4177Z",1,"fill-color-19"],["d","M312.293 105.198C319.455 105.198 325.261 99.3917 325.261 92.2295C325.261 85.0672 319.455 79.2611 312.293 79.2611C305.131 79.2611 299.325 85.0672 299.325 92.2295C299.325 99.3917 305.131 105.198 312.293 105.198Z",1,"fill-color-25"],["d","M315.18 101.976C308.655 101.976 302.773 98.0462 300.276 92.0183C297.78 85.9904 299.16 79.052 303.773 74.4384C308.387 69.8249 315.325 68.4448 321.353 70.9416C327.381 73.4384 331.311 79.3205 331.311 85.8451C331.301 94.75 324.085 101.966 315.18 101.976ZM315.18 69.9245C306.387 69.9245 299.259 77.0524 299.259 85.8451C299.259 94.6377 306.387 101.766 315.18 101.766C323.973 101.766 331.1 94.6377 331.1 85.8451C331.09 77.0565 323.968 69.9345 315.18 69.9245Z",1,"fill-color-19"],["d","M309.677 100.883C309.936 100.948 310.216 100.873 310.41 100.673L318.163 92.664C318.571 92.2458 318.371 91.5387 317.802 91.3966L314.249 90.5107L316.557 86.8411C316.797 86.4038 316.558 85.8537 316.074 85.7332L311.64 84.6277C311.271 84.5355 310.888 84.7313 310.748 85.0854L307.92 92.2295C307.751 92.6583 307.998 93.1384 308.444 93.2497L312.099 94.161L309.186 99.7958C308.959 100.236 309.206 100.766 309.677 100.883Z",1,"fill-color-21"],["d","M88.6576 67.1775H1.48938V98.4248H88.6576V67.1775Z","fill","white"],["d","M59.8442 74.589H8.64417V90.6009H59.8442V74.589Z",1,"fill-color-primary-darker"],["d","M76.3175 90.6426C80.819 90.6426 84.4682 86.9934 84.4682 82.4919C84.4682 77.9904 80.819 74.3412 76.3175 74.3412C71.8159 74.3412 68.1667 77.9904 68.1667 82.4919C68.1667 86.9934 71.8159 90.6426 76.3175 90.6426Z",1,"fill-color-primary-darker"],["d","M88.6576 34.7129H1.48938V65.9602H88.6576V34.7129Z","fill","white"],["d","M59.8442 42.1244H8.64417V58.1363H59.8442V42.1244Z",1,"fill-color-primary-darker"],["d","M76.3175 58.1801C80.819 58.1801 84.4682 54.531 84.4682 50.0294C84.4682 45.5279 80.819 41.8787 76.3175 41.8787C71.8159 41.8787 68.1667 45.5279 68.1667 50.0294C68.1667 54.531 71.8159 58.1801 76.3175 58.1801Z",1,"fill-color-primary-darker"],["d","M88.6576 2.24824H1.48938V33.4955H88.6576V2.24824Z","fill","white"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-primary-darker"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-17"],["d","M76.7868 26.5736C81.6396 26.5736 85.5736 22.6396 85.5736 17.7868C85.5736 12.934 81.6396 9 76.7868 9C71.934 9 68 12.934 68 17.7868C68 22.6396 71.934 26.5736 76.7868 26.5736Z","fill","url(#paint0_linear)"],["d","M76.3174 59.0334C81.1702 59.0334 85.1042 55.0994 85.1042 50.2466C85.1042 45.3938 81.1702 41.4598 76.3174 41.4598C71.4646 41.4598 67.5306 45.3938 67.5306 50.2466C67.5306 55.0994 71.4646 59.0334 76.3174 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3174 91.4958C81.1702 91.4958 85.1042 87.5618 85.1042 82.709C85.1042 77.8562 81.1702 73.9222 76.3174 73.9222C71.4646 73.9222 67.5306 77.8562 67.5306 82.709C67.5306 87.5618 71.4646 91.4958 76.3174 91.4958Z","fill","url(#paint2_linear)"],["d","M193.434 36.7899H142.709V35.7444H119.708V36.7899H68.7742C67.8642 36.7899 66.9915 37.1514 66.348 37.7949C65.7045 38.4384 65.343 39.3111 65.343 40.2211V109.679C65.343 110.589 65.7045 111.462 66.348 112.106C66.9915 112.749 67.8642 113.111 68.7742 113.111H193.434C195.329 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.344 36.7899 193.434 36.7899Z",1,"fill-color-19"],["d","M192.265 42.8538H69.9432V111.856H192.265V42.8538Z",1,"fill-color-22"],["opacity","0.1","d","M157.283 111.856H69.9432V42.8538L157.283 111.856Z","fill","black"],["d","M89.0829 106.693C95.5767 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.5767 83.1766 89.0829 83.1766C82.5892 83.1766 77.325 88.4408 77.325 94.9346C77.325 101.428 82.5892 106.693 89.0829 106.693Z",1,"fill-color-25"],["d","M91.7004 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7004 103.772ZM91.7004 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7004 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7004 74.7115Z",1,"fill-color-28"],["d","M170.967 80.0672H159.541V82.4548H170.967V80.0672Z",1,"fill-color-19"],["d","M184.781 67.9588H145.727V68.9821H184.781V67.9588Z",1,"fill-color-19"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.114C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.26 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.041 109.589 156.009 109.621C155.977 109.653 155.96 109.696 155.96 109.741V110.601H153.401V109.741C153.401 109.696 153.383 109.653 153.351 109.621C153.319 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.088 109.589 114.056 109.621C114.024 109.653 114.006 109.696 114.006 109.741V110.601H111.448V109.741C111.448 109.696 111.43 109.653 111.398 109.621C111.366 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.147 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.464V109.741C97.464 109.696 97.4461 109.653 97.4141 109.621C97.3821 109.589 97.3387 109.571 97.2935 109.571H93.2005C93.1553 109.571 93.1119 109.589 93.0799 109.621C93.0479 109.653 93.03 109.696 93.03 109.741V110.601H90.4719V109.741C90.4719 109.696 90.4539 109.653 90.4219 109.621C90.3899 109.589 90.3465 109.571 90.3013 109.571H86.2083C86.1631 109.571 86.1197 109.589 86.0877 109.621C86.0558 109.653 86.0378 109.696 86.0378 109.741V110.601H83.4797V109.741C83.4797 109.696 83.4617 109.653 83.4297 109.621C83.3978 109.589 83.3544 109.571 83.3091 109.571H79.2162C79.1709 109.571 79.1276 109.589 79.0956 109.621C79.0636 109.653 79.0456 109.696 79.0456 109.741V110.601H76.4875V109.741C76.4875 109.696 76.4695 109.653 76.4376 109.621C76.4056 109.589 76.3622 109.571 76.317 109.571H72.224C72.1788 109.571 72.1354 109.589 72.1034 109.621C72.0714 109.653 72.0535 109.696 72.0535 109.741V110.601H64.2086C61.9481 110.601 60.1156 112.434 60.1156 114.694V116.545C60.1156 118.806 61.9481 120.638 64.2086 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z",1,"fill-color-19"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8457 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9774 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1719L88.0762 87.0664C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5348 96.5997L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z",1,"fill-color-21"],["d","M78.125 21.625C78.125 20.5938 77.2812 19.75 76.25 19.75C75.1953 19.75 74.375 20.5938 74.375 21.625C74.375 22.6797 75.1953 23.5 76.25 23.5C77.2812 23.5 78.125 22.6797 78.125 21.625ZM74.5859 12.1094L74.8906 18.4844C74.9141 18.7656 75.1719 19 75.4531 19H77.0234C77.3047 19 77.5625 18.7656 77.5859 18.4844L77.8906 12.1094C77.9141 11.7812 77.6562 11.5 77.3281 11.5H75.1484C74.8203 11.5 74.5625 11.7812 74.5859 12.1094Z","fill","white"],["id","paint0_linear","x1","76.7868","y1","26.5736","x2","76.7868","y2","9","gradientUnits","userSpaceOnUse"],["id","paint1_linear","x1","76.3174","y1","59.0334","x2","76.3174","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3174","y1","91.4958","x2","76.3174","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 153 200","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary-lighter"],["d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M122.399 37H32.25V137.616H122.399V37Z",1,"fill-color-10"],["d","M120.908 104.178H33.7394V135.425H120.908V104.178Z","fill","white"],["d","M92.0943 111.589H40.8943V127.601H92.0943V111.589Z",1,"fill-color-primary-darker"],["d","M108.567 127.643C113.069 127.643 116.718 123.993 116.718 119.492C116.718 114.99 113.069 111.341 108.567 111.341C104.066 111.341 100.417 114.99 100.417 119.492C100.417 123.993 104.066 127.643 108.567 127.643Z",1,"fill-color-primary-darker"],["d","M120.908 71.7129H33.7394V102.96H120.908V71.7129Z","fill","white"],["d","M92.0943 79.1244H40.8943V95.1363H92.0943V79.1244Z",1,"fill-color-primary-darker"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.531 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.531 104.066 95.1801 108.567 95.1801Z",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7394V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6738H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M74.5 112H40.5V128H74.5V112Z",1,"fill-color-17"],["d","M74.5 79H40.5V95H74.5V79Z",1,"fill-color-17"],["d","M91.8943 46.662H40.8943V62.662H91.8943V46.662Z",1,"fill-color-17"],["d","M108.567 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.567 45.778C103.715 45.778 99.7806 49.712 99.7806 54.5648C99.7806 59.4176 103.715 63.3516 108.567 63.3516Z","fill","url(#paint0_linear)"],["d","M108.567 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.567 78.4598C103.715 78.4598 99.7806 82.3938 99.7806 87.2466C99.7806 92.0994 103.715 96.0334 108.567 96.0334Z",1,"fill-color-17"],["d","M108.567 128.496C113.42 128.496 117.354 124.562 117.354 119.709C117.354 114.856 113.42 110.922 108.567 110.922C103.715 110.922 99.7806 114.856 99.7806 119.709C99.7806 124.562 103.715 128.496 108.567 128.496Z",1,"fill-color-17"],["d","M108.401 62.3014C112.902 62.3014 116.551 58.6522 116.551 54.1507C116.551 49.6492 112.902 46 108.401 46C103.899 46 100.25 49.6492 100.25 54.1507C100.25 58.6522 103.899 62.3014 108.401 62.3014Z",1,"fill-color-17"],["d","M110.625 57.625C110.625 56.5938 109.781 55.75 108.75 55.75C107.695 55.75 106.875 56.5938 106.875 57.625C106.875 58.6797 107.695 59.5 108.75 59.5C109.781 59.5 110.625 58.6797 110.625 57.625ZM107.086 48.1094L107.391 54.4844C107.414 54.7656 107.672 55 107.953 55H109.523C109.805 55 110.062 54.7656 110.086 54.4844L110.391 48.1094C110.414 47.7812 110.156 47.5 109.828 47.5H107.648C107.32 47.5 107.062 47.7812 107.086 48.1094Z","fill","white"],["d","M141.711 111C141.008 111 140.656 111.859 141.164 112.367L146.164 117.367C146.477 117.68 146.984 117.68 147.297 117.367L152.297 112.367C152.805 111.859 152.453 111 151.75 111H141.711Z",1,"fill-color-17"],["d","M84.25 185.461C84.25 184.758 83.3906 184.406 82.8828 184.914L77.8828 189.914C77.5703 190.227 77.5703 190.734 77.8828 191.047L82.8828 196.047C83.3906 196.555 84.25 196.203 84.25 195.5V185.461Z",1,"fill-color-primary-darker"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z",1,"fill-color-primary-darker"],["d","M133.75 174C142.31 174 149.25 167.06 149.25 158.5C149.25 149.94 142.31 143 133.75 143C125.19 143 118.25 149.94 118.25 158.5C118.25 167.06 125.19 174 133.75 174Z",1,"fill-color-25"],["d","M129.872 169.64C130.214 169.726 130.584 169.628 130.84 169.363L141.093 158.771C141.633 158.218 141.369 157.283 140.616 157.095L135.917 155.924L138.969 151.071C139.286 150.493 138.97 149.765 138.331 149.606L132.468 148.144C131.979 148.022 131.473 148.281 131.287 148.749L127.548 158.197C127.324 158.764 127.65 159.399 128.241 159.546L133.074 160.751L129.222 168.203C128.921 168.785 129.249 169.485 129.872 169.64Z",1,"fill-color-21"],["d","M19.75 174C28.3104 174 35.25 167.06 35.25 158.5C35.25 149.94 28.3104 143 19.75 143C11.1896 143 4.25 149.94 4.25 158.5C4.25 167.06 11.1896 174 19.75 174Z",1,"fill-color-25"],["d","M19.3208 167.769C23.2973 167.769 26.5208 164.545 26.5208 160.569C26.5208 156.592 23.2973 153.369 19.3208 153.369C15.3444 153.369 12.1208 156.592 12.1208 160.569C12.1208 164.545 15.3444 167.769 19.3208 167.769Z",1,"fill-color-22"],["d","M13.7656 153.188L12.4676 152.716C12.4676 152.716 15.1815 150.002 18.9572 150.238L17.8953 149.177C17.8953 149.177 20.4911 148.233 22.851 150.71C24.0915 152.013 25.5268 153.544 26.4216 155.269H27.8116L27.2314 156.429L29.2619 157.589L27.1778 157.381C27.3752 158.383 27.3073 159.418 26.9807 160.386L26.5087 161.684C26.5087 161.684 24.6208 157.908 24.6208 157.436V158.616C24.6208 158.616 23.3229 157.554 23.3229 156.846L22.615 157.672L22.261 156.374L17.8953 157.672L18.6032 156.61L15.8894 156.964L16.9514 155.666C16.9514 155.666 13.8836 157.2 13.7656 158.498C13.6476 159.796 12.1137 161.448 12.1137 161.448L11.4058 160.268C11.4058 160.268 10.3438 154.958 13.7656 153.188Z",1,"fill-color-21"],["d","M76.75 31C68.1896 31 61.25 24.0604 61.25 15.5C61.25 6.93959 68.1896 0 76.75 0C85.3104 0 92.25 6.93959 92.25 15.5C92.25 24.0604 85.3104 31 76.75 31Z",1,"fill-color-25"],["d","M77.1792 24.7687C73.2027 24.7687 69.9792 21.5452 69.9792 17.5687C69.9792 13.5923 73.2027 10.3687 77.1792 10.3687C81.1556 10.3687 84.3792 13.5923 84.3792 17.5687C84.3792 21.5452 81.1556 24.7687 77.1792 24.7687Z",1,"fill-color-22"],["d","M82.7344 10.1883L84.0324 9.71628C84.0324 9.71628 81.3185 7.00246 77.5428 7.23845L78.6047 6.17651C78.6047 6.17651 76.0089 5.23258 73.649 7.71041C72.4085 9.01295 70.9732 10.544 70.0784 12.2687H68.6884L69.2686 13.429L67.2381 14.5893L69.3222 14.3808C69.1248 15.3825 69.1927 16.4184 69.5193 17.3858L69.9913 18.6837C69.9913 18.6837 71.8792 14.9079 71.8792 14.4359V15.6159C71.8792 15.6159 73.1771 14.5539 73.1771 13.846L73.885 14.6719L74.239 13.374L78.6047 14.6719L77.8968 13.61L80.6106 13.964L79.5486 12.6661C79.5486 12.6661 82.6164 14.2 82.7344 15.4979C82.8524 16.7958 84.3863 18.4477 84.3863 18.4477L85.0942 17.2678C85.0942 17.2678 86.1562 11.9581 82.7344 10.1883Z",1,"fill-color-21"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.786 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.542 141.365 153.936Z",1,"fill-color-21"],["d","M140.968 160.376C141.521 160.376 141.968 159.928 141.968 159.376C141.968 158.823 141.521 158.376 140.968 158.376C140.416 158.376 139.968 158.823 139.968 159.376C139.968 159.928 140.416 160.376 140.968 160.376Z",1,"fill-color-22"],["d","M129.168 160.376C129.721 160.376 130.168 159.928 130.168 159.376C130.168 158.823 129.721 158.376 129.168 158.376C128.616 158.376 128.168 158.823 128.168 159.376C128.168 159.928 128.616 160.376 129.168 160.376Z",1,"fill-color-22"],["d","M135.068 165.276C138.272 165.276 140.868 162.679 140.868 159.476C140.868 156.272 138.272 153.676 135.068 153.676C131.865 153.676 129.268 156.272 129.268 159.476C129.268 162.679 131.865 165.276 135.068 165.276Z",1,"fill-color-22"],["d","M140.384 153.575L136.049 151.304L130.062 152.233L128.824 157.704L131.907 157.585L132.768 155.576V157.552L134.191 157.498L135.017 154.298L135.533 157.704L140.591 157.601L140.384 153.575Z",1,"fill-color-21"],["d","M79.4007 199.301C83.9022 199.301 87.5514 195.652 87.5514 191.151C87.5514 186.649 83.9022 183 79.4007 183C74.8992 183 71.25 186.649 71.25 191.151C71.25 195.652 74.8992 199.301 79.4007 199.301Z",1,"fill-color-17"],["d","M82.9375 189.25H80.2188L81.2266 186.227C81.3203 185.852 81.0391 185.5 80.6875 185.5H77.3125C77.0313 185.5 76.7735 185.711 76.75 185.992L76 191.617C75.9531 191.969 76.211 192.25 76.5625 192.25H79.3281L78.25 196.82C78.1797 197.172 78.4375 197.5 78.7891 197.5C79 197.5 79.1875 197.406 79.2813 197.219L83.4063 190.094C83.6406 189.742 83.3594 189.25 82.9375 189.25Z","fill","white"],["d","M106.555 91.8125C106.789 92.0469 107.188 92.0469 107.422 91.8125L114.312 84.9219C114.547 84.6875 114.547 84.2891 114.312 84.0547L113.469 83.2109C113.234 82.9766 112.859 82.9766 112.625 83.2109L107 88.8359L104.352 86.2109C104.117 85.9766 103.742 85.9766 103.508 86.2109L102.664 87.0547C102.43 87.2891 102.43 87.6875 102.664 87.9219L106.555 91.8125Z","fill","white"],["d","M106.555 124.812C106.789 125.047 107.188 125.047 107.422 124.812L114.312 117.922C114.547 117.688 114.547 117.289 114.312 117.055L113.469 116.211C113.234 115.977 112.859 115.977 112.625 116.211L107 121.836L104.352 119.211C104.117 118.977 103.742 118.977 103.508 119.211L102.664 120.055C102.43 120.289 102.43 120.688 102.664 120.922L106.555 124.812Z","fill","white"],["id","paint0_linear","x1","108.567","y1","63.3516","x2","108.567","y2","45.778","gradientUnits","userSpaceOnUse"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M120.908 104.177H33.7393V135.425H120.908V104.177Z","fill","white"],["d","M120.908 71.7129H33.7393V102.96H120.908V71.7129Z","fill","white"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.5309 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.5309 104.066 95.1801 108.567 95.1801Z",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7393V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6739H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M76 112H41V128H76V112Z",1,"fill-color-17"],["d","M70 79H41V95H70V79Z",1,"fill-color-17"],["d","M70 47H41V63H70V47Z",1,"fill-color-17"],["d","M108.568 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.568 45.778C103.715 45.778 99.7808 49.712 99.7808 54.5648C99.7808 59.4176 103.715 63.3516 108.568 63.3516Z","fill","url(#paint0_linear)"],["d","M108.568 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.568 78.4598C103.715 78.4598 99.7808 82.3938 99.7808 87.2466C99.7808 92.0994 103.715 96.0334 108.568 96.0334Z",1,"fill-color-17"],["d","M108.568 129.496C113.42 129.496 117.354 125.562 117.354 120.709C117.354 115.856 113.42 111.922 108.568 111.922C103.715 111.922 99.7808 115.856 99.7808 120.709C99.7808 125.562 103.715 129.496 108.568 129.496Z",1,"fill-color-17"],["d","M106.805 91.8125C107.039 92.0469 107.438 92.0469 107.672 91.8125L114.562 84.9219C114.797 84.6875 114.797 84.2891 114.562 84.0547L113.719 83.2109C113.484 82.9766 113.109 82.9766 112.875 83.2109L107.25 88.8359L104.602 86.2109C104.367 85.9766 103.992 85.9766 103.758 86.2109L102.914 87.0547C102.68 87.2891 102.68 87.6875 102.914 87.9219L106.805 91.8125Z","fill","white"],["d","M106.805 58.8125C107.039 59.0469 107.438 59.0469 107.672 58.8125L114.562 51.9219C114.797 51.6875 114.797 51.2891 114.562 51.0547L113.719 50.2109C113.484 49.9766 113.109 49.9766 112.875 50.2109L107.25 55.8359L104.602 53.2109C104.367 52.9766 103.992 52.9766 103.758 53.2109L102.914 54.0547C102.68 54.2891 102.68 54.6875 102.914 54.9219L106.805 58.8125Z","fill","white"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z",1,"fill-color-17"],["d","M77.1792 24.7688C73.2027 24.7688 69.9792 21.5452 69.9792 17.5688C69.9792 13.5923 73.2027 10.3688 77.1792 10.3688C81.1556 10.3688 84.3792 13.5923 84.3792 17.5688C84.3792 21.5452 81.1556 24.7688 77.1792 24.7688Z",1,"fill-color-22"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.785 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.543 141.365 153.936Z",1,"fill-color-21"],["d","M82.9374 189.25H80.2186L81.2265 186.227C81.3202 185.852 81.039 185.5 80.6874 185.5H77.3124C77.0311 185.5 76.7733 185.711 76.7499 185.992L75.9999 191.617C75.953 191.969 76.2108 192.25 76.5624 192.25H79.328L78.2499 196.82C78.1796 197.172 78.4374 197.5 78.789 197.5C78.9999 197.5 79.1874 197.406 79.2811 197.219L83.4061 190.094C83.6405 189.742 83.3593 189.25 82.9374 189.25Z","fill","white"],["id","paint0_linear","x1","108.568","y1","63.3516","x2","108.568","y2","45.778","gradientUnits","userSpaceOnUse"]],template:function(a,o){if(1&a&&t.DNE(0,Vs,1,0,"ng-container",5)(1,Os,47,5,"ng-template",null,0,t.C5r)(3,Hs,96,5,"ng-template",null,1,t.C5r)(5,Ys,68,5,"ng-template",null,2,t.C5r)(7,Xs,53,5,"ng-template",null,3,t.C5r)(9,Us,52,5,"ng-template",null,4,t.C5r),2&a){const l=t.sdS(2),m=t.sdS(4),u=t.sdS(6),T=t.sdS(8),F=t.sdS(10);t.Y8G("ngTemplateOutlet",1===o.stepNumber?l:2===o.stepNumber?m:3===o.stepNumber?u:4===o.stepNumber?T:F)}},dependencies:[d.YU,d.T3,x.Lc,x.dh,_.DJ,_.sA,_.UI,v.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:10%;min-height:10%;max-width:50%;margin:auto}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:50%;margin:auto}"],data:{animation:[$s.k]}}))}return i(),s})();const Js=["stepper"],qs=()=>[1,2,3,4,5],Qs=(i,s)=>({"dot-primary":i,"dot-primary-lighter":s});function Zs(i,s){if(1&i&&t.EFF(0),2&i){const e=t.XpG(2);t.JRh(e.inputFormLabel)}}function Ws(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function Ks(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount must be a positive number."),t.k0s())}function tl(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.SpI("Amount must be less than or equal to ",null==e.selChannel?null:e.selChannel.toLocal,".")}}function el(i,s){if(1&i&&(t.j41(0,"mat-option",50),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.Y8G("value",e),t.R7$(),t.Lme("",e.alias," - ",e.shortChannelId)}}function nl(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Receive from Peer is required."),t.k0s())}function il(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Receive from Peer not found in the list."),t.k0s())}function al(i,s){1&i&&t.EFF(0,"Status")}function ol(i,s){1&i&&t.nrm(0,"mat-progress-bar",51)}function sl(i,s){if(1&i&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(""!==e.rebalanceStatus.invoice?"check":"close")}}function ll(i,s){1&i&&t.nrm(0,"mat-progress-bar",51)}function rl(i,s){if(1&i&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.rebalanceStatus.paymentRoute?"check":"close")}}function cl(i,s){if(1&i&&(t.j41(0,"span",42),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.SpI(" ",e," ")}}function ml(i,s){if(1&i&&(t.j41(0,"div",7),t.DNE(1,cl,2,1,"span",53),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.rebalanceStatus.paymentRoute.split(","))}}function pl(i,s){1&i&&t.nrm(0,"mat-progress-bar",51)}function ul(i,s){if(1&i&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(!e.rebalanceStatus.paymentStatus||null!=e.rebalanceStatus.paymentStatus&&e.rebalanceStatus.paymentStatus.error?"close":"check")}}function dl(i,s){1&i&&t.nrm(0,"div",7)}function hl(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",54),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onRestart())}),t.EFF(1,"Start Again"),t.k0s()}}function fl(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",7)(1,"mat-card-header",8)(2,"div",9)(3,"div",10)(4,"span",11),t.EFF(5,"Channel Rebalance"),t.k0s()(),t.j41(6,"div",12)(7,"button",13),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.showInfo())}),t.EFF(8,"?"),t.k0s(),t.j41(9,"button",14),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onClose())}),t.EFF(10,"X"),t.k0s()()()(),t.j41(11,"mat-card-content",15)(12,"div",7)(13,"div",16)(14,"div",17),t.nrm(15,"fa-icon",18),t.j41(16,"span"),t.EFF(17,"Circular Rebalance is a payment you make to *yourself* to affect a relative change in the balances of two channels. This is accomplished by sending payment out from the selected channel and receiving it back on the channel with the selected peer. Please note, you will be paying routing fee to balance the channels in this manner."),t.k0s()()(),t.j41(18,"div",19)(19,"p",20)(20,"strong"),t.EFF(21,"Channel Peer:\xa0"),t.k0s(),t.EFF(22),t.nI1(23,"titlecase"),t.k0s(),t.j41(24,"p",20)(25,"strong"),t.EFF(26,"Channel ID:\xa0"),t.k0s(),t.EFF(27),t.k0s()(),t.j41(28,"mat-vertical-stepper",21,3)(30,"mat-step",22)(31,"form",23),t.DNE(32,Zs,1,1,"ng-template",24),t.j41(33,"div",25)(34,"mat-form-field",26)(35,"mat-label"),t.EFF(36,"Amount"),t.k0s(),t.nrm(37,"input",27),t.j41(38,"mat-hint"),t.EFF(39),t.k0s(),t.j41(40,"span",28),t.EFF(41,"Sats"),t.k0s(),t.DNE(42,Ws,2,0,"mat-error",29)(43,Ks,2,0,"mat-error",29)(44,tl,2,1,"mat-error",29),t.k0s(),t.j41(45,"mat-form-field",30)(46,"mat-label"),t.EFF(47,"Receive from Peer"),t.k0s(),t.j41(48,"input",31),t.bIt("change",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onSelectedPeerChanged())}),t.k0s(),t.j41(49,"mat-autocomplete",32,4),t.bIt("optionSelected",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onSelectedPeerChanged())}),t.DNE(51,el,2,3,"mat-option",33),t.nI1(52,"async"),t.k0s(),t.DNE(53,nl,2,0,"mat-error",29)(54,il,2,0,"mat-error",29),t.k0s()(),t.j41(55,"div",34)(56,"button",35),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onRebalance())}),t.EFF(57,"Rebalance"),t.k0s()()()(),t.j41(58,"mat-step",36)(59,"form",23),t.DNE(60,al,1,0,"ng-template",24),t.j41(61,"div",37),t.DNE(62,ol,1,0,"mat-progress-bar",38),t.j41(63,"mat-expansion-panel",39)(64,"mat-expansion-panel-header")(65,"mat-panel-title")(66,"span",40),t.EFF(67),t.DNE(68,sl,2,1,"mat-icon",41),t.k0s()()(),t.j41(69,"div",7)(70,"span",42),t.EFF(71),t.k0s()()(),t.DNE(72,ll,1,0,"mat-progress-bar",38),t.j41(73,"mat-expansion-panel",39)(74,"mat-expansion-panel-header")(75,"mat-panel-title")(76,"span",40),t.EFF(77),t.DNE(78,rl,2,1,"mat-icon",41),t.k0s()()(),t.DNE(79,ml,2,1,"div",5),t.k0s(),t.DNE(80,pl,1,0,"mat-progress-bar",38),t.j41(81,"mat-expansion-panel",43)(82,"mat-expansion-panel-header")(83,"mat-panel-title")(84,"span",40),t.EFF(85),t.DNE(86,ul,2,1,"mat-icon",41),t.k0s()()(),t.DNE(87,dl,1,0,"div",44),t.k0s()(),t.j41(88,"h4",45),t.EFF(89),t.k0s(),t.j41(90,"div",46),t.DNE(91,hl,2,0,"button",47),t.k0s()()()(),t.j41(92,"div",48)(93,"button",49),t.EFF(94,"Close"),t.k0s()()()()()}if(2&i){const e=t.sdS(50),n=t.XpG(),a=t.sdS(2);t.Y8G("@opacityAnimation",void 0),t.R7$(15),t.Y8G("icon",n.faInfoCircle),t.R7$(7),t.JRh(t.bMT(23,38,n.selChannel.alias)),t.R7$(5),t.JRh(n.selChannel.shortChannelId),t.R7$(),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",n.inputFormGroup)("editable",n.flgEditable),t.R7$(),t.Y8G("formGroup",n.inputFormGroup),t.R7$(6),t.Y8G("step",100),t.R7$(2),t.Lme("(Local Bal: ",null==n.selChannel?null:n.selChannel.toLocal,", Remaining: ",(null==n.selChannel?null:n.selChannel.toLocal)-(n.inputFormGroup.controls.rebalanceAmount.value?n.inputFormGroup.controls.rebalanceAmount.value:0),")"),t.R7$(3),t.Y8G("ngIf",null==n.inputFormGroup.controls.rebalanceAmount.errors?null:n.inputFormGroup.controls.rebalanceAmount.errors.required),t.R7$(),t.Y8G("ngIf",null==n.inputFormGroup.controls.rebalanceAmount.errors?null:n.inputFormGroup.controls.rebalanceAmount.errors.min),t.R7$(),t.Y8G("ngIf",null==n.inputFormGroup.controls.rebalanceAmount.errors?null:n.inputFormGroup.controls.rebalanceAmount.errors.max),t.R7$(4),t.Y8G("matAutocomplete",e),t.R7$(),t.Y8G("displayWith",n.displayFn),t.R7$(2),t.Y8G("ngForOf",t.bMT(52,40,n.filteredActiveChannels)),t.R7$(2),t.Y8G("ngIf",null==n.inputFormGroup.controls.selRebalancePeer.errors?null:n.inputFormGroup.controls.selRebalancePeer.errors.required),t.R7$(),t.Y8G("ngIf",null==n.inputFormGroup.controls.selRebalancePeer.errors?null:n.inputFormGroup.controls.selRebalancePeer.errors.notfound),t.R7$(4),t.Y8G("stepControl",n.statusFormGroup),t.R7$(),t.Y8G("formGroup",n.statusFormGroup),t.R7$(3),t.Y8G("ngIf",""===n.rebalanceStatus.invoice),t.R7$(5),t.JRh(""===n.rebalanceStatus.invoice?"Searching invoice...":n.rebalanceStatus.flgReusingInvoice?"Invoice re-used":"Invoice generated"),t.R7$(),t.Y8G("ngIf",""!==n.rebalanceStatus.invoice),t.R7$(3),t.JRh(n.rebalanceStatus.invoice),t.R7$(),t.Y8G("ngIf",!(null!=n.rebalanceStatus.paymentStatus&&n.rebalanceStatus.paymentStatus.error||n.rebalanceStatus.paymentRoute||"pending"===(null==n.rebalanceStatus.paymentStatus?null:n.rebalanceStatus.paymentStatus.type))),t.R7$(5),t.JRh(null!=n.rebalanceStatus.paymentStatus&&n.rebalanceStatus.paymentStatus.error?"Route failed":n.rebalanceStatus.paymentRoute?"Route used":"Searching route..."),t.R7$(),t.Y8G("ngIf",n.rebalanceStatus.paymentStatus),t.R7$(),t.Y8G("ngIf",""!==n.rebalanceStatus.paymentRoute),t.R7$(),t.Y8G("ngIf",!n.rebalanceStatus.paymentStatus),t.R7$(),t.Y8G("expanded",!!n.rebalanceStatus.paymentStatus),t.R7$(4),t.JRh(n.rebalanceStatus.paymentStatus&&"pending"!==(null==n.rebalanceStatus.paymentStatus?null:n.rebalanceStatus.paymentStatus.type)?null!=n.rebalanceStatus.paymentStatus&&n.rebalanceStatus.paymentStatus.error?"Payment failed":"sent"===(null==n.rebalanceStatus.paymentStatus?null:n.rebalanceStatus.paymentStatus.type)?"Payment successful":"":"Payment status pending..."),t.R7$(),t.Y8G("ngIf",n.rebalanceStatus.paymentStatus&&"pending"!==(null==n.rebalanceStatus.paymentStatus?null:n.rebalanceStatus.paymentStatus.type)),t.R7$(),t.Y8G("ngIf",!n.rebalanceStatus.paymentStatus)("ngIfElse",a),t.R7$(2),t.JRh(n.rebalanceStatus.paymentStatus?n.rebalanceStatus.paymentStatus&&null!=n.rebalanceStatus.paymentStatus&&n.rebalanceStatus.paymentStatus.error?"Rebalance Failed.":"Rebalance Successful.":""),t.R7$(2),t.Y8G("ngIf",n.rebalanceStatus.paymentStatus&&n.rebalanceStatus.paymentStatus.error),t.R7$(2),t.Y8G("mat-dialog-close",!1)}}function _l(i,s){1&i&&t.eu8(0)}function gl(i,s){if(1&i&&t.DNE(0,_l,1,0,"ng-container",55),2&i){const e=t.XpG(),n=t.sdS(4),a=t.sdS(6);t.Y8G("ngTemplateOutlet",e.rebalanceStatus.paymentStatus.error?n:a)}}function Cl(i,s){if(1&i&&(t.j41(0,"div",7)(1,"span",42),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.SpI("Error: ",e.rebalanceStatus.paymentStatus.error)}}function yl(i,s){if(1&i&&(t.j41(0,"div",7)(1,"div",56)(2,"div",57)(3,"h4",58),t.EFF(4,"Total Fees (Sats)"),t.k0s(),t.j41(5,"span",42),t.EFF(6),t.k0s()(),t.j41(7,"div",57)(8,"h4",58),t.EFF(9,"Number of Hops"),t.k0s(),t.j41(10,"span",42),t.EFF(11),t.k0s()()(),t.nrm(12,"mat-divider",59),t.j41(13,"div",56)(14,"div",60)(15,"h4",58),t.EFF(16,"Payment Hash"),t.k0s(),t.j41(17,"span",42),t.EFF(18),t.k0s()()(),t.nrm(19,"mat-divider",59),t.j41(20,"div",56)(21,"div",60)(22,"h4",58),t.EFF(23,"Payment ID"),t.k0s(),t.j41(24,"span",42),t.EFF(25),t.k0s()()(),t.nrm(26,"mat-divider",59),t.j41(27,"div",56)(28,"div",60)(29,"h4",58),t.EFF(30,"Parent ID"),t.k0s(),t.j41(31,"span",42),t.EFF(32),t.k0s()()()()),2&i){let e;const n=t.XpG();t.R7$(6),t.JRh(n.rebalanceStatus.paymentStatus.feesPaid?n.rebalanceStatus.paymentStatus.feesPaid/1e3:0),t.R7$(5),t.JRh(n.rebalanceStatus.paymentRoute&&""!==n.rebalanceStatus.paymentRoute?null==(e=n.rebalanceStatus.paymentRoute.split(","))?null:e.length:0),t.R7$(7),t.JRh(n.rebalanceStatus.paymentHash),t.R7$(7),t.JRh(n.rebalanceStatus.paymentDetails.paymentId),t.R7$(7),t.JRh(n.rebalanceStatus.paymentDetails.parentId)}}function bl(i,s){if(1&i){const e=t.RV6();t.j41(0,"span",76),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onStepChanged(a))}),t.nrm(1,"p",77),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngClass",t.l_i(1,Qs,n.stepNumber===e,n.stepNumber!==e))}}function Fl(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",78),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onStepChanged(4))}),t.EFF(1,"Back"),t.k0s()}}function El(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",79),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return a.flgShowInfo=!1,r.Njj(a.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function xl(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",80),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return a.flgShowInfo=!1,r.Njj(a.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function Ll(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",81),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onStepChanged(a.stepNumber-1))}),t.EFF(1,"Back"),t.k0s()}}function Sl(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",82),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onStepChanged(a.stepNumber+1))}),t.EFF(1,"Next"),t.k0s()}}function vl(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",61)(1,"div",62)(2,"mat-card-header",63)(3,"div",64),t.nrm(4,"span",11),t.k0s(),t.j41(5,"div",65)(6,"button",14),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return a.flgShowInfo=!1,r.Njj(a.stepNumber=1)}),t.EFF(7,"X"),t.k0s()()(),t.j41(8,"mat-card-content",66)(9,"rtl-ecl-channel-rebalance-infographics",67),t.mxI("stepNumberChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.stepNumber,a)||(o.stepNumber=a),r.Njj(a)}),t.k0s()(),t.j41(10,"div",68),t.DNE(11,bl,2,4,"span",69),t.k0s(),t.j41(12,"div",70),t.DNE(13,Fl,2,0,"button",71)(14,El,2,0,"button",72)(15,xl,2,0,"button",73)(16,Ll,2,0,"button",74)(17,Sl,2,0,"button",75),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@opacityAnimation",void 0),t.R7$(9),t.Y8G("animationDirection",e.animationDirection),t.R50("stepNumber",e.stepNumber),t.R7$(2),t.Y8G("ngForOf",t.lJ4(9,qs)),t.R7$(2),t.Y8G("ngIf",5===e.stepNumber),t.R7$(),t.Y8G("ngIf",5===e.stepNumber),t.R7$(),t.Y8G("ngIf",e.stepNumber<5),t.R7$(),t.Y8G("ngIf",e.stepNumber>1&&e.stepNumber<5),t.R7$(),t.Y8G("ngIf",e.stepNumber<5)}}let Rl=(()=>{var i;class s{constructor(n,a,o,l,m,u,T){this.dialogRef=n,this.data=a,this.logger=o,this.dataService=l,this.formBuilder=m,this.store=u,this.decimalPipe=T,this.faInfoCircle=E.iW_,this.information={},this.selChannel={},this.activeChannels=[],this.rebalanceStatus={flgReusingInvoice:!1,invoice:"",paymentRoute:"",paymentHash:"",paymentDetails:null,paymentStatus:null},this.inputFormLabel="Amount to rebalance",this.flgEditable=!0,this.flgShowInfo=!1,this.stepNumber=1,this.animationDirection="forward",this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){let n="",a="";this.information=this.data.message?.information||{},this.selChannel=this.data.message?.selChannel||{},this.activeChannels=this.data.message?.channels?.filter(o=>o.channelId!==this.selChannel.channelId&&o.toRemote&&o.toRemote>0)||[],this.activeChannels=this.activeChannels.sort((o,l)=>(n=o.alias?o.alias.toLowerCase():o.shortChannelId?o.shortChannelId.toLowerCase():"",a=l.alias?l.alias.toLowerCase():o.shortChannelId?o.shortChannelId.toLowerCase():"",na?1:0)),this.inputFormGroup=this.formBuilder.group({rebalanceAmount:["",[f.k0.required,f.k0.min(1),f.k0.max(this.selChannel.toLocal||0)]],selRebalancePeer:[null,f.k0.required]}),this.statusFormGroup=this.formBuilder.group({}),this.inputFormGroup.get("rebalanceAmount")?.valueChanges.pipe((0,g.Q)(this.unSubs[0]),(0,yt.Z)(0)).subscribe(o=>{this.inputFormGroup.controls.selRebalancePeer.setValue(""),this.inputFormGroup.controls.selRebalancePeer.setErrors(null),this.filteredActiveChannels=(0,Ft.of)(o?this.filterActiveChannels():this.activeChannels.slice())}),this.inputFormGroup.get("selRebalancePeer")?.valueChanges.pipe((0,g.Q)(this.unSubs[1]),(0,yt.Z)("")).subscribe(o=>{"string"==typeof o&&(this.filteredActiveChannels=(0,Ft.of)(this.filterActiveChannels()))})}stepSelectionChanged(n){switch(n.selectedIndex){case 0:default:this.inputFormLabel="Amount to rebalance";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.alias?this.inputFormGroup.controls.selRebalancePeer.value.alias:this.inputFormGroup.controls.selRebalancePeer.value.nodeId.substring(0,15)+"..."):"Amount to rebalance"}}onRebalance(){if(!this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.rebalanceAmount.value<=0||this.selChannel.toLocal&&this.inputFormGroup.controls.rebalanceAmount.value>+this.selChannel.toLocal||!this.inputFormGroup.controls.selRebalancePeer.value.nodeId)return this.inputFormGroup.controls.selRebalancePeer.value.nodeId||this.inputFormGroup.controls.selRebalancePeer.setErrors({required:!0}),!0;this.stepper.next(),this.flgEditable=!1,this.rebalanceStatus={flgReusingInvoice:!1,invoice:"",paymentRoute:"",paymentHash:"",paymentDetails:null,paymentStatus:null},this.dataService.circularRebalance(1e3*this.inputFormGroup.controls.rebalanceAmount.value,this.selChannel.shortChannelId,this.selChannel.nodeId,this.inputFormGroup.controls.selRebalancePeer.value.shortChannelId,this.inputFormGroup.controls.selRebalancePeer.value.nodeId,[this.information.nodeId||""]).pipe((0,g.Q)(this.unSubs[2])).subscribe({next:n=>{this.logger.info(n),this.rebalanceStatus=n,this.flgEditable=!0,this.store.dispatch((0,j.$Q)())},error:n=>{this.logger.error(n),this.rebalanceStatus=n,this.flgEditable=!0}})}filterActiveChannels(){return this.activeChannels?.filter(n=>n.toRemote&&n.toRemote>=this.inputFormGroup.controls.rebalanceAmount.value&&n.channelId!==this.selChannel.channelId&&(0===n.alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")||0===n.channelId?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")))}onSelectedPeerChanged(){if(this.inputFormGroup.controls.selRebalancePeer.value&&this.inputFormGroup.controls.selRebalancePeer.value.length>0&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value){const n=this.activeChannels?.filter(a=>a.alias?.length===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===a.alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""));n&&n.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(n[0]),this.inputFormGroup.controls.selRebalancePeer.setErrors(null)):this.inputFormGroup.controls.selRebalancePeer.setErrors({notfound:!0})}}displayFn(n){return n&&n.alias?n.alias:n&&n.shortChannelId?n.shortChannelId:""}showInfo(){this.flgShowInfo=!0}onStepChanged(n){this.animationDirection=n{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(V.Vh),t.rXU(A.gP),t.rXU(nt.u),t.rXU(f.ok),t.rXU(I.il),t.rXU(d.QX))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-rebalance"]],viewQuery:function(a,o){if(1&a&&t.GBs(Js,5),2&a){let l;t.mGM(l=t.lsd())&&(o.stepper=l.first)}},standalone:!1,decls:8,vars:2,consts:[["paymentStatusBlock",""],["paymentFailedBlock",""],["paymentSuccessfulBlock",""],["stepper",""],["auto","matAutocomplete"],["fxLayout","column",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column"],[1,"modal-info-header"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayoutAlign","start center"],[1,"page-title"],["fxLayoutAlign","end center"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch",1,"padding-gap-large"],["fxFlex","46"],[3,"linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","rebalanceAmount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start end"],["type","text","aria-label","Receive from Peer","matInput","","formControlName","selRebalancePeer","tabindex","2","required","",3,"change","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","8","type","submit",3,"click"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxFlex","100",1,"flat-expansion-panel","mb-2"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[1,"foreground-secondary-text"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayoutAlign","start",1,"font-bold-500","mt-1"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-1"],["mat-button","","color","primary","tabindex","11","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],[3,"value"],["fxFlex","100","color","primary","mode","indeterminate"],[1,"ml-1","icon-small"],["class","foreground-secondary-text",4,"ngFor","ngForOf"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[4,"ngTemplateOutlet"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],["fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["tabindex","21","fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(a,o){1&a&&t.DNE(0,fl,95,42,"div",5)(1,gl,1,1,"ng-template",null,0,t.C5r)(3,Cl,3,1,"ng-template",null,1,t.C5r)(5,yl,33,5,"ng-template",null,2,t.C5r)(7,vl,18,10,"div",6),2&a&&(t.Y8G("ngIf",!o.flgShowInfo),t.R7$(7),t.Y8G("ngIf",o.flgShowInfo))},dependencies:[d.YU,d.Sq,d.bT,d.T3,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.j4,f.JD,D.aY,V.tx,N.$z,x.m2,x.MM,U.GK,U.Z2,U.WN,ut.An,Y.fg,y.rl,y.nJ,y.MV,y.TL,y.yw,tt.q,H.HM,_.DJ,_.sA,_.UI,v.PW,z.wT,at.V5,at.Ti,at.M6,ct.$3,ct.pN,et.N,zs,d.Jj,d.PV],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[Et.C]}}))}return i(),s})();const kl=()=>["all"],Il=i=>({"error-border":i}),Tl=()=>["no_peer"],xt=i=>({width:i}),wl=i=>({"display-none":i});function jl(i,s){if(1&i&&(t.j41(0,"mat-option",36),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function Dl(i,s){1&i&&t.nrm(0,"mat-progress-bar",37)}function Pl(i,s){1&i&&t.nrm(0,"th",38)}function Gl(i,s){if(1&i&&(t.j41(0,"span",42),t.nrm(1,"fa-icon",43),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function Al(i,s){if(1&i&&(t.j41(0,"span",44),t.nrm(1,"fa-icon",43),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function Nl(i,s){if(1&i&&(t.j41(0,"td",39),t.DNE(1,Gl,2,1,"span",40)(2,Al,2,1,"span",41),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf",!(null!=e&&e.announceChannel)),t.R7$(),t.Y8G("ngIf",null==e?null:e.announceChannel)}}function Bl(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Short Channel ID"),t.k0s())}function Ml(i,s){if(1&i&&(t.j41(0,"td",39),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.shortChannelId)}}function $l(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Channel ID"),t.k0s())}function Vl(i,s){if(1&i&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,xt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Ol(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Alias"),t.k0s())}function Hl(i,s){if(1&i&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,xt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function Yl(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Node ID"),t.k0s())}function Xl(i,s){if(1&i&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,xt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Ul(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Initiator"),t.k0s())}function zl(i,s){if(1&i&&(t.j41(0,"td",39),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function Jl(i,s){1&i&&(t.j41(0,"th",48),t.EFF(1,"Base Fee (mSats)"),t.k0s())}function ql(i,s){if(1&i&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.feeBaseMsat,"1.0-0")," ")}}function Ql(i,s){1&i&&(t.j41(0,"th",48),t.EFF(1,"Fee Rate (mili mSats)"),t.k0s())}function Zl(i,s){if(1&i&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.feeProportionalMillionths,"1.0-0")," ")}}function Wl(i,s){1&i&&(t.j41(0,"th",48),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function Kl(i,s){if(1&i&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function tr(i,s){1&i&&(t.j41(0,"th",48),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function er(i,s){if(1&i&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function nr(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Balance Score"),t.k0s())}function ir(i,s){if(1&i&&(t.j41(0,"td",39)(1,"div",50)(2,"mat-hint",51),t.EFF(3),t.nI1(4,"number"),t.k0s()(),t.nrm(5,"mat-progress-bar",52),t.k0s()),2&i){const e=s.$implicit;t.R7$(3),t.JRh(t.bMT(4,3,(null==e?null:e.balancedness)||0)),t.R7$(2),t.Y8G("value",t.mNQ(null!=e&&e.toLocal&&(null==e?null:e.toLocal)>0?+(null==e?null:e.toLocal)/(+(null==e?null:e.toLocal)+ +(null==e?null:e.toRemote))*100:0))}}function ar(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",53)(1,"div",54)(2,"mat-select",55),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",56),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onChannelUpdate("all"))}),t.EFF(5,"Update Fee Policy"),t.k0s(),t.j41(6,"mat-option",56),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onDownloadCSV())}),t.EFF(7,"Download CSV"),t.k0s()()()()}}function or(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",57)(1,"div",54)(2,"mat-select",58),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",56),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG();return r.Njj(l.onChannelClick(o,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",56),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onChannelUpdate(a))}),t.EFF(7,"Update Fee Policy"),t.k0s(),t.j41(8,"mat-option",56),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onCircularRebalance(a))}),t.EFF(9,"Circular Rebalance"),t.k0s(),t.j41(10,"mat-option",56),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onChannelClose(a,!1))}),t.EFF(11,"Close Channel"),t.k0s(),t.j41(12,"mat-option",56),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onChannelClose(a,!0))}),t.EFF(13,"Force Close"),t.k0s()()()()}}function sr(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No peers connected. Add a peer in order to open a channel."),t.k0s())}function lr(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No channel available."),t.k0s())}function rr(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting channels..."),t.k0s())}function cr(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function mr(i,s){if(1&i&&(t.j41(0,"td",59),t.DNE(1,sr,2,0,"p",60)(2,lr,2,0,"p",60)(3,rr,2,0,"p",60)(4,cr,2,1,"p",60),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",e.numPeers<1&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",e.numPeers>0&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function pr(i,s){if(1&i&&t.nrm(0,"tr",61),2&i){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,wl,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function ur(i,s){1&i&&t.nrm(0,"tr",62)}function dr(i,s){1&i&&t.nrm(0,"tr",63)}let hr=(()=>{var i;class s{constructor(n,a,o,l,m,u){this.logger=n,this.store=a,this.rtlEffects=o,this.commonService=l,this.router=m,this.camelCaseWithSpaces=u,this.faEye=E.pS3,this.faEyeSlash=E.k6j,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open_channels",recordsPerPage:c.md,sortBy:"alias",sortOrder:c.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new p.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=c.G,this.selFilter="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("announceChannel"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.activeChannels=n.activeChannels,this.activeChannels&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(),this.logger.info(n)}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.information=n}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.numPeers=n.peers&&n.peers.length?n.peers.length:0}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[4])).subscribe(n=>{this.totalBalance=n.onchainBalance.total||0})}ngAfterViewInit(){this.activeChannels&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable()}onCircularRebalance(n){this.store.dispatch((0,k.xO)({payload:{data:{message:{channels:this.activeChannels,selChannel:n,information:this.information},component:Rl}}}))}onChannelUpdate(n){"all"!==n&&n?.state&&"NORMAL"!==n?.state||(this.store.dispatch((0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:[],titleMessage:"string"==typeof n&&"all"===n?"Update fee policy for all channels":"Update fee policy for Channel: "+(n?.alias||n?.shortChannelId?n?.alias&&n?.shortChannelId?n?.alias+" ("+n?.shortChannelId+")":n?.alias?n?.alias:n?.shortChannelId:n?.channelId),flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:c.UN.NUMBER,inputValue:n&&typeof n?.feeBaseMsat<"u"?n?.feeBaseMsat:1e3,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:c.UN.NUMBER,inputValue:n&&typeof n?.feeProportionalMillionths<"u"?n?.feeProportionalMillionths:100,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(l=>{if(l){const m=l[0].inputValue,u=l[1].inputValue;let T=null;if(this.commonService.isVersionCompatible(this.information.version,"0.6.2")){let F="";"all"===n?(this.activeChannels.forEach(G=>{F=F+","+G.nodeId}),F=F.substring(1),T={baseFeeMsat:m,feeRate:u,nodeIds:F}):T={baseFeeMsat:m,feeRate:u,nodeId:n?.nodeId}}else{let F="";"all"===n?(this.activeChannels.forEach(G=>{F=F+","+G.channelId}),F=F.substring(1),T={baseFeeMsat:m,feeRate:u,channelIds:F}):T={baseFeeMsat:m,feeRate:u,channelId:n?.channelId}}this.store.dispatch((0,j.fy)({payload:T}))}}),this.applyFilter())}percentHintFunction(n){return(n/1e4).toString()+"%"}onChannelClose(n,a){this.store.dispatch((0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:a?"Force Close Channel":"Close Channel",titleMessage:a?"Force closing channel: "+(n.alias||n.shortChannelId?n.alias&&n.shortChannelId?n.alias+" ("+n.shortChannelId+")":n.alias?n.alias:n.shortChannelId:n.channelId):"Closing channel: "+(n.alias||n.shortChannelId?n.alias&&n.shortChannelId?n.alias+" ("+n.shortChannelId+")":n.alias?n.alias:n.shortChannelId:n.channelId),noBtnText:"Cancel",yesBtnText:a?"Force Close":"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[6])).subscribe(u=>{u&&this.store.dispatch((0,j.w0)({payload:{channelId:n.channelId,force:a}}))})}onChannelClick(n,a){this.store.dispatch((0,k.xO)({payload:{data:{channel:n,channelsType:"open",component:bt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):"announceChannel"===n?"Private":this.commonService.titleCase(n)}setFilterPredicate(){this.channels.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=JSON.stringify(n).toLowerCase();break;case"announceChannel":o=n?.announceChannel?"public":"private";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}loadChannelsTable(){this.channels=new p.I6([...this.activeChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(n,a)=>n[a]&&isNaN(n[a])?n[a].toLocaleLowerCase():n[a]?+n[a]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"ActiveChannels")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(lt.H),t.rXU($.h),t.rXU(L.Ix),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-open-table"]],viewQuery:function(a,o){if(1&a&&(t.GBs(S.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Channels")}])],decls:60,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","announceChannel"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","shortChannelId"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","channelId"],["matColumnDef","alias"],["matColumnDef","nodeId"],["matColumnDef","isInitiator"],["matColumnDef","feeBaseMsat"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","feeProportionalMillionths"],["matColumnDef","toLocal"],["matColumnDef","toRemote"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","5",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2),t.nrm(2,"div",3),t.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),t.EFF(6,"Filter By"),t.k0s(),t.j41(7,"mat-select",6),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilterBy,u)||(o.selFilterBy=u),r.Njj(u)}),t.bIt("selectionChange",function(){return r.eBV(l),o.selFilter="",r.Njj(o.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,jl,2,2,"mat-option",7),t.k0s()()(),t.j41(10,"mat-form-field",5)(11,"mat-label"),t.EFF(12,"Filter"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilter,u)||(o.selFilter=u),r.Njj(u)}),t.bIt("input",function(){return r.eBV(l),r.Njj(o.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(o.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,Dl,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,Pl,1,0,"th",13)(20,Nl,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,Bl,2,0,"th",16)(23,Ml,2,1,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,$l,2,0,"th",16)(26,Vl,4,4,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,Ol,2,0,"th",16)(29,Hl,4,4,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,Yl,2,0,"th",16)(32,Xl,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,Ul,2,0,"th",16)(35,zl,2,1,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,Jl,2,0,"th",22)(38,ql,4,4,"td",14),t.bVm(),t.qex(39,23),t.DNE(40,Ql,2,0,"th",22)(41,Zl,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,Wl,2,0,"th",22)(44,Kl,4,4,"td",14),t.bVm(),t.qex(45,25),t.DNE(46,tr,2,0,"th",22)(47,er,4,4,"td",14),t.bVm(),t.qex(48,26),t.DNE(49,nr,2,0,"th",16)(50,ir,6,5,"td",14),t.bVm(),t.qex(51,27),t.DNE(52,ar,8,0,"th",28)(53,or,14,0,"td",29),t.bVm(),t.qex(54,30),t.DNE(55,mr,5,4,"td",31),t.bVm(),t.DNE(56,pr,1,3,"tr",32)(57,ur,1,0,"tr",33)(58,dr,1,0,"tr",34),t.k0s()(),t.nrm(59,"mat-paginator",35),t.k0s()}2&a&&(t.R7$(7),t.R50("ngModel",o.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,kl).concat(o.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",o.selFilter),t.R7$(2),t.Y8G("ngIf",o.apiCallStatus.status===o.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",o.tableSetting.sortBy)("matSortDirection",o.tableSetting.sortOrder)("dataSource",o.channels)("ngClass",t.eq3(15,Il,""!==o.errorMessage)),t.R7$(40),t.Y8G("matFooterRowDef",t.lJ4(17,Tl)),t.R7$(),t.Y8G("matHeaderRowDef",o.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",o.displayedColumns),t.R7$(),t.Y8G("pageSize",o.pageSize)("pageSizeOptions",o.pageSizeOptions)("hidePageSize",o.screenSize!==o.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.me,f.BC,f.vS,D.aY,Y.fg,y.rl,y.nJ,y.MV,H.HM,_.DJ,_.sA,_.UI,v.PW,v.eI,R.VO,R.$2,z.wT,S.B4,S.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld,d.QX],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]}))}return i(),s})();const fr=()=>["all"],_r=i=>({"error-border":i}),gr=()=>["no_channel"],Vt=i=>({width:i}),Cr=i=>({"display-none":i});function yr(i,s){if(1&i&&(t.j41(0,"mat-option",33),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function br(i,s){1&i&&t.nrm(0,"mat-progress-bar",34)}function Fr(i,s){1&i&&t.nrm(0,"th",35)}function Er(i,s){if(1&i&&(t.j41(0,"span",39),t.nrm(1,"fa-icon",40),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function xr(i,s){if(1&i&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",40),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function Lr(i,s){if(1&i&&(t.j41(0,"td",36),t.DNE(1,Er,2,1,"span",37)(2,xr,2,1,"span",38),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf",!(null!=e&&e.announceChannel)),t.R7$(),t.Y8G("ngIf",null==e?null:e.announceChannel)}}function Sr(i,s){1&i&&(t.j41(0,"th",42),t.EFF(1,"State"),t.k0s())}function vr(i,s){if(1&i&&(t.j41(0,"td",36),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.state))}}function Rr(i,s){1&i&&(t.j41(0,"th",42),t.EFF(1,"Channel ID"),t.k0s())}function kr(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Vt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Ir(i,s){1&i&&(t.j41(0,"th",42),t.EFF(1,"Alias"),t.k0s())}function Tr(i,s){if(1&i&&(t.j41(0,"td",36),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.alias)}}function wr(i,s){1&i&&(t.j41(0,"th",42),t.EFF(1,"Node ID"),t.k0s())}function jr(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Vt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Dr(i,s){1&i&&(t.j41(0,"th",42),t.EFF(1,"Initiator"),t.k0s())}function Pr(i,s){if(1&i&&(t.j41(0,"td",36),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function Gr(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function Ar(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",46),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function Nr(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function Br(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",46),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function Mr(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",50),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function $r(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",51)(1,"button",52),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG();return r.Njj(l.onChannelClick(o,a))}),t.EFF(2,"View Info"),t.k0s()()}}function Vr(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No pending channel available."),t.k0s())}function Or(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting pending channels..."),t.k0s())}function Hr(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function Yr(i,s){if(1&i&&(t.j41(0,"td",53),t.DNE(1,Vr,2,0,"p",54)(2,Or,2,0,"p",54)(3,Hr,2,1,"p",54),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function Xr(i,s){if(1&i&&t.nrm(0,"tr",55),2&i){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,Cr,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function Ur(i,s){1&i&&t.nrm(0,"tr",56)}function zr(i,s){1&i&&t.nrm(0,"tr",57)}let Jr=(()=>{var i;class s{constructor(n,a,o,l){this.logger=n,this.store=a,this.commonService=o,this.camelCaseWithSpaces=l,this.faEye=E.pS3,this.faEyeSlash=E.k6j,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"pending_channels",recordsPerPage:c.md,sortBy:"alias",sortOrder:c.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new p.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=c.G,this.selFilter="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("announceChannel"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.pendingChannels=n.pendingChannels,this.loadChannelsTable(),this.logger.info(n)}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.information=n}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.numPeers=n.peers&&n.peers.length?n.peers.length:0}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[4])).subscribe(n=>{this.totalBalance=n.onchainBalance.total||0})}ngAfterViewInit(){this.pendingChannels.length>0&&this.loadChannelsTable()}onChannelClick(n,a){this.store.dispatch((0,k.xO)({payload:{data:{channel:n,channelsType:"pending",component:bt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):"announceChannel"===n?"Private":this.commonService.titleCase(n)}setFilterPredicate(){this.channels.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=JSON.stringify(n).toLowerCase();break;case"announceChannel":o=n?.announceChannel?"public":"private";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}loadChannelsTable(){this.channels=new p.I6([...this.pendingChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(n,a)=>n[a]&&isNaN(n[a])?n[a].toLocaleLowerCase():n[a]?+n[a]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"PendingChannels")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU($.h),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-pending-table"]],viewQuery:function(a,o){if(1&a&&(t.GBs(S.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Channels")}])],decls:51,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","announceChannel"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","channelId"],["matColumnDef","alias"],["matColumnDef","nodeId"],["matColumnDef","isInitiator"],["matColumnDef","toLocal"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","toRemote"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2),t.nrm(2,"div",3),t.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),t.EFF(6,"Filter By"),t.k0s(),t.j41(7,"mat-select",6),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilterBy,u)||(o.selFilterBy=u),r.Njj(u)}),t.bIt("selectionChange",function(){return r.eBV(l),o.selFilter="",r.Njj(o.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,yr,2,2,"mat-option",7),t.k0s()()(),t.j41(10,"mat-form-field",5)(11,"mat-label"),t.EFF(12,"Filter"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilter,u)||(o.selFilter=u),r.Njj(u)}),t.bIt("input",function(){return r.eBV(l),r.Njj(o.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(o.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,br,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,Fr,1,0,"th",13)(20,Lr,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,Sr,2,0,"th",16)(23,vr,3,3,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,Rr,2,0,"th",16)(26,kr,4,4,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,Ir,2,0,"th",16)(29,Tr,2,1,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,wr,2,0,"th",16)(32,jr,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,Dr,2,0,"th",16)(35,Pr,2,1,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,Gr,2,0,"th",22)(38,Ar,4,4,"td",14),t.bVm(),t.qex(39,23),t.DNE(40,Nr,2,0,"th",22)(41,Br,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,Mr,6,0,"th",25)(44,$r,3,0,"td",26),t.bVm(),t.qex(45,27),t.DNE(46,Yr,4,3,"td",28),t.bVm(),t.DNE(47,Xr,1,3,"tr",29)(48,Ur,1,0,"tr",30)(49,zr,1,0,"tr",31),t.k0s()(),t.nrm(50,"mat-paginator",32),t.k0s()}2&a&&(t.R7$(7),t.R50("ngModel",o.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,fr).concat(o.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",o.selFilter),t.R7$(2),t.Y8G("ngIf",o.apiCallStatus.status===o.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",o.tableSetting.sortBy)("matSortDirection",o.tableSetting.sortOrder)("dataSource",o.channels)("ngClass",t.eq3(15,_r,""!==o.errorMessage)),t.R7$(31),t.Y8G("matFooterRowDef",t.lJ4(17,gr)),t.R7$(),t.Y8G("matHeaderRowDef",o.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",o.displayedColumns),t.R7$(),t.Y8G("pageSize",o.pageSize)("pageSizeOptions",o.pageSizeOptions)("hidePageSize",o.screenSize!==o.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.me,f.BC,f.vS,D.aY,N.$z,Y.fg,y.rl,y.nJ,H.HM,_.DJ,_.sA,_.UI,v.PW,v.eI,R.VO,R.$2,z.wT,S.B4,S.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld,d.QX,d.PV],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return i(),s})();const qr=()=>["all"],Qr=i=>({"error-border":i}),Zr=()=>["no_peer"],Ot=i=>({"mr-0":i}),Ht=i=>({width:i}),Wr=i=>({"display-none":i});function Kr(i,s){if(1&i&&(t.j41(0,"mat-option",35),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function t1(i,s){1&i&&t.nrm(0,"mat-progress-bar",36)}function e1(i,s){1&i&&t.nrm(0,"th",37)}function n1(i,s){if(1&i&&t.nrm(0,"span",41),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ot,e.screenSize===e.screenSizeEnum.XS))}}function i1(i,s){if(1&i&&t.nrm(0,"span",42),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ot,e.screenSize===e.screenSizeEnum.XS))}}function a1(i,s){if(1&i&&(t.j41(0,"td",38),t.DNE(1,n1,1,3,"span",39)(2,i1,1,3,"span",40),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf","CONNECTED"===e.state),t.R7$(),t.Y8G("ngIf","DISCONNECTED"===e.state)}}function o1(i,s){1&i&&(t.j41(0,"th",43),t.EFF(1,"Alias"),t.k0s())}function s1(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",44)(2,"span",45),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ht,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function l1(i,s){1&i&&(t.j41(0,"th",43),t.EFF(1,"Node ID"),t.k0s())}function r1(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",44)(2,"span",45),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ht,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function c1(i,s){1&i&&(t.j41(0,"th",43),t.EFF(1,"Network Address"),t.k0s())}function m1(i,s){if(1&i&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.SpI(" ",null==e?null:e.address," ")}}function p1(i,s){1&i&&(t.j41(0,"th",43),t.EFF(1,"Channels"),t.k0s())}function u1(i,s){if(1&i&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.channels)}}function d1(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",46)(1,"div",47)(2,"mat-select",48),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",49),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function h1(i,s){if(1&i){const e=t.RV6();t.j41(0,"mat-option",49),t.bIt("click",function(){r.eBV(e);const a=t.XpG().$implicit,o=t.XpG();return r.Njj(o.onPeerDetach(a))}),t.EFF(1,"Disconnect"),t.k0s()}}function f1(i,s){if(1&i){const e=t.RV6();t.j41(0,"mat-option",49),t.bIt("click",function(){r.eBV(e);const a=t.XpG().$implicit,o=t.XpG();return r.Njj(o.onConnectPeer(a))}),t.EFF(1,"Reconnect"),t.k0s()}}function _1(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",50)(1,"div",47)(2,"mat-select",48),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",49),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG();return r.Njj(l.onPeerClick(o,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",49),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onOpenChannel(a))}),t.EFF(7,"Open Channel"),t.k0s(),t.DNE(8,h1,2,0,"mat-option",51)(9,f1,2,0,"mat-option",51),t.k0s()()()}if(2&i){const e=s.$implicit;t.R7$(8),t.Y8G("ngIf","CONNECTED"===e.state),t.R7$(),t.Y8G("ngIf","DISCONNECTED"===e.state)}}function g1(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No connected peer."),t.k0s())}function C1(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting peers..."),t.k0s())}function y1(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function b1(i,s){if(1&i&&(t.j41(0,"td",52),t.DNE(1,g1,2,0,"p",53)(2,C1,2,0,"p",53)(3,y1,2,1,"p",53),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function F1(i,s){if(1&i&&t.nrm(0,"tr",54),2&i){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,Wr,(null==e.peers?null:e.peers.data)&&(null==e.peers||null==e.peers.data?null:e.peers.data.length)>0))}}function E1(i,s){1&i&&t.nrm(0,"tr",55)}function x1(i,s){1&i&&t.nrm(0,"tr",56)}let L1=(()=>{var i;class s{constructor(n,a,o,l,m,u){this.logger=n,this.store=a,this.rtlEffects=o,this.actions=l,this.commonService=m,this.camelCaseWithSpaces=u,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:c.md,sortBy:"alias",sortOrder:c.oi.DESCENDING},this.faUsers=E.gdJ,this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.peers=new p.I6([]),this.information={},this.availableBalance=0,this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.information=n}),this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("state"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=n.peers,this.loadPeersTable(this.peersData),this.logger.info(n)}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.availableBalance=n.onchainBalance.total||0}),this.actions.pipe((0,g.Q)(this.unSubs[4]),(0,X.p)(n=>n.type===c.Uu.SET_PEERS_ECL)).subscribe(n=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(n,a){const o=[[{key:"nodeId",value:n.nodeId,title:"Public Key",width:100}],[{key:"address",value:n.address,title:"Address",width:50},{key:"alias",value:n.alias,title:"Alias",width:50}],[{key:"state",value:this.commonService.titleCase(n.state||""),title:"State",width:50},{key:"channels",value:n.channels,title:"Channels",width:50}]];this.store.dispatch((0,k.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:n.nodeId,goToName:"Graph lookup",goToLink:"/ecl/graph/lookups",showQRName:"Public Key",showQRField:n.nodeId,message:o}}}))}onConnectPeer(n){this.store.dispatch((0,k.xO)({payload:{data:{message:{peer:n.nodeId?n:null,information:this.information,balance:this.availableBalance},component:At}}}))}onOpenChannel(n){this.store.dispatch((0,k.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:n,information:this.information,balance:this.availableBalance},newlyAdded:!1,component:$t}}}))}onPeerDetach(n){this.store.dispatch(n&&n.channels&&n.channels>0?(0,k.xO)({payload:{data:{type:c.A$.ERROR,alertTitle:"Disconnect Not Allowed",titleMessage:"Channel active with this peer."}}}):(0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(n.alias?n.alias:n.nodeId),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(a=>{a&&this.store.dispatch((0,j.Lc)({payload:{nodeId:n.nodeId||""}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.peers.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=JSON.stringify(n).toLowerCase();break;case"state":o=n?.state?.toLowerCase()||"";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return"state"===this.selFilterBy?0===o.indexOf(a):o.includes(a)}}loadPeersTable(n){this.peers=new p.I6(n?[...n]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.peers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(lt.H),t.rXU(K.En),t.rXU($.h),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-peers"]],viewQuery:function(a,o){if(1&a&&(t.GBs(S.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Peers")}])],decls:50,vars:19,consts:[["peersForm","ngForm"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","nodeId"],["matColumnDef","address"],["matColumnDef","channels"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State"],["mat-cell",""],["class","dot green","matTooltip","Connected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Disconnected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Connected","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Disconnected","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",2)(1,"form",3,0)(3,"button",4),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onConnectPeer({}))}),t.EFF(4,"Add Peer"),t.k0s()(),t.j41(5,"div",5)(6,"div",6)(7,"div",7),t.nrm(8,"fa-icon",8),t.j41(9,"span",9),t.EFF(10,"Peers"),t.k0s()(),t.j41(11,"div",10)(12,"mat-form-field",11)(13,"mat-label"),t.EFF(14,"Filter By"),t.k0s(),t.j41(15,"mat-select",12),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilterBy,u)||(o.selFilterBy=u),r.Njj(u)}),t.bIt("selectionChange",function(){return r.eBV(l),o.selFilter="",r.Njj(o.applyFilter())}),t.j41(16,"perfect-scrollbar"),t.DNE(17,Kr,2,2,"mat-option",13),t.k0s()()(),t.j41(18,"mat-form-field",11)(19,"mat-label"),t.EFF(20,"Filter"),t.k0s(),t.j41(21,"input",14),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilter,u)||(o.selFilter=u),r.Njj(u)}),t.bIt("input",function(){return r.eBV(l),r.Njj(o.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(o.applyFilter())}),t.k0s()()()(),t.j41(22,"div",15),t.DNE(23,t1,1,0,"mat-progress-bar",16),t.j41(24,"table",17,1),t.qex(26,18),t.DNE(27,e1,1,0,"th",19)(28,a1,3,2,"td",20),t.bVm(),t.qex(29,21),t.DNE(30,o1,2,0,"th",22)(31,s1,4,4,"td",20),t.bVm(),t.qex(32,23),t.DNE(33,l1,2,0,"th",22)(34,r1,4,4,"td",20),t.bVm(),t.qex(35,24),t.DNE(36,c1,2,0,"th",22)(37,m1,2,1,"td",20),t.bVm(),t.qex(38,25),t.DNE(39,p1,2,0,"th",22)(40,u1,2,1,"td",20),t.bVm(),t.qex(41,26),t.DNE(42,d1,6,0,"th",27)(43,_1,10,2,"td",28),t.bVm(),t.qex(44,29),t.DNE(45,b1,4,3,"td",30),t.bVm(),t.DNE(46,F1,1,3,"tr",31)(47,E1,1,0,"tr",32)(48,x1,1,0,"tr",33),t.k0s()(),t.nrm(49,"mat-paginator",34),t.k0s()()}2&a&&(t.R7$(8),t.Y8G("icon",o.faUsers),t.R7$(7),t.R50("ngModel",o.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,qr).concat(o.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",o.selFilter),t.R7$(2),t.Y8G("ngIf",o.apiCallStatus.status===o.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",o.tableSetting.sortBy)("matSortDirection",o.tableSetting.sortOrder)("dataSource",o.peers)("ngClass",t.eq3(16,Qr,""!==o.errorMessage)),t.R7$(22),t.Y8G("matFooterRowDef",t.lJ4(18,Zr)),t.R7$(),t.Y8G("matHeaderRowDef",o.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",o.displayedColumns),t.R7$(),t.Y8G("pageSize",o.pageSize)("pageSizeOptions",o.pageSizeOptions)("hidePageSize",o.screenSize!==o.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.qT,f.me,f.BC,f.cb,f.vS,f.cV,D.aY,N.$z,Y.fg,y.rl,y.nJ,H.HM,_.DJ,_.sA,_.UI,v.PW,v.eI,R.VO,R.$2,z.wT,S.B4,S.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld],styles:[".mat-column-state[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return i(),s})();const S1=["queryRoutesForm"],v1=i=>({"overflow-auto error-border":i,"overflow-auto":!0}),Yt=i=>({"max-width":i});function R1(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Destination Node ID is required."),t.k0s())}function k1(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function I1(i,s){1&i&&t.nrm(0,"mat-progress-bar",23)}function T1(i,s){1&i&&(t.j41(0,"th",40),t.EFF(1," Alias"),t.k0s())}function w1(i,s){if(1&i&&(t.j41(0,"td",41)(1,"span",42)(2,"span",43),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,Yt,n.screenSize===n.screenSizeEnum.XS?"6rem":"30rem")),t.R7$(2),t.JRh(null==e?null:e.alias)}}function j1(i,s){1&i&&(t.j41(0,"th",40),t.EFF(1," ID"),t.k0s())}function D1(i,s){if(1&i&&(t.j41(0,"td",41)(1,"span",42)(2,"span",43),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,Yt,n.screenSize===n.screenSizeEnum.XS?"6rem":"30rem")),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function P1(i,s){1&i&&(t.j41(0,"th",40)(1,"div",44),t.EFF(2,"Actions"),t.k0s()())}function G1(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",45)(1,"button",46),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onHopClick(a))}),t.EFF(2,"View Info"),t.k0s()()}}function A1(i,s){1&i&&t.nrm(0,"tr",47)}function N1(i,s){1&i&&t.nrm(0,"tr",48)}function B1(i,s){if(1&i&&(t.j41(0,"div",24)(1,"mat-expansion-panel",25)(2,"mat-expansion-panel-header")(3,"mat-panel-title",26)(4,"span",27),t.EFF(5),t.k0s(),t.j41(6,"span",28),t.EFF(7),t.nI1(8,"number"),t.k0s()()(),t.j41(9,"mat-panel-description",29)(10,"div",30)(11,"table",31,2),t.qex(13,32),t.DNE(14,T1,2,0,"th",33)(15,w1,4,4,"td",34),t.bVm(),t.qex(16,35),t.DNE(17,j1,2,0,"th",33)(18,D1,4,4,"td",34),t.bVm(),t.qex(19,36),t.DNE(20,P1,3,0,"th",33)(21,G1,3,0,"td",37),t.bVm(),t.DNE(22,A1,1,0,"tr",38)(23,N1,1,0,"tr",39),t.k0s()()()()()),2&i){const e=s.$implicit,n=s.index,a=t.XpG();t.R7$(5),t.SpI("Route ",n+1),t.R7$(2),t.JRh(t.bMT(8,6,e.amount/1e3)),t.R7$(4),t.Y8G("dataSource",a.qrHops[n])("ngClass",t.eq3(8,v1,"error"===a.flgLoading[0])),t.R7$(11),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns)}}let M1=(()=>{var i;class s{constructor(n,a,o){this.store=n,this.eclEffects=a,this.commonService=o,this.allQRoutes=[],this.nodeId="",this.amount=0,this.qrHops=[],this.displayedColumns=["alias","nodeId","actions"],this.flgLoading=[!1],this.faRoute=E.TBz,this.faExclamationTriangle=E.zpE,this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.qrHops[0]=new p.I6([]),this.qrHops[0].data=[],this.eclEffects.setQueryRoutes.pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{n&&n.routes&&n.routes.length?(this.flgLoading[0]=!1,this.allQRoutes=n.routes,this.allQRoutes.forEach((a,o)=>{this.qrHops[o]=new p.I6([...a.nodeIds])})):(this.flgLoading[0]="error",this.allQRoutes=[],this.qrHops=[])})}onQueryRoutes(){if(!this.nodeId||!this.amount)return!0;this.qrHops=[],this.flgLoading[0]=!0,this.store.dispatch((0,j.T4)({payload:{nodeId:this.nodeId,amount:1e3*this.amount}}))}resetData(){this.allQRoutes=[],this.nodeId="",this.amount=0,this.flgLoading[0]=!1,this.qrHops=[],this.form.resetForm()}onHopClick(n){this.store.dispatch((0,k.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"alias",value:n.alias,title:"Alias",width:100,type:c.UN.STRING}],[{key:"nodeId",value:n.nodeId,title:"Node ID",width:100,type:c.UN.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(I.il),t.rXU(ht.B),t.rXU($.h))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-query-routes"]],viewQuery:function(a,o){if(1&a&&t.GBs(S1,7),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first)}},standalone:!1,decls:32,vars:10,consts:[["queryRoutesForm","ngForm"],["destPubkey","ngModel"],["table[i]",""],["fxLayout","column"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","nodeId","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"ngModelChange","step","min","ngModel"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-3","mb-1"],["fxFlex","70","fxLayoutAlign","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","column","fxFlex","100"],["fxFlex","100",4,"ngFor","ngForOf"],["mode","indeterminate"],["fxFlex","100"],[1,"flat-expansion-panel","help-expansion","mb-2px"],["fxLayout","row","fxLayoutAlign","space-between start"],["fxFlex","50","fxLayoutAlign","start start"],["fxFlex","50","fxLayoutAlign","end end"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"table-container","mb-2",3,"perfectScrollbar"],["mat-table","",3,"dataSource","ngClass"],["matColumnDef","alias"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","nodeId"],["matColumnDef","actions"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell",""],["mat-cell",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",3)(1,"form",4,0),t.bIt("ngSubmit",function(){r.eBV(l);const u=t.sdS(2);return r.Njj(u.form.valid&&o.onQueryRoutes())}),t.j41(3,"div",5),t.nrm(4,"fa-icon",6),t.j41(5,"span"),t.EFF(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),t.k0s()(),t.j41(7,"mat-form-field",7)(8,"mat-label"),t.EFF(9,"Destination Node ID"),t.k0s(),t.j41(10,"input",8,1),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.nodeId,u)||(o.nodeId=u),r.Njj(u)}),t.k0s(),t.DNE(12,R1,2,0,"mat-error",9),t.k0s(),t.j41(13,"mat-form-field",10)(14,"mat-label"),t.EFF(15,"Amount (Sats)"),t.k0s(),t.j41(16,"input",11),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.amount,u)||(o.amount=u),r.Njj(u)}),t.k0s(),t.DNE(17,k1,2,0,"mat-error",9),t.k0s(),t.j41(18,"div",12)(19,"button",13),t.bIt("click",function(){return r.eBV(l),r.Njj(o.resetData())}),t.EFF(20,"Clear"),t.k0s(),t.j41(21,"button",14),t.EFF(22,"Query Route"),t.k0s()()(),t.j41(23,"div",15)(24,"div",16),t.nrm(25,"fa-icon",17),t.j41(26,"span",18),t.EFF(27,"Transaction Route"),t.k0s()()(),t.DNE(28,I1,1,0,"mat-progress-bar",19),t.j41(29,"div",20)(30,"div",21),t.DNE(31,B1,24,10,"div",22),t.k0s()()()}2&a&&(t.R7$(4),t.Y8G("icon",o.faExclamationTriangle),t.R7$(6),t.R50("ngModel",o.nodeId),t.R7$(2),t.Y8G("ngIf",!o.nodeId),t.R7$(4),t.Y8G("step",1e3)("min",0),t.R50("ngModel",o.amount),t.R7$(),t.Y8G("ngIf",!o.amount),t.R7$(8),t.Y8G("icon",o.faRoute),t.R7$(3),t.Y8G("ngIf",!0===o.flgLoading[0]),t.R7$(3),t.Y8G("ngForOf",o.allQRoutes))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.VZ,f.vS,f.cV,D.aY,N.$z,U.GK,U.Z2,U.WN,U.Q6,Y.fg,y.rl,y.nJ,y.TL,H.HM,_.DJ,_.sA,_.UI,v.PW,v.eI,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.KS,p.$R,p.YZ,p.NB,B.Ld,it.V,d.QX],encapsulation:2}))}return i(),s})();const $1=()=>["all"],V1=i=>({"error-border":i}),O1=()=>["no_channel"],Lt=i=>({width:i}),H1=i=>({"display-none":i});function Y1(i,s){if(1&i&&(t.j41(0,"mat-option",35),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function X1(i,s){1&i&&t.nrm(0,"mat-progress-bar",36)}function U1(i,s){1&i&&t.nrm(0,"th",37)}function z1(i,s){if(1&i&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",42),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function J1(i,s){if(1&i&&(t.j41(0,"span",43),t.nrm(1,"fa-icon",42),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function q1(i,s){if(1&i&&(t.j41(0,"td",38),t.DNE(1,z1,2,1,"span",39)(2,J1,2,1,"span",40),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf",!e.announceChannel),t.R7$(),t.Y8G("ngIf",e.announceChannel)}}function Q1(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"State"),t.k0s())}function Z1(i,s){if(1&i&&(t.j41(0,"td",38),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.state))}}function W1(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Short Channel ID"),t.k0s())}function K1(i,s){if(1&i&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.shortChannelId)}}function tc(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Channel ID"),t.k0s())}function ec(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Lt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function nc(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Alias"),t.k0s())}function ic(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Lt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(e.alias)}}function ac(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Node ID"),t.k0s())}function oc(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Lt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function sc(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Initiator"),t.k0s())}function lc(i,s){if(1&i&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function rc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function cc(i,s){if(1&i&&(t.j41(0,"td",38)(1,"span",48),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function mc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function pc(i,s){if(1&i&&(t.j41(0,"td",38)(1,"span",48),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function uc(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Balance Score"),t.k0s())}function dc(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",49)(2,"mat-hint",50),t.EFF(3),t.nI1(4,"number"),t.k0s()(),t.nrm(5,"mat-progress-bar",51),t.k0s()),2&i){const e=s.$implicit;t.R7$(3),t.JRh(t.bMT(4,3,(null==e?null:e.balancedness)||0)),t.R7$(2),t.Y8G("value",t.mNQ(e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0))}}function hc(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",52)(1,"div",53)(2,"mat-select",54),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",55),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function fc(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",56)(1,"div",53)(2,"mat-select",57),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",55),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG();return r.Njj(l.onChannelClick(o,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",55),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onChannelClose(a,!0))}),t.EFF(7,"Force Close"),t.k0s()()()()}}function _c(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No inactive channel available."),t.k0s())}function gc(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting inactive channels..."),t.k0s())}function Cc(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function yc(i,s){if(1&i&&(t.j41(0,"td",58),t.DNE(1,_c,2,0,"p",59)(2,gc,2,0,"p",59)(3,Cc,2,1,"p",59),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function bc(i,s){if(1&i&&t.nrm(0,"tr",60),2&i){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,H1,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function Fc(i,s){1&i&&t.nrm(0,"tr",61)}function Ec(i,s){1&i&&t.nrm(0,"tr",62)}let xc=(()=>{var i;class s{constructor(n,a,o,l,m){this.logger=n,this.store=a,this.rtlEffects=o,this.commonService=l,this.camelCaseWithSpaces=m,this.faEye=E.pS3,this.faEyeSlash=E.k6j,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"inactive_channels",recordsPerPage:c.md,sortBy:"alias",sortOrder:c.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new p.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=c.G,this.selFilter="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("announceChannel"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.inactiveChannels=n.inactiveChannels,this.loadChannelsTable(),this.logger.info(n)}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.information=n}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.numPeers=n.peers&&n.peers.length?n.peers.length:0}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[4])).subscribe(n=>{this.totalBalance=n.onchainBalance.total||0})}ngAfterViewInit(){this.inactiveChannels.length>0&&this.loadChannelsTable()}onChannelClose(n,a){this.store.dispatch((0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:a?"Force Close Channel":"Close Channel",titleMessage:a?"Force closing channel: "+(n.alias||n.shortChannelId?n.alias&&n.shortChannelId?n.alias+" ("+n.shortChannelId+")":n.alias?n.alias:n.shortChannelId:n.channelId):"Closing channel: "+(n.alias||n.shortChannelId?n.alias&&n.shortChannelId?n.alias+" ("+n.shortChannelId+")":n.alias?n.alias:n.shortChannelId:n.channelId),noBtnText:"Cancel",yesBtnText:a?"Force Close":"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(u=>{u&&this.store.dispatch((0,j.w0)({payload:{channelId:n.channelId||"",force:a}}))})}onChannelClick(n,a){this.store.dispatch((0,k.xO)({payload:{data:{channel:n,channelsType:"inactive",component:bt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLocaleLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):"announceChannel"===n?"Private":this.commonService.titleCase(n)}setFilterPredicate(){this.channels.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=JSON.stringify(n).toLowerCase();break;case"announceChannel":o=n?.announceChannel?"public":"private";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}loadChannelsTable(){this.channels=new p.I6([...this.inactiveChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(n,a)=>n[a]&&isNaN(n[a])?n[a].toLocaleLowerCase():n[a]?+n[a]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"InactiveChannels")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(lt.H),t.rXU($.h),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-inactive-table"]],viewQuery:function(a,o){if(1&a&&(t.GBs(S.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Channels")}])],decls:57,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","announceChannel"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","shortChannelId"],["matColumnDef","channelId"],["matColumnDef","alias"],["matColumnDef","nodeId"],["matColumnDef","isInitiator"],["matColumnDef","toLocal"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","toRemote"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2),t.nrm(2,"div",3),t.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),t.EFF(6,"Filter By"),t.k0s(),t.j41(7,"mat-select",6),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilterBy,u)||(o.selFilterBy=u),r.Njj(u)}),t.bIt("selectionChange",function(){return r.eBV(l),o.selFilter="",r.Njj(o.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,Y1,2,2,"mat-option",7),t.k0s()()(),t.j41(10,"mat-form-field",5)(11,"mat-label"),t.EFF(12,"Filter"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilter,u)||(o.selFilter=u),r.Njj(u)}),t.bIt("input",function(){return r.eBV(l),r.Njj(o.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(o.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,X1,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,U1,1,0,"th",13)(20,q1,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,Q1,2,0,"th",16)(23,Z1,3,3,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,W1,2,0,"th",16)(26,K1,2,1,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,tc,2,0,"th",16)(29,ec,4,4,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,nc,2,0,"th",16)(32,ic,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,ac,2,0,"th",16)(35,oc,4,4,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,sc,2,0,"th",16)(38,lc,2,1,"td",14),t.bVm(),t.qex(39,22),t.DNE(40,rc,2,0,"th",23)(41,cc,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,mc,2,0,"th",23)(44,pc,4,4,"td",14),t.bVm(),t.qex(45,25),t.DNE(46,uc,2,0,"th",16)(47,dc,6,5,"td",14),t.bVm(),t.qex(48,26),t.DNE(49,hc,6,0,"th",27)(50,fc,8,0,"td",28),t.bVm(),t.qex(51,29),t.DNE(52,yc,4,3,"td",30),t.bVm(),t.DNE(53,bc,1,3,"tr",31)(54,Fc,1,0,"tr",32)(55,Ec,1,0,"tr",33),t.k0s()(),t.nrm(56,"mat-paginator",34),t.k0s()}2&a&&(t.R7$(7),t.R50("ngModel",o.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,$1).concat(o.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",o.selFilter),t.R7$(2),t.Y8G("ngIf",o.apiCallStatus.status===o.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",o.tableSetting.sortBy)("matSortDirection",o.tableSetting.sortOrder)("dataSource",o.channels)("ngClass",t.eq3(15,V1,""!==o.errorMessage)),t.R7$(37),t.Y8G("matFooterRowDef",t.lJ4(17,O1)),t.R7$(),t.Y8G("matHeaderRowDef",o.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",o.displayedColumns),t.R7$(),t.Y8G("pageSize",o.pageSize)("pageSizeOptions",o.pageSizeOptions)("hidePageSize",o.screenSize!==o.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.me,f.BC,f.vS,D.aY,Y.fg,y.rl,y.nJ,y.MV,H.HM,_.DJ,_.sA,_.UI,v.PW,v.eI,R.VO,R.$2,z.wT,S.B4,S.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld,d.QX,d.PV],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:3rem;min-width:15rem;max-width:30rem}"]}))}return i(),s})();const Lc=()=>["all"],Sc=()=>["no_event"],vc=i=>({"ml-0":i}),st=i=>({width:i}),Rc=i=>({"display-none":i});function kc(i,s){if(1&i&&(t.j41(0,"div",6),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.JRh(e.errorMessage)}}function Ic(i,s){if(1&i&&(t.j41(0,"mat-option",14),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function Tc(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",7),t.nrm(1,"div",8),t.j41(2,"div",9)(3,"mat-form-field",10)(4,"mat-label"),t.EFF(5,"Filter By"),t.k0s(),t.j41(6,"mat-select",11),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilterBy,a)||(o.selFilterBy=a),r.Njj(a)}),t.bIt("selectionChange",function(){r.eBV(e);const a=t.XpG();return a.selFilter="",r.Njj(a.applyFilter())}),t.j41(7,"perfect-scrollbar"),t.DNE(8,Ic,2,2,"mat-option",12),t.k0s()()(),t.j41(9,"mat-form-field",10)(10,"mat-label"),t.EFF(11,"Filter"),t.k0s(),t.j41(12,"input",13),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilter,a)||(o.selFilter=a),r.Njj(a)}),t.bIt("input",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())})("keyup",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())}),t.k0s()()()()}if(2&i){const e=t.XpG();t.R7$(6),t.R50("ngModel",e.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(3,Lc).concat(e.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",e.selFilter)}}function wc(i,s){1&i&&t.nrm(0,"mat-progress-bar",42)}function jc(i,s){1&i&&t.nrm(0,"th",43)}function Dc(i,s){if(1&i&&(t.nrm(0,"span",46),t.nI1(1,"camelcase")),2&i){const e=t.XpG().$implicit,n=t.XpG(2);t.Y8G("matTooltip",t.mNQ(t.bMT(1,3,null==e?null:e.type)))("ngClass",t.eq3(5,vc,n.screenSize===n.screenSizeEnum.XS))}}function Pc(i,s){if(1&i&&(t.j41(0,"td",44),t.DNE(1,Dc,2,7,"span",45),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf","payment-relayed"!==(null==e?null:e.type))}}function Gc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Date/Time"),t.k0s())}function Ac(i,s){if(1&i&&(t.j41(0,"td",44),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,null==e?null:e.timestamp,"dd/MMM/y HH:mm")," ")}}function Nc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"In Channel ID"),t.k0s())}function Bc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,st,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.fromChannelId)}}function Mc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"In Channel Short ID"),t.k0s())}function $c(i,s){if(1&i&&(t.j41(0,"td",44),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.fromShortChannelId)}}function Vc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"In Channel"),t.k0s())}function Oc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,st,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.fromChannelAlias)}}function Hc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Out Channel ID"),t.k0s())}function Yc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,st,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.toChannelId)}}function Xc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Out Channel Short ID"),t.k0s())}function Uc(i,s){if(1&i&&(t.j41(0,"td",44),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.toShortChannelId)}}function zc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Out Channel"),t.k0s())}function Jc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,st,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.toChannelAlias)}}function qc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Payment Hash"),t.k0s())}function Qc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,st,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function Zc(i,s){1&i&&(t.j41(0,"th",50),t.EFF(1,"Amount In (Sats)"),t.k0s())}function Wc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.amountIn))}}function Kc(i,s){1&i&&(t.j41(0,"th",50),t.EFF(1,"Amount Out (Sats)"),t.k0s())}function tm(i,s){if(1&i&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.amountOut))}}function em(i,s){1&i&&(t.j41(0,"th",50),t.EFF(1,"Fee Earned (Sats)"),t.k0s())}function nm(i,s){if(1&i&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,(null==e?null:e.amountIn)-(null==e?null:e.amountOut)))}}function im(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",52)(1,"div",53)(2,"mat-select",54),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",55),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function am(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",56)(1,"button",57),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG(2);return r.Njj(l.onForwardingEventClick(o,a))}),t.EFF(2,"View Info"),t.k0s()()}}function om(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No forwarding history available."),t.k0s())}function sm(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting forwarding history..."),t.k0s())}function lm(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function rm(i,s){if(1&i&&(t.j41(0,"td",58),t.DNE(1,om,2,0,"p",59)(2,sm,2,0,"p",59)(3,lm,2,1,"p",59),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function cm(i,s){if(1&i&&t.nrm(0,"tr",60),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Rc,(null==e.forwardingHistoryEvents?null:e.forwardingHistoryEvents.data)&&(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)>0))}}function mm(i,s){1&i&&t.nrm(0,"tr",61)}function pm(i,s){1&i&&t.nrm(0,"tr",62)}function um(i,s){if(1&i&&(t.j41(0,"div",15),t.DNE(1,wc,1,0,"mat-progress-bar",16),t.j41(2,"table",17,0),t.qex(4,18),t.DNE(5,jc,1,0,"th",19)(6,Pc,2,1,"td",20),t.bVm(),t.qex(7,21),t.DNE(8,Gc,2,0,"th",22)(9,Ac,3,4,"td",20),t.bVm(),t.qex(10,23),t.DNE(11,Nc,2,0,"th",22)(12,Bc,4,4,"td",20),t.bVm(),t.qex(13,24),t.DNE(14,Mc,2,0,"th",22)(15,$c,2,1,"td",20),t.bVm(),t.qex(16,25),t.DNE(17,Vc,2,0,"th",22)(18,Oc,4,4,"td",20),t.bVm(),t.qex(19,26),t.DNE(20,Hc,2,0,"th",22)(21,Yc,4,4,"td",20),t.bVm(),t.qex(22,27),t.DNE(23,Xc,2,0,"th",22)(24,Uc,2,1,"td",20),t.bVm(),t.qex(25,28),t.DNE(26,zc,2,0,"th",22)(27,Jc,4,4,"td",20),t.bVm(),t.qex(28,29),t.DNE(29,qc,2,0,"th",22)(30,Qc,4,4,"td",20),t.bVm(),t.qex(31,30),t.DNE(32,Zc,2,0,"th",31)(33,Wc,4,3,"td",20),t.bVm(),t.qex(34,32),t.DNE(35,Kc,2,0,"th",31)(36,tm,4,3,"td",20),t.bVm(),t.qex(37,33),t.DNE(38,em,2,0,"th",31)(39,nm,4,3,"td",20),t.bVm(),t.qex(40,34),t.DNE(41,im,6,0,"th",35)(42,am,3,0,"td",36),t.bVm(),t.qex(43,37),t.DNE(44,rm,4,3,"td",38),t.bVm(),t.DNE(45,cm,1,3,"tr",39)(46,mm,1,0,"tr",40)(47,pm,1,0,"tr",41),t.k0s()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.forwardingHistoryEvents),t.R7$(43),t.Y8G("matFooterRowDef",t.lJ4(7,Sc)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns)}}function dm(i,s){if(1&i&&t.nrm(0,"mat-paginator",63),2&i){const e=t.XpG();t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("hidePageSize",e.screenSize!==e.screenSizeEnum.XS)}}let Xt=(()=>{var i;class s{constructor(n,a,o,l,m){this.logger=n,this.commonService=a,this.store=o,this.datePipe=l,this.camelCaseWithSpaces=m,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:c.md,sortBy:"timestamp",sortOrder:c.oi.DESCENDING},this.displayedColumns=[],this.forwardingHistoryEvents=new p.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(n){n.eventsData&&(this.apiCallStatus={status:c.wn.COMPLETED,action:"FetchPayments"},this.eventsData=n.eventsData.currentValue,n.eventsData.firstChange||this.loadForwardingEventsTable(this.eventsData)),n.selFilter&&!n.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=n.pageSettings.find(a=>a.pageId===this.pageId)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.pageId)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("type"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.KT).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.eventsData=n.payments&&n.payments.relayed?n.payments.relayed:[],this.eventsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.eventsData),this.logger.info(this.eventsData)})}ngAfterViewInit(){setTimeout(()=>{this.eventsData.length>0&&this.loadForwardingEventsTable(this.eventsData)},0)}onForwardingEventClick(n,a){const o=[[{key:"paymentHash",value:n.paymentHash,title:"Payment Hash",width:100,type:c.UN.STRING}],[{key:"timestamp",value:Math.round((n.timestamp||0)/1e3),title:"Date/Time",width:50,type:c.UN.DATE_TIME},{key:"fee",value:(n.amountIn||0)-(n.amountOut||0),title:"Fee Earned (Sats)",width:50,type:c.UN.NUMBER}],[{key:"amountIn",value:n.amountIn,title:"Amount In (Sats)",width:50,type:c.UN.NUMBER},{key:"amountOut",value:n.amountOut,title:"Amount Out (Sats)",width:50,type:c.UN.NUMBER}],[{key:"fromChannelAlias",value:n.fromChannelAlias,title:"From Channel Alias",width:50,type:c.UN.STRING},{key:"fromShortChannelId",value:n.fromShortChannelId,title:"From Short Channel ID",width:50,type:c.UN.STRING}],[{key:"fromChannelId",value:n.fromChannelId,title:"From Channel ID",width:100,type:c.UN.STRING}],[{key:"toChannelAlias",value:n.toChannelAlias,title:"To Channel Alias",width:50,type:c.UN.STRING},{key:"toShortChannelId",value:n.toShortChannelId,title:"To Short Channel ID",width:50,type:c.UN.STRING}],[{key:"toChannelId",value:n.toChannelId,title:"To Channel ID",width:100,type:c.UN.STRING}]];"payment-relayed"!==n.type&&o?.unshift([{key:"type",value:this.commonService.camelCase(n.type),title:"Relay Type",width:100,type:c.UN.STRING}]),this.store.dispatch((0,k.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Event Information",message:o}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(n){const a=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column):this.commonService.titleCase(n)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=(n.timestamp?this.datePipe.transform(new Date(n.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(n).toLowerCase();break;case"timestamp":o=this.datePipe.transform(new Date(n.timestamp||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":o=(n.amountIn-n.amountOut).toString()||"0";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}loadForwardingEventsTable(n){this.forwardingHistoryEvents=new p.I6([...n]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(a,o)=>"fee"===o?a.amountIn-a.amountOut:a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.forwardingHistoryEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il),t.rXU(d.vh),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-forwarding-history"]],viewQuery:function(a,o){if(1&a&&(t.GBs(S.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Events")}]),t.OA$],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","hidePageSize",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","type"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Type (if not payment relayed)",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","fromChannelId"],["matColumnDef","fromShortChannelId"],["matColumnDef","fromChannelAlias"],["matColumnDef","toChannelId"],["matColumnDef","toShortChannelId"],["matColumnDef","toChannelAlias"],["matColumnDef","paymentHash"],["matColumnDef","amountIn"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amountOut"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Type (if not payment relayed)"],["mat-cell",""],["class","dot yellow","matTooltipPosition","right",3,"matTooltip","ngClass",4,"ngIf"],["matTooltipPosition","right",1,"dot","yellow",3,"matTooltip","ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"]],template:function(a,o){1&a&&(t.j41(0,"div",1),t.DNE(1,kc,2,1,"div",2)(2,Tc,13,4,"div",3)(3,um,48,8,"div",4)(4,dm,1,3,"mat-paginator",5),t.k0s()),2&a&&(t.R7$(),t.Y8G("ngIf",""!==o.errorMessage),t.R7$(),t.Y8G("ngIf",""===o.errorMessage),t.R7$(),t.Y8G("ngIf",""===o.errorMessage),t.R7$(),t.Y8G("ngIf",""===o.errorMessage))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.me,f.BC,f.vS,N.$z,Y.fg,y.rl,y.nJ,H.HM,_.DJ,_.sA,_.UI,v.PW,v.eI,R.VO,R.$2,z.wT,S.B4,S.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld,d.QX,d.vh,q.ZE],styles:[".mat-column-type[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-type[_ngcontent-%COMP%] svg[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-actions[_ngcontent-%COMP%]{min-height:3.55rem}"]}))}return i(),s})();const hm=["tableIn"],fm=["tableOut"],_m=["paginatorIn"],gm=["paginatorOut"],Cm=(i,s)=>({"mt-2":i,"mt-1":s}),ym=()=>["no_incoming_event"],bm=i=>({"mt-2":i}),Fm=()=>["no_outgoing_event"],mt=i=>({width:i}),Ut=i=>({"display-none":i});function Em(i,s){if(1&i&&(t.j41(0,"div",7),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.JRh(e.errorMessage)}}function xm(i,s){1&i&&t.nrm(0,"mat-progress-bar",34)}function Lm(i,s){1&i&&(t.j41(0,"th",35),t.EFF(1,"Channel ID"),t.k0s())}function Sm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,mt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function vm(i,s){1&i&&(t.j41(0,"th",35),t.EFF(1,"Peer Alias"),t.k0s())}function Rm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,mt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function km(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Events"),t.k0s())}function Im(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.events))}}function Tm(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Amount (Sats)"),t.k0s())}function wm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalAmount))}}function jm(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Fee (Sats)"),t.k0s())}function Dm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalFee))}}function Pm(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No incoming routing peer available."),t.k0s())}function Gm(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting incoming routing peers..."),t.k0s())}function Am(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function Nm(i,s){if(1&i&&(t.j41(0,"td",41),t.DNE(1,Pm,2,0,"p",42)(2,Gm,2,0,"p",42)(3,Am,2,1,"p",42),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function Bm(i,s){if(1&i&&t.nrm(0,"tr",43),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ut,(null==e.routingPeersIncoming?null:e.routingPeersIncoming.data)&&(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)>0))}}function Mm(i,s){1&i&&t.nrm(0,"tr",44)}function $m(i,s){1&i&&t.nrm(0,"tr",45)}function Vm(i,s){1&i&&t.nrm(0,"mat-progress-bar",34)}function Om(i,s){1&i&&(t.j41(0,"th",35),t.EFF(1,"Channel ID"),t.k0s())}function Hm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,mt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Ym(i,s){1&i&&(t.j41(0,"th",35),t.EFF(1,"Peer Alias"),t.k0s())}function Xm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,mt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function Um(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Events"),t.k0s())}function zm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.events))}}function Jm(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Amount (Sats)"),t.k0s())}function qm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalAmount))}}function Qm(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Fee (Sats)"),t.k0s())}function Zm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalFee))}}function Wm(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No outgoing routing peer available."),t.k0s())}function Km(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting outgoing routing peers..."),t.k0s())}function tp(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function ep(i,s){if(1&i&&(t.j41(0,"td",41),t.DNE(1,Wm,2,0,"p",42)(2,Km,2,0,"p",42)(3,tp,2,1,"p",42),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function np(i,s){if(1&i&&t.nrm(0,"tr",43),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ut,(null==e.routingPeersOutgoing?null:e.routingPeersOutgoing.data)&&(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)>0))}}function ip(i,s){1&i&&t.nrm(0,"tr",44)}function ap(i,s){1&i&&t.nrm(0,"tr",45)}function op(i,s){if(1&i&&(t.j41(0,"div",8)(1,"div",9)(2,"div",10)(3,"div",11),t.EFF(4,"Incoming"),t.k0s(),t.nrm(5,"div",12),t.k0s(),t.j41(6,"div",13),t.DNE(7,xm,1,0,"mat-progress-bar",14),t.j41(8,"table",15,0),t.qex(10,16),t.DNE(11,Lm,2,0,"th",17)(12,Sm,4,4,"td",18),t.bVm(),t.qex(13,19),t.DNE(14,vm,2,0,"th",17)(15,Rm,4,4,"td",18),t.bVm(),t.qex(16,20),t.DNE(17,km,2,0,"th",21)(18,Im,4,3,"td",18),t.bVm(),t.qex(19,22),t.DNE(20,Tm,2,0,"th",21)(21,wm,4,3,"td",18),t.bVm(),t.qex(22,23),t.DNE(23,jm,2,0,"th",21)(24,Dm,4,3,"td",18),t.bVm(),t.qex(25,24),t.DNE(26,Nm,4,3,"td",25),t.bVm(),t.DNE(27,Bm,1,3,"tr",26)(28,Mm,1,0,"tr",27)(29,$m,1,0,"tr",28),t.k0s()(),t.nrm(30,"mat-paginator",29,1),t.k0s(),t.j41(32,"div",30)(33,"div",10)(34,"div",11),t.EFF(35,"Outgoing"),t.k0s(),t.nrm(36,"div",12),t.k0s(),t.j41(37,"div",31),t.DNE(38,Vm,1,0,"mat-progress-bar",14),t.j41(39,"table",32,2),t.qex(41,16),t.DNE(42,Om,2,0,"th",17)(43,Hm,4,4,"td",18),t.bVm(),t.qex(44,19),t.DNE(45,Ym,2,0,"th",17)(46,Xm,4,4,"td",18),t.bVm(),t.qex(47,20),t.DNE(48,Um,2,0,"th",21)(49,zm,4,3,"td",18),t.bVm(),t.qex(50,22),t.DNE(51,Jm,2,0,"th",21)(52,qm,4,3,"td",18),t.bVm(),t.qex(53,23),t.DNE(54,Qm,2,0,"th",21)(55,Zm,4,3,"td",18),t.bVm(),t.qex(56,33),t.DNE(57,ep,4,3,"td",25),t.bVm(),t.DNE(58,np,1,3,"tr",26)(59,ip,1,0,"tr",27)(60,ap,1,0,"tr",28),t.k0s(),t.nrm(61,"mat-paginator",29,3),t.k0s()()()),2&i){const e=t.XpG();t.R7$(2),t.Y8G("ngClass",t.l_i(22,Cm,e.screenSize===e.screenSizeEnum.XS,e.screenSize===e.screenSizeEnum.SM)),t.R7$(5),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersIncoming),t.R7$(19),t.Y8G("matFooterRowDef",t.lJ4(25,ym)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("hidePageSize",e.screenSize!==e.screenSizeEnum.XS),t.R7$(3),t.Y8G("ngClass",t.eq3(26,bm,e.screenSize!==e.screenSizeEnum.LG)),t.R7$(5),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersOutgoing),t.R7$(19),t.Y8G("matFooterRowDef",t.lJ4(28,Fm)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("hidePageSize",e.screenSize!==e.screenSizeEnum.XS)}}let sp=(()=>{var i;class s{constructor(n,a,o,l){this.logger=n,this.commonService=a,this.store=o,this.camelCaseWithSpaces=l,this.nodePageDefs=c.WW,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:c.md,sortBy:"totalFee",sortOrder:c.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.routingPeersIncoming=new p.I6([]),this.routingPeersOutgoing=new p.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.KT).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=n.payments&&n.payments.relayed?n.payments.relayed:[],this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData),this.logger.info(n)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData)}applyFilterIncoming(){this.routingPeersIncoming.filter=this.filterIn.trim().toLowerCase()}applyFilterOutgoing(){this.routingPeersOutgoing.filter=this.filterOut.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(n,a)=>{let o="";return o="all"===this.selFilterByIn?JSON.stringify(n).toLowerCase():"string"==typeof n[this.selFilterByIn]?n[this.selFilterByIn].toLowerCase():"boolean"==typeof n[this.selFilterByIn]?n[this.selFilterByIn]?"yes":"no":n[this.selFilterByIn].toString(),o.includes(a)},this.routingPeersOutgoing.filterPredicate=(n,a)=>{let o="";switch(this.selFilterByOut){case"all":o=JSON.stringify(n).toLowerCase();break;case"total_amount":case"total_fee":o=(+(n[this.selFilterByOut]||0)/1e3).toString()||"";break;default:o="string"==typeof n[this.selFilterByOut]?n[this.selFilterByOut].toLowerCase():"boolean"==typeof n[this.selFilterByOut]?n[this.selFilterByOut]?"yes":"no":n[this.selFilterByOut].toString()}return o.includes(a)}}loadRoutingPeersTable(n){if(n.length>0){const a=this.groupRoutingPeers(n);this.routingPeersIncoming=new p.I6(a[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new p.I6(a[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new p.I6([]),this.routingPeersOutgoing=new p.I6([]);this.setFilterPredicate(),this.applyFilterIncoming(),this.applyFilterOutgoing()}groupRoutingPeers(n){const a=[],o=[];return n.forEach(l=>{const m=a.find(T=>T.channelId===l.fromChannelId),u=o.find(T=>T.channelId===l.toChannelId);m?(m.events++,m.totalAmount=+m.totalAmount+ +l.amountIn,m.totalFee=l.amountIn-l.amountOut+ +m.totalFee):a.push({channelId:l.fromChannelId,alias:l.fromChannelAlias,events:1,totalAmount:+l.amountIn,totalFee:l.amountIn-l.amountOut}),u?(u.events++,u.totalAmount=+u.totalAmount+ +l.amountOut,u.totalFee=l.amountIn-l.amountOut+ +u.totalFee):o.push({channelId:l.toChannelId,alias:l.toChannelAlias,events:1,totalAmount:+l.amountOut,totalFee:l.amountIn-l.amountOut})}),[this.commonService.sortDescByKey(a,"totalFee"),this.commonService.sortDescByKey(o,"totalFee")]}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-routing-peers"]],viewQuery:function(a,o){if(1&a&&(t.GBs(hm,5,S.B4),t.GBs(fm,5,S.B4),t.GBs(_m,5),t.GBs(gm,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sortIn=l.first),t.mGM(l=t.lsd())&&(o.sortOut=l.first),t.mGM(l=t.lsd())&&(o.paginatorIn=l.first),t.mGM(l=t.lsd())&&(o.paginatorOut=l.first)}},standalone:!1,features:[t.Jv_([{provide:w.xX,useValue:(0,c.on)("Peers")}])],decls:3,vars:2,consts:[["tableIn",""],["paginatorIn",""],["tableOut",""],["paginatorOut",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch","class","page-sub-title-container mt-2",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"page-sub-title-container","mt-2"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mb-4"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","channelId"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","totalAmount"],["matColumnDef","totalFee"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],["fxLayout","column","fxFlex","49","fxLayoutAlign","end stretch",1,"mb-4"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","no_outgoing_event"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){1&a&&(t.j41(0,"div",4),t.DNE(1,Em,2,1,"div",5)(2,op,63,29,"div",6),t.k0s()),2&a&&(t.R7$(),t.Y8G("ngIf",""!==o.errorMessage),t.R7$(),t.Y8G("ngIf",""===o.errorMessage))},dependencies:[d.YU,d.bT,d.B3,H.HM,_.DJ,_.sA,_.UI,v.PW,v.eI,S.B4,S.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,w.iy,B.Ld,d.QX],encapsulation:2}))}return i(),s})();function lp(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",8),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG();t.Y8G("routerLink",t.mNQ(e.link))("active",n.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let rp=(()=>{var i;class s{constructor(n){this.router=n,this.faChartBar=E.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){const n=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=n?n.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(a=>a instanceof L.gx)).subscribe({next:a=>{const o=this.links.find(l=>a.urlAfterRedirects.includes(l.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-reports"]],standalone:!1,decls:12,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(a,o){if(1&a&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Reports"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),t.DNE(8,lp,2,4,"div",7),t.k0s(),t.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),t.k0s()()()),2&a){const l=t.sdS(10);t.R7$(),t.Y8G("icon",o.faChartBar),t.R7$(6),t.Y8G("tabPanel",l),t.R7$(),t.Y8G("ngForOf",o.links)}},dependencies:[d.Sq,D.aY,x.RN,x.m2,_.DJ,_.sA,P.Bu,P.hQ,P.Ql,L.n3,W.Wk],encapsulation:2}))}return i(),s})();var zt=C(51993),Jt=C(24655);function cp(i,s){if(1&i&&(t.j41(0,"div",14),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&i){const e=t.XpG();t.Y8G("@fadeIn",e.totalFeeSat),t.R7$(),t.Lme("",t.i5U(2,3,e.totalFeeSat||0,"1.0-2")," Sats/",t.bMT(3,6,e.filteredEventsBySelectedPeriod.length||0)," Events")}}function mp(i,s){1&i&&(t.j41(0,"div",15),t.EFF(1,"No routing report for the selected period"),t.k0s())}function pp(i,s){if(1&i&&(t.j41(0,"span")(1,"span",17),t.EFF(2),t.nI1(3,"number"),t.k0s(),t.j41(4,"span",17),t.EFF(5),t.nI1(6,"number"),t.k0s()()),2&i){const e=s.model,n=t.XpG(2);t.R7$(2),t.SpI("Events: ",t.bMT(3,2,(n.selReportBy===n.reportBy.EVENTS?e.value:e.extra.totalEvents)||0)),t.R7$(3),t.SpI("Fee: ",t.i5U(6,4,(n.selReportBy===n.reportBy.EVENTS?e.extra.totalFees:e.value)||0,"1.0-2"))}}function up(i,s){if(1&i){const e=t.RV6();t.j41(0,"ngx-charts-bar-vertical",16),t.bIt("select",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onChartBarSelected(a))})("mouseup",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onChartMouseUp(a))}),t.DNE(1,pp,7,7,"ng-template",null,0,t.C5r),t.k0s()}if(2&i){const e=t.XpG();t.Y8G("view",e.view)("results",e.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function dp(i,s){if(1&i&&t.nrm(0,"rtl-ecl-forwarding-history",18),2&i){const e=t.XpG();t.Y8G("eventsData",e.filteredEventsBySelectedPeriod)("selFilter",e.eventFilterValue)}}let hp=(()=>{var i;class s{constructor(n,a,o){this.logger=n,this.commonService=a,this.store=o,this.reportPeriod=c.rs[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=c.aR,this.selReportBy=c.aR.FEES,this.totalFeeSat=null,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new h.B,new h.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===c.f7.XS||this.screenSize===c.f7.SM),this.store.select(b.KT).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.events=n.payments&&n.payments.relayed?n.payments.relayed:[],this.filterForwardingEvents(this.startDate,this.endDate),this.logger.info(n)}),this.commonService.containerSizeUpdated.pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{switch(this.screenSize){case c.f7.MD:this.screenPaddingX=n.width/10;break;case c.f7.LG:this.screenPaddingX=n.width/16;break;default:this.screenPaddingX=n.width/20}this.view=[n.width-this.screenPaddingX,n.height/2.2],this.logger.info("Container Size: "+JSON.stringify(n)),this.logger.info("View: "+JSON.stringify(this.view))})}filterForwardingEvents(n,a){const o=Math.round(n.getTime()/1e3),l=Math.round(a.getTime()/1e3);this.logger.info("Filtering Forwarding Events Starting at "+new Date(Date.now()).toLocaleString()+" From "+n.toLocaleString()+" To "+a.toLocaleString()),this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeSat=null,this.events&&this.events.length>0&&(this.events.forEach(m=>{Math.floor((m.timestamp||0)/1e3)>=o&&Math.floor((m.timestamp||0)/1e3)0&&"ngx-charts"===n.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(n){this.eventFilterValue=this.reportPeriod===c.rs[1]?n.name+"/"+this.startDate.getFullYear():n.name.toString().padStart(2,"0")+"/"+c.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(n){const a=Math.round(n.getTime()/1e3),o=[];if(this.totalFeeSat=0,this.logger.info("Fee Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+n.toLocaleString()),this.reportPeriod===c.rs[1]){for(let l=0;l<12;l++)o.push({name:c.KR[l].name,value:0,extra:{totalEvents:0}});this.filteredEventsBySelectedPeriod?.map(l=>{const m=new Date(l.timestamp||0).getMonth();return o[m].value=o[m].value+((l.amountIn||0)-(l.amountOut||0)),o[m].extra.totalEvents=o[m].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((l.amountIn||0)-(l.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let l=0;l{const m=Math.floor((Math.floor((l.timestamp||0)/1e3)-a)/this.secondsInADay);return o[m].value=o[m].value+((l.amountIn||0)-(l.amountOut||0)),o[m].extra.totalEvents=o[m].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((l.amountIn||0)-(l.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Fee Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),o}prepareEventsReport(n){const a=Math.round(n.getTime()/1e3),o=[];if(this.totalFeeSat=0,this.logger.info("Events Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+n.toLocaleString()),this.reportPeriod===c.rs[1]){for(let l=0;l<12;l++)o.push({name:c.KR[l].name,value:0,extra:{totalFees:0}});this.filteredEventsBySelectedPeriod?.map(l=>{const m=new Date(l.timestamp||0).getMonth();return o[m].value=o[m].value+1,o[m].extra.totalFees=o[m].extra.totalFees+((l.amountIn||0)-(l.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((l.amountIn||0)-(l.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let l=0;l{const m=Math.floor((Math.floor((l.timestamp||0)/1e3)-a)/this.secondsInADay);return o[m].value=o[m].value+1,o[m].extra.totalFees=o[m].extra.totalFees+((l.amountIn||0)-(l.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((l.amountIn||0)-(l.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Events Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),o}onSelectionChange(n){const a=n.selDate.getMonth(),o=n.selDate.getFullYear();this.reportPeriod=n.selScrollRange,this.reportPeriod===c.rs[1]?(this.startDate=new Date(o,0,1,0,0,0),this.endDate=new Date(o,11,31,23,59,59)):(this.startDate=new Date(o,a,1,0,0,0),this.endDate=new Date(o,a,this.getMonthDays(a,o),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(n,a){return 1===n&&a%4==0?c.KR[n].days+1:c.KR[n].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-routing-report"]],hostBindings:function(a,o){1&a&&t.bIt("mouseup",function(m){return o.onChartMouseUp(m)})},standalone:!1,decls:17,vars:9,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start center",1,"my-1",3,"ngModelChange","change","ngModel"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],["pageId","reports","tableId","routing",3,"eventsData","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"one-color",3,"select","mouseup","view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel"],[1,"tooltip-label"],["pageId","reports","tableId","routing",3,"eventsData","selFilter"]],template:function(a,o){1&a&&(t.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),t.bIt("stepChanged",function(m){return o.onSelectionChange(m)}),t.k0s(),t.j41(2,"div",3)(3,"mat-radio-group",4),t.mxI("ngModelChange",function(m){return t.DH7(o.selReportBy,m)||(o.selReportBy=m),m}),t.bIt("change",function(){return o.onSelReportByChange()}),t.j41(4,"span",5),t.EFF(5,"Report By: "),t.k0s(),t.j41(6,"mat-radio-button",6),t.EFF(7,"Fees"),t.k0s(),t.j41(8,"mat-radio-button",7),t.EFF(9,"Events"),t.k0s()()(),t.j41(10,"div",8),t.DNE(11,cp,4,8,"div",9)(12,mp,2,0,"div",10),t.j41(13,"div",11),t.DNE(14,up,3,11,"ngx-charts-bar-vertical",12),t.k0s(),t.j41(15,"div",11),t.DNE(16,dp,1,2,"rtl-ecl-forwarding-history",13),t.k0s()()()),2&a&&(t.R7$(3),t.R50("ngModel",o.selReportBy),t.R7$(3),t.Y8G("value",t.mNQ(o.reportBy.FEES)),t.R7$(2),t.Y8G("value",t.mNQ(o.reportBy.EVENTS)),t.R7$(3),t.Y8G("ngIf",o.routingReportData.length>0&&o.filteredEventsBySelectedPeriod.length>0),t.R7$(),t.Y8G("ngIf",o.routingReportData.length<=0||o.filteredEventsBySelectedPeriod.length<=0),t.R7$(2),t.Y8G("ngIf",o.routingReportData.length>0&&o.filteredEventsBySelectedPeriod.length>0),t.R7$(2),t.Y8G("ngIf",o.filteredEventsBySelectedPeriod.length>0))},dependencies:[d.bT,f.BC,f.vS,rt.VT,rt._g,_.DJ,_.sA,_.UI,zt.L8,Jt.m,Xt,d.QX],encapsulation:2,data:{animation:[Et.q]}}))}return i(),s})();var fp=C(5085);function _p(i,s){if(1&i&&(t.j41(0,"div",11),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Lme(" Paid ",t.i5U(2,2,e.transactionsReportSummary.amountPaidSelectedPeriod||0,"1.0-2")," Sats/",t.bMT(3,5,e.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function gp(i,s){if(1&i&&(t.j41(0,"div",11),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Lme(" Received ",t.i5U(2,2,e.transactionsReportSummary.amountReceivedSelectedPeriod||0,"1.0-2")," Sats/",t.bMT(3,5,e.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function Cp(i,s){if(1&i&&(t.j41(0,"div",9),t.DNE(1,_p,4,7,"div",10)(2,gp,4,7,"div",10),t.k0s()),2&i){const e=t.XpG();t.Y8G("@fadeIn",e.transactionsReportSummary),t.R7$(),t.Y8G("ngIf",e.transactionsReportSummary.paymentsSelectedPeriod),t.R7$(),t.Y8G("ngIf",e.transactionsReportSummary.invoicesSelectedPeriod)}}function yp(i,s){1&i&&(t.j41(0,"div",12),t.EFF(1,"No transactions report for the selected period"),t.k0s())}function bp(i,s){if(1&i&&(t.j41(0,"span",14),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&i){const e=s.model;t.R7$(),t.LHq("",e.name,": ",t.i5U(2,4,e.value||0,"1.0-2"),"/# ","Paid"===e.name?"Payments":"Invoices",": ",t.bMT(3,7,(null==e.extra?null:e.extra.total)||0))}}function Fp(i,s){if(1&i){const e=t.RV6();t.j41(0,"ngx-charts-bar-vertical-2d",13),t.bIt("select",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onChartBarSelected(a))})("mouseup",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onChartMouseUp(a))}),t.DNE(1,bp,4,9,"ng-template",null,0,t.C5r),t.k0s()}if(2&i){const e=t.XpG();t.Y8G("view",e.view)("results",e.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",e.reportPeriod===e.scrollRanges[0]?2:8)}}function Ep(i,s){if(1&i&&t.nrm(0,"rtl-transactions-report-table",15),2&i){const e=t.XpG();t.Y8G("displayedColumns",e.displayedColumns)("tableSetting",e.tableSetting)("dataList",e.transactionsNonZeroReportData)("dataRange",e.reportPeriod)("selFilter",e.transactionFilterValue)}}let xp=(()=>{var i;class s{constructor(n,a,o){this.logger=n,this.commonService=a,this.store=o,this.scrollRanges=c.rs,this.reportPeriod=c.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:c.md,sortBy:"date",sortOrder:c.oi.DESCENDING},this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[],this.transactionsNonZeroReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===c.f7.XS||this.screenSize===c.f7.SM),this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.KT).pipe((0,g.Q)(this.unSubs[1]),(0,pt.E)(this.store.select(b.rN))).subscribe(([n,a])=>{this.payments=n.payments.sent?n.payments.sent:[],this.invoices=a.invoices?a.invoices:[],(this.payments.length>0||this.invoices.length>0)&&(this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData())}),this.commonService.containerSizeUpdated.pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{switch(this.screenSize){case c.f7.MD:this.screenPaddingX=n.width/10;break;case c.f7.LG:this.screenPaddingX=n.width/16;break;default:this.screenPaddingX=n.width/20}this.view=[n.width-this.screenPaddingX,n.height/2.2],this.logger.info("Container Size: "+JSON.stringify(n)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(n){"svg"===n.srcElement.tagName&&n.srcElement.classList.length>0&&"ngx-charts"===n.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(n){this.transactionFilterValue=this.reportPeriod===c.rs[1]?n.series.toString()+"/"+this.startDate.getFullYear():n.series.toString().padStart(2,"0")+"/"+c.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(n,a){const o=Math.round(n.getTime()/1e3),l=Math.round(a.getTime()/1e3),m=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const u=this.payments?.filter(F=>F.firstPartTimestamp&&Math.floor(F.firstPartTimestamp/1e3)>=o&&Math.floor(F.firstPartTimestamp/1e3)"received"===F.status&&F.timestamp&&F.timestamp>=o&&F.timestamp{const G=new Date(F.firstPartTimestamp||0).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(F.recipientAmount||0),m[G].series[0].value=m[G].series[0].value+F.recipientAmount,m[G].series[0].extra.total=m[G].series[0].extra.total+1,this.transactionsReportSummary}),T?.map(F=>{const G=new Date(1e3*(F.timestamp||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(F.amountSettled||0),m[G].series[1].value=m[G].series[1].value+F.amountSettled,m[G].series[1].extra.total=m[G].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let F=0;F{const G=Math.floor((Math.floor((F.firstPartTimestamp||0)/1e3)-o)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(F.recipientAmount||0),m[G].series[0].value=m[G].series[0].value+F.recipientAmount,m[G].series[0].extra.total=m[G].series[0].extra.total+1,this.transactionsReportSummary}),T?.map(F=>{const G=Math.floor(((F.timestamp||0)-o)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(F.amountSettled||0),m[G].series[1].value=m[G].series[1].value+F.amountSettled,m[G].series[1].extra.total=m[G].series[1].extra.total+1,this.transactionsReportSummary})}return m}prepareTableData(){return this.transactionsReportData?.reduce((n,a)=>a.series[0].extra.total>0||a.series[1].extra.total>0?n.concat({date:a.date,amount_paid:a.series[0].value,num_payments:a.series[0].extra.total,amount_received:a.series[1].value,num_invoices:a.series[1].extra.total}):n,[])}onSelectionChange(n){const a=n.selDate.getMonth(),o=n.selDate.getFullYear();this.reportPeriod=n.selScrollRange,this.reportPeriod===c.rs[1]?(this.startDate=new Date(o,0,1,0,0,0),this.endDate=new Date(o,11,31,23,59,59)):(this.startDate=new Date(o,a,1,0,0,0),this.endDate=new Date(o,a,this.getMonthDays(a,o),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(n,a){return 1===n&&a%4==0?c.KR[n].days+1:c.KR[n].days}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-transactions-report"]],hostBindings:function(a,o){1&a&&t.bIt("mouseup",function(m){return o.onChartMouseUp(m)})},standalone:!1,decls:9,vars:4,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"two-color",3,"select","mouseup","view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding"],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(a,o){1&a&&(t.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),t.bIt("stepChanged",function(m){return o.onSelectionChange(m)}),t.k0s(),t.j41(2,"div",3),t.DNE(3,Cp,3,3,"div",4)(4,yp,2,0,"div",5),t.j41(5,"div",6),t.DNE(6,Fp,3,13,"ngx-charts-bar-vertical-2d",7),t.k0s(),t.j41(7,"div",6),t.DNE(8,Ep,1,5,"rtl-transactions-report-table",8),t.k0s()()()),2&a&&(t.R7$(3),t.Y8G("ngIf",o.transactionsNonZeroReportData.length>0),t.R7$(),t.Y8G("ngIf",o.transactionsNonZeroReportData.length<=0),t.R7$(2),t.Y8G("ngIf",o.transactionsNonZeroReportData.length>0),t.R7$(2),t.Y8G("ngIf",o.transactionsNonZeroReportData.length>0))},dependencies:[d.bT,_.DJ,_.sA,_.UI,zt.Dl,Jt.m,fp.T,d.QX],encapsulation:2,data:{animation:[Et.q]}}))}return i(),s})();var M=C(17186),Lp=C(90013);function Sp(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",9),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG();t.Y8G("routerLink",t.mNQ(e.link))("active",n.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let vp=(()=>{var i;class s{constructor(n){this.router=n,this.faSearch=E.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){const n=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=n?n.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(a=>a instanceof L.gx)).subscribe({next:a=>{const o=this.links.find(l=>a.urlAfterRedirects.includes(l.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-graph"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(a,o){if(1&a&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Graph Lookups"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),t.DNE(8,Sp,2,4,"div",7),t.k0s(),t.nrm(9,"mat-tab-nav-panel",null,0),t.j41(11,"div",8),t.nrm(12,"router-outlet"),t.k0s()()()()),2&a){const l=t.sdS(10);t.R7$(),t.Y8G("icon",o.faSearch),t.R7$(6),t.Y8G("tabPanel",l),t.R7$(),t.Y8G("ngForOf",o.links)}},dependencies:[d.Sq,D.aY,x.RN,x.m2,_.DJ,_.sA,_.UI,P.Bu,P.hQ,P.Ql,L.n3,W.Wk],encapsulation:2}))}return i(),s})();const Rp=[{path:"",component:vt,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Da,canActivate:[(0,M.fe)()]},{path:"onchain",component:Eo,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"receive"},{path:"receive",component:cs,canActivate:[(0,M.fe)()]},{path:"send",component:ms,canActivate:[(0,M.fe)()]}]},{path:"connections",component:So,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:Is,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:hr,canActivate:[(0,M.fe)()]},{path:"pending",component:Jr,canActivate:[(0,M.fe)()]},{path:"inactive",component:xc,canActivate:[(0,M.fe)()]}]},{path:"peers",component:L1,data:{sweepAll:!1},canActivate:[(0,M.fe)()]}]},{path:"transactions",component:Ro,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Tt,canActivate:[(0,M.fe)()]},{path:"invoices",component:wt,canActivate:[(0,M.fe)()]}]},{path:"routing",component:Io,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:Xt,canActivate:[(0,M.fe)()]},{path:"peers",component:sp,canActivate:[(0,M.fe)()]}]},{path:"reports",component:rp,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:hp,canActivate:[(0,M.fe)()]},{path:"transactions",component:xp,canActivate:[(0,M.fe)()]}]},{path:"graph",component:vp,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:ls,canActivate:[(0,M.fe)()]},{path:"queryroutes",component:M1,canActivate:[(0,M.fe)()]}]},{path:"**",component:Lp.X}]}],kp=W.iI.forChild(Rp);var Ip=C(19029);let Tp=(()=>{var i;class s{static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)},this.\u0275mod=t.$C({type:s,bootstrap:[vt]}),this.\u0275inj=r.G2t({imports:[d.MD,Ip.G,kp]}))}return i(),s})()}}]); \ No newline at end of file diff --git a/frontend/17.da5e0b6abb96d103.js b/frontend/17.da5e0b6abb96d103.js new file mode 100644 index 00000000..8a893ce9 --- /dev/null +++ b/frontend/17.da5e0b6abb96d103.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[17],{9017(wp,Jt,C){C.d(Jt,{ECLModule:()=>Tp});var d=C(2200),W=C(8132),L=C(3694),qt=C(9881),t=C(3664),H=C(7575),_=C(2920);function Qt(i,s){1&i&&t.nrm(0,"mat-progress-bar",3)}let vt=(()=>{var i;class s{constructor(n){this.router=n,this.loading=!1,this.router.events.subscribe(a=>{switch(!0){case a instanceof L.Z:this.loading=!0;break;case a instanceof L.wF:case a instanceof L.j5:case a instanceof L.L6:this.loading=!1}})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-root"]],standalone:!1,decls:4,vars:1,consts:[["outlet","outlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["color","primary","mode","indeterminate"]],template:function(a,o){1&a&&(t.j41(0,"div",1),t.DNE(1,Qt,1,0,"mat-progress-bar",2),t.nrm(2,"router-outlet",null,0),t.k0s()),2&a&&(t.R7$(),t.Y8G("ngIf",o.loading))},dependencies:[d.bT,H.HM,_.DJ,_.sA,_.UI,L.n3],encapsulation:2,data:{animation:[qt.E]}}))}return i(),s})();var h=C(1413),g=C(6977),pt=C(3993),St=C(614),E=C(5383),c=C(4416),J=C(9647),b=C(2730),r=C(2615),A=C(8570),I=C(9640),$=C(2571),D=C(60),Zt=C(2598),x=C(5596),Rt=C(2885),ut=C(2629),dt=C(9115),S=C(6038),G=C(6850);const kt=i=>({backgroundColor:i});function Wt(i,s){if(1&i&&t.nrm(0,"span",6),2&i){const e=t.XpG();t.Y8G("ngStyle",t.eq3(1,kt,null==e.information?null:e.information.color))}}function Kt(i,s){if(1&i&&(t.j41(0,"div")(1,"h4",1),t.EFF(2,"Color"),t.k0s(),t.j41(3,"div",2),t.nrm(4,"span",7),t.EFF(5),t.nI1(6,"uppercase"),t.k0s()()),2&i){const e=t.XpG();t.R7$(4),t.Y8G("ngStyle",t.eq3(4,kt,null==e.information?null:e.information.color)),t.R7$(),t.SpI(" ",t.bMT(6,2,null==e.information?null:e.information.color)," ")}}function te(i,s){if(1&i&&(t.j41(0,"span",2),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(e)}}let ee=(()=>{var i;class s{constructor(n){this.commonService=n,this.chains=[""]}ngOnChanges(){this.chains=[],this.chains.push("Bitcoin "+(this.information.network?this.commonService.titleCase(this.information.network):"Testnet"))}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU($.h))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},standalone:!1,features:[t.OA$],decls:17,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"]],template:function(a,o){1&a&&(t.j41(0,"div",0)(1,"div")(2,"h4",1),t.EFF(3,"Alias"),t.k0s(),t.j41(4,"div",2),t.EFF(5),t.DNE(6,Wt,1,3,"span",3),t.k0s()(),t.DNE(7,Kt,7,6,"div",4),t.j41(8,"div")(9,"h4",1),t.EFF(10,"Implementation"),t.k0s(),t.j41(11,"div",2),t.EFF(12),t.k0s()(),t.j41(13,"div")(14,"h4",1),t.EFF(15,"Chain"),t.k0s(),t.DNE(16,te,2,1,"span",5),t.k0s()()),2&a&&(t.R7$(5),t.SpI(" ",null==o.information?null:o.information.alias," "),t.R7$(),t.Y8G("ngIf",!o.showColorFieldSeparately),t.R7$(),t.Y8G("ngIf",o.showColorFieldSeparately),t.R7$(5),t.JRh(null!=o.information&&o.information.lnImplementation||null!=o.information&&o.information.version?(null==o.information?null:o.information.lnImplementation)+" "+(null==o.information?null:o.information.version):""),t.R7$(4),t.Y8G("ngForOf",o.chains))},dependencies:[d.Sq,d.bT,d.B3,_.DJ,_.sA,_.UI,S.eI,d.Pc],encapsulation:2}))}return i(),s})();function ne(i,s){if(1&i&&(t.j41(0,"div",2)(1,"div")(2,"h4",3),t.EFF(3,"Lightning"),t.k0s(),t.j41(4,"div",4),t.EFF(5),t.nI1(6,"number"),t.k0s(),t.nrm(7,"mat-progress-bar",5),t.k0s(),t.j41(8,"div")(9,"h4",3),t.EFF(10,"On-chain"),t.k0s(),t.j41(11,"div",4),t.EFF(12),t.nI1(13,"number"),t.k0s(),t.nrm(14,"mat-progress-bar",5),t.k0s(),t.j41(15,"div")(16,"h4",3),t.EFF(17,"Total"),t.k0s(),t.j41(18,"div",4),t.EFF(19),t.nI1(20,"number"),t.k0s()()()),2&i){const e=t.XpG();t.R7$(5),t.SpI("",t.bMT(6,7,e.balances.lightning)," Sats"),t.R7$(2),t.Y8G("value",t.mNQ(e.balances.lightning/e.balances.total*100)),t.R7$(5),t.SpI("",t.bMT(13,9,e.balances.onchain)," Sats"),t.R7$(2),t.Y8G("value",t.mNQ(e.balances.onchain/e.balances.total*100)),t.R7$(5),t.SpI("",t.bMT(20,11,e.balances.total)," Sats")}}function ie(i,s){if(1&i&&(t.j41(0,"div",6)(1,"p"),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let ae=(()=>{var i;class s{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,o){if(1&a&&t.DNE(0,ne,21,13,"div",1)(1,ie,3,1,"ng-template",null,0,t.C5r),2&a){const l=t.sdS(2);t.Y8G("ngIf",""===(null==o.errorMessage?null:o.errorMessage.trim()))("ngIfElse",l)}},dependencies:[d.bT,H.HM,_.DJ,_.sA,_.UI,d.QX],encapsulation:2}))}return i(),s})();function oe(i,s){if(1&i&&(t.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),t.EFF(4,"Daily"),t.k0s(),t.j41(5,"div",5),t.EFF(6),t.nI1(7,"number"),t.k0s()(),t.j41(8,"div")(9,"h4",4),t.EFF(10,"Weekly"),t.k0s(),t.j41(11,"div",5),t.EFF(12),t.nI1(13,"number"),t.k0s()(),t.j41(14,"div")(15,"h4",4),t.EFF(16,"Monthly"),t.k0s(),t.j41(17,"div",5),t.EFF(18),t.nI1(19,"number"),t.k0s()()(),t.j41(20,"div",3)(21,"div")(22,"h4",4),t.EFF(23,"Transactions"),t.k0s(),t.j41(24,"div",5),t.EFF(25),t.nI1(26,"number"),t.k0s()(),t.j41(27,"div")(28,"h4",4),t.EFF(29,"Transactions"),t.k0s(),t.j41(30,"div",5),t.EFF(31),t.nI1(32,"number"),t.k0s()(),t.j41(33,"div")(34,"h4",4),t.EFF(35,"Transactions"),t.k0s(),t.j41(36,"div",5),t.EFF(37),t.nI1(38,"number"),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(6),t.SpI("",t.bMT(7,6,null==e.fees?null:e.fees.daily_fee)," Sats"),t.R7$(6),t.SpI("",t.bMT(13,8,null==e.fees?null:e.fees.weekly_fee)," Sats"),t.R7$(6),t.SpI("",t.bMT(19,10,null==e.fees?null:e.fees.monthly_fee)," Sats"),t.R7$(7),t.JRh(t.bMT(26,12,null==e.fees?null:e.fees.daily_txs)),t.R7$(6),t.JRh(t.bMT(32,14,null==e.fees?null:e.fees.weekly_txs)),t.R7$(6),t.JRh(t.bMT(38,16,null==e.fees?null:e.fees.monthly_txs))}}function se(i,s){if(1&i&&(t.j41(0,"div",6)(1,"p"),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let le=(()=>{var i;class s{constructor(){this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100}ngOnChanges(){if(this.fees?.monthly_fee){this.totalFees=[{name:"Monthly",value:this.fees.monthly_fee},{name:"Weekly",value:this.fees.weekly_fee||0},{name:"Daily ",value:this.fees.daily_fee||0}];const a=10**(Math.ceil(Math.log(this.fees.monthly_fee+1)/Math.LN10)-1);this.maxFeeValue=Math.ceil(this.fees.monthly_fee/a)*a/5||100,Object.assign(this,this.totalFees)}else this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100,Object.assign(this,this.totalFees)}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},standalone:!1,features:[t.OA$],decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,o){if(1&a&&t.DNE(0,oe,39,18,"div",1)(1,se,3,1,"ng-template",null,0,t.C5r),2&a){const l=t.sdS(2);t.Y8G("ngIf",""===(null==o.errorMessage?null:o.errorMessage.trim()))("ngIfElse",l)}},dependencies:[d.bT,_.DJ,_.sA,_.UI,d.QX],encapsulation:2}))}return i(),s})();function re(i,s){if(1&i&&(t.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),t.EFF(4,"Active"),t.k0s(),t.j41(5,"div",5),t.nrm(6,"span",6),t.EFF(7),t.nI1(8,"number"),t.k0s()(),t.j41(9,"div")(10,"h4",4),t.EFF(11,"Pending"),t.k0s(),t.j41(12,"div",5),t.nrm(13,"span",7),t.EFF(14),t.nI1(15,"number"),t.k0s()(),t.j41(16,"div")(17,"h4",4),t.EFF(18,"Inactive"),t.k0s(),t.j41(19,"div",5),t.nrm(20,"span",8),t.EFF(21),t.nI1(22,"number"),t.k0s()()(),t.j41(23,"div",3)(24,"div")(25,"h4",4),t.EFF(26,"Capacity"),t.k0s(),t.j41(27,"div",5),t.EFF(28),t.nI1(29,"number"),t.k0s()(),t.j41(30,"div")(31,"h4",4),t.EFF(32,"Capacity"),t.k0s(),t.j41(33,"div",5),t.EFF(34),t.nI1(35,"number"),t.k0s()(),t.j41(36,"div")(37,"h4",4),t.EFF(38,"Capacity"),t.k0s(),t.j41(39,"div",5),t.EFF(40),t.nI1(41,"number"),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(7),t.JRh(t.bMT(8,6,(null==e.channelsStatus.active?null:e.channelsStatus.active.channels)||0)),t.R7$(7),t.JRh(t.bMT(15,8,(null==e.channelsStatus.pending?null:e.channelsStatus.pending.channels)||0)),t.R7$(7),t.JRh(t.bMT(22,10,(null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.channels)||0)),t.R7$(7),t.SpI("",t.bMT(29,12,(null==e.channelsStatus.active?null:e.channelsStatus.active.capacity)||0)," Sats"),t.R7$(6),t.SpI("",t.bMT(35,14,(null==e.channelsStatus.pending?null:e.channelsStatus.pending.capacity)||0)," Sats"),t.R7$(6),t.SpI("",t.bMT(41,16,(null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.capacity)||0)," Sats")}}function ce(i,s){if(1&i&&(t.j41(0,"div",9)(1,"p"),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let me=(()=>{var i;class s{constructor(){this.channelsStatus={}}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,o){if(1&a&&t.DNE(0,re,42,18,"div",1)(1,ce,3,1,"ng-template",null,0,t.C5r),2&a){const l=t.sdS(2);t.Y8G("ngIf",""===(null==o.errorMessage?null:o.errorMessage.trim()))("ngIfElse",l)}},dependencies:[d.bT,_.DJ,_.sA,_.UI,d.QX],encapsulation:2}))}return i(),s})();var N=C(8834),y=C(9588),tt=C(1997),Q=C(455),B=C(497);const pe=()=>["../connections/channels/open"],ue=(i,s)=>({filterColumn:i,filterValue:s});function de(i,s){if(1&i&&(t.j41(0,"div",19)(1,"a",20),t.EFF(2),t.nI1(3,"slice"),t.k0s(),t.j41(4,"div",6)(5,"mat-hint",21)(6,"strong",8),t.EFF(7,"Local:"),t.k0s(),t.EFF(8),t.nI1(9,"number"),t.k0s(),t.j41(10,"mat-hint",22),t.nrm(11,"fa-icon",23),t.EFF(12),t.nI1(13,"number"),t.k0s(),t.j41(14,"mat-hint",24)(15,"strong",8),t.EFF(16,"Remote:"),t.k0s(),t.EFF(17),t.nI1(18,"number"),t.k0s()(),t.nrm(19,"mat-progress-bar",25),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(3);t.R7$(),t.Y8G("matTooltip",t.mNQ(e.alias||e.shortChannelId))("matTooltipDisabled",t.mNQ((e.alias||e.shortChannelId).length<26))("routerLink",t.lJ4(26,pe))("state",t.l_i(27,ue,e.alias?"alias":"shortChannelId",e.alias||e.shortChannelId)),t.R7$(),t.Lme(" ",t.brH(3,14,(null==e?null:e.alias)||(null==e?null:e.shortChannelId),0,24),"",((null==e?null:e.alias)||(null==e?null:e.shortChannelId)).length>25?"...":""," "),t.R7$(6),t.SpI("",t.i5U(9,18,(null==e?null:e.toLocal)||0,"1.0-0")," Sats"),t.R7$(3),t.Y8G("icon",n.faBalanceScale),t.R7$(),t.SpI(" (",t.bMT(13,21,(null==e?null:e.balancedness)||0),") "),t.R7$(5),t.SpI("",t.i5U(18,23,(null==e?null:e.toRemote)||0,"1.0-0")," Sats"),t.R7$(2),t.Y8G("value",t.mNQ(e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0))}}function he(i,s){if(1&i&&(t.j41(0,"div",17),t.DNE(1,de,20,30,"div",18),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.allChannels)}}function fe(i,s){if(1&i&&(t.j41(0,"div",3)(1,"div",4)(2,"span",5),t.EFF(3,"Total Capacity"),t.k0s(),t.j41(4,"div",6)(5,"mat-hint",7)(6,"strong",8),t.EFF(7,"Local:"),t.k0s(),t.EFF(8),t.nI1(9,"number"),t.k0s(),t.j41(10,"mat-hint",9),t.nrm(11,"fa-icon",10),t.EFF(12),t.nI1(13,"number"),t.k0s(),t.j41(14,"mat-hint",11)(15,"strong",8),t.EFF(16,"Remote:"),t.k0s(),t.EFF(17),t.nI1(18,"number"),t.k0s()(),t.nrm(19,"mat-progress-bar",12),t.k0s(),t.j41(20,"div",13),t.nrm(21,"mat-divider",14),t.k0s(),t.j41(22,"div",15),t.DNE(23,he,2,1,"div",16),t.k0s()()),2&i){const e=t.XpG(),n=t.sdS(2);t.R7$(8),t.SpI("",t.i5U(9,8,(null==e.channelBalances?null:e.channelBalances.localBalance)||0,"1.0-0")," Sats"),t.R7$(3),t.Y8G("icon",e.faBalanceScale),t.R7$(),t.SpI(" (",t.bMT(13,11,(null==e.channelBalances?null:e.channelBalances.balancedness)||0),") "),t.R7$(5),t.SpI("",t.i5U(18,13,(null==e.channelBalances?null:e.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),t.R7$(2),t.Y8G("value",t.mNQ(null!=e.channelBalances&&e.channelBalances.localBalance&&(null==e.channelBalances?null:e.channelBalances.localBalance)>0?+(null==e.channelBalances?null:e.channelBalances.localBalance)/(+(null==e.channelBalances?null:e.channelBalances.localBalance)+ +(null==e.channelBalances?null:e.channelBalances.remoteBalance))*100:0)),t.R7$(4),t.Y8G("ngIf",e.allChannels&&(null==e.allChannels?null:e.allChannels.length)>0)("ngIfElse",n)}}function _e(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",26),t.EFF(1," No channels available. "),t.j41(2,"button",27),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.goToChannels())}),t.EFF(3,"Open Channel"),t.k0s()()}}function ge(i,s){if(1&i&&(t.j41(0,"div",28)(1,"p"),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let Ce=(()=>{var i;class s{constructor(n){this.router=n,this.faBalanceScale=E.GR4,this.faDumbbell=E.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/ecl/connections")}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,o){if(1&a&&t.DNE(0,fe,24,16,"div",2)(1,_e,4,0,"ng-template",null,0,t.C5r)(3,ge,3,1,"ng-template",null,1,t.C5r),2&a){const l=t.sdS(4);t.Y8G("ngIf",""===(null==o.errorMessage?null:o.errorMessage.trim()))("ngIfElse",l)}},dependencies:[d.Sq,d.bT,D.aY,N.$z,y.MV,tt.q,H.HM,_.DJ,_.sA,_.UI,Q.oV,B.Ld,W.Wk,d.P9,d.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]}))}return i(),s})();const ye=(i,s,e)=>({"mb-4":i,"mb-2":s,"mb-1":e}),be=()=>["../connections/channels/open"],Fe=(i,s)=>({filterColumn:i,filterValue:s});function Ee(i,s){if(1&i&&(t.j41(0,"mat-hint",19)(1,"strong",20),t.EFF(2,"Capacity: "),t.k0s(),t.EFF(3),t.nI1(4,"number"),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(3),t.SpI("",t.i5U(4,1,e.toRemote||0,"1.0-0")," Sats")}}function xe(i,s){if(1&i&&(t.j41(0,"mat-hint",19)(1,"strong",20),t.EFF(2,"Capacity: "),t.k0s(),t.EFF(3),t.nI1(4,"number"),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(3),t.SpI("",t.i5U(4,1,e.toLocal||0,"1.0-0")," Sats")}}function Le(i,s){if(1&i&&t.nrm(0,"mat-progress-bar",21),2&i){const e=t.XpG().$implicit,n=t.XpG(3);t.Y8G("value",t.mNQ(n.totalLiquidity>0?(+e.toRemote||0)/n.totalLiquidity*100:0))}}function ve(i,s){if(1&i&&t.nrm(0,"mat-progress-bar",21),2&i){const e=t.XpG().$implicit,n=t.XpG(3);t.Y8G("value",t.mNQ(n.totalLiquidity>0?(+e.toLocal||0)/n.totalLiquidity*100:0))}}function Se(i,s){if(1&i&&(t.j41(0,"div",14)(1,"a",15),t.EFF(2),t.nI1(3,"slice"),t.k0s(),t.j41(4,"div",16),t.DNE(5,Ee,5,4,"mat-hint",17)(6,xe,5,4,"mat-hint",17),t.k0s(),t.DNE(7,Le,1,2,"mat-progress-bar",18)(8,ve,1,2,"mat-progress-bar",18),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(3);t.R7$(),t.Y8G("matTooltip",t.mNQ(e.alias||e.shortChannelId))("matTooltipDisabled",t.mNQ((e.alias||e.shortChannelId).length<26))("routerLink",t.lJ4(16,be))("state",t.l_i(17,Fe,e.alias?"alias":"shortChannelId",e.alias||e.shortChannelId)),t.R7$(),t.Lme(" ",t.brH(3,12,e.alias||e.shortChannelId||"",0,24),"",(e.alias||e.shortChannelId||"").length>25?"...":""," "),t.R7$(3),t.Y8G("ngIf","In"===n.direction),t.R7$(),t.Y8G("ngIf","Out"===n.direction),t.R7$(),t.Y8G("ngIf","In"===n.direction),t.R7$(),t.Y8G("ngIf","Out"===n.direction)}}function Re(i,s){if(1&i&&(t.j41(0,"div",12),t.DNE(1,Se,9,20,"div",13),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.allChannels)}}function ke(i,s){if(1&i&&(t.j41(0,"div",3)(1,"div",4)(2,"span",5),t.EFF(3,"Total Capacity"),t.k0s(),t.j41(4,"mat-hint",6),t.EFF(5),t.nI1(6,"number"),t.k0s(),t.nrm(7,"mat-progress-bar",7),t.k0s(),t.j41(8,"div",8),t.nrm(9,"mat-divider",9),t.k0s(),t.j41(10,"div",10),t.DNE(11,Re,2,1,"div",11),t.k0s()()),2&i){const e=t.XpG(),n=t.sdS(2);t.Y8G("ngClass",t.sMw(7,ye,e.screenSize===e.screenSizeEnum.XS||e.screenSize===e.screenSizeEnum.SM,e.screenSize===e.screenSizeEnum.MD,e.screenSize===e.screenSizeEnum.LG||e.screenSize===e.screenSizeEnum.XL)),t.R7$(5),t.SpI("",t.i5U(6,4,e.totalLiquidity,"1.0-0")," Sats"),t.R7$(6),t.Y8G("ngIf",e.allChannels&&e.allChannels.length>0)("ngIfElse",n)}}function Ie(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",24),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.goToChannels())}),t.EFF(1,"Open Channel"),t.k0s()}}function Te(i,s){if(1&i&&(t.j41(0,"div",22),t.EFF(1," No channels available. "),t.DNE(2,Ie,2,0,"button",23),t.k0s()),2&i){const e=t.XpG();t.R7$(2),t.Y8G("ngIf","Out"===e.direction)}}function we(i,s){if(1&i&&(t.j41(0,"div",25)(1,"p"),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let je=(()=>{var i;class s{constructor(n,a){this.router=n,this.commonService=a,this.screenSize="",this.screenSizeEnum=c.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/ecl/connections")}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix),t.rXU($.h))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],["fxLayout","column","fxFlex.gt-sm","88","fxFlex","84","fxLayoutAlign","start start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","class","w-100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100",1,"w-100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","100","fxLayoutAlign","start center","class","font-size-90 color-primary",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,o){if(1&a&&t.DNE(0,ke,12,11,"div",2)(1,Te,3,1,"ng-template",null,0,t.C5r)(3,we,3,1,"ng-template",null,1,t.C5r),2&a){const l=t.sdS(4);t.Y8G("ngIf",""===(null==o.errorMessage?null:o.errorMessage.trim()))("ngIfElse",l)}},dependencies:[d.YU,d.Sq,d.bT,N.$z,y.MV,tt.q,H.HM,_.DJ,_.sA,_.UI,S.PW,Q.oV,B.Ld,W.Wk,d.P9,d.QX],encapsulation:2}))}return i(),s})();var Z=C(6697),w=C(6695),v=C(2042),p=C(1676),R=C(6183),X=C(5964),j=C(5428),V=C(1585),ht=C(3017),K=C(1747),nt=C(1534),f=C(9417),Y=C(3746),et=C(9587);const De=["paymentReq"];function Ge(i,s){if(1&i&&(t.j41(0,"span",23),t.nrm(1,"fa-icon",24),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function Pe(i,s){if(1&i&&t.nrm(0,"span",25),2&i){const e=t.XpG(2);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function Ae(i,s){if(1&i&&(t.j41(0,"mat-hint",20),t.EFF(1),t.DNE(2,Ge,2,1,"span",21)(3,Pe,1,1,"span",22),t.EFF(4),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI(" ",e.paymentDecodedHintPre," "),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.SpI(" ",e.paymentDecodedHintPost," ")}}function Ne(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Payment request is required."),t.k0s())}function Be(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.JRh(e.paymentDecodedHint)}}function Me(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Payment amount is required."),t.k0s())}function $e(i,s){if(1&i){const e=t.RV6();t.j41(0,"mat-form-field",4)(1,"mat-label"),t.EFF(2,"Amount (Sats)"),t.k0s(),t.j41(3,"input",26,2),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.paymentAmount,a)||(o.paymentAmount=a),r.Njj(a)}),t.bIt("change",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onAmountChange(a))}),t.k0s(),t.j41(5,"mat-hint"),t.EFF(6,"It is a zero amount invoice, enter amount to be paid."),t.k0s(),t.DNE(7,Me,2,0,"mat-error",14),t.k0s()}if(2&i){const e=t.XpG();t.R7$(3),t.R50("ngModel",e.paymentAmount),t.R7$(4),t.Y8G("ngIf",!e.paymentAmount)}}function Ve(i,s){if(1&i&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.paymentError)}}function Oe(i,s){if(1&i&&(t.j41(0,"div",27),t.nrm(1,"fa-icon",28),t.DNE(2,Ve,2,1,"span",14),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.paymentError)}}let He=(()=>{var i;class s{constructor(n,a,o,l,m,u,T,F){this.dialogRef=n,this.store=a,this.eclEffects=o,this.logger=l,this.commonService=m,this.decimalPipe=u,this.actions=T,this.dataService=F,this.faExclamationTriangle=E.zpE,this.convertedCurrency=null,this.paymentDecoded={},this.zeroAmtInvoice=!1,this.paymentAmount=null,this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.selActiveChannel={},this.activeChannels={},this.feeLimit=null,this.selFeeLimitType=c.nv[0],this.feeLimitTypes=c.nv,this.paymentError="",this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.activeChannels=n.activeChannels,this.logger.info(n)}),this.actions.pipe((0,g.Q)(this.unSubs[1]),(0,X.p)(n=>n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL||n.type===c.Uu.SEND_PAYMENT_STATUS_ECL)).subscribe(n=>{n.type===c.Uu.SEND_PAYMENT_STATUS_ECL&&this.dialogRef.close(),n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&n.payload.status===c.wn.ERROR&&"SendPayment"===n.payload.action&&(delete this.paymentDecoded.amount,this.paymentError=n.payload.message)})}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():(this.paymentAmount=null,this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors(null),this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,Z.s)(1)).subscribe({next:n=>{this.paymentDecoded=n,this.paymentDecoded.timestamp&&!this.paymentDecoded.amount?(this.paymentDecoded.amount=0,this.zeroAmtInvoice=!0,this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion&&this.paymentDecoded.amount?this.commonService.convertCurrency(+this.paymentDecoded.amount,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[2])).subscribe({next:a=>{this.convertedCurrency=a,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,c.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:a=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""))},error:n=>{this.logger.error(n),this.paymentDecodedHintPre="ERROR: "+(n.message?n.message:"string"==typeof n?n:JSON.stringify(n)),this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}sendPayment(){this.store.dispatch((0,j.Fd)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{invoice:this.paymentRequest,amountMsat:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{invoice:this.paymentRequest,fromDialog:!0}}))}onPaymentRequestEntry(n){this.paymentRequest=n&&"string"==typeof n?n.trim():n,this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentRequest&&this.paymentRequest.length>100&&(this.paymentReq.control.setErrors(null),this.zeroAmtInvoice=!1,this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,Z.s)(1)).subscribe({next:a=>{this.paymentDecoded=a,this.paymentDecoded.timestamp&&!this.paymentDecoded.amount?(this.paymentDecoded.amount=0,this.zeroAmtInvoice=!0,this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion&&this.paymentDecoded.amount?this.commonService.convertCurrency(+this.paymentDecoded.amount,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[3])).subscribe({next:o=>{this.convertedCurrency=o,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,c.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:o=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""))},error:a=>{this.logger.error(a),this.paymentDecodedHintPre="ERROR: "+(a.message?a.message:"string"==typeof a?a:JSON.stringify(a)),this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}onAmountChange(n){delete this.paymentDecoded.amount,this.paymentDecoded.amount=n}resetData(){this.paymentDecoded={},this.paymentRequest="",this.selActiveChannel=null,this.feeLimit=null,this.selFeeLimitType=c.nv[0],this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(I.il),t.rXU(ht.B),t.rXU(A.gP),t.rXU($.h),t.rXU(d.QX),t.rXU(K.En),t.rXU(nt.u))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-lightning-send-payments"]],viewQuery:function(a,o){if(1&a&&t.GBs(De,5),2&a){let l;t.mGM(l=t.lsd())&&(o.paymentReq=l.first)}},standalone:!1,decls:26,vars:7,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["paymentAmt","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayoutAlign","space-between stretch","fxLayout","column"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","name","paymentRequest","rows","4","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["matInput","","name","amount","tabindex","2","required","",3,"ngModelChange","change","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",3)(1,"div",4)(2,"mat-card-header",5)(3,"div",6)(4,"span",7),t.EFF(5,"Send Payment"),t.k0s()(),t.j41(6,"button",8),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",9)(9,"form",10,0)(11,"mat-form-field",11)(12,"mat-label"),t.EFF(13,"Payment Request"),t.k0s(),t.j41(14,"textarea",12,1),t.bIt("ngModelChange",function(u){return r.eBV(l),r.Njj(o.onPaymentRequestEntry(u))})("matTextareaAutosize",function(){return r.eBV(l),r.Njj(!0)}),t.k0s(),t.DNE(16,Ae,5,4,"mat-hint",13)(17,Ne,2,0,"mat-error",14)(18,Be,2,1,"mat-error",14),t.k0s(),t.DNE(19,$e,8,2,"mat-form-field",15)(20,Oe,3,2,"div",16),t.j41(21,"div",17)(22,"button",18),t.bIt("click",function(){return r.eBV(l),r.Njj(o.resetData())}),t.EFF(23,"Clear Fields"),t.k0s(),t.j41(24,"button",19),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onSendPayment())}),t.EFF(25,"Send Payment"),t.k0s()()()()()()}if(2&a){const l=t.sdS(15);t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(8),t.Y8G("ngModel",o.paymentRequest),t.R7$(2),t.Y8G("ngIf",o.paymentRequest&&""!==o.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",!o.paymentRequest),t.R7$(),t.Y8G("ngIf",null==l.errors?null:l.errors.decodeError),t.R7$(),t.Y8G("ngIf",o.zeroAmtInvoice),t.R7$(),t.Y8G("ngIf",""!==o.paymentError)}},dependencies:[d.bT,f.qT,f.me,f.BC,f.cb,f.YS,f.vS,f.cV,D.aY,V.tx,N.$z,x.m2,x.MM,Y.fg,y.rl,y.nJ,y.MV,y.TL,_.DJ,_.sA,_.UI,et.N],encapsulation:2}))}return i(),s})();var U=C(9454);const Ye=["scrollContainer"];function Xe(i,s){if(1&i&&(t.j41(0,"div",9)(1,"div",2)(2,"h4",11),t.EFF(3,"Description"),t.k0s(),t.j41(4,"span",12),t.EFF(5),t.k0s()()()),2&i){const e=t.XpG();t.R7$(5),t.JRh(e.description)}}function Ue(i,s){1&i&&t.nrm(0,"mat-divider",14)}function ze(i,s){if(1&i){const e=t.RV6();t.j41(0,"mat-expansion-panel",23),t.bIt("opened",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onExpansionOpen(!0))})("closed",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onExpansionOpen(!1))}),t.j41(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"h4",24),t.EFF(4),t.k0s(),t.j41(5,"h4",25),t.EFF(6),t.nI1(7,"number"),t.k0s()()(),t.j41(8,"div",8)(9,"div",9)(10,"div",26)(11,"h4",11),t.EFF(12,"Fees (mSats)"),t.k0s(),t.j41(13,"span",12),t.EFF(14),t.nI1(15,"number"),t.k0s()(),t.j41(16,"div",26)(17,"h4",11),t.EFF(18,"Date/Time"),t.k0s(),t.j41(19,"span",12),t.EFF(20),t.nI1(21,"date"),t.k0s()()(),t.nrm(22,"mat-divider",14),t.j41(23,"div",9)(24,"div",2)(25,"h4",11),t.EFF(26,"ID"),t.k0s(),t.j41(27,"span",27),t.EFF(28),t.k0s()()(),t.nrm(29,"mat-divider",14),t.j41(30,"div",9)(31,"div",2)(32,"h4",11),t.EFF(33,"To Channel"),t.k0s(),t.j41(34,"span",27),t.EFF(35),t.k0s()()()()()}if(2&i){const e=s.$implicit,n=s.index,a=t.XpG();t.Y8G("expanded",a.expansionOpen),t.R7$(4),t.SpI("Part ",n+1),t.R7$(2),t.SpI("",t.bMT(7,7,e.amount)," (Sats)"),t.R7$(8),t.JRh(t.bMT(15,9,e.feesPaid)),t.R7$(6),t.JRh(t.i5U(21,11,e.timestamp,"dd/MMM/y HH:mm")),t.R7$(8),t.JRh(e.id),t.R7$(7),t.JRh(e.toChannelAlias)}}let Je=(()=>{var i;class s{constructor(n,a){this.dialogRef=n,this.data=a,this.description=null,this.shouldScroll=!0,this.expansionOpen=!0}ngOnInit(){this.payment=this.data.payment,this.data.sentPaymentInfo.length>0&&this.data.sentPaymentInfo[0].paymentRequest&&this.data.sentPaymentInfo[0].paymentRequest.description&&""!==this.data.sentPaymentInfo[0].paymentRequest.description&&(this.description=this.data.sentPaymentInfo[0].paymentRequest.description)}ngAfterViewChecked(){this.shouldScroll=this.scrollContainer.nativeElement.classList.value.includes("ps--active-y")}onScrollDown(){this.scrollContainer.nativeElement.scrollTop=this.scrollContainer.nativeElement.scrollTop+62.6}onExpansionOpen(n){this.expansionOpen=n}onClose(){this.dialogRef.close(!1)}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(V.Vh))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-payment-information"]],viewQuery:function(a,o){if(1&a&&t.GBs(Ye,5),2&a){let l;t.mGM(l=t.lsd())&&(o.scrollContainer=l.first)}},standalone:!1,decls:66,vars:15,consts:[["scrollContainer",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"h-40","padding-gap-x-large",3,"perfectScrollbar"],["fxLayout","column"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],["fxFlex","70"],[1,"w-100","my-1"],["fxLayout","row",4,"ngIf"],["class","w-100 my-1",4,"ngIf"],["class","flat-expansion-panel my-1",3,"expanded","opened","closed",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll Down","fxLayoutAlign","center center",3,"click"],["fxLayoutAlign","center center"],["fxLayout","row","fxLayoutAlign","end center",1,"padding-gap-x-large","padding-gap-bottom-large"],["fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",1,"mr-1",3,"mat-dialog-close"],[1,"flat-expansion-panel","my-1",3,"opened","closed","expanded"],["fxFlex","30","fxLayoutAlign","start",1,"font-bold-500"],["fxFlex","70","fxLayoutAlign","start",1,"font-bold-500"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Payment Information"),t.k0s()(),t.j41(6,"button",6),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7,0)(10,"div",8)(11,"div",9)(12,"div",10)(13,"h4",11),t.EFF(14,"Amount (Sats)"),t.k0s(),t.j41(15,"span",12),t.EFF(16),t.nI1(17,"number"),t.k0s()(),t.j41(18,"div",13)(19,"h4",11),t.EFF(20,"Date/Time"),t.k0s(),t.j41(21,"span",12),t.EFF(22),t.nI1(23,"date"),t.k0s()()(),t.nrm(24,"mat-divider",14),t.j41(25,"div",9)(26,"div",2)(27,"h4",11),t.EFF(28,"ID"),t.k0s(),t.j41(29,"span",12),t.EFF(30),t.k0s()()(),t.nrm(31,"mat-divider",14),t.j41(32,"div",9)(33,"div",2)(34,"h4",11),t.EFF(35,"Payment Hash"),t.k0s(),t.j41(36,"span",12),t.EFF(37),t.k0s()()(),t.nrm(38,"mat-divider",14),t.j41(39,"div",9)(40,"div",2)(41,"h4",11),t.EFF(42,"Payment Preimage"),t.k0s(),t.j41(43,"span",12),t.EFF(44),t.k0s()()(),t.nrm(45,"mat-divider",14),t.j41(46,"div",9)(47,"div",2)(48,"h4",11),t.EFF(49,"Recipient Node"),t.k0s(),t.j41(50,"span",12),t.EFF(51),t.k0s()()(),t.nrm(52,"mat-divider",14),t.DNE(53,Xe,6,1,"div",15)(54,Ue,1,0,"mat-divider",16),t.j41(55,"div",9)(56,"div",2)(57,"mat-accordion"),t.DNE(58,ze,36,14,"mat-expansion-panel",17),t.k0s()()()()(),t.j41(59,"div",18)(60,"button",19),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onScrollDown())}),t.j41(61,"mat-icon",20),t.EFF(62,"arrow_downward"),t.k0s()()(),t.j41(63,"div",21)(64,"button",22),t.EFF(65,"OK"),t.k0s()()()()}2&a&&(t.R7$(16),t.JRh(t.bMT(17,10,o.payment.recipientAmount)),t.R7$(6),t.JRh(t.i5U(23,12,o.payment.firstPartTimestamp,"dd/MMM/y HH:mm")),t.R7$(8),t.JRh(o.payment.id),t.R7$(7),t.JRh(o.payment.paymentHash),t.R7$(7),t.JRh(o.payment.paymentPreimage),t.R7$(7),t.JRh(o.payment.recipientNodeAlias),t.R7$(2),t.Y8G("ngIf",o.description),t.R7$(),t.Y8G("ngIf",o.description),t.R7$(4),t.Y8G("ngForOf",o.payment.parts),t.R7$(6),t.Y8G("mat-dialog-close",!1))},dependencies:[d.Sq,d.bT,V.tx,N.$z,N.$0,x.m2,x.MM,U.BS,U.GK,U.Z2,U.WN,ut.An,tt.q,_.DJ,_.sA,_.UI,B.Ld,d.QX,d.vh],encapsulation:2}))}return i(),s})();var k=C(1771),lt=C(7541),q=C(2929),z=C(3029);const qe=["sendPaymentForm"],Qe=()=>["all"],Ze=i=>({"error-border":i}),We=()=>["no_payment"],O=i=>({width:i}),Ke=i=>({"display-none":i});function tn(i,s){if(1&i&&(t.j41(0,"span",18),t.nrm(1,"fa-icon",19),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function en(i,s){if(1&i&&t.nrm(0,"span",20),2&i){const e=t.XpG(3);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function nn(i,s){if(1&i&&(t.j41(0,"mat-hint",15),t.EFF(1),t.DNE(2,tn,2,1,"span",16)(3,en,1,1,"span",17),t.EFF(4),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.SpI(" ",e.paymentDecodedHintPre," "),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.SpI(" ",e.paymentDecodedHintPost," ")}}function an(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Payment request is required."),t.k0s())}function on(i,s){if(1&i){const e=t.RV6();t.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),t.EFF(4,"Payment Request"),t.k0s(),t.j41(5,"textarea",9,1),t.bIt("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onPaymentRequestEntry(a))})("matTextareaAutosize",function(){return r.eBV(e),r.Njj(!0)}),t.k0s(),t.DNE(7,nn,5,4,"mat-hint",10)(8,an,2,0,"mat-error",11),t.k0s(),t.j41(9,"div",12)(10,"button",13),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.resetData())}),t.EFF(11,"Clear Field"),t.k0s(),t.j41(12,"button",14),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onSendPayment())}),t.EFF(13,"Send Payment"),t.k0s()()()}if(2&i){const e=t.XpG();t.R7$(5),t.Y8G("ngModel",e.paymentRequest),t.R7$(2),t.Y8G("ngIf",e.paymentRequest&&""!==e.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",!e.paymentRequest)}}function sn(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",21)(1,"button",14),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.openSendPaymentModal())}),t.EFF(2,"Send Payment"),t.k0s()()}}function ln(i,s){if(1&i&&(t.j41(0,"mat-option",66),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function rn(i,s){1&i&&t.nrm(0,"mat-progress-bar",67)}function cn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Date/Time"),t.k0s())}function mn(i,s){if(1&i&&(t.j41(0,"td",69),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.i5U(2,1,null==e?null:e.firstPartTimestamp,"dd/MMM/y HH:mm"))}}function pn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"ID"),t.k0s())}function un(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.id)}}function dn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Destination Node ID"),t.k0s())}function hn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeId)}}function fn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Destination"),t.k0s())}function _n(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeAlias)}}function gn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Description"),t.k0s())}function Cn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description)}}function yn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Payment Hash"),t.k0s())}function bn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function Fn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Preimage"),t.k0s())}function En(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentPreimage)}}function xn(i,s){1&i&&(t.j41(0,"th",72),t.EFF(1,"Amount (Sats)"),t.k0s())}function Ln(i,s){if(1&i&&(t.j41(0,"td",69)(1,"span",73),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.recipientAmount))}}function vn(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",74)(1,"div",75)(2,"mat-select",76),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",77),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function Sn(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",78)(1,"button",79),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onPaymentClick(a))}),t.EFF(2,"View Info"),t.k0s()()}}function Rn(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No payment available."),t.k0s())}function kn(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting payments..."),t.k0s())}function In(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function Tn(i,s){if(1&i&&(t.j41(0,"td",80),t.DNE(1,Rn,2,0,"p",11)(2,kn,2,0,"p",11)(3,In,2,1,"p",11),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function wn(i,s){if(1&i&&(t.j41(0,"span",81),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,e.timestamp,"dd/MMM/y HH:mm")," ")}}function jn(i,s){if(1&i&&(t.qex(0),t.DNE(1,wn,3,4,"span",82),t.bVm()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Dn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"span",81),t.EFF(2),t.k0s(),t.DNE(3,jn,2,1,"ng-container",11),t.k0s()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" Total Attempts: ",(null==e||null==e.parts?null:e.parts.length)||0," "),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Gn(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(e.id)}}function Pn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,Gn,4,4,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function An(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Pn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.id),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Nn(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(e.toChannelId)}}function Bn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,Nn,4,4,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Mn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Bn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeId),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function $n(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(e.toChannelAlias)}}function Vn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,$n,4,4,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function On(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Vn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeAlias),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Hn(i,s){if(1&i&&(t.j41(0,"span",84),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,e.amount,"1.0-0")," ")}}function Yn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,Hn,3,4,"span",85),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Xn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"span",84),t.EFF(2),t.nI1(3,"number"),t.k0s(),t.DNE(4,Yn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.i5U(3,2,null==e?null:e.recipientAmount,"1.0-0")),t.R7$(2),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Un(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function zn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,Un,5,7,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Jn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,zn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function qn(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Qn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,qn,5,7,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Zn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Qn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Wn(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Kn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,Wn,5,7,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function ti(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Kn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentPreimage),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function ei(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",89)(1,"button",90),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2).$implicit,l=t.XpG(2);return r.Njj(l.onPartClick(a,o))}),t.EFF(2),t.k0s()()}if(2&i){const e=s.index;t.R7$(2),t.SpI("View ",e+1)}}function ni(i,s){if(1&i&&(t.j41(0,"div"),t.DNE(1,ei,3,1,"div",88),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function ii(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",69)(1,"span",86)(2,"button",87),t.bIt("click",function(){const a=r.eBV(e).$implicit;return r.Njj(a.is_expanded=!a.is_expanded)}),t.EFF(3),t.k0s()(),t.DNE(4,ni,2,1,"div",11),t.k0s()}if(2&i){const e=s.$implicit;t.R7$(3),t.JRh(null!=e&&e.is_expanded?"Hide":"Show"),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function ai(i,s){1&i&&t.nrm(0,"tr",91)}function oi(i,s){if(1&i&&t.nrm(0,"tr",92),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ke,(null==e.payments||null==e.payments.data?null:e.payments.data.length)>0))}}function si(i,s){1&i&&t.nrm(0,"tr",93)}function li(i,s){1&i&&t.nrm(0,"tr",91)}function ri(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",22)(1,"div",23)(2,"div",24),t.nrm(3,"fa-icon",25),t.j41(4,"span",26),t.EFF(5,"Payments History"),t.k0s()(),t.j41(6,"div",27)(7,"mat-form-field",28)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",29),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilterBy,a)||(o.selFilterBy=a),r.Njj(a)}),t.bIt("selectionChange",function(){r.eBV(e);const a=t.XpG();return a.selFilter="",r.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,ln,2,2,"mat-option",30),t.k0s()()(),t.j41(13,"mat-form-field",28)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",31),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilter,a)||(o.selFilter=a),r.Njj(a)}),t.bIt("input",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())})("keyup",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",32)(18,"div",33),t.DNE(19,rn,1,0,"mat-progress-bar",34),t.j41(20,"table",35,2),t.qex(22,36),t.DNE(23,cn,2,0,"th",37)(24,mn,3,4,"td",38),t.bVm(),t.qex(25,39),t.DNE(26,pn,2,0,"th",37)(27,un,4,4,"td",38),t.bVm(),t.qex(28,40),t.DNE(29,dn,2,0,"th",37)(30,hn,4,4,"td",38),t.bVm(),t.qex(31,41),t.DNE(32,fn,2,0,"th",37)(33,_n,4,4,"td",38),t.bVm(),t.qex(34,42),t.DNE(35,gn,2,0,"th",37)(36,Cn,4,4,"td",38),t.bVm(),t.qex(37,43),t.DNE(38,yn,2,0,"th",37)(39,bn,4,4,"td",38),t.bVm(),t.qex(40,44),t.DNE(41,Fn,2,0,"th",37)(42,En,4,4,"td",38),t.bVm(),t.qex(43,45),t.DNE(44,xn,2,0,"th",46)(45,Ln,4,3,"td",38),t.bVm(),t.qex(46,47),t.DNE(47,vn,6,0,"th",48)(48,Sn,3,0,"td",49),t.bVm(),t.qex(49,50),t.DNE(50,Tn,4,3,"td",51),t.bVm(),t.qex(51,52),t.DNE(52,Dn,4,2,"td",38),t.bVm(),t.qex(53,53),t.DNE(54,An,5,5,"td",38),t.bVm(),t.qex(55,54),t.DNE(56,Mn,5,5,"td",38),t.bVm(),t.qex(57,55),t.DNE(58,On,5,5,"td",38),t.bVm(),t.qex(59,56),t.DNE(60,Xn,5,5,"td",38),t.bVm(),t.qex(61,57),t.DNE(62,Jn,5,5,"td",38),t.bVm(),t.qex(63,58),t.DNE(64,Zn,5,5,"td",38),t.bVm(),t.qex(65,59),t.DNE(66,ti,5,5,"td",38),t.bVm(),t.qex(67,60),t.DNE(68,ii,5,2,"td",38),t.bVm(),t.DNE(69,ai,1,0,"tr",61)(70,oi,1,3,"tr",62)(71,si,1,0,"tr",63)(72,li,1,0,"tr",64),t.k0s()()(),t.nrm(73,"mat-paginator",65),t.k0s()}if(2&i){const e=t.XpG();t.R7$(3),t.Y8G("icon",e.faHistory),t.R7$(7),t.R50("ngModel",e.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(17,Qe).concat(e.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",e.selFilter),t.R7$(3),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.payments)("ngClass",t.eq3(18,Ze,""!==e.errorMessage)),t.R7$(49),t.Y8G("matRowDefColumns",e.partColumns)("matRowDefWhen",e.is_group),t.R7$(),t.Y8G("matFooterRowDef",t.lJ4(20,We)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let It=(()=>{var i;class s{constructor(n,a,o,l,m,u,T,F){this.logger=n,this.commonService=a,this.store=o,this.rtlEffects=l,this.decimalPipe=m,this.dataService=u,this.datePipe=T,this.camelCaseWithSpaces=F,this.calledFrom="transactions",this.convertedCurrency=null,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:c.md,sortBy:"firstPartTimestamp",sortOrder:c.oi.DESCENDING},this.faHistory=E.Int,this.newlyAddedPayment="",this.information={},this.payments=new p.I6([]),this.paymentJSONArr=[],this.paymentDecoded={},this.displayedColumns=[],this.partColumns=[],this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.information=n}),this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.partColumns=[],this.displayedColumns.map(a=>this.partColumns.push("group_"+a)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.flgInit||(this.flgInit=!0,this.store.dispatch((0,j.CK)({payload:{count:1e6,skip:0}}))),this.logger.info(this.displayedColumns)}),this.store.select(b.KT).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=n.payments&&n.payments.sent&&n.payments.sent.length>0?n.payments.sent:[],this.paymentJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(n)})}ngAfterViewInit(){this.paymentJSONArr.length>0&&this.loadPaymentsTable(this.paymentJSONArr)}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.payments.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=(n.firstPartTimestamp?this.datePipe.transform(new Date(n.firstPartTimestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(n).toLowerCase();break;case"firstPartTimestamp":o=this.datePipe.transform(new Date(n.firstPartTimestamp||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}loadPaymentsTable(n){this.payments=new p.I6(n?[...n]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(a,o)=>{switch(o){case"firstPartTimestamp":return this.commonService.sortByKey(a.parts,"timestamp","number",this.sort?.direction),a.firstPartTimestamp;case"id":return this.commonService.sortByKey(a.parts,"id","string",this.sort?.direction),a.id;case"recipientNodeAlias":return this.commonService.sortByKey(a.parts,"toChannelAlias","string",this.sort?.direction),a.recipientNodeAlias;case"recipientAmount":return this.commonService.sortByKey(a.parts,"amount","number",this.sort?.direction),a.recipientAmount;default:return a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null}},this.payments.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,Z.s)(1)).subscribe(n=>{this.paymentDecoded=n,this.paymentDecoded.timestamp?(this.paymentDecoded.amount||(this.paymentDecoded.amount=0),this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded.paymentHash||"",this.paymentDecoded.amount&&0!==this.paymentDecoded.amount?(this.store.dispatch((0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"paymentHash",value:this.paymentDecoded.paymentHash,title:"Payment Hash",width:100}],[{key:"nodeId",value:this.paymentDecoded.nodeId,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:50,type:c.UN.DATE_TIME},{key:"amount",value:this.paymentDecoded.amount,title:"Amount (Sats)",width:50,type:c.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:c.UN.NUMBER},{key:"minFinalCltvExpiry",value:this.paymentDecoded.minFinalCltvExpiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,Z.s)(1)).subscribe(a=>{a&&(this.store.dispatch((0,j.Fd)({payload:{invoice:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",message:[[{key:"paymentHash",value:this.paymentDecoded.paymentHash,title:"Payment Hash",width:100}],[{key:"nodeId",value:this.paymentDecoded.nodeId,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:40,type:c.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:c.UN.NUMBER},{key:"minFinalCltvExpiry",value:this.paymentDecoded.minFinalCltvExpiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",getInputs:[{placeholder:"Amount (Sats)",inputType:c.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,Z.s)(1)).subscribe(o=>{o&&(this.paymentDecoded.amount=o[0].inputValue,this.store.dispatch((0,j.Fd)({payload:{invoice:this.paymentRequest,amountMsat:1e3*o[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(n){this.paymentRequest=n,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,Z.s)(1)).subscribe(a=>{this.paymentDecoded=a,this.paymentDecoded.amount?this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.amount,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[4])).subscribe({next:o=>{this.convertedCurrency=o,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,c.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:o=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost="")})}openSendPaymentModal(){this.store.dispatch((0,k.xO)({payload:{data:{component:He}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}is_group(n,a){return a.parts&&a.parts.length>1}onPaymentClick(n){n.paymentHash&&""!==n.paymentHash.trim()?this.dataService.decodePayments(n.paymentHash).pipe((0,Z.s)(1)).subscribe({next:a=>{setTimeout(()=>{this.showPaymentView(n,a.length&&a.length>0?a[0]:[])},0)},error:a=>{this.showPaymentView(n,[])}}):this.showPaymentView(n,[])}showPaymentView(n,a){this.store.dispatch((0,k.xO)({payload:{data:{sentPaymentInfo:a,payment:n,component:Je}}}))}onPartClick(n,a){a.paymentHash&&""!==a.paymentHash.trim()?this.dataService.decodePayments(a.paymentHash).pipe((0,Z.s)(1)).subscribe({next:o=>{setTimeout(()=>{this.showPartView(n,a,o.length&&o.length>0?o[0]:[])},0)},error:o=>{this.showPartView(n,a,[])}}):this.showPartView(n,a,[])}showPartView(n,a,o){const l=[[{key:"paymentHash",value:a.paymentHash,title:"Payment Hash",width:100,type:c.UN.STRING}],[{key:"paymentPreimage",value:a.paymentPreimage,title:"Payment Preimage",width:100,type:c.UN.STRING}],[{key:"toChannelId",value:n.toChannelId,title:"Channel",width:100,type:c.UN.STRING}],[{key:"id",value:n.id,title:"Part ID",width:50,type:c.UN.STRING},{key:"timestamp",value:n.timestamp,title:"Time",width:50,type:c.UN.DATE_TIME}],[{key:"amount",value:n.amount,title:"Amount (Sats)",width:50,type:c.UN.NUMBER},{key:"feesPaid",value:n.feesPaid,title:"Fee (Sats)",width:50,type:c.UN.NUMBER}]];o&&o.length>0&&o[0].paymentRequest&&o[0].paymentRequest.description&&""!==o[0].paymentRequest.description&&l.splice(3,0,[{key:"description",value:o[0].paymentRequest.description,title:"Description",width:100,type:c.UN.STRING}]),this.store.dispatch((0,k.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Payment Part Information",message:l}}}))}onPageChange(n){this.store.dispatch((0,j.CK)({payload:{count:this.pageSize,skip:n.pageIndex*n.pageSize}}))}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const n=JSON.parse(JSON.stringify(this.payments.data)),a=n?.reduce((o,l)=>(l.paymentHash&&""!==l.paymentHash.trim()&&(o=""===o?l.paymentHash:o+","+l.paymentHash),o),"");this.dataService.decodePayments(a).pipe((0,g.Q)(this.unSubs[5])).subscribe(o=>{o.forEach((m,u)=>{m.length>0&&m[0].paymentRequest&&m[0].paymentRequest.description&&""!==m[0].paymentRequest.description&&(n[u].description=m[0].paymentRequest.description)});const l=n?.reduce((m,u)=>m.concat(u),[]);this.commonService.downloadFile(l,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il),t.rXU(lt.H),t.rXU(d.QX),t.rXU(nt.u),t.rXU(d.vh),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-lightning-payments"]],viewQuery:function(a,o){if(1&a&&(t.GBs(qe,5),t.GBs(v.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first),t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Payments")}])],decls:4,vars:3,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["table",""],["fxLayout","column","fxFlex","colWidth","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100"],["matInput","","name","paymentRequest","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","perfectScrollbar","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","colWidth",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","colWidth","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","firstPartTimestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","id"],["matColumnDef","recipientNodeId"],["matColumnDef","recipientNodeAlias"],["matColumnDef","description"],["matColumnDef","paymentHash"],["matColumnDef","paymentPreimage"],["matColumnDef","recipientAmount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","group_firstPartTimestamp"],["matColumnDef","group_id"],["matColumnDef","group_recipientNodeId"],["matColumnDef","group_recipientNodeAlias"],["matColumnDef","group_recipientAmount"],["matColumnDef","group_description"],["matColumnDef","group_paymentHash"],["matColumnDef","group_paymentPreimage"],["matColumnDef","group_actions"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"part-row-span"],["fxLayoutAlign","start center","class","part-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"ellipsis-parent","part-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"part-row-span"],["fxLayoutAlign","end center","class","part-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"part-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-part-expand",3,"click"],["class","part-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"part-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-part-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(a,o){1&a&&(t.j41(0,"div",3),t.DNE(1,on,14,3,"form",4)(2,sn,3,0,"div",5)(3,ri,74,21,"div",6),t.k0s()),2&a&&(t.R7$(),t.Y8G("ngIf","home"===o.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===o.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===o.calledFrom))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.qT,f.me,f.BC,f.cb,f.YS,f.vS,f.cV,D.aY,N.$z,Y.fg,y.rl,y.nJ,y.MV,y.TL,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,w.iy,B.ZF,B.Ld,d.QX,d.vh],styles:[".mat-column-group_actions[_ngcontent-%COMP%] .part-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .part-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-part-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-part-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_firstPartTimestamp[_ngcontent-%COMP%] .part-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem}.part-row-span[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_firstPartTimestamp[_ngcontent-%COMP%]{min-width:11rem}"]}))}return i(),s})();var it=C(6114);function ci(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Description is required."),t.k0s())}function mi(i,s){1&i&&(t.j41(0,"span",29),t.EFF(1,"= "),t.k0s())}function pi(i,s){if(1&i&&(t.j41(0,"span",30),t.nrm(1,"fa-icon",31),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function ui(i,s){if(1&i&&t.nrm(0,"span",32),2&i){const e=t.XpG();t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function di(i,s){if(1&i&&(t.j41(0,"mat-option",33),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&i){const e=s.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(t.bMT(2,2,e))}}function hi(i,s){if(1&i&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.invoiceError)}}function fi(i,s){if(1&i&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.DNE(2,hi,2,1,"span",11),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.invoiceError)}}let _i=(()=>{var i;class s{constructor(n,a,o,l,m,u){this.dialogRef=n,this.data=a,this.store=o,this.decimalPipe=l,this.commonService=m,this.actions=u,this.faExclamationTriangle=E.zpE,this.convertedCurrency=null,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=c.md,this.timeUnitEnum=c.F7,this.timeUnits=c.SY,this.selTimeUnit=c.F7.SECS,this.invoiceError="",this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.information=n}),this.actions.pipe((0,g.Q)(this.unSubs[2]),(0,X.p)(n=>n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(n=>{n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&"CreateInvoice"===n.payload.action&&(n.payload.status===c.wn.ERROR&&(this.invoiceError=n.payload.message),n.payload.status===c.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(n){if(this.invoiceError="",!this.description)return!0;let a=this.expiry?this.expiry:c.It;this.expiry&&this.selTimeUnit!==c.F7.SECS&&(a=this.commonService.convertTime(this.expiry,this.selTimeUnit,c.F7.SECS));let o=null;o=this.invoiceValue?{description:this.description,expireIn:a,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:a},this.store.dispatch((0,j.iO)({payload:o}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=c.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[3])).subscribe({next:n=>{this.convertedCurrency=n,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,c.k.OTHER)+" "+this.convertedCurrency.unit},error:n=>{this.invoiceValueHint="Conversion Error: "+n}}))}onTimeUnitChange(n){this.expiry&&this.selTimeUnit!==n.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,n.value)),this.selTimeUnit=n.value}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(V.Vh),t.rXU(I.il),t.rXU(d.QX),t.rXU($.h),t.rXU(K.En))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-create-invoices"]],standalone:!1,decls:46,vars:19,consts:[["addInvoiceForm","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","name","description","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","name","invValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","type","number","name","exp",3,"ngModelChange","step","min","ngModel"],["fxLayout","column","fxFlex","26"],["name","timeUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Create Invoice"),t.k0s()(),t.j41(6,"button",6),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),t.EFF(13,"Description"),t.k0s(),t.j41(14,"input",10),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.description,u)||(o.description=u),r.Njj(u)}),t.k0s(),t.DNE(15,ci,2,0,"mat-error",11),t.k0s(),t.j41(16,"div",12)(17,"mat-form-field",13)(18,"mat-label"),t.EFF(19,"Amount"),t.k0s(),t.j41(20,"input",14),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.invoiceValue,u)||(o.invoiceValue=u),r.Njj(u)}),t.bIt("keyup",function(){return r.eBV(l),r.Njj(o.onInvoiceValueChange())}),t.k0s(),t.j41(21,"span",15),t.EFF(22,"Sats "),t.k0s(),t.j41(23,"mat-hint",16),t.DNE(24,mi,2,0,"span",17)(25,pi,2,1,"span",18)(26,ui,1,1,"span",19),t.EFF(27),t.k0s()(),t.j41(28,"mat-form-field",20)(29,"mat-label"),t.EFF(30,"Expiry"),t.k0s(),t.j41(31,"input",21),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.expiry,u)||(o.expiry=u),r.Njj(u)}),t.k0s(),t.j41(32,"span",15),t.EFF(33),t.nI1(34,"titlecase"),t.k0s()(),t.j41(35,"mat-form-field",22)(36,"mat-label"),t.EFF(37,"Time Unit"),t.k0s(),t.j41(38,"mat-select",23),t.bIt("selectionChange",function(u){return r.eBV(l),r.Njj(o.onTimeUnitChange(u))}),t.DNE(39,di,3,4,"mat-option",24),t.k0s()()(),t.DNE(40,fi,3,2,"div",25),t.j41(41,"div",26)(42,"button",27),t.bIt("click",function(){return r.eBV(l),r.Njj(o.resetData())}),t.EFF(43,"Clear Field"),t.k0s(),t.j41(44,"button",28),t.bIt("click",function(){r.eBV(l);const u=t.sdS(10);return r.Njj(o.onAddInvoice(u))}),t.EFF(45,"Create Invoice"),t.k0s()()()()()()}2&a&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(8),t.R50("ngModel",o.description),t.R7$(),t.Y8G("ngIf",!o.description),t.R7$(5),t.Y8G("step",100)("min",1),t.R50("ngModel",o.invoiceValue),t.R7$(4),t.Y8G("ngIf",""!==o.invoiceValueHint),t.R7$(),t.Y8G("ngIf",o.convertedCurrency&&"FA"===o.convertedCurrency.iconType&&""!==o.invoiceValueHint),t.R7$(),t.Y8G("ngIf",o.convertedCurrency&&"SVG"===o.convertedCurrency.iconType&&""!==o.invoiceValueHint),t.R7$(),t.SpI(" ",o.invoiceValueHint," "),t.R7$(4),t.Y8G("step",o.selTimeUnit===o.timeUnitEnum.SECS?300:o.selTimeUnit===o.timeUnitEnum.MINS?10:o.selTimeUnit===o.timeUnitEnum.HOURS?2:1)("min",1),t.R50("ngModel",o.expiry),t.R7$(2),t.SpI("",t.bMT(34,17,o.selTimeUnit)," "),t.R7$(5),t.Y8G("value",o.selTimeUnit),t.R7$(),t.Y8G("ngForOf",o.timeUnits),t.R7$(),t.Y8G("ngIf",""!==o.invoiceError))},dependencies:[d.Sq,d.bT,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.VZ,f.vS,f.cV,D.aY,V.tx,N.$z,x.m2,x.MM,Y.fg,y.rl,y.nJ,y.MV,y.TL,y.yw,_.DJ,_.sA,_.UI,R.VO,z.wT,et.N,it.V,d.PV],encapsulation:2}))}return i(),s})();var gi=C(6439);const Ci=()=>["all"],yi=i=>({"error-border":i}),bi=()=>["no_invoice"],ft=i=>({"mr-0":i}),_t=i=>({width:i}),Fi=i=>({"display-none":i});function Ei(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Description is required."),t.k0s())}function xi(i,s){1&i&&(t.j41(0,"span",21),t.EFF(1,"= "),t.k0s())}function Li(i,s){if(1&i&&(t.j41(0,"span",22),t.nrm(1,"fa-icon",23),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function vi(i,s){if(1&i&&t.nrm(0,"span",24),2&i){const e=t.XpG(2);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function Si(i,s){if(1&i){const e=t.RV6();t.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),t.EFF(4,"Description"),t.k0s(),t.j41(5,"input",9),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.description,a)||(o.description=a),r.Njj(a)}),t.k0s(),t.DNE(6,Ei,2,0,"mat-error",10),t.k0s(),t.j41(7,"mat-form-field",11)(8,"mat-label"),t.EFF(9,"Amount"),t.k0s(),t.j41(10,"input",12,1),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.invoiceValue,a)||(o.invoiceValue=a),r.Njj(a)}),t.bIt("keyup",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onInvoiceValueChange())}),t.k0s(),t.j41(12,"span",13),t.EFF(13,"Sats "),t.k0s(),t.j41(14,"mat-hint",14),t.DNE(15,xi,2,0,"span",15)(16,Li,2,1,"span",16)(17,vi,1,1,"span",17),t.EFF(18),t.k0s()(),t.j41(19,"div",18)(20,"button",19),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.resetData())}),t.EFF(21,"Clear Field"),t.k0s(),t.j41(22,"button",20),t.bIt("click",function(){r.eBV(e);const a=t.sdS(1),o=t.XpG();return r.Njj(o.onAddInvoice(a))}),t.EFF(23,"Create Invoice"),t.k0s()()()}if(2&i){const e=t.XpG();t.R7$(5),t.R50("ngModel",e.description),t.R7$(),t.Y8G("ngIf",!e.description),t.R7$(4),t.Y8G("step",100)("min",1),t.R50("ngModel",e.invoiceValue),t.R7$(5),t.Y8G("ngIf",""!==e.invoiceValueHint),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.invoiceValueHint),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.invoiceValueHint),t.R7$(),t.SpI(" ",e.invoiceValueHint," ")}}function Ri(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",25)(1,"button",26),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.openCreateInvoiceModal())}),t.EFF(2,"Create Invoice"),t.k0s()()}}function ki(i,s){if(1&i&&(t.j41(0,"mat-option",63),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function Ii(i,s){1&i&&t.nrm(0,"mat-progress-bar",64)}function Ti(i,s){1&i&&t.nrm(0,"th",65)}function wi(i,s){if(1&i&&t.nrm(0,"span",70),2&i){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ft,e.screenSize===e.screenSizeEnum.XS))}}function ji(i,s){if(1&i&&t.nrm(0,"span",71),2&i){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ft,e.screenSize===e.screenSizeEnum.XS))}}function Di(i,s){if(1&i&&t.nrm(0,"span",72),2&i){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ft,e.screenSize===e.screenSizeEnum.XS))}}function Gi(i,s){if(1&i&&(t.j41(0,"td",66),t.DNE(1,wi,1,3,"span",67)(2,ji,1,3,"span",68)(3,Di,1,3,"span",69),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf","received"===(null==e?null:e.status)),t.R7$(),t.Y8G("ngIf","unpaid"===(null==e?null:e.status)),t.R7$(),t.Y8G("ngIf",!(null!=e&&e.status)||"expired"===(null==e?null:e.status)||"unknown"===(null==e?null:e.status))}}function Pi(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Date Created"),t.k0s())}function Ai(i,s){if(1&i&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function Ni(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Date Expiry"),t.k0s())}function Bi(i,s){if(1&i&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.expiresAt),"dd/MMM/y HH:mm")||"-")}}function Mi(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Date Settled"),t.k0s())}function $i(i,s){if(1&i&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.receivedAt),"dd/MMM/y HH:mm")||"-")}}function Vi(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Node ID"),t.k0s())}function Oi(i,s){if(1&i&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,_t,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Hi(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Description"),t.k0s())}function Yi(i,s){if(1&i&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,_t,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description)}}function Xi(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Payment Hash"),t.k0s())}function Ui(i,s){if(1&i&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,_t,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function zi(i,s){1&i&&(t.j41(0,"th",76),t.EFF(1,"Amount (Sats)"),t.k0s())}function Ji(i,s){if(1&i&&(t.j41(0,"td",66)(1,"span",77),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(null!=e&&e.amount?t.i5U(3,1,null==e?null:e.amount,"1.0-0"):"-")}}function qi(i,s){1&i&&(t.j41(0,"th",78),t.EFF(1," Amount Settled (Sats)"),t.k0s())}function Qi(i,s){if(1&i&&(t.j41(0,"td",66)(1,"span",77),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(null!=e&&e.amountSettled?t.i5U(3,1,null==e?null:e.amountSettled,"1.0-0"):"-")}}function Zi(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",79)(1,"div",80)(2,"mat-select",81),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",82),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function Wi(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",83)(1,"div",80)(2,"mat-select",84),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",82),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onInvoiceClick(a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",82),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onRefreshInvoice(a))}),t.EFF(7,"Refresh"),t.k0s()()()()}}function Ki(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No invoice available."),t.k0s())}function ta(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting invoices..."),t.k0s())}function ea(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function na(i,s){if(1&i&&(t.j41(0,"td",85),t.DNE(1,Ki,2,0,"p",10)(2,ta,2,0,"p",10)(3,ea,2,1,"p",10),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function ia(i,s){if(1&i&&t.nrm(0,"tr",86),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Fi,(null==e.invoices?null:e.invoices.data)&&(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)>0))}}function aa(i,s){1&i&&t.nrm(0,"tr",87)}function oa(i,s){1&i&&t.nrm(0,"tr",88)}function sa(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",27)(1,"div",28)(2,"div",29),t.nrm(3,"fa-icon",30),t.j41(4,"span",31),t.EFF(5,"Invoices History"),t.k0s()(),t.j41(6,"div",32)(7,"mat-form-field",33)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",34),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilterBy,a)||(o.selFilterBy=a),r.Njj(a)}),t.bIt("selectionChange",function(){r.eBV(e);const a=t.XpG();return a.selFilter="",r.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,ki,2,2,"mat-option",35),t.k0s()()(),t.j41(13,"mat-form-field",33)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",36),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilter,a)||(o.selFilter=a),r.Njj(a)}),t.bIt("input",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())})("keyup",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",37),t.DNE(18,Ii,1,0,"mat-progress-bar",38),t.j41(19,"table",39,2),t.qex(21,40),t.DNE(22,Ti,1,0,"th",41)(23,Gi,4,3,"td",42),t.bVm(),t.qex(24,43),t.DNE(25,Pi,2,0,"th",44)(26,Ai,3,4,"td",42),t.bVm(),t.qex(27,45),t.DNE(28,Ni,2,0,"th",44)(29,Bi,3,4,"td",42),t.bVm(),t.qex(30,46),t.DNE(31,Mi,2,0,"th",44)(32,$i,3,4,"td",42),t.bVm(),t.qex(33,47),t.DNE(34,Vi,2,0,"th",44)(35,Oi,4,4,"td",42),t.bVm(),t.qex(36,48),t.DNE(37,Hi,2,0,"th",44)(38,Yi,4,4,"td",42),t.bVm(),t.qex(39,49),t.DNE(40,Xi,2,0,"th",44)(41,Ui,4,4,"td",42),t.bVm(),t.qex(42,50),t.DNE(43,zi,2,0,"th",51)(44,Ji,4,4,"td",42),t.bVm(),t.qex(45,52),t.DNE(46,qi,2,0,"th",53)(47,Qi,4,4,"td",42),t.bVm(),t.qex(48,54),t.DNE(49,Zi,6,0,"th",55)(50,Wi,8,0,"td",56),t.bVm(),t.qex(51,57),t.DNE(52,na,4,3,"td",58),t.bVm(),t.DNE(53,ia,1,3,"tr",59)(54,aa,1,0,"tr",60)(55,oa,1,0,"tr",61),t.k0s()(),t.nrm(56,"mat-paginator",62),t.k0s()}if(2&i){const e=t.XpG();t.R7$(3),t.Y8G("icon",e.faHistory),t.R7$(7),t.R50("ngModel",e.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,Ci).concat(e.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",e.selFilter),t.R7$(2),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.invoices)("ngClass",t.eq3(16,yi,""!==e.errorMessage)),t.R7$(34),t.Y8G("matFooterRowDef",t.lJ4(18,bi)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Tt=(()=>{var i;class s{constructor(n,a,o,l,m,u,T){this.logger=n,this.store=a,this.decimalPipe=o,this.commonService=l,this.datePipe=m,this.actions=u,this.camelCaseWithSpaces=T,this.calledFrom="transactions",this.faHistory=E.Int,this.convertedCurrency=null,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:c.md,sortBy:"expiresAt",sortOrder:c.oi.DESCENDING},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoices=new p.I6([]),this.invoiceJSONArr=[],this.information={},this.selFilter="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.information=n}),this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.flgInit||(this.flgInit=!0,this.store.dispatch((0,j.Do)({payload:{count:1e6,skip:0}}))),this.logger.info(this.displayedColumns)}),this.store.select(b.rN).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.invoiceJSONArr=n.invoices&&n.invoices.length>0?n.invoices:[],this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(n)}),this.actions.pipe((0,g.Q)(this.unSubs[4]),(0,X.p)(n=>n.type===c.Uu.SET_LOOKUP_ECL||n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(n=>{n.type===c.Uu.SET_LOOKUP_ECL&&this.invoiceJSONArr&&this.sort&&this.paginator&&n.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(n.payload))),this.loadInvoicesTable(this.invoiceJSONArr))})}ngAfterViewInit(){this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr)}openCreateInvoiceModal(){this.store.dispatch((0,k.xO)({payload:{data:{pageSize:this.pageSize,component:_i}}}))}onAddInvoice(n){if(!this.description)return!0;const a=this.expiry?this.expiry:c.It;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue;let o=null;o=this.invoiceValue?{description:this.description,expireIn:a,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:a},this.store.dispatch((0,j.iO)({payload:o})),this.resetData()}onInvoiceClick(n){this.store.dispatch((0,k.xO)({payload:{data:{invoice:n,newlyAdded:!1,component:gi.Z}}}))}onRefreshInvoice(n){this.store.dispatch((0,j.Yi)({payload:n.paymentHash}))}updateInvoicesData(n){this.invoiceJSONArr=this.invoiceJSONArr?.map(a=>a.paymentHash===n.paymentHash?n:a)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.invoices.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=(n.timestamp?this.datePipe.transform(new Date(1e3*n.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(n).toLowerCase();break;case"status":o=n?.status&&"expired"!==n?.status&&"unknown"!==n?.status?n.status?.toLowerCase():"expired/unknown";break;case"timestamp":case"expiresAt":case"receivedAt":o=this.datePipe.transform(new Date(1e3*(n[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"amount":case"amountSettled":o=n[this.selFilterBy]?.toString()||"-";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return"status"===this.selFilterBy?0===o.indexOf(a):o.includes(a)}}loadInvoicesTable(n){this.invoices=new p.I6(n?[...n]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.invoices.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}resetData(){this.description="",this.invoiceValue=null,this.expiry=null,this.invoiceValueHint=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[5])).subscribe({next:n=>{this.convertedCurrency=n,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,c.k.OTHER)+" "+this.convertedCurrency.unit},error:n=>{this.invoiceValueHint="Conversion Error: "+n}}))}onPageChange(n){this.store.dispatch((0,j.Do)({payload:{count:this.pageSize,skip:n.pageIndex*n.pageSize}}))}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(d.QX),t.rXU($.h),t.rXU(d.vh),t.rXU(K.En),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-lightning-invoices"]],viewQuery:function(a,o){if(1&a&&(t.GBs(v.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Invoices")}])],decls:4,vars:3,consts:[["addInvoiceForm","ngForm"],["invcVal","ngModel"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["matInput","","tabindex","2","name","description","required","true",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","3","name","invValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","9","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","10",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","expiresAt"],["matColumnDef","receivedAt"],["matColumnDef","nodeId"],["matColumnDef","description"],["matColumnDef","paymentHash"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amountSettled"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","p1-3",4,"matHeaderCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Received","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Expired/Unknown","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Received","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Expired/Unknown","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"p1-3"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){1&a&&(t.j41(0,"div",3),t.DNE(1,Si,24,9,"form",4)(2,Ri,3,0,"div",5)(3,sa,57,19,"div",6),t.k0s()),2&a&&(t.R7$(),t.Y8G("ngIf","home"===o.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===o.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===o.calledFrom))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.VZ,f.vS,f.cV,D.aY,N.$z,Y.fg,y.rl,y.nJ,y.MV,y.TL,y.yw,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld,it.V,d.QX,d.vh],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return i(),s})();const wt=i=>({"dashboard-card-content":!0,"error-border":i}),la=i=>({"p-0":i});function ra(i,s){if(1&i&&(t.j41(0,"button",28)(1,"mat-icon"),t.EFF(2,"more_vert"),t.k0s()()),2&i){t.XpG();const e=t.sdS(11);t.Y8G("matMenuTriggerFor",e)}}function ca(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=r.eBV(e).index,o=t.XpG().$implicit,l=t.XpG(2);return r.Njj(l.onNavigateTo(o.links[a]))}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit;t.R7$(),t.JRh(e)}}function ma(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){r.eBV(e);const a=t.XpG(3);return r.Njj(a.onsortChannelsBy())}),t.EFF(1),t.k0s()}if(2&i){const e=t.XpG(3);t.R7$(),t.SpI("Sort By ","Balance Score"===e.sortField?"Capacity":"Balance Score")}}function pa(i,s){1&i&&t.nrm(0,"mat-progress-bar",30)}function ua(i,s){if(1&i&&t.nrm(0,"rtl-ecl-node-info",31),2&i){const e=t.XpG(3);t.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function da(i,s){if(1&i&&t.nrm(0,"rtl-ecl-balances-info",32),2&i){const e=t.XpG(3);t.Y8G("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function ha(i,s){if(1&i&&t.nrm(0,"rtl-ecl-channel-capacity-info",33),2&i){const e=t.XpG(3);t.Y8G("sortBy",e.sortField)("channelBalances",e.channelBalances)("allChannels",e.allChannelsCapacity)("errorMessage",e.errorMessages[2])}}function fa(i,s){if(1&i&&t.nrm(0,"rtl-ecl-fee-info",34),2&i){const e=t.XpG(3);t.Y8G("fees",e.fees)("errorMessage",e.errorMessages[1])}}function _a(i,s){if(1&i&&t.nrm(0,"rtl-ecl-channel-status-info",35),2&i){const e=t.XpG(3);t.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[2])}}function ga(i,s){1&i&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find information!"),t.k0s())}function Ca(i,s){if(1&i&&(t.j41(0,"mat-grid-tile",11)(1,"mat-card",12)(2,"mat-card-header")(3,"mat-card-title",13)(4,"div"),t.nrm(5,"fa-icon",14),t.j41(6,"span"),t.EFF(7),t.k0s()(),t.j41(8,"div"),t.DNE(9,ra,3,1,"button",15),t.j41(10,"mat-menu",16,1),t.DNE(12,ca,2,1,"button",17)(13,ma,2,1,"button",18),t.k0s()()()(),t.j41(14,"mat-card-content",19),t.DNE(15,pa,1,0,"mat-progress-bar",20),t.j41(16,"div",21),t.DNE(17,ua,1,2,"rtl-ecl-node-info",22)(18,da,1,2,"rtl-ecl-balances-info",23)(19,ha,1,4,"rtl-ecl-channel-capacity-info",24)(20,fa,1,2,"rtl-ecl-fee-info",25)(21,_a,1,2,"rtl-ecl-channel-status-info",26)(22,ga,2,0,"h3",27),t.k0s()()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.Y8G("colspan",e.cols)("rowspan",e.rows),t.R7$(5),t.Y8G("icon",e.icon),t.R7$(2),t.JRh(e.title),t.R7$(2),t.Y8G("ngIf",e.links[0]),t.R7$(3),t.Y8G("ngForOf",e.goToOptions),t.R7$(),t.Y8G("ngIf","capacity"===e.id),t.R7$(),t.Y8G("fxFlex",t.mNQ("capacity"===e.id?90:70))("ngClass",t.eq3(17,wt,"node"===e.id&&n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.ERROR||"balance"===e.id&&(n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.ERROR||n.apiCallStatusOCBal.status===n.apiCallStatusEnum.ERROR)||("capacity"===e.id||"status"===e.id)&&n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.ERROR||"fee"===e.id&&n.apiCallStatusFees.status===n.apiCallStatusEnum.ERROR)),t.R7$(),t.Y8G("ngIf","node"===e.id&&n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.INITIATED||"balance"===e.id&&(n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.INITIATED||n.apiCallStatusOCBal.status===n.apiCallStatusEnum.INITIATED)||("capacity"===e.id||"status"===e.id)&&n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.INITIATED||"fee"===e.id&&n.apiCallStatusFees.status===n.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngSwitch",e.id),t.R7$(),t.Y8G("ngSwitchCase","node"),t.R7$(),t.Y8G("ngSwitchCase","balance"),t.R7$(),t.Y8G("ngSwitchCase","capacity"),t.R7$(),t.Y8G("ngSwitchCase","fee"),t.R7$(),t.Y8G("ngSwitchCase","status")}}function ya(i,s){if(1&i&&(t.j41(0,"div",5)(1,"div",6),t.nrm(2,"fa-icon",7),t.j41(3,"span",8),t.EFF(4),t.k0s()(),t.j41(5,"mat-grid-list",9),t.DNE(6,Ca,23,19,"mat-grid-tile",10),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.Y8G("icon",e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.ERROR?e.faFrown:e.faSmile),t.R7$(2),t.JRh(e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.COMPLETED?"Welcome "+e.information.alias+"! Your node is up and running.":e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),t.R7$(),t.Y8G("rowHeight",e.operatorCardHeight),t.R7$(),t.Y8G("ngForOf",e.operatorCards)}}function ba(i,s){if(1&i&&(t.j41(0,"button",28)(1,"mat-icon"),t.EFF(2,"more_vert"),t.k0s()()),2&i){t.XpG();const e=t.sdS(9);t.Y8G("matMenuTriggerFor",e)}}function Fa(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=r.eBV(e).index,o=t.XpG(2).$implicit,l=t.XpG(2);return r.Njj(l.onNavigateTo(o.links[a]))}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit;t.R7$(),t.JRh(e)}}function Ea(i,s){if(1&i&&(t.j41(0,"mat-card-header")(1,"mat-card-title",13)(2,"div"),t.nrm(3,"fa-icon",14),t.j41(4,"span"),t.EFF(5),t.k0s()(),t.j41(6,"div"),t.DNE(7,ba,3,1,"button",15),t.j41(8,"mat-menu",16,2),t.DNE(10,Fa,2,1,"button",17),t.k0s()()()()),2&i){const e=t.XpG().$implicit;t.R7$(3),t.Y8G("icon",e.icon),t.R7$(2),t.JRh(e.title),t.R7$(2),t.Y8G("ngIf",e.links[0]),t.R7$(3),t.Y8G("ngForOf",e.goToOptions)}}function xa(i,s){1&i&&t.nrm(0,"mat-progress-bar",30)}function La(i,s){if(1&i&&t.nrm(0,"rtl-ecl-node-info",45),2&i){const e=t.XpG(3);t.Y8G("information",e.information)}}function va(i,s){if(1&i&&t.nrm(0,"rtl-ecl-balances-info",32),2&i){const e=t.XpG(3);t.Y8G("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function Sa(i,s){if(1&i&&t.nrm(0,"rtl-ecl-channel-liquidity-info",46),2&i){const e=t.XpG(3);t.Y8G("totalLiquidity",e.totalInboundLiquidity)("allChannels",e.allInboundChannels)("errorMessage",e.errorMessages[2])}}function Ra(i,s){if(1&i&&t.nrm(0,"rtl-ecl-channel-liquidity-info",47),2&i){const e=t.XpG(3);t.Y8G("totalLiquidity",e.totalOutboundLiquidity)("allChannels",e.allOutboundChannels)("errorMessage",e.errorMessages[2])}}function ka(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=r.eBV(e).index,o=t.XpG(2).$implicit,l=t.XpG(2);return r.Njj(l.onNavigateTo(o.links[a]))}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit;t.R7$(),t.JRh(e)}}function Ia(i,s){if(1&i&&(t.j41(0,"span",48)(1,"mat-tab-group",49)(2,"mat-tab",50),t.nrm(3,"rtl-ecl-lightning-invoices",51),t.k0s(),t.j41(4,"mat-tab",52),t.nrm(5,"rtl-ecl-lightning-payments",53),t.k0s()(),t.j41(6,"div",54)(7,"button",28)(8,"mat-icon"),t.EFF(9,"more_vert"),t.k0s()(),t.j41(10,"mat-menu",16,3),t.DNE(12,ka,2,1,"button",17),t.k0s()()()),2&i){const e=t.sdS(11),n=t.XpG().$implicit;t.R7$(7),t.Y8G("matMenuTriggerFor",e),t.R7$(5),t.Y8G("ngForOf",n.goToOptions)}}function Ta(i,s){1&i&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find information!"),t.k0s())}function wa(i,s){if(1&i&&(t.j41(0,"mat-grid-tile",11)(1,"mat-card",38),t.DNE(2,Ea,11,4,"mat-card-header",39),t.j41(3,"mat-card-content",40),t.DNE(4,xa,1,0,"mat-progress-bar",20),t.j41(5,"div",21),t.DNE(6,La,1,1,"rtl-ecl-node-info",41)(7,va,1,2,"rtl-ecl-balances-info",23)(8,Sa,1,3,"rtl-ecl-channel-liquidity-info",42)(9,Ra,1,3,"rtl-ecl-channel-liquidity-info",43)(10,Ia,13,2,"span",44)(11,Ta,2,0,"h3",27),t.k0s()()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.Y8G("colspan",e.cols)("rowspan",e.rows),t.R7$(),t.Y8G("ngClass",t.eq3(14,la,"transactions"===e.id)),t.R7$(),t.Y8G("ngIf","transactions"!==e.id),t.R7$(),t.Y8G("fxFlex",t.mNQ("transactions"===e.id?100:"balance"===e.id?70:90))("ngClass",t.eq3(16,wt,"node"===e.id&&n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.ERROR||"balance"===e.id&&(n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.ERROR||n.apiCallStatusOCBal.status===n.apiCallStatusEnum.ERROR)||("inboundLiq"===e.id||"outboundLiq"===e.id)&&n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.ERROR)),t.R7$(),t.Y8G("ngIf","node"===e.id&&n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.INITIATED||"balance"===e.id&&(n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.INITIATED||n.apiCallStatusOCBal.status===n.apiCallStatusEnum.INITIATED)||("inboundLiq"===e.id||"outboundLiq"===e.id)&&n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngSwitch",e.id),t.R7$(),t.Y8G("ngSwitchCase","node"),t.R7$(),t.Y8G("ngSwitchCase","balance"),t.R7$(),t.Y8G("ngSwitchCase","inboundLiq"),t.R7$(),t.Y8G("ngSwitchCase","outboundLiq"),t.R7$(),t.Y8G("ngSwitchCase","transactions")}}function ja(i,s){if(1&i&&(t.j41(0,"div",36),t.nrm(1,"fa-icon",7),t.j41(2,"span",8),t.EFF(3),t.k0s()(),t.j41(4,"mat-grid-list",37),t.DNE(5,wa,12,18,"mat-grid-tile",10),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faSmile),t.R7$(2),t.SpI("Welcome ",e.information.alias,"! Your node is up and running."),t.R7$(),t.Y8G("rowHeight",e.merchantCardHeight),t.R7$(),t.Y8G("ngForOf",e.merchantCards)}}let Da=(()=>{var i;class s{constructor(n,a,o,l){this.logger=n,this.store=a,this.commonService=o,this.router=l,this.faSmile=St.Qpm,this.faFrown=St.wB1,this.faAngleDoubleDown=E.WxX,this.faAngleDoubleUp=E.$sC,this.faChartPie=E.W1p,this.faBolt=E.zm_,this.faServer=E.D6w,this.faNetworkWired=E.eGi,this.userPersonaEnum=c.HW,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.information={},this.channels=[],this.onchainBalance={},this.balances={onchain:-1,lightning:-1,total:0},this.channelsStatus={},this.allChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="390px",this.merchantCardHeight="62px",this.sortField="Balance Score",this.errorMessages=["","","",""],this.apiCallStatusNodeInfo={status:c.wn.COMPLETED},this.apiCallStatusFees={status:c.wn.COMPLETED},this.apiCallStatusOCBal={status:c.wn.COMPLETED},this.apiCallStatusAllChannels={status:c.wn.COMPLETED},this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===c.f7.XS?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}]):this.screenSize===c.f7.SM||this.screenSize===c.f7.MD?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}]):(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}])}ngOnInit(){this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n}),this.store.select(b.b_).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=n.apiCallStatus,this.apiCallStatusNodeInfo.status===c.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.information=n.information}),this.store.select(b.oR).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.errorMessages[1]="",this.apiCallStatusFees=n.apiCallStatus,this.apiCallStatusFees.status===c.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=n.fees}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[3]),(0,pt.E)(this.store.select(b.DW))).subscribe(([n,a])=>{this.errorMessages[2]="",this.errorMessages[3]="",this.apiCallStatusAllChannels=n.apiCallStatus,this.apiCallStatusOCBal=a.apiCallStatus,this.apiCallStatusAllChannels.status===c.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusAllChannels.message?JSON.stringify(this.apiCallStatusAllChannels.message):this.apiCallStatusAllChannels.message?this.apiCallStatusAllChannels.message:""),this.apiCallStatusOCBal.status===c.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusOCBal.message?JSON.stringify(this.apiCallStatusOCBal.message):this.apiCallStatusOCBal.message?this.apiCallStatusOCBal.message:""),this.channels=n.activeChannels,this.onchainBalance=a.onchainBalance,this.balances.onchain=this.onchainBalance.total||0,this.balances.lightning=n.lightningBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const o=n.lightningBalance.localBalance?+n.lightningBalance.localBalance:0,l=n.lightningBalance.remoteBalance?+n.lightningBalance.remoteBalance:0;this.channelBalances={localBalance:o,remoteBalance:l,balancedness:+(1-Math.abs((o-l)/(o+l))).toFixed(3)},this.channelsStatus=n.channelsStatus,this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.allChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels,"balancedness"))),this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels?.filter(u=>(u.toRemote||0)>0),"toRemote"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels?.filter(u=>(u.toLocal||0)>0),"toLocal"))),this.channels.forEach(u=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil(u.toRemote||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor(u.toLocal||0)}),this.logger.info(n)})}onNavigateTo(n){this.router.navigateByUrl("/ecl/"+n)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.channels.sort((n,a)=>{const o=+(n.toLocal||0)+ +(n.toRemote||0),l=+(a.toLocal||0)+ +(a.toRemote||0);return o>l?-1:o{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU($.h),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-home"]],standalone:!1,decls:3,vars:2,consts:[["merchantDashboard",""],["menuOperator","matMenu"],["menuMerchant","matMenu"],["menuTransactions","matMenu"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100","direction","In",3,"totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100","direction","Out",3,"totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100","direction","In",3,"totalLiquidity","allChannels","errorMessage"],["fxFlex","100","direction","Out",3,"totalLiquidity","allChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],["calledFrom","home",1,"h-100"],["label","Pay"],["calledFrom","home"],[1,"underline"]],template:function(a,o){if(1&a&&t.DNE(0,ya,7,4,"div",4)(1,ja,6,4,"ng-template",null,0,t.C5r),2&a){const l=t.sdS(2);t.Y8G("ngIf",(null==o.selNode?null:o.selNode.settings.userPersona)===o.userPersonaEnum.OPERATOR)("ngIfElse",l)}},dependencies:[d.YU,d.Sq,d.bT,d.ux,d.e1,d.fG,D.aY,Zt.iY,x.RN,x.m2,x.MM,x.dh,Rt.B_,Rt.NS,ut.An,dt.kk,dt.fb,dt.Cp,H.HM,_.DJ,_.sA,_.UI,S.PW,G.mq,G.T8,ee,ae,le,me,Ce,je,It,Tt],encapsulation:2}))}return i(),s})();const Ga=["form"];function Pa(i,s){if(1&i&&(t.j41(0,"div",30),t.nrm(1,"fa-icon",31),t.j41(2,"span",32)(3,"div"),t.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),t.k0s(),t.j41(5,"span",33)(6,"span"),t.EFF(7),t.k0s(),t.j41(8,"span"),t.EFF(9),t.k0s(),t.j41(10,"span"),t.EFF(11),t.k0s(),t.j41(12,"span"),t.EFF(13),t.k0s(),t.j41(14,"span"),t.EFF(15),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faInfoCircle),t.R7$(6),t.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),t.R7$(2),t.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),t.R7$(2),t.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),t.R7$(2),t.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),t.R7$(2),t.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function Aa(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Bitcoin address is required."),t.k0s())}function Na(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.JRh(e.amountError)}}function Ba(i,s){if(1&i&&(t.j41(0,"mat-option",34),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(e)}}function Ma(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Target Confirmation Blocks is required."),t.k0s())}function $a(i,s){if(1&i&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.sendFundError)}}function Va(i,s){if(1&i&&(t.j41(0,"div",35),t.nrm(1,"fa-icon",31),t.DNE(2,$a,2,1,"span",15),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.sendFundError)}}let jt=(()=>{var i;class s{constructor(n,a,o,l,m,u,T){this.dialogRef=n,this.logger=a,this.dataService=o,this.store=l,this.commonService=m,this.decimalPipe=u,this.actions=T,this.faExclamationTriangle=E.zpE,this.faInfoCircle=E.iW_,this.addressTypes=[],this.selectedAddress=c.Ld[1],this.blockchainBalance={},this.information={},this.newAddress="",this.transaction={},this.sendFundError="",this.fiatConversion=!1,this.amountUnits=c.A0,this.selAmountUnit=c.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=c.k,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.amountError="Amount is Required.",this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[0])).subscribe({next:n=>{this.recommendedFee=n},error:n=>{this.logger.error(n)}}),this.store.select(J._c).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.fiatConversion=n.settings.fiatConversion,this.amountUnits=n.settings.currencyUnits,this.logger.info(n)}),this.actions.pipe((0,g.Q)(this.unSubs[2]),(0,X.p)(n=>n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL||n.type===c.Uu.SEND_ONCHAIN_FUNDS_RES_ECL)).subscribe(n=>{n.type===c.Uu.SEND_ONCHAIN_FUNDS_RES_ECL&&(this.store.dispatch((0,k.UI)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&n.payload.status===c.wn.ERROR&&"SendOnchainFunds"===n.payload.action&&(this.sendFundError=n.payload.message)})}onSendFunds(){if(this.invalidValues)return!0;this.sendFundError="",this.transaction.amount&&this.selAmountUnit!==c.BQ.SATS?this.commonService.convertCurrency(this.transaction.amount,this.selAmountUnit===this.amountUnits[2]?c.BQ.OTHER:this.selAmountUnit,c.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,g.Q)(this.unSubs[3])).subscribe({next:n=>{this.transaction.amount=parseInt(n[c.BQ.SATS]),this.selAmountUnit=c.BQ.SATS,this.store.dispatch((0,j.Lz)({payload:this.transaction}))},error:n=>{this.selAmountUnit=c.BQ.SATS,this.amountError="Conversion Error: "+n}}):this.store.dispatch((0,j.Lz)({payload:this.transaction}))}get invalidValues(){return!this.transaction.address||""===this.transaction.address||!this.transaction.amount||this.transaction.amount<=0||!this.transaction.blocks||this.transaction.blocks<=0}resetData(){this.sendFundError="",this.transaction={}}onAmountUnitChange(n){const a=this,o=this.selAmountUnit===this.amountUnits[2]?c.BQ.OTHER:this.selAmountUnit;let l=n.value===this.amountUnits[2]?c.BQ.OTHER:n.value;this.transaction.amount&&this.selAmountUnit!==n.value&&this.commonService.convertCurrency(this.transaction.amount,o,l,this.amountUnits[2],this.fiatConversion).pipe((0,g.Q)(this.unSubs[4])).subscribe({next:m=>{this.selAmountUnit=n.value,a.transaction.amount=+a.decimalPipe.transform(m[l],a.currencyUnitFormats[l]).replace(/,/g,"")},error:m=>{this.amountError="Conversion Error: "+m,this.selAmountUnit=o,l=o}})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(A.gP),t.rXU(nt.u),t.rXU(I.il),t.rXU($.h),t.rXU(d.QX),t.rXU(K.En))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-on-chain-send-modal"]],viewQuery:function(a,o){if(1&a&&t.GBs(Ga,7),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first)}},standalone:!1,decls:45,vars:16,consts:[["form","ngForm"],["addrs","ngModel"],["amnt","ngModel"],["blocks","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],["fxLayout","column",1,"padding-gap-x-large"],["fxFlex","100","class","alert alert-info mb-2",4,"ngIf"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"overflow-x-hidden",3,"submit","reset"],["fxLayout","column","fxFlex","55"],["matInput","","autoFocus","","name","addr","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","name","amt","type","number","required","",3,"ngModelChange","step","min","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex","10","fxLayoutAlign","start end"],["required","","name","amountUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","60","fxLayoutAlign","space-between stretch","fxLayout","row wrap"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start center"],["matInput","","type","number","name","blocks","required","true",3,"ngModelChange","step","min","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit"],["fxFlex","100",1,"alert","alert-info","mb-2"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),t.EFF(5,"Send Payment"),t.k0s()(),t.j41(6,"button",9),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",10),t.DNE(9,Pa,16,6,"div",11),t.j41(10,"form",12,0),t.bIt("submit",function(){return r.eBV(l),r.Njj(o.onSendFunds())})("reset",function(){return r.eBV(l),r.Njj(o.resetData())}),t.j41(12,"mat-form-field",13)(13,"mat-label"),t.EFF(14,"Bitcoin Address"),t.k0s(),t.j41(15,"input",14,1),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.transaction.address,u)||(o.transaction.address=u),r.Njj(u)}),t.k0s(),t.DNE(17,Aa,2,0,"mat-error",15),t.k0s(),t.j41(18,"mat-form-field",16)(19,"mat-label"),t.EFF(20,"Amount"),t.k0s(),t.j41(21,"input",17,2),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.transaction.amount,u)||(o.transaction.amount=u),r.Njj(u)}),t.k0s(),t.j41(23,"span",18),t.EFF(24),t.k0s(),t.DNE(25,Na,2,1,"mat-error",15),t.k0s(),t.j41(26,"mat-form-field",19)(27,"mat-label"),t.EFF(28,"Amount Unit"),t.k0s(),t.j41(29,"mat-select",20),t.bIt("selectionChange",function(u){return r.eBV(l),r.Njj(o.onAmountUnitChange(u))}),t.DNE(30,Ba,2,2,"mat-option",21),t.k0s()(),t.j41(31,"div",22)(32,"mat-form-field",23)(33,"mat-label"),t.EFF(34,"Target Confirmation Blocks"),t.k0s(),t.j41(35,"input",24,3),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.transaction.blocks,u)||(o.transaction.blocks=u),r.Njj(u)}),t.k0s(),t.DNE(37,Ma,2,0,"mat-error",15),t.k0s()(),t.nrm(38,"div",25),t.DNE(39,Va,3,2,"div",26),t.j41(40,"div",27)(41,"button",28),t.EFF(42,"Clear Fields"),t.k0s(),t.j41(43,"button",29),t.EFF(44,"Send Funds"),t.k0s()()()()()()}2&a&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(3),t.Y8G("ngIf",o.recommendedFee.minimumFee),t.R7$(6),t.R50("ngModel",o.transaction.address),t.R7$(2),t.Y8G("ngIf",!o.transaction.address),t.R7$(4),t.Y8G("step",100)("min",0),t.R50("ngModel",o.transaction.amount),t.R7$(3),t.SpI("",o.selAmountUnit," "),t.R7$(),t.Y8G("ngIf",!o.transaction.amount),t.R7$(4),t.Y8G("value",o.selAmountUnit),t.R7$(),t.Y8G("ngForOf",o.amountUnits),t.R7$(5),t.Y8G("step",1)("min",0),t.R50("ngModel",o.transaction.blocks),t.R7$(2),t.Y8G("ngIf",!o.transaction.blocks),t.R7$(2),t.Y8G("ngIf",""!==o.sendFundError))},dependencies:[d.Sq,d.bT,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.VZ,f.vS,f.cV,D.aY,V.tx,N.$z,x.m2,x.MM,Y.fg,y.rl,y.nJ,y.TL,y.yw,_.DJ,_.sA,_.UI,R.VO,z.wT,et.N,it.V],encapsulation:2}))}return i(),s})();var gt=C(5837);const Oa=()=>["all"],Ha=i=>({"error-border":i}),Ya=()=>["no_transaction"],Ct=i=>({width:i}),Xa=i=>({"display-none":i});function Ua(i,s){if(1&i&&(t.j41(0,"mat-option",34),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function za(i,s){1&i&&t.nrm(0,"mat-progress-bar",35)}function Ja(i,s){1&i&&(t.j41(0,"th",36),t.EFF(1,"Date/Time"),t.k0s())}function qa(i,s){if(1&i&&(t.j41(0,"td",37),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function Qa(i,s){1&i&&(t.j41(0,"th",36),t.EFF(1,"Address"),t.k0s())}function Za(i,s){if(1&i&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ct,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.address)}}function Wa(i,s){1&i&&(t.j41(0,"th",36),t.EFF(1,"Blockhash"),t.k0s())}function Ka(i,s){if(1&i&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ct,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.blockHash)}}function to(i,s){1&i&&(t.j41(0,"th",36),t.EFF(1,"Transaction ID"),t.k0s())}function eo(i,s){if(1&i&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ct,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.txid)}}function no(i,s){1&i&&(t.j41(0,"th",40),t.EFF(1,"Amount (Sats)"),t.k0s())}function io(i,s){if(1&i&&(t.j41(0,"span",43),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.amount))}}function ao(i,s){if(1&i&&(t.j41(0,"span",44),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.SpI("(",t.bMT(2,1,-1*(null==e?null:e.amount)),")")}}function oo(i,s){if(1&i&&(t.j41(0,"td",37),t.DNE(1,io,3,3,"span",41)(2,ao,3,3,"span",42),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf",(null==e?null:e.amount)>0||0===(null==e?null:e.amount)),t.R7$(),t.Y8G("ngIf",(null==e?null:e.amount)<0)}}function so(i,s){1&i&&(t.j41(0,"th",40),t.EFF(1,"Fees (Sats)"),t.k0s())}function lo(i,s){if(1&i&&(t.j41(0,"td",37)(1,"span",43),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.fees))}}function ro(i,s){1&i&&(t.j41(0,"th",40),t.EFF(1,"Confirmations"),t.k0s())}function co(i,s){if(1&i&&(t.j41(0,"td",37)(1,"span",43),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.bMT(3,1,null==e?null:e.confirmations)," ")}}function mo(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",48),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function po(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",49)(1,"button",50),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG();return r.Njj(l.onTransactionClick(o,a))}),t.EFF(2,"View Info"),t.k0s()()}}function uo(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No transaction available."),t.k0s())}function ho(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting transactions..."),t.k0s())}function fo(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function _o(i,s){if(1&i&&(t.j41(0,"td",51),t.DNE(1,uo,2,0,"p",52)(2,ho,2,0,"p",52)(3,fo,2,1,"p",52),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function go(i,s){if(1&i&&t.nrm(0,"tr",53),2&i){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,Xa,(null==e.listTransactions?null:e.listTransactions.data)&&(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)>0))}}function Co(i,s){1&i&&t.nrm(0,"tr",54)}function yo(i,s){1&i&&t.nrm(0,"tr",55)}let bo=(()=>{var i;class s{constructor(n,a,o,l,m){this.logger=n,this.commonService=a,this.store=o,this.datePipe=l,this.camelCaseWithSpaces=m,this.faHistory=E.Int,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"transaction",recordsPerPage:c.md,sortBy:"timestamp",sortOrder:c.oi.DESCENDING},this.displayedColumns=[],this.listTransactions=new p.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.apiCallStatus.status===c.wn.COMPLETED&&(this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.flgInit||(this.flgInit=!0,this.store.dispatch((0,j.mh)({payload:{count:1e3,skip:0}}))),this.logger.info(this.displayedColumns))}),this.store.select(b.gN).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),n.transactions&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadTransactionsTable(n.transactions),this.logger.info(n)})}applyFilter(){this.listTransactions.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.listTransactions.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=(n.timestamp?this.datePipe.transform(new Date(1e3*n.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(n).toLowerCase();break;case"timestamp":o=this.datePipe.transform(new Date(1e3*(n[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}onTransactionClick(n,a){this.store.dispatch((0,k.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"blockHash",value:n.blockHash||n.blockId_opt,title:"Block Hash",width:100,explorerLink:"block"}],[{key:"txid",value:n.txid,title:"Transaction ID",width:100,explorerLink:"tx"}],[{key:"timestamp",value:n.timestamp,title:"Date/Time",width:50,type:c.UN.DATE_TIME},{key:"confirmations",value:n.confirmations,title:"Number of Confirmations",width:50,type:c.UN.NUMBER}],[{key:"fees",value:n.fees,title:"Fees (Sats)",width:50,type:c.UN.NUMBER},{key:"amount",value:n.amount,title:"Amount (Sats)",width:50,type:c.UN.NUMBER}],[{key:"address",value:n.address,title:"Address",width:100,type:c.UN.STRING}]]}}}))}loadTransactionsTable(n){this.listTransactions=new p.I6([...n]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.listTransactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listTransactions)}onPageChange(n){this.store.dispatch((0,j.mh)({payload:{count:this.pageSize,skip:n.pageIndex*n.pageSize}}))}onDownloadCSV(){this.listTransactions.data&&this.listTransactions.data.length>0&&this.commonService.downloadFile(this.listTransactions.data,"Transactions")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il),t.rXU(d.vh),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-on-chain-transaction-history"]],viewQuery:function(a,o){if(1&a&&(t.GBs(v.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Transactions")}])],decls:52,vars:19,consts:[["table",""],["fxLayout","row wrap","fxLayoutAlign","start start","fxLayout.gt-sm","column","fxFlex","100","fxLayoutAlign.gt-sm","start stretch"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","blockHash"],["matColumnDef","txid"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","fees"],["matColumnDef","confirmations"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"div",3),t.nrm(3,"fa-icon",4),t.j41(4,"span",5),t.EFF(5,"Transaction History"),t.k0s()(),t.j41(6,"div",6)(7,"mat-form-field",7)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",8),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilterBy,u)||(o.selFilterBy=u),r.Njj(u)}),t.bIt("selectionChange",function(){return r.eBV(l),o.selFilter="",r.Njj(o.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,Ua,2,2,"mat-option",9),t.k0s()()(),t.j41(13,"mat-form-field",7)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",10),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilter,u)||(o.selFilter=u),r.Njj(u)}),t.bIt("input",function(){return r.eBV(l),r.Njj(o.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(o.applyFilter())}),t.k0s()()()(),t.j41(17,"div",11)(18,"div",12),t.DNE(19,za,1,0,"mat-progress-bar",13),t.j41(20,"table",14,0),t.qex(22,15),t.DNE(23,Ja,2,0,"th",16)(24,qa,3,4,"td",17),t.bVm(),t.qex(25,18),t.DNE(26,Qa,2,0,"th",16)(27,Za,4,4,"td",17),t.bVm(),t.qex(28,19),t.DNE(29,Wa,2,0,"th",16)(30,Ka,4,4,"td",17),t.bVm(),t.qex(31,20),t.DNE(32,to,2,0,"th",16)(33,eo,4,4,"td",17),t.bVm(),t.qex(34,21),t.DNE(35,no,2,0,"th",22)(36,oo,3,2,"td",17),t.bVm(),t.qex(37,23),t.DNE(38,so,2,0,"th",22)(39,lo,4,3,"td",17),t.bVm(),t.qex(40,24),t.DNE(41,ro,2,0,"th",22)(42,co,4,3,"td",17),t.bVm(),t.qex(43,25),t.DNE(44,mo,6,0,"th",26)(45,po,3,0,"td",27),t.bVm(),t.qex(46,28),t.DNE(47,_o,4,3,"td",29),t.bVm(),t.DNE(48,go,1,3,"tr",30)(49,Co,1,0,"tr",31)(50,yo,1,0,"tr",32),t.k0s(),t.nrm(51,"mat-paginator",33),t.k0s()()()}2&a&&(t.R7$(3),t.Y8G("icon",o.faHistory),t.R7$(7),t.R50("ngModel",o.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,Oa).concat(o.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",o.selFilter),t.R7$(3),t.Y8G("ngIf",o.apiCallStatus.status===o.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",o.tableSetting.sortBy)("matSortDirection",o.tableSetting.sortOrder)("dataSource",o.listTransactions)("ngClass",t.eq3(16,Ha,""!==o.errorMessage)),t.R7$(28),t.Y8G("matFooterRowDef",t.lJ4(18,Ya)),t.R7$(),t.Y8G("matHeaderRowDef",o.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",o.displayedColumns),t.R7$(),t.Y8G("pageSize",o.pageSize)("pageSizeOptions",o.pageSizeOptions)("showFirstLastButtons",o.screenSize!==o.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.me,f.BC,f.vS,D.aY,N.$z,Y.fg,y.rl,y.nJ,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,w.iy,B.ZF,B.Ld,d.QX,d.vh],encapsulation:2}))}return i(),s})();function Fo(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG();t.Y8G("routerLink",t.mNQ(e.link))("active",n.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Eo=(()=>{var i;class s{constructor(n,a){this.store=n,this.router=a,this.faExchangeAlt=E._qq,this.faChartPie=E.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){const n=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=n?n.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(a=>a instanceof L.gx)).subscribe({next:a=>{const o=this.links.find(l=>a.urlAfterRedirects.includes(l.link));this.activeLink=o?o.link:this.links[0].link}}),this.store.select(J._c).pipe((0,g.Q)(this.unSubs[1])).subscribe(a=>{this.selNode=a}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[2])).subscribe(a=>{this.balances=[{title:"Total Balance",dataValue:a.onchainBalance.total||0},{title:"Confirmed",dataValue:a.onchainBalance.confirmed||0},{title:"Unconfirmed",dataValue:a.onchainBalance.unconfirmed||0}]})}openSendFundsModal(){this.store.dispatch((0,k.xO)({payload:{data:{component:jt}}}))}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(I.il),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-on-chain"]],standalone:!1,decls:23,vars:5,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(a,o){if(1&a&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"On-chain Balance"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),t.nrm(7,"rtl-currency-unit-converter",6),t.k0s()()(),t.j41(8,"div",1),t.nrm(9,"fa-icon",2),t.j41(10,"span",3),t.EFF(11,"On-chain Transactions"),t.k0s()(),t.j41(12,"div",7)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",8),t.DNE(16,Fo,2,4,"div",9),t.k0s(),t.nrm(17,"mat-tab-nav-panel",null,0),t.j41(19,"div",10),t.nrm(20,"router-outlet"),t.k0s(),t.j41(21,"div",10),t.nrm(22,"rtl-ecl-on-chain-transaction-history",11),t.k0s()()()()),2&a){const l=t.sdS(18);t.R7$(),t.Y8G("icon",o.faChartPie),t.R7$(6),t.Y8G("values",o.balances),t.R7$(2),t.Y8G("icon",o.faExchangeAlt),t.R7$(6),t.Y8G("tabPanel",l),t.R7$(),t.Y8G("ngForOf",o.links)}},dependencies:[d.Sq,D.aY,x.RN,x.m2,_.DJ,_.sA,_.UI,G.Bu,G.hQ,G.Ql,gt.f,L.n3,W.Wk,bo],encapsulation:2}))}return i(),s})();var Dt=C(1975);function xo(i,s){if(1&i&&(t.j41(0,"span",10),t.EFF(1,"Channels"),t.k0s()),2&i){const e=t.XpG();t.Y8G("matBadge",t.mNQ(e.activeChannels))}}function Lo(i,s){if(1&i&&(t.j41(0,"span",10),t.EFF(1,"Peers"),t.k0s()),2&i){const e=t.XpG();t.Y8G("matBadge",t.mNQ(e.activePeers))}}let vo=(()=>{var i;class s{constructor(n,a){this.store=n,this.router=a,this.activePeers=0,this.activeChannels=0,this.faUsers=E.gdJ,this.faChartPie=E.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.activeLink=this.links.findIndex(n=>n.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(n=>n instanceof L.gx)).subscribe({next:n=>{this.activeLink=this.links.findIndex(a=>a.link===n.urlAfterRedirects.substring(n.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.activePeers=n.peers&&n.peers.length?n.peers.length:0}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.activeChannels=n.channelsStatus&&n.channelsStatus.active&&n.channelsStatus.active.channels?n.channelsStatus.active.channels:0}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.balances=[{title:"Total Balance",dataValue:n.onchainBalance.total||0},{title:"Confirmed",dataValue:n.onchainBalance.confirmed||0},{title:"Unconfirmed",dataValue:n.onchainBalance.unconfirmed||0}]})}onSelectedTabChange(n){this.router.navigateByUrl("/ecl/connections/"+this.links[n.index].link)}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(I.il),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-connections"]],standalone:!1,decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(a,o){1&a&&(t.j41(0,"div",0),t.nrm(1,"fa-icon",1),t.j41(2,"span",2),t.EFF(3,"On-chain Balance"),t.k0s()(),t.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),t.nrm(7,"rtl-currency-unit-converter",5),t.k0s()()(),t.j41(8,"div",0),t.nrm(9,"fa-icon",1),t.j41(10,"span",2),t.EFF(11,"Connections"),t.k0s()(),t.j41(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),t.mxI("selectedIndexChange",function(m){return t.DH7(o.activeLink,m)||(o.activeLink=m),m}),t.bIt("selectedTabChange",function(m){return o.onSelectedTabChange(m)}),t.j41(16,"mat-tab"),t.DNE(17,xo,2,2,"ng-template",8),t.k0s(),t.j41(18,"mat-tab"),t.DNE(19,Lo,2,2,"ng-template",8),t.k0s()(),t.j41(20,"div",9),t.nrm(21,"router-outlet"),t.k0s()()()()),2&a&&(t.R7$(),t.Y8G("icon",o.faChartPie),t.R7$(6),t.Y8G("values",o.balances),t.R7$(2),t.Y8G("icon",o.faUsers),t.R7$(6),t.R50("selectedIndex",o.activeLink))},dependencies:[D.aY,x.RN,x.m2,_.DJ,_.sA,_.UI,Dt.k,G.ES,G.mq,G.T8,gt.f,L.n3],encapsulation:2}))}return i(),s})();function So(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG();t.Y8G("routerLink",t.mNQ(e.link))("active",n.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Ro=(()=>{var i;class s{constructor(n,a,o){this.logger=n,this.store=a,this.router=o,this.faExchangeAlt=E._qq,this.faChartPie=E.W1p,this.currencyUnits=[],this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){const n=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=n?n.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(a=>a instanceof L.gx)).subscribe({next:a=>{const o=this.links.find(l=>a.urlAfterRedirects.includes(l.link));this.activeLink=o?o.link:this.links[0].link}}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1]),(0,pt.E)(this.store.select(J._c))).subscribe(([a,o])=>{this.currencyUnits=o?.settings.currencyUnits||[],this.balances=o&&o.settings.userPersona===c.HW.OPERATOR?[{title:"Local Capacity",dataValue:a.lightningBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:a.lightningBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:a.lightningBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:a.lightningBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(a)})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-transactions"]],standalone:!1,decls:21,vars:5,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(a,o){if(1&a&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Lightning Balance"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),t.nrm(7,"rtl-currency-unit-converter",6),t.k0s()()(),t.j41(8,"div",7),t.nrm(9,"fa-icon",2),t.j41(10,"span",3),t.EFF(11,"Lightning Transactions"),t.k0s()(),t.j41(12,"div",8)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",9),t.DNE(16,So,2,4,"div",10),t.k0s(),t.nrm(17,"mat-tab-nav-panel",null,0),t.j41(19,"div",11),t.nrm(20,"router-outlet"),t.k0s()()()()),2&a){const l=t.sdS(18);t.R7$(),t.Y8G("icon",o.faChartPie),t.R7$(6),t.Y8G("values",o.balances),t.R7$(2),t.Y8G("icon",o.faExchangeAlt),t.R7$(6),t.Y8G("tabPanel",l),t.R7$(),t.Y8G("ngForOf",o.links)}},dependencies:[d.Sq,D.aY,x.RN,x.m2,_.DJ,_.sA,_.UI,G.Bu,G.hQ,G.Ql,gt.f,L.n3,W.Wk],encapsulation:2}))}return i(),s})();function ko(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG();t.Y8G("routerLink",t.mNQ(e.link))("active",n.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Io=(()=>{var i;class s{constructor(n){this.router=n,this.faMapSigns=E.knH,this.events=[],this.flgLoading=[!0],this.errorMessage="",this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"peers",name:"Routing Peers"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B]}ngOnInit(){const n=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=n?n.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(a=>a instanceof L.gx)).subscribe({next:a=>{const o=this.links.find(l=>a.urlAfterRedirects.includes(l.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-routing"]],standalone:!1,decls:15,vars:3,consts:[["tabPanel",""],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(a,o){if(1&a&&(t.j41(0,"div",1)(1,"div",2),t.nrm(2,"fa-icon",3),t.j41(3,"span",4),t.EFF(4,"Routing"),t.k0s()(),t.j41(5,"div",5)(6,"mat-card",6)(7,"mat-card-content",7)(8,"div",8)(9,"nav",9),t.DNE(10,ko,2,4,"div",10),t.k0s(),t.nrm(11,"mat-tab-nav-panel",null,0),t.k0s(),t.j41(13,"div",11),t.nrm(14,"router-outlet"),t.k0s()()()()()),2&a){const l=t.sdS(12);t.R7$(2),t.Y8G("icon",o.faMapSigns),t.R7$(7),t.Y8G("tabPanel",l),t.R7$(),t.Y8G("ngForOf",o.links)}},dependencies:[d.Sq,D.aY,x.RN,x.m2,_.DJ,_.sA,_.UI,G.Bu,G.hQ,G.Ql,L.n3,W.Wk],encapsulation:2}))}return i(),s})();var rt=C(5951),Gt=C(450),at=C(6013);const To=["peersForm"],wo=["stepper"];function jo(i,s){if(1&i&&t.EFF(0),2&i){const e=t.XpG();t.JRh(e.peerFormLabel)}}function Do(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Address is required."),t.k0s())}function Go(i,s){if(1&i&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(2),t.JRh(e.peerConnectionError)}}function Po(i,s){if(1&i&&t.EFF(0),2&i){const e=t.XpG();t.JRh(e.channelFormLabel)}}function Ao(i,s){if(1&i&&(t.j41(0,"div",36),t.nrm(1,"fa-icon",35),t.j41(2,"span",13)(3,"div"),t.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),t.k0s(),t.j41(5,"span",37)(6,"span"),t.EFF(7),t.k0s(),t.j41(8,"span"),t.EFF(9),t.k0s(),t.j41(10,"span"),t.EFF(11),t.k0s(),t.j41(12,"span"),t.EFF(13),t.k0s(),t.j41(14,"span"),t.EFF(15),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faInfoCircle),t.R7$(6),t.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),t.R7$(2),t.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),t.R7$(2),t.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),t.R7$(2),t.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),t.R7$(2),t.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function No(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function Bo(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount must be a positive number."),t.k0s())}function Mo(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function $o(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function Vo(i,s){if(1&i&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(2),t.JRh(e.channelConnectionError)}}let Pt=(()=>{var i;class s{constructor(n,a,o,l,m,u,T){this.dialogRef=n,this.data=a,this.store=o,this.formBuilder=l,this.actions=m,this.logger=u,this.dataService=T,this.faExclamationTriangle=E.zpE,this.faInfoCircle=E.iW_,this.peerAddress="",this.totalBalance=0,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.data.message?(this.totalBalance=this.data.message.balance,this.peerAddress=this.data.message.peer&&this.data.message.peer.nodeId&&this.data.message.peer.address?this.data.message.peer.nodeId+"@"+this.data.message.peer.address:this.data.message.peer&&this.data.message.peer.nodeId&&!this.data.message.peer.address?this.data.message.peer.nodeId:""):(this.totalBalance=0,this.peerAddress=""),this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[f.k0.required]],peerAddress:[this.peerAddress,[f.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[f.k0.required,f.k0.min(1),f.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],feeRate:[null],hiddenAmount:["",[f.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n,this.channelFormGroup.controls.isPrivate.setValue(!!n?.settings.unannouncedChannels)}),this.actions.pipe((0,g.Q)(this.unSubs[1]),(0,X.p)(n=>n.type===c.Uu.NEWLY_ADDED_PEER_ECL||n.type===c.Uu.FETCH_CHANNELS_ECL||n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(n=>{n.type===c.Uu.NEWLY_ADDED_PEER_ECL&&(this.logger.info(n.payload),this.flgEditable=!1,this.newlyAddedPeer=n.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),n.type===c.Uu.FETCH_CHANNELS_ECL&&this.dialogRef.close(),n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&n.payload.status===c.wn.ERROR&&("SaveNewPeer"===n.payload.action?this.peerConnectionError=n.payload.message:"SaveNewChannel"===n.payload.action&&(this.channelConnectionError=n.payload.message))}),this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[2])).subscribe({next:n=>{this.recommendedFee=n},error:n=>{this.logger.error(n)}})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,j.sq)({payload:{id:this.peerFormGroup.controls.peerAddress.value}}))}onOpenChannel(){return this.channelFormGroup.controls.feeRate.value&&this.recommendedFee.minimumFee>this.channelFormGroup.controls.feeRate.value?(this.channelFormGroup.controls.feeRate.setErrors({minimum:!0}),!0):!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||(this.channelConnectionError="",void this.store.dispatch((0,j.vL)({payload:{nodeId:this.newlyAddedPeer?.nodeId,amount:this.channelFormGroup.controls.fundingAmount.value,private:this.channelFormGroup.controls.isPrivate.value,feeRate:this.channelFormGroup.controls.feeRate.value}})))}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(n){switch(n.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.nodeId):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.nodeId):"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}n.selectedIndex{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(V.Vh),t.rXU(I.il),t.rXU(f.ze),t.rXU(K.En),t.rXU(A.gP),t.rXU(nt.u))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-connect-peer"]],viewQuery:function(a,o){if(1&a&&(t.GBs(To,5),t.GBs(wo,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first),t.mGM(l=t.lsd())&&(o.stepper=l.first)}},standalone:!1,decls:59,vars:25,consts:[["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","35","fxLayoutAlign","start end"],["matInput","","autoFocus","","formControlName","fundingAmount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxLayout","column","fxFlex","40"],["matInput","","formControlName","feeRate","type","number","name","feeRate","tabindex","7",3,"step","min"],["fxFlex","20","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Connect to a new peer"),t.k0s()(),t.j41(6,"button",6),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),t.bIt("selectionChange",function(u){return r.eBV(l),r.Njj(o.stepSelectionChanged(u))}),t.j41(12,"mat-step",10)(13,"form",11),t.DNE(14,jo,1,1,"ng-template",12),t.j41(15,"mat-form-field",13)(16,"mat-label"),t.EFF(17,"Lightning Address (pubkey OR pubkey@ip:port)"),t.k0s(),t.nrm(18,"input",14),t.DNE(19,Do,2,0,"mat-error",15),t.k0s(),t.DNE(20,Go,4,2,"div",16),t.j41(21,"div",17)(22,"button",18),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onConnectPeer())}),t.EFF(23),t.k0s()()()(),t.j41(24,"mat-step",10)(25,"form",19),t.DNE(26,Po,1,1,"ng-template",20),t.j41(27,"div",21),t.DNE(28,Ao,16,6,"div",22),t.j41(29,"div",23)(30,"mat-form-field",24)(31,"mat-label"),t.EFF(32,"Amount"),t.k0s(),t.nrm(33,"input",25),t.j41(34,"mat-hint"),t.EFF(35),t.nI1(36,"number"),t.k0s(),t.j41(37,"span",26),t.EFF(38," Sats "),t.k0s(),t.DNE(39,No,2,0,"mat-error",15)(40,Bo,2,0,"mat-error",15)(41,Mo,2,1,"mat-error",15),t.k0s(),t.j41(42,"mat-form-field",27)(43,"mat-label"),t.EFF(44,"Fee (Sats/vByte)"),t.k0s(),t.nrm(45,"input",28),t.j41(46,"mat-hint"),t.EFF(47),t.k0s(),t.DNE(48,$o,2,1,"mat-error",15),t.k0s(),t.j41(49,"div",29)(50,"mat-slide-toggle",30),t.EFF(51,"Private Channel"),t.k0s()()()(),t.DNE(52,Vo,4,2,"div",16),t.j41(53,"div",17)(54,"button",31),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onOpenChannel())}),t.EFF(55),t.k0s()()()()(),t.j41(56,"div",32)(57,"button",33),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onClose())}),t.EFF(58),t.k0s()()()()()()}2&a&&(t.R7$(10),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",o.peerFormGroup)("editable",o.flgEditable),t.R7$(),t.Y8G("formGroup",o.peerFormGroup),t.R7$(6),t.Y8G("ngIf",null==o.peerFormGroup.controls.peerAddress.errors?null:o.peerFormGroup.controls.peerAddress.errors.required),t.R7$(),t.Y8G("ngIf",""!==o.peerConnectionError),t.R7$(3),t.JRh(""!==o.peerConnectionError?"Retry":"Add Peer"),t.R7$(),t.Y8G("stepControl",o.channelFormGroup)("editable",o.flgEditable),t.R7$(),t.Y8G("formGroup",o.channelFormGroup),t.R7$(3),t.Y8G("ngIf",o.recommendedFee.minimumFee),t.R7$(5),t.Y8G("step",1e3),t.R7$(2),t.SpI("Remaining: ",t.bMT(36,23,o.totalBalance-(o.channelFormGroup.controls.fundingAmount.value?o.channelFormGroup.controls.fundingAmount.value:0))),t.R7$(4),t.Y8G("ngIf",null==o.channelFormGroup.controls.fundingAmount.errors?null:o.channelFormGroup.controls.fundingAmount.errors.required),t.R7$(),t.Y8G("ngIf",null==o.channelFormGroup.controls.fundingAmount.errors?null:o.channelFormGroup.controls.fundingAmount.errors.min),t.R7$(),t.Y8G("ngIf",null==o.channelFormGroup.controls.fundingAmount.errors?null:o.channelFormGroup.controls.fundingAmount.errors.max),t.R7$(4),t.Y8G("step",1)("min",o.recommendedFee.minimumFee||0),t.R7$(2),t.SpI("Mempool Min: ",o.recommendedFee.minimumFee," (Sats/vByte)"),t.R7$(),t.Y8G("ngIf",null==o.channelFormGroup.controls.feeRate.errors?null:o.channelFormGroup.controls.feeRate.errors.minimum),t.R7$(4),t.Y8G("ngIf",""!==o.channelConnectionError),t.R7$(3),t.JRh(""!==o.channelConnectionError?"Retry":"Open Channel"),t.R7$(3),t.JRh(null!=o.newlyAddedPeer&&o.newlyAddedPeer.nodeId?"Do It Later":"Close"))},dependencies:[d.bT,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.VZ,f.j4,f.JD,D.aY,N.$z,x.m2,x.MM,Y.fg,y.rl,y.nJ,y.MV,y.TL,y.yw,_.DJ,_.sA,_.UI,Gt.sG,at.V5,at.Ti,at.M6,et.N,it.V,d.QX],encapsulation:2}))}return i(),s})();var At=C(5416),Nt=C(9157);const Oo=i=>({"background-color":i});function Ho(i,s){if(1&i&&(t.j41(0,"span",10)(1,"div"),t.EFF(2),t.nI1(3,"titlecase"),t.k0s()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(2),t.Lme("",n.nodeFeaturesEnum[e.key]||e.key,": ",t.bMT(3,2,e.value))}}function Yo(i,s){1&i&&(t.j41(0,"th",24),t.EFF(1,"Address"),t.k0s())}function Xo(i,s){if(1&i&&(t.j41(0,"td",25),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(e)}}function Uo(i,s){1&i&&(t.j41(0,"th",26)(1,"div",27),t.EFF(2,"Actions"),t.k0s()())}function zo(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",28)(1,"div",29)(2,"mat-select",30),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",31),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onConnectNode(a))}),t.EFF(5,"Connect"),t.k0s(),t.j41(6,"mat-option",32),t.bIt("copied",function(a){r.eBV(e);const o=t.XpG(2);return r.Njj(o.onCopyNodeURI(a))}),t.EFF(7,"Copy URI"),t.k0s()()()()}if(2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(6),t.Y8G("payload",(null==n.lookupResult?null:n.lookupResult.nodeId)+"@"+e)}}function Jo(i,s){1&i&&t.nrm(0,"tr",33)}function qo(i,s){1&i&&t.nrm(0,"tr",34)}function Qo(i,s){if(1&i&&(t.j41(0,"div",2),t.nrm(1,"mat-divider",3),t.j41(2,"div",4)(3,"div",5)(4,"h4",6),t.EFF(5,"Alias"),t.k0s(),t.j41(6,"span",7),t.EFF(7),t.j41(8,"span",8),t.EFF(9),t.k0s()()(),t.j41(10,"div",9)(11,"h4",6),t.EFF(12,"Pub Key"),t.k0s(),t.j41(13,"span",10),t.EFF(14),t.k0s()()(),t.nrm(15,"mat-divider",3),t.j41(16,"div",4)(17,"div",5)(18,"h4",6),t.EFF(19,"Date/Time"),t.k0s(),t.j41(20,"span",7),t.EFF(21),t.nI1(22,"date"),t.k0s()(),t.j41(23,"div",9)(24,"h4",6),t.EFF(25,"Features"),t.k0s(),t.DNE(26,Ho,4,4,"span",11),t.nI1(27,"keyvalue"),t.k0s()(),t.nrm(28,"mat-divider",3),t.j41(29,"div",4)(30,"div",12)(31,"h4",6),t.EFF(32,"Signature"),t.k0s(),t.j41(33,"span",7),t.EFF(34),t.k0s()()(),t.nrm(35,"mat-divider",3),t.j41(36,"div",2)(37,"h4",13),t.EFF(38,"Addresses"),t.k0s(),t.j41(39,"div",14)(40,"table",15,0),t.qex(42,16),t.DNE(43,Yo,2,0,"th",17)(44,Xo,2,1,"td",18),t.bVm(),t.qex(45,19),t.DNE(46,Uo,3,0,"th",20)(47,zo,8,1,"td",21),t.bVm(),t.DNE(48,Jo,1,0,"tr",22)(49,qo,1,0,"tr",23),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(null==e.lookupResult?null:e.lookupResult.alias),t.R7$(),t.Y8G("ngStyle",t.eq3(19,Oo,null==e.lookupResult?null:e.lookupResult.rgbColor)),t.R7$(),t.JRh(null!=e.lookupResult&&e.lookupResult.rgbColor?null==e.lookupResult?null:e.lookupResult.rgbColor:""),t.R7$(5),t.JRh(null==e.lookupResult?null:e.lookupResult.nodeId),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(t.i5U(22,14,1e3*(null==e.lookupResult?null:e.lookupResult.timestamp),"dd/MMM/y HH:mm")),t.R7$(5),t.Y8G("ngForOf",t.bMT(27,17,null==e.lookupResult?null:e.lookupResult.features.activated)),t.R7$(2),t.Y8G("inset",!0),t.R7$(6),t.JRh(null==e.lookupResult?null:e.lookupResult.signature),t.R7$(),t.Y8G("inset",!0),t.R7$(5),t.Y8G("dataSource",e.addresses),t.R7$(8),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns)}}let Zo=(()=>{var i;class s{constructor(n,a,o){this.logger=n,this.snackBar=a,this.store=o,this.lookupResult={},this.addresses=new p.I6([]),this.displayedColumns=["address","actions"],this.nodeFeaturesEnum=c.Uq,this.information={},this.availableBalance=0,this.unSubs=[new h.B,new h.B,new h.B]}ngOnInit(){this.addresses=new p.I6(this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(n,a)=>n[a]&&isNaN(n[a])?n[a].toLocaleLowerCase():n[a]?+n[a]:null,this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.information=n}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.availableBalance=n.onchainBalance.total||0})}onConnectNode(n){this.store.dispatch((0,k.xO)({payload:{data:{message:{peer:this.lookupResult.nodeId?{nodeId:this.lookupResult.nodeId,address:n}:null,information:this.information,balance:this.availableBalance},component:Pt}}}))}onCopyNodeURI(n){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+n)}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(At.UG),t.rXU(I.il))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-node-lookup"]],viewQuery:function(a,o){if(1&a&&t.GBs(v.B4,5),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first)}},inputs:{lookupResult:"lookupResult"},standalone:!1,decls:1,vars:1,consts:[["table",""],["fxLayout","column",4,"ngIf"],["fxLayout","column"],[1,"my-1",3,"inset"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"ml-2",3,"ngStyle"],["fxFlex","70"],[1,"foreground-secondary-text","w-100"],["class","foreground-secondary-text w-100",4,"ngFor","ngForOf"],["fxFlex","100"],["fxFlex","100","fxLayoutAlign","start",1,"font-bold-500","mb-1"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto",3,"dataSource"],["matColumnDef","address"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select","btn-action"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"copied","payload"],["mat-header-row",""],["mat-row",""]],template:function(a,o){1&a&&t.DNE(0,Qo,50,21,"div",1),2&a&&t.Y8G("ngIf",o.lookupResult)},dependencies:[d.Sq,d.bT,d.B3,tt.q,_.DJ,_.sA,_.UI,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.KS,p.$R,p.YZ,p.NB,B.Ld,Nt.U,d.PV,d.vh,d.lG],encapsulation:2}))}return i(),s})();const Wo=["form"],Ko=i=>({"mt-1":!0,"mt-2":i});function ts(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder," is required.")}}function es(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("Invalid ",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder,".")}}function ns(i,s){if(1&i&&(t.j41(0,"div"),t.nrm(1,"rtl-ecl-node-lookup",25),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.Y8G("lookupResult",e.nodeLookupValue)}}function is(i,s){if(1&i&&(t.j41(0,"span",23),t.DNE(1,ns,2,1,"div",24),t.k0s()),2&i){const e=t.XpG(2),n=t.sdS(23);t.R7$(),t.Y8G("ngIf",e.nodeLookupValue.nodeId)("ngIfElse",n)}}function as(i,s){1&i&&(t.j41(0,"span"),t.EFF(1,' fxFlex="100"'),t.j41(2,"h3"),t.EFF(3,"Error! Unable to find details!"),t.k0s()())}function os(i,s){if(1&i&&(t.j41(0,"div",17)(1,"div",18)(2,"span",19),t.EFF(3),t.k0s()(),t.j41(4,"div",20),t.DNE(5,is,2,2,"span",21)(6,as,4,0,"span",22),t.k0s()()),2&i){const e=t.XpG();t.R7$(3),t.SpI("",e.lookupFields[e.selectedFieldId].name," Details"),t.R7$(),t.Y8G("ngSwitch",e.selectedFieldId),t.R7$(),t.Y8G("ngSwitchCase",0)}}function ss(i,s){1&i&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find details!"),t.k0s())}let ls=(()=>{var i;class s{constructor(n,a,o,l){this.logger=n,this.commonService=a,this.store=o,this.actions=l,this.lookupKeyCtrl=new f.hs,this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Node ID"},{id:1,name:"Channel",placeholder:"Short Channel ID"}],this.flgLoading=[!0],this.faSearch=E.MjD,this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKeyCtrl.setValue(window.history.state.lookupValue||"")),this.actions.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(n=>n.type===c.Uu.SET_LOOKUP_ECL||n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(n=>{if(n.type===c.Uu.SET_LOOKUP_ECL){switch(this.flgLoading[0]=!0,this.selectedFieldId){case 0:this.nodeLookupValue=n.payload[0]?JSON.parse(JSON.stringify(n.payload[0])):{nodeid:""};break;case 1:this.channelLookupValue=JSON.parse(JSON.stringify(n.payload))||[]}this.flgSetLookupValue=!0,this.logger.info(this.nodeLookupValue),this.logger.info(this.channelLookupValue)}n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&n.payload.status===c.wn.ERROR&&"Lookup"===n.payload.action&&(this.flgLoading[0]="error")}),this.lookupKeyCtrl.valueChanges.pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1})}onLookup(){return this.lookupKeyCtrl.value?this.lookupKeyCtrl.value&&(this.lookupKeyCtrl.value.includes("@")||this.lookupKeyCtrl.value.includes(","))?(this.lookupKeyCtrl.setErrors({invalid:!0}),!0):void(0===(this.selectedFieldId||(this.selectedFieldId=0),this.flgSetLookupValue=!1,this.nodeLookupValue={},this.channelLookupValue=[],this.selectedFieldId)&&this.store.dispatch((0,j.zU)({payload:this.lookupKeyCtrl.value.trim()}))):(this.lookupKeyCtrl.setErrors({required:!0}),!0)}onSelectChange(n){this.resetData(),this.selectedFieldId=n.value}resetData(){this.flgSetLookupValue=!1,this.nodeLookupValue={},this.channelLookupValue=[],this.lookupKeyCtrl.setValue(""),this.lookupKeyCtrl.setErrors(null),this.form.resetForm()}clearLookupValue(){this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il),t.rXU(K.En))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-lookups"]],viewQuery:function(a,o){if(1&a&&t.GBs(Wo,7),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first)}},standalone:!1,decls:24,vars:9,consts:[["form","ngForm"],["key",""],["errorBlock",""],["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField"],["checked","",1,"mr-4",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"formControl"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxFlex","100"],[4,"ngIf","ngIfElse"],[3,"lookupResult"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",3)(1,"div",4)(2,"mat-card-content",5)(3,"form",6,0)(5,"div",7)(6,"mat-radio-group",8)(7,"mat-radio-button",9),t.EFF(8,"Node"),t.k0s()()(),t.j41(9,"mat-form-field",10)(10,"mat-label"),t.EFF(11),t.k0s(),t.nrm(12,"input",11,1),t.DNE(14,ts,2,1,"mat-error",12)(15,es,2,1,"mat-error",12),t.k0s(),t.j41(16,"div",13)(17,"button",14),t.bIt("click",function(){return r.eBV(l),r.Njj(o.resetData())}),t.EFF(18,"Clear"),t.k0s(),t.j41(19,"button",15),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onLookup())}),t.EFF(20,"Lookup"),t.k0s()()(),t.DNE(21,os,7,3,"div",16),t.k0s()()(),t.DNE(22,ss,2,0,"ng-template",null,2,t.C5r)}2&a&&(t.R7$(7),t.Y8G("value",0),t.R7$(2),t.Y8G("ngClass",t.eq3(7,Ko,o.screenSize===o.screenSizeEnum.XS||o.screenSize===o.screenSizeEnum.SM)),t.R7$(2),t.JRh((null==o.lookupFields[o.selectedFieldId]?null:o.lookupFields[o.selectedFieldId].placeholder)||"Lookup Key"),t.R7$(),t.Y8G("formControl",o.lookupKeyCtrl),t.R7$(2),t.Y8G("ngIf",null==o.lookupKeyCtrl.errors?null:o.lookupKeyCtrl.errors.required),t.R7$(),t.Y8G("ngIf",null==o.lookupKeyCtrl.errors?null:o.lookupKeyCtrl.errors.invalid),t.R7$(6),t.Y8G("ngIf",o.flgSetLookupValue))},dependencies:[d.YU,d.bT,d.ux,d.e1,d.fG,f.qT,f.me,f.BC,f.cb,f.YS,f.cV,f.l_,N.$z,x.m2,Y.fg,y.rl,y.nJ,y.TL,rt.VT,rt._g,_.DJ,_.sA,_.UI,S.PW,Zo],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]}))}return i(),s})();var rs=C(396);let cs=(()=>{var i;class s{constructor(n,a){this.store=n,this.eclEffects=a,this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,j.XT)()),this.eclEffects.setNewAddress.pipe((0,Z.s)(1)).subscribe(n=>{this.newAddress=n,setTimeout(()=>{this.store.dispatch((0,k.xO)({payload:{data:{address:this.newAddress,addressType:"",component:rs.f}}}))},0)})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(I.il),t.rXU(ht.B))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-on-chain-receive"]],standalone:!1,decls:4,vars:0,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","1",3,"click"]],template:function(a,o){1&a&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return o.onGenerateAddress()}),t.EFF(3,"Generate Address"),t.k0s()()())},dependencies:[N.$z,_.DJ,_.sA,_.UI],encapsulation:2}))}return i(),s})(),ms=(()=>{var i;class s{constructor(n,a){this.store=n,this.activatedRoute=a,this.sweepAll=!1,this.unSubs=[new h.B,new h.B]}ngOnInit(){this.activatedRoute.data.pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.sweepAll=n.sweepAll})}openSendFundsModal(){this.store.dispatch((0,k.xO)({payload:{data:{sweepAll:this.sweepAll,component:jt}}}))}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(I.il),t.rXU(L.nX))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-on-chain-send"]],standalone:!1,decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(a,o){1&a&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return o.openSendFundsModal()}),t.EFF(3),t.k0s()()()),2&a&&(t.R7$(3),t.JRh(o.sweepAll?"Sweep All":"Send Funds"))},dependencies:[N.$z,_.DJ,_.sA,_.UI],encapsulation:2}))}return i(),s})();var yt=C(9172),Bt=C(6354),ct=C(2628),ps=C(92);const us=["form"];function ds(i,s){if(1&i&&(t.j41(0,"mat-option",36),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(e.alias?e.alias:e.nodeId?e.nodeId:"")}}function hs(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Peer alias is required."),t.k0s())}function fs(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Peer not found in the list."),t.k0s())}function _s(i,s){if(1&i){const e=t.RV6();t.j41(0,"mat-form-field",6)(1,"mat-label"),t.EFF(2,"Peer Alias"),t.k0s(),t.j41(3,"input",33),t.bIt("change",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onSelectedPeerChanged())}),t.k0s(),t.j41(4,"mat-autocomplete",34,4),t.bIt("optionSelected",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onSelectedPeerChanged())}),t.DNE(6,ds,2,2,"mat-option",35),t.nI1(7,"async"),t.k0s(),t.DNE(8,hs,2,0,"mat-error",20)(9,fs,2,0,"mat-error",20),t.k0s()}if(2&i){const e=t.sdS(5),n=t.XpG();t.R7$(3),t.Y8G("formControl",n.selectedPeer)("matAutocomplete",e),t.R7$(),t.Y8G("displayWith",n.displayFn),t.R7$(2),t.Y8G("ngForOf",t.bMT(7,6,n.filteredPeers)),t.R7$(2),t.Y8G("ngIf",null==n.selectedPeer.errors?null:n.selectedPeer.errors.required),t.R7$(),t.Y8G("ngIf",null==n.selectedPeer.errors?null:n.selectedPeer.errors.notfound)}}function gs(i,s){1&i&&t.eu8(0)}function Cs(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function ys(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function bs(i,s){if(1&i&&(t.j41(0,"div",37),t.nrm(1,"fa-icon",38),t.j41(2,"span",39)(3,"div"),t.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),t.k0s(),t.j41(5,"span",40)(6,"span"),t.EFF(7),t.k0s(),t.j41(8,"span"),t.EFF(9),t.k0s(),t.j41(10,"span"),t.EFF(11),t.k0s(),t.j41(12,"span"),t.EFF(13),t.k0s(),t.j41(14,"span"),t.EFF(15),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faInfoCircle),t.R7$(6),t.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),t.R7$(2),t.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),t.R7$(2),t.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),t.R7$(2),t.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),t.R7$(2),t.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function Fs(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function Es(i,s){if(1&i&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.channelConnectionError)}}function xs(i,s){if(1&i&&(t.j41(0,"div",41),t.nrm(1,"fa-icon",38),t.DNE(2,Es,2,1,"span",20),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.channelConnectionError)}}function Ls(i,s){if(1&i&&(t.j41(0,"mat-expansion-panel",43)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),t.EFF(4,"Peer: \xa0"),t.k0s(),t.j41(5,"strong",44),t.EFF(6),t.k0s()()(),t.j41(7,"div",13)(8,"div",5)(9,"div",6)(10,"h4",45),t.EFF(11,"Pubkey"),t.k0s(),t.j41(12,"span",46),t.EFF(13),t.k0s()()(),t.nrm(14,"mat-divider",47),t.j41(15,"div",5)(16,"div",48)(17,"h4",45),t.EFF(18,"Address"),t.k0s(),t.j41(19,"span",49),t.EFF(20),t.k0s()(),t.j41(21,"div",48)(22,"h4",45),t.EFF(23,"State"),t.k0s(),t.j41(24,"span",49),t.EFF(25),t.nI1(26,"titlecase"),t.k0s()()()()()),2&i){const e=t.XpG(2);t.R7$(6),t.JRh((null==e.peer?null:e.peer.alias)||(null==e.peer?null:e.peer.nodeId)),t.R7$(7),t.JRh(e.peer.nodeId),t.R7$(7),t.JRh(null==e.peer?null:e.peer.address),t.R7$(5),t.JRh(t.bMT(26,4,null==e.peer?null:e.peer.state))}}function vs(i,s){if(1&i&&t.DNE(0,Ls,27,6,"mat-expansion-panel",42),2&i){const e=t.XpG();t.Y8G("ngIf",e.peer)}}let Mt=(()=>{var i;class s{constructor(n,a,o,l,m,u){this.logger=n,this.dialogRef=a,this.data=o,this.store=l,this.actions=m,this.dataService=u,this.selectedPeer=new f.hs,this.faExclamationTriangle=E.zpE,this.faInfoCircle=E.iW_,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.selectedPubkey="",this.isPrivate=!1,this.feeRate=null,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.data.message?(this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[]):(this.information={},this.totalBalance=0,this.peer=null,this.peers=[]),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(o=>{this.selNode=o,this.isPrivate=!!o?.settings.unannouncedChannels}),this.actions.pipe((0,g.Q)(this.unSubs[1]),(0,X.p)(o=>o.type===c.Uu.UPDATE_API_CALL_STATUS_ECL||o.type===c.Uu.FETCH_CHANNELS_ECL)).subscribe(o=>{o.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&o.payload.status===c.wn.ERROR&&"SaveNewChannel"===o.payload.action&&(this.channelConnectionError=o.payload.message),o.type===c.Uu.FETCH_CHANNELS_ECL&&this.dialogRef.close()});let n="",a="";this.sortedPeers=this.peers.sort((o,l)=>(n=o.alias?o.alias.toLowerCase():o.nodeId?o.nodeId.toLowerCase():"",a=l.alias?l.alias.toLowerCase():o.nodeId?o.nodeId.toLowerCase():"",na?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,g.Q)(this.unSubs[2]),(0,yt.Z)(""),(0,Bt.T)(o=>"string"==typeof o?o:o.alias?o.alias:o.nodeId),(0,Bt.T)(o=>o?this.filterPeers(o):this.sortedPeers.slice()))}filterPeers(n){return this.sortedPeers?.filter(a=>0===a.alias?.toLowerCase().indexOf(n?n.toLowerCase():""))}displayFn(n){return n&&n.alias?n.alias:n&&n.nodeId?n.nodeId:""}onSelectedPeerChanged(){if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.nodeId?this.selectedPeer.value.nodeId:null,"string"==typeof this.selectedPeer.value){const n=this.peers?.filter(a=>a.alias?.length===this.selectedPeer.value.length&&0===a.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===n.length&&n[0].nodeId&&(this.selectedPubkey=n[0].nodeId)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){this.feeRate=null,this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!!this.selNode?.settings.unannouncedChannels,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onAdvancedPanelToggle(n){this.advancedTitle="Advanced Options",n?this.feeRate&&this.feeRate>0&&(this.advancedTitle=this.advancedTitle+" | Fee (Sats/vByte): "+this.feeRate):this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[3])).subscribe({next:a=>{this.recommendedFee=a},error:a=>{this.logger.error(a)}})}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||this.feeRate&&this.recommendedFee.minimumFee>this.feeRate)return!0;const n={nodeId:this.peer&&this.peer.nodeId?this.peer.nodeId:this.selectedPubkey,amount:this.fundingAmount,private:this.isPrivate};this.feeRate&&(n.feeRate=this.feeRate),this.store.dispatch((0,j.vL)({payload:n}))}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(V.CP),t.rXU(V.Vh),t.rXU(I.il),t.rXU(K.En),t.rXU(nt.u))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-open-channel"]],viewQuery:function(a,o){if(1&a&&t.GBs(us,7),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first)}},standalone:!1,decls:56,vars:21,consts:[["form","ngForm"],["amount","ngModel"],["fee","ngModel"],["peerDetailsExpansionBlock",""],["auto","matAutocomplete"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","11","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","1","required","","name","amount",3,"ngModelChange","step","min","max","ngModel"],["matSuffix",""],[4,"ngIf"],["fxFlex","25","fxLayoutAlign","start center"],["tabindex","2","color","primary","name","isPrivate",3,"ngModelChange","ngModel"],["expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxFlex","100","fxLayout","row","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","49"],["matInput","","type","number","name","fee","tabindex","7",3,"ngModelChange","step","min","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","9","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","10"],["type","text","aria-label","Peers","matInput","","tabindex","1","required","",3,"change","formControl","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value",4,"ngFor","ngForOf"],[3,"value"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",5)(1,"div",6)(2,"mat-card-header",7)(3,"div",8)(4,"span",9),t.EFF(5),t.k0s()(),t.j41(6,"button",10),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",11)(9,"form",12,0),t.bIt("submit",function(){return r.eBV(l),r.Njj(o.onOpenChannel())})("reset",function(){return r.eBV(l),r.Njj(o.resetData())}),t.j41(11,"div",13),t.DNE(12,_s,10,8,"mat-form-field",14),t.k0s(),t.DNE(13,gs,1,0,"ng-container",15),t.j41(14,"div",13)(15,"div",16)(16,"mat-form-field",17)(17,"mat-label"),t.EFF(18,"Amount"),t.k0s(),t.j41(19,"input",18,1),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.fundingAmount,u)||(o.fundingAmount=u),r.Njj(u)}),t.k0s(),t.j41(21,"mat-hint"),t.EFF(22),t.nI1(23,"number"),t.k0s(),t.j41(24,"span",19),t.EFF(25,"Sats "),t.k0s(),t.DNE(26,Cs,2,0,"mat-error",20)(27,ys,2,1,"mat-error",20),t.k0s(),t.j41(28,"div",21)(29,"mat-slide-toggle",22),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.isPrivate,u)||(o.isPrivate=u),r.Njj(u)}),t.EFF(30,"Private Channel"),t.k0s()()(),t.j41(31,"mat-expansion-panel",23),t.bIt("closed",function(){return r.eBV(l),r.Njj(o.onAdvancedPanelToggle(!0))})("opened",function(){return r.eBV(l),r.Njj(o.onAdvancedPanelToggle(!1))}),t.j41(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),t.EFF(35),t.k0s()()(),t.j41(36,"div",24),t.DNE(37,bs,16,6,"div",25),t.j41(38,"div",16)(39,"div",26)(40,"mat-form-field",27)(41,"mat-label"),t.EFF(42,"Fee (Sats/vByte)"),t.k0s(),t.j41(43,"input",28,2),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.feeRate,u)||(o.feeRate=u),r.Njj(u)}),t.k0s(),t.j41(45,"mat-hint"),t.EFF(46),t.k0s(),t.DNE(47,Fs,2,1,"mat-error",20),t.k0s()()()()()(),t.DNE(48,xs,3,2,"div",29),t.j41(49,"div",30)(50,"button",31),t.EFF(51,"Clear Fields"),t.k0s(),t.j41(52,"button",32),t.EFF(53,"Open Channel"),t.k0s()()()()()(),t.DNE(54,vs,1,1,"ng-template",null,3,t.C5r)}if(2&a){const l=t.sdS(20),m=t.sdS(55);t.R7$(5),t.JRh(o.alertTitle),t.R7$(7),t.Y8G("ngIf",!o.peer&&o.peers&&o.peers.length>0),t.R7$(),t.Y8G("ngTemplateOutlet",m),t.R7$(6),t.Y8G("step",1e3)("min",1)("max",o.totalBalance),t.R50("ngModel",o.fundingAmount),t.R7$(3),t.SpI("Remaining: ",t.bMT(23,19,o.totalBalance-(o.fundingAmount?o.fundingAmount:0))),t.R7$(4),t.Y8G("ngIf",null==l.errors?null:l.errors.required),t.R7$(),t.Y8G("ngIf",null==l.errors?null:l.errors.max),t.R7$(2),t.R50("ngModel",o.isPrivate),t.R7$(6),t.JRh(o.advancedTitle),t.R7$(2),t.Y8G("ngIf",o.recommendedFee.minimumFee),t.R7$(6),t.Y8G("step",1)("min",o.recommendedFee.minimumFee),t.R50("ngModel",o.feeRate),t.R7$(3),t.SpI("Mempool Min: ",o.recommendedFee.minimumFee," (Sats/vByte)"),t.R7$(),t.Y8G("ngIf",o.feeRate&&o.feeRate{var i;class s{constructor(n,a,o){this.logger=n,this.store=a,this.router=o,this.numOfOpenChannels=0,this.numOfPendingChannels=0,this.numOfInactiveChannels=0,this.information={},this.peers=[],this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending"},{link:"inactive",name:"Inactive"}],this.activeLink=0,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.activeLink=this.links.findIndex(n=>n.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(n=>n instanceof L.gx)).subscribe({next:n=>{this.activeLink=this.links.findIndex(a=>a.link===n.urlAfterRedirects.substring(n.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.numOfOpenChannels=n.channelsStatus&&n.channelsStatus.active&&n.channelsStatus.active.channels?n.channelsStatus.active.channels:0,this.numOfPendingChannels=n.channelsStatus&&n.channelsStatus.pending&&n.channelsStatus.pending.channels?n.channelsStatus.pending.channels:0,this.numOfInactiveChannels=n.channelsStatus&&n.channelsStatus.inactive&&n.channelsStatus.inactive.channels?n.channelsStatus.inactive.channels:0,this.logger.info(n)}),this.store.select(J._c).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.selNode=n}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.information=n}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[4])).subscribe(n=>{this.peers=n.peers}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[5])).subscribe(n=>{this.totalBalance=n.onchainBalance.total||0})}onOpenChannel(){this.store.dispatch((0,k.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:Mt}}}))}onSelectedTabChange(n){this.router.navigateByUrl("/ecl/connections/channels/"+this.links[n.index].link)}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channels-tables"]],standalone:!1,decls:14,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(a,o){1&a&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return o.onOpenChannel()}),t.EFF(3,"Open Channel"),t.k0s()(),t.j41(4,"div",3)(5,"mat-tab-group",4),t.mxI("selectedIndexChange",function(m){return t.DH7(o.activeLink,m)||(o.activeLink=m),m}),t.bIt("selectedTabChange",function(m){return o.onSelectedTabChange(m)}),t.j41(6,"mat-tab"),t.DNE(7,Ss,2,2,"ng-template",5),t.k0s(),t.j41(8,"mat-tab"),t.DNE(9,Rs,2,2,"ng-template",5),t.k0s(),t.j41(10,"mat-tab"),t.DNE(11,ks,2,2,"ng-template",5),t.k0s()(),t.j41(12,"div",6),t.nrm(13,"router-outlet"),t.k0s()()()),2&a&&(t.R7$(5),t.R50("selectedIndex",o.activeLink))},dependencies:[N.$z,_.DJ,_.sA,_.UI,Dt.k,G.ES,G.mq,G.T8,L.n3],encapsulation:2}))}return i(),s})();const Ts=i=>({"xs-scroll-y":i}),ws=(i,s)=>({"mt-2":i,"mt-1":s});function js(i,s){if(1&i&&(t.j41(0,"div",12)(1,"h4",13),t.EFF(2,"Short Channel ID"),t.k0s(),t.j41(3,"span",14),t.EFF(4),t.k0s()()),2&i){const e=t.XpG();t.R7$(4),t.JRh(e.channel.shortChannelId)}}function Ds(i,s){if(1&i&&(t.j41(0,"div",12)(1,"h4",13),t.EFF(2,"State"),t.k0s(),t.j41(3,"span",17),t.EFF(4),t.nI1(5,"titlecase"),t.k0s()()),2&i){const e=t.XpG();t.R7$(4),t.JRh(t.bMT(5,1,e.channel.state))}}function Gs(i,s){if(1&i&&(t.j41(0,"div")(1,"div",10)(2,"div",12)(3,"h4",13),t.EFF(4,"Local Balance (Sats)"),t.k0s(),t.j41(5,"span",17),t.EFF(6),t.nI1(7,"number"),t.k0s()(),t.j41(8,"div",12)(9,"h4",13),t.EFF(10,"Remote Balance (Sats)"),t.k0s(),t.j41(11,"span",17),t.EFF(12),t.nI1(13,"number"),t.k0s()()(),t.nrm(14,"mat-divider",15),t.j41(15,"div",10)(16,"div",12)(17,"h4",13),t.EFF(18,"Base Fee (mSats)"),t.k0s(),t.j41(19,"span",17),t.EFF(20),t.nI1(21,"number"),t.k0s()(),t.j41(22,"div",12)(23,"h4",13),t.EFF(24,"Fee Rate (mili mSats)"),t.k0s(),t.j41(25,"span",17),t.EFF(26),t.nI1(27,"number"),t.k0s()()(),t.nrm(28,"mat-divider",15),t.k0s()),2&i){const e=t.XpG();t.R7$(6),t.JRh(t.bMT(7,6,e.channel.toLocal)),t.R7$(6),t.JRh(t.bMT(13,8,e.channel.toRemote)),t.R7$(2),t.Y8G("inset",!0),t.R7$(6),t.JRh(t.bMT(21,10,e.channel.feeBaseMsat)),t.R7$(6),t.JRh(t.bMT(27,12,e.channel.feeProportionalMillionths)),t.R7$(2),t.Y8G("inset",!0)}}function Ps(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Show Advanced"),t.k0s())}function As(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Hide Advanced"),t.k0s())}function Ns(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",23),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onShowAdvanced())}),t.DNE(1,Ps,2,0,"p",24)(2,As,2,0,"ng-template",null,0,t.C5r),t.k0s()}if(2&i){const e=t.sdS(3),n=t.XpG();t.R7$(),t.Y8G("ngIf",!n.showAdvanced)("ngIfElse",e)}}function Bs(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",25),t.bIt("copied",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onCopyChanID(a))}),t.EFF(1,"Copy Short Channel ID"),t.k0s()}if(2&i){const e=t.XpG();t.Y8G("payload",e.channel.shortChannelId)}}function Ms(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",26),t.bIt("copied",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onCopyChanID(a))}),t.EFF(1,"Copy Channel ID"),t.k0s()}if(2&i){const e=t.XpG();t.Y8G("payload",e.channel.channelId)}}let bt=(()=>{var i;class s{constructor(n,a,o,l,m,u){this.dialogRef=n,this.data=a,this.logger=o,this.commonService=l,this.snackBar=m,this.router=u,this.faReceipt=E.Mf0,this.showAdvanced=!1,this.channelsType="open",this.screenSize="",this.screenSizeEnum=c.f7}ngOnInit(){this.channel=this.data.channel,this.channelsType=this.data.channelsType||"",this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(n){this.snackBar.open("open"===this.channelsType?"Short channel ID "+n+" copied.":"Channel ID copied."),this.logger.info("Copied Text: "+n)}onGoToLink(n,a){this.router.navigateByUrl("/ecl/graph/lookups",{state:{lookupType:n,lookupValue:a}}),this.onClose()}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(V.Vh),t.rXU(A.gP),t.rXU($.h),t.rXU(At.UG),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-information"]],standalone:!1,decls:59,vars:27,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50",4,"ngIf"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["tabindex","1","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"overflow-wrap","foreground-secondary-text"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","2","class","mr-1",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","3","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","4","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["mat-button","","color","primary","type","reset","tabindex","2",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","3","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","4","type","submit","rtlClipboard","",3,"copied","payload"]],template:function(a,o){1&a&&(t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4),t.nrm(4,"fa-icon",5),t.j41(5,"span",6),t.EFF(6,"Channel Information"),t.k0s()(),t.j41(7,"button",7),t.bIt("click",function(){return o.onClose()}),t.EFF(8,"X"),t.k0s()(),t.j41(9,"mat-card-content",8)(10,"div",9)(11,"div",10),t.DNE(12,js,5,1,"div",11),t.j41(13,"div",12)(14,"h4",13),t.EFF(15,"Peer Alias"),t.k0s(),t.j41(16,"span",14),t.EFF(17),t.k0s()(),t.DNE(18,Ds,6,3,"div",11),t.k0s(),t.nrm(19,"mat-divider",15),t.j41(20,"div",10)(21,"div",2)(22,"h4",13),t.EFF(23,"Channel ID"),t.k0s(),t.j41(24,"span",14),t.EFF(25),t.k0s()()(),t.nrm(26,"mat-divider",15),t.j41(27,"div",10)(28,"div",2)(29,"h4",13),t.EFF(30,"Peer Public Key"),t.k0s(),t.j41(31,"span",16),t.bIt("click",function(){return o.onGoToLink("0",o.channel.nodeId)}),t.EFF(32),t.k0s()()(),t.nrm(33,"mat-divider",15),t.j41(34,"div",10)(35,"div",2)(36,"h4",13),t.EFF(37,"State"),t.k0s(),t.j41(38,"span",17),t.EFF(39),t.nI1(40,"titlecase"),t.k0s()()(),t.nrm(41,"mat-divider",15),t.j41(42,"div",10)(43,"div",12)(44,"h4",13),t.EFF(45,"Private"),t.k0s(),t.j41(46,"span",17),t.EFF(47),t.k0s()(),t.j41(48,"div",12)(49,"h4",13),t.EFF(50,"Initiator"),t.k0s(),t.j41(51,"span",17),t.EFF(52),t.k0s()()(),t.nrm(53,"mat-divider",15),t.DNE(54,Gs,29,14,"div",18),t.j41(55,"div",19),t.DNE(56,Ns,4,2,"button",20)(57,Bs,2,1,"button",21)(58,Ms,2,1,"button",22),t.k0s()()()()()),2&a&&(t.R7$(4),t.Y8G("icon",o.faReceipt),t.R7$(5),t.Y8G("ngClass",t.eq3(22,Ts,o.screenSize===o.screenSizeEnum.XS)),t.R7$(3),t.Y8G("ngIf","open"===o.channelsType),t.R7$(5),t.JRh(o.channel.alias),t.R7$(),t.Y8G("ngIf","open"!==o.channelsType),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(o.channel.channelId),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.SpI(" ",o.channel.nodeId," "),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(t.bMT(40,20,o.channel.state)),t.R7$(2),t.Y8G("inset",!0),t.R7$(6),t.JRh(o.channel.announceChannel?"No":"Yes"),t.R7$(5),t.JRh(o.channel.isInitiator?"Yes":"No"),t.R7$(),t.Y8G("inset",!0),t.R7$(),t.Y8G("ngIf",o.showAdvanced&&"open"===o.channelsType),t.R7$(),t.Y8G("ngClass",t.l_i(24,ws,!o.showAdvanced,o.showAdvanced)),t.R7$(),t.Y8G("ngIf","open"===o.channelsType),t.R7$(),t.Y8G("ngIf","open"===o.channelsType),t.R7$(),t.Y8G("ngIf","open"!==o.channelsType))},dependencies:[d.YU,d.bT,D.aY,N.$z,x.m2,x.MM,tt.q,_.DJ,_.sA,_.UI,S.PW,Q.oV,Nt.U,et.N,d.QX,d.PV],encapsulation:2}))}return i(),s})();var Ft=C(7673),Et=C(1001),$s=C(6949);const ot=(i,s)=>({"small-svg":i,"large-svg":s});function Vs(i,s){1&i&&t.eu8(0)}function Os(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onSwipe(a))}),r.qSk(),t.j41(1,"svg",7),t.nrm(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17)(12,"path",18)(13,"path",19)(14,"path",20)(15,"path",21)(16,"path",22)(17,"path",23)(18,"path",24)(19,"path",25)(20,"path",26)(21,"path",27)(22,"path",28)(23,"path",29)(24,"path",30)(25,"path",31)(26,"path",32)(27,"path",33)(28,"path",34)(29,"path",35)(30,"path",36)(31,"path",37)(32,"path",38)(33,"path",39)(34,"path",40)(35,"path",41)(36,"path",42)(37,"path",43)(38,"path",44)(39,"path",45)(40,"path",46),t.k0s(),r.joV(),t.j41(41,"div",47)(42,"mat-card-title"),t.EFF(43,"Circular rebalancing explained."),t.k0s()(),t.j41(44,"div",48)(45,"mat-card-subtitle",49),t.EFF(46," Circular payments are a completely off-chain rebalancing strategy where a node makes a payment to itself across a circular path of chained payment channels. "),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,ot,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Hs(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onSwipe(a))}),r.qSk(),t.j41(1,"svg",51),t.nrm(2,"path",52)(3,"path",53)(4,"path",54)(5,"path",55)(6,"path",56)(7,"path",57)(8,"path",58)(9,"path",59)(10,"path",60)(11,"path",61)(12,"path",62)(13,"path",63)(14,"path",64)(15,"path",65)(16,"path",66)(17,"path",67)(18,"path",68)(19,"path",69)(20,"path",70)(21,"path",71)(22,"path",72)(23,"path",73)(24,"path",74)(25,"path",75)(26,"path",76)(27,"path",77)(28,"path",78)(29,"path",79)(30,"path",80)(31,"path",81)(32,"path",82)(33,"path",52)(34,"path",53)(35,"path",54)(36,"path",55)(37,"path",56)(38,"path",57)(39,"path",58)(40,"path",59)(41,"path",60)(42,"path",83)(43,"path",84)(44,"path",63)(45,"path",85)(46,"path",86)(47,"path",87)(48,"path",67)(49,"path",68)(50,"path",69)(51,"path",70)(52,"path",71)(53,"path",72)(54,"path",73)(55,"path",74)(56,"path",75)(57,"path",76)(58,"path",77)(59,"path",78)(60,"path",79)(61,"path",80)(62,"path",88)(63,"path",82)(64,"path",89),t.j41(65,"defs")(66,"linearGradient",90),t.nrm(67,"stop",91)(68,"stop",92)(69,"stop",93),t.k0s(),t.j41(70,"linearGradient",94),t.nrm(71,"stop",91)(72,"stop",92)(73,"stop",93),t.k0s(),t.j41(74,"linearGradient",95),t.nrm(75,"stop",91)(76,"stop",92)(77,"stop",93),t.k0s(),t.j41(78,"linearGradient",96),t.nrm(79,"stop",91)(80,"stop",92)(81,"stop",93),t.k0s(),t.j41(82,"linearGradient",97),t.nrm(83,"stop",91)(84,"stop",92)(85,"stop",93),t.k0s(),t.j41(86,"linearGradient",98),t.nrm(87,"stop",91)(88,"stop",92)(89,"stop",93),t.k0s()()(),r.joV(),t.j41(90,"div",47)(91,"mat-card-title"),t.EFF(92,"Step 1: Unbalanced channel"),t.k0s()(),t.j41(93,"div",48)(94,"mat-card-subtitle",49),t.EFF(95," It starts with an unbalanced channel, that needs to be rebalanced in order to continue to route payments. "),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,ot,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Ys(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onSwipe(a))}),r.qSk(),t.j41(1,"svg",99),t.nrm(2,"path",100)(3,"path",101)(4,"path",102)(5,"path",103)(6,"path",104)(7,"path",105)(8,"path",106)(9,"path",107)(10,"path",108)(11,"path",109)(12,"path",110)(13,"path",111)(14,"path",112)(15,"path",113)(16,"path",114)(17,"path",52)(18,"path",115)(19,"path",116)(20,"path",117)(21,"path",118)(22,"path",119)(23,"path",120)(24,"path",121)(25,"path",122)(26,"path",83)(27,"path",84)(28,"path",123)(29,"path",124)(30,"path",125)(31,"path",126)(32,"path",67)(33,"path",127)(34,"path",128)(35,"path",129)(36,"path",130)(37,"path",131)(38,"path",132)(39,"path",74)(40,"path",75)(41,"path",133)(42,"path",77)(43,"path",78)(44,"path",79)(45,"path",80)(46,"path",134)(47,"path",135)(48,"path",136),t.j41(49,"defs")(50,"linearGradient",137),t.nrm(51,"stop",91)(52,"stop",92)(53,"stop",93),t.k0s(),t.j41(54,"linearGradient",138),t.nrm(55,"stop",91)(56,"stop",92)(57,"stop",93),t.k0s(),t.j41(58,"linearGradient",139),t.nrm(59,"stop",91)(60,"stop",92)(61,"stop",93),t.k0s()()(),r.joV(),t.j41(62,"div",47)(63,"mat-card-title"),t.EFF(64,"Step 2: Invoice/Payment"),t.k0s()(),t.j41(65,"div",48)(66,"mat-card-subtitle",49),t.EFF(67," All you have to do is make a payment to yourself in a favorable direction by generating and paying an invoice. This is taken care automatically by your node. "),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,ot,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Xs(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onSwipe(a))}),r.qSk(),t.j41(1,"svg",140),t.nrm(2,"path",141)(3,"path",142)(4,"path",143)(5,"path",144)(6,"path",145)(7,"path",146)(8,"path",147)(9,"path",148)(10,"path",149)(11,"path",150)(12,"path",151)(13,"path",152)(14,"path",153)(15,"path",154)(16,"path",155)(17,"path",156)(18,"path",157)(19,"path",158)(20,"path",159)(21,"path",160)(22,"path",161)(23,"path",162)(24,"path",163)(25,"path",164)(26,"path",163)(27,"path",165)(28,"path",166)(29,"path",167)(30,"path",168)(31,"path",169)(32,"path",170)(33,"path",171)(34,"path",172)(35,"path",173)(36,"path",174)(37,"path",175)(38,"path",176)(39,"path",177)(40,"path",178)(41,"path",179),t.j41(42,"defs")(43,"linearGradient",180),t.nrm(44,"stop",91)(45,"stop",92)(46,"stop",93),t.k0s()()(),r.joV(),t.j41(47,"div",47)(48,"mat-card-title"),t.EFF(49,"Step 3: Rebalance amount"),t.k0s()(),t.j41(50,"div",48)(51,"mat-card-subtitle",49),t.EFF(52," You will be moving part or all of the local balance to the remote side. For the route to be circular, there should be at least 3 nodes involved. "),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,ot,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Us(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onSwipe(a))}),r.qSk(),t.j41(1,"svg",140),t.nrm(2,"path",181)(3,"path",143)(4,"path",182)(5,"path",145)(6,"path",146)(7,"path",183)(8,"path",148)(9,"path",184)(10,"path",185)(11,"path",186)(12,"path",187)(13,"path",188)(14,"path",189)(15,"path",190)(16,"path",191)(17,"path",192)(18,"path",158)(19,"path",193)(20,"path",194)(21,"path",179)(22,"path",160)(23,"path",161)(24,"path",195)(25,"path",163)(26,"path",164)(27,"path",163)(28,"path",165)(29,"path",166)(30,"path",167)(31,"path",168)(32,"path",196)(33,"path",170)(34,"path",197)(35,"path",172)(36,"path",173)(37,"path",174)(38,"path",175)(39,"path",176)(40,"path",198),t.j41(41,"defs")(42,"linearGradient",199),t.nrm(43,"stop",91)(44,"stop",92)(45,"stop",93),t.k0s()()(),r.joV(),t.j41(46,"div",47)(47,"mat-card-title"),t.EFF(48,"Rebalance successful!"),t.k0s()(),t.j41(49,"div",48)(50,"mat-card-subtitle",49),t.EFF(51," Your channel is successfully rebalanced and is able to continue to route payments. "),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,ot,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}let zs=(()=>{var i;class s{constructor(n){this.commonService=n,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.bkB,this.screenSize="",this.screenSizeEnum=c.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(n){2===n.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===n.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU($.h))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-rebalance-infographics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["infoStepBlock1",""],["infoStepBlock2",""],["infoStepBlock3",""],["infoStepBlock4",""],["infoStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between starts",3,"swipe"],["fxFlex","30","viewBox","0 0 246 154","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M187.8 136C203.043 136 215.4 133.493 215.4 130.4C215.4 127.307 203.043 124.8 187.8 124.8C172.557 124.8 160.2 127.307 160.2 130.4C160.2 133.493 172.557 136 187.8 136Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M128.6 148.8C143.843 148.8 156.2 146.293 156.2 143.2C156.2 140.107 143.843 137.6 128.6 137.6C113.357 137.6 101 140.107 101 143.2C101 146.293 113.357 148.8 128.6 148.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["opacity","0.1","d","M100.2 117.421C100.2 117.421 99.0633 117.494 99.4998 117.722C99.9363 117.95 100.2 117.421 100.2 117.421Z","fill","black"],["opacity","0.1","d","M101 118.4C100.986 118.471 98.1102 119.483 98.673 119.933C99.2358 120.384 101 118.4 101 118.4Z","fill","black"],["opacity","0.1","d","M97.8 128.98C98.0492 128.966 100.509 128.241 101 128.89L97.8 128.98Z","fill","black"],["opacity","0.1","d","M100.2 129.709C100.2 129.709 100.563 129.362 100.926 129.543C101.289 129.725 100.2 129.709 100.2 129.709Z","fill","black"],["opacity","0.1","d","M101.8 132C101.8 132 101.641 133.198 101 133.6L101.8 132Z","fill","black"],["d","M119.223 21.4239L123.102 22.0818L118.209 50.9111L114.33 50.2532L119.223 21.4239Z",1,"fill-color-primary-darker"],["d","M127.4 137.844L128.262 144L129 137.6L127.4 137.844Z",1,"fill-color-29"],["d","M100.2 134.349V138.226L101 141.6H101.571L102.258 137.976L102.6 133.6L100.2 134.349Z",1,"fill-color-28"],["d","M110.75 50.4L104.806 87.6521C104.806 87.6521 96.0162 127.358 99.3581 135.2H103.57L116.2 58.9791L110.75 50.4Z",1,"fill-color-29"],["d","M125.308 45.6L129.979 83.02C129.979 83.02 133.381 130.691 129.656 138.4H125.976L119.4 53.9698L125.308 45.6Z",1,"fill-color-29"],["d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z","fill","black"],["d","M112.922 39.2661C113.364 37.7699 114.731 36.7605 116.259 36.8012C118.804 36.8682 122.74 37.3423 124.787 39.4927C127.969 42.8316 122.638 54.0832 122.638 54.0832C122.638 54.0832 117.661 63.4872 113.092 51.5396C113.092 51.5327 111.203 45.1393 112.922 39.2661Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M131.383 131.52C131.69 131.628 131.968 131.791 132.2 132C131.813 131.613 130.708 131.42 130.166 131.24C129.495 131.019 128.764 130.793 128.2 130.4C129.29 130.705 130.354 131.079 131.383 131.52Z","fill","black"],["opacity","0.1","d","M94.2 24.8C96.1882 24.8 97.8 23.1882 97.8 21.2C97.8 19.2118 96.1882 17.6 94.2 17.6C92.2117 17.6 90.6 19.2118 90.6 21.2C90.6 23.1882 92.2117 24.8 94.2 24.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M107 12C110.314 12 113 9.31371 113 6C113 2.68629 110.314 0 107 0C103.686 0 101 2.68629 101 6C101 9.31371 103.686 12 107 12Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M99 40.8C102.314 40.8 105 38.1137 105 34.8C105 31.4863 102.314 28.8 99 28.8C95.6863 28.8 93 31.4863 93 34.8C93 38.1137 95.6863 40.8 99 40.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M223 67.2C224.988 67.2 226.6 65.5882 226.6 63.6C226.6 61.6118 224.988 60 223 60C221.012 60 219.4 61.6118 219.4 63.6C219.4 65.5882 221.012 67.2 223 67.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M210.2 54.4C213.514 54.4 216.2 51.7137 216.2 48.4C216.2 45.0863 213.514 42.4 210.2 42.4C206.886 42.4 204.2 45.0863 204.2 48.4C204.2 51.7137 206.886 54.4 210.2 54.4Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M218.2 83.2C221.514 83.2 224.2 80.5137 224.2 77.2C224.2 73.8863 221.514 71.2 218.2 71.2C214.886 71.2 212.2 73.8863 212.2 77.2C212.2 80.5137 214.886 83.2 218.2 83.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M23.8 72C24.9046 72 25.8 71.1046 25.8 70C25.8 68.8954 24.9046 68 23.8 68C22.6954 68 21.8 68.8954 21.8 70C21.8 71.1046 22.6954 72 23.8 72Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M33 65.6C34.7673 65.6 36.2 64.1673 36.2 62.4C36.2 60.6327 34.7673 59.2 33 59.2C31.2327 59.2 29.8 60.6327 29.8 62.4C29.8 64.1673 31.2327 65.6 33 65.6Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M17 71.2C18.7673 71.2 20.2 69.7673 20.2 68C20.2 66.2327 18.7673 64.8 17 64.8C15.2327 64.8 13.8 66.2327 13.8 68C13.8 69.7673 15.2327 71.2 17 71.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M171.8 60C172.905 60 173.8 59.1046 173.8 58C173.8 56.8954 172.905 56 171.8 56C170.695 56 169.8 56.8954 169.8 58C169.8 59.1046 170.695 60 171.8 60Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M180.2 53.6C181.967 53.6 183.4 52.1673 183.4 50.4C183.4 48.6327 181.967 47.2 180.2 47.2C178.433 47.2 177 48.6327 177 50.4C177 52.1673 178.433 53.6 180.2 53.6Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M164.2 59.2C165.967 59.2 167.4 57.7673 167.4 56C167.4 54.2327 165.967 52.8 164.2 52.8C162.433 52.8 161 54.2327 161 56C161 57.7673 162.433 59.2 164.2 59.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M51 40.8C55.6392 40.8 59.4 37.0392 59.4 32.4C59.4 27.7608 55.6392 24 51 24C46.3608 24 42.6 27.7608 42.6 32.4C42.6 37.0392 46.3608 40.8 51 40.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M98.6 64.8C101.251 64.8 103.4 62.651 103.4 60C103.4 57.349 101.251 55.2 98.6 55.2C95.949 55.2 93.8 57.349 93.8 60C93.8 62.651 95.949 64.8 98.6 64.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M145.8 96.8C148.451 96.8 150.6 94.651 150.6 92C150.6 89.349 148.451 87.2 145.8 87.2C143.149 87.2 141 89.349 141 92C141 94.651 143.149 96.8 145.8 96.8Z",1,"fill-color-primary-darker"],["fill-rule","evenodd","clip-rule","evenodd","d","M59.8 136.8C75.0431 136.8 87.4 134.293 87.4 131.2C87.4 128.107 75.0431 125.6 59.8 125.6C44.557 125.6 32.2 128.107 32.2 131.2C32.2 134.293 44.557 136.8 59.8 136.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M217.4 152.8C232.643 152.8 245 150.293 245 147.2C245 144.107 232.643 141.6 217.4 141.6C202.157 141.6 189.8 144.107 189.8 147.2C189.8 150.293 202.157 152.8 217.4 152.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M28.6 152.8C43.8431 152.8 56.2 150.293 56.2 147.2C56.2 144.107 43.8431 141.6 28.6 141.6C13.3569 141.6 1 144.107 1 147.2C1 150.293 13.3569 152.8 28.6 152.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["d","M122.425 44.7H119.162L120.372 41.0719C120.484 40.6219 120.147 40.2 119.725 40.2H115.675C115.337 40.2 115.028 40.4531 115 40.7906L114.1 47.5406C114.044 47.9625 114.353 48.3 114.775 48.3H118.094L116.8 53.7844C116.716 54.2063 117.025 54.6 117.447 54.6C117.7 54.6 117.925 54.4875 118.037 54.2625L122.987 45.7125C123.269 45.2906 122.931 44.7 122.425 44.7Z","fill","white"],["d","M23.5204 123.2C23.0498 123.2 22.6141 123.375 22.2807 123.669C21.9491 123.96 21.7189 124.369 21.6565 124.837L20.2164 135.712C20.1423 136.278 20.3237 136.811 20.6643 137.203C21.0076 137.598 21.5119 137.85 22.0804 137.85H26.4117L24.5687 145.68C24.4289 146.274 24.5836 146.851 24.9204 147.28C25.2626 147.716 25.7931 148 26.3959 148C26.7289 148 27.0539 147.911 27.3385 147.746C27.616 147.585 27.8553 147.351 28.0254 147.055L35.9453 133.28C36.3068 132.658 36.2644 131.95 35.9495 131.398C35.7868 131.113 35.551 130.871 35.2622 130.703C34.9905 130.544 34.6717 130.45 34.3203 130.45H30.1609L31.7043 124.49C31.5476 124.305 31.4051 124.176 31.278 124.085C31.004 123.89 30.5348 123.687 29.7238 123.539C28.6009 123.335 26.6977 123.2 23.5204 123.2Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M185.5 109.6C185.075 109.6 184.682 109.757 184.381 110.02C184.08 110.284 183.872 110.652 183.815 111.073L182.615 120.074C182.548 120.585 182.712 121.066 183.021 121.419C183.331 121.774 183.787 122 184.3 122H187.74L186.244 128.309C186.117 128.846 186.258 129.366 186.564 129.753C186.873 130.145 187.352 130.4 187.897 130.4C188.505 130.4 189.084 130.074 189.391 129.512L195.745 115.6H191.208L192.467 110.771C192.308 110.576 192.165 110.445 192.04 110.357C191.803 110.189 191.397 110.01 190.693 109.883C189.753 109.713 188.16 109.6 185.5 109.6Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M215.1 128C214.675 128 214.282 128.157 213.981 128.42C213.68 128.683 213.472 129.052 213.415 129.473L212.215 138.474C212.148 138.985 212.312 139.466 212.621 139.819C212.931 140.174 213.387 140.4 213.9 140.4H217.34L215.844 146.709C215.717 147.246 215.858 147.766 216.164 148.153C216.473 148.545 216.952 148.8 217.497 148.8C218.105 148.8 218.684 148.474 218.991 147.912L225.345 134H220.808L222.067 129.171C221.908 128.976 221.765 128.845 221.64 128.757C221.403 128.589 220.997 128.41 220.293 128.283C219.353 128.113 217.76 128 215.1 128Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M55.9003 111.2C55.4754 111.2 55.0822 111.357 54.7812 111.62C54.4802 111.883 54.2716 112.252 54.215 112.673L53.0149 121.674C52.9475 122.185 53.112 122.666 53.4214 123.019C53.7314 123.374 54.1868 123.6 54.7004 123.6H58.1398L56.6444 129.909C56.5174 130.446 56.6576 130.966 56.9637 131.353C57.2728 131.745 57.7518 132 58.2966 132C58.9052 132 59.4843 131.674 59.7907 131.112L66.1452 117.2H61.6081L62.8674 112.371C62.7082 112.176 62.5651 112.045 62.4402 111.957C62.2025 111.789 61.7969 111.61 61.0927 111.483C60.1529 111.313 58.5599 111.2 55.9003 111.2Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 210 124","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M90.1491 0H0V100.616H90.1491V0Z",1,"fill-color-10"],["d","M88.6575 67.1775H1.48926V98.4248H88.6575V67.1775Z","fill","white"],["d","M59.844 74.5891H8.64404V90.6009H59.844V74.5891Z",1,"fill-color-primary-darker"],["d","M76.3172 90.6426C80.8187 90.6426 84.4679 86.9934 84.4679 82.4919C84.4679 77.9904 80.8187 74.3412 76.3172 74.3412C71.8157 74.3412 68.1665 77.9904 68.1665 82.4919C68.1665 86.9934 71.8157 90.6426 76.3172 90.6426Z",1,"fill-color-primary-darker"],["d","M88.6575 34.7129H1.48926V65.9602H88.6575V34.7129Z","fill","white"],["d","M59.844 42.1244H8.64404V58.1363H59.844V42.1244Z",1,"fill-color-primary-darker"],["d","M76.3172 58.1801C80.8187 58.1801 84.4679 54.5309 84.4679 50.0294C84.4679 45.5279 80.8187 41.8787 76.3172 41.8787C71.8157 41.8787 68.1665 45.5279 68.1665 50.0294C68.1665 54.5309 71.8157 58.1801 76.3172 58.1801Z",1,"fill-color-primary-darker"],["d","M88.6575 2.24823H1.48926V33.4955H88.6575V2.24823Z","fill","white"],["d","M59.844 9.66199H8.64404V25.6739H59.844V9.66199Z",1,"fill-color-primary-darker"],["d","M32.644 74.5891H8.64404V90.6009H32.644V74.5891Z",1,"fill-color-17"],["d","M45.444 42.1244H8.64404V58.1363H45.444V42.1244Z",1,"fill-color-17"],["d","M59.644 9.66199H8.64404V25.662H59.644V9.66199Z",1,"fill-color-17"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint0_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint2_linear)"],["d","M76.1507 25.3014C80.6522 25.3014 84.3014 21.6522 84.3014 17.1507C84.3014 12.6492 80.6522 9 76.1507 9C71.6492 9 68 12.6492 68 17.1507C68 21.6522 71.6492 25.3014 76.1507 25.3014Z",1,"fill-color-17"],["d","M193.435 36.7899H142.709V35.7444H119.709V36.7899H68.7744C67.8644 36.7899 66.9917 37.1514 66.3482 37.7949C65.7048 38.4384 65.3433 39.3111 65.3433 40.2211V109.679C65.3433 110.589 65.7048 111.462 66.3482 112.106C66.9917 112.749 67.8644 113.111 68.7744 113.111H193.435C195.33 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.345 36.7899 193.435 36.7899Z",1,"fill-color-19"],["d","M192.266 42.8538H69.9434V111.856H192.266V42.8538Z",1,"fill-color-22"],["opacity","0.1","d","M157.284 111.856H69.9434V42.8538L157.284 111.856Z","fill","black"],["d","M89.0832 106.693C95.577 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.577 83.1766 89.0832 83.1766C82.5894 83.1766 77.3252 88.4408 77.3252 94.9346C77.3252 101.428 82.5894 106.693 89.0832 106.693Z",1,"fill-color-25"],["d","M91.7005 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7005 103.772ZM91.7005 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7005 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7005 74.7115Z",1,"fill-color-28"],["d","M170.967 80.0673H159.541V82.4548H170.967V80.0673Z",1,"fill-color-19"],["d","M184.781 61.4783H145.727V62.5015H184.781V61.4783Z",1,"fill-color-19"],["d","M184.781 64.7186H145.727V65.7418H184.781V64.7186Z",1,"fill-color-19"],["d","M184.781 67.9589H145.727V68.9821H184.781V67.9589Z",1,"fill-color-19"],["d","M184.781 71.1991H145.727V72.2224H184.781V71.1991Z",1,"fill-color-19"],["d","M184.781 74.4394H145.727V75.4626H184.781V74.4394Z",1,"fill-color-19"],["d","M184.781 44.2537H180.006V49.0288H184.781V44.2537Z",1,"fill-color-25"],["d","M186.998 51.2458H181.2V45.4474H186.998V51.2458ZM181.452 50.9937H186.746V45.6996H181.452V50.9937Z",1,"fill-color-19"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.115C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.261 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.042 109.589 156.01 109.621C155.978 109.653 155.96 109.696 155.96 109.741V110.601H153.402V109.741C153.402 109.696 153.384 109.653 153.352 109.621C153.32 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.089 109.589 114.057 109.621C114.025 109.653 114.007 109.696 114.007 109.741V110.601H111.449V109.741C111.449 109.696 111.431 109.653 111.399 109.621C111.367 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.148 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.4642V109.741C97.4642 109.696 97.4462 109.653 97.4142 109.621C97.3822 109.589 97.3388 109.571 97.2936 109.571H93.2006C93.1554 109.571 93.112 109.589 93.08 109.621C93.048 109.653 93.0301 109.696 93.0301 109.741V110.601H90.472V109.741C90.472 109.696 90.454 109.653 90.422 109.621C90.39 109.589 90.3467 109.571 90.3014 109.571H86.2085C86.1632 109.571 86.1198 109.589 86.0879 109.621C86.0559 109.653 86.0379 109.696 86.0379 109.741V110.601H83.4798V109.741C83.4798 109.696 83.4618 109.653 83.4299 109.621C83.3979 109.589 83.3545 109.571 83.3093 109.571H79.2163C79.171 109.571 79.1277 109.589 79.0957 109.621C79.0637 109.653 79.0457 109.696 79.0457 109.741V110.601H76.4876V109.741C76.4876 109.696 76.4697 109.653 76.4377 109.621C76.4057 109.589 76.3623 109.571 76.3171 109.571H72.2241C72.1789 109.571 72.1355 109.589 72.1035 109.621C72.0715 109.653 72.0536 109.696 72.0536 109.741V110.601H64.2087C61.9482 110.601 60.1157 112.434 60.1157 114.694V116.545C60.1157 118.806 61.9482 120.638 64.2087 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z",1,"fill-color-19"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8456 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9773 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1718L88.0762 87.0663C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5347 96.5996L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z",1,"fill-color-21"],["d","M42 75H9V91H42V75Z",1,"fill-color-17"],["d","M42 42H9V58H42V42Z",1,"fill-color-17"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint3_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint4_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint5_linear)"],["d","M205.185 113.031H193.247V112.171C193.247 112.125 193.229 112.082 193.197 112.05C193.165 112.018 193.121 112 193.076 112H188.983C188.938 112 188.895 112.018 188.863 112.05C188.831 112.082 188.813 112.125 188.813 112.171V113.031H186.254V112.171C186.254 112.125 186.237 112.082 186.205 112.05C186.173 112.018 186.129 112 186.084 112H181.991C181.946 112 181.902 112.018 181.87 112.05C181.838 112.082 181.82 112.125 181.82 112.171V113.031H179.262V112.171C179.262 112.125 179.244 112.082 179.212 112.05C179.18 112.018 179.137 112 179.092 112H174.999C174.954 112 174.91 112.018 174.878 112.05C174.846 112.082 174.828 112.125 174.828 112.171V113.031H172.27V112.171C172.27 112.125 172.252 112.082 172.22 112.05C172.188 112.018 172.145 112 172.1 112H168.007C167.961 112 167.918 112.018 167.886 112.05C167.854 112.082 167.836 112.125 167.836 112.171V113.031H165.278V112.171C165.278 112.125 165.26 112.082 165.228 112.05C165.196 112.018 165.153 112 165.107 112H161.014C160.969 112 160.926 112.018 160.894 112.05C160.862 112.082 160.844 112.125 160.844 112.171V113.031H158.286V112.171C158.286 112.125 158.268 112.082 158.236 112.05C158.204 112.018 158.16 112 158.115 112H154.022C153.977 112 153.934 112.018 153.902 112.05C153.87 112.082 153.852 112.125 153.852 112.171V113.031H151.294V112.171C151.294 112.125 151.276 112.082 151.244 112.05C151.212 112.018 151.168 112 151.123 112H119.061C119.016 112 118.973 112.018 118.941 112.05C118.909 112.082 118.891 112.125 118.891 112.171V113.031H116.333V112.171C116.333 112.125 116.315 112.082 116.283 112.05C116.251 112.018 116.207 112 116.162 112H112.069C112.024 112 111.981 112.018 111.949 112.05C111.917 112.082 111.899 112.125 111.899 112.171V113.031H109.341V112.171C109.341 112.125 109.323 112.082 109.291 112.05C109.259 112.018 109.215 112 109.17 112H105.077C105.032 112 104.988 112.018 104.956 112.05C104.924 112.082 104.907 112.125 104.907 112.171V113.031H102.348V112.171C102.348 112.125 102.33 112.082 102.298 112.05C102.266 112.018 102.223 112 102.178 112H98.0849C98.0397 112 97.9963 112.018 97.9643 112.05C97.9323 112.082 97.9144 112.125 97.9144 112.171V113.031H95.3563V112.171C95.3563 112.125 95.3383 112.082 95.3063 112.05C95.2743 112.018 95.2309 112 95.1857 112H91.0927C91.0475 112 91.0041 112.018 90.9721 112.05C90.9402 112.082 90.9222 112.125 90.9222 112.171V113.031H88.3641V112.171C88.3641 112.125 88.3461 112.082 88.3141 112.05C88.2822 112.018 88.2388 112 88.1935 112H84.1006C84.0553 112 84.0119 112.018 83.98 112.05C83.948 112.082 83.93 112.125 83.93 112.171V113.031H81.3719V112.171C81.3719 112.125 81.3539 112.082 81.322 112.05C81.29 112.018 81.2466 112 81.2014 112H77.1084C77.0632 112 77.0198 112.018 76.9878 112.05C76.9558 112.082 76.9378 112.125 76.9379 112.171V113.031H69.093C66.8325 113.031 65 114.863 65 117.124V118.974C65 121.235 66.8325 123.067 69.093 123.067H205.185C207.445 123.067 209.277 121.235 209.277 118.974V117.124C209.277 114.863 207.445 113.031 205.185 113.031Z",1,"fill-color-19"],["d","M78.375 20.625C78.375 19.5938 77.5312 18.75 76.5 18.75C75.4453 18.75 74.625 19.5938 74.625 20.625C74.625 21.6797 75.4453 22.5 76.5 22.5C77.5312 22.5 78.375 21.6797 78.375 20.625ZM74.8359 11.1094L75.1406 17.4844C75.1641 17.7656 75.4219 18 75.7031 18H77.2734C77.5547 18 77.8125 17.7656 77.8359 17.4844L78.1406 11.1094C78.1641 10.7812 77.9062 10.5 77.5781 10.5H75.3984C75.0703 10.5 74.8125 10.7812 74.8359 11.1094Z","fill","white"],["id","paint0_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["stop-color","#808080","stop-opacity","0.25"],["offset","0.54","stop-color","#808080","stop-opacity","0.12"],["offset","1","stop-color","#808080","stop-opacity","0.1"],["id","paint1_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["id","paint3_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["id","paint4_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint5_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 370 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M327.488 99.9755C350.953 99.9755 369.975 80.9531 369.975 57.4877C369.975 34.0224 350.953 15 327.488 15C304.022 15 285 34.0224 285 57.4877C285 80.9531 304.022 99.9755 327.488 99.9755Z",1,"fill-color-25"],["d","M115.068 85.6077H349.8V86.5722H113L115.068 85.6077Z",1,"fill-color-19"],["d","M236.776 84.376H226.024V91.544H236.776V84.376Z",1,"fill-color-primary-lighter"],["d","M218.856 87.96H233.192V79H218.856V87.96ZM232.569 87.5704H219.479V79.3896H232.569V87.5704Z",1,"fill-color-19"],["d","M265 57.3624H357.392V120.307H265V57.3624Z",1,"fill-color-22"],["d","M362.545 50H271.626C271.016 50.0009 270.521 50.495 270.521 51.1048V112.577C270.521 112.87 270.638 113.151 270.845 113.358C271.052 113.565 271.333 113.681 271.626 113.681H362.545C362.838 113.681 363.119 113.565 363.326 113.358C363.533 113.151 363.65 112.87 363.65 112.577V51.1048C363.65 50.495 363.155 50.0009 362.545 50ZM362.913 112.577C362.913 112.674 362.875 112.768 362.806 112.837C362.736 112.907 362.643 112.945 362.545 112.945H271.626C271.528 112.945 271.434 112.907 271.365 112.837C271.296 112.768 271.258 112.674 271.258 112.577V51.1048C271.258 50.9015 271.423 50.7365 271.626 50.7365H362.545C362.748 50.7365 362.913 50.9015 362.913 51.1048V112.577Z",1,"fill-color-19"],["d","M316.364 93.4359H275.844C275.547 93.4359 275.307 93.6766 275.307 93.9735V97.6835C275.307 97.9804 275.547 98.2211 275.844 98.2211H316.364C316.661 98.2211 316.901 97.9804 316.901 97.6835V93.9735C316.901 93.6766 316.661 93.4359 316.364 93.4359Z",1,"fill-color-19"],["d","M354.814 89.3873H341.565C341.272 89.3873 340.991 89.5036 340.784 89.7108C340.577 89.918 340.46 90.199 340.46 90.492V100.798C340.46 101.091 340.577 101.372 340.784 101.579C340.991 101.786 341.272 101.903 341.565 101.903H354.814C355.107 101.903 355.388 101.786 355.595 101.579C355.803 101.372 355.919 101.091 355.919 100.798V90.492C355.919 90.199 355.803 89.918 355.595 89.7108C355.388 89.5036 355.107 89.3873 354.814 89.3873ZM355.182 100.798C355.182 101.001 355.017 101.166 354.814 101.166H341.565C341.362 101.166 341.197 101.001 341.197 100.798V90.492C341.196 90.3943 341.235 90.3004 341.304 90.2313C341.373 90.1622 341.467 90.1235 341.565 90.1238H354.814C354.912 90.1235 355.006 90.1622 355.075 90.2313C355.144 90.3004 355.183 90.3943 355.182 90.492V100.798Z",1,"fill-color-19"],["d","M352.168 91.7653H344.211C343.914 91.7653 343.673 92.006 343.673 92.3029V93.0965C343.673 93.3934 343.914 93.6341 344.211 93.6341H352.168C352.465 93.6341 352.706 93.3934 352.706 93.0965V92.3029C352.706 92.006 352.465 91.7653 352.168 91.7653Z",1,"fill-color-19"],["d","M352.168 94.71H344.211C343.914 94.71 343.673 94.9507 343.673 95.2476V96.0412C343.673 96.3381 343.914 96.5788 344.211 96.5788H352.168C352.465 96.5788 352.706 96.3381 352.706 96.0412V95.2476C352.706 94.9507 352.465 94.71 352.168 94.71Z",1,"fill-color-19"],["d","M352.168 97.6548H344.211C343.914 97.6548 343.673 97.8955 343.673 98.1924V98.986C343.673 99.2829 343.914 99.5236 344.211 99.5236H352.168C352.465 99.5236 352.706 99.2829 352.706 98.986V98.1924C352.706 97.8955 352.465 97.6548 352.168 97.6548Z",1,"fill-color-19"],["d","M295.014 54.4177H276.949C276.652 54.4177 276.411 54.6584 276.411 54.9553V61.9782C276.411 62.2752 276.652 62.5158 276.949 62.5158H295.014C295.311 62.5158 295.552 62.2752 295.552 61.9782V54.9553C295.552 54.6584 295.311 54.4177 295.014 54.4177Z",1,"fill-color-19"],["d","M312.293 105.198C319.455 105.198 325.261 99.3917 325.261 92.2295C325.261 85.0672 319.455 79.2611 312.293 79.2611C305.131 79.2611 299.325 85.0672 299.325 92.2295C299.325 99.3917 305.131 105.198 312.293 105.198Z",1,"fill-color-25"],["d","M315.18 101.976C308.655 101.976 302.773 98.0462 300.276 92.0183C297.78 85.9904 299.16 79.052 303.773 74.4384C308.387 69.8249 315.325 68.4448 321.353 70.9416C327.381 73.4384 331.311 79.3205 331.311 85.8451C331.301 94.75 324.085 101.966 315.18 101.976ZM315.18 69.9245C306.387 69.9245 299.259 77.0524 299.259 85.8451C299.259 94.6377 306.387 101.766 315.18 101.766C323.973 101.766 331.1 94.6377 331.1 85.8451C331.09 77.0565 323.968 69.9345 315.18 69.9245Z",1,"fill-color-19"],["d","M309.677 100.883C309.936 100.948 310.216 100.873 310.41 100.673L318.163 92.664C318.571 92.2458 318.371 91.5387 317.802 91.3966L314.249 90.5107L316.557 86.8411C316.797 86.4038 316.558 85.8537 316.074 85.7332L311.64 84.6277C311.271 84.5355 310.888 84.7313 310.748 85.0854L307.92 92.2295C307.751 92.6583 307.998 93.1384 308.444 93.2497L312.099 94.161L309.186 99.7958C308.959 100.236 309.206 100.766 309.677 100.883Z",1,"fill-color-21"],["d","M88.6576 67.1775H1.48938V98.4248H88.6576V67.1775Z","fill","white"],["d","M59.8442 74.589H8.64417V90.6009H59.8442V74.589Z",1,"fill-color-primary-darker"],["d","M76.3175 90.6426C80.819 90.6426 84.4682 86.9934 84.4682 82.4919C84.4682 77.9904 80.819 74.3412 76.3175 74.3412C71.8159 74.3412 68.1667 77.9904 68.1667 82.4919C68.1667 86.9934 71.8159 90.6426 76.3175 90.6426Z",1,"fill-color-primary-darker"],["d","M88.6576 34.7129H1.48938V65.9602H88.6576V34.7129Z","fill","white"],["d","M59.8442 42.1244H8.64417V58.1363H59.8442V42.1244Z",1,"fill-color-primary-darker"],["d","M76.3175 58.1801C80.819 58.1801 84.4682 54.531 84.4682 50.0294C84.4682 45.5279 80.819 41.8787 76.3175 41.8787C71.8159 41.8787 68.1667 45.5279 68.1667 50.0294C68.1667 54.531 71.8159 58.1801 76.3175 58.1801Z",1,"fill-color-primary-darker"],["d","M88.6576 2.24824H1.48938V33.4955H88.6576V2.24824Z","fill","white"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-primary-darker"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-17"],["d","M76.7868 26.5736C81.6396 26.5736 85.5736 22.6396 85.5736 17.7868C85.5736 12.934 81.6396 9 76.7868 9C71.934 9 68 12.934 68 17.7868C68 22.6396 71.934 26.5736 76.7868 26.5736Z","fill","url(#paint0_linear)"],["d","M76.3174 59.0334C81.1702 59.0334 85.1042 55.0994 85.1042 50.2466C85.1042 45.3938 81.1702 41.4598 76.3174 41.4598C71.4646 41.4598 67.5306 45.3938 67.5306 50.2466C67.5306 55.0994 71.4646 59.0334 76.3174 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3174 91.4958C81.1702 91.4958 85.1042 87.5618 85.1042 82.709C85.1042 77.8562 81.1702 73.9222 76.3174 73.9222C71.4646 73.9222 67.5306 77.8562 67.5306 82.709C67.5306 87.5618 71.4646 91.4958 76.3174 91.4958Z","fill","url(#paint2_linear)"],["d","M193.434 36.7899H142.709V35.7444H119.708V36.7899H68.7742C67.8642 36.7899 66.9915 37.1514 66.348 37.7949C65.7045 38.4384 65.343 39.3111 65.343 40.2211V109.679C65.343 110.589 65.7045 111.462 66.348 112.106C66.9915 112.749 67.8642 113.111 68.7742 113.111H193.434C195.329 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.344 36.7899 193.434 36.7899Z",1,"fill-color-19"],["d","M192.265 42.8538H69.9432V111.856H192.265V42.8538Z",1,"fill-color-22"],["opacity","0.1","d","M157.283 111.856H69.9432V42.8538L157.283 111.856Z","fill","black"],["d","M89.0829 106.693C95.5767 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.5767 83.1766 89.0829 83.1766C82.5892 83.1766 77.325 88.4408 77.325 94.9346C77.325 101.428 82.5892 106.693 89.0829 106.693Z",1,"fill-color-25"],["d","M91.7004 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7004 103.772ZM91.7004 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7004 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7004 74.7115Z",1,"fill-color-28"],["d","M170.967 80.0672H159.541V82.4548H170.967V80.0672Z",1,"fill-color-19"],["d","M184.781 67.9588H145.727V68.9821H184.781V67.9588Z",1,"fill-color-19"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.114C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.26 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.041 109.589 156.009 109.621C155.977 109.653 155.96 109.696 155.96 109.741V110.601H153.401V109.741C153.401 109.696 153.383 109.653 153.351 109.621C153.319 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.088 109.589 114.056 109.621C114.024 109.653 114.006 109.696 114.006 109.741V110.601H111.448V109.741C111.448 109.696 111.43 109.653 111.398 109.621C111.366 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.147 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.464V109.741C97.464 109.696 97.4461 109.653 97.4141 109.621C97.3821 109.589 97.3387 109.571 97.2935 109.571H93.2005C93.1553 109.571 93.1119 109.589 93.0799 109.621C93.0479 109.653 93.03 109.696 93.03 109.741V110.601H90.4719V109.741C90.4719 109.696 90.4539 109.653 90.4219 109.621C90.3899 109.589 90.3465 109.571 90.3013 109.571H86.2083C86.1631 109.571 86.1197 109.589 86.0877 109.621C86.0558 109.653 86.0378 109.696 86.0378 109.741V110.601H83.4797V109.741C83.4797 109.696 83.4617 109.653 83.4297 109.621C83.3978 109.589 83.3544 109.571 83.3091 109.571H79.2162C79.1709 109.571 79.1276 109.589 79.0956 109.621C79.0636 109.653 79.0456 109.696 79.0456 109.741V110.601H76.4875V109.741C76.4875 109.696 76.4695 109.653 76.4376 109.621C76.4056 109.589 76.3622 109.571 76.317 109.571H72.224C72.1788 109.571 72.1354 109.589 72.1034 109.621C72.0714 109.653 72.0535 109.696 72.0535 109.741V110.601H64.2086C61.9481 110.601 60.1156 112.434 60.1156 114.694V116.545C60.1156 118.806 61.9481 120.638 64.2086 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z",1,"fill-color-19"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8457 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9774 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1719L88.0762 87.0664C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5348 96.5997L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z",1,"fill-color-21"],["d","M78.125 21.625C78.125 20.5938 77.2812 19.75 76.25 19.75C75.1953 19.75 74.375 20.5938 74.375 21.625C74.375 22.6797 75.1953 23.5 76.25 23.5C77.2812 23.5 78.125 22.6797 78.125 21.625ZM74.5859 12.1094L74.8906 18.4844C74.9141 18.7656 75.1719 19 75.4531 19H77.0234C77.3047 19 77.5625 18.7656 77.5859 18.4844L77.8906 12.1094C77.9141 11.7812 77.6562 11.5 77.3281 11.5H75.1484C74.8203 11.5 74.5625 11.7812 74.5859 12.1094Z","fill","white"],["id","paint0_linear","x1","76.7868","y1","26.5736","x2","76.7868","y2","9","gradientUnits","userSpaceOnUse"],["id","paint1_linear","x1","76.3174","y1","59.0334","x2","76.3174","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3174","y1","91.4958","x2","76.3174","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 153 200","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary-lighter"],["d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M122.399 37H32.25V137.616H122.399V37Z",1,"fill-color-10"],["d","M120.908 104.178H33.7394V135.425H120.908V104.178Z","fill","white"],["d","M92.0943 111.589H40.8943V127.601H92.0943V111.589Z",1,"fill-color-primary-darker"],["d","M108.567 127.643C113.069 127.643 116.718 123.993 116.718 119.492C116.718 114.99 113.069 111.341 108.567 111.341C104.066 111.341 100.417 114.99 100.417 119.492C100.417 123.993 104.066 127.643 108.567 127.643Z",1,"fill-color-primary-darker"],["d","M120.908 71.7129H33.7394V102.96H120.908V71.7129Z","fill","white"],["d","M92.0943 79.1244H40.8943V95.1363H92.0943V79.1244Z",1,"fill-color-primary-darker"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.531 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.531 104.066 95.1801 108.567 95.1801Z",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7394V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6738H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M74.5 112H40.5V128H74.5V112Z",1,"fill-color-17"],["d","M74.5 79H40.5V95H74.5V79Z",1,"fill-color-17"],["d","M91.8943 46.662H40.8943V62.662H91.8943V46.662Z",1,"fill-color-17"],["d","M108.567 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.567 45.778C103.715 45.778 99.7806 49.712 99.7806 54.5648C99.7806 59.4176 103.715 63.3516 108.567 63.3516Z","fill","url(#paint0_linear)"],["d","M108.567 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.567 78.4598C103.715 78.4598 99.7806 82.3938 99.7806 87.2466C99.7806 92.0994 103.715 96.0334 108.567 96.0334Z",1,"fill-color-17"],["d","M108.567 128.496C113.42 128.496 117.354 124.562 117.354 119.709C117.354 114.856 113.42 110.922 108.567 110.922C103.715 110.922 99.7806 114.856 99.7806 119.709C99.7806 124.562 103.715 128.496 108.567 128.496Z",1,"fill-color-17"],["d","M108.401 62.3014C112.902 62.3014 116.551 58.6522 116.551 54.1507C116.551 49.6492 112.902 46 108.401 46C103.899 46 100.25 49.6492 100.25 54.1507C100.25 58.6522 103.899 62.3014 108.401 62.3014Z",1,"fill-color-17"],["d","M110.625 57.625C110.625 56.5938 109.781 55.75 108.75 55.75C107.695 55.75 106.875 56.5938 106.875 57.625C106.875 58.6797 107.695 59.5 108.75 59.5C109.781 59.5 110.625 58.6797 110.625 57.625ZM107.086 48.1094L107.391 54.4844C107.414 54.7656 107.672 55 107.953 55H109.523C109.805 55 110.062 54.7656 110.086 54.4844L110.391 48.1094C110.414 47.7812 110.156 47.5 109.828 47.5H107.648C107.32 47.5 107.062 47.7812 107.086 48.1094Z","fill","white"],["d","M141.711 111C141.008 111 140.656 111.859 141.164 112.367L146.164 117.367C146.477 117.68 146.984 117.68 147.297 117.367L152.297 112.367C152.805 111.859 152.453 111 151.75 111H141.711Z",1,"fill-color-17"],["d","M84.25 185.461C84.25 184.758 83.3906 184.406 82.8828 184.914L77.8828 189.914C77.5703 190.227 77.5703 190.734 77.8828 191.047L82.8828 196.047C83.3906 196.555 84.25 196.203 84.25 195.5V185.461Z",1,"fill-color-primary-darker"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z",1,"fill-color-primary-darker"],["d","M133.75 174C142.31 174 149.25 167.06 149.25 158.5C149.25 149.94 142.31 143 133.75 143C125.19 143 118.25 149.94 118.25 158.5C118.25 167.06 125.19 174 133.75 174Z",1,"fill-color-25"],["d","M129.872 169.64C130.214 169.726 130.584 169.628 130.84 169.363L141.093 158.771C141.633 158.218 141.369 157.283 140.616 157.095L135.917 155.924L138.969 151.071C139.286 150.493 138.97 149.765 138.331 149.606L132.468 148.144C131.979 148.022 131.473 148.281 131.287 148.749L127.548 158.197C127.324 158.764 127.65 159.399 128.241 159.546L133.074 160.751L129.222 168.203C128.921 168.785 129.249 169.485 129.872 169.64Z",1,"fill-color-21"],["d","M19.75 174C28.3104 174 35.25 167.06 35.25 158.5C35.25 149.94 28.3104 143 19.75 143C11.1896 143 4.25 149.94 4.25 158.5C4.25 167.06 11.1896 174 19.75 174Z",1,"fill-color-25"],["d","M19.3208 167.769C23.2973 167.769 26.5208 164.545 26.5208 160.569C26.5208 156.592 23.2973 153.369 19.3208 153.369C15.3444 153.369 12.1208 156.592 12.1208 160.569C12.1208 164.545 15.3444 167.769 19.3208 167.769Z",1,"fill-color-22"],["d","M13.7656 153.188L12.4676 152.716C12.4676 152.716 15.1815 150.002 18.9572 150.238L17.8953 149.177C17.8953 149.177 20.4911 148.233 22.851 150.71C24.0915 152.013 25.5268 153.544 26.4216 155.269H27.8116L27.2314 156.429L29.2619 157.589L27.1778 157.381C27.3752 158.383 27.3073 159.418 26.9807 160.386L26.5087 161.684C26.5087 161.684 24.6208 157.908 24.6208 157.436V158.616C24.6208 158.616 23.3229 157.554 23.3229 156.846L22.615 157.672L22.261 156.374L17.8953 157.672L18.6032 156.61L15.8894 156.964L16.9514 155.666C16.9514 155.666 13.8836 157.2 13.7656 158.498C13.6476 159.796 12.1137 161.448 12.1137 161.448L11.4058 160.268C11.4058 160.268 10.3438 154.958 13.7656 153.188Z",1,"fill-color-21"],["d","M76.75 31C68.1896 31 61.25 24.0604 61.25 15.5C61.25 6.93959 68.1896 0 76.75 0C85.3104 0 92.25 6.93959 92.25 15.5C92.25 24.0604 85.3104 31 76.75 31Z",1,"fill-color-25"],["d","M77.1792 24.7687C73.2027 24.7687 69.9792 21.5452 69.9792 17.5687C69.9792 13.5923 73.2027 10.3687 77.1792 10.3687C81.1556 10.3687 84.3792 13.5923 84.3792 17.5687C84.3792 21.5452 81.1556 24.7687 77.1792 24.7687Z",1,"fill-color-22"],["d","M82.7344 10.1883L84.0324 9.71628C84.0324 9.71628 81.3185 7.00246 77.5428 7.23845L78.6047 6.17651C78.6047 6.17651 76.0089 5.23258 73.649 7.71041C72.4085 9.01295 70.9732 10.544 70.0784 12.2687H68.6884L69.2686 13.429L67.2381 14.5893L69.3222 14.3808C69.1248 15.3825 69.1927 16.4184 69.5193 17.3858L69.9913 18.6837C69.9913 18.6837 71.8792 14.9079 71.8792 14.4359V15.6159C71.8792 15.6159 73.1771 14.5539 73.1771 13.846L73.885 14.6719L74.239 13.374L78.6047 14.6719L77.8968 13.61L80.6106 13.964L79.5486 12.6661C79.5486 12.6661 82.6164 14.2 82.7344 15.4979C82.8524 16.7958 84.3863 18.4477 84.3863 18.4477L85.0942 17.2678C85.0942 17.2678 86.1562 11.9581 82.7344 10.1883Z",1,"fill-color-21"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.786 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.542 141.365 153.936Z",1,"fill-color-21"],["d","M140.968 160.376C141.521 160.376 141.968 159.928 141.968 159.376C141.968 158.823 141.521 158.376 140.968 158.376C140.416 158.376 139.968 158.823 139.968 159.376C139.968 159.928 140.416 160.376 140.968 160.376Z",1,"fill-color-22"],["d","M129.168 160.376C129.721 160.376 130.168 159.928 130.168 159.376C130.168 158.823 129.721 158.376 129.168 158.376C128.616 158.376 128.168 158.823 128.168 159.376C128.168 159.928 128.616 160.376 129.168 160.376Z",1,"fill-color-22"],["d","M135.068 165.276C138.272 165.276 140.868 162.679 140.868 159.476C140.868 156.272 138.272 153.676 135.068 153.676C131.865 153.676 129.268 156.272 129.268 159.476C129.268 162.679 131.865 165.276 135.068 165.276Z",1,"fill-color-22"],["d","M140.384 153.575L136.049 151.304L130.062 152.233L128.824 157.704L131.907 157.585L132.768 155.576V157.552L134.191 157.498L135.017 154.298L135.533 157.704L140.591 157.601L140.384 153.575Z",1,"fill-color-21"],["d","M79.4007 199.301C83.9022 199.301 87.5514 195.652 87.5514 191.151C87.5514 186.649 83.9022 183 79.4007 183C74.8992 183 71.25 186.649 71.25 191.151C71.25 195.652 74.8992 199.301 79.4007 199.301Z",1,"fill-color-17"],["d","M82.9375 189.25H80.2188L81.2266 186.227C81.3203 185.852 81.0391 185.5 80.6875 185.5H77.3125C77.0313 185.5 76.7735 185.711 76.75 185.992L76 191.617C75.9531 191.969 76.211 192.25 76.5625 192.25H79.3281L78.25 196.82C78.1797 197.172 78.4375 197.5 78.7891 197.5C79 197.5 79.1875 197.406 79.2813 197.219L83.4063 190.094C83.6406 189.742 83.3594 189.25 82.9375 189.25Z","fill","white"],["d","M106.555 91.8125C106.789 92.0469 107.188 92.0469 107.422 91.8125L114.312 84.9219C114.547 84.6875 114.547 84.2891 114.312 84.0547L113.469 83.2109C113.234 82.9766 112.859 82.9766 112.625 83.2109L107 88.8359L104.352 86.2109C104.117 85.9766 103.742 85.9766 103.508 86.2109L102.664 87.0547C102.43 87.2891 102.43 87.6875 102.664 87.9219L106.555 91.8125Z","fill","white"],["d","M106.555 124.812C106.789 125.047 107.188 125.047 107.422 124.812L114.312 117.922C114.547 117.688 114.547 117.289 114.312 117.055L113.469 116.211C113.234 115.977 112.859 115.977 112.625 116.211L107 121.836L104.352 119.211C104.117 118.977 103.742 118.977 103.508 119.211L102.664 120.055C102.43 120.289 102.43 120.688 102.664 120.922L106.555 124.812Z","fill","white"],["id","paint0_linear","x1","108.567","y1","63.3516","x2","108.567","y2","45.778","gradientUnits","userSpaceOnUse"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M120.908 104.177H33.7393V135.425H120.908V104.177Z","fill","white"],["d","M120.908 71.7129H33.7393V102.96H120.908V71.7129Z","fill","white"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.5309 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.5309 104.066 95.1801 108.567 95.1801Z",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7393V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6739H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M76 112H41V128H76V112Z",1,"fill-color-17"],["d","M70 79H41V95H70V79Z",1,"fill-color-17"],["d","M70 47H41V63H70V47Z",1,"fill-color-17"],["d","M108.568 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.568 45.778C103.715 45.778 99.7808 49.712 99.7808 54.5648C99.7808 59.4176 103.715 63.3516 108.568 63.3516Z","fill","url(#paint0_linear)"],["d","M108.568 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.568 78.4598C103.715 78.4598 99.7808 82.3938 99.7808 87.2466C99.7808 92.0994 103.715 96.0334 108.568 96.0334Z",1,"fill-color-17"],["d","M108.568 129.496C113.42 129.496 117.354 125.562 117.354 120.709C117.354 115.856 113.42 111.922 108.568 111.922C103.715 111.922 99.7808 115.856 99.7808 120.709C99.7808 125.562 103.715 129.496 108.568 129.496Z",1,"fill-color-17"],["d","M106.805 91.8125C107.039 92.0469 107.438 92.0469 107.672 91.8125L114.562 84.9219C114.797 84.6875 114.797 84.2891 114.562 84.0547L113.719 83.2109C113.484 82.9766 113.109 82.9766 112.875 83.2109L107.25 88.8359L104.602 86.2109C104.367 85.9766 103.992 85.9766 103.758 86.2109L102.914 87.0547C102.68 87.2891 102.68 87.6875 102.914 87.9219L106.805 91.8125Z","fill","white"],["d","M106.805 58.8125C107.039 59.0469 107.438 59.0469 107.672 58.8125L114.562 51.9219C114.797 51.6875 114.797 51.2891 114.562 51.0547L113.719 50.2109C113.484 49.9766 113.109 49.9766 112.875 50.2109L107.25 55.8359L104.602 53.2109C104.367 52.9766 103.992 52.9766 103.758 53.2109L102.914 54.0547C102.68 54.2891 102.68 54.6875 102.914 54.9219L106.805 58.8125Z","fill","white"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z",1,"fill-color-17"],["d","M77.1792 24.7688C73.2027 24.7688 69.9792 21.5452 69.9792 17.5688C69.9792 13.5923 73.2027 10.3688 77.1792 10.3688C81.1556 10.3688 84.3792 13.5923 84.3792 17.5688C84.3792 21.5452 81.1556 24.7688 77.1792 24.7688Z",1,"fill-color-22"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.785 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.543 141.365 153.936Z",1,"fill-color-21"],["d","M82.9374 189.25H80.2186L81.2265 186.227C81.3202 185.852 81.039 185.5 80.6874 185.5H77.3124C77.0311 185.5 76.7733 185.711 76.7499 185.992L75.9999 191.617C75.953 191.969 76.2108 192.25 76.5624 192.25H79.328L78.2499 196.82C78.1796 197.172 78.4374 197.5 78.789 197.5C78.9999 197.5 79.1874 197.406 79.2811 197.219L83.4061 190.094C83.6405 189.742 83.3593 189.25 82.9374 189.25Z","fill","white"],["id","paint0_linear","x1","108.568","y1","63.3516","x2","108.568","y2","45.778","gradientUnits","userSpaceOnUse"]],template:function(a,o){if(1&a&&t.DNE(0,Vs,1,0,"ng-container",5)(1,Os,47,5,"ng-template",null,0,t.C5r)(3,Hs,96,5,"ng-template",null,1,t.C5r)(5,Ys,68,5,"ng-template",null,2,t.C5r)(7,Xs,53,5,"ng-template",null,3,t.C5r)(9,Us,52,5,"ng-template",null,4,t.C5r),2&a){const l=t.sdS(2),m=t.sdS(4),u=t.sdS(6),T=t.sdS(8),F=t.sdS(10);t.Y8G("ngTemplateOutlet",1===o.stepNumber?l:2===o.stepNumber?m:3===o.stepNumber?u:4===o.stepNumber?T:F)}},dependencies:[d.YU,d.T3,x.Lc,x.dh,_.DJ,_.sA,_.UI,S.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:10%;min-height:10%;max-width:50%;margin:auto}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:50%;margin:auto}"],data:{animation:[$s.k]}}))}return i(),s})();const Js=["stepper"],qs=()=>[1,2,3,4,5],Qs=(i,s)=>({"dot-primary":i,"dot-primary-lighter":s});function Zs(i,s){if(1&i&&t.EFF(0),2&i){const e=t.XpG(2);t.JRh(e.inputFormLabel)}}function Ws(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function Ks(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount must be a positive number."),t.k0s())}function tl(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.SpI("Amount must be less than or equal to ",null==e.selChannel?null:e.selChannel.toLocal,".")}}function el(i,s){if(1&i&&(t.j41(0,"mat-option",50),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.Y8G("value",e),t.R7$(),t.Lme("",e.alias," - ",e.shortChannelId)}}function nl(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Receive from Peer is required."),t.k0s())}function il(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Receive from Peer not found in the list."),t.k0s())}function al(i,s){1&i&&t.EFF(0,"Status")}function ol(i,s){1&i&&t.nrm(0,"mat-progress-bar",51)}function sl(i,s){if(1&i&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(""!==e.rebalanceStatus.invoice?"check":"close")}}function ll(i,s){1&i&&t.nrm(0,"mat-progress-bar",51)}function rl(i,s){if(1&i&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.rebalanceStatus.paymentRoute?"check":"close")}}function cl(i,s){if(1&i&&(t.j41(0,"span",42),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.SpI(" ",e," ")}}function ml(i,s){if(1&i&&(t.j41(0,"div",7),t.DNE(1,cl,2,1,"span",53),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.rebalanceStatus.paymentRoute.split(","))}}function pl(i,s){1&i&&t.nrm(0,"mat-progress-bar",51)}function ul(i,s){if(1&i&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(!e.rebalanceStatus.paymentStatus||null!=e.rebalanceStatus.paymentStatus&&e.rebalanceStatus.paymentStatus.error?"close":"check")}}function dl(i,s){1&i&&t.nrm(0,"div",7)}function hl(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",54),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onRestart())}),t.EFF(1,"Start Again"),t.k0s()}}function fl(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",7)(1,"mat-card-header",8)(2,"div",9)(3,"div",10)(4,"span",11),t.EFF(5,"Channel Rebalance"),t.k0s()(),t.j41(6,"div",12)(7,"button",13),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.showInfo())}),t.EFF(8,"?"),t.k0s(),t.j41(9,"button",14),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onClose())}),t.EFF(10,"X"),t.k0s()()()(),t.j41(11,"mat-card-content",15)(12,"div",7)(13,"div",16)(14,"div",17),t.nrm(15,"fa-icon",18),t.j41(16,"span"),t.EFF(17,"Circular Rebalance is a payment you make to *yourself* to affect a relative change in the balances of two channels. This is accomplished by sending payment out from the selected channel and receiving it back on the channel with the selected peer. Please note, you will be paying routing fee to balance the channels in this manner."),t.k0s()()(),t.j41(18,"div",19)(19,"p",20)(20,"strong"),t.EFF(21,"Channel Peer:\xa0"),t.k0s(),t.EFF(22),t.nI1(23,"titlecase"),t.k0s(),t.j41(24,"p",20)(25,"strong"),t.EFF(26,"Channel ID:\xa0"),t.k0s(),t.EFF(27),t.k0s()(),t.j41(28,"mat-vertical-stepper",21,3)(30,"mat-step",22)(31,"form",23),t.DNE(32,Zs,1,1,"ng-template",24),t.j41(33,"div",25)(34,"mat-form-field",26)(35,"mat-label"),t.EFF(36,"Amount"),t.k0s(),t.nrm(37,"input",27),t.j41(38,"mat-hint"),t.EFF(39),t.k0s(),t.j41(40,"span",28),t.EFF(41,"Sats"),t.k0s(),t.DNE(42,Ws,2,0,"mat-error",29)(43,Ks,2,0,"mat-error",29)(44,tl,2,1,"mat-error",29),t.k0s(),t.j41(45,"mat-form-field",30)(46,"mat-label"),t.EFF(47,"Receive from Peer"),t.k0s(),t.j41(48,"input",31),t.bIt("change",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onSelectedPeerChanged())}),t.k0s(),t.j41(49,"mat-autocomplete",32,4),t.bIt("optionSelected",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onSelectedPeerChanged())}),t.DNE(51,el,2,3,"mat-option",33),t.nI1(52,"async"),t.k0s(),t.DNE(53,nl,2,0,"mat-error",29)(54,il,2,0,"mat-error",29),t.k0s()(),t.j41(55,"div",34)(56,"button",35),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onRebalance())}),t.EFF(57,"Rebalance"),t.k0s()()()(),t.j41(58,"mat-step",36)(59,"form",23),t.DNE(60,al,1,0,"ng-template",24),t.j41(61,"div",37),t.DNE(62,ol,1,0,"mat-progress-bar",38),t.j41(63,"mat-expansion-panel",39)(64,"mat-expansion-panel-header")(65,"mat-panel-title")(66,"span",40),t.EFF(67),t.DNE(68,sl,2,1,"mat-icon",41),t.k0s()()(),t.j41(69,"div",7)(70,"span",42),t.EFF(71),t.k0s()()(),t.DNE(72,ll,1,0,"mat-progress-bar",38),t.j41(73,"mat-expansion-panel",39)(74,"mat-expansion-panel-header")(75,"mat-panel-title")(76,"span",40),t.EFF(77),t.DNE(78,rl,2,1,"mat-icon",41),t.k0s()()(),t.DNE(79,ml,2,1,"div",5),t.k0s(),t.DNE(80,pl,1,0,"mat-progress-bar",38),t.j41(81,"mat-expansion-panel",43)(82,"mat-expansion-panel-header")(83,"mat-panel-title")(84,"span",40),t.EFF(85),t.DNE(86,ul,2,1,"mat-icon",41),t.k0s()()(),t.DNE(87,dl,1,0,"div",44),t.k0s()(),t.j41(88,"h4",45),t.EFF(89),t.k0s(),t.j41(90,"div",46),t.DNE(91,hl,2,0,"button",47),t.k0s()()()(),t.j41(92,"div",48)(93,"button",49),t.EFF(94,"Close"),t.k0s()()()()()}if(2&i){const e=t.sdS(50),n=t.XpG(),a=t.sdS(2);t.Y8G("@opacityAnimation",void 0),t.R7$(15),t.Y8G("icon",n.faInfoCircle),t.R7$(7),t.JRh(t.bMT(23,38,n.selChannel.alias)),t.R7$(5),t.JRh(n.selChannel.shortChannelId),t.R7$(),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",n.inputFormGroup)("editable",n.flgEditable),t.R7$(),t.Y8G("formGroup",n.inputFormGroup),t.R7$(6),t.Y8G("step",100),t.R7$(2),t.Lme("(Local Bal: ",null==n.selChannel?null:n.selChannel.toLocal,", Remaining: ",(null==n.selChannel?null:n.selChannel.toLocal)-(n.inputFormGroup.controls.rebalanceAmount.value?n.inputFormGroup.controls.rebalanceAmount.value:0),")"),t.R7$(3),t.Y8G("ngIf",null==n.inputFormGroup.controls.rebalanceAmount.errors?null:n.inputFormGroup.controls.rebalanceAmount.errors.required),t.R7$(),t.Y8G("ngIf",null==n.inputFormGroup.controls.rebalanceAmount.errors?null:n.inputFormGroup.controls.rebalanceAmount.errors.min),t.R7$(),t.Y8G("ngIf",null==n.inputFormGroup.controls.rebalanceAmount.errors?null:n.inputFormGroup.controls.rebalanceAmount.errors.max),t.R7$(4),t.Y8G("matAutocomplete",e),t.R7$(),t.Y8G("displayWith",n.displayFn),t.R7$(2),t.Y8G("ngForOf",t.bMT(52,40,n.filteredActiveChannels)),t.R7$(2),t.Y8G("ngIf",null==n.inputFormGroup.controls.selRebalancePeer.errors?null:n.inputFormGroup.controls.selRebalancePeer.errors.required),t.R7$(),t.Y8G("ngIf",null==n.inputFormGroup.controls.selRebalancePeer.errors?null:n.inputFormGroup.controls.selRebalancePeer.errors.notfound),t.R7$(4),t.Y8G("stepControl",n.statusFormGroup),t.R7$(),t.Y8G("formGroup",n.statusFormGroup),t.R7$(3),t.Y8G("ngIf",""===n.rebalanceStatus.invoice),t.R7$(5),t.JRh(""===n.rebalanceStatus.invoice?"Searching invoice...":n.rebalanceStatus.flgReusingInvoice?"Invoice re-used":"Invoice generated"),t.R7$(),t.Y8G("ngIf",""!==n.rebalanceStatus.invoice),t.R7$(3),t.JRh(n.rebalanceStatus.invoice),t.R7$(),t.Y8G("ngIf",!(null!=n.rebalanceStatus.paymentStatus&&n.rebalanceStatus.paymentStatus.error||n.rebalanceStatus.paymentRoute||"pending"===(null==n.rebalanceStatus.paymentStatus?null:n.rebalanceStatus.paymentStatus.type))),t.R7$(5),t.JRh(null!=n.rebalanceStatus.paymentStatus&&n.rebalanceStatus.paymentStatus.error?"Route failed":n.rebalanceStatus.paymentRoute?"Route used":"Searching route..."),t.R7$(),t.Y8G("ngIf",n.rebalanceStatus.paymentStatus),t.R7$(),t.Y8G("ngIf",""!==n.rebalanceStatus.paymentRoute),t.R7$(),t.Y8G("ngIf",!n.rebalanceStatus.paymentStatus),t.R7$(),t.Y8G("expanded",!!n.rebalanceStatus.paymentStatus),t.R7$(4),t.JRh(n.rebalanceStatus.paymentStatus&&"pending"!==(null==n.rebalanceStatus.paymentStatus?null:n.rebalanceStatus.paymentStatus.type)?null!=n.rebalanceStatus.paymentStatus&&n.rebalanceStatus.paymentStatus.error?"Payment failed":"sent"===(null==n.rebalanceStatus.paymentStatus?null:n.rebalanceStatus.paymentStatus.type)?"Payment successful":"":"Payment status pending..."),t.R7$(),t.Y8G("ngIf",n.rebalanceStatus.paymentStatus&&"pending"!==(null==n.rebalanceStatus.paymentStatus?null:n.rebalanceStatus.paymentStatus.type)),t.R7$(),t.Y8G("ngIf",!n.rebalanceStatus.paymentStatus)("ngIfElse",a),t.R7$(2),t.JRh(n.rebalanceStatus.paymentStatus?n.rebalanceStatus.paymentStatus&&null!=n.rebalanceStatus.paymentStatus&&n.rebalanceStatus.paymentStatus.error?"Rebalance Failed.":"Rebalance Successful.":""),t.R7$(2),t.Y8G("ngIf",n.rebalanceStatus.paymentStatus&&n.rebalanceStatus.paymentStatus.error),t.R7$(2),t.Y8G("mat-dialog-close",!1)}}function _l(i,s){1&i&&t.eu8(0)}function gl(i,s){if(1&i&&t.DNE(0,_l,1,0,"ng-container",55),2&i){const e=t.XpG(),n=t.sdS(4),a=t.sdS(6);t.Y8G("ngTemplateOutlet",e.rebalanceStatus.paymentStatus.error?n:a)}}function Cl(i,s){if(1&i&&(t.j41(0,"div",7)(1,"span",42),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.SpI("Error: ",e.rebalanceStatus.paymentStatus.error)}}function yl(i,s){if(1&i&&(t.j41(0,"div",7)(1,"div",56)(2,"div",57)(3,"h4",58),t.EFF(4,"Total Fees (Sats)"),t.k0s(),t.j41(5,"span",42),t.EFF(6),t.k0s()(),t.j41(7,"div",57)(8,"h4",58),t.EFF(9,"Number of Hops"),t.k0s(),t.j41(10,"span",42),t.EFF(11),t.k0s()()(),t.nrm(12,"mat-divider",59),t.j41(13,"div",56)(14,"div",60)(15,"h4",58),t.EFF(16,"Payment Hash"),t.k0s(),t.j41(17,"span",42),t.EFF(18),t.k0s()()(),t.nrm(19,"mat-divider",59),t.j41(20,"div",56)(21,"div",60)(22,"h4",58),t.EFF(23,"Payment ID"),t.k0s(),t.j41(24,"span",42),t.EFF(25),t.k0s()()(),t.nrm(26,"mat-divider",59),t.j41(27,"div",56)(28,"div",60)(29,"h4",58),t.EFF(30,"Parent ID"),t.k0s(),t.j41(31,"span",42),t.EFF(32),t.k0s()()()()),2&i){let e;const n=t.XpG();t.R7$(6),t.JRh(n.rebalanceStatus.paymentStatus.feesPaid?n.rebalanceStatus.paymentStatus.feesPaid/1e3:0),t.R7$(5),t.JRh(n.rebalanceStatus.paymentRoute&&""!==n.rebalanceStatus.paymentRoute?null==(e=n.rebalanceStatus.paymentRoute.split(","))?null:e.length:0),t.R7$(7),t.JRh(n.rebalanceStatus.paymentHash),t.R7$(7),t.JRh(n.rebalanceStatus.paymentDetails.paymentId),t.R7$(7),t.JRh(n.rebalanceStatus.paymentDetails.parentId)}}function bl(i,s){if(1&i){const e=t.RV6();t.j41(0,"span",76),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onStepChanged(a))}),t.nrm(1,"p",77),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngClass",t.l_i(1,Qs,n.stepNumber===e,n.stepNumber!==e))}}function Fl(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",78),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onStepChanged(4))}),t.EFF(1,"Back"),t.k0s()}}function El(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",79),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return a.flgShowInfo=!1,r.Njj(a.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function xl(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",80),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return a.flgShowInfo=!1,r.Njj(a.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function Ll(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",81),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onStepChanged(a.stepNumber-1))}),t.EFF(1,"Back"),t.k0s()}}function vl(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",82),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onStepChanged(a.stepNumber+1))}),t.EFF(1,"Next"),t.k0s()}}function Sl(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",61)(1,"div",62)(2,"mat-card-header",63)(3,"div",64),t.nrm(4,"span",11),t.k0s(),t.j41(5,"div",65)(6,"button",14),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return a.flgShowInfo=!1,r.Njj(a.stepNumber=1)}),t.EFF(7,"X"),t.k0s()()(),t.j41(8,"mat-card-content",66)(9,"rtl-ecl-channel-rebalance-infographics",67),t.mxI("stepNumberChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.stepNumber,a)||(o.stepNumber=a),r.Njj(a)}),t.k0s()(),t.j41(10,"div",68),t.DNE(11,bl,2,4,"span",69),t.k0s(),t.j41(12,"div",70),t.DNE(13,Fl,2,0,"button",71)(14,El,2,0,"button",72)(15,xl,2,0,"button",73)(16,Ll,2,0,"button",74)(17,vl,2,0,"button",75),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@opacityAnimation",void 0),t.R7$(9),t.Y8G("animationDirection",e.animationDirection),t.R50("stepNumber",e.stepNumber),t.R7$(2),t.Y8G("ngForOf",t.lJ4(9,qs)),t.R7$(2),t.Y8G("ngIf",5===e.stepNumber),t.R7$(),t.Y8G("ngIf",5===e.stepNumber),t.R7$(),t.Y8G("ngIf",e.stepNumber<5),t.R7$(),t.Y8G("ngIf",e.stepNumber>1&&e.stepNumber<5),t.R7$(),t.Y8G("ngIf",e.stepNumber<5)}}let Rl=(()=>{var i;class s{constructor(n,a,o,l,m,u,T){this.dialogRef=n,this.data=a,this.logger=o,this.dataService=l,this.formBuilder=m,this.store=u,this.decimalPipe=T,this.faInfoCircle=E.iW_,this.information={},this.selChannel={},this.activeChannels=[],this.rebalanceStatus={flgReusingInvoice:!1,invoice:"",paymentRoute:"",paymentHash:"",paymentDetails:null,paymentStatus:null},this.inputFormLabel="Amount to rebalance",this.flgEditable=!0,this.flgShowInfo=!1,this.stepNumber=1,this.animationDirection="forward",this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){let n="",a="";this.information=this.data.message?.information||{},this.selChannel=this.data.message?.selChannel||{},this.activeChannels=this.data.message?.channels?.filter(o=>o.channelId!==this.selChannel.channelId&&o.toRemote&&o.toRemote>0)||[],this.activeChannels=this.activeChannels.sort((o,l)=>(n=o.alias?o.alias.toLowerCase():o.shortChannelId?o.shortChannelId.toLowerCase():"",a=l.alias?l.alias.toLowerCase():o.shortChannelId?o.shortChannelId.toLowerCase():"",na?1:0)),this.inputFormGroup=this.formBuilder.group({rebalanceAmount:["",[f.k0.required,f.k0.min(1),f.k0.max(this.selChannel.toLocal||0)]],selRebalancePeer:[null,f.k0.required]}),this.statusFormGroup=this.formBuilder.group({}),this.inputFormGroup.get("rebalanceAmount")?.valueChanges.pipe((0,g.Q)(this.unSubs[0]),(0,yt.Z)(0)).subscribe(o=>{this.inputFormGroup.controls.selRebalancePeer.setValue(""),this.inputFormGroup.controls.selRebalancePeer.setErrors(null),this.filteredActiveChannels=(0,Ft.of)(o?this.filterActiveChannels():this.activeChannels.slice())}),this.inputFormGroup.get("selRebalancePeer")?.valueChanges.pipe((0,g.Q)(this.unSubs[1]),(0,yt.Z)("")).subscribe(o=>{"string"==typeof o&&(this.filteredActiveChannels=(0,Ft.of)(this.filterActiveChannels()))})}stepSelectionChanged(n){switch(n.selectedIndex){case 0:default:this.inputFormLabel="Amount to rebalance";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.alias?this.inputFormGroup.controls.selRebalancePeer.value.alias:this.inputFormGroup.controls.selRebalancePeer.value.nodeId.substring(0,15)+"..."):"Amount to rebalance"}}onRebalance(){if(!this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.rebalanceAmount.value<=0||this.selChannel.toLocal&&this.inputFormGroup.controls.rebalanceAmount.value>+this.selChannel.toLocal||!this.inputFormGroup.controls.selRebalancePeer.value.nodeId)return this.inputFormGroup.controls.selRebalancePeer.value.nodeId||this.inputFormGroup.controls.selRebalancePeer.setErrors({required:!0}),!0;this.stepper.next(),this.flgEditable=!1,this.rebalanceStatus={flgReusingInvoice:!1,invoice:"",paymentRoute:"",paymentHash:"",paymentDetails:null,paymentStatus:null},this.dataService.circularRebalance(1e3*this.inputFormGroup.controls.rebalanceAmount.value,this.selChannel.shortChannelId,this.selChannel.nodeId,this.inputFormGroup.controls.selRebalancePeer.value.shortChannelId,this.inputFormGroup.controls.selRebalancePeer.value.nodeId,[this.information.nodeId||""]).pipe((0,g.Q)(this.unSubs[2])).subscribe({next:n=>{this.logger.info(n),this.rebalanceStatus=n,this.flgEditable=!0,this.store.dispatch((0,j.$Q)())},error:n=>{this.logger.error(n),this.rebalanceStatus=n,this.flgEditable=!0}})}filterActiveChannels(){return this.activeChannels?.filter(n=>n.toRemote&&n.toRemote>=this.inputFormGroup.controls.rebalanceAmount.value&&n.channelId!==this.selChannel.channelId&&(0===n.alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")||0===n.channelId?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")))}onSelectedPeerChanged(){if(this.inputFormGroup.controls.selRebalancePeer.value&&this.inputFormGroup.controls.selRebalancePeer.value.length>0&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value){const n=this.activeChannels?.filter(a=>a.alias?.length===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===a.alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""));n&&n.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(n[0]),this.inputFormGroup.controls.selRebalancePeer.setErrors(null)):this.inputFormGroup.controls.selRebalancePeer.setErrors({notfound:!0})}}displayFn(n){return n&&n.alias?n.alias:n&&n.shortChannelId?n.shortChannelId:""}showInfo(){this.flgShowInfo=!0}onStepChanged(n){this.animationDirection=n{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(V.Vh),t.rXU(A.gP),t.rXU(nt.u),t.rXU(f.ok),t.rXU(I.il),t.rXU(d.QX))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-rebalance"]],viewQuery:function(a,o){if(1&a&&t.GBs(Js,5),2&a){let l;t.mGM(l=t.lsd())&&(o.stepper=l.first)}},standalone:!1,decls:8,vars:2,consts:[["paymentStatusBlock",""],["paymentFailedBlock",""],["paymentSuccessfulBlock",""],["stepper",""],["auto","matAutocomplete"],["fxLayout","column",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column"],[1,"modal-info-header"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayoutAlign","start center"],[1,"page-title"],["fxLayoutAlign","end center"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch",1,"padding-gap-large"],["fxFlex","46"],[3,"linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","rebalanceAmount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start end"],["type","text","aria-label","Receive from Peer","matInput","","formControlName","selRebalancePeer","tabindex","2","required","",3,"change","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","8","type","submit",3,"click"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxFlex","100",1,"flat-expansion-panel","mb-2"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[1,"foreground-secondary-text"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayoutAlign","start",1,"font-bold-500","mt-1"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-1"],["mat-button","","color","primary","tabindex","11","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],[3,"value"],["fxFlex","100","color","primary","mode","indeterminate"],[1,"ml-1","icon-small"],["class","foreground-secondary-text",4,"ngFor","ngForOf"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[4,"ngTemplateOutlet"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],["fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["tabindex","21","fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(a,o){1&a&&t.DNE(0,fl,95,42,"div",5)(1,gl,1,1,"ng-template",null,0,t.C5r)(3,Cl,3,1,"ng-template",null,1,t.C5r)(5,yl,33,5,"ng-template",null,2,t.C5r)(7,Sl,18,10,"div",6),2&a&&(t.Y8G("ngIf",!o.flgShowInfo),t.R7$(7),t.Y8G("ngIf",o.flgShowInfo))},dependencies:[d.YU,d.Sq,d.bT,d.T3,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.j4,f.JD,D.aY,V.tx,N.$z,x.m2,x.MM,U.GK,U.Z2,U.WN,ut.An,Y.fg,y.rl,y.nJ,y.MV,y.TL,y.yw,tt.q,H.HM,_.DJ,_.sA,_.UI,S.PW,z.wT,at.V5,at.Ti,at.M6,ct.$3,ct.pN,et.N,zs,d.Jj,d.PV],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[Et.C]}}))}return i(),s})();const kl=()=>["all"],Il=i=>({"error-border":i}),Tl=()=>["no_peer"],xt=i=>({width:i}),wl=i=>({"display-none":i});function jl(i,s){if(1&i&&(t.j41(0,"mat-option",36),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function Dl(i,s){1&i&&t.nrm(0,"mat-progress-bar",37)}function Gl(i,s){1&i&&t.nrm(0,"th",38)}function Pl(i,s){if(1&i&&(t.j41(0,"span",42),t.nrm(1,"fa-icon",43),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function Al(i,s){if(1&i&&(t.j41(0,"span",44),t.nrm(1,"fa-icon",43),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function Nl(i,s){if(1&i&&(t.j41(0,"td",39),t.DNE(1,Pl,2,1,"span",40)(2,Al,2,1,"span",41),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf",!(null!=e&&e.announceChannel)),t.R7$(),t.Y8G("ngIf",null==e?null:e.announceChannel)}}function Bl(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Short Channel ID"),t.k0s())}function Ml(i,s){if(1&i&&(t.j41(0,"td",39),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.shortChannelId)}}function $l(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Channel ID"),t.k0s())}function Vl(i,s){if(1&i&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,xt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Ol(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Alias"),t.k0s())}function Hl(i,s){if(1&i&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,xt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function Yl(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Node ID"),t.k0s())}function Xl(i,s){if(1&i&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,xt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Ul(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Initiator"),t.k0s())}function zl(i,s){if(1&i&&(t.j41(0,"td",39),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function Jl(i,s){1&i&&(t.j41(0,"th",48),t.EFF(1,"Base Fee (mSats)"),t.k0s())}function ql(i,s){if(1&i&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.feeBaseMsat,"1.0-0")," ")}}function Ql(i,s){1&i&&(t.j41(0,"th",48),t.EFF(1,"Fee Rate (mili mSats)"),t.k0s())}function Zl(i,s){if(1&i&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.feeProportionalMillionths,"1.0-0")," ")}}function Wl(i,s){1&i&&(t.j41(0,"th",48),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function Kl(i,s){if(1&i&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function tr(i,s){1&i&&(t.j41(0,"th",48),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function er(i,s){if(1&i&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function nr(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Balance Score"),t.k0s())}function ir(i,s){if(1&i&&(t.j41(0,"td",39)(1,"div",50)(2,"mat-hint",51),t.EFF(3),t.nI1(4,"number"),t.k0s()(),t.nrm(5,"mat-progress-bar",52),t.k0s()),2&i){const e=s.$implicit;t.R7$(3),t.JRh(t.bMT(4,3,(null==e?null:e.balancedness)||0)),t.R7$(2),t.Y8G("value",t.mNQ(null!=e&&e.toLocal&&(null==e?null:e.toLocal)>0?+(null==e?null:e.toLocal)/(+(null==e?null:e.toLocal)+ +(null==e?null:e.toRemote))*100:0))}}function ar(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",53)(1,"div",54)(2,"mat-select",55),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",56),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onChannelUpdate("all"))}),t.EFF(5,"Update Fee Policy"),t.k0s(),t.j41(6,"mat-option",56),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onDownloadCSV())}),t.EFF(7,"Download CSV"),t.k0s()()()()}}function or(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",57)(1,"div",54)(2,"mat-select",58),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",56),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG();return r.Njj(l.onChannelClick(o,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",56),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onChannelUpdate(a))}),t.EFF(7,"Update Fee Policy"),t.k0s(),t.j41(8,"mat-option",56),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onCircularRebalance(a))}),t.EFF(9,"Circular Rebalance"),t.k0s(),t.j41(10,"mat-option",56),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onChannelClose(a,!1))}),t.EFF(11,"Close Channel"),t.k0s(),t.j41(12,"mat-option",56),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onChannelClose(a,!0))}),t.EFF(13,"Force Close"),t.k0s()()()()}}function sr(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No peers connected. Add a peer in order to open a channel."),t.k0s())}function lr(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No channel available."),t.k0s())}function rr(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting channels..."),t.k0s())}function cr(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function mr(i,s){if(1&i&&(t.j41(0,"td",59),t.DNE(1,sr,2,0,"p",60)(2,lr,2,0,"p",60)(3,rr,2,0,"p",60)(4,cr,2,1,"p",60),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",e.numPeers<1&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",e.numPeers>0&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function pr(i,s){if(1&i&&t.nrm(0,"tr",61),2&i){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,wl,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function ur(i,s){1&i&&t.nrm(0,"tr",62)}function dr(i,s){1&i&&t.nrm(0,"tr",63)}let hr=(()=>{var i;class s{constructor(n,a,o,l,m,u){this.logger=n,this.store=a,this.rtlEffects=o,this.commonService=l,this.router=m,this.camelCaseWithSpaces=u,this.faEye=E.pS3,this.faEyeSlash=E.k6j,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open_channels",recordsPerPage:c.md,sortBy:"alias",sortOrder:c.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new p.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=c.G,this.selFilter="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("announceChannel"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.activeChannels=n.activeChannels,this.activeChannels&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(),this.logger.info(n)}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.information=n}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.numPeers=n.peers&&n.peers.length?n.peers.length:0}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[4])).subscribe(n=>{this.totalBalance=n.onchainBalance.total||0})}ngAfterViewInit(){this.activeChannels&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable()}onCircularRebalance(n){this.store.dispatch((0,k.xO)({payload:{data:{message:{channels:this.activeChannels,selChannel:n,information:this.information},component:Rl}}}))}onChannelUpdate(n){"all"!==n&&n?.state&&"NORMAL"!==n?.state||(this.store.dispatch((0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:[],titleMessage:"string"==typeof n&&"all"===n?"Update fee policy for all channels":"Update fee policy for Channel: "+(n?.alias||n?.shortChannelId?n?.alias&&n?.shortChannelId?n?.alias+" ("+n?.shortChannelId+")":n?.alias?n?.alias:n?.shortChannelId:n?.channelId),flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:c.UN.NUMBER,inputValue:n&&typeof n?.feeBaseMsat<"u"?n?.feeBaseMsat:1e3,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:c.UN.NUMBER,inputValue:n&&typeof n?.feeProportionalMillionths<"u"?n?.feeProportionalMillionths:100,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(l=>{if(l){const m=l[0].inputValue,u=l[1].inputValue;let T=null;if(this.commonService.isVersionCompatible(this.information.version,"0.6.2")){let F="";"all"===n?(this.activeChannels.forEach(P=>{F=F+","+P.nodeId}),F=F.substring(1),T={baseFeeMsat:m,feeRate:u,nodeIds:F}):T={baseFeeMsat:m,feeRate:u,nodeId:n?.nodeId}}else{let F="";"all"===n?(this.activeChannels.forEach(P=>{F=F+","+P.channelId}),F=F.substring(1),T={baseFeeMsat:m,feeRate:u,channelIds:F}):T={baseFeeMsat:m,feeRate:u,channelId:n?.channelId}}this.store.dispatch((0,j.fy)({payload:T}))}}),this.applyFilter())}percentHintFunction(n){return(n/1e4).toString()+"%"}onChannelClose(n,a){this.store.dispatch((0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:a?"Force Close Channel":"Close Channel",titleMessage:a?"Force closing channel: "+(n.alias||n.shortChannelId?n.alias&&n.shortChannelId?n.alias+" ("+n.shortChannelId+")":n.alias?n.alias:n.shortChannelId:n.channelId):"Closing channel: "+(n.alias||n.shortChannelId?n.alias&&n.shortChannelId?n.alias+" ("+n.shortChannelId+")":n.alias?n.alias:n.shortChannelId:n.channelId),noBtnText:"Cancel",yesBtnText:a?"Force Close":"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[6])).subscribe(u=>{u&&this.store.dispatch((0,j.w0)({payload:{channelId:n.channelId,force:a}}))})}onChannelClick(n,a){this.store.dispatch((0,k.xO)({payload:{data:{channel:n,channelsType:"open",component:bt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):"announceChannel"===n?"Private":this.commonService.titleCase(n)}setFilterPredicate(){this.channels.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=JSON.stringify(n).toLowerCase();break;case"announceChannel":o=n?.announceChannel?"public":"private";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}loadChannelsTable(){this.channels=new p.I6([...this.activeChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(n,a)=>n[a]&&isNaN(n[a])?n[a].toLocaleLowerCase():n[a]?+n[a]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"ActiveChannels")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(lt.H),t.rXU($.h),t.rXU(L.Ix),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-open-table"]],viewQuery:function(a,o){if(1&a&&(t.GBs(v.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Channels")}])],decls:60,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","announceChannel"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","shortChannelId"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","channelId"],["matColumnDef","alias"],["matColumnDef","nodeId"],["matColumnDef","isInitiator"],["matColumnDef","feeBaseMsat"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","feeProportionalMillionths"],["matColumnDef","toLocal"],["matColumnDef","toRemote"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","5",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2),t.nrm(2,"div",3),t.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),t.EFF(6,"Filter By"),t.k0s(),t.j41(7,"mat-select",6),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilterBy,u)||(o.selFilterBy=u),r.Njj(u)}),t.bIt("selectionChange",function(){return r.eBV(l),o.selFilter="",r.Njj(o.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,jl,2,2,"mat-option",7),t.k0s()()(),t.j41(10,"mat-form-field",5)(11,"mat-label"),t.EFF(12,"Filter"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilter,u)||(o.selFilter=u),r.Njj(u)}),t.bIt("input",function(){return r.eBV(l),r.Njj(o.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(o.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,Dl,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,Gl,1,0,"th",13)(20,Nl,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,Bl,2,0,"th",16)(23,Ml,2,1,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,$l,2,0,"th",16)(26,Vl,4,4,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,Ol,2,0,"th",16)(29,Hl,4,4,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,Yl,2,0,"th",16)(32,Xl,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,Ul,2,0,"th",16)(35,zl,2,1,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,Jl,2,0,"th",22)(38,ql,4,4,"td",14),t.bVm(),t.qex(39,23),t.DNE(40,Ql,2,0,"th",22)(41,Zl,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,Wl,2,0,"th",22)(44,Kl,4,4,"td",14),t.bVm(),t.qex(45,25),t.DNE(46,tr,2,0,"th",22)(47,er,4,4,"td",14),t.bVm(),t.qex(48,26),t.DNE(49,nr,2,0,"th",16)(50,ir,6,5,"td",14),t.bVm(),t.qex(51,27),t.DNE(52,ar,8,0,"th",28)(53,or,14,0,"td",29),t.bVm(),t.qex(54,30),t.DNE(55,mr,5,4,"td",31),t.bVm(),t.DNE(56,pr,1,3,"tr",32)(57,ur,1,0,"tr",33)(58,dr,1,0,"tr",34),t.k0s()(),t.nrm(59,"mat-paginator",35),t.k0s()}2&a&&(t.R7$(7),t.R50("ngModel",o.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,kl).concat(o.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",o.selFilter),t.R7$(2),t.Y8G("ngIf",o.apiCallStatus.status===o.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",o.tableSetting.sortBy)("matSortDirection",o.tableSetting.sortOrder)("dataSource",o.channels)("ngClass",t.eq3(15,Il,""!==o.errorMessage)),t.R7$(40),t.Y8G("matFooterRowDef",t.lJ4(17,Tl)),t.R7$(),t.Y8G("matHeaderRowDef",o.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",o.displayedColumns),t.R7$(),t.Y8G("pageSize",o.pageSize)("pageSizeOptions",o.pageSizeOptions)("showFirstLastButtons",o.screenSize!==o.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.me,f.BC,f.vS,D.aY,Y.fg,y.rl,y.nJ,y.MV,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld,d.QX],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]}))}return i(),s})();const fr=()=>["all"],_r=i=>({"error-border":i}),gr=()=>["no_channel"],$t=i=>({width:i}),Cr=i=>({"display-none":i});function yr(i,s){if(1&i&&(t.j41(0,"mat-option",33),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function br(i,s){1&i&&t.nrm(0,"mat-progress-bar",34)}function Fr(i,s){1&i&&t.nrm(0,"th",35)}function Er(i,s){if(1&i&&(t.j41(0,"span",39),t.nrm(1,"fa-icon",40),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function xr(i,s){if(1&i&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",40),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function Lr(i,s){if(1&i&&(t.j41(0,"td",36),t.DNE(1,Er,2,1,"span",37)(2,xr,2,1,"span",38),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf",!(null!=e&&e.announceChannel)),t.R7$(),t.Y8G("ngIf",null==e?null:e.announceChannel)}}function vr(i,s){1&i&&(t.j41(0,"th",42),t.EFF(1,"State"),t.k0s())}function Sr(i,s){if(1&i&&(t.j41(0,"td",36),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.state))}}function Rr(i,s){1&i&&(t.j41(0,"th",42),t.EFF(1,"Channel ID"),t.k0s())}function kr(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$t,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Ir(i,s){1&i&&(t.j41(0,"th",42),t.EFF(1,"Alias"),t.k0s())}function Tr(i,s){if(1&i&&(t.j41(0,"td",36),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.alias)}}function wr(i,s){1&i&&(t.j41(0,"th",42),t.EFF(1,"Node ID"),t.k0s())}function jr(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$t,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Dr(i,s){1&i&&(t.j41(0,"th",42),t.EFF(1,"Initiator"),t.k0s())}function Gr(i,s){if(1&i&&(t.j41(0,"td",36),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function Pr(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function Ar(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",46),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function Nr(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function Br(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",46),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function Mr(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",50),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function $r(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",51)(1,"button",52),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG();return r.Njj(l.onChannelClick(o,a))}),t.EFF(2,"View Info"),t.k0s()()}}function Vr(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No pending channel available."),t.k0s())}function Or(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting pending channels..."),t.k0s())}function Hr(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function Yr(i,s){if(1&i&&(t.j41(0,"td",53),t.DNE(1,Vr,2,0,"p",54)(2,Or,2,0,"p",54)(3,Hr,2,1,"p",54),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function Xr(i,s){if(1&i&&t.nrm(0,"tr",55),2&i){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,Cr,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function Ur(i,s){1&i&&t.nrm(0,"tr",56)}function zr(i,s){1&i&&t.nrm(0,"tr",57)}let Jr=(()=>{var i;class s{constructor(n,a,o,l){this.logger=n,this.store=a,this.commonService=o,this.camelCaseWithSpaces=l,this.faEye=E.pS3,this.faEyeSlash=E.k6j,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"pending_channels",recordsPerPage:c.md,sortBy:"alias",sortOrder:c.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new p.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=c.G,this.selFilter="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("announceChannel"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.pendingChannels=n.pendingChannels,this.loadChannelsTable(),this.logger.info(n)}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.information=n}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.numPeers=n.peers&&n.peers.length?n.peers.length:0}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[4])).subscribe(n=>{this.totalBalance=n.onchainBalance.total||0})}ngAfterViewInit(){this.pendingChannels.length>0&&this.loadChannelsTable()}onChannelClick(n,a){this.store.dispatch((0,k.xO)({payload:{data:{channel:n,channelsType:"pending",component:bt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):"announceChannel"===n?"Private":this.commonService.titleCase(n)}setFilterPredicate(){this.channels.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=JSON.stringify(n).toLowerCase();break;case"announceChannel":o=n?.announceChannel?"public":"private";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}loadChannelsTable(){this.channels=new p.I6([...this.pendingChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(n,a)=>n[a]&&isNaN(n[a])?n[a].toLocaleLowerCase():n[a]?+n[a]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"PendingChannels")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU($.h),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-pending-table"]],viewQuery:function(a,o){if(1&a&&(t.GBs(v.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Channels")}])],decls:51,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","announceChannel"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","channelId"],["matColumnDef","alias"],["matColumnDef","nodeId"],["matColumnDef","isInitiator"],["matColumnDef","toLocal"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","toRemote"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2),t.nrm(2,"div",3),t.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),t.EFF(6,"Filter By"),t.k0s(),t.j41(7,"mat-select",6),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilterBy,u)||(o.selFilterBy=u),r.Njj(u)}),t.bIt("selectionChange",function(){return r.eBV(l),o.selFilter="",r.Njj(o.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,yr,2,2,"mat-option",7),t.k0s()()(),t.j41(10,"mat-form-field",5)(11,"mat-label"),t.EFF(12,"Filter"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilter,u)||(o.selFilter=u),r.Njj(u)}),t.bIt("input",function(){return r.eBV(l),r.Njj(o.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(o.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,br,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,Fr,1,0,"th",13)(20,Lr,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,vr,2,0,"th",16)(23,Sr,3,3,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,Rr,2,0,"th",16)(26,kr,4,4,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,Ir,2,0,"th",16)(29,Tr,2,1,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,wr,2,0,"th",16)(32,jr,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,Dr,2,0,"th",16)(35,Gr,2,1,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,Pr,2,0,"th",22)(38,Ar,4,4,"td",14),t.bVm(),t.qex(39,23),t.DNE(40,Nr,2,0,"th",22)(41,Br,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,Mr,6,0,"th",25)(44,$r,3,0,"td",26),t.bVm(),t.qex(45,27),t.DNE(46,Yr,4,3,"td",28),t.bVm(),t.DNE(47,Xr,1,3,"tr",29)(48,Ur,1,0,"tr",30)(49,zr,1,0,"tr",31),t.k0s()(),t.nrm(50,"mat-paginator",32),t.k0s()}2&a&&(t.R7$(7),t.R50("ngModel",o.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,fr).concat(o.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",o.selFilter),t.R7$(2),t.Y8G("ngIf",o.apiCallStatus.status===o.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",o.tableSetting.sortBy)("matSortDirection",o.tableSetting.sortOrder)("dataSource",o.channels)("ngClass",t.eq3(15,_r,""!==o.errorMessage)),t.R7$(31),t.Y8G("matFooterRowDef",t.lJ4(17,gr)),t.R7$(),t.Y8G("matHeaderRowDef",o.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",o.displayedColumns),t.R7$(),t.Y8G("pageSize",o.pageSize)("pageSizeOptions",o.pageSizeOptions)("showFirstLastButtons",o.screenSize!==o.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.me,f.BC,f.vS,D.aY,N.$z,Y.fg,y.rl,y.nJ,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld,d.QX,d.PV],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return i(),s})();const qr=()=>["all"],Qr=i=>({"error-border":i}),Zr=()=>["no_peer"],Vt=i=>({"mr-0":i}),Ot=i=>({width:i}),Wr=i=>({"display-none":i});function Kr(i,s){if(1&i&&(t.j41(0,"mat-option",35),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function t1(i,s){1&i&&t.nrm(0,"mat-progress-bar",36)}function e1(i,s){1&i&&t.nrm(0,"th",37)}function n1(i,s){if(1&i&&t.nrm(0,"span",41),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Vt,e.screenSize===e.screenSizeEnum.XS))}}function i1(i,s){if(1&i&&t.nrm(0,"span",42),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Vt,e.screenSize===e.screenSizeEnum.XS))}}function a1(i,s){if(1&i&&(t.j41(0,"td",38),t.DNE(1,n1,1,3,"span",39)(2,i1,1,3,"span",40),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf","CONNECTED"===e.state),t.R7$(),t.Y8G("ngIf","DISCONNECTED"===e.state)}}function o1(i,s){1&i&&(t.j41(0,"th",43),t.EFF(1,"Alias"),t.k0s())}function s1(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",44)(2,"span",45),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ot,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function l1(i,s){1&i&&(t.j41(0,"th",43),t.EFF(1,"Node ID"),t.k0s())}function r1(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",44)(2,"span",45),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ot,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function c1(i,s){1&i&&(t.j41(0,"th",43),t.EFF(1,"Network Address"),t.k0s())}function m1(i,s){if(1&i&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.SpI(" ",null==e?null:e.address," ")}}function p1(i,s){1&i&&(t.j41(0,"th",43),t.EFF(1,"Channels"),t.k0s())}function u1(i,s){if(1&i&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.channels)}}function d1(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",46)(1,"div",47)(2,"mat-select",48),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",49),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function h1(i,s){if(1&i){const e=t.RV6();t.j41(0,"mat-option",49),t.bIt("click",function(){r.eBV(e);const a=t.XpG().$implicit,o=t.XpG();return r.Njj(o.onPeerDetach(a))}),t.EFF(1,"Disconnect"),t.k0s()}}function f1(i,s){if(1&i){const e=t.RV6();t.j41(0,"mat-option",49),t.bIt("click",function(){r.eBV(e);const a=t.XpG().$implicit,o=t.XpG();return r.Njj(o.onConnectPeer(a))}),t.EFF(1,"Reconnect"),t.k0s()}}function _1(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",50)(1,"div",47)(2,"mat-select",48),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",49),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG();return r.Njj(l.onPeerClick(o,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",49),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onOpenChannel(a))}),t.EFF(7,"Open Channel"),t.k0s(),t.DNE(8,h1,2,0,"mat-option",51)(9,f1,2,0,"mat-option",51),t.k0s()()()}if(2&i){const e=s.$implicit;t.R7$(8),t.Y8G("ngIf","CONNECTED"===e.state),t.R7$(),t.Y8G("ngIf","DISCONNECTED"===e.state)}}function g1(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No connected peer."),t.k0s())}function C1(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting peers..."),t.k0s())}function y1(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function b1(i,s){if(1&i&&(t.j41(0,"td",52),t.DNE(1,g1,2,0,"p",53)(2,C1,2,0,"p",53)(3,y1,2,1,"p",53),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function F1(i,s){if(1&i&&t.nrm(0,"tr",54),2&i){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,Wr,(null==e.peers?null:e.peers.data)&&(null==e.peers||null==e.peers.data?null:e.peers.data.length)>0))}}function E1(i,s){1&i&&t.nrm(0,"tr",55)}function x1(i,s){1&i&&t.nrm(0,"tr",56)}let L1=(()=>{var i;class s{constructor(n,a,o,l,m,u){this.logger=n,this.store=a,this.rtlEffects=o,this.actions=l,this.commonService=m,this.camelCaseWithSpaces=u,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:c.md,sortBy:"alias",sortOrder:c.oi.DESCENDING},this.faUsers=E.gdJ,this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.peers=new p.I6([]),this.information={},this.availableBalance=0,this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.information=n}),this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("state"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=n.peers,this.loadPeersTable(this.peersData),this.logger.info(n)}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.availableBalance=n.onchainBalance.total||0}),this.actions.pipe((0,g.Q)(this.unSubs[4]),(0,X.p)(n=>n.type===c.Uu.SET_PEERS_ECL)).subscribe(n=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(n,a){const o=[[{key:"nodeId",value:n.nodeId,title:"Public Key",width:100}],[{key:"address",value:n.address,title:"Address",width:50},{key:"alias",value:n.alias,title:"Alias",width:50}],[{key:"state",value:this.commonService.titleCase(n.state||""),title:"State",width:50},{key:"channels",value:n.channels,title:"Channels",width:50}]];this.store.dispatch((0,k.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:n.nodeId,goToName:"Graph lookup",goToLink:"/ecl/graph/lookups",showQRName:"Public Key",showQRField:n.nodeId,message:o}}}))}onConnectPeer(n){this.store.dispatch((0,k.xO)({payload:{data:{message:{peer:n.nodeId?n:null,information:this.information,balance:this.availableBalance},component:Pt}}}))}onOpenChannel(n){this.store.dispatch((0,k.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:n,information:this.information,balance:this.availableBalance},newlyAdded:!1,component:Mt}}}))}onPeerDetach(n){this.store.dispatch(n&&n.channels&&n.channels>0?(0,k.xO)({payload:{data:{type:c.A$.ERROR,alertTitle:"Disconnect Not Allowed",titleMessage:"Channel active with this peer."}}}):(0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(n.alias?n.alias:n.nodeId),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(a=>{a&&this.store.dispatch((0,j.Lc)({payload:{nodeId:n.nodeId||""}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.peers.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=JSON.stringify(n).toLowerCase();break;case"state":o=n?.state?.toLowerCase()||"";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return"state"===this.selFilterBy?0===o.indexOf(a):o.includes(a)}}loadPeersTable(n){this.peers=new p.I6(n?[...n]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.peers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(lt.H),t.rXU(K.En),t.rXU($.h),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-peers"]],viewQuery:function(a,o){if(1&a&&(t.GBs(v.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Peers")}])],decls:50,vars:19,consts:[["peersForm","ngForm"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","nodeId"],["matColumnDef","address"],["matColumnDef","channels"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State"],["mat-cell",""],["class","dot green","matTooltip","Connected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Disconnected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Connected","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Disconnected","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",2)(1,"form",3,0)(3,"button",4),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onConnectPeer({}))}),t.EFF(4,"Add Peer"),t.k0s()(),t.j41(5,"div",5)(6,"div",6)(7,"div",7),t.nrm(8,"fa-icon",8),t.j41(9,"span",9),t.EFF(10,"Peers"),t.k0s()(),t.j41(11,"div",10)(12,"mat-form-field",11)(13,"mat-label"),t.EFF(14,"Filter By"),t.k0s(),t.j41(15,"mat-select",12),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilterBy,u)||(o.selFilterBy=u),r.Njj(u)}),t.bIt("selectionChange",function(){return r.eBV(l),o.selFilter="",r.Njj(o.applyFilter())}),t.j41(16,"perfect-scrollbar"),t.DNE(17,Kr,2,2,"mat-option",13),t.k0s()()(),t.j41(18,"mat-form-field",11)(19,"mat-label"),t.EFF(20,"Filter"),t.k0s(),t.j41(21,"input",14),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilter,u)||(o.selFilter=u),r.Njj(u)}),t.bIt("input",function(){return r.eBV(l),r.Njj(o.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(o.applyFilter())}),t.k0s()()()(),t.j41(22,"div",15),t.DNE(23,t1,1,0,"mat-progress-bar",16),t.j41(24,"table",17,1),t.qex(26,18),t.DNE(27,e1,1,0,"th",19)(28,a1,3,2,"td",20),t.bVm(),t.qex(29,21),t.DNE(30,o1,2,0,"th",22)(31,s1,4,4,"td",20),t.bVm(),t.qex(32,23),t.DNE(33,l1,2,0,"th",22)(34,r1,4,4,"td",20),t.bVm(),t.qex(35,24),t.DNE(36,c1,2,0,"th",22)(37,m1,2,1,"td",20),t.bVm(),t.qex(38,25),t.DNE(39,p1,2,0,"th",22)(40,u1,2,1,"td",20),t.bVm(),t.qex(41,26),t.DNE(42,d1,6,0,"th",27)(43,_1,10,2,"td",28),t.bVm(),t.qex(44,29),t.DNE(45,b1,4,3,"td",30),t.bVm(),t.DNE(46,F1,1,3,"tr",31)(47,E1,1,0,"tr",32)(48,x1,1,0,"tr",33),t.k0s()(),t.nrm(49,"mat-paginator",34),t.k0s()()}2&a&&(t.R7$(8),t.Y8G("icon",o.faUsers),t.R7$(7),t.R50("ngModel",o.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,qr).concat(o.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",o.selFilter),t.R7$(2),t.Y8G("ngIf",o.apiCallStatus.status===o.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",o.tableSetting.sortBy)("matSortDirection",o.tableSetting.sortOrder)("dataSource",o.peers)("ngClass",t.eq3(16,Qr,""!==o.errorMessage)),t.R7$(22),t.Y8G("matFooterRowDef",t.lJ4(18,Zr)),t.R7$(),t.Y8G("matHeaderRowDef",o.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",o.displayedColumns),t.R7$(),t.Y8G("pageSize",o.pageSize)("pageSizeOptions",o.pageSizeOptions)("showFirstLastButtons",o.screenSize!==o.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.qT,f.me,f.BC,f.cb,f.vS,f.cV,D.aY,N.$z,Y.fg,y.rl,y.nJ,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld],styles:[".mat-column-state[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return i(),s})();const v1=["queryRoutesForm"],S1=i=>({"overflow-auto error-border":i,"overflow-auto":!0}),Ht=i=>({"max-width":i});function R1(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Destination Node ID is required."),t.k0s())}function k1(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function I1(i,s){1&i&&t.nrm(0,"mat-progress-bar",23)}function T1(i,s){1&i&&(t.j41(0,"th",40),t.EFF(1," Alias"),t.k0s())}function w1(i,s){if(1&i&&(t.j41(0,"td",41)(1,"span",42)(2,"span",43),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ht,n.screenSize===n.screenSizeEnum.XS?"6rem":"30rem")),t.R7$(2),t.JRh(null==e?null:e.alias)}}function j1(i,s){1&i&&(t.j41(0,"th",40),t.EFF(1," ID"),t.k0s())}function D1(i,s){if(1&i&&(t.j41(0,"td",41)(1,"span",42)(2,"span",43),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ht,n.screenSize===n.screenSizeEnum.XS?"6rem":"30rem")),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function G1(i,s){1&i&&(t.j41(0,"th",40)(1,"div",44),t.EFF(2,"Actions"),t.k0s()())}function P1(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",45)(1,"button",46),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onHopClick(a))}),t.EFF(2,"View Info"),t.k0s()()}}function A1(i,s){1&i&&t.nrm(0,"tr",47)}function N1(i,s){1&i&&t.nrm(0,"tr",48)}function B1(i,s){if(1&i&&(t.j41(0,"div",24)(1,"mat-expansion-panel",25)(2,"mat-expansion-panel-header")(3,"mat-panel-title",26)(4,"span",27),t.EFF(5),t.k0s(),t.j41(6,"span",28),t.EFF(7),t.nI1(8,"number"),t.k0s()()(),t.j41(9,"mat-panel-description",29)(10,"div",30)(11,"table",31,2),t.qex(13,32),t.DNE(14,T1,2,0,"th",33)(15,w1,4,4,"td",34),t.bVm(),t.qex(16,35),t.DNE(17,j1,2,0,"th",33)(18,D1,4,4,"td",34),t.bVm(),t.qex(19,36),t.DNE(20,G1,3,0,"th",33)(21,P1,3,0,"td",37),t.bVm(),t.DNE(22,A1,1,0,"tr",38)(23,N1,1,0,"tr",39),t.k0s()()()()()),2&i){const e=s.$implicit,n=s.index,a=t.XpG();t.R7$(5),t.SpI("Route ",n+1),t.R7$(2),t.JRh(t.bMT(8,6,e.amount/1e3)),t.R7$(4),t.Y8G("dataSource",a.qrHops[n])("ngClass",t.eq3(8,S1,"error"===a.flgLoading[0])),t.R7$(11),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns)}}let M1=(()=>{var i;class s{constructor(n,a,o){this.store=n,this.eclEffects=a,this.commonService=o,this.allQRoutes=[],this.nodeId="",this.amount=0,this.qrHops=[],this.displayedColumns=["alias","nodeId","actions"],this.flgLoading=[!1],this.faRoute=E.TBz,this.faExclamationTriangle=E.zpE,this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.qrHops[0]=new p.I6([]),this.qrHops[0].data=[],this.eclEffects.setQueryRoutes.pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{n&&n.routes&&n.routes.length?(this.flgLoading[0]=!1,this.allQRoutes=n.routes,this.allQRoutes.forEach((a,o)=>{this.qrHops[o]=new p.I6([...a.nodeIds])})):(this.flgLoading[0]="error",this.allQRoutes=[],this.qrHops=[])})}onQueryRoutes(){if(!this.nodeId||!this.amount)return!0;this.qrHops=[],this.flgLoading[0]=!0,this.store.dispatch((0,j.T4)({payload:{nodeId:this.nodeId,amount:1e3*this.amount}}))}resetData(){this.allQRoutes=[],this.nodeId="",this.amount=0,this.flgLoading[0]=!1,this.qrHops=[],this.form.resetForm()}onHopClick(n){this.store.dispatch((0,k.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"alias",value:n.alias,title:"Alias",width:100,type:c.UN.STRING}],[{key:"nodeId",value:n.nodeId,title:"Node ID",width:100,type:c.UN.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(I.il),t.rXU(ht.B),t.rXU($.h))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-query-routes"]],viewQuery:function(a,o){if(1&a&&t.GBs(v1,7),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first)}},standalone:!1,decls:32,vars:10,consts:[["queryRoutesForm","ngForm"],["destPubkey","ngModel"],["table[i]",""],["fxLayout","column"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","nodeId","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"ngModelChange","step","min","ngModel"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-3","mb-1"],["fxFlex","70","fxLayoutAlign","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","column","fxFlex","100"],["fxFlex","100",4,"ngFor","ngForOf"],["mode","indeterminate"],["fxFlex","100"],[1,"flat-expansion-panel","help-expansion","mb-2px"],["fxLayout","row","fxLayoutAlign","space-between start"],["fxFlex","50","fxLayoutAlign","start start"],["fxFlex","50","fxLayoutAlign","end end"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"table-container","mb-2",3,"perfectScrollbar"],["mat-table","",3,"dataSource","ngClass"],["matColumnDef","alias"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","nodeId"],["matColumnDef","actions"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell",""],["mat-cell",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",3)(1,"form",4,0),t.bIt("ngSubmit",function(){r.eBV(l);const u=t.sdS(2);return r.Njj(u.form.valid&&o.onQueryRoutes())}),t.j41(3,"div",5),t.nrm(4,"fa-icon",6),t.j41(5,"span"),t.EFF(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),t.k0s()(),t.j41(7,"mat-form-field",7)(8,"mat-label"),t.EFF(9,"Destination Node ID"),t.k0s(),t.j41(10,"input",8,1),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.nodeId,u)||(o.nodeId=u),r.Njj(u)}),t.k0s(),t.DNE(12,R1,2,0,"mat-error",9),t.k0s(),t.j41(13,"mat-form-field",10)(14,"mat-label"),t.EFF(15,"Amount (Sats)"),t.k0s(),t.j41(16,"input",11),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.amount,u)||(o.amount=u),r.Njj(u)}),t.k0s(),t.DNE(17,k1,2,0,"mat-error",9),t.k0s(),t.j41(18,"div",12)(19,"button",13),t.bIt("click",function(){return r.eBV(l),r.Njj(o.resetData())}),t.EFF(20,"Clear"),t.k0s(),t.j41(21,"button",14),t.EFF(22,"Query Route"),t.k0s()()(),t.j41(23,"div",15)(24,"div",16),t.nrm(25,"fa-icon",17),t.j41(26,"span",18),t.EFF(27,"Transaction Route"),t.k0s()()(),t.DNE(28,I1,1,0,"mat-progress-bar",19),t.j41(29,"div",20)(30,"div",21),t.DNE(31,B1,24,10,"div",22),t.k0s()()()}2&a&&(t.R7$(4),t.Y8G("icon",o.faExclamationTriangle),t.R7$(6),t.R50("ngModel",o.nodeId),t.R7$(2),t.Y8G("ngIf",!o.nodeId),t.R7$(4),t.Y8G("step",1e3)("min",0),t.R50("ngModel",o.amount),t.R7$(),t.Y8G("ngIf",!o.amount),t.R7$(8),t.Y8G("icon",o.faRoute),t.R7$(3),t.Y8G("ngIf",!0===o.flgLoading[0]),t.R7$(3),t.Y8G("ngForOf",o.allQRoutes))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.VZ,f.vS,f.cV,D.aY,N.$z,U.GK,U.Z2,U.WN,U.Q6,Y.fg,y.rl,y.nJ,y.TL,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.KS,p.$R,p.YZ,p.NB,B.Ld,it.V,d.QX],encapsulation:2}))}return i(),s})();const $1=()=>["all"],V1=i=>({"error-border":i}),O1=()=>["no_channel"],Lt=i=>({width:i}),H1=i=>({"display-none":i});function Y1(i,s){if(1&i&&(t.j41(0,"mat-option",35),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function X1(i,s){1&i&&t.nrm(0,"mat-progress-bar",36)}function U1(i,s){1&i&&t.nrm(0,"th",37)}function z1(i,s){if(1&i&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",42),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function J1(i,s){if(1&i&&(t.j41(0,"span",43),t.nrm(1,"fa-icon",42),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function q1(i,s){if(1&i&&(t.j41(0,"td",38),t.DNE(1,z1,2,1,"span",39)(2,J1,2,1,"span",40),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf",!e.announceChannel),t.R7$(),t.Y8G("ngIf",e.announceChannel)}}function Q1(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"State"),t.k0s())}function Z1(i,s){if(1&i&&(t.j41(0,"td",38),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.state))}}function W1(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Short Channel ID"),t.k0s())}function K1(i,s){if(1&i&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.shortChannelId)}}function tc(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Channel ID"),t.k0s())}function ec(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Lt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function nc(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Alias"),t.k0s())}function ic(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Lt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(e.alias)}}function ac(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Node ID"),t.k0s())}function oc(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Lt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function sc(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Initiator"),t.k0s())}function lc(i,s){if(1&i&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function rc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function cc(i,s){if(1&i&&(t.j41(0,"td",38)(1,"span",48),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function mc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function pc(i,s){if(1&i&&(t.j41(0,"td",38)(1,"span",48),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function uc(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Balance Score"),t.k0s())}function dc(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",49)(2,"mat-hint",50),t.EFF(3),t.nI1(4,"number"),t.k0s()(),t.nrm(5,"mat-progress-bar",51),t.k0s()),2&i){const e=s.$implicit;t.R7$(3),t.JRh(t.bMT(4,3,(null==e?null:e.balancedness)||0)),t.R7$(2),t.Y8G("value",t.mNQ(e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0))}}function hc(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",52)(1,"div",53)(2,"mat-select",54),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",55),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function fc(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",56)(1,"div",53)(2,"mat-select",57),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",55),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG();return r.Njj(l.onChannelClick(o,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",55),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onChannelClose(a,!0))}),t.EFF(7,"Force Close"),t.k0s()()()()}}function _c(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No inactive channel available."),t.k0s())}function gc(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting inactive channels..."),t.k0s())}function Cc(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function yc(i,s){if(1&i&&(t.j41(0,"td",58),t.DNE(1,_c,2,0,"p",59)(2,gc,2,0,"p",59)(3,Cc,2,1,"p",59),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function bc(i,s){if(1&i&&t.nrm(0,"tr",60),2&i){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,H1,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function Fc(i,s){1&i&&t.nrm(0,"tr",61)}function Ec(i,s){1&i&&t.nrm(0,"tr",62)}let xc=(()=>{var i;class s{constructor(n,a,o,l,m){this.logger=n,this.store=a,this.rtlEffects=o,this.commonService=l,this.camelCaseWithSpaces=m,this.faEye=E.pS3,this.faEyeSlash=E.k6j,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"inactive_channels",recordsPerPage:c.md,sortBy:"alias",sortOrder:c.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new p.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=c.G,this.selFilter="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("announceChannel"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.inactiveChannels=n.inactiveChannels,this.loadChannelsTable(),this.logger.info(n)}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.information=n}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.numPeers=n.peers&&n.peers.length?n.peers.length:0}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[4])).subscribe(n=>{this.totalBalance=n.onchainBalance.total||0})}ngAfterViewInit(){this.inactiveChannels.length>0&&this.loadChannelsTable()}onChannelClose(n,a){this.store.dispatch((0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:a?"Force Close Channel":"Close Channel",titleMessage:a?"Force closing channel: "+(n.alias||n.shortChannelId?n.alias&&n.shortChannelId?n.alias+" ("+n.shortChannelId+")":n.alias?n.alias:n.shortChannelId:n.channelId):"Closing channel: "+(n.alias||n.shortChannelId?n.alias&&n.shortChannelId?n.alias+" ("+n.shortChannelId+")":n.alias?n.alias:n.shortChannelId:n.channelId),noBtnText:"Cancel",yesBtnText:a?"Force Close":"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(u=>{u&&this.store.dispatch((0,j.w0)({payload:{channelId:n.channelId||"",force:a}}))})}onChannelClick(n,a){this.store.dispatch((0,k.xO)({payload:{data:{channel:n,channelsType:"inactive",component:bt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLocaleLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):"announceChannel"===n?"Private":this.commonService.titleCase(n)}setFilterPredicate(){this.channels.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=JSON.stringify(n).toLowerCase();break;case"announceChannel":o=n?.announceChannel?"public":"private";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}loadChannelsTable(){this.channels=new p.I6([...this.inactiveChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(n,a)=>n[a]&&isNaN(n[a])?n[a].toLocaleLowerCase():n[a]?+n[a]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"InactiveChannels")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(lt.H),t.rXU($.h),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-inactive-table"]],viewQuery:function(a,o){if(1&a&&(t.GBs(v.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Channels")}])],decls:57,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","announceChannel"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","shortChannelId"],["matColumnDef","channelId"],["matColumnDef","alias"],["matColumnDef","nodeId"],["matColumnDef","isInitiator"],["matColumnDef","toLocal"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","toRemote"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2),t.nrm(2,"div",3),t.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),t.EFF(6,"Filter By"),t.k0s(),t.j41(7,"mat-select",6),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilterBy,u)||(o.selFilterBy=u),r.Njj(u)}),t.bIt("selectionChange",function(){return r.eBV(l),o.selFilter="",r.Njj(o.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,Y1,2,2,"mat-option",7),t.k0s()()(),t.j41(10,"mat-form-field",5)(11,"mat-label"),t.EFF(12,"Filter"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilter,u)||(o.selFilter=u),r.Njj(u)}),t.bIt("input",function(){return r.eBV(l),r.Njj(o.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(o.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,X1,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,U1,1,0,"th",13)(20,q1,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,Q1,2,0,"th",16)(23,Z1,3,3,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,W1,2,0,"th",16)(26,K1,2,1,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,tc,2,0,"th",16)(29,ec,4,4,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,nc,2,0,"th",16)(32,ic,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,ac,2,0,"th",16)(35,oc,4,4,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,sc,2,0,"th",16)(38,lc,2,1,"td",14),t.bVm(),t.qex(39,22),t.DNE(40,rc,2,0,"th",23)(41,cc,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,mc,2,0,"th",23)(44,pc,4,4,"td",14),t.bVm(),t.qex(45,25),t.DNE(46,uc,2,0,"th",16)(47,dc,6,5,"td",14),t.bVm(),t.qex(48,26),t.DNE(49,hc,6,0,"th",27)(50,fc,8,0,"td",28),t.bVm(),t.qex(51,29),t.DNE(52,yc,4,3,"td",30),t.bVm(),t.DNE(53,bc,1,3,"tr",31)(54,Fc,1,0,"tr",32)(55,Ec,1,0,"tr",33),t.k0s()(),t.nrm(56,"mat-paginator",34),t.k0s()}2&a&&(t.R7$(7),t.R50("ngModel",o.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,$1).concat(o.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",o.selFilter),t.R7$(2),t.Y8G("ngIf",o.apiCallStatus.status===o.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",o.tableSetting.sortBy)("matSortDirection",o.tableSetting.sortOrder)("dataSource",o.channels)("ngClass",t.eq3(15,V1,""!==o.errorMessage)),t.R7$(37),t.Y8G("matFooterRowDef",t.lJ4(17,O1)),t.R7$(),t.Y8G("matHeaderRowDef",o.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",o.displayedColumns),t.R7$(),t.Y8G("pageSize",o.pageSize)("pageSizeOptions",o.pageSizeOptions)("showFirstLastButtons",o.screenSize!==o.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.me,f.BC,f.vS,D.aY,Y.fg,y.rl,y.nJ,y.MV,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld,d.QX,d.PV],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:3rem;min-width:15rem;max-width:30rem}"]}))}return i(),s})();const Lc=()=>["all"],vc=()=>["no_event"],Sc=i=>({"ml-0":i}),st=i=>({width:i}),Rc=i=>({"display-none":i});function kc(i,s){if(1&i&&(t.j41(0,"div",6),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.JRh(e.errorMessage)}}function Ic(i,s){if(1&i&&(t.j41(0,"mat-option",14),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function Tc(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",7),t.nrm(1,"div",8),t.j41(2,"div",9)(3,"mat-form-field",10)(4,"mat-label"),t.EFF(5,"Filter By"),t.k0s(),t.j41(6,"mat-select",11),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilterBy,a)||(o.selFilterBy=a),r.Njj(a)}),t.bIt("selectionChange",function(){r.eBV(e);const a=t.XpG();return a.selFilter="",r.Njj(a.applyFilter())}),t.j41(7,"perfect-scrollbar"),t.DNE(8,Ic,2,2,"mat-option",12),t.k0s()()(),t.j41(9,"mat-form-field",10)(10,"mat-label"),t.EFF(11,"Filter"),t.k0s(),t.j41(12,"input",13),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilter,a)||(o.selFilter=a),r.Njj(a)}),t.bIt("input",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())})("keyup",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())}),t.k0s()()()()}if(2&i){const e=t.XpG();t.R7$(6),t.R50("ngModel",e.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(3,Lc).concat(e.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",e.selFilter)}}function wc(i,s){1&i&&t.nrm(0,"mat-progress-bar",42)}function jc(i,s){1&i&&t.nrm(0,"th",43)}function Dc(i,s){if(1&i&&(t.nrm(0,"span",46),t.nI1(1,"camelcase")),2&i){const e=t.XpG().$implicit,n=t.XpG(2);t.Y8G("matTooltip",t.mNQ(t.bMT(1,3,null==e?null:e.type)))("ngClass",t.eq3(5,Sc,n.screenSize===n.screenSizeEnum.XS))}}function Gc(i,s){if(1&i&&(t.j41(0,"td",44),t.DNE(1,Dc,2,7,"span",45),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf","payment-relayed"!==(null==e?null:e.type))}}function Pc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Date/Time"),t.k0s())}function Ac(i,s){if(1&i&&(t.j41(0,"td",44),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,null==e?null:e.timestamp,"dd/MMM/y HH:mm")," ")}}function Nc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"In Channel ID"),t.k0s())}function Bc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,st,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.fromChannelId)}}function Mc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"In Channel Short ID"),t.k0s())}function $c(i,s){if(1&i&&(t.j41(0,"td",44),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.fromShortChannelId)}}function Vc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"In Channel"),t.k0s())}function Oc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,st,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.fromChannelAlias)}}function Hc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Out Channel ID"),t.k0s())}function Yc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,st,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.toChannelId)}}function Xc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Out Channel Short ID"),t.k0s())}function Uc(i,s){if(1&i&&(t.j41(0,"td",44),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.toShortChannelId)}}function zc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Out Channel"),t.k0s())}function Jc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,st,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.toChannelAlias)}}function qc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Payment Hash"),t.k0s())}function Qc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,st,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function Zc(i,s){1&i&&(t.j41(0,"th",50),t.EFF(1,"Amount In (Sats)"),t.k0s())}function Wc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.amountIn))}}function Kc(i,s){1&i&&(t.j41(0,"th",50),t.EFF(1,"Amount Out (Sats)"),t.k0s())}function tm(i,s){if(1&i&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.amountOut))}}function em(i,s){1&i&&(t.j41(0,"th",50),t.EFF(1,"Fee Earned (Sats)"),t.k0s())}function nm(i,s){if(1&i&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,(null==e?null:e.amountIn)-(null==e?null:e.amountOut)))}}function im(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",52)(1,"div",53)(2,"mat-select",54),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",55),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function am(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",56)(1,"button",57),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG(2);return r.Njj(l.onForwardingEventClick(o,a))}),t.EFF(2,"View Info"),t.k0s()()}}function om(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No forwarding history available."),t.k0s())}function sm(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting forwarding history..."),t.k0s())}function lm(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function rm(i,s){if(1&i&&(t.j41(0,"td",58),t.DNE(1,om,2,0,"p",59)(2,sm,2,0,"p",59)(3,lm,2,1,"p",59),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function cm(i,s){if(1&i&&t.nrm(0,"tr",60),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Rc,(null==e.forwardingHistoryEvents?null:e.forwardingHistoryEvents.data)&&(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)>0))}}function mm(i,s){1&i&&t.nrm(0,"tr",61)}function pm(i,s){1&i&&t.nrm(0,"tr",62)}function um(i,s){if(1&i&&(t.j41(0,"div",15),t.DNE(1,wc,1,0,"mat-progress-bar",16),t.j41(2,"table",17,0),t.qex(4,18),t.DNE(5,jc,1,0,"th",19)(6,Gc,2,1,"td",20),t.bVm(),t.qex(7,21),t.DNE(8,Pc,2,0,"th",22)(9,Ac,3,4,"td",20),t.bVm(),t.qex(10,23),t.DNE(11,Nc,2,0,"th",22)(12,Bc,4,4,"td",20),t.bVm(),t.qex(13,24),t.DNE(14,Mc,2,0,"th",22)(15,$c,2,1,"td",20),t.bVm(),t.qex(16,25),t.DNE(17,Vc,2,0,"th",22)(18,Oc,4,4,"td",20),t.bVm(),t.qex(19,26),t.DNE(20,Hc,2,0,"th",22)(21,Yc,4,4,"td",20),t.bVm(),t.qex(22,27),t.DNE(23,Xc,2,0,"th",22)(24,Uc,2,1,"td",20),t.bVm(),t.qex(25,28),t.DNE(26,zc,2,0,"th",22)(27,Jc,4,4,"td",20),t.bVm(),t.qex(28,29),t.DNE(29,qc,2,0,"th",22)(30,Qc,4,4,"td",20),t.bVm(),t.qex(31,30),t.DNE(32,Zc,2,0,"th",31)(33,Wc,4,3,"td",20),t.bVm(),t.qex(34,32),t.DNE(35,Kc,2,0,"th",31)(36,tm,4,3,"td",20),t.bVm(),t.qex(37,33),t.DNE(38,em,2,0,"th",31)(39,nm,4,3,"td",20),t.bVm(),t.qex(40,34),t.DNE(41,im,6,0,"th",35)(42,am,3,0,"td",36),t.bVm(),t.qex(43,37),t.DNE(44,rm,4,3,"td",38),t.bVm(),t.DNE(45,cm,1,3,"tr",39)(46,mm,1,0,"tr",40)(47,pm,1,0,"tr",41),t.k0s()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.forwardingHistoryEvents),t.R7$(43),t.Y8G("matFooterRowDef",t.lJ4(7,vc)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns)}}function dm(i,s){if(1&i&&t.nrm(0,"mat-paginator",63),2&i){const e=t.XpG();t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Yt=(()=>{var i;class s{constructor(n,a,o,l,m){this.logger=n,this.commonService=a,this.store=o,this.datePipe=l,this.camelCaseWithSpaces=m,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:c.md,sortBy:"timestamp",sortOrder:c.oi.DESCENDING},this.displayedColumns=[],this.forwardingHistoryEvents=new p.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(n){n.eventsData&&(this.apiCallStatus={status:c.wn.COMPLETED,action:"FetchPayments"},this.eventsData=n.eventsData.currentValue,n.eventsData.firstChange||this.loadForwardingEventsTable(this.eventsData)),n.selFilter&&!n.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=n.pageSettings.find(a=>a.pageId===this.pageId)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.pageId)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("type"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.KT).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.eventsData=n.payments&&n.payments.relayed?n.payments.relayed:[],this.eventsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.eventsData),this.logger.info(this.eventsData)})}ngAfterViewInit(){setTimeout(()=>{this.eventsData.length>0&&this.loadForwardingEventsTable(this.eventsData)},0)}onForwardingEventClick(n,a){const o=[[{key:"paymentHash",value:n.paymentHash,title:"Payment Hash",width:100,type:c.UN.STRING}],[{key:"timestamp",value:Math.round((n.timestamp||0)/1e3),title:"Date/Time",width:50,type:c.UN.DATE_TIME},{key:"fee",value:(n.amountIn||0)-(n.amountOut||0),title:"Fee Earned (Sats)",width:50,type:c.UN.NUMBER}],[{key:"amountIn",value:n.amountIn,title:"Amount In (Sats)",width:50,type:c.UN.NUMBER},{key:"amountOut",value:n.amountOut,title:"Amount Out (Sats)",width:50,type:c.UN.NUMBER}],[{key:"fromChannelAlias",value:n.fromChannelAlias,title:"From Channel Alias",width:50,type:c.UN.STRING},{key:"fromShortChannelId",value:n.fromShortChannelId,title:"From Short Channel ID",width:50,type:c.UN.STRING}],[{key:"fromChannelId",value:n.fromChannelId,title:"From Channel ID",width:100,type:c.UN.STRING}],[{key:"toChannelAlias",value:n.toChannelAlias,title:"To Channel Alias",width:50,type:c.UN.STRING},{key:"toShortChannelId",value:n.toShortChannelId,title:"To Short Channel ID",width:50,type:c.UN.STRING}],[{key:"toChannelId",value:n.toChannelId,title:"To Channel ID",width:100,type:c.UN.STRING}]];"payment-relayed"!==n.type&&o?.unshift([{key:"type",value:this.commonService.camelCase(n.type),title:"Relay Type",width:100,type:c.UN.STRING}]),this.store.dispatch((0,k.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Event Information",message:o}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(n){const a=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column):this.commonService.titleCase(n)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=(n.timestamp?this.datePipe.transform(new Date(n.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(n).toLowerCase();break;case"timestamp":o=this.datePipe.transform(new Date(n.timestamp||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":o=(n.amountIn-n.amountOut).toString()||"0";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}loadForwardingEventsTable(n){this.forwardingHistoryEvents=new p.I6([...n]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(a,o)=>"fee"===o?a.amountIn-a.amountOut:a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.forwardingHistoryEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il),t.rXU(d.vh),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-forwarding-history"]],viewQuery:function(a,o){if(1&a&&(t.GBs(v.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Events")}]),t.OA$],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","type"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Type (if not payment relayed)",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","fromChannelId"],["matColumnDef","fromShortChannelId"],["matColumnDef","fromChannelAlias"],["matColumnDef","toChannelId"],["matColumnDef","toShortChannelId"],["matColumnDef","toChannelAlias"],["matColumnDef","paymentHash"],["matColumnDef","amountIn"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amountOut"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Type (if not payment relayed)"],["mat-cell",""],["class","dot yellow","matTooltipPosition","right",3,"matTooltip","ngClass",4,"ngIf"],["matTooltipPosition","right",1,"dot","yellow",3,"matTooltip","ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(a,o){1&a&&(t.j41(0,"div",1),t.DNE(1,kc,2,1,"div",2)(2,Tc,13,4,"div",3)(3,um,48,8,"div",4)(4,dm,1,3,"mat-paginator",5),t.k0s()),2&a&&(t.R7$(),t.Y8G("ngIf",""!==o.errorMessage),t.R7$(),t.Y8G("ngIf",""===o.errorMessage),t.R7$(),t.Y8G("ngIf",""===o.errorMessage),t.R7$(),t.Y8G("ngIf",""===o.errorMessage))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.me,f.BC,f.vS,N.$z,Y.fg,y.rl,y.nJ,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld,d.QX,d.vh,q.ZE],styles:[".mat-column-type[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-type[_ngcontent-%COMP%] svg[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-actions[_ngcontent-%COMP%]{min-height:3.55rem}"]}))}return i(),s})();const hm=["tableIn"],fm=["tableOut"],_m=["paginatorIn"],gm=["paginatorOut"],Cm=(i,s)=>({"mt-2":i,"mt-1":s}),ym=()=>["no_incoming_event"],bm=i=>({"mt-2":i}),Fm=()=>["no_outgoing_event"],mt=i=>({width:i}),Xt=i=>({"display-none":i});function Em(i,s){if(1&i&&(t.j41(0,"div",7),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.JRh(e.errorMessage)}}function xm(i,s){1&i&&t.nrm(0,"mat-progress-bar",34)}function Lm(i,s){1&i&&(t.j41(0,"th",35),t.EFF(1,"Channel ID"),t.k0s())}function vm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,mt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Sm(i,s){1&i&&(t.j41(0,"th",35),t.EFF(1,"Peer Alias"),t.k0s())}function Rm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,mt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function km(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Events"),t.k0s())}function Im(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.events))}}function Tm(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Amount (Sats)"),t.k0s())}function wm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalAmount))}}function jm(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Fee (Sats)"),t.k0s())}function Dm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalFee))}}function Gm(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No incoming routing peer available."),t.k0s())}function Pm(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting incoming routing peers..."),t.k0s())}function Am(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function Nm(i,s){if(1&i&&(t.j41(0,"td",41),t.DNE(1,Gm,2,0,"p",42)(2,Pm,2,0,"p",42)(3,Am,2,1,"p",42),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function Bm(i,s){if(1&i&&t.nrm(0,"tr",43),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Xt,(null==e.routingPeersIncoming?null:e.routingPeersIncoming.data)&&(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)>0))}}function Mm(i,s){1&i&&t.nrm(0,"tr",44)}function $m(i,s){1&i&&t.nrm(0,"tr",45)}function Vm(i,s){1&i&&t.nrm(0,"mat-progress-bar",34)}function Om(i,s){1&i&&(t.j41(0,"th",35),t.EFF(1,"Channel ID"),t.k0s())}function Hm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,mt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Ym(i,s){1&i&&(t.j41(0,"th",35),t.EFF(1,"Peer Alias"),t.k0s())}function Xm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,mt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function Um(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Events"),t.k0s())}function zm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.events))}}function Jm(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Amount (Sats)"),t.k0s())}function qm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalAmount))}}function Qm(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Fee (Sats)"),t.k0s())}function Zm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalFee))}}function Wm(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No outgoing routing peer available."),t.k0s())}function Km(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting outgoing routing peers..."),t.k0s())}function tp(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function ep(i,s){if(1&i&&(t.j41(0,"td",41),t.DNE(1,Wm,2,0,"p",42)(2,Km,2,0,"p",42)(3,tp,2,1,"p",42),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function np(i,s){if(1&i&&t.nrm(0,"tr",43),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Xt,(null==e.routingPeersOutgoing?null:e.routingPeersOutgoing.data)&&(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)>0))}}function ip(i,s){1&i&&t.nrm(0,"tr",44)}function ap(i,s){1&i&&t.nrm(0,"tr",45)}function op(i,s){if(1&i&&(t.j41(0,"div",8)(1,"div",9)(2,"div",10)(3,"div",11),t.EFF(4,"Incoming"),t.k0s(),t.nrm(5,"div",12),t.k0s(),t.j41(6,"div",13),t.DNE(7,xm,1,0,"mat-progress-bar",14),t.j41(8,"table",15,0),t.qex(10,16),t.DNE(11,Lm,2,0,"th",17)(12,vm,4,4,"td",18),t.bVm(),t.qex(13,19),t.DNE(14,Sm,2,0,"th",17)(15,Rm,4,4,"td",18),t.bVm(),t.qex(16,20),t.DNE(17,km,2,0,"th",21)(18,Im,4,3,"td",18),t.bVm(),t.qex(19,22),t.DNE(20,Tm,2,0,"th",21)(21,wm,4,3,"td",18),t.bVm(),t.qex(22,23),t.DNE(23,jm,2,0,"th",21)(24,Dm,4,3,"td",18),t.bVm(),t.qex(25,24),t.DNE(26,Nm,4,3,"td",25),t.bVm(),t.DNE(27,Bm,1,3,"tr",26)(28,Mm,1,0,"tr",27)(29,$m,1,0,"tr",28),t.k0s()(),t.nrm(30,"mat-paginator",29,1),t.k0s(),t.j41(32,"div",30)(33,"div",10)(34,"div",11),t.EFF(35,"Outgoing"),t.k0s(),t.nrm(36,"div",12),t.k0s(),t.j41(37,"div",31),t.DNE(38,Vm,1,0,"mat-progress-bar",14),t.j41(39,"table",32,2),t.qex(41,16),t.DNE(42,Om,2,0,"th",17)(43,Hm,4,4,"td",18),t.bVm(),t.qex(44,19),t.DNE(45,Ym,2,0,"th",17)(46,Xm,4,4,"td",18),t.bVm(),t.qex(47,20),t.DNE(48,Um,2,0,"th",21)(49,zm,4,3,"td",18),t.bVm(),t.qex(50,22),t.DNE(51,Jm,2,0,"th",21)(52,qm,4,3,"td",18),t.bVm(),t.qex(53,23),t.DNE(54,Qm,2,0,"th",21)(55,Zm,4,3,"td",18),t.bVm(),t.qex(56,33),t.DNE(57,ep,4,3,"td",25),t.bVm(),t.DNE(58,np,1,3,"tr",26)(59,ip,1,0,"tr",27)(60,ap,1,0,"tr",28),t.k0s(),t.nrm(61,"mat-paginator",29,3),t.k0s()()()),2&i){const e=t.XpG();t.R7$(2),t.Y8G("ngClass",t.l_i(22,Cm,e.screenSize===e.screenSizeEnum.XS,e.screenSize===e.screenSizeEnum.SM)),t.R7$(5),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersIncoming),t.R7$(19),t.Y8G("matFooterRowDef",t.lJ4(25,ym)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS),t.R7$(3),t.Y8G("ngClass",t.eq3(26,bm,e.screenSize!==e.screenSizeEnum.LG)),t.R7$(5),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersOutgoing),t.R7$(19),t.Y8G("matFooterRowDef",t.lJ4(28,Fm)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let sp=(()=>{var i;class s{constructor(n,a,o,l){this.logger=n,this.commonService=a,this.store=o,this.camelCaseWithSpaces=l,this.nodePageDefs=c.WW,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:c.md,sortBy:"totalFee",sortOrder:c.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.routingPeersIncoming=new p.I6([]),this.routingPeersOutgoing=new p.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.KT).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=n.payments&&n.payments.relayed?n.payments.relayed:[],this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData),this.logger.info(n)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData)}applyFilterIncoming(){this.routingPeersIncoming.filter=this.filterIn.trim().toLowerCase()}applyFilterOutgoing(){this.routingPeersOutgoing.filter=this.filterOut.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(n,a)=>{let o="";return o="all"===this.selFilterByIn?JSON.stringify(n).toLowerCase():"string"==typeof n[this.selFilterByIn]?n[this.selFilterByIn].toLowerCase():"boolean"==typeof n[this.selFilterByIn]?n[this.selFilterByIn]?"yes":"no":n[this.selFilterByIn].toString(),o.includes(a)},this.routingPeersOutgoing.filterPredicate=(n,a)=>{let o="";switch(this.selFilterByOut){case"all":o=JSON.stringify(n).toLowerCase();break;case"total_amount":case"total_fee":o=(+(n[this.selFilterByOut]||0)/1e3).toString()||"";break;default:o="string"==typeof n[this.selFilterByOut]?n[this.selFilterByOut].toLowerCase():"boolean"==typeof n[this.selFilterByOut]?n[this.selFilterByOut]?"yes":"no":n[this.selFilterByOut].toString()}return o.includes(a)}}loadRoutingPeersTable(n){if(n.length>0){const a=this.groupRoutingPeers(n);this.routingPeersIncoming=new p.I6(a[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new p.I6(a[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new p.I6([]),this.routingPeersOutgoing=new p.I6([]);this.setFilterPredicate(),this.applyFilterIncoming(),this.applyFilterOutgoing()}groupRoutingPeers(n){const a=[],o=[];return n.forEach(l=>{const m=a.find(T=>T.channelId===l.fromChannelId),u=o.find(T=>T.channelId===l.toChannelId);m?(m.events++,m.totalAmount=+m.totalAmount+ +l.amountIn,m.totalFee=l.amountIn-l.amountOut+ +m.totalFee):a.push({channelId:l.fromChannelId,alias:l.fromChannelAlias,events:1,totalAmount:+l.amountIn,totalFee:l.amountIn-l.amountOut}),u?(u.events++,u.totalAmount=+u.totalAmount+ +l.amountOut,u.totalFee=l.amountIn-l.amountOut+ +u.totalFee):o.push({channelId:l.toChannelId,alias:l.toChannelAlias,events:1,totalAmount:+l.amountOut,totalFee:l.amountIn-l.amountOut})}),[this.commonService.sortDescByKey(a,"totalFee"),this.commonService.sortDescByKey(o,"totalFee")]}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-routing-peers"]],viewQuery:function(a,o){if(1&a&&(t.GBs(hm,5,v.B4),t.GBs(fm,5,v.B4),t.GBs(_m,5),t.GBs(gm,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sortIn=l.first),t.mGM(l=t.lsd())&&(o.sortOut=l.first),t.mGM(l=t.lsd())&&(o.paginatorIn=l.first),t.mGM(l=t.lsd())&&(o.paginatorOut=l.first)}},standalone:!1,features:[t.Jv_([{provide:w.xX,useValue:(0,c.on)("Peers")}])],decls:3,vars:2,consts:[["tableIn",""],["paginatorIn",""],["tableOut",""],["paginatorOut",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch","class","page-sub-title-container mt-2",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"page-sub-title-container","mt-2"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mb-4"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","channelId"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","totalAmount"],["matColumnDef","totalFee"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["fxLayout","column","fxFlex","49","fxLayoutAlign","end stretch",1,"mb-4"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","no_outgoing_event"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){1&a&&(t.j41(0,"div",4),t.DNE(1,Em,2,1,"div",5)(2,op,63,29,"div",6),t.k0s()),2&a&&(t.R7$(),t.Y8G("ngIf",""!==o.errorMessage),t.R7$(),t.Y8G("ngIf",""===o.errorMessage))},dependencies:[d.YU,d.bT,d.B3,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,w.iy,B.Ld,d.QX],encapsulation:2}))}return i(),s})();function lp(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",8),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG();t.Y8G("routerLink",t.mNQ(e.link))("active",n.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let rp=(()=>{var i;class s{constructor(n){this.router=n,this.faChartBar=E.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){const n=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=n?n.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(a=>a instanceof L.gx)).subscribe({next:a=>{const o=this.links.find(l=>a.urlAfterRedirects.includes(l.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-reports"]],standalone:!1,decls:12,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(a,o){if(1&a&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Reports"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),t.DNE(8,lp,2,4,"div",7),t.k0s(),t.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),t.k0s()()()),2&a){const l=t.sdS(10);t.R7$(),t.Y8G("icon",o.faChartBar),t.R7$(6),t.Y8G("tabPanel",l),t.R7$(),t.Y8G("ngForOf",o.links)}},dependencies:[d.Sq,D.aY,x.RN,x.m2,_.DJ,_.sA,G.Bu,G.hQ,G.Ql,L.n3,W.Wk],encapsulation:2}))}return i(),s})();var Ut=C(1993),zt=C(4655);function cp(i,s){if(1&i&&(t.j41(0,"div",14),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&i){const e=t.XpG();t.Y8G("@fadeIn",e.totalFeeSat),t.R7$(),t.Lme("",t.i5U(2,3,e.totalFeeSat||0,"1.0-2")," Sats/",t.bMT(3,6,e.filteredEventsBySelectedPeriod.length||0)," Events")}}function mp(i,s){1&i&&(t.j41(0,"div",15),t.EFF(1,"No routing report for the selected period"),t.k0s())}function pp(i,s){if(1&i&&(t.j41(0,"span")(1,"span",17),t.EFF(2),t.nI1(3,"number"),t.k0s(),t.j41(4,"span",17),t.EFF(5),t.nI1(6,"number"),t.k0s()()),2&i){const e=s.model,n=t.XpG(2);t.R7$(2),t.SpI("Events: ",t.bMT(3,2,(n.selReportBy===n.reportBy.EVENTS?e.value:e.extra.totalEvents)||0)),t.R7$(3),t.SpI("Fee: ",t.i5U(6,4,(n.selReportBy===n.reportBy.EVENTS?e.extra.totalFees:e.value)||0,"1.0-2"))}}function up(i,s){if(1&i){const e=t.RV6();t.j41(0,"ngx-charts-bar-vertical",16),t.bIt("select",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onChartBarSelected(a))})("mouseup",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onChartMouseUp(a))}),t.DNE(1,pp,7,7,"ng-template",null,0,t.C5r),t.k0s()}if(2&i){const e=t.XpG();t.Y8G("view",e.view)("results",e.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function dp(i,s){if(1&i&&t.nrm(0,"rtl-ecl-forwarding-history",18),2&i){const e=t.XpG();t.Y8G("eventsData",e.filteredEventsBySelectedPeriod)("selFilter",e.eventFilterValue)}}let hp=(()=>{var i;class s{constructor(n,a,o){this.logger=n,this.commonService=a,this.store=o,this.reportPeriod=c.rs[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=c.aR,this.selReportBy=c.aR.FEES,this.totalFeeSat=null,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new h.B,new h.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===c.f7.XS||this.screenSize===c.f7.SM),this.store.select(b.KT).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.events=n.payments&&n.payments.relayed?n.payments.relayed:[],this.filterForwardingEvents(this.startDate,this.endDate),this.logger.info(n)}),this.commonService.containerSizeUpdated.pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{switch(this.screenSize){case c.f7.MD:this.screenPaddingX=n.width/10;break;case c.f7.LG:this.screenPaddingX=n.width/16;break;default:this.screenPaddingX=n.width/20}this.view=[n.width-this.screenPaddingX,n.height/2.2],this.logger.info("Container Size: "+JSON.stringify(n)),this.logger.info("View: "+JSON.stringify(this.view))})}filterForwardingEvents(n,a){const o=Math.round(n.getTime()/1e3),l=Math.round(a.getTime()/1e3);this.logger.info("Filtering Forwarding Events Starting at "+new Date(Date.now()).toLocaleString()+" From "+n.toLocaleString()+" To "+a.toLocaleString()),this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeSat=null,this.events&&this.events.length>0&&(this.events.forEach(m=>{Math.floor((m.timestamp||0)/1e3)>=o&&Math.floor((m.timestamp||0)/1e3)0&&"ngx-charts"===n.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(n){this.eventFilterValue=this.reportPeriod===c.rs[1]?n.name+"/"+this.startDate.getFullYear():n.name.toString().padStart(2,"0")+"/"+c.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(n){const a=Math.round(n.getTime()/1e3),o=[];if(this.totalFeeSat=0,this.logger.info("Fee Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+n.toLocaleString()),this.reportPeriod===c.rs[1]){for(let l=0;l<12;l++)o.push({name:c.KR[l].name,value:0,extra:{totalEvents:0}});this.filteredEventsBySelectedPeriod?.map(l=>{const m=new Date(l.timestamp||0).getMonth();return o[m].value=o[m].value+((l.amountIn||0)-(l.amountOut||0)),o[m].extra.totalEvents=o[m].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((l.amountIn||0)-(l.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let l=0;l{const m=Math.floor((Math.floor((l.timestamp||0)/1e3)-a)/this.secondsInADay);return o[m].value=o[m].value+((l.amountIn||0)-(l.amountOut||0)),o[m].extra.totalEvents=o[m].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((l.amountIn||0)-(l.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Fee Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),o}prepareEventsReport(n){const a=Math.round(n.getTime()/1e3),o=[];if(this.totalFeeSat=0,this.logger.info("Events Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+n.toLocaleString()),this.reportPeriod===c.rs[1]){for(let l=0;l<12;l++)o.push({name:c.KR[l].name,value:0,extra:{totalFees:0}});this.filteredEventsBySelectedPeriod?.map(l=>{const m=new Date(l.timestamp||0).getMonth();return o[m].value=o[m].value+1,o[m].extra.totalFees=o[m].extra.totalFees+((l.amountIn||0)-(l.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((l.amountIn||0)-(l.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let l=0;l{const m=Math.floor((Math.floor((l.timestamp||0)/1e3)-a)/this.secondsInADay);return o[m].value=o[m].value+1,o[m].extra.totalFees=o[m].extra.totalFees+((l.amountIn||0)-(l.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((l.amountIn||0)-(l.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Events Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),o}onSelectionChange(n){const a=n.selDate.getMonth(),o=n.selDate.getFullYear();this.reportPeriod=n.selScrollRange,this.reportPeriod===c.rs[1]?(this.startDate=new Date(o,0,1,0,0,0),this.endDate=new Date(o,11,31,23,59,59)):(this.startDate=new Date(o,a,1,0,0,0),this.endDate=new Date(o,a,this.getMonthDays(a,o),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(n,a){return 1===n&&a%4==0?c.KR[n].days+1:c.KR[n].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-routing-report"]],hostBindings:function(a,o){1&a&&t.bIt("mouseup",function(m){return o.onChartMouseUp(m)})},standalone:!1,decls:17,vars:9,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start center",1,"my-1",3,"ngModelChange","change","ngModel"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],["pageId","reports","tableId","routing",3,"eventsData","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"one-color",3,"select","mouseup","view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel"],[1,"tooltip-label"],["pageId","reports","tableId","routing",3,"eventsData","selFilter"]],template:function(a,o){1&a&&(t.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),t.bIt("stepChanged",function(m){return o.onSelectionChange(m)}),t.k0s(),t.j41(2,"div",3)(3,"mat-radio-group",4),t.mxI("ngModelChange",function(m){return t.DH7(o.selReportBy,m)||(o.selReportBy=m),m}),t.bIt("change",function(){return o.onSelReportByChange()}),t.j41(4,"span",5),t.EFF(5,"Report By: "),t.k0s(),t.j41(6,"mat-radio-button",6),t.EFF(7,"Fees"),t.k0s(),t.j41(8,"mat-radio-button",7),t.EFF(9,"Events"),t.k0s()()(),t.j41(10,"div",8),t.DNE(11,cp,4,8,"div",9)(12,mp,2,0,"div",10),t.j41(13,"div",11),t.DNE(14,up,3,11,"ngx-charts-bar-vertical",12),t.k0s(),t.j41(15,"div",11),t.DNE(16,dp,1,2,"rtl-ecl-forwarding-history",13),t.k0s()()()),2&a&&(t.R7$(3),t.R50("ngModel",o.selReportBy),t.R7$(3),t.Y8G("value",t.mNQ(o.reportBy.FEES)),t.R7$(2),t.Y8G("value",t.mNQ(o.reportBy.EVENTS)),t.R7$(3),t.Y8G("ngIf",o.routingReportData.length>0&&o.filteredEventsBySelectedPeriod.length>0),t.R7$(),t.Y8G("ngIf",o.routingReportData.length<=0||o.filteredEventsBySelectedPeriod.length<=0),t.R7$(2),t.Y8G("ngIf",o.routingReportData.length>0&&o.filteredEventsBySelectedPeriod.length>0),t.R7$(2),t.Y8G("ngIf",o.filteredEventsBySelectedPeriod.length>0))},dependencies:[d.bT,f.BC,f.vS,rt.VT,rt._g,_.DJ,_.sA,_.UI,Ut.L8,zt.m,Yt,d.QX],encapsulation:2,data:{animation:[Et.q]}}))}return i(),s})();var fp=C(5085);function _p(i,s){if(1&i&&(t.j41(0,"div",11),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Lme(" Paid ",t.i5U(2,2,e.transactionsReportSummary.amountPaidSelectedPeriod||0,"1.0-2")," Sats/",t.bMT(3,5,e.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function gp(i,s){if(1&i&&(t.j41(0,"div",11),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Lme(" Received ",t.i5U(2,2,e.transactionsReportSummary.amountReceivedSelectedPeriod||0,"1.0-2")," Sats/",t.bMT(3,5,e.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function Cp(i,s){if(1&i&&(t.j41(0,"div",9),t.DNE(1,_p,4,7,"div",10)(2,gp,4,7,"div",10),t.k0s()),2&i){const e=t.XpG();t.Y8G("@fadeIn",e.transactionsReportSummary),t.R7$(),t.Y8G("ngIf",e.transactionsReportSummary.paymentsSelectedPeriod),t.R7$(),t.Y8G("ngIf",e.transactionsReportSummary.invoicesSelectedPeriod)}}function yp(i,s){1&i&&(t.j41(0,"div",12),t.EFF(1,"No transactions report for the selected period"),t.k0s())}function bp(i,s){if(1&i&&(t.j41(0,"span",14),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&i){const e=s.model;t.R7$(),t.LHq("",e.name,": ",t.i5U(2,4,e.value||0,"1.0-2"),"/# ","Paid"===e.name?"Payments":"Invoices",": ",t.bMT(3,7,(null==e.extra?null:e.extra.total)||0))}}function Fp(i,s){if(1&i){const e=t.RV6();t.j41(0,"ngx-charts-bar-vertical-2d",13),t.bIt("select",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onChartBarSelected(a))})("mouseup",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onChartMouseUp(a))}),t.DNE(1,bp,4,9,"ng-template",null,0,t.C5r),t.k0s()}if(2&i){const e=t.XpG();t.Y8G("view",e.view)("results",e.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",e.reportPeriod===e.scrollRanges[0]?2:8)}}function Ep(i,s){if(1&i&&t.nrm(0,"rtl-transactions-report-table",15),2&i){const e=t.XpG();t.Y8G("displayedColumns",e.displayedColumns)("tableSetting",e.tableSetting)("dataList",e.transactionsNonZeroReportData)("dataRange",e.reportPeriod)("selFilter",e.transactionFilterValue)}}let xp=(()=>{var i;class s{constructor(n,a,o){this.logger=n,this.commonService=a,this.store=o,this.scrollRanges=c.rs,this.reportPeriod=c.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:c.md,sortBy:"date",sortOrder:c.oi.DESCENDING},this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[],this.transactionsNonZeroReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===c.f7.XS||this.screenSize===c.f7.SM),this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.KT).pipe((0,g.Q)(this.unSubs[1]),(0,pt.E)(this.store.select(b.rN))).subscribe(([n,a])=>{this.payments=n.payments.sent?n.payments.sent:[],this.invoices=a.invoices?a.invoices:[],(this.payments.length>0||this.invoices.length>0)&&(this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData())}),this.commonService.containerSizeUpdated.pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{switch(this.screenSize){case c.f7.MD:this.screenPaddingX=n.width/10;break;case c.f7.LG:this.screenPaddingX=n.width/16;break;default:this.screenPaddingX=n.width/20}this.view=[n.width-this.screenPaddingX,n.height/2.2],this.logger.info("Container Size: "+JSON.stringify(n)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(n){"svg"===n.srcElement.tagName&&n.srcElement.classList.length>0&&"ngx-charts"===n.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(n){this.transactionFilterValue=this.reportPeriod===c.rs[1]?n.series.toString()+"/"+this.startDate.getFullYear():n.series.toString().padStart(2,"0")+"/"+c.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(n,a){const o=Math.round(n.getTime()/1e3),l=Math.round(a.getTime()/1e3),m=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const u=this.payments?.filter(F=>F.firstPartTimestamp&&Math.floor(F.firstPartTimestamp/1e3)>=o&&Math.floor(F.firstPartTimestamp/1e3)"received"===F.status&&F.timestamp&&F.timestamp>=o&&F.timestamp{const P=new Date(F.firstPartTimestamp||0).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(F.recipientAmount||0),m[P].series[0].value=m[P].series[0].value+F.recipientAmount,m[P].series[0].extra.total=m[P].series[0].extra.total+1,this.transactionsReportSummary}),T?.map(F=>{const P=new Date(1e3*(F.timestamp||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(F.amountSettled||0),m[P].series[1].value=m[P].series[1].value+F.amountSettled,m[P].series[1].extra.total=m[P].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let F=0;F{const P=Math.floor((Math.floor((F.firstPartTimestamp||0)/1e3)-o)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(F.recipientAmount||0),m[P].series[0].value=m[P].series[0].value+F.recipientAmount,m[P].series[0].extra.total=m[P].series[0].extra.total+1,this.transactionsReportSummary}),T?.map(F=>{const P=Math.floor(((F.timestamp||0)-o)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(F.amountSettled||0),m[P].series[1].value=m[P].series[1].value+F.amountSettled,m[P].series[1].extra.total=m[P].series[1].extra.total+1,this.transactionsReportSummary})}return m}prepareTableData(){return this.transactionsReportData?.reduce((n,a)=>a.series[0].extra.total>0||a.series[1].extra.total>0?n.concat({date:a.date,amount_paid:a.series[0].value,num_payments:a.series[0].extra.total,amount_received:a.series[1].value,num_invoices:a.series[1].extra.total}):n,[])}onSelectionChange(n){const a=n.selDate.getMonth(),o=n.selDate.getFullYear();this.reportPeriod=n.selScrollRange,this.reportPeriod===c.rs[1]?(this.startDate=new Date(o,0,1,0,0,0),this.endDate=new Date(o,11,31,23,59,59)):(this.startDate=new Date(o,a,1,0,0,0),this.endDate=new Date(o,a,this.getMonthDays(a,o),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(n,a){return 1===n&&a%4==0?c.KR[n].days+1:c.KR[n].days}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-transactions-report"]],hostBindings:function(a,o){1&a&&t.bIt("mouseup",function(m){return o.onChartMouseUp(m)})},standalone:!1,decls:9,vars:4,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"two-color",3,"select","mouseup","view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding"],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(a,o){1&a&&(t.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),t.bIt("stepChanged",function(m){return o.onSelectionChange(m)}),t.k0s(),t.j41(2,"div",3),t.DNE(3,Cp,3,3,"div",4)(4,yp,2,0,"div",5),t.j41(5,"div",6),t.DNE(6,Fp,3,13,"ngx-charts-bar-vertical-2d",7),t.k0s(),t.j41(7,"div",6),t.DNE(8,Ep,1,5,"rtl-transactions-report-table",8),t.k0s()()()),2&a&&(t.R7$(3),t.Y8G("ngIf",o.transactionsNonZeroReportData.length>0),t.R7$(),t.Y8G("ngIf",o.transactionsNonZeroReportData.length<=0),t.R7$(2),t.Y8G("ngIf",o.transactionsNonZeroReportData.length>0),t.R7$(2),t.Y8G("ngIf",o.transactionsNonZeroReportData.length>0))},dependencies:[d.bT,_.DJ,_.sA,_.UI,Ut.Dl,zt.m,fp.T,d.QX],encapsulation:2,data:{animation:[Et.q]}}))}return i(),s})();var M=C(7186),Lp=C(13);function vp(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",9),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG();t.Y8G("routerLink",t.mNQ(e.link))("active",n.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Sp=(()=>{var i;class s{constructor(n){this.router=n,this.faSearch=E.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){const n=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=n?n.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(a=>a instanceof L.gx)).subscribe({next:a=>{const o=this.links.find(l=>a.urlAfterRedirects.includes(l.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-graph"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(a,o){if(1&a&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Graph Lookups"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),t.DNE(8,vp,2,4,"div",7),t.k0s(),t.nrm(9,"mat-tab-nav-panel",null,0),t.j41(11,"div",8),t.nrm(12,"router-outlet"),t.k0s()()()()),2&a){const l=t.sdS(10);t.R7$(),t.Y8G("icon",o.faSearch),t.R7$(6),t.Y8G("tabPanel",l),t.R7$(),t.Y8G("ngForOf",o.links)}},dependencies:[d.Sq,D.aY,x.RN,x.m2,_.DJ,_.sA,_.UI,G.Bu,G.hQ,G.Ql,L.n3,W.Wk],encapsulation:2}))}return i(),s})();const Rp=[{path:"",component:vt,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Da,canActivate:[(0,M.fe)()]},{path:"onchain",component:Eo,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"receive"},{path:"receive",component:cs,canActivate:[(0,M.fe)()]},{path:"send",component:ms,canActivate:[(0,M.fe)()]}]},{path:"connections",component:vo,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:Is,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:hr,canActivate:[(0,M.fe)()]},{path:"pending",component:Jr,canActivate:[(0,M.fe)()]},{path:"inactive",component:xc,canActivate:[(0,M.fe)()]}]},{path:"peers",component:L1,data:{sweepAll:!1},canActivate:[(0,M.fe)()]}]},{path:"transactions",component:Ro,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:It,canActivate:[(0,M.fe)()]},{path:"invoices",component:Tt,canActivate:[(0,M.fe)()]}]},{path:"routing",component:Io,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:Yt,canActivate:[(0,M.fe)()]},{path:"peers",component:sp,canActivate:[(0,M.fe)()]}]},{path:"reports",component:rp,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:hp,canActivate:[(0,M.fe)()]},{path:"transactions",component:xp,canActivate:[(0,M.fe)()]}]},{path:"graph",component:Sp,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:ls,canActivate:[(0,M.fe)()]},{path:"queryroutes",component:M1,canActivate:[(0,M.fe)()]}]},{path:"**",component:Lp.X}]}],kp=W.iI.forChild(Rp);var Ip=C(9029);let Tp=(()=>{var i;class s{static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)},this.\u0275mod=t.$C({type:s,bootstrap:[vt]}),this.\u0275inj=r.G2t({imports:[d.MD,Ip.G,kp]}))}return i(),s})()}}]); \ No newline at end of file diff --git a/frontend/190.0e6572086349bd7c.js b/frontend/190.0e6572086349bd7c.js new file mode 100644 index 00000000..7981f8d3 --- /dev/null +++ b/frontend/190.0e6572086349bd7c.js @@ -0,0 +1 @@ +(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[190],{9190(Ze,xe,S){"use strict";S.d(xe,{LNDModule:()=>PC});var y=S(2200),le=S(8132),j=S(3694),re=S(9881),e=S(3664),D=S(7575),b=S(2920);function T(t,s){1&t&&e.nrm(0,"mat-progress-bar",3)}let _e=(()=>{var t;class s{constructor(i){this.router=i,this.loading=!1,this.router.events.subscribe(o=>{switch(!0){case o instanceof j.Z:this.loading=!0;break;case o instanceof j.wF:case o instanceof j.j5:case o instanceof j.L6:this.loading=!1}})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lnd-root"]],standalone:!1,decls:4,vars:1,consts:[["outlet","outlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["color","primary","mode","indeterminate"]],template:function(o,a){1&o&&(e.j41(0,"div",1),e.DNE(1,T,1,0,"mat-progress-bar",2),e.nrm(2,"router-outlet",null,0),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf",a.loading))},dependencies:[y.bT,D.HM,b.DJ,b.sA,b.UI,j.n3],encapsulation:2,data:{animation:[re.E]}}))}return t(),s})();var C=S(1413),x=S(6977),me=S(3993),L=S(5964),q=S(614),I=S(5383),p=S(4416),W=S(9647),E=S(3536),r=S(2615),V=S(8570),G=S(9640),ce=S(1747),z=S(2571),ee=S(60),Ke=S(2598),B=S(5596),Le=S(2885),ke=S(2629),$e=S(9115),U=S(6038),J=S(6850),X=S(6695),A=S(2042),_=S(1676),O=S(6183),ne=S(1585),N=S(190),g=S(9417),$=S(8834),Z=S(3746),R=S(9588),ae=S(3029),Re=S(450),fe=S(455),pe=S(9587),ye=S(6114);function Ue(t,s){1&t&&(e.j41(0,"span",32),e.EFF(1,"= "),e.k0s())}function et(t,s){if(1&t&&(e.j41(0,"span",33),e.nrm(1,"fa-icon",34),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.convertedCurrency.symbol)}}function Xe(t,s){if(1&t&&e.nrm(0,"span",35),2&t){const n=e.XpG();e.Y8G("innerHTML",n.convertedCurrency.symbol,e.npT)}}function Ee(t,s){if(1&t&&(e.j41(0,"mat-option",36),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.JRh(e.bMT(2,2,n))}}function Ie(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.invoiceError)}}function tt(t,s){if(1&t&&(e.j41(0,"div",37),e.nrm(1,"fa-icon",38),e.DNE(2,Ie,2,1,"span",39),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.invoiceError)}}let nt=(()=>{var t;class s{constructor(i,o,a,l,h,f){this.dialogRef=i,this.data=o,this.store=a,this.decimalPipe=l,this.commonService=h,this.actions=f,this.faExclamationTriangle=I.zpE,this.convertedCurrency=null,this.memo="",this.isAmp=!1,this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=p.md,this.timeUnitEnum=p.F7,this.timeUnits=p.SY,this.selTimeUnit=p.F7.SECS,this.invoiceError="",this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.actions.pipe((0,x.Q)(this.unSubs[2]),(0,L.p)(i=>i.type===p.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(i=>{i.type===p.QP.UPDATE_API_CALL_STATUS_LND&&"SaveNewInvoice"===i.payload.action&&(this.invoiceError=i.payload.message,i.payload.status===p.wn.ERROR&&(this.invoiceError=i.payload.message),i.payload.status===p.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(i){this.invoiceError="";let o=0;o=this.expiry?this.selTimeUnit!==p.F7.SECS?this.commonService.convertTime(this.expiry,this.selTimeUnit,p.F7.SECS):this.expiry:p.It,this.store.dispatch((0,N.VK)({payload:{uiMessage:p.MZ.ADD_INVOICE,memo:this.memo,value:this.invoiceValue,private:this.private,expiry:o,is_amp:this.isAmp,pageSize:this.pageSize,openModal:!0}}))}resetData(){this.memo="",this.invoiceValue=null,this.private=!1,this.isAmp=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=p.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,p.BQ.SATS,p.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,x.Q)(this.unSubs[3])).subscribe({next:i=>{this.convertedCurrency=i,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,p.k.OTHER)+" "+this.convertedCurrency.unit},error:i=>{this.invoiceValueHint="Conversion Error: "+i}}))}onTimeUnitChange(i){this.expiry&&this.selTimeUnit!==i.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,i.value)),this.selTimeUnit=i.value}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(G.il),e.rXU(y.QX),e.rXU(z.h),e.rXU(ce.En))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-create-invoices"]],standalone:!1,decls:55,vars:20,consts:[["addInvoiceForm","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","end start"],["matInput","","autoFocus","","name","memo",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start end"],["matInput","","type","number","name","invoiceValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","column","fxFlex","24","fxLayoutAlign","start end"],["matInput","","type","number","name","expiry",3,"ngModelChange","step","min","ngModel"],["name","timeUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"ml-2"],["fxFlex","49","fxLayoutAlign","start start"],["color","primary","name","private",3,"ngModelChange","ngModel"],["matTooltip","Include routing hints for private channels","matTooltipPosition","above",1,"info-icon"],["color","primary","name","amp",3,"ngModelChange","ngModel"],["matTooltip","Atomic multipath payment invoice","matTooltipPosition","above",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Create Invoice"),e.k0s()(),e.j41(6,"button",6),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),e.EFF(13,"Memo"),e.k0s(),e.j41(14,"input",10),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.memo,f)||(a.memo=f),r.Njj(f)}),e.k0s()(),e.j41(15,"mat-form-field",11)(16,"mat-label"),e.EFF(17,"Amount"),e.k0s(),e.j41(18,"input",12),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.invoiceValue,f)||(a.invoiceValue=f),r.Njj(f)}),e.bIt("keyup",function(){return r.eBV(l),r.Njj(a.onInvoiceValueChange())}),e.k0s(),e.j41(19,"span",13),e.EFF(20,"Sats "),e.k0s(),e.j41(21,"mat-hint",14),e.DNE(22,Ue,2,0,"span",15)(23,et,2,1,"span",16)(24,Xe,1,1,"span",17),e.EFF(25),e.k0s()(),e.j41(26,"mat-form-field",18)(27,"mat-label"),e.EFF(28,"Expiry"),e.k0s(),e.j41(29,"input",19),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.expiry,f)||(a.expiry=f),r.Njj(f)}),e.k0s(),e.j41(30,"span",13),e.EFF(31),e.nI1(32,"titlecase"),e.k0s()(),e.j41(33,"mat-form-field",18)(34,"mat-label"),e.EFF(35,"Time Unit"),e.k0s(),e.j41(36,"mat-select",20),e.bIt("selectionChange",function(f){return r.eBV(l),r.Njj(a.onTimeUnitChange(f))}),e.DNE(37,Ee,3,4,"mat-option",21),e.k0s()(),e.j41(38,"div",22)(39,"div",23)(40,"mat-slide-toggle",24),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.private,f)||(a.private=f),r.Njj(f)}),e.EFF(41,"Private Routing Hints"),e.k0s(),e.j41(42,"mat-icon",25),e.EFF(43,"info_outline"),e.k0s()(),e.j41(44,"div",23)(45,"mat-slide-toggle",26),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.isAmp,f)||(a.isAmp=f),r.Njj(f)}),e.EFF(46,"AMP Invoice"),e.k0s(),e.j41(47,"mat-icon",27),e.EFF(48,"info_outline"),e.k0s()()(),e.DNE(49,tt,3,2,"div",28),e.j41(50,"div",29)(51,"button",30),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(52,"Clear Field"),e.k0s(),e.j41(53,"button",31),e.bIt("click",function(){r.eBV(l);const f=e.sdS(10);return r.Njj(a.onAddInvoice(f))}),e.EFF(54,"Create Invoice"),e.k0s()()()()()()}2&o&&(e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(8),e.R50("ngModel",a.memo),e.R7$(4),e.Y8G("step",100)("min",1),e.R50("ngModel",a.invoiceValue),e.R7$(4),e.Y8G("ngIf",""!==a.invoiceValueHint),e.R7$(),e.Y8G("ngIf",a.convertedCurrency&&"FA"===a.convertedCurrency.iconType&&""!==a.invoiceValueHint),e.R7$(),e.Y8G("ngIf",a.convertedCurrency&&"SVG"===a.convertedCurrency.iconType&&""!==a.invoiceValueHint),e.R7$(),e.SpI(" ",a.invoiceValueHint," "),e.R7$(4),e.Y8G("step",a.selTimeUnit===a.timeUnitEnum.SECS?300:a.selTimeUnit===a.timeUnitEnum.MINS?10:a.selTimeUnit===a.timeUnitEnum.HOURS?2:1)("min",1),e.R50("ngModel",a.expiry),e.R7$(2),e.SpI("",e.bMT(32,18,a.selTimeUnit)," "),e.R7$(5),e.Y8G("value",a.selTimeUnit),e.R7$(),e.Y8G("ngForOf",a.timeUnits),e.R7$(3),e.R50("ngModel",a.private),e.R7$(5),e.R50("ngModel",a.isAmp),e.R7$(4),e.Y8G("ngIf",""!==a.invoiceError))},dependencies:[y.Sq,y.bT,g.qT,g.me,g.Q0,g.BC,g.cb,g.VZ,g.vS,g.cV,ee.aY,ne.tx,$.$z,B.m2,B.MM,ke.An,Z.fg,R.rl,R.nJ,R.MV,R.yw,b.DJ,b.sA,b.UI,O.VO,ae.wT,Re.sG,fe.oV,pe.N,ye.V,y.PV],encapsulation:2}))}return t(),s})();var Me=S(6391),Y=S(1771),ue=S(2929),K=S(497);const je=()=>["all"],ve=t=>({"error-border":t}),Oe=()=>["no_invoice"],Ge=t=>({"mr-0":t}),ge=t=>({width:t}),it=t=>({"display-none":t});function u(t,s){1&t&&(e.j41(0,"span",19),e.EFF(1,"= "),e.k0s())}function c(t,s){if(1&t&&(e.j41(0,"span",20),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.convertedCurrency.symbol)}}function m(t,s){if(1&t&&e.nrm(0,"span",22),2&t){const n=e.XpG(2);e.Y8G("innerHTML",n.convertedCurrency.symbol,e.npT)}}function d(t,s){if(1&t){const n=e.RV6();e.j41(0,"form",6,0)(2,"mat-form-field",7)(3,"mat-label"),e.EFF(4,"Memo"),e.k0s(),e.j41(5,"input",8),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.memo,o)||(a.memo=o),r.Njj(o)}),e.k0s()(),e.j41(6,"mat-form-field",9)(7,"mat-label"),e.EFF(8,"Amount"),e.k0s(),e.j41(9,"input",10),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.invoiceValue,o)||(a.invoiceValue=o),r.Njj(o)}),e.bIt("keyup",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onInvoiceValueChange())}),e.k0s(),e.j41(10,"span",11),e.EFF(11,"Sats "),e.k0s(),e.j41(12,"mat-hint",12),e.DNE(13,u,2,0,"span",13)(14,c,2,1,"span",14)(15,m,1,1,"span",15),e.EFF(16),e.k0s()(),e.j41(17,"div",16)(18,"button",17),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.EFF(19,"Clear Field"),e.k0s(),e.j41(20,"button",18),e.bIt("click",function(){r.eBV(n);const o=e.sdS(1),a=e.XpG();return r.Njj(a.onAddInvoice(o))}),e.EFF(21,"Create Invoice"),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(5),e.R50("ngModel",n.memo),e.R7$(4),e.Y8G("step",100)("min",1),e.R50("ngModel",n.invoiceValue),e.R7$(4),e.Y8G("ngIf",""!==n.invoiceValueHint),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"FA"===n.convertedCurrency.iconType&&""!==n.invoiceValueHint),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"SVG"===n.convertedCurrency.iconType&&""!==n.invoiceValueHint),e.R7$(),e.SpI(" ",n.invoiceValueHint," ")}}function F(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",23)(1,"button",24),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.openCreateInvoiceModal())}),e.EFF(2,"Create Invoice"),e.k0s()()}}function v(t,s){if(1&t&&(e.j41(0,"mat-option",72),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function k(t,s){1&t&&e.nrm(0,"mat-progress-bar",73)}function H(t,s){1&t&&e.nrm(0,"th",74)}function se(t,s){if(1&t&&e.nrm(0,"span",80),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Ge,n.screenSize===n.screenSizeEnum.XS))}}function ie(t,s){if(1&t&&e.nrm(0,"span",81),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Ge,n.screenSize===n.screenSizeEnum.XS))}}function oe(t,s){if(1&t&&e.nrm(0,"span",82),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Ge,n.screenSize===n.screenSizeEnum.XS))}}function te(t,s){if(1&t&&e.nrm(0,"span",83),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Ge,n.screenSize===n.screenSizeEnum.XS))}}function Ot(t,s){if(1&t&&(e.j41(0,"td",75),e.DNE(1,se,1,3,"span",76)(2,ie,1,3,"span",77)(3,oe,1,3,"span",78)(4,te,1,3,"span",79),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf","OPEN"===(null==n?null:n.state)),e.R7$(),e.Y8G("ngIf","SETTLED"===(null==n?null:n.state)),e.R7$(),e.Y8G("ngIf","ACCEPTED"===(null==n?null:n.state)),e.R7$(),e.Y8G("ngIf","CANCELED"===(null==n?null:n.state))}}function Vt(t,s){1&t&&e.nrm(0,"th",84)}function Yt(t,s){if(1&t&&(e.j41(0,"span",87),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faEyeSlash)}}function Ut(t,s){if(1&t&&(e.j41(0,"span",88),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faEye)}}function Xt(t,s){if(1&t&&(e.j41(0,"td",75),e.DNE(1,Yt,2,1,"span",85)(2,Ut,2,1,"span",86),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",n.private),e.R7$(),e.Y8G("ngIf",!n.private)}}function Ht(t,s){1&t&&e.nrm(0,"th",89)}function qt(t,s){if(1&t&&(e.j41(0,"span",92),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faArrowsTurnToDots)}}function zt(t,s){if(1&t&&(e.j41(0,"span",93),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faArrowsTurnRight)}}function Jt(t,s){if(1&t&&(e.j41(0,"td",75),e.DNE(1,qt,2,1,"span",90)(2,zt,2,1,"span",91),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",n.is_keysend),e.R7$(),e.Y8G("ngIf",!n.is_keysend)}}function Qt(t,s){1&t&&e.nrm(0,"th",94)}function Wt(t,s){if(1&t&&(e.j41(0,"span",97),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faMoneyBill1)}}function Zt(t,s){if(1&t&&(e.j41(0,"span",98),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faBurst)}}function Kt(t,s){if(1&t&&(e.j41(0,"td",75),e.DNE(1,Wt,2,1,"span",95)(2,Zt,2,1,"span",96),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",!n.is_amp),e.R7$(),e.Y8G("ngIf",n.is_amp)}}function en(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Date Created"),e.k0s())}function tn(t,s){if(1&t&&(e.j41(0,"td",75),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,1e3*(null==n?null:n.creation_date),"dd/MMM/y HH:mm"))}}function nn(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Date Settled"),e.k0s())}function an(t,s){if(1&t&&(e.j41(0,"td",75),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(0!=+(null==n?null:n.settle_date)?e.i5U(2,1,1e3*+(null==n?null:n.settle_date),"dd/MMM/y HH:mm"):"-")}}function sn(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Memo"),e.k0s())}function on(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ge,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.memo)}}function ln(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Preimage"),e.k0s())}function rn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ge,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.r_preimage)}}function cn(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Preimage Hash"),e.k0s())}function pn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ge,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.r_hash)}}function mn(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Payment Address"),e.k0s())}function un(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ge,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_addr)}}function hn(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Payment Request"),e.k0s())}function dn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ge,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_request)}}function _n(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Description Hash"),e.k0s())}function fn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ge,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.description_hash)}}function gn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"Expiry"),e.k0s())}function Cn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.expiry)," ")}}function yn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"CLTV Expiry"),e.k0s())}function bn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.cltv_expiry)," ")}}function Fn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"Add Index"),e.k0s())}function xn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.add_index)," ")}}function vn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"Settle Index"),e.k0s())}function Tn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.settle_index)," ")}}function kn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"Amount (Sats)"),e.k0s())}function Sn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.value)," ")}}function Rn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"Amount Settled (Sats)"),e.k0s())}function En(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.amt_paid_sat)," ")}}function In(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",104)(1,"div",105)(2,"mat-select",106),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",107),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function wn(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",108)(1,"div",105)(2,"mat-select",109),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",107),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onInvoiceClick(o))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",107),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onRefreshInvoice(o))}),e.EFF(7,"Refresh"),e.k0s()()()()}}function Ln(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No invoice available."),e.k0s())}function jn(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting invoices..."),e.k0s())}function Gn(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.errorMessage)}}function Dn(t,s){if(1&t&&(e.j41(0,"td",110),e.DNE(1,Ln,2,0,"p",111)(2,jn,2,0,"p",111)(3,Gn,2,1,"p",111),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=n.invoices&&n.invoices.data)||(null==n.invoices||null==n.invoices.data?null:n.invoices.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.invoices&&n.invoices.data)||(null==n.invoices||null==n.invoices.data?null:n.invoices.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.invoices&&n.invoices.data)||(null==n.invoices||null==n.invoices.data?null:n.invoices.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Nn(t,s){if(1&t&&e.nrm(0,"tr",112),2&t){const n=e.XpG(2);e.Y8G("ngClass",e.eq3(1,it,(null==n.invoices?null:n.invoices.data)&&(null==n.invoices||null==n.invoices.data?null:n.invoices.data.length)>0))}}function Pn(t,s){1&t&&e.nrm(0,"tr",113)}function Bn(t,s){1&t&&e.nrm(0,"tr",114)}function An(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",25)(1,"div",26)(2,"div",27),e.nrm(3,"fa-icon",28),e.j41(4,"span",29),e.EFF(5,"Invoices History"),e.k0s()(),e.j41(6,"div",30)(7,"mat-form-field",31)(8,"mat-label"),e.EFF(9,"Filter By"),e.k0s(),e.j41(10,"mat-select",32),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilterBy,o)||(a.selFilterBy=o),r.Njj(o)}),e.bIt("selectionChange",function(){r.eBV(n);const o=e.XpG();return o.selFilter="",r.Njj(o.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,v,2,2,"mat-option",33),e.k0s()()(),e.j41(13,"mat-form-field",31)(14,"mat-label"),e.EFF(15,"Filter"),e.k0s(),e.j41(16,"input",34),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilter,o)||(a.selFilter=o),r.Njj(o)}),e.bIt("input",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())})("keyup",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())}),e.k0s()()()(),e.j41(17,"div",35),e.DNE(18,k,1,0,"mat-progress-bar",36),e.j41(19,"table",37,1),e.qex(21,38),e.DNE(22,H,1,0,"th",39)(23,Ot,5,4,"td",40),e.bVm(),e.qex(24,41),e.DNE(25,Vt,1,0,"th",42)(26,Xt,3,2,"td",40),e.bVm(),e.qex(27,43),e.DNE(28,Ht,1,0,"th",44)(29,Jt,3,2,"td",40),e.bVm(),e.qex(30,45),e.DNE(31,Qt,1,0,"th",46)(32,Kt,3,2,"td",40),e.bVm(),e.qex(33,47),e.DNE(34,en,2,0,"th",48)(35,tn,3,4,"td",40),e.bVm(),e.qex(36,49),e.DNE(37,nn,2,0,"th",48)(38,an,3,4,"td",40),e.bVm(),e.qex(39,50),e.DNE(40,sn,2,0,"th",48)(41,on,4,4,"td",40),e.bVm(),e.qex(42,51),e.DNE(43,ln,2,0,"th",48)(44,rn,4,4,"td",40),e.bVm(),e.qex(45,52),e.DNE(46,cn,2,0,"th",48)(47,pn,4,4,"td",40),e.bVm(),e.qex(48,53),e.DNE(49,mn,2,0,"th",48)(50,un,4,4,"td",40),e.bVm(),e.qex(51,54),e.DNE(52,hn,2,0,"th",48)(53,dn,4,4,"td",40),e.bVm(),e.qex(54,55),e.DNE(55,_n,2,0,"th",48)(56,fn,4,4,"td",40),e.bVm(),e.qex(57,56),e.DNE(58,gn,2,0,"th",57)(59,Cn,4,3,"td",40),e.bVm(),e.qex(60,58),e.DNE(61,yn,2,0,"th",57)(62,bn,4,3,"td",40),e.bVm(),e.qex(63,59),e.DNE(64,Fn,2,0,"th",57)(65,xn,4,3,"td",40),e.bVm(),e.qex(66,60),e.DNE(67,vn,2,0,"th",57)(68,Tn,4,3,"td",40),e.bVm(),e.qex(69,61),e.DNE(70,kn,2,0,"th",57)(71,Sn,4,3,"td",40),e.bVm(),e.qex(72,62),e.DNE(73,Rn,2,0,"th",57)(74,En,4,3,"td",40),e.bVm(),e.qex(75,63),e.DNE(76,In,6,0,"th",64)(77,wn,8,0,"td",65),e.bVm(),e.qex(78,66),e.DNE(79,Dn,4,3,"td",67),e.bVm(),e.DNE(80,Nn,1,3,"tr",68)(81,Pn,1,0,"tr",69)(82,Bn,1,0,"tr",70),e.k0s(),e.j41(83,"mat-paginator",71),e.bIt("page",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onPageChange(o))}),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(3),e.Y8G("icon",n.faHistory),e.R7$(7),e.R50("ngModel",n.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(16,je).concat(n.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",n.selFilter),e.R7$(2),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",n.tableSetting.sortBy)("matSortDirection",n.tableSetting.sortOrder)("dataSource",n.invoices)("ngClass",e.eq3(17,ve,""!==n.errorMessage)),e.R7$(61),e.Y8G("matFooterRowDef",e.lJ4(19,Oe)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns),e.R7$(),e.Y8G("length",n.totalInvoices)("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("showFirstLastButtons",n.screenSize!==n.screenSizeEnum.XS)}}let gt=(()=>{var t;class s{constructor(i,o,a,l,h,f,P){this.logger=i,this.store=o,this.decimalPipe=a,this.commonService=l,this.datePipe=h,this.actions=f,this.camelCaseWithReplace=P,this.calledFrom="transactions",this.faEye=I.pS3,this.faEyeSlash=I.k6j,this.faHistory=I.Int,this.faArrowsTurnToDots=I.If6,this.faArrowsTurnRight=I.peG,this.faBurst=I.M29,this.faMoneyBill1=I.Ccf,this.convertedCurrency=null,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:p.md,sortBy:"creation_date",sortOrder:p.oi.DESCENDING},this.newlyAddedInvoiceMemo=null,this.newlyAddedInvoiceValue=null,this.memo="",this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoicesData=[],this.invoices=new _.I6([]),this.information={},this.selFilter="",this.private=!1,this.expiryStep=100,this.pageSize=p.md,this.pageSizeOptions=p.xp,this.firstOffset=-1,this.lastOffset=-1,this.totalInvoices=0,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("state"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.rN).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalInvoices=i.listInvoices.total_invoices||0,this.firstOffset=+(i.listInvoices.first_index_offset||-1),this.lastOffset=+(i.listInvoices.last_index_offset||-1),this.invoicesData=i.listInvoices.invoices||[],this.invoicesData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoicesData),this.logger.info(i)}),this.actions.pipe((0,x.Q)(this.unSubs[4]),(0,L.p)(i=>i.type===p.QP.SET_LOOKUP_LND||i.type===p.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(i=>{i.type===p.QP.SET_LOOKUP_LND&&this.invoicesData&&this.sort&&this.paginator&&i.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(i.payload))),this.loadInvoicesTable(this.invoicesData))})}ngAfterViewInit(){this.invoicesData.length>0&&this.loadInvoicesTable(this.invoicesData)}onAddInvoice(i){const o=this.expiry?this.expiry:p.It;this.newlyAddedInvoiceMemo=this.memo,this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,N.VK)({payload:{uiMessage:p.MZ.ADD_INVOICE,memo:this.memo,value:this.invoiceValue,private:this.private,expiry:o,is_amp:!1,pageSize:this.pageSize,openModal:!0}})),this.resetData()}onInvoiceClick(i){this.store.dispatch((0,Y.xO)({payload:{data:{invoice:i,newlyAdded:!1,component:Me.H}}}))}onRefreshInvoice(i){i&&i.r_hash&&this.store.dispatch((0,N.Yi)({payload:{openSnackBar:!0,paymentHash:Buffer.from(i.r_hash.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}}))}updateInvoicesData(i){this.invoicesData=this.invoicesData?.map(o=>o.r_hash===i.r_hash?i:o)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.invoices.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.creation_date?this.datePipe.transform(new Date(1e3*i.creation_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+(i.settle_date?this.datePipe.transform(new Date(1e3*i.settle_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(i).toLowerCase();break;case"creation_date":case"settle_date":a=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"private":a=i?.private?"private":"public";break;case"is_keysend":a=i?.is_keysend?"keysend invoices":"non keysend invoices";break;case"is_amp":a=i?.is_amp?"atomic multi path payment":"non atomic payment";break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"is_keysend"===this.selFilterBy||"is_amp"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}loadInvoicesTable(i){this.invoices=new _.I6(i?[...i]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.invoices)}resetData(){this.memo="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint=""}onPageChange(i){let o=!0,a=this.lastOffset;this.pageSize=i.pageSize,0===i.pageIndex?(o=!0,a=0):i.previousPageIndex&&i.pageIndexi.previousPageIndex&&i.length>(i.pageIndex+1)*i.pageSize?(o=!0,a=this.firstOffset):i.length<=(i.pageIndex+1)*i.pageSize&&(o=!1,a=0),this.store.dispatch((0,N.Do)({payload:{num_max_invoices:i.pageSize,index_offset:a,reversed:o}}))}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,p.BQ.SATS,p.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,x.Q)(this.unSubs[5])).subscribe({next:i=>{this.convertedCurrency=i,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,p.k.OTHER)+" "+this.convertedCurrency.unit},error:i=>{this.invoiceValueHint="Conversion Error: "+i}}))}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}openCreateInvoiceModal(){this.store.dispatch((0,Y.xO)({payload:{data:{pageSize:this.pageSize,component:nt}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(y.QX),e.rXU(z.h),e.rXU(y.vh),e.rXU(ce.En),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lightning-invoices"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Invoices")}])],decls:4,vars:3,consts:[["addInvoiceForm","ngForm"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","end start"],["matInput","","tabindex","1","name","memo",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","2","name","invValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","5",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private",4,"matHeaderCellDef"],["matColumnDef","is_keysend"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Keysend",4,"matHeaderCellDef"],["matColumnDef","is_amp"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","AMP",4,"matHeaderCellDef"],["matColumnDef","creation_date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","settle_date"],["matColumnDef","memo"],["matColumnDef","r_preimage"],["matColumnDef","r_hash"],["matColumnDef","payment_addr"],["matColumnDef","payment_request"],["matColumnDef","description_hash"],["matColumnDef","expiry"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","cltv_expiry"],["matColumnDef","add_index"],["matColumnDef","settle_index"],["matColumnDef","value"],["matColumnDef","amt_paid_sat"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","6",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"page","length","pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State"],["mat-cell",""],["class","dot grey","matTooltip","Open","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Canceled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Open","matTooltipPosition","right",1,"dot","grey",3,"ngClass"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Canceled","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private"],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Keysend"],["class","mr-1","matTooltip","Keysend Invoices","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Non Keysend Invoices","matTooltipPosition","right",4,"ngIf"],["matTooltip","Keysend Invoices","matTooltipPosition","right",1,"mr-1"],["matTooltip","Non Keysend Invoices","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","AMP"],["class","mr-1","matTooltip","Non Atomic Payment","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Atomic Multi Path Payment","matTooltipPosition","right",4,"ngIf"],["matTooltip","Non Atomic Payment","matTooltipPosition","right",1,"mr-1"],["matTooltip","Atomic Multi Path Payment","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","6"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){1&o&&(e.j41(0,"div",2),e.DNE(1,d,22,8,"form",3)(2,F,3,0,"div",4)(3,An,84,20,"div",5),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf","home"===a.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===a.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===a.calledFrom))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.qT,g.me,g.Q0,g.BC,g.cb,g.VZ,g.vS,g.cV,ee.aY,$.$z,Z.fg,R.rl,R.nJ,R.MV,R.yw,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,fe.oV,X.iy,K.ZF,K.Ld,ye.V,y.QX,y.vh],styles:[".mat-column-state[_ngcontent-%COMP%], .mat-column-private[_ngcontent-%COMP%], .mat-column-is_keysend[_ngcontent-%COMP%], .mat-column-is_amp[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return t(),s})();var be=S(6697),Fe=S(1534),he=S(9454),De=S(2628);const $n=["paymentReq"];function Mn(t,s){if(1&t&&(e.j41(0,"span",36),e.nrm(1,"fa-icon",37),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.convertedCurrency.symbol)}}function On(t,s){if(1&t&&e.nrm(0,"span",38),2&t){const n=e.XpG(2);e.Y8G("innerHTML",n.convertedCurrency.symbol,e.npT)}}function Vn(t,s){if(1&t&&(e.j41(0,"mat-hint",33),e.EFF(1),e.DNE(2,Mn,2,1,"span",34)(3,On,1,1,"span",35),e.EFF(4),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI(" ",n.paymentDecodedHintPre," "),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"FA"===n.convertedCurrency.iconType&&""!==n.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"SVG"===n.convertedCurrency.iconType&&""!==n.paymentDecodedHintPre),e.R7$(),e.SpI(" ",n.paymentDecodedHintPost," ")}}function Yn(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Payment request is required."),e.k0s())}function Un(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.JRh(n.paymentDecodedHint)}}function Xn(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Payment amount is required."),e.k0s())}function Hn(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",6)(1,"mat-label"),e.EFF(2,"Amount (Sats)"),e.k0s(),e.j41(3,"input",39,4),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.paymentAmount,o)||(a.paymentAmount=o),r.Njj(o)}),e.bIt("change",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onAmountChange(o))}),e.k0s(),e.j41(5,"mat-hint"),e.EFF(6,"It is a zero amount invoice, enter amount to be paid."),e.k0s(),e.DNE(7,Xn,2,0,"mat-error",16),e.k0s()}if(2&t){const n=e.XpG();e.R7$(3),e.R50("ngModel",n.paymentAmount),e.R7$(4),e.Y8G("ngIf",!n.paymentAmount)}}function qn(t,s){if(1&t&&(e.j41(0,"mat-option",40),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.SpI(" ",null==n?null:n.name," ")}}function zn(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("",null==n.selFeeLimitType?null:n.selFeeLimitType.placeholder," is required.")}}function Jn(t,s){if(1&t&&(e.j41(0,"mat-option",40),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.JRh((null==n?null:n.remote_alias)||(null==n?null:n.chan_id))}}function Qn(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Channel not found in the list."),e.k0s())}function Wn(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.paymentError)}}function Zn(t,s){if(1&t&&(e.j41(0,"div",41),e.nrm(1,"fa-icon",42),e.DNE(2,Wn,2,1,"span",16),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.paymentError)}}let Kn=(()=>{var t;class s{constructor(i,o,a,l,h,f,P){this.dialogRef=i,this.store=o,this.logger=a,this.commonService=l,this.decimalPipe=h,this.actions=f,this.dataService=P,this.faExclamationTriangle=I.zpE,this.convertedCurrency=null,this.paymentDecoded={},this.zeroAmtInvoice=!1,this.paymentAmount=null,this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.showAdvanced=!1,this.activeChannels=[],this.filteredMinAmtActvChannels=[],this.selectedChannelCtrl=new g.hs,this.isAmp=!1,this.feeLimit=null,this.selFeeLimitType=p.nv[0],this.feeLimitTypes=p.nv,this.advancedTitle="Advanced Options",this.paymentError="",this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(a=>{this.selNode=a}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[1])).subscribe(a=>{this.activeChannels=a.channels&&a.channels.length?a.channels?.filter(l=>l.active):[],this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.logger.info(a)}),this.actions.pipe((0,x.Q)(this.unSubs[2]),(0,L.p)(a=>a.type===p.QP.UPDATE_API_CALL_STATUS_LND||a.type===p.QP.SEND_PAYMENT_STATUS_LND)).subscribe(a=>{a.type===p.QP.SEND_PAYMENT_STATUS_LND&&this.dialogRef.close(),a.type===p.QP.UPDATE_API_CALL_STATUS_LND&&a.payload.status===p.wn.ERROR&&"SendPayment"===a.payload.action&&(delete this.paymentDecoded.num_satoshis,this.paymentError=a.payload.message)});let i="",o="";this.activeChannels=this.activeChannels.sort((a,l)=>(i=a.remote_alias?a.remote_alias.toLowerCase():a.chan_id?a.chan_id.toLowerCase():"",o=l.remote_alias?l.remote_alias.toLowerCase():l.chan_id?l.chan_id.toLowerCase():"",io?1:0)),this.selectedChannelCtrl.valueChanges.pipe((0,x.Q)(this.unSubs[3])).subscribe(a=>{"string"==typeof a&&(this.filteredMinAmtActvChannels=this.filterChannels())})}filterChannels(){return this.activeChannels&&this.activeChannels.length?this.activeChannels?.filter(i=>0===(i.remote_alias?i.remote_alias.toLowerCase():i.chan_id?i.chan_id.toLowerCase():"").indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")&&(i.local_balance||0)>=+(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)):[]}displayFn(i){return i&&i.remote_alias?i.remote_alias:i&&i.chan_id?i.chan_id:""}onSelectedChannelChanged(){if(this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.length>0&&"string"==typeof this.selectedChannelCtrl.value){const i=this.activeChannels&&this.activeChannels.length?this.activeChannels?.filter(o=>{const a=o.remote_alias?o.remote_alias.toLowerCase():o.chan_id?o.chan_id.toLowerCase():"";return a.length===this.selectedChannelCtrl.value.length&&0===a.indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")}):[];i&&i.length>0?(this.selectedChannelCtrl.setValue(i[0]),this.selectedChannelCtrl.setErrors(null)):this.selectedChannelCtrl.setErrors({notfound:!0})}}onSendPayment(){if(this.selectedChannelCtrl.value&&"string"==typeof this.selectedChannelCtrl.value&&this.onSelectedChannelChanged(),!this.paymentRequest||this.zeroAmtInvoice&&(!this.paymentAmount||this.paymentAmount<=0)||"string"==typeof this.selectedChannelCtrl.value)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.onPaymentRequestEntry(this.paymentRequest)}sendPayment(){if(this.selFeeLimitType!==this.feeLimitTypes[0]&&!this.feeLimit)return!0;if(this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis){this.zeroAmtInvoice=!1;const i={uiMessage:p.MZ.SEND_PAYMENT,payment_request:this.paymentRequest,amp:this.isAmp,outgoing_chan_ids:this.selectedChannelCtrl.value?.chan_id?[this.selectedChannelCtrl.value.chan_id]:void 0,fee_limit_sat:(0,p.C6)(this.selFeeLimitType.id,this.feeLimit,+this.paymentDecoded.num_satoshis||0),fromDialog:!0};this.store.dispatch((0,N.Fd)({payload:i}))}else{this.zeroAmtInvoice=!0,this.paymentDecoded.num_satoshis=this.paymentAmount?.toString()||"";const i={uiMessage:p.MZ.SEND_PAYMENT,payment_request:this.paymentRequest,amp:this.isAmp,amt:this.paymentAmount||0,outgoing_chan_ids:this.selectedChannelCtrl.value?.chan_id?[this.selectedChannelCtrl.value.chan_id]:void 0,fee_limit_sat:(0,p.C6)(this.selFeeLimitType.id,this.feeLimit,this.paymentAmount||0),fromDialog:!0};this.store.dispatch((0,N.Fd)({payload:i}))}}onAmountChange(i){delete this.paymentDecoded.num_satoshis}onPaymentRequestEntry(i){this.paymentRequest=i,this.paymentAmount=null,this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentRequest&&this.paymentRequest.length>100&&(this.paymentReq.control.setErrors(null),this.zeroAmtInvoice=!1,this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,be.s)(1)).subscribe({next:o=>{this.paymentDecoded=o,this.selectedChannelCtrl.setValue(null),this.onAdvancedPanelToggle(!0,!0),this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis?(this.filteredMinAmtActvChannels=this.filterChannels(),this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis,p.BQ.SATS,p.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"BTC",this.selNode.settings.fiatConversion).pipe((0,x.Q)(this.unSubs[4])).subscribe({next:a=>{this.convertedCurrency=a,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(a.OTHER?a.OTHER:0,p.k.OTHER)+") | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")},error:a=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None"),this.paymentDecodedHintPost="")):(this.zeroAmtInvoice=!0,this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.paymentDecodedHintPre="Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None"),this.paymentDecodedHintPost="")},error:o=>{this.logger.error(o),this.paymentDecodedHintPre="ERROR: "+o.message,this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}onAdvancedPanelToggle(i,o){if(i&&!o){const a=this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.remote_alias?this.selectedChannelCtrl.value.remote_alias:this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.chan_id?this.selectedChannelCtrl.value.chan_id:"";this.advancedTitle="Advanced Options | "+this.selFeeLimitType.name+("none"===this.selFeeLimitType.id?"":": "+this.feeLimit)+(""!==a?" | First Outgoing Channel: "+a:"")}else this.advancedTitle="Advanced Options"}resetData(){this.paymentDecoded={},this.paymentRequest="",this.isAmp=!1,this.selectedChannelCtrl.setValue(null),this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.feeLimit=null,this.selFeeLimitType=p.nv[0],this.advancedTitle="Advanced Options",this.zeroAmtInvoice=!1,this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost=""}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(G.il),e.rXU(V.gP),e.rXU(z.h),e.rXU(y.QX),e.rXU(ce.En),e.rXU(Fe.u))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lightning-send-payments"]],viewQuery:function(o,a){if(1&o&&e.GBs($n,5),2&o){let l;e.mGM(l=e.lsd())&&(a.paymentReq=l.first)}},standalone:!1,decls:53,vars:22,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["fLmt","ngModel"],["auto","matAutocomplete"],["paymentAmt","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","11","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayoutAlign","space-between stretch","fxLayout","column"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","name","paymentRequest","rows","4","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxFlex","100","fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","27","fxLayoutAlign","start end"],["tabindex","5",3,"valueChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","33"],["matInput","","type","number","name","feeLmt","required","","tabindex","6",3,"ngModelChange","step","min","disabled","ngModel"],["fxLayout","column","fxFlex","37","fxLayoutAlign","start end"],["type","text","aria-label","First Outgoing Channel","matInput","","tabindex","7",3,"formControl","matAutocomplete"],[3,"optionSelected","displayWith"],["fxFlex","25","tabindex","8","color","primary","name","isAmp",3,"ngModelChange","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","9","type","reset",1,"mr-1",3,"click"],["mat-button","","id","sendBtn","color","primary","tabindex","10",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["matInput","","name","amount","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",5)(1,"div",6)(2,"mat-card-header",7)(3,"div",8)(4,"span",9),e.EFF(5,"Send Payment"),e.k0s()(),e.j41(6,"button",10),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",11)(9,"form",12,0)(11,"mat-form-field",13)(12,"mat-label"),e.EFF(13,"Payment Request"),e.k0s(),e.j41(14,"textarea",14,1),e.bIt("ngModelChange",function(f){return r.eBV(l),r.Njj(a.onPaymentRequestEntry(f))})("matTextareaAutosize",function(){return r.eBV(l),r.Njj(!0)}),e.k0s(),e.DNE(16,Vn,5,4,"mat-hint",15)(17,Yn,2,0,"mat-error",16)(18,Un,2,1,"mat-error",16),e.k0s(),e.DNE(19,Hn,8,2,"mat-form-field",17),e.j41(20,"mat-expansion-panel",18),e.bIt("closed",function(){return r.eBV(l),r.Njj(a.onAdvancedPanelToggle(!0,!1))})("opened",function(){return r.eBV(l),r.Njj(a.onAdvancedPanelToggle(!1,!1))}),e.j41(21,"mat-expansion-panel-header")(22,"mat-panel-title")(23,"span"),e.EFF(24),e.k0s()()(),e.j41(25,"div",19)(26,"mat-form-field",20)(27,"mat-label"),e.EFF(28,"Fee Limits"),e.k0s(),e.j41(29,"mat-select",21),e.mxI("valueChange",function(f){return r.eBV(l),e.DH7(a.selFeeLimitType,f)||(a.selFeeLimitType=f),r.Njj(f)}),e.DNE(30,qn,2,2,"mat-option",22),e.k0s()(),e.j41(31,"mat-form-field",23)(32,"mat-label"),e.EFF(33),e.k0s(),e.j41(34,"input",24,2),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.feeLimit,f)||(a.feeLimit=f),r.Njj(f)}),e.k0s(),e.DNE(36,zn,2,1,"mat-error",16),e.k0s(),e.j41(37,"mat-form-field",25)(38,"mat-label"),e.EFF(39,"First Outgoing Channel"),e.k0s(),e.nrm(40,"input",26),e.j41(41,"mat-autocomplete",27,3),e.bIt("optionSelected",function(){return r.eBV(l),r.Njj(a.onSelectedChannelChanged())}),e.DNE(43,Jn,2,2,"mat-option",22),e.k0s(),e.DNE(44,Qn,2,0,"mat-error",16),e.k0s(),e.j41(45,"mat-slide-toggle",28),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.isAmp,f)||(a.isAmp=f),r.Njj(f)}),e.EFF(46,"AMP Payment"),e.k0s()()(),e.DNE(47,Zn,3,2,"div",29),e.j41(48,"div",30)(49,"button",31),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(50,"Clear Fields"),e.k0s(),e.j41(51,"button",32),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onSendPayment())}),e.EFF(52,"Send Payment"),e.k0s()()()()()()}if(2&o){const l=e.sdS(15),h=e.sdS(42);e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(8),e.Y8G("ngModel",a.paymentRequest),e.R7$(2),e.Y8G("ngIf",a.paymentRequest&&""!==a.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",!a.paymentRequest),e.R7$(),e.Y8G("ngIf",null==l.errors?null:l.errors.decodeError),e.R7$(),e.Y8G("ngIf",a.zeroAmtInvoice),e.R7$(5),e.JRh(a.advancedTitle),e.R7$(5),e.R50("value",a.selFeeLimitType),e.R7$(),e.Y8G("ngForOf",a.feeLimitTypes),e.R7$(3),e.JRh(null==a.selFeeLimitType?null:a.selFeeLimitType.placeholder),e.R7$(),e.Y8G("step",1)("min",0)("disabled",a.selFeeLimitType===a.feeLimitTypes[0]),e.R50("ngModel",a.feeLimit),e.R7$(2),e.Y8G("ngIf",a.selFeeLimitType!==a.feeLimitTypes[0]&&!a.feeLimit),e.R7$(4),e.Y8G("formControl",a.selectedChannelCtrl)("matAutocomplete",h),e.R7$(),e.Y8G("displayWith",a.displayFn),e.R7$(2),e.Y8G("ngForOf",a.filteredMinAmtActvChannels),e.R7$(),e.Y8G("ngIf",null==a.selectedChannelCtrl.errors?null:a.selectedChannelCtrl.errors.notfound),e.R7$(),e.R50("ngModel",a.isAmp),e.R7$(2),e.Y8G("ngIf",""!==a.paymentError)}},dependencies:[y.Sq,y.bT,g.qT,g.me,g.Q0,g.BC,g.cb,g.YS,g.VZ,g.vS,g.cV,g.l_,ee.aY,ne.tx,$.$z,B.m2,B.MM,he.GK,he.Z2,he.WN,Z.fg,R.rl,R.nJ,R.MV,R.TL,b.DJ,b.sA,b.UI,O.VO,ae.wT,Re.sG,De.$3,De.pN,pe.N,ye.V],encapsulation:2}))}return t(),s})();var Ve=S(7541);const ei=["sendPaymentForm"],ti=()=>["all"],ni=t=>({"error-border":t}),ii=()=>["no_payment"],Ne=t=>({"mr-0":t}),Se=t=>({width:t}),ai=t=>({"display-none":t});function si(t,s){if(1&t&&(e.j41(0,"span",18),e.nrm(1,"fa-icon",19),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.convertedCurrency.symbol)}}function oi(t,s){if(1&t&&e.nrm(0,"span",20),2&t){const n=e.XpG(3);e.Y8G("innerHTML",n.convertedCurrency.symbol,e.npT)}}function li(t,s){if(1&t&&(e.j41(0,"mat-hint",15),e.EFF(1),e.DNE(2,si,2,1,"span",16)(3,oi,1,1,"span",17),e.EFF(4),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.SpI(" ",n.paymentDecodedHintPre," "),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"FA"===n.convertedCurrency.iconType&&""!==n.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"SVG"===n.convertedCurrency.iconType&&""!==n.paymentDecodedHintPre),e.R7$(),e.SpI(" ",n.paymentDecodedHintPost," ")}}function ri(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Payment request is required."),e.k0s())}function ci(t,s){if(1&t){const n=e.RV6();e.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),e.EFF(4,"Payment Request"),e.k0s(),e.j41(5,"textarea",9,1),e.bIt("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onPaymentRequestEntry(o))})("matTextareaAutosize",function(){return r.eBV(n),r.Njj(!0)}),e.k0s(),e.DNE(7,li,5,4,"mat-hint",10)(8,ri,2,0,"mat-error",11),e.k0s(),e.j41(9,"div",12)(10,"button",13),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.EFF(11,"Clear Field"),e.k0s(),e.j41(12,"button",14),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSendPayment())}),e.EFF(13,"Send Payment"),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(5),e.Y8G("ngModel",n.paymentRequest),e.R7$(2),e.Y8G("ngIf",n.paymentRequest&&""!==n.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",!n.paymentRequest)}}function pi(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",21)(1,"button",22),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.openSendPaymentModal())}),e.EFF(2,"Send Payment"),e.k0s()()}}function mi(t,s){if(1&t&&(e.j41(0,"mat-option",76),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function ui(t,s){1&t&&e.nrm(0,"mat-progress-bar",77)}function hi(t,s){1&t&&e.nrm(0,"th",78)}function di(t,s){if(1&t&&e.nrm(0,"span",82),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Ne,n.screenSize===n.screenSizeEnum.XS))}}function _i(t,s){if(1&t&&e.nrm(0,"span",83),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Ne,n.screenSize===n.screenSizeEnum.XS))}}function fi(t,s){if(1&t&&(e.j41(0,"td",79),e.DNE(1,di,1,3,"span",80)(2,_i,1,3,"span",81),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf","SUCCEEDED"===(null==n?null:n.status)),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==(null==n?null:n.status))}}function gi(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Creation Date"),e.k0s())}function Ci(t,s){if(1&t&&(e.j41(0,"td",79),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,1e3*(null==n?null:n.creation_date),"dd/MMM/y HH:mm")," ")}}function yi(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Payment Hash"),e.k0s())}function bi(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_hash)}}function Fi(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Payment Request"),e.k0s())}function xi(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_request)}}function vi(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Payment Preimage"),e.k0s())}function Ti(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_preimage)}}function ki(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Description"),e.k0s())}function Si(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.description)}}function Ri(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Description Hash"),e.k0s())}function Ei(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.description_hash)}}function Ii(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Failure Reason"),e.k0s())}function wi(t,s){if(1&t&&(e.j41(0,"td",79),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.brH(2,1,null==n?null:n.failure_reason,"failure_reason","_")," ")}}function Li(t,s){1&t&&(e.j41(0,"th",87),e.EFF(1,"Payment Index"),e.k0s())}function ji(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==n?null:n.payment_index))}}function Gi(t,s){1&t&&(e.j41(0,"th",87),e.EFF(1,"Fee (Sats)"),e.k0s())}function Di(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==n?null:n.fee))}}function Ni(t,s){1&t&&(e.j41(0,"th",87),e.EFF(1,"Value (Sats)"),e.k0s())}function Pi(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==n?null:n.value))}}function Bi(t,s){1&t&&(e.j41(0,"th",87),e.EFF(1,"Hops"),e.k0s())}function Ai(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh((null==n||null==n.htlcs[0]||null==n.htlcs[0].route||null==n.htlcs[0].route.hops?null:n.htlcs[0].route.hops.length)||0)}}function $i(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",89)(1,"div",90)(2,"mat-select",91),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",92),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Mi(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",93)(1,"button",94),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onPaymentClick(o))}),e.EFF(2,"View Info"),e.k0s()()}}function Oi(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No payment available."),e.k0s())}function Vi(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting payments..."),e.k0s())}function Yi(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.errorMessage)}}function Ui(t,s){if(1&t&&(e.j41(0,"td",95),e.DNE(1,Oi,2,0,"p",11)(2,Vi,2,0,"p",11)(3,Yi,2,1,"p",11),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=n.payments&&n.payments.data)||(null==n.payments||null==n.payments.data?null:n.payments.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.payments&&n.payments.data)||(null==n.payments||null==n.payments.data?null:n.payments.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.payments&&n.payments.data)||(null==n.payments||null==n.payments.data?null:n.payments.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Xi(t,s){if(1&t&&e.nrm(0,"span",82),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Ne,n.screenSize===n.screenSizeEnum.XS))}}function Hi(t,s){if(1&t&&e.nrm(0,"span",83),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Ne,n.screenSize===n.screenSizeEnum.XS))}}function qi(t,s){if(1&t&&e.nrm(0,"span",82),2&t){const n=e.XpG(5);e.Y8G("ngClass",e.eq3(1,Ne,n.screenSize===n.screenSizeEnum.XS))}}function zi(t,s){if(1&t&&e.nrm(0,"span",83),2&t){const n=e.XpG(5);e.Y8G("ngClass",e.eq3(1,Ne,n.screenSize===n.screenSizeEnum.XS))}}function Ji(t,s){if(1&t&&(e.j41(0,"span",96),e.DNE(1,qi,1,3,"span",80)(2,zi,1,3,"span",81),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf","SUCCEEDED"===n.status),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==n.status)}}function Qi(t,s){if(1&t&&(e.qex(0),e.DNE(1,Ji,3,2,"span",97),e.bVm()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function Wi(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",96),e.DNE(2,Xi,1,3,"span",80)(3,Hi,1,3,"span",81),e.k0s(),e.DNE(4,Qi,2,1,"ng-container",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.Y8G("ngIf","SUCCEEDED"===(null==n?null:n.status)),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==(null==n?null:n.status)),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function Zi(t,s){if(1&t&&(e.j41(0,"span",96),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,n.attempt_time_ns/1e6,"dd/MMM/y HH:mm")," ")}}function Ki(t,s){if(1&t&&(e.qex(0),e.DNE(1,Zi,3,4,"span",97),e.bVm()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function ea(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",96),e.EFF(2),e.k0s(),e.DNE(3,Ki,2,1,"ng-container",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.SpI(" Total Attempts: ",null==n||null==n.htlcs?null:n.htlcs.length," "),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function ta(t,s){if(1&t&&(e.j41(0,"span",96),e.EFF(1),e.k0s()),2&t){const n=s.index;e.R7$(),e.SpI(" HTLC ",n+1," ")}}function na(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,ta,2,1,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function ia(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,na,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_hash),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function aa(t,s){1&t&&e.nrm(0,"span",96)}function sa(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,aa,1,0,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function oa(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,sa,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_request),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function la(t,s){if(1&t&&(e.j41(0,"span",96),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",null==n?null:n.preimage," ")}}function ra(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,la,2,1,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function ca(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,ra,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_preimage),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function pa(t,s){1&t&&e.nrm(0,"span",96)}function ma(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,pa,1,0,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function ua(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,ma,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.description),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function ha(t,s){1&t&&e.nrm(0,"span",96)}function da(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,ha,1,0,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function _a(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,da,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.description_hash),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function fa(t,s){1&t&&e.nrm(0,"span",96)}function ga(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,fa,1,0,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function Ca(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",96),e.EFF(2),e.nI1(3,"camelcaseWithReplace"),e.k0s(),e.DNE(4,ga,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.SpI(" ",e.brH(3,2,null==n?null:n.failure_reason,"failure_reason","_")," "),e.R7$(2),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function ya(t,s){if(1&t&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,n.attempt_id)," ")}}function ba(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,ya,3,3,"span",100),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function Fa(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,ba,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,2,null==n?null:n.payment_index)),e.R7$(2),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function xa(t,s){if(1&t&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==n.route?null:n.route.total_fees,"1.0-0")," ")}}function va(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,xa,3,4,"span",100),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function Ta(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,va,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.i5U(3,2,null==n?null:n.fee,"1.0-0")),e.R7$(2),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function ka(t,s){if(1&t&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==n.route?null:n.route.total_amt,"1.0-0")," ")}}function Sa(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,ka,3,4,"span",100),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function Ra(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,Sa,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.i5U(3,2,null==n?null:n.value,"1.0-0")),e.R7$(2),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function Ea(t,s){if(1&t&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,(null==n.route||null==n.route.hops?null:n.route.hops.length)||0,"1.0-0")," ")}}function Ia(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,Ea,3,4,"span",100),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function wa(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2,"-"),e.k0s(),e.DNE(3,Ia,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(3),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function La(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",104)(1,"button",105),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2).$implicit,l=e.XpG(2);return r.Njj(l.onHTLCClick(o,a))}),e.EFF(2),e.k0s()()}if(2&t){const n=s.index;e.R7$(2),e.SpI("View ",n+1)}}function ja(t,s){if(1&t&&(e.j41(0,"div"),e.DNE(1,La,3,1,"div",103),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function Ga(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",79)(1,"span",101)(2,"button",102),e.bIt("click",function(){const o=r.eBV(n).$implicit;return r.Njj(o.is_expanded=!(null!=o&&o.is_expanded))}),e.EFF(3),e.k0s()(),e.DNE(4,ja,2,1,"div",11),e.k0s()}if(2&t){const n=s.$implicit;e.R7$(3),e.JRh(null!=n&&n.is_expanded?"Hide":"Show"),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function Da(t,s){1&t&&e.nrm(0,"tr",106)}function Na(t,s){if(1&t&&e.nrm(0,"tr",107),2&t){const n=e.XpG(2);e.Y8G("ngClass",e.eq3(1,ai,(null==n.payments?null:n.payments.data)&&(null==n.payments||null==n.payments.data?null:n.payments.data.length)>0))}}function Pa(t,s){1&t&&e.nrm(0,"tr",108)}function Ba(t,s){1&t&&e.nrm(0,"tr",106)}function Aa(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",23)(1,"div",24)(2,"div",25),e.nrm(3,"fa-icon",26),e.j41(4,"span",27),e.EFF(5,"Payments History"),e.k0s()(),e.j41(6,"div",28)(7,"mat-form-field",29)(8,"mat-label"),e.EFF(9,"Filter By"),e.k0s(),e.j41(10,"mat-select",30),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilterBy,o)||(a.selFilterBy=o),r.Njj(o)}),e.bIt("selectionChange",function(){r.eBV(n);const o=e.XpG();return o.selFilter="",r.Njj(o.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,mi,2,2,"mat-option",31),e.k0s()()(),e.j41(13,"mat-form-field",29)(14,"mat-label"),e.EFF(15,"Filter"),e.k0s(),e.j41(16,"input",32),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilter,o)||(a.selFilter=o),r.Njj(o)}),e.bIt("input",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())})("keyup",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())}),e.k0s()()()(),e.j41(17,"div",33)(18,"div",34),e.DNE(19,ui,1,0,"mat-progress-bar",35),e.j41(20,"table",36,2),e.qex(22,37),e.DNE(23,hi,1,0,"th",38)(24,fi,3,2,"td",39),e.bVm(),e.qex(25,40),e.DNE(26,gi,2,0,"th",41)(27,Ci,3,4,"td",39),e.bVm(),e.qex(28,42),e.DNE(29,yi,2,0,"th",41)(30,bi,4,4,"td",39),e.bVm(),e.qex(31,43),e.DNE(32,Fi,2,0,"th",41)(33,xi,4,4,"td",39),e.bVm(),e.qex(34,44),e.DNE(35,vi,2,0,"th",41)(36,Ti,4,4,"td",39),e.bVm(),e.qex(37,45),e.DNE(38,ki,2,0,"th",41)(39,Si,4,4,"td",39),e.bVm(),e.qex(40,46),e.DNE(41,Ri,2,0,"th",41)(42,Ei,4,4,"td",39),e.bVm(),e.qex(43,47),e.DNE(44,Ii,2,0,"th",41)(45,wi,3,5,"td",39),e.bVm(),e.qex(46,48),e.DNE(47,Li,2,0,"th",49)(48,ji,4,3,"td",39),e.bVm(),e.qex(49,50),e.DNE(50,Gi,2,0,"th",49)(51,Di,4,3,"td",39),e.bVm(),e.qex(52,51),e.DNE(53,Ni,2,0,"th",49)(54,Pi,4,3,"td",39),e.bVm(),e.qex(55,52),e.DNE(56,Bi,2,0,"th",49)(57,Ai,3,1,"td",39),e.bVm(),e.qex(58,53),e.DNE(59,$i,6,0,"th",54)(60,Mi,3,0,"td",55),e.bVm(),e.qex(61,56),e.DNE(62,Ui,4,3,"td",57),e.bVm(),e.qex(63,58),e.DNE(64,Wi,5,3,"td",39),e.bVm(),e.qex(65,59),e.DNE(66,ea,4,2,"td",39),e.bVm(),e.qex(67,60),e.DNE(68,ia,5,5,"td",39),e.bVm(),e.qex(69,61),e.DNE(70,oa,5,5,"td",39),e.bVm(),e.qex(71,62),e.DNE(72,ca,5,5,"td",39),e.bVm(),e.qex(73,63),e.DNE(74,ua,5,5,"td",39),e.bVm(),e.qex(75,64),e.DNE(76,_a,5,5,"td",39),e.bVm(),e.qex(77,65),e.DNE(78,Ca,5,6,"td",39),e.bVm(),e.qex(79,66),e.DNE(80,Fa,5,4,"td",39),e.bVm(),e.qex(81,67),e.DNE(82,Ta,5,5,"td",39),e.bVm(),e.qex(83,68),e.DNE(84,Ra,5,5,"td",39),e.bVm(),e.qex(85,69),e.DNE(86,wa,4,1,"td",39),e.bVm(),e.qex(87,70),e.DNE(88,Ga,5,2,"td",39),e.bVm(),e.DNE(89,Da,1,0,"tr",71)(90,Na,1,3,"tr",72)(91,Pa,1,0,"tr",73)(92,Ba,1,0,"tr",74),e.k0s(),e.j41(93,"mat-paginator",75),e.bIt("page",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onPageChange(o))}),e.k0s()()()()}if(2&t){const n=e.XpG();e.R7$(3),e.Y8G("icon",n.faHistory),e.R7$(7),e.R50("ngModel",n.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(18,ti).concat(n.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",n.selFilter),e.R7$(3),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",n.tableSetting.sortBy)("matSortDirection",n.tableSetting.sortOrder)("dataSource",n.payments)("ngClass",e.eq3(19,ni,""!==n.errorMessage)),e.R7$(69),e.Y8G("matRowDefColumns",n.htlcColumns)("matRowDefWhen",n.is_group),e.R7$(),e.Y8G("matFooterRowDef",e.lJ4(21,ii)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns),e.R7$(),e.Y8G("length",n.totalPayments)("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("showFirstLastButtons",n.screenSize!==n.screenSizeEnum.XS)}}let Ct=(()=>{var t;class s{constructor(i,o,a,l,h,f,P,w){this.logger=i,this.commonService=o,this.dataService=a,this.store=l,this.rtlEffects=h,this.decimalPipe=f,this.datePipe=P,this.camelCaseWithReplace=w,this.calledFrom="transactions",this.faHistory=I.Int,this.convertedCurrency=null,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:p.md,sortBy:"creation_date",sortOrder:p.oi.DESCENDING},this.newlyAddedPayment="",this.information={},this.peers=[],this.payments=new _.I6([]),this.totalPayments=100,this.paymentJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.firstOffset=-1,this.lastOffset=-1,this.selFilter="",this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(E.os).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.peers=i.peers}),this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.htlcColumns=[],this.displayedColumns.map(o=>this.htlcColumns.push("group_"+o)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.KT).pipe((0,x.Q)(this.unSubs[5])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=i.listPayments.payments||[],this.totalPayments=this.paymentJSONArr.length,this.firstOffset=+(i.listPayments.first_index_offset||-1),this.lastOffset=+(i.listPayments.last_index_offset||-1),this.paymentJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr.slice(0,this.pageSize)),this.logger.info(i)})}ngAfterViewInit(){this.paymentJSONArr&&this.paymentJSONArr.length>0&&this.loadPaymentsTable(this.paymentJSONArr.slice(0,this.pageSize))}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,be.s)(1)).subscribe(i=>{this.paymentDecoded=i,this.paymentDecoded.timestamp?(this.paymentDecoded.num_satoshis=this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis?(+this.paymentDecoded.num_msat/1e3).toString():"0",this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded.payment_hash||"",this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis?(this.store.dispatch((0,Y.I1)({payload:{data:{type:p.A$.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"destination",value:this.paymentDecoded.destination,title:"Destination",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:50,type:p.UN.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.num_satoshis,title:"Amount (Sats)",width:50,type:p.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:p.UN.NUMBER},{key:"cltv_expiry",value:this.paymentDecoded.cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,be.s)(1)).subscribe(o=>{o&&(this.store.dispatch((0,N.Fd)({payload:{uiMessage:p.MZ.SEND_PAYMENT,payment_request:this.paymentRequest,amp:!1,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,Y.I1)({payload:{data:{type:p.A$.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"destination",value:this.paymentDecoded.destination,title:"Destination",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:40,type:p.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:p.UN.NUMBER},{key:"cltv_expiry",value:this.paymentDecoded.cltv_expiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,getInputs:[{placeholder:"Amount (Sats)",inputType:p.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,be.s)(1)).subscribe(a=>{a&&(this.paymentDecoded.num_satoshis=a[0].inputValue,this.store.dispatch((0,N.Fd)({payload:{uiMessage:p.MZ.SEND_PAYMENT,payment_request:this.paymentRequest,amp:!1,amt:a[0].inputValue,fromDialog:!1}})),this.resetData())}))}openSendPaymentModal(){this.store.dispatch((0,Y.xO)({payload:{data:{component:Kn}}}))}onPaymentRequestEntry(i){this.paymentRequest=i,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,be.s)(1)).subscribe(o=>{this.paymentDecoded=o,this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis?this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis,p.BQ.SATS,p.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,x.Q)(this.unSubs[6])).subscribe({next:a=>{this.convertedCurrency=a,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,p.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:a=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost="")})}onPageChange(i){let o=!0,a=this.lastOffset;this.pageSize=i.pageSize,0===i.pageIndex?(o=!0,a=0):i.pageIndexi.previousPageIndex&&i.length>(i.pageIndex+1)*i.pageSize?(o=!0,a=this.firstOffset):i.length<=(i.pageIndex+1)*i.pageSize&&(o=!1,a=0);const l=i.pageIndex*this.pageSize;this.loadPaymentsTable(this.paymentJSONArr.slice(l,l+this.pageSize))}is_group(i,o){return o.htlcs&&o.htlcs.length>1}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}getHopDetails(i){const o=this;return new Promise((a,l)=>{const h=o.peers.find(f=>f.pub_key===i.pub_key);h&&h.alias?a("
Channel: "+h.alias.padEnd(20)+"			Amount (Sats): "+o.decimalPipe.transform(i.amt_to_forward)+"
"):o.dataService.getAliasesFromPubkeys(i.pub_key||"",!1).pipe((0,x.Q)(o.unSubs[7])).subscribe({next:f=>a("
Channel: "+(f.node&&f.node.alias?f.node.alias.padEnd(20):i.pub_key?.substring(0,17)+"...")+"			Amount (Sats): "+o.decimalPipe.transform(i.amt_to_forward)+"
"),error:f=>a("
Channel: "+(i.pub_key?i.pub_key?.substring(0,17)+"...":"")+"			Amount (Sats): "+o.decimalPipe.transform(i.amt_to_forward)+"
")})})}onHTLCClick(i,o){o.payment_request&&""!==o.payment_request.trim()?this.dataService.decodePayment(o.payment_request,!1).pipe((0,be.s)(1)).subscribe({next:a=>{setTimeout(()=>{this.showHTLCView(i,o,a)},0)},error:a=>{this.showHTLCView(i,o)}}):this.showHTLCView(i,o)}showHTLCView(i,o,a){i.route&&i.route.hops&&i.route.hops.length?Promise.all(i.route.hops.map(l=>this.getHopDetails(l))).then(l=>{this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"HTLC Information",message:this.prepareData(i,o,a,l),scrollable:i.route&&i.route.hops&&i.route.hops.length>1}}}))}):this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"HTLC Information",message:this.prepareData(i,o,a,[]),scrollable:i.route&&i.route.hops&&i.route.hops.length>1}}}))}prepareData(i,o,a,l){const h=[[{key:"payment_hash",value:o.payment_hash,title:"Payment Hash",width:100,type:p.UN.STRING}],[{key:"preimage",value:i.preimage,title:"Preimage",width:100,type:p.UN.STRING}],[{key:"payment_request",value:o.payment_request,title:"Payment Request",width:100,type:p.UN.STRING}],[{key:"status",value:i.status,title:"Status",width:33,type:p.UN.STRING},{key:"attempt_time_ns",value:+(i.attempt_time_ns||0)/1e9,title:"Attempt Time",width:33,type:p.UN.DATE_TIME},{key:"resolve_time_ns",value:+(i.resolve_time_ns||0)/1e9,title:"Resolve Time",width:34,type:p.UN.DATE_TIME}],[{key:"total_amt",value:i.route?.total_amt,title:"Amount (Sats)",width:33,type:p.UN.NUMBER},{key:"total_fees",value:i.route?.total_fees,title:"Fee (Sats)",width:33,type:p.UN.NUMBER},{key:"total_time_lock",value:i.route?.total_time_lock,title:"Total Time Lock",width:34,type:p.UN.NUMBER}],[{key:"hops",value:l,title:"Hops",width:100,type:p.UN.ARRAY}]];return a&&a.description&&""!==a.description&&h.splice(3,0,[{key:"description",value:a.description,title:"Description",width:100,type:p.UN.STRING}]),h}onPaymentClick(i){if(i.htlcs&&i.htlcs[0]&&i.htlcs[0].route&&i.htlcs[0].route.hops&&i.htlcs[0].route.hops.length>0){const o=i.htlcs[0].route.hops?.reduce((a,l)=>l.pub_key&&""===a?l.pub_key:a+","+l.pub_key,"");this.dataService.getAliasesFromPubkeys(o,!0).pipe((0,x.Q)(this.unSubs[8])).subscribe(a=>{this.showPaymentView(i,a?.reduce((l,h)=>""===l?h:l+"\n"+h,""))})}else this.showPaymentView(i,"")}showPaymentView(i,o){const a=[[{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:100,type:p.UN.STRING}],[{key:"payment_preimage",value:i.payment_preimage,title:"Payment Preimage",width:100,type:p.UN.STRING}],[{key:"payment_request",value:i.payment_request,title:"Payment Request",width:100,type:p.UN.STRING}],[{key:"status",value:i.status,title:"Status",width:50,type:p.UN.STRING},{key:"creation_date",value:i.creation_date,title:"Creation Date",width:50,type:p.UN.DATE_TIME}],[{key:"value_msat",value:i.value_msat,title:"Value (mSats)",width:50,type:p.UN.NUMBER},{key:"fee_msat",value:i.fee_msat,title:"Fee (mSats)",width:50,type:p.UN.NUMBER}],[{key:"path",value:o,title:"Path",width:100,type:p.UN.STRING}]];i.payment_request&&""!==i.payment_request.trim()?this.dataService.decodePayment(i.payment_request,!1).pipe((0,be.s)(1)).subscribe(l=>{l&&l.description&&""!==l.description&&a.splice(3,0,[{key:"description",value:l.description,title:"Description",width:100,type:p.UN.STRING}]),setTimeout(()=>{this.openPaymentAlert(a,!!(i.htlcs&&i.htlcs[0]&&i.htlcs[0].route&&i.htlcs[0].route.hops&&i.htlcs[0].route.hops.length>1))},0)}):this.openPaymentAlert(a,!1)}openPaymentAlert(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Payment Information",message:i,scrollable:o}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.payments.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.creation_date?this.datePipe.transform(new Date(1e3*i.creation_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(i).toLowerCase();break;case"status":case"group_status":a="SUCCEEDED"===i?.status?"succeeded":"failed";break;case"creation_date":a=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"failure_reason":case"group_failure_reason":a=this.camelCaseWithReplace.transform(i.failure_reason||"","failure_reason","_").trim().toLowerCase();break;case"hops":a=i.htlcs&&i.htlcs[0]&&i.htlcs[0].route&&i.htlcs[0].route.hops&&i.htlcs[0].route.hops.length?i.htlcs[0].route.hops.length.toString():"0";break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"failure_reason"===this.selFilterBy||"group_failure_reason"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}loadPaymentsTable(i){this.payments=new _.I6(i?[...i]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(o,a)=>"hops"===a?o.htlcs.length&&o.htlcs[0]&&o.htlcs[0].route&&o.htlcs[0].route.hops&&o.htlcs[0].route.hops.length?o.htlcs[0].route.hops.length:0:o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const i=JSON.parse(JSON.stringify(this.payments.data)),o=i?.reduce((a,l)=>(l.payment_request&&""!==l.payment_request.trim()&&(a=""===a?l.payment_request:a+","+l.payment_request),a),"");this.dataService.decodePayments(o).pipe((0,x.Q)(this.unSubs[9])).subscribe(a=>{let l=0;a.forEach((f,P)=>{if(f){for(;i[P+l].payment_hash!==f.payment_hash;)l+=1;i[P+l].description=f.description}});const h=i?.reduce((f,P)=>f.concat(P),[]);this.commonService.downloadFile(h,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(Fe.u),e.rXU(G.il),e.rXU(Ve.H),e.rXU(y.QX),e.rXU(y.vh),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lightning-payments"]],viewQuery:function(o,a){if(1&o&&(e.GBs(ei,5),e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.form=l.first),e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Payments")}])],decls:4,vars:3,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayoutAlign","space-between stretch","fxLayout","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayoutAlign","space-between stretch","fxLayout","row wrap"],["fxLayout","column","fxFlex","100"],["matInput","","name","paymentRequest","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","perfectScrollbar","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","4",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","creation_date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","payment_hash"],["matColumnDef","payment_request"],["matColumnDef","payment_preimage"],["matColumnDef","description"],["matColumnDef","description_hash"],["matColumnDef","failure_reason"],["matColumnDef","payment_index"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","fee"],["matColumnDef","value"],["matColumnDef","hops"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","group_status"],["matColumnDef","group_creation_date"],["matColumnDef","group_payment_hash"],["matColumnDef","group_payment_request"],["matColumnDef","group_payment_preimage"],["matColumnDef","group_description"],["matColumnDef","group_description_hash"],["matColumnDef","group_failure_reason"],["matColumnDef","group_payment_index"],["matColumnDef","group_fee"],["matColumnDef","group_value"],["matColumnDef","group_hops"],["matColumnDef","group_actions"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"page","length","pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Succeeded","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Failed","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Succeeded","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Failed","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"htlc-row-span"],["fxLayoutAlign","start center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayout","row",1,"ellipsis-parent","htlc-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"htlc-row-span"],["fxLayoutAlign","end center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-htlc-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(o,a){1&o&&(e.j41(0,"div",3),e.DNE(1,ci,14,3,"form",4)(2,pi,3,0,"div",5)(3,Aa,94,22,"div",6),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf","home"===a.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===a.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===a.calledFrom))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.qT,g.me,g.BC,g.cb,g.YS,g.vS,g.cV,ee.aY,$.$z,Z.fg,R.rl,R.nJ,R.MV,R.TL,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,fe.oV,X.iy,K.ZF,K.Ld,y.QX,y.vh,ue.VD],styles:[".mat-column-status[_ngcontent-%COMP%], .mat-column-group_status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-group_actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_status[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type), .mat-column-group_creation_date[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.htlc-row-span[_ngcontent-%COMP%] .dot[_ngcontent-%COMP%]{margin-top:-.3rem;position:absolute}.mat-column-group_creation_date[_ngcontent-%COMP%]{min-width:11rem}"]}))}return t(),s})();const yt=t=>({backgroundColor:t});function $a(t,s){if(1&t&&e.nrm(0,"span",8),2&t){const n=e.XpG();e.Y8G("ngStyle",e.eq3(1,yt,null==n.information?null:n.information.color))}}function Ma(t,s){if(1&t&&(e.j41(0,"div")(1,"h4",1),e.EFF(2,"Color"),e.k0s(),e.j41(3,"div",2),e.nrm(4,"span",9),e.EFF(5),e.nI1(6,"uppercase"),e.k0s()()),2&t){const n=e.XpG();e.R7$(4),e.Y8G("ngStyle",e.eq3(4,yt,null==n.information?null:n.information.color)),e.R7$(),e.SpI(" ",e.bMT(6,2,null==n.information?null:n.information.color)," ")}}function Oa(t,s){1&t&&e.nrm(0,"span",10)}function Va(t,s){1&t&&e.nrm(0,"span",11)}function Ya(t,s){if(1&t&&(e.j41(0,"span",2),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(n)}}let bt=(()=>{var t;class s{constructor(i){this.commonService=i,this.chains=[""]}ngOnChanges(){this.information&&this.information.chains&&this.information.chains.length>0&&(this.chains=[""],this.information.chains.forEach(i=>{this.chains.push(this.commonService.titleCase(i.chain)+" "+this.commonService.titleCase(i.network))}))}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},standalone:!1,features:[e.OA$],decls:19,vars:7,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-2"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","dot green mr-1","matTooltip","Synced to Chain","matTooltipPosition","right",4,"ngIf"],["class","dot red mr-1","matTooltip","Not Synced to Chain","matTooltipPosition","right",4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"],["matTooltip","Synced to Chain","matTooltipPosition","right",1,"dot","green","mr-1"],["matTooltip","Not Synced to Chain","matTooltipPosition","right",1,"dot","red","mr-1"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"div")(2,"h4",1),e.EFF(3,"Alias"),e.k0s(),e.j41(4,"div",2),e.EFF(5),e.DNE(6,$a,1,3,"span",3),e.k0s()(),e.DNE(7,Ma,7,6,"div",4),e.j41(8,"div")(9,"h4",1),e.EFF(10,"Implementation"),e.k0s(),e.j41(11,"div",2),e.EFF(12),e.k0s()(),e.j41(13,"div")(14,"h4",1),e.EFF(15,"Chain"),e.k0s(),e.DNE(16,Oa,1,0,"span",5)(17,Va,1,0,"span",6)(18,Ya,2,1,"span",7),e.k0s()()),2&o&&(e.R7$(5),e.SpI(" ",null==a.information?null:a.information.alias," "),e.R7$(),e.Y8G("ngIf",!a.showColorFieldSeparately),e.R7$(),e.Y8G("ngIf",a.showColorFieldSeparately),e.R7$(5),e.JRh(null!=a.information&&a.information.lnImplementation||null!=a.information&&a.information.version?(null==a.information?null:a.information.lnImplementation)+" "+(null==a.information?null:a.information.version):""),e.R7$(4),e.Y8G("ngIf",null==a.information?null:a.information.synced_to_chain),e.R7$(),e.Y8G("ngIf",!(null!=a.information&&a.information.synced_to_chain)),e.R7$(),e.Y8G("ngForOf",a.chains))},dependencies:[y.Sq,y.bT,y.B3,b.DJ,b.sA,b.UI,U.eI,fe.oV,y.Pc],encapsulation:2}))}return t(),s})();function Ua(t,s){if(1&t&&(e.j41(0,"div",2)(1,"div")(2,"h4",3),e.EFF(3,"Lightning"),e.k0s(),e.j41(4,"div",4),e.EFF(5),e.nI1(6,"number"),e.k0s(),e.nrm(7,"mat-progress-bar",5),e.k0s(),e.j41(8,"div")(9,"h4",3),e.EFF(10,"On-chain"),e.k0s(),e.j41(11,"div",4),e.EFF(12),e.nI1(13,"number"),e.k0s(),e.nrm(14,"mat-progress-bar",5),e.k0s(),e.j41(15,"div")(16,"h4",3),e.EFF(17,"Total"),e.k0s(),e.j41(18,"div",4),e.EFF(19),e.nI1(20,"number"),e.k0s()()()),2&t){const n=e.XpG();e.R7$(5),e.SpI("",e.bMT(6,7,null==n.balances?null:n.balances.lightning)," Sats"),e.R7$(2),e.Y8G("value",e.mNQ((null==n.balances?null:n.balances.lightning)/(null==n.balances?null:n.balances.total)*100)),e.R7$(5),e.SpI("",e.bMT(13,9,null==n.balances?null:n.balances.onchain)," Sats"),e.R7$(2),e.Y8G("value",e.mNQ((null==n.balances?null:n.balances.onchain)/(null==n.balances?null:n.balances.total)*100)),e.R7$(5),e.SpI("",e.bMT(20,11,null==n.balances?null:n.balances.total)," Sats")}}function Xa(t,s){if(1&t&&(e.j41(0,"div",6)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessage)}}let Ha=(()=>{var t;class s{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,a){if(1&o&&e.DNE(0,Ua,21,13,"div",1)(1,Xa,3,1,"ng-template",null,0,e.C5r),2&o){const l=e.sdS(2);e.Y8G("ngIf"," "===a.errorMessage)("ngIfElse",l)}},dependencies:[y.bT,D.HM,b.DJ,b.sA,b.UI,y.QX],encapsulation:2}))}return t(),s})();function qa(t,s){if(1&t&&(e.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),e.EFF(4,"Daily"),e.k0s(),e.j41(5,"div",5),e.EFF(6),e.nI1(7,"number"),e.k0s()(),e.j41(8,"div")(9,"h4",4),e.EFF(10,"Weekly"),e.k0s(),e.j41(11,"div",5),e.EFF(12),e.nI1(13,"number"),e.k0s()(),e.j41(14,"div")(15,"h4",4),e.EFF(16,"Monthly"),e.k0s(),e.j41(17,"div",5),e.EFF(18),e.nI1(19,"number"),e.k0s()(),e.j41(20,"div",6),e.nrm(21,"h4",7)(22,"span",5),e.k0s()(),e.j41(23,"div",3)(24,"div")(25,"h4",4),e.EFF(26,"Transactions"),e.k0s(),e.j41(27,"div",5),e.EFF(28),e.nI1(29,"number"),e.k0s()(),e.j41(30,"div")(31,"h4",4),e.EFF(32,"Transactions"),e.k0s(),e.j41(33,"div",5),e.EFF(34),e.nI1(35,"number"),e.k0s()(),e.j41(36,"div")(37,"h4",4),e.EFF(38,"Transactions"),e.k0s(),e.j41(39,"div",5),e.EFF(40),e.nI1(41,"number"),e.k0s()(),e.j41(42,"div",6),e.nrm(43,"h4",7)(44,"span",5),e.k0s()()()),2&t){const n=e.XpG();e.R7$(6),e.SpI("",e.bMT(7,6,null==n.fees?null:n.fees.day_fee_sum)," Sats"),e.R7$(6),e.SpI("",e.bMT(13,8,null==n.fees?null:n.fees.week_fee_sum)," Sats"),e.R7$(6),e.SpI("",e.bMT(19,10,null==n.fees?null:n.fees.month_fee_sum)," Sats"),e.R7$(10),e.JRh(e.bMT(29,12,null==n.fees?null:n.fees.daily_tx_count)),e.R7$(6),e.JRh(e.bMT(35,14,null==n.fees?null:n.fees.weekly_tx_count)),e.R7$(6),e.JRh(e.bMT(41,16,null==n.fees?null:n.fees.monthly_tx_count))}}function za(t,s){if(1&t&&(e.j41(0,"div",8)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessage)}}let Ft=(()=>{var t;class s{constructor(){this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100}ngOnChanges(){if(this.fees.month_fee_sum){this.totalFees=[{name:"Monthly",value:this.fees.month_fee_sum},{name:"Weekly",value:this.fees.week_fee_sum||0},{name:"Daily ",value:this.fees.day_fee_sum||0}];const o=10**(Math.ceil(Math.log(this.fees.month_fee_sum+1)/Math.LN10)-1);this.maxFeeValue=Math.ceil(this.fees.month_fee_sum/o)*o/5||100,Object.assign(this,this.totalFees)}else this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100,Object.assign(this,this.totalFees)}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},standalone:!1,features:[e.OA$],decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxFlex","20"],[1,"dashboard-info-title"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,a){if(1&o&&e.DNE(0,qa,45,18,"div",1)(1,za,3,1,"ng-template",null,0,e.C5r),2&o){const l=e.sdS(2);e.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",l)}},dependencies:[y.bT,b.DJ,b.sA,b.UI,y.QX],encapsulation:2}))}return t(),s})();function Ja(t,s){if(1&t&&(e.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),e.EFF(4,"Active"),e.k0s(),e.j41(5,"div",5),e.nrm(6,"span",6),e.EFF(7),e.nI1(8,"number"),e.k0s()(),e.j41(9,"div")(10,"h4",4),e.EFF(11,"Pending"),e.k0s(),e.j41(12,"div",5),e.nrm(13,"span",7),e.EFF(14),e.nI1(15,"number"),e.k0s()(),e.j41(16,"div")(17,"h4",4),e.EFF(18,"Inactive"),e.k0s(),e.j41(19,"div",5),e.nrm(20,"span",8),e.EFF(21),e.nI1(22,"number"),e.k0s()(),e.j41(23,"div")(24,"h4",4),e.EFF(25,"Closing"),e.k0s(),e.j41(26,"div",5),e.nrm(27,"span",9),e.EFF(28),e.nI1(29,"number"),e.k0s()()(),e.j41(30,"div",3)(31,"div")(32,"h4",4),e.EFF(33,"Capacity"),e.k0s(),e.j41(34,"div",5),e.EFF(35),e.nI1(36,"number"),e.k0s()(),e.j41(37,"div")(38,"h4",4),e.EFF(39,"Capacity"),e.k0s(),e.j41(40,"div",5),e.EFF(41),e.nI1(42,"number"),e.k0s()(),e.j41(43,"div")(44,"h4",4),e.EFF(45,"Capacity"),e.k0s(),e.j41(46,"div",5),e.EFF(47),e.nI1(48,"number"),e.k0s()(),e.j41(49,"div")(50,"h4",4),e.EFF(51,"Capacity"),e.k0s(),e.j41(52,"div",5),e.EFF(53),e.nI1(54,"number"),e.k0s()()()()),2&t){const n=e.XpG();e.R7$(7),e.JRh(e.bMT(8,8,(null==n.channelsStatus||null==n.channelsStatus.active?null:n.channelsStatus.active.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(15,10,(null==n.channelsStatus||null==n.channelsStatus.pending?null:n.channelsStatus.pending.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(22,12,(null==n.channelsStatus||null==n.channelsStatus.inactive?null:n.channelsStatus.inactive.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(29,14,(null==n.channelsStatus||null==n.channelsStatus.closing?null:n.channelsStatus.closing.num_channels)||0)),e.R7$(7),e.SpI("",e.bMT(36,16,(null==n.channelsStatus||null==n.channelsStatus.active?null:n.channelsStatus.active.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(42,18,(null==n.channelsStatus||null==n.channelsStatus.pending?null:n.channelsStatus.pending.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(48,20,(null==n.channelsStatus||null==n.channelsStatus.inactive?null:n.channelsStatus.inactive.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(54,22,(null==n.channelsStatus||null==n.channelsStatus.closing?null:n.channelsStatus.closing.capacity)||0)," Sats")}}function Qa(t,s){if(1&t&&(e.j41(0,"div",10)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessage)}}let xt=(()=>{var t;class s{constructor(){this.channelsStatus={}}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],[1,"dot","tiny-dot","red"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,a){if(1&o&&e.DNE(0,Ja,55,24,"div",1)(1,Qa,3,1,"ng-template",null,0,e.C5r),2&o){const l=e.sdS(2);e.Y8G("ngIf"," "===a.errorMessage)("ngIfElse",l)}},dependencies:[y.bT,b.DJ,b.sA,b.UI,y.QX],encapsulation:2}))}return t(),s})();var Te=S(1997);const Wa=()=>["../connections/channels/open"],Za=(t,s)=>({filterColumn:t,filterValue:s});function Ka(t,s){if(1&t&&(e.j41(0,"div",19)(1,"a",20),e.EFF(2),e.nI1(3,"slice"),e.k0s(),e.j41(4,"div",6)(5,"mat-hint",21)(6,"strong",8),e.EFF(7,"Local:"),e.k0s(),e.EFF(8),e.nI1(9,"number"),e.k0s(),e.j41(10,"mat-hint",22),e.nrm(11,"fa-icon",23),e.EFF(12),e.nI1(13,"number"),e.k0s(),e.j41(14,"mat-hint",24)(15,"strong",8),e.EFF(16,"Remote:"),e.k0s(),e.EFF(17),e.nI1(18,"number"),e.k0s()(),e.nrm(19,"mat-progress-bar",25),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("matTooltip",e.mNQ(n.remote_alias||n.remote_pubkey))("matTooltipDisabled",e.mNQ((n.remote_alias||n.remote_pubkey).length<26))("routerLink",e.lJ4(24,Wa))("state",e.l_i(25,Za,n.remote_alias?"remote_alias":"remote_pubkey",n.remote_alias||n.remote_pubkey)),e.R7$(),e.Lme(" ",e.brH(3,14,n.remote_alias||n.remote_pubkey||"",0,24),"",(n.remote_alias||n.remote_pubkey||"").length>25?"...":""," "),e.R7$(6),e.SpI("",e.bMT(9,18,n.local_balance||0)," Sats"),e.R7$(3),e.Y8G("icon",i.faBalanceScale),e.R7$(),e.SpI(" (",e.bMT(13,20,n.balancedness||0),") "),e.R7$(5),e.SpI("",e.bMT(18,22,n.remote_balance||0)," Sats"),e.R7$(2),e.Y8G("value",e.mNQ(n.local_balance&&n.local_balance>0?+n.local_balance/(+n.local_balance+ +n.remote_balance)*100:0))}}function es(t,s){if(1&t&&(e.j41(0,"div",17),e.DNE(1,Ka,20,28,"div",18),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngForOf",n.allChannels)}}function ts(t,s){if(1&t&&(e.j41(0,"div",3)(1,"div",4)(2,"span",5),e.EFF(3,"Total Capacity"),e.k0s(),e.j41(4,"div",6)(5,"mat-hint",7)(6,"strong",8),e.EFF(7,"Local:"),e.k0s(),e.EFF(8),e.nI1(9,"number"),e.k0s(),e.j41(10,"mat-hint",9),e.nrm(11,"fa-icon",10),e.EFF(12),e.nI1(13,"number"),e.k0s(),e.j41(14,"mat-hint",11)(15,"strong",8),e.EFF(16,"Remote:"),e.k0s(),e.EFF(17),e.nI1(18,"number"),e.k0s()(),e.nrm(19,"mat-progress-bar",12),e.k0s(),e.j41(20,"div",13),e.nrm(21,"mat-divider",14),e.k0s(),e.j41(22,"div",15),e.DNE(23,es,2,1,"div",16),e.k0s()()),2&t){const n=e.XpG(),i=e.sdS(2);e.R7$(8),e.SpI("",e.bMT(9,8,(null==n.channelBalances?null:n.channelBalances.localBalance)||0)," Sats"),e.R7$(3),e.Y8G("icon",n.faBalanceScale),e.R7$(),e.SpI(" (",e.bMT(13,10,(null==n.channelBalances?null:n.channelBalances.balancedness)||0),") "),e.R7$(5),e.SpI("",e.bMT(18,12,(null==n.channelBalances?null:n.channelBalances.remoteBalance)||0)," Sats"),e.R7$(2),e.Y8G("value",e.mNQ(null!=n.channelBalances&&n.channelBalances.localBalance&&(null==n.channelBalances?null:n.channelBalances.localBalance)>0?+(null==n.channelBalances?null:n.channelBalances.localBalance)/(+(null==n.channelBalances?null:n.channelBalances.localBalance)+ +(null==n.channelBalances?null:n.channelBalances.remoteBalance))*100:0)),e.R7$(4),e.Y8G("ngIf",n.allChannels&&n.allChannels.length>0)("ngIfElse",i)}}function ns(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",26),e.EFF(1," No channels available. "),e.j41(2,"button",27),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.goToChannels())}),e.EFF(3,"Open Channel"),e.k0s()()}}function is(t,s){if(1&t&&(e.j41(0,"div",28)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessage)}}let as=(()=>{var t;class s{constructor(i){this.router=i,this.faBalanceScale=I.GR4,this.faDumbbell=I.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/lnd/connections")}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,a){if(1&o&&e.DNE(0,ts,24,14,"div",2)(1,ns,4,0,"ng-template",null,0,e.C5r)(3,is,3,1,"ng-template",null,1,e.C5r),2&o){const l=e.sdS(4);e.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",l)}},dependencies:[y.Sq,y.bT,ee.aY,$.$z,R.MV,Te.q,D.HM,b.DJ,b.sA,b.UI,fe.oV,K.Ld,le.Wk,y.P9,y.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]}))}return t(),s})();var vt=S(1092),Tt=S(4104);const ss=(t,s,n)=>({"mb-4":t,"mb-2":s,"mb-1":n}),os=()=>["../connections/channels/open"],ls=(t,s)=>({filterColumn:t,filterValue:s});function rs(t,s){if(1&t&&(e.j41(0,"mat-hint",19)(1,"strong",20),e.EFF(2,"Capacity: "),e.k0s(),e.EFF(3),e.nI1(4,"number"),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(3),e.SpI("",e.bMT(4,1,n.remote_balance||0)," Sats")}}function cs(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",24),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2).$implicit,a=e.XpG(3);return r.Njj(a.onLoopOut(o))}),e.EFF(1,"Loop Out"),e.k0s()}}function ps(t,s){if(1&t&&(e.j41(0,"div",21)(1,"mat-hint",22)(2,"strong",20),e.EFF(3,"Capacity: "),e.k0s(),e.EFF(4),e.nI1(5,"number"),e.k0s(),e.DNE(6,cs,2,0,"button",23),e.k0s()),2&t){const n=e.XpG().$implicit,i=e.XpG(3);e.R7$(4),e.SpI("",e.bMT(5,2,n.local_balance||0)," Sats"),e.R7$(2),e.Y8G("ngIf",i.showLoop)}}function ms(t,s){if(1&t&&e.nrm(0,"mat-progress-bar",25),2&t){const n=e.XpG().$implicit,i=e.XpG(3);e.Y8G("value",e.mNQ(i.totalLiquidity>0?(+n.remote_balance||0)/i.totalLiquidity*100:0))}}function us(t,s){if(1&t&&e.nrm(0,"mat-progress-bar",25),2&t){const n=e.XpG().$implicit,i=e.XpG(3);e.Y8G("value",e.mNQ(i.totalLiquidity>0?(+n.local_balance||0)/i.totalLiquidity*100:0))}}function hs(t,s){if(1&t&&(e.j41(0,"div",13)(1,"a",14),e.EFF(2),e.nI1(3,"slice"),e.k0s(),e.j41(4,"div",15),e.DNE(5,rs,5,3,"mat-hint",16)(6,ps,7,4,"div",17),e.k0s(),e.DNE(7,ms,1,2,"mat-progress-bar",18)(8,us,1,2,"mat-progress-bar",18),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("matTooltip",e.mNQ(n.remote_alias||n.remote_pubkey))("matTooltipDisabled",e.mNQ((n.remote_alias||n.remote_pubkey).length<26))("routerLink",e.lJ4(16,os))("state",e.l_i(17,ls,n.remote_alias?"remote_alias":"remote_pubkey",n.remote_alias||n.remote_pubkey)),e.R7$(),e.Lme(" ",e.brH(3,12,n.remote_alias||n.remote_pubkey||"",0,24),"",(n.remote_alias||n.remote_pubkey||"").length>25?"...":""," "),e.R7$(3),e.Y8G("ngIf","In"===i.direction),e.R7$(),e.Y8G("ngIf","Out"===i.direction),e.R7$(),e.Y8G("ngIf","In"===i.direction),e.R7$(),e.Y8G("ngIf","Out"===i.direction)}}function ds(t,s){if(1&t&&(e.j41(0,"div",11),e.DNE(1,hs,9,20,"div",12),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngForOf",n.allChannels)}}function _s(t,s){if(1&t&&(e.j41(0,"div",3)(1,"div",4)(2,"span",5),e.EFF(3,"Total Capacity"),e.k0s(),e.j41(4,"mat-hint",6),e.EFF(5),e.nI1(6,"number"),e.k0s(),e.nrm(7,"mat-progress-bar",7),e.k0s(),e.j41(8,"div",8),e.nrm(9,"mat-divider",9),e.k0s(),e.DNE(10,ds,2,1,"div",10),e.k0s()),2&t){const n=e.XpG(),i=e.sdS(2);e.Y8G("ngClass",e.sMw(6,ss,n.screenSize===n.screenSizeEnum.XS||n.screenSize===n.screenSizeEnum.SM,n.screenSize===n.screenSizeEnum.MD,n.screenSize===n.screenSizeEnum.LG||n.screenSize===n.screenSizeEnum.XL)),e.R7$(5),e.SpI("",e.bMT(6,4,n.totalLiquidity)," Sats"),e.R7$(5),e.Y8G("ngIf",n.allChannels&&n.allChannels.length>0)("ngIfElse",i)}}function fs(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",28),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.goToChannels())}),e.EFF(1,"Open Channel"),e.k0s()}}function gs(t,s){if(1&t&&(e.j41(0,"div",26),e.EFF(1," No channels available. "),e.DNE(2,fs,2,0,"button",27),e.k0s()),2&t){const n=e.XpG();e.R7$(2),e.Y8G("ngIf","Out"===n.direction)}}function Cs(t,s){if(1&t&&(e.j41(0,"div",29)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessage)}}let ys=(()=>{var t;class s{constructor(i,o,a,l){this.router=i,this.loopService=o,this.commonService=a,this.store=l,this.targetConf=6,this.screenSize="",this.screenSizeEnum=p.f7,this.unSubs=[new C.B,new C.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.showLoop=!(!i?.settings.swapServerUrl||""===i.settings.swapServerUrl.trim())})}goToChannels(){this.router.navigateByUrl("/lnd/connections")}onLoopOut(i){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,x.Q)(this.unSubs[1])).subscribe(o=>{this.store.dispatch((0,Y.xO)({payload:{minHeight:"56rem",data:{channel:i,minQuote:o[0],maxQuote:o[1],direction:p.C7.LOOP_OUT,component:vt.D}}}))})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(j.Ix),e.rXU(Tt.Q),e.rXU(z.h),e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[3,"perfectScrollbar",4,"ngIf","ngIfElse"],[3,"perfectScrollbar"],["fxLayout","column",4,"ngFor","ngForOf"],["fxLayout","column"],[1,"dashboard-capacity-header","mt-2",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["class","font-size-90 color-primary",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],[1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxFlex","80","fxLayoutAlign","start start",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","end center","class","button-link-dashboard","color","primary","mat-button","","aria-label","Loop Out",3,"click",4,"ngIf"],["fxFlex","20","fxLayoutAlign","end center","color","primary","mat-button","","aria-label","Loop Out",1,"button-link-dashboard",3,"click"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,a){if(1&o&&e.DNE(0,_s,11,10,"div",2)(1,gs,3,1,"ng-template",null,0,e.C5r)(3,Cs,3,1,"ng-template",null,1,e.C5r),2&o){const l=e.sdS(4);e.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",l)}},dependencies:[y.YU,y.Sq,y.bT,$.$z,R.MV,Te.q,D.HM,b.DJ,b.sA,b.UI,U.PW,fe.oV,K.Ld,le.Wk,y.P9,y.QX],encapsulation:2}))}return t(),s})();const kt=t=>({"dashboard-card-content":!0,"error-border":t}),bs=t=>({"p-0":t});function Fs(t,s){if(1&t&&(e.j41(0,"button",28)(1,"mat-icon"),e.EFF(2,"more_vert"),e.k0s()()),2&t){e.XpG();const n=e.sdS(11);e.Y8G("matMenuTriggerFor",n)}}function xs(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const o=r.eBV(n).index,a=e.XpG().$implicit,l=e.XpG(2);return r.Njj(l.onNavigateTo(a.links[o]))}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit;e.R7$(),e.JRh(n)}}function vs(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){r.eBV(n);const o=e.XpG(3);return r.Njj(o.onsortChannelsBy())}),e.EFF(1),e.k0s()}if(2&t){const n=e.XpG(3);e.R7$(),e.SpI("Sort By ","Balance Score"===n.sortField?"Capacity":"Balance Score")}}function Ts(t,s){1&t&&e.nrm(0,"mat-progress-bar",30)}function ks(t,s){if(1&t&&e.nrm(0,"rtl-node-info",31),2&t){const n=e.XpG(3);e.Y8G("information",n.information)("showColorFieldSeparately",!1)}}function Ss(t,s){if(1&t&&e.nrm(0,"rtl-balances-info",32),2&t){const n=e.XpG(3);e.Y8G("balances",n.balances)("errorMessage",n.errorMessages[3]+" "+n.errorMessages[2])}}function Rs(t,s){if(1&t&&e.nrm(0,"rtl-channel-capacity-info",33),2&t){const n=e.XpG(3);e.Y8G("sortBy",n.sortField)("channelBalances",n.channelBalances)("allChannels",n.allChannelsCapacity)("errorMessage",n.errorMessages[3])}}function Es(t,s){if(1&t&&e.nrm(0,"rtl-fee-info",34),2&t){const n=e.XpG(3);e.Y8G("fees",n.fees)("errorMessage",n.errorMessages[1])}}function Is(t,s){if(1&t&&e.nrm(0,"rtl-channel-status-info",35),2&t){const n=e.XpG(3);e.Y8G("channelsStatus",n.channelsStatus)("errorMessage",n.errorMessages[3]+" "+n.errorMessages[4])}}function ws(t,s){1&t&&(e.j41(0,"h3"),e.EFF(1,"Error! Unable to find information!"),e.k0s())}function Ls(t,s){if(1&t&&(e.j41(0,"mat-grid-tile",11)(1,"mat-card",12)(2,"mat-card-header")(3,"mat-card-title",13)(4,"div"),e.nrm(5,"fa-icon",14),e.j41(6,"span"),e.EFF(7),e.k0s()(),e.j41(8,"div"),e.DNE(9,Fs,3,1,"button",15),e.j41(10,"mat-menu",16,1),e.DNE(12,xs,2,1,"button",17)(13,vs,2,1,"button",18),e.k0s()()()(),e.j41(14,"mat-card-content",19),e.DNE(15,Ts,1,0,"mat-progress-bar",20),e.j41(16,"div",21),e.DNE(17,ks,1,2,"rtl-node-info",22)(18,Ss,1,2,"rtl-balances-info",23)(19,Rs,1,4,"rtl-channel-capacity-info",24)(20,Es,1,2,"rtl-fee-info",25)(21,Is,1,2,"rtl-channel-status-info",26)(22,ws,2,0,"h3",27),e.k0s()()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("colspan",n.cols)("rowspan",n.rows),e.R7$(5),e.Y8G("icon",n.icon),e.R7$(2),e.JRh(n.title),e.R7$(2),e.Y8G("ngIf",n.links[0]),e.R7$(3),e.Y8G("ngForOf",n.goToOptions),e.R7$(),e.Y8G("ngIf","capacity"===n.id),e.R7$(),e.Y8G("fxFlex",e.mNQ("node"===n.id||"balance"===n.id?70:"fee"===n.id||"status"===n.id?78:90))("ngClass",e.eq3(17,kt,"node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusBlockchainBalance.status===i.apiCallStatusEnum.ERROR)||"capacity"===n.id&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||"fee"===n.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.ERROR||"status"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusPendingChannels.status===i.apiCallStatusEnum.ERROR))),e.R7$(),e.Y8G("ngIf","node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusBlockchainBalance.status===i.apiCallStatusEnum.INITIATED)||"capacity"===n.id&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||"fee"===n.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.INITIATED||"status"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusPendingChannels.status===i.apiCallStatusEnum.INITIATED)),e.R7$(),e.Y8G("ngSwitch",n.id),e.R7$(),e.Y8G("ngSwitchCase","node"),e.R7$(),e.Y8G("ngSwitchCase","balance"),e.R7$(),e.Y8G("ngSwitchCase","capacity"),e.R7$(),e.Y8G("ngSwitchCase","fee"),e.R7$(),e.Y8G("ngSwitchCase","status")}}function js(t,s){if(1&t&&(e.j41(0,"div",5)(1,"div",6),e.nrm(2,"fa-icon",7),e.j41(3,"span",8),e.EFF(4),e.k0s()(),e.j41(5,"mat-grid-list",9),e.DNE(6,Ls,23,19,"mat-grid-tile",10),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.Y8G("icon",n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.ERROR?n.faFrown:n.faSmile),e.R7$(2),e.JRh(n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.COMPLETED?"Welcome "+n.information.alias+"! Your node is up and running.":n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),e.R7$(),e.Y8G("rowHeight",n.operatorCardHeight),e.R7$(),e.Y8G("ngForOf",n.operatorCards)}}function Gs(t,s){if(1&t&&(e.j41(0,"button",28)(1,"mat-icon"),e.EFF(2,"more_vert"),e.k0s()()),2&t){e.XpG();const n=e.sdS(9);e.Y8G("matMenuTriggerFor",n)}}function Ds(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const o=r.eBV(n).index,a=e.XpG(2).$implicit,l=e.XpG(2);return r.Njj(l.onNavigateTo(a.links[o]))}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit;e.R7$(),e.JRh(n)}}function Ns(t,s){if(1&t&&(e.j41(0,"mat-card-header")(1,"mat-card-title",13)(2,"div"),e.nrm(3,"fa-icon",14),e.j41(4,"span"),e.EFF(5),e.k0s()(),e.j41(6,"div"),e.DNE(7,Gs,3,1,"button",15),e.j41(8,"mat-menu",16,2),e.DNE(10,Ds,2,1,"button",17),e.k0s()()()()),2&t){const n=e.XpG().$implicit;e.R7$(3),e.Y8G("icon",n.icon),e.R7$(2),e.JRh(n.title),e.R7$(2),e.Y8G("ngIf",n.links[0]),e.R7$(3),e.Y8G("ngForOf",n.goToOptions)}}function Ps(t,s){1&t&&e.nrm(0,"mat-progress-bar",30)}function Bs(t,s){if(1&t&&e.nrm(0,"rtl-node-info",46),2&t){const n=e.XpG(3);e.Y8G("information",n.information)}}function As(t,s){if(1&t&&e.nrm(0,"rtl-balances-info",32),2&t){const n=e.XpG(3);e.Y8G("balances",n.balances)("errorMessage",n.errorMessages[3]+" "+n.errorMessages[2])}}function $s(t,s){if(1&t&&e.nrm(0,"rtl-channel-liquidity-info",47),2&t){const n=e.XpG(3);e.Y8G("totalLiquidity",n.totalInboundLiquidity)("allChannels",n.allInboundChannels)("errorMessage",n.errorMessages[3])}}function Ms(t,s){if(1&t&&e.nrm(0,"rtl-channel-liquidity-info",48),2&t){const n=e.XpG(3);e.Y8G("totalLiquidity",n.totalOutboundLiquidity)("allChannels",n.allOutboundChannels)("errorMessage",n.errorMessages[3])}}function Os(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const o=r.eBV(n).index,a=e.XpG(2).$implicit,l=e.XpG(2);return r.Njj(l.onNavigateTo(a.links[o]))}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit;e.R7$(),e.JRh(n)}}function Vs(t,s){if(1&t&&(e.j41(0,"span",49)(1,"mat-tab-group",50)(2,"mat-tab",51),e.nrm(3,"rtl-lightning-invoices",52),e.k0s(),e.j41(4,"mat-tab",53),e.nrm(5,"rtl-lightning-payments",52),e.k0s()(),e.j41(6,"div",54)(7,"button",28)(8,"mat-icon"),e.EFF(9,"more_vert"),e.k0s()(),e.j41(10,"mat-menu",16,3),e.DNE(12,Os,2,1,"button",17),e.k0s()()()),2&t){const n=e.sdS(11),i=e.XpG().$implicit;e.R7$(7),e.Y8G("matMenuTriggerFor",n),e.R7$(5),e.Y8G("ngForOf",i.goToOptions)}}function Ys(t,s){1&t&&(e.j41(0,"h3"),e.EFF(1,"Error! Unable to find information!"),e.k0s())}function Us(t,s){if(1&t&&(e.j41(0,"mat-grid-tile",11)(1,"mat-card",38),e.DNE(2,Ns,11,4,"mat-card-header",39),e.j41(3,"mat-card-content",40),e.DNE(4,Ps,1,0,"mat-progress-bar",20),e.j41(5,"div",41),e.DNE(6,Bs,1,1,"rtl-node-info",42)(7,As,1,2,"rtl-balances-info",23)(8,$s,1,3,"rtl-channel-liquidity-info",43)(9,Ms,1,3,"rtl-channel-liquidity-info",44)(10,Vs,13,2,"span",45)(11,Ys,2,0,"h3",27),e.k0s()()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("colspan",n.cols)("rowspan",n.rows),e.R7$(),e.Y8G("ngClass",e.eq3(14,bs,"transactions"===n.id)),e.R7$(),e.Y8G("ngIf","transactions"!==n.id),e.R7$(),e.Y8G("fxFlex",e.mNQ("transactions"===n.id?100:"balance"===n.id?70:90))("ngClass",e.eq3(16,kt,"node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusBlockchainBalance.status===i.apiCallStatusEnum.ERROR)||("inboundLiq"===n.id||"outboundLiq"===n.id)&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf","node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusBlockchainBalance.status===i.apiCallStatusEnum.INITIATED)||("inboundLiq"===n.id||"outboundLiq"===n.id)&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",n.id),e.R7$(),e.Y8G("ngSwitchCase","node"),e.R7$(),e.Y8G("ngSwitchCase","balance"),e.R7$(),e.Y8G("ngSwitchCase","inboundLiq"),e.R7$(),e.Y8G("ngSwitchCase","outboundLiq"),e.R7$(),e.Y8G("ngSwitchCase","transactions")}}function Xs(t,s){if(1&t&&(e.j41(0,"div",36),e.nrm(1,"fa-icon",7),e.j41(2,"span",8),e.EFF(3),e.k0s()(),e.j41(4,"mat-grid-list",37),e.DNE(5,Us,12,18,"mat-grid-tile",10),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faSmile),e.R7$(2),e.SpI("Welcome ",n.information.alias,"! Your node is up and running."),e.R7$(),e.Y8G("rowHeight",n.merchantCardHeight),e.R7$(),e.Y8G("ngForOf",n.merchantCards)}}let Hs=(()=>{var t;class s{constructor(i,o,a,l,h){switch(this.logger=i,this.store=o,this.actions=a,this.commonService=l,this.router=h,this.faSmile=q.Qpm,this.faFrown=q.wB1,this.faAngleDoubleDown=I.WxX,this.faAngleDoubleUp=I.$sC,this.faChartPie=I.W1p,this.faBolt=I.zm_,this.faServer=I.D6w,this.faNetworkWired=I.eGi,this.flgChildInfoUpdated=!1,this.userPersonaEnum=p.HW,this.activeChannels=0,this.inactiveChannels=0,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.information={},this.balances={onchain:-1,lightning:-1,total:0},this.allChannels=[],this.channelsStatus={},this.allChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="390px",this.merchantCardHeight="62px",this.sortField="Balance Score",this.screenSizeEnum=p.f7,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusFees=null,this.apiCallStatusBlockchainBalance=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize){case p.f7.XS:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:6},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}];break;case p.f7.SM:case p.f7.MD:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}];break;default:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}]}}ngOnInit(){this.store.select(E.gj).pipe((0,x.Q)(this.unSubs[0]),(0,me.E)(this.store.select(W._c))).subscribe(([i,o])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=i.apiCallStatus,this.apiCallStatusNodeInfo.status===p.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=o,this.information=i.information}),this.store.select(E.oR).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessages[1]="",this.apiCallStatusFees=i.apiCallStatus,this.apiCallStatusFees.status===p.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=i.fees}),this.store.select(E.$7).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessages[2]="",this.apiCallStatusBlockchainBalance=i.apiCallStatus,this.apiCallStatusBlockchainBalance.status===p.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusBlockchainBalance.message?JSON.stringify(this.apiCallStatusBlockchainBalance.message):this.apiCallStatusBlockchainBalance.message?this.apiCallStatusBlockchainBalance.message:""),this.balances.onchain=i.blockchainBalance.total_balance&&+i.blockchainBalance.total_balance>=0?+i.blockchainBalance.total_balance:0,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances)}),this.store.select(E.Uv).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessages[4]="",this.apiCallStatusPendingChannels=i.apiCallStatus,this.apiCallStatusPendingChannels.status===p.wn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPendingChannels.message?JSON.stringify(this.apiCallStatusPendingChannels.message):this.apiCallStatusPendingChannels.message?this.apiCallStatusPendingChannels.message:""),this.channelsStatus.pending={num_channels:i.pendingChannelsSummary.open?.num_channels,capacity:i.pendingChannelsSummary.open?.limbo_balance},this.channelsStatus.closing={num_channels:(i.pendingChannelsSummary.closing?.num_channels||0)+(i.pendingChannelsSummary.force_closing?.num_channels||0)+(i.pendingChannelsSummary.waiting_close?.num_channels||0),capacity:i.pendingChannelsSummary.total_limbo_balance}}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[4])).subscribe(i=>{this.errorMessages[3]="",this.apiCallStatusChannels=i.apiCallStatus,this.apiCallStatusChannels.status===p.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:"");const o=i.lightningBalance&&i.lightningBalance.local?+i.lightningBalance.local:0,a=i.lightningBalance&&i.lightningBalance.remote?+i.lightningBalance.remote:0;this.channelBalances={localBalance:o,remoteBalance:a,balancedness:+(1-Math.abs((o-a)/(o+a))).toFixed(3)},this.balances.lightning=i.lightningBalance.local||0,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances),this.activeChannels=i.channelsSummary.active?.num_channels||0,this.inactiveChannels=i.channelsSummary.inactive?.num_channels||0,this.channelsStatus.active=i.channelsSummary.active,this.channelsStatus.inactive=i.channelsSummary.inactive,this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.allChannels=i.channels?.filter(h=>!0===h.active),this.allChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels,"balancedness"))),this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels?.filter(h=>h.remote_balance&&h.remote_balance>0),"remote_balance"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels?.filter(h=>h.local_balance&&h.local_balance>0),"local_balance"))),this.allChannels.forEach(h=>{this.totalInboundLiquidity=this.totalInboundLiquidity+ +(h.remote_balance||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+ +(h.local_balance||0)}),this.flgChildInfoUpdated=!!(this.balances.lightning>=0&&this.balances.onchain>=0&&this.fees.month_fee_sum&&this.fees.month_fee_sum>=0),this.logger.info(i)}),this.actions.pipe((0,x.Q)(this.unSubs[5]),(0,L.p)(i=>i.type===p.QP.FETCH_FEES_LND||i.type===p.QP.SET_FEES_LND)).subscribe(i=>{i.type===p.QP.FETCH_FEES_LND&&(this.flgChildInfoUpdated=!1),i.type===p.QP.SET_FEES_LND&&(this.flgChildInfoUpdated=!0)})}onNavigateTo(i){"inactive"===i?this.router.navigateByUrl("/lnd/connections",{state:{filterColumn:"active",filterValue:i}}):this.router.navigateByUrl("/lnd/"+i)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.allChannels.sort((i,o)=>{const a=+(i.local_balance||0)+ +(i.remote_balance||0),l=+(o.local_balance||0)+ +(o.remote_balance||0);return a>l?-1:a{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(ce.En),e.rXU(z.h),e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-home"]],standalone:!1,decls:3,vars:2,consts:[["merchantDashboard",""],["menuOperator","matMenu"],["menuMerchant","matMenu"],["menuTransactions","matMenu"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",3,"ngSwitch"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100","direction","In",3,"totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100","direction","Out",3,"totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100","direction","In",3,"totalLiquidity","allChannels","errorMessage"],["fxFlex","100","direction","Out",3,"totalLiquidity","allChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],["calledFrom","home"],["label","Pay"],[1,"underline"]],template:function(o,a){if(1&o&&e.DNE(0,js,7,4,"div",4)(1,Xs,6,4,"ng-template",null,0,e.C5r),2&o){const l=e.sdS(2);e.Y8G("ngIf",(null==a.selNode?null:a.selNode.settings.userPersona)===a.userPersonaEnum.OPERATOR)("ngIfElse",l)}},dependencies:[y.YU,y.Sq,y.bT,y.ux,y.e1,y.fG,ee.aY,Ke.iY,B.RN,B.m2,B.MM,B.dh,Le.B_,Le.NS,ke.An,$e.kk,$e.fb,$e.Cp,D.HM,b.DJ,b.sA,b.UI,U.PW,J.mq,J.T8,gt,Ct,bt,Ha,Ft,xt,as,ys],encapsulation:2}))}return t(),s})();var at=S(1975),st=S(5837);function qs(t,s){if(1&t&&(e.j41(0,"span",10),e.EFF(1,"Channels"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.activeChannels))}}function zs(t,s){if(1&t&&(e.j41(0,"span",10),e.EFF(1,"Peers"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.activePeers))}}let Js=(()=>{var t;class s{constructor(i,o,a){this.store=i,this.logger=o,this.router=a,this.activePeers=0,this.activeChannels=0,this.faUsers=I.gdJ,this.faChartPie=I.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.activeLink=this.links.findIndex(i=>i.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(i=>i instanceof j.gx)).subscribe({next:i=>{this.activeLink=this.links.findIndex(o=>o.link===i.urlAfterRedirects.substring(i.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(W._c).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.selNode=i}),this.store.select(E.os).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.activePeers=i.peers&&i.peers.length?i.peers.length:0,this.logger.info(i)}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.activeChannels=i.channelsSummary.active?.num_channels||0,this.logger.info(i)}),this.store.select(E.$7).pipe((0,x.Q)(this.unSubs[4])).subscribe(i=>{this.balances=[{title:"Total Balance",dataValue:i.blockchainBalance.total_balance||0},{title:"Confirmed",dataValue:i.blockchainBalance.confirmed_balance||0},{title:"Unconfirmed",dataValue:i.blockchainBalance.unconfirmed_balance||0}],this.logger.info(i)})}onSelectedTabChange(i){this.router.navigateByUrl("/lnd/connections/"+this.links[i.index].link)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(G.il),e.rXU(V.gP),e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-connections"]],standalone:!1,decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,a){1&o&&(e.j41(0,"div",0),e.nrm(1,"fa-icon",1),e.j41(2,"span",2),e.EFF(3,"On-chain Balance"),e.k0s()(),e.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),e.nrm(7,"rtl-currency-unit-converter",5),e.k0s()()(),e.j41(8,"div",0),e.nrm(9,"fa-icon",1),e.j41(10,"span",2),e.EFF(11,"Connections"),e.k0s()(),e.j41(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),e.mxI("selectedIndexChange",function(h){return e.DH7(a.activeLink,h)||(a.activeLink=h),h}),e.bIt("selectedTabChange",function(h){return a.onSelectedTabChange(h)}),e.j41(16,"mat-tab"),e.DNE(17,qs,2,2,"ng-template",8),e.k0s(),e.j41(18,"mat-tab"),e.DNE(19,zs,2,2,"ng-template",8),e.k0s()(),e.j41(20,"div",9),e.nrm(21,"router-outlet"),e.k0s()()()()),2&o&&(e.R7$(),e.Y8G("icon",a.faChartPie),e.R7$(6),e.Y8G("values",a.balances),e.R7$(2),e.Y8G("icon",a.faUsers),e.R7$(6),e.R50("selectedIndex",a.activeLink))},dependencies:[ee.aY,B.RN,B.m2,b.DJ,b.sA,b.UI,at.k,J.ES,J.mq,J.T8,st.f,j.n3],encapsulation:2}))}return t(),s})();var ot=S(9172),St=S(6354),Rt=S(92);const Qs=["form"];function Ws(t,s){if(1&t&&(e.j41(0,"mat-option",41),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.JRh(n.alias?n.alias:n.pub_key?n.pub_key:"")}}function Zs(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Peer alias is required."),e.k0s())}function Ks(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Peer not found in the list."),e.k0s())}function eo(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",38)(1,"mat-label"),e.EFF(2,"Peer Alias"),e.k0s(),e.nrm(3,"input",39),e.j41(4,"mat-autocomplete",40,4),e.bIt("optionSelected",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSelectedPeerChanged())}),e.DNE(6,Ws,2,2,"mat-option",28),e.nI1(7,"async"),e.k0s(),e.DNE(8,Zs,2,0,"mat-error",20)(9,Ks,2,0,"mat-error",20),e.k0s()}if(2&t){const n=e.sdS(5),i=e.XpG();e.R7$(3),e.Y8G("formControl",i.selectedPeer)("matAutocomplete",n),e.R7$(),e.Y8G("displayWith",i.displayFn),e.R7$(2),e.Y8G("ngForOf",e.bMT(7,6,i.filteredPeers)),e.R7$(2),e.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.required),e.R7$(),e.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.notfound)}}function to(t,s){1&t&&e.eu8(0)}function no(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function io(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("Amount must be less than or equal to ",n.totalBalance,".")}}function ao(t,s){if(1&t&&(e.j41(0,"div",42),e.nrm(1,"fa-icon",43),e.j41(2,"span",6)(3,"div"),e.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(5,"span",44)(6,"span"),e.EFF(7),e.k0s(),e.j41(8,"span"),e.EFF(9),e.k0s(),e.j41(10,"span"),e.EFF(11),e.k0s(),e.j41(12,"span"),e.EFF(13),e.k0s(),e.j41(14,"span"),e.EFF(15),e.k0s()()()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faInfoCircle),e.R7$(6),e.SpI("- High: ",n.recommendedFee.fastestFee||"Unknown"),e.R7$(2),e.SpI("- Medium: ",n.recommendedFee.halfHourFee||"Unknown"),e.R7$(2),e.SpI("- Low: ",n.recommendedFee.hourFee||"Unknown"),e.R7$(2),e.SpI("- Economy: ",n.recommendedFee.economyFee||"Unknown"),e.R7$(2),e.SpI("- Minimum: ",n.recommendedFee.minimumFee||"Unknown")}}function so(t,s){if(1&t&&(e.j41(0,"mat-option",41),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n.id),e.R7$(),e.SpI(" ",n.name," ")}}function oo(t,s){if(1&t&&(e.j41(0,"mat-hint"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("Mempool Min: ",n.recommendedFee.minimumFee," (Sats/vByte)")}}function lo(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Target Confirmation Blocks is required."),e.k0s())}function ro(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Fee is required."),e.k0s())}function co(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("Lower than min feerate ",n.recommendedFee.minimumFee," in the mempool.")}}function po(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",32)(1,"mat-slide-toggle",45),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.taprootChannel,o)||(a.taprootChannel=o),r.Njj(o)}),e.EFF(2,"Taproot Channel"),e.k0s()()}if(2&t){const n=e.XpG();e.R7$(),e.R50("ngModel",n.taprootChannel)}}function mo(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.channelConnectionError)}}function uo(t,s){if(1&t&&(e.j41(0,"div",46),e.nrm(1,"fa-icon",43),e.DNE(2,mo,2,1,"span",20),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.channelConnectionError)}}function ho(t,s){if(1&t&&(e.j41(0,"mat-expansion-panel",48)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),e.EFF(4,"Peer: \xa0"),e.k0s(),e.j41(5,"strong",49),e.EFF(6),e.k0s()()(),e.j41(7,"div",13)(8,"div",50)(9,"div",38)(10,"h4",51),e.EFF(11,"Pubkey"),e.k0s(),e.j41(12,"span",52),e.EFF(13),e.k0s()()(),e.nrm(14,"mat-divider",53),e.j41(15,"div",50)(16,"div",54)(17,"h4",51),e.EFF(18,"Address"),e.k0s(),e.j41(19,"span",55),e.EFF(20),e.k0s()(),e.j41(21,"div",54)(22,"h4",51),e.EFF(23,"Inbound"),e.k0s(),e.j41(24,"span",55),e.EFF(25),e.k0s()()()()()),2&t){const n=e.XpG(2);e.R7$(6),e.JRh((null==n.peer?null:n.peer.alias)||(null==n.peer?null:n.peer.address)),e.R7$(7),e.JRh(n.peer.pub_key),e.R7$(7),e.JRh(null==n.peer?null:n.peer.address),e.R7$(5),e.JRh(null!=n.peer&&n.peer.inbound?"True":"False")}}function _o(t,s){if(1&t&&e.DNE(0,ho,26,4,"mat-expansion-panel",47),2&t){const n=e.XpG();e.Y8G("ngIf",n.peer)}}let Et=(()=>{var t;class s{constructor(i,o,a,l,h,f,P){this.logger=i,this.dialogRef=o,this.data=a,this.store=l,this.actions=h,this.commonService=f,this.dataService=P,this.selectedPeer=new g.hs,this.amount=new g.hs,this.faExclamationTriangle=I.zpE,this.faInfoCircle=I.iW_,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.selectedPubkey="",this.isPrivate=!1,this.selTransType="0",this.isTaprootAvailable=!1,this.taprootChannel=!1,this.spendUnconfirmed=!1,this.transTypeValue="",this.transTypes=p.XG,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.data.message?(this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[],this.isTaprootAvailable=this.commonService.isVersionCompatible(this.information.version,"0.17.0")):(this.information={},this.totalBalance=0,this.peer=null,this.peers=[],this.isTaprootAvailable=!1),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(a=>{this.selNode=a,this.isPrivate=!!a?.settings.unannouncedChannels}),this.actions.pipe((0,x.Q)(this.unSubs[1]),(0,L.p)(a=>a.type===p.QP.UPDATE_API_CALL_STATUS_LND||a.type===p.QP.FETCH_CHANNELS_LND)).subscribe(a=>{a.type===p.QP.UPDATE_API_CALL_STATUS_LND&&a.payload.status===p.wn.ERROR&&"SaveNewChannel"===a.payload.action&&(this.channelConnectionError=a.payload.message),a.type===p.QP.FETCH_CHANNELS_LND&&this.dialogRef.close()});let i="",o="";this.sortedPeers=this.peers.sort((a,l)=>(i=a.alias?a.alias.toLowerCase():a.pub_key?a.pub_key.toLowerCase():"",o=l.alias?l.alias.toLowerCase():a.pub_key?a.pub_key.toLowerCase():"",io?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,x.Q)(this.unSubs[2]),(0,ot.Z)(""),(0,St.T)(a=>"string"==typeof a?a:a.alias?a.alias:a.pub_key),(0,St.T)(a=>a?this.filterPeers(a):this.sortedPeers.slice()))}filterPeers(i){return this.sortedPeers?.filter(o=>0===o.alias?.toLowerCase().indexOf(i?i.toLowerCase():""))}displayFn(i){return i&&i.alias?i.alias:i&&i.pub_key?i.pub_key:""}onSelectedPeerChanged(){if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.pub_key?this.selectedPeer.value.pub_key:null,"string"==typeof this.selectedPeer.value){const i=this.peers?.filter(o=>o.alias?.length===this.selectedPeer.value.length&&0===o.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===i.length&&i[0].pub_key&&(this.selectedPubkey=i[0].pub_key)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!!this.selNode?.settings.unannouncedChannels,this.taprootChannel=!1,this.spendUnconfirmed=!1,this.selTransType="0",this.transTypeValue="",this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||("1"===this.selTransType||"2"===this.selTransType)&&!this.transTypeValue||"2"===this.selTransType&&this.recommendedFee.minimumFee>+this.transTypeValue)return!0;this.store.dispatch((0,N.vL)({payload:{selectedPeerPubkey:this.peer&&this.peer.pub_key?this.peer.pub_key:this.selectedPubkey,fundingAmount:this.fundingAmount,private:this.isPrivate,transType:this.selTransType,transTypeValue:this.transTypeValue,spendUnconfirmed:this.spendUnconfirmed,commitmentType:this.taprootChannel?5:null}}))}onAdvancedPanelToggle(i){this.advancedTitle=i?"Advanced Options | "+("1"===this.selTransType?"Target Confirmation Blocks: ":"2"===this.selTransType?"Fee (Sats/vByte): ":"Default")+("1"===this.selTransType||"2"===this.selTransType?this.transTypeValue:"")+" | Taproot Channel: "+(this.taprootChannel?"Yes":"No")+" | Spend Unconfirmed Output: "+(this.spendUnconfirmed?"Yes":"No"):"Advanced Options"}onSelTransTypeChanged(i){this.transTypeValue="",i.value===this.transTypes[2].id&&this.dataService.getRecommendedFeeRates().pipe((0,x.Q)(this.unSubs[3])).subscribe({next:o=>{this.recommendedFee=o},error:o=>{this.logger.error(o)}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(G.il),e.rXU(ce.En),e.rXU(z.h),e.rXU(Fe.u))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-open-channel"]],viewQuery:function(o,a){if(1&o&&e.GBs(Qs,7),2&o){let l;e.mGM(l=e.lsd())&&(a.form=l.first)}},standalone:!1,decls:66,vars:30,consts:[["form","ngForm"],["amt","ngModel"],["transTypeVal","ngModel"],["peerDetailsExpansionBlock",""],["auto","matAutocomplete"],["fxLayout","row","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start end"],["matInput","","type","number","required","","name","amnt",3,"ngModelChange","step","min","max","ngModel"],["matSuffix",""],[4,"ngIf"],["fxFlex","35","fxLayoutAlign","start center"],["color","primary","name","isPrivate",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","column","fxFlex","49"],[3,"valueChange","selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["matInput","","type","number","name","transTpValue",3,"ngModelChange","required","disabled","step","min","ngModel"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-2"],["fxFlex","50","fxLayoutAlign","start center",4,"ngIf"],["fxFlex","50","fxLayoutAlign","start center"],["color","primary","name","spendUnconfirmed",3,"ngModelChange","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit"],["fxFlex","100"],["type","text","aria-label","Peers","matInput","","required","",3,"formControl","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["color","primary","name","taprootChannel",3,"ngModelChange","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayout","row"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",5)(1,"div",6)(2,"mat-card-header",7)(3,"div",8)(4,"span",9),e.EFF(5),e.k0s()(),e.j41(6,"button",10),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",11)(9,"form",12,0),e.bIt("submit",function(){return r.eBV(l),r.Njj(a.onOpenChannel())})("reset",function(){return r.eBV(l),r.Njj(a.resetData())}),e.j41(11,"div",13),e.DNE(12,eo,10,8,"mat-form-field",14),e.k0s(),e.DNE(13,to,1,0,"ng-container",15),e.j41(14,"div",13)(15,"div",16)(16,"mat-form-field",17)(17,"mat-label"),e.EFF(18,"Amount"),e.k0s(),e.j41(19,"input",18,1),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.fundingAmount,f)||(a.fundingAmount=f),r.Njj(f)}),e.k0s(),e.j41(21,"mat-hint"),e.EFF(22),e.nI1(23,"number"),e.k0s(),e.j41(24,"span",19),e.EFF(25," Sats "),e.k0s(),e.DNE(26,no,2,0,"mat-error",20)(27,io,2,1,"mat-error",20),e.k0s(),e.j41(28,"div",21)(29,"mat-slide-toggle",22),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.isPrivate,f)||(a.isPrivate=f),r.Njj(f)}),e.EFF(30,"Private Channel"),e.k0s()()(),e.j41(31,"mat-expansion-panel",23),e.bIt("closed",function(){return r.eBV(l),r.Njj(a.onAdvancedPanelToggle(!0))})("opened",function(){return r.eBV(l),r.Njj(a.onAdvancedPanelToggle(!1))}),e.j41(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),e.EFF(35),e.k0s()()(),e.j41(36,"div",24),e.DNE(37,ao,16,6,"div",25),e.j41(38,"div",16)(39,"mat-form-field",26)(40,"mat-label"),e.EFF(41,"Transaction Type"),e.k0s(),e.j41(42,"mat-select",27),e.mxI("valueChange",function(f){return r.eBV(l),e.DH7(a.selTransType,f)||(a.selTransType=f),r.Njj(f)}),e.bIt("selectionChange",function(f){return r.eBV(l),r.Njj(a.onSelTransTypeChanged(f))}),e.DNE(43,so,2,2,"mat-option",28),e.k0s()(),e.j41(44,"mat-form-field",26)(45,"mat-label"),e.EFF(46),e.k0s(),e.j41(47,"input",29,2),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.transTypeValue,f)||(a.transTypeValue=f),r.Njj(f)}),e.k0s(),e.DNE(49,oo,2,1,"mat-hint",20)(50,lo,2,0,"mat-error",20)(51,ro,2,0,"mat-error",20)(52,co,2,1,"mat-error",20),e.k0s()(),e.j41(53,"div",30),e.DNE(54,po,3,1,"div",31),e.j41(55,"div",32)(56,"mat-slide-toggle",33),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.spendUnconfirmed,f)||(a.spendUnconfirmed=f),r.Njj(f)}),e.EFF(57,"Spend Unconfirmed Output"),e.k0s()()()()()(),e.DNE(58,uo,3,2,"div",34),e.j41(59,"div",35)(60,"button",36),e.EFF(61,"Clear Fields"),e.k0s(),e.j41(62,"button",37),e.EFF(63,"Open Channel"),e.k0s()()()()()(),e.DNE(64,_o,1,1,"ng-template",null,3,e.C5r)}if(2&o){const l=e.sdS(20),h=e.sdS(65);e.R7$(5),e.JRh(a.alertTitle),e.R7$(7),e.Y8G("ngIf",!a.peer&&a.peers&&a.peers.length>0),e.R7$(),e.Y8G("ngTemplateOutlet",h),e.R7$(6),e.Y8G("step",1e3)("min",1)("max",a.totalBalance),e.R50("ngModel",a.fundingAmount),e.R7$(3),e.SpI("(Remaining: ",e.bMT(23,28,a.totalBalance-(a.fundingAmount?a.fundingAmount:0)),")"),e.R7$(4),e.Y8G("ngIf",null==l.errors?null:l.errors.required),e.R7$(),e.Y8G("ngIf",null==l.errors?null:l.errors.max),e.R7$(2),e.R50("ngModel",a.isPrivate),e.R7$(6),e.JRh(a.advancedTitle),e.R7$(2),e.Y8G("ngIf",a.recommendedFee.minimumFee),e.R7$(5),e.R50("value",a.selTransType),e.R7$(),e.Y8G("ngForOf",a.transTypes),e.R7$(3),e.JRh("0"===a.selTransType?"Default":"1"===a.selTransType?"Target Confirmation Blocks":"Fee (Sats/vByte)"),e.R7$(),e.Y8G("required","0"!==a.selTransType)("disabled","0"===a.selTransType)("step",1)("min","2"===a.selTransType?a.recommendedFee.minimumFee:0),e.R50("ngModel",a.transTypeValue),e.R7$(2),e.Y8G("ngIf","2"===a.selTransType),e.R7$(),e.Y8G("ngIf","1"===a.selTransType&&!a.transTypeValue),e.R7$(),e.Y8G("ngIf","2"===a.selTransType&&!a.transTypeValue),e.R7$(),e.Y8G("ngIf","2"===a.selTransType&&a.transTypeValue&&+a.transTypeValue{var t;class s{constructor(i,o,a,l,h,f,P,w,M){this.dialogRef=i,this.data=o,this.store=a,this.lndEffects=l,this.formBuilder=h,this.actions=f,this.logger=P,this.commonService=w,this.dataService=M,this.faExclamationTriangle=I.zpE,this.faInfoCircle=I.iW_,this.peerAddress="",this.totalBalance=0,this.transTypes=p.XG,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.isTaprootAvailable=!1,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.totalBalance=this.data.message?.balance||0,this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[g.k0.required]],peerAddress:[this.data.message?.peer?.pub_key?this.data.message?.peer?.pub_key+(this.data.message?.peer?.address?"@"+this.data.message?.peer?.address:""):"",[g.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[g.k0.required,g.k0.min(1),g.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],selTransType:[p.XG[0].id],transTypeValue:[{value:"",disabled:!0}],taprootChannel:[!1],spendUnconfirmed:[!1],hiddenAmount:["",[g.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(E.gj).pipe((0,x.Q)(this.unSubs[0]),(0,me.E)(this.store.select(W._c))).subscribe(([o,a])=>{this.selNode=a,this.channelFormGroup.controls.isPrivate.setValue(!!a?.settings.unannouncedChannels),this.isTaprootAvailable=this.commonService.isVersionCompatible(o.information.version,"0.17.0")}),this.channelFormGroup.controls.selTransType.valueChanges.pipe((0,x.Q)(this.unSubs[1])).subscribe(o=>{o===p.XG[0].id?(this.channelFormGroup.controls.transTypeValue.setValue(""),this.channelFormGroup.controls.transTypeValue.disable(),this.channelFormGroup.controls.transTypeValue.setValidators(null),this.channelFormGroup.controls.transTypeValue.setErrors(null)):(this.channelFormGroup.controls.transTypeValue.setValue(""),this.channelFormGroup.controls.transTypeValue.enable(),this.channelFormGroup.controls.transTypeValue.setValidators([g.k0.required]))}),this.actions.pipe((0,x.Q)(this.unSubs[2]),(0,L.p)(o=>o.type===p.QP.NEWLY_ADDED_PEER_LND||o.type===p.QP.FETCH_PENDING_CHANNELS_LND||o.type===p.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(o=>{o.type===p.QP.NEWLY_ADDED_PEER_LND&&(this.logger.info(o.payload),this.flgEditable=!1,this.newlyAddedPeer=o.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),o.type===p.QP.FETCH_PENDING_CHANNELS_LND&&this.dialogRef.close(),o.type===p.QP.UPDATE_API_CALL_STATUS_LND&&o.payload.status===p.wn.ERROR&&("SaveNewPeer"===o.payload.action||"FetchGraphNode"===o.payload.action?this.peerConnectionError=o.payload.message:"SaveNewChannel"===o.payload.action&&(this.channelConnectionError=o.payload.message))})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="";const i=this.peerFormGroup.controls.peerAddress.value.search("@");let o="",a="";i>-1?(o=this.peerFormGroup.controls.peerAddress.value.substring(0,i),a=this.peerFormGroup.controls.peerAddress.value.substring(i+1),this.connectPeerWithParams(o,a)):(this.store.dispatch((0,N.t0)({payload:{pubkey:this.peerFormGroup.controls.peerAddress.value}})),this.lndEffects.setGraphNode.pipe((0,be.s)(1)).subscribe(l=>{setTimeout(()=>{a=l.node.addresses&&l.node.addresses.length&&l.node.addresses.length>0&&l.node.addresses[0].addr?l.node.addresses[0].addr:"",this.connectPeerWithParams(this.peerFormGroup.controls.peerAddress.value,a)},0)}))}connectPeerWithParams(i,o){this.store.dispatch((0,N.sq)({payload:{pubkey:i,host:o,perm:!1}}))}onOpenChannel(){return"2"===this.channelFormGroup.controls.selTransType.value&&this.recommendedFee.minimumFee>this.channelFormGroup.controls.transTypeValue.value?(this.channelFormGroup.controls.transTypeValue.setErrors({minimum:!0}),!0):!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||"1"===this.channelFormGroup.controls.selTransType.value&&!this.channelFormGroup.controls.transTypeValue.value||"2"===this.channelFormGroup.controls.selTransType.value&&!this.channelFormGroup.controls.transTypeValue.value||(this.channelConnectionError="",void this.store.dispatch((0,N.vL)({payload:{selectedPeerPubkey:this.newlyAddedPeer?.pub_key,fundingAmount:this.channelFormGroup.controls.fundingAmount.value,private:this.channelFormGroup.controls.isPrivate.value,transType:this.channelFormGroup.controls.selTransType.value,transTypeValue:this.channelFormGroup.controls.transTypeValue.value,spendUnconfirmed:this.channelFormGroup.controls.spendUnconfirmed.value,commitmentType:this.channelFormGroup.controls.taprootChannel.value?5:null}})))}onSelTransTypeChanged(i){this.channelFormGroup.controls.transTypeValue.setValue(""),i.value===this.transTypes[2].id&&this.dataService.getRecommendedFeeRates().pipe((0,x.Q)(this.unSubs[3])).subscribe({next:o=>{this.recommendedFee=o},error:o=>{this.logger.error(o)}})}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(i){switch(i.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+this.newlyAddedPeer?.alias:"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+this.newlyAddedPeer?.alias:"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}i.selectedIndex{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(G.il),e.rXU(Pe.L),e.rXU(g.ze),e.rXU(ce.En),e.rXU(V.gP),e.rXU(z.h),e.rXU(Fe.u))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-connect-peer"]],viewQuery:function(o,a){if(1&o&&(e.GBs(fo,5),e.GBs(go,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.form=l.first),e.mGM(l=e.lsd())&&(a.stepper=l.first)}},standalone:!1,decls:70,vars:31,consts:[["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start end"],["matInput","","formControlName","fundingAmount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxFlex","35","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start end"],["tabindex","3","formControlName","selTransType",3,"selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","50"],["matInput","","formControlName","transTypeValue","type","number","name","transTypeValue","tabindex","4",3,"step","min","required"],["fxFlex","50","fxLayoutAlign","start center",4,"ngIf"],["fxFlex","50","fxLayoutAlign","start center"],["tabindex","6","color","primary","formControlName","spendUnconfirmed","name","spendUnconfirmed"],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["tabindex","6","color","primary","formControlName","taprootChannel","name","taprootChannel",1,"ps-2"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Connect to a new peer"),e.k0s()(),e.j41(6,"button",6),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),e.bIt("selectionChange",function(f){return r.eBV(l),r.Njj(a.stepSelectionChanged(f))}),e.j41(12,"mat-step",10)(13,"form",11),e.DNE(14,Co,1,1,"ng-template",12),e.j41(15,"mat-form-field",13)(16,"mat-label"),e.EFF(17,"Lightning Address (pubkey OR pubkey@ip:port)"),e.k0s(),e.nrm(18,"input",14),e.DNE(19,yo,2,0,"mat-error",15),e.k0s(),e.DNE(20,bo,4,2,"div",16),e.j41(21,"div",17)(22,"button",18),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onConnectPeer())}),e.EFF(23),e.k0s()()()(),e.j41(24,"mat-step",10)(25,"form",19),e.DNE(26,Fo,1,1,"ng-template",20),e.j41(27,"div",21),e.DNE(28,xo,16,6,"div",22),e.j41(29,"div",23)(30,"mat-form-field",24)(31,"mat-label"),e.EFF(32,"Amount"),e.k0s(),e.nrm(33,"input",25),e.j41(34,"mat-hint"),e.EFF(35),e.nI1(36,"number"),e.k0s(),e.j41(37,"span",26),e.EFF(38," Sats "),e.k0s(),e.DNE(39,vo,2,0,"mat-error",15)(40,To,2,0,"mat-error",15)(41,ko,2,1,"mat-error",15),e.k0s(),e.j41(42,"div",27)(43,"mat-slide-toggle",28),e.EFF(44,"Private Channel"),e.k0s()()(),e.j41(45,"div",29)(46,"mat-form-field",30)(47,"mat-label"),e.EFF(48,"Transaction Type"),e.k0s(),e.j41(49,"mat-select",31),e.bIt("selectionChange",function(f){return r.eBV(l),r.Njj(a.onSelTransTypeChanged(f))}),e.DNE(50,So,2,2,"mat-option",32),e.k0s()(),e.j41(51,"mat-form-field",33)(52,"mat-label"),e.EFF(53),e.k0s(),e.nrm(54,"input",34),e.DNE(55,Ro,2,1,"mat-hint",15)(56,Eo,2,1,"mat-error",15)(57,Io,2,1,"mat-error",15),e.k0s()(),e.j41(58,"div",29),e.DNE(59,wo,3,0,"div",35),e.j41(60,"div",36)(61,"mat-slide-toggle",37),e.EFF(62,"Spend Unconfirmed Output"),e.k0s()()()(),e.DNE(63,Lo,4,2,"div",16),e.j41(64,"div",17)(65,"button",38),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onOpenChannel())}),e.EFF(66),e.k0s()()()()(),e.j41(67,"div",39)(68,"button",40),e.EFF(69),e.k0s()()()()()()}2&o&&(e.R7$(10),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",a.peerFormGroup)("editable",a.flgEditable),e.R7$(),e.Y8G("formGroup",a.peerFormGroup),e.R7$(6),e.Y8G("ngIf",null==a.peerFormGroup.controls.peerAddress.errors?null:a.peerFormGroup.controls.peerAddress.errors.required),e.R7$(),e.Y8G("ngIf",""!==a.peerConnectionError),e.R7$(3),e.JRh(""!==a.peerConnectionError?"Retry":"Add Peer"),e.R7$(),e.Y8G("stepControl",a.channelFormGroup)("editable",a.flgEditable),e.R7$(),e.Y8G("formGroup",a.channelFormGroup),e.R7$(3),e.Y8G("ngIf",a.recommendedFee.minimumFee),e.R7$(5),e.Y8G("step",1e3),e.R7$(2),e.SpI("Remaining: ",e.bMT(36,29,a.totalBalance-(a.channelFormGroup.controls.fundingAmount.value?a.channelFormGroup.controls.fundingAmount.value:0))),e.R7$(4),e.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.required),e.R7$(),e.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.min),e.R7$(),e.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.max),e.R7$(9),e.Y8G("ngForOf",a.transTypes),e.R7$(3),e.JRh("0"===a.channelFormGroup.controls.selTransType.value?"Default":"1"===a.channelFormGroup.controls.selTransType.value?"Target Confirmation Blocks":"Fee (Sats/vByte)"),e.R7$(),e.Y8G("step",1)("min","2"===a.channelFormGroup.controls.selTransType.value?a.recommendedFee.minimumFee:0)("required","0"!==a.channelFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf","2"===a.channelFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf",null==a.channelFormGroup.controls.transTypeValue.errors?null:a.channelFormGroup.controls.transTypeValue.errors.required),e.R7$(),e.Y8G("ngIf",a.channelFormGroup.controls.transTypeValue.value&&(null==a.channelFormGroup.controls.transTypeValue.errors?null:a.channelFormGroup.controls.transTypeValue.errors.minimum)),e.R7$(2),e.Y8G("ngIf",a.isTaprootAvailable),e.R7$(4),e.Y8G("ngIf",""!==a.channelConnectionError),e.R7$(3),e.JRh(""!==a.channelConnectionError?"Retry":"Open Channel"),e.R7$(2),e.Y8G("mat-dialog-close",!1),e.R7$(),e.JRh(null!=a.newlyAddedPeer&&a.newlyAddedPeer.pub_key?"Do It Later":"Close"))},dependencies:[y.Sq,y.bT,g.qT,g.me,g.Q0,g.BC,g.cb,g.YS,g.VZ,g.j4,g.JD,ee.aY,ne.tx,$.$z,B.m2,B.MM,Z.fg,R.rl,R.nJ,R.MV,R.TL,R.yw,b.DJ,b.sA,b.UI,O.VO,ae.wT,Re.sG,de.V5,de.Ti,de.M6,pe.N,ye.V,y.QX],encapsulation:2}))}return t(),s})();const jo=()=>["all"],Go=t=>({"error-border":t}),Do=()=>["no_peer"],lt=t=>({width:t}),No=t=>({"display-none":t});function Po(t,s){if(1&t&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function Bo(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function Ao(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Alias"),e.k0s())}function $o(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.alias)}}function Mo(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Public Key"),e.k0s())}function Oo(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.pub_key)}}function Vo(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Address"),e.k0s())}function Yo(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.address)}}function Uo(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Sync Type"),e.k0s())}function Xo(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,null==n?null:n.sync_type,"sync","_"))}}function Ho(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Inbound"),e.k0s())}function qo(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(null!=n&&n.inbound?"Yes":"No")}}function zo(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Bytes Sent"),e.k0s())}function Jo(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.bytes_sent)," ")}}function Qo(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Bytes Received"),e.k0s())}function Wo(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.bytes_recv)," ")}}function Zo(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Sats Sent"),e.k0s())}function Ko(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.sat_sent)," ")}}function el(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Sats Received"),e.k0s())}function tl(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.sat_recv)," ")}}function nl(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Ping Time ("),e.j41(2,"span"),e.EFF(3,"\xb5"),e.k0s(),e.EFF(4,"s)"),e.k0s())}function il(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.ping_time)," ")}}function al(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",50),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function sl(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",51)(1,"div",48)(2,"mat-select",49),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",50),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG();return r.Njj(l.onPeerClick(a,o))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",50),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onOpenChannel(o))}),e.EFF(7,"Open Channel"),e.k0s(),e.j41(8,"mat-option",50),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onPeerDetach(o))}),e.EFF(9,"Disconnect"),e.k0s()()()()}}function ol(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No connected peer."),e.k0s())}function ll(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting peers..."),e.k0s())}function rl(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function cl(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,ol,2,0,"p",53)(2,ll,2,0,"p",53)(3,rl,2,1,"p",53),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=n.peers&&n.peers.data)||(null==n.peers.data?null:n.peers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.peers&&n.peers.data)||(null==n.peers.data?null:n.peers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.peers&&n.peers.data)||(null==n.peers.data?null:n.peers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function pl(t,s){if(1&t&&e.nrm(0,"tr",54),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,No,(null==n.peers?null:n.peers.data)&&(null==n.peers||null==n.peers.data?null:n.peers.data.length)>0))}}function ml(t,s){1&t&&e.nrm(0,"tr",55)}function ul(t,s){1&t&&e.nrm(0,"tr",56)}let hl=(()=>{var t;class s{constructor(i,o,a,l,h){this.logger=i,this.store=o,this.rtlEffects=a,this.commonService=l,this.camelCaseWithReplace=h,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:p.md,sortBy:"alias",sortOrder:p.oi.DESCENDING},this.availableBalance=0,this.faUsers=I.gdJ,this.displayedColumns=[],this.peersData=[],this.peers=new _.I6([]),this.information={},this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.information=i}),this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.$7).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.availableBalance=i.blockchainBalance.total_balance||0}),this.store.select(E.os).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=i.peers,this.peersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPeersTable(this.peersData),this.logger.info(i)})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:i.pub_key,goToName:"Graph lookup",goToLink:"/lnd/graph/lookups",showQRName:"Public Key",showQRField:i.pub_key,message:[[{key:"pub_key",value:i.pub_key,title:"Public Key",width:100}],[{key:"address",value:i.address,title:"Address",width:100}],[{key:"alias",value:i.alias,title:"Alias",width:40},{key:"inbound",value:i.inbound?"True":"False",title:"Inbound",width:30},{key:"ping_time",value:i.ping_time,title:"Ping Time (\xb5s)",width:30,type:p.UN.NUMBER}],[{key:"sat_sent",value:i.sat_sent,title:"Satoshis Sent",width:50,type:p.UN.NUMBER},{key:"sat_recv",value:i.sat_recv,title:"Satoshis Received",width:50,type:p.UN.NUMBER}],[{key:"bytes_sent",value:i.bytes_sent,title:"Bytes Sent",width:50,type:p.UN.NUMBER},{key:"bytes_recv",value:i.bytes_recv,title:"Bytes Received",width:50,type:p.UN.NUMBER}]]}}}))}onConnectPeer(){this.store.dispatch((0,Y.xO)({payload:{data:{message:{peer:null,information:this.information,balance:this.availableBalance},component:It}}}))}onOpenChannel(i){this.store.dispatch((0,Y.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:i,information:this.information,balance:this.availableBalance},component:Et}}}))}onPeerDetach(i){this.store.dispatch((0,Y.I1)({payload:{data:{type:p.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(i.alias?i.alias:i.pub_key),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,x.Q)(this.unSubs[4])).subscribe(a=>{a&&this.store.dispatch((0,N.ed)({payload:{pubkey:i.pub_key}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.peers.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(i).toLowerCase();break;case"sync_type":a=this.camelCaseWithReplace.transform(i.sync_type||"","sync","_").trim().toLowerCase();break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"sync_type"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}loadPeersTable(i){this.peers=new _.I6(i?[...i]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.peers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(Ve.H),e.rXU(z.h),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-peers"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Peers")}])],decls:64,vars:19,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","pub_key"],["matColumnDef","address"],["matColumnDef","sync_type"],["matColumnDef","inbound"],["matColumnDef","bytes_sent"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","bytes_recv"],["matColumnDef","sat_sent"],["matColumnDef","sat_recv"],["matColumnDef","ping_time"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"button",3),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onConnectPeer())}),e.EFF(3,"Add Peer"),e.k0s()(),e.j41(4,"div",4)(5,"div",5)(6,"div",6),e.nrm(7,"fa-icon",7),e.j41(8,"span",8),e.EFF(9,"Connected Peers"),e.k0s()(),e.j41(10,"div",9)(11,"mat-form-field",10)(12,"mat-label"),e.EFF(13,"Filter By"),e.k0s(),e.j41(14,"mat-select",11),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilterBy,f)||(a.selFilterBy=f),r.Njj(f)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(15,"perfect-scrollbar"),e.DNE(16,Po,2,2,"mat-option",12),e.k0s()()(),e.j41(17,"mat-form-field",10)(18,"mat-label"),e.EFF(19,"Filter"),e.k0s(),e.j41(20,"input",13),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilter,f)||(a.selFilter=f),r.Njj(f)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(21,"div",14),e.DNE(22,Bo,1,0,"mat-progress-bar",15),e.j41(23,"table",16,0),e.qex(25,17),e.DNE(26,Ao,2,0,"th",18)(27,$o,4,4,"td",19),e.bVm(),e.qex(28,20),e.DNE(29,Mo,2,0,"th",18)(30,Oo,4,4,"td",19),e.bVm(),e.qex(31,21),e.DNE(32,Vo,2,0,"th",18)(33,Yo,4,4,"td",19),e.bVm(),e.qex(34,22),e.DNE(35,Uo,2,0,"th",18)(36,Xo,3,5,"td",19),e.bVm(),e.qex(37,23),e.DNE(38,Ho,2,0,"th",18)(39,qo,2,1,"td",19),e.bVm(),e.qex(40,24),e.DNE(41,zo,2,0,"th",25)(42,Jo,4,3,"td",19),e.bVm(),e.qex(43,26),e.DNE(44,Qo,2,0,"th",25)(45,Wo,4,3,"td",19),e.bVm(),e.qex(46,27),e.DNE(47,Zo,2,0,"th",25)(48,Ko,4,3,"td",19),e.bVm(),e.qex(49,28),e.DNE(50,el,2,0,"th",25)(51,tl,4,3,"td",19),e.bVm(),e.qex(52,29),e.DNE(53,nl,5,0,"th",25)(54,il,4,3,"td",19),e.bVm(),e.qex(55,30),e.DNE(56,al,6,0,"th",31)(57,sl,10,0,"td",32),e.bVm(),e.qex(58,33),e.DNE(59,cl,4,3,"td",34),e.bVm(),e.DNE(60,pl,1,3,"tr",35)(61,ml,1,0,"tr",36)(62,ul,1,0,"tr",37),e.k0s()(),e.nrm(63,"mat-paginator",38),e.k0s()()}2&o&&(e.R7$(7),e.Y8G("icon",a.faUsers),e.R7$(7),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(15,jo).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.peers)("ngClass",e.eq3(16,Go,""!==a.errorMessage)),e.R7$(37),e.Y8G("matFooterRowDef",e.lJ4(18,Do)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.me,g.BC,g.vS,ee.aY,$.$z,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,X.iy,K.ZF,K.Ld,y.QX,ue.VD],encapsulation:2}))}return t(),s})();function dl(t,s){if(1&t&&(e.j41(0,"span",7),e.EFF(1,"Open"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numOpenChannels))}}function _l(t,s){if(1&t&&(e.j41(0,"span",7),e.EFF(1,"Pending"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numPendingChannels))}}function fl(t,s){if(1&t&&(e.j41(0,"span",7),e.EFF(1,"Closed"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numClosedChannels))}}function gl(t,s){if(1&t&&(e.j41(0,"span",7),e.EFF(1,"Active HTLCs"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numActiveHTLCs))}}let Cl=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.store=o,this.router=a,this.numOpenChannels=0,this.numPendingChannels=0,this.numClosedChannels=0,this.numActiveHTLCs=0,this.peers=[],this.information={},this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending"},{link:"closed",name:"Closed"},{link:"activehtlcs",name:"Active HTLCs"}],this.activeLink=0,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.activeLink=this.links.findIndex(i=>i.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(i=>i instanceof j.gx)).subscribe({next:i=>{this.activeLink=this.links.findIndex(o=>o.link===i.urlAfterRedirects.substring(i.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.numOpenChannels=i.channels&&i.channels.length?i.channels.length:0,this.numActiveHTLCs=i.channels?.reduce((o,a)=>o+(a.pending_htlcs&&a.pending_htlcs.length>0?a.pending_htlcs.length:0),0),this.logger.info(i)}),this.store.select(E.Uv).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.numPendingChannels=i.pendingChannelsSummary.total_channels?i.pendingChannelsSummary.total_channels:0}),this.store.select(E.Bw).pipe((0,x.Q)(this.unSubs[4])).subscribe(i=>{this.numClosedChannels=i.closedChannels&&i.closedChannels.length?i.closedChannels.length:0}),this.store.select(E.$7).pipe((0,x.Q)(this.unSubs[5])).subscribe(i=>{this.totalBalance=+(i.blockchainBalance.total_balance||0)}),this.store.select(E.os).pipe((0,x.Q)(this.unSubs[6])).subscribe(i=>{this.peers=i.peers,this.peers.forEach(o=>{(!o.alias||""===o.alias)&&(o.alias=o.pub_key?.substring(0,20))}),this.logger.info(i)})}onOpenChannel(){this.store.dispatch((0,Y.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:Et}}}))}onSelectedTabChange(i){this.router.navigateByUrl("/lnd/connections/channels/"+this.links[i.index].link)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channels-tables"]],standalone:!1,decls:16,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"div",1)(2,"button",2),e.bIt("click",function(){return a.onOpenChannel()}),e.EFF(3,"Open Channel"),e.k0s()(),e.j41(4,"div",3)(5,"mat-tab-group",4),e.mxI("selectedIndexChange",function(h){return e.DH7(a.activeLink,h)||(a.activeLink=h),h}),e.bIt("selectedTabChange",function(h){return a.onSelectedTabChange(h)}),e.j41(6,"mat-tab"),e.DNE(7,dl,2,2,"ng-template",5),e.k0s(),e.j41(8,"mat-tab"),e.DNE(9,_l,2,2,"ng-template",5),e.k0s(),e.j41(10,"mat-tab"),e.DNE(11,fl,2,2,"ng-template",5),e.k0s(),e.j41(12,"mat-tab"),e.DNE(13,gl,2,2,"ng-template",5),e.k0s()(),e.j41(14,"div",6),e.nrm(15,"router-outlet"),e.k0s()()()),2&o&&(e.R7$(5),e.R50("selectedIndex",a.activeLink))},dependencies:[$.$z,b.DJ,b.sA,b.UI,at.k,J.ES,J.mq,J.T8,j.n3],encapsulation:2}))}return t(),s})();var we=S(5416),He=S(9157);const yl=t=>({"xs-scroll-y":t});function bl(t,s){if(1&t){const n=e.RV6();e.j41(0,"fa-icon",27),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onExplorerClicked())}),e.k0s()}if(2&t){const n=e.XpG();e.Y8G("matTooltip",e.mNQ("Link to "+(null==n.selNode||null==n.selNode.settings?null:n.selNode.settings.blockExplorerUrl)))("icon",n.faUpRightFromSquare)}}function Fl(t,s){if(1&t&&(e.j41(0,"div")(1,"div",10)(2,"div",19)(3,"h4",12),e.EFF(4,"Commit Fee"),e.k0s(),e.j41(5,"span",20),e.EFF(6),e.nI1(7,"number"),e.k0s()(),e.j41(8,"div",19)(9,"h4",12),e.EFF(10,"Commit Weight"),e.k0s(),e.j41(11,"span",20),e.EFF(12),e.nI1(13,"number"),e.k0s()(),e.j41(14,"div",19)(15,"h4",12),e.EFF(16,"Fee/KW"),e.k0s(),e.j41(17,"span",20),e.EFF(18),e.nI1(19,"number"),e.k0s()(),e.j41(20,"div",19)(21,"h4",12),e.EFF(22,"Static Remote Key"),e.k0s(),e.j41(23,"span",20),e.EFF(24),e.k0s()()(),e.nrm(25,"mat-divider",15),e.j41(26,"div",10)(27,"div",19)(28,"h4",12),e.EFF(29),e.k0s(),e.j41(30,"span",20),e.EFF(31),e.nI1(32,"number"),e.k0s()(),e.j41(33,"div",19)(34,"h4",12),e.EFF(35),e.k0s(),e.j41(36,"span",20),e.EFF(37),e.nI1(38,"number"),e.k0s()(),e.j41(39,"div",19)(40,"h4",12),e.EFF(41,"Unsettled Balance"),e.k0s(),e.j41(42,"span",20),e.EFF(43),e.nI1(44,"number"),e.k0s()(),e.j41(45,"div",19)(46,"h4",12),e.EFF(47,"CSV Delay"),e.k0s(),e.j41(48,"span",20),e.EFF(49),e.nI1(50,"number"),e.k0s()()(),e.nrm(51,"mat-divider",15),e.j41(52,"div",10)(53,"div",19)(54,"h4",12),e.EFF(55,"Local Reserve (Sats)"),e.k0s(),e.j41(56,"span",20),e.EFF(57),e.nI1(58,"number"),e.k0s()(),e.j41(59,"div",19)(60,"h4",12),e.EFF(61,"Remote Reserve (Sats)"),e.k0s(),e.j41(62,"span",20),e.EFF(63),e.nI1(64,"number"),e.k0s()(),e.j41(65,"div",19)(66,"h4",12),e.EFF(67,"Lifetime (Seconds)"),e.k0s(),e.j41(68,"span",20),e.EFF(69),e.nI1(70,"number"),e.k0s()(),e.j41(71,"div",19)(72,"h4",12),e.EFF(73,"Pending HTLCs"),e.k0s(),e.j41(74,"span",20),e.EFF(75),e.nI1(76,"number"),e.k0s()()(),e.nrm(77,"mat-divider",15),e.k0s()),2&t){const n=e.XpG();e.R7$(6),e.JRh(e.bMT(7,17,n.channel.commit_fee)),e.R7$(6),e.JRh(e.bMT(13,19,n.channel.commit_weight)),e.R7$(6),e.JRh(e.bMT(19,21,n.channel.fee_per_kw)),e.R7$(6),e.JRh(n.channel.static_remote_key?"Yes":"No"),e.R7$(),e.Y8G("inset",!0),e.R7$(4),e.JRh(n.screenSize===n.screenSizeEnum.XS?"Total Sats Sent":"Total Satoshis Sent"),e.R7$(2),e.JRh(e.bMT(32,23,n.channel.total_satoshis_sent)),e.R7$(4),e.JRh(n.screenSize===n.screenSizeEnum.XS?"Total Sats Recv":"Total Satoshis Received"),e.R7$(2),e.JRh(e.bMT(38,25,n.channel.total_satoshis_received)),e.R7$(6),e.JRh(e.bMT(44,27,n.channel.unsettled_balance)),e.R7$(6),e.JRh(e.bMT(50,29,n.channel.csv_delay)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(58,31,n.channel.local_chan_reserve_sat)),e.R7$(6),e.JRh(e.bMT(64,33,n.channel.remote_chan_reserve_sat)),e.R7$(6),e.JRh(e.bMT(70,35,n.channel.lifetime)),e.R7$(6),e.JRh(e.bMT(76,37,null==n.channel||null==n.channel.pending_htlcs?null:n.channel.pending_htlcs.length)),e.R7$(2),e.Y8G("inset",!0)}}function xl(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Show Advanced"),e.k0s())}function vl(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Hide Advanced"),e.k0s())}function Tl(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",28),e.bIt("copied",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onCopyChanID(o))}),e.EFF(1,"Copy Channel ID"),e.k0s()}if(2&t){const n=e.XpG();e.Y8G("payload",n.channel.chan_id)}}function kl(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onClose())}),e.EFF(1,"OK"),e.k0s()}}let rt=(()=>{var t;class s{constructor(i,o,a,l,h,f){this.dialogRef=i,this.data=o,this.logger=a,this.commonService=l,this.snackBar=h,this.router=f,this.faReceipt=I.Mf0,this.faUpRightFromSquare=I.k02,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=p.f7}ngOnInit(){this.channel=this.data.channel,this.showCopy=!!this.data.showCopy,this.selNode=this.data.selNode,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(i){this.snackBar.open("Channel ID "+i+" copied."),this.logger.info("Copied Text: "+i)}onExplorerClicked(){this.selNode?.settings?.blockExplorerUrl&&window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.channel.channel_point,"_blank")}onGoToLink(i,o){this.router.navigateByUrl("/lnd/graph/lookups",{state:{lookupType:i,lookupValue:o}}),this.onClose()}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(V.gP),e.rXU(z.h),e.rXU(we.UG),e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-information"]],standalone:!1,decls:95,vars:37,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],["tabindex","4","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["tabindex","5",1,"foreground-secondary-text"],["class","ml-1 fa-icon-primary",3,"matTooltip","icon","click",4,"ngIf"],["tabindex","6","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],["fxFlex","25"],[1,"overflow-wrap","foreground-secondary-text"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",1,"mt-1"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4),e.nrm(4,"fa-icon",5),e.j41(5,"span",6),e.EFF(6,"Channel Information"),e.k0s()(),e.j41(7,"button",7),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onClose())}),e.EFF(8,"X"),e.k0s()(),e.j41(9,"mat-card-content",8)(10,"div",9)(11,"div",10)(12,"div",11)(13,"h4",12),e.EFF(14,"Channel ID"),e.k0s(),e.j41(15,"span",13),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onGoToLink("1",a.channel.chan_id))}),e.EFF(16),e.k0s()(),e.j41(17,"div",11)(18,"h4",12),e.EFF(19,"Peer Alias"),e.k0s(),e.j41(20,"span",14),e.EFF(21),e.k0s()()(),e.nrm(22,"mat-divider",15),e.j41(23,"div",10)(24,"div",2)(25,"h4",12),e.EFF(26,"Channel Point"),e.k0s(),e.j41(27,"span",16),e.EFF(28),e.DNE(29,bl,1,3,"fa-icon",17),e.k0s()()(),e.nrm(30,"mat-divider",15),e.j41(31,"div",10)(32,"div",2)(33,"h4",12),e.EFF(34,"Peer Public Key"),e.k0s(),e.j41(35,"span",18),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onGoToLink("0",a.channel.remote_pubkey))}),e.EFF(36),e.k0s()()(),e.nrm(37,"mat-divider",15),e.j41(38,"div",10)(39,"div",19)(40,"h4",12),e.EFF(41,"Local Balance"),e.k0s(),e.j41(42,"span",20),e.EFF(43),e.nI1(44,"number"),e.k0s()(),e.j41(45,"div",19)(46,"h4",12),e.EFF(47,"Remote Balance"),e.k0s(),e.j41(48,"span",20),e.EFF(49),e.nI1(50,"number"),e.k0s()(),e.j41(51,"div",19)(52,"h4",12),e.EFF(53,"Capacity"),e.k0s(),e.j41(54,"span",20),e.EFF(55),e.nI1(56,"number"),e.k0s()(),e.j41(57,"div",19)(58,"h4",12),e.EFF(59,"Uptime (Seconds)"),e.k0s(),e.j41(60,"span",20),e.EFF(61),e.nI1(62,"number"),e.k0s()()(),e.nrm(63,"mat-divider",15),e.j41(64,"div",10)(65,"div",19)(66,"h4",12),e.EFF(67,"Active"),e.k0s(),e.j41(68,"span",20),e.EFF(69),e.k0s()(),e.j41(70,"div",19)(71,"h4",12),e.EFF(72,"Private"),e.k0s(),e.j41(73,"span",20),e.EFF(74),e.k0s()(),e.j41(75,"div",19)(76,"h4",12),e.EFF(77,"Initiator"),e.k0s(),e.j41(78,"span",20),e.EFF(79),e.k0s()(),e.j41(80,"div",19)(81,"h4",12),e.EFF(82,"Number of Updates"),e.k0s(),e.j41(83,"span",20),e.EFF(84),e.nI1(85,"number"),e.k0s()()(),e.nrm(86,"mat-divider",15),e.DNE(87,Fl,78,39,"div",21),e.j41(88,"div",22)(89,"button",23),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onShowAdvanced())}),e.DNE(90,xl,2,0,"p",24)(91,vl,2,0,"ng-template",null,0,e.C5r),e.k0s(),e.DNE(93,Tl,2,1,"button",25)(94,kl,2,0,"button",26),e.k0s()()()()()}if(2&o){const l=e.sdS(92);e.R7$(4),e.Y8G("icon",a.faReceipt),e.R7$(5),e.Y8G("ngClass",e.eq3(35,yl,a.screenSize===a.screenSizeEnum.XS)),e.R7$(7),e.SpI(" ",a.channel.chan_id," "),e.R7$(5),e.JRh(a.channel.remote_alias),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.SpI(" ",a.channel.channel_point," "),e.R7$(),e.Y8G("ngIf",null==a.selNode||null==a.selNode.settings?null:a.selNode.settings.blockExplorerUrl),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.SpI(" ",a.channel.remote_pubkey," "),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(44,25,a.channel.local_balance)),e.R7$(6),e.JRh(e.bMT(50,27,a.channel.remote_balance)),e.R7$(6),e.JRh(e.bMT(56,29,a.channel.capacity)),e.R7$(6),e.JRh(e.bMT(62,31,a.channel.uptime)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(a.channel.active?"Yes":"No"),e.R7$(5),e.JRh(a.channel.private?"Yes":"No"),e.R7$(5),e.JRh(a.channel.initiator?"Yes":"No"),e.R7$(5),e.JRh(e.bMT(85,33,a.channel.num_updates)),e.R7$(2),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngIf",a.showAdvanced),e.R7$(3),e.Y8G("ngIf",!a.showAdvanced)("ngIfElse",l),e.R7$(3),e.Y8G("ngIf",a.showCopy),e.R7$(),e.Y8G("ngIf",!a.showCopy)}},dependencies:[y.YU,y.bT,ee.aY,$.$z,B.m2,B.MM,Te.q,b.DJ,b.sA,b.UI,U.PW,fe.oV,He.U,pe.N,y.QX],encapsulation:2}))}return t(),s})();var ct=S(7673),pt=S(1001),Sl=S(6949);const Ye=(t,s)=>({"small-svg":t,"large-svg":s});function Rl(t,s){1&t&&e.eu8(0)}function El(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSwipe(o))}),r.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17)(12,"path",18)(13,"path",19)(14,"path",20)(15,"path",21)(16,"path",22)(17,"path",23)(18,"path",24)(19,"path",25)(20,"path",26)(21,"path",27)(22,"path",28)(23,"path",29)(24,"path",30)(25,"path",31)(26,"path",32)(27,"path",33)(28,"path",34)(29,"path",35)(30,"path",36)(31,"path",37)(32,"path",38)(33,"path",39)(34,"path",40)(35,"path",41)(36,"path",42)(37,"path",43)(38,"path",44)(39,"path",45)(40,"path",46),e.k0s(),r.joV(),e.j41(41,"div",47)(42,"mat-card-title"),e.EFF(43,"Circular rebalancing explained."),e.k0s()(),e.j41(44,"div",48)(45,"mat-card-subtitle",49),e.EFF(46," Circular payments are a completely off-chain rebalancing strategy where a node makes a payment to itself across a circular path of chained payment channels. "),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@sliderAnimation",n.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Ye,n.screenSize===n.screenSizeEnum.XS,n.screenSize!==n.screenSizeEnum.XS))}}function Il(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSwipe(o))}),r.qSk(),e.j41(1,"svg",51),e.nrm(2,"path",52)(3,"path",53)(4,"path",54)(5,"path",55)(6,"path",56)(7,"path",57)(8,"path",58)(9,"path",59)(10,"path",60)(11,"path",61)(12,"path",62)(13,"path",63)(14,"path",64)(15,"path",65)(16,"path",66)(17,"path",67)(18,"path",68)(19,"path",69)(20,"path",70)(21,"path",71)(22,"path",72)(23,"path",73)(24,"path",74)(25,"path",75)(26,"path",76)(27,"path",77)(28,"path",78)(29,"path",79)(30,"path",80)(31,"path",81)(32,"path",82)(33,"path",52)(34,"path",53)(35,"path",54)(36,"path",55)(37,"path",56)(38,"path",57)(39,"path",58)(40,"path",59)(41,"path",60)(42,"path",83)(43,"path",84)(44,"path",63)(45,"path",85)(46,"path",86)(47,"path",87)(48,"path",67)(49,"path",68)(50,"path",69)(51,"path",70)(52,"path",71)(53,"path",72)(54,"path",73)(55,"path",74)(56,"path",75)(57,"path",76)(58,"path",77)(59,"path",78)(60,"path",79)(61,"path",80)(62,"path",88)(63,"path",82)(64,"path",89),e.j41(65,"defs")(66,"linearGradient",90),e.nrm(67,"stop",91)(68,"stop",92)(69,"stop",93),e.k0s(),e.j41(70,"linearGradient",94),e.nrm(71,"stop",91)(72,"stop",92)(73,"stop",93),e.k0s(),e.j41(74,"linearGradient",95),e.nrm(75,"stop",91)(76,"stop",92)(77,"stop",93),e.k0s(),e.j41(78,"linearGradient",96),e.nrm(79,"stop",91)(80,"stop",92)(81,"stop",93),e.k0s(),e.j41(82,"linearGradient",97),e.nrm(83,"stop",91)(84,"stop",92)(85,"stop",93),e.k0s(),e.j41(86,"linearGradient",98),e.nrm(87,"stop",91)(88,"stop",92)(89,"stop",93),e.k0s()()(),r.joV(),e.j41(90,"div",47)(91,"mat-card-title"),e.EFF(92,"Step 1: Unbalanced channel"),e.k0s()(),e.j41(93,"div",48)(94,"mat-card-subtitle",49),e.EFF(95," It starts with an unbalanced channel, that needs to be rebalanced in order to continue to route payments. "),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@sliderAnimation",n.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Ye,n.screenSize===n.screenSizeEnum.XS,n.screenSize!==n.screenSizeEnum.XS))}}function wl(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSwipe(o))}),r.qSk(),e.j41(1,"svg",99),e.nrm(2,"path",100)(3,"path",101)(4,"path",102)(5,"path",103)(6,"path",104)(7,"path",105)(8,"path",106)(9,"path",107)(10,"path",108)(11,"path",109)(12,"path",110)(13,"path",111)(14,"path",112)(15,"path",113)(16,"path",114)(17,"path",52)(18,"path",115)(19,"path",116)(20,"path",117)(21,"path",118)(22,"path",119)(23,"path",120)(24,"path",121)(25,"path",122)(26,"path",83)(27,"path",84)(28,"path",123)(29,"path",124)(30,"path",125)(31,"path",126)(32,"path",67)(33,"path",127)(34,"path",128)(35,"path",129)(36,"path",130)(37,"path",131)(38,"path",132)(39,"path",74)(40,"path",75)(41,"path",133)(42,"path",77)(43,"path",78)(44,"path",79)(45,"path",80)(46,"path",134)(47,"path",135)(48,"path",136),e.j41(49,"defs")(50,"linearGradient",137),e.nrm(51,"stop",91)(52,"stop",92)(53,"stop",93),e.k0s(),e.j41(54,"linearGradient",138),e.nrm(55,"stop",91)(56,"stop",92)(57,"stop",93),e.k0s(),e.j41(58,"linearGradient",139),e.nrm(59,"stop",91)(60,"stop",92)(61,"stop",93),e.k0s()()(),r.joV(),e.j41(62,"div",47)(63,"mat-card-title"),e.EFF(64,"Step 2: Invoice/Payment"),e.k0s()(),e.j41(65,"div",48)(66,"mat-card-subtitle",49),e.EFF(67," All you have to do is make a payment to yourself in a favorable direction by generating and paying an invoice. This is taken care automatically by your node. "),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@sliderAnimation",n.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Ye,n.screenSize===n.screenSizeEnum.XS,n.screenSize!==n.screenSizeEnum.XS))}}function Ll(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSwipe(o))}),r.qSk(),e.j41(1,"svg",140),e.nrm(2,"path",141)(3,"path",142)(4,"path",143)(5,"path",144)(6,"path",145)(7,"path",146)(8,"path",147)(9,"path",148)(10,"path",149)(11,"path",150)(12,"path",151)(13,"path",152)(14,"path",153)(15,"path",154)(16,"path",155)(17,"path",156)(18,"path",157)(19,"path",158)(20,"path",159)(21,"path",160)(22,"path",161)(23,"path",162)(24,"path",163)(25,"path",164)(26,"path",163)(27,"path",165)(28,"path",166)(29,"path",167)(30,"path",168)(31,"path",169)(32,"path",170)(33,"path",171)(34,"path",172)(35,"path",173)(36,"path",174)(37,"path",175)(38,"path",176)(39,"path",177)(40,"path",178)(41,"path",179),e.j41(42,"defs")(43,"linearGradient",180),e.nrm(44,"stop",91)(45,"stop",92)(46,"stop",93),e.k0s()()(),r.joV(),e.j41(47,"div",47)(48,"mat-card-title"),e.EFF(49,"Step 3: Rebalance amount"),e.k0s()(),e.j41(50,"div",48)(51,"mat-card-subtitle",49),e.EFF(52," You will be moving part or all of the local balance to the remote side. For the route to be circular, there should be at least 3 nodes involved. "),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@sliderAnimation",n.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Ye,n.screenSize===n.screenSizeEnum.XS,n.screenSize!==n.screenSizeEnum.XS))}}function jl(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSwipe(o))}),r.qSk(),e.j41(1,"svg",140),e.nrm(2,"path",181)(3,"path",143)(4,"path",182)(5,"path",145)(6,"path",146)(7,"path",183)(8,"path",148)(9,"path",184)(10,"path",185)(11,"path",186)(12,"path",187)(13,"path",188)(14,"path",189)(15,"path",190)(16,"path",191)(17,"path",192)(18,"path",158)(19,"path",193)(20,"path",194)(21,"path",179)(22,"path",160)(23,"path",161)(24,"path",195)(25,"path",163)(26,"path",164)(27,"path",163)(28,"path",165)(29,"path",166)(30,"path",167)(31,"path",168)(32,"path",196)(33,"path",170)(34,"path",197)(35,"path",172)(36,"path",173)(37,"path",174)(38,"path",175)(39,"path",176)(40,"path",198),e.j41(41,"defs")(42,"linearGradient",199),e.nrm(43,"stop",91)(44,"stop",92)(45,"stop",93),e.k0s()()(),r.joV(),e.j41(46,"div",47)(47,"mat-card-title"),e.EFF(48,"Rebalance successful!"),e.k0s()(),e.j41(49,"div",48)(50,"mat-card-subtitle",49),e.EFF(51," Your channel is successfully rebalanced and is able to continue to route payments. "),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@sliderAnimation",n.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Ye,n.screenSize===n.screenSizeEnum.XS,n.screenSize!==n.screenSizeEnum.XS))}}let Gl=(()=>{var t;class s{constructor(i){this.commonService=i,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.bkB,this.screenSize="",this.screenSizeEnum=p.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(i){2===i.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===i.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-rebalance-infographics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["infoStepBlock1",""],["infoStepBlock2",""],["infoStepBlock3",""],["infoStepBlock4",""],["infoStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between starts",3,"swipe"],["fxFlex","30","viewBox","0 0 246 154","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M187.8 136C203.043 136 215.4 133.493 215.4 130.4C215.4 127.307 203.043 124.8 187.8 124.8C172.557 124.8 160.2 127.307 160.2 130.4C160.2 133.493 172.557 136 187.8 136Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M128.6 148.8C143.843 148.8 156.2 146.293 156.2 143.2C156.2 140.107 143.843 137.6 128.6 137.6C113.357 137.6 101 140.107 101 143.2C101 146.293 113.357 148.8 128.6 148.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["opacity","0.1","d","M100.2 117.421C100.2 117.421 99.0633 117.494 99.4998 117.722C99.9363 117.95 100.2 117.421 100.2 117.421Z","fill","black"],["opacity","0.1","d","M101 118.4C100.986 118.471 98.1102 119.483 98.673 119.933C99.2358 120.384 101 118.4 101 118.4Z","fill","black"],["opacity","0.1","d","M97.8 128.98C98.0492 128.966 100.509 128.241 101 128.89L97.8 128.98Z","fill","black"],["opacity","0.1","d","M100.2 129.709C100.2 129.709 100.563 129.362 100.926 129.543C101.289 129.725 100.2 129.709 100.2 129.709Z","fill","black"],["opacity","0.1","d","M101.8 132C101.8 132 101.641 133.198 101 133.6L101.8 132Z","fill","black"],["d","M119.223 21.4239L123.102 22.0818L118.209 50.9111L114.33 50.2532L119.223 21.4239Z",1,"fill-color-primary-darker"],["d","M127.4 137.844L128.262 144L129 137.6L127.4 137.844Z",1,"fill-color-29"],["d","M100.2 134.349V138.226L101 141.6H101.571L102.258 137.976L102.6 133.6L100.2 134.349Z",1,"fill-color-28"],["d","M110.75 50.4L104.806 87.6521C104.806 87.6521 96.0162 127.358 99.3581 135.2H103.57L116.2 58.9791L110.75 50.4Z",1,"fill-color-29"],["d","M125.308 45.6L129.979 83.02C129.979 83.02 133.381 130.691 129.656 138.4H125.976L119.4 53.9698L125.308 45.6Z",1,"fill-color-29"],["d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z","fill","black"],["d","M112.922 39.2661C113.364 37.7699 114.731 36.7605 116.259 36.8012C118.804 36.8682 122.74 37.3423 124.787 39.4927C127.969 42.8316 122.638 54.0832 122.638 54.0832C122.638 54.0832 117.661 63.4872 113.092 51.5396C113.092 51.5327 111.203 45.1393 112.922 39.2661Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M131.383 131.52C131.69 131.628 131.968 131.791 132.2 132C131.813 131.613 130.708 131.42 130.166 131.24C129.495 131.019 128.764 130.793 128.2 130.4C129.29 130.705 130.354 131.079 131.383 131.52Z","fill","black"],["opacity","0.1","d","M94.2 24.8C96.1882 24.8 97.8 23.1882 97.8 21.2C97.8 19.2118 96.1882 17.6 94.2 17.6C92.2117 17.6 90.6 19.2118 90.6 21.2C90.6 23.1882 92.2117 24.8 94.2 24.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M107 12C110.314 12 113 9.31371 113 6C113 2.68629 110.314 0 107 0C103.686 0 101 2.68629 101 6C101 9.31371 103.686 12 107 12Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M99 40.8C102.314 40.8 105 38.1137 105 34.8C105 31.4863 102.314 28.8 99 28.8C95.6863 28.8 93 31.4863 93 34.8C93 38.1137 95.6863 40.8 99 40.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M223 67.2C224.988 67.2 226.6 65.5882 226.6 63.6C226.6 61.6118 224.988 60 223 60C221.012 60 219.4 61.6118 219.4 63.6C219.4 65.5882 221.012 67.2 223 67.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M210.2 54.4C213.514 54.4 216.2 51.7137 216.2 48.4C216.2 45.0863 213.514 42.4 210.2 42.4C206.886 42.4 204.2 45.0863 204.2 48.4C204.2 51.7137 206.886 54.4 210.2 54.4Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M218.2 83.2C221.514 83.2 224.2 80.5137 224.2 77.2C224.2 73.8863 221.514 71.2 218.2 71.2C214.886 71.2 212.2 73.8863 212.2 77.2C212.2 80.5137 214.886 83.2 218.2 83.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M23.8 72C24.9046 72 25.8 71.1046 25.8 70C25.8 68.8954 24.9046 68 23.8 68C22.6954 68 21.8 68.8954 21.8 70C21.8 71.1046 22.6954 72 23.8 72Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M33 65.6C34.7673 65.6 36.2 64.1673 36.2 62.4C36.2 60.6327 34.7673 59.2 33 59.2C31.2327 59.2 29.8 60.6327 29.8 62.4C29.8 64.1673 31.2327 65.6 33 65.6Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M17 71.2C18.7673 71.2 20.2 69.7673 20.2 68C20.2 66.2327 18.7673 64.8 17 64.8C15.2327 64.8 13.8 66.2327 13.8 68C13.8 69.7673 15.2327 71.2 17 71.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M171.8 60C172.905 60 173.8 59.1046 173.8 58C173.8 56.8954 172.905 56 171.8 56C170.695 56 169.8 56.8954 169.8 58C169.8 59.1046 170.695 60 171.8 60Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M180.2 53.6C181.967 53.6 183.4 52.1673 183.4 50.4C183.4 48.6327 181.967 47.2 180.2 47.2C178.433 47.2 177 48.6327 177 50.4C177 52.1673 178.433 53.6 180.2 53.6Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M164.2 59.2C165.967 59.2 167.4 57.7673 167.4 56C167.4 54.2327 165.967 52.8 164.2 52.8C162.433 52.8 161 54.2327 161 56C161 57.7673 162.433 59.2 164.2 59.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M51 40.8C55.6392 40.8 59.4 37.0392 59.4 32.4C59.4 27.7608 55.6392 24 51 24C46.3608 24 42.6 27.7608 42.6 32.4C42.6 37.0392 46.3608 40.8 51 40.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M98.6 64.8C101.251 64.8 103.4 62.651 103.4 60C103.4 57.349 101.251 55.2 98.6 55.2C95.949 55.2 93.8 57.349 93.8 60C93.8 62.651 95.949 64.8 98.6 64.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M145.8 96.8C148.451 96.8 150.6 94.651 150.6 92C150.6 89.349 148.451 87.2 145.8 87.2C143.149 87.2 141 89.349 141 92C141 94.651 143.149 96.8 145.8 96.8Z",1,"fill-color-primary-darker"],["fill-rule","evenodd","clip-rule","evenodd","d","M59.8 136.8C75.0431 136.8 87.4 134.293 87.4 131.2C87.4 128.107 75.0431 125.6 59.8 125.6C44.557 125.6 32.2 128.107 32.2 131.2C32.2 134.293 44.557 136.8 59.8 136.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M217.4 152.8C232.643 152.8 245 150.293 245 147.2C245 144.107 232.643 141.6 217.4 141.6C202.157 141.6 189.8 144.107 189.8 147.2C189.8 150.293 202.157 152.8 217.4 152.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M28.6 152.8C43.8431 152.8 56.2 150.293 56.2 147.2C56.2 144.107 43.8431 141.6 28.6 141.6C13.3569 141.6 1 144.107 1 147.2C1 150.293 13.3569 152.8 28.6 152.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["d","M122.425 44.7H119.162L120.372 41.0719C120.484 40.6219 120.147 40.2 119.725 40.2H115.675C115.337 40.2 115.028 40.4531 115 40.7906L114.1 47.5406C114.044 47.9625 114.353 48.3 114.775 48.3H118.094L116.8 53.7844C116.716 54.2063 117.025 54.6 117.447 54.6C117.7 54.6 117.925 54.4875 118.037 54.2625L122.987 45.7125C123.269 45.2906 122.931 44.7 122.425 44.7Z","fill","white"],["d","M23.5204 123.2C23.0498 123.2 22.6141 123.375 22.2807 123.669C21.9491 123.96 21.7189 124.369 21.6565 124.837L20.2164 135.712C20.1423 136.278 20.3237 136.811 20.6643 137.203C21.0076 137.598 21.5119 137.85 22.0804 137.85H26.4117L24.5687 145.68C24.4289 146.274 24.5836 146.851 24.9204 147.28C25.2626 147.716 25.7931 148 26.3959 148C26.7289 148 27.0539 147.911 27.3385 147.746C27.616 147.585 27.8553 147.351 28.0254 147.055L35.9453 133.28C36.3068 132.658 36.2644 131.95 35.9495 131.398C35.7868 131.113 35.551 130.871 35.2622 130.703C34.9905 130.544 34.6717 130.45 34.3203 130.45H30.1609L31.7043 124.49C31.5476 124.305 31.4051 124.176 31.278 124.085C31.004 123.89 30.5348 123.687 29.7238 123.539C28.6009 123.335 26.6977 123.2 23.5204 123.2Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M185.5 109.6C185.075 109.6 184.682 109.757 184.381 110.02C184.08 110.284 183.872 110.652 183.815 111.073L182.615 120.074C182.548 120.585 182.712 121.066 183.021 121.419C183.331 121.774 183.787 122 184.3 122H187.74L186.244 128.309C186.117 128.846 186.258 129.366 186.564 129.753C186.873 130.145 187.352 130.4 187.897 130.4C188.505 130.4 189.084 130.074 189.391 129.512L195.745 115.6H191.208L192.467 110.771C192.308 110.576 192.165 110.445 192.04 110.357C191.803 110.189 191.397 110.01 190.693 109.883C189.753 109.713 188.16 109.6 185.5 109.6Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M215.1 128C214.675 128 214.282 128.157 213.981 128.42C213.68 128.683 213.472 129.052 213.415 129.473L212.215 138.474C212.148 138.985 212.312 139.466 212.621 139.819C212.931 140.174 213.387 140.4 213.9 140.4H217.34L215.844 146.709C215.717 147.246 215.858 147.766 216.164 148.153C216.473 148.545 216.952 148.8 217.497 148.8C218.105 148.8 218.684 148.474 218.991 147.912L225.345 134H220.808L222.067 129.171C221.908 128.976 221.765 128.845 221.64 128.757C221.403 128.589 220.997 128.41 220.293 128.283C219.353 128.113 217.76 128 215.1 128Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M55.9003 111.2C55.4754 111.2 55.0822 111.357 54.7812 111.62C54.4802 111.883 54.2716 112.252 54.215 112.673L53.0149 121.674C52.9475 122.185 53.112 122.666 53.4214 123.019C53.7314 123.374 54.1868 123.6 54.7004 123.6H58.1398L56.6444 129.909C56.5174 130.446 56.6576 130.966 56.9637 131.353C57.2728 131.745 57.7518 132 58.2966 132C58.9052 132 59.4843 131.674 59.7907 131.112L66.1452 117.2H61.6081L62.8674 112.371C62.7082 112.176 62.5651 112.045 62.4402 111.957C62.2025 111.789 61.7969 111.61 61.0927 111.483C60.1529 111.313 58.5599 111.2 55.9003 111.2Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 210 124","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M90.1491 0H0V100.616H90.1491V0Z",1,"fill-color-10"],["d","M88.6575 67.1775H1.48926V98.4248H88.6575V67.1775Z","fill","white"],["d","M59.844 74.5891H8.64404V90.6009H59.844V74.5891Z",1,"fill-color-primary-darker"],["d","M76.3172 90.6426C80.8187 90.6426 84.4679 86.9934 84.4679 82.4919C84.4679 77.9904 80.8187 74.3412 76.3172 74.3412C71.8157 74.3412 68.1665 77.9904 68.1665 82.4919C68.1665 86.9934 71.8157 90.6426 76.3172 90.6426Z",1,"fill-color-primary-darker"],["d","M88.6575 34.7129H1.48926V65.9602H88.6575V34.7129Z","fill","white"],["d","M59.844 42.1244H8.64404V58.1363H59.844V42.1244Z",1,"fill-color-primary-darker"],["d","M76.3172 58.1801C80.8187 58.1801 84.4679 54.5309 84.4679 50.0294C84.4679 45.5279 80.8187 41.8787 76.3172 41.8787C71.8157 41.8787 68.1665 45.5279 68.1665 50.0294C68.1665 54.5309 71.8157 58.1801 76.3172 58.1801Z",1,"fill-color-primary-darker"],["d","M88.6575 2.24823H1.48926V33.4955H88.6575V2.24823Z","fill","white"],["d","M59.844 9.66199H8.64404V25.6739H59.844V9.66199Z",1,"fill-color-primary-darker"],["d","M32.644 74.5891H8.64404V90.6009H32.644V74.5891Z",1,"fill-color-17"],["d","M45.444 42.1244H8.64404V58.1363H45.444V42.1244Z",1,"fill-color-17"],["d","M59.644 9.66199H8.64404V25.662H59.644V9.66199Z",1,"fill-color-17"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint0_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint2_linear)"],["d","M76.1507 25.3014C80.6522 25.3014 84.3014 21.6522 84.3014 17.1507C84.3014 12.6492 80.6522 9 76.1507 9C71.6492 9 68 12.6492 68 17.1507C68 21.6522 71.6492 25.3014 76.1507 25.3014Z",1,"fill-color-17"],["d","M193.435 36.7899H142.709V35.7444H119.709V36.7899H68.7744C67.8644 36.7899 66.9917 37.1514 66.3482 37.7949C65.7048 38.4384 65.3433 39.3111 65.3433 40.2211V109.679C65.3433 110.589 65.7048 111.462 66.3482 112.106C66.9917 112.749 67.8644 113.111 68.7744 113.111H193.435C195.33 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.345 36.7899 193.435 36.7899Z",1,"fill-color-19"],["d","M192.266 42.8538H69.9434V111.856H192.266V42.8538Z",1,"fill-color-22"],["opacity","0.1","d","M157.284 111.856H69.9434V42.8538L157.284 111.856Z","fill","black"],["d","M89.0832 106.693C95.577 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.577 83.1766 89.0832 83.1766C82.5894 83.1766 77.3252 88.4408 77.3252 94.9346C77.3252 101.428 82.5894 106.693 89.0832 106.693Z",1,"fill-color-25"],["d","M91.7005 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7005 103.772ZM91.7005 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7005 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7005 74.7115Z",1,"fill-color-28"],["d","M170.967 80.0673H159.541V82.4548H170.967V80.0673Z",1,"fill-color-19"],["d","M184.781 61.4783H145.727V62.5015H184.781V61.4783Z",1,"fill-color-19"],["d","M184.781 64.7186H145.727V65.7418H184.781V64.7186Z",1,"fill-color-19"],["d","M184.781 67.9589H145.727V68.9821H184.781V67.9589Z",1,"fill-color-19"],["d","M184.781 71.1991H145.727V72.2224H184.781V71.1991Z",1,"fill-color-19"],["d","M184.781 74.4394H145.727V75.4626H184.781V74.4394Z",1,"fill-color-19"],["d","M184.781 44.2537H180.006V49.0288H184.781V44.2537Z",1,"fill-color-25"],["d","M186.998 51.2458H181.2V45.4474H186.998V51.2458ZM181.452 50.9937H186.746V45.6996H181.452V50.9937Z",1,"fill-color-19"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.115C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.261 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.042 109.589 156.01 109.621C155.978 109.653 155.96 109.696 155.96 109.741V110.601H153.402V109.741C153.402 109.696 153.384 109.653 153.352 109.621C153.32 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.089 109.589 114.057 109.621C114.025 109.653 114.007 109.696 114.007 109.741V110.601H111.449V109.741C111.449 109.696 111.431 109.653 111.399 109.621C111.367 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.148 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.4642V109.741C97.4642 109.696 97.4462 109.653 97.4142 109.621C97.3822 109.589 97.3388 109.571 97.2936 109.571H93.2006C93.1554 109.571 93.112 109.589 93.08 109.621C93.048 109.653 93.0301 109.696 93.0301 109.741V110.601H90.472V109.741C90.472 109.696 90.454 109.653 90.422 109.621C90.39 109.589 90.3467 109.571 90.3014 109.571H86.2085C86.1632 109.571 86.1198 109.589 86.0879 109.621C86.0559 109.653 86.0379 109.696 86.0379 109.741V110.601H83.4798V109.741C83.4798 109.696 83.4618 109.653 83.4299 109.621C83.3979 109.589 83.3545 109.571 83.3093 109.571H79.2163C79.171 109.571 79.1277 109.589 79.0957 109.621C79.0637 109.653 79.0457 109.696 79.0457 109.741V110.601H76.4876V109.741C76.4876 109.696 76.4697 109.653 76.4377 109.621C76.4057 109.589 76.3623 109.571 76.3171 109.571H72.2241C72.1789 109.571 72.1355 109.589 72.1035 109.621C72.0715 109.653 72.0536 109.696 72.0536 109.741V110.601H64.2087C61.9482 110.601 60.1157 112.434 60.1157 114.694V116.545C60.1157 118.806 61.9482 120.638 64.2087 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z",1,"fill-color-19"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8456 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9773 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1718L88.0762 87.0663C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5347 96.5996L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z",1,"fill-color-21"],["d","M42 75H9V91H42V75Z",1,"fill-color-17"],["d","M42 42H9V58H42V42Z",1,"fill-color-17"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint3_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint4_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint5_linear)"],["d","M205.185 113.031H193.247V112.171C193.247 112.125 193.229 112.082 193.197 112.05C193.165 112.018 193.121 112 193.076 112H188.983C188.938 112 188.895 112.018 188.863 112.05C188.831 112.082 188.813 112.125 188.813 112.171V113.031H186.254V112.171C186.254 112.125 186.237 112.082 186.205 112.05C186.173 112.018 186.129 112 186.084 112H181.991C181.946 112 181.902 112.018 181.87 112.05C181.838 112.082 181.82 112.125 181.82 112.171V113.031H179.262V112.171C179.262 112.125 179.244 112.082 179.212 112.05C179.18 112.018 179.137 112 179.092 112H174.999C174.954 112 174.91 112.018 174.878 112.05C174.846 112.082 174.828 112.125 174.828 112.171V113.031H172.27V112.171C172.27 112.125 172.252 112.082 172.22 112.05C172.188 112.018 172.145 112 172.1 112H168.007C167.961 112 167.918 112.018 167.886 112.05C167.854 112.082 167.836 112.125 167.836 112.171V113.031H165.278V112.171C165.278 112.125 165.26 112.082 165.228 112.05C165.196 112.018 165.153 112 165.107 112H161.014C160.969 112 160.926 112.018 160.894 112.05C160.862 112.082 160.844 112.125 160.844 112.171V113.031H158.286V112.171C158.286 112.125 158.268 112.082 158.236 112.05C158.204 112.018 158.16 112 158.115 112H154.022C153.977 112 153.934 112.018 153.902 112.05C153.87 112.082 153.852 112.125 153.852 112.171V113.031H151.294V112.171C151.294 112.125 151.276 112.082 151.244 112.05C151.212 112.018 151.168 112 151.123 112H119.061C119.016 112 118.973 112.018 118.941 112.05C118.909 112.082 118.891 112.125 118.891 112.171V113.031H116.333V112.171C116.333 112.125 116.315 112.082 116.283 112.05C116.251 112.018 116.207 112 116.162 112H112.069C112.024 112 111.981 112.018 111.949 112.05C111.917 112.082 111.899 112.125 111.899 112.171V113.031H109.341V112.171C109.341 112.125 109.323 112.082 109.291 112.05C109.259 112.018 109.215 112 109.17 112H105.077C105.032 112 104.988 112.018 104.956 112.05C104.924 112.082 104.907 112.125 104.907 112.171V113.031H102.348V112.171C102.348 112.125 102.33 112.082 102.298 112.05C102.266 112.018 102.223 112 102.178 112H98.0849C98.0397 112 97.9963 112.018 97.9643 112.05C97.9323 112.082 97.9144 112.125 97.9144 112.171V113.031H95.3563V112.171C95.3563 112.125 95.3383 112.082 95.3063 112.05C95.2743 112.018 95.2309 112 95.1857 112H91.0927C91.0475 112 91.0041 112.018 90.9721 112.05C90.9402 112.082 90.9222 112.125 90.9222 112.171V113.031H88.3641V112.171C88.3641 112.125 88.3461 112.082 88.3141 112.05C88.2822 112.018 88.2388 112 88.1935 112H84.1006C84.0553 112 84.0119 112.018 83.98 112.05C83.948 112.082 83.93 112.125 83.93 112.171V113.031H81.3719V112.171C81.3719 112.125 81.3539 112.082 81.322 112.05C81.29 112.018 81.2466 112 81.2014 112H77.1084C77.0632 112 77.0198 112.018 76.9878 112.05C76.9558 112.082 76.9378 112.125 76.9379 112.171V113.031H69.093C66.8325 113.031 65 114.863 65 117.124V118.974C65 121.235 66.8325 123.067 69.093 123.067H205.185C207.445 123.067 209.277 121.235 209.277 118.974V117.124C209.277 114.863 207.445 113.031 205.185 113.031Z",1,"fill-color-19"],["d","M78.375 20.625C78.375 19.5938 77.5312 18.75 76.5 18.75C75.4453 18.75 74.625 19.5938 74.625 20.625C74.625 21.6797 75.4453 22.5 76.5 22.5C77.5312 22.5 78.375 21.6797 78.375 20.625ZM74.8359 11.1094L75.1406 17.4844C75.1641 17.7656 75.4219 18 75.7031 18H77.2734C77.5547 18 77.8125 17.7656 77.8359 17.4844L78.1406 11.1094C78.1641 10.7812 77.9062 10.5 77.5781 10.5H75.3984C75.0703 10.5 74.8125 10.7812 74.8359 11.1094Z","fill","white"],["id","paint0_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["stop-color","#808080","stop-opacity","0.25"],["offset","0.54","stop-color","#808080","stop-opacity","0.12"],["offset","1","stop-color","#808080","stop-opacity","0.1"],["id","paint1_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["id","paint3_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["id","paint4_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint5_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 370 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M327.488 99.9755C350.953 99.9755 369.975 80.9531 369.975 57.4877C369.975 34.0224 350.953 15 327.488 15C304.022 15 285 34.0224 285 57.4877C285 80.9531 304.022 99.9755 327.488 99.9755Z",1,"fill-color-25"],["d","M115.068 85.6077H349.8V86.5722H113L115.068 85.6077Z",1,"fill-color-19"],["d","M236.776 84.376H226.024V91.544H236.776V84.376Z",1,"fill-color-primary-lighter"],["d","M218.856 87.96H233.192V79H218.856V87.96ZM232.569 87.5704H219.479V79.3896H232.569V87.5704Z",1,"fill-color-19"],["d","M265 57.3624H357.392V120.307H265V57.3624Z",1,"fill-color-22"],["d","M362.545 50H271.626C271.016 50.0009 270.521 50.495 270.521 51.1048V112.577C270.521 112.87 270.638 113.151 270.845 113.358C271.052 113.565 271.333 113.681 271.626 113.681H362.545C362.838 113.681 363.119 113.565 363.326 113.358C363.533 113.151 363.65 112.87 363.65 112.577V51.1048C363.65 50.495 363.155 50.0009 362.545 50ZM362.913 112.577C362.913 112.674 362.875 112.768 362.806 112.837C362.736 112.907 362.643 112.945 362.545 112.945H271.626C271.528 112.945 271.434 112.907 271.365 112.837C271.296 112.768 271.258 112.674 271.258 112.577V51.1048C271.258 50.9015 271.423 50.7365 271.626 50.7365H362.545C362.748 50.7365 362.913 50.9015 362.913 51.1048V112.577Z",1,"fill-color-19"],["d","M316.364 93.4359H275.844C275.547 93.4359 275.307 93.6766 275.307 93.9735V97.6835C275.307 97.9804 275.547 98.2211 275.844 98.2211H316.364C316.661 98.2211 316.901 97.9804 316.901 97.6835V93.9735C316.901 93.6766 316.661 93.4359 316.364 93.4359Z",1,"fill-color-19"],["d","M354.814 89.3873H341.565C341.272 89.3873 340.991 89.5036 340.784 89.7108C340.577 89.918 340.46 90.199 340.46 90.492V100.798C340.46 101.091 340.577 101.372 340.784 101.579C340.991 101.786 341.272 101.903 341.565 101.903H354.814C355.107 101.903 355.388 101.786 355.595 101.579C355.803 101.372 355.919 101.091 355.919 100.798V90.492C355.919 90.199 355.803 89.918 355.595 89.7108C355.388 89.5036 355.107 89.3873 354.814 89.3873ZM355.182 100.798C355.182 101.001 355.017 101.166 354.814 101.166H341.565C341.362 101.166 341.197 101.001 341.197 100.798V90.492C341.196 90.3943 341.235 90.3004 341.304 90.2313C341.373 90.1622 341.467 90.1235 341.565 90.1238H354.814C354.912 90.1235 355.006 90.1622 355.075 90.2313C355.144 90.3004 355.183 90.3943 355.182 90.492V100.798Z",1,"fill-color-19"],["d","M352.168 91.7653H344.211C343.914 91.7653 343.673 92.006 343.673 92.3029V93.0965C343.673 93.3934 343.914 93.6341 344.211 93.6341H352.168C352.465 93.6341 352.706 93.3934 352.706 93.0965V92.3029C352.706 92.006 352.465 91.7653 352.168 91.7653Z",1,"fill-color-19"],["d","M352.168 94.71H344.211C343.914 94.71 343.673 94.9507 343.673 95.2476V96.0412C343.673 96.3381 343.914 96.5788 344.211 96.5788H352.168C352.465 96.5788 352.706 96.3381 352.706 96.0412V95.2476C352.706 94.9507 352.465 94.71 352.168 94.71Z",1,"fill-color-19"],["d","M352.168 97.6548H344.211C343.914 97.6548 343.673 97.8955 343.673 98.1924V98.986C343.673 99.2829 343.914 99.5236 344.211 99.5236H352.168C352.465 99.5236 352.706 99.2829 352.706 98.986V98.1924C352.706 97.8955 352.465 97.6548 352.168 97.6548Z",1,"fill-color-19"],["d","M295.014 54.4177H276.949C276.652 54.4177 276.411 54.6584 276.411 54.9553V61.9782C276.411 62.2752 276.652 62.5158 276.949 62.5158H295.014C295.311 62.5158 295.552 62.2752 295.552 61.9782V54.9553C295.552 54.6584 295.311 54.4177 295.014 54.4177Z",1,"fill-color-19"],["d","M312.293 105.198C319.455 105.198 325.261 99.3917 325.261 92.2295C325.261 85.0672 319.455 79.2611 312.293 79.2611C305.131 79.2611 299.325 85.0672 299.325 92.2295C299.325 99.3917 305.131 105.198 312.293 105.198Z",1,"fill-color-25"],["d","M315.18 101.976C308.655 101.976 302.773 98.0462 300.276 92.0183C297.78 85.9904 299.16 79.052 303.773 74.4384C308.387 69.8249 315.325 68.4448 321.353 70.9416C327.381 73.4384 331.311 79.3205 331.311 85.8451C331.301 94.75 324.085 101.966 315.18 101.976ZM315.18 69.9245C306.387 69.9245 299.259 77.0524 299.259 85.8451C299.259 94.6377 306.387 101.766 315.18 101.766C323.973 101.766 331.1 94.6377 331.1 85.8451C331.09 77.0565 323.968 69.9345 315.18 69.9245Z",1,"fill-color-19"],["d","M309.677 100.883C309.936 100.948 310.216 100.873 310.41 100.673L318.163 92.664C318.571 92.2458 318.371 91.5387 317.802 91.3966L314.249 90.5107L316.557 86.8411C316.797 86.4038 316.558 85.8537 316.074 85.7332L311.64 84.6277C311.271 84.5355 310.888 84.7313 310.748 85.0854L307.92 92.2295C307.751 92.6583 307.998 93.1384 308.444 93.2497L312.099 94.161L309.186 99.7958C308.959 100.236 309.206 100.766 309.677 100.883Z",1,"fill-color-21"],["d","M88.6576 67.1775H1.48938V98.4248H88.6576V67.1775Z","fill","white"],["d","M59.8442 74.589H8.64417V90.6009H59.8442V74.589Z",1,"fill-color-primary-darker"],["d","M76.3175 90.6426C80.819 90.6426 84.4682 86.9934 84.4682 82.4919C84.4682 77.9904 80.819 74.3412 76.3175 74.3412C71.8159 74.3412 68.1667 77.9904 68.1667 82.4919C68.1667 86.9934 71.8159 90.6426 76.3175 90.6426Z",1,"fill-color-primary-darker"],["d","M88.6576 34.7129H1.48938V65.9602H88.6576V34.7129Z","fill","white"],["d","M59.8442 42.1244H8.64417V58.1363H59.8442V42.1244Z",1,"fill-color-primary-darker"],["d","M76.3175 58.1801C80.819 58.1801 84.4682 54.531 84.4682 50.0294C84.4682 45.5279 80.819 41.8787 76.3175 41.8787C71.8159 41.8787 68.1667 45.5279 68.1667 50.0294C68.1667 54.531 71.8159 58.1801 76.3175 58.1801Z",1,"fill-color-primary-darker"],["d","M88.6576 2.24824H1.48938V33.4955H88.6576V2.24824Z","fill","white"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-primary-darker"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-17"],["d","M76.7868 26.5736C81.6396 26.5736 85.5736 22.6396 85.5736 17.7868C85.5736 12.934 81.6396 9 76.7868 9C71.934 9 68 12.934 68 17.7868C68 22.6396 71.934 26.5736 76.7868 26.5736Z","fill","url(#paint0_linear)"],["d","M76.3174 59.0334C81.1702 59.0334 85.1042 55.0994 85.1042 50.2466C85.1042 45.3938 81.1702 41.4598 76.3174 41.4598C71.4646 41.4598 67.5306 45.3938 67.5306 50.2466C67.5306 55.0994 71.4646 59.0334 76.3174 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3174 91.4958C81.1702 91.4958 85.1042 87.5618 85.1042 82.709C85.1042 77.8562 81.1702 73.9222 76.3174 73.9222C71.4646 73.9222 67.5306 77.8562 67.5306 82.709C67.5306 87.5618 71.4646 91.4958 76.3174 91.4958Z","fill","url(#paint2_linear)"],["d","M193.434 36.7899H142.709V35.7444H119.708V36.7899H68.7742C67.8642 36.7899 66.9915 37.1514 66.348 37.7949C65.7045 38.4384 65.343 39.3111 65.343 40.2211V109.679C65.343 110.589 65.7045 111.462 66.348 112.106C66.9915 112.749 67.8642 113.111 68.7742 113.111H193.434C195.329 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.344 36.7899 193.434 36.7899Z",1,"fill-color-19"],["d","M192.265 42.8538H69.9432V111.856H192.265V42.8538Z",1,"fill-color-22"],["opacity","0.1","d","M157.283 111.856H69.9432V42.8538L157.283 111.856Z","fill","black"],["d","M89.0829 106.693C95.5767 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.5767 83.1766 89.0829 83.1766C82.5892 83.1766 77.325 88.4408 77.325 94.9346C77.325 101.428 82.5892 106.693 89.0829 106.693Z",1,"fill-color-25"],["d","M91.7004 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7004 103.772ZM91.7004 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7004 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7004 74.7115Z",1,"fill-color-28"],["d","M170.967 80.0672H159.541V82.4548H170.967V80.0672Z",1,"fill-color-19"],["d","M184.781 67.9588H145.727V68.9821H184.781V67.9588Z",1,"fill-color-19"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.114C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.26 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.041 109.589 156.009 109.621C155.977 109.653 155.96 109.696 155.96 109.741V110.601H153.401V109.741C153.401 109.696 153.383 109.653 153.351 109.621C153.319 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.088 109.589 114.056 109.621C114.024 109.653 114.006 109.696 114.006 109.741V110.601H111.448V109.741C111.448 109.696 111.43 109.653 111.398 109.621C111.366 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.147 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.464V109.741C97.464 109.696 97.4461 109.653 97.4141 109.621C97.3821 109.589 97.3387 109.571 97.2935 109.571H93.2005C93.1553 109.571 93.1119 109.589 93.0799 109.621C93.0479 109.653 93.03 109.696 93.03 109.741V110.601H90.4719V109.741C90.4719 109.696 90.4539 109.653 90.4219 109.621C90.3899 109.589 90.3465 109.571 90.3013 109.571H86.2083C86.1631 109.571 86.1197 109.589 86.0877 109.621C86.0558 109.653 86.0378 109.696 86.0378 109.741V110.601H83.4797V109.741C83.4797 109.696 83.4617 109.653 83.4297 109.621C83.3978 109.589 83.3544 109.571 83.3091 109.571H79.2162C79.1709 109.571 79.1276 109.589 79.0956 109.621C79.0636 109.653 79.0456 109.696 79.0456 109.741V110.601H76.4875V109.741C76.4875 109.696 76.4695 109.653 76.4376 109.621C76.4056 109.589 76.3622 109.571 76.317 109.571H72.224C72.1788 109.571 72.1354 109.589 72.1034 109.621C72.0714 109.653 72.0535 109.696 72.0535 109.741V110.601H64.2086C61.9481 110.601 60.1156 112.434 60.1156 114.694V116.545C60.1156 118.806 61.9481 120.638 64.2086 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z",1,"fill-color-19"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8457 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9774 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1719L88.0762 87.0664C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5348 96.5997L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z",1,"fill-color-21"],["d","M78.125 21.625C78.125 20.5938 77.2812 19.75 76.25 19.75C75.1953 19.75 74.375 20.5938 74.375 21.625C74.375 22.6797 75.1953 23.5 76.25 23.5C77.2812 23.5 78.125 22.6797 78.125 21.625ZM74.5859 12.1094L74.8906 18.4844C74.9141 18.7656 75.1719 19 75.4531 19H77.0234C77.3047 19 77.5625 18.7656 77.5859 18.4844L77.8906 12.1094C77.9141 11.7812 77.6562 11.5 77.3281 11.5H75.1484C74.8203 11.5 74.5625 11.7812 74.5859 12.1094Z","fill","white"],["id","paint0_linear","x1","76.7868","y1","26.5736","x2","76.7868","y2","9","gradientUnits","userSpaceOnUse"],["id","paint1_linear","x1","76.3174","y1","59.0334","x2","76.3174","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3174","y1","91.4958","x2","76.3174","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 153 200","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary-lighter"],["d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M122.399 37H32.25V137.616H122.399V37Z",1,"fill-color-10"],["d","M120.908 104.178H33.7394V135.425H120.908V104.178Z","fill","white"],["d","M92.0943 111.589H40.8943V127.601H92.0943V111.589Z",1,"fill-color-primary-darker"],["d","M108.567 127.643C113.069 127.643 116.718 123.993 116.718 119.492C116.718 114.99 113.069 111.341 108.567 111.341C104.066 111.341 100.417 114.99 100.417 119.492C100.417 123.993 104.066 127.643 108.567 127.643Z",1,"fill-color-primary-darker"],["d","M120.908 71.7129H33.7394V102.96H120.908V71.7129Z","fill","white"],["d","M92.0943 79.1244H40.8943V95.1363H92.0943V79.1244Z",1,"fill-color-primary-darker"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.531 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.531 104.066 95.1801 108.567 95.1801Z",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7394V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6738H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M74.5 112H40.5V128H74.5V112Z",1,"fill-color-17"],["d","M74.5 79H40.5V95H74.5V79Z",1,"fill-color-17"],["d","M91.8943 46.662H40.8943V62.662H91.8943V46.662Z",1,"fill-color-17"],["d","M108.567 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.567 45.778C103.715 45.778 99.7806 49.712 99.7806 54.5648C99.7806 59.4176 103.715 63.3516 108.567 63.3516Z","fill","url(#paint0_linear)"],["d","M108.567 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.567 78.4598C103.715 78.4598 99.7806 82.3938 99.7806 87.2466C99.7806 92.0994 103.715 96.0334 108.567 96.0334Z",1,"fill-color-17"],["d","M108.567 128.496C113.42 128.496 117.354 124.562 117.354 119.709C117.354 114.856 113.42 110.922 108.567 110.922C103.715 110.922 99.7806 114.856 99.7806 119.709C99.7806 124.562 103.715 128.496 108.567 128.496Z",1,"fill-color-17"],["d","M108.401 62.3014C112.902 62.3014 116.551 58.6522 116.551 54.1507C116.551 49.6492 112.902 46 108.401 46C103.899 46 100.25 49.6492 100.25 54.1507C100.25 58.6522 103.899 62.3014 108.401 62.3014Z",1,"fill-color-17"],["d","M110.625 57.625C110.625 56.5938 109.781 55.75 108.75 55.75C107.695 55.75 106.875 56.5938 106.875 57.625C106.875 58.6797 107.695 59.5 108.75 59.5C109.781 59.5 110.625 58.6797 110.625 57.625ZM107.086 48.1094L107.391 54.4844C107.414 54.7656 107.672 55 107.953 55H109.523C109.805 55 110.062 54.7656 110.086 54.4844L110.391 48.1094C110.414 47.7812 110.156 47.5 109.828 47.5H107.648C107.32 47.5 107.062 47.7812 107.086 48.1094Z","fill","white"],["d","M141.711 111C141.008 111 140.656 111.859 141.164 112.367L146.164 117.367C146.477 117.68 146.984 117.68 147.297 117.367L152.297 112.367C152.805 111.859 152.453 111 151.75 111H141.711Z",1,"fill-color-17"],["d","M84.25 185.461C84.25 184.758 83.3906 184.406 82.8828 184.914L77.8828 189.914C77.5703 190.227 77.5703 190.734 77.8828 191.047L82.8828 196.047C83.3906 196.555 84.25 196.203 84.25 195.5V185.461Z",1,"fill-color-primary-darker"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z",1,"fill-color-primary-darker"],["d","M133.75 174C142.31 174 149.25 167.06 149.25 158.5C149.25 149.94 142.31 143 133.75 143C125.19 143 118.25 149.94 118.25 158.5C118.25 167.06 125.19 174 133.75 174Z",1,"fill-color-25"],["d","M129.872 169.64C130.214 169.726 130.584 169.628 130.84 169.363L141.093 158.771C141.633 158.218 141.369 157.283 140.616 157.095L135.917 155.924L138.969 151.071C139.286 150.493 138.97 149.765 138.331 149.606L132.468 148.144C131.979 148.022 131.473 148.281 131.287 148.749L127.548 158.197C127.324 158.764 127.65 159.399 128.241 159.546L133.074 160.751L129.222 168.203C128.921 168.785 129.249 169.485 129.872 169.64Z",1,"fill-color-21"],["d","M19.75 174C28.3104 174 35.25 167.06 35.25 158.5C35.25 149.94 28.3104 143 19.75 143C11.1896 143 4.25 149.94 4.25 158.5C4.25 167.06 11.1896 174 19.75 174Z",1,"fill-color-25"],["d","M19.3208 167.769C23.2973 167.769 26.5208 164.545 26.5208 160.569C26.5208 156.592 23.2973 153.369 19.3208 153.369C15.3444 153.369 12.1208 156.592 12.1208 160.569C12.1208 164.545 15.3444 167.769 19.3208 167.769Z",1,"fill-color-22"],["d","M13.7656 153.188L12.4676 152.716C12.4676 152.716 15.1815 150.002 18.9572 150.238L17.8953 149.177C17.8953 149.177 20.4911 148.233 22.851 150.71C24.0915 152.013 25.5268 153.544 26.4216 155.269H27.8116L27.2314 156.429L29.2619 157.589L27.1778 157.381C27.3752 158.383 27.3073 159.418 26.9807 160.386L26.5087 161.684C26.5087 161.684 24.6208 157.908 24.6208 157.436V158.616C24.6208 158.616 23.3229 157.554 23.3229 156.846L22.615 157.672L22.261 156.374L17.8953 157.672L18.6032 156.61L15.8894 156.964L16.9514 155.666C16.9514 155.666 13.8836 157.2 13.7656 158.498C13.6476 159.796 12.1137 161.448 12.1137 161.448L11.4058 160.268C11.4058 160.268 10.3438 154.958 13.7656 153.188Z",1,"fill-color-21"],["d","M76.75 31C68.1896 31 61.25 24.0604 61.25 15.5C61.25 6.93959 68.1896 0 76.75 0C85.3104 0 92.25 6.93959 92.25 15.5C92.25 24.0604 85.3104 31 76.75 31Z",1,"fill-color-25"],["d","M77.1792 24.7687C73.2027 24.7687 69.9792 21.5452 69.9792 17.5687C69.9792 13.5923 73.2027 10.3687 77.1792 10.3687C81.1556 10.3687 84.3792 13.5923 84.3792 17.5687C84.3792 21.5452 81.1556 24.7687 77.1792 24.7687Z",1,"fill-color-22"],["d","M82.7344 10.1883L84.0324 9.71628C84.0324 9.71628 81.3185 7.00246 77.5428 7.23845L78.6047 6.17651C78.6047 6.17651 76.0089 5.23258 73.649 7.71041C72.4085 9.01295 70.9732 10.544 70.0784 12.2687H68.6884L69.2686 13.429L67.2381 14.5893L69.3222 14.3808C69.1248 15.3825 69.1927 16.4184 69.5193 17.3858L69.9913 18.6837C69.9913 18.6837 71.8792 14.9079 71.8792 14.4359V15.6159C71.8792 15.6159 73.1771 14.5539 73.1771 13.846L73.885 14.6719L74.239 13.374L78.6047 14.6719L77.8968 13.61L80.6106 13.964L79.5486 12.6661C79.5486 12.6661 82.6164 14.2 82.7344 15.4979C82.8524 16.7958 84.3863 18.4477 84.3863 18.4477L85.0942 17.2678C85.0942 17.2678 86.1562 11.9581 82.7344 10.1883Z",1,"fill-color-21"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.786 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.542 141.365 153.936Z",1,"fill-color-21"],["d","M140.968 160.376C141.521 160.376 141.968 159.928 141.968 159.376C141.968 158.823 141.521 158.376 140.968 158.376C140.416 158.376 139.968 158.823 139.968 159.376C139.968 159.928 140.416 160.376 140.968 160.376Z",1,"fill-color-22"],["d","M129.168 160.376C129.721 160.376 130.168 159.928 130.168 159.376C130.168 158.823 129.721 158.376 129.168 158.376C128.616 158.376 128.168 158.823 128.168 159.376C128.168 159.928 128.616 160.376 129.168 160.376Z",1,"fill-color-22"],["d","M135.068 165.276C138.272 165.276 140.868 162.679 140.868 159.476C140.868 156.272 138.272 153.676 135.068 153.676C131.865 153.676 129.268 156.272 129.268 159.476C129.268 162.679 131.865 165.276 135.068 165.276Z",1,"fill-color-22"],["d","M140.384 153.575L136.049 151.304L130.062 152.233L128.824 157.704L131.907 157.585L132.768 155.576V157.552L134.191 157.498L135.017 154.298L135.533 157.704L140.591 157.601L140.384 153.575Z",1,"fill-color-21"],["d","M79.4007 199.301C83.9022 199.301 87.5514 195.652 87.5514 191.151C87.5514 186.649 83.9022 183 79.4007 183C74.8992 183 71.25 186.649 71.25 191.151C71.25 195.652 74.8992 199.301 79.4007 199.301Z",1,"fill-color-17"],["d","M82.9375 189.25H80.2188L81.2266 186.227C81.3203 185.852 81.0391 185.5 80.6875 185.5H77.3125C77.0313 185.5 76.7735 185.711 76.75 185.992L76 191.617C75.9531 191.969 76.211 192.25 76.5625 192.25H79.3281L78.25 196.82C78.1797 197.172 78.4375 197.5 78.7891 197.5C79 197.5 79.1875 197.406 79.2813 197.219L83.4063 190.094C83.6406 189.742 83.3594 189.25 82.9375 189.25Z","fill","white"],["d","M106.555 91.8125C106.789 92.0469 107.188 92.0469 107.422 91.8125L114.312 84.9219C114.547 84.6875 114.547 84.2891 114.312 84.0547L113.469 83.2109C113.234 82.9766 112.859 82.9766 112.625 83.2109L107 88.8359L104.352 86.2109C104.117 85.9766 103.742 85.9766 103.508 86.2109L102.664 87.0547C102.43 87.2891 102.43 87.6875 102.664 87.9219L106.555 91.8125Z","fill","white"],["d","M106.555 124.812C106.789 125.047 107.188 125.047 107.422 124.812L114.312 117.922C114.547 117.688 114.547 117.289 114.312 117.055L113.469 116.211C113.234 115.977 112.859 115.977 112.625 116.211L107 121.836L104.352 119.211C104.117 118.977 103.742 118.977 103.508 119.211L102.664 120.055C102.43 120.289 102.43 120.688 102.664 120.922L106.555 124.812Z","fill","white"],["id","paint0_linear","x1","108.567","y1","63.3516","x2","108.567","y2","45.778","gradientUnits","userSpaceOnUse"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M120.908 104.177H33.7393V135.425H120.908V104.177Z","fill","white"],["d","M120.908 71.7129H33.7393V102.96H120.908V71.7129Z","fill","white"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.5309 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.5309 104.066 95.1801 108.567 95.1801Z",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7393V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6739H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M76 112H41V128H76V112Z",1,"fill-color-17"],["d","M70 79H41V95H70V79Z",1,"fill-color-17"],["d","M70 47H41V63H70V47Z",1,"fill-color-17"],["d","M108.568 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.568 45.778C103.715 45.778 99.7808 49.712 99.7808 54.5648C99.7808 59.4176 103.715 63.3516 108.568 63.3516Z","fill","url(#paint0_linear)"],["d","M108.568 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.568 78.4598C103.715 78.4598 99.7808 82.3938 99.7808 87.2466C99.7808 92.0994 103.715 96.0334 108.568 96.0334Z",1,"fill-color-17"],["d","M108.568 129.496C113.42 129.496 117.354 125.562 117.354 120.709C117.354 115.856 113.42 111.922 108.568 111.922C103.715 111.922 99.7808 115.856 99.7808 120.709C99.7808 125.562 103.715 129.496 108.568 129.496Z",1,"fill-color-17"],["d","M106.805 91.8125C107.039 92.0469 107.438 92.0469 107.672 91.8125L114.562 84.9219C114.797 84.6875 114.797 84.2891 114.562 84.0547L113.719 83.2109C113.484 82.9766 113.109 82.9766 112.875 83.2109L107.25 88.8359L104.602 86.2109C104.367 85.9766 103.992 85.9766 103.758 86.2109L102.914 87.0547C102.68 87.2891 102.68 87.6875 102.914 87.9219L106.805 91.8125Z","fill","white"],["d","M106.805 58.8125C107.039 59.0469 107.438 59.0469 107.672 58.8125L114.562 51.9219C114.797 51.6875 114.797 51.2891 114.562 51.0547L113.719 50.2109C113.484 49.9766 113.109 49.9766 112.875 50.2109L107.25 55.8359L104.602 53.2109C104.367 52.9766 103.992 52.9766 103.758 53.2109L102.914 54.0547C102.68 54.2891 102.68 54.6875 102.914 54.9219L106.805 58.8125Z","fill","white"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z",1,"fill-color-17"],["d","M77.1792 24.7688C73.2027 24.7688 69.9792 21.5452 69.9792 17.5688C69.9792 13.5923 73.2027 10.3688 77.1792 10.3688C81.1556 10.3688 84.3792 13.5923 84.3792 17.5688C84.3792 21.5452 81.1556 24.7688 77.1792 24.7688Z",1,"fill-color-22"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.785 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.543 141.365 153.936Z",1,"fill-color-21"],["d","M82.9374 189.25H80.2186L81.2265 186.227C81.3202 185.852 81.039 185.5 80.6874 185.5H77.3124C77.0311 185.5 76.7733 185.711 76.7499 185.992L75.9999 191.617C75.953 191.969 76.2108 192.25 76.5624 192.25H79.328L78.2499 196.82C78.1796 197.172 78.4374 197.5 78.789 197.5C78.9999 197.5 79.1874 197.406 79.2811 197.219L83.4061 190.094C83.6405 189.742 83.3593 189.25 82.9374 189.25Z","fill","white"],["id","paint0_linear","x1","108.568","y1","63.3516","x2","108.568","y2","45.778","gradientUnits","userSpaceOnUse"]],template:function(o,a){if(1&o&&e.DNE(0,Rl,1,0,"ng-container",5)(1,El,47,5,"ng-template",null,0,e.C5r)(3,Il,96,5,"ng-template",null,1,e.C5r)(5,wl,68,5,"ng-template",null,2,e.C5r)(7,Ll,53,5,"ng-template",null,3,e.C5r)(9,jl,52,5,"ng-template",null,4,e.C5r),2&o){const l=e.sdS(2),h=e.sdS(4),f=e.sdS(6),P=e.sdS(8),w=e.sdS(10);e.Y8G("ngTemplateOutlet",1===a.stepNumber?l:2===a.stepNumber?h:3===a.stepNumber?f:4===a.stepNumber?P:w)}},dependencies:[y.YU,y.T3,B.Lc,B.dh,b.DJ,b.sA,b.UI,U.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:10%;min-height:10%;max-width:50%;margin:auto}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:50%;margin:auto}"],data:{animation:[Sl.k]}}))}return t(),s})();const Dl=["stepper"],Nl=()=>[1,2,3,4,5],Pl=(t,s)=>({"dot-primary":t,"dot-primary-lighter":s});function Bl(t,s){if(1&t&&e.EFF(0),2&t){const n=e.XpG(2);e.JRh(n.inputFormLabel)}}function Al(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function $l(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Amount must be a positive number."),e.k0s())}function Ml(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.SpI("Amount must be less than or equal to ",null==n.selChannel?null:n.selChannel.local_balance,".")}}function Ol(t,s){if(1&t&&(e.j41(0,"mat-option",54),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.Lme("",n.remote_alias," - ",n.chan_id)}}function Vl(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Receive from Peer is required."),e.k0s())}function Yl(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Receive from Peer not found in the list."),e.k0s())}function Ul(t,s){if(1&t&&e.EFF(0),2&t){const n=e.XpG(2);e.JRh(n.feeFormLabel)}}function Xl(t,s){if(1&t&&(e.j41(0,"mat-option",54),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.SpI(" ",n.name," ")}}function Hl(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.SpI("",n.feeFormGroup.controls.selFeeLimitType.value?n.feeFormGroup.controls.selFeeLimitType.value.placeholder:n.feeLimitTypes[0].placeholder," is required.")}}function ql(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.SpI("",n.feeFormGroup.controls.selFeeLimitType.value?n.feeFormGroup.controls.selFeeLimitType.value.placeholder:n.feeLimitTypes[0].placeholder," must be a positive number.")}}function zl(t,s){1&t&&e.EFF(0,"Invoice/Payment")}function Jl(t,s){1&t&&(e.j41(0,"mat-icon",55),e.EFF(1,"check"),e.k0s())}function Ql(t,s){1&t&&e.nrm(0,"mat-progress-bar",56)}function Wl(t,s){if(1&t&&(e.j41(0,"mat-icon",55),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(null!=n.paymentStatus&&n.paymentStatus.error?"close":"check")}}function Zl(t,s){1&t&&e.nrm(0,"div",7)}function Kl(t,s){1&t&&e.nrm(0,"mat-progress-bar",56)}function er(t,s){if(1&t&&(e.j41(0,"h4",57),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.paymentStatus&&n.paymentStatus.payment_hash?"Rebalance Successful.":"Rebalance Failed.")}}function tr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",58),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onRestart())}),e.EFF(1,"Start Again"),e.k0s()}}function nr(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",7)(1,"mat-card-header",8)(2,"div",9)(3,"div",10)(4,"span",11),e.EFF(5,"Channel Rebalance"),e.k0s()(),e.j41(6,"div",12)(7,"button",13),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.showInfo())}),e.EFF(8,"?"),e.k0s(),e.j41(9,"button",14),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onClose())}),e.EFF(10,"X"),e.k0s()()()(),e.j41(11,"mat-card-content",15)(12,"div",7)(13,"div",16)(14,"div",17),e.nrm(15,"fa-icon",18),e.j41(16,"span"),e.EFF(17,"Circular Rebalance is a payment you make to *yourself* to affect a relative change in the balances of two channels. This is accomplished by sending payment out from the selected channel and receiving it back on the channel with the selected peer. Please note, you will be paying routing fee to balance the channels in this manner."),e.k0s()()(),e.j41(18,"div",19)(19,"p",20)(20,"strong"),e.EFF(21,"Channel Peer:\xa0"),e.k0s(),e.EFF(22),e.nI1(23,"titlecase"),e.k0s(),e.j41(24,"p",20)(25,"strong"),e.EFF(26,"Channel ID:\xa0"),e.k0s(),e.EFF(27),e.k0s()(),e.j41(28,"mat-vertical-stepper",21,3),e.bIt("selectionChange",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.stepSelectionChanged(o))}),e.j41(30,"mat-step",22)(31,"form",23),e.DNE(32,Bl,1,1,"ng-template",24),e.j41(33,"div",25)(34,"mat-form-field",26)(35,"mat-label"),e.EFF(36,"Amount"),e.k0s(),e.nrm(37,"input",27),e.j41(38,"mat-hint"),e.EFF(39),e.k0s(),e.j41(40,"span",28),e.EFF(41,"Sats"),e.k0s(),e.DNE(42,Al,2,0,"mat-error",29)(43,$l,2,0,"mat-error",29)(44,Ml,2,1,"mat-error",29),e.k0s(),e.j41(45,"mat-form-field",30)(46,"mat-label"),e.EFF(47,"Receive from Peer"),e.k0s(),e.j41(48,"input",31),e.bIt("change",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSelectedPeerChanged())}),e.k0s(),e.j41(49,"mat-autocomplete",32,4),e.bIt("optionSelected",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSelectedPeerChanged())}),e.DNE(51,Ol,2,3,"mat-option",33),e.nI1(52,"async"),e.k0s(),e.DNE(53,Vl,2,0,"mat-error",29)(54,Yl,2,0,"mat-error",29),e.k0s()(),e.j41(55,"div",34)(56,"button",35),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSelectFee())}),e.EFF(57,"Select Fee"),e.k0s()()()(),e.j41(58,"mat-step",22)(59,"form",23),e.DNE(60,Ul,1,1,"ng-template",36),e.j41(61,"div",25)(62,"div",25)(63,"mat-form-field",30)(64,"mat-label"),e.EFF(65,"Fee Limits"),e.k0s(),e.j41(66,"mat-select",37),e.DNE(67,Xl,2,2,"mat-option",33),e.k0s()(),e.j41(68,"mat-form-field",26)(69,"mat-label"),e.EFF(70),e.k0s(),e.nrm(71,"input",38),e.DNE(72,Hl,2,1,"mat-error",29)(73,ql,2,1,"mat-error",29),e.k0s()()(),e.j41(74,"div",34)(75,"button",39),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onRebalance())}),e.EFF(76,"Rebalance"),e.k0s()()()(),e.j41(77,"mat-step",40)(78,"form",23),e.DNE(79,zl,1,0,"ng-template",24),e.j41(80,"div",41)(81,"mat-expansion-panel",42)(82,"mat-expansion-panel-header")(83,"mat-panel-title")(84,"span",43),e.EFF(85),e.DNE(86,Jl,2,0,"mat-icon",44),e.k0s()()(),e.j41(87,"div",7)(88,"span",45),e.EFF(89),e.k0s()()(),e.DNE(90,Ql,1,0,"mat-progress-bar",46),e.j41(91,"mat-expansion-panel",47)(92,"mat-expansion-panel-header")(93,"mat-panel-title")(94,"span",43),e.EFF(95),e.DNE(96,Wl,2,1,"mat-icon",44),e.k0s()()(),e.DNE(97,Zl,1,0,"div",48),e.k0s(),e.DNE(98,Kl,1,0,"mat-progress-bar",46),e.k0s(),e.DNE(99,er,2,1,"h4",49),e.j41(100,"div",50),e.DNE(101,tr,2,0,"button",51),e.k0s()()()(),e.j41(102,"div",52)(103,"button",53),e.EFF(104,"Close"),e.k0s()()()()()}if(2&t){const n=e.sdS(50),i=e.XpG(),o=e.sdS(2);e.Y8G("@opacityAnimation",void 0),e.R7$(15),e.Y8G("icon",i.faInfoCircle),e.R7$(7),e.JRh(e.bMT(23,42,i.selChannel.remote_alias)),e.R7$(5),e.JRh(i.selChannel.chan_id),e.R7$(),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",i.inputFormGroup)("editable",i.flgEditable),e.R7$(),e.Y8G("formGroup",i.inputFormGroup),e.R7$(6),e.Y8G("step",100),e.R7$(2),e.Lme("(Local Bal: ",null==i.selChannel?null:i.selChannel.local_balance,", Remaining: ",(null==i.selChannel?null:i.selChannel.local_balance)-(i.inputFormGroup.controls.rebalanceAmount.value?i.inputFormGroup.controls.rebalanceAmount.value:0),")"),e.R7$(3),e.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.required),e.R7$(),e.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.min),e.R7$(),e.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.max),e.R7$(4),e.Y8G("matAutocomplete",n),e.R7$(),e.Y8G("displayWith",i.displayFn),e.R7$(2),e.Y8G("ngForOf",e.bMT(52,44,i.filteredActiveChannels)),e.R7$(2),e.Y8G("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.required),e.R7$(),e.Y8G("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.notfound),e.R7$(4),e.Y8G("stepControl",i.feeFormGroup)("editable",i.flgEditable),e.R7$(),e.Y8G("formGroup",i.feeFormGroup),e.R7$(8),e.Y8G("ngForOf",i.feeLimitTypes),e.R7$(3),e.JRh(i.feeFormGroup.controls.selFeeLimitType.value?i.feeFormGroup.controls.selFeeLimitType.value.placeholder:i.feeLimitTypes[0].placeholder),e.R7$(),e.Y8G("step",1),e.R7$(),e.Y8G("ngIf",null==i.feeFormGroup.controls.feeLimit.errors?null:i.feeFormGroup.controls.feeLimit.errors.required),e.R7$(),e.Y8G("ngIf",null==i.feeFormGroup.controls.feeLimit.errors?null:i.feeFormGroup.controls.feeLimit.errors.min),e.R7$(4),e.Y8G("stepControl",i.statusFormGroup),e.R7$(),e.Y8G("formGroup",i.statusFormGroup),e.R7$(7),e.JRh(i.flgInvoiceGenerated?i.flgReusingInvoice?"Invoice re-used":"Invoice generated":"Generating invoice..."),e.R7$(),e.Y8G("ngIf",i.flgInvoiceGenerated),e.R7$(3),e.JRh(i.paymentRequest),e.R7$(),e.Y8G("ngIf",!i.flgInvoiceGenerated),e.R7$(),e.Y8G("expanded",(i.flgInvoiceGenerated||i.flgReusingInvoice)&&i.flgPaymentSent),e.R7$(4),e.JRh(i.flgInvoiceGenerated||i.flgPaymentSent?i.flgPaymentSent?null!=i.paymentStatus&&i.paymentStatus.error?"Payment failed":"Payment successful":"Processing payment...":"Payment waiting for Invoice"),e.R7$(),e.Y8G("ngIf",i.flgPaymentSent),e.R7$(),e.Y8G("ngIf",!i.paymentStatus)("ngIfElse",o),e.R7$(),e.Y8G("ngIf",i.flgInvoiceGenerated&&!i.flgPaymentSent),e.R7$(),e.Y8G("ngIf",i.flgInvoiceGenerated&&i.flgPaymentSent),e.R7$(2),e.Y8G("ngIf",i.paymentStatus&&i.paymentStatus.error),e.R7$(2),e.Y8G("mat-dialog-close",!1)}}function ir(t,s){1&t&&e.eu8(0)}function ar(t,s){if(1&t&&e.DNE(0,ir,1,0,"ng-container",59),2&t){const n=e.XpG(),i=e.sdS(4),o=e.sdS(6);e.Y8G("ngTemplateOutlet",n.paymentStatus.error?i:o)}}function sr(t,s){if(1&t&&(e.j41(0,"div",7)(1,"span",45),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.SpI("Error: ",n.paymentStatus.error)}}function or(t,s){if(1&t&&(e.j41(0,"div",7)(1,"div",60)(2,"div",61)(3,"h4",62),e.EFF(4,"Payment Hash"),e.k0s(),e.j41(5,"span",45),e.EFF(6),e.k0s()()(),e.nrm(7,"mat-divider",63),e.j41(8,"div",60)(9,"div",64)(10,"h4",62),e.EFF(11),e.k0s(),e.j41(12,"span",45),e.EFF(13),e.k0s()(),e.j41(14,"div",64)(15,"h4",62),e.EFF(16,"Number of Hops"),e.k0s(),e.j41(17,"span",45),e.EFF(18),e.k0s()()()()),2&t){const n=e.XpG();e.R7$(6),e.JRh(n.paymentStatus.payment_hash),e.R7$(5),e.SpI("Total Fees (",n.paymentStatus.payment_route.total_fees_msat?"mSats":"Sats",")"),e.R7$(2),e.JRh(n.paymentStatus.payment_route.total_fees_msat?n.paymentStatus.payment_route.total_fees_msat:n.paymentStatus.payment_route.total_fees?n.paymentStatus.payment_route.total_fees:0),e.R7$(5),e.JRh(n.paymentStatus&&n.paymentStatus.payment_route&&n.paymentStatus.payment_route.hops&&n.paymentStatus.payment_route.hops.length?n.paymentStatus.payment_route.hops.length:0)}}function lr(t,s){if(1&t){const n=e.RV6();e.j41(0,"span",80),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onStepChanged(o))}),e.nrm(1,"p",81),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngClass",e.l_i(1,Pl,i.stepNumber===n,i.stepNumber!==n))}}function rr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",82),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onStepChanged(4))}),e.EFF(1,"Back"),e.k0s()}}function cr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",83),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return o.flgShowInfo=!1,r.Njj(o.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function pr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",84),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return o.flgShowInfo=!1,r.Njj(o.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function mr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",85),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onStepChanged(o.stepNumber-1))}),e.EFF(1,"Back"),e.k0s()}}function ur(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",86),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onStepChanged(o.stepNumber+1))}),e.EFF(1,"Next"),e.k0s()}}function hr(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",65)(1,"div",66)(2,"mat-card-header",67)(3,"div",68),e.nrm(4,"span",11),e.k0s(),e.j41(5,"div",69)(6,"button",14),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return o.flgShowInfo=!1,r.Njj(o.stepNumber=1)}),e.EFF(7,"X"),e.k0s()()(),e.j41(8,"mat-card-content",70)(9,"rtl-channel-rebalance-infographics",71),e.mxI("stepNumberChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.stepNumber,o)||(a.stepNumber=o),r.Njj(o)}),e.k0s()(),e.j41(10,"div",72),e.DNE(11,lr,2,4,"span",73),e.k0s(),e.j41(12,"div",74),e.DNE(13,rr,2,0,"button",75)(14,cr,2,0,"button",76)(15,pr,2,0,"button",77)(16,mr,2,0,"button",78)(17,ur,2,0,"button",79),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@opacityAnimation",void 0),e.R7$(9),e.Y8G("animationDirection",n.animationDirection),e.R50("stepNumber",n.stepNumber),e.R7$(2),e.Y8G("ngForOf",e.lJ4(9,Nl)),e.R7$(2),e.Y8G("ngIf",5===n.stepNumber),e.R7$(),e.Y8G("ngIf",5===n.stepNumber),e.R7$(),e.Y8G("ngIf",n.stepNumber<5),e.R7$(),e.Y8G("ngIf",n.stepNumber>1&&n.stepNumber<5),e.R7$(),e.Y8G("ngIf",n.stepNumber<5)}}let dr=(()=>{var t;class s{constructor(i,o,a,l,h,f,P,w){this.dialogRef=i,this.data=o,this.logger=a,this.store=l,this.actions=h,this.formBuilder=f,this.decimalPipe=P,this.commonService=w,this.faInfoCircle=I.iW_,this.invoices={},this.selChannel={},this.activeChannels=[],this.feeLimitTypes=[],this.queryRoute={},this.paymentRequest="",this.paymentStatus=null,this.flgReusingInvoice=!1,this.flgInvoiceGenerated=!1,this.flgPaymentSent=!1,this.inputFormLabel="Amount to rebalance",this.feeFormLabel="Select rebalance fee",this.flgEditable=!0,this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=p.f7,this.animationDirection="forward",this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize();let i="",o="";this.selChannel=this.data.message?.selChannel||{},this.activeChannels=this.data.message?.channels?.filter(a=>a.active&&a.chan_id!==this.selChannel.chan_id&&a.remote_balance&&a.remote_balance>0)||[],this.activeChannels=this.activeChannels.sort((a,l)=>(i=a.remote_alias?a.remote_alias.toLowerCase():a.chan_id?a.chan_id.toLowerCase():"",o=l.remote_alias?l.remote_alias.toLowerCase():a.chan_id?a.chan_id.toLowerCase():"",io?1:0)),p.nv.forEach((a,l)=>{l>0&&this.feeLimitTypes.push(a)}),this.inputFormGroup=this.formBuilder.group({hiddenAmount:["",[g.k0.required]],rebalanceAmount:["",[g.k0.required,g.k0.min(1),g.k0.max(this.selChannel.local_balance||0)]],selRebalancePeer:[null,g.k0.required]}),this.feeFormGroup=this.formBuilder.group({selFeeLimitType:[this.feeLimitTypes[0],g.k0.required],feeLimit:["",[g.k0.required,g.k0.min(0)]],hiddenFeeLimit:["",[g.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(E.rN).pipe((0,x.Q)(this.unSubs[0])).subscribe(a=>{this.invoices=a.listInvoices,this.logger.info(a)}),this.actions.pipe((0,x.Q)(this.unSubs[1]),(0,L.p)(a=>a.type===p.QP.SET_QUERY_ROUTES_LND||a.type===p.QP.SEND_PAYMENT_STATUS_LND||a.type===p.QP.NEWLY_SAVED_INVOICE_LND)).subscribe(a=>{a.type===p.QP.SET_QUERY_ROUTES_LND&&(this.queryRoute=a.payload),a.type===p.QP.SEND_PAYMENT_STATUS_LND&&(this.logger.info(a.payload),this.flgPaymentSent=!0,this.paymentStatus=a.payload,this.flgEditable=!0),a.type===p.QP.NEWLY_SAVED_INVOICE_LND&&(this.logger.info(a.payload),this.flgInvoiceGenerated=!0,this.sendPayment(a.payload.paymentRequest))}),this.inputFormGroup.get("rebalanceAmount")?.valueChanges.pipe((0,x.Q)(this.unSubs[2]),(0,ot.Z)(0)).subscribe(a=>{this.inputFormGroup.controls.selRebalancePeer.setValue(""),this.inputFormGroup.controls.selRebalancePeer.setErrors(null),this.filteredActiveChannels=(0,ct.of)(a?this.filterActiveChannels():this.activeChannels.slice())}),this.inputFormGroup.get("selRebalancePeer")?.valueChanges.pipe((0,x.Q)(this.unSubs[3]),(0,ot.Z)("")).subscribe(a=>{"string"==typeof a&&(this.filteredActiveChannels=(0,ct.of)(this.filterActiveChannels()))})}onSelectFee(){return this.inputFormGroup.controls.selRebalancePeer.value&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value&&this.onSelectedPeerChanged(),this.inputFormGroup.controls.selRebalancePeer.value&&"string"!=typeof this.inputFormGroup.controls.selRebalancePeer.value?!this.inputFormGroup.controls.rebalanceAmount.value||(0===this.stepper.selectedIndex&&(this.inputFormGroup.controls.hiddenAmount.setValue(this.inputFormGroup.controls.rebalanceAmount.value),this.stepper.next()),this.queryRoute=null,this.feeFormGroup.reset(),void this.feeFormGroup.controls.selFeeLimitType.setValue(this.feeLimitTypes[0])):(this.inputFormGroup.controls.selRebalancePeer.setErrors({required:!0}),!0)}stepSelectionChanged(i){switch(i.selectedIndex){case 0:default:this.inputFormLabel="Amount to rebalance",this.feeFormLabel="Select rebalance fee";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?this.inputFormGroup.controls.selRebalancePeer.value.remote_alias:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey.substring(0,15)+"..."):"Amount to rebalance",this.feeFormLabel="Select rebalance fee";break;case 2:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?this.inputFormGroup.controls.selRebalancePeer.value.remote_alias:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey.substring(0,15)+"..."):"Amount to rebalance",this.feeFormLabel=this.queryRoute&&this.queryRoute.routes&&this.queryRoute.routes.length>0&&(this.queryRoute.routes[0].total_fees_msat||this.queryRoute.routes[0].hops&&this.queryRoute.routes[0].hops.length)?this.feeFormGroup.controls.selFeeLimitType.value.placeholder+": "+this.decimalPipe.transform(this.feeFormGroup.controls.feeLimit.value?this.feeFormGroup.controls.feeLimit.value:0)+" | Hops: "+this.queryRoute.routes[0].hops?.length:"Select rebalance fee"}i.selectedIndex+this.selChannel.local_balance||!this.feeFormGroup.controls.feeLimit.value||this.feeFormGroup.controls.feeLimit.value<0||!this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey)return!0;this.feeFormGroup.controls.hiddenFeeLimit.setValue(this.feeFormGroup.controls.feeLimit.value),this.stepper.next(),this.flgEditable=!1,this.paymentRequest="",this.paymentStatus=null,this.flgReusingInvoice=!1,this.flgInvoiceGenerated=!1,this.flgPaymentSent=!1;const i=this.findUnsettledInvoice();i?(this.flgReusingInvoice=!0,this.sendPayment(i.payment_request||"")):this.store.dispatch((0,N.VK)({payload:{uiMessage:p.MZ.NO_SPINNER,memo:"Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats",value:this.inputFormGroup.controls.rebalanceAmount.value,private:!1,expiry:p.It,is_amp:!1,pageSize:p.md,openModal:!1}}))}findUnsettledInvoice(){return this.invoices.invoices?.find(i=>(!i.settle_date||0==+i.settle_date)&&i.memo==="Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats"&&"CANCELED"!==i.state)}sendPayment(i){if(this.flgInvoiceGenerated=!0,this.paymentRequest=i,"percent"===this.feeFormGroup.controls.selFeeLimitType.value.id&&+this.feeFormGroup.controls.feeLimit.value%1!=0){const o={uiMessage:p.MZ.NO_SPINNER,payment_request:i,amp:!1,outgoing_chan_ids:this.selChannel?.chan_id?[this.selChannel?.chan_id]:void 0,fee_limit_sat:Math.ceil((0,p.C6)("fixed",this.feeFormGroup.controls.feeLimit.value,this.inputFormGroup.controls.rebalanceAmount.value||0)),allow_self_payment:!0,last_hop_pubkey:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey,fromDialog:!0};this.store.dispatch((0,N.Fd)({payload:o}))}else{const o={uiMessage:p.MZ.NO_SPINNER,payment_request:i,amp:!1,outgoing_chan_ids:this.selChannel?.chan_id?[this.selChannel?.chan_id]:void 0,fee_limit_sat:(0,p.C6)(this.feeFormGroup.controls.selFeeLimitType.value.id,this.feeFormGroup.controls.feeLimit.value,this.inputFormGroup.controls.rebalanceAmount.value||0),allow_self_payment:!0,last_hop_pubkey:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey,fromDialog:!0};this.store.dispatch((0,N.Fd)({payload:o}))}}filterActiveChannels(){return this.activeChannels?.filter(i=>i.remote_balance&&i.remote_balance>=this.inputFormGroup.controls.rebalanceAmount.value&&i.chan_id!==this.selChannel.chan_id&&(0===i.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")||0===i.chan_id?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")))}onSelectedPeerChanged(){if(this.inputFormGroup.controls.selRebalancePeer.value&&this.inputFormGroup.controls.selRebalancePeer.value.length>0&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value){const i=this.activeChannels?.filter(o=>o.remote_alias?.length===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===o.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""));i&&i.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(i[0]),this.inputFormGroup.controls.selRebalancePeer.setErrors(null)):this.inputFormGroup.controls.selRebalancePeer.setErrors({notfound:!0})}}displayFn(i){return i&&i.remote_alias?i.remote_alias:i&&i.chan_id?i.chan_id:""}showInfo(){this.flgShowInfo=!0}onStepChanged(i){this.animationDirection=i{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(V.gP),e.rXU(G.il),e.rXU(ce.En),e.rXU(g.ze),e.rXU(y.QX),e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-rebalance"]],viewQuery:function(o,a){if(1&o&&e.GBs(Dl,5),2&o){let l;e.mGM(l=e.lsd())&&(a.stepper=l.first)}},standalone:!1,decls:8,vars:2,consts:[["paymentStatusBlock",""],["paymentFailedBlock",""],["paymentSuccessfulBlock",""],["stepper",""],["auto","matAutocomplete"],["fxLayout","column",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column"],[1,"modal-info-header"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayoutAlign","start center"],[1,"page-title"],["fxLayoutAlign","end center"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch",1,"padding-gap-large"],["fxFlex","46"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","rebalanceAmount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start end"],["type","text","aria-label","Receive from Peer","matInput","","formControlName","selRebalancePeer","tabindex","2","required","",3,"change","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","submit",3,"click"],["matStepLabel","","disabled","true"],["tabindex","6","formControlName","selFeeLimitType","required",""],["matInput","","formControlName","feeLimit","type","number","tabindex","7","required","",3,"step"],["mat-button","","color","primary","tabindex","8","type","submit",3,"click"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel","mb-2"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[1,"foreground-secondary-text"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayoutAlign","start","class","font-bold-500 mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-1"],["mat-button","","color","primary","tabindex","11","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],[3,"value"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-1"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[4,"ngTemplateOutlet"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],["fxFlex","50"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["tabindex","21","fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(o,a){1&o&&e.DNE(0,nr,105,46,"div",5)(1,ar,1,1,"ng-template",null,0,e.C5r)(3,sr,3,1,"ng-template",null,1,e.C5r)(5,or,19,4,"ng-template",null,2,e.C5r)(7,hr,18,10,"div",6),2&o&&(e.Y8G("ngIf",!a.flgShowInfo),e.R7$(7),e.Y8G("ngIf",a.flgShowInfo))},dependencies:[y.YU,y.Sq,y.bT,y.T3,g.qT,g.me,g.Q0,g.BC,g.cb,g.YS,g.j4,g.JD,ee.aY,ne.tx,$.$z,B.m2,B.MM,he.GK,he.Z2,he.WN,ke.An,Z.fg,R.rl,R.nJ,R.MV,R.TL,R.yw,Te.q,D.HM,b.DJ,b.sA,b.UI,U.PW,O.VO,ae.wT,de.V5,de.Ti,de.M6,De.$3,De.pN,pe.N,Gl,y.Jj,y.PV],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[pt.C]}}))}return t(),s})();function _r(t,s){if(1&t&&(e.j41(0,"div",17)(1,"p",18)(2,"mat-icon",19),e.EFF(3,"close"),e.k0s(),e.EFF(4),e.k0s()()),2&t){const n=e.XpG();e.R7$(4),e.JRh(n.errorMsg)}}function fr(t,s){if(1&t&&(e.j41(0,"div",28),e.nrm(1,"fa-icon",29),e.j41(2,"span"),e.EFF(3,"Priority/Fee for force closing inactive channels cannot be modified."),e.k0s()()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faInfoCircle)}}function gr(t,s){if(1&t&&(e.j41(0,"div",28),e.nrm(1,"fa-icon",29),e.j41(2,"span",30)(3,"div"),e.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(5,"span",31)(6,"span"),e.EFF(7),e.k0s(),e.j41(8,"span"),e.EFF(9),e.k0s(),e.j41(10,"span"),e.EFF(11),e.k0s(),e.j41(12,"span"),e.EFF(13),e.k0s(),e.j41(14,"span"),e.EFF(15),e.k0s()()()()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faInfoCircle),e.R7$(6),e.SpI("- High: ",n.recommendedFee.fastestFee||"Unknown"),e.R7$(2),e.SpI("- Medium: ",n.recommendedFee.halfHourFee||"Unknown"),e.R7$(2),e.SpI("- Low: ",n.recommendedFee.hourFee||"Unknown"),e.R7$(2),e.SpI("- Economy: ",n.recommendedFee.economyFee||"Unknown"),e.R7$(2),e.SpI("- Minimum: ",n.recommendedFee.minimumFee||"Unknown")}}function Cr(t,s){if(1&t&&(e.j41(0,"mat-option",32),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n.id),e.R7$(),e.SpI(" ",n.name," ")}}function yr(t,s){1&t&&(e.j41(0,"mat-form-field",33)(1,"mat-label"),e.EFF(2,"Default"),e.k0s(),e.nrm(3,"input",34),e.k0s())}function br(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function Fr(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",35)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.j41(3,"input",36,0),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.blocks,o)||(a.blocks=o),r.Njj(o)}),e.k0s(),e.DNE(5,br,2,0,"mat-error",37),e.k0s()}if(2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.blocks),e.R7$(2),e.Y8G("ngIf",!n.blocks)}}function xr(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function vr(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",35)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.j41(3,"input",38,1),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.fees,o)||(a.fees=o),r.Njj(o)}),e.k0s(),e.DNE(5,xr,2,0,"mat-error",37),e.k0s()}if(2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.fees),e.R7$(2),e.Y8G("ngIf",!n.fees)}}function Tr(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",20),e.DNE(1,fr,4,1,"div",21)(2,gr,16,6,"div",21),e.j41(3,"div",22)(4,"mat-form-field",23)(5,"mat-label"),e.EFF(6,"Transaction Type"),e.k0s(),e.j41(7,"mat-select",24),e.mxI("valueChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selTransType,o)||(a.selTransType=o),r.Njj(o)}),e.bIt("selectionChange",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSelTransTypeChanged(o))}),e.DNE(8,Cr,2,2,"mat-option",25),e.k0s()(),e.DNE(9,yr,4,0,"mat-form-field",26)(10,Fr,6,4,"mat-form-field",27)(11,vr,6,4,"mat-form-field",27),e.k0s()()}if(2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",!n.channelToClose.active),e.R7$(),e.Y8G("ngIf",n.recommendedFee.minimumFee),e.R7$(5),e.Y8G("disabled",!n.channelToClose.active),e.R50("value",n.selTransType),e.R7$(),e.Y8G("ngForOf",n.transTypes),e.R7$(),e.Y8G("ngIf","0"===n.selTransType),e.R7$(),e.Y8G("ngIf","1"===n.selTransType),e.R7$(),e.Y8G("ngIf","2"===n.selTransType)}}function kr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",39),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.EFF(1,"Clear"),e.k0s()}}function Sr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",40),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onCloseChannel())}),e.EFF(1),e.k0s()}if(2&t){const n=e.XpG();e.R7$(),e.JRh(n.channelToClose.active?"Close Channel":"Force Close")}}function Rr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",40),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onClose())}),e.EFF(1,"Ok"),e.k0s()}}let Er=(()=>{var t;class s{constructor(i,o,a,l,h,f){this.dialogRef=i,this.data=o,this.dataService=a,this.store=l,this.actions=h,this.logger=f,this.transTypes=p.XG,this.selTransType="0",this.blocks=null,this.fees=null,this.faExclamationTriangle=I.zpE,this.faInfoCircle=I.iW_,this.flgPendingHtlcs=!1,this.errorMsg="Please wait for pending HTLCs to settle before attempting channel closure.",this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new C.B,new C.B]}ngOnInit(){this.channelToClose=this.data.channel,this.actions.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(i=>i.type===p.QP.UPDATE_API_CALL_STATUS_LND||i.type===p.QP.SET_CHANNELS_LND)).subscribe(i=>{if(i.type===p.QP.SET_CHANNELS_LND){const o=i.payload.find(a=>a.chan_id===this.data.channel.chan_id);o&&o.pending_htlcs&&o.pending_htlcs.length&&o.pending_htlcs.length>0&&(this.flgPendingHtlcs=!0)}i.type===p.QP.UPDATE_API_CALL_STATUS_LND&&i.payload.status===p.wn.ERROR&&"FetchAllChannels"===i.payload.action&&this.logger.error("Fetching latest channel information failed!\n"+i.payload.message)})}onCloseChannel(){if("1"===this.selTransType&&(!this.blocks||0===this.blocks)||"2"===this.selTransType&&(!this.fees||0===this.fees))return!0;const i={channelPoint:this.channelToClose.channel_point,forcibly:!this.channelToClose.active};this.blocks&&(i.targetConf=this.blocks),this.fees&&(i.satPerVByte=this.fees),this.store.dispatch((0,N.w0)({payload:i})),this.dialogRef.close(!1)}resetData(){this.selTransType="0",this.blocks=null,this.fees=null}onSelTransTypeChanged(i){"2"===i.value&&this.dataService.getRecommendedFeeRates().pipe((0,x.Q)(this.unSubs[1])).subscribe({next:o=>{this.recommendedFee=o},error:o=>{this.logger.error(o)}})}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(Fe.u),e.rXU(G.il),e.rXU(ce.En),e.rXU(V.gP))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-close-channel"]],standalone:!1,decls:19,vars:7,consts:[["blcks","ngModel"],["clchfee","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],["fxLayoutAlign","start center",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","class","mr-1","default","",3,"click",4,"ngIf"],["mat-button","","color","primary","type","submit",3,"click",4,"ngIf"],["fxLayoutAlign","start center"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","column","fxFlex.gt-sm","48"],[3,"valueChange","selectionChange","disabled","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","48",4,"ngIf"],["fxFlex.gt-sm","48","fxLayoutAlign","start end",4,"ngIf"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["fxFlex","48"],["matInput","","disabled",""],["fxFlex.gt-sm","48","fxLayoutAlign","start end"],["matInput","","type","number","name","blocks","required","",3,"ngModelChange","step","min","ngModel"],[4,"ngIf"],["matInput","","type","number","name","ccfees","required","",3,"ngModelChange","step","min","ngModel"],["mat-button","","color","primary","type","reset","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit",3,"click"]],template:function(o,a){1&o&&(e.j41(0,"div",2)(1,"div",3)(2,"mat-card-header",4)(3,"div",5)(4,"span",6),e.EFF(5),e.k0s()(),e.j41(6,"button",7),e.bIt("click",function(){return a.onClose()}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",8)(9,"form",9)(10,"div",10)(11,"p",11),e.EFF(12),e.k0s(),e.DNE(13,_r,5,1,"div",12)(14,Tr,12,8,"div",13),e.k0s(),e.j41(15,"div",14),e.DNE(16,kr,2,0,"button",15)(17,Sr,2,1,"button",16)(18,Rr,2,0,"button",16),e.k0s()()()()()),2&o&&(e.R7$(5),e.JRh(a.channelToClose.active?"Close Channel":"Force Close Channel"),e.R7$(7),e.SpI("",a.channelToClose.active?"Closing channel: "+(a.channelToClose.remote_alias||a.channelToClose.chan_id?a.channelToClose.remote_alias&&a.channelToClose.chan_id?a.channelToClose.remote_alias+" ("+a.channelToClose.chan_id+")":a.channelToClose.remote_alias?a.channelToClose.remote_alias:a.channelToClose.chan_id:a.channelToClose.channel_point):"Force closing channel: "+(a.channelToClose.remote_alias||a.channelToClose.chan_id?a.channelToClose.remote_alias&&a.channelToClose.chan_id?a.channelToClose.remote_alias+" ("+a.channelToClose.chan_id+")":a.channelToClose.remote_alias?a.channelToClose.remote_alias:a.channelToClose.chan_id:a.channelToClose.channel_point)," "),e.R7$(),e.Y8G("ngIf",a.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",!a.flgPendingHtlcs),e.R7$(2),e.Y8G("ngIf",a.channelToClose.active&&!a.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",!a.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",a.flgPendingHtlcs))},dependencies:[y.Sq,y.bT,g.qT,g.me,g.Q0,g.BC,g.cb,g.YS,g.VZ,g.vS,g.cV,ee.aY,$.$z,B.m2,B.MM,ke.An,Z.fg,R.rl,R.nJ,R.TL,b.DJ,b.sA,b.UI,O.VO,ae.wT,ye.V],encapsulation:2}))}return t(),s})();const Ir=()=>["all"],wr=t=>({"error-border":t}),Lr=()=>["no_channel"],qe=t=>({width:t}),jr=t=>({"display-none":t});function Gr(t,s){if(1&t&&(e.j41(0,"mat-option",49),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function Dr(t,s){1&t&&e.nrm(0,"mat-progress-bar",50)}function Nr(t,s){1&t&&e.nrm(0,"th",51)}function Pr(t,s){1&t&&e.nrm(0,"span",55)}function Br(t,s){1&t&&e.nrm(0,"span",56)}function Ar(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,Pr,1,0,"span",53)(2,Br,1,0,"span",54),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",n.active),e.R7$(),e.Y8G("ngIf",!n.active)}}function $r(t,s){1&t&&e.nrm(0,"th",57)}function Mr(t,s){if(1&t&&(e.j41(0,"span",60),e.nrm(1,"fa-icon",61),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faEyeSlash)}}function Or(t,s){if(1&t&&(e.j41(0,"span",62),e.nrm(1,"fa-icon",61),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faEye)}}function Vr(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,Mr,2,1,"span",58)(2,Or,2,1,"span",59),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",n.private),e.R7$(),e.Y8G("ngIf",!n.private)}}function Yr(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Peer"),e.k0s())}function Ur(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,qe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.remote_alias)}}function Xr(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Pubkey"),e.k0s())}function Hr(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,qe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.remote_pubkey)}}function qr(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Channel Point"),e.k0s())}function zr(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,qe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel_point)}}function Jr(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Channel ID"),e.k0s())}function Qr(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,qe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.chan_id)}}function Wr(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Initiator"),e.k0s())}function Zr(t,s){if(1&t&&(e.j41(0,"td",52),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(n.initiator?"Yes":"No")}}function Kr(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Static Remote Key"),e.k0s())}function e1(t,s){if(1&t&&(e.j41(0,"td",52),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(n.static_remote_key?"Yes":"No")}}function t1(t,s){if(1&t&&(e.j41(0,"th",66),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("Uptime (",n.timeUnit,")")}}function n1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",n.uptime_str," ")}}function i1(t,s){if(1&t&&(e.j41(0,"th",66),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("Lifetime (",n.timeUnit,")")}}function a1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",n.lifetime_str," ")}}function s1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function o1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.commit_fee)," ")}}function l1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Commit Weight"),e.k0s())}function r1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.commit_weight)," ")}}function c1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Fee/KW"),e.k0s())}function p1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.fee_per_kw)," ")}}function m1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Updates"),e.k0s())}function u1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.num_updates)," ")}}function h1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Unsettled Balance (Sats)"),e.k0s())}function d1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.unsettled_balance)," ")}}function _1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Capacity (Sats)"),e.k0s())}function f1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.capacity)," ")}}function g1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Local Reserve (Sats)"),e.k0s())}function C1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.local_chan_reserve_sat)," ")}}function y1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Remote Reserve (Sats)"),e.k0s())}function b1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.remote_chan_reserve_sat)," ")}}function F1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Sats Sent"),e.k0s())}function x1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.total_satoshis_sent)," ")}}function v1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Sats Received"),e.k0s())}function T1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.total_satoshis_received)," ")}}function k1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function S1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.local_balance)," ")}}function R1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function E1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.remote_balance)," ")}}function I1(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Balance Score"),e.k0s())}function w1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",68)(2,"mat-hint",69),e.EFF(3),e.nI1(4,"number"),e.k0s()(),e.nrm(5,"mat-progress-bar",70),e.k0s()),2&t){const n=s.$implicit;e.R7$(3),e.JRh(e.bMT(4,3,n.balancedness||0)),e.R7$(2),e.Y8G("value",e.mNQ(n.local_balance&&n.local_balance>0?+n.local_balance/(+n.local_balance+ +n.remote_balance)*100:0))}}function L1(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",71)(1,"div",72)(2,"mat-select",73),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",74),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onChannelUpdate("all"))}),e.EFF(5,"Update Fee Policy"),e.k0s(),e.j41(6,"mat-option",74),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onDownloadCSV())}),e.EFF(7,"Download CSV"),e.k0s()()()()}}function j1(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-option",74),e.bIt("click",function(){r.eBV(n);const o=e.XpG().$implicit,a=e.XpG();return r.Njj(a.onCircularRebalance(o))}),e.EFF(1,"Circular Rebalance"),e.k0s()}}function G1(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-option",74),e.bIt("click",function(){r.eBV(n);const o=e.XpG().$implicit,a=e.XpG();return r.Njj(a.onLoopOut(o))}),e.EFF(1,"Loop Out"),e.k0s()}}function D1(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",75)(1,"div",72)(2,"mat-select",76),e.nrm(3,"mat-select-trigger"),e.j41(4,"perfect-scrollbar")(5,"mat-option",74),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG();return r.Njj(l.onChannelClick(a,o))}),e.EFF(6,"View Info"),e.k0s(),e.j41(7,"mat-option",74),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onViewRemotePolicy(o))}),e.EFF(8,"View Remote Fee "),e.k0s(),e.j41(9,"mat-option",74),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onChannelUpdate(o))}),e.EFF(10,"Update Fee Policy"),e.k0s(),e.DNE(11,j1,2,0,"mat-option",77)(12,G1,2,0,"mat-option",77),e.j41(13,"mat-option",74),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onChannelClose(o))}),e.EFF(14,"Close Channel"),e.k0s()()()()()}if(2&t){const n=e.XpG();e.R7$(11),e.Y8G("ngIf",+n.versionsArr[0]>0||+n.versionsArr[1]>=9),e.R7$(),e.Y8G("ngIf",n.selNode.swapServerUrl)}}function N1(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No peers connected. Add a peer in order to open a channel."),e.k0s())}function P1(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No channel available."),e.k0s())}function B1(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting channels..."),e.k0s())}function A1(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function $1(t,s){if(1&t&&(e.j41(0,"td",78),e.DNE(1,N1,2,0,"p",79)(2,P1,2,0,"p",79)(3,B1,2,0,"p",79)(4,A1,2,1,"p",79),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",n.numPeers<1&&(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&(null==n.apiCallStatus?null:n.apiCallStatus.status)===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",n.numPeers>0&&(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&(null==n.apiCallStatus?null:n.apiCallStatus.status)===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&(null==n.apiCallStatus?null:n.apiCallStatus.status)===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&(null==n.apiCallStatus?null:n.apiCallStatus.status)===n.apiCallStatusEnum.ERROR)}}function M1(t,s){if(1&t&&e.nrm(0,"tr",80),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,jr,(null==n.channels?null:n.channels.data)&&(null==n.channels||null==n.channels.data?null:n.channels.data.length)>0))}}function O1(t,s){1&t&&e.nrm(0,"tr",81)}function V1(t,s){1&t&&e.nrm(0,"tr",82)}let Y1=(()=>{var t;class s{constructor(i,o,a,l,h,f,P,w){this.logger=i,this.store=o,this.lndEffects=a,this.commonService=l,this.rtlEffects=h,this.decimalPipe=f,this.loopService=P,this.camelCaseWithReplace=w,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open",recordsPerPage:p.md,sortBy:"balancedness",sortOrder:p.oi.DESCENDING},this.timeUnit="mins:secs",this.userPersonaEnum=p.HW,this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new _.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.selFilter="",this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.versionsArr=[],this.faEye=I.pS3,this.faEyeSlash=I.k6j,this.targetConf=6,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.information=i,this.information&&this.information.version&&(this.versionsArr=this.information.version.split("."))}),this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("private"),this.displayedColumns.unshift("active"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.os).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.numPeers=i.peers&&i.peers.length?i.peers.length:0}),this.store.select(E.$7).pipe((0,x.Q)(this.unSubs[4])).subscribe(i=>{this.totalBalance=i.blockchainBalance?.total_balance?+i.blockchainBalance?.total_balance:0}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[5])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=this.calculateUptime(i.channels),this.channelsData.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(i)})}ngAfterViewInit(){this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onViewRemotePolicy(i){this.store.dispatch((0,N.ij)({payload:{uiMessage:p.MZ.GET_REMOTE_POLICY,channelID:i.chan_id?.toString()+"/"+this.information.identity_pubkey}})),this.lndEffects.setLookup.pipe((0,be.s)(1)).subscribe(o=>{if(!o.fee_base_msat&&!o.fee_rate_milli_msat&&!o.time_lock_delta)return!1;const a=[[{key:"fee_base_msat",value:o.fee_base_msat,title:"Base Fees (mSats)",width:25,type:p.UN.NUMBER},{key:"fee_rate_milli_msat",value:o.fee_rate_milli_msat,title:"Fee Rate (milli mSats)",width:25,type:p.UN.NUMBER},{key:"fee_rate_milli_msat",value:o.fee_rate_milli_msat/1e4,title:"Fee Rate (%)",width:25,type:p.UN.NUMBER,digitsInfo:"1.0-8"},{key:"time_lock_delta",value:o.time_lock_delta,title:"Time Lock Delta",width:25,type:p.UN.NUMBER}]],l="Remote policy for Channel: "+(i.remote_alias||i.chan_id?i.remote_alias&&i.chan_id?i.remote_alias+" ("+i.chan_id+")":i.remote_alias?i.remote_alias:i.chan_id:i.channel_point);setTimeout(()=>{this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:l,message:a}}}))},0)})}onCircularRebalance(i){this.store.dispatch((0,Y.xO)({payload:{data:{message:{channels:this.channelsData,selChannel:i},component:dr}}}))}onChannelUpdate(i){"all"===i?(this.store.dispatch((0,Y.I1)({payload:{data:{type:p.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update All Channels",message:[],titleMessage:"Update fee policy for all channels",flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSat)",inputType:p.UN.NUMBER,inputValue:1e3,step:100,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:p.UN.NUMBER,inputValue:1,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:p.UN.NUMBER,inputValue:40,width:32}]}}})),this.rtlEffects.closeConfirm.pipe((0,x.Q)(this.unSubs[6])).subscribe(a=>{a&&this.store.dispatch((0,N.fy)({payload:{baseFeeMsat:a[0].inputValue,feeRate:a[1].inputValue,timeLockDelta:a[2].inputValue,chanPoint:"all"}}))})):(this.myChanPolicy={fee_base_msat:0,fee_rate_milli_msat:0,time_lock_delta:0,min_htlc_msat:0,max_htlc_msat:0},this.store.dispatch((0,N.ij)({payload:{uiMessage:p.MZ.GET_CHAN_POLICY,channelID:i.chan_id.toString()}})),this.lndEffects.setLookup.pipe((0,be.s)(1)).subscribe(o=>{this.myChanPolicy=o.node1_pub===this.information.identity_pubkey?o.node1_policy:o.node2_pub===this.information.identity_pubkey?o.node2_policy:{fee_base_msat:0,fee_rate_milli_msat:0,time_lock_delta:0},this.logger.info(this.myChanPolicy);const a="Update fee policy for Channel: "+(i.remote_alias||i.chan_id?i.remote_alias&&i.chan_id?i.remote_alias+" ("+i.chan_id+")":i.remote_alias?i.remote_alias:i.chan_id:i.channel_point),l=[];setTimeout(()=>{this.store.dispatch((0,Y.I1)({payload:{data:{type:p.A$.CONFIRM,alertTitle:"Update Fee Policy",titleMessage:a,noBtnText:"Cancel",yesBtnText:"Update Channel",message:l,flgShowInput:!0,hasAdvanced:!0,getInputs:[{placeholder:"Base Fee (mSat)",inputType:p.UN.NUMBER,inputValue:""===this.myChanPolicy.fee_base_msat?0:this.myChanPolicy.fee_base_msat,step:100,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:p.UN.NUMBER,inputValue:this.myChanPolicy.fee_rate_milli_msat,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:p.UN.NUMBER,inputValue:this.myChanPolicy.time_lock_delta,width:32},{placeholder:"Minimum HTLC (mSat)",inputType:p.UN.NUMBER,inputValue:""===this.myChanPolicy.min_htlc?0:this.myChanPolicy.min_htlc,width:49,advancedField:!0},{placeholder:"Maximum HTLC (mSat)",inputType:p.UN.NUMBER,inputValue:""===this.myChanPolicy.max_htlc_msat?0:this.myChanPolicy.max_htlc_msat,width:49,advancedField:!0}]}}}))},0)}),this.rtlEffects.closeConfirm.pipe((0,x.Q)(this.unSubs[7])).subscribe(o=>{if(o){const a={baseFeeMsat:o[0].inputValue,feeRate:o[1].inputValue,timeLockDelta:o[2].inputValue,chanPoint:i.channel_point};o.length>3&&o[3]&&o[4]&&(a.minHtlcMsat=o[3].inputValue,a.maxHtlcMsat=o[4].inputValue),this.store.dispatch((0,N.fy)({payload:a}))}})),this.applyFilter()}onChannelClose(i){i.active&&this.store.dispatch((0,N.$Q)()),this.store.dispatch((0,Y.xO)({payload:{data:{channel:i,component:Er}}}))}onChannelClick(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{channel:i,selNode:this.selNode,showCopy:!0,component:rt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.channels.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.active?"active":"inactive")+(i.chan_id?i.chan_id.toLowerCase():"")+(i.remote_pubkey?i.remote_pubkey.toLowerCase():"")+(i.remote_alias?i.remote_alias.toLowerCase():"")+(i.capacity?i.capacity:"")+(i.local_balance?i.local_balance:"")+(i.remote_balance?i.remote_balance:"")+(i.total_satoshis_sent?i.total_satoshis_sent:"")+(i.total_satoshis_received?i.total_satoshis_received:"")+(i.commit_fee?i.commit_fee:"")+(i.private?"private":"public");break;case"active":a=i?.active?"active":"inactive";break;case"private":a=i?.private?"private":"public";break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"active"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}loadChannelsTable(i){this.channels=new _.I6([...i]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}calculateUptime(i){let f=60,P=1,w=0;switch(i.forEach(M=>{M.uptime&&+M.uptime>w&&(w=+M.uptime)}),!0){case w<3600:this.timeUnit="Mins:Secs",f=60,P=1;break;case w>=3600&&w<86400:this.timeUnit="Hrs:Mins",f=3600,P=60;break;case w>=86400&&w<31536e3:this.timeUnit="Days:Hrs",f=86400,P=3600;break;case w>31536e3:this.timeUnit="Yrs:Days",f=31536e3,P=86400;break;default:this.timeUnit="Mins:Secs",f=60,P=1}return i.forEach(M=>{M.uptime_str=M.uptime?this.decimalPipe.transform(Math.floor(+M.uptime/f),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+M.uptime%f/P),"2.0-0"):"---",M.lifetime_str=M.lifetime?this.decimalPipe.transform(Math.floor(+M.lifetime/f),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+M.lifetime%f/P),"2.0-0"):"---"}),i}onLoopOut(i){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,x.Q)(this.unSubs[8])).subscribe(o=>{this.store.dispatch((0,Y.xO)({payload:{minHeight:"56rem",data:{channel:i,minQuote:o[0],maxQuote:o[1],direction:p.C7.LOOP_OUT,component:vt.D}}}))})}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Open-channels")}percentHintFunction(i){return(i/1e4).toString()+"%"}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(Pe.L),e.rXU(z.h),e.rXU(Ve.H),e.rXU(y.QX),e.rXU(Tt.Q),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-open-table"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Channels")}])],decls:96,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","active"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private",4,"matHeaderCellDef"],["matColumnDef","remote_alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","remote_pubkey"],["matColumnDef","channel_point"],["matColumnDef","chan_id"],["matColumnDef","initiator"],["matColumnDef","static_remote_key"],["matColumnDef","uptime_str"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","lifetime_str"],["matColumnDef","commit_fee"],["matColumnDef","commit_weight"],["matColumnDef","fee_per_kw"],["matColumnDef","num_updates"],["matColumnDef","unsettled_balance"],["matColumnDef","capacity"],["matColumnDef","local_chan_reserve_sat"],["matColumnDef","remote_chan_reserve_sat"],["matColumnDef","total_satoshis_sent"],["matColumnDef","total_satoshis_received"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","5",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active"],["mat-cell",""],["class","dot green","matTooltip","Active","matTooltipPosition","right",4,"ngIf"],["class","dot grey","matTooltip","Inactive","matTooltipPosition","right",4,"ngIf"],["matTooltip","Active","matTooltipPosition","right",1,"dot","green"],["matTooltip","Inactive","matTooltipPosition","right",1,"dot","grey"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private"],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2),e.nrm(2,"div",3),e.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",6),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilterBy,f)||(a.selFilterBy=f),r.Njj(f)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,Gr,2,2,"mat-option",7),e.k0s()()(),e.j41(10,"mat-form-field",5)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilter,f)||(a.selFilter=f),r.Njj(f)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,Dr,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,Nr,1,0,"th",13)(20,Ar,3,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,$r,1,0,"th",16)(23,Vr,3,2,"td",14),e.bVm(),e.qex(24,17),e.DNE(25,Yr,2,0,"th",18)(26,Ur,4,4,"td",14),e.bVm(),e.qex(27,19),e.DNE(28,Xr,2,0,"th",18)(29,Hr,4,4,"td",14),e.bVm(),e.qex(30,20),e.DNE(31,qr,2,0,"th",18)(32,zr,4,4,"td",14),e.bVm(),e.qex(33,21),e.DNE(34,Jr,2,0,"th",18)(35,Qr,4,4,"td",14),e.bVm(),e.qex(36,22),e.DNE(37,Wr,2,0,"th",18)(38,Zr,2,1,"td",14),e.bVm(),e.qex(39,23),e.DNE(40,Kr,2,0,"th",18)(41,e1,2,1,"td",14),e.bVm(),e.qex(42,24),e.DNE(43,t1,2,1,"th",25)(44,n1,3,1,"td",14),e.bVm(),e.qex(45,26),e.DNE(46,i1,2,1,"th",25)(47,a1,3,1,"td",14),e.bVm(),e.qex(48,27),e.DNE(49,s1,2,0,"th",25)(50,o1,4,3,"td",14),e.bVm(),e.qex(51,28),e.DNE(52,l1,2,0,"th",25)(53,r1,4,3,"td",14),e.bVm(),e.qex(54,29),e.DNE(55,c1,2,0,"th",25)(56,p1,4,3,"td",14),e.bVm(),e.qex(57,30),e.DNE(58,m1,2,0,"th",25)(59,u1,4,3,"td",14),e.bVm(),e.qex(60,31),e.DNE(61,h1,2,0,"th",25)(62,d1,4,3,"td",14),e.bVm(),e.qex(63,32),e.DNE(64,_1,2,0,"th",25)(65,f1,4,3,"td",14),e.bVm(),e.qex(66,33),e.DNE(67,g1,2,0,"th",25)(68,C1,4,3,"td",14),e.bVm(),e.qex(69,34),e.DNE(70,y1,2,0,"th",25)(71,b1,4,3,"td",14),e.bVm(),e.qex(72,35),e.DNE(73,F1,2,0,"th",25)(74,x1,4,3,"td",14),e.bVm(),e.qex(75,36),e.DNE(76,v1,2,0,"th",25)(77,T1,4,3,"td",14),e.bVm(),e.qex(78,37),e.DNE(79,k1,2,0,"th",25)(80,S1,4,3,"td",14),e.bVm(),e.qex(81,38),e.DNE(82,R1,2,0,"th",25)(83,E1,4,3,"td",14),e.bVm(),e.qex(84,39),e.DNE(85,I1,2,0,"th",18)(86,w1,6,5,"td",14),e.bVm(),e.qex(87,40),e.DNE(88,L1,8,0,"th",41)(89,D1,15,2,"td",42),e.bVm(),e.qex(90,43),e.DNE(91,$1,5,4,"td",44),e.bVm(),e.DNE(92,M1,1,3,"tr",45)(93,O1,1,0,"tr",46)(94,V1,1,0,"tr",47),e.k0s()(),e.nrm(95,"mat-paginator",48),e.k0s()}2&o&&(e.R7$(7),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,Ir).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",(null==a.apiCallStatus?null:a.apiCallStatus.status)===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",e.eq3(15,wr,""!==a.errorMessage)),e.R7$(76),e.Y8G("matFooterRowDef",e.lJ4(17,Lr)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.me,g.BC,g.vS,ee.aY,Z.fg,R.rl,R.nJ,R.MV,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,fe.oV,X.iy,K.ZF,K.Ld,y.QX],styles:[".mat-column-active[_ngcontent-%COMP%], .mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]}))}return t(),s})();const U1=["outputIdx"];function X1(t,s){if(1&t&&(e.j41(0,"div",31),e.nrm(1,"fa-icon",16),e.j41(2,"span"),e.EFF(3,"Change output balance "),e.j41(4,"strong"),e.EFF(5),e.nI1(6,"number"),e.k0s(),e.EFF(7," (Sats) may be insufficient for fee bumping, depending on the prevailing fee rates."),e.k0s()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(4),e.JRh(e.bMT(6,2,n.dustOutputValue))}}function H1(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Index for change output is required."),e.k0s())}function q1(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid index value."),e.k0s())}function z1(t,s){if(1&t&&(e.j41(0,"mat-option",32),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n.id),e.R7$(),e.SpI(" ",n.name," ")}}function J1(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function Q1(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",20)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.j41(3,"input",33,1),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.blocks,o)||(a.blocks=o),r.Njj(o)}),e.k0s(),e.DNE(5,J1,2,0,"mat-error",22),e.k0s()}if(2&t){const n=e.XpG();e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.blocks),e.R7$(2),e.Y8G("ngIf",!n.blocks)}}function W1(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function Z1(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",20)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.j41(3,"input",34,2),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.fees,o)||(a.fees=o),r.Njj(o)}),e.k0s(),e.DNE(5,W1,2,0,"mat-error",22),e.k0s()}if(2&t){const n=e.XpG();e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.fees),e.R7$(2),e.Y8G("ngIf",!n.fees)}}function K1(t,s){if(1&t&&(e.j41(0,"div",35),e.nrm(1,"fa-icon",16),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(2),e.JRh(n.bumpFeeError)}}let wt=(()=>{var t;class s{set outputIndx(i){i&&(this.outputIdx=i)}constructor(i,o,a,l,h){this.dialogRef=i,this.data=o,this.logger=a,this.dataService=l,this.store=h,this.faUpRightFromSquare=I.k02,this.txid="",this.outputIndex=null,this.transTypes=[...p.XG],this.selTransType="2",this.blocks=null,this.fees=null,this.faCopy=I.jPR,this.faInfoCircle=I.iW_,this.faExclamationTriangle=I.zpE,this.bumpFeeError="",this.flgShowDustWarning=!1,this.dustOutputValue=0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){if(this.transTypes=this.transTypes.splice(1),this.data.pendingChannel&&this.data.pendingChannel.channel){const i=this.data.pendingChannel.channel?.channel_point?.split(":")||[];this.txid=i[0]||(this.data.pendingChannel.channel&&this.data.pendingChannel.channel.channel_point?this.data.pendingChannel.channel.channel_point:""),this.outputIndex=i[1]&&""!==i[1]&&0==+i[1]?1:0}else this.data.selUTXO&&this.data.selUTXO.outpoint&&(this.txid=this.data.selUTXO.outpoint.txid_str||"",this.outputIndex=this.data.selUTXO.outpoint.output_index||0);this.logger.info(this.txid,this.outputIndex),this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i,this.logger.info(this.selNode)}),this.dataService.getRecommendedFeeRates().pipe((0,x.Q)(this.unSubs[1])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}}),this.dataService.getBlockExplorerTransaction(this.txid).pipe((0,x.Q)(this.unSubs[2])).subscribe({next:i=>{this.dustOutputValue=i.vout[this.outputIndex].value,this.flgShowDustWarning=this.dustOutputValue<1e3},error:i=>{this.logger.error(i)}})}onBumpFee(){if(this.data.pendingChannel&&this.data.pendingChannel.channel){const i=this.data.pendingChannel.channel?.channel_point?.split(":")||[],o=i.length>1&&i[1]&&""!==i[1]?+i[1]:null;if(o&&this.outputIndex===o)return this.outputIdx.control.setErrors({pendingChannelOutputIndex:!0}),!0}if(!this.outputIndex&&0!==this.outputIndex||"1"===this.selTransType&&(!this.blocks||0===this.blocks)||"2"===this.selTransType&&(!this.fees||0===this.fees))return!0;this.dataService.bumpFee(this.txid,this.outputIndex,this.blocks||null,this.fees||null).pipe((0,x.Q)(this.unSubs[3])).subscribe({next:i=>{this.dialogRef.close(!1)},error:i=>{this.logger.error(i),this.bumpFeeError=i.message?i.message:i}})}onExplorerClicked(){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.txid,"_blank")}resetData(){this.bumpFeeError="",this.selTransType="2",this.blocks=null,this.fees=null,this.outputIdx.control.setErrors(null)}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(V.gP),e.rXU(Fe.u),e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-bump-fee"]],viewQuery:function(o,a){if(1&o&&e.GBs(U1,5),2&o){let l;e.mGM(l=e.lsd())&&(a.outputIndx=l.first)}},standalone:!1,decls:48,vars:20,consts:[["outputIndx","ngModel"],["blcks","ngModel"],["fee","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","column","fxFlex.gt-sm","32","fxLayoutAlign","start end"],["autoFocus","","matInput","","type","number","required","","name","outputIndx",3,"ngModelChange","step","min","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex.gt-sm","32"],[3,"valueChange","selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex.gt-sm","32","fxLayoutAlign","start end",4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit",3,"click"],["fxFlex","100",1,"alert","alert-warn"],[3,"value"],["matInput","","type","number","name","blocks","required","",3,"ngModelChange","step","min","ngModel"],["matInput","","type","number","name","fees","required","",3,"ngModelChange","step","min","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",3)(1,"div",4)(2,"mat-card-header",5)(3,"div",6)(4,"span",7),e.EFF(5,"Bump Fee"),e.k0s()(),e.j41(6,"button",8),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",9)(9,"form",10)(10,"div",11)(11,"p",12),e.EFF(12),e.j41(13,"fa-icon",13),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onExplorerClicked())}),e.k0s()(),e.j41(14,"div",14)(15,"div",15),e.nrm(16,"fa-icon",16),e.j41(17,"span",17)(18,"div"),e.EFF(19,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(20,"div"),e.EFF(21),e.k0s(),e.j41(22,"div"),e.EFF(23),e.k0s(),e.j41(24,"div"),e.EFF(25),e.k0s()()(),e.DNE(26,X1,8,4,"div",18),e.j41(27,"div",19)(28,"mat-form-field",20)(29,"mat-label"),e.EFF(30,"Index for Change Output"),e.k0s(),e.j41(31,"input",21,0),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.outputIndex,f)||(a.outputIndex=f),r.Njj(f)}),e.k0s(),e.DNE(33,H1,2,0,"mat-error",22)(34,q1,2,0,"mat-error",22),e.k0s(),e.j41(35,"mat-form-field",23)(36,"mat-label"),e.EFF(37,"Transaction Type"),e.k0s(),e.j41(38,"mat-select",24),e.mxI("valueChange",function(f){return r.eBV(l),e.DH7(a.selTransType,f)||(a.selTransType=f),r.Njj(f)}),e.bIt("selectionChange",function(){return r.eBV(l),a.blocks=null,r.Njj(a.fees=null)}),e.DNE(39,z1,2,2,"mat-option",25),e.k0s()(),e.DNE(40,Q1,6,4,"mat-form-field",26)(41,Z1,6,4,"mat-form-field",26),e.k0s(),e.DNE(42,K1,4,2,"div",27),e.k0s()(),e.j41(43,"div",28)(44,"button",29),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(45,"Clear"),e.k0s(),e.j41(46,"button",30),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onBumpFee())}),e.EFF(47),e.k0s()()()()()()}if(2&o){const l=e.sdS(32);e.R7$(12),e.SpI(" ",a.txid?"Bump fee for transaction ID: "+a.txid:"Bump fee: "," "),e.R7$(),e.Y8G("matTooltip",e.mNQ("Link to "+a.selNode.settings.blockExplorerUrl))("icon",a.faUpRightFromSquare),e.R7$(3),e.Y8G("icon",a.faInfoCircle),e.R7$(5),e.SpI("- High: ",a.recommendedFee.fastestFee||"Unknown"),e.R7$(2),e.SpI("- Medium: ",a.recommendedFee.halfHourFee||"Unknown"),e.R7$(2),e.SpI("- Low: ",a.recommendedFee.hourFee||"Unknown"),e.R7$(),e.Y8G("ngIf",a.flgShowDustWarning),e.R7$(5),e.Y8G("step",1)("min",0),e.R50("ngModel",a.outputIndex),e.R7$(2),e.Y8G("ngIf",null==l.errors?null:l.errors.required),e.R7$(),e.Y8G("ngIf",null==l.errors?null:l.errors.OutputIndexError),e.R7$(4),e.R50("value",a.selTransType),e.R7$(),e.Y8G("ngForOf",a.transTypes),e.R7$(),e.Y8G("ngIf","1"===a.selTransType),e.R7$(),e.Y8G("ngIf","2"===a.selTransType),e.R7$(),e.Y8G("ngIf",""!==a.bumpFeeError),e.R7$(5),e.JRh(""!==a.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},dependencies:[y.Sq,y.bT,g.qT,g.me,g.Q0,g.BC,g.cb,g.YS,g.VZ,g.vS,g.cV,ee.aY,$.$z,B.m2,B.MM,Z.fg,R.rl,R.nJ,R.TL,b.DJ,b.sA,b.UI,O.VO,ae.wT,fe.oV,pe.N,ye.V,y.QX],encapsulation:2}))}return t(),s})();const ze=t=>({"error-border bordered-box":t,"bordered-box":!0}),ec=()=>["no_pending_open"],tc=()=>["no_pending_force_closing"],nc=()=>["no_pending_closing"],ic=()=>["no_pending_wait_closing"],Ce=t=>({width:t}),mt=t=>({"display-none":t}),ac=t=>({"py-0":!0,"display-none":t});function sc(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function oc(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function lc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function rc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_alias)}}function cc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function pc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_node_pub)}}function mc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function uc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.channel_point)}}function hc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function dc(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.channel.initiator,"initiator_"))}}function _c(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function fc(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,n.channel.commitment_type,"commitment_type","_"))}}function gc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Confirmation Height"),e.k0s())}function Cc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.confirmation_height))}}function yc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function bc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.commit_fee))}}function Fc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Commit Weight"),e.k0s())}function xc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.commit_weight))}}function vc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Fee/KW"),e.k0s())}function Tc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.fee_per_kw))}}function kc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function Sc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.capacity))}}function Rc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function Ec(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.local_balance))}}function Ic(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function wc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.remote_balance))}}function Lc(t,s){1&t&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function jc(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",49)(1,"div",48)(2,"mat-select",50),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",51),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onOpenClick(o))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",51),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onBumpFee(o))}),e.EFF(7,"Bump Fee"),e.k0s()()()()}}function Gc(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function Dc(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function Nc(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function Pc(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,Gc,2,0,"p",53)(2,Dc,2,0,"p",53)(3,Nc,2,1,"p",53),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!n.pendingOpenChannels||!(null!=n.pendingOpenChannels&&n.pendingOpenChannels.data)||(null==n.pendingOpenChannels||null==n.pendingOpenChannels.data?null:n.pendingOpenChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!n.pendingOpenChannels||!(null!=n.pendingOpenChannels&&n.pendingOpenChannels.data)||(null==n.pendingOpenChannels||null==n.pendingOpenChannels.data?null:n.pendingOpenChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!n.pendingOpenChannels||!(null!=n.pendingOpenChannels&&n.pendingOpenChannels.data)||(null==n.pendingOpenChannels||null==n.pendingOpenChannels.data?null:n.pendingOpenChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Bc(t,s){if(1&t&&e.nrm(0,"tr",54),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,mt,n.pendingOpenChannels&&(null==n.pendingOpenChannels?null:n.pendingOpenChannels.data)&&(null==n.pendingOpenChannels||null==n.pendingOpenChannels.data?null:n.pendingOpenChannels.data.length)>0))}}function Ac(t,s){1&t&&e.nrm(0,"tr",55)}function $c(t,s){1&t&&e.nrm(0,"tr",56)}function Mc(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function Oc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Vc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.closing_txid)}}function Yc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function Uc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_alias)}}function Xc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function Hc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_node_pub)}}function qc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function zc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.channel_point)}}function Jc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function Qc(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.channel.initiator,"initiator_"))}}function Wc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function Zc(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,n.channel.commitment_type,"commitment_type","_"))}}function Kc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Limbo Balance (Sats)"),e.k0s())}function ep(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.limbo_balance))}}function tp(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Maturity Height"),e.k0s())}function np(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.maturity_height))}}function ip(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Blocks till Maturity"),e.k0s())}function ap(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.blocks_til_maturity))}}function sp(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Recovered Balance (Sats)"),e.k0s())}function op(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.recovered_balance))}}function lp(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function rp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.capacity))}}function cp(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function pp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.local_balance))}}function mp(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function up(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.remote_balance))}}function hp(t,s){1&t&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function dp(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",49)(1,"button",57),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onForceClosingClick(o))}),e.EFF(2,"View Info"),e.k0s()()}}function _p(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function fp(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function gp(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function Cp(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,_p,2,0,"p",53)(2,fp,2,0,"p",53)(3,gp,2,1,"p",53),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!n.pendingForceClosingChannels||!(null!=n.pendingForceClosingChannels&&n.pendingForceClosingChannels.data)||(null==n.pendingForceClosingChannels||null==n.pendingForceClosingChannels.data?null:n.pendingForceClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!n.pendingForceClosingChannels||!(null!=n.pendingForceClosingChannels&&n.pendingForceClosingChannels.data)||(null==n.pendingForceClosingChannels||null==n.pendingForceClosingChannels.data?null:n.pendingForceClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!n.pendingForceClosingChannels||!(null!=n.pendingForceClosingChannels&&n.pendingForceClosingChannels.data)||(null==n.pendingForceClosingChannels||null==n.pendingForceClosingChannels.data?null:n.pendingForceClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function yp(t,s){if(1&t&&e.nrm(0,"tr",54),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,mt,n.pendingForceClosingChannels&&(null==n.pendingForceClosingChannels?null:n.pendingForceClosingChannels.data)&&(null==n.pendingForceClosingChannels||null==n.pendingForceClosingChannels.data?null:n.pendingForceClosingChannels.data.length)>0))}}function bp(t,s){1&t&&e.nrm(0,"tr",55)}function Fp(t,s){1&t&&e.nrm(0,"tr",56)}function xp(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function vp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Tp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.closing_txid)}}function kp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function Sp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_alias)}}function Rp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function Ep(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_node_pub)}}function Ip(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function wp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.channel_point)}}function Lp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function jp(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.channel.initiator,"initiator_"))}}function Gp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function Dp(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,n.channel.commitment_type,"commitment_type","_"))}}function Np(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function Pp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.capacity))}}function Bp(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function Ap(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.local_balance))}}function $p(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function Mp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.remote_balance))}}function Op(t,s){1&t&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function Vp(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",49)(1,"button",58),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onClosingClick(o))}),e.EFF(2,"View Info"),e.k0s()()}}function Yp(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function Up(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function Xp(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function Hp(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,Yp,2,0,"p",53)(2,Up,2,0,"p",53)(3,Xp,2,1,"p",53),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!n.pendingClosingChannels||!(null!=n.pendingClosingChannels&&n.pendingClosingChannels.data)||(null==n.pendingClosingChannels||null==n.pendingClosingChannels.data?null:n.pendingClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!n.pendingClosingChannels||!(null!=n.pendingClosingChannels&&n.pendingClosingChannels.data)||(null==n.pendingClosingChannels||null==n.pendingClosingChannels.data?null:n.pendingClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!n.pendingClosingChannels||!(null!=n.pendingClosingChannels&&n.pendingClosingChannels.data)||(null==n.pendingClosingChannels||null==n.pendingClosingChannels.data?null:n.pendingClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function qp(t,s){if(1&t&&e.nrm(0,"tr",54),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,mt,n.pendingClosingChannels&&(null==n.pendingClosingChannels?null:n.pendingClosingChannels.data)&&(null==n.pendingClosingChannels||null==n.pendingClosingChannels.data?null:n.pendingClosingChannels.data.length)>0))}}function zp(t,s){1&t&&e.nrm(0,"tr",55)}function Jp(t,s){1&t&&e.nrm(0,"tr",56)}function Qp(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function Wp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Zp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.closing_txid)}}function Kp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function em(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_alias)}}function tm(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function nm(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_node_pub)}}function im(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function am(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.channel_point)}}function sm(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function om(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.channel.initiator,"initiator_"))}}function lm(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function rm(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,n.channel.commitment_type,"commitment_type","_"))}}function cm(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Limbo Balance (Sats)"),e.k0s())}function pm(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.limbo_balance))}}function mm(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function um(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.capacity))}}function hm(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function dm(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.local_balance))}}function _m(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function fm(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.remote_balance))}}function gm(t,s){1&t&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function Cm(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",49)(1,"button",59),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onWaitClosingClick(o))}),e.EFF(2,"View Info"),e.k0s()()}}function ym(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function bm(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function Fm(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function xm(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,ym,2,0,"p",53)(2,bm,2,0,"p",53)(3,Fm,2,1,"p",53),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!n.pendingWaitClosingChannels||!(null!=n.pendingWaitClosingChannels&&n.pendingWaitClosingChannels.data)||(null==n.pendingWaitClosingChannels||null==n.pendingWaitClosingChannels.data?null:n.pendingWaitClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!n.pendingWaitClosingChannels||!(null!=n.pendingWaitClosingChannels&&n.pendingWaitClosingChannels.data)||(null==n.pendingWaitClosingChannels||null==n.pendingWaitClosingChannels.data?null:n.pendingWaitClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!n.pendingWaitClosingChannels||!(null!=n.pendingWaitClosingChannels&&n.pendingWaitClosingChannels.data)||(null==n.pendingWaitClosingChannels||null==n.pendingWaitClosingChannels.data?null:n.pendingWaitClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function vm(t,s){if(1&t&&e.nrm(0,"tr",54),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,ac,n.pendingWaitClosingChannels&&(null==n.pendingWaitClosingChannels?null:n.pendingWaitClosingChannels.data)&&(null==n.pendingWaitClosingChannels||null==n.pendingWaitClosingChannels.data?null:n.pendingWaitClosingChannels.data.length)>0))}}function Tm(t,s){1&t&&e.nrm(0,"tr",55)}function km(t,s){1&t&&e.nrm(0,"tr",56)}let Sm=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.store=o,this.commonService=a,this.PAGE_ID="peers_channels",this.openTableSetting={tableId:"pending_open",recordsPerPage:p.md,sortBy:"capacity",sortOrder:p.oi.DESCENDING},this.forceClosingTableSetting={tableId:"pending_force_closing",recordsPerPage:p.md,sortBy:"limbo_balance",sortOrder:p.oi.DESCENDING},this.closingTableSetting={tableId:"pending_closing",recordsPerPage:p.md,sortBy:"capacity",sortOrder:p.oi.DESCENDING},this.waitingCloseTableSetting={tableId:"pending_waiting_close",recordsPerPage:p.md,sortBy:"limbo_balance",sortOrder:p.oi.DESCENDING},this.information={},this.pendingChannels={},this.displayedOpenColumns=[],this.pendingOpenChannelsLength=0,this.pendingOpenChannels=new _.I6([]),this.displayedForceClosingColumns=[],this.pendingForceClosingChannelsLength=0,this.pendingForceClosingChannels=new _.I6([]),this.displayedClosingColumns=[],this.pendingClosingChannelsLength=0,this.pendingClosingChannels=new _.I6([]),this.displayedWaitClosingColumns=[],this.pendingWaitClosingChannelsLength=0,this.pendingWaitClosingChannels=new _.I6([]),this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.openTableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.openTableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.openTableSetting.tableId),this.displayedOpenColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.openTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.openTableSetting.columnSelection)),this.displayedOpenColumns.push("actions"),this.logger.info(this.displayedOpenColumns),this.forceClosingTableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.forceClosingTableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.forceClosingTableSetting.tableId),this.displayedForceClosingColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.forceClosingTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.forceClosingTableSetting.columnSelection)),this.displayedForceClosingColumns.push("actions"),this.logger.info(this.displayedForceClosingColumns),this.closingTableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.closingTableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.closingTableSetting.tableId),this.displayedClosingColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.closingTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.closingTableSetting.columnSelection)),this.displayedClosingColumns.push("actions"),this.logger.info(this.displayedClosingColumns),this.waitingCloseTableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.waitingCloseTableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.waitingCloseTableSetting.tableId),this.displayedWaitClosingColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.waitingCloseTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.waitingCloseTableSetting.columnSelection)),this.displayedWaitClosingColumns.push("actions"),this.logger.info(this.displayedWaitClosingColumns)}),this.store.select(E.Uv).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.pendingChannels=i.pendingChannels,this.pendingChannels.pending_open_channels&&this.pendingChannels.pending_open_channels.length&&this.pendingChannels.pending_open_channels.length>0&&this.loadOpenChannelsTable(this.pendingChannels.pending_open_channels),this.pendingChannels.pending_force_closing_channels&&this.pendingChannels.pending_force_closing_channels.length&&this.pendingChannels.pending_force_closing_channels.length>0&&this.loadForceClosingChannelsTable(this.pendingChannels.pending_force_closing_channels),this.pendingChannels.pending_closing_channels&&this.pendingChannels.pending_closing_channels.length&&this.pendingChannels.pending_closing_channels.length>0&&this.loadClosingChannelsTable(this.pendingChannels.pending_closing_channels),this.pendingChannels.waiting_close_channels&&this.pendingChannels.waiting_close_channels.length&&this.pendingChannels.waiting_close_channels.length>0&&this.loadWaitClosingChannelsTable(this.pendingChannels.waiting_close_channels),this.logger.info(i)})}ngAfterViewInit(){this.pendingChannels.pending_open_channels&&this.pendingChannels.pending_open_channels.length&&this.pendingChannels.pending_open_channels.length>0&&this.loadOpenChannelsTable(this.pendingChannels.pending_open_channels),this.pendingChannels.pending_force_closing_channels&&this.pendingChannels.pending_force_closing_channels.length&&this.pendingChannels.pending_force_closing_channels.length>0&&this.loadForceClosingChannelsTable(this.pendingChannels.pending_force_closing_channels),this.pendingChannels.pending_closing_channels&&this.pendingChannels.pending_closing_channels.length&&this.pendingChannels.pending_closing_channels.length>0&&this.loadClosingChannelsTable(this.pendingChannels.pending_closing_channels),this.pendingChannels.waiting_close_channels&&this.pendingChannels.waiting_close_channels.length&&this.pendingChannels.waiting_close_channels.length>0&&this.loadWaitClosingChannelsTable(this.pendingChannels.waiting_close_channels)}onOpenClick(i){const o=JSON.parse(JSON.stringify(i,["commit_weight","confirmation_height","fee_per_kw","commit_fee"],2)),a=JSON.parse(JSON.stringify(i.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),l={};Object.assign(l,o,a),this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Opening Channel Information",message:[[{key:"channel_point",value:l.channel_point,title:"Channel Point",width:100,type:p.UN.STRING,explorerLink:"tx"}],[{key:"remote_node_pub",value:l.remote_node_pub,title:"Peer Node Pubkey",width:100,type:p.UN.STRING}],[{key:"remote_alias",value:l.remote_alias,title:"Peer Alias",width:100,type:p.UN.STRING}],[{key:"capacity",value:l.capacity,title:"Capacity",width:25,type:p.UN.NUMBER},{key:"confirmation_height",value:l.confirmation_height,title:"Confirmation Height",width:25,type:p.UN.NUMBER},{key:"local_balance",value:l.local_balance,title:"Local Balance",width:25,type:p.UN.NUMBER},{key:"remote_balance",value:l.remote_balance,title:"Remote Balance",width:25,type:p.UN.NUMBER}],[{key:"fee_per_kw",value:l.fee_per_kw,title:"Fee/KW",width:25,type:p.UN.NUMBER},{key:"commit_weight",value:l.commit_weight,title:"Commit Weight",width:25,type:p.UN.NUMBER},{key:"commit_fee",value:l.commit_fee,title:"Commit Fee",width:50,type:p.UN.NUMBER}]]}}}))}onBumpFee(i){this.store.dispatch((0,Y.xO)({payload:{data:{pendingChannel:i,component:wt}}}))}onForceClosingClick(i){const o=JSON.parse(JSON.stringify(i,["closing_txid","limbo_balance","maturity_height","blocks_til_maturity","recovered_balance"],2)),a=JSON.parse(JSON.stringify(i.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),l={};Object.assign(l,o,a),this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Force Closing Channel Information",message:[[{key:"closing_txid",value:l.closing_txid,title:"Closing Transaction ID",width:100,type:p.UN.STRING}],[{key:"channel_point",value:l.channel_point,title:"Channel Point",width:100,type:p.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:l.remote_alias,title:"Peer Alias",width:25,type:p.UN.STRING},{key:"remote_node_pub",value:l.remote_node_pub,title:"Peer Node Pubkey",width:75,type:p.UN.STRING}],[{key:"capacity",value:l.capacity,title:"Capacity",width:25,type:p.UN.NUMBER},{key:"limbo_balance",value:l.limbo_balance,title:"Limbo Balance",width:25,type:p.UN.NUMBER},{key:"local_balance",value:l.local_balance,title:"Local Balance",width:25,type:p.UN.NUMBER},{key:"remote_balance",value:l.remote_balance,title:"Remote Balance",width:25,type:p.UN.NUMBER}],[{key:"maturity_height",value:l.maturity_height,title:"Maturity Height",width:25,type:p.UN.NUMBER},{key:"blocks_til_maturity",value:l.blocks_til_maturity,title:"Blocks Till Maturity",width:25,type:p.UN.NUMBER},{key:"recovered_balance",value:l.recovered_balance,title:"Recovered Balance",width:50,type:p.UN.NUMBER}]]}}}))}onClosingClick(i){const o=JSON.parse(JSON.stringify(i,["closing_txid"],2)),a=JSON.parse(JSON.stringify(i.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),l={};Object.assign(l,o,a),this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Closing Channel Information",message:[[{key:"closing_txid",value:l.closing_txid,title:"Closing Transaction ID",width:50,type:p.UN.STRING}],[{key:"channel_point",value:l.channel_point,title:"Channel Point",width:100,type:p.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:l.remote_alias,title:"Peer Alias",width:25,type:p.UN.STRING},{key:"remote_node_pub",value:l.remote_node_pub,title:"Peer Node Pubkey",width:75,type:p.UN.STRING}],[{key:"capacity",value:l.capacity,title:"Capacity",width:25,type:p.UN.NUMBER},{key:"local_balance",value:l.local_balance,title:"Local Balance",width:25,type:p.UN.NUMBER},{key:"remote_balance",value:l.remote_balance,title:"Remote Balance",width:50,type:p.UN.NUMBER}]]}}}))}onWaitClosingClick(i){const o=JSON.parse(JSON.stringify(i,["limbo_balance"],2)),a=JSON.parse(JSON.stringify(i.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),l=JSON.parse(JSON.stringify(i.commitments,["local_txid"],2)),h={};Object.assign(h,o,a,l),this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Wait Closing Channel Information",message:[[{key:"local_txid",value:h.local_txid,title:"Transaction ID",width:100,type:p.UN.STRING}],[{key:"channel_point",value:h.channel_point,title:"Channel Point",width:100,type:p.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:h.remote_alias,title:"Peer Alias",width:25,type:p.UN.STRING},{key:"remote_node_pub",value:h.remote_node_pub,title:"Peer Node Pubkey",width:75,type:p.UN.STRING}],[{key:"capacity",value:h.capacity,title:"Capacity",width:25,type:p.UN.NUMBER},{key:"limbo_balance",value:h.limbo_balance,title:"Limbo Balance",width:25,type:p.UN.NUMBER},{key:"local_balance",value:h.local_balance,title:"Local Balance",width:25,type:p.UN.NUMBER},{key:"remote_balance",value:h.remote_balance,title:"Remote Balance",width:25,type:p.UN.NUMBER}]]}}}))}loadOpenChannelsTable(i){this.pendingOpenChannelsLength=i.length?i.length:0,this.pendingOpenChannels=new _.I6([...i]),this.pendingOpenChannels.sort=this.sort,this.pendingOpenChannels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.logger.info(this.pendingOpenChannels)}loadForceClosingChannelsTable(i){this.pendingForceClosingChannelsLength=i.length?i.length:0,this.pendingForceClosingChannels=new _.I6([...i]),this.pendingForceClosingChannels.sort=this.sort,this.pendingForceClosingChannels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.logger.info(this.pendingForceClosingChannels)}loadClosingChannelsTable(i){this.pendingClosingChannelsLength=i.length?i.length:0,this.pendingClosingChannels=new _.I6([...i]),this.pendingClosingChannels.sort=this.sort,this.pendingClosingChannels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.logger.info(this.pendingClosingChannels)}loadWaitClosingChannelsTable(i){this.pendingWaitClosingChannelsLength=i.length?i.length:0,this.pendingWaitClosingChannels=new _.I6([...i]),this.pendingWaitClosingChannels.sort=this.sort,this.pendingWaitClosingChannels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.logger.info(this.pendingWaitClosingChannels)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-pending-table"]],viewQuery:function(o,a){if(1&o&&e.GBs(A.B4,5),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first)}},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Channels")}])],decls:202,vars:52,consts:[["table",""],["fxLayout","column",1,"mb-2"],[1,"page-title"],["displayMode","flat",1,"mt-1"],["mode","indeterminate",4,"ngIf"],["fxLayout","column",1,"flat-expansion-panel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","remote_alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","remote_node_pub"],["matColumnDef","channel_point"],["matColumnDef","initiator"],["matColumnDef","commitment_type"],["matColumnDef","confirmation_height"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","commit_fee"],["matColumnDef","commit_weight"],["matColumnDef","fee_per_kw"],["matColumnDef","capacity"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_pending_open"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","","fxLayoutAlign","start center",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","closing_txid"],["matColumnDef","limbo_balance"],["matColumnDef","maturity_height"],["matColumnDef","blocks_til_maturity"],["matColumnDef","recovered_balance"],["matColumnDef","no_pending_force_closing"],["matColumnDef","no_pending_closing"],["matColumnDef","no_pending_wait_closing"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","","fxLayoutAlign","start center",3,"ngClass"],["mat-header-row",""],["mat-row",""],["mat-stroked-button","","color","primary","type","button","tabindex","2",1,"table-actions-button",3,"click"],["mat-stroked-button","","color","primary","type","button","tabindex","3",1,"table-actions-button",3,"click"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"]],template:function(o,a){1&o&&(e.j41(0,"div",1)(1,"span",2),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.j41(4,"mat-accordion",3),e.DNE(5,sc,1,0,"mat-progress-bar",4),e.j41(6,"mat-expansion-panel",5)(7,"mat-expansion-panel-header")(8,"mat-panel-title"),e.EFF(9),e.k0s()(),e.j41(10,"div",6),e.DNE(11,oc,1,0,"mat-progress-bar",4),e.j41(12,"table",7,0),e.qex(14,8),e.DNE(15,lc,2,0,"th",9)(16,rc,4,4,"td",10),e.bVm(),e.qex(17,11),e.DNE(18,cc,2,0,"th",9)(19,pc,4,4,"td",10),e.bVm(),e.qex(20,12),e.DNE(21,mc,2,0,"th",9)(22,uc,4,4,"td",10),e.bVm(),e.qex(23,13),e.DNE(24,hc,2,0,"th",9)(25,dc,3,4,"td",10),e.bVm(),e.qex(26,14),e.DNE(27,_c,2,0,"th",9)(28,fc,3,5,"td",10),e.bVm(),e.qex(29,15),e.DNE(30,gc,2,0,"th",16)(31,Cc,4,3,"td",10),e.bVm(),e.qex(32,17),e.DNE(33,yc,2,0,"th",16)(34,bc,4,3,"td",10),e.bVm(),e.qex(35,18),e.DNE(36,Fc,2,0,"th",16)(37,xc,4,3,"td",10),e.bVm(),e.qex(38,19),e.DNE(39,vc,2,0,"th",16)(40,Tc,4,3,"td",10),e.bVm(),e.qex(41,20),e.DNE(42,kc,2,0,"th",16)(43,Sc,4,3,"td",10),e.bVm(),e.qex(44,21),e.DNE(45,Rc,2,0,"th",16)(46,Ec,4,3,"td",10),e.bVm(),e.qex(47,22),e.DNE(48,Ic,2,0,"th",16)(49,wc,4,3,"td",10),e.bVm(),e.qex(50,23),e.DNE(51,Lc,3,0,"th",24)(52,jc,8,0,"td",25),e.bVm(),e.qex(53,26),e.DNE(54,Pc,4,3,"td",27),e.bVm(),e.DNE(55,Bc,1,3,"tr",28)(56,Ac,1,0,"tr",29)(57,$c,1,0,"tr",30),e.k0s()()(),e.DNE(58,Mc,1,0,"mat-progress-bar",4),e.j41(59,"mat-expansion-panel",5)(60,"mat-expansion-panel-header")(61,"mat-panel-title"),e.EFF(62),e.k0s()(),e.j41(63,"div",6)(64,"table",31,0),e.qex(66,32),e.DNE(67,Oc,2,0,"th",9)(68,Vc,4,4,"td",10),e.bVm(),e.qex(69,8),e.DNE(70,Yc,2,0,"th",9)(71,Uc,4,4,"td",10),e.bVm(),e.qex(72,11),e.DNE(73,Xc,2,0,"th",9)(74,Hc,4,4,"td",10),e.bVm(),e.qex(75,12),e.DNE(76,qc,2,0,"th",9)(77,zc,4,4,"td",10),e.bVm(),e.qex(78,13),e.DNE(79,Jc,2,0,"th",9)(80,Qc,3,4,"td",10),e.bVm(),e.qex(81,14),e.DNE(82,Wc,2,0,"th",9)(83,Zc,3,5,"td",10),e.bVm(),e.qex(84,33),e.DNE(85,Kc,2,0,"th",16)(86,ep,4,3,"td",10),e.bVm(),e.qex(87,34),e.DNE(88,tp,2,0,"th",16)(89,np,4,3,"td",10),e.bVm(),e.qex(90,35),e.DNE(91,ip,2,0,"th",16)(92,ap,4,3,"td",10),e.bVm(),e.qex(93,36),e.DNE(94,sp,2,0,"th",16)(95,op,4,3,"td",10),e.bVm(),e.qex(96,20),e.DNE(97,lp,2,0,"th",16)(98,rp,4,3,"td",10),e.bVm(),e.qex(99,21),e.DNE(100,cp,2,0,"th",16)(101,pp,4,3,"td",10),e.bVm(),e.qex(102,22),e.DNE(103,mp,2,0,"th",16)(104,up,4,3,"td",10),e.bVm(),e.qex(105,23),e.DNE(106,hp,3,0,"th",24)(107,dp,3,0,"td",25),e.bVm(),e.qex(108,37),e.DNE(109,Cp,4,3,"td",27),e.bVm(),e.DNE(110,yp,1,3,"tr",28)(111,bp,1,0,"tr",29)(112,Fp,1,0,"tr",30),e.k0s()()(),e.DNE(113,xp,1,0,"mat-progress-bar",4),e.j41(114,"mat-expansion-panel",5)(115,"mat-expansion-panel-header")(116,"mat-panel-title"),e.EFF(117),e.k0s()(),e.j41(118,"div",6)(119,"table",31,0),e.qex(121,32),e.DNE(122,vp,2,0,"th",9)(123,Tp,4,4,"td",10),e.bVm(),e.qex(124,8),e.DNE(125,kp,2,0,"th",9)(126,Sp,4,4,"td",10),e.bVm(),e.qex(127,11),e.DNE(128,Rp,2,0,"th",9)(129,Ep,4,4,"td",10),e.bVm(),e.qex(130,12),e.DNE(131,Ip,2,0,"th",9)(132,wp,4,4,"td",10),e.bVm(),e.qex(133,13),e.DNE(134,Lp,2,0,"th",9)(135,jp,3,4,"td",10),e.bVm(),e.qex(136,14),e.DNE(137,Gp,2,0,"th",9)(138,Dp,3,5,"td",10),e.bVm(),e.qex(139,20),e.DNE(140,Np,2,0,"th",16)(141,Pp,4,3,"td",10),e.bVm(),e.qex(142,21),e.DNE(143,Bp,2,0,"th",16)(144,Ap,4,3,"td",10),e.bVm(),e.qex(145,22),e.DNE(146,$p,2,0,"th",16)(147,Mp,4,3,"td",10),e.bVm(),e.qex(148,23),e.DNE(149,Op,3,0,"th",24)(150,Vp,3,0,"td",25),e.bVm(),e.qex(151,38),e.DNE(152,Hp,4,3,"td",27),e.bVm(),e.DNE(153,qp,1,3,"tr",28)(154,zp,1,0,"tr",29)(155,Jp,1,0,"tr",30),e.k0s()()(),e.DNE(156,Qp,1,0,"mat-progress-bar",4),e.j41(157,"mat-expansion-panel",5)(158,"mat-expansion-panel-header")(159,"mat-panel-title"),e.EFF(160),e.k0s()(),e.j41(161,"div",6)(162,"table",31,0),e.qex(164,32),e.DNE(165,Wp,2,0,"th",9)(166,Zp,4,4,"td",10),e.bVm(),e.qex(167,8),e.DNE(168,Kp,2,0,"th",9)(169,em,4,4,"td",10),e.bVm(),e.qex(170,11),e.DNE(171,tm,2,0,"th",9)(172,nm,4,4,"td",10),e.bVm(),e.qex(173,12),e.DNE(174,im,2,0,"th",9)(175,am,4,4,"td",10),e.bVm(),e.qex(176,13),e.DNE(177,sm,2,0,"th",9)(178,om,3,4,"td",10),e.bVm(),e.qex(179,14),e.DNE(180,lm,2,0,"th",9)(181,rm,3,5,"td",10),e.bVm(),e.qex(182,33),e.DNE(183,cm,2,0,"th",16)(184,pm,4,3,"td",10),e.bVm(),e.qex(185,20),e.DNE(186,mm,2,0,"th",16)(187,um,4,3,"td",10),e.bVm(),e.qex(188,21),e.DNE(189,hm,2,0,"th",16)(190,dm,4,3,"td",10),e.bVm(),e.qex(191,22),e.DNE(192,_m,2,0,"th",16)(193,fm,4,3,"td",10),e.bVm(),e.qex(194,23),e.DNE(195,gm,3,0,"th",24)(196,Cm,3,0,"td",25),e.bVm(),e.qex(197,39),e.DNE(198,xm,4,3,"td",27),e.bVm(),e.DNE(199,vm,1,3,"tr",28)(200,Tm,1,0,"tr",29)(201,km,1,0,"tr",30),e.k0s()()()()()),2&o&&(e.R7$(2),e.SpI("Total Limbo Balance: ",e.bMT(3,38,a.pendingChannels.total_limbo_balance)," Sats"),e.R7$(3),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Open (",a.pendingOpenChannelsLength,")"),e.R7$(2),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.openTableSetting.sortBy)("matSortDirection",a.openTableSetting.sortOrder)("dataSource",a.pendingOpenChannels)("ngClass",e.eq3(40,ze,""!==a.errorMessage)),e.R7$(43),e.Y8G("matFooterRowDef",e.lJ4(42,ec)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedOpenColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedOpenColumns),e.R7$(),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Force Closing (",a.pendingForceClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",a.forceClosingTableSetting.sortBy)("matSortDirection",a.forceClosingTableSetting.sortOrder)("dataSource",a.pendingForceClosingChannels)("ngClass",e.eq3(43,ze,""!==a.errorMessage)),e.R7$(46),e.Y8G("matFooterRowDef",e.lJ4(45,tc)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedForceClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedForceClosingColumns),e.R7$(),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Closing (",a.pendingClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",a.closingTableSetting.sortBy)("matSortDirection",a.closingTableSetting.sortOrder)("dataSource",a.pendingClosingChannels)("ngClass",e.eq3(46,ze,""!==a.errorMessage)),e.R7$(34),e.Y8G("matFooterRowDef",e.lJ4(48,nc)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedClosingColumns),e.R7$(),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Waiting Close (",a.pendingWaitClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",a.waitingCloseTableSetting.sortBy)("matSortDirection",a.waitingCloseTableSetting.sortOrder)("dataSource",a.pendingWaitClosingChannels)("ngClass",e.eq3(49,ze,""!==a.errorMessage)),e.R7$(37),e.Y8G("matFooterRowDef",e.lJ4(51,ic)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedWaitClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedWaitClosingColumns))},dependencies:[y.YU,y.bT,y.B3,$.$z,he.BS,he.GK,he.Z2,he.WN,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,K.Ld,y.QX,ue.VD],styles:["tr.mat-footer-row[_ngcontent-%COMP%] td.mat-footer-cell[_ngcontent-%COMP%]{border-bottom:none}"]}))}return t(),s})();const Rm=()=>["all"],Em=t=>({"error-border":t,"overflow-auto":!0}),Im=()=>["no_closed_channel"],Be=t=>({width:t}),wm=t=>({"display-none":t});function Lm(t,s){if(1&t&&(e.j41(0,"mat-option",36),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function jm(t,s){1&t&&e.nrm(0,"mat-progress-bar",37)}function Gm(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Close Type"),e.k0s())}function Dm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",40)(2,"mat-icon",41),e.EFF(3,"info_outline"),e.k0s(),e.EFF(4),e.k0s()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(2),e.Y8G("matTooltip",i.channelClosureType[n.close_type].tooltip),e.R7$(2),e.SpI(" ",i.channelClosureType[n.close_type].name," ")}}function Nm(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Peer"),e.k0s())}function Pm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Be,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.remote_alias)}}function Bm(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Pubkey"),e.k0s())}function Am(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Be,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.remote_pubkey)}}function $m(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Channel Point"),e.k0s())}function Mm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Be,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.channel_point)}}function Om(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Channel ID"),e.k0s())}function Vm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Be,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id)}}function Ym(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Closing Tx Hash"),e.k0s())}function Um(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Be,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.closing_tx_hash)}}function Xm(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Chain Hash"),e.k0s())}function Hm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Be,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chain_hash)}}function qm(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Open Initiator"),e.k0s())}function zm(t,s){if(1&t&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.open_initiator,"initiator_"))}}function Jm(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Close Initiator"),e.k0s())}function Qm(t,s){if(1&t&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.close_initiator,"initiator_"))}}function Wm(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Timelocked Balance (Sats)"),e.k0s())}function Zm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.time_locked_balance)," ")}}function Km(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Capacity (Sats)"),e.k0s())}function eu(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.capacity)," ")}}function tu(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Close Height"),e.k0s())}function nu(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.close_height)," ")}}function iu(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Settled Balance (Sats)"),e.k0s())}function au(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.settled_balance)," ")}}function su(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",46)(1,"div",47)(2,"mat-select",48),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",49),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function ou(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",39)(1,"span",45)(2,"button",50),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG();return r.Njj(l.onClosedChannelClick(a,o))}),e.EFF(3,"View Info"),e.k0s()()()}}function lu(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No closed channel available."),e.k0s())}function ru(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting closed channels..."),e.k0s())}function cu(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function pu(t,s){if(1&t&&(e.j41(0,"td",51),e.DNE(1,lu,2,0,"p",52)(2,ru,2,0,"p",52)(3,cu,2,1,"p",52),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=n.closedChannels&&n.closedChannels.data)||(null==n.closedChannels||null==n.closedChannels.data?null:n.closedChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.closedChannels&&n.closedChannels.data)||(null==n.closedChannels||null==n.closedChannels.data?null:n.closedChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.closedChannels&&n.closedChannels.data)||(null==n.closedChannels||null==n.closedChannels.data?null:n.closedChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function mu(t,s){if(1&t&&e.nrm(0,"tr",53),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,wm,(null==n.closedChannels?null:n.closedChannels.data)&&(null==n.closedChannels||null==n.closedChannels.data?null:n.closedChannels.data.length)>0))}}function uu(t,s){1&t&&e.nrm(0,"tr",54)}function hu(t,s){1&t&&e.nrm(0,"tr",55)}let du=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.store=o,this.commonService=a,this.camelCaseWithReplace=l,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"closed",recordsPerPage:p.md,sortBy:"close_type",sortOrder:p.oi.DESCENDING},this.channelClosureType=p.tj,this.faHistory=I.Int,this.displayedColumns=[],this.closedChannelsData=[],this.closedChannels=new _.I6([]),this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.Bw).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.closedChannelsData=i.closedChannels,this.closedChannelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadClosedChannelsTable(this.closedChannelsData),this.logger.info(i)})}ngAfterViewInit(){this.closedChannelsData.length>0&&this.loadClosedChannelsTable(this.closedChannelsData)}applyFilter(){this.closedChannels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.closedChannels.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(i).toLowerCase();break;case"close_type":a=i.close_type&&this.channelClosureType[i.close_type]&&this.channelClosureType[i.close_type].name?this.channelClosureType[i.close_type].name.toLowerCase():"";break;case"open_initiator":case"close_initiator":a=this.camelCaseWithReplace.transform(i[this.selFilterBy]||"","initiator_").trim().toLowerCase();break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"close_type"===this.selFilterBy||"open_initiator"===this.selFilterBy||"close_initiator"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}onClosedChannelClick(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Closed Channel Information",message:[[{key:"close_type",value:this.channelClosureType[i.close_type].name,title:"Close Type",width:30,type:p.UN.STRING},{key:"settled_balance",value:i.settled_balance,title:"Settled Balance",width:30,type:p.UN.NUMBER},{key:"time_locked_balance",value:i.time_locked_balance,title:"Time Locked Balance",width:40,type:p.UN.NUMBER}],[{key:"chan_id",value:i.chan_id,title:"Channel ID",width:30},{key:"capacity",value:i.capacity,title:"Capacity",width:30,type:p.UN.NUMBER},{key:"close_height",value:i.close_height,title:"Close Height",width:40,type:p.UN.NUMBER}],[{key:"remote_alias",value:i.remote_alias,title:"Peer Alias",width:30},{key:"remote_pubkey",value:i.remote_pubkey,title:"Peer Public Key",width:70}],[{key:"channel_point",value:i.channel_point,title:"Channel Point",width:100}],[{key:"closing_tx_hash",value:i.closing_tx_hash,title:"Closing Transaction Hash",width:100,type:p.UN.STRING}]]}}}))}loadClosedChannelsTable(i){this.closedChannels=new _.I6([...i]),this.closedChannels.sort=this.sort,this.closedChannels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.closedChannels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.closedChannels)}onDownloadCSV(){this.closedChannels.data&&this.closedChannels.data.length>0&&this.commonService.downloadFile(this.closedChannels.data,"Closed-channels")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(z.h),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-closed-table"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Channels")}])],decls:66,vars:18,consts:[["table",""],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","close_type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","remote_alias"],["matColumnDef","remote_pubkey"],["matColumnDef","channel_point"],["matColumnDef","chan_id"],["matColumnDef","closing_tx_hash"],["matColumnDef","chain_hash"],["matColumnDef","open_initiator"],["matColumnDef","close_initiator"],["matColumnDef","time_locked_balance"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","capacity"],["matColumnDef","close_height"],["matColumnDef","settled_balance"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["matColumnDef","no_closed_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout","row","fxLayoutAlign","start center"],[1,"info-icon","info-icon-text",3,"matTooltip"],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2),e.nrm(2,"div",3),e.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",6),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilterBy,f)||(a.selFilterBy=f),r.Njj(f)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,Lm,2,2,"mat-option",7),e.k0s()()(),e.j41(10,"mat-form-field",5)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilter,f)||(a.selFilter=f),r.Njj(f)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,jm,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,Gm,2,0,"th",13)(20,Dm,5,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,Nm,2,0,"th",13)(23,Pm,4,4,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,Bm,2,0,"th",13)(26,Am,4,4,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,$m,2,0,"th",13)(29,Mm,4,4,"td",14),e.bVm(),e.qex(30,18),e.DNE(31,Om,2,0,"th",13)(32,Vm,4,4,"td",14),e.bVm(),e.qex(33,19),e.DNE(34,Ym,2,0,"th",13)(35,Um,4,4,"td",14),e.bVm(),e.qex(36,20),e.DNE(37,Xm,2,0,"th",13)(38,Hm,4,4,"td",14),e.bVm(),e.qex(39,21),e.DNE(40,qm,2,0,"th",13)(41,zm,3,4,"td",14),e.bVm(),e.qex(42,22),e.DNE(43,Jm,2,0,"th",13)(44,Qm,3,4,"td",14),e.bVm(),e.qex(45,23),e.DNE(46,Wm,2,0,"th",24)(47,Zm,4,3,"td",14),e.bVm(),e.qex(48,25),e.DNE(49,Km,2,0,"th",24)(50,eu,4,3,"td",14),e.bVm(),e.qex(51,26),e.DNE(52,tu,2,0,"th",24)(53,nu,4,3,"td",14),e.bVm(),e.qex(54,27),e.DNE(55,iu,2,0,"th",24)(56,au,4,3,"td",14),e.bVm(),e.qex(57,28),e.DNE(58,su,6,0,"th",29)(59,ou,4,0,"td",14),e.bVm(),e.qex(60,30),e.DNE(61,pu,4,3,"td",31),e.bVm(),e.DNE(62,mu,1,3,"tr",32)(63,uu,1,0,"tr",33)(64,hu,1,0,"tr",34),e.k0s()(),e.nrm(65,"mat-paginator",35),e.k0s()}2&o&&(e.R7$(7),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,Rm).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.closedChannels)("ngClass",e.eq3(15,Em,""!==a.errorMessage)),e.R7$(46),e.Y8G("matFooterRowDef",e.lJ4(17,Im)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.me,g.BC,g.vS,$.$z,ke.An,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,fe.oV,X.iy,K.ZF,K.Ld,y.QX,ue.VD],encapsulation:2}))}return t(),s})();const _u=()=>["all"],fu=t=>({"error-border":t}),gu=()=>["no_channel"],Cu=t=>({"display-none":t});function yu(t,s){if(1&t&&(e.j41(0,"mat-option",33),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function bu(t,s){1&t&&e.nrm(0,"mat-progress-bar",34)}function Fu(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Amount (Sats)"),e.k0s())}function xu(t,s){if(1&t&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==n?null:n.amount)," ")}}function vu(t,s){if(1&t&&(e.qex(0),e.DNE(1,xu,3,3,"span",39),e.bVm()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Tu(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,vu,2,1,"ng-container",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.SpI(" Active HTLCs: ",null==n||null==n.pending_htlcs?null:n.pending_htlcs.length," "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function ku(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Alias/Incoming"),e.k0s())}function Su(t,s){if(1&t&&(e.j41(0,"span",37),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",null!=n&&n.incoming?"Yes":"No"," ")}}function Ru(t,s){if(1&t&&(e.qex(0),e.DNE(1,Su,2,1,"span",41),e.bVm()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Eu(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,Ru,2,1,"ng-container",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(null==n?null:n.remote_alias),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Iu(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Forwarding Channel"),e.k0s())}function wu(t,s){if(1&t&&(e.j41(0,"span",37),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",null==n?null:n.forwarding_channel," ")}}function Lu(t,s){if(1&t&&(e.qex(0),e.DNE(1,wu,2,1,"span",41),e.bVm()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function ju(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,Lu,2,1,"ng-container",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Gu(t,s){1&t&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"HTLC Index"),e.k0s()())}function Du(t,s){if(1&t&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==n?null:n.htlc_index)," ")}}function Nu(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,Du,3,3,"span",39),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Pu(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Nu,2,1,"span",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Bu(t,s){1&t&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"Forwarding HTLC Index"),e.k0s()())}function Au(t,s){if(1&t&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==n?null:n.forwarding_htlc_index)," ")}}function $u(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,Au,3,3,"span",39),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Mu(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,$u,2,1,"span",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Ou(t,s){1&t&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"Expiration Height"),e.k0s()())}function Vu(t,s){if(1&t&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==n?null:n.expiration_height,"1.0-0")," ")}}function Yu(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,Vu,3,4,"span",39),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Uu(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Yu,2,1,"span",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Xu(t,s){1&t&&(e.j41(0,"th",43)(1,"span",40),e.EFF(2,"Hash Lock"),e.k0s()())}function Hu(t,s){if(1&t&&(e.j41(0,"span",40),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",null==n?null:n.hash_lock," ")}}function qu(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,Hu,2,1,"span",39),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function zu(t,s){if(1&t&&(e.j41(0,"td",44)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,qu,2,1,"span",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Ju(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",48),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Qu(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",53)(1,"button",54),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2).$implicit,l=e.XpG();return r.Njj(l.onHTLCClick(o,a))}),e.EFF(2),e.k0s()()}if(2&t){const n=s.index;e.R7$(2),e.SpI("View ",n+1)}}function Wu(t,s){if(1&t&&(e.j41(0,"div"),e.DNE(1,Qu,3,1,"div",52),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Zu(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",49)(1,"span",50)(2,"button",51),e.bIt("click",function(){const o=r.eBV(n).$implicit;return r.Njj(o.is_expanded=!o.is_expanded)}),e.EFF(3),e.k0s()(),e.DNE(4,Wu,2,1,"div",38),e.k0s()}if(2&t){const n=s.$implicit;e.R7$(3),e.JRh(n.is_expanded?"Hide":"Show"),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Ku(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No active htlc available."),e.k0s())}function eh(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting active htlcs..."),e.k0s())}function th(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function nh(t,s){if(1&t&&(e.j41(0,"td",55),e.DNE(1,Ku,2,0,"p",38)(2,eh,2,0,"p",38)(3,th,2,1,"p",38),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function ih(t,s){if(1&t&&e.nrm(0,"tr",56),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,Cu,(null==n.channels?null:n.channels.data)&&(null==n.channels||null==n.channels.data?null:n.channels.data.length)>0))}}function ah(t,s){1&t&&e.nrm(0,"tr",57)}function sh(t,s){1&t&&e.nrm(0,"tr",58)}let oh=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.commonService=o,this.store=a,this.camelCaseWithReplace=l,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"active_HTLCs",recordsPerPage:p.md,sortBy:"expiration_height",sortOrder:p.oi.DESCENDING},this.channels=new _.I6([]),this.channelsJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsJSONArr=i.channels?.filter(o=>o.pending_htlcs&&o.pending_htlcs.length>0)||[],this.channelsJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(i)})}ngAfterViewInit(){this.channelsJSONArr.length>0&&this.loadHTLCsTable(this.channelsJSONArr)}onHTLCClick(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"HTLC Information",message:[[{key:"remote_alias",value:o.remote_alias,title:"Alias",width:100,type:p.UN.STRING}],[{key:"amount",value:i.amount,title:"Amount (Sats)",width:50,type:p.UN.NUMBER},{key:"incoming",value:i.incoming?"Yes":"No",title:"Incoming",width:50,type:p.UN.STRING}],[{key:"expiration_height",value:i.expiration_height,title:"Expiration Height",width:50,type:p.UN.NUMBER},{key:"hash_lock",value:i.hash_lock,title:"Hash Lock",width:50,type:p.UN.STRING}]]}}}))}onChannelClick(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{channel:i,showCopy:!0,component:rt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.channels.filterPredicate=(i,o)=>{let a="";return a="all"===this.selFilterBy?(i.remote_alias?i.remote_alias.toLowerCase():"")+i.pending_htlcs?.map(l=>JSON.stringify(l)+(l.incoming?"yes":"no")):typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString(),a.includes(o)}}loadHTLCsTable(i){this.channels=new _.I6(i?[...i]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,a)=>{switch(a){case"amount":return this.commonService.sortByKey(o.pending_htlcs,a,"number",this.sort?.direction),o.pending_htlcs&&o.pending_htlcs.length?o.pending_htlcs.length:null;case"incoming":return this.commonService.sortByKey(o.pending_htlcs,a,"boolean",this.sort?.direction),o.remote_alias?o.remote_alias:o.remote_pubkey?o.remote_pubkey:null;case"expiration_height":case"hash_lock":return this.commonService.sortByKey(o.pending_htlcs,a,"number",this.sort?.direction),o;default:return o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null}},this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.flattenHTLCs(),"ActiveHTLCs")}flattenHTLCs(){return JSON.parse(JSON.stringify(this.channels.data))?.reduce((a,l)=>a.concat(l.pending_htlcs?l.pending_htlcs:l),[])}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-active-htlcs-table"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("HTLCs")}])],decls:48,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","incoming"],["matColumnDef","forwarding_channel"],["matColumnDef","htlc_index"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","forwarding_htlc_index"],["matColumnDef","expiration_height"],["matColumnDef","hash_lock"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","pl-3 htlc-row-span",4,"matHeaderCellDef"],["mat-cell","","class","pl-3",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","px-2",4,"matHeaderCellDef"],["mat-cell","","class","px-2","fxLayout","column","fxLayoutAlign","center end",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayoutAlign","start center",1,"htlc-row-span"],[4,"ngIf"],["fxLayoutAlign","end center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-row-span"],["fxLayoutAlign","start center","class","htlc-row-span",4,"ngFor","ngForOf"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"pl-3","htlc-row-span"],["mat-cell","",1,"pl-3"],["mat-header-cell","",1,"px-2"],["fxLayoutAlign","end center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayout","column","fxLayoutAlign","center end",1,"px-2"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-htlc-info",3,"click"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2),e.nrm(2,"div",3),e.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",6),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilterBy,f)||(a.selFilterBy=f),r.Njj(f)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,yu,2,2,"mat-option",7),e.k0s()()(),e.j41(10,"mat-form-field",5)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilter,f)||(a.selFilter=f),r.Njj(f)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,bu,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,Fu,2,0,"th",13)(20,Tu,4,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,ku,2,0,"th",13)(23,Eu,4,2,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,Iu,2,0,"th",13)(26,ju,4,2,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,Gu,3,0,"th",18)(29,Pu,4,2,"td",14),e.bVm(),e.qex(30,19),e.DNE(31,Bu,3,0,"th",18)(32,Mu,4,2,"td",14),e.bVm(),e.qex(33,20),e.DNE(34,Ou,3,0,"th",18)(35,Uu,4,2,"td",14),e.bVm(),e.qex(36,21),e.DNE(37,Xu,3,0,"th",22)(38,zu,4,2,"td",23),e.bVm(),e.qex(39,24),e.DNE(40,Ju,6,0,"th",25)(41,Zu,5,2,"td",26),e.bVm(),e.qex(42,27),e.DNE(43,nh,4,3,"td",28),e.bVm(),e.DNE(44,ih,1,3,"tr",29)(45,ah,1,0,"tr",30)(46,sh,1,0,"tr",31),e.k0s()(),e.nrm(47,"mat-paginator",32),e.k0s()}2&o&&(e.R7$(7),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,_u).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",e.eq3(15,fu,""!==a.errorMessage)),e.R7$(28),e.Y8G("matFooterRowDef",e.lJ4(17,gu)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[y.YU,y.Sq,y.bT,g.me,g.BC,g.vS,$.$z,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,X.iy,K.ZF,K.Ld,y.QX],styles:[".mat-column-amount[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem;padding-right:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mat-column-actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_creation_date[_ngcontent-%COMP%]{min-width:7rem}"]}))}return t(),s})();function lh(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Wallet password is required."),e.k0s())}let rh=(()=>{var t;class s{constructor(i){this.store=i,this.walletPassword=""}ngOnInit(){this.walletPassword=""}onUnlockWallet(){if(!this.walletPassword)return!0;this.store.dispatch((0,N.WE)({payload:{pwd:window.btoa(this.walletPassword)}}))}resetData(){this.walletPassword=""}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-unlock-wallet"]],standalone:!1,decls:14,vars:2,consts:[["fxLayout","column",1,"padding-gap","mb-2"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start"],["autoFocus","","matInput","","type","password","name","walletPassword","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","3",3,"click"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"form",1)(2,"mat-form-field",2)(3,"mat-label"),e.EFF(4,"Password"),e.k0s(),e.j41(5,"input",3),e.mxI("ngModelChange",function(h){return e.DH7(a.walletPassword,h)||(a.walletPassword=h),h}),e.k0s(),e.j41(6,"mat-hint"),e.EFF(7,"Enter Wallet Password"),e.k0s(),e.DNE(8,lh,2,0,"mat-error",4),e.k0s(),e.j41(9,"div",5)(10,"button",6),e.bIt("click",function(){return a.resetData()}),e.EFF(11,"Clear Field"),e.k0s(),e.j41(12,"button",7),e.bIt("click",function(){return a.onUnlockWallet()}),e.EFF(13,"Unlock Wallet"),e.k0s()()()()),2&o&&(e.R7$(5),e.R50("ngModel",a.walletPassword),e.R7$(3),e.Y8G("ngIf",!a.walletPassword))},dependencies:[y.bT,g.qT,g.me,g.BC,g.cb,g.YS,g.vS,g.cV,$.$z,Z.fg,R.rl,R.nJ,R.MV,R.TL,b.DJ,b.sA,b.UI,pe.N],encapsulation:2}))}return t(),s})();var ch=S(7768);function ph(t,s){if(1&t){const n=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",6),e.EFF(3,"Warning: Your connection is unsecure, it's not safe to generate private keys over this connection.Are you sure you want to proceed?"),e.k0s(),e.j41(4,"div",7)(5,"button",8),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return o.proceed=!1,r.Njj(o.warnRes=!0)}),e.EFF(6,"Do Not Proceed"),e.k0s(),e.j41(7,"button",9),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return o.proceed=!0,r.Njj(o.warnRes=!0)}),e.EFF(8,"Proceed"),e.k0s()()()()}}function mh(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",10)(1,"div",11),e.EFF(2,"Please re-configure & re-start RTL after securing your LND connction. You can close this window now."),e.k0s(),e.j41(3,"div",7)(4,"button",12),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.warnRes=!1)}),e.EFF(5,"Go Back"),e.k0s()()()}}function uh(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function hh(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Password must be at least 8 characters in length."),e.k0s())}function dh(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Confirm password is required."),e.k0s())}function _h(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Confirm password must be at least 8 characters in length."),e.k0s())}function fh(t,s){1&t&&(e.j41(0,"div",41)(1,"mat-icon",42),e.EFF(2,"cancel"),e.k0s(),e.EFF(3,"Passwords do not match. "),e.k0s())}function gh(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Cipher seed is required."),e.k0s())}function Ch(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid Cipher. Enter comma separated 24 words cipher seed."),e.k0s())}function yh(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Passphrase is required."),e.k0s())}function bh(t,s){1&t&&(e.j41(0,"mat-icon"),e.EFF(1,"vpn_key"),e.k0s())}function Fh(t,s){1&t&&(e.j41(0,"mat-icon"),e.EFF(1,"swap_calls"),e.k0s())}function xh(t,s){1&t&&(e.j41(0,"mat-icon"),e.EFF(1,"fingerprint"),e.k0s())}function vh(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-vertical-stepper",13,0)(2,"mat-step",14)(3,"form",15)(4,"mat-form-field",16)(5,"mat-label"),e.EFF(6,"Password"),e.k0s(),e.nrm(7,"input",17),e.j41(8,"mat-hint"),e.EFF(9,"Enter Wallet Password"),e.k0s(),e.DNE(10,uh,2,0,"mat-error",2)(11,hh,2,0,"mat-error",2),e.k0s(),e.j41(12,"mat-form-field",16)(13,"mat-label"),e.EFF(14,"Confirm Password"),e.k0s(),e.nrm(15,"input",18),e.j41(16,"mat-hint"),e.EFF(17,"Confirm Wallet Password"),e.k0s(),e.DNE(18,dh,2,0,"mat-error",2)(19,_h,2,0,"mat-error",2),e.k0s(),e.DNE(20,fh,4,0,"div",19),e.j41(21,"div",20)(22,"button",21),e.EFF(23,"Next"),e.k0s()()()(),e.j41(24,"mat-step",22)(25,"form",23)(26,"div",24)(27,"mat-slide-toggle",25),e.EFF(28,"Existing Cipher"),e.k0s(),e.j41(29,"mat-form-field",26)(30,"mat-label"),e.EFF(31,"Comma separated array of 24 words cipher seed"),e.k0s(),e.nrm(32,"input",27),e.j41(33,"mat-hint"),e.EFF(34,"Cipher Seed"),e.k0s(),e.DNE(35,gh,2,0,"mat-error",2)(36,Ch,2,0,"mat-error",2),e.k0s()(),e.j41(37,"div",28)(38,"button",29),e.EFF(39,"Back"),e.k0s(),e.j41(40,"button",30),e.EFF(41,"Next"),e.k0s()()()(),e.j41(42,"mat-step",31)(43,"form",23)(44,"div",24)(45,"mat-slide-toggle",32),e.EFF(46,"Existing Passphrase"),e.k0s(),e.j41(47,"mat-form-field",33)(48,"mat-label"),e.EFF(49,"Passphrase"),e.k0s(),e.nrm(50,"input",34),e.j41(51,"mat-hint"),e.EFF(52,"Enter Passphrase"),e.k0s(),e.DNE(53,yh,2,0,"mat-error",2),e.k0s()(),e.j41(54,"div",28)(55,"button",35),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.EFF(56,"Clear"),e.k0s(),e.j41(57,"button",36),e.EFF(58,"Back"),e.k0s(),e.j41(59,"button",37),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onInitWallet())}),e.EFF(60,"Initialize Wallet"),e.k0s()()()(),e.DNE(61,bh,2,0,"ng-template",38)(62,Fh,2,0,"ng-template",39)(63,xh,2,0,"ng-template",40),e.k0s()}if(2&t){const n=e.XpG();e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",n.passwordFormGroup),e.R7$(),e.Y8G("formGroup",n.passwordFormGroup),e.R7$(7),e.Y8G("ngIf",null==n.passwordFormGroup.controls.initWalletPassword.errors?null:n.passwordFormGroup.controls.initWalletPassword.errors.required),e.R7$(),e.Y8G("ngIf",null==n.passwordFormGroup.controls.initWalletPassword.errors?null:n.passwordFormGroup.controls.initWalletPassword.errors.minlength),e.R7$(7),e.Y8G("ngIf",null==n.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:n.passwordFormGroup.controls.initWalletConfirmPassword.errors.required),e.R7$(),e.Y8G("ngIf",null==n.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:n.passwordFormGroup.controls.initWalletConfirmPassword.errors.minlength),e.R7$(),e.Y8G("ngIf",(null==n.passwordFormGroup.errors?null:n.passwordFormGroup.errors.unmatchedPasswords)&&(n.passwordFormGroup.controls.initWalletPassword.touched||n.passwordFormGroup.controls.initWalletPassword.dirty)&&(n.passwordFormGroup.controls.initWalletConfirmPassword.touched||n.passwordFormGroup.controls.initWalletConfirmPassword.dirty)),e.R7$(4),e.Y8G("stepControl",n.cipherFormGroup),e.R7$(),e.Y8G("formGroup",n.cipherFormGroup),e.R7$(10),e.Y8G("ngIf",null==n.cipherFormGroup.controls.cipherSeed.errors?null:n.cipherFormGroup.controls.cipherSeed.errors.required),e.R7$(),e.Y8G("ngIf",!(null!=n.cipherFormGroup.controls.cipherSeed.errors&&n.cipherFormGroup.controls.cipherSeed.errors.required)&&(null==n.cipherFormGroup.controls.cipherSeed.errors?null:n.cipherFormGroup.controls.cipherSeed.errors.invalidCipher)),e.R7$(6),e.Y8G("stepControl",n.passphraseFormGroup),e.R7$(),e.Y8G("formGroup",n.passphraseFormGroup),e.R7$(10),e.Y8G("ngIf",null==n.passphraseFormGroup.controls.passphrase.errors?null:n.passphraseFormGroup.controls.passphrase.errors.required)}}function Th(t,s){if(1&t&&(e.j41(0,"span",48),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(n)}}function kh(t,s){if(1&t){const n=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",43),e.EFF(3,"YOU MUST WRITE DOWN THIS SEED TO BE ABLE TO RESTORE THE WALLET!"),e.k0s(),e.j41(4,"div",44),e.DNE(5,Th,2,1,"span",45),e.k0s(),e.j41(6,"div",46),e.EFF(7,"Wallet initialization is done."),e.k0s(),e.j41(8,"div",46),e.EFF(9,"The node will be usable only after LND has synced completely with the network."),e.k0s(),e.j41(10,"div",46),e.EFF(11,"Click continue only after writing down the seed."),e.k0s(),e.j41(12,"div",7)(13,"button",47),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onGoToHome())}),e.EFF(14,"Go To Home"),e.k0s()()()()}if(2&t){const n=e.XpG();e.R7$(5),e.Y8G("ngForOf",n.genSeedResponse)}}function Sh(t,s){if(1&t){const n=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",46),e.EFF(3,"Something went wrong! Unable to initialize wallet!"),e.k0s(),e.j41(4,"div",7)(5,"button",49),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.EFF(6,"Restart"),e.k0s()()()()}}function Rh(t,s){if(1&t){const n=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",46),e.EFF(3,"Wallet recovery is done."),e.k0s(),e.j41(4,"div",46),e.EFF(5,"The node will be usable only after LND has synced completely with the network."),e.k0s(),e.j41(6,"div",7)(7,"button",50),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onGoToHome())}),e.EFF(8,"Go To Home"),e.k0s()()()()}}function Eh(t){const s=t.get("initWalletPassword"),n=t.get("initWalletConfirmPassword");return s&&n&&s.value!==n.value?{unmatchedPasswords:!0}:null}function Ih(t){const s=t.value.toString().trim().split(",")||[];return s&&24!==s.length?{invalidCipher:!0}:null}let wh=(()=>{var t;class s{constructor(i,o,a){this.store=i,this.formBuilder=o,this.lndEffects=a,this.insecureLND=!1,this.genSeedResponse=[],this.initWalletResponse="",this.proceed=!0,this.warnRes=!1,this.unsubs=[new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.passwordFormGroup=this.formBuilder.group({initWalletPassword:["",[g.k0.required,g.k0.minLength(8)]],initWalletConfirmPassword:["",[g.k0.required,g.k0.minLength(8)]]},{validators:Eh}),this.cipherFormGroup=this.formBuilder.group({existingCipher:[!1],cipherSeed:[{value:"",disabled:!0},[Ih]]}),this.passphraseFormGroup=this.formBuilder.group({enterPassphrase:[!1],passphrase:[{value:"",disabled:!0}]}),this.cipherFormGroup.controls.existingCipher.valueChanges.pipe((0,x.Q)(this.unsubs[0])).subscribe(i=>{i?(this.cipherFormGroup.controls.cipherSeed.setValue(""),this.cipherFormGroup.controls.cipherSeed.enable()):(this.cipherFormGroup.controls.cipherSeed.setValue(""),this.cipherFormGroup.controls.cipherSeed.disable())}),this.passphraseFormGroup.controls.enterPassphrase.valueChanges.pipe((0,x.Q)(this.unsubs[1])).subscribe(i=>{i?(this.passphraseFormGroup.controls.passphrase.setValue(""),this.passphraseFormGroup.controls.passphrase.enable()):(this.passphraseFormGroup.controls.passphrase.setValue(""),this.passphraseFormGroup.controls.passphrase.disable())}),this.insecureLND=!window.location.protocol.includes("https:"),this.lndEffects.initWalletRes.pipe((0,x.Q)(this.unsubs[2])).subscribe(i=>{this.initWalletResponse=i}),this.lndEffects.genSeedResponse.pipe((0,x.Q)(this.unsubs[3])).subscribe(i=>{this.genSeedResponse=i,this.store.dispatch((0,N.GZ)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:this.genSeedResponse,passphrase:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}}:{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:this.genSeedResponse}}))})}onInitWallet(){if(this.passwordFormGroup.invalid||this.cipherFormGroup.invalid||this.passphraseFormGroup.invalid)return!0;if(this.cipherFormGroup.controls.existingCipher.value){const i=this.cipherFormGroup.controls.cipherSeed.value.toString().trim().split(",");this.store.dispatch((0,N.GZ)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:i,passphrase:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}}:{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:i}}))}else this.store.dispatch((0,N.oX)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}:{payload:""}))}onGoToHome(){setTimeout(()=>{this.store.dispatch((0,N.X9)()),this.store.dispatch((0,N.Br)({payload:{loadPage:"HOME"}}))},1e3)}resetData(){this.genSeedResponse=[],this.initWalletResponse=""}ngOnDestroy(){this.unsubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(G.il),e.rXU(g.ze),e.rXU(Pe.L))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-initialize-wallet"]],viewQuery:function(o,a){if(1&o&&e.GBs(de.M6,5),2&o){let l;e.mGM(l=e.lsd())&&(a.stepper=l.first)}},standalone:!1,features:[e.Jv_([{provide:ch.x8,useValue:{displayDefaultIndicatorType:!1}}])],decls:7,vars:6,consts:[["stepper",""],["fxLayout","column",1,"padding-gap","mb-4"],[4,"ngIf"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","stretch stretch",4,"ngIf"],[3,"linear",4,"ngIf"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mt-2"],["fxFlex","100","fxLayoutAlign","start"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","1","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","2",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","stretch stretch"],["fxFlex","100",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",3,"click"],[3,"linear"],["label","Wallet Password","state","password",3,"stepControl"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mt-1",3,"formGroup"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start"],["matInput","","type","password","name","initWalletPassword","formControlName","initWalletPassword","tabindex","5","required",""],["matInput","","type","password","name","initWalletConfirmPassword","formControlName","initWalletConfirmPassword","tabindex","6","required",""],["class","validation-error-message",4,"ngIf"],["fxLayout","row",1,"my-2"],["mat-flat-button","","color","primary","tabindex","7","type","submit","matStepperNext",""],["label","Cipher","state","cipher",3,"stepControl"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start",1,"mt-1",3,"formGroup"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch"],["labelPosition","before","fxFlex","20","tabindex","8","color","primary","formControlName","existingCipher","name","existingCipher",1,"chkbox-wallet"],["fxLayout","column","fxFlex","75","fxLayoutAlign","start",1,"my-1"],["autofocus","","matInput","","type","input","name","cipherSeed","formControlName","cipherSeed","tabindex","9","required",""],["fxLayout","row",1,"mb-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","10","matStepperPrevious","",1,"mr-1","mt-1"],["mat-flat-button","","color","primary","tabindex","11","type","submit","matStepperNext","",1,"mt-1"],["label","Passphrase","state","passphrase",3,"stepControl"],["labelPosition","before","fxFlex","20","tabindex","10","color","primary","formControlName","enterPassphrase","name","enterPassphrase",1,"chkbox-wallet"],["fxLayout","column","fxFlex","75","fxLayoutAlign","start"],["matInput","","type","password","name","passphrase","formControlName","passphrase","tabindex","12","required",""],["mat-stroked-button","","color","warn","tabindex","13","type","reset",1,"mr-1","mt-1",3,"click"],["mat-stroked-button","","tabindex","14","color","primary","type","button","matStepperPrevious","",1,"mr-1","mt-1"],["mat-flat-button","","color","primary","tabindex","15","type","submit",1,"mt-1",3,"click"],["matStepperIcon","password"],["matStepperIcon","cipher"],["matStepperIcon","passphrase"],[1,"validation-error-message"],[1,"validation-error-icon","red"],["fxFlex","100","fxLayoutAlign","start",1,"blinker"],["fxFlex","40","fxLayout","row wrap",1,"mt-2"],["fxFlex","25","fxLayoutAlign","start","class","genseed-message",4,"ngFor","ngForOf"],["fxFlex","100","fxLayoutAlign","start",1,"mt-2"],["mat-flat-button","","color","primary","type","submit","tabindex","16",3,"click"],["fxFlex","25","fxLayoutAlign","start",1,"genseed-message"],["mat-stroked-button","","color","primary","tabindex","17","type","reset",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","18",3,"click"]],template:function(o,a){1&o&&(e.j41(0,"div",1),e.DNE(1,ph,9,0,"div",2)(2,mh,6,0,"div",3)(3,vh,64,15,"mat-vertical-stepper",4)(4,kh,15,1,"div",2)(5,Sh,7,0,"div",2)(6,Rh,9,0,"div",2),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf",a.insecureLND&&!a.warnRes),e.R7$(),e.Y8G("ngIf",a.warnRes&&!a.proceed),e.R7$(),e.Y8G("ngIf",(!a.insecureLND||a.warnRes&&a.proceed)&&a.genSeedResponse.length<=0&&""===a.initWalletResponse),e.R7$(),e.Y8G("ngIf",a.genSeedResponse.length>0&&""!==a.initWalletResponse),e.R7$(),e.Y8G("ngIf",a.genSeedResponse.length>0&&""===a.initWalletResponse),e.R7$(),e.Y8G("ngIf",a.genSeedResponse.length<=0&&""!==a.initWalletResponse))},dependencies:[y.Sq,y.bT,g.qT,g.me,g.BC,g.cb,g.YS,g.cV,g.j4,g.JD,$.$z,ke.An,Z.fg,R.rl,R.nJ,R.MV,R.TL,b.DJ,b.sA,b.UI,Re.sG,de.V5,de.M6,de.F7,de.FR,de.xJ],encapsulation:2}))}return t(),s})(),Lh=(()=>{var t;class s{constructor(){this.faWallet=I.BA1}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-wallet"]],standalone:!1,decls:12,vars:1,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-stretch-tabs","false","mat-align-tabs","start"],["label","Unlock"],["label","Initialize"]],template:function(o,a){1&o&&(e.j41(0,"div",0),e.nrm(1,"fa-icon",1),e.j41(2,"span",2),e.EFF(3,"Wallet"),e.k0s()(),e.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"mat-tab-group",5)(8,"mat-tab",6),e.nrm(9,"rtl-unlock-wallet"),e.k0s(),e.j41(10,"mat-tab",7),e.nrm(11,"rtl-initialize-wallet"),e.k0s()()()()()),2&o&&(e.R7$(),e.Y8G("icon",a.faWallet))},dependencies:[ee.aY,B.RN,B.m2,b.DJ,b.sA,J.mq,J.T8,rh,wh],encapsulation:2}))}return t(),s})();function jh(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",12),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let Gh=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.store=o,this.router=a,this.faExchangeAlt=I._qq,this.faChartPie=I.W1p,this.currencyUnits=[],this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"},{link:"lookuptransactions",name:"Lookup"}],this.activeLink=this.links[0].link,this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(o=>o instanceof j.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[1]),(0,me.E)(this.store.select(W._c))).subscribe(([o,a])=>{this.currencyUnits=a?.settings.currencyUnits||[],this.balances=a?.settings.userPersona===p.HW.OPERATOR?[{title:"Local Capacity",dataValue:o.lightningBalance.local||0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:o.lightningBalance.remote||0,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:o.lightningBalance.local||0,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:o.lightningBalance.remote||0,tooltip:"Amount you can receive"}],this.logger.info(o)})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-transactions"]],standalone:!1,decls:21,vars:5,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Lightning Balance"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),e.nrm(7,"rtl-currency-unit-converter",6),e.k0s()()(),e.j41(8,"div",7),e.nrm(9,"fa-icon",2),e.j41(10,"span",3),e.EFF(11,"Lightning Transactions"),e.k0s()(),e.j41(12,"div",8)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",9),e.DNE(16,jh,2,4,"div",10),e.k0s(),e.nrm(17,"mat-tab-nav-panel",null,0),e.j41(19,"div",11),e.nrm(20,"router-outlet"),e.k0s()()()()),2&o){const l=e.sdS(18);e.R7$(),e.Y8G("icon",a.faChartPie),e.R7$(6),e.Y8G("values",a.balances),e.R7$(2),e.Y8G("icon",a.faExchangeAlt),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[y.Sq,ee.aY,B.RN,B.m2,b.DJ,b.sA,b.UI,J.Bu,J.hQ,J.Ql,st.f,j.n3,le.Wk],encapsulation:2}))}return t(),s})();function Dh(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let Nh=(()=>{var t;class s{constructor(i){this.router=i,this.faSearch=I.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(o=>o instanceof j.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-graph"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Graph Lookups"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,Dh,2,4,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8),e.nrm(12,"router-outlet"),e.k0s()()()()),2&o){const l=e.sdS(10);e.R7$(),e.Y8G("icon",a.faSearch),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[y.Sq,ee.aY,B.RN,B.m2,b.DJ,b.sA,b.UI,J.Bu,J.hQ,J.Ql,j.n3,le.Wk],encapsulation:2}))}return t(),s})();const Ph=t=>({"overflow-auto error-border":t,"overflow-auto":!0}),ut=t=>({width:t});function Bh(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Destination pubkey is required."),e.k0s())}function Ah(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function $h(t,s){1&t&&e.nrm(0,"mat-progress-bar",39)}function Mh(t,s){1&t&&(e.j41(0,"th",40),e.EFF(1,"Hop"),e.k0s())}function Oh(t,s){if(1&t&&(e.j41(0,"td",41),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(null==n?null:n.hop_sequence)}}function Vh(t,s){1&t&&(e.j41(0,"th",40),e.EFF(1,"Peer"),e.k0s())}function Yh(t,s){if(1&t&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ut,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.pubkey_alias)}}function Uh(t,s){1&t&&(e.j41(0,"th",40),e.EFF(1,"Peer Pubkey"),e.k0s())}function Xh(t,s){if(1&t&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ut,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.pub_key)}}function Hh(t,s){1&t&&(e.j41(0,"th",40),e.EFF(1,"Channel ID"),e.k0s())}function qh(t,s){if(1&t&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ut,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id)}}function zh(t,s){1&t&&(e.j41(0,"th",40),e.EFF(1,"TLV Payload"),e.k0s())}function Jh(t,s){if(1&t&&(e.j41(0,"td",41),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(null!=n&&n.tlv_payload?"Yes":"No")}}function Qh(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Expiry"),e.k0s())}function Wh(t,s){if(1&t&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==n?null:n.expiry))}}function Zh(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Capacity (Sats)"),e.k0s())}function Kh(t,s){if(1&t&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==n?null:n.chan_capacity))}}function ed(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Amount To Fwd (Sats)"),e.k0s())}function td(t,s){if(1&t&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.amt_to_forward)," ")}}function nd(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Fee (mSats)"),e.k0s())}function id(t,s){if(1&t&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.fee_msat)," ")}}function ad(t,s){1&t&&(e.j41(0,"th",46)(1,"div",47),e.EFF(2,"Actions"),e.k0s()())}function sd(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",48)(1,"button",49),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG();return r.Njj(l.onHopClick(a,o))}),e.EFF(2,"View Info"),e.k0s()()}}function od(t,s){1&t&&e.nrm(0,"tr",50)}function ld(t,s){1&t&&e.nrm(0,"tr",51)}let rd=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.store=o,this.lndEffects=a,this.commonService=l,this.colWidth="20rem",this.PAGE_ID="graph_lookup",this.tableSetting={tableId:"query_routes",recordsPerPage:p.md,sortBy:"hop_sequence",sortOrder:p.oi.ASCENDING},this.destinationPubkey="",this.amount=null,this.qrHops=new _.I6([]),this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=I.TBz,this.faExclamationTriangle=I.zpE,this.screenSize="",this.screenSizeEnum=p.f7,this.unSubs=[new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.lndEffects.setQueryRoutes.pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.qrHops=new _.I6([]),i.routes&&i.routes.length&&i.routes.length>0&&i.routes[0].hops?(this.flgLoading[0]=!1,this.qrHops=new _.I6([...i.routes[0].hops]),this.qrHops.data=i.routes[0].hops):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.qrHops=new _.I6([]),this.flgLoading[0]=!0,this.store.dispatch((0,N.T4)({payload:{destPubkey:this.destinationPubkey,amount:this.amount}}))}resetData(){this.destinationPubkey="",this.amount=null,this.flgLoading[0]=!1}onHopClick(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"hop_sequence",value:i.hop_sequence,title:"Sequence",width:33,type:p.UN.NUMBER},{key:"amt_to_forward",value:i.amt_to_forward,title:"Amount To Forward (Sats)",width:33,type:p.UN.NUMBER},{key:"fee_msat",value:i.fee_msat,title:"Fee (mSats)",width:34,type:p.UN.NUMBER}],[{key:"chan_capacity",value:i.chan_capacity,title:"Channel Capacity (Sats)",width:50,type:p.UN.NUMBER},{key:"expiry",value:i.expiry,title:"Expiry",width:50,type:p.UN.NUMBER}],[{key:"pubkey_alias",value:i.pubkey_alias,title:"Peer Alias",width:50,type:p.UN.STRING},{key:"chan_id",value:i.chan_id,title:"Channel ID",width:50,type:p.UN.STRING}],[{key:"pub_key",value:i.pub_key,title:"Peer Pubkey",width:100,type:p.UN.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(Pe.L),e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-query-routes"]],viewQuery:function(o,a){if(1&o&&e.GBs(A.B4,5),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first)}},standalone:!1,decls:64,vars:17,consts:[["queryRoutesForm","ngForm"],["destPubkey","ngModel"],["table",""],["fxLayout","column","fxFlex","100",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","destinationPubkey","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"ngModelChange","step","min","ngModel"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-3","mb-1"],["fxFlex","70","fxLayoutAlign","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"table-container","mb-6",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","hop_sequence"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","pubkey_alias"],["matColumnDef","pub_key"],["matColumnDef","chan_id"],["matColumnDef","tlv_payload"],["matColumnDef","expiry"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","chan_capacity"],["matColumnDef","amt_to_forward_msat"],["matColumnDef","fee_msat"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",3)(1,"form",4,0),e.bIt("ngSubmit",function(){r.eBV(l);const f=e.sdS(2);return r.Njj(f.form.valid&&a.onQueryRoutes())}),e.j41(3,"div",5),e.nrm(4,"fa-icon",6),e.j41(5,"span"),e.EFF(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),e.k0s()(),e.j41(7,"mat-form-field",7)(8,"mat-label"),e.EFF(9,"Destination Pubkey"),e.k0s(),e.j41(10,"input",8,1),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.destinationPubkey,f)||(a.destinationPubkey=f),r.Njj(f)}),e.k0s(),e.DNE(12,Bh,2,0,"mat-error",9),e.k0s(),e.j41(13,"mat-form-field",10)(14,"mat-label"),e.EFF(15,"Amount (Sats)"),e.k0s(),e.j41(16,"input",11),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.amount,f)||(a.amount=f),r.Njj(f)}),e.k0s(),e.DNE(17,Ah,2,0,"mat-error",9),e.k0s(),e.j41(18,"div",12)(19,"button",13),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(20,"Clear"),e.k0s(),e.j41(21,"button",14),e.EFF(22,"Query Route"),e.k0s()()(),e.j41(23,"div",15)(24,"div",16),e.nrm(25,"fa-icon",17),e.j41(26,"span",18),e.EFF(27,"Transaction Route"),e.k0s()()(),e.j41(28,"div",19),e.DNE(29,$h,1,0,"mat-progress-bar",20),e.j41(30,"table",21,2),e.qex(32,22),e.DNE(33,Mh,2,0,"th",23)(34,Oh,2,1,"td",24),e.bVm(),e.qex(35,25),e.DNE(36,Vh,2,0,"th",23)(37,Yh,4,4,"td",24),e.bVm(),e.qex(38,26),e.DNE(39,Uh,2,0,"th",23)(40,Xh,4,4,"td",24),e.bVm(),e.qex(41,27),e.DNE(42,Hh,2,0,"th",23)(43,qh,4,4,"td",24),e.bVm(),e.qex(44,28),e.DNE(45,zh,2,0,"th",23)(46,Jh,2,1,"td",24),e.bVm(),e.qex(47,29),e.DNE(48,Qh,2,0,"th",30)(49,Wh,4,3,"td",24),e.bVm(),e.qex(50,31),e.DNE(51,Zh,2,0,"th",30)(52,Kh,4,3,"td",24),e.bVm(),e.qex(53,32),e.DNE(54,ed,2,0,"th",30)(55,td,4,3,"td",24),e.bVm(),e.qex(56,33),e.DNE(57,nd,2,0,"th",30)(58,id,4,3,"td",24),e.bVm(),e.qex(59,34),e.DNE(60,ad,3,0,"th",35)(61,sd,3,0,"td",36),e.bVm(),e.DNE(62,od,1,0,"tr",37)(63,ld,1,0,"tr",38),e.k0s()()()}2&o&&(e.R7$(4),e.Y8G("icon",a.faExclamationTriangle),e.R7$(6),e.R50("ngModel",a.destinationPubkey),e.R7$(2),e.Y8G("ngIf",!a.destinationPubkey),e.R7$(4),e.Y8G("step",1e3)("min",0),e.R50("ngModel",a.amount),e.R7$(),e.Y8G("ngIf",!a.amount),e.R7$(8),e.Y8G("icon",a.faRoute),e.R7$(4),e.Y8G("ngIf",!0===a.flgLoading[0]),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.qrHops)("ngClass",e.eq3(15,Ph,"error"===a.flgLoading[0])),e.R7$(32),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns))},dependencies:[y.YU,y.bT,y.B3,g.qT,g.me,g.Q0,g.BC,g.cb,g.YS,g.VZ,g.vS,g.cV,ee.aY,$.$z,Z.fg,R.rl,R.nJ,R.TL,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.KS,_.$R,_.YZ,_.NB,K.Ld,ye.V,y.QX],encapsulation:2}))}return t(),s})();var Ae=S(5951);function cd(t,s){1&t&&(e.j41(0,"h3",15),e.EFF(1,"Node 1"),e.k0s())}function pd(t,s){1&t&&(e.j41(0,"h3",15),e.EFF(1,"Node 1 (Your Node)"),e.k0s())}function md(t,s){1&t&&(e.j41(0,"h3",15),e.EFF(1,"Node 2"),e.k0s())}function ud(t,s){1&t&&(e.j41(0,"h3",15),e.EFF(1,"Node 2 (Your Node)"),e.k0s())}function hd(t,s){if(1&t&&(e.j41(0,"div",1),e.nrm(1,"mat-divider",2),e.j41(2,"div",3)(3,"div",4)(4,"h4",5),e.EFF(5,"Channel ID"),e.k0s(),e.j41(6,"span",6),e.EFF(7),e.k0s()(),e.j41(8,"div",7)(9,"h4",5),e.EFF(10,"Channel Point"),e.k0s(),e.j41(11,"span",6),e.EFF(12),e.k0s()()(),e.nrm(13,"mat-divider",8),e.j41(14,"div",3)(15,"div",4)(16,"h4",5),e.EFF(17,"Last Update"),e.k0s(),e.j41(18,"span",6),e.EFF(19),e.nI1(20,"date"),e.k0s()(),e.j41(21,"div",7)(22,"h4",5),e.EFF(23,"Capacity (Sats)"),e.k0s(),e.j41(24,"span",6),e.EFF(25),e.nI1(26,"number"),e.k0s()()(),e.nrm(27,"mat-divider",8),e.j41(28,"div",9)(29,"div",10)(30,"div",11),e.DNE(31,cd,2,0,"h3",12)(32,pd,2,0,"h3",12),e.k0s(),e.nrm(33,"mat-divider",8),e.j41(34,"div",13)(35,"h4",5),e.EFF(36,"Pubkey"),e.k0s(),e.j41(37,"span",6),e.EFF(38),e.k0s()(),e.nrm(39,"mat-divider",8),e.j41(40,"div",14)(41,"h4",5),e.EFF(42,"Time Lock Delta"),e.k0s(),e.j41(43,"span",6),e.EFF(44),e.k0s()(),e.nrm(45,"mat-divider",8),e.j41(46,"div",14)(47,"h4",5),e.EFF(48,"Min HTLC"),e.k0s(),e.j41(49,"span",6),e.EFF(50),e.k0s()(),e.nrm(51,"mat-divider",8),e.j41(52,"div",14)(53,"h4",5),e.EFF(54,"Max HTLC"),e.k0s(),e.j41(55,"span",6),e.EFF(56),e.k0s()(),e.nrm(57,"mat-divider",8),e.j41(58,"div",14)(59,"h4",5),e.EFF(60,"Fee Base Msat"),e.k0s(),e.j41(61,"span",6),e.EFF(62),e.k0s()(),e.nrm(63,"mat-divider",8),e.j41(64,"div",14)(65,"h4",5),e.EFF(66,"Fee Rate Milli Msat"),e.k0s(),e.j41(67,"span",6),e.EFF(68),e.k0s()(),e.nrm(69,"mat-divider",8),e.j41(70,"div",14)(71,"h4",5),e.EFF(72,"Disabled"),e.k0s(),e.j41(73,"span",6),e.EFF(74),e.k0s()()(),e.j41(75,"div",10)(76,"div"),e.DNE(77,md,2,0,"h3",12)(78,ud,2,0,"h3",12),e.k0s(),e.nrm(79,"mat-divider",8),e.j41(80,"div",13)(81,"h4",5),e.EFF(82,"Pubkey"),e.k0s(),e.j41(83,"span",6),e.EFF(84),e.k0s()(),e.nrm(85,"mat-divider",8),e.j41(86,"div",14)(87,"h4",5),e.EFF(88,"Time Lock Delta"),e.k0s(),e.j41(89,"span",6),e.EFF(90),e.k0s()(),e.nrm(91,"mat-divider",8),e.j41(92,"div",14)(93,"h4",5),e.EFF(94,"Min HTLC"),e.k0s(),e.j41(95,"span",6),e.EFF(96),e.k0s()(),e.nrm(97,"mat-divider",8),e.j41(98,"div",14)(99,"h4",5),e.EFF(100,"Max HTLC"),e.k0s(),e.j41(101,"span",6),e.EFF(102),e.k0s()(),e.nrm(103,"mat-divider",8),e.j41(104,"div",14)(105,"h4",5),e.EFF(106,"Fee Base Msat"),e.k0s(),e.j41(107,"span",6),e.EFF(108),e.k0s()(),e.nrm(109,"mat-divider",8),e.j41(110,"div",14)(111,"h4",5),e.EFF(112,"Fee Rate Milli Msat"),e.k0s(),e.j41(113,"span",6),e.EFF(114),e.k0s()(),e.nrm(115,"mat-divider",8),e.j41(116,"div",14)(117,"h4",5),e.EFF(118,"Disabled"),e.k0s(),e.j41(119,"span",6),e.EFF(120),e.k0s()()()()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(n.lookupResult.channel_id),e.R7$(5),e.JRh(n.lookupResult.chan_point),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(20,39,1e3*n.lookupResult.last_update,"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(e.bMT(26,42,n.lookupResult.capacity)),e.R7$(2),e.Y8G("inset",!0),e.R7$(4),e.Y8G("ngIf",!n.node1_match),e.R7$(),e.Y8G("ngIf",n.node1_match),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(n.lookupResult.node1_pub),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node1_policy?null:n.lookupResult.node1_policy.time_lock_delta),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node1_policy?null:n.lookupResult.node1_policy.min_htlc),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node1_policy?null:n.lookupResult.node1_policy.max_htlc_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node1_policy?null:n.lookupResult.node1_policy.fee_base_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node1_policy?null:n.lookupResult.node1_policy.fee_rate_milli_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null!=n.lookupResult.node1_policy&&n.lookupResult.node1_policy.disabled?"Yes":"No"),e.R7$(3),e.Y8G("ngIf",!n.node2_match),e.R7$(),e.Y8G("ngIf",n.node2_match),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(n.lookupResult.node2_pub),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node2_policy?null:n.lookupResult.node2_policy.time_lock_delta),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node2_policy?null:n.lookupResult.node2_policy.min_htlc),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node2_policy?null:n.lookupResult.node2_policy.max_htlc_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node2_policy?null:n.lookupResult.node2_policy.fee_base_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node2_policy?null:n.lookupResult.node2_policy.fee_rate_milli_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null!=n.lookupResult.node2_policy&&n.lookupResult.node2_policy.disabled?"Yes":"No")}}let dd=(()=>{var t;class s{constructor(i){this.store=i,this.node1_match=!1,this.node2_match=!1,this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.lookupResult.node1_pub===i.identity_pubkey&&(this.node1_match=!0),this.lookupResult.node2_pub===i.identity_pubkey&&(this.node2_match=!0)})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-lookup"]],inputs:{lookupResult:"lookupResult"},standalone:!1,decls:1,vars:1,consts:[["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1",3,"inset"],["fxLayout","row"],["fxLayout","column","fxFlex","30","fxLayoutAlign","end start"],[1,"font-bold-500"],[1,"foreground-secondary-text"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end start"],[1,"my-1",3,"inset"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mt-1","bordered-box","padding-gap-large"],["fxLayout","column"],["class","page-title font-bold-500",4,"ngIf"],["fxLayout","column","fxFlex","20"],["fxLayout","column","fxFlex","10"],[1,"page-title","font-bold-500"]],template:function(o,a){1&o&&e.DNE(0,hd,121,44,"div",0),2&o&&e.Y8G("ngIf",a.lookupResult)},dependencies:[y.bT,Te.q,b.DJ,b.sA,b.UI,y.QX,y.vh],styles:[".mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%], .mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%]{height:38px!important}"]}))}return t(),s})();const _d=t=>({"background-color":t});function fd(t,s){if(1&t&&(e.j41(0,"span",10),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Lme("",i.nodeFeaturesEnum[n.value.name]||n.value.name,": ",n.value.is_required?"Mandatory":"Optional")}}function gd(t,s){1&t&&(e.j41(0,"th",27),e.EFF(1,"Network"),e.k0s())}function Cd(t,s){if(1&t&&(e.j41(0,"td",28),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(null==n?null:n.network)}}function yd(t,s){1&t&&(e.j41(0,"th",27),e.EFF(1,"Address"),e.k0s())}function bd(t,s){if(1&t&&(e.j41(0,"td",28),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(null==n?null:n.addr)}}function Fd(t,s){1&t&&(e.j41(0,"th",29)(1,"div",30),e.EFF(2,"Actions"),e.k0s()())}function xd(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",31)(1,"div",32)(2,"mat-select",33),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",34),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onConnectNode(o))}),e.EFF(5,"Connect"),e.k0s(),e.j41(6,"mat-option",35),e.bIt("copied",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onCopyNodeURI(o))}),e.EFF(7,"Copy URI"),e.k0s()()()()}if(2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(6),e.Y8G("payload",i.lookupResult.node.pub_key+"@"+n.addr)}}function vd(t,s){1&t&&e.nrm(0,"tr",36)}function Td(t,s){1&t&&e.nrm(0,"tr",37)}function kd(t,s){if(1&t&&(e.j41(0,"div",2),e.nrm(1,"mat-divider",3),e.j41(2,"div",4)(3,"div",5)(4,"h4",6),e.EFF(5,"Alias"),e.k0s(),e.j41(6,"span",7),e.EFF(7),e.j41(8,"span",8),e.EFF(9),e.k0s()()(),e.j41(10,"div",9)(11,"h4",6),e.EFF(12,"Pub Key"),e.k0s(),e.j41(13,"span",10),e.EFF(14),e.k0s()()(),e.nrm(15,"mat-divider",11),e.j41(16,"div",4)(17,"div",5)(18,"h4",6),e.EFF(19,"Last Update"),e.k0s(),e.j41(20,"span",7),e.EFF(21),e.nI1(22,"date"),e.k0s()(),e.j41(23,"div",9)(24,"h4",6),e.EFF(25,"Total Capacity (Sats)"),e.k0s(),e.j41(26,"span",7),e.EFF(27),e.nI1(28,"number"),e.k0s()()(),e.nrm(29,"mat-divider",11),e.j41(30,"div",4)(31,"div",5)(32,"h4",6),e.EFF(33,"Number of Channels"),e.k0s(),e.j41(34,"span",7),e.EFF(35),e.nI1(36,"number"),e.k0s()(),e.j41(37,"div",12)(38,"h4",6),e.EFF(39,"Features"),e.k0s(),e.DNE(40,fd,2,2,"span",13),e.nI1(41,"keyvalue"),e.k0s()(),e.nrm(42,"mat-divider",11),e.j41(43,"div",14)(44,"h4",15),e.EFF(45,"Addresses"),e.k0s(),e.j41(46,"div",16)(47,"table",17,0),e.qex(49,18),e.DNE(50,gd,2,0,"th",19)(51,Cd,2,1,"td",20),e.bVm(),e.qex(52,21),e.DNE(53,yd,2,0,"th",19)(54,bd,2,1,"td",20),e.bVm(),e.qex(55,22),e.DNE(56,Fd,3,0,"th",23)(57,xd,8,1,"td",24),e.bVm(),e.DNE(58,vd,1,0,"tr",25)(59,Td,1,0,"tr",26),e.k0s()()()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(n.lookupResult.node.alias),e.R7$(),e.Y8G("ngStyle",e.eq3(24,_d,null==n.lookupResult.node?null:n.lookupResult.node.color)),e.R7$(),e.JRh(null==n.lookupResult.node?null:n.lookupResult.node.color),e.R7$(5),e.JRh(n.lookupResult.node.pub_key),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(22,15,1e3*n.lookupResult.node.last_update,"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(e.bMT(28,18,n.lookupResult.total_capacity)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(36,20,n.lookupResult.num_channels)),e.R7$(5),e.Y8G("ngForOf",e.bMT(41,22,n.lookupResult.node.features)),e.R7$(2),e.Y8G("inset",!0),e.R7$(5),e.Y8G("dataSource",n.lookupResult.node.addresses),e.R7$(11),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns)}}let Sd=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.snackBar=o,this.store=a,this.nodeFeaturesEnum=p._U,this.displayedColumns=["network","addr","actions"],this.information={},this.availableBalance=0,this.unSubs=[new C.B,new C.B,new C.B]}ngOnInit(){this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.information=i}),this.store.select(E.$7).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.availableBalance=i.blockchainBalance.total_balance||0})}onCopyNodeURI(i){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+i)}onConnectNode(i){this.store.dispatch((0,Y.xO)({payload:{data:{message:{peer:{pub_key:this.lookupResult.node?.pub_key,address:i.addr},information:this.information,balance:this.availableBalance},component:It}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(we.UG),e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-node-lookup"]],inputs:{lookupResult:"lookupResult"},standalone:!1,decls:1,vars:1,consts:[["table",""],["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1",3,"inset"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"ml-2",3,"ngStyle"],["fxFlex","70"],[1,"foreground-secondary-text","w-100"],[1,"my-1",3,"inset"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end start",1,"my-1"],["class","foreground-secondary-text w-100",4,"ngFor","ngForOf"],["fxLayout","column"],["fxFlex","100","fxLayoutAlign","start",1,"font-bold-500","mb-1"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",3,"dataSource"],["matColumnDef","network"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","addr"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select","btn-action"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"copied","payload"],["mat-header-row",""],["mat-row",""]],template:function(o,a){1&o&&e.DNE(0,kd,60,26,"div",1),2&o&&e.Y8G("ngIf",a.lookupResult)},dependencies:[y.Sq,y.bT,y.B3,Te.q,b.DJ,b.sA,b.UI,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.KS,_.$R,_.YZ,_.NB,K.Ld,He.U,y.QX,y.vh,y.lG],encapsulation:2}))}return t(),s})();const Rd=t=>({"mt-1":!0,"mt-2":t}),Ed=t=>({"w-100 mt-2 p-2 error-border":t,"w-100 my-2 p-2":!0});function Id(t,s){if(1&t&&(e.j41(0,"mat-radio-button",17),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n.id)("checked",i.selectedFieldId===n.id),e.R7$(),e.SpI(" ",n.name," ")}}function wd(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("",null==n.lookupFields[n.selectedFieldId]?null:n.lookupFields[n.selectedFieldId].placeholder," is required.")}}function Ld(t,s){1&t&&e.nrm(0,"mat-progress-bar",20)}function jd(t,s){if(1&t&&(e.j41(0,"div",18),e.DNE(1,Ld,1,0,"mat-progress-bar",19),e.EFF(2),e.k0s()),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(3,Ed,""!==n.errorMessage&&"Getting lookup details..."!==n.errorMessage)),e.R7$(),e.Y8G("ngIf","Getting lookup details..."===n.errorMessage),e.R7$(),e.SpI(" ",n.errorMessage," ")}}function Gd(t,s){if(1&t&&(e.j41(0,"span",27),e.nrm(1,"rtl-node-lookup",28),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("lookupResult",n.lookupValue)}}function Dd(t,s){if(1&t&&(e.j41(0,"span",27),e.nrm(1,"rtl-channel-lookup",28),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("lookupResult",n.lookupValue)}}function Nd(t,s){1&t&&(e.j41(0,"span"),e.EFF(1,' fxFlex="100"'),e.j41(2,"h3"),e.EFF(3,"Error! Unable to find details!"),e.k0s()())}function Pd(t,s){if(1&t&&(e.j41(0,"div",21)(1,"div",22)(2,"span",23),e.EFF(3),e.k0s()(),e.j41(4,"div",24),e.DNE(5,Gd,2,1,"span",25)(6,Dd,2,1,"span",25)(7,Nd,4,0,"span",26),e.k0s()()),2&t){const n=e.XpG();e.R7$(3),e.SpI("",n.lookupFields[n.selectedFieldId].name," Details"),e.R7$(),e.Y8G("ngSwitch",n.selectedFieldId),e.R7$(),e.Y8G("ngSwitchCase",0),e.R7$(),e.Y8G("ngSwitchCase",1)}}let Lt=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.commonService=o,this.store=a,this.actions=l,this.lookupKey="",this.lookupValue={},this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Pubkey"},{id:1,name:"Channel",placeholder:"Channel ID"}],this.faSearch=I.MjD,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKey=window.history.state.lookupValue||""),this.actions.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(i=>i.type===p.QP.SET_LOOKUP_LND||i.type===p.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(i=>{i.type===p.QP.SET_LOOKUP_LND&&(this.errorMessage=0===this.selectedFieldId&&i.payload.hasOwnProperty("node")||1===this.selectedFieldId&&i.payload.hasOwnProperty("channel_id")?"":this.errorMessage,this.lookupValue=JSON.parse(JSON.stringify(i.payload)),this.flgSetLookupValue=!(0!==this.selectedFieldId||!i.payload.hasOwnProperty("node"))||!(1!==this.selectedFieldId||!i.payload.hasOwnProperty("channel_id")),this.logger.info(this.lookupValue)),i.type===p.QP.UPDATE_API_CALL_STATUS_LND&&"Lookup"===i.payload.action&&(this.errorMessage="",i.payload.status===p.wn.ERROR&&(this.errorMessage="object"==typeof i.payload.message?JSON.stringify(i.payload.message):i.payload.message),i.payload.status===p.wn.INITIATED&&(this.errorMessage=p.MZ.GET_LOOKUP_DETAILS))})}onLookup(){if(!this.lookupKey)return!0;switch(this.flgSetLookupValue=!1,this.lookupValue={},this.selectedFieldId){case 0:this.store.dispatch((0,N.zU)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,N.ij)({payload:{uiMessage:p.MZ.SEARCHING_CHANNEL,channelID:this.lookupKey.trim()}}))}}onSelectChange(i){this.resetData(),this.selectedFieldId=i.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.lookupKey="",this.lookupValue={},this.errorMessage=""}clearLookupValue(){this.lookupValue={},this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il),e.rXU(ce.En))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lookups"]],standalone:!1,decls:21,vars:10,consts:[["form","ngForm"],["key",""],["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModelChange","change","ngModel"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass",4,"ngIf"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["mode","indeterminate"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxFlex","100"],[3,"lookupResult"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",2)(1,"div",3)(2,"mat-card-content",4)(3,"form",5,0)(5,"div",6)(6,"mat-radio-group",7),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selectedFieldId,f)||(a.selectedFieldId=f),r.Njj(f)}),e.bIt("change",function(f){return r.eBV(l),r.Njj(a.onSelectChange(f))}),e.DNE(7,Id,2,3,"mat-radio-button",8),e.k0s()(),e.j41(8,"mat-form-field",9)(9,"mat-label"),e.EFF(10),e.k0s(),e.j41(11,"input",10,1),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.lookupKey,f)||(a.lookupKey=f),r.Njj(f)}),e.bIt("change",function(){return r.eBV(l),r.Njj(a.clearLookupValue())}),e.k0s(),e.DNE(13,wd,2,1,"mat-error",11),e.k0s(),e.j41(14,"div",12)(15,"button",13),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(16,"Clear"),e.k0s(),e.j41(17,"button",14),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onLookup())}),e.EFF(18,"Lookup"),e.k0s()()(),e.DNE(19,jd,3,5,"div",15)(20,Pd,8,4,"div",16),e.k0s()()()}2&o&&(e.R7$(6),e.R50("ngModel",a.selectedFieldId),e.R7$(),e.Y8G("ngForOf",a.lookupFields),e.R7$(),e.Y8G("ngClass",e.eq3(8,Rd,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),e.R7$(2),e.JRh((null==a.lookupFields[a.selectedFieldId]?null:a.lookupFields[a.selectedFieldId].placeholder)||"Lookup Key"),e.R7$(),e.R50("ngModel",a.lookupKey),e.R7$(2),e.Y8G("ngIf",!a.lookupKey),e.R7$(6),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage&&a.lookupValue&&a.flgSetLookupValue))},dependencies:[y.YU,y.Sq,y.bT,y.ux,y.e1,y.fG,g.qT,g.me,g.BC,g.cb,g.YS,g.vS,g.cV,$.$z,B.m2,Z.fg,R.rl,R.nJ,R.TL,D.HM,Ae.VT,Ae._g,b.DJ,b.sA,b.UI,U.PW,dd,Sd],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]}))}return t(),s})();var ht=S(5084);function Bd(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid date format."),e.k0s())}function Ad(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid date format."),e.k0s())}function $d(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",28),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let Md=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.store=o,this.router=a,this.faMapSigns=I.knH,this.today=new Date(Date.now()),this.lastMonthDay=new Date(this.today.getFullYear(),this.today.getMonth()-1,this.today.getDate()+1,0,0,0),this.yesterday=new Date(this.today.getFullYear(),this.today.getMonth(),this.today.getDate()-1,0,0,0),this.endDate=this.today,this.startDate=this.lastMonthDay,this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"peers",name:"Routing Peers"},{link:"nonroutingprs",name:"Non Routing Peers"}],this.activeLink=this.links[0].link,this.unSubs=[new C.B,new C.B,new C.B]}ngOnInit(){this.onEventsFetch();const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(o=>o instanceof j.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}})}onEventsFetch(){this.store.dispatch((0,N.kv)({payload:{forwarding_events:[]}})),this.endDate||(this.endDate=this.today),this.startDate||(this.startDate=new Date(this.endDate.getFullYear(),this.endDate.getMonth()-1,this.endDate.getDate()+1,0,0,0)),this.store.dispatch((0,N.uK)({payload:{end_time:Math.round(this.endDate.getTime()/1e3).toString(),start_time:Math.round(this.startDate.getTime()/1e3).toString()}}))}resetData(){this.endDate=this.today,this.startDate=this.lastMonthDay}ngOnDestroy(){this.resetData(),this.store.dispatch((0,N.kv)({payload:{forwarding_events:[]}})),this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-routing"]],standalone:!1,decls:41,vars:16,consts:[["routingForm","ngForm"],["strtDate","ngModel"],["startDatepicker",""],["enDate","ngModel"],["endDatepicker",""],["tabPanel",""],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"card-content-gap","mt-1"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mb-1",3,"ngSubmit"],["fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start"],["matInput","","name","startDate","tabindex","1",3,"ngModelChange","matDatepicker","max","ngModel"],["matSuffix","",3,"for"],[3,"startAt"],[4,"ngIf"],["matInput","","name","endDate","tabindex","2",3,"ngModelChange","matDatepicker","min","max","ngModel"],["fxLayout","row",1,""],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","5","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["tabindex","5","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",6)(1,"div",7),e.nrm(2,"fa-icon",8),e.j41(3,"span",9),e.EFF(4,"Routing"),e.k0s()(),e.j41(5,"div",10)(6,"mat-card",11)(7,"mat-card-content",12)(8,"form",13,0),e.bIt("ngSubmit",function(){return r.eBV(l),r.Njj(a.onEventsFetch())}),e.j41(10,"div",14)(11,"mat-form-field",15)(12,"mat-label"),e.EFF(13,"Start Date"),e.k0s(),e.j41(14,"input",16,1),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.startDate,f)||(a.startDate=f),r.Njj(f)}),e.k0s(),e.nrm(16,"mat-datepicker-toggle",17)(17,"mat-datepicker",18,2),e.DNE(19,Bd,2,0,"mat-error",19),e.k0s(),e.j41(20,"mat-form-field",15)(21,"mat-label"),e.EFF(22,"End Date"),e.k0s(),e.j41(23,"input",20,3),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.endDate,f)||(a.endDate=f),r.Njj(f)}),e.k0s(),e.nrm(25,"mat-datepicker-toggle",17)(26,"mat-datepicker",18,4),e.DNE(28,Ad,2,0,"mat-error",19),e.k0s()(),e.j41(29,"div",21)(30,"button",22),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(31,"Clear"),e.k0s(),e.j41(32,"button",23),e.EFF(33,"Fetch Events"),e.k0s()()(),e.j41(34,"div",24)(35,"nav",25),e.DNE(36,$d,2,4,"div",26),e.k0s(),e.nrm(37,"mat-tab-nav-panel",null,5),e.k0s(),e.j41(39,"div",27),e.nrm(40,"router-outlet"),e.k0s()()()()()}if(2&o){const l=e.sdS(15),h=e.sdS(18),f=e.sdS(24),P=e.sdS(27),w=e.sdS(38);e.R7$(2),e.Y8G("icon",a.faMapSigns),e.R7$(12),e.Y8G("matDatepicker",h)("max",a.today),e.R50("ngModel",a.startDate),e.R7$(2),e.Y8G("for",h),e.R7$(),e.Y8G("startAt",a.startDate),e.R7$(2),e.Y8G("ngIf",l.errors),e.R7$(4),e.Y8G("matDatepicker",P)("min",a.startDate)("max",a.today),e.R50("ngModel",a.endDate),e.R7$(2),e.Y8G("for",P),e.R7$(),e.Y8G("startAt",a.endDate),e.R7$(2),e.Y8G("ngIf",f.errors),e.R7$(7),e.Y8G("tabPanel",w),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[y.Sq,y.bT,g.qT,g.me,g.BC,g.cb,g.vS,g.cV,ee.aY,$.$z,B.RN,B.m2,ht.Vh,ht.bZ,ht.bU,Z.fg,R.rl,R.nJ,R.TL,R.yw,b.DJ,b.sA,b.UI,J.Bu,J.hQ,J.Ql,Rt.z,ye.V,j.n3,le.Wk],encapsulation:2}))}return t(),s})();const Od=()=>["all"],Vd=()=>["no_event"],Je=t=>({width:t}),Yd=t=>({"display-none":t});function Ud(t,s){if(1&t&&(e.j41(0,"div",6),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.JRh(n.errorMessage)}}function Xd(t,s){if(1&t&&(e.j41(0,"mat-option",14),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function Hd(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",7),e.nrm(1,"div",8),e.j41(2,"div",9)(3,"mat-form-field",10)(4,"mat-label"),e.EFF(5,"Filter By"),e.k0s(),e.j41(6,"mat-select",11),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilterBy,o)||(a.selFilterBy=o),r.Njj(o)}),e.bIt("selectionChange",function(){r.eBV(n);const o=e.XpG();return o.selFilter="",r.Njj(o.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,Xd,2,2,"mat-option",12),e.k0s()()(),e.j41(9,"mat-form-field",10)(10,"mat-label"),e.EFF(11,"Filter"),e.k0s(),e.j41(12,"input",13),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilter,o)||(a.selFilter=o),r.Njj(o)}),e.bIt("input",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())})("keyup",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())}),e.k0s()()()()}if(2&t){const n=e.XpG();e.R7$(6),e.R50("ngModel",n.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(3,Od).concat(n.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",n.selFilter)}}function qd(t,s){1&t&&e.nrm(0,"mat-progress-bar",37)}function zd(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Timestamp"),e.k0s())}function Jd(t,s){if(1&t&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*n.timestamp,"dd/MMM/y HH:mm"))}}function Qd(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Inbound Alias"),e.k0s())}function Wd(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Je,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.alias_in)}}function Zd(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Inbound Channel"),e.k0s())}function Kd(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Je,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id_in)}}function e_(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Outbound Alias"),e.k0s())}function t_(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Je,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.alias_out)}}function n_(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Outbound Channel"),e.k0s())}function i_(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Je,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id_out)}}function a_(t,s){1&t&&(e.j41(0,"th",42),e.EFF(1,"Inbound Amount (Sats)"),e.k0s())}function s_(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.amt_in))}}function o_(t,s){1&t&&(e.j41(0,"th",42),e.EFF(1,"Outbound Amount (Sats)"),e.k0s())}function l_(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.amt_out))}}function r_(t,s){1&t&&(e.j41(0,"th",42),e.EFF(1,"Fee (mSats)"),e.k0s())}function c_(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.fee_msat))}}function p_(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",44)(1,"div",45)(2,"mat-select",46),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",47),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function m_(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",48)(1,"button",49),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG(2);return r.Njj(l.onForwardingEventClick(a,o))}),e.EFF(2,"View Info"),e.k0s()()}}function u_(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No forwarding history available."),e.k0s())}function h_(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting forwarding history..."),e.k0s())}function d_(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.errorMessage)}}function __(t,s){if(1&t&&(e.j41(0,"td",50),e.DNE(1,u_,2,0,"p",51)(2,h_,2,0,"p",51)(3,d_,2,1,"p",51),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=n.forwardingHistoryEvents&&n.forwardingHistoryEvents.data)||(null==n.forwardingHistoryEvents||null==n.forwardingHistoryEvents.data?null:n.forwardingHistoryEvents.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.forwardingHistoryEvents&&n.forwardingHistoryEvents.data)||(null==n.forwardingHistoryEvents||null==n.forwardingHistoryEvents.data?null:n.forwardingHistoryEvents.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.forwardingHistoryEvents&&n.forwardingHistoryEvents.data)||(null==n.forwardingHistoryEvents||null==n.forwardingHistoryEvents.data?null:n.forwardingHistoryEvents.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function f_(t,s){if(1&t&&e.nrm(0,"tr",52),2&t){const n=e.XpG(2);e.Y8G("ngClass",e.eq3(1,Yd,(null==n.forwardingHistoryEvents?null:n.forwardingHistoryEvents.data)&&(null==n.forwardingHistoryEvents||null==n.forwardingHistoryEvents.data?null:n.forwardingHistoryEvents.data.length)>0))}}function g_(t,s){1&t&&e.nrm(0,"tr",53)}function C_(t,s){1&t&&e.nrm(0,"tr",54)}function y_(t,s){if(1&t&&(e.j41(0,"div",15),e.DNE(1,qd,1,0,"mat-progress-bar",16),e.j41(2,"table",17,0),e.qex(4,18),e.DNE(5,zd,2,0,"th",19)(6,Jd,3,4,"td",20),e.bVm(),e.qex(7,21),e.DNE(8,Qd,2,0,"th",19)(9,Wd,4,4,"td",20),e.bVm(),e.qex(10,22),e.DNE(11,Zd,2,0,"th",19)(12,Kd,4,4,"td",20),e.bVm(),e.qex(13,23),e.DNE(14,e_,2,0,"th",19)(15,t_,4,4,"td",20),e.bVm(),e.qex(16,24),e.DNE(17,n_,2,0,"th",19)(18,i_,4,4,"td",20),e.bVm(),e.qex(19,25),e.DNE(20,a_,2,0,"th",26)(21,s_,4,3,"td",20),e.bVm(),e.qex(22,27),e.DNE(23,o_,2,0,"th",26)(24,l_,4,3,"td",20),e.bVm(),e.qex(25,28),e.DNE(26,r_,2,0,"th",26)(27,c_,4,3,"td",20),e.bVm(),e.qex(28,29),e.DNE(29,p_,6,0,"th",30)(30,m_,3,0,"td",31),e.bVm(),e.qex(31,32),e.DNE(32,__,4,3,"td",33),e.bVm(),e.DNE(33,f_,1,3,"tr",34)(34,g_,1,0,"tr",35)(35,C_,1,0,"tr",36),e.k0s()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",n.tableSetting.sortBy)("matSortDirection",n.tableSetting.sortOrder)("dataSource",n.forwardingHistoryEvents),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(7,Vd)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns)}}function b_(t,s){if(1&t&&e.nrm(0,"mat-paginator",55),2&t){const n=e.XpG();e.Y8G("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("showFirstLastButtons",n.screenSize!==n.screenSizeEnum.XS)}}let jt=(()=>{var t;class s{constructor(i,o,a,l,h){this.logger=i,this.commonService=o,this.store=a,this.datePipe=l,this.camelCaseWithReplace=h,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:p.md,sortBy:"timestamp",sortOrder:p.oi.DESCENDING},this.forwardingHistoryData=[],this.displayedColumns=[],this.forwardingHistoryEvents=new _.I6([]),this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(i){i.eventsData&&(this.apiCallStatus={status:p.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=i.eventsData.currentValue,this.forwardingHistoryData=this.eventsData,i.eventsData.firstChange||this.loadForwardingEventsTable(this.forwardingHistoryData)),i.selFilter&&!i.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=i.pageSettings.find(o=>o.pageId===this.pageId)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.pageId)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.Ie).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=i.apiCallStatus,i.apiCallStatus?.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.forwardingHistoryData=i.forwardingHistory.forwarding_events||[],this.forwardingHistoryData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData),this.logger.info(i.apiCallStatus),this.logger.info(i.forwardingHistory))})}ngAfterViewInit(){setTimeout(()=>{this.forwardingHistoryData.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData)},0)}onForwardingEventClick(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Event Information",message:[[{key:"timestamp",value:i.timestamp,title:"Timestamp",width:25,type:p.UN.DATE_TIME},{key:"amt_in",value:i.amt_in,title:"Inbound Amount (Sats)",width:25,type:p.UN.NUMBER},{key:"amt_out",value:i.amt_out,title:"Outbound Amount (Sats)",width:25,type:p.UN.NUMBER},{key:"fee_msat",value:i.fee_msat,title:"Fee (mSats)",width:25,type:p.UN.NUMBER}],[{key:"alias_in",value:i.alias_in,title:"Inbound Peer Alias",width:25,type:p.UN.STRING},{key:"chan_id_in",value:i.chan_id_in,title:"Inbound Channel ID",width:25,type:p.UN.STRING},{key:"alias_out",value:i.alias_out,title:"Outbound Peer Alias",width:25,type:p.UN.STRING},{key:"chan_id_out",value:i.chan_id_out,title:"Outbound Channel ID",width:25,type:p.UN.STRING}]]}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(i){const o=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.timestamp?this.datePipe.transform(new Date(1e3*i.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(i).toLowerCase();break;case"timestamp":a=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return a.includes(o)}}loadForwardingEventsTable(i){this.forwardingHistoryEvents=new _.I6(i?[...i]:[]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.forwardingHistoryEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il),e.rXU(y.vh),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-forwarding-history"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Events")}]),e.OA$],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias_in"],["matColumnDef","chan_id_in"],["matColumnDef","alias_out"],["matColumnDef","chan_id_out"],["matColumnDef","amt_in"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amt_out"],["matColumnDef","fee_msat"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(o,a){1&o&&(e.j41(0,"div",1),e.DNE(1,Ud,2,1,"div",2)(2,Hd,13,4,"div",3)(3,y_,36,8,"div",4)(4,b_,1,3,"mat-paginator",5),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.me,g.BC,g.vS,$.$z,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,X.iy,K.ZF,K.Ld,y.QX,y.vh],encapsulation:2}))}return t(),s})();const F_=["tableIn"],x_=["tableOut"],v_=["paginatorIn"],T_=["paginatorOut"],k_=(t,s)=>({"mt-2":t,"mt-1":s}),S_=()=>["no_incoming_event"],R_=t=>({"mt-2":t}),E_=()=>["no_outgoing_event"],Qe=t=>({width:t}),Gt=t=>({"display-none":t});function I_(t,s){if(1&t&&(e.j41(0,"div",7),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.JRh(n.errorMessage)}}function w_(t,s){1&t&&e.nrm(0,"mat-progress-bar",34)}function L_(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Channel ID"),e.k0s())}function j_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Qe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id)}}function G_(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Peer Alias"),e.k0s())}function D_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Qe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.alias)}}function N_(t,s){1&t&&(e.j41(0,"th",39),e.EFF(1,"Events"),e.k0s())}function P_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.events))}}function B_(t,s){1&t&&(e.j41(0,"th",39),e.EFF(1,"Total Amount (Sats)"),e.k0s())}function A_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.total_amount))}}function $_(t,s){1&t&&(e.j41(0,"th",41)(1,"div",42),e.EFF(2,"Actions"),e.k0s()())}function M_(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",43)(1,"button",44),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG(2);return r.Njj(l.onRoutingPeerClick(a,o,"in"))}),e.EFF(2,"View Info"),e.k0s()()}}function O_(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No incoming routing peer available."),e.k0s())}function V_(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting incoming routing peers..."),e.k0s())}function Y_(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.errorMessage)}}function U_(t,s){if(1&t&&(e.j41(0,"td",45),e.DNE(1,O_,2,0,"p",46)(2,V_,2,0,"p",46)(3,Y_,2,1,"p",46),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersIncoming&&n.routingPeersIncoming.data)||(null==n.routingPeersIncoming||null==n.routingPeersIncoming.data?null:n.routingPeersIncoming.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersIncoming&&n.routingPeersIncoming.data)||(null==n.routingPeersIncoming||null==n.routingPeersIncoming.data?null:n.routingPeersIncoming.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersIncoming&&n.routingPeersIncoming.data)||(null==n.routingPeersIncoming||null==n.routingPeersIncoming.data?null:n.routingPeersIncoming.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function X_(t,s){if(1&t&&e.nrm(0,"tr",47),2&t){const n=e.XpG(2);e.Y8G("ngClass",e.eq3(1,Gt,(null==n.routingPeersIncoming||null==n.routingPeersIncoming.data?null:n.routingPeersIncoming.data.length)>0))}}function H_(t,s){1&t&&e.nrm(0,"tr",48)}function q_(t,s){1&t&&e.nrm(0,"tr",49)}function z_(t,s){1&t&&e.nrm(0,"mat-progress-bar",34)}function J_(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Channel ID"),e.k0s())}function Q_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Qe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id)}}function W_(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Peer Alias"),e.k0s())}function Z_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Qe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.alias)}}function K_(t,s){1&t&&(e.j41(0,"th",39),e.EFF(1,"Events"),e.k0s())}function e0(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.events))}}function t0(t,s){1&t&&(e.j41(0,"th",39),e.EFF(1,"Total Amount (Sats)"),e.k0s())}function n0(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.total_amount))}}function i0(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No outgoing routing peer available."),e.k0s())}function a0(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting outgoing routing peers..."),e.k0s())}function s0(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.errorMessage)}}function o0(t,s){if(1&t&&(e.j41(0,"td",45),e.DNE(1,i0,2,0,"p",46)(2,a0,2,0,"p",46)(3,s0,2,1,"p",46),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersOutgoing&&n.routingPeersOutgoing.data)||(null==n.routingPeersOutgoing||null==n.routingPeersOutgoing.data?null:n.routingPeersOutgoing.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersOutgoing&&n.routingPeersOutgoing.data)||(null==n.routingPeersOutgoing||null==n.routingPeersOutgoing.data?null:n.routingPeersOutgoing.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersOutgoing&&n.routingPeersOutgoing.data)||(null==n.routingPeersOutgoing||null==n.routingPeersOutgoing.data?null:n.routingPeersOutgoing.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function l0(t,s){if(1&t&&e.nrm(0,"tr",47),2&t){const n=e.XpG(2);e.Y8G("ngClass",e.eq3(1,Gt,(null==n.routingPeersOutgoing||null==n.routingPeersOutgoing.data?null:n.routingPeersOutgoing.data.length)>0))}}function r0(t,s){1&t&&e.nrm(0,"tr",48)}function c0(t,s){1&t&&e.nrm(0,"tr",49)}function p0(t,s){if(1&t&&(e.j41(0,"div",8)(1,"div",9)(2,"div",10)(3,"div",11),e.EFF(4,"Incoming"),e.k0s(),e.nrm(5,"div",12),e.k0s(),e.j41(6,"div",13),e.DNE(7,w_,1,0,"mat-progress-bar",14),e.j41(8,"table",15,0),e.qex(10,16),e.DNE(11,L_,2,0,"th",17)(12,j_,4,4,"td",18),e.bVm(),e.qex(13,19),e.DNE(14,G_,2,0,"th",17)(15,D_,4,4,"td",18),e.bVm(),e.qex(16,20),e.DNE(17,N_,2,0,"th",21)(18,P_,4,3,"td",18),e.bVm(),e.qex(19,22),e.DNE(20,B_,2,0,"th",21)(21,A_,4,3,"td",18),e.bVm(),e.qex(22,23),e.DNE(23,$_,3,0,"th",24)(24,M_,3,0,"td",25),e.bVm(),e.qex(25,26),e.DNE(26,U_,4,3,"td",27),e.bVm(),e.DNE(27,X_,1,3,"tr",28)(28,H_,1,0,"tr",29)(29,q_,1,0,"tr",30),e.k0s()(),e.nrm(30,"mat-paginator",31,1),e.k0s(),e.j41(32,"div",9)(33,"div",10)(34,"div",11),e.EFF(35,"Outgoing"),e.k0s(),e.nrm(36,"div",12),e.k0s(),e.j41(37,"div",13),e.DNE(38,z_,1,0,"mat-progress-bar",14),e.j41(39,"table",32,2),e.qex(41,16),e.DNE(42,J_,2,0,"th",17)(43,Q_,4,4,"td",18),e.bVm(),e.qex(44,19),e.DNE(45,W_,2,0,"th",17)(46,Z_,4,4,"td",18),e.bVm(),e.qex(47,20),e.DNE(48,K_,2,0,"th",21)(49,e0,4,3,"td",18),e.bVm(),e.qex(50,22),e.DNE(51,t0,2,0,"th",21)(52,n0,4,3,"td",18),e.bVm(),e.qex(53,33),e.DNE(54,o0,4,3,"td",27),e.bVm(),e.DNE(55,l0,1,3,"tr",28)(56,r0,1,0,"tr",29)(57,c0,1,0,"tr",30),e.k0s()(),e.nrm(58,"mat-paginator",31,3),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.Y8G("ngClass",e.l_i(18,k_,n.screenSize===n.screenSizeEnum.XS,n.screenSize===n.screenSizeEnum.SM)),e.R7$(5),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",n.routingPeersIncoming),e.R7$(19),e.Y8G("matFooterRowDef",e.lJ4(21,S_)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns),e.R7$(),e.Y8G("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("showFirstLastButtons",n.screenSize!==n.screenSizeEnum.XS),e.R7$(3),e.Y8G("ngClass",e.eq3(22,R_,n.screenSize!==n.screenSizeEnum.LG)),e.R7$(5),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",n.routingPeersOutgoing),e.R7$(16),e.Y8G("matFooterRowDef",e.lJ4(24,E_)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns),e.R7$(),e.Y8G("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("showFirstLastButtons",n.screenSize!==n.screenSizeEnum.XS)}}let m0=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.commonService=o,this.store=a,this.camelCaseWithReplace=l,this.nodePageDefs=p._1,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:p.md,sortBy:"total_amount",sortOrder:p.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.routingPeersIncoming=new _.I6([]),this.routingPeersOutgoing=new _.I6([]),this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.Ie).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,i.apiCallStatus?.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=i.forwardingHistory.forwarding_events?i.forwardingHistory.forwarding_events:[],this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData),this.logger.info(i.apiCallStatus),this.logger.info(i.forwardingHistory)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.loadRoutingPeersTable(this.routingPeersData)}onRoutingPeerClick(i,o,a){let l=" Routing Information";l="in"===a?"Incoming"+l:"Outgoing"+l,this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:l,message:[[{key:"chan_id",value:i.chan_id,title:"Channel ID",width:50,type:p.UN.STRING},{key:"alias",value:i.alias,title:"Peer Alias",width:50,type:p.UN.STRING}],[{key:"events",value:i.events,title:"Events",width:50,type:p.UN.NUMBER},{key:"total_amount",value:i.total_amount,title:"Total Amount (Sats)",width:50,type:p.UN.NUMBER}]]}}}))}applyFilterIncoming(){this.routingPeersIncoming.filter=this.filterIn.trim().toLowerCase()}applyFilterOutgoing(){this.routingPeersOutgoing.filter=this.filterOut.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(i,o)=>{let a="";return a="all"===this.selFilterByIn?JSON.stringify(i).toLowerCase():"string"==typeof i[this.selFilterByIn]?i[this.selFilterByIn].toLowerCase():"boolean"==typeof i[this.selFilterByIn]?i[this.selFilterByIn]?"yes":"no":i[this.selFilterByIn].toString(),a.includes(o)},this.routingPeersOutgoing.filterPredicate=(i,o)=>{let a="";switch(this.selFilterByOut){case"all":a=JSON.stringify(i).toLowerCase();break;case"total_amount":case"total_fee":a=(+(i[this.selFilterByOut]||0)/1e3).toString()||"";break;default:a="string"==typeof i[this.selFilterByOut]?i[this.selFilterByOut].toLowerCase():"boolean"==typeof i[this.selFilterByOut]?i[this.selFilterByOut]?"yes":"no":i[this.selFilterByOut].toString()}return a.includes(o)}}loadRoutingPeersTable(i){if(i.length>0){const o=this.groupRoutingPeers(i);this.routingPeersIncoming=new _.I6(o[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.sort.sort({id:this.tableSetting.sortBy||"total_amount",start:this.tableSetting.sortOrder||p.oi.DESCENDING,disableClear:!0}),this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new _.I6(o[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.sort.sort({id:this.tableSetting.sortBy||"total_amount",start:this.tableSetting.sortOrder||p.oi.DESCENDING,disableClear:!0}),this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new _.I6([]),this.routingPeersOutgoing=new _.I6([]);this.setFilterPredicate(),this.applyFilterIncoming(),this.applyFilterOutgoing()}groupRoutingPeers(i){const o=[],a=[];return i.forEach(l=>{const h=o.find(P=>P.chan_id===l.chan_id_in),f=a.find(P=>P.chan_id===l.chan_id_out);h?(h.events++,h.total_amount=+h.total_amount+ +(l.amt_in||0)):o.push({chan_id:l.chan_id_in,alias:l.alias_in,events:1,total_amount:+(l.amt_in||0)}),f?(f.events++,f.total_amount=+f.total_amount+ +(l.amt_out||0)):a.push({chan_id:l.chan_id_out,alias:l.alias_out,events:1,total_amount:+(l.amt_out||0)})}),[this.commonService.sortDescByKey(o,"total_amount"),this.commonService.sortDescByKey(a,"total_amount")]}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-routing-peers"]],viewQuery:function(o,a){if(1&o&&(e.GBs(F_,5,A.B4),e.GBs(x_,5,A.B4),e.GBs(v_,5),e.GBs(T_,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sortIn=l.first),e.mGM(l=e.lsd())&&(a.sortOut=l.first),e.mGM(l=e.lsd())&&(a.paginatorIn=l.first),e.mGM(l=e.lsd())&&(a.paginatorOut=l.first)}},standalone:!1,features:[e.Jv_([{provide:X.xX,useValue:(0,p.on)("Routing peers")}])],decls:3,vars:2,consts:[["tableIn",""],["paginatorIn",""],["tableOut",""],["paginatorOut",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between start","class","page-sub-title-container mt-2",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between start",1,"page-sub-title-container","mt-2"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mb-4"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"dataSource"],["matColumnDef","chan_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","total_amount"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"dataSource"],["matColumnDef","no_outgoing_event"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){1&o&&(e.j41(0,"div",4),e.DNE(1,I_,2,1,"div",5)(2,p0,60,25,"div",6),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage))},dependencies:[y.YU,y.bT,y.B3,$.$z,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,X.iy,K.Ld,y.QX],encapsulation:2}))}return t(),s})();function u0(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",8),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let h0=(()=>{var t;class s{constructor(i){this.router=i,this.faChartBar=I.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(o=>o instanceof j.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-reports"]],standalone:!1,decls:12,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Reports"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,u0,2,4,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),e.k0s()()()),2&o){const l=e.sdS(10);e.R7$(),e.Y8G("icon",a.faChartBar),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[y.Sq,ee.aY,B.RN,B.m2,b.DJ,b.sA,J.Bu,J.hQ,J.Ql,j.n3,le.Wk],encapsulation:2}))}return t(),s})();var Dt=S(1993),Nt=S(4655);const d0=t=>({"error-border":t});function _0(t,s){1&t&&e.nrm(0,"mat-progress-bar",17)}function f0(t,s){if(1&t&&(e.j41(0,"div",18),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&t){const n=e.XpG();e.Y8G("@fadeIn",n.events.total_fee_msat),e.R7$(),e.Lme("",e.i5U(2,3,n.events.total_fee_msat/1e3||0,"1.0-2")," Sats/",e.bMT(3,6,(null==n.events||null==n.events.forwarding_events?null:n.events.forwarding_events.length)||0)," Events")}}function g0(t,s){1&t&&(e.j41(0,"div",19),e.EFF(1,"No routing report for the selected period"),e.k0s())}function C0(t,s){if(1&t&&(e.j41(0,"div",20),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(2,d0,"Getting Forwarding History..."!==n.errorMessage&&""!==n.errorMessage)),e.R7$(),e.JRh(n.errorMessage)}}function y0(t,s){if(1&t&&(e.j41(0,"span")(1,"span",22),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.j41(4,"span",22),e.EFF(5),e.nI1(6,"number"),e.k0s()()),2&t){const n=s.model,i=e.XpG(2);e.R7$(2),e.SpI("Events: ",e.bMT(3,2,(i.selReportBy===i.reportBy.EVENTS?n.value:n.extra.totalEvents)||0)),e.R7$(3),e.SpI("Fee: ",e.i5U(6,4,(i.selReportBy===i.reportBy.EVENTS?n.extra.totalFees:n.value)||0,"1.0-2"))}}function b0(t,s){if(1&t){const n=e.RV6();e.j41(0,"ngx-charts-bar-vertical",21),e.bIt("select",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onChartBarSelected(o))})("mouseup",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onChartMouseUp(o))}),e.DNE(1,y0,7,7,"ng-template",null,0,e.C5r),e.k0s()}if(2&t){const n=e.XpG();e.Y8G("view",n.view)("results",n.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",n.showYAxisLabel)("xAxisLabel",n.xAxisLabel)("yAxisLabel",n.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function F0(t,s){if(1&t&&e.nrm(0,"rtl-forwarding-history",23),2&t){const n=e.XpG();e.Y8G("eventsData",null==n.events?null:n.events.forwarding_events)("selFilter",n.eventFilterValue)}}let x0=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.dataService=o,this.commonService=a,this.store=l,this.reportPeriod=p.rs[0],this.secondsInADay=86400,this.events={},this.eventFilterValue="",this.reportBy=p.aR,this.selReportBy=p.aR.FEES,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.unSubs=[new C.B,new C.B,new C.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===p.f7.XS||this.screenSize===p.f7.SM),this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{i.identity_pubkey&&setTimeout(()=>{this.fetchEvents(this.startDate,this.endDate)},10)}),this.commonService.containerSizeUpdated.pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{switch(this.screenSize){case p.f7.MD:this.screenPaddingX=i.width/10;break;case p.f7.LG:this.screenPaddingX=i.width/16;break;default:this.screenPaddingX=i.width/20}this.view=[i.width-this.screenPaddingX,i.height/2.2],this.logger.info("Container Size: "+JSON.stringify(i)),this.logger.info("View: "+JSON.stringify(this.view))})}fetchEvents(i,o){this.errorMessage=p.MZ.GET_FORWARDING_HISTORY;const a=Math.round(i.getTime()/1e3).toString(),l=Math.round(o.getTime()/1e3).toString();this.dataService.getForwardingHistory("LND",a,l).pipe((0,x.Q)(this.unSubs[2])).subscribe({next:h=>{this.errorMessage="",h.forwarding_events&&h.forwarding_events.length?(h.forwarding_events=h.forwarding_events.reverse(),this.events=h,this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(i):this.prepareFeeReport(i)):(this.events={forwarding_events:[],total_fee_msat:0},this.routingReportData=[])},error:h=>{this.errorMessage=h}})}onChartMouseUp(i){"svg"===i.srcElement.tagName&&i.srcElement.classList.length>0&&"ngx-charts"===i.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(i){this.eventFilterValue=this.reportPeriod===p.rs[1]?i.name+"/"+this.startDate.getFullYear():i.name.toString().padStart(2,"0")+"/"+p.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(i){const o=Math.round(i.getTime()/1e3),a=[];if(this.events.total_fee_msat=0,this.reportPeriod===p.rs[1]){for(let l=0;l<12;l++)a.push({name:p.KR[l].name,value:0,extra:{totalEvents:0}});this.events.forwarding_events?.map(l=>{const h=new Date(1e3*+(l.timestamp||0)).getMonth();return a[h].value=a[h].value+ +(l.fee_msat||0)/1e3,a[h].extra.totalEvents=a[h].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(l.fee_msat||0),this.events})}else{for(let l=0;l{const h=Math.floor((+(l.timestamp||0)-o)/this.secondsInADay);return a[h].value=a[h].value+ +(l.fee_msat||0)/1e3,a[h].extra.totalEvents=a[h].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(l.fee_msat||0),this.events})}return a}prepareEventsReport(i){const o=Math.round(i.getTime()/1e3),a=[];if(this.events.total_fee_msat=0,this.reportPeriod===p.rs[1]){for(let l=0;l<12;l++)a.push({name:p.KR[l].name,value:0,extra:{totalFees:0}});this.events.forwarding_events?.map(l=>{const h=new Date(1e3*+(l.timestamp||0)).getMonth();return a[h].value=a[h].value+1,a[h].extra.totalFees=a[h].extra.totalFees+ +(l.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(l.fee_msat||0),this.events})}else{for(let l=0;l{const h=Math.floor((+(l.timestamp||0)-o)/this.secondsInADay);return a[h].value=a[h].value+1,a[h].extra.totalFees=a[h].extra.totalFees+ +(l.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(l.fee_msat||0),this.events})}return a}onSelectionChange(i){const o=i.selDate.getMonth(),a=i.selDate.getFullYear();this.reportPeriod=i.selScrollRange,this.reportPeriod===p.rs[1]?(this.startDate=new Date(a,0,1,0,0,0),this.endDate=new Date(a,11,31,23,59,59)):(this.startDate=new Date(a,o,1,0,0,0),this.endDate=new Date(a,o,this.getMonthDays(o,a),23,59,59)),this.fetchEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(i,o){return 1===i&&o%4==0?p.KR[i].days+1:p.KR[i].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(Fe.u),e.rXU(z.h),e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-routing-report"]],hostBindings:function(o,a){1&o&&e.bIt("mouseup",function(h){return a.onChartMouseUp(h)})},standalone:!1,decls:20,vars:11,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start center",1,"my-1",3,"ngModelChange","change","ngModel"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["mode","indeterminate","class","mt-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x","my-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",3,"ngClass",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["pageId","reports","tableId","routing",3,"eventsData","selFilter",4,"ngIf"],["mode","indeterminate",1,"mt-2"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1",3,"ngClass"],[1,"one-color",3,"select","mouseup","view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel"],[1,"tooltip-label"],["pageId","reports","tableId","routing",3,"eventsData","selFilter"]],template:function(o,a){1&o&&(e.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),e.bIt("stepChanged",function(h){return a.onSelectionChange(h)}),e.k0s(),e.j41(2,"div",3)(3,"mat-radio-group",4),e.mxI("ngModelChange",function(h){return e.DH7(a.selReportBy,h)||(a.selReportBy=h),h}),e.bIt("change",function(){return a.onSelReportByChange()}),e.j41(4,"span",5),e.EFF(5,"Report By: "),e.k0s(),e.j41(6,"mat-radio-button",6),e.EFF(7,"Fees"),e.k0s(),e.j41(8,"mat-radio-button",7),e.EFF(9,"Events"),e.k0s()()(),e.DNE(10,_0,1,0,"mat-progress-bar",8),e.j41(11,"div",9),e.DNE(12,f0,4,8,"div",10)(13,g0,2,0,"div",11)(14,C0,2,4,"div",12),e.j41(15,"div",13),e.DNE(16,b0,3,11,"ngx-charts-bar-vertical",14),e.k0s()(),e.j41(17,"div",15)(18,"div",13),e.DNE(19,F0,1,2,"rtl-forwarding-history",16),e.k0s()()()),2&o&&(e.R7$(3),e.R50("ngModel",a.selReportBy),e.R7$(3),e.Y8G("value",e.mNQ(a.reportBy.FEES)),e.R7$(2),e.Y8G("value",e.mNQ(a.reportBy.EVENTS)),e.R7$(2),e.Y8G("ngIf","Getting Forwarding History..."===a.errorMessage),e.R7$(2),e.Y8G("ngIf",a.routingReportData.length>0&&a.events.forwarding_events&&a.events.forwarding_events.length&&a.events.forwarding_events.length>0),e.R7$(),e.Y8G("ngIf",(a.routingReportData.length<=0||a.events.forwarding_events.length<=0)&&""===a.errorMessage),e.R7$(),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(2),e.Y8G("ngIf",a.routingReportData.length>0&&a.events.forwarding_events&&a.events.forwarding_events.length&&a.events.forwarding_events.length>0),e.R7$(3),e.Y8G("ngIf",a.events&&(null==a.events?null:a.events.forwarding_events)&&a.events.forwarding_events.length&&a.events.forwarding_events.length>0))},dependencies:[y.YU,y.bT,g.BC,g.vS,D.HM,Ae.VT,Ae._g,b.DJ,b.sA,b.UI,U.PW,Dt.L8,Nt.m,jt,y.QX],encapsulation:2,data:{animation:[pt.q]}}))}return t(),s})();var v0=S(9584),T0=S(5085);function k0(t,s){1&t&&(e.j41(0,"div",12),e.nrm(1,"mat-progress-bar",13),e.j41(2,"span"),e.EFF(3,"Getting transactions data..."),e.k0s()())}function S0(t,s){if(1&t&&(e.j41(0,"div",14),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.JRh(n.errorMessage)}}function R0(t,s){if(1&t&&(e.j41(0,"div",17),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Lme(" Paid ",e.i5U(2,2,n.transactionsReportSummary.amountPaidSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.bMT(3,5,n.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function E0(t,s){if(1&t&&(e.j41(0,"div",17),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Lme(" Received ",e.i5U(2,2,n.transactionsReportSummary.amountReceivedSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.bMT(3,5,n.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function I0(t,s){if(1&t&&(e.j41(0,"div",15),e.DNE(1,R0,4,7,"div",16)(2,E0,4,7,"div",16),e.k0s()),2&t){const n=e.XpG();e.Y8G("@fadeIn",n.transactionsReportSummary),e.R7$(),e.Y8G("ngIf",n.transactionsReportSummary.paymentsSelectedPeriod>0),e.R7$(),e.Y8G("ngIf",n.transactionsReportSummary.invoicesSelectedPeriod)}}function w0(t,s){1&t&&(e.j41(0,"div",18),e.EFF(1,"No transactions report for the selected period"),e.k0s())}function L0(t,s){if(1&t&&(e.j41(0,"span",21),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&t){const n=s.model;e.R7$(),e.LHq("",n.name,": ",e.i5U(2,4,n.value||0,"1.0-2"),"/# ","Paid"===n.name?"Payments":"Invoices",": ",e.bMT(3,7,(null==n.extra?null:n.extra.total)||0))}}function j0(t,s){if(1&t){const n=e.RV6();e.j41(0,"ngx-charts-bar-vertical-2d",20),e.bIt("select",function(o){r.eBV(n);const a=e.XpG(2);return r.Njj(a.onChartBarSelected(o))})("mouseup",function(o){r.eBV(n);const a=e.XpG(2);return r.Njj(a.onChartMouseUp(o))}),e.DNE(1,L0,4,9,"ng-template",null,0,e.C5r),e.k0s()}if(2&t){const n=e.XpG(2);e.Y8G("view",n.view)("results",n.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",n.showYAxisLabel)("xAxisLabel",n.xAxisLabel)("yAxisLabel",n.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",n.reportPeriod===n.scrollRanges[0]?2:8)}}function G0(t,s){if(1&t&&(e.j41(0,"div",10),e.DNE(1,j0,3,13,"ngx-charts-bar-vertical-2d",19),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",n.transactionsReportData.length>0&&n.transactionsNonZeroReportData.length>0)}}function D0(t,s){if(1&t&&e.nrm(0,"rtl-transactions-report-table",22),2&t){const n=e.XpG();e.Y8G("displayedColumns",n.displayedColumns)("tableSetting",n.tableSetting)("dataList",n.transactionsNonZeroReportData)("dataRange",n.reportPeriod)("selFilter",n.transactionFilterValue)}}let N0=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.commonService=o,this.store=a,this.scrollRanges=p.rs,this.reportPeriod=p.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:p.md,sortBy:"date",sortOrder:p.oi.DESCENDING},this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[{date:"",name:"1",series:[{extra:{total:0},name:"Paid",value:0},{extra:{total:0},name:"Received",value:0}]}],this.transactionsNonZeroReportData=[{amount_paid:0,amount_received:0,date:"",num_invoices:0,num_payments:0}],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===p.f7.XS||this.screenSize===p.f7.SM),this.store.select(v0.av).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.n_).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{i.apiCallStatus.status===p.wn.UN_INITIATED&&this.store.dispatch((0,N.tG)()),this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.payments=i.allLightningTransactions.listPaymentsAll.payments||[],this.invoices=i.allLightningTransactions.listInvoicesAll.invoices||[],(this.payments.length>0||this.invoices.length>0)&&(this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData()),this.logger.info(i)}),this.commonService.containerSizeUpdated.pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{switch(this.screenSize){case p.f7.MD:this.screenPaddingX=i.width/10;break;case p.f7.LG:this.screenPaddingX=i.width/16;break;default:this.screenPaddingX=i.width/20}this.view=[i.width-this.screenPaddingX,i.height/2.2],this.logger.info("Container Size: "+JSON.stringify(i)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(i){"svg"===i.srcElement.tagName&&i.srcElement.classList.length>0&&"ngx-charts"===i.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(i){this.transactionFilterValue=this.reportPeriod===p.rs[1]?i.series+"/"+this.startDate.getFullYear():i.series.toString().padStart(2,"0")+"/"+p.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(i,o){const a=Math.round(i.getTime()/1e3),l=Math.round(o.getTime()/1e3),h=[];this.transactionsNonZeroReportData=[],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const f=this.payments?.filter(w=>"SUCCEEDED"===w.status&&w.creation_date&&w.creation_date>=a&&w.creation_datew.settled&&w.creation_date&&+w.creation_date>=a&&+w.creation_date{const M=new Date(1e3*+(w.creation_date||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(w.value_msat||0)+ +(w.fee_msat||0),h[M].series[0].value=h[M].series[0].value+(+(w.value_msat||0)+ +(w.fee_msat||0))/1e3,h[M].series[0].extra.total=h[M].series[0].extra.total+1,this.transactionsReportSummary}),P?.map(w=>{const M=new Date(1e3*+(w.creation_date||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(w.amt_paid_msat||0),h[M].series[1].value=h[M].series[1].value+ +(w.amt_paid_msat||0)/1e3,h[M].series[1].extra.total=h[M].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let w=0;w{const M=Math.floor((+(w.creation_date||0)-a)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(w.value_msat||0)+ +(w.fee_msat||0),h[M].series[0].value=h[M].series[0].value+(+(w.value_msat||0)+ +(w.fee_msat||0))/1e3,h[M].series[0].extra.total=h[M].series[0].extra.total+1,this.transactionsReportSummary}),P?.map(w=>{const M=Math.floor((+(w.creation_date||0)-a)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(w.amt_paid_msat||0),h[M].series[1].value=h[M].series[1].value+ +(w.amt_paid_msat||0)/1e3,h[M].series[1].extra.total=h[M].series[1].extra.total+1,this.transactionsReportSummary})}return h}prepareTableData(){return this.transactionsReportData?.reduce((i,o)=>o.series[0].extra.total>0||o.series[1].extra.total>0?i.concat({date:o.date,amount_paid:o.series[0].value,num_payments:o.series[0].extra.total,amount_received:o.series[1].value,num_invoices:o.series[1].extra.total}):i,[])}onSelectionChange(i){const o=i.selDate.getMonth(),a=i.selDate.getFullYear();this.reportPeriod=i.selScrollRange,this.reportPeriod===p.rs[1]?(this.startDate=new Date(a,0,1,0,0,0),this.endDate=new Date(a,11,31,23,59,59)):(this.startDate=new Date(a,o,1,0,0,0),this.endDate=new Date(a,o,this.getMonthDays(o,a),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(i,o){return 1===i&&o%4==0?p.KR[i].days+1:p.KR[i].days}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-transactions-report"]],hostBindings:function(o,a){1&o&&e.bIt("mouseup",function(h){return a.onChartMouseUp(h)})},standalone:!1,decls:11,vars:6,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],[3,"stepChanged"],["class","p-2",4,"ngIf"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["class","mt-1",4,"ngIf"],[1,"mt-1"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter",4,"ngIf"],[1,"p-2"],["mode","indeterminate"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[1,"two-color",3,"select","mouseup","view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding"],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(o,a){1&o&&(e.j41(0,"div",1)(1,"div",2)(2,"div",3)(3,"rtl-horizontal-scroller",4),e.bIt("stepChanged",function(h){return a.onSelectionChange(h)}),e.k0s(),e.DNE(4,k0,4,0,"div",5)(5,S0,2,1,"div",6)(6,I0,3,3,"div",7)(7,w0,2,0,"div",8)(8,G0,2,1,"div",9),e.j41(9,"div",10),e.DNE(10,D0,1,5,"rtl-transactions-report-table",11),e.k0s()()()()),2&o&&(e.R7$(4),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.ERROR),e.R7$(),e.Y8G("ngIf",a.transactionsNonZeroReportData.length>0&&a.apiCallStatus.status===a.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",a.transactionsNonZeroReportData.length<=0&&a.apiCallStatus.status===a.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",a.transactionsNonZeroReportData.length>0&&a.apiCallStatus.status===a.apiCallStatusEnum.COMPLETED),e.R7$(2),e.Y8G("ngIf",a.transactionsNonZeroReportData.length>0&&a.apiCallStatus.status===a.apiCallStatusEnum.COMPLETED))},dependencies:[y.bT,D.HM,b.DJ,b.sA,b.UI,Dt.Dl,Nt.m,T0.T,y.QX],encapsulation:2,data:{animation:[pt.q]}}))}return t(),s})();const P0=["form"];function B0(t,s){if(1&t&&(e.j41(0,"div",17),e.nrm(1,"fa-icon",18),e.j41(2,"span"),e.EFF(3,'Bump fee option will be disabled for unconfirmed UTXOs where label text includes "sweep" in its value.'),e.k0s()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle)}}function A0(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"UTXO Label is required."),e.k0s())}function $0(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.labelError)}}function M0(t,s){if(1&t&&(e.j41(0,"div",19),e.nrm(1,"fa-icon",18),e.DNE(2,$0,2,1,"span",12),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.labelError)}}let O0=(()=>{var t;class s{constructor(i,o,a,l,h,f){this.dialogRef=i,this.data=o,this.dataService=a,this.store=l,this.snackBar=h,this.commonService=f,this.faExclamationTriangle=I.zpE,this.utxo=null,this.label="",this.labelError="",this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.utxo=this.data.utxo,this.label=this.utxo.label||""}onLabelUTXO(){if(!this.label||""===this.label)return!0;this.labelError="",this.dataService.labelUTXO(this.utxo&&this.utxo.outpoint&&this.utxo.outpoint.txid_bytes?this.utxo.outpoint.txid_bytes:"",this.label,!0).pipe((0,x.Q)(this.unSubs[0])).subscribe({next:i=>{this.store.dispatch((0,N.mh)()),this.store.dispatch((0,N.SM)()),this.snackBar.open("Successfully labelled the UTXO."),this.dialogRef.close()},error:i=>{this.labelError=i}})}resetData(){this.labelError="",this.label=""}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(Fe.u),e.rXU(G.il),e.rXU(we.UG),e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-lebel-modal"]],viewQuery:function(o,a){if(1&o&&e.GBs(P0,7),2&o){let l;e.mGM(l=e.lsd())&&(a.form=l.first)}},standalone:!1,decls:24,vars:7,consts:[["form","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxLayout","column","fxFlex.gt-sm","100"],["autoFocus","","matInput","","name","label","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Label UTXO"),e.k0s()(),e.j41(6,"button",6),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"form",8,0),e.bIt("submit",function(){return r.eBV(l),r.Njj(a.onLabelUTXO())})("reset",function(){return r.eBV(l),r.Njj(a.resetData())}),e.DNE(11,B0,4,1,"div",9),e.nI1(12,"lowercase"),e.j41(13,"mat-form-field",10)(14,"mat-label"),e.EFF(15,"UTXO Label"),e.k0s(),e.j41(16,"input",11),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.label,f)||(a.label=f),r.Njj(f)}),e.k0s(),e.DNE(17,A0,2,0,"mat-error",12),e.k0s(),e.DNE(18,M0,3,2,"div",13),e.j41(19,"div",14)(20,"button",15),e.EFF(21,"Clear"),e.k0s(),e.j41(22,"button",16),e.EFF(23,"Label UTXO"),e.k0s()()()()()()}2&o&&(e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(5),e.Y8G("ngIf",e.bMT(12,5,a.label).includes("sweep")&&"0"===a.utxo.confirmations),e.R7$(5),e.R50("ngModel",a.label),e.R7$(),e.Y8G("ngIf",!a.label),e.R7$(),e.Y8G("ngIf",""!==a.labelError))},dependencies:[y.bT,g.qT,g.me,g.BC,g.cb,g.YS,g.vS,g.cV,ee.aY,ne.tx,$.$z,B.m2,B.MM,Z.fg,R.rl,R.nJ,R.TL,b.DJ,b.sA,b.UI,pe.N,y.GH],encapsulation:2}))}return t(),s})();const Pt=()=>["all"],V0=t=>({"error-border":t}),Y0=()=>["no_utxo"],dt=t=>({width:t}),U0=t=>({"display-none":t});function X0(t,s){if(1&t&&(e.j41(0,"mat-option",34),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function H0(t,s){1&t&&e.nrm(0,"mat-progress-bar",35)}function q0(t,s){1&t&&e.nrm(0,"th",36)}function z0(t,s){1&t&&(e.j41(0,"span",39)(1,"mat-icon",40),e.EFF(2,"warning"),e.k0s()())}function J0(t,s){if(1&t&&(e.j41(0,"td",37),e.DNE(1,z0,3,0,"span",38),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(),o=e.sdS(52);e.R7$(),e.Y8G("ngIf",n.amount_sat0))}}function yf(t,s){1&t&&e.nrm(0,"tr",57)}function bf(t,s){1&t&&e.nrm(0,"tr",58)}function Ff(t,s){1&t&&e.nrm(0,"mat-icon",40)}let xf=(()=>{var t;class s{constructor(i,o,a,l,h,f,P,w){this.logger=i,this.commonService=o,this.dataService=a,this.store=l,this.rtlEffects=h,this.decimalPipe=f,this.camelCaseWithReplace=P,this.snackBar=w,this.isDustUTXO=!1,this.dustAmount=1e3,this.faMoneyBillWave=I.ymQ,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"utxos",recordsPerPage:p.md,sortBy:"tx_id",sortOrder:p.oi.DESCENDING},this.addressType=p.aG,this.displayedColumns=[],this.listUTXOs=new _.I6([]),this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(){!this.isDustUTXO&&this.utxos&&this.utxos.length>0&&this.loadUTXOsTable(this.utxos),this.isDustUTXO&&this.dustUtxos&&this.dustUtxos.length>0&&this.loadUTXOsTable(this.dustUtxos)}ngOnInit(){this.tableSetting.tableId=this.isDustUTXO?"dust_utxos":"utxos",this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.ah).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),i.utxos&&i.utxos.length>0&&(this.dustUtxos=i.utxos?.filter(o=>+(o.amount_sat||0)0&&this.dustUtxos.length>0&&!this.isDustUTXO&&this.displayedColumns.unshift("is_dust"),this.loadUTXOsTable(this.isDustUTXO?this.dustUtxos:this.utxos)),this.logger.info(i)})}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):"is_dust"===i?"Dust":this.commonService.titleCase(i)}setFilterPredicate(){this.listUTXOs.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.label?i.label.toLowerCase():"")+(i.outpoint?.txid_str?i.outpoint.txid_str.toLowerCase():"")+(i.outpoint?.output_index?i.outpoint?.output_index:"")+(i.outpoint?.txid_bytes?i.outpoint?.txid_bytes.toLowerCase():"")+(i.address?i.address.toLowerCase():"")+(i.address_type?this.addressType[i.address_type].name.toLowerCase():"")+(i.amount_sat?i.amount_sat:"")+(i.confirmations?i.confirmations:"");break;case"is_dust":a=+(i?.amount_sat||0)"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"is_dust"===this.selFilterBy||"address_type"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}onUTXOClick(i){this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"UTXO Information",message:[[{key:"txid",value:i.outpoint?.txid_str,title:"Transaction ID",width:100,type:p.UN.STRING,explorerLink:"tx"}],[{key:"label",value:i.label,title:"Label",width:100,type:p.UN.STRING}],[{key:"output_index",value:i.outpoint?.output_index,title:"Output Index",width:34,type:p.UN.NUMBER},{key:"amount_sat",value:i.amount_sat,title:"Amount (Sats)",width:33,type:p.UN.NUMBER},{key:"confirmations",value:i.confirmations,title:"Confirmations",width:33,type:p.UN.NUMBER}],[{key:"address_type",value:i.address_type?this.addressType[i.address_type].name:"",title:"Address Type",width:34},{key:"address",value:i.address,title:"Address",width:66}],[{key:"pk_script",value:i.pk_script,title:"PK Script",width:100,type:p.UN.STRING}]]}}}))}loadUTXOsTable(i){this.listUTXOs=new _.I6([...i]),this.listUTXOs.sort=this.sort,this.listUTXOs.sortingDataAccessor=(o,a)=>{switch(a){case"is_dust":return+(o.amount_sat||0){a&&this.dataService.leaseUTXO(i.outpoint?.txid_bytes||"",i.outpoint?.output_index||0).pipe((0,x.Q)(this.unSubs[0])).subscribe({next:l=>{this.snackBar.open("The UTXO has been leased till "+new Date(l).toString().substring(4,21).replace(" ","/").replace(" ","/").toUpperCase()+".")},error:l=>{this.snackBar.open(l+" UTXO not leased.","",{panelClass:"rtl-warn-snack-bar"})}})})}onBumpFee(i){this.store.dispatch((0,Y.xO)({payload:{data:{selUTXO:i,component:wt}}}))}onDownloadCSV(){this.listUTXOs.data&&this.listUTXOs.data.length>0&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(Fe.u),e.rXU(G.il),e.rXU(Ve.H),e.rXU(y.QX),e.rXU(ue.VD),e.rXU(we.UG))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-utxos"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},inputs:{isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("UTXOs")}]),e.OA$],decls:53,vars:19,consts:[["table",""],["emptySpace",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","end stretch","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","is_dust"],["mat-header-cell","","mat-sort-header","","matTooltip","Dust/Nondust",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","tx_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","output"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","label"],["matColumnDef","address_type"],["matColumnDef","address"],["matColumnDef","amount_sat"],["matColumnDef","confirmations"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_utxo"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Dust/Nondust"],["mat-cell",""],["matTooltip","Risk of dust attack","matTooltipPosition","right",4,"ngIf","ngIfElse"],["matTooltip","Risk of dust attack","matTooltipPosition","right"],["fxLayoutAlign","start center","color","warn",1,"small-icon"],["mat-header-cell","","mat-sort-header",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row","fxLayoutAlign","start center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",2)(1,"div",3)(2,"div",4)(3,"mat-form-field",5)(4,"mat-label"),e.EFF(5,"Filter By"),e.k0s(),e.j41(6,"mat-select",6),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilterBy,f)||(a.selFilterBy=f),r.Njj(f)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,X0,2,2,"mat-option",7),e.k0s()()(),e.j41(9,"mat-form-field",5)(10,"mat-label"),e.EFF(11,"Filter"),e.k0s(),e.j41(12,"input",8),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilter,f)||(a.selFilter=f),r.Njj(f)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(13,"div",9)(14,"div",10),e.DNE(15,H0,1,0,"mat-progress-bar",11),e.j41(16,"table",12,0),e.qex(18,13),e.DNE(19,q0,1,0,"th",14)(20,J0,2,2,"td",15),e.bVm(),e.qex(21,16),e.DNE(22,Q0,2,0,"th",17)(23,W0,4,4,"td",15),e.bVm(),e.qex(24,18),e.DNE(25,Z0,2,0,"th",19)(26,K0,3,1,"td",15),e.bVm(),e.qex(27,20),e.DNE(28,ef,2,0,"th",17)(29,tf,4,4,"td",15),e.bVm(),e.qex(30,21),e.DNE(31,nf,2,0,"th",17)(32,af,3,1,"td",15),e.bVm(),e.qex(33,22),e.DNE(34,sf,2,0,"th",17)(35,of,4,4,"td",15),e.bVm(),e.qex(36,23),e.DNE(37,lf,2,0,"th",19)(38,rf,4,3,"td",15),e.bVm(),e.qex(39,24),e.DNE(40,cf,2,0,"th",19)(41,pf,4,3,"td",15),e.bVm(),e.qex(42,25),e.DNE(43,mf,6,0,"th",26)(44,hf,12,3,"td",27),e.bVm(),e.qex(45,28),e.DNE(46,gf,4,3,"td",29),e.bVm(),e.DNE(47,Cf,1,3,"tr",30)(48,yf,1,0,"tr",31)(49,bf,1,0,"tr",32),e.k0s(),e.nrm(50,"mat-paginator",33),e.k0s()()(),e.DNE(51,Ff,1,0,"ng-template",null,1,e.C5r)}2&o&&(e.R7$(6),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",a.utxos&&a.utxos.length>0&&a.dustUtxos&&a.dustUtxos.length>0&&!a.isDustUTXO?e.lJ4(14,Pt).concat(a.displayedColumns.slice(0,-1)):e.lJ4(15,Pt).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(3),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.listUTXOs)("ngClass",e.eq3(16,V0,""!==a.errorMessage)),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(18,Y0)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.me,g.BC,g.vS,ke.An,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,fe.oV,X.iy,K.ZF,K.Ld,y.GH,y.QX],styles:[".mat-column-is_dust[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return t(),s})();const vf=()=>["all"],Tf=t=>({"error-border":t}),kf=()=>["no_transaction"],_t=t=>({width:t}),Sf=t=>({"display-none":t});function Rf(t,s){if(1&t&&(e.j41(0,"mat-option",32),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function Ef(t,s){1&t&&e.nrm(0,"mat-progress-bar",33)}function If(t,s){1&t&&(e.j41(0,"th",34),e.EFF(1,"Date/Time"),e.k0s())}function wf(t,s){if(1&t&&(e.j41(0,"td",35),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*n.time_stamp,"dd/MMM/y HH:mm"))}}function Lf(t,s){1&t&&(e.j41(0,"th",34),e.EFF(1,"Label"),e.k0s())}function jf(t,s){if(1&t&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,_t,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.label)}}function Gf(t,s){1&t&&(e.j41(0,"th",34),e.EFF(1,"Block Hash"),e.k0s())}function Df(t,s){if(1&t&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,_t,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.block_hash)}}function Nf(t,s){1&t&&(e.j41(0,"th",34),e.EFF(1,"Transaction Hash"),e.k0s())}function Pf(t,s){if(1&t&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,_t,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.tx_hash)}}function Bf(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Amount (Sats)"),e.k0s())}function Af(t,s){if(1&t&&(e.j41(0,"span",41),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.JRh(e.bMT(2,1,n.amount))}}function $f(t,s){if(1&t&&(e.j41(0,"span",42),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.SpI("(",e.bMT(2,1,-1*n.amount),")")}}function Mf(t,s){if(1&t&&(e.j41(0,"td",35),e.DNE(1,Af,3,3,"span",39)(2,$f,3,3,"span",40),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",n.amount>0||0===n.amount),e.R7$(),e.Y8G("ngIf",n.amount<0)}}function Of(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Fees (Sats)"),e.k0s())}function Vf(t,s){if(1&t&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.total_fees))}}function Yf(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Block Height"),e.k0s())}function Uf(t,s){if(1&t&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.block_height))}}function Xf(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Confirmations"),e.k0s())}function Hf(t,s){if(1&t&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI(" ",e.bMT(3,1,null==n?null:n.num_confirmations)," ")}}function qf(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",43)(1,"div",44)(2,"mat-select",45),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",46),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function zf(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",47)(1,"button",48),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onTransactionClick(o))}),e.EFF(2,"View Info"),e.k0s()()}}function Jf(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No transaction available."),e.k0s())}function Qf(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting transactions..."),e.k0s())}function Wf(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function Zf(t,s){if(1&t&&(e.j41(0,"td",49),e.DNE(1,Jf,2,0,"p",50)(2,Qf,2,0,"p",50)(3,Wf,2,1,"p",50),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=n.listTransactions&&n.listTransactions.data)||(null==n.listTransactions||null==n.listTransactions.data?null:n.listTransactions.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.listTransactions&&n.listTransactions.data)||(null==n.listTransactions||null==n.listTransactions.data?null:n.listTransactions.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.listTransactions&&n.listTransactions.data)||(null==n.listTransactions||null==n.listTransactions.data?null:n.listTransactions.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Kf(t,s){if(1&t&&e.nrm(0,"tr",51),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,Sf,(null==n.listTransactions?null:n.listTransactions.data)&&(null==n.listTransactions||null==n.listTransactions.data?null:n.listTransactions.data.length)>0))}}function e2(t,s){1&t&&e.nrm(0,"tr",52)}function t2(t,s){1&t&&e.nrm(0,"tr",53)}let n2=(()=>{var t;class s{constructor(i,o,a,l,h){this.logger=i,this.commonService=o,this.store=a,this.datePipe=l,this.camelCaseWithReplace=h,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"transactions",recordsPerPage:p.md,sortBy:"time_stamp",sortOrder:p.oi.DESCENDING},this.faHistory=I.Int,this.displayedColumns=[],this.listTransactions=new _.I6([]),this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(){this.transactions&&this.transactions.length>0&&this.loadTransactionsTable(this.transactions)}ngOnInit(){this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.gN).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),i.transactions&&i.transactions.length>0&&(this.transactions=i.transactions,this.loadTransactionsTable(this.transactions)),this.logger.info(i)})}onTransactionClick(i){this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"block_hash",value:i.block_hash,title:"Block Hash",width:100,explorerLink:"block"}],[{key:"tx_hash",value:i.tx_hash,title:"Transaction Hash",width:100,explorerLink:"tx"}],[{key:"label",value:i.label,title:"Label",width:100,type:p.UN.STRING}],[{key:"time_stamp",value:i.time_stamp,title:"Date/Time",width:50,type:p.UN.DATE_TIME},{key:"block_height",value:i.block_height,title:"Block Height",width:50,type:p.UN.NUMBER}],[{key:"num_confirmations",value:i.num_confirmations,title:"Number of Confirmations",width:34,type:p.UN.NUMBER},{key:"total_fees",value:i.total_fees,title:"Total Fees (Sats)",width:33,type:p.UN.NUMBER},{key:"amount",value:i.amount,title:"Amount (Sats)",width:33,type:p.UN.NUMBER}],[{key:"dest_addresses",value:i.dest_addresses,title:"Destination Addresses",width:100,type:p.UN.ARRAY}]],scrollable:i.dest_addresses&&i.dest_addresses.length>5}}}))}applyFilter(){this.listTransactions.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.listTransactions.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.time_stamp?this.datePipe.transform(new Date(1e3*i.time_stamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(i).toLowerCase();break;case"time_stamp":a=this.datePipe.transform(new Date(1e3*(i?.time_stamp||0)),"dd/MMM/YYYY HH:mm")?.toLowerCase()||"";break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return a.includes(o)}}loadTransactionsTable(i){this.listTransactions=new _.I6([...i]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.listTransactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listTransactions)}onDownloadCSV(){this.listTransactions.data&&this.listTransactions.data.length>0&&this.commonService.downloadFile(this.listTransactions.data,"Transactions")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il),e.rXU(y.vh),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-transaction-history"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Transactions")}]),e.OA$],decls:51,vars:18,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","end stretch","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","time_stamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","label"],["matColumnDef","block_hash"],["matColumnDef","tx_hash"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","total_fees"],["matColumnDef","block_height"],["matColumnDef","num_confirmations"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"div",3)(3,"mat-form-field",4)(4,"mat-label"),e.EFF(5,"Filter By"),e.k0s(),e.j41(6,"mat-select",5),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilterBy,f)||(a.selFilterBy=f),r.Njj(f)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,Rf,2,2,"mat-option",6),e.k0s()()(),e.j41(9,"mat-form-field",4)(10,"mat-label"),e.EFF(11,"Filter"),e.k0s(),e.j41(12,"input",7),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilter,f)||(a.selFilter=f),r.Njj(f)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(13,"div",8)(14,"div",9),e.DNE(15,Ef,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,If,2,0,"th",13)(20,wf,3,4,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,Lf,2,0,"th",13)(23,jf,4,4,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,Gf,2,0,"th",13)(26,Df,4,4,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,Nf,2,0,"th",13)(29,Pf,4,4,"td",14),e.bVm(),e.qex(30,18),e.DNE(31,Bf,2,0,"th",19)(32,Mf,3,2,"td",14),e.bVm(),e.qex(33,20),e.DNE(34,Of,2,0,"th",19)(35,Vf,4,3,"td",14),e.bVm(),e.qex(36,21),e.DNE(37,Yf,2,0,"th",19)(38,Uf,4,3,"td",14),e.bVm(),e.qex(39,22),e.DNE(40,Xf,2,0,"th",19)(41,Hf,4,3,"td",14),e.bVm(),e.qex(42,23),e.DNE(43,qf,6,0,"th",24)(44,zf,3,0,"td",25),e.bVm(),e.qex(45,26),e.DNE(46,Zf,4,3,"td",27),e.bVm(),e.DNE(47,Kf,1,3,"tr",28)(48,e2,1,0,"tr",29)(49,t2,1,0,"tr",30),e.k0s(),e.nrm(50,"mat-paginator",31),e.k0s()()()}2&o&&(e.R7$(6),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,vf).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(3),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.listTransactions)("ngClass",e.eq3(15,Tf,""!==a.errorMessage)),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(17,kf)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.me,g.BC,g.vS,$.$z,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,X.iy,K.ZF,K.Ld,y.QX,y.vh],encapsulation:2}))}return t(),s})();function i2(t,s){if(1&t&&(e.j41(0,"span",5),e.EFF(1,"UTXOs"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numUtxos))}}function a2(t,s){if(1&t&&(e.j41(0,"span",5),e.EFF(1,"Transactions"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numTransactions))}}function s2(t,s){if(1&t&&(e.j41(0,"span",5),e.EFF(1,"Dust UTXOs"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numDustUtxos))}}let o2=(()=>{var t;class s{constructor(i,o){this.logger=i,this.store=o,this.selectedTableIndex=0,this.selectedTableIndexChange=new e.bkB,this.DUST_AMOUNT=1e3,this.numTransactions=0,this.numUtxos=0,this.numDustUtxos=0,this.unSubs=[new C.B,new C.B,new C.B]}ngOnInit(){this.store.dispatch((0,N.mh)()),this.store.dispatch((0,N.SM)()),this.store.select(E.ah).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{i.utxos&&i.utxos.length>0&&(this.numUtxos=i.utxos.length,this.numDustUtxos=i.utxos?.filter(o=>o.amount_sat&&+o.amount_sat{i.transactions&&i.transactions.length>0&&(this.numTransactions=i.transactions.length),this.logger.info(i)})}onSelectedIndexChanged(i){this.selectedTableIndexChange.emit(i)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-utxo-tables"]],inputs:{selectedTableIndex:"selectedTableIndex"},outputs:{selectedTableIndexChange:"selectedTableIndexChange"},standalone:!1,decls:11,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedIndex"],["mat-tab-label",""],["fxLayout","row","fxFlex","100",3,"isDustUTXO","dustAmount"],["fxLayout","row","fxFlex","100"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"mat-tab-group",1),e.bIt("selectedIndexChange",function(h){return a.onSelectedIndexChanged(h)}),e.j41(2,"mat-tab"),e.DNE(3,i2,2,2,"ng-template",2),e.nrm(4,"rtl-on-chain-utxos",3),e.k0s(),e.j41(5,"mat-tab"),e.DNE(6,a2,2,2,"ng-template",2),e.nrm(7,"rtl-on-chain-transaction-history",4),e.k0s(),e.j41(8,"mat-tab"),e.DNE(9,s2,2,2,"ng-template",2),e.nrm(10,"rtl-on-chain-utxos",3),e.k0s()()()),2&o&&(e.R7$(),e.Y8G("selectedIndex",a.selectedTableIndex),e.R7$(3),e.Y8G("isDustUTXO",!1)("dustAmount",a.DUST_AMOUNT),e.R7$(6),e.Y8G("isDustUTXO",!0)("dustAmount",a.DUST_AMOUNT))},dependencies:[b.DJ,b.sA,b.UI,at.k,J.ES,J.mq,J.T8,xf,n2],encapsulation:2}))}return t(),s})();const l2=(t,s)=>[t,s];function r2(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",13),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=null==o?null:o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("active",i.activeLink===(null==n?null:n.link))("routerLink",e.l_i(3,l2,null==n?null:n.link,null==i.selectedTable?null:i.selectedTable.name)),e.R7$(),e.JRh(null==n?null:n.name)}}let c2=(()=>{var t;class s{constructor(i,o,a){this.store=i,this.router=o,this.activatedRoute=a,this.faExchangeAlt=I._qq,this.faChartPie=I.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"},{link:"sweep",name:"Sweep All"}],this.activeLink=this.links[0].link,this.tables=[{id:0,name:"utxos"},{id:1,name:"trans"},{id:2,name:"dustUtxos"}],this.selectedTable=this.tables[0],this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.selectedTable=this.tables.find(o=>o.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(o=>o instanceof j.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link,this.selectedTable=this.tables.find(l=>l.name===o.urlAfterRedirects.substring(o.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(W._c).pipe((0,x.Q)(this.unSubs[1])).subscribe(o=>{this.selNode=o}),this.store.select(E.$7).pipe((0,x.Q)(this.unSubs[2])).subscribe(o=>{this.balances=[{title:"Total Balance",dataValue:o.blockchainBalance.total_balance||0},{title:"Confirmed",dataValue:o.blockchainBalance.confirmed_balance||0},{title:"Unconfirmed",dataValue:o.blockchainBalance.unconfirmed_balance||0}]})}onSelectedTableIndexChanged(i){this.selectedTable=this.tables.find(o=>o.id===i)||this.tables[0],this.router.navigate(["./",this.activeLink,this.selectedTable.name],{relativeTo:this.activatedRoute})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(G.il),e.rXU(j.Ix),e.rXU(j.nX))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain"]],standalone:!1,decls:23,vars:6,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100",3,"selectedTableIndexChange","selectedTableIndex"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"On-chain Balance"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),e.nrm(7,"rtl-currency-unit-converter",6),e.k0s()()(),e.j41(8,"div",1),e.nrm(9,"fa-icon",2),e.j41(10,"span",3),e.EFF(11,"On-chain Transactions"),e.k0s()(),e.j41(12,"div",7)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",8),e.DNE(16,r2,2,6,"div",9),e.k0s(),e.nrm(17,"mat-tab-nav-panel",null,0),e.j41(19,"div",10),e.nrm(20,"router-outlet"),e.k0s(),e.j41(21,"div",11)(22,"rtl-utxo-tables",12),e.bIt("selectedTableIndexChange",function(f){return r.eBV(l),r.Njj(a.onSelectedTableIndexChanged(f))}),e.k0s()()()()()}if(2&o){const l=e.sdS(18);e.R7$(),e.Y8G("icon",a.faChartPie),e.R7$(6),e.Y8G("values",a.balances),e.R7$(2),e.Y8G("icon",a.faExchangeAlt),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links),e.R7$(6),e.Y8G("selectedTableIndex",null==a.selectedTable?null:a.selectedTable.id)}},dependencies:[y.Sq,ee.aY,B.RN,B.m2,b.DJ,b.sA,b.UI,J.Bu,J.hQ,J.Ql,st.f,j.n3,le.Wk,o2],encapsulation:2}))}return t(),s})();var p2=S(396);function m2(t,s){if(1&t&&(e.j41(0,"mat-option",6),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.SpI(" ",n.addressTp," ")}}let u2=(()=>{var t;class s{constructor(i,o,a){this.store=i,this.lndEffects=o,this.commonService=a,this.addressTypes=[],this.selectedAddressType=p.Ld[2],this.newAddress="",this.flgVersionCompatible=!0,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(i.version,"0.15.0"),this.addressTypes=this.flgVersionCompatible?p.Ld:p.Ld.filter(o=>"4"!==o.addressId)})}onGenerateAddress(){this.store.dispatch((0,N.XT)({payload:this.selectedAddressType})),this.lndEffects.setNewAddress.pipe((0,be.s)(1)).subscribe(i=>{this.newAddress=i,setTimeout(()=>{this.store.dispatch((0,Y.xO)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:p2.f}}}))},0)})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(G.il),e.rXU(Pe.L),e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-receive"]],standalone:!1,decls:10,vars:2,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","space-between center","fxLayoutAlign.gt-sm","start center"],["fxLayout","column","fxFlex","48","fxFlex.gt-md","25","fxLayoutAlign","start end",1,"mr-2"],["name","address_type","tabindex","1",3,"ngModelChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["mat-flat-button","","color","primary","tabindex","2",3,"click"],[3,"value"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"mat-label"),e.EFF(4,"Address Type"),e.k0s(),e.j41(5,"mat-select",3),e.mxI("ngModelChange",function(h){return e.DH7(a.selectedAddressType,h)||(a.selectedAddressType=h),h}),e.DNE(6,m2,2,2,"mat-option",4),e.k0s()(),e.j41(7,"div")(8,"button",5),e.bIt("click",function(){return a.onGenerateAddress()}),e.EFF(9,"Generate Address"),e.k0s()()()()),2&o&&(e.R7$(5),e.R50("ngModel",a.selectedAddressType),e.R7$(),e.Y8G("ngForOf",a.addressTypes))},dependencies:[y.Sq,g.BC,g.vS,$.$z,R.rl,R.nJ,b.DJ,b.sA,b.UI,O.VO,ae.wT],encapsulation:2}))}return t(),s})();var h2=S(2852);const d2=["form"],_2=["formSweepAll"],f2=["stepper"];function g2(t,s){if(1&t&&(e.j41(0,"div",16),e.nrm(1,"fa-icon",17),e.j41(2,"span",18)(3,"div"),e.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(5,"span",19)(6,"span"),e.EFF(7),e.k0s(),e.j41(8,"span"),e.EFF(9),e.k0s(),e.j41(10,"span"),e.EFF(11),e.k0s(),e.j41(12,"span"),e.EFF(13),e.k0s(),e.j41(14,"span"),e.EFF(15),e.k0s()()()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faInfoCircle),e.R7$(6),e.SpI("- High: ",n.recommendedFee.fastestFee||"Unknown"),e.R7$(2),e.SpI("- Medium: ",n.recommendedFee.halfHourFee||"Unknown"),e.R7$(2),e.SpI("- Low: ",n.recommendedFee.hourFee||"Unknown"),e.R7$(2),e.SpI("- Economy: ",n.recommendedFee.economyFee||"Unknown"),e.R7$(2),e.SpI("- Minimum: ",n.recommendedFee.minimumFee||"Unknown")}}function C2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Bitcoin address is required."),e.k0s())}function y2(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.amountError)}}function b2(t,s){if(1&t&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.JRh(n)}}function F2(t,s){if(1&t&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n.id),e.R7$(),e.SpI(" ",n.name," ")}}function x2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function v2(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",40)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.j41(3,"input",41,4),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.transactionBlocks,o)||(a.transactionBlocks=o),r.Njj(o)}),e.k0s(),e.DNE(5,x2,2,0,"mat-error",23),e.k0s()}if(2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.transactionBlocks),e.R7$(2),e.Y8G("ngIf",!n.transactionBlocks)}}function T2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function k2(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",40)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.j41(3,"input",42,5),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.transactionFees,o)||(a.transactionFees=o),r.Njj(o)}),e.k0s(),e.DNE(5,T2,2,0,"mat-error",23),e.k0s()}if(2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.transactionFees),e.R7$(2),e.Y8G("ngIf",!n.transactionFees)}}function S2(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.sendFundError)}}function R2(t,s){if(1&t&&(e.j41(0,"div",43),e.nrm(1,"fa-icon",17),e.DNE(2,S2,2,1,"span",23),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.sendFundError)}}function E2(t,s){if(1&t){const n=e.RV6();e.j41(0,"form",20,1),e.bIt("submit",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSendFunds())})("reset",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.j41(2,"mat-form-field",21)(3,"mat-label"),e.EFF(4,"Bitcoin Address"),e.k0s(),e.j41(5,"input",22,2),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.transactionAddress,o)||(a.transactionAddress=o),r.Njj(o)}),e.k0s(),e.DNE(7,C2,2,0,"mat-error",23),e.k0s(),e.j41(8,"mat-form-field",24)(9,"mat-label"),e.EFF(10,"Amount"),e.k0s(),e.j41(11,"input",25,3),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.transactionAmount,o)||(a.transactionAmount=o),r.Njj(o)}),e.k0s(),e.j41(13,"span",26),e.EFF(14),e.k0s(),e.DNE(15,y2,2,1,"mat-error",23),e.k0s(),e.j41(16,"mat-form-field",27)(17,"mat-label"),e.EFF(18,"Amount Unit"),e.k0s(),e.j41(19,"mat-select",28),e.bIt("selectionChange",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onAmountUnitChange(o))}),e.DNE(20,b2,2,2,"mat-option",29),e.k0s()(),e.j41(21,"div",30)(22,"mat-form-field",31)(23,"mat-label"),e.EFF(24,"Transaction Type"),e.k0s(),e.j41(25,"mat-select",32),e.mxI("valueChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selTransType,o)||(a.selTransType=o),r.Njj(o)}),e.DNE(26,F2,2,2,"mat-option",29),e.k0s()(),e.DNE(27,v2,6,4,"mat-form-field",33)(28,k2,6,4,"mat-form-field",33),e.k0s(),e.nrm(29,"div",34),e.DNE(30,R2,3,2,"div",35),e.j41(31,"div",36)(32,"button",37),e.EFF(33,"Clear Fields"),e.k0s(),e.j41(34,"button",38),e.EFF(35,"Send Funds"),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(5),e.R50("ngModel",n.transactionAddress),e.R7$(2),e.Y8G("ngIf",!n.transactionAddress),e.R7$(4),e.Y8G("step",100)("min",0),e.R50("ngModel",n.transactionAmount),e.R7$(3),e.SpI("",n.selAmountUnit," "),e.R7$(),e.Y8G("ngIf",!n.transactionAmount),e.R7$(4),e.Y8G("value",n.selAmountUnit),e.R7$(),e.Y8G("ngForOf",n.amountUnits),e.R7$(5),e.R50("value",n.selTransType),e.R7$(),e.Y8G("ngForOf",n.transTypes),e.R7$(),e.Y8G("ngIf","1"===n.selTransType),e.R7$(),e.Y8G("ngIf","2"===n.selTransType),e.R7$(2),e.Y8G("ngIf",""!==n.sendFundError)}}function I2(t,s){if(1&t&&e.EFF(0),2&t){const n=e.XpG(3);e.JRh(n.passwordFormLabel)}}function w2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function L2(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-step",47)(1,"form",66),e.DNE(2,I2,1,1,"ng-template",60),e.j41(3,"div",7)(4,"mat-form-field",18)(5,"mat-label"),e.EFF(6,"Password"),e.k0s(),e.nrm(7,"input",67),e.DNE(8,w2,2,0,"mat-error",23),e.k0s()(),e.j41(9,"div",68)(10,"button",63),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onAuthenticate())}),e.EFF(11,"Confirm"),e.k0s()()()()}if(2&t){const n=e.XpG(2);e.Y8G("stepControl",n.passwordFormGroup)("editable",n.flgEditable),e.R7$(),e.Y8G("formGroup",n.passwordFormGroup),e.R7$(7),e.Y8G("ngIf",null==n.passwordFormGroup.controls.password.errors?null:n.passwordFormGroup.controls.password.errors.required)}}function j2(t,s){if(1&t&&e.EFF(0),2&t){const n=e.XpG(2);e.JRh(n.sendFundFormLabel)}}function G2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Bitcoin address is required."),e.k0s())}function D2(t,s){if(1&t&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n.id),e.R7$(),e.SpI(" ",n.name," ")}}function N2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function P2(t,s){if(1&t&&(e.j41(0,"mat-form-field",69)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.nrm(3,"input",70),e.DNE(4,N2,2,0,"mat-error",23),e.k0s()),2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R7$(),e.Y8G("ngIf",null==n.sendFundFormGroup.controls.transactionBlocks.errors?null:n.sendFundFormGroup.controls.transactionBlocks.errors.required)}}function B2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function A2(t,s){if(1&t&&(e.j41(0,"mat-form-field",69)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.nrm(3,"input",71),e.DNE(4,B2,2,0,"mat-error",23),e.k0s()),2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R7$(),e.Y8G("ngIf",null==n.sendFundFormGroup.controls.transactionFees.errors?null:n.sendFundFormGroup.controls.transactionFees.errors.required)}}function $2(t,s){if(1&t&&e.EFF(0),2&t){const n=e.XpG(2);e.JRh(n.confirmFormLabel)}}function M2(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.sendFundError)}}function O2(t,s){if(1&t&&(e.j41(0,"div",43),e.nrm(1,"fa-icon",17),e.DNE(2,M2,2,1,"span",23),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.sendFundError)}}function V2(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",44)(1,"mat-vertical-stepper",45,6),e.bIt("selectionChange",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.stepSelectionChanged(o))}),e.DNE(3,L2,12,4,"mat-step",46),e.j41(4,"mat-step",47)(5,"form",48),e.DNE(6,j2,1,1,"ng-template",49),e.j41(7,"div",50)(8,"mat-form-field",51)(9,"mat-label"),e.EFF(10,"Bitcoin Address"),e.k0s(),e.nrm(11,"input",52),e.DNE(12,G2,2,0,"mat-error",23),e.k0s(),e.j41(13,"mat-form-field",53)(14,"mat-label"),e.EFF(15,"Transaction Type"),e.k0s(),e.j41(16,"mat-select",54),e.DNE(17,D2,2,2,"mat-option",29),e.k0s()(),e.DNE(18,P2,5,3,"mat-form-field",55)(19,A2,5,3,"mat-form-field",55),e.k0s(),e.j41(20,"div",56)(21,"button",57),e.EFF(22,"Next"),e.k0s()()()(),e.j41(23,"mat-step",58)(24,"form",59),e.DNE(25,$2,1,1,"ng-template",60),e.j41(26,"div",44)(27,"div",61),e.nrm(28,"fa-icon",62),e.j41(29,"span"),e.EFF(30,"You are about to sweep all funds from RTL. Are you sure?"),e.k0s()(),e.DNE(31,O2,3,2,"div",35),e.j41(32,"div",56)(33,"button",63),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSendFunds())}),e.EFF(34,"Sweep All Funds"),e.k0s()()()()()(),e.j41(35,"div",64)(36,"button",65),e.EFF(37),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(),e.Y8G("linear",!0),e.R7$(2),e.Y8G("ngIf",!n.appConfig.SSO.rtlSSO),e.R7$(),e.Y8G("stepControl",n.sendFundFormGroup)("editable",n.flgEditable),e.R7$(),e.Y8G("formGroup",n.sendFundFormGroup),e.R7$(7),e.Y8G("ngIf",null==n.sendFundFormGroup.controls.transactionAddress.errors?null:n.sendFundFormGroup.controls.transactionAddress.errors.required),e.R7$(5),e.Y8G("ngForOf",n.transTypes),e.R7$(),e.Y8G("ngIf","1"===n.sendFundFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf","2"===n.sendFundFormGroup.controls.selTransType.value),e.R7$(4),e.Y8G("stepControl",n.confirmFormGroup),e.R7$(),e.Y8G("formGroup",n.confirmFormGroup),e.R7$(4),e.Y8G("icon",n.faExclamationTriangle),e.R7$(3),e.Y8G("ngIf",""!==n.sendFundError),e.R7$(5),e.Y8G("mat-dialog-close",!1),e.R7$(),e.JRh(n.flgValidated?"Close":"Cancel")}}let Y2=(()=>{var t;class s{constructor(i,o,a,l,h,f,P,w,M,BC,AC){this.dialogRef=i,this.data=o,this.logger=a,this.dataService=l,this.store=h,this.rtlEffects=f,this.commonService=P,this.decimalPipe=w,this.snackBar=M,this.actions=BC,this.formBuilder=AC,this.faExclamationTriangle=I.zpE,this.faInfoCircle=I.iW_,this.sweepAll=!1,this.addressTypes=[],this.selectedAddress={},this.blockchainBalance={},this.information={},this.newAddress="",this.transactionAddress="",this.transactionAmount=null,this.transactionFees=null,this.transactionBlocks=null,this.transTypes=[{id:"1",name:"Target Confirmation Blocks"},{id:"2",name:"Fee"}],this.selTransType="1",this.fiatConversion=!1,this.amountUnits=p.A0,this.selAmountUnit=p.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=p.k,this.sendFundError="",this.flgValidated=!1,this.flgEditable=!0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds",this.confirmFormLabel="Confirm sweep",this.amountError="Amount is Required.",this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.dataService.getRecommendedFeeRates().pipe((0,x.Q)(this.unSubs[0])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}}),this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[g.k0.required]],password:["",[g.k0.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",g.k0.required],transactionBlocks:[null],transactionFees:[null],selTransType:["1",g.k0.required]}),this.confirmFormGroup=this.formBuilder.group({}),this.sendFundFormGroup.controls.selTransType.valueChanges.pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{"1"===i?(this.sendFundFormGroup.controls.transactionBlocks.setValidators([g.k0.required]),this.sendFundFormGroup.controls.transactionBlocks.setValue(null),this.sendFundFormGroup.controls.transactionFees.setValidators(null),this.sendFundFormGroup.controls.transactionFees.setValue(null)):(this.sendFundFormGroup.controls.transactionBlocks.setValidators(null),this.sendFundFormGroup.controls.transactionBlocks.setValue(null),this.sendFundFormGroup.controls.transactionFees.setValidators([g.k0.required]),this.sendFundFormGroup.controls.transactionFees.setValue(null))}),this.store.select(W.qv).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.appConfig=i}),this.store.select(W._c).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.fiatConversion=i.settings.fiatConversion,this.amountUnits=i.settings.currencyUnits,this.logger.info(i)}),this.actions.pipe((0,x.Q)(this.unSubs[4]),(0,L.p)(i=>i.type===p.QP.UPDATE_API_CALL_STATUS_LND||i.type===p.QP.SET_CHANNEL_TRANSACTION_RES_LND)).subscribe(i=>{i.type===p.QP.SET_CHANNEL_TRANSACTION_RES_LND&&(this.store.dispatch((0,Y.UI)({payload:this.sweepAll?"All Funds Sent Successfully!":"Fund Sent Successfully!"})),this.dialogRef.close()),i.type===p.QP.UPDATE_API_CALL_STATUS_LND&&i.payload.status===p.wn.ERROR&&"SetChannelTransaction"===i.payload.action&&(this.sendFundError=i.payload.message)})}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,Y.oz)({payload:h2(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,be.s)(1)).subscribe(i=>{"ERROR"!==i?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onSendFunds(){if(this.invalidValues)return!0;this.sendFundError="";const i={amount:this.transactionAmount?this.transactionAmount:0,sendAll:this.sweepAll};this.sweepAll?(i.address=this.sendFundFormGroup.controls.transactionAddress.value,"1"===this.sendFundFormGroup.controls.selTransType.value&&(i.blocks=this.sendFundFormGroup.controls.transactionBlocks.value),"2"===this.sendFundFormGroup.controls.selTransType.value&&(i.fees=this.sendFundFormGroup.controls.transactionFees.value)):(i.address=this.transactionAddress,"1"===this.selTransType&&(i.blocks=this.transactionBlocks),"2"===this.selTransType&&(i.fees=this.transactionFees)),this.transactionAmount&&this.selAmountUnit!==p.BQ.SATS?this.commonService.convertCurrency(this.transactionAmount,this.selAmountUnit===this.amountUnits[2]?p.BQ.OTHER:this.selAmountUnit,p.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,x.Q)(this.unSubs[5])).subscribe({next:o=>{this.selAmountUnit=p.BQ.SATS,i.amount=+(this.decimalPipe.transform(o[this.amountUnits[0]],this.currencyUnitFormats[this.amountUnits[0]])?.replace(/,/g,"")||0),this.store.dispatch((0,N.aB)({payload:i}))},error:o=>{this.transactionAmount=null,this.selAmountUnit=p.BQ.SATS,this.amountError="Conversion Error: "+o}}):this.store.dispatch((0,N.aB)({payload:i}))}get invalidValues(){return this.sweepAll?!this.sendFundFormGroup.controls.transactionAddress.value||""===this.sendFundFormGroup.controls.transactionAddress.value||"1"===this.sendFundFormGroup.controls.selTransType.value&&(!this.sendFundFormGroup.controls.transactionBlocks.value||this.sendFundFormGroup.controls.transactionBlocks.value<=0)||"2"===this.sendFundFormGroup.controls.selTransType.value&&(!this.sendFundFormGroup.controls.transactionFees.value||this.sendFundFormGroup.controls.transactionFees.value<=0):!this.transactionAddress||""===this.transactionAddress||!this.transactionAmount||this.transactionAmount<=0||"1"===this.selTransType&&(!this.transactionBlocks||this.transactionBlocks<=0)||"2"===this.selTransType&&(!this.transactionFees||this.transactionFees<=0)}resetData(){this.sendFundError="",this.selTransType="1",this.transactionAddress="",this.transactionBlocks=null,this.transactionFees=null,this.sweepAll||(this.transactionAmount=null)}stepSelectionChanged(i){switch(this.sendFundError="",i.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds";break;case 1:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds";break;case 2:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds | Address: "+this.sendFundFormGroup.controls.transactionAddress.value+" | "+this.transTypes[this.sendFundFormGroup.controls.selTransType.value-1].name+("2"===this.sendFundFormGroup.controls.selTransType.value?" (Sats/vByte)":"")+": "+("1"===this.sendFundFormGroup.controls.selTransType.value?this.sendFundFormGroup.controls.transactionBlocks.value:this.sendFundFormGroup.controls.transactionFees.value)}i.selectedIndex{this.selAmountUnit=i.value,o.transactionAmount=+(o.decimalPipe.transform(f[l],o.currencyUnitFormats[l])?.replace(/,/g,"")||0)},error:f=>{o.transactionAmount=null,this.amountError="Conversion Error: "+f,this.selAmountUnit=a,l=a}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(V.gP),e.rXU(Fe.u),e.rXU(G.il),e.rXU(Ve.H),e.rXU(z.h),e.rXU(y.QX),e.rXU(we.UG),e.rXU(ce.En),e.rXU(g.ze))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-send-modal"]],viewQuery:function(o,a){if(1&o&&(e.GBs(d2,7),e.GBs(_2,5),e.GBs(f2,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.form=l.first),e.mGM(l=e.lsd())&&(a.formSweepAll=l.first),e.mGM(l=e.lsd())&&(a.stepper=l.first)}},standalone:!1,decls:13,vars:5,consts:[["sweepAllBlock",""],["form","ngForm"],["address","ngModel"],["amnt","ngModel"],["blocks","ngModel"],["fees","ngModel"],["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],["fxLayout","column",1,"padding-gap-x-large"],["fxFlex","100","class","alert alert-info mb-2",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100","class","overflow-x-hidden",3,"submit","reset",4,"ngIf","ngIfElse"],["fxFlex","100",1,"alert","alert-info","mb-2"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["fxLayout","column","fxFlex.gt-sm","55"],["autoFocus","","matInput","","name","address","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex.gt-sm","30"],["matInput","","name","amt","type","number","required","",3,"ngModelChange","step","min","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex.gt-sm","10","fxLayoutAlign","start end"],["required","","name","amountUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","60","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxLayout","column","fxFlex","48"],[3,"valueChange","value"],["fxFlex","48",4,"ngIf"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","40","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit"],[3,"value"],["fxFlex","48"],["matInput","","type","number","name","blcks","required","",3,"ngModelChange","step","min","ngModel"],["matInput","","type","number","name","chainFees","required","",3,"ngModelChange","step","min","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl","editable"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxFlex","98","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxLayout","column","fxFlex.gt-sm","45"],["matInput","","formControlName","transactionAddress","name","address","required",""],["fxLayout","column","fxFlex.gt-sm","25"],["formControlName","selTransType"],["fxFlex.gt-sm","25","fxLayoutAlign","start end",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","type","button","matStepperNext",""],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["fxFlex","100",1,"w-100","alert","alert-warn"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["mat-button","","color","primary","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","type","button","default","",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["autoFocus","","matInput","","type","password","formControlName","password","required",""],["fxLayout","row",1,"mt-2"],["fxFlex.gt-sm","25","fxLayoutAlign","start end"],["matInput","","formControlName","transactionBlocks","type","number","name","blcks","required","",3,"step","min"],["matInput","","formControlName","transactionFees","type","number","name","chainFees","required","",3,"step","min"]],template:function(o,a){if(1&o&&(e.j41(0,"div",7)(1,"div",8)(2,"mat-card-header",9)(3,"div",10)(4,"span",11),e.EFF(5),e.k0s()(),e.j41(6,"button",12),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",13),e.DNE(9,g2,16,6,"div",14)(10,E2,36,14,"form",15),e.k0s()()(),e.DNE(11,V2,38,15,"ng-template",null,0,e.C5r)),2&o){const l=e.sdS(12);e.R7$(5),e.JRh(a.sweepAll?"Sweep All Funds":"Send Funds"),e.R7$(),e.Y8G("mat-dialog-close",!1),e.R7$(3),e.Y8G("ngIf",a.recommendedFee.minimumFee),e.R7$(),e.Y8G("ngIf",!a.sweepAll)("ngIfElse",l)}},dependencies:[y.Sq,y.bT,g.qT,g.me,g.Q0,g.BC,g.cb,g.YS,g.VZ,g.vS,g.cV,g.j4,g.JD,ee.aY,ne.tx,$.$z,B.m2,B.MM,Z.fg,R.rl,R.nJ,R.TL,R.yw,b.DJ,b.sA,b.UI,O.VO,ae.wT,de.V5,de.Ti,de.M6,de.F7,pe.N,ye.V],encapsulation:2}))}return t(),s})(),Bt=(()=>{var t;class s{constructor(i,o){this.store=i,this.activatedRoute=o,this.sweepAll=!1,this.unSubs=[new C.B,new C.B]}ngOnInit(){this.activatedRoute.data.pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.sweepAll=i.sweepAll})}openSendFundsModal(){this.store.dispatch((0,Y.xO)({payload:{data:{sweepAll:this.sweepAll,component:Y2}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(G.il),e.rXU(j.nX))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-send"]],standalone:!1,decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"div",1)(2,"button",2),e.bIt("click",function(){return a.openSendFundsModal()}),e.EFF(3),e.k0s()()()),2&o&&(e.R7$(3),e.JRh(a.sweepAll?"Sweep All":"Send Funds"))},dependencies:[$.$z,b.DJ,b.sA,b.UI],encapsulation:2}))}return t(),s})();const U2=t=>({"mt-1":t}),At=t=>({"dashboard-card-content":!0,"error-border":t});function X2(t,s){1&t&&e.nrm(0,"mat-progress-bar",26)}function H2(t,s){if(1&t&&e.nrm(0,"rtl-node-info",27),2&t){const n=e.XpG(3);e.Y8G("information",n.information)("showColorFieldSeparately",!0)}}function q2(t,s){if(1&t&&e.nrm(0,"rtl-channel-status-info",28),2&t){const n=e.XpG(3);e.Y8G("channelsStatus",n.channelsStatus)("errorMessage",n.errorMessages[3]+" "+n.errorMessages[4])}}function z2(t,s){if(1&t&&e.nrm(0,"rtl-fee-info",29),2&t){const n=e.XpG(3);e.Y8G("fees",n.fees)("errorMessage",n.errorMessages[2])}}function J2(t,s){if(1&t&&(e.j41(0,"mat-grid-tile",13)(1,"div",14)(2,"div",15)(3,"div",16),e.nrm(4,"fa-icon",17),e.j41(5,"span"),e.EFF(6),e.k0s()()(),e.j41(7,"div",18)(8,"mat-card",19)(9,"mat-card-content",20),e.DNE(10,X2,1,0,"mat-progress-bar",21),e.j41(11,"div",22),e.DNE(12,H2,1,2,"rtl-node-info",23)(13,q2,1,2,"rtl-channel-status-info",24)(14,z2,1,2,"rtl-fee-info",25),e.k0s()()()()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("colspan",n.cols)("rowspan",n.rows),e.R7$(4),e.Y8G("icon",n.icon),e.R7$(2),e.JRh(n.title),e.R7$(3),e.Y8G("ngClass",e.eq3(10,At,"node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"status"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusPendingChannels.status===i.apiCallStatusEnum.ERROR)||"fee"===n.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf","node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"status"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusPendingChannels.status===i.apiCallStatusEnum.INITIATED)||"fee"===n.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",n.id),e.R7$(),e.Y8G("ngSwitchCase","node"),e.R7$(),e.Y8G("ngSwitchCase","status"),e.R7$(),e.Y8G("ngSwitchCase","fee")}}function Q2(t,s){if(1&t&&(e.j41(0,"mat-grid-list",11),e.DNE(1,J2,15,12,"mat-grid-tile",12),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngForOf",n.nodeCards)}}function W2(t,s){1&t&&e.nrm(0,"mat-progress-bar",26)}function Z2(t,s){1&t&&e.eu8(0)}function K2(t,s){if(1&t&&(e.j41(0,"div",34),e.DNE(1,Z2,1,0,"ng-container",35),e.k0s()),2&t){const n=e.XpG(2),i=e.sdS(9),o=e.sdS(11);e.R7$(),e.Y8G("ngTemplateOutlet",n.apiCallStatusNetwork.status===n.apiCallStatusEnum.ERROR?i:o)}}function eg(t,s){1&t&&e.eu8(0)}function tg(t,s){if(1&t&&(e.j41(0,"div",34),e.DNE(1,eg,1,0,"ng-container",35),e.k0s()),2&t){const n=e.XpG(2),i=e.sdS(9),o=e.sdS(13);e.R7$(),e.Y8G("ngTemplateOutlet",n.apiCallStatusNetwork.status===n.apiCallStatusEnum.ERROR?i:o)}}function ng(t,s){1&t&&e.eu8(0)}function ig(t,s){if(1&t&&(e.j41(0,"div",34),e.DNE(1,ng,1,0,"ng-container",35),e.k0s()),2&t){const n=e.XpG(2),i=e.sdS(9),o=e.sdS(15);e.R7$(),e.Y8G("ngTemplateOutlet",n.apiCallStatusNetwork.status===n.apiCallStatusEnum.ERROR?i:o)}}function ag(t,s){if(1&t&&(e.j41(0,"mat-grid-tile",30)(1,"mat-card",31)(2,"mat-card-content",32),e.DNE(3,W2,1,0,"mat-progress-bar",21),e.j41(4,"div",22),e.DNE(5,K2,2,1,"div",33)(6,tg,2,1,"div",33)(7,ig,2,1,"div",33),e.k0s()()()()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("colspan",n.cols)("rowspan",n.rows),e.R7$(2),e.Y8G("ngClass",e.eq3(8,At,i.apiCallStatusNetwork.status===i.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf",i.apiCallStatusNetwork.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",n.id),e.R7$(),e.Y8G("ngSwitchCase","general"),e.R7$(),e.Y8G("ngSwitchCase","channels"),e.R7$(),e.Y8G("ngSwitchCase","degrees")}}function sg(t,s){if(1&t&&(e.j41(0,"div",36)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessages[1])}}function og(t,s){if(1&t&&(e.j41(0,"div",37)(1,"div")(2,"h4",38),e.EFF(3,"Network Capacity"),e.k0s(),e.j41(4,"div",39),e.EFF(5),e.nI1(6,"number"),e.k0s()(),e.j41(7,"div")(8,"h4",38),e.EFF(9,"Number of Nodes"),e.k0s(),e.j41(10,"div",39),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div")(14,"h4",38),e.EFF(15,"Number of Channels"),e.k0s(),e.j41(16,"span",39),e.EFF(17),e.nI1(18,"number"),e.k0s()()()),2&t){const n=e.XpG();e.R7$(5),e.SpI("",e.bMT(6,3,n.networkInfo.total_network_capacity)," Sats"),e.R7$(6),e.JRh(e.bMT(12,5,n.networkInfo.num_nodes)),e.R7$(6),e.JRh(e.bMT(18,7,n.networkInfo.num_channels))}}function lg(t,s){if(1&t&&(e.j41(0,"div",37)(1,"div")(2,"h4",38),e.EFF(3,"Max Channel Size"),e.k0s(),e.j41(4,"div",39),e.EFF(5),e.nI1(6,"number"),e.k0s()(),e.j41(7,"div")(8,"h4",38),e.EFF(9,"Avg Channel Size"),e.k0s(),e.j41(10,"div",39),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div")(14,"h4",38),e.EFF(15,"Min Channel Size"),e.k0s(),e.j41(16,"span",39),e.EFF(17),e.nI1(18,"number"),e.k0s()()()),2&t){const n=e.XpG();e.R7$(5),e.JRh(e.bMT(6,3,n.networkInfo.max_channel_size)),e.R7$(6),e.JRh(e.bMT(12,5,n.networkInfo.avg_channel_size)),e.R7$(6),e.JRh(e.bMT(18,7,n.networkInfo.min_channel_size))}}function rg(t,s){if(1&t&&(e.j41(0,"div",37)(1,"div")(2,"h4",38),e.EFF(3,"Max Out Degree"),e.k0s(),e.j41(4,"div",39),e.EFF(5),e.nI1(6,"number"),e.k0s()(),e.j41(7,"div")(8,"h4",38),e.EFF(9,"Avg Out Degree"),e.k0s(),e.j41(10,"div",39),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div",40),e.nrm(14,"h4",38)(15,"span",39),e.k0s()()),2&t){const n=e.XpG();e.R7$(5),e.JRh(e.bMT(6,2,n.networkInfo.max_out_degree)),e.R7$(6),e.JRh(e.i5U(12,4,n.networkInfo.avg_out_degree,"1.0-2"))}}let cg=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.commonService=o,this.store=a,this.faProjectDiagram=I.qFF,this.faBolt=I.zm_,this.faServer=I.D6w,this.faNetworkWired=I.eGi,this.information={},this.channelsStatus={},this.networkInfo={},this.networkCards=[],this.nodeCards=[],this.screenSize="",this.screenSizeEnum=p.f7,this.userPersonaEnum=p.HW,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusNetwork=null,this.apiCallStatusFees=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===p.f7.XS?(this.networkCards=[{id:"general",cols:3,rows:1},{id:"channels",cols:3,rows:1},{id:"degrees",cols:3,rows:1}],this.nodeCards=[{id:"node",icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:3,rows:1},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:3,rows:1}]):(this.networkCards=[{id:"general",cols:1,rows:1},{id:"channels",cols:1,rows:1},{id:"degrees",cols:1,rows:1}],this.nodeCards=[{id:"node",icon:this.faServer,title:"Node Information",cols:1,rows:1},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:1,rows:1},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:1,rows:1}])}ngOnInit(){this.store.select(E.gj).pipe((0,x.Q)(this.unSubs[0]),(0,me.E)(this.store.select(W._c))).subscribe(([i,o])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=i.apiCallStatus,this.apiCallStatusNodeInfo.status===p.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=o,this.information=i.information}),this.store.select(E.tA).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessages[1]="",this.apiCallStatusNetwork=i.apiCallStatus,this.apiCallStatusNetwork.status===p.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusNetwork.message?JSON.stringify(this.apiCallStatusNetwork.message):this.apiCallStatusNetwork.message?this.apiCallStatusNetwork.message:""),this.networkInfo=i.networkInfo}),this.store.select(E.oR).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessages[2]="",this.apiCallStatusFees=i.apiCallStatus,this.apiCallStatusFees.status===p.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=i.fees}),this.store.select(E.Uv).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessages[4]="",this.apiCallStatusPendingChannels=i.apiCallStatus,this.apiCallStatusPendingChannels.status===p.wn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPendingChannels.message?JSON.stringify(this.apiCallStatusPendingChannels.message):this.apiCallStatusPendingChannels.message?this.apiCallStatusPendingChannels.message:""),this.channelsStatus.pending={num_channels:i.pendingChannelsSummary.open?.num_channels,capacity:i.pendingChannelsSummary.open?.limbo_balance},this.channelsStatus.closing={num_channels:(i.pendingChannelsSummary.closing?.num_channels||0)+(i.pendingChannelsSummary.force_closing?.num_channels||0)+(i.pendingChannelsSummary.waiting_close?.num_channels||0),capacity:i.pendingChannelsSummary.total_limbo_balance}}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[4])).subscribe(i=>{this.errorMessages[3]="",this.apiCallStatusChannels=i.apiCallStatus,this.apiCallStatusChannels.status===p.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:""),this.channelsStatus.active=i.channelsSummary.active,this.channelsStatus.inactive=i.channelsSummary.inactive,this.logger.info(i)})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-network-info"]],standalone:!1,decls:16,vars:6,consts:[["errorBlock",""],["generalBlock",""],["channelsBlock",""],["degreesBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch",1,"mb-4"],["cols","3","rowHeight","330px",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container",3,"ngClass"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","3","rowHeight","250px"],["fxLayout","row",3,"colspan","rowspan",4,"ngFor","ngForOf"],["cols","3","rowHeight","330px"],["class","node-grid-tile",3,"colspan","rowspan",4,"ngFor","ngForOf"],[1,"node-grid-tile",3,"colspan","rowspan"],["fxLayout","column","fxLayoutAlign","stretch start","fxFlex","100",1,"h-100"],["fxLayout","row","fxLayoutAlign","start start",1,"w-100"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container"],[1,"mr-1",3,"icon"],["fxLayout","column","fxLayoutAlign","stretch center","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","center stretch",1,"w-100","h-93"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","w-96","h-93"],["fxLayout","column","fxFlex","100",1,"mt-2",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxLayout","row",3,"colspan","rowspan"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","h-93"],["fxLayout","column","fxFlex","100",3,"ngClass"],["fxFlex","100",4,"ngSwitchCase"],["fxFlex","100"],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"mt-2"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxFlex","20"]],template:function(o,a){1&o&&(e.j41(0,"div",4),e.DNE(1,Q2,2,1,"mat-grid-list",5),e.j41(2,"div",6),e.nrm(3,"fa-icon",7),e.j41(4,"span",8),e.EFF(5,"Network"),e.k0s()(),e.j41(6,"mat-grid-list",9),e.DNE(7,ag,8,10,"mat-grid-tile",10),e.k0s()(),e.DNE(8,sg,3,1,"ng-template",null,0,e.C5r)(10,og,19,9,"ng-template",null,1,e.C5r)(12,lg,19,9,"ng-template",null,2,e.C5r)(14,rg,16,7,"ng-template",null,3,e.C5r)),2&o&&(e.R7$(),e.Y8G("ngIf",a.selNode.settings.userPersona!==a.userPersonaEnum.OPERATOR),e.R7$(),e.Y8G("ngClass",e.eq3(4,U2,a.screenSize!==a.screenSizeEnum.XS)),e.R7$(),e.Y8G("icon",a.faProjectDiagram),e.R7$(4),e.Y8G("ngForOf",a.networkCards))},dependencies:[y.YU,y.Sq,y.bT,y.T3,y.ux,y.e1,ee.aY,B.RN,B.m2,Le.B_,Le.NS,D.HM,b.DJ,b.sA,b.UI,U.PW,bt,Ft,xt,y.QX],encapsulation:2}))}return t(),s})();function pg(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let mg=(()=>{var t;class s{constructor(i){this.router=i,this.faDownload=I.cbP,this.links=[{link:"bckup",name:"Backup"},{link:"restore",name:"Restore"}],this.activeLink=this.links[0].link,this.unSubs=[new C.B,new C.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(o=>o instanceof j.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-backup"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Channels Backup"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,pg,2,4,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8),e.nrm(12,"router-outlet"),e.k0s()()()()),2&o){const l=e.sdS(10);e.R7$(),e.Y8G("icon",a.faDownload),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[y.Sq,ee.aY,B.RN,B.m2,b.DJ,b.sA,b.UI,J.Bu,J.hQ,J.Ql,j.n3,le.Wk],encapsulation:2}))}return t(),s})();const ug=t=>({"overflow-auto error-border":t,"overflow-auto":!0}),hg=()=>["no_channel"],dg=t=>({"max-width":t}),_g=t=>({"display-none":t});function fg(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",24)(1,"h4",25),e.EFF(2),e.k0s(),e.j41(3,"div",26)(4,"button",27),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onRestoreChannels({}))}),e.EFF(5,"Restore All"),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",n.selNode.settings.channelBackupPath,"/restore")}}function gg(t,s){if(1&t&&(e.j41(0,"div",28)(1,"h4",25),e.EFF(2),e.k0s(),e.j41(3,"h4",29),e.EFF(4,"All channel backup file not found! To perform channel restoration, channel backup file/s must be placed at the above location."),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",n.selNode.settings.channelBackupPath,"/restore")}}function Cg(t,s){if(1&t&&(e.j41(0,"div",28)(1,"h4",25),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",n.selNode.settings.channelBackupPath,"/restore")}}function yg(t,s){1&t&&e.nrm(0,"mat-progress-bar",30)}function bg(t,s){1&t&&(e.j41(0,"th",31),e.EFF(1,"Channel Point"),e.k0s())}function Fg(t,s){if(1&t&&(e.j41(0,"td",32)(1,"div",33)(2,"span",34),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,dg,i.screenSize===i.screenSizeEnum.XS?"25rem":"60rem")),e.R7$(2),e.JRh(null==n?null:n.channel_point)}}function xg(t,s){1&t&&(e.j41(0,"th",35)(1,"div",36),e.EFF(2,"Actions"),e.k0s()())}function vg(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",32)(1,"span",37)(2,"button",38),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onRestoreChannels(o))}),e.EFF(3,"Restore"),e.k0s()()()}}function Tg(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No singular channel backups available."),e.k0s())}function kg(t,s){if(1&t&&(e.j41(0,"td",39),e.DNE(1,Tg,2,0,"p",40),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",!n.channels||!n.channels.data||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)}}function Sg(t,s){if(1&t&&e.nrm(0,"tr",41),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,_g,n.channels&&n.channels.data&&(null==n.channels||null==n.channels.data?null:n.channels.data.length)>0))}}function Rg(t,s){1&t&&e.nrm(0,"tr",42)}function Eg(t,s){1&t&&e.nrm(0,"tr",43)}let Ig=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.store=o,this.lndEffects=a,this.commonService=l,this.pageSize=p.md,this.pageSizeOptions=p.xp,this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.channels=new _.I6([]),this.allRestoreExists=!1,this.flgLoading=[!0],this.selFilter="",this.screenSize="",this.screenSizeEnum=p.f7,this.unSubs=[new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,N.$J)()),this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.lndEffects.setRestoreChannelList.pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.allRestoreExists=i.all_restore_exists,this.channelsData=i.files,this.channelsData.length>0&&this.loadRestoreTable(this.channelsData),("error"!==this.flgLoading[0]||i&&i.files)&&(this.flgLoading[0]=!1),this.logger.info(i)})}ngAfterViewInit(){this.channelsData&&this.channelsData.length>0&&this.loadRestoreTable(this.channelsData)}onRestoreChannels(i){this.store.dispatch((0,N.Lf)({payload:{channelPoint:i.channel_point?i.channel_point:"ALL"}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadRestoreTable(i){this.channels=new _.I6([...i]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(o,a)=>(o.channel_point?o.channel_point.toLowerCase():"").includes(a),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(Pe.L),e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-restore-table"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:X.xX,useValue:(0,p.on)("Channels")}])],decls:28,vars:16,consts:[["table",""],["fxLayout","column",1,"mt-2"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between start","fxLayout.gt-md","row wrap",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-2"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["fxLayout","column","fxFlex","49"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["matColumnDef","channel_point"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex","100"],["fxLayout","row",1,"mt-2"],["mat-flat-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxLayoutAlign","space-between start","fxLayout.gt-md","row wrap"],["fxFlex","100",1,"mt-1"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","1",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1),e.DNE(1,fg,6,1,"div",2)(2,gg,5,1,"div",3)(3,Cg,3,1,"div",3),e.j41(4,"div",4),e.nrm(5,"div",5),e.j41(6,"div",6),e.nrm(7,"div",7),e.j41(8,"mat-form-field",8)(9,"mat-label"),e.EFF(10,"Filter"),e.k0s(),e.j41(11,"input",9),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilter,f)||(a.selFilter=f),r.Njj(f)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(12,"div",10),e.DNE(13,yg,1,0,"mat-progress-bar",11),e.j41(14,"table",12,0),e.qex(16,13),e.DNE(17,bg,2,0,"th",14)(18,Fg,4,4,"td",15),e.bVm(),e.qex(19,16),e.DNE(20,xg,3,0,"th",17)(21,vg,4,0,"td",15),e.bVm(),e.qex(22,18),e.DNE(23,kg,2,1,"td",19),e.bVm(),e.DNE(24,Sg,1,3,"tr",20)(25,Rg,1,0,"tr",21)(26,Eg,1,0,"tr",22),e.k0s()(),e.nrm(27,"mat-paginator",23),e.k0s()}2&o&&(e.R7$(),e.Y8G("ngIf",a.allRestoreExists),e.R7$(),e.Y8G("ngIf",!a.allRestoreExists&&(!a.channels||(null==a.channels||null==a.channels.data?null:a.channels.data.length)<=0)),e.R7$(),e.Y8G("ngIf",!a.allRestoreExists&&a.channels&&(null==a.channels||null==a.channels.data?null:a.channels.data.length)&&(null==a.channels||null==a.channels.data?null:a.channels.data.length)>0),e.R7$(8),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",!0===a.flgLoading[0]),e.R7$(),e.Y8G("dataSource",a.channels)("ngClass",e.eq3(13,ug,"error"===a.flgLoading[0])),e.R7$(10),e.Y8G("matFooterRowDef",e.lJ4(15,hg)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[y.YU,y.bT,y.B3,g.me,g.BC,g.vS,$.$z,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,X.iy,K.Ld],encapsulation:2}))}return t(),s})();const wg=t=>({"error-border":t}),Lg=()=>["no_channel"],jg=t=>({"max-width":t}),Gg=t=>({"display-none":t});function Dg(t,s){1&t&&e.nrm(0,"mat-progress-bar",33)}function Ng(t,s){1&t&&(e.j41(0,"th",34),e.EFF(1,"Channel Point"),e.k0s())}function Pg(t,s){if(1&t&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,jg,i.screenSize===i.screenSizeEnum.XS?"25rem":"60rem")),e.R7$(2),e.JRh(null==n?null:n.channel_point)}}function Bg(t,s){1&t&&(e.j41(0,"th",38)(1,"div",39),e.EFF(2,"Actions"),e.k0s()())}function Ag(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",40)(1,"div",39)(2,"mat-select",41),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",42),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG();return r.Njj(l.onChannelClick(a,o))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",42),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onBackupChannels(o))}),e.EFF(7,"Backup"),e.k0s(),e.j41(8,"mat-option",42),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onDownloadBackup(o))}),e.EFF(9,"Download Backup"),e.k0s(),e.j41(10,"mat-option",42),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onVerifyChannels(o))}),e.EFF(11,"Verify"),e.k0s()()()()}}function $g(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No channel available."),e.k0s())}function Mg(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting channels..."),e.k0s())}function Og(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function Vg(t,s){if(1&t&&(e.j41(0,"td",43),e.DNE(1,$g,2,0,"p",44)(2,Mg,2,0,"p",44)(3,Og,2,1,"p",44),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Yg(t,s){if(1&t&&e.nrm(0,"tr",45),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,Gg,(null==n.channels?null:n.channels.data)&&(null==n.channels||null==n.channels.data?null:n.channels.data.length)>0))}}function Ug(t,s){1&t&&e.nrm(0,"tr",46)}function Xg(t,s){1&t&&e.nrm(0,"tr",47)}let Hg=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.store=o,this.actions=a,this.commonService=l,this.faInfoCircle=I.iW_,this.faExclamationTriangle=I.zpE,this.faArchive=I.Oh6,this.pageSize=p.md,this.pageSizeOptions=p.xp,this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.channels=new _.I6([]),this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=i.channels,this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadBackupTable(this.channelsData),this.logger.info(i)}),this.actions.pipe((0,x.Q)(this.unSubs[2]),(0,L.p)(i=>i.type===p.QP.SET_CHANNELS_LND||i.type===p.aU.SHOW_FILE)).subscribe(i=>{i.type===p.QP.SET_CHANNELS_LND&&(this.selectedChannel=null),i.type===p.aU.SHOW_FILE&&(this.commonService.downloadFile(i.payload,"channel-"+(this.selectedChannel?.channel_point?this.selectedChannel.channel_point:"all"),".bak",".bak"),this.selectedChannel=null)})}ngAfterViewInit(){this.channelsData.length>0&&this.loadBackupTable(this.channelsData)}onBackupChannels(i){this.store.dispatch((0,N.H2)({payload:{uiMessage:p.MZ.BACKUP_CHANNEL,channelPoint:i.channel_point?i.channel_point:"ALL",showMessage:""}}))}onVerifyChannels(i){this.store.dispatch((0,N.L)({payload:{channelPoint:i.channel_point?i.channel_point:"ALL"}}))}onDownloadBackup(i){this.selectedChannel=i,this.store.dispatch((0,Y.t2)({payload:{channelPoint:i.channel_point?i.channel_point:"all"}}))}onChannelClick(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{channel:i,showCopy:!1,component:rt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadBackupTable(i){this.channels=new _.I6(i?[...i]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(o,a)=>(o.channel_point?o.channel_point.toLowerCase():"").includes(a),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(ce.En),e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-backup-table"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Channels")}])],decls:46,vars:17,consts:[["table",""],["fxLayout","column"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","1",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","2",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-2"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["fxLayout","column","fxFlex","49"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["matColumnDef","channel_point"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"div",3),e.nrm(3,"fa-icon",4),e.j41(4,"span"),e.EFF(5,"Save your backup files in a redundant location."),e.k0s()(),e.j41(6,"div",5),e.nrm(7,"fa-icon",4),e.j41(8,"span")(9,"strong"),e.EFF(10,"Backup Folder Location: "),e.k0s(),e.EFF(11),e.k0s()(),e.j41(12,"div",6)(13,"button",7),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onVerifyChannels({}))}),e.EFF(14,"Verify All"),e.k0s(),e.j41(15,"button",8),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onBackupChannels({}))}),e.EFF(16,"Backup All"),e.k0s(),e.j41(17,"button",9),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onDownloadBackup({}))}),e.EFF(18,"Download Backup"),e.k0s()()(),e.j41(19,"div",10)(20,"div",11),e.nrm(21,"fa-icon",12),e.j41(22,"span",13),e.EFF(23,"Backups"),e.k0s()(),e.j41(24,"div",14),e.nrm(25,"div",15),e.j41(26,"mat-form-field",16)(27,"mat-label"),e.EFF(28,"Filter"),e.k0s(),e.j41(29,"input",17),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilter,f)||(a.selFilter=f),r.Njj(f)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(30,"div",18),e.DNE(31,Dg,1,0,"mat-progress-bar",19),e.j41(32,"table",20,0),e.qex(34,21),e.DNE(35,Ng,2,0,"th",22)(36,Pg,4,4,"td",23),e.bVm(),e.qex(37,24),e.DNE(38,Bg,3,0,"th",25)(39,Ag,12,0,"td",26),e.bVm(),e.qex(40,27),e.DNE(41,Vg,4,3,"td",28),e.bVm(),e.DNE(42,Yg,1,3,"tr",29)(43,Ug,1,0,"tr",30)(44,Xg,1,0,"tr",31),e.k0s()(),e.nrm(45,"mat-paginator",32),e.k0s()}2&o&&(e.R7$(3),e.Y8G("icon",a.faExclamationTriangle),e.R7$(4),e.Y8G("icon",a.faInfoCircle),e.R7$(4),e.SpI("",a.selNode.settings.channelBackupPath,"."),e.R7$(10),e.Y8G("icon",a.faArchive),e.R7$(8),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",a.channels)("ngClass",e.eq3(14,wg,""!==a.errorMessage)),e.R7$(10),e.Y8G("matFooterRowDef",e.lJ4(16,Lg)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[y.YU,y.bT,y.B3,g.me,g.BC,g.vS,ee.aY,$.$z,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,X.iy,K.Ld],encapsulation:2}))}return t(),s})();function qg(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let zg=(()=>{var t;class s{constructor(i){this.router=i,this.faUserCheck=I.pCJ,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new C.B,new C.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(o=>o instanceof j.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-sign-verify-message"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Sign/Verify Message"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,qg,2,4,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8),e.nrm(12,"router-outlet"),e.k0s()()()()),2&o){const l=e.sdS(10);e.R7$(),e.Y8G("icon",a.faUserCheck),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[y.Sq,ee.aY,B.RN,B.m2,b.DJ,b.sA,b.UI,J.Bu,J.hQ,J.Ql,j.n3,le.Wk],encapsulation:2}))}return t(),s})();function Jg(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Message is required."),e.k0s())}let Qg=(()=>{var t;class s{constructor(i,o,a){this.dataService=i,this.snackBar=o,this.logger=a,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new C.B,new C.B]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.signedMessage=this.message,this.signature=i.signature})}onMessageChange(){this.signedMessage!==this.message&&(this.signature="")}onCopyField(i){this.snackBar.open("Signature copied."),this.logger.info("Copied Text: "+i)}resetData(){this.message="",this.signature="",this.signedMessage=""}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Fe.u),e.rXU(we.UG),e.rXU(V.gP))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-sign"]],standalone:!1,decls:22,vars:5,consts:[["form","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],[1,"my-2",3,"inset"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"signature-box","bordered-box","read-only"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","4","rtlClipboard","","type","button",3,"copied","payload"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"form",2,0)(3,"mat-form-field",3)(4,"mat-label"),e.EFF(5,"Message to sign"),e.k0s(),e.j41(6,"textarea",4),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.message,f)||(a.message=f),r.Njj(f)}),e.bIt("keyup",function(){return r.eBV(l),r.Njj(a.onMessageChange())}),e.k0s(),e.DNE(7,Jg,2,0,"mat-error",5),e.k0s(),e.j41(8,"div",6)(9,"button",7),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(10,"Clear Field"),e.k0s(),e.j41(11,"button",8),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onSign())}),e.EFF(12,"Sign"),e.k0s()(),e.nrm(13,"mat-divider",9),e.j41(14,"div",10)(15,"p"),e.EFF(16,"Generated Signature"),e.k0s()(),e.j41(17,"div",11),e.EFF(18),e.k0s(),e.j41(19,"div",12)(20,"button",13),e.bIt("copied",function(f){return r.eBV(l),r.Njj(a.onCopyField(f))}),e.EFF(21,"Copy Signature"),e.k0s()()()()}2&o&&(e.R7$(6),e.R50("ngModel",a.message),e.R7$(),e.Y8G("ngIf",!a.message),e.R7$(6),e.Y8G("inset",!0),e.R7$(5),e.JRh(a.signature),e.R7$(2),e.Y8G("payload",a.signature))},dependencies:[y.bT,g.qT,g.me,g.BC,g.cb,g.YS,g.vS,g.cV,$.$z,Z.fg,R.rl,R.nJ,R.TL,Te.q,b.DJ,b.sA,b.UI,He.U,pe.N],styles:[".signature-box[_ngcontent-%COMP%]{padding:1rem}"]}))}return t(),s})();function Wg(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Message is required."),e.k0s())}function Zg(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Signature is required."),e.k0s())}function Kg(t,s){1&t&&(e.j41(0,"p",13)(1,"mat-icon",14),e.EFF(2,"close"),e.k0s(),e.EFF(3,"Verification failed, please check message and signature"),e.k0s())}function e4(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Pubkey Used"),e.k0s())}function t4(t,s){if(1&t&&(e.j41(0,"div",20)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG(2);e.R7$(2),e.JRh(null==n.verifyRes?null:n.verifyRes.pubkey)}}function n4(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",21)(1,"button",22),e.bIt("copied",function(o){r.eBV(n);const a=e.XpG(2);return r.Njj(a.onCopyField(o))}),e.EFF(2,"Copy Pubkey"),e.k0s()()}if(2&t){const n=e.XpG(2);e.R7$(),e.Y8G("payload",null==n.verifyRes?null:n.verifyRes.pubkey)}}function i4(t,s){if(1&t&&(e.j41(0,"div",15),e.nrm(1,"mat-divider",16),e.j41(2,"div",17),e.DNE(3,e4,2,0,"p",6),e.k0s(),e.DNE(4,t4,3,1,"div",18)(5,n4,3,1,"div",19),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(2),e.Y8G("ngIf",n.verifyRes.valid),e.R7$(),e.Y8G("ngIf",n.verifyRes.valid),e.R7$(),e.Y8G("ngIf",n.verifyRes.valid)}}let a4=(()=>{var t;class s{constructor(i,o,a){this.dataService=i,this.snackBar=o,this.logger=a,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",valid:null},this.unSubs=[new C.B,new C.B]}onVerify(){if(!this.message||""===this.message||!this.signature||""===this.signature)return!0;this.dataService.verifyMessage(this.message,this.signature).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.verifyRes=i,this.showVerifyStatus=!0,this.verifiedMessage=this.message,this.verifiedSignature=this.signature})}onChange(){(this.verifiedMessage!==this.message||this.verifiedSignature!==this.signature)&&(this.showVerifyStatus=!1,this.verifyRes={pubkey:"",valid:null})}resetData(){this.message="",this.signature="",this.verifyRes=null,this.showVerifyStatus=!1}onCopyField(i){this.snackBar.open("Pubkey copied."),this.logger.info("Copied Text: "+i)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Fe.u),e.rXU(we.UG),e.rXU(V.gP))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-verify"]],standalone:!1,decls:21,vars:6,consts:[["form","ngForm"],["sign","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["matInput","","name","signature","tabindex","2","required","",3,"ngModelChange","keyup","ngModel"],["fxFlex","100","class","color-warn","fxLayoutAlign","start center",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],[1,"my-2",3,"inset"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start","class","bordered-box read-only padding-gap",4,"ngIf"],["fxLayout","row","class","mt-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"bordered-box","read-only","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","5","rtlClipboard","","type","button",3,"copied","payload"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",2)(1,"form",3,0)(3,"mat-form-field",4)(4,"mat-label"),e.EFF(5,"Message to verify"),e.k0s(),e.j41(6,"textarea",5),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.message,f)||(a.message=f),r.Njj(f)}),e.bIt("keyup",function(){return r.eBV(l),r.Njj(a.onChange())}),e.k0s(),e.DNE(7,Wg,2,0,"mat-error",6),e.k0s(),e.j41(8,"mat-form-field",4)(9,"mat-label"),e.EFF(10,"Signature provided"),e.k0s(),e.j41(11,"input",7,1),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.signature,f)||(a.signature=f),r.Njj(f)}),e.bIt("keyup",function(){return r.eBV(l),r.Njj(a.onChange())}),e.k0s(),e.DNE(13,Zg,2,0,"mat-error",6),e.k0s(),e.DNE(14,Kg,4,0,"p",8),e.j41(15,"div",9)(16,"button",10),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(17,"Clear Fields"),e.k0s(),e.j41(18,"button",11),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onVerify())}),e.EFF(19,"Verify"),e.k0s()(),e.DNE(20,i4,6,4,"div",12),e.k0s()()}2&o&&(e.R7$(6),e.R50("ngModel",a.message),e.R7$(),e.Y8G("ngIf",!a.message),e.R7$(4),e.R50("ngModel",a.signature),e.R7$(2),e.Y8G("ngIf",!a.signature),e.R7$(),e.Y8G("ngIf",a.showVerifyStatus&&!a.verifyRes.valid),e.R7$(6),e.Y8G("ngIf",a.showVerifyStatus&&a.verifyRes.valid))},dependencies:[y.bT,g.qT,g.me,g.BC,g.cb,g.YS,g.vS,g.cV,$.$z,ke.An,Z.fg,R.rl,R.nJ,R.TL,Te.q,b.DJ,b.sA,b.UI,He.U,pe.N],encapsulation:2}))}return t(),s})();var s4=S(13),Q=S(7186);const o4=()=>["all"],l4=()=>["no_non_routing_event"],We=t=>({"max-width":t}),r4=t=>({"display-none":t});function c4(t,s){if(1&t&&(e.j41(0,"div",5),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.JRh(n.errorMessage)}}function p4(t,s){if(1&t&&(e.j41(0,"mat-option",17),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(3);e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function m4(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",10)(1,"div",11),e.EFF(2,"Non Routing Peers"),e.k0s(),e.j41(3,"div",12)(4,"mat-form-field",13)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",14),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.selFilterBy,o)||(a.selFilterBy=o),r.Njj(o)}),e.bIt("selectionChange",function(){r.eBV(n);const o=e.XpG(2);return o.selFilter="",r.Njj(o.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,p4,2,2,"mat-option",15),e.k0s()()(),e.j41(10,"mat-form-field",13)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",16),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.selFilter,o)||(a.selFilter=o),r.Njj(o)}),e.bIt("input",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.applyFilter())})("keyup",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.applyFilter())}),e.k0s()()()()}if(2&t){const n=e.XpG(2);e.R7$(7),e.R50("ngModel",n.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(3,o4).concat(n.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",n.selFilter)}}function u4(t,s){1&t&&e.nrm(0,"mat-progress-bar",50)}function h4(t,s){1&t&&(e.j41(0,"th",51),e.EFF(1,"Channel ID"),e.k0s())}function d4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,We,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id)}}function _4(t,s){1&t&&(e.j41(0,"th",51),e.EFF(1,"Peer Alias"),e.k0s())}function f4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,We,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.remote_alias)}}function g4(t,s){1&t&&(e.j41(0,"th",51),e.EFF(1,"Peer Pubkey"),e.k0s())}function C4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,We,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.remote_pubkey)}}function y4(t,s){1&t&&(e.j41(0,"th",51),e.EFF(1,"Channel Point"),e.k0s())}function b4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,We,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.channel_point)}}function F4(t,s){if(1&t&&(e.j41(0,"th",55),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.SpI("Uptime (",n.timeUnit,")")}}function x4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",n.uptime_str," ")}}function v4(t,s){if(1&t&&(e.j41(0,"th",55),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.SpI("Lifetime (",n.timeUnit,")")}}function T4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",n.lifetime_str," ")}}function k4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function S4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.commit_fee)," ")}}function R4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Commit Weight"),e.k0s())}function E4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.commit_weight)," ")}}function I4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Fee/KW"),e.k0s())}function w4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.fee_per_kw)," ")}}function L4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Updates"),e.k0s())}function j4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.num_updates)," ")}}function G4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Unsettled Balance (Sats)"),e.k0s())}function D4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.unsettled_balance)," ")}}function N4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Capacity (Sats)"),e.k0s())}function P4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.capacity)," ")}}function B4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Local Reserve (Sats)"),e.k0s())}function A4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.local_chan_reserve_sat)," ")}}function $4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Remote Reserve (Sats)"),e.k0s())}function M4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.remote_chan_reserve_sat)," ")}}function O4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Sats Sent"),e.k0s())}function V4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.total_satoshis_sent))}}function Y4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Sats Received"),e.k0s())}function U4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.total_satoshis_received))}}function X4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function H4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.local_balance))}}function q4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function z4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.remote_balance))}}function J4(t,s){1&t&&(e.j41(0,"th",57)(1,"div",58),e.EFF(2,"Actions"),e.k0s()())}function Q4(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",59)(1,"button",60),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(3);return r.Njj(a.onManagePeer(o))}),e.EFF(2,"Manage"),e.k0s()()}}function W4(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"All peers are routing."),e.k0s())}function Z4(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting non routing peers..."),e.k0s())}function K4(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(4);e.R7$(),e.JRh(n.errorMessage)}}function eC(t,s){if(1&t&&(e.j41(0,"td",61),e.DNE(1,W4,2,0,"p",62)(2,Z4,2,0,"p",62)(3,K4,2,1,"p",62),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("ngIf",(!(null!=n.nonRoutingPeers&&n.nonRoutingPeers.data)||(null==n.nonRoutingPeers||null==n.nonRoutingPeers.data?null:n.nonRoutingPeers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.nonRoutingPeers&&n.nonRoutingPeers.data)||(null==n.nonRoutingPeers||null==n.nonRoutingPeers.data?null:n.nonRoutingPeers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.nonRoutingPeers&&n.nonRoutingPeers.data)||(null==n.nonRoutingPeers||null==n.nonRoutingPeers.data?null:n.nonRoutingPeers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function tC(t,s){if(1&t&&e.nrm(0,"tr",63),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,r4,(null==n.nonRoutingPeers||null==n.nonRoutingPeers.data?null:n.nonRoutingPeers.data.length)>0))}}function nC(t,s){1&t&&e.nrm(0,"tr",64)}function iC(t,s){1&t&&e.nrm(0,"tr",65)}function aC(t,s){if(1&t&&(e.j41(0,"div",18),e.DNE(1,u4,1,0,"mat-progress-bar",19),e.j41(2,"table",20,1),e.qex(4,21),e.DNE(5,h4,2,0,"th",22)(6,d4,4,4,"td",23),e.bVm(),e.qex(7,24),e.DNE(8,_4,2,0,"th",22)(9,f4,4,4,"td",23),e.bVm(),e.qex(10,25),e.DNE(11,g4,2,0,"th",22)(12,C4,4,4,"td",23),e.bVm(),e.qex(13,26),e.DNE(14,y4,2,0,"th",22)(15,b4,4,4,"td",23),e.bVm(),e.qex(16,27),e.DNE(17,F4,2,1,"th",28)(18,x4,3,1,"td",23),e.bVm(),e.qex(19,29),e.DNE(20,v4,2,1,"th",28)(21,T4,3,1,"td",23),e.bVm(),e.qex(22,30),e.DNE(23,k4,2,0,"th",28)(24,S4,4,3,"td",23),e.bVm(),e.qex(25,31),e.DNE(26,R4,2,0,"th",28)(27,E4,4,3,"td",23),e.bVm(),e.qex(28,32),e.DNE(29,I4,2,0,"th",28)(30,w4,4,3,"td",23),e.bVm(),e.qex(31,33),e.DNE(32,L4,2,0,"th",28)(33,j4,4,3,"td",23),e.bVm(),e.qex(34,34),e.DNE(35,G4,2,0,"th",28)(36,D4,4,3,"td",23),e.bVm(),e.qex(37,35),e.DNE(38,N4,2,0,"th",28)(39,P4,4,3,"td",23),e.bVm(),e.qex(40,36),e.DNE(41,B4,2,0,"th",28)(42,A4,4,3,"td",23),e.bVm(),e.qex(43,37),e.DNE(44,$4,2,0,"th",28)(45,M4,4,3,"td",23),e.bVm(),e.qex(46,38),e.DNE(47,O4,2,0,"th",28)(48,V4,4,3,"td",23),e.bVm(),e.qex(49,39),e.DNE(50,Y4,2,0,"th",28)(51,U4,4,3,"td",23),e.bVm(),e.qex(52,40),e.DNE(53,X4,2,0,"th",28)(54,H4,4,3,"td",23),e.bVm(),e.qex(55,41),e.DNE(56,q4,2,0,"th",28)(57,z4,4,3,"td",23),e.bVm(),e.qex(58,42),e.DNE(59,J4,3,0,"th",43)(60,Q4,3,0,"td",44),e.bVm(),e.qex(61,45),e.DNE(62,eC,4,3,"td",46),e.bVm(),e.DNE(63,tC,1,3,"tr",47)(64,nC,1,0,"tr",48)(65,iC,1,0,"tr",49),e.k0s()()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",n.tableSetting.sortBy)("matSortDirection",n.tableSetting.sortOrder)("dataSource",n.nonRoutingPeers),e.R7$(61),e.Y8G("matFooterRowDef",e.lJ4(7,l4)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns)}}function sC(t,s){if(1&t&&(e.j41(0,"div",6),e.DNE(1,m4,14,4,"div",7)(2,aC,66,8,"div",8),e.nrm(3,"mat-paginator",9,0),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",""===n.errorMessage),e.R7$(),e.Y8G("ngIf",""===n.errorMessage),e.R7$(),e.Y8G("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("showFirstLastButtons",n.screenSize!==n.screenSizeEnum.XS)}}let oC=(()=>{var t;class s{constructor(i,o,a,l,h,f,P){this.logger=i,this.commonService=o,this.store=a,this.router=l,this.activatedRoute=h,this.decimalPipe=f,this.camelCaseWithReplace=P,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"non_routing_peers",recordsPerPage:p.md,sortBy:"remote_alias",sortOrder:p.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.nonRoutingPeers=new _.I6([]),this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.selFilter="",this.activeChannels=[],this.timeUnit="mins:secs",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.Ie).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,i.apiCallStatus?.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=i.forwardingHistory.forwarding_events?i.forwardingHistory.forwarding_events:[],this.routingPeersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadNonRoutingPeersTable(this.routingPeersData),this.logger.info(i.apiCallStatus),this.logger.info(i.forwardingHistory)}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.activeChannels=i.channels,this.logger.info(i)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.loadNonRoutingPeersTable(this.routingPeersData)}calculateUptime(i){let f=60,P=1,w=0;switch(i.forEach(M=>{M.uptime&&+M.uptime>w&&(w=+M.uptime)}),!0){case w<3600:this.timeUnit="Mins:Secs",f=60,P=1;break;case w>=3600&&w<86400:this.timeUnit="Hrs:Mins",f=3600,P=60;break;case w>=86400&&w<31536e3:this.timeUnit="Days:Hrs",f=86400,P=3600;break;case w>31536e3:this.timeUnit="Yrs:Days",f=31536e3,P=86400;break;default:this.timeUnit="Mins:Secs",f=60,P=1}return i.forEach(M=>{M.uptime_str=M.uptime?this.decimalPipe.transform(Math.floor(+M.uptime/f),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+M.uptime%f/P),"2.0-0"):"---",M.lifetime_str=M.lifetime?this.decimalPipe.transform(Math.floor(+M.lifetime/f),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+M.lifetime%f/P),"2.0-0"):"---"}),i}onManagePeer(i){this.router.navigate(["../../","connections","channels","open"],{relativeTo:this.activatedRoute,state:{filterValue:i.chan_id}})}applyFilter(){this.nonRoutingPeers.filter=this.selFilter.toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.nonRoutingPeers.filterPredicate=(i,o)=>{let a="";return a="all"===this.selFilterBy?JSON.stringify(i).toLowerCase():typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString(),a.includes(o)}}loadNonRoutingPeersTable(i){if(i.length>0){const o=this.calculateUptime(this.activeChannels?.filter(a=>i.findIndex(l=>l.chan_id_in===a.chan_id||l.chan_id_out===a.chan_id)<0));this.nonRoutingPeers=new _.I6(o),this.nonRoutingPeers.sort=this.sort,this.nonRoutingPeers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.nonRoutingPeers)}else this.nonRoutingPeers=new _.I6([]);this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il),e.rXU(j.Ix),e.rXU(j.nX),e.rXU(y.QX),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-non-routing-peers"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:X.xX,useValue:(0,p.on)("Non routing peers")}])],decls:3,vars:2,consts:[["paginator",""],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","chan_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","remote_alias"],["matColumnDef","remote_pubkey"],["matColumnDef","channel_point"],["matColumnDef","uptime_str"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","lifetime_str"],["matColumnDef","commit_fee"],["matColumnDef","commit_weight"],["matColumnDef","fee_per_kw"],["matColumnDef","num_updates"],["matColumnDef","unsettled_balance"],["matColumnDef","capacity"],["matColumnDef","local_chan_reserve_sat"],["matColumnDef","remote_chan_reserve_sat"],["matColumnDef","total_satoshis_sent"],["matColumnDef","total_satoshis_received"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_non_routing_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){1&o&&(e.j41(0,"div",2),e.DNE(1,c4,2,1,"div",3)(2,sC,5,5,"div",4),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.me,g.BC,g.vS,$.$z,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,X.iy,K.ZF,K.Ld,y.QX],encapsulation:2}))}return t(),s})();var $t=S(3838);let lC=(()=>{var t;class s{constructor(i){this.dataService=i,this.paths="",this.unSubs=[new C.B,new C.B]}ngOnInit(){if(this.payment.htlcs&&this.payment.htlcs[0]&&this.payment.htlcs[0].route&&this.payment.htlcs[0].route.hops&&this.payment.htlcs[0].route.hops.length>0){const i=this.payment.htlcs[0].route.hops?.reduce((o,a)=>""===o&&a.pub_key?a.pub_key:o+","+a.pub_key,"");this.dataService.getAliasesFromPubkeys(i,!0).pipe((0,x.Q)(this.unSubs[0])).subscribe(o=>{this.paths=o?.reduce((a,l)=>""===a?l:a+"\n"+l,"")})}this.payment.payment_request&&""!==this.payment.payment_request.trim()&&this.dataService.decodePayment(this.payment.payment_request,!1).pipe((0,be.s)(1)).subscribe(i=>{i&&i.description&&""!==i.description&&(this.payment.description=i.description)})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Fe.u))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-payment-lookup"]],inputs:{payment:"payment"},standalone:!1,decls:66,vars:20,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["fxLayout","row"],["fxFlex","50"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"mat-card-content",1)(2,"div",2)(3,"h4",3),e.EFF(4,"Payment Hash"),e.k0s(),e.j41(5,"span",4),e.EFF(6),e.k0s()(),e.nrm(7,"mat-divider",5),e.j41(8,"div",2)(9,"h4",3),e.EFF(10,"Payment Preimage"),e.k0s(),e.j41(11,"span",4)(12,"div"),e.EFF(13),e.k0s()()(),e.nrm(14,"mat-divider",5),e.j41(15,"div",2)(16,"h4",3),e.EFF(17,"Payment Request"),e.k0s(),e.j41(18,"span",4)(19,"div"),e.EFF(20),e.k0s()()(),e.nrm(21,"mat-divider",5),e.j41(22,"div",2)(23,"h4",3),e.EFF(24,"Description"),e.k0s(),e.j41(25,"span",4)(26,"div"),e.EFF(27),e.k0s()()(),e.nrm(28,"mat-divider",5),e.j41(29,"div",6)(30,"div",7)(31,"h4",3),e.EFF(32,"Status"),e.k0s(),e.j41(33,"span",4)(34,"div"),e.EFF(35),e.k0s()()(),e.j41(36,"div",7)(37,"h4",3),e.EFF(38,"Creation Date"),e.k0s(),e.j41(39,"span",4)(40,"div"),e.EFF(41),e.k0s()()()(),e.nrm(42,"mat-divider",5),e.j41(43,"div",6)(44,"div",7)(45,"h4",3),e.EFF(46,"Value (mSats)"),e.k0s(),e.j41(47,"span",4)(48,"div"),e.EFF(49),e.nI1(50,"number"),e.k0s()()(),e.j41(51,"div",7)(52,"h4",3),e.EFF(53,"Fee (mSats)"),e.k0s(),e.j41(54,"span",4)(55,"div"),e.EFF(56),e.nI1(57,"number"),e.k0s()()()(),e.nrm(58,"mat-divider",5),e.j41(59,"div",2)(60,"h4",3),e.EFF(61,"Path"),e.k0s(),e.j41(62,"span",4)(63,"div"),e.EFF(64),e.k0s()()(),e.nrm(65,"mat-divider",5),e.k0s()()),2&o&&(e.R7$(6),e.JRh(null==a.payment?null:a.payment.payment_hash),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==a.payment?null:a.payment.payment_preimage),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==a.payment?null:a.payment.payment_request),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==a.payment?null:a.payment.description),e.R7$(),e.Y8G("inset",!0),e.R7$(7),e.JRh(null==a.payment?null:a.payment.status),e.R7$(6),e.JRh(null==a.payment?null:a.payment.creation_date),e.R7$(),e.Y8G("inset",!0),e.R7$(7),e.JRh(e.bMT(50,16,null==a.payment?null:a.payment.value_msat)),e.R7$(7),e.JRh(e.bMT(57,18,null==a.payment?null:a.payment.fee_msat)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(a.paths),e.R7$(),e.Y8G("inset",!0))},dependencies:[B.m2,Te.q,b.DJ,b.sA,b.UI,y.QX],encapsulation:2}))}return t(),s})();var rC=S(8288);const Mt=t=>({"display-none":t}),ft=t=>({"mr-0":t});function cC(t,s){if(1&t&&e.nrm(0,"qr-code",22),2&t){const n=e.XpG();e.Y8G("value",null==n.invoice?null:n.invoice.payment_request)("size",n.qrWidth)}}function pC(t,s){1&t&&(e.j41(0,"span",23),e.EFF(1,"N/A"),e.k0s())}function mC(t,s){if(1&t&&e.nrm(0,"qr-code",22),2&t){const n=e.XpG();e.Y8G("value",null==n.invoice?null:n.invoice.payment_request)("size",n.qrWidth)}}function uC(t,s){1&t&&(e.j41(0,"span",24),e.EFF(1,"QR Code Not Applicable"),e.k0s())}function hC(t,s){1&t&&e.nrm(0,"mat-divider",16),2&t&&e.Y8G("inset",!0)}function dC(t,s){1&t&&(e.qex(0),e.EFF(1," (zero amount) "),e.bVm())}function _C(t,s){if(1&t&&e.nrm(0,"span",38),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,ft,n.screenSize===n.screenSizeEnum.XS))}}function fC(t,s){if(1&t&&e.nrm(0,"span",39),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,ft,n.screenSize===n.screenSizeEnum.XS))}}function gC(t,s){if(1&t&&e.nrm(0,"span",40),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,ft,n.screenSize===n.screenSizeEnum.XS))}}function CC(t,s){if(1&t&&(e.j41(0,"div",27)(1,"div",32)(2,"span",33),e.DNE(3,_C,1,3,"span",34)(4,fC,1,3,"span",35)(5,gC,1,3,"span",36),e.EFF(6),e.k0s(),e.j41(7,"span",37),e.EFF(8),e.nI1(9,"number"),e.k0s()(),e.nrm(10,"mat-divider",16),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(3),e.Y8G("ngIf","SETTLED"===n.state),e.R7$(),e.Y8G("ngIf","ACCEPTED"===n.state),e.R7$(),e.Y8G("ngIf","CANCELED"===n.state),e.R7$(),e.SpI(" ",n.chan_id," "),e.R7$(2),e.JRh(e.i5U(9,6,+n.amt_msat/1e3||0,i.getDecimalFormat(n))),e.R7$(2),e.Y8G("inset",!0)}}function yC(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",11)(1,"mat-expansion-panel",25),e.bIt("opened",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.flgOpened=!0)})("closed",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onExpansionClosed())}),e.j41(2,"mat-expansion-panel-header")(3,"mat-panel-title")(4,"h4",26),e.EFF(5,"HTLCs"),e.k0s()()(),e.j41(6,"div",27)(7,"div",28)(8,"span",29),e.EFF(9,"Channel ID"),e.k0s(),e.j41(10,"span",30),e.EFF(11,"Amount (Sats)"),e.k0s()(),e.nrm(12,"mat-divider",16),e.DNE(13,CC,11,9,"div",31),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(12),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngForOf",null==n.invoice?null:n.invoice.htlcs)}}function bC(t,s){1&t&&e.nrm(0,"mat-divider",16),2&t&&e.Y8G("inset",!0)}let FC=(()=>{var t;class s{constructor(i){this.commonService=i,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=p.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.screenSize===p.f7.XS&&(this.qrWidth=220)}getDecimalFormat(i){return i.amt_msat<1e3?"1.0-4":"1.0-0"}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-invoice-lookup"]],inputs:{invoice:"invoice"},standalone:!1,decls:90,vars:45,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between stretch"],["fxFlex","20",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxLayout","column","fxFlex","80"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],[3,"perfectScrollbar"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"my-1",3,"inset"],["fxFlex","100"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","34"],["fxFlex","33"],["fxLayout","row",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"font-size-300"],[1,"font-size-120"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"flat-expansion-panel",3,"opened","closed"],["fxLayoutAlign","start center","fxFlex","100",1,"font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100",1,"mt-minus-1"],["fxFlex","60",1,"foreground-secondary-text","font-bold-500"],["fxFlex","40",1,"foreground-secondary-text","font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100"],["fxFlex","60",1,"foreground-secondary-text"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Cancelled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["fxFlex","40",1,"foreground-secondary-text"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Cancelled","matTooltipPosition","right",1,"dot","red",3,"ngClass"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"div",1),e.DNE(2,cC,1,2,"qr-code",2)(3,pC,2,0,"span",3),e.k0s(),e.j41(4,"div",4)(5,"mat-card-content",5)(6,"div",6)(7,"div",7),e.DNE(8,mC,1,2,"qr-code",2)(9,uC,2,0,"span",8),e.k0s(),e.DNE(10,hC,1,1,"mat-divider",9),e.j41(11,"div",10)(12,"div",11)(13,"div",12)(14,"h4",13),e.EFF(15),e.k0s(),e.j41(16,"span",14),e.EFF(17),e.nI1(18,"number"),e.DNE(19,dC,2,0,"ng-container",15),e.k0s()(),e.j41(20,"div",12)(21,"h4",13),e.EFF(22,"Amount Settled"),e.k0s(),e.j41(23,"span",14)(24,"div"),e.EFF(25),e.nI1(26,"number"),e.k0s()()()(),e.nrm(27,"mat-divider",16),e.j41(28,"div",11)(29,"div",12)(30,"h4",13),e.EFF(31,"Date Created"),e.k0s(),e.j41(32,"span",14),e.EFF(33),e.nI1(34,"date"),e.k0s()(),e.j41(35,"div",12)(36,"h4",13),e.EFF(37,"Date Settled"),e.k0s(),e.j41(38,"span",14),e.EFF(39),e.nI1(40,"date"),e.k0s()()(),e.nrm(41,"mat-divider",16),e.j41(42,"div",11)(43,"div",17)(44,"h4",13),e.EFF(45,"Memo"),e.k0s(),e.j41(46,"span",14),e.EFF(47),e.k0s()()(),e.nrm(48,"mat-divider",16),e.j41(49,"div",11)(50,"div",17)(51,"h4",13),e.EFF(52,"Payment Request"),e.k0s(),e.j41(53,"span",18),e.EFF(54),e.k0s()()(),e.nrm(55,"mat-divider",16),e.j41(56,"div",11)(57,"div",17)(58,"h4",13),e.EFF(59,"Payment Hash"),e.k0s(),e.j41(60,"span",18),e.EFF(61),e.k0s()()(),e.j41(62,"div"),e.nrm(63,"mat-divider",16),e.j41(64,"div",11)(65,"div",17)(66,"h4",13),e.EFF(67,"Preimage"),e.k0s(),e.j41(68,"span",18),e.EFF(69),e.k0s()()(),e.nrm(70,"mat-divider",16),e.j41(71,"div",11)(72,"div",19)(73,"h4",13),e.EFF(74,"State"),e.k0s(),e.j41(75,"span",18),e.EFF(76),e.k0s()(),e.j41(77,"div",20)(78,"h4",13),e.EFF(79,"Expiry"),e.k0s(),e.j41(80,"span",18),e.EFF(81),e.k0s()(),e.j41(82,"div",20)(83,"h4",13),e.EFF(84,"Private Routing Hints"),e.k0s(),e.j41(85,"span",18),e.EFF(86),e.k0s()()(),e.nrm(87,"mat-divider",16),e.DNE(88,yC,14,2,"div",21)(89,bC,1,1,"mat-divider",9),e.k0s()()()()()()),2&o&&(e.R7$(),e.Y8G("fxLayoutAlign",null!=a.invoice&&a.invoice.payment_request&&""!==(null==a.invoice?null:a.invoice.payment_request)?"center start":"center center")("ngClass",e.eq3(41,Mt,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",(null==a.invoice?null:a.invoice.payment_request)&&""!==(null==a.invoice?null:a.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",!(null!=a.invoice&&a.invoice.payment_request)||""===(null==a.invoice?null:a.invoice.payment_request)),e.R7$(4),e.Y8G("fxLayoutAlign",null!=a.invoice&&a.invoice.payment_request&&""!==(null==a.invoice?null:a.invoice.payment_request)?"center start":"center center")("ngClass",e.eq3(43,Mt,a.screenSize!==a.screenSizeEnum.XS&&a.screenSize!==a.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",(null==a.invoice?null:a.invoice.payment_request)&&""!==(null==a.invoice?null:a.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",!(null!=a.invoice&&a.invoice.payment_request)||""===(null==a.invoice?null:a.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM),e.R7$(5),e.JRh(a.screenSize===a.screenSizeEnum.XS?"Amount":"Amount Requested"),e.R7$(2),e.SpI("",e.bMT(18,31,(null==a.invoice?null:a.invoice.value)||0)," Sats"),e.R7$(2),e.Y8G("ngIf",!(null!=a.invoice&&a.invoice.value)||"0"===(null==a.invoice?null:a.invoice.value)),e.R7$(6),e.SpI("",e.bMT(26,33,null==a.invoice?null:a.invoice.amt_paid_sat)," Sats"),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(34,35,1e3*(null==a.invoice?null:a.invoice.creation_date),"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(0!=+(null==a.invoice?null:a.invoice.settle_date)?e.i5U(40,38,1e3*+(null==a.invoice?null:a.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==a.invoice?null:a.invoice.memo),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==a.invoice?null:a.invoice.payment_request)||"N/A"),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==a.invoice?null:a.invoice.r_hash)||""),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==a.invoice?null:a.invoice.r_preimage)||"-"),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==a.invoice?null:a.invoice.state),e.R7$(5),e.JRh(null==a.invoice?null:a.invoice.expiry),e.R7$(5),e.JRh(null!=a.invoice&&a.invoice.private?"Yes":"No"),e.R7$(),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngIf",(null==a.invoice?null:a.invoice.htlcs)&&(null==a.invoice?null:a.invoice.htlcs.length)>0),e.R7$(),e.Y8G("ngIf",(null==a.invoice?null:a.invoice.htlcs)&&(null==a.invoice?null:a.invoice.htlcs.length)>0))},dependencies:[y.YU,y.Sq,y.bT,B.m2,he.GK,he.Z2,he.WN,Te.q,b.DJ,b.sA,b.UI,U.PW,fe.oV,rC.Um,K.Ld,y.QX,y.vh],encapsulation:2}))}return t(),s})();const xC=t=>({"mt-1":!0,"mt-2":t}),vC=t=>({"w-100 mt-2 p-2 error-border":t,"w-100 my-2 p-2":!0});function TC(t,s){if(1&t&&(e.j41(0,"mat-radio-button",17),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n.id)("checked",i.selectedFieldId===n.id),e.R7$(),e.SpI(" ",n.name," ")}}function kC(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("",null==n.lookupFields[n.selectedFieldId]?null:n.lookupFields[n.selectedFieldId].placeholder," is required.")}}function SC(t,s){1&t&&e.nrm(0,"mat-progress-bar",20)}function RC(t,s){if(1&t&&(e.j41(0,"div",18),e.DNE(1,SC,1,0,"mat-progress-bar",19),e.EFF(2),e.k0s()),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(3,vC,""!==n.errorMessage&&"Getting lookup details..."!==n.errorMessage)),e.R7$(),e.Y8G("ngIf","Getting lookup details..."===n.errorMessage),e.R7$(),e.SpI(" ",n.errorMessage," ")}}function EC(t,s){if(1&t&&(e.j41(0,"span",27),e.nrm(1,"rtl-payment-lookup",28),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("payment",n.lookupValue)}}function IC(t,s){if(1&t&&(e.j41(0,"span",27),e.nrm(1,"rtl-invoice-lookup",29),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("invoice",n.lookupValue)}}function wC(t,s){1&t&&(e.j41(0,"span"),e.EFF(1,' fxFlex="100"'),e.j41(2,"h3"),e.EFF(3,"Error! Unable to find details!"),e.k0s()())}function LC(t,s){if(1&t&&(e.j41(0,"div",21)(1,"div",22)(2,"span",23),e.EFF(3),e.k0s()(),e.j41(4,"div",24),e.DNE(5,EC,2,1,"span",25)(6,IC,2,1,"span",25)(7,wC,4,0,"span",26),e.k0s()()),2&t){const n=e.XpG();e.R7$(3),e.SpI("",n.lookupFields[n.selectedFieldId].name," Details"),e.R7$(),e.Y8G("ngSwitch",n.selectedFieldId),e.R7$(),e.Y8G("ngSwitchCase",0),e.R7$(),e.Y8G("ngSwitchCase",1)}}let jC=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.commonService=o,this.store=a,this.actions=l,this.lookupKey="",this.lookupValue={},this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Payment",placeholder:"Payment Hash"},{id:1,name:"Invoice",placeholder:"Payment Hash"}],this.faSearch=I.MjD,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.actions.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(i=>i.type===p.QP.SET_LOOKUP_LND)).subscribe(i=>{this.flgSetLookupValue=!i.payload.error,this.lookupValue=JSON.parse(JSON.stringify(i.payload)),this.errorMessage=i.payload.error?this.commonService.extractErrorMessage(i.payload.error):"",this.logger.info(this.lookupValue)})}onLookup(){if(!this.lookupKey)return!0;switch(this.errorMessage="",this.flgSetLookupValue=!1,this.lookupValue={},this.selectedFieldId){case 0:this.store.dispatch((0,N.jk)({payload:$t.hp.from(this.lookupKey.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}));break;case 1:this.store.dispatch((0,N.Yi)({payload:{openSnackBar:!1,paymentHash:$t.hp.from(this.lookupKey.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}}))}}onSelectChange(i){this.resetData(),this.selectedFieldId=i.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.lookupKey="",this.lookupValue={},this.errorMessage=""}clearLookupValue(){this.lookupValue={},this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il),e.rXU(ce.En))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lookup-transactions"]],standalone:!1,decls:21,vars:10,consts:[["form","ngForm"],["key",""],["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModelChange","change","ngModel"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass",4,"ngIf"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["mode","indeterminate"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"mb-2"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxFlex","100"],[3,"payment"],[3,"invoice"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",2)(1,"div",3)(2,"mat-card-content",4)(3,"form",5,0)(5,"div",6)(6,"mat-radio-group",7),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selectedFieldId,f)||(a.selectedFieldId=f),r.Njj(f)}),e.bIt("change",function(f){return r.eBV(l),r.Njj(a.onSelectChange(f))}),e.DNE(7,TC,2,3,"mat-radio-button",8),e.k0s()(),e.j41(8,"mat-form-field",9)(9,"mat-label"),e.EFF(10),e.k0s(),e.j41(11,"input",10,1),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.lookupKey,f)||(a.lookupKey=f),r.Njj(f)}),e.bIt("change",function(){return r.eBV(l),r.Njj(a.clearLookupValue())}),e.k0s(),e.DNE(13,kC,2,1,"mat-error",11),e.k0s(),e.j41(14,"div",12)(15,"button",13),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(16,"Clear"),e.k0s(),e.j41(17,"button",14),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onLookup())}),e.EFF(18,"Lookup"),e.k0s()()(),e.DNE(19,RC,3,5,"div",15)(20,LC,8,4,"div",16),e.k0s()()()}2&o&&(e.R7$(6),e.R50("ngModel",a.selectedFieldId),e.R7$(),e.Y8G("ngForOf",a.lookupFields),e.R7$(),e.Y8G("ngClass",e.eq3(8,xC,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),e.R7$(2),e.JRh((null==a.lookupFields[a.selectedFieldId]?null:a.lookupFields[a.selectedFieldId].placeholder)||"Lookup Key"),e.R7$(),e.R50("ngModel",a.lookupKey),e.R7$(2),e.Y8G("ngIf",!a.lookupKey),e.R7$(6),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage&&a.lookupValue&&a.flgSetLookupValue))},dependencies:[y.YU,y.Sq,y.bT,y.ux,y.e1,y.fG,g.qT,g.me,g.BC,g.cb,g.YS,g.vS,g.cV,$.$z,B.m2,Z.fg,R.rl,R.nJ,R.TL,D.HM,Ae.VT,Ae._g,b.DJ,b.sA,b.UI,U.PW,lC,FC],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]}))}return t(),s})();const GC=[{path:"",component:_e,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Hs,canActivate:[(0,Q.jn)()]},{path:"wallet",component:Lh,canActivate:[Q.q_]},{path:"onchain",component:c2,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:u2,canActivate:[(0,Q.jn)()]},{path:"send/:selTab",component:Bt,data:{sweepAll:!1},canActivate:[(0,Q.jn)()]},{path:"sweep/:selTab",component:Bt,data:{sweepAll:!0},canActivate:[(0,Q.jn)()]}]},{path:"connections",component:Js,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:Cl,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:Y1,canActivate:[(0,Q.jn)()]},{path:"pending",component:Sm,canActivate:[(0,Q.jn)()]},{path:"closed",component:du,canActivate:[(0,Q.jn)()]},{path:"activehtlcs",component:oh,canActivate:[(0,Q.jn)()]}]},{path:"peers",component:hl,data:{sweepAll:!1},canActivate:[(0,Q.jn)()]}]},{path:"transactions",component:Gh,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Ct,canActivate:[(0,Q.jn)()]},{path:"invoices",component:gt,canActivate:[(0,Q.jn)()]},{path:"lookuptransactions",component:jC,canActivate:[(0,Q.jn)()]}]},{path:"messages",component:zg,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:Qg,canActivate:[(0,Q.jn)()]},{path:"verify",component:a4,canActivate:[(0,Q.jn)()]}]},{path:"channelbackup",component:mg,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"bckup"},{path:"bckup",component:Hg,canActivate:[(0,Q.jn)()]},{path:"restore",component:Ig,canActivate:[(0,Q.jn)()]}]},{path:"routing",component:Md,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:jt,canActivate:[(0,Q.jn)()]},{path:"peers",component:m0,canActivate:[(0,Q.jn)()]},{path:"nonroutingprs",component:oC,canActivate:[(0,Q.jn)()]}]},{path:"reports",component:h0,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:x0,canActivate:[(0,Q.jn)()]},{path:"transactions",component:N0,canActivate:[(0,Q.jn)()]}]},{path:"graph",component:Nh,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:Lt,canActivate:[(0,Q.jn)()]},{path:"queryroutes",component:rd,canActivate:[(0,Q.jn)()]}]},{path:"lookups",component:Lt,canActivate:[(0,Q.jn)()]},{path:"network",component:cg,canActivate:[(0,Q.jn)()]},{path:"**",component:s4.X},{path:"rates",redirectTo:"network"}]}],DC=le.iI.forChild(GC);var NC=S(9029);let PC=(()=>{var t;class s{static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)},this.\u0275mod=e.$C({type:s,bootstrap:[_e]}),this.\u0275inj=r.G2t({imports:[y.MD,NC.G,DC]}))}return t(),s})()},3981(Ze,xe){"use strict";xe.byteLength=function b(L){var q=D(L),p=q[1];return 3*(q[0]+p)/4-p},xe.toByteArray=function _e(L){var q,G,I=D(L),p=I[0],W=I[1],E=new le(function T(L,q,I){return 3*(q+I)/4-I}(0,p,W)),r=0,V=W>0?p-4:p;for(G=0;G>16&255,E[r++]=q>>8&255,E[r++]=255&q;return 2===W&&(q=y[L.charCodeAt(G)]<<2|y[L.charCodeAt(G+1)]>>4,E[r++]=255&q),1===W&&(q=y[L.charCodeAt(G)]<<10|y[L.charCodeAt(G+1)]<<4|y[L.charCodeAt(G+2)]>>2,E[r++]=q>>8&255,E[r++]=255&q),E},xe.fromByteArray=function me(L){for(var q,I=L.length,p=I%3,W=[],E=16383,r=0,V=I-p;rV?V:r+E));return 1===p?W.push(S[(q=L[I-1])>>2]+S[q<<4&63]+"=="):2===p&&W.push(S[(q=(L[I-2]<<8)+L[I-1])>>10]+S[q>>4&63]+S[q<<2&63]+"="),W.join("")};for(var S=[],y=[],le=typeof Uint8Array<"u"?Uint8Array:Array,j="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",re=0;re<64;++re)S[re]=j[re],y[j.charCodeAt(re)]=re;function D(L){var q=L.length;if(q%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var I=L.indexOf("=");return-1===I&&(I=q),[I,I===q?0:4-I%4]}function C(L){return S[L>>18&63]+S[L>>12&63]+S[L>>6&63]+S[63&L]}function x(L,q,I){for(var W=[],E=q;Ee)throw new RangeError('The value "'+u+'" is invalid for option "size"');const c=new Uint8Array(u);return Object.setPrototypeOf(c,T.prototype),c}function T(u,c,m){if("number"==typeof u){if("string"==typeof c)throw new TypeError('The "string" argument must be of type string. Received type number');return me(u)}return _e(u,c,m)}function _e(u,c,m){if("string"==typeof u)return function L(u,c){if(("string"!=typeof c||""===c)&&(c="utf8"),!T.isEncoding(c))throw new TypeError("Unknown encoding: "+c);const m=0|V(u,c);let d=b(m);const F=d.write(u,c);return F!==m&&(d=d.slice(0,F)),d}(u,c);if(ArrayBuffer.isView(u))return function I(u){if(ve(u,Uint8Array)){const c=new Uint8Array(u);return p(c.buffer,c.byteOffset,c.byteLength)}return q(u)}(u);if(null==u)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof u);if(ve(u,ArrayBuffer)||u&&ve(u.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(ve(u,SharedArrayBuffer)||u&&ve(u.buffer,SharedArrayBuffer)))return p(u,c,m);if("number"==typeof u)throw new TypeError('The "value" argument must not be of type number. Received type number');const d=u.valueOf&&u.valueOf();if(null!=d&&d!==u)return T.from(d,c,m);const F=function W(u){if(T.isBuffer(u)){const c=0|E(u.length),m=b(c);return 0===m.length||u.copy(m,0,0,c),m}return void 0!==u.length?"number"!=typeof u.length||Oe(u.length)?b(0):q(u):"Buffer"===u.type&&Array.isArray(u.data)?q(u.data):void 0}(u);if(F)return F;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof u[Symbol.toPrimitive])return T.from(u[Symbol.toPrimitive]("string"),c,m);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof u)}function C(u){if("number"!=typeof u)throw new TypeError('"size" argument must be of type number');if(u<0)throw new RangeError('The value "'+u+'" is invalid for option "size"')}function me(u){return C(u),b(u<0?0:0|E(u))}function q(u){const c=u.length<0?0:0|E(u.length),m=b(c);for(let d=0;d=e)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+e.toString(16)+" bytes");return 0|u}function V(u,c){if(T.isBuffer(u))return u.length;if(ArrayBuffer.isView(u)||ve(u,ArrayBuffer))return u.byteLength;if("string"!=typeof u)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof u);const m=u.length,d=arguments.length>2&&!0===arguments[2];if(!d&&0===m)return 0;let F=!1;for(;;)switch(c){case"ascii":case"latin1":case"binary":return m;case"utf8":case"utf-8":return Me(u).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*m;case"hex":return m>>>1;case"base64":return K(u).length;default:if(F)return d?-1:Me(u).length;c=(""+c).toLowerCase(),F=!0}}function G(u,c,m){let d=!1;if((void 0===c||c<0)&&(c=0),c>this.length||((void 0===m||m>this.length)&&(m=this.length),m<=0)||(m>>>=0)<=(c>>>=0))return"";for(u||(u="utf8");;)switch(u){case"hex":return ne(this,c,m);case"utf8":case"utf-8":return J(this,c,m);case"ascii":return _(this,c,m);case"latin1":case"binary":return O(this,c,m);case"base64":return U(this,c,m);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return N(this,c,m);default:if(d)throw new TypeError("Unknown encoding: "+u);u=(u+"").toLowerCase(),d=!0}}function ce(u,c,m){const d=u[c];u[c]=u[m],u[m]=d}function z(u,c,m,d,F){if(0===u.length)return-1;if("string"==typeof m?(d=m,m=0):m>2147483647?m=2147483647:m<-2147483648&&(m=-2147483648),Oe(m=+m)&&(m=F?0:u.length-1),m<0&&(m=u.length+m),m>=u.length){if(F)return-1;m=u.length-1}else if(m<0){if(!F)return-1;m=0}if("string"==typeof c&&(c=T.from(c,d)),T.isBuffer(c))return 0===c.length?-1:ee(u,c,m,d,F);if("number"==typeof c)return c&=255,"function"==typeof Uint8Array.prototype.indexOf?F?Uint8Array.prototype.indexOf.call(u,c,m):Uint8Array.prototype.lastIndexOf.call(u,c,m):ee(u,[c],m,d,F);throw new TypeError("val must be string, number or Buffer")}function ee(u,c,m,d,F){let ie,v=1,k=u.length,H=c.length;if(void 0!==d&&("ucs2"===(d=String(d).toLowerCase())||"ucs-2"===d||"utf16le"===d||"utf-16le"===d)){if(u.length<2||c.length<2)return-1;v=2,k/=2,H/=2,m/=2}function se(oe,te){return 1===v?oe[te]:oe.readUInt16BE(te*v)}if(F){let oe=-1;for(ie=m;iek&&(m=k-H),ie=m;ie>=0;ie--){let oe=!0;for(let te=0;teF&&(d=F):d=F;const v=c.length;let k;for(d>v/2&&(d=v/2),k=0;k>8,F=m%256,v.push(F),v.push(d);return v}(c,u.length-m),u,m,d)}function U(u,c,m){return le.fromByteArray(0===c&&m===u.length?u:u.slice(c,m))}function J(u,c,m){m=Math.min(u.length,m);const d=[];let F=c;for(;F239?4:v>223?3:v>191?2:1;if(F+H<=m){let se,ie,oe,te;switch(H){case 1:v<128&&(k=v);break;case 2:se=u[F+1],128==(192&se)&&(te=(31&v)<<6|63&se,te>127&&(k=te));break;case 3:se=u[F+1],ie=u[F+2],128==(192&se)&&128==(192&ie)&&(te=(15&v)<<12|(63&se)<<6|63&ie,te>2047&&(te<55296||te>57343)&&(k=te));break;case 4:se=u[F+1],ie=u[F+2],oe=u[F+3],128==(192&se)&&128==(192&ie)&&128==(192&oe)&&(te=(15&v)<<18|(63&se)<<12|(63&ie)<<6|63&oe,te>65535&&te<1114112&&(k=te))}}null===k?(k=65533,H=1):k>65535&&(k-=65536,d.push(k>>>10&1023|55296),k=56320|1023&k),d.push(k),F+=H}return function A(u){const c=u.length;if(c<=X)return String.fromCharCode.apply(String,u);let m="",d=0;for(;dF.length?(T.isBuffer(k)||(k=T.from(k)),k.copy(F,v)):Uint8Array.prototype.set.call(F,k,v);else{if(!T.isBuffer(k))throw new TypeError('"list" argument must be an Array of Buffers');k.copy(F,v)}v+=k.length}return F},T.byteLength=V,T.prototype._isBuffer=!0,T.prototype.swap16=function(){const c=this.length;if(c%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let m=0;mm&&(c+=" ... "),""},re&&(T.prototype[re]=T.prototype.inspect),T.prototype.compare=function(c,m,d,F,v){if(ve(c,Uint8Array)&&(c=T.from(c,c.offset,c.byteLength)),!T.isBuffer(c))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof c);if(void 0===m&&(m=0),void 0===d&&(d=c?c.length:0),void 0===F&&(F=0),void 0===v&&(v=this.length),m<0||d>c.length||F<0||v>this.length)throw new RangeError("out of range index");if(F>=v&&m>=d)return 0;if(F>=v)return-1;if(m>=d)return 1;if(this===c)return 0;let k=(v>>>=0)-(F>>>=0),H=(d>>>=0)-(m>>>=0);const se=Math.min(k,H),ie=this.slice(F,v),oe=c.slice(m,d);for(let te=0;te>>=0,isFinite(d)?(d>>>=0,void 0===F&&(F="utf8")):(F=d,d=void 0)}const v=this.length-m;if((void 0===d||d>v)&&(d=v),c.length>0&&(d<0||m<0)||m>this.length)throw new RangeError("Attempt to write outside buffer bounds");F||(F="utf8");let k=!1;for(;;)switch(F){case"hex":return Ke(this,c,m,d);case"utf8":case"utf-8":return B(this,c,m,d);case"ascii":case"latin1":case"binary":return Le(this,c,m,d);case"base64":return ke(this,c,m,d);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return $e(this,c,m,d);default:if(k)throw new TypeError("Unknown encoding: "+F);F=(""+F).toLowerCase(),k=!0}},T.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};const X=4096;function _(u,c,m){let d="";m=Math.min(u.length,m);for(let F=c;Fd)&&(m=d);let F="";for(let v=c;vm)throw new RangeError("Trying to access beyond buffer length")}function $(u,c,m,d,F,v){if(!T.isBuffer(u))throw new TypeError('"buffer" argument must be a Buffer instance');if(c>F||cu.length)throw new RangeError("Index out of range")}function Z(u,c,m,d,F){Xe(c,d,F,u,m,7);let v=Number(c&BigInt(4294967295));u[m++]=v,v>>=8,u[m++]=v,v>>=8,u[m++]=v,v>>=8,u[m++]=v;let k=Number(c>>BigInt(32)&BigInt(4294967295));return u[m++]=k,k>>=8,u[m++]=k,k>>=8,u[m++]=k,k>>=8,u[m++]=k,m}function R(u,c,m,d,F){Xe(c,d,F,u,m,7);let v=Number(c&BigInt(4294967295));u[m+7]=v,v>>=8,u[m+6]=v,v>>=8,u[m+5]=v,v>>=8,u[m+4]=v;let k=Number(c>>BigInt(32)&BigInt(4294967295));return u[m+3]=k,k>>=8,u[m+2]=k,k>>=8,u[m+1]=k,k>>=8,u[m]=k,m+8}function ae(u,c,m,d,F,v){if(m+d>u.length)throw new RangeError("Index out of range");if(m<0)throw new RangeError("Index out of range")}function Re(u,c,m,d,F){return c=+c,m>>>=0,F||ae(u,0,m,4),j.write(u,c,m,d,23,4),m+4}function fe(u,c,m,d,F){return c=+c,m>>>=0,F||ae(u,0,m,8),j.write(u,c,m,d,52,8),m+8}T.prototype.slice=function(c,m){const d=this.length;(c=~~c)<0?(c+=d)<0&&(c=0):c>d&&(c=d),(m=void 0===m?d:~~m)<0?(m+=d)<0&&(m=0):m>d&&(m=d),m>>=0,m>>>=0,d||g(c,m,this.length);let F=this[c],v=1,k=0;for(;++k>>=0,m>>>=0,d||g(c,m,this.length);let F=this[c+--m],v=1;for(;m>0&&(v*=256);)F+=this[c+--m]*v;return F},T.prototype.readUint8=T.prototype.readUInt8=function(c,m){return c>>>=0,m||g(c,1,this.length),this[c]},T.prototype.readUint16LE=T.prototype.readUInt16LE=function(c,m){return c>>>=0,m||g(c,2,this.length),this[c]|this[c+1]<<8},T.prototype.readUint16BE=T.prototype.readUInt16BE=function(c,m){return c>>>=0,m||g(c,2,this.length),this[c]<<8|this[c+1]},T.prototype.readUint32LE=T.prototype.readUInt32LE=function(c,m){return c>>>=0,m||g(c,4,this.length),(this[c]|this[c+1]<<8|this[c+2]<<16)+16777216*this[c+3]},T.prototype.readUint32BE=T.prototype.readUInt32BE=function(c,m){return c>>>=0,m||g(c,4,this.length),16777216*this[c]+(this[c+1]<<16|this[c+2]<<8|this[c+3])},T.prototype.readBigUInt64LE=ge(function(c){Ee(c>>>=0,"offset");const m=this[c],d=this[c+7];(void 0===m||void 0===d)&&Ie(c,this.length-8);const F=m+256*this[++c]+65536*this[++c]+this[++c]*2**24,v=this[++c]+256*this[++c]+65536*this[++c]+d*2**24;return BigInt(F)+(BigInt(v)<>>=0,"offset");const m=this[c],d=this[c+7];(void 0===m||void 0===d)&&Ie(c,this.length-8);const F=m*2**24+65536*this[++c]+256*this[++c]+this[++c],v=this[++c]*2**24+65536*this[++c]+256*this[++c]+d;return(BigInt(F)<>>=0,m>>>=0,d||g(c,m,this.length);let F=this[c],v=1,k=0;for(;++k=v&&(F-=Math.pow(2,8*m)),F},T.prototype.readIntBE=function(c,m,d){c>>>=0,m>>>=0,d||g(c,m,this.length);let F=m,v=1,k=this[c+--F];for(;F>0&&(v*=256);)k+=this[c+--F]*v;return v*=128,k>=v&&(k-=Math.pow(2,8*m)),k},T.prototype.readInt8=function(c,m){return c>>>=0,m||g(c,1,this.length),128&this[c]?-1*(255-this[c]+1):this[c]},T.prototype.readInt16LE=function(c,m){c>>>=0,m||g(c,2,this.length);const d=this[c]|this[c+1]<<8;return 32768&d?4294901760|d:d},T.prototype.readInt16BE=function(c,m){c>>>=0,m||g(c,2,this.length);const d=this[c+1]|this[c]<<8;return 32768&d?4294901760|d:d},T.prototype.readInt32LE=function(c,m){return c>>>=0,m||g(c,4,this.length),this[c]|this[c+1]<<8|this[c+2]<<16|this[c+3]<<24},T.prototype.readInt32BE=function(c,m){return c>>>=0,m||g(c,4,this.length),this[c]<<24|this[c+1]<<16|this[c+2]<<8|this[c+3]},T.prototype.readBigInt64LE=ge(function(c){Ee(c>>>=0,"offset");const m=this[c],d=this[c+7];return(void 0===m||void 0===d)&&Ie(c,this.length-8),(BigInt(this[c+4]+256*this[c+5]+65536*this[c+6]+(d<<24))<>>=0,"offset");const m=this[c],d=this[c+7];(void 0===m||void 0===d)&&Ie(c,this.length-8);const F=(m<<24)+65536*this[++c]+256*this[++c]+this[++c];return(BigInt(F)<>>=0,m||g(c,4,this.length),j.read(this,c,!0,23,4)},T.prototype.readFloatBE=function(c,m){return c>>>=0,m||g(c,4,this.length),j.read(this,c,!1,23,4)},T.prototype.readDoubleLE=function(c,m){return c>>>=0,m||g(c,8,this.length),j.read(this,c,!0,52,8)},T.prototype.readDoubleBE=function(c,m){return c>>>=0,m||g(c,8,this.length),j.read(this,c,!1,52,8)},T.prototype.writeUintLE=T.prototype.writeUIntLE=function(c,m,d,F){c=+c,m>>>=0,d>>>=0,F||$(this,c,m,d,Math.pow(2,8*d)-1,0);let v=1,k=0;for(this[m]=255&c;++k>>=0,d>>>=0,F||$(this,c,m,d,Math.pow(2,8*d)-1,0);let v=d-1,k=1;for(this[m+v]=255&c;--v>=0&&(k*=256);)this[m+v]=c/k&255;return m+d},T.prototype.writeUint8=T.prototype.writeUInt8=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,1,255,0),this[m]=255&c,m+1},T.prototype.writeUint16LE=T.prototype.writeUInt16LE=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,2,65535,0),this[m]=255&c,this[m+1]=c>>>8,m+2},T.prototype.writeUint16BE=T.prototype.writeUInt16BE=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,2,65535,0),this[m]=c>>>8,this[m+1]=255&c,m+2},T.prototype.writeUint32LE=T.prototype.writeUInt32LE=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,4,4294967295,0),this[m+3]=c>>>24,this[m+2]=c>>>16,this[m+1]=c>>>8,this[m]=255&c,m+4},T.prototype.writeUint32BE=T.prototype.writeUInt32BE=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,4,4294967295,0),this[m]=c>>>24,this[m+1]=c>>>16,this[m+2]=c>>>8,this[m+3]=255&c,m+4},T.prototype.writeBigUInt64LE=ge(function(c,m=0){return Z(this,c,m,BigInt(0),BigInt("0xffffffffffffffff"))}),T.prototype.writeBigUInt64BE=ge(function(c,m=0){return R(this,c,m,BigInt(0),BigInt("0xffffffffffffffff"))}),T.prototype.writeIntLE=function(c,m,d,F){if(c=+c,m>>>=0,!F){const se=Math.pow(2,8*d-1);$(this,c,m,d,se-1,-se)}let v=0,k=1,H=0;for(this[m]=255&c;++v>>=0,!F){const se=Math.pow(2,8*d-1);$(this,c,m,d,se-1,-se)}let v=d-1,k=1,H=0;for(this[m+v]=255&c;--v>=0&&(k*=256);)c<0&&0===H&&0!==this[m+v+1]&&(H=1),this[m+v]=(c/k|0)-H&255;return m+d},T.prototype.writeInt8=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,1,127,-128),c<0&&(c=255+c+1),this[m]=255&c,m+1},T.prototype.writeInt16LE=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,2,32767,-32768),this[m]=255&c,this[m+1]=c>>>8,m+2},T.prototype.writeInt16BE=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,2,32767,-32768),this[m]=c>>>8,this[m+1]=255&c,m+2},T.prototype.writeInt32LE=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,4,2147483647,-2147483648),this[m]=255&c,this[m+1]=c>>>8,this[m+2]=c>>>16,this[m+3]=c>>>24,m+4},T.prototype.writeInt32BE=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,4,2147483647,-2147483648),c<0&&(c=4294967295+c+1),this[m]=c>>>24,this[m+1]=c>>>16,this[m+2]=c>>>8,this[m+3]=255&c,m+4},T.prototype.writeBigInt64LE=ge(function(c,m=0){return Z(this,c,m,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),T.prototype.writeBigInt64BE=ge(function(c,m=0){return R(this,c,m,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),T.prototype.writeFloatLE=function(c,m,d){return Re(this,c,m,!0,d)},T.prototype.writeFloatBE=function(c,m,d){return Re(this,c,m,!1,d)},T.prototype.writeDoubleLE=function(c,m,d){return fe(this,c,m,!0,d)},T.prototype.writeDoubleBE=function(c,m,d){return fe(this,c,m,!1,d)},T.prototype.copy=function(c,m,d,F){if(!T.isBuffer(c))throw new TypeError("argument should be a Buffer");if(d||(d=0),!F&&0!==F&&(F=this.length),m>=c.length&&(m=c.length),m||(m=0),F>0&&F=this.length)throw new RangeError("Index out of range");if(F<0)throw new RangeError("sourceEnd out of bounds");F>this.length&&(F=this.length),c.length-m>>=0,d=void 0===d?this.length:d>>>0,c||(c=0),"number"==typeof c)for(v=m;v=d+4;m-=3)c=`_${u.slice(m-3,m)}${c}`;return`${u.slice(0,m)}${c}`}function Xe(u,c,m,d,F,v){if(u>m||u3?0===c||c===BigInt(0)?`>= 0${k} and < 2${k} ** ${8*(v+1)}${k}`:`>= -(2${k} ** ${8*(v+1)-1}${k}) and < 2 ** ${8*(v+1)-1}${k}`:`>= ${c}${k} and <= ${m}${k}`,new pe.ERR_OUT_OF_RANGE("value",H,u)}!function et(u,c,m){Ee(c,"offset"),(void 0===u[c]||void 0===u[c+m])&&Ie(c,u.length-(m+1))}(d,F,v)}function Ee(u,c){if("number"!=typeof u)throw new pe.ERR_INVALID_ARG_TYPE(c,"number",u)}function Ie(u,c,m){throw Math.floor(u)!==u?(Ee(u,m),new pe.ERR_OUT_OF_RANGE(m||"offset","an integer",u)):c<0?new pe.ERR_BUFFER_OUT_OF_BOUNDS:new pe.ERR_OUT_OF_RANGE(m||"offset",`>= ${m?1:0} and <= ${c}`,u)}ye("ERR_BUFFER_OUT_OF_BOUNDS",function(u){return u?`${u} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),ye("ERR_INVALID_ARG_TYPE",function(u,c){return`The "${u}" argument must be of type number. Received type ${typeof c}`},TypeError),ye("ERR_OUT_OF_RANGE",function(u,c,m){let d=`The value of "${u}" is out of range.`,F=m;return Number.isInteger(m)&&Math.abs(m)>2**32?F=Ue(String(m)):"bigint"==typeof m&&(F=String(m),(m>BigInt(2)**BigInt(32)||m<-(BigInt(2)**BigInt(32)))&&(F=Ue(F)),F+="n"),d+=` It must be ${c}. Received ${F}`,d},RangeError);const tt=/[^+/0-9A-Za-z-_]/g;function Me(u,c){let m;c=c||1/0;const d=u.length;let F=null;const v=[];for(let k=0;k55295&&m<57344){if(!F){if(m>56319){(c-=3)>-1&&v.push(239,191,189);continue}if(k+1===d){(c-=3)>-1&&v.push(239,191,189);continue}F=m;continue}if(m<56320){(c-=3)>-1&&v.push(239,191,189),F=m;continue}m=65536+(F-55296<<10|m-56320)}else F&&(c-=3)>-1&&v.push(239,191,189);if(F=null,m<128){if((c-=1)<0)break;v.push(m)}else if(m<2048){if((c-=2)<0)break;v.push(m>>6|192,63&m|128)}else if(m<65536){if((c-=3)<0)break;v.push(m>>12|224,m>>6&63|128,63&m|128)}else{if(!(m<1114112))throw new Error("Invalid code point");if((c-=4)<0)break;v.push(m>>18|240,m>>12&63|128,m>>6&63|128,63&m|128)}}return v}function K(u){return le.toByteArray(function nt(u){if((u=(u=u.split("=")[0]).trim().replace(tt,"")).length<2)return"";for(;u.length%4!=0;)u+="=";return u}(u))}function je(u,c,m,d){let F;for(F=0;F=c.length||F>=u.length);++F)c[F+m]=u[F];return F}function ve(u,c){return u instanceof c||null!=u&&null!=u.constructor&&null!=u.constructor.name&&u.constructor.name===c.name}function Oe(u){return u!=u}const Ge=function(){const u="0123456789abcdef",c=new Array(256);for(let m=0;m<16;++m){const d=16*m;for(let F=0;F<16;++F)c[d+F]=u[m]+u[F]}return c}();function ge(u){return typeof BigInt>"u"?it:u}function it(){throw new Error("BigInt not supported")}},2020(Ze,xe){xe.read=function(S,y,le,j,re){var e,D,b=8*re-j-1,T=(1<>1,C=-7,x=le?re-1:0,me=le?-1:1,L=S[y+x];for(x+=me,e=L&(1<<-C)-1,L>>=-C,C+=b;C>0;e=256*e+S[y+x],x+=me,C-=8);for(D=e&(1<<-C)-1,e>>=-C,C+=j;C>0;D=256*D+S[y+x],x+=me,C-=8);if(0===e)e=1-_e;else{if(e===T)return D?NaN:1/0*(L?-1:1);D+=Math.pow(2,j),e-=_e}return(L?-1:1)*D*Math.pow(2,e-j)},xe.write=function(S,y,le,j,re,e){var D,b,T,_e=8*e-re-1,C=(1<<_e)-1,x=C>>1,me=23===re?Math.pow(2,-24)-Math.pow(2,-77):0,L=j?0:e-1,q=j?1:-1,I=y<0||0===y&&1/y<0?1:0;for(y=Math.abs(y),isNaN(y)||y===1/0?(b=isNaN(y)?1:0,D=C):(D=Math.floor(Math.log(y)/Math.LN2),y*(T=Math.pow(2,-D))<1&&(D--,T*=2),(y+=D+x>=1?me/T:me*Math.pow(2,1-x))*T>=2&&(D++,T/=2),D+x>=C?(b=0,D=C):D+x>=1?(b=(y*T-1)*Math.pow(2,re),D+=x):(b=y*Math.pow(2,x-1)*Math.pow(2,re),D=0));re>=8;S[le+L]=255&b,L+=q,b/=256,re-=8);for(D=D<0;S[le+L]=255&D,L+=q,D/=256,_e-=8);S[le+L-q]|=128*I}}}]); \ No newline at end of file diff --git a/frontend/190.558182128d53aa6a.js b/frontend/190.558182128d53aa6a.js deleted file mode 100644 index 52a34b5d..00000000 --- a/frontend/190.558182128d53aa6a.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[190],{39190:($C,Be,y)=>{y.r(Be),y.d(Be,{LNDModule:()=>DC});var _=y(72200),ie=y(38132),w=y(43694),dt=y(9881),e=y(73664),V=y(67575),f=y(52920);function ht(t,s){1&t&&e.nrm(0,"mat-progress-bar",3)}let Oe=(()=>{var t;class s{constructor(i){this.router=i,this.loading=!1,this.router.events.subscribe(o=>{switch(!0){case o instanceof w.Z:this.loading=!0;break;case o instanceof w.wF:case o instanceof w.j5:case o instanceof w.L6:this.loading=!1}})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(w.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lnd-root"]],standalone:!1,decls:4,vars:1,consts:[["outlet","outlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["color","primary","mode","indeterminate"]],template:function(o,a){1&o&&(e.j41(0,"div",1),e.DNE(1,ht,1,0,"mat-progress-bar",2),e.nrm(2,"router-outlet",null,0),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf",a.loading))},dependencies:[_.bT,V.HM,f.DJ,f.sA,f.UI,w.n3],encapsulation:2,data:{animation:[dt.E]}}))}return t(),s})();var h=y(21413),g=y(56977),ge=y(53993),U=y(5964),Ve=y(90614),x=y(45383),c=y(4416),H=y(79647),F=y(63536),r=y(2615),D=y(98570),L=y(59640),K=y(11747),$=y(82571),O=y(20060),_t=y(22598),k=y(25596),Ce=y(82885),oe=y(12629),Se=y(59115),j=y(16038),A=y(96850),G=y(96695),R=y(2042),u=y(19295),E=y(96183),Y=y(51585),T=y(190),d=y(89417),N=y(88834),M=y(33746),C=y(69588),X=y(23029),he=y(30450),ee=y(40455),te=y(89587),ae=y(56114);function ft(t,s){1&t&&(e.j41(0,"span",32),e.EFF(1,"= "),e.k0s())}function gt(t,s){if(1&t&&(e.j41(0,"span",33),e.nrm(1,"fa-icon",34),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.convertedCurrency.symbol)}}function Ct(t,s){if(1&t&&e.nrm(0,"span",35),2&t){const n=e.XpG();e.Y8G("innerHTML",n.convertedCurrency.symbol,e.npT)}}function yt(t,s){if(1&t&&(e.j41(0,"mat-option",36),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.JRh(e.bMT(2,2,n))}}function bt(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.invoiceError)}}function Ft(t,s){if(1&t&&(e.j41(0,"div",37),e.nrm(1,"fa-icon",38),e.DNE(2,bt,2,1,"span",39),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.invoiceError)}}let xt=(()=>{var t;class s{constructor(i,o,a,l,p,m){this.dialogRef=i,this.data=o,this.store=a,this.decimalPipe=l,this.commonService=p,this.actions=m,this.faExclamationTriangle=x.zpE,this.convertedCurrency=null,this.memo="",this.isAmp=!1,this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=c.md,this.timeUnitEnum=c.F7,this.timeUnits=c.SY,this.selTimeUnit=c.F7.SECS,this.invoiceError="",this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(H._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(F.pI).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.actions.pipe((0,g.Q)(this.unSubs[2]),(0,U.p)(i=>i.type===c.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(i=>{i.type===c.QP.UPDATE_API_CALL_STATUS_LND&&"SaveNewInvoice"===i.payload.action&&(this.invoiceError=i.payload.message,i.payload.status===c.wn.ERROR&&(this.invoiceError=i.payload.message),i.payload.status===c.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(i){this.invoiceError="";let o=0;o=this.expiry?this.selTimeUnit!==c.F7.SECS?this.commonService.convertTime(this.expiry,this.selTimeUnit,c.F7.SECS):this.expiry:c.It,this.store.dispatch((0,T.VK)({payload:{uiMessage:c.MZ.ADD_INVOICE,memo:this.memo,value:this.invoiceValue,private:this.private,expiry:o,is_amp:this.isAmp,pageSize:this.pageSize,openModal:!0}}))}resetData(){this.memo="",this.invoiceValue=null,this.private=!1,this.isAmp=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=c.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[3])).subscribe({next:i=>{this.convertedCurrency=i,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,c.k.OTHER)+" "+this.convertedCurrency.unit},error:i=>{this.invoiceValueHint="Conversion Error: "+i}}))}onTimeUnitChange(i){this.expiry&&this.selTimeUnit!==i.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,i.value)),this.selTimeUnit=i.value}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Y.CP),e.rXU(Y.Vh),e.rXU(L.il),e.rXU(_.QX),e.rXU($.h),e.rXU(K.En))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-create-invoices"]],standalone:!1,decls:53,vars:20,consts:[["addInvoiceForm","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","end start"],["matInput","","autoFocus","","tabindex","1","name","memo",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","2","name","invoiceValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","column","fxFlex","24","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","3","name","expiry",3,"ngModelChange","step","min","ngModel"],["tabindex","4","name","timeUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"ml-2"],["fxFlex","49","fxLayoutAlign","start start"],["tabindex","4","color","primary","name","private",3,"ngModelChange","ngModel"],["matTooltip","Include routing hints for private channels","matTooltipPosition","above",1,"info-icon"],["tabindex","5","color","primary","name","amp",3,"ngModelChange","ngModel"],["matTooltip","Atomic multipath payment invoice","matTooltipPosition","above",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","6","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","7",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Create Invoice"),e.k0s()(),e.j41(6,"button",6),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),e.EFF(13,"Memo"),e.k0s(),e.j41(14,"input",10),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.memo,m)||(a.memo=m),r.Njj(m)}),e.k0s()(),e.j41(15,"mat-form-field",11)(16,"mat-label"),e.EFF(17,"Amount"),e.k0s(),e.j41(18,"input",12),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.invoiceValue,m)||(a.invoiceValue=m),r.Njj(m)}),e.bIt("keyup",function(){return r.eBV(l),r.Njj(a.onInvoiceValueChange())}),e.k0s(),e.j41(19,"span",13),e.EFF(20,"Sats "),e.k0s(),e.j41(21,"mat-hint",14),e.DNE(22,ft,2,0,"span",15)(23,gt,2,1,"span",16)(24,Ct,1,1,"span",17),e.EFF(25),e.k0s()(),e.j41(26,"mat-form-field",18)(27,"mat-label"),e.EFF(28,"Expiry"),e.k0s(),e.j41(29,"input",19),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.expiry,m)||(a.expiry=m),r.Njj(m)}),e.k0s(),e.j41(30,"span",13),e.EFF(31),e.nI1(32,"titlecase"),e.k0s()(),e.j41(33,"mat-form-field",18)(34,"mat-select",20),e.bIt("selectionChange",function(m){return r.eBV(l),r.Njj(a.onTimeUnitChange(m))}),e.DNE(35,yt,3,4,"mat-option",21),e.k0s()(),e.j41(36,"div",22)(37,"div",23)(38,"mat-slide-toggle",24),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.private,m)||(a.private=m),r.Njj(m)}),e.EFF(39,"Private Routing Hints"),e.k0s(),e.j41(40,"mat-icon",25),e.EFF(41,"info_outline"),e.k0s()(),e.j41(42,"div",23)(43,"mat-slide-toggle",26),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.isAmp,m)||(a.isAmp=m),r.Njj(m)}),e.EFF(44,"AMP Invoice"),e.k0s(),e.j41(45,"mat-icon",27),e.EFF(46,"info_outline"),e.k0s()()(),e.DNE(47,Ft,3,2,"div",28),e.j41(48,"div",29)(49,"button",30),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(50,"Clear Field"),e.k0s(),e.j41(51,"button",31),e.bIt("click",function(){r.eBV(l);const m=e.sdS(10);return r.Njj(a.onAddInvoice(m))}),e.EFF(52,"Create Invoice"),e.k0s()()()()()()}2&o&&(e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(8),e.R50("ngModel",a.memo),e.R7$(4),e.Y8G("step",100)("min",1),e.R50("ngModel",a.invoiceValue),e.R7$(4),e.Y8G("ngIf",""!==a.invoiceValueHint),e.R7$(),e.Y8G("ngIf",a.convertedCurrency&&"FA"===a.convertedCurrency.iconType&&""!==a.invoiceValueHint),e.R7$(),e.Y8G("ngIf",a.convertedCurrency&&"SVG"===a.convertedCurrency.iconType&&""!==a.invoiceValueHint),e.R7$(),e.SpI(" ",a.invoiceValueHint," "),e.R7$(4),e.Y8G("step",a.selTimeUnit===a.timeUnitEnum.SECS?300:a.selTimeUnit===a.timeUnitEnum.MINS?10:a.selTimeUnit===a.timeUnitEnum.HOURS?2:1)("min",1),e.R50("ngModel",a.expiry),e.R7$(2),e.SpI("",e.bMT(32,18,a.selTimeUnit)," "),e.R7$(3),e.Y8G("value",a.selTimeUnit),e.R7$(),e.Y8G("ngForOf",a.timeUnits),e.R7$(3),e.R50("ngModel",a.private),e.R7$(5),e.R50("ngModel",a.isAmp),e.R7$(4),e.Y8G("ngIf",""!==a.invoiceError))},dependencies:[_.Sq,_.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.VZ,d.vS,d.cV,O.aY,Y.tx,N.$z,k.m2,k.MM,oe.An,M.fg,C.rl,C.nJ,C.MV,C.yw,f.DJ,f.sA,f.UI,E.VO,X.wT,he.sG,ee.oV,te.N,ae.V,_.PV],encapsulation:2}))}return t(),s})();var vt=y(46391),I=y(11771),J=y(52929),B=y(10497);const Tt=()=>["all"],kt=t=>({"error-border":t}),St=()=>["no_invoice"],ye=t=>({"mr-0":t}),re=t=>({width:t}),Rt=t=>({"display-none":t});function Et(t,s){1&t&&(e.j41(0,"span",19),e.EFF(1,"= "),e.k0s())}function It(t,s){if(1&t&&(e.j41(0,"span",20),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.convertedCurrency.symbol)}}function Lt(t,s){if(1&t&&e.nrm(0,"span",22),2&t){const n=e.XpG(2);e.Y8G("innerHTML",n.convertedCurrency.symbol,e.npT)}}function wt(t,s){if(1&t){const n=e.RV6();e.j41(0,"form",6,0)(2,"mat-form-field",7)(3,"mat-label"),e.EFF(4,"Memo"),e.k0s(),e.j41(5,"input",8),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.memo,o)||(a.memo=o),r.Njj(o)}),e.k0s()(),e.j41(6,"mat-form-field",9)(7,"mat-label"),e.EFF(8,"Amount"),e.k0s(),e.j41(9,"input",10),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.invoiceValue,o)||(a.invoiceValue=o),r.Njj(o)}),e.bIt("keyup",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onInvoiceValueChange())}),e.k0s(),e.j41(10,"span",11),e.EFF(11,"Sats "),e.k0s(),e.j41(12,"mat-hint",12),e.DNE(13,Et,2,0,"span",13)(14,It,2,1,"span",14)(15,Lt,1,1,"span",15),e.EFF(16),e.k0s()(),e.j41(17,"div",16)(18,"button",17),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.EFF(19,"Clear Field"),e.k0s(),e.j41(20,"button",18),e.bIt("click",function(){r.eBV(n);const o=e.sdS(1),a=e.XpG();return r.Njj(a.onAddInvoice(o))}),e.EFF(21,"Create Invoice"),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(5),e.R50("ngModel",n.memo),e.R7$(4),e.Y8G("step",100)("min",1),e.R50("ngModel",n.invoiceValue),e.R7$(4),e.Y8G("ngIf",""!==n.invoiceValueHint),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"FA"===n.convertedCurrency.iconType&&""!==n.invoiceValueHint),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"SVG"===n.convertedCurrency.iconType&&""!==n.invoiceValueHint),e.R7$(),e.SpI(" ",n.invoiceValueHint," ")}}function jt(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",23)(1,"button",24),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.openCreateInvoiceModal())}),e.EFF(2,"Create Invoice"),e.k0s()()}}function Gt(t,s){if(1&t&&(e.j41(0,"mat-option",72),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function Dt(t,s){1&t&&e.nrm(0,"mat-progress-bar",73)}function Nt(t,s){1&t&&e.nrm(0,"th",74)}function Pt(t,s){if(1&t&&e.nrm(0,"span",80),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,ye,n.screenSize===n.screenSizeEnum.XS))}}function $t(t,s){if(1&t&&e.nrm(0,"span",81),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,ye,n.screenSize===n.screenSizeEnum.XS))}}function At(t,s){if(1&t&&e.nrm(0,"span",82),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,ye,n.screenSize===n.screenSizeEnum.XS))}}function Mt(t,s){if(1&t&&e.nrm(0,"span",83),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,ye,n.screenSize===n.screenSizeEnum.XS))}}function Bt(t,s){if(1&t&&(e.j41(0,"td",75),e.DNE(1,Pt,1,3,"span",76)(2,$t,1,3,"span",77)(3,At,1,3,"span",78)(4,Mt,1,3,"span",79),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf","OPEN"===(null==n?null:n.state)),e.R7$(),e.Y8G("ngIf","SETTLED"===(null==n?null:n.state)),e.R7$(),e.Y8G("ngIf","ACCEPTED"===(null==n?null:n.state)),e.R7$(),e.Y8G("ngIf","CANCELED"===(null==n?null:n.state))}}function Ot(t,s){1&t&&e.nrm(0,"th",84)}function Vt(t,s){if(1&t&&(e.j41(0,"span",87),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faEyeSlash)}}function Yt(t,s){if(1&t&&(e.j41(0,"span",88),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faEye)}}function Xt(t,s){if(1&t&&(e.j41(0,"td",75),e.DNE(1,Vt,2,1,"span",85)(2,Yt,2,1,"span",86),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",n.private),e.R7$(),e.Y8G("ngIf",!n.private)}}function Ut(t,s){1&t&&e.nrm(0,"th",89)}function Ht(t,s){if(1&t&&(e.j41(0,"span",92),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faArrowsTurnToDots)}}function zt(t,s){if(1&t&&(e.j41(0,"span",93),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faArrowsTurnRight)}}function qt(t,s){if(1&t&&(e.j41(0,"td",75),e.DNE(1,Ht,2,1,"span",90)(2,zt,2,1,"span",91),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",n.is_keysend),e.R7$(),e.Y8G("ngIf",!n.is_keysend)}}function Jt(t,s){1&t&&e.nrm(0,"th",94)}function Qt(t,s){if(1&t&&(e.j41(0,"span",97),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faMoneyBill1)}}function Wt(t,s){if(1&t&&(e.j41(0,"span",98),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faBurst)}}function Zt(t,s){if(1&t&&(e.j41(0,"td",75),e.DNE(1,Qt,2,1,"span",95)(2,Wt,2,1,"span",96),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",!n.is_amp),e.R7$(),e.Y8G("ngIf",n.is_amp)}}function Kt(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Date Created"),e.k0s())}function en(t,s){if(1&t&&(e.j41(0,"td",75),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,1e3*(null==n?null:n.creation_date),"dd/MMM/y HH:mm"))}}function tn(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Date Settled"),e.k0s())}function nn(t,s){if(1&t&&(e.j41(0,"td",75),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(0!=+(null==n?null:n.settle_date)?e.i5U(2,1,1e3*+(null==n?null:n.settle_date),"dd/MMM/y HH:mm"):"-")}}function an(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Memo"),e.k0s())}function sn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,re,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.memo)}}function on(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Preimage"),e.k0s())}function ln(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,re,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.r_preimage)}}function rn(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Preimage Hash"),e.k0s())}function cn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,re,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.r_hash)}}function pn(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Payment Address"),e.k0s())}function mn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,re,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_addr)}}function un(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Payment Request"),e.k0s())}function dn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,re,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_request)}}function hn(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Description Hash"),e.k0s())}function _n(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,re,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.description_hash)}}function fn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"Expiry"),e.k0s())}function gn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.expiry)," ")}}function Cn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"CLTV Expiry"),e.k0s())}function yn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.cltv_expiry)," ")}}function bn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"Add Index"),e.k0s())}function Fn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.add_index)," ")}}function xn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"Settle Index"),e.k0s())}function vn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.settle_index)," ")}}function Tn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"Amount (Sats)"),e.k0s())}function kn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.value)," ")}}function Sn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"Amount Settled (Sats)"),e.k0s())}function Rn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.amt_paid_sat)," ")}}function En(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",104)(1,"div",105)(2,"mat-select",106),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",107),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function In(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",108)(1,"div",105)(2,"mat-select",109),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",107),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onInvoiceClick(o))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",107),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onRefreshInvoice(o))}),e.EFF(7,"Refresh"),e.k0s()()()()}}function Ln(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No invoice available."),e.k0s())}function wn(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting invoices..."),e.k0s())}function jn(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.errorMessage)}}function Gn(t,s){if(1&t&&(e.j41(0,"td",110),e.DNE(1,Ln,2,0,"p",111)(2,wn,2,0,"p",111)(3,jn,2,1,"p",111),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=n.invoices&&n.invoices.data)||(null==n.invoices||null==n.invoices.data?null:n.invoices.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.invoices&&n.invoices.data)||(null==n.invoices||null==n.invoices.data?null:n.invoices.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.invoices&&n.invoices.data)||(null==n.invoices||null==n.invoices.data?null:n.invoices.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Dn(t,s){if(1&t&&e.nrm(0,"tr",112),2&t){const n=e.XpG(2);e.Y8G("ngClass",e.eq3(1,Rt,(null==n.invoices?null:n.invoices.data)&&(null==n.invoices||null==n.invoices.data?null:n.invoices.data.length)>0))}}function Nn(t,s){1&t&&e.nrm(0,"tr",113)}function Pn(t,s){1&t&&e.nrm(0,"tr",114)}function $n(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",25)(1,"div",26)(2,"div",27),e.nrm(3,"fa-icon",28),e.j41(4,"span",29),e.EFF(5,"Invoices History"),e.k0s()(),e.j41(6,"div",30)(7,"mat-form-field",31)(8,"mat-label"),e.EFF(9,"Filter By"),e.k0s(),e.j41(10,"mat-select",32),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilterBy,o)||(a.selFilterBy=o),r.Njj(o)}),e.bIt("selectionChange",function(){r.eBV(n);const o=e.XpG();return o.selFilter="",r.Njj(o.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,Gt,2,2,"mat-option",33),e.k0s()()(),e.j41(13,"mat-form-field",31)(14,"mat-label"),e.EFF(15,"Filter"),e.k0s(),e.j41(16,"input",34),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilter,o)||(a.selFilter=o),r.Njj(o)}),e.bIt("input",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())})("keyup",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())}),e.k0s()()()(),e.j41(17,"div",35),e.DNE(18,Dt,1,0,"mat-progress-bar",36),e.j41(19,"table",37,1),e.qex(21,38),e.DNE(22,Nt,1,0,"th",39)(23,Bt,5,4,"td",40),e.bVm(),e.qex(24,41),e.DNE(25,Ot,1,0,"th",42)(26,Xt,3,2,"td",40),e.bVm(),e.qex(27,43),e.DNE(28,Ut,1,0,"th",44)(29,qt,3,2,"td",40),e.bVm(),e.qex(30,45),e.DNE(31,Jt,1,0,"th",46)(32,Zt,3,2,"td",40),e.bVm(),e.qex(33,47),e.DNE(34,Kt,2,0,"th",48)(35,en,3,4,"td",40),e.bVm(),e.qex(36,49),e.DNE(37,tn,2,0,"th",48)(38,nn,3,4,"td",40),e.bVm(),e.qex(39,50),e.DNE(40,an,2,0,"th",48)(41,sn,4,4,"td",40),e.bVm(),e.qex(42,51),e.DNE(43,on,2,0,"th",48)(44,ln,4,4,"td",40),e.bVm(),e.qex(45,52),e.DNE(46,rn,2,0,"th",48)(47,cn,4,4,"td",40),e.bVm(),e.qex(48,53),e.DNE(49,pn,2,0,"th",48)(50,mn,4,4,"td",40),e.bVm(),e.qex(51,54),e.DNE(52,un,2,0,"th",48)(53,dn,4,4,"td",40),e.bVm(),e.qex(54,55),e.DNE(55,hn,2,0,"th",48)(56,_n,4,4,"td",40),e.bVm(),e.qex(57,56),e.DNE(58,fn,2,0,"th",57)(59,gn,4,3,"td",40),e.bVm(),e.qex(60,58),e.DNE(61,Cn,2,0,"th",57)(62,yn,4,3,"td",40),e.bVm(),e.qex(63,59),e.DNE(64,bn,2,0,"th",57)(65,Fn,4,3,"td",40),e.bVm(),e.qex(66,60),e.DNE(67,xn,2,0,"th",57)(68,vn,4,3,"td",40),e.bVm(),e.qex(69,61),e.DNE(70,Tn,2,0,"th",57)(71,kn,4,3,"td",40),e.bVm(),e.qex(72,62),e.DNE(73,Sn,2,0,"th",57)(74,Rn,4,3,"td",40),e.bVm(),e.qex(75,63),e.DNE(76,En,6,0,"th",64)(77,In,8,0,"td",65),e.bVm(),e.qex(78,66),e.DNE(79,Gn,4,3,"td",67),e.bVm(),e.DNE(80,Dn,1,3,"tr",68)(81,Nn,1,0,"tr",69)(82,Pn,1,0,"tr",70),e.k0s(),e.j41(83,"mat-paginator",71),e.bIt("page",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onPageChange(o))}),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(3),e.Y8G("icon",n.faHistory),e.R7$(7),e.R50("ngModel",n.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(16,Tt).concat(n.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",n.selFilter),e.R7$(2),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",n.tableSetting.sortBy)("matSortDirection",n.tableSetting.sortOrder)("dataSource",n.invoices)("ngClass",e.eq3(17,kt,""!==n.errorMessage)),e.R7$(61),e.Y8G("matFooterRowDef",e.lJ4(19,St)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns),e.R7$(),e.Y8G("length",n.totalInvoices)("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("hidePageSize",n.screenSize!==n.screenSizeEnum.XS)}}let Ye=(()=>{var t;class s{constructor(i,o,a,l,p,m,v){this.logger=i,this.store=o,this.decimalPipe=a,this.commonService=l,this.datePipe=p,this.actions=m,this.camelCaseWithReplace=v,this.calledFrom="transactions",this.faEye=x.pS3,this.faEyeSlash=x.k6j,this.faHistory=x.Int,this.faArrowsTurnToDots=x.If6,this.faArrowsTurnRight=x.peG,this.faBurst=x.M29,this.faMoneyBill1=x.Ccf,this.convertedCurrency=null,this.nodePageDefs=c._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:c.md,sortBy:"creation_date",sortOrder:c.oi.DESCENDING},this.newlyAddedInvoiceMemo=null,this.newlyAddedInvoiceValue=null,this.memo="",this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoicesData=[],this.invoices=new u.I6([]),this.information={},this.selFilter="",this.private=!1,this.expiryStep=100,this.pageSize=c.md,this.pageSizeOptions=c.xp,this.firstOffset=-1,this.lastOffset=-1,this.totalInvoices=0,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(H._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(F.pI).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(F.$G).pipe((0,g.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("state"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(F.rN).pipe((0,g.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalInvoices=i.listInvoices.total_invoices||0,this.firstOffset=+(i.listInvoices.first_index_offset||-1),this.lastOffset=+(i.listInvoices.last_index_offset||-1),this.invoicesData=i.listInvoices.invoices||[],this.invoicesData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoicesData),this.logger.info(i)}),this.actions.pipe((0,g.Q)(this.unSubs[4]),(0,U.p)(i=>i.type===c.QP.SET_LOOKUP_LND||i.type===c.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(i=>{i.type===c.QP.SET_LOOKUP_LND&&this.invoicesData&&this.sort&&this.paginator&&i.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(i.payload))),this.loadInvoicesTable(this.invoicesData))})}ngAfterViewInit(){this.invoicesData.length>0&&this.loadInvoicesTable(this.invoicesData)}onAddInvoice(i){const o=this.expiry?this.expiry:c.It;this.newlyAddedInvoiceMemo=this.memo,this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,T.VK)({payload:{uiMessage:c.MZ.ADD_INVOICE,memo:this.memo,value:this.invoiceValue,private:this.private,expiry:o,is_amp:!1,pageSize:this.pageSize,openModal:!0}})),this.resetData()}onInvoiceClick(i){this.store.dispatch((0,I.xO)({payload:{data:{invoice:i,newlyAdded:!1,component:vt.H}}}))}onRefreshInvoice(i){i&&i.r_hash&&this.store.dispatch((0,T.Yi)({payload:{openSnackBar:!0,paymentHash:Buffer.from(i.r_hash.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}}))}updateInvoicesData(i){this.invoicesData=this.invoicesData?.map(o=>o.r_hash===i.r_hash?i:o)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.invoices.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.creation_date?this.datePipe.transform(new Date(1e3*i.creation_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+(i.settle_date?this.datePipe.transform(new Date(1e3*i.settle_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(i).toLowerCase();break;case"creation_date":case"settle_date":a=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"private":a=i?.private?"private":"public";break;case"is_keysend":a=i?.is_keysend?"keysend invoices":"non keysend invoices";break;case"is_amp":a=i?.is_amp?"atomic multi path payment":"non atomic payment";break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"is_keysend"===this.selFilterBy||"is_amp"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}loadInvoicesTable(i){this.invoices=new u.I6(i?[...i]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.invoices)}resetData(){this.memo="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint=""}onPageChange(i){let o=!0,a=this.lastOffset;this.pageSize=i.pageSize,0===i.pageIndex?(o=!0,a=0):i.previousPageIndex&&i.pageIndexi.previousPageIndex&&i.length>(i.pageIndex+1)*i.pageSize?(o=!0,a=this.firstOffset):i.length<=(i.pageIndex+1)*i.pageSize&&(o=!1,a=0),this.store.dispatch((0,T.Do)({payload:{num_max_invoices:i.pageSize,index_offset:a,reversed:o}}))}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[5])).subscribe({next:i=>{this.convertedCurrency=i,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,c.k.OTHER)+" "+this.convertedCurrency.unit},error:i=>{this.invoiceValueHint="Conversion Error: "+i}}))}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}openCreateInvoiceModal(){this.store.dispatch((0,I.xO)({payload:{data:{pageSize:this.pageSize,component:xt}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU(L.il),e.rXU(_.QX),e.rXU($.h),e.rXU(_.vh),e.rXU(K.En),e.rXU(J.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lightning-invoices"]],viewQuery:function(o,a){if(1&o&&(e.GBs(R.B4,5),e.GBs(G.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[e.Jv_([{provide:E.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:G.xX,useValue:(0,c.on)("Invoices")}])],decls:4,vars:3,consts:[["addInvoiceForm","ngForm"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","end start"],["matInput","","tabindex","1","name","memo",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","2","name","invValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","5",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private",4,"matHeaderCellDef"],["matColumnDef","is_keysend"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Keysend",4,"matHeaderCellDef"],["matColumnDef","is_amp"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","AMP",4,"matHeaderCellDef"],["matColumnDef","creation_date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","settle_date"],["matColumnDef","memo"],["matColumnDef","r_preimage"],["matColumnDef","r_hash"],["matColumnDef","payment_addr"],["matColumnDef","payment_request"],["matColumnDef","description_hash"],["matColumnDef","expiry"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","cltv_expiry"],["matColumnDef","add_index"],["matColumnDef","settle_index"],["matColumnDef","value"],["matColumnDef","amt_paid_sat"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","6",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"page","length","pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State"],["mat-cell",""],["class","dot grey","matTooltip","Open","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Canceled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Open","matTooltipPosition","right",1,"dot","grey",3,"ngClass"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Canceled","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private"],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Keysend"],["class","mr-1","matTooltip","Keysend Invoices","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Non Keysend Invoices","matTooltipPosition","right",4,"ngIf"],["matTooltip","Keysend Invoices","matTooltipPosition","right",1,"mr-1"],["matTooltip","Non Keysend Invoices","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","AMP"],["class","mr-1","matTooltip","Non Atomic Payment","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Atomic Multi Path Payment","matTooltipPosition","right",4,"ngIf"],["matTooltip","Non Atomic Payment","matTooltipPosition","right",1,"mr-1"],["matTooltip","Atomic Multi Path Payment","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","6"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){1&o&&(e.j41(0,"div",2),e.DNE(1,wt,22,8,"form",3)(2,jt,3,0,"div",4)(3,$n,84,20,"div",5),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf","home"===a.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===a.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===a.calledFrom))},dependencies:[_.YU,_.Sq,_.bT,_.B3,d.qT,d.me,d.Q0,d.BC,d.cb,d.VZ,d.vS,d.cV,O.aY,N.$z,M.fg,C.rl,C.nJ,C.MV,C.yw,V.HM,f.DJ,f.sA,f.UI,j.PW,j.eI,E.VO,E.$2,X.wT,R.B4,R.aE,u.Zl,u.tL,u.ji,u.cC,u.YV,u.iL,u.Zq,u.xW,u.KS,u.$R,u.Qo,u.YZ,u.NB,u.iF,ee.oV,G.iy,B.ZF,B.Ld,ae.V,_.QX,_.vh],styles:[".mat-column-state[_ngcontent-%COMP%], .mat-column-private[_ngcontent-%COMP%], .mat-column-is_keysend[_ngcontent-%COMP%], .mat-column-is_amp[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return t(),s})();var W=y(96697),Z=y(51534),z=y(9454),ce=y(22628);const An=["paymentReq"];function Mn(t,s){if(1&t&&(e.j41(0,"span",36),e.nrm(1,"fa-icon",37),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.convertedCurrency.symbol)}}function Bn(t,s){if(1&t&&e.nrm(0,"span",38),2&t){const n=e.XpG(2);e.Y8G("innerHTML",n.convertedCurrency.symbol,e.npT)}}function On(t,s){if(1&t&&(e.j41(0,"mat-hint",33),e.EFF(1),e.DNE(2,Mn,2,1,"span",34)(3,Bn,1,1,"span",35),e.EFF(4),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI(" ",n.paymentDecodedHintPre," "),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"FA"===n.convertedCurrency.iconType&&""!==n.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"SVG"===n.convertedCurrency.iconType&&""!==n.paymentDecodedHintPre),e.R7$(),e.SpI(" ",n.paymentDecodedHintPost," ")}}function Vn(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Payment request is required."),e.k0s())}function Yn(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.JRh(n.paymentDecodedHint)}}function Xn(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Payment amount is required."),e.k0s())}function Un(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",6)(1,"mat-label"),e.EFF(2,"Amount (Sats)"),e.k0s(),e.j41(3,"input",39,4),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.paymentAmount,o)||(a.paymentAmount=o),r.Njj(o)}),e.bIt("change",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onAmountChange(o))}),e.k0s(),e.j41(5,"mat-hint"),e.EFF(6,"It is a zero amount invoice, enter amount to be paid."),e.k0s(),e.DNE(7,Xn,2,0,"mat-error",16),e.k0s()}if(2&t){const n=e.XpG();e.R7$(3),e.R50("ngModel",n.paymentAmount),e.R7$(4),e.Y8G("ngIf",!n.paymentAmount)}}function Hn(t,s){if(1&t&&(e.j41(0,"mat-option",40),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.SpI(" ",null==n?null:n.name," ")}}function zn(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("",null==n.selFeeLimitType?null:n.selFeeLimitType.placeholder," is required.")}}function qn(t,s){if(1&t&&(e.j41(0,"mat-option",40),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.JRh((null==n?null:n.remote_alias)||(null==n?null:n.chan_id))}}function Jn(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Channel not found in the list."),e.k0s())}function Qn(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.paymentError)}}function Wn(t,s){if(1&t&&(e.j41(0,"div",41),e.nrm(1,"fa-icon",42),e.DNE(2,Qn,2,1,"span",16),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.paymentError)}}let Zn=(()=>{var t;class s{constructor(i,o,a,l,p,m,v){this.dialogRef=i,this.store=o,this.logger=a,this.commonService=l,this.decimalPipe=p,this.actions=m,this.dataService=v,this.faExclamationTriangle=x.zpE,this.convertedCurrency=null,this.paymentDecoded={},this.zeroAmtInvoice=!1,this.paymentAmount=null,this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.showAdvanced=!1,this.activeChannels=[],this.filteredMinAmtActvChannels=[],this.selectedChannelCtrl=new d.hs,this.isAmp=!1,this.feeLimit=null,this.selFeeLimitType=c.nv[0],this.feeLimitTypes=c.nv,this.advancedTitle="Advanced Options",this.paymentError="",this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.store.select(H._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(a=>{this.selNode=a}),this.store.select(F.BM).pipe((0,g.Q)(this.unSubs[1])).subscribe(a=>{this.activeChannels=a.channels&&a.channels.length?a.channels?.filter(l=>l.active):[],this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.logger.info(a)}),this.actions.pipe((0,g.Q)(this.unSubs[2]),(0,U.p)(a=>a.type===c.QP.UPDATE_API_CALL_STATUS_LND||a.type===c.QP.SEND_PAYMENT_STATUS_LND)).subscribe(a=>{a.type===c.QP.SEND_PAYMENT_STATUS_LND&&this.dialogRef.close(),a.type===c.QP.UPDATE_API_CALL_STATUS_LND&&a.payload.status===c.wn.ERROR&&"SendPayment"===a.payload.action&&(delete this.paymentDecoded.num_satoshis,this.paymentError=a.payload.message)});let i="",o="";this.activeChannels=this.activeChannels.sort((a,l)=>(i=a.remote_alias?a.remote_alias.toLowerCase():a.chan_id?a.chan_id.toLowerCase():"",o=l.remote_alias?l.remote_alias.toLowerCase():l.chan_id?l.chan_id.toLowerCase():"",io?1:0)),this.selectedChannelCtrl.valueChanges.pipe((0,g.Q)(this.unSubs[3])).subscribe(a=>{"string"==typeof a&&(this.filteredMinAmtActvChannels=this.filterChannels())})}filterChannels(){return this.activeChannels&&this.activeChannels.length?this.activeChannels?.filter(i=>0===(i.remote_alias?i.remote_alias.toLowerCase():i.chan_id?i.chan_id.toLowerCase():"").indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")&&(i.local_balance||0)>=+(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)):[]}displayFn(i){return i&&i.remote_alias?i.remote_alias:i&&i.chan_id?i.chan_id:""}onSelectedChannelChanged(){if(this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.length>0&&"string"==typeof this.selectedChannelCtrl.value){const i=this.activeChannels&&this.activeChannels.length?this.activeChannels?.filter(o=>{const a=o.remote_alias?o.remote_alias.toLowerCase():o.chan_id?o.chan_id.toLowerCase():"";return a.length===this.selectedChannelCtrl.value.length&&0===a.indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")}):[];i&&i.length>0?(this.selectedChannelCtrl.setValue(i[0]),this.selectedChannelCtrl.setErrors(null)):this.selectedChannelCtrl.setErrors({notfound:!0})}}onSendPayment(){if(this.selectedChannelCtrl.value&&"string"==typeof this.selectedChannelCtrl.value&&this.onSelectedChannelChanged(),!this.paymentRequest||this.zeroAmtInvoice&&(!this.paymentAmount||this.paymentAmount<=0)||"string"==typeof this.selectedChannelCtrl.value)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.onPaymentRequestEntry(this.paymentRequest)}sendPayment(){if(this.selFeeLimitType!==this.feeLimitTypes[0]&&!this.feeLimit)return!0;if(this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis){this.zeroAmtInvoice=!1;const i={uiMessage:c.MZ.SEND_PAYMENT,payment_request:this.paymentRequest,amp:this.isAmp,outgoing_chan_ids:this.selectedChannelCtrl.value?.chan_id?[this.selectedChannelCtrl.value.chan_id]:void 0,fee_limit_sat:(0,c.C6)(this.selFeeLimitType.id,this.feeLimit,+this.paymentDecoded.num_satoshis||0),fromDialog:!0};this.store.dispatch((0,T.Fd)({payload:i}))}else{this.zeroAmtInvoice=!0,this.paymentDecoded.num_satoshis=this.paymentAmount?.toString()||"";const i={uiMessage:c.MZ.SEND_PAYMENT,payment_request:this.paymentRequest,amp:this.isAmp,amt:this.paymentAmount||0,outgoing_chan_ids:this.selectedChannelCtrl.value?.chan_id?[this.selectedChannelCtrl.value.chan_id]:void 0,fee_limit_sat:(0,c.C6)(this.selFeeLimitType.id,this.feeLimit,this.paymentAmount||0),fromDialog:!0};this.store.dispatch((0,T.Fd)({payload:i}))}}onAmountChange(i){delete this.paymentDecoded.num_satoshis}onPaymentRequestEntry(i){this.paymentRequest=i,this.paymentAmount=null,this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentRequest&&this.paymentRequest.length>100&&(this.paymentReq.control.setErrors(null),this.zeroAmtInvoice=!1,this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,W.s)(1)).subscribe({next:o=>{this.paymentDecoded=o,this.selectedChannelCtrl.setValue(null),this.onAdvancedPanelToggle(!0,!0),this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis?(this.filteredMinAmtActvChannels=this.filterChannels(),this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"BTC",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[4])).subscribe({next:a=>{this.convertedCurrency=a,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(a.OTHER?a.OTHER:0,c.k.OTHER)+") | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")},error:a=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None"),this.paymentDecodedHintPost="")):(this.zeroAmtInvoice=!0,this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.paymentDecodedHintPre="Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None"),this.paymentDecodedHintPost="")},error:o=>{this.logger.error(o),this.paymentDecodedHintPre="ERROR: "+o.message,this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}onAdvancedPanelToggle(i,o){if(i&&!o){const a=this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.remote_alias?this.selectedChannelCtrl.value.remote_alias:this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.chan_id?this.selectedChannelCtrl.value.chan_id:"";this.advancedTitle="Advanced Options | "+this.selFeeLimitType.name+("none"===this.selFeeLimitType.id?"":": "+this.feeLimit)+(""!==a?" | First Outgoing Channel: "+a:"")}else this.advancedTitle="Advanced Options"}resetData(){this.paymentDecoded={},this.paymentRequest="",this.isAmp=!1,this.selectedChannelCtrl.setValue(null),this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.feeLimit=null,this.selFeeLimitType=c.nv[0],this.advancedTitle="Advanced Options",this.zeroAmtInvoice=!1,this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost=""}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Y.CP),e.rXU(L.il),e.rXU(D.gP),e.rXU($.h),e.rXU(_.QX),e.rXU(K.En),e.rXU(Z.u))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lightning-send-payments"]],viewQuery:function(o,a){if(1&o&&e.GBs(An,5),2&o){let l;e.mGM(l=e.lsd())&&(a.paymentReq=l.first)}},standalone:!1,decls:53,vars:22,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["fLmt","ngModel"],["auto","matAutocomplete"],["paymentAmt","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","11","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayoutAlign","space-between stretch","fxLayout","column"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","name","paymentRequest","rows","4","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxFlex","100","fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","27","fxLayoutAlign","start end"],["tabindex","5",3,"valueChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","33"],["matInput","","type","number","name","feeLmt","required","","tabindex","6",3,"ngModelChange","step","min","disabled","ngModel"],["fxLayout","column","fxFlex","37","fxLayoutAlign","start end"],["type","text","aria-label","First Outgoing Channel","matInput","","tabindex","7",3,"formControl","matAutocomplete"],[3,"optionSelected","displayWith"],["fxFlex","25","tabindex","8","color","primary","name","isAmp",3,"ngModelChange","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","9","type","reset",1,"mr-1",3,"click"],["mat-button","","id","sendBtn","color","primary","tabindex","10",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["matInput","","name","amount","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",5)(1,"div",6)(2,"mat-card-header",7)(3,"div",8)(4,"span",9),e.EFF(5,"Send Payment"),e.k0s()(),e.j41(6,"button",10),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",11)(9,"form",12,0)(11,"mat-form-field",13)(12,"mat-label"),e.EFF(13,"Payment Request"),e.k0s(),e.j41(14,"textarea",14,1),e.bIt("ngModelChange",function(m){return r.eBV(l),r.Njj(a.onPaymentRequestEntry(m))})("matTextareaAutosize",function(){return r.eBV(l),r.Njj(!0)}),e.k0s(),e.DNE(16,On,5,4,"mat-hint",15)(17,Vn,2,0,"mat-error",16)(18,Yn,2,1,"mat-error",16),e.k0s(),e.DNE(19,Un,8,2,"mat-form-field",17),e.j41(20,"mat-expansion-panel",18),e.bIt("closed",function(){return r.eBV(l),r.Njj(a.onAdvancedPanelToggle(!0,!1))})("opened",function(){return r.eBV(l),r.Njj(a.onAdvancedPanelToggle(!1,!1))}),e.j41(21,"mat-expansion-panel-header")(22,"mat-panel-title")(23,"span"),e.EFF(24),e.k0s()()(),e.j41(25,"div",19)(26,"mat-form-field",20)(27,"mat-label"),e.EFF(28,"Fee Limits"),e.k0s(),e.j41(29,"mat-select",21),e.mxI("valueChange",function(m){return r.eBV(l),e.DH7(a.selFeeLimitType,m)||(a.selFeeLimitType=m),r.Njj(m)}),e.DNE(30,Hn,2,2,"mat-option",22),e.k0s()(),e.j41(31,"mat-form-field",23)(32,"mat-label"),e.EFF(33),e.k0s(),e.j41(34,"input",24,2),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.feeLimit,m)||(a.feeLimit=m),r.Njj(m)}),e.k0s(),e.DNE(36,zn,2,1,"mat-error",16),e.k0s(),e.j41(37,"mat-form-field",25)(38,"mat-label"),e.EFF(39,"First Outgoing Channel"),e.k0s(),e.nrm(40,"input",26),e.j41(41,"mat-autocomplete",27,3),e.bIt("optionSelected",function(){return r.eBV(l),r.Njj(a.onSelectedChannelChanged())}),e.DNE(43,qn,2,2,"mat-option",22),e.k0s(),e.DNE(44,Jn,2,0,"mat-error",16),e.k0s(),e.j41(45,"mat-slide-toggle",28),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.isAmp,m)||(a.isAmp=m),r.Njj(m)}),e.EFF(46,"AMP Payment"),e.k0s()()(),e.DNE(47,Wn,3,2,"div",29),e.j41(48,"div",30)(49,"button",31),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(50,"Clear Fields"),e.k0s(),e.j41(51,"button",32),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onSendPayment())}),e.EFF(52,"Send Payment"),e.k0s()()()()()()}if(2&o){const l=e.sdS(15),p=e.sdS(42);e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(8),e.Y8G("ngModel",a.paymentRequest),e.R7$(2),e.Y8G("ngIf",a.paymentRequest&&""!==a.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",!a.paymentRequest),e.R7$(),e.Y8G("ngIf",null==l.errors?null:l.errors.decodeError),e.R7$(),e.Y8G("ngIf",a.zeroAmtInvoice),e.R7$(5),e.JRh(a.advancedTitle),e.R7$(5),e.R50("value",a.selFeeLimitType),e.R7$(),e.Y8G("ngForOf",a.feeLimitTypes),e.R7$(3),e.JRh(null==a.selFeeLimitType?null:a.selFeeLimitType.placeholder),e.R7$(),e.Y8G("step",1)("min",0)("disabled",a.selFeeLimitType===a.feeLimitTypes[0]),e.R50("ngModel",a.feeLimit),e.R7$(2),e.Y8G("ngIf",a.selFeeLimitType!==a.feeLimitTypes[0]&&!a.feeLimit),e.R7$(4),e.Y8G("formControl",a.selectedChannelCtrl)("matAutocomplete",p),e.R7$(),e.Y8G("displayWith",a.displayFn),e.R7$(2),e.Y8G("ngForOf",a.filteredMinAmtActvChannels),e.R7$(),e.Y8G("ngIf",null==a.selectedChannelCtrl.errors?null:a.selectedChannelCtrl.errors.notfound),e.R7$(),e.R50("ngModel",a.isAmp),e.R7$(2),e.Y8G("ngIf",""!==a.paymentError)}},dependencies:[_.Sq,_.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,d.l_,O.aY,Y.tx,N.$z,k.m2,k.MM,z.GK,z.Z2,z.WN,M.fg,C.rl,C.nJ,C.MV,C.TL,f.DJ,f.sA,f.UI,E.VO,X.wT,he.sG,ce.$3,ce.pN,te.N,ae.V],encapsulation:2}))}return t(),s})();var _e=y(37541);const Kn=["sendPaymentForm"],ei=()=>["all"],ti=t=>({"error-border":t}),ni=()=>["no_payment"],pe=t=>({"mr-0":t}),se=t=>({width:t}),ii=t=>({"display-none":t});function ai(t,s){if(1&t&&(e.j41(0,"span",18),e.nrm(1,"fa-icon",19),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.convertedCurrency.symbol)}}function si(t,s){if(1&t&&e.nrm(0,"span",20),2&t){const n=e.XpG(3);e.Y8G("innerHTML",n.convertedCurrency.symbol,e.npT)}}function oi(t,s){if(1&t&&(e.j41(0,"mat-hint",15),e.EFF(1),e.DNE(2,ai,2,1,"span",16)(3,si,1,1,"span",17),e.EFF(4),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.SpI(" ",n.paymentDecodedHintPre," "),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"FA"===n.convertedCurrency.iconType&&""!==n.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"SVG"===n.convertedCurrency.iconType&&""!==n.paymentDecodedHintPre),e.R7$(),e.SpI(" ",n.paymentDecodedHintPost," ")}}function li(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Payment request is required."),e.k0s())}function ri(t,s){if(1&t){const n=e.RV6();e.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),e.EFF(4,"Payment Request"),e.k0s(),e.j41(5,"textarea",9,1),e.bIt("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onPaymentRequestEntry(o))})("matTextareaAutosize",function(){return r.eBV(n),r.Njj(!0)}),e.k0s(),e.DNE(7,oi,5,4,"mat-hint",10)(8,li,2,0,"mat-error",11),e.k0s(),e.j41(9,"div",12)(10,"button",13),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.EFF(11,"Clear Field"),e.k0s(),e.j41(12,"button",14),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSendPayment())}),e.EFF(13,"Send Payment"),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(5),e.Y8G("ngModel",n.paymentRequest),e.R7$(2),e.Y8G("ngIf",n.paymentRequest&&""!==n.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",!n.paymentRequest)}}function ci(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",21)(1,"button",22),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.openSendPaymentModal())}),e.EFF(2,"Send Payment"),e.k0s()()}}function pi(t,s){if(1&t&&(e.j41(0,"mat-option",76),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function mi(t,s){1&t&&e.nrm(0,"mat-progress-bar",77)}function ui(t,s){1&t&&e.nrm(0,"th",78)}function di(t,s){if(1&t&&e.nrm(0,"span",82),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,pe,n.screenSize===n.screenSizeEnum.XS))}}function hi(t,s){if(1&t&&e.nrm(0,"span",83),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,pe,n.screenSize===n.screenSizeEnum.XS))}}function _i(t,s){if(1&t&&(e.j41(0,"td",79),e.DNE(1,di,1,3,"span",80)(2,hi,1,3,"span",81),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf","SUCCEEDED"===(null==n?null:n.status)),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==(null==n?null:n.status))}}function fi(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Creation Date"),e.k0s())}function gi(t,s){if(1&t&&(e.j41(0,"td",79),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,1e3*(null==n?null:n.creation_date),"dd/MMM/y HH:mm")," ")}}function Ci(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Payment Hash"),e.k0s())}function yi(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_hash)}}function bi(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Payment Request"),e.k0s())}function Fi(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_request)}}function xi(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Payment Preimage"),e.k0s())}function vi(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_preimage)}}function Ti(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Description"),e.k0s())}function ki(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.description)}}function Si(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Description Hash"),e.k0s())}function Ri(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.description_hash)}}function Ei(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Failure Reason"),e.k0s())}function Ii(t,s){if(1&t&&(e.j41(0,"td",79),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.brH(2,1,null==n?null:n.failure_reason,"failure_reason","_")," ")}}function Li(t,s){1&t&&(e.j41(0,"th",87),e.EFF(1,"Payment Index"),e.k0s())}function wi(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==n?null:n.payment_index))}}function ji(t,s){1&t&&(e.j41(0,"th",87),e.EFF(1,"Fee (Sats)"),e.k0s())}function Gi(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==n?null:n.fee))}}function Di(t,s){1&t&&(e.j41(0,"th",87),e.EFF(1,"Value (Sats)"),e.k0s())}function Ni(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==n?null:n.value))}}function Pi(t,s){1&t&&(e.j41(0,"th",87),e.EFF(1,"Hops"),e.k0s())}function $i(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh((null==n||null==n.htlcs[0]||null==n.htlcs[0].route||null==n.htlcs[0].route.hops?null:n.htlcs[0].route.hops.length)||0)}}function Ai(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",89)(1,"div",90)(2,"mat-select",91),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",92),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Mi(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",93)(1,"button",94),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onPaymentClick(o))}),e.EFF(2,"View Info"),e.k0s()()}}function Bi(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No payment available."),e.k0s())}function Oi(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting payments..."),e.k0s())}function Vi(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.errorMessage)}}function Yi(t,s){if(1&t&&(e.j41(0,"td",95),e.DNE(1,Bi,2,0,"p",11)(2,Oi,2,0,"p",11)(3,Vi,2,1,"p",11),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=n.payments&&n.payments.data)||(null==n.payments||null==n.payments.data?null:n.payments.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.payments&&n.payments.data)||(null==n.payments||null==n.payments.data?null:n.payments.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.payments&&n.payments.data)||(null==n.payments||null==n.payments.data?null:n.payments.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Xi(t,s){if(1&t&&e.nrm(0,"span",82),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,pe,n.screenSize===n.screenSizeEnum.XS))}}function Ui(t,s){if(1&t&&e.nrm(0,"span",83),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,pe,n.screenSize===n.screenSizeEnum.XS))}}function Hi(t,s){if(1&t&&e.nrm(0,"span",82),2&t){const n=e.XpG(5);e.Y8G("ngClass",e.eq3(1,pe,n.screenSize===n.screenSizeEnum.XS))}}function zi(t,s){if(1&t&&e.nrm(0,"span",83),2&t){const n=e.XpG(5);e.Y8G("ngClass",e.eq3(1,pe,n.screenSize===n.screenSizeEnum.XS))}}function qi(t,s){if(1&t&&(e.j41(0,"span",96),e.DNE(1,Hi,1,3,"span",80)(2,zi,1,3,"span",81),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf","SUCCEEDED"===n.status),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==n.status)}}function Ji(t,s){if(1&t&&(e.qex(0),e.DNE(1,qi,3,2,"span",97),e.bVm()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function Qi(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",96),e.DNE(2,Xi,1,3,"span",80)(3,Ui,1,3,"span",81),e.k0s(),e.DNE(4,Ji,2,1,"ng-container",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.Y8G("ngIf","SUCCEEDED"===(null==n?null:n.status)),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==(null==n?null:n.status)),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function Wi(t,s){if(1&t&&(e.j41(0,"span",96),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,n.attempt_time_ns/1e6,"dd/MMM/y HH:mm")," ")}}function Zi(t,s){if(1&t&&(e.qex(0),e.DNE(1,Wi,3,4,"span",97),e.bVm()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function Ki(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",96),e.EFF(2),e.k0s(),e.DNE(3,Zi,2,1,"ng-container",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.SpI(" Total Attempts: ",null==n||null==n.htlcs?null:n.htlcs.length," "),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function ea(t,s){if(1&t&&(e.j41(0,"span",96),e.EFF(1),e.k0s()),2&t){const n=s.index;e.R7$(),e.SpI(" HTLC ",n+1," ")}}function ta(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,ea,2,1,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function na(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,ta,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_hash),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function ia(t,s){1&t&&e.nrm(0,"span",96)}function aa(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,ia,1,0,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function sa(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,aa,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_request),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function oa(t,s){if(1&t&&(e.j41(0,"span",96),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",null==n?null:n.preimage," ")}}function la(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,oa,2,1,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function ra(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,la,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_preimage),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function ca(t,s){1&t&&e.nrm(0,"span",96)}function pa(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,ca,1,0,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function ma(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,pa,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.description),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function ua(t,s){1&t&&e.nrm(0,"span",96)}function da(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,ua,1,0,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function ha(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,da,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.description_hash),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function _a(t,s){1&t&&e.nrm(0,"span",96)}function fa(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,_a,1,0,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function ga(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",96),e.EFF(2),e.nI1(3,"camelcaseWithReplace"),e.k0s(),e.DNE(4,fa,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.SpI(" ",e.brH(3,2,null==n?null:n.failure_reason,"failure_reason","_")," "),e.R7$(2),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function Ca(t,s){if(1&t&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,n.attempt_id)," ")}}function ya(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,Ca,3,3,"span",100),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function ba(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,ya,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,2,null==n?null:n.payment_index)),e.R7$(2),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function Fa(t,s){if(1&t&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==n.route?null:n.route.total_fees,"1.0-0")," ")}}function xa(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,Fa,3,4,"span",100),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function va(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,xa,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.i5U(3,2,null==n?null:n.fee,"1.0-0")),e.R7$(2),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function Ta(t,s){if(1&t&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==n.route?null:n.route.total_amt,"1.0-0")," ")}}function ka(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,Ta,3,4,"span",100),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function Sa(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,ka,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.i5U(3,2,null==n?null:n.value,"1.0-0")),e.R7$(2),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function Ra(t,s){if(1&t&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,(null==n.route||null==n.route.hops?null:n.route.hops.length)||0,"1.0-0")," ")}}function Ea(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,Ra,3,4,"span",100),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function Ia(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2,"-"),e.k0s(),e.DNE(3,Ea,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(3),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function La(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",104)(1,"button",105),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2).$implicit,l=e.XpG(2);return r.Njj(l.onHTLCClick(o,a))}),e.EFF(2),e.k0s()()}if(2&t){const n=s.index;e.R7$(2),e.SpI("View ",n+1)}}function wa(t,s){if(1&t&&(e.j41(0,"div"),e.DNE(1,La,3,1,"div",103),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function ja(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",79)(1,"span",101)(2,"button",102),e.bIt("click",function(){const o=r.eBV(n).$implicit;return r.Njj(o.is_expanded=!(null!=o&&o.is_expanded))}),e.EFF(3),e.k0s()(),e.DNE(4,wa,2,1,"div",11),e.k0s()}if(2&t){const n=s.$implicit;e.R7$(3),e.JRh(null!=n&&n.is_expanded?"Hide":"Show"),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function Ga(t,s){1&t&&e.nrm(0,"tr",106)}function Da(t,s){if(1&t&&e.nrm(0,"tr",107),2&t){const n=e.XpG(2);e.Y8G("ngClass",e.eq3(1,ii,(null==n.payments?null:n.payments.data)&&(null==n.payments||null==n.payments.data?null:n.payments.data.length)>0))}}function Na(t,s){1&t&&e.nrm(0,"tr",108)}function Pa(t,s){1&t&&e.nrm(0,"tr",106)}function $a(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",23)(1,"div",24)(2,"div",25),e.nrm(3,"fa-icon",26),e.j41(4,"span",27),e.EFF(5,"Payments History"),e.k0s()(),e.j41(6,"div",28)(7,"mat-form-field",29)(8,"mat-label"),e.EFF(9,"Filter By"),e.k0s(),e.j41(10,"mat-select",30),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilterBy,o)||(a.selFilterBy=o),r.Njj(o)}),e.bIt("selectionChange",function(){r.eBV(n);const o=e.XpG();return o.selFilter="",r.Njj(o.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,pi,2,2,"mat-option",31),e.k0s()()(),e.j41(13,"mat-form-field",29)(14,"mat-label"),e.EFF(15,"Filter"),e.k0s(),e.j41(16,"input",32),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilter,o)||(a.selFilter=o),r.Njj(o)}),e.bIt("input",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())})("keyup",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())}),e.k0s()()()(),e.j41(17,"div",33)(18,"div",34),e.DNE(19,mi,1,0,"mat-progress-bar",35),e.j41(20,"table",36,2),e.qex(22,37),e.DNE(23,ui,1,0,"th",38)(24,_i,3,2,"td",39),e.bVm(),e.qex(25,40),e.DNE(26,fi,2,0,"th",41)(27,gi,3,4,"td",39),e.bVm(),e.qex(28,42),e.DNE(29,Ci,2,0,"th",41)(30,yi,4,4,"td",39),e.bVm(),e.qex(31,43),e.DNE(32,bi,2,0,"th",41)(33,Fi,4,4,"td",39),e.bVm(),e.qex(34,44),e.DNE(35,xi,2,0,"th",41)(36,vi,4,4,"td",39),e.bVm(),e.qex(37,45),e.DNE(38,Ti,2,0,"th",41)(39,ki,4,4,"td",39),e.bVm(),e.qex(40,46),e.DNE(41,Si,2,0,"th",41)(42,Ri,4,4,"td",39),e.bVm(),e.qex(43,47),e.DNE(44,Ei,2,0,"th",41)(45,Ii,3,5,"td",39),e.bVm(),e.qex(46,48),e.DNE(47,Li,2,0,"th",49)(48,wi,4,3,"td",39),e.bVm(),e.qex(49,50),e.DNE(50,ji,2,0,"th",49)(51,Gi,4,3,"td",39),e.bVm(),e.qex(52,51),e.DNE(53,Di,2,0,"th",49)(54,Ni,4,3,"td",39),e.bVm(),e.qex(55,52),e.DNE(56,Pi,2,0,"th",49)(57,$i,3,1,"td",39),e.bVm(),e.qex(58,53),e.DNE(59,Ai,6,0,"th",54)(60,Mi,3,0,"td",55),e.bVm(),e.qex(61,56),e.DNE(62,Yi,4,3,"td",57),e.bVm(),e.qex(63,58),e.DNE(64,Qi,5,3,"td",39),e.bVm(),e.qex(65,59),e.DNE(66,Ki,4,2,"td",39),e.bVm(),e.qex(67,60),e.DNE(68,na,5,5,"td",39),e.bVm(),e.qex(69,61),e.DNE(70,sa,5,5,"td",39),e.bVm(),e.qex(71,62),e.DNE(72,ra,5,5,"td",39),e.bVm(),e.qex(73,63),e.DNE(74,ma,5,5,"td",39),e.bVm(),e.qex(75,64),e.DNE(76,ha,5,5,"td",39),e.bVm(),e.qex(77,65),e.DNE(78,ga,5,6,"td",39),e.bVm(),e.qex(79,66),e.DNE(80,ba,5,4,"td",39),e.bVm(),e.qex(81,67),e.DNE(82,va,5,5,"td",39),e.bVm(),e.qex(83,68),e.DNE(84,Sa,5,5,"td",39),e.bVm(),e.qex(85,69),e.DNE(86,Ia,4,1,"td",39),e.bVm(),e.qex(87,70),e.DNE(88,ja,5,2,"td",39),e.bVm(),e.DNE(89,Ga,1,0,"tr",71)(90,Da,1,3,"tr",72)(91,Na,1,0,"tr",73)(92,Pa,1,0,"tr",74),e.k0s(),e.j41(93,"mat-paginator",75),e.bIt("page",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onPageChange(o))}),e.k0s()()()()}if(2&t){const n=e.XpG();e.R7$(3),e.Y8G("icon",n.faHistory),e.R7$(7),e.R50("ngModel",n.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(18,ei).concat(n.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",n.selFilter),e.R7$(3),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",n.tableSetting.sortBy)("matSortDirection",n.tableSetting.sortOrder)("dataSource",n.payments)("ngClass",e.eq3(19,ti,""!==n.errorMessage)),e.R7$(69),e.Y8G("matRowDefColumns",n.htlcColumns)("matRowDefWhen",n.is_group),e.R7$(),e.Y8G("matFooterRowDef",e.lJ4(21,ni)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns),e.R7$(),e.Y8G("length",n.totalPayments)("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("hidePageSize",n.screenSize!==n.screenSizeEnum.XS)}}let Xe=(()=>{var t;class s{constructor(i,o,a,l,p,m,v,b){this.logger=i,this.commonService=o,this.dataService=a,this.store=l,this.rtlEffects=p,this.decimalPipe=m,this.datePipe=v,this.camelCaseWithReplace=b,this.calledFrom="transactions",this.faHistory=x.Int,this.convertedCurrency=null,this.nodePageDefs=c._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:c.md,sortBy:"creation_date",sortOrder:c.oi.DESCENDING},this.newlyAddedPayment="",this.information={},this.peers=[],this.payments=new u.I6([]),this.totalPayments=100,this.paymentJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.firstOffset=-1,this.lastOffset=-1,this.selFilter="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(H._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(F.pI).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(F.os).pipe((0,g.Q)(this.unSubs[2])).subscribe(i=>{this.peers=i.peers}),this.store.select(F.$G).pipe((0,g.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.htlcColumns=[],this.displayedColumns.map(o=>this.htlcColumns.push("group_"+o)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(F.KT).pipe((0,g.Q)(this.unSubs[5])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=i.listPayments.payments||[],this.totalPayments=this.paymentJSONArr.length,this.firstOffset=+(i.listPayments.first_index_offset||-1),this.lastOffset=+(i.listPayments.last_index_offset||-1),this.paymentJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr.slice(0,this.pageSize)),this.logger.info(i)})}ngAfterViewInit(){this.paymentJSONArr&&this.paymentJSONArr.length>0&&this.loadPaymentsTable(this.paymentJSONArr.slice(0,this.pageSize))}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,W.s)(1)).subscribe(i=>{this.paymentDecoded=i,this.paymentDecoded.timestamp?(this.paymentDecoded.num_satoshis=this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis?(+this.paymentDecoded.num_msat/1e3).toString():"0",this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded.payment_hash||"",this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis?(this.store.dispatch((0,I.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"destination",value:this.paymentDecoded.destination,title:"Destination",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:50,type:c.UN.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.num_satoshis,title:"Amount (Sats)",width:50,type:c.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:c.UN.NUMBER},{key:"cltv_expiry",value:this.paymentDecoded.cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,W.s)(1)).subscribe(o=>{o&&(this.store.dispatch((0,T.Fd)({payload:{uiMessage:c.MZ.SEND_PAYMENT,payment_request:this.paymentRequest,amp:!1,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,I.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"destination",value:this.paymentDecoded.destination,title:"Destination",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:40,type:c.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:c.UN.NUMBER},{key:"cltv_expiry",value:this.paymentDecoded.cltv_expiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,getInputs:[{placeholder:"Amount (Sats)",inputType:c.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,W.s)(1)).subscribe(a=>{a&&(this.paymentDecoded.num_satoshis=a[0].inputValue,this.store.dispatch((0,T.Fd)({payload:{uiMessage:c.MZ.SEND_PAYMENT,payment_request:this.paymentRequest,amp:!1,amt:a[0].inputValue,fromDialog:!1}})),this.resetData())}))}openSendPaymentModal(){this.store.dispatch((0,I.xO)({payload:{data:{component:Zn}}}))}onPaymentRequestEntry(i){this.paymentRequest=i,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,W.s)(1)).subscribe(o=>{this.paymentDecoded=o,this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis?this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[6])).subscribe({next:a=>{this.convertedCurrency=a,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,c.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:a=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost="")})}onPageChange(i){let o=!0,a=this.lastOffset;this.pageSize=i.pageSize,0===i.pageIndex?(o=!0,a=0):i.pageIndexi.previousPageIndex&&i.length>(i.pageIndex+1)*i.pageSize?(o=!0,a=this.firstOffset):i.length<=(i.pageIndex+1)*i.pageSize&&(o=!1,a=0);const l=i.pageIndex*this.pageSize;this.loadPaymentsTable(this.paymentJSONArr.slice(l,l+this.pageSize))}is_group(i,o){return o.htlcs&&o.htlcs.length>1}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}getHopDetails(i){const o=this;return new Promise((a,l)=>{const p=o.peers.find(m=>m.pub_key===i.pub_key);p&&p.alias?a("
Channel: "+p.alias.padEnd(20)+"			Amount (Sats): "+o.decimalPipe.transform(i.amt_to_forward)+"
"):o.dataService.getAliasesFromPubkeys(i.pub_key||"",!1).pipe((0,g.Q)(o.unSubs[7])).subscribe({next:m=>a("
Channel: "+(m.node&&m.node.alias?m.node.alias.padEnd(20):i.pub_key?.substring(0,17)+"...")+"			Amount (Sats): "+o.decimalPipe.transform(i.amt_to_forward)+"
"),error:m=>a("
Channel: "+(i.pub_key?i.pub_key?.substring(0,17)+"...":"")+"			Amount (Sats): "+o.decimalPipe.transform(i.amt_to_forward)+"
")})})}onHTLCClick(i,o){o.payment_request&&""!==o.payment_request.trim()?this.dataService.decodePayment(o.payment_request,!1).pipe((0,W.s)(1)).subscribe({next:a=>{setTimeout(()=>{this.showHTLCView(i,o,a)},0)},error:a=>{this.showHTLCView(i,o)}}):this.showHTLCView(i,o)}showHTLCView(i,o,a){i.route&&i.route.hops&&i.route.hops.length?Promise.all(i.route.hops.map(l=>this.getHopDetails(l))).then(l=>{this.store.dispatch((0,I.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"HTLC Information",message:this.prepareData(i,o,a,l),scrollable:i.route&&i.route.hops&&i.route.hops.length>1}}}))}):this.store.dispatch((0,I.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"HTLC Information",message:this.prepareData(i,o,a,[]),scrollable:i.route&&i.route.hops&&i.route.hops.length>1}}}))}prepareData(i,o,a,l){const p=[[{key:"payment_hash",value:o.payment_hash,title:"Payment Hash",width:100,type:c.UN.STRING}],[{key:"preimage",value:i.preimage,title:"Preimage",width:100,type:c.UN.STRING}],[{key:"payment_request",value:o.payment_request,title:"Payment Request",width:100,type:c.UN.STRING}],[{key:"status",value:i.status,title:"Status",width:33,type:c.UN.STRING},{key:"attempt_time_ns",value:+(i.attempt_time_ns||0)/1e9,title:"Attempt Time",width:33,type:c.UN.DATE_TIME},{key:"resolve_time_ns",value:+(i.resolve_time_ns||0)/1e9,title:"Resolve Time",width:34,type:c.UN.DATE_TIME}],[{key:"total_amt",value:i.route?.total_amt,title:"Amount (Sats)",width:33,type:c.UN.NUMBER},{key:"total_fees",value:i.route?.total_fees,title:"Fee (Sats)",width:33,type:c.UN.NUMBER},{key:"total_time_lock",value:i.route?.total_time_lock,title:"Total Time Lock",width:34,type:c.UN.NUMBER}],[{key:"hops",value:l,title:"Hops",width:100,type:c.UN.ARRAY}]];return a&&a.description&&""!==a.description&&p.splice(3,0,[{key:"description",value:a.description,title:"Description",width:100,type:c.UN.STRING}]),p}onPaymentClick(i){if(i.htlcs&&i.htlcs[0]&&i.htlcs[0].route&&i.htlcs[0].route.hops&&i.htlcs[0].route.hops.length>0){const o=i.htlcs[0].route.hops?.reduce((a,l)=>l.pub_key&&""===a?l.pub_key:a+","+l.pub_key,"");this.dataService.getAliasesFromPubkeys(o,!0).pipe((0,g.Q)(this.unSubs[8])).subscribe(a=>{this.showPaymentView(i,a?.reduce((l,p)=>""===l?p:l+"\n"+p,""))})}else this.showPaymentView(i,"")}showPaymentView(i,o){const a=[[{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:100,type:c.UN.STRING}],[{key:"payment_preimage",value:i.payment_preimage,title:"Payment Preimage",width:100,type:c.UN.STRING}],[{key:"payment_request",value:i.payment_request,title:"Payment Request",width:100,type:c.UN.STRING}],[{key:"status",value:i.status,title:"Status",width:50,type:c.UN.STRING},{key:"creation_date",value:i.creation_date,title:"Creation Date",width:50,type:c.UN.DATE_TIME}],[{key:"value_msat",value:i.value_msat,title:"Value (mSats)",width:50,type:c.UN.NUMBER},{key:"fee_msat",value:i.fee_msat,title:"Fee (mSats)",width:50,type:c.UN.NUMBER}],[{key:"path",value:o,title:"Path",width:100,type:c.UN.STRING}]];i.payment_request&&""!==i.payment_request.trim()?this.dataService.decodePayment(i.payment_request,!1).pipe((0,W.s)(1)).subscribe(l=>{l&&l.description&&""!==l.description&&a.splice(3,0,[{key:"description",value:l.description,title:"Description",width:100,type:c.UN.STRING}]),setTimeout(()=>{this.openPaymentAlert(a,!!(i.htlcs&&i.htlcs[0]&&i.htlcs[0].route&&i.htlcs[0].route.hops&&i.htlcs[0].route.hops.length>1))},0)}):this.openPaymentAlert(a,!1)}openPaymentAlert(i,o){this.store.dispatch((0,I.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Payment Information",message:i,scrollable:o}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.payments.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.creation_date?this.datePipe.transform(new Date(1e3*i.creation_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(i).toLowerCase();break;case"status":case"group_status":a="SUCCEEDED"===i?.status?"succeeded":"failed";break;case"creation_date":a=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"failure_reason":case"group_failure_reason":a=this.camelCaseWithReplace.transform(i.failure_reason||"","failure_reason","_").trim().toLowerCase();break;case"hops":a=i.htlcs&&i.htlcs[0]&&i.htlcs[0].route&&i.htlcs[0].route.hops&&i.htlcs[0].route.hops.length?i.htlcs[0].route.hops.length.toString():"0";break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"failure_reason"===this.selFilterBy||"group_failure_reason"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}loadPaymentsTable(i){this.payments=new u.I6(i?[...i]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(o,a)=>"hops"===a?o.htlcs.length&&o.htlcs[0]&&o.htlcs[0].route&&o.htlcs[0].route.hops&&o.htlcs[0].route.hops.length?o.htlcs[0].route.hops.length:0:o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const i=JSON.parse(JSON.stringify(this.payments.data)),o=i?.reduce((a,l)=>(l.payment_request&&""!==l.payment_request.trim()&&(a=""===a?l.payment_request:a+","+l.payment_request),a),"");this.dataService.decodePayments(o).pipe((0,g.Q)(this.unSubs[9])).subscribe(a=>{let l=0;a.forEach((m,v)=>{if(m){for(;i[v+l].payment_hash!==m.payment_hash;)l+=1;i[v+l].description=m.description}});const p=i?.reduce((m,v)=>m.concat(v),[]);this.commonService.downloadFile(p,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU($.h),e.rXU(Z.u),e.rXU(L.il),e.rXU(_e.H),e.rXU(_.QX),e.rXU(_.vh),e.rXU(J.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lightning-payments"]],viewQuery:function(o,a){if(1&o&&(e.GBs(Kn,5),e.GBs(R.B4,5),e.GBs(G.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.form=l.first),e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[e.Jv_([{provide:E.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:G.xX,useValue:(0,c.on)("Payments")}])],decls:4,vars:3,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayoutAlign","space-between stretch","fxLayout","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayoutAlign","space-between stretch","fxLayout","row wrap"],["fxLayout","column","fxFlex","100"],["matInput","","name","paymentRequest","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","perfectScrollbar","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","4",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","creation_date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","payment_hash"],["matColumnDef","payment_request"],["matColumnDef","payment_preimage"],["matColumnDef","description"],["matColumnDef","description_hash"],["matColumnDef","failure_reason"],["matColumnDef","payment_index"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","fee"],["matColumnDef","value"],["matColumnDef","hops"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","group_status"],["matColumnDef","group_creation_date"],["matColumnDef","group_payment_hash"],["matColumnDef","group_payment_request"],["matColumnDef","group_payment_preimage"],["matColumnDef","group_description"],["matColumnDef","group_description_hash"],["matColumnDef","group_failure_reason"],["matColumnDef","group_payment_index"],["matColumnDef","group_fee"],["matColumnDef","group_value"],["matColumnDef","group_hops"],["matColumnDef","group_actions"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"page","length","pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Succeeded","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Failed","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Succeeded","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Failed","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"htlc-row-span"],["fxLayoutAlign","start center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayout","row",1,"ellipsis-parent","htlc-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"htlc-row-span"],["fxLayoutAlign","end center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-htlc-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(o,a){1&o&&(e.j41(0,"div",3),e.DNE(1,ri,14,3,"form",4)(2,ci,3,0,"div",5)(3,$a,94,22,"div",6),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf","home"===a.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===a.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===a.calledFrom))},dependencies:[_.YU,_.Sq,_.bT,_.B3,d.qT,d.me,d.BC,d.cb,d.YS,d.vS,d.cV,O.aY,N.$z,M.fg,C.rl,C.nJ,C.MV,C.TL,V.HM,f.DJ,f.sA,f.UI,j.PW,j.eI,E.VO,E.$2,X.wT,R.B4,R.aE,u.Zl,u.tL,u.ji,u.cC,u.YV,u.iL,u.Zq,u.xW,u.KS,u.$R,u.Qo,u.YZ,u.NB,u.iF,ee.oV,G.iy,B.ZF,B.Ld,_.QX,_.vh,J.VD],styles:[".mat-column-status[_ngcontent-%COMP%], .mat-column-group_status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-group_actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_status[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type), .mat-column-group_creation_date[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.htlc-row-span[_ngcontent-%COMP%] .dot[_ngcontent-%COMP%]{margin-top:-.3rem;position:absolute}.mat-column-group_creation_date[_ngcontent-%COMP%]{min-width:11rem}"]}))}return t(),s})();const Ue=t=>({backgroundColor:t});function Aa(t,s){if(1&t&&e.nrm(0,"span",8),2&t){const n=e.XpG();e.Y8G("ngStyle",e.eq3(1,Ue,null==n.information?null:n.information.color))}}function Ma(t,s){if(1&t&&(e.j41(0,"div")(1,"h4",1),e.EFF(2,"Color"),e.k0s(),e.j41(3,"div",2),e.nrm(4,"span",9),e.EFF(5),e.nI1(6,"uppercase"),e.k0s()()),2&t){const n=e.XpG();e.R7$(4),e.Y8G("ngStyle",e.eq3(4,Ue,null==n.information?null:n.information.color)),e.R7$(),e.SpI(" ",e.bMT(6,2,null==n.information?null:n.information.color)," ")}}function Ba(t,s){1&t&&e.nrm(0,"span",10)}function Oa(t,s){1&t&&e.nrm(0,"span",11)}function Va(t,s){if(1&t&&(e.j41(0,"span",2),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(n)}}let He=(()=>{var t;class s{constructor(i){this.commonService=i,this.chains=[""]}ngOnChanges(){this.information&&this.information.chains&&this.information.chains.length>0&&(this.chains=[""],this.information.chains.forEach(i=>{this.chains.push(this.commonService.titleCase(i.chain)+" "+this.commonService.titleCase(i.network))}))}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU($.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},standalone:!1,features:[e.OA$],decls:19,vars:7,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-2"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","dot green mr-1","matTooltip","Synced to Chain","matTooltipPosition","right",4,"ngIf"],["class","dot red mr-1","matTooltip","Not Synced to Chain","matTooltipPosition","right",4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"],["matTooltip","Synced to Chain","matTooltipPosition","right",1,"dot","green","mr-1"],["matTooltip","Not Synced to Chain","matTooltipPosition","right",1,"dot","red","mr-1"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"div")(2,"h4",1),e.EFF(3,"Alias"),e.k0s(),e.j41(4,"div",2),e.EFF(5),e.DNE(6,Aa,1,3,"span",3),e.k0s()(),e.DNE(7,Ma,7,6,"div",4),e.j41(8,"div")(9,"h4",1),e.EFF(10,"Implementation"),e.k0s(),e.j41(11,"div",2),e.EFF(12),e.k0s()(),e.j41(13,"div")(14,"h4",1),e.EFF(15,"Chain"),e.k0s(),e.DNE(16,Ba,1,0,"span",5)(17,Oa,1,0,"span",6)(18,Va,2,1,"span",7),e.k0s()()),2&o&&(e.R7$(5),e.SpI(" ",null==a.information?null:a.information.alias," "),e.R7$(),e.Y8G("ngIf",!a.showColorFieldSeparately),e.R7$(),e.Y8G("ngIf",a.showColorFieldSeparately),e.R7$(5),e.JRh(null!=a.information&&a.information.lnImplementation||null!=a.information&&a.information.version?(null==a.information?null:a.information.lnImplementation)+" "+(null==a.information?null:a.information.version):""),e.R7$(4),e.Y8G("ngIf",null==a.information?null:a.information.synced_to_chain),e.R7$(),e.Y8G("ngIf",!(null!=a.information&&a.information.synced_to_chain)),e.R7$(),e.Y8G("ngForOf",a.chains))},dependencies:[_.Sq,_.bT,_.B3,f.DJ,f.sA,f.UI,j.eI,ee.oV,_.Pc],encapsulation:2}))}return t(),s})();function Ya(t,s){if(1&t&&(e.j41(0,"div",2)(1,"div")(2,"h4",3),e.EFF(3,"Lightning"),e.k0s(),e.j41(4,"div",4),e.EFF(5),e.nI1(6,"number"),e.k0s(),e.nrm(7,"mat-progress-bar",5),e.k0s(),e.j41(8,"div")(9,"h4",3),e.EFF(10,"On-chain"),e.k0s(),e.j41(11,"div",4),e.EFF(12),e.nI1(13,"number"),e.k0s(),e.nrm(14,"mat-progress-bar",5),e.k0s(),e.j41(15,"div")(16,"h4",3),e.EFF(17,"Total"),e.k0s(),e.j41(18,"div",4),e.EFF(19),e.nI1(20,"number"),e.k0s()()()),2&t){const n=e.XpG();e.R7$(5),e.SpI("",e.bMT(6,7,null==n.balances?null:n.balances.lightning)," Sats"),e.R7$(2),e.Y8G("value",e.mNQ((null==n.balances?null:n.balances.lightning)/(null==n.balances?null:n.balances.total)*100)),e.R7$(5),e.SpI("",e.bMT(13,9,null==n.balances?null:n.balances.onchain)," Sats"),e.R7$(2),e.Y8G("value",e.mNQ((null==n.balances?null:n.balances.onchain)/(null==n.balances?null:n.balances.total)*100)),e.R7$(5),e.SpI("",e.bMT(20,11,null==n.balances?null:n.balances.total)," Sats")}}function Xa(t,s){if(1&t&&(e.j41(0,"div",6)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessage)}}let Ua=(()=>{var t;class s{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,a){if(1&o&&e.DNE(0,Ya,21,13,"div",1)(1,Xa,3,1,"ng-template",null,0,e.C5r),2&o){const l=e.sdS(2);e.Y8G("ngIf"," "===a.errorMessage)("ngIfElse",l)}},dependencies:[_.bT,V.HM,f.DJ,f.sA,f.UI,_.QX],encapsulation:2}))}return t(),s})();function Ha(t,s){if(1&t&&(e.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),e.EFF(4,"Daily"),e.k0s(),e.j41(5,"div",5),e.EFF(6),e.nI1(7,"number"),e.k0s()(),e.j41(8,"div")(9,"h4",4),e.EFF(10,"Weekly"),e.k0s(),e.j41(11,"div",5),e.EFF(12),e.nI1(13,"number"),e.k0s()(),e.j41(14,"div")(15,"h4",4),e.EFF(16,"Monthly"),e.k0s(),e.j41(17,"div",5),e.EFF(18),e.nI1(19,"number"),e.k0s()(),e.j41(20,"div",6),e.nrm(21,"h4",7)(22,"span",5),e.k0s()(),e.j41(23,"div",3)(24,"div")(25,"h4",4),e.EFF(26,"Transactions"),e.k0s(),e.j41(27,"div",5),e.EFF(28),e.nI1(29,"number"),e.k0s()(),e.j41(30,"div")(31,"h4",4),e.EFF(32,"Transactions"),e.k0s(),e.j41(33,"div",5),e.EFF(34),e.nI1(35,"number"),e.k0s()(),e.j41(36,"div")(37,"h4",4),e.EFF(38,"Transactions"),e.k0s(),e.j41(39,"div",5),e.EFF(40),e.nI1(41,"number"),e.k0s()(),e.j41(42,"div",6),e.nrm(43,"h4",7)(44,"span",5),e.k0s()()()),2&t){const n=e.XpG();e.R7$(6),e.SpI("",e.bMT(7,6,null==n.fees?null:n.fees.day_fee_sum)," Sats"),e.R7$(6),e.SpI("",e.bMT(13,8,null==n.fees?null:n.fees.week_fee_sum)," Sats"),e.R7$(6),e.SpI("",e.bMT(19,10,null==n.fees?null:n.fees.month_fee_sum)," Sats"),e.R7$(10),e.JRh(e.bMT(29,12,null==n.fees?null:n.fees.daily_tx_count)),e.R7$(6),e.JRh(e.bMT(35,14,null==n.fees?null:n.fees.weekly_tx_count)),e.R7$(6),e.JRh(e.bMT(41,16,null==n.fees?null:n.fees.monthly_tx_count))}}function za(t,s){if(1&t&&(e.j41(0,"div",8)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessage)}}let ze=(()=>{var t;class s{constructor(){this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100}ngOnChanges(){if(this.fees.month_fee_sum){this.totalFees=[{name:"Monthly",value:this.fees.month_fee_sum},{name:"Weekly",value:this.fees.week_fee_sum||0},{name:"Daily ",value:this.fees.day_fee_sum||0}];const o=10**(Math.ceil(Math.log(this.fees.month_fee_sum+1)/Math.LN10)-1);this.maxFeeValue=Math.ceil(this.fees.month_fee_sum/o)*o/5||100,Object.assign(this,this.totalFees)}else this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100,Object.assign(this,this.totalFees)}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},standalone:!1,features:[e.OA$],decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxFlex","20"],[1,"dashboard-info-title"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,a){if(1&o&&e.DNE(0,Ha,45,18,"div",1)(1,za,3,1,"ng-template",null,0,e.C5r),2&o){const l=e.sdS(2);e.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",l)}},dependencies:[_.bT,f.DJ,f.sA,f.UI,_.QX],encapsulation:2}))}return t(),s})();function qa(t,s){if(1&t&&(e.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),e.EFF(4,"Active"),e.k0s(),e.j41(5,"div",5),e.nrm(6,"span",6),e.EFF(7),e.nI1(8,"number"),e.k0s()(),e.j41(9,"div")(10,"h4",4),e.EFF(11,"Pending"),e.k0s(),e.j41(12,"div",5),e.nrm(13,"span",7),e.EFF(14),e.nI1(15,"number"),e.k0s()(),e.j41(16,"div")(17,"h4",4),e.EFF(18,"Inactive"),e.k0s(),e.j41(19,"div",5),e.nrm(20,"span",8),e.EFF(21),e.nI1(22,"number"),e.k0s()(),e.j41(23,"div")(24,"h4",4),e.EFF(25,"Closing"),e.k0s(),e.j41(26,"div",5),e.nrm(27,"span",9),e.EFF(28),e.nI1(29,"number"),e.k0s()()(),e.j41(30,"div",3)(31,"div")(32,"h4",4),e.EFF(33,"Capacity"),e.k0s(),e.j41(34,"div",5),e.EFF(35),e.nI1(36,"number"),e.k0s()(),e.j41(37,"div")(38,"h4",4),e.EFF(39,"Capacity"),e.k0s(),e.j41(40,"div",5),e.EFF(41),e.nI1(42,"number"),e.k0s()(),e.j41(43,"div")(44,"h4",4),e.EFF(45,"Capacity"),e.k0s(),e.j41(46,"div",5),e.EFF(47),e.nI1(48,"number"),e.k0s()(),e.j41(49,"div")(50,"h4",4),e.EFF(51,"Capacity"),e.k0s(),e.j41(52,"div",5),e.EFF(53),e.nI1(54,"number"),e.k0s()()()()),2&t){const n=e.XpG();e.R7$(7),e.JRh(e.bMT(8,8,(null==n.channelsStatus||null==n.channelsStatus.active?null:n.channelsStatus.active.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(15,10,(null==n.channelsStatus||null==n.channelsStatus.pending?null:n.channelsStatus.pending.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(22,12,(null==n.channelsStatus||null==n.channelsStatus.inactive?null:n.channelsStatus.inactive.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(29,14,(null==n.channelsStatus||null==n.channelsStatus.closing?null:n.channelsStatus.closing.num_channels)||0)),e.R7$(7),e.SpI("",e.bMT(36,16,(null==n.channelsStatus||null==n.channelsStatus.active?null:n.channelsStatus.active.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(42,18,(null==n.channelsStatus||null==n.channelsStatus.pending?null:n.channelsStatus.pending.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(48,20,(null==n.channelsStatus||null==n.channelsStatus.inactive?null:n.channelsStatus.inactive.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(54,22,(null==n.channelsStatus||null==n.channelsStatus.closing?null:n.channelsStatus.closing.capacity)||0)," Sats")}}function Ja(t,s){if(1&t&&(e.j41(0,"div",10)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessage)}}let qe=(()=>{var t;class s{constructor(){this.channelsStatus={}}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],[1,"dot","tiny-dot","red"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,a){if(1&o&&e.DNE(0,qa,55,24,"div",1)(1,Ja,3,1,"ng-template",null,0,e.C5r),2&o){const l=e.sdS(2);e.Y8G("ngIf"," "===a.errorMessage)("ngIfElse",l)}},dependencies:[_.bT,f.DJ,f.sA,f.UI,_.QX],encapsulation:2}))}return t(),s})();var ne=y(71997);const Qa=()=>["../connections/channels/open"],Wa=(t,s)=>({filterColumn:t,filterValue:s});function Za(t,s){if(1&t&&(e.j41(0,"div",19)(1,"a",20),e.EFF(2),e.nI1(3,"slice"),e.k0s(),e.j41(4,"div",6)(5,"mat-hint",21)(6,"strong",8),e.EFF(7,"Local:"),e.k0s(),e.EFF(8),e.nI1(9,"number"),e.k0s(),e.j41(10,"mat-hint",22),e.nrm(11,"fa-icon",23),e.EFF(12),e.nI1(13,"number"),e.k0s(),e.j41(14,"mat-hint",24)(15,"strong",8),e.EFF(16,"Remote:"),e.k0s(),e.EFF(17),e.nI1(18,"number"),e.k0s()(),e.nrm(19,"mat-progress-bar",25),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("matTooltip",e.mNQ(n.remote_alias||n.remote_pubkey))("matTooltipDisabled",e.mNQ((n.remote_alias||n.remote_pubkey).length<26))("routerLink",e.lJ4(24,Qa))("state",e.l_i(25,Wa,n.remote_alias?"remote_alias":"remote_pubkey",n.remote_alias||n.remote_pubkey)),e.R7$(),e.Lme(" ",e.brH(3,14,n.remote_alias||n.remote_pubkey,0,24),"",(n.remote_alias||n.remote_pubkey).length>25?"...":""," "),e.R7$(6),e.SpI("",e.bMT(9,18,n.local_balance||0)," Sats"),e.R7$(3),e.Y8G("icon",i.faBalanceScale),e.R7$(),e.SpI(" (",e.bMT(13,20,n.balancedness||0),") "),e.R7$(5),e.SpI("",e.bMT(18,22,n.remote_balance||0)," Sats"),e.R7$(2),e.Y8G("value",e.mNQ(n.local_balance&&n.local_balance>0?+n.local_balance/(+n.local_balance+ +n.remote_balance)*100:0))}}function Ka(t,s){if(1&t&&(e.j41(0,"div",17),e.DNE(1,Za,20,28,"div",18),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngForOf",n.allChannels)}}function es(t,s){if(1&t&&(e.j41(0,"div",3)(1,"div",4)(2,"span",5),e.EFF(3,"Total Capacity"),e.k0s(),e.j41(4,"div",6)(5,"mat-hint",7)(6,"strong",8),e.EFF(7,"Local:"),e.k0s(),e.EFF(8),e.nI1(9,"number"),e.k0s(),e.j41(10,"mat-hint",9),e.nrm(11,"fa-icon",10),e.EFF(12),e.nI1(13,"number"),e.k0s(),e.j41(14,"mat-hint",11)(15,"strong",8),e.EFF(16,"Remote:"),e.k0s(),e.EFF(17),e.nI1(18,"number"),e.k0s()(),e.nrm(19,"mat-progress-bar",12),e.k0s(),e.j41(20,"div",13),e.nrm(21,"mat-divider",14),e.k0s(),e.j41(22,"div",15),e.DNE(23,Ka,2,1,"div",16),e.k0s()()),2&t){const n=e.XpG(),i=e.sdS(2);e.R7$(8),e.SpI("",e.bMT(9,8,(null==n.channelBalances?null:n.channelBalances.localBalance)||0)," Sats"),e.R7$(3),e.Y8G("icon",n.faBalanceScale),e.R7$(),e.SpI(" (",e.bMT(13,10,(null==n.channelBalances?null:n.channelBalances.balancedness)||0),") "),e.R7$(5),e.SpI("",e.bMT(18,12,(null==n.channelBalances?null:n.channelBalances.remoteBalance)||0)," Sats"),e.R7$(2),e.Y8G("value",e.mNQ(null!=n.channelBalances&&n.channelBalances.localBalance&&(null==n.channelBalances?null:n.channelBalances.localBalance)>0?+(null==n.channelBalances?null:n.channelBalances.localBalance)/(+(null==n.channelBalances?null:n.channelBalances.localBalance)+ +(null==n.channelBalances?null:n.channelBalances.remoteBalance))*100:0)),e.R7$(4),e.Y8G("ngIf",n.allChannels&&n.allChannels.length>0)("ngIfElse",i)}}function ts(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",26),e.EFF(1," No channels available. "),e.j41(2,"button",27),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.goToChannels())}),e.EFF(3,"Open Channel"),e.k0s()()}}function ns(t,s){if(1&t&&(e.j41(0,"div",28)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessage)}}let is=(()=>{var t;class s{constructor(i){this.router=i,this.faBalanceScale=x.GR4,this.faDumbbell=x.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/lnd/connections")}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(w.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,a){if(1&o&&e.DNE(0,es,24,14,"div",2)(1,ts,4,0,"ng-template",null,0,e.C5r)(3,ns,3,1,"ng-template",null,1,e.C5r),2&o){const l=e.sdS(4);e.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",l)}},dependencies:[_.Sq,_.bT,O.aY,N.$z,C.MV,ne.q,V.HM,f.DJ,f.sA,f.UI,ee.oV,B.Ld,ie.Wk,_.P9,_.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]}))}return t(),s})();var Je=y(1092),Qe=y(4104);const as=(t,s,n)=>({"mb-4":t,"mb-2":s,"mb-1":n}),ss=()=>["../connections/channels/open"],os=(t,s)=>({filterColumn:t,filterValue:s});function ls(t,s){if(1&t&&(e.j41(0,"mat-hint",19)(1,"strong",20),e.EFF(2,"Capacity: "),e.k0s(),e.EFF(3),e.nI1(4,"number"),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(3),e.SpI("",e.bMT(4,1,n.remote_balance||0)," Sats")}}function rs(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",24),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2).$implicit,a=e.XpG(3);return r.Njj(a.onLoopOut(o))}),e.EFF(1,"Loop Out"),e.k0s()}}function cs(t,s){if(1&t&&(e.j41(0,"div",21)(1,"mat-hint",22)(2,"strong",20),e.EFF(3,"Capacity: "),e.k0s(),e.EFF(4),e.nI1(5,"number"),e.k0s(),e.DNE(6,rs,2,0,"button",23),e.k0s()),2&t){const n=e.XpG().$implicit,i=e.XpG(3);e.R7$(4),e.SpI("",e.bMT(5,2,n.local_balance||0)," Sats"),e.R7$(2),e.Y8G("ngIf",i.showLoop)}}function ps(t,s){if(1&t&&e.nrm(0,"mat-progress-bar",25),2&t){const n=e.XpG().$implicit,i=e.XpG(3);e.Y8G("value",e.mNQ(i.totalLiquidity>0?(+n.remote_balance||0)/i.totalLiquidity*100:0))}}function ms(t,s){if(1&t&&e.nrm(0,"mat-progress-bar",25),2&t){const n=e.XpG().$implicit,i=e.XpG(3);e.Y8G("value",e.mNQ(i.totalLiquidity>0?(+n.local_balance||0)/i.totalLiquidity*100:0))}}function us(t,s){if(1&t&&(e.j41(0,"div",13)(1,"a",14),e.EFF(2),e.nI1(3,"slice"),e.k0s(),e.j41(4,"div",15),e.DNE(5,ls,5,3,"mat-hint",16)(6,cs,7,4,"div",17),e.k0s(),e.DNE(7,ps,1,2,"mat-progress-bar",18)(8,ms,1,2,"mat-progress-bar",18),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("matTooltip",e.mNQ(n.remote_alias||n.remote_pubkey))("matTooltipDisabled",e.mNQ((n.remote_alias||n.remote_pubkey).length<26))("routerLink",e.lJ4(16,ss))("state",e.l_i(17,os,n.remote_alias?"remote_alias":"remote_pubkey",n.remote_alias||n.remote_pubkey)),e.R7$(),e.Lme(" ",e.brH(3,12,n.remote_alias||n.remote_pubkey,0,24),"",(n.remote_alias||n.remote_pubkey).length>25?"...":""," "),e.R7$(3),e.Y8G("ngIf","In"===i.direction),e.R7$(),e.Y8G("ngIf","Out"===i.direction),e.R7$(),e.Y8G("ngIf","In"===i.direction),e.R7$(),e.Y8G("ngIf","Out"===i.direction)}}function ds(t,s){if(1&t&&(e.j41(0,"div",11),e.DNE(1,us,9,20,"div",12),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngForOf",n.allChannels)}}function hs(t,s){if(1&t&&(e.j41(0,"div",3)(1,"div",4)(2,"span",5),e.EFF(3,"Total Capacity"),e.k0s(),e.j41(4,"mat-hint",6),e.EFF(5),e.nI1(6,"number"),e.k0s(),e.nrm(7,"mat-progress-bar",7),e.k0s(),e.j41(8,"div",8),e.nrm(9,"mat-divider",9),e.k0s(),e.DNE(10,ds,2,1,"div",10),e.k0s()),2&t){const n=e.XpG(),i=e.sdS(2);e.Y8G("ngClass",e.sMw(6,as,n.screenSize===n.screenSizeEnum.XS||n.screenSize===n.screenSizeEnum.SM,n.screenSize===n.screenSizeEnum.MD,n.screenSize===n.screenSizeEnum.LG||n.screenSize===n.screenSizeEnum.XL)),e.R7$(5),e.SpI("",e.bMT(6,4,n.totalLiquidity)," Sats"),e.R7$(5),e.Y8G("ngIf",n.allChannels&&n.allChannels.length>0)("ngIfElse",i)}}function _s(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",28),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.goToChannels())}),e.EFF(1,"Open Channel"),e.k0s()}}function fs(t,s){if(1&t&&(e.j41(0,"div",26),e.EFF(1," No channels available. "),e.DNE(2,_s,2,0,"button",27),e.k0s()),2&t){const n=e.XpG();e.R7$(2),e.Y8G("ngIf","Out"===n.direction)}}function gs(t,s){if(1&t&&(e.j41(0,"div",29)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessage)}}let Cs=(()=>{var t;class s{constructor(i,o,a,l){this.router=i,this.loopService=o,this.commonService=a,this.store=l,this.targetConf=6,this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new h.B,new h.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.store.select(H._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.showLoop=!(!i?.settings.swapServerUrl||""===i.settings.swapServerUrl.trim())})}goToChannels(){this.router.navigateByUrl("/lnd/connections")}onLoopOut(i){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,g.Q)(this.unSubs[1])).subscribe(o=>{this.store.dispatch((0,I.xO)({payload:{minHeight:"56rem",data:{channel:i,minQuote:o[0],maxQuote:o[1],direction:c.C7.LOOP_OUT,component:Je.D}}}))})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(w.Ix),e.rXU(Qe.Q),e.rXU($.h),e.rXU(L.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[3,"perfectScrollbar",4,"ngIf","ngIfElse"],[3,"perfectScrollbar"],["fxLayout","column",4,"ngFor","ngForOf"],["fxLayout","column"],[1,"dashboard-capacity-header","mt-2",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["class","font-size-90 color-primary",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],[1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxFlex","80","fxLayoutAlign","start start",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","end center","class","button-link-dashboard","color","primary","mat-button","","aria-label","Loop Out",3,"click",4,"ngIf"],["fxFlex","20","fxLayoutAlign","end center","color","primary","mat-button","","aria-label","Loop Out",1,"button-link-dashboard",3,"click"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,a){if(1&o&&e.DNE(0,hs,11,10,"div",2)(1,fs,3,1,"ng-template",null,0,e.C5r)(3,gs,3,1,"ng-template",null,1,e.C5r),2&o){const l=e.sdS(4);e.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",l)}},dependencies:[_.YU,_.Sq,_.bT,N.$z,C.MV,ne.q,V.HM,f.DJ,f.sA,f.UI,j.PW,ee.oV,B.Ld,ie.Wk,_.P9,_.QX],encapsulation:2}))}return t(),s})();const We=t=>({"dashboard-card-content":!0,"error-border":t}),ys=t=>({"p-0":t});function bs(t,s){if(1&t&&(e.j41(0,"button",28)(1,"mat-icon"),e.EFF(2,"more_vert"),e.k0s()()),2&t){e.XpG();const n=e.sdS(11);e.Y8G("matMenuTriggerFor",n)}}function Fs(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const o=r.eBV(n).index,a=e.XpG().$implicit,l=e.XpG(2);return r.Njj(l.onNavigateTo(a.links[o]))}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit;e.R7$(),e.JRh(n)}}function xs(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){r.eBV(n);const o=e.XpG(3);return r.Njj(o.onsortChannelsBy())}),e.EFF(1),e.k0s()}if(2&t){const n=e.XpG(3);e.R7$(),e.SpI("Sort By ","Balance Score"===n.sortField?"Capacity":"Balance Score")}}function vs(t,s){1&t&&e.nrm(0,"mat-progress-bar",30)}function Ts(t,s){if(1&t&&e.nrm(0,"rtl-node-info",31),2&t){const n=e.XpG(3);e.Y8G("information",n.information)("showColorFieldSeparately",!1)}}function ks(t,s){if(1&t&&e.nrm(0,"rtl-balances-info",32),2&t){const n=e.XpG(3);e.Y8G("balances",n.balances)("errorMessage",n.errorMessages[3]+" "+n.errorMessages[2])}}function Ss(t,s){if(1&t&&e.nrm(0,"rtl-channel-capacity-info",33),2&t){const n=e.XpG(3);e.Y8G("sortBy",n.sortField)("channelBalances",n.channelBalances)("allChannels",n.allChannelsCapacity)("errorMessage",n.errorMessages[3])}}function Rs(t,s){if(1&t&&e.nrm(0,"rtl-fee-info",34),2&t){const n=e.XpG(3);e.Y8G("fees",n.fees)("errorMessage",n.errorMessages[1])}}function Es(t,s){if(1&t&&e.nrm(0,"rtl-channel-status-info",35),2&t){const n=e.XpG(3);e.Y8G("channelsStatus",n.channelsStatus)("errorMessage",n.errorMessages[3]+" "+n.errorMessages[4])}}function Is(t,s){1&t&&(e.j41(0,"h3"),e.EFF(1,"Error! Unable to find information!"),e.k0s())}function Ls(t,s){if(1&t&&(e.j41(0,"mat-grid-tile",11)(1,"mat-card",12)(2,"mat-card-header")(3,"mat-card-title",13)(4,"div"),e.nrm(5,"fa-icon",14),e.j41(6,"span"),e.EFF(7),e.k0s()(),e.j41(8,"div"),e.DNE(9,bs,3,1,"button",15),e.j41(10,"mat-menu",16,1),e.DNE(12,Fs,2,1,"button",17)(13,xs,2,1,"button",18),e.k0s()()()(),e.j41(14,"mat-card-content",19),e.DNE(15,vs,1,0,"mat-progress-bar",20),e.j41(16,"div",21),e.DNE(17,Ts,1,2,"rtl-node-info",22)(18,ks,1,2,"rtl-balances-info",23)(19,Ss,1,4,"rtl-channel-capacity-info",24)(20,Rs,1,2,"rtl-fee-info",25)(21,Es,1,2,"rtl-channel-status-info",26)(22,Is,2,0,"h3",27),e.k0s()()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("colspan",n.cols)("rowspan",n.rows),e.R7$(5),e.Y8G("icon",n.icon),e.R7$(2),e.JRh(n.title),e.R7$(2),e.Y8G("ngIf",n.links[0]),e.R7$(3),e.Y8G("ngForOf",n.goToOptions),e.R7$(),e.Y8G("ngIf","capacity"===n.id),e.R7$(),e.Y8G("fxFlex",e.mNQ("node"===n.id||"balance"===n.id?70:"fee"===n.id||"status"===n.id?78:90))("ngClass",e.eq3(17,We,"node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusBlockchainBalance.status===i.apiCallStatusEnum.ERROR)||"capacity"===n.id&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||"fee"===n.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.ERROR||"status"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusPendingChannels.status===i.apiCallStatusEnum.ERROR))),e.R7$(),e.Y8G("ngIf","node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusBlockchainBalance.status===i.apiCallStatusEnum.INITIATED)||"capacity"===n.id&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||"fee"===n.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.INITIATED||"status"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusPendingChannels.status===i.apiCallStatusEnum.INITIATED)),e.R7$(),e.Y8G("ngSwitch",n.id),e.R7$(),e.Y8G("ngSwitchCase","node"),e.R7$(),e.Y8G("ngSwitchCase","balance"),e.R7$(),e.Y8G("ngSwitchCase","capacity"),e.R7$(),e.Y8G("ngSwitchCase","fee"),e.R7$(),e.Y8G("ngSwitchCase","status")}}function ws(t,s){if(1&t&&(e.j41(0,"div",5)(1,"div",6),e.nrm(2,"fa-icon",7),e.j41(3,"span",8),e.EFF(4),e.k0s()(),e.j41(5,"mat-grid-list",9),e.DNE(6,Ls,23,19,"mat-grid-tile",10),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.Y8G("icon",n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.ERROR?n.faFrown:n.faSmile),e.R7$(2),e.JRh(n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.COMPLETED?"Welcome "+n.information.alias+"! Your node is up and running.":n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),e.R7$(),e.Y8G("rowHeight",n.operatorCardHeight),e.R7$(),e.Y8G("ngForOf",n.operatorCards)}}function js(t,s){if(1&t&&(e.j41(0,"button",28)(1,"mat-icon"),e.EFF(2,"more_vert"),e.k0s()()),2&t){e.XpG();const n=e.sdS(9);e.Y8G("matMenuTriggerFor",n)}}function Gs(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const o=r.eBV(n).index,a=e.XpG(2).$implicit,l=e.XpG(2);return r.Njj(l.onNavigateTo(a.links[o]))}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit;e.R7$(),e.JRh(n)}}function Ds(t,s){if(1&t&&(e.j41(0,"mat-card-header")(1,"mat-card-title",13)(2,"div"),e.nrm(3,"fa-icon",14),e.j41(4,"span"),e.EFF(5),e.k0s()(),e.j41(6,"div"),e.DNE(7,js,3,1,"button",15),e.j41(8,"mat-menu",16,2),e.DNE(10,Gs,2,1,"button",17),e.k0s()()()()),2&t){const n=e.XpG().$implicit;e.R7$(3),e.Y8G("icon",n.icon),e.R7$(2),e.JRh(n.title),e.R7$(2),e.Y8G("ngIf",n.links[0]),e.R7$(3),e.Y8G("ngForOf",n.goToOptions)}}function Ns(t,s){1&t&&e.nrm(0,"mat-progress-bar",30)}function Ps(t,s){if(1&t&&e.nrm(0,"rtl-node-info",46),2&t){const n=e.XpG(3);e.Y8G("information",n.information)}}function $s(t,s){if(1&t&&e.nrm(0,"rtl-balances-info",32),2&t){const n=e.XpG(3);e.Y8G("balances",n.balances)("errorMessage",n.errorMessages[3]+" "+n.errorMessages[2])}}function As(t,s){if(1&t&&e.nrm(0,"rtl-channel-liquidity-info",47),2&t){const n=e.XpG(3);e.Y8G("totalLiquidity",n.totalInboundLiquidity)("allChannels",n.allInboundChannels)("errorMessage",n.errorMessages[3])}}function Ms(t,s){if(1&t&&e.nrm(0,"rtl-channel-liquidity-info",48),2&t){const n=e.XpG(3);e.Y8G("totalLiquidity",n.totalOutboundLiquidity)("allChannels",n.allOutboundChannels)("errorMessage",n.errorMessages[3])}}function Bs(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const o=r.eBV(n).index,a=e.XpG(2).$implicit,l=e.XpG(2);return r.Njj(l.onNavigateTo(a.links[o]))}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit;e.R7$(),e.JRh(n)}}function Os(t,s){if(1&t&&(e.j41(0,"span",49)(1,"mat-tab-group",50)(2,"mat-tab",51),e.nrm(3,"rtl-lightning-invoices",52),e.k0s(),e.j41(4,"mat-tab",53),e.nrm(5,"rtl-lightning-payments",52),e.k0s()(),e.j41(6,"div",54)(7,"button",28)(8,"mat-icon"),e.EFF(9,"more_vert"),e.k0s()(),e.j41(10,"mat-menu",16,3),e.DNE(12,Bs,2,1,"button",17),e.k0s()()()),2&t){const n=e.sdS(11),i=e.XpG().$implicit;e.R7$(7),e.Y8G("matMenuTriggerFor",n),e.R7$(5),e.Y8G("ngForOf",i.goToOptions)}}function Vs(t,s){1&t&&(e.j41(0,"h3"),e.EFF(1,"Error! Unable to find information!"),e.k0s())}function Ys(t,s){if(1&t&&(e.j41(0,"mat-grid-tile",11)(1,"mat-card",38),e.DNE(2,Ds,11,4,"mat-card-header",39),e.j41(3,"mat-card-content",40),e.DNE(4,Ns,1,0,"mat-progress-bar",20),e.j41(5,"div",41),e.DNE(6,Ps,1,1,"rtl-node-info",42)(7,$s,1,2,"rtl-balances-info",23)(8,As,1,3,"rtl-channel-liquidity-info",43)(9,Ms,1,3,"rtl-channel-liquidity-info",44)(10,Os,13,2,"span",45)(11,Vs,2,0,"h3",27),e.k0s()()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("colspan",n.cols)("rowspan",n.rows),e.R7$(),e.Y8G("ngClass",e.eq3(14,ys,"transactions"===n.id)),e.R7$(),e.Y8G("ngIf","transactions"!==n.id),e.R7$(),e.Y8G("fxFlex",e.mNQ("transactions"===n.id?100:"balance"===n.id?70:90))("ngClass",e.eq3(16,We,"node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusBlockchainBalance.status===i.apiCallStatusEnum.ERROR)||("inboundLiq"===n.id||"outboundLiq"===n.id)&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf","node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusBlockchainBalance.status===i.apiCallStatusEnum.INITIATED)||("inboundLiq"===n.id||"outboundLiq"===n.id)&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",n.id),e.R7$(),e.Y8G("ngSwitchCase","node"),e.R7$(),e.Y8G("ngSwitchCase","balance"),e.R7$(),e.Y8G("ngSwitchCase","inboundLiq"),e.R7$(),e.Y8G("ngSwitchCase","outboundLiq"),e.R7$(),e.Y8G("ngSwitchCase","transactions")}}function Xs(t,s){if(1&t&&(e.j41(0,"div",36),e.nrm(1,"fa-icon",7),e.j41(2,"span",8),e.EFF(3),e.k0s()(),e.j41(4,"mat-grid-list",37),e.DNE(5,Ys,12,18,"mat-grid-tile",10),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faSmile),e.R7$(2),e.SpI("Welcome ",n.information.alias,"! Your node is up and running."),e.R7$(),e.Y8G("rowHeight",n.merchantCardHeight),e.R7$(),e.Y8G("ngForOf",n.merchantCards)}}let Us=(()=>{var t;class s{constructor(i,o,a,l,p){switch(this.logger=i,this.store=o,this.actions=a,this.commonService=l,this.router=p,this.faSmile=Ve.Qpm,this.faFrown=Ve.wB1,this.faAngleDoubleDown=x.WxX,this.faAngleDoubleUp=x.$sC,this.faChartPie=x.W1p,this.faBolt=x.zm_,this.faServer=x.D6w,this.faNetworkWired=x.eGi,this.flgChildInfoUpdated=!1,this.userPersonaEnum=c.HW,this.activeChannels=0,this.inactiveChannels=0,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.information={},this.balances={onchain:-1,lightning:-1,total:0},this.allChannels=[],this.channelsStatus={},this.allChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="390px",this.merchantCardHeight="62px",this.sortField="Balance Score",this.screenSizeEnum=c.f7,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusFees=null,this.apiCallStatusBlockchainBalance=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize){case c.f7.XS:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:6},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}];break;case c.f7.SM:case c.f7.MD:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}];break;default:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}]}}ngOnInit(){this.store.select(F.gj).pipe((0,g.Q)(this.unSubs[0]),(0,ge.E)(this.store.select(H._c))).subscribe(([i,o])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=i.apiCallStatus,this.apiCallStatusNodeInfo.status===c.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=o,this.information=i.information}),this.store.select(F.oR).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessages[1]="",this.apiCallStatusFees=i.apiCallStatus,this.apiCallStatusFees.status===c.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=i.fees}),this.store.select(F.$7).pipe((0,g.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessages[2]="",this.apiCallStatusBlockchainBalance=i.apiCallStatus,this.apiCallStatusBlockchainBalance.status===c.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusBlockchainBalance.message?JSON.stringify(this.apiCallStatusBlockchainBalance.message):this.apiCallStatusBlockchainBalance.message?this.apiCallStatusBlockchainBalance.message:""),this.balances.onchain=i.blockchainBalance.total_balance&&+i.blockchainBalance.total_balance>=0?+i.blockchainBalance.total_balance:0,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances)}),this.store.select(F.Uv).pipe((0,g.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessages[4]="",this.apiCallStatusPendingChannels=i.apiCallStatus,this.apiCallStatusPendingChannels.status===c.wn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPendingChannels.message?JSON.stringify(this.apiCallStatusPendingChannels.message):this.apiCallStatusPendingChannels.message?this.apiCallStatusPendingChannels.message:""),this.channelsStatus.pending={num_channels:i.pendingChannelsSummary.open?.num_channels,capacity:i.pendingChannelsSummary.open?.limbo_balance},this.channelsStatus.closing={num_channels:(i.pendingChannelsSummary.closing?.num_channels||0)+(i.pendingChannelsSummary.force_closing?.num_channels||0)+(i.pendingChannelsSummary.waiting_close?.num_channels||0),capacity:i.pendingChannelsSummary.total_limbo_balance}}),this.store.select(F.BM).pipe((0,g.Q)(this.unSubs[4])).subscribe(i=>{this.errorMessages[3]="",this.apiCallStatusChannels=i.apiCallStatus,this.apiCallStatusChannels.status===c.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:"");const o=i.lightningBalance&&i.lightningBalance.local?+i.lightningBalance.local:0,a=i.lightningBalance&&i.lightningBalance.remote?+i.lightningBalance.remote:0;this.channelBalances={localBalance:o,remoteBalance:a,balancedness:+(1-Math.abs((o-a)/(o+a))).toFixed(3)},this.balances.lightning=i.lightningBalance.local||0,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances),this.activeChannels=i.channelsSummary.active?.num_channels||0,this.inactiveChannels=i.channelsSummary.inactive?.num_channels||0,this.channelsStatus.active=i.channelsSummary.active,this.channelsStatus.inactive=i.channelsSummary.inactive,this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.allChannels=i.channels?.filter(p=>!0===p.active),this.allChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels,"balancedness"))),this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels?.filter(p=>p.remote_balance&&p.remote_balance>0),"remote_balance"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels?.filter(p=>p.local_balance&&p.local_balance>0),"local_balance"))),this.allChannels.forEach(p=>{this.totalInboundLiquidity=this.totalInboundLiquidity+ +(p.remote_balance||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+ +(p.local_balance||0)}),this.flgChildInfoUpdated=!!(this.balances.lightning>=0&&this.balances.onchain>=0&&this.fees.month_fee_sum&&this.fees.month_fee_sum>=0),this.logger.info(i)}),this.actions.pipe((0,g.Q)(this.unSubs[5]),(0,U.p)(i=>i.type===c.QP.FETCH_FEES_LND||i.type===c.QP.SET_FEES_LND)).subscribe(i=>{i.type===c.QP.FETCH_FEES_LND&&(this.flgChildInfoUpdated=!1),i.type===c.QP.SET_FEES_LND&&(this.flgChildInfoUpdated=!0)})}onNavigateTo(i){"inactive"===i?this.router.navigateByUrl("/lnd/connections",{state:{filterColumn:"active",filterValue:i}}):this.router.navigateByUrl("/lnd/"+i)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.allChannels.sort((i,o)=>{const a=+(i.local_balance||0)+ +(i.remote_balance||0),l=+(o.local_balance||0)+ +(o.remote_balance||0);return a>l?-1:a{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU(L.il),e.rXU(K.En),e.rXU($.h),e.rXU(w.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-home"]],standalone:!1,decls:3,vars:2,consts:[["merchantDashboard",""],["menuOperator","matMenu"],["menuMerchant","matMenu"],["menuTransactions","matMenu"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",3,"ngSwitch"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100","direction","In",3,"totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100","direction","Out",3,"totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100","direction","In",3,"totalLiquidity","allChannels","errorMessage"],["fxFlex","100","direction","Out",3,"totalLiquidity","allChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],["calledFrom","home"],["label","Pay"],[1,"underline"]],template:function(o,a){if(1&o&&e.DNE(0,ws,7,4,"div",4)(1,Xs,6,4,"ng-template",null,0,e.C5r),2&o){const l=e.sdS(2);e.Y8G("ngIf",(null==a.selNode?null:a.selNode.settings.userPersona)===a.userPersonaEnum.OPERATOR)("ngIfElse",l)}},dependencies:[_.YU,_.Sq,_.bT,_.ux,_.e1,_.fG,O.aY,_t.iY,k.RN,k.m2,k.MM,k.dh,Ce.B_,Ce.NS,oe.An,Se.kk,Se.fb,Se.Cp,V.HM,f.DJ,f.sA,f.UI,j.PW,A.mq,A.T8,Ye,Xe,He,Ua,ze,qe,is,Cs],encapsulation:2}))}return t(),s})();var Re=y(1975),Ee=y(25837);function Hs(t,s){if(1&t&&(e.j41(0,"span",10),e.EFF(1,"Channels"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.activeChannels))}}function zs(t,s){if(1&t&&(e.j41(0,"span",10),e.EFF(1,"Peers"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.activePeers))}}let qs=(()=>{var t;class s{constructor(i,o,a){this.store=i,this.logger=o,this.router=a,this.activePeers=0,this.activeChannels=0,this.faUsers=x.gdJ,this.faChartPie=x.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.activeLink=this.links.findIndex(i=>i.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,U.p)(i=>i instanceof w.gx)).subscribe({next:i=>{this.activeLink=this.links.findIndex(o=>o.link===i.urlAfterRedirects.substring(i.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(H._c).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.selNode=i}),this.store.select(F.os).pipe((0,g.Q)(this.unSubs[2])).subscribe(i=>{this.activePeers=i.peers&&i.peers.length?i.peers.length:0,this.logger.info(i)}),this.store.select(F.BM).pipe((0,g.Q)(this.unSubs[3])).subscribe(i=>{this.activeChannels=i.channelsSummary.active?.num_channels||0,this.logger.info(i)}),this.store.select(F.$7).pipe((0,g.Q)(this.unSubs[4])).subscribe(i=>{this.balances=[{title:"Total Balance",dataValue:i.blockchainBalance.total_balance||0},{title:"Confirmed",dataValue:i.blockchainBalance.confirmed_balance||0},{title:"Unconfirmed",dataValue:i.blockchainBalance.unconfirmed_balance||0}],this.logger.info(i)})}onSelectedTabChange(i){this.router.navigateByUrl("/lnd/connections/"+this.links[i.index].link)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(L.il),e.rXU(D.gP),e.rXU(w.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-connections"]],standalone:!1,decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,a){1&o&&(e.j41(0,"div",0),e.nrm(1,"fa-icon",1),e.j41(2,"span",2),e.EFF(3,"On-chain Balance"),e.k0s()(),e.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),e.nrm(7,"rtl-currency-unit-converter",5),e.k0s()()(),e.j41(8,"div",0),e.nrm(9,"fa-icon",1),e.j41(10,"span",2),e.EFF(11,"Connections"),e.k0s()(),e.j41(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),e.mxI("selectedIndexChange",function(p){return e.DH7(a.activeLink,p)||(a.activeLink=p),p}),e.bIt("selectedTabChange",function(p){return a.onSelectedTabChange(p)}),e.j41(16,"mat-tab"),e.DNE(17,Hs,2,2,"ng-template",8),e.k0s(),e.j41(18,"mat-tab"),e.DNE(19,zs,2,2,"ng-template",8),e.k0s()(),e.j41(20,"div",9),e.nrm(21,"router-outlet"),e.k0s()()()()),2&o&&(e.R7$(),e.Y8G("icon",a.faChartPie),e.R7$(6),e.Y8G("values",a.balances),e.R7$(2),e.Y8G("icon",a.faUsers),e.R7$(6),e.R50("selectedIndex",a.activeLink))},dependencies:[O.aY,k.RN,k.m2,f.DJ,f.sA,f.UI,Re.k,A.ES,A.mq,A.T8,Ee.f,w.n3],encapsulation:2}))}return t(),s})();var Ie=y(99172),Ze=y(96354),Ke=y(60092);const Js=["form"];function Qs(t,s){if(1&t&&(e.j41(0,"mat-option",41),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.JRh(n.alias?n.alias:n.pub_key?n.pub_key:"")}}function Ws(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Peer alias is required."),e.k0s())}function Zs(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Peer not found in the list."),e.k0s())}function Ks(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",38)(1,"mat-label"),e.EFF(2,"Peer Alias"),e.k0s(),e.nrm(3,"input",39),e.j41(4,"mat-autocomplete",40,4),e.bIt("optionSelected",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSelectedPeerChanged())}),e.DNE(6,Qs,2,2,"mat-option",28),e.nI1(7,"async"),e.k0s(),e.DNE(8,Ws,2,0,"mat-error",20)(9,Zs,2,0,"mat-error",20),e.k0s()}if(2&t){const n=e.sdS(5),i=e.XpG();e.R7$(3),e.Y8G("formControl",i.selectedPeer)("matAutocomplete",n),e.R7$(),e.Y8G("displayWith",i.displayFn),e.R7$(2),e.Y8G("ngForOf",e.bMT(7,6,i.filteredPeers)),e.R7$(2),e.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.required),e.R7$(),e.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.notfound)}}function eo(t,s){1&t&&e.eu8(0)}function to(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function no(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("Amount must be less than or equal to ",n.totalBalance,".")}}function io(t,s){if(1&t&&(e.j41(0,"div",42),e.nrm(1,"fa-icon",43),e.j41(2,"span",6)(3,"div"),e.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(5,"span",44)(6,"span"),e.EFF(7),e.k0s(),e.j41(8,"span"),e.EFF(9),e.k0s(),e.j41(10,"span"),e.EFF(11),e.k0s(),e.j41(12,"span"),e.EFF(13),e.k0s(),e.j41(14,"span"),e.EFF(15),e.k0s()()()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faInfoCircle),e.R7$(6),e.SpI("- High: ",n.recommendedFee.fastestFee||"Unknown"),e.R7$(2),e.SpI("- Medium: ",n.recommendedFee.halfHourFee||"Unknown"),e.R7$(2),e.SpI("- Low: ",n.recommendedFee.hourFee||"Unknown"),e.R7$(2),e.SpI("- Economy: ",n.recommendedFee.economyFee||"Unknown"),e.R7$(2),e.SpI("- Minimum: ",n.recommendedFee.minimumFee||"Unknown")}}function ao(t,s){if(1&t&&(e.j41(0,"mat-option",41),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n.id),e.R7$(),e.SpI(" ",n.name," ")}}function so(t,s){if(1&t&&(e.j41(0,"mat-hint"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("Mempool Min: ",n.recommendedFee.minimumFee," (Sats/vByte)")}}function oo(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Target Confirmation Blocks is required."),e.k0s())}function lo(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Fee is required."),e.k0s())}function ro(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("Lower than min feerate ",n.recommendedFee.minimumFee," in the mempool.")}}function co(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",32)(1,"mat-slide-toggle",45),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.taprootChannel,o)||(a.taprootChannel=o),r.Njj(o)}),e.EFF(2,"Taproot Channel"),e.k0s()()}if(2&t){const n=e.XpG();e.R7$(),e.R50("ngModel",n.taprootChannel)}}function po(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.channelConnectionError)}}function mo(t,s){if(1&t&&(e.j41(0,"div",46),e.nrm(1,"fa-icon",43),e.DNE(2,po,2,1,"span",20),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.channelConnectionError)}}function uo(t,s){if(1&t&&(e.j41(0,"mat-expansion-panel",48)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),e.EFF(4,"Peer: \xa0"),e.k0s(),e.j41(5,"strong",49),e.EFF(6),e.k0s()()(),e.j41(7,"div",13)(8,"div",50)(9,"div",38)(10,"h4",51),e.EFF(11,"Pubkey"),e.k0s(),e.j41(12,"span",52),e.EFF(13),e.k0s()()(),e.nrm(14,"mat-divider",53),e.j41(15,"div",50)(16,"div",54)(17,"h4",51),e.EFF(18,"Address"),e.k0s(),e.j41(19,"span",55),e.EFF(20),e.k0s()(),e.j41(21,"div",54)(22,"h4",51),e.EFF(23,"Inbound"),e.k0s(),e.j41(24,"span",55),e.EFF(25),e.k0s()()()()()),2&t){const n=e.XpG(2);e.R7$(6),e.JRh((null==n.peer?null:n.peer.alias)||(null==n.peer?null:n.peer.address)),e.R7$(7),e.JRh(n.peer.pub_key),e.R7$(7),e.JRh(null==n.peer?null:n.peer.address),e.R7$(5),e.JRh(null!=n.peer&&n.peer.inbound?"True":"False")}}function ho(t,s){if(1&t&&e.DNE(0,uo,26,4,"mat-expansion-panel",47),2&t){const n=e.XpG();e.Y8G("ngIf",n.peer)}}let et=(()=>{var t;class s{constructor(i,o,a,l,p,m,v){this.logger=i,this.dialogRef=o,this.data=a,this.store=l,this.actions=p,this.commonService=m,this.dataService=v,this.selectedPeer=new d.hs,this.amount=new d.hs,this.faExclamationTriangle=x.zpE,this.faInfoCircle=x.iW_,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.selectedPubkey="",this.isPrivate=!1,this.selTransType="0",this.isTaprootAvailable=!1,this.taprootChannel=!1,this.spendUnconfirmed=!1,this.transTypeValue="",this.transTypes=c.XG,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.data.message?(this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[],this.isTaprootAvailable=this.commonService.isVersionCompatible(this.information.version,"0.17.0")):(this.information={},this.totalBalance=0,this.peer=null,this.peers=[],this.isTaprootAvailable=!1),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(H._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(a=>{this.selNode=a,this.isPrivate=!!a?.settings.unannouncedChannels}),this.actions.pipe((0,g.Q)(this.unSubs[1]),(0,U.p)(a=>a.type===c.QP.UPDATE_API_CALL_STATUS_LND||a.type===c.QP.FETCH_CHANNELS_LND)).subscribe(a=>{a.type===c.QP.UPDATE_API_CALL_STATUS_LND&&a.payload.status===c.wn.ERROR&&"SaveNewChannel"===a.payload.action&&(this.channelConnectionError=a.payload.message),a.type===c.QP.FETCH_CHANNELS_LND&&this.dialogRef.close()});let i="",o="";this.sortedPeers=this.peers.sort((a,l)=>(i=a.alias?a.alias.toLowerCase():a.pub_key?a.pub_key.toLowerCase():"",o=l.alias?l.alias.toLowerCase():a.pub_key?a.pub_key.toLowerCase():"",io?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,g.Q)(this.unSubs[2]),(0,Ie.Z)(""),(0,Ze.T)(a=>"string"==typeof a?a:a.alias?a.alias:a.pub_key),(0,Ze.T)(a=>a?this.filterPeers(a):this.sortedPeers.slice()))}filterPeers(i){return this.sortedPeers?.filter(o=>0===o.alias?.toLowerCase().indexOf(i?i.toLowerCase():""))}displayFn(i){return i&&i.alias?i.alias:i&&i.pub_key?i.pub_key:""}onSelectedPeerChanged(){if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.pub_key?this.selectedPeer.value.pub_key:null,"string"==typeof this.selectedPeer.value){const i=this.peers?.filter(o=>o.alias?.length===this.selectedPeer.value.length&&0===o.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===i.length&&i[0].pub_key&&(this.selectedPubkey=i[0].pub_key)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!!this.selNode?.settings.unannouncedChannels,this.taprootChannel=!1,this.spendUnconfirmed=!1,this.selTransType="0",this.transTypeValue="",this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||("1"===this.selTransType||"2"===this.selTransType)&&!this.transTypeValue||"2"===this.selTransType&&this.recommendedFee.minimumFee>+this.transTypeValue)return!0;this.store.dispatch((0,T.vL)({payload:{selectedPeerPubkey:this.peer&&this.peer.pub_key?this.peer.pub_key:this.selectedPubkey,fundingAmount:this.fundingAmount,private:this.isPrivate,transType:this.selTransType,transTypeValue:this.transTypeValue,spendUnconfirmed:this.spendUnconfirmed,commitmentType:this.taprootChannel?5:null}}))}onAdvancedPanelToggle(i){this.advancedTitle=i?"Advanced Options | "+("1"===this.selTransType?"Target Confirmation Blocks: ":"2"===this.selTransType?"Fee (Sats/vByte): ":"Default")+("1"===this.selTransType||"2"===this.selTransType?this.transTypeValue:"")+" | Taproot Channel: "+(this.taprootChannel?"Yes":"No")+" | Spend Unconfirmed Output: "+(this.spendUnconfirmed?"Yes":"No"):"Advanced Options"}onSelTransTypeChanged(i){this.transTypeValue="",i.value===this.transTypes[2].id&&this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[3])).subscribe({next:o=>{this.recommendedFee=o},error:o=>{this.logger.error(o)}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU(Y.CP),e.rXU(Y.Vh),e.rXU(L.il),e.rXU(K.En),e.rXU($.h),e.rXU(Z.u))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-open-channel"]],viewQuery:function(o,a){if(1&o&&e.GBs(Js,7),2&o){let l;e.mGM(l=e.lsd())&&(a.form=l.first)}},standalone:!1,decls:64,vars:30,consts:[["form","ngForm"],["amt","ngModel"],["transTypeVal","ngModel"],["peerDetailsExpansionBlock",""],["auto","matAutocomplete"],["fxLayout","row","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","1","required","","name","amnt",3,"ngModelChange","step","min","max","ngModel"],["matSuffix",""],[4,"ngIf"],["fxFlex","35","fxLayoutAlign","start center"],["tabindex","2","color","primary","name","isPrivate",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","column","fxFlex","49"],["tabindex","3",3,"valueChange","selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["matInput","","type","number","tabindex","4","name","transTpValue",3,"ngModelChange","required","disabled","step","min","ngModel"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-2"],["fxFlex","50","fxLayoutAlign","start center",4,"ngIf"],["fxFlex","50","fxLayoutAlign","start center"],["tabindex","7","color","primary","name","spendUnconfirmed",3,"ngModelChange","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","9"],["fxFlex","100"],["type","text","aria-label","Peers","matInput","","tabindex","1","required","",3,"formControl","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["tabindex","6","color","primary","name","taprootChannel",3,"ngModelChange","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayout","row"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",5)(1,"div",6)(2,"mat-card-header",7)(3,"div",8)(4,"span",9),e.EFF(5),e.k0s()(),e.j41(6,"button",10),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",11)(9,"form",12,0),e.bIt("submit",function(){return r.eBV(l),r.Njj(a.onOpenChannel())})("reset",function(){return r.eBV(l),r.Njj(a.resetData())}),e.j41(11,"div",13),e.DNE(12,Ks,10,8,"mat-form-field",14),e.k0s(),e.DNE(13,eo,1,0,"ng-container",15),e.j41(14,"div",13)(15,"div",16)(16,"mat-form-field",17)(17,"mat-label"),e.EFF(18,"Amount"),e.k0s(),e.j41(19,"input",18,1),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.fundingAmount,m)||(a.fundingAmount=m),r.Njj(m)}),e.k0s(),e.j41(21,"mat-hint"),e.EFF(22),e.nI1(23,"number"),e.k0s(),e.j41(24,"span",19),e.EFF(25," Sats "),e.k0s(),e.DNE(26,to,2,0,"mat-error",20)(27,no,2,1,"mat-error",20),e.k0s(),e.j41(28,"div",21)(29,"mat-slide-toggle",22),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.isPrivate,m)||(a.isPrivate=m),r.Njj(m)}),e.EFF(30,"Private Channel"),e.k0s()()(),e.j41(31,"mat-expansion-panel",23),e.bIt("closed",function(){return r.eBV(l),r.Njj(a.onAdvancedPanelToggle(!0))})("opened",function(){return r.eBV(l),r.Njj(a.onAdvancedPanelToggle(!1))}),e.j41(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),e.EFF(35),e.k0s()()(),e.j41(36,"div",24),e.DNE(37,io,16,6,"div",25),e.j41(38,"div",16)(39,"mat-form-field",26)(40,"mat-select",27),e.mxI("valueChange",function(m){return r.eBV(l),e.DH7(a.selTransType,m)||(a.selTransType=m),r.Njj(m)}),e.bIt("selectionChange",function(m){return r.eBV(l),r.Njj(a.onSelTransTypeChanged(m))}),e.DNE(41,ao,2,2,"mat-option",28),e.k0s()(),e.j41(42,"mat-form-field",26)(43,"mat-label"),e.EFF(44),e.k0s(),e.j41(45,"input",29,2),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.transTypeValue,m)||(a.transTypeValue=m),r.Njj(m)}),e.k0s(),e.DNE(47,so,2,1,"mat-hint",20)(48,oo,2,0,"mat-error",20)(49,lo,2,0,"mat-error",20)(50,ro,2,1,"mat-error",20),e.k0s()(),e.j41(51,"div",30),e.DNE(52,co,3,1,"div",31),e.j41(53,"div",32)(54,"mat-slide-toggle",33),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.spendUnconfirmed,m)||(a.spendUnconfirmed=m),r.Njj(m)}),e.EFF(55,"Spend Unconfirmed Output"),e.k0s()()()()()(),e.DNE(56,mo,3,2,"div",34),e.j41(57,"div",35)(58,"button",36),e.EFF(59,"Clear Fields"),e.k0s(),e.j41(60,"button",37),e.EFF(61,"Open Channel"),e.k0s()()()()()(),e.DNE(62,ho,1,1,"ng-template",null,3,e.C5r)}if(2&o){const l=e.sdS(20),p=e.sdS(63);e.R7$(5),e.JRh(a.alertTitle),e.R7$(7),e.Y8G("ngIf",!a.peer&&a.peers&&a.peers.length>0),e.R7$(),e.Y8G("ngTemplateOutlet",p),e.R7$(6),e.Y8G("step",1e3)("min",1)("max",a.totalBalance),e.R50("ngModel",a.fundingAmount),e.R7$(3),e.SpI("(Remaining: ",e.bMT(23,28,a.totalBalance-(a.fundingAmount?a.fundingAmount:0)),")"),e.R7$(4),e.Y8G("ngIf",null==l.errors?null:l.errors.required),e.R7$(),e.Y8G("ngIf",null==l.errors?null:l.errors.max),e.R7$(2),e.R50("ngModel",a.isPrivate),e.R7$(6),e.JRh(a.advancedTitle),e.R7$(2),e.Y8G("ngIf",a.recommendedFee.minimumFee),e.R7$(3),e.R50("value",a.selTransType),e.R7$(),e.Y8G("ngForOf",a.transTypes),e.R7$(3),e.JRh("0"===a.selTransType?"Default":"1"===a.selTransType?"Target Confirmation Blocks":"Fee (Sats/vByte)"),e.R7$(),e.Y8G("required","0"!==a.selTransType)("disabled","0"===a.selTransType)("step",1)("min","2"===a.selTransType?a.recommendedFee.minimumFee:0),e.R50("ngModel",a.transTypeValue),e.R7$(2),e.Y8G("ngIf","2"===a.selTransType),e.R7$(),e.Y8G("ngIf","1"===a.selTransType&&!a.transTypeValue),e.R7$(),e.Y8G("ngIf","2"===a.selTransType&&!a.transTypeValue),e.R7$(),e.Y8G("ngIf","2"===a.selTransType&&a.transTypeValue&&+a.transTypeValue{var t;class s{constructor(i,o,a,l,p,m,v,b,S){this.dialogRef=i,this.data=o,this.store=a,this.lndEffects=l,this.formBuilder=p,this.actions=m,this.logger=v,this.commonService=b,this.dataService=S,this.faExclamationTriangle=x.zpE,this.faInfoCircle=x.iW_,this.peerAddress="",this.totalBalance=0,this.transTypes=c.XG,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.isTaprootAvailable=!1,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.totalBalance=this.data.message?.balance||0,this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[d.k0.required]],peerAddress:[this.data.message?.peer?.pub_key?this.data.message?.peer?.pub_key+(this.data.message?.peer?.address?"@"+this.data.message?.peer?.address:""):"",[d.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[d.k0.required,d.k0.min(1),d.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],selTransType:[c.XG[0].id],transTypeValue:[{value:"",disabled:!0}],taprootChannel:[!1],spendUnconfirmed:[!1],hiddenAmount:["",[d.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(F.gj).pipe((0,g.Q)(this.unSubs[0]),(0,ge.E)(this.store.select(H._c))).subscribe(([o,a])=>{this.selNode=a,this.channelFormGroup.controls.isPrivate.setValue(!!a?.settings.unannouncedChannels),this.isTaprootAvailable=this.commonService.isVersionCompatible(o.information.version,"0.17.0")}),this.channelFormGroup.controls.selTransType.valueChanges.pipe((0,g.Q)(this.unSubs[1])).subscribe(o=>{o===c.XG[0].id?(this.channelFormGroup.controls.transTypeValue.setValue(""),this.channelFormGroup.controls.transTypeValue.disable(),this.channelFormGroup.controls.transTypeValue.setValidators(null),this.channelFormGroup.controls.transTypeValue.setErrors(null)):(this.channelFormGroup.controls.transTypeValue.setValue(""),this.channelFormGroup.controls.transTypeValue.enable(),this.channelFormGroup.controls.transTypeValue.setValidators([d.k0.required]))}),this.actions.pipe((0,g.Q)(this.unSubs[2]),(0,U.p)(o=>o.type===c.QP.NEWLY_ADDED_PEER_LND||o.type===c.QP.FETCH_PENDING_CHANNELS_LND||o.type===c.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(o=>{o.type===c.QP.NEWLY_ADDED_PEER_LND&&(this.logger.info(o.payload),this.flgEditable=!1,this.newlyAddedPeer=o.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),o.type===c.QP.FETCH_PENDING_CHANNELS_LND&&this.dialogRef.close(),o.type===c.QP.UPDATE_API_CALL_STATUS_LND&&o.payload.status===c.wn.ERROR&&("SaveNewPeer"===o.payload.action||"FetchGraphNode"===o.payload.action?this.peerConnectionError=o.payload.message:"SaveNewChannel"===o.payload.action&&(this.channelConnectionError=o.payload.message))})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="";const i=this.peerFormGroup.controls.peerAddress.value.search("@");let o="",a="";i>-1?(o=this.peerFormGroup.controls.peerAddress.value.substring(0,i),a=this.peerFormGroup.controls.peerAddress.value.substring(i+1),this.connectPeerWithParams(o,a)):(this.store.dispatch((0,T.t0)({payload:{pubkey:this.peerFormGroup.controls.peerAddress.value}})),this.lndEffects.setGraphNode.pipe((0,W.s)(1)).subscribe(l=>{setTimeout(()=>{a=l.node.addresses&&l.node.addresses.length&&l.node.addresses.length>0&&l.node.addresses[0].addr?l.node.addresses[0].addr:"",this.connectPeerWithParams(this.peerFormGroup.controls.peerAddress.value,a)},0)}))}connectPeerWithParams(i,o){this.store.dispatch((0,T.sq)({payload:{pubkey:i,host:o,perm:!1}}))}onOpenChannel(){return"2"===this.channelFormGroup.controls.selTransType.value&&this.recommendedFee.minimumFee>this.channelFormGroup.controls.transTypeValue.value?(this.channelFormGroup.controls.transTypeValue.setErrors({minimum:!0}),!0):!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||"1"===this.channelFormGroup.controls.selTransType.value&&!this.channelFormGroup.controls.transTypeValue.value||"2"===this.channelFormGroup.controls.selTransType.value&&!this.channelFormGroup.controls.transTypeValue.value||(this.channelConnectionError="",void this.store.dispatch((0,T.vL)({payload:{selectedPeerPubkey:this.newlyAddedPeer?.pub_key,fundingAmount:this.channelFormGroup.controls.fundingAmount.value,private:this.channelFormGroup.controls.isPrivate.value,transType:this.channelFormGroup.controls.selTransType.value,transTypeValue:this.channelFormGroup.controls.transTypeValue.value,spendUnconfirmed:this.channelFormGroup.controls.spendUnconfirmed.value,commitmentType:this.channelFormGroup.controls.taprootChannel.value?5:null}})))}onSelTransTypeChanged(i){this.channelFormGroup.controls.transTypeValue.setValue(""),i.value===this.transTypes[2].id&&this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[3])).subscribe({next:o=>{this.recommendedFee=o},error:o=>{this.logger.error(o)}})}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(i){switch(i.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+this.newlyAddedPeer?.alias:"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+this.newlyAddedPeer?.alias:"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}i.selectedIndex{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Y.CP),e.rXU(Y.Vh),e.rXU(L.il),e.rXU(me.L),e.rXU(d.ze),e.rXU(K.En),e.rXU(D.gP),e.rXU($.h),e.rXU(Z.u))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-connect-peer"]],viewQuery:function(o,a){if(1&o&&(e.GBs(_o,5),e.GBs(fo,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.form=l.first),e.mGM(l=e.lsd())&&(a.stepper=l.first)}},standalone:!1,decls:70,vars:31,consts:[["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start end"],["matInput","","formControlName","fundingAmount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxFlex","35","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start end"],["tabindex","3","formControlName","selTransType",3,"selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","50"],["matInput","","formControlName","transTypeValue","type","number","name","transTypeValue","tabindex","4",3,"step","min","required"],["fxFlex","50","fxLayoutAlign","start center",4,"ngIf"],["fxFlex","50","fxLayoutAlign","start center"],["tabindex","6","color","primary","formControlName","spendUnconfirmed","name","spendUnconfirmed"],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["tabindex","6","color","primary","formControlName","taprootChannel","name","taprootChannel",1,"ps-2"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Connect to a new peer"),e.k0s()(),e.j41(6,"button",6),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),e.bIt("selectionChange",function(m){return r.eBV(l),r.Njj(a.stepSelectionChanged(m))}),e.j41(12,"mat-step",10)(13,"form",11),e.DNE(14,go,1,1,"ng-template",12),e.j41(15,"mat-form-field",13)(16,"mat-label"),e.EFF(17,"Lightning Address (pubkey OR pubkey@ip:port)"),e.k0s(),e.nrm(18,"input",14),e.DNE(19,Co,2,0,"mat-error",15),e.k0s(),e.DNE(20,yo,4,2,"div",16),e.j41(21,"div",17)(22,"button",18),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onConnectPeer())}),e.EFF(23),e.k0s()()()(),e.j41(24,"mat-step",10)(25,"form",19),e.DNE(26,bo,1,1,"ng-template",20),e.j41(27,"div",21),e.DNE(28,Fo,16,6,"div",22),e.j41(29,"div",23)(30,"mat-form-field",24)(31,"mat-label"),e.EFF(32,"Amount"),e.k0s(),e.nrm(33,"input",25),e.j41(34,"mat-hint"),e.EFF(35),e.nI1(36,"number"),e.k0s(),e.j41(37,"span",26),e.EFF(38," Sats "),e.k0s(),e.DNE(39,xo,2,0,"mat-error",15)(40,vo,2,0,"mat-error",15)(41,To,2,1,"mat-error",15),e.k0s(),e.j41(42,"div",27)(43,"mat-slide-toggle",28),e.EFF(44,"Private Channel"),e.k0s()()(),e.j41(45,"div",29)(46,"mat-form-field",30)(47,"mat-label"),e.EFF(48,"Transaction Type"),e.k0s(),e.j41(49,"mat-select",31),e.bIt("selectionChange",function(m){return r.eBV(l),r.Njj(a.onSelTransTypeChanged(m))}),e.DNE(50,ko,2,2,"mat-option",32),e.k0s()(),e.j41(51,"mat-form-field",33)(52,"mat-label"),e.EFF(53),e.k0s(),e.nrm(54,"input",34),e.DNE(55,So,2,1,"mat-hint",15)(56,Ro,2,1,"mat-error",15)(57,Eo,2,1,"mat-error",15),e.k0s()(),e.j41(58,"div",29),e.DNE(59,Io,3,0,"div",35),e.j41(60,"div",36)(61,"mat-slide-toggle",37),e.EFF(62,"Spend Unconfirmed Output"),e.k0s()()()(),e.DNE(63,Lo,4,2,"div",16),e.j41(64,"div",17)(65,"button",38),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onOpenChannel())}),e.EFF(66),e.k0s()()()()(),e.j41(67,"div",39)(68,"button",40),e.EFF(69),e.k0s()()()()()()}2&o&&(e.R7$(10),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",a.peerFormGroup)("editable",a.flgEditable),e.R7$(),e.Y8G("formGroup",a.peerFormGroup),e.R7$(6),e.Y8G("ngIf",null==a.peerFormGroup.controls.peerAddress.errors?null:a.peerFormGroup.controls.peerAddress.errors.required),e.R7$(),e.Y8G("ngIf",""!==a.peerConnectionError),e.R7$(3),e.JRh(""!==a.peerConnectionError?"Retry":"Add Peer"),e.R7$(),e.Y8G("stepControl",a.channelFormGroup)("editable",a.flgEditable),e.R7$(),e.Y8G("formGroup",a.channelFormGroup),e.R7$(3),e.Y8G("ngIf",a.recommendedFee.minimumFee),e.R7$(5),e.Y8G("step",1e3),e.R7$(2),e.SpI("Remaining: ",e.bMT(36,29,a.totalBalance-(a.channelFormGroup.controls.fundingAmount.value?a.channelFormGroup.controls.fundingAmount.value:0))),e.R7$(4),e.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.required),e.R7$(),e.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.min),e.R7$(),e.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.max),e.R7$(9),e.Y8G("ngForOf",a.transTypes),e.R7$(3),e.JRh("0"===a.channelFormGroup.controls.selTransType.value?"Default":"1"===a.channelFormGroup.controls.selTransType.value?"Target Confirmation Blocks":"Fee (Sats/vByte)"),e.R7$(),e.Y8G("step",1)("min","2"===a.channelFormGroup.controls.selTransType.value?a.recommendedFee.minimumFee:0)("required","0"!==a.channelFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf","2"===a.channelFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf",null==a.channelFormGroup.controls.transTypeValue.errors?null:a.channelFormGroup.controls.transTypeValue.errors.required),e.R7$(),e.Y8G("ngIf",a.channelFormGroup.controls.transTypeValue.value&&(null==a.channelFormGroup.controls.transTypeValue.errors?null:a.channelFormGroup.controls.transTypeValue.errors.minimum)),e.R7$(2),e.Y8G("ngIf",a.isTaprootAvailable),e.R7$(4),e.Y8G("ngIf",""!==a.channelConnectionError),e.R7$(3),e.JRh(""!==a.channelConnectionError?"Retry":"Open Channel"),e.R7$(2),e.Y8G("mat-dialog-close",!1),e.R7$(),e.JRh(null!=a.newlyAddedPeer&&a.newlyAddedPeer.pub_key?"Do It Later":"Close"))},dependencies:[_.Sq,_.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.j4,d.JD,O.aY,Y.tx,N.$z,k.m2,k.MM,M.fg,C.rl,C.nJ,C.MV,C.TL,C.yw,f.DJ,f.sA,f.UI,E.VO,X.wT,he.sG,q.V5,q.Ti,q.M6,te.N,ae.V,_.QX],encapsulation:2}))}return t(),s})();const wo=()=>["all"],jo=t=>({"error-border":t}),Go=()=>["no_peer"],Le=t=>({width:t}),Do=t=>({"display-none":t});function No(t,s){if(1&t&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function Po(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function $o(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Alias"),e.k0s())}function Ao(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Le,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.alias)}}function Mo(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Public Key"),e.k0s())}function Bo(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Le,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.pub_key)}}function Oo(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Address"),e.k0s())}function Vo(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Le,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.address)}}function Yo(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Sync Type"),e.k0s())}function Xo(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,null==n?null:n.sync_type,"sync","_"))}}function Uo(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Inbound"),e.k0s())}function Ho(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(null!=n&&n.inbound?"Yes":"No")}}function zo(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Bytes Sent"),e.k0s())}function qo(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.bytes_sent)," ")}}function Jo(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Bytes Received"),e.k0s())}function Qo(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.bytes_recv)," ")}}function Wo(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Sats Sent"),e.k0s())}function Zo(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.sat_sent)," ")}}function Ko(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Sats Received"),e.k0s())}function el(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.sat_recv)," ")}}function tl(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Ping Time ("),e.j41(2,"span"),e.EFF(3,"\xb5"),e.k0s(),e.EFF(4,"s)"),e.k0s())}function nl(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.ping_time)," ")}}function il(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",50),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function al(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",51)(1,"div",48)(2,"mat-select",49),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",50),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG();return r.Njj(l.onPeerClick(a,o))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",50),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onOpenChannel(o))}),e.EFF(7,"Open Channel"),e.k0s(),e.j41(8,"mat-option",50),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onPeerDetach(o))}),e.EFF(9,"Disconnect"),e.k0s()()()()}}function sl(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No connected peer."),e.k0s())}function ol(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting peers..."),e.k0s())}function ll(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function rl(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,sl,2,0,"p",53)(2,ol,2,0,"p",53)(3,ll,2,1,"p",53),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=n.peers&&n.peers.data)||(null==n.peers.data?null:n.peers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.peers&&n.peers.data)||(null==n.peers.data?null:n.peers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.peers&&n.peers.data)||(null==n.peers.data?null:n.peers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function cl(t,s){if(1&t&&e.nrm(0,"tr",54),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,Do,(null==n.peers?null:n.peers.data)&&(null==n.peers||null==n.peers.data?null:n.peers.data.length)>0))}}function pl(t,s){1&t&&e.nrm(0,"tr",55)}function ml(t,s){1&t&&e.nrm(0,"tr",56)}let ul=(()=>{var t;class s{constructor(i,o,a,l,p){this.logger=i,this.store=o,this.rtlEffects=a,this.commonService=l,this.camelCaseWithReplace=p,this.nodePageDefs=c._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:c.md,sortBy:"alias",sortOrder:c.oi.DESCENDING},this.availableBalance=0,this.faUsers=x.gdJ,this.displayedColumns=[],this.peersData=[],this.peers=new u.I6([]),this.information={},this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(F.pI).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.information=i}),this.store.select(F.$G).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(F.$7).pipe((0,g.Q)(this.unSubs[2])).subscribe(i=>{this.availableBalance=i.blockchainBalance.total_balance||0}),this.store.select(F.os).pipe((0,g.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=i.peers,this.peersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPeersTable(this.peersData),this.logger.info(i)})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(i,o){this.store.dispatch((0,I.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:i.pub_key,goToName:"Graph lookup",goToLink:"/lnd/graph/lookups",showQRName:"Public Key",showQRField:i.pub_key,message:[[{key:"pub_key",value:i.pub_key,title:"Public Key",width:100}],[{key:"address",value:i.address,title:"Address",width:100}],[{key:"alias",value:i.alias,title:"Alias",width:40},{key:"inbound",value:i.inbound?"True":"False",title:"Inbound",width:30},{key:"ping_time",value:i.ping_time,title:"Ping Time (\xb5s)",width:30,type:c.UN.NUMBER}],[{key:"sat_sent",value:i.sat_sent,title:"Satoshis Sent",width:50,type:c.UN.NUMBER},{key:"sat_recv",value:i.sat_recv,title:"Satoshis Received",width:50,type:c.UN.NUMBER}],[{key:"bytes_sent",value:i.bytes_sent,title:"Bytes Sent",width:50,type:c.UN.NUMBER},{key:"bytes_recv",value:i.bytes_recv,title:"Bytes Received",width:50,type:c.UN.NUMBER}]]}}}))}onConnectPeer(){this.store.dispatch((0,I.xO)({payload:{data:{message:{peer:null,information:this.information,balance:this.availableBalance},component:tt}}}))}onOpenChannel(i){this.store.dispatch((0,I.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:i,information:this.information,balance:this.availableBalance},component:et}}}))}onPeerDetach(i){this.store.dispatch((0,I.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(i.alias?i.alias:i.pub_key),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[4])).subscribe(a=>{a&&this.store.dispatch((0,T.ed)({payload:{pubkey:i.pub_key}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.peers.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(i).toLowerCase();break;case"sync_type":a=this.camelCaseWithReplace.transform(i.sync_type||"","sync","_").trim().toLowerCase();break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"sync_type"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}loadPeersTable(i){this.peers=new u.I6(i?[...i]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.peers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU(L.il),e.rXU(_e.H),e.rXU($.h),e.rXU(J.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-peers"]],viewQuery:function(o,a){if(1&o&&(e.GBs(R.B4,5),e.GBs(G.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:E.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:G.xX,useValue:(0,c.on)("Peers")}])],decls:64,vars:19,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","pub_key"],["matColumnDef","address"],["matColumnDef","sync_type"],["matColumnDef","inbound"],["matColumnDef","bytes_sent"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","bytes_recv"],["matColumnDef","sat_sent"],["matColumnDef","sat_recv"],["matColumnDef","ping_time"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"button",3),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onConnectPeer())}),e.EFF(3,"Add Peer"),e.k0s()(),e.j41(4,"div",4)(5,"div",5)(6,"div",6),e.nrm(7,"fa-icon",7),e.j41(8,"span",8),e.EFF(9,"Connected Peers"),e.k0s()(),e.j41(10,"div",9)(11,"mat-form-field",10)(12,"mat-label"),e.EFF(13,"Filter By"),e.k0s(),e.j41(14,"mat-select",11),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.selFilterBy,m)||(a.selFilterBy=m),r.Njj(m)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(15,"perfect-scrollbar"),e.DNE(16,No,2,2,"mat-option",12),e.k0s()()(),e.j41(17,"mat-form-field",10)(18,"mat-label"),e.EFF(19,"Filter"),e.k0s(),e.j41(20,"input",13),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.selFilter,m)||(a.selFilter=m),r.Njj(m)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(21,"div",14),e.DNE(22,Po,1,0,"mat-progress-bar",15),e.j41(23,"table",16,0),e.qex(25,17),e.DNE(26,$o,2,0,"th",18)(27,Ao,4,4,"td",19),e.bVm(),e.qex(28,20),e.DNE(29,Mo,2,0,"th",18)(30,Bo,4,4,"td",19),e.bVm(),e.qex(31,21),e.DNE(32,Oo,2,0,"th",18)(33,Vo,4,4,"td",19),e.bVm(),e.qex(34,22),e.DNE(35,Yo,2,0,"th",18)(36,Xo,3,5,"td",19),e.bVm(),e.qex(37,23),e.DNE(38,Uo,2,0,"th",18)(39,Ho,2,1,"td",19),e.bVm(),e.qex(40,24),e.DNE(41,zo,2,0,"th",25)(42,qo,4,3,"td",19),e.bVm(),e.qex(43,26),e.DNE(44,Jo,2,0,"th",25)(45,Qo,4,3,"td",19),e.bVm(),e.qex(46,27),e.DNE(47,Wo,2,0,"th",25)(48,Zo,4,3,"td",19),e.bVm(),e.qex(49,28),e.DNE(50,Ko,2,0,"th",25)(51,el,4,3,"td",19),e.bVm(),e.qex(52,29),e.DNE(53,tl,5,0,"th",25)(54,nl,4,3,"td",19),e.bVm(),e.qex(55,30),e.DNE(56,il,6,0,"th",31)(57,al,10,0,"td",32),e.bVm(),e.qex(58,33),e.DNE(59,rl,4,3,"td",34),e.bVm(),e.DNE(60,cl,1,3,"tr",35)(61,pl,1,0,"tr",36)(62,ml,1,0,"tr",37),e.k0s()(),e.nrm(63,"mat-paginator",38),e.k0s()()}2&o&&(e.R7$(7),e.Y8G("icon",a.faUsers),e.R7$(7),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(15,wo).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.peers)("ngClass",e.eq3(16,jo,""!==a.errorMessage)),e.R7$(37),e.Y8G("matFooterRowDef",e.lJ4(18,Go)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("hidePageSize",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[_.YU,_.Sq,_.bT,_.B3,d.me,d.BC,d.vS,O.aY,N.$z,M.fg,C.rl,C.nJ,V.HM,f.DJ,f.sA,f.UI,j.PW,j.eI,E.VO,E.$2,X.wT,R.B4,R.aE,u.Zl,u.tL,u.ji,u.cC,u.YV,u.iL,u.Zq,u.xW,u.KS,u.$R,u.Qo,u.YZ,u.NB,u.iF,G.iy,B.ZF,B.Ld,_.QX,J.VD],encapsulation:2}))}return t(),s})();function dl(t,s){if(1&t&&(e.j41(0,"span",7),e.EFF(1,"Open"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numOpenChannels))}}function hl(t,s){if(1&t&&(e.j41(0,"span",7),e.EFF(1,"Pending"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numPendingChannels))}}function _l(t,s){if(1&t&&(e.j41(0,"span",7),e.EFF(1,"Closed"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numClosedChannels))}}function fl(t,s){if(1&t&&(e.j41(0,"span",7),e.EFF(1,"Active HTLCs"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numActiveHTLCs))}}let gl=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.store=o,this.router=a,this.numOpenChannels=0,this.numPendingChannels=0,this.numClosedChannels=0,this.numActiveHTLCs=0,this.peers=[],this.information={},this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending"},{link:"closed",name:"Closed"},{link:"activehtlcs",name:"Active HTLCs"}],this.activeLink=0,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.activeLink=this.links.findIndex(i=>i.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,U.p)(i=>i instanceof w.gx)).subscribe({next:i=>{this.activeLink=this.links.findIndex(o=>o.link===i.urlAfterRedirects.substring(i.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(F.pI).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(F.BM).pipe((0,g.Q)(this.unSubs[2])).subscribe(i=>{this.numOpenChannels=i.channels&&i.channels.length?i.channels.length:0,this.numActiveHTLCs=i.channels?.reduce((o,a)=>o+(a.pending_htlcs&&a.pending_htlcs.length>0?a.pending_htlcs.length:0),0),this.logger.info(i)}),this.store.select(F.Uv).pipe((0,g.Q)(this.unSubs[3])).subscribe(i=>{this.numPendingChannels=i.pendingChannelsSummary.total_channels?i.pendingChannelsSummary.total_channels:0}),this.store.select(F.Bw).pipe((0,g.Q)(this.unSubs[4])).subscribe(i=>{this.numClosedChannels=i.closedChannels&&i.closedChannels.length?i.closedChannels.length:0}),this.store.select(F.$7).pipe((0,g.Q)(this.unSubs[5])).subscribe(i=>{this.totalBalance=+(i.blockchainBalance.total_balance||0)}),this.store.select(F.os).pipe((0,g.Q)(this.unSubs[6])).subscribe(i=>{this.peers=i.peers,this.peers.forEach(o=>{(!o.alias||""===o.alias)&&(o.alias=o.pub_key?.substring(0,20))}),this.logger.info(i)})}onOpenChannel(){this.store.dispatch((0,I.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:et}}}))}onSelectedTabChange(i){this.router.navigateByUrl("/lnd/connections/channels/"+this.links[i.index].link)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU(L.il),e.rXU(w.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channels-tables"]],standalone:!1,decls:16,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"div",1)(2,"button",2),e.bIt("click",function(){return a.onOpenChannel()}),e.EFF(3,"Open Channel"),e.k0s()(),e.j41(4,"div",3)(5,"mat-tab-group",4),e.mxI("selectedIndexChange",function(p){return e.DH7(a.activeLink,p)||(a.activeLink=p),p}),e.bIt("selectedTabChange",function(p){return a.onSelectedTabChange(p)}),e.j41(6,"mat-tab"),e.DNE(7,dl,2,2,"ng-template",5),e.k0s(),e.j41(8,"mat-tab"),e.DNE(9,hl,2,2,"ng-template",5),e.k0s(),e.j41(10,"mat-tab"),e.DNE(11,_l,2,2,"ng-template",5),e.k0s(),e.j41(12,"mat-tab"),e.DNE(13,fl,2,2,"ng-template",5),e.k0s()(),e.j41(14,"div",6),e.nrm(15,"router-outlet"),e.k0s()()()),2&o&&(e.R7$(5),e.R50("selectedIndex",a.activeLink))},dependencies:[N.$z,f.DJ,f.sA,f.UI,Re.k,A.ES,A.mq,A.T8,w.n3],encapsulation:2}))}return t(),s})();var le=y(95416),be=y(29157);const Cl=t=>({"xs-scroll-y":t});function yl(t,s){if(1&t&&(e.j41(0,"div")(1,"div",10)(2,"div",19)(3,"h4",12),e.EFF(4,"Commit Fee"),e.k0s(),e.j41(5,"span",20),e.EFF(6),e.nI1(7,"number"),e.k0s()(),e.j41(8,"div",19)(9,"h4",12),e.EFF(10,"Commit Weight"),e.k0s(),e.j41(11,"span",20),e.EFF(12),e.nI1(13,"number"),e.k0s()(),e.j41(14,"div",19)(15,"h4",12),e.EFF(16,"Fee/KW"),e.k0s(),e.j41(17,"span",20),e.EFF(18),e.nI1(19,"number"),e.k0s()(),e.j41(20,"div",19)(21,"h4",12),e.EFF(22,"Static Remote Key"),e.k0s(),e.j41(23,"span",20),e.EFF(24),e.k0s()()(),e.nrm(25,"mat-divider",15),e.j41(26,"div",10)(27,"div",19)(28,"h4",12),e.EFF(29),e.k0s(),e.j41(30,"span",20),e.EFF(31),e.nI1(32,"number"),e.k0s()(),e.j41(33,"div",19)(34,"h4",12),e.EFF(35),e.k0s(),e.j41(36,"span",20),e.EFF(37),e.nI1(38,"number"),e.k0s()(),e.j41(39,"div",19)(40,"h4",12),e.EFF(41,"Unsettled Balance"),e.k0s(),e.j41(42,"span",20),e.EFF(43),e.nI1(44,"number"),e.k0s()(),e.j41(45,"div",19)(46,"h4",12),e.EFF(47,"CSV Delay"),e.k0s(),e.j41(48,"span",20),e.EFF(49),e.nI1(50,"number"),e.k0s()()(),e.nrm(51,"mat-divider",15),e.j41(52,"div",10)(53,"div",19)(54,"h4",12),e.EFF(55,"Local Reserve (Sats)"),e.k0s(),e.j41(56,"span",20),e.EFF(57),e.nI1(58,"number"),e.k0s()(),e.j41(59,"div",19)(60,"h4",12),e.EFF(61,"Remote Reserve (Sats)"),e.k0s(),e.j41(62,"span",20),e.EFF(63),e.nI1(64,"number"),e.k0s()(),e.j41(65,"div",19)(66,"h4",12),e.EFF(67,"Lifetime (Seconds)"),e.k0s(),e.j41(68,"span",20),e.EFF(69),e.nI1(70,"number"),e.k0s()(),e.j41(71,"div",19)(72,"h4",12),e.EFF(73,"Pending HTLCs"),e.k0s(),e.j41(74,"span",20),e.EFF(75),e.nI1(76,"number"),e.k0s()()(),e.nrm(77,"mat-divider",15),e.k0s()),2&t){const n=e.XpG();e.R7$(6),e.JRh(e.bMT(7,17,n.channel.commit_fee)),e.R7$(6),e.JRh(e.bMT(13,19,n.channel.commit_weight)),e.R7$(6),e.JRh(e.bMT(19,21,n.channel.fee_per_kw)),e.R7$(6),e.JRh(n.channel.static_remote_key?"Yes":"No"),e.R7$(),e.Y8G("inset",!0),e.R7$(4),e.JRh(n.screenSize===n.screenSizeEnum.XS?"Total Sats Sent":"Total Satoshis Sent"),e.R7$(2),e.JRh(e.bMT(32,23,n.channel.total_satoshis_sent)),e.R7$(4),e.JRh(n.screenSize===n.screenSizeEnum.XS?"Total Sats Recv":"Total Satoshis Received"),e.R7$(2),e.JRh(e.bMT(38,25,n.channel.total_satoshis_received)),e.R7$(6),e.JRh(e.bMT(44,27,n.channel.unsettled_balance)),e.R7$(6),e.JRh(e.bMT(50,29,n.channel.csv_delay)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(58,31,n.channel.local_chan_reserve_sat)),e.R7$(6),e.JRh(e.bMT(64,33,n.channel.remote_chan_reserve_sat)),e.R7$(6),e.JRh(e.bMT(70,35,n.channel.lifetime)),e.R7$(6),e.JRh(e.bMT(76,37,null==n.channel||null==n.channel.pending_htlcs?null:n.channel.pending_htlcs.length)),e.R7$(2),e.Y8G("inset",!0)}}function bl(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Show Advanced"),e.k0s())}function Fl(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Hide Advanced"),e.k0s())}function xl(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",27),e.bIt("copied",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onCopyChanID(o))}),e.EFF(1,"Copy Channel ID"),e.k0s()}if(2&t){const n=e.XpG();e.Y8G("payload",n.channel.chan_id)}}function vl(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",28),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onClose())}),e.EFF(1,"OK"),e.k0s()}}let we=(()=>{var t;class s{constructor(i,o,a,l,p,m){this.dialogRef=i,this.data=o,this.logger=a,this.commonService=l,this.snackBar=p,this.router=m,this.faReceipt=x.Mf0,this.faUpRightFromSquare=x.k02,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=c.f7}ngOnInit(){this.channel=this.data.channel,this.showCopy=!!this.data.showCopy,this.selNode=this.data.selNode,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(i){this.snackBar.open("Channel ID "+i+" copied."),this.logger.info("Copied Text: "+i)}onExplorerClicked(){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.channel.channel_point,"_blank")}onGoToLink(i,o){this.router.navigateByUrl("/lnd/graph/lookups",{state:{lookupType:i,lookupValue:o}}),this.onClose()}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Y.CP),e.rXU(Y.Vh),e.rXU(D.gP),e.rXU($.h),e.rXU(le.UG),e.rXU(w.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-information"]],standalone:!1,decls:95,vars:39,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],["tabindex","4","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["tabindex","5",1,"foreground-secondary-text"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["tabindex","6","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],["fxFlex","25"],[1,"overflow-wrap","foreground-secondary-text"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",1,"mt-1"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4),e.nrm(4,"fa-icon",5),e.j41(5,"span",6),e.EFF(6,"Channel Information"),e.k0s()(),e.j41(7,"button",7),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onClose())}),e.EFF(8,"X"),e.k0s()(),e.j41(9,"mat-card-content",8)(10,"div",9)(11,"div",10)(12,"div",11)(13,"h4",12),e.EFF(14,"Channel ID"),e.k0s(),e.j41(15,"span",13),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onGoToLink("1",a.channel.chan_id))}),e.EFF(16),e.k0s()(),e.j41(17,"div",11)(18,"h4",12),e.EFF(19,"Peer Alias"),e.k0s(),e.j41(20,"span",14),e.EFF(21),e.k0s()()(),e.nrm(22,"mat-divider",15),e.j41(23,"div",10)(24,"div",2)(25,"h4",12),e.EFF(26,"Channel Point"),e.k0s(),e.j41(27,"span",16),e.EFF(28),e.j41(29,"fa-icon",17),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onExplorerClicked())}),e.k0s()()()(),e.nrm(30,"mat-divider",15),e.j41(31,"div",10)(32,"div",2)(33,"h4",12),e.EFF(34,"Peer Public Key"),e.k0s(),e.j41(35,"span",18),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onGoToLink("0",a.channel.remote_pubkey))}),e.EFF(36),e.k0s()()(),e.nrm(37,"mat-divider",15),e.j41(38,"div",10)(39,"div",19)(40,"h4",12),e.EFF(41,"Local Balance"),e.k0s(),e.j41(42,"span",20),e.EFF(43),e.nI1(44,"number"),e.k0s()(),e.j41(45,"div",19)(46,"h4",12),e.EFF(47,"Remote Balance"),e.k0s(),e.j41(48,"span",20),e.EFF(49),e.nI1(50,"number"),e.k0s()(),e.j41(51,"div",19)(52,"h4",12),e.EFF(53,"Capacity"),e.k0s(),e.j41(54,"span",20),e.EFF(55),e.nI1(56,"number"),e.k0s()(),e.j41(57,"div",19)(58,"h4",12),e.EFF(59,"Uptime (Seconds)"),e.k0s(),e.j41(60,"span",20),e.EFF(61),e.nI1(62,"number"),e.k0s()()(),e.nrm(63,"mat-divider",15),e.j41(64,"div",10)(65,"div",19)(66,"h4",12),e.EFF(67,"Active"),e.k0s(),e.j41(68,"span",20),e.EFF(69),e.k0s()(),e.j41(70,"div",19)(71,"h4",12),e.EFF(72,"Private"),e.k0s(),e.j41(73,"span",20),e.EFF(74),e.k0s()(),e.j41(75,"div",19)(76,"h4",12),e.EFF(77,"Initiator"),e.k0s(),e.j41(78,"span",20),e.EFF(79),e.k0s()(),e.j41(80,"div",19)(81,"h4",12),e.EFF(82,"Number of Updates"),e.k0s(),e.j41(83,"span",20),e.EFF(84),e.nI1(85,"number"),e.k0s()()(),e.nrm(86,"mat-divider",15),e.DNE(87,yl,78,39,"div",21),e.j41(88,"div",22)(89,"button",23),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onShowAdvanced())}),e.DNE(90,bl,2,0,"p",24)(91,Fl,2,0,"ng-template",null,0,e.C5r),e.k0s(),e.DNE(93,xl,2,1,"button",25)(94,vl,2,0,"button",26),e.k0s()()()()()}if(2&o){const l=e.sdS(92);e.R7$(4),e.Y8G("icon",a.faReceipt),e.R7$(5),e.Y8G("ngClass",e.eq3(37,Cl,a.screenSize===a.screenSizeEnum.XS)),e.R7$(7),e.SpI(" ",a.channel.chan_id," "),e.R7$(5),e.JRh(a.channel.remote_alias),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.SpI(" ",a.channel.channel_point," "),e.R7$(),e.Y8G("matTooltip",e.mNQ("Link to "+a.selNode.settings.blockExplorerUrl))("icon",a.faUpRightFromSquare),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.SpI(" ",a.channel.remote_pubkey," "),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(44,27,a.channel.local_balance)),e.R7$(6),e.JRh(e.bMT(50,29,a.channel.remote_balance)),e.R7$(6),e.JRh(e.bMT(56,31,a.channel.capacity)),e.R7$(6),e.JRh(e.bMT(62,33,a.channel.uptime)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(a.channel.active?"Yes":"No"),e.R7$(5),e.JRh(a.channel.private?"Yes":"No"),e.R7$(5),e.JRh(a.channel.initiator?"Yes":"No"),e.R7$(5),e.JRh(e.bMT(85,35,a.channel.num_updates)),e.R7$(2),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngIf",a.showAdvanced),e.R7$(3),e.Y8G("ngIf",!a.showAdvanced)("ngIfElse",l),e.R7$(3),e.Y8G("ngIf",a.showCopy),e.R7$(),e.Y8G("ngIf",!a.showCopy)}},dependencies:[_.YU,_.bT,O.aY,N.$z,k.m2,k.MM,ne.q,f.DJ,f.sA,f.UI,j.PW,ee.oV,be.U,te.N,_.QX],encapsulation:2}))}return t(),s})();var je=y(7673),Ge=y(1001),Tl=y(16949);const fe=(t,s)=>({"small-svg":t,"large-svg":s});function kl(t,s){1&t&&e.eu8(0)}function Sl(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSwipe(o))}),r.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17)(12,"path",18)(13,"path",19)(14,"path",20)(15,"path",21)(16,"path",22)(17,"path",23)(18,"path",24)(19,"path",25)(20,"path",26)(21,"path",27)(22,"path",28)(23,"path",29)(24,"path",30)(25,"path",31)(26,"path",32)(27,"path",33)(28,"path",34)(29,"path",35)(30,"path",36)(31,"path",37)(32,"path",38)(33,"path",39)(34,"path",40)(35,"path",41)(36,"path",42)(37,"path",43)(38,"path",44)(39,"path",45)(40,"path",46),e.k0s(),r.joV(),e.j41(41,"div",47)(42,"mat-card-title"),e.EFF(43,"Circular rebalancing explained."),e.k0s()(),e.j41(44,"div",48)(45,"mat-card-subtitle",49),e.EFF(46," Circular payments are a completely off-chain rebalancing strategy where a node makes a payment to itself across a circular path of chained payment channels. "),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@sliderAnimation",n.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,fe,n.screenSize===n.screenSizeEnum.XS,n.screenSize!==n.screenSizeEnum.XS))}}function Rl(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSwipe(o))}),r.qSk(),e.j41(1,"svg",51),e.nrm(2,"path",52)(3,"path",53)(4,"path",54)(5,"path",55)(6,"path",56)(7,"path",57)(8,"path",58)(9,"path",59)(10,"path",60)(11,"path",61)(12,"path",62)(13,"path",63)(14,"path",64)(15,"path",65)(16,"path",66)(17,"path",67)(18,"path",68)(19,"path",69)(20,"path",70)(21,"path",71)(22,"path",72)(23,"path",73)(24,"path",74)(25,"path",75)(26,"path",76)(27,"path",77)(28,"path",78)(29,"path",79)(30,"path",80)(31,"path",81)(32,"path",82)(33,"path",52)(34,"path",53)(35,"path",54)(36,"path",55)(37,"path",56)(38,"path",57)(39,"path",58)(40,"path",59)(41,"path",60)(42,"path",83)(43,"path",84)(44,"path",63)(45,"path",85)(46,"path",86)(47,"path",87)(48,"path",67)(49,"path",68)(50,"path",69)(51,"path",70)(52,"path",71)(53,"path",72)(54,"path",73)(55,"path",74)(56,"path",75)(57,"path",76)(58,"path",77)(59,"path",78)(60,"path",79)(61,"path",80)(62,"path",88)(63,"path",82)(64,"path",89),e.j41(65,"defs")(66,"linearGradient",90),e.nrm(67,"stop",91)(68,"stop",92)(69,"stop",93),e.k0s(),e.j41(70,"linearGradient",94),e.nrm(71,"stop",91)(72,"stop",92)(73,"stop",93),e.k0s(),e.j41(74,"linearGradient",95),e.nrm(75,"stop",91)(76,"stop",92)(77,"stop",93),e.k0s(),e.j41(78,"linearGradient",96),e.nrm(79,"stop",91)(80,"stop",92)(81,"stop",93),e.k0s(),e.j41(82,"linearGradient",97),e.nrm(83,"stop",91)(84,"stop",92)(85,"stop",93),e.k0s(),e.j41(86,"linearGradient",98),e.nrm(87,"stop",91)(88,"stop",92)(89,"stop",93),e.k0s()()(),r.joV(),e.j41(90,"div",47)(91,"mat-card-title"),e.EFF(92,"Step 1: Unbalanced channel"),e.k0s()(),e.j41(93,"div",48)(94,"mat-card-subtitle",49),e.EFF(95," It starts with an unbalanced channel, that needs to be rebalanced in order to continue to route payments. "),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@sliderAnimation",n.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,fe,n.screenSize===n.screenSizeEnum.XS,n.screenSize!==n.screenSizeEnum.XS))}}function El(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSwipe(o))}),r.qSk(),e.j41(1,"svg",99),e.nrm(2,"path",100)(3,"path",101)(4,"path",102)(5,"path",103)(6,"path",104)(7,"path",105)(8,"path",106)(9,"path",107)(10,"path",108)(11,"path",109)(12,"path",110)(13,"path",111)(14,"path",112)(15,"path",113)(16,"path",114)(17,"path",52)(18,"path",115)(19,"path",116)(20,"path",117)(21,"path",118)(22,"path",119)(23,"path",120)(24,"path",121)(25,"path",122)(26,"path",83)(27,"path",84)(28,"path",123)(29,"path",124)(30,"path",125)(31,"path",126)(32,"path",67)(33,"path",127)(34,"path",128)(35,"path",129)(36,"path",130)(37,"path",131)(38,"path",132)(39,"path",74)(40,"path",75)(41,"path",133)(42,"path",77)(43,"path",78)(44,"path",79)(45,"path",80)(46,"path",134)(47,"path",135)(48,"path",136),e.j41(49,"defs")(50,"linearGradient",137),e.nrm(51,"stop",91)(52,"stop",92)(53,"stop",93),e.k0s(),e.j41(54,"linearGradient",138),e.nrm(55,"stop",91)(56,"stop",92)(57,"stop",93),e.k0s(),e.j41(58,"linearGradient",139),e.nrm(59,"stop",91)(60,"stop",92)(61,"stop",93),e.k0s()()(),r.joV(),e.j41(62,"div",47)(63,"mat-card-title"),e.EFF(64,"Step 2: Invoice/Payment"),e.k0s()(),e.j41(65,"div",48)(66,"mat-card-subtitle",49),e.EFF(67," All you have to do is make a payment to yourself in a favorable direction by generating and paying an invoice. This is taken care automatically by your node. "),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@sliderAnimation",n.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,fe,n.screenSize===n.screenSizeEnum.XS,n.screenSize!==n.screenSizeEnum.XS))}}function Il(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSwipe(o))}),r.qSk(),e.j41(1,"svg",140),e.nrm(2,"path",141)(3,"path",142)(4,"path",143)(5,"path",144)(6,"path",145)(7,"path",146)(8,"path",147)(9,"path",148)(10,"path",149)(11,"path",150)(12,"path",151)(13,"path",152)(14,"path",153)(15,"path",154)(16,"path",155)(17,"path",156)(18,"path",157)(19,"path",158)(20,"path",159)(21,"path",160)(22,"path",161)(23,"path",162)(24,"path",163)(25,"path",164)(26,"path",163)(27,"path",165)(28,"path",166)(29,"path",167)(30,"path",168)(31,"path",169)(32,"path",170)(33,"path",171)(34,"path",172)(35,"path",173)(36,"path",174)(37,"path",175)(38,"path",176)(39,"path",177)(40,"path",178)(41,"path",179),e.j41(42,"defs")(43,"linearGradient",180),e.nrm(44,"stop",91)(45,"stop",92)(46,"stop",93),e.k0s()()(),r.joV(),e.j41(47,"div",47)(48,"mat-card-title"),e.EFF(49,"Step 3: Rebalance amount"),e.k0s()(),e.j41(50,"div",48)(51,"mat-card-subtitle",49),e.EFF(52," You will be moving part or all of the local balance to the remote side. For the route to be circular, there should be at least 3 nodes involved. "),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@sliderAnimation",n.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,fe,n.screenSize===n.screenSizeEnum.XS,n.screenSize!==n.screenSizeEnum.XS))}}function Ll(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSwipe(o))}),r.qSk(),e.j41(1,"svg",140),e.nrm(2,"path",181)(3,"path",143)(4,"path",182)(5,"path",145)(6,"path",146)(7,"path",183)(8,"path",148)(9,"path",184)(10,"path",185)(11,"path",186)(12,"path",187)(13,"path",188)(14,"path",189)(15,"path",190)(16,"path",191)(17,"path",192)(18,"path",158)(19,"path",193)(20,"path",194)(21,"path",179)(22,"path",160)(23,"path",161)(24,"path",195)(25,"path",163)(26,"path",164)(27,"path",163)(28,"path",165)(29,"path",166)(30,"path",167)(31,"path",168)(32,"path",196)(33,"path",170)(34,"path",197)(35,"path",172)(36,"path",173)(37,"path",174)(38,"path",175)(39,"path",176)(40,"path",198),e.j41(41,"defs")(42,"linearGradient",199),e.nrm(43,"stop",91)(44,"stop",92)(45,"stop",93),e.k0s()()(),r.joV(),e.j41(46,"div",47)(47,"mat-card-title"),e.EFF(48,"Rebalance successful!"),e.k0s()(),e.j41(49,"div",48)(50,"mat-card-subtitle",49),e.EFF(51," Your channel is successfully rebalanced and is able to continue to route payments. "),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@sliderAnimation",n.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,fe,n.screenSize===n.screenSizeEnum.XS,n.screenSize!==n.screenSizeEnum.XS))}}let wl=(()=>{var t;class s{constructor(i){this.commonService=i,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.bkB,this.screenSize="",this.screenSizeEnum=c.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(i){2===i.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===i.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU($.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-rebalance-infographics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["infoStepBlock1",""],["infoStepBlock2",""],["infoStepBlock3",""],["infoStepBlock4",""],["infoStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between starts",3,"swipe"],["fxFlex","30","viewBox","0 0 246 154","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M187.8 136C203.043 136 215.4 133.493 215.4 130.4C215.4 127.307 203.043 124.8 187.8 124.8C172.557 124.8 160.2 127.307 160.2 130.4C160.2 133.493 172.557 136 187.8 136Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M128.6 148.8C143.843 148.8 156.2 146.293 156.2 143.2C156.2 140.107 143.843 137.6 128.6 137.6C113.357 137.6 101 140.107 101 143.2C101 146.293 113.357 148.8 128.6 148.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["opacity","0.1","d","M100.2 117.421C100.2 117.421 99.0633 117.494 99.4998 117.722C99.9363 117.95 100.2 117.421 100.2 117.421Z","fill","black"],["opacity","0.1","d","M101 118.4C100.986 118.471 98.1102 119.483 98.673 119.933C99.2358 120.384 101 118.4 101 118.4Z","fill","black"],["opacity","0.1","d","M97.8 128.98C98.0492 128.966 100.509 128.241 101 128.89L97.8 128.98Z","fill","black"],["opacity","0.1","d","M100.2 129.709C100.2 129.709 100.563 129.362 100.926 129.543C101.289 129.725 100.2 129.709 100.2 129.709Z","fill","black"],["opacity","0.1","d","M101.8 132C101.8 132 101.641 133.198 101 133.6L101.8 132Z","fill","black"],["d","M119.223 21.4239L123.102 22.0818L118.209 50.9111L114.33 50.2532L119.223 21.4239Z",1,"fill-color-primary-darker"],["d","M127.4 137.844L128.262 144L129 137.6L127.4 137.844Z",1,"fill-color-29"],["d","M100.2 134.349V138.226L101 141.6H101.571L102.258 137.976L102.6 133.6L100.2 134.349Z",1,"fill-color-28"],["d","M110.75 50.4L104.806 87.6521C104.806 87.6521 96.0162 127.358 99.3581 135.2H103.57L116.2 58.9791L110.75 50.4Z",1,"fill-color-29"],["d","M125.308 45.6L129.979 83.02C129.979 83.02 133.381 130.691 129.656 138.4H125.976L119.4 53.9698L125.308 45.6Z",1,"fill-color-29"],["d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z","fill","black"],["d","M112.922 39.2661C113.364 37.7699 114.731 36.7605 116.259 36.8012C118.804 36.8682 122.74 37.3423 124.787 39.4927C127.969 42.8316 122.638 54.0832 122.638 54.0832C122.638 54.0832 117.661 63.4872 113.092 51.5396C113.092 51.5327 111.203 45.1393 112.922 39.2661Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M131.383 131.52C131.69 131.628 131.968 131.791 132.2 132C131.813 131.613 130.708 131.42 130.166 131.24C129.495 131.019 128.764 130.793 128.2 130.4C129.29 130.705 130.354 131.079 131.383 131.52Z","fill","black"],["opacity","0.1","d","M94.2 24.8C96.1882 24.8 97.8 23.1882 97.8 21.2C97.8 19.2118 96.1882 17.6 94.2 17.6C92.2117 17.6 90.6 19.2118 90.6 21.2C90.6 23.1882 92.2117 24.8 94.2 24.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M107 12C110.314 12 113 9.31371 113 6C113 2.68629 110.314 0 107 0C103.686 0 101 2.68629 101 6C101 9.31371 103.686 12 107 12Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M99 40.8C102.314 40.8 105 38.1137 105 34.8C105 31.4863 102.314 28.8 99 28.8C95.6863 28.8 93 31.4863 93 34.8C93 38.1137 95.6863 40.8 99 40.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M223 67.2C224.988 67.2 226.6 65.5882 226.6 63.6C226.6 61.6118 224.988 60 223 60C221.012 60 219.4 61.6118 219.4 63.6C219.4 65.5882 221.012 67.2 223 67.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M210.2 54.4C213.514 54.4 216.2 51.7137 216.2 48.4C216.2 45.0863 213.514 42.4 210.2 42.4C206.886 42.4 204.2 45.0863 204.2 48.4C204.2 51.7137 206.886 54.4 210.2 54.4Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M218.2 83.2C221.514 83.2 224.2 80.5137 224.2 77.2C224.2 73.8863 221.514 71.2 218.2 71.2C214.886 71.2 212.2 73.8863 212.2 77.2C212.2 80.5137 214.886 83.2 218.2 83.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M23.8 72C24.9046 72 25.8 71.1046 25.8 70C25.8 68.8954 24.9046 68 23.8 68C22.6954 68 21.8 68.8954 21.8 70C21.8 71.1046 22.6954 72 23.8 72Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M33 65.6C34.7673 65.6 36.2 64.1673 36.2 62.4C36.2 60.6327 34.7673 59.2 33 59.2C31.2327 59.2 29.8 60.6327 29.8 62.4C29.8 64.1673 31.2327 65.6 33 65.6Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M17 71.2C18.7673 71.2 20.2 69.7673 20.2 68C20.2 66.2327 18.7673 64.8 17 64.8C15.2327 64.8 13.8 66.2327 13.8 68C13.8 69.7673 15.2327 71.2 17 71.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M171.8 60C172.905 60 173.8 59.1046 173.8 58C173.8 56.8954 172.905 56 171.8 56C170.695 56 169.8 56.8954 169.8 58C169.8 59.1046 170.695 60 171.8 60Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M180.2 53.6C181.967 53.6 183.4 52.1673 183.4 50.4C183.4 48.6327 181.967 47.2 180.2 47.2C178.433 47.2 177 48.6327 177 50.4C177 52.1673 178.433 53.6 180.2 53.6Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M164.2 59.2C165.967 59.2 167.4 57.7673 167.4 56C167.4 54.2327 165.967 52.8 164.2 52.8C162.433 52.8 161 54.2327 161 56C161 57.7673 162.433 59.2 164.2 59.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M51 40.8C55.6392 40.8 59.4 37.0392 59.4 32.4C59.4 27.7608 55.6392 24 51 24C46.3608 24 42.6 27.7608 42.6 32.4C42.6 37.0392 46.3608 40.8 51 40.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M98.6 64.8C101.251 64.8 103.4 62.651 103.4 60C103.4 57.349 101.251 55.2 98.6 55.2C95.949 55.2 93.8 57.349 93.8 60C93.8 62.651 95.949 64.8 98.6 64.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M145.8 96.8C148.451 96.8 150.6 94.651 150.6 92C150.6 89.349 148.451 87.2 145.8 87.2C143.149 87.2 141 89.349 141 92C141 94.651 143.149 96.8 145.8 96.8Z",1,"fill-color-primary-darker"],["fill-rule","evenodd","clip-rule","evenodd","d","M59.8 136.8C75.0431 136.8 87.4 134.293 87.4 131.2C87.4 128.107 75.0431 125.6 59.8 125.6C44.557 125.6 32.2 128.107 32.2 131.2C32.2 134.293 44.557 136.8 59.8 136.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M217.4 152.8C232.643 152.8 245 150.293 245 147.2C245 144.107 232.643 141.6 217.4 141.6C202.157 141.6 189.8 144.107 189.8 147.2C189.8 150.293 202.157 152.8 217.4 152.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M28.6 152.8C43.8431 152.8 56.2 150.293 56.2 147.2C56.2 144.107 43.8431 141.6 28.6 141.6C13.3569 141.6 1 144.107 1 147.2C1 150.293 13.3569 152.8 28.6 152.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["d","M122.425 44.7H119.162L120.372 41.0719C120.484 40.6219 120.147 40.2 119.725 40.2H115.675C115.337 40.2 115.028 40.4531 115 40.7906L114.1 47.5406C114.044 47.9625 114.353 48.3 114.775 48.3H118.094L116.8 53.7844C116.716 54.2063 117.025 54.6 117.447 54.6C117.7 54.6 117.925 54.4875 118.037 54.2625L122.987 45.7125C123.269 45.2906 122.931 44.7 122.425 44.7Z","fill","white"],["d","M23.5204 123.2C23.0498 123.2 22.6141 123.375 22.2807 123.669C21.9491 123.96 21.7189 124.369 21.6565 124.837L20.2164 135.712C20.1423 136.278 20.3237 136.811 20.6643 137.203C21.0076 137.598 21.5119 137.85 22.0804 137.85H26.4117L24.5687 145.68C24.4289 146.274 24.5836 146.851 24.9204 147.28C25.2626 147.716 25.7931 148 26.3959 148C26.7289 148 27.0539 147.911 27.3385 147.746C27.616 147.585 27.8553 147.351 28.0254 147.055L35.9453 133.28C36.3068 132.658 36.2644 131.95 35.9495 131.398C35.7868 131.113 35.551 130.871 35.2622 130.703C34.9905 130.544 34.6717 130.45 34.3203 130.45H30.1609L31.7043 124.49C31.5476 124.305 31.4051 124.176 31.278 124.085C31.004 123.89 30.5348 123.687 29.7238 123.539C28.6009 123.335 26.6977 123.2 23.5204 123.2Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M185.5 109.6C185.075 109.6 184.682 109.757 184.381 110.02C184.08 110.284 183.872 110.652 183.815 111.073L182.615 120.074C182.548 120.585 182.712 121.066 183.021 121.419C183.331 121.774 183.787 122 184.3 122H187.74L186.244 128.309C186.117 128.846 186.258 129.366 186.564 129.753C186.873 130.145 187.352 130.4 187.897 130.4C188.505 130.4 189.084 130.074 189.391 129.512L195.745 115.6H191.208L192.467 110.771C192.308 110.576 192.165 110.445 192.04 110.357C191.803 110.189 191.397 110.01 190.693 109.883C189.753 109.713 188.16 109.6 185.5 109.6Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M215.1 128C214.675 128 214.282 128.157 213.981 128.42C213.68 128.683 213.472 129.052 213.415 129.473L212.215 138.474C212.148 138.985 212.312 139.466 212.621 139.819C212.931 140.174 213.387 140.4 213.9 140.4H217.34L215.844 146.709C215.717 147.246 215.858 147.766 216.164 148.153C216.473 148.545 216.952 148.8 217.497 148.8C218.105 148.8 218.684 148.474 218.991 147.912L225.345 134H220.808L222.067 129.171C221.908 128.976 221.765 128.845 221.64 128.757C221.403 128.589 220.997 128.41 220.293 128.283C219.353 128.113 217.76 128 215.1 128Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M55.9003 111.2C55.4754 111.2 55.0822 111.357 54.7812 111.62C54.4802 111.883 54.2716 112.252 54.215 112.673L53.0149 121.674C52.9475 122.185 53.112 122.666 53.4214 123.019C53.7314 123.374 54.1868 123.6 54.7004 123.6H58.1398L56.6444 129.909C56.5174 130.446 56.6576 130.966 56.9637 131.353C57.2728 131.745 57.7518 132 58.2966 132C58.9052 132 59.4843 131.674 59.7907 131.112L66.1452 117.2H61.6081L62.8674 112.371C62.7082 112.176 62.5651 112.045 62.4402 111.957C62.2025 111.789 61.7969 111.61 61.0927 111.483C60.1529 111.313 58.5599 111.2 55.9003 111.2Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 210 124","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M90.1491 0H0V100.616H90.1491V0Z",1,"fill-color-10"],["d","M88.6575 67.1775H1.48926V98.4248H88.6575V67.1775Z","fill","white"],["d","M59.844 74.5891H8.64404V90.6009H59.844V74.5891Z",1,"fill-color-primary-darker"],["d","M76.3172 90.6426C80.8187 90.6426 84.4679 86.9934 84.4679 82.4919C84.4679 77.9904 80.8187 74.3412 76.3172 74.3412C71.8157 74.3412 68.1665 77.9904 68.1665 82.4919C68.1665 86.9934 71.8157 90.6426 76.3172 90.6426Z",1,"fill-color-primary-darker"],["d","M88.6575 34.7129H1.48926V65.9602H88.6575V34.7129Z","fill","white"],["d","M59.844 42.1244H8.64404V58.1363H59.844V42.1244Z",1,"fill-color-primary-darker"],["d","M76.3172 58.1801C80.8187 58.1801 84.4679 54.5309 84.4679 50.0294C84.4679 45.5279 80.8187 41.8787 76.3172 41.8787C71.8157 41.8787 68.1665 45.5279 68.1665 50.0294C68.1665 54.5309 71.8157 58.1801 76.3172 58.1801Z",1,"fill-color-primary-darker"],["d","M88.6575 2.24823H1.48926V33.4955H88.6575V2.24823Z","fill","white"],["d","M59.844 9.66199H8.64404V25.6739H59.844V9.66199Z",1,"fill-color-primary-darker"],["d","M32.644 74.5891H8.64404V90.6009H32.644V74.5891Z",1,"fill-color-17"],["d","M45.444 42.1244H8.64404V58.1363H45.444V42.1244Z",1,"fill-color-17"],["d","M59.644 9.66199H8.64404V25.662H59.644V9.66199Z",1,"fill-color-17"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint0_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint2_linear)"],["d","M76.1507 25.3014C80.6522 25.3014 84.3014 21.6522 84.3014 17.1507C84.3014 12.6492 80.6522 9 76.1507 9C71.6492 9 68 12.6492 68 17.1507C68 21.6522 71.6492 25.3014 76.1507 25.3014Z",1,"fill-color-17"],["d","M193.435 36.7899H142.709V35.7444H119.709V36.7899H68.7744C67.8644 36.7899 66.9917 37.1514 66.3482 37.7949C65.7048 38.4384 65.3433 39.3111 65.3433 40.2211V109.679C65.3433 110.589 65.7048 111.462 66.3482 112.106C66.9917 112.749 67.8644 113.111 68.7744 113.111H193.435C195.33 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.345 36.7899 193.435 36.7899Z",1,"fill-color-19"],["d","M192.266 42.8538H69.9434V111.856H192.266V42.8538Z",1,"fill-color-22"],["opacity","0.1","d","M157.284 111.856H69.9434V42.8538L157.284 111.856Z","fill","black"],["d","M89.0832 106.693C95.577 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.577 83.1766 89.0832 83.1766C82.5894 83.1766 77.3252 88.4408 77.3252 94.9346C77.3252 101.428 82.5894 106.693 89.0832 106.693Z",1,"fill-color-25"],["d","M91.7005 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7005 103.772ZM91.7005 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7005 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7005 74.7115Z",1,"fill-color-28"],["d","M170.967 80.0673H159.541V82.4548H170.967V80.0673Z",1,"fill-color-19"],["d","M184.781 61.4783H145.727V62.5015H184.781V61.4783Z",1,"fill-color-19"],["d","M184.781 64.7186H145.727V65.7418H184.781V64.7186Z",1,"fill-color-19"],["d","M184.781 67.9589H145.727V68.9821H184.781V67.9589Z",1,"fill-color-19"],["d","M184.781 71.1991H145.727V72.2224H184.781V71.1991Z",1,"fill-color-19"],["d","M184.781 74.4394H145.727V75.4626H184.781V74.4394Z",1,"fill-color-19"],["d","M184.781 44.2537H180.006V49.0288H184.781V44.2537Z",1,"fill-color-25"],["d","M186.998 51.2458H181.2V45.4474H186.998V51.2458ZM181.452 50.9937H186.746V45.6996H181.452V50.9937Z",1,"fill-color-19"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.115C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.261 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.042 109.589 156.01 109.621C155.978 109.653 155.96 109.696 155.96 109.741V110.601H153.402V109.741C153.402 109.696 153.384 109.653 153.352 109.621C153.32 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.089 109.589 114.057 109.621C114.025 109.653 114.007 109.696 114.007 109.741V110.601H111.449V109.741C111.449 109.696 111.431 109.653 111.399 109.621C111.367 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.148 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.4642V109.741C97.4642 109.696 97.4462 109.653 97.4142 109.621C97.3822 109.589 97.3388 109.571 97.2936 109.571H93.2006C93.1554 109.571 93.112 109.589 93.08 109.621C93.048 109.653 93.0301 109.696 93.0301 109.741V110.601H90.472V109.741C90.472 109.696 90.454 109.653 90.422 109.621C90.39 109.589 90.3467 109.571 90.3014 109.571H86.2085C86.1632 109.571 86.1198 109.589 86.0879 109.621C86.0559 109.653 86.0379 109.696 86.0379 109.741V110.601H83.4798V109.741C83.4798 109.696 83.4618 109.653 83.4299 109.621C83.3979 109.589 83.3545 109.571 83.3093 109.571H79.2163C79.171 109.571 79.1277 109.589 79.0957 109.621C79.0637 109.653 79.0457 109.696 79.0457 109.741V110.601H76.4876V109.741C76.4876 109.696 76.4697 109.653 76.4377 109.621C76.4057 109.589 76.3623 109.571 76.3171 109.571H72.2241C72.1789 109.571 72.1355 109.589 72.1035 109.621C72.0715 109.653 72.0536 109.696 72.0536 109.741V110.601H64.2087C61.9482 110.601 60.1157 112.434 60.1157 114.694V116.545C60.1157 118.806 61.9482 120.638 64.2087 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z",1,"fill-color-19"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8456 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9773 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1718L88.0762 87.0663C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5347 96.5996L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z",1,"fill-color-21"],["d","M42 75H9V91H42V75Z",1,"fill-color-17"],["d","M42 42H9V58H42V42Z",1,"fill-color-17"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint3_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint4_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint5_linear)"],["d","M205.185 113.031H193.247V112.171C193.247 112.125 193.229 112.082 193.197 112.05C193.165 112.018 193.121 112 193.076 112H188.983C188.938 112 188.895 112.018 188.863 112.05C188.831 112.082 188.813 112.125 188.813 112.171V113.031H186.254V112.171C186.254 112.125 186.237 112.082 186.205 112.05C186.173 112.018 186.129 112 186.084 112H181.991C181.946 112 181.902 112.018 181.87 112.05C181.838 112.082 181.82 112.125 181.82 112.171V113.031H179.262V112.171C179.262 112.125 179.244 112.082 179.212 112.05C179.18 112.018 179.137 112 179.092 112H174.999C174.954 112 174.91 112.018 174.878 112.05C174.846 112.082 174.828 112.125 174.828 112.171V113.031H172.27V112.171C172.27 112.125 172.252 112.082 172.22 112.05C172.188 112.018 172.145 112 172.1 112H168.007C167.961 112 167.918 112.018 167.886 112.05C167.854 112.082 167.836 112.125 167.836 112.171V113.031H165.278V112.171C165.278 112.125 165.26 112.082 165.228 112.05C165.196 112.018 165.153 112 165.107 112H161.014C160.969 112 160.926 112.018 160.894 112.05C160.862 112.082 160.844 112.125 160.844 112.171V113.031H158.286V112.171C158.286 112.125 158.268 112.082 158.236 112.05C158.204 112.018 158.16 112 158.115 112H154.022C153.977 112 153.934 112.018 153.902 112.05C153.87 112.082 153.852 112.125 153.852 112.171V113.031H151.294V112.171C151.294 112.125 151.276 112.082 151.244 112.05C151.212 112.018 151.168 112 151.123 112H119.061C119.016 112 118.973 112.018 118.941 112.05C118.909 112.082 118.891 112.125 118.891 112.171V113.031H116.333V112.171C116.333 112.125 116.315 112.082 116.283 112.05C116.251 112.018 116.207 112 116.162 112H112.069C112.024 112 111.981 112.018 111.949 112.05C111.917 112.082 111.899 112.125 111.899 112.171V113.031H109.341V112.171C109.341 112.125 109.323 112.082 109.291 112.05C109.259 112.018 109.215 112 109.17 112H105.077C105.032 112 104.988 112.018 104.956 112.05C104.924 112.082 104.907 112.125 104.907 112.171V113.031H102.348V112.171C102.348 112.125 102.33 112.082 102.298 112.05C102.266 112.018 102.223 112 102.178 112H98.0849C98.0397 112 97.9963 112.018 97.9643 112.05C97.9323 112.082 97.9144 112.125 97.9144 112.171V113.031H95.3563V112.171C95.3563 112.125 95.3383 112.082 95.3063 112.05C95.2743 112.018 95.2309 112 95.1857 112H91.0927C91.0475 112 91.0041 112.018 90.9721 112.05C90.9402 112.082 90.9222 112.125 90.9222 112.171V113.031H88.3641V112.171C88.3641 112.125 88.3461 112.082 88.3141 112.05C88.2822 112.018 88.2388 112 88.1935 112H84.1006C84.0553 112 84.0119 112.018 83.98 112.05C83.948 112.082 83.93 112.125 83.93 112.171V113.031H81.3719V112.171C81.3719 112.125 81.3539 112.082 81.322 112.05C81.29 112.018 81.2466 112 81.2014 112H77.1084C77.0632 112 77.0198 112.018 76.9878 112.05C76.9558 112.082 76.9378 112.125 76.9379 112.171V113.031H69.093C66.8325 113.031 65 114.863 65 117.124V118.974C65 121.235 66.8325 123.067 69.093 123.067H205.185C207.445 123.067 209.277 121.235 209.277 118.974V117.124C209.277 114.863 207.445 113.031 205.185 113.031Z",1,"fill-color-19"],["d","M78.375 20.625C78.375 19.5938 77.5312 18.75 76.5 18.75C75.4453 18.75 74.625 19.5938 74.625 20.625C74.625 21.6797 75.4453 22.5 76.5 22.5C77.5312 22.5 78.375 21.6797 78.375 20.625ZM74.8359 11.1094L75.1406 17.4844C75.1641 17.7656 75.4219 18 75.7031 18H77.2734C77.5547 18 77.8125 17.7656 77.8359 17.4844L78.1406 11.1094C78.1641 10.7812 77.9062 10.5 77.5781 10.5H75.3984C75.0703 10.5 74.8125 10.7812 74.8359 11.1094Z","fill","white"],["id","paint0_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["stop-color","#808080","stop-opacity","0.25"],["offset","0.54","stop-color","#808080","stop-opacity","0.12"],["offset","1","stop-color","#808080","stop-opacity","0.1"],["id","paint1_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["id","paint3_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["id","paint4_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint5_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 370 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M327.488 99.9755C350.953 99.9755 369.975 80.9531 369.975 57.4877C369.975 34.0224 350.953 15 327.488 15C304.022 15 285 34.0224 285 57.4877C285 80.9531 304.022 99.9755 327.488 99.9755Z",1,"fill-color-25"],["d","M115.068 85.6077H349.8V86.5722H113L115.068 85.6077Z",1,"fill-color-19"],["d","M236.776 84.376H226.024V91.544H236.776V84.376Z",1,"fill-color-primary-lighter"],["d","M218.856 87.96H233.192V79H218.856V87.96ZM232.569 87.5704H219.479V79.3896H232.569V87.5704Z",1,"fill-color-19"],["d","M265 57.3624H357.392V120.307H265V57.3624Z",1,"fill-color-22"],["d","M362.545 50H271.626C271.016 50.0009 270.521 50.495 270.521 51.1048V112.577C270.521 112.87 270.638 113.151 270.845 113.358C271.052 113.565 271.333 113.681 271.626 113.681H362.545C362.838 113.681 363.119 113.565 363.326 113.358C363.533 113.151 363.65 112.87 363.65 112.577V51.1048C363.65 50.495 363.155 50.0009 362.545 50ZM362.913 112.577C362.913 112.674 362.875 112.768 362.806 112.837C362.736 112.907 362.643 112.945 362.545 112.945H271.626C271.528 112.945 271.434 112.907 271.365 112.837C271.296 112.768 271.258 112.674 271.258 112.577V51.1048C271.258 50.9015 271.423 50.7365 271.626 50.7365H362.545C362.748 50.7365 362.913 50.9015 362.913 51.1048V112.577Z",1,"fill-color-19"],["d","M316.364 93.4359H275.844C275.547 93.4359 275.307 93.6766 275.307 93.9735V97.6835C275.307 97.9804 275.547 98.2211 275.844 98.2211H316.364C316.661 98.2211 316.901 97.9804 316.901 97.6835V93.9735C316.901 93.6766 316.661 93.4359 316.364 93.4359Z",1,"fill-color-19"],["d","M354.814 89.3873H341.565C341.272 89.3873 340.991 89.5036 340.784 89.7108C340.577 89.918 340.46 90.199 340.46 90.492V100.798C340.46 101.091 340.577 101.372 340.784 101.579C340.991 101.786 341.272 101.903 341.565 101.903H354.814C355.107 101.903 355.388 101.786 355.595 101.579C355.803 101.372 355.919 101.091 355.919 100.798V90.492C355.919 90.199 355.803 89.918 355.595 89.7108C355.388 89.5036 355.107 89.3873 354.814 89.3873ZM355.182 100.798C355.182 101.001 355.017 101.166 354.814 101.166H341.565C341.362 101.166 341.197 101.001 341.197 100.798V90.492C341.196 90.3943 341.235 90.3004 341.304 90.2313C341.373 90.1622 341.467 90.1235 341.565 90.1238H354.814C354.912 90.1235 355.006 90.1622 355.075 90.2313C355.144 90.3004 355.183 90.3943 355.182 90.492V100.798Z",1,"fill-color-19"],["d","M352.168 91.7653H344.211C343.914 91.7653 343.673 92.006 343.673 92.3029V93.0965C343.673 93.3934 343.914 93.6341 344.211 93.6341H352.168C352.465 93.6341 352.706 93.3934 352.706 93.0965V92.3029C352.706 92.006 352.465 91.7653 352.168 91.7653Z",1,"fill-color-19"],["d","M352.168 94.71H344.211C343.914 94.71 343.673 94.9507 343.673 95.2476V96.0412C343.673 96.3381 343.914 96.5788 344.211 96.5788H352.168C352.465 96.5788 352.706 96.3381 352.706 96.0412V95.2476C352.706 94.9507 352.465 94.71 352.168 94.71Z",1,"fill-color-19"],["d","M352.168 97.6548H344.211C343.914 97.6548 343.673 97.8955 343.673 98.1924V98.986C343.673 99.2829 343.914 99.5236 344.211 99.5236H352.168C352.465 99.5236 352.706 99.2829 352.706 98.986V98.1924C352.706 97.8955 352.465 97.6548 352.168 97.6548Z",1,"fill-color-19"],["d","M295.014 54.4177H276.949C276.652 54.4177 276.411 54.6584 276.411 54.9553V61.9782C276.411 62.2752 276.652 62.5158 276.949 62.5158H295.014C295.311 62.5158 295.552 62.2752 295.552 61.9782V54.9553C295.552 54.6584 295.311 54.4177 295.014 54.4177Z",1,"fill-color-19"],["d","M312.293 105.198C319.455 105.198 325.261 99.3917 325.261 92.2295C325.261 85.0672 319.455 79.2611 312.293 79.2611C305.131 79.2611 299.325 85.0672 299.325 92.2295C299.325 99.3917 305.131 105.198 312.293 105.198Z",1,"fill-color-25"],["d","M315.18 101.976C308.655 101.976 302.773 98.0462 300.276 92.0183C297.78 85.9904 299.16 79.052 303.773 74.4384C308.387 69.8249 315.325 68.4448 321.353 70.9416C327.381 73.4384 331.311 79.3205 331.311 85.8451C331.301 94.75 324.085 101.966 315.18 101.976ZM315.18 69.9245C306.387 69.9245 299.259 77.0524 299.259 85.8451C299.259 94.6377 306.387 101.766 315.18 101.766C323.973 101.766 331.1 94.6377 331.1 85.8451C331.09 77.0565 323.968 69.9345 315.18 69.9245Z",1,"fill-color-19"],["d","M309.677 100.883C309.936 100.948 310.216 100.873 310.41 100.673L318.163 92.664C318.571 92.2458 318.371 91.5387 317.802 91.3966L314.249 90.5107L316.557 86.8411C316.797 86.4038 316.558 85.8537 316.074 85.7332L311.64 84.6277C311.271 84.5355 310.888 84.7313 310.748 85.0854L307.92 92.2295C307.751 92.6583 307.998 93.1384 308.444 93.2497L312.099 94.161L309.186 99.7958C308.959 100.236 309.206 100.766 309.677 100.883Z",1,"fill-color-21"],["d","M88.6576 67.1775H1.48938V98.4248H88.6576V67.1775Z","fill","white"],["d","M59.8442 74.589H8.64417V90.6009H59.8442V74.589Z",1,"fill-color-primary-darker"],["d","M76.3175 90.6426C80.819 90.6426 84.4682 86.9934 84.4682 82.4919C84.4682 77.9904 80.819 74.3412 76.3175 74.3412C71.8159 74.3412 68.1667 77.9904 68.1667 82.4919C68.1667 86.9934 71.8159 90.6426 76.3175 90.6426Z",1,"fill-color-primary-darker"],["d","M88.6576 34.7129H1.48938V65.9602H88.6576V34.7129Z","fill","white"],["d","M59.8442 42.1244H8.64417V58.1363H59.8442V42.1244Z",1,"fill-color-primary-darker"],["d","M76.3175 58.1801C80.819 58.1801 84.4682 54.531 84.4682 50.0294C84.4682 45.5279 80.819 41.8787 76.3175 41.8787C71.8159 41.8787 68.1667 45.5279 68.1667 50.0294C68.1667 54.531 71.8159 58.1801 76.3175 58.1801Z",1,"fill-color-primary-darker"],["d","M88.6576 2.24824H1.48938V33.4955H88.6576V2.24824Z","fill","white"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-primary-darker"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-17"],["d","M76.7868 26.5736C81.6396 26.5736 85.5736 22.6396 85.5736 17.7868C85.5736 12.934 81.6396 9 76.7868 9C71.934 9 68 12.934 68 17.7868C68 22.6396 71.934 26.5736 76.7868 26.5736Z","fill","url(#paint0_linear)"],["d","M76.3174 59.0334C81.1702 59.0334 85.1042 55.0994 85.1042 50.2466C85.1042 45.3938 81.1702 41.4598 76.3174 41.4598C71.4646 41.4598 67.5306 45.3938 67.5306 50.2466C67.5306 55.0994 71.4646 59.0334 76.3174 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3174 91.4958C81.1702 91.4958 85.1042 87.5618 85.1042 82.709C85.1042 77.8562 81.1702 73.9222 76.3174 73.9222C71.4646 73.9222 67.5306 77.8562 67.5306 82.709C67.5306 87.5618 71.4646 91.4958 76.3174 91.4958Z","fill","url(#paint2_linear)"],["d","M193.434 36.7899H142.709V35.7444H119.708V36.7899H68.7742C67.8642 36.7899 66.9915 37.1514 66.348 37.7949C65.7045 38.4384 65.343 39.3111 65.343 40.2211V109.679C65.343 110.589 65.7045 111.462 66.348 112.106C66.9915 112.749 67.8642 113.111 68.7742 113.111H193.434C195.329 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.344 36.7899 193.434 36.7899Z",1,"fill-color-19"],["d","M192.265 42.8538H69.9432V111.856H192.265V42.8538Z",1,"fill-color-22"],["opacity","0.1","d","M157.283 111.856H69.9432V42.8538L157.283 111.856Z","fill","black"],["d","M89.0829 106.693C95.5767 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.5767 83.1766 89.0829 83.1766C82.5892 83.1766 77.325 88.4408 77.325 94.9346C77.325 101.428 82.5892 106.693 89.0829 106.693Z",1,"fill-color-25"],["d","M91.7004 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7004 103.772ZM91.7004 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7004 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7004 74.7115Z",1,"fill-color-28"],["d","M170.967 80.0672H159.541V82.4548H170.967V80.0672Z",1,"fill-color-19"],["d","M184.781 67.9588H145.727V68.9821H184.781V67.9588Z",1,"fill-color-19"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.114C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.26 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.041 109.589 156.009 109.621C155.977 109.653 155.96 109.696 155.96 109.741V110.601H153.401V109.741C153.401 109.696 153.383 109.653 153.351 109.621C153.319 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.088 109.589 114.056 109.621C114.024 109.653 114.006 109.696 114.006 109.741V110.601H111.448V109.741C111.448 109.696 111.43 109.653 111.398 109.621C111.366 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.147 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.464V109.741C97.464 109.696 97.4461 109.653 97.4141 109.621C97.3821 109.589 97.3387 109.571 97.2935 109.571H93.2005C93.1553 109.571 93.1119 109.589 93.0799 109.621C93.0479 109.653 93.03 109.696 93.03 109.741V110.601H90.4719V109.741C90.4719 109.696 90.4539 109.653 90.4219 109.621C90.3899 109.589 90.3465 109.571 90.3013 109.571H86.2083C86.1631 109.571 86.1197 109.589 86.0877 109.621C86.0558 109.653 86.0378 109.696 86.0378 109.741V110.601H83.4797V109.741C83.4797 109.696 83.4617 109.653 83.4297 109.621C83.3978 109.589 83.3544 109.571 83.3091 109.571H79.2162C79.1709 109.571 79.1276 109.589 79.0956 109.621C79.0636 109.653 79.0456 109.696 79.0456 109.741V110.601H76.4875V109.741C76.4875 109.696 76.4695 109.653 76.4376 109.621C76.4056 109.589 76.3622 109.571 76.317 109.571H72.224C72.1788 109.571 72.1354 109.589 72.1034 109.621C72.0714 109.653 72.0535 109.696 72.0535 109.741V110.601H64.2086C61.9481 110.601 60.1156 112.434 60.1156 114.694V116.545C60.1156 118.806 61.9481 120.638 64.2086 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z",1,"fill-color-19"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8457 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9774 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1719L88.0762 87.0664C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5348 96.5997L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z",1,"fill-color-21"],["d","M78.125 21.625C78.125 20.5938 77.2812 19.75 76.25 19.75C75.1953 19.75 74.375 20.5938 74.375 21.625C74.375 22.6797 75.1953 23.5 76.25 23.5C77.2812 23.5 78.125 22.6797 78.125 21.625ZM74.5859 12.1094L74.8906 18.4844C74.9141 18.7656 75.1719 19 75.4531 19H77.0234C77.3047 19 77.5625 18.7656 77.5859 18.4844L77.8906 12.1094C77.9141 11.7812 77.6562 11.5 77.3281 11.5H75.1484C74.8203 11.5 74.5625 11.7812 74.5859 12.1094Z","fill","white"],["id","paint0_linear","x1","76.7868","y1","26.5736","x2","76.7868","y2","9","gradientUnits","userSpaceOnUse"],["id","paint1_linear","x1","76.3174","y1","59.0334","x2","76.3174","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3174","y1","91.4958","x2","76.3174","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 153 200","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary-lighter"],["d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M122.399 37H32.25V137.616H122.399V37Z",1,"fill-color-10"],["d","M120.908 104.178H33.7394V135.425H120.908V104.178Z","fill","white"],["d","M92.0943 111.589H40.8943V127.601H92.0943V111.589Z",1,"fill-color-primary-darker"],["d","M108.567 127.643C113.069 127.643 116.718 123.993 116.718 119.492C116.718 114.99 113.069 111.341 108.567 111.341C104.066 111.341 100.417 114.99 100.417 119.492C100.417 123.993 104.066 127.643 108.567 127.643Z",1,"fill-color-primary-darker"],["d","M120.908 71.7129H33.7394V102.96H120.908V71.7129Z","fill","white"],["d","M92.0943 79.1244H40.8943V95.1363H92.0943V79.1244Z",1,"fill-color-primary-darker"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.531 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.531 104.066 95.1801 108.567 95.1801Z",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7394V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6738H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M74.5 112H40.5V128H74.5V112Z",1,"fill-color-17"],["d","M74.5 79H40.5V95H74.5V79Z",1,"fill-color-17"],["d","M91.8943 46.662H40.8943V62.662H91.8943V46.662Z",1,"fill-color-17"],["d","M108.567 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.567 45.778C103.715 45.778 99.7806 49.712 99.7806 54.5648C99.7806 59.4176 103.715 63.3516 108.567 63.3516Z","fill","url(#paint0_linear)"],["d","M108.567 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.567 78.4598C103.715 78.4598 99.7806 82.3938 99.7806 87.2466C99.7806 92.0994 103.715 96.0334 108.567 96.0334Z",1,"fill-color-17"],["d","M108.567 128.496C113.42 128.496 117.354 124.562 117.354 119.709C117.354 114.856 113.42 110.922 108.567 110.922C103.715 110.922 99.7806 114.856 99.7806 119.709C99.7806 124.562 103.715 128.496 108.567 128.496Z",1,"fill-color-17"],["d","M108.401 62.3014C112.902 62.3014 116.551 58.6522 116.551 54.1507C116.551 49.6492 112.902 46 108.401 46C103.899 46 100.25 49.6492 100.25 54.1507C100.25 58.6522 103.899 62.3014 108.401 62.3014Z",1,"fill-color-17"],["d","M110.625 57.625C110.625 56.5938 109.781 55.75 108.75 55.75C107.695 55.75 106.875 56.5938 106.875 57.625C106.875 58.6797 107.695 59.5 108.75 59.5C109.781 59.5 110.625 58.6797 110.625 57.625ZM107.086 48.1094L107.391 54.4844C107.414 54.7656 107.672 55 107.953 55H109.523C109.805 55 110.062 54.7656 110.086 54.4844L110.391 48.1094C110.414 47.7812 110.156 47.5 109.828 47.5H107.648C107.32 47.5 107.062 47.7812 107.086 48.1094Z","fill","white"],["d","M141.711 111C141.008 111 140.656 111.859 141.164 112.367L146.164 117.367C146.477 117.68 146.984 117.68 147.297 117.367L152.297 112.367C152.805 111.859 152.453 111 151.75 111H141.711Z",1,"fill-color-17"],["d","M84.25 185.461C84.25 184.758 83.3906 184.406 82.8828 184.914L77.8828 189.914C77.5703 190.227 77.5703 190.734 77.8828 191.047L82.8828 196.047C83.3906 196.555 84.25 196.203 84.25 195.5V185.461Z",1,"fill-color-primary-darker"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z",1,"fill-color-primary-darker"],["d","M133.75 174C142.31 174 149.25 167.06 149.25 158.5C149.25 149.94 142.31 143 133.75 143C125.19 143 118.25 149.94 118.25 158.5C118.25 167.06 125.19 174 133.75 174Z",1,"fill-color-25"],["d","M129.872 169.64C130.214 169.726 130.584 169.628 130.84 169.363L141.093 158.771C141.633 158.218 141.369 157.283 140.616 157.095L135.917 155.924L138.969 151.071C139.286 150.493 138.97 149.765 138.331 149.606L132.468 148.144C131.979 148.022 131.473 148.281 131.287 148.749L127.548 158.197C127.324 158.764 127.65 159.399 128.241 159.546L133.074 160.751L129.222 168.203C128.921 168.785 129.249 169.485 129.872 169.64Z",1,"fill-color-21"],["d","M19.75 174C28.3104 174 35.25 167.06 35.25 158.5C35.25 149.94 28.3104 143 19.75 143C11.1896 143 4.25 149.94 4.25 158.5C4.25 167.06 11.1896 174 19.75 174Z",1,"fill-color-25"],["d","M19.3208 167.769C23.2973 167.769 26.5208 164.545 26.5208 160.569C26.5208 156.592 23.2973 153.369 19.3208 153.369C15.3444 153.369 12.1208 156.592 12.1208 160.569C12.1208 164.545 15.3444 167.769 19.3208 167.769Z",1,"fill-color-22"],["d","M13.7656 153.188L12.4676 152.716C12.4676 152.716 15.1815 150.002 18.9572 150.238L17.8953 149.177C17.8953 149.177 20.4911 148.233 22.851 150.71C24.0915 152.013 25.5268 153.544 26.4216 155.269H27.8116L27.2314 156.429L29.2619 157.589L27.1778 157.381C27.3752 158.383 27.3073 159.418 26.9807 160.386L26.5087 161.684C26.5087 161.684 24.6208 157.908 24.6208 157.436V158.616C24.6208 158.616 23.3229 157.554 23.3229 156.846L22.615 157.672L22.261 156.374L17.8953 157.672L18.6032 156.61L15.8894 156.964L16.9514 155.666C16.9514 155.666 13.8836 157.2 13.7656 158.498C13.6476 159.796 12.1137 161.448 12.1137 161.448L11.4058 160.268C11.4058 160.268 10.3438 154.958 13.7656 153.188Z",1,"fill-color-21"],["d","M76.75 31C68.1896 31 61.25 24.0604 61.25 15.5C61.25 6.93959 68.1896 0 76.75 0C85.3104 0 92.25 6.93959 92.25 15.5C92.25 24.0604 85.3104 31 76.75 31Z",1,"fill-color-25"],["d","M77.1792 24.7687C73.2027 24.7687 69.9792 21.5452 69.9792 17.5687C69.9792 13.5923 73.2027 10.3687 77.1792 10.3687C81.1556 10.3687 84.3792 13.5923 84.3792 17.5687C84.3792 21.5452 81.1556 24.7687 77.1792 24.7687Z",1,"fill-color-22"],["d","M82.7344 10.1883L84.0324 9.71628C84.0324 9.71628 81.3185 7.00246 77.5428 7.23845L78.6047 6.17651C78.6047 6.17651 76.0089 5.23258 73.649 7.71041C72.4085 9.01295 70.9732 10.544 70.0784 12.2687H68.6884L69.2686 13.429L67.2381 14.5893L69.3222 14.3808C69.1248 15.3825 69.1927 16.4184 69.5193 17.3858L69.9913 18.6837C69.9913 18.6837 71.8792 14.9079 71.8792 14.4359V15.6159C71.8792 15.6159 73.1771 14.5539 73.1771 13.846L73.885 14.6719L74.239 13.374L78.6047 14.6719L77.8968 13.61L80.6106 13.964L79.5486 12.6661C79.5486 12.6661 82.6164 14.2 82.7344 15.4979C82.8524 16.7958 84.3863 18.4477 84.3863 18.4477L85.0942 17.2678C85.0942 17.2678 86.1562 11.9581 82.7344 10.1883Z",1,"fill-color-21"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.786 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.542 141.365 153.936Z",1,"fill-color-21"],["d","M140.968 160.376C141.521 160.376 141.968 159.928 141.968 159.376C141.968 158.823 141.521 158.376 140.968 158.376C140.416 158.376 139.968 158.823 139.968 159.376C139.968 159.928 140.416 160.376 140.968 160.376Z",1,"fill-color-22"],["d","M129.168 160.376C129.721 160.376 130.168 159.928 130.168 159.376C130.168 158.823 129.721 158.376 129.168 158.376C128.616 158.376 128.168 158.823 128.168 159.376C128.168 159.928 128.616 160.376 129.168 160.376Z",1,"fill-color-22"],["d","M135.068 165.276C138.272 165.276 140.868 162.679 140.868 159.476C140.868 156.272 138.272 153.676 135.068 153.676C131.865 153.676 129.268 156.272 129.268 159.476C129.268 162.679 131.865 165.276 135.068 165.276Z",1,"fill-color-22"],["d","M140.384 153.575L136.049 151.304L130.062 152.233L128.824 157.704L131.907 157.585L132.768 155.576V157.552L134.191 157.498L135.017 154.298L135.533 157.704L140.591 157.601L140.384 153.575Z",1,"fill-color-21"],["d","M79.4007 199.301C83.9022 199.301 87.5514 195.652 87.5514 191.151C87.5514 186.649 83.9022 183 79.4007 183C74.8992 183 71.25 186.649 71.25 191.151C71.25 195.652 74.8992 199.301 79.4007 199.301Z",1,"fill-color-17"],["d","M82.9375 189.25H80.2188L81.2266 186.227C81.3203 185.852 81.0391 185.5 80.6875 185.5H77.3125C77.0313 185.5 76.7735 185.711 76.75 185.992L76 191.617C75.9531 191.969 76.211 192.25 76.5625 192.25H79.3281L78.25 196.82C78.1797 197.172 78.4375 197.5 78.7891 197.5C79 197.5 79.1875 197.406 79.2813 197.219L83.4063 190.094C83.6406 189.742 83.3594 189.25 82.9375 189.25Z","fill","white"],["d","M106.555 91.8125C106.789 92.0469 107.188 92.0469 107.422 91.8125L114.312 84.9219C114.547 84.6875 114.547 84.2891 114.312 84.0547L113.469 83.2109C113.234 82.9766 112.859 82.9766 112.625 83.2109L107 88.8359L104.352 86.2109C104.117 85.9766 103.742 85.9766 103.508 86.2109L102.664 87.0547C102.43 87.2891 102.43 87.6875 102.664 87.9219L106.555 91.8125Z","fill","white"],["d","M106.555 124.812C106.789 125.047 107.188 125.047 107.422 124.812L114.312 117.922C114.547 117.688 114.547 117.289 114.312 117.055L113.469 116.211C113.234 115.977 112.859 115.977 112.625 116.211L107 121.836L104.352 119.211C104.117 118.977 103.742 118.977 103.508 119.211L102.664 120.055C102.43 120.289 102.43 120.688 102.664 120.922L106.555 124.812Z","fill","white"],["id","paint0_linear","x1","108.567","y1","63.3516","x2","108.567","y2","45.778","gradientUnits","userSpaceOnUse"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M120.908 104.177H33.7393V135.425H120.908V104.177Z","fill","white"],["d","M120.908 71.7129H33.7393V102.96H120.908V71.7129Z","fill","white"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.5309 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.5309 104.066 95.1801 108.567 95.1801Z",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7393V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6739H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M76 112H41V128H76V112Z",1,"fill-color-17"],["d","M70 79H41V95H70V79Z",1,"fill-color-17"],["d","M70 47H41V63H70V47Z",1,"fill-color-17"],["d","M108.568 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.568 45.778C103.715 45.778 99.7808 49.712 99.7808 54.5648C99.7808 59.4176 103.715 63.3516 108.568 63.3516Z","fill","url(#paint0_linear)"],["d","M108.568 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.568 78.4598C103.715 78.4598 99.7808 82.3938 99.7808 87.2466C99.7808 92.0994 103.715 96.0334 108.568 96.0334Z",1,"fill-color-17"],["d","M108.568 129.496C113.42 129.496 117.354 125.562 117.354 120.709C117.354 115.856 113.42 111.922 108.568 111.922C103.715 111.922 99.7808 115.856 99.7808 120.709C99.7808 125.562 103.715 129.496 108.568 129.496Z",1,"fill-color-17"],["d","M106.805 91.8125C107.039 92.0469 107.438 92.0469 107.672 91.8125L114.562 84.9219C114.797 84.6875 114.797 84.2891 114.562 84.0547L113.719 83.2109C113.484 82.9766 113.109 82.9766 112.875 83.2109L107.25 88.8359L104.602 86.2109C104.367 85.9766 103.992 85.9766 103.758 86.2109L102.914 87.0547C102.68 87.2891 102.68 87.6875 102.914 87.9219L106.805 91.8125Z","fill","white"],["d","M106.805 58.8125C107.039 59.0469 107.438 59.0469 107.672 58.8125L114.562 51.9219C114.797 51.6875 114.797 51.2891 114.562 51.0547L113.719 50.2109C113.484 49.9766 113.109 49.9766 112.875 50.2109L107.25 55.8359L104.602 53.2109C104.367 52.9766 103.992 52.9766 103.758 53.2109L102.914 54.0547C102.68 54.2891 102.68 54.6875 102.914 54.9219L106.805 58.8125Z","fill","white"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z",1,"fill-color-17"],["d","M77.1792 24.7688C73.2027 24.7688 69.9792 21.5452 69.9792 17.5688C69.9792 13.5923 73.2027 10.3688 77.1792 10.3688C81.1556 10.3688 84.3792 13.5923 84.3792 17.5688C84.3792 21.5452 81.1556 24.7688 77.1792 24.7688Z",1,"fill-color-22"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.785 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.543 141.365 153.936Z",1,"fill-color-21"],["d","M82.9374 189.25H80.2186L81.2265 186.227C81.3202 185.852 81.039 185.5 80.6874 185.5H77.3124C77.0311 185.5 76.7733 185.711 76.7499 185.992L75.9999 191.617C75.953 191.969 76.2108 192.25 76.5624 192.25H79.328L78.2499 196.82C78.1796 197.172 78.4374 197.5 78.789 197.5C78.9999 197.5 79.1874 197.406 79.2811 197.219L83.4061 190.094C83.6405 189.742 83.3593 189.25 82.9374 189.25Z","fill","white"],["id","paint0_linear","x1","108.568","y1","63.3516","x2","108.568","y2","45.778","gradientUnits","userSpaceOnUse"]],template:function(o,a){if(1&o&&e.DNE(0,kl,1,0,"ng-container",5)(1,Sl,47,5,"ng-template",null,0,e.C5r)(3,Rl,96,5,"ng-template",null,1,e.C5r)(5,El,68,5,"ng-template",null,2,e.C5r)(7,Il,53,5,"ng-template",null,3,e.C5r)(9,Ll,52,5,"ng-template",null,4,e.C5r),2&o){const l=e.sdS(2),p=e.sdS(4),m=e.sdS(6),v=e.sdS(8),b=e.sdS(10);e.Y8G("ngTemplateOutlet",1===a.stepNumber?l:2===a.stepNumber?p:3===a.stepNumber?m:4===a.stepNumber?v:b)}},dependencies:[_.YU,_.T3,k.Lc,k.dh,f.DJ,f.sA,f.UI,j.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:10%;min-height:10%;max-width:50%;margin:auto}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:50%;margin:auto}"],data:{animation:[Tl.k]}}))}return t(),s})();const jl=["stepper"],Gl=()=>[1,2,3,4,5],Dl=(t,s)=>({"dot-primary":t,"dot-primary-lighter":s});function Nl(t,s){if(1&t&&e.EFF(0),2&t){const n=e.XpG(2);e.JRh(n.inputFormLabel)}}function Pl(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function $l(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Amount must be a positive number."),e.k0s())}function Al(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.SpI("Amount must be less than or equal to ",null==n.selChannel?null:n.selChannel.local_balance,".")}}function Ml(t,s){if(1&t&&(e.j41(0,"mat-option",54),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.Lme("",n.remote_alias," - ",n.chan_id)}}function Bl(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Receive from Peer is required."),e.k0s())}function Ol(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Receive from Peer not found in the list."),e.k0s())}function Vl(t,s){if(1&t&&e.EFF(0),2&t){const n=e.XpG(2);e.JRh(n.feeFormLabel)}}function Yl(t,s){if(1&t&&(e.j41(0,"mat-option",54),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.SpI(" ",n.name," ")}}function Xl(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.SpI("",n.feeFormGroup.controls.selFeeLimitType.value?n.feeFormGroup.controls.selFeeLimitType.value.placeholder:n.feeLimitTypes[0].placeholder," is required.")}}function Ul(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.SpI("",n.feeFormGroup.controls.selFeeLimitType.value?n.feeFormGroup.controls.selFeeLimitType.value.placeholder:n.feeLimitTypes[0].placeholder," must be a positive number.")}}function Hl(t,s){1&t&&e.EFF(0,"Invoice/Payment")}function zl(t,s){1&t&&(e.j41(0,"mat-icon",55),e.EFF(1,"check"),e.k0s())}function ql(t,s){1&t&&e.nrm(0,"mat-progress-bar",56)}function Jl(t,s){if(1&t&&(e.j41(0,"mat-icon",55),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(null!=n.paymentStatus&&n.paymentStatus.error?"close":"check")}}function Ql(t,s){1&t&&e.nrm(0,"div",7)}function Wl(t,s){1&t&&e.nrm(0,"mat-progress-bar",56)}function Zl(t,s){if(1&t&&(e.j41(0,"h4",57),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.paymentStatus&&n.paymentStatus.payment_hash?"Rebalance Successful.":"Rebalance Failed.")}}function Kl(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",58),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onRestart())}),e.EFF(1,"Start Again"),e.k0s()}}function er(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",7)(1,"mat-card-header",8)(2,"div",9)(3,"div",10)(4,"span",11),e.EFF(5,"Channel Rebalance"),e.k0s()(),e.j41(6,"div",12)(7,"button",13),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.showInfo())}),e.EFF(8,"?"),e.k0s(),e.j41(9,"button",14),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onClose())}),e.EFF(10,"X"),e.k0s()()()(),e.j41(11,"mat-card-content",15)(12,"div",7)(13,"div",16)(14,"div",17),e.nrm(15,"fa-icon",18),e.j41(16,"span"),e.EFF(17,"Circular Rebalance is a payment you make to *yourself* to affect a relative change in the balances of two channels. This is accomplished by sending payment out from the selected channel and receiving it back on the channel with the selected peer. Please note, you will be paying routing fee to balance the channels in this manner."),e.k0s()()(),e.j41(18,"div",19)(19,"p",20)(20,"strong"),e.EFF(21,"Channel Peer:\xa0"),e.k0s(),e.EFF(22),e.nI1(23,"titlecase"),e.k0s(),e.j41(24,"p",20)(25,"strong"),e.EFF(26,"Channel ID:\xa0"),e.k0s(),e.EFF(27),e.k0s()(),e.j41(28,"mat-vertical-stepper",21,3),e.bIt("selectionChange",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.stepSelectionChanged(o))}),e.j41(30,"mat-step",22)(31,"form",23),e.DNE(32,Nl,1,1,"ng-template",24),e.j41(33,"div",25)(34,"mat-form-field",26)(35,"mat-label"),e.EFF(36,"Amount"),e.k0s(),e.nrm(37,"input",27),e.j41(38,"mat-hint"),e.EFF(39),e.k0s(),e.j41(40,"span",28),e.EFF(41,"Sats"),e.k0s(),e.DNE(42,Pl,2,0,"mat-error",29)(43,$l,2,0,"mat-error",29)(44,Al,2,1,"mat-error",29),e.k0s(),e.j41(45,"mat-form-field",30)(46,"mat-label"),e.EFF(47,"Receive from Peer"),e.k0s(),e.j41(48,"input",31),e.bIt("change",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSelectedPeerChanged())}),e.k0s(),e.j41(49,"mat-autocomplete",32,4),e.bIt("optionSelected",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSelectedPeerChanged())}),e.DNE(51,Ml,2,3,"mat-option",33),e.nI1(52,"async"),e.k0s(),e.DNE(53,Bl,2,0,"mat-error",29)(54,Ol,2,0,"mat-error",29),e.k0s()(),e.j41(55,"div",34)(56,"button",35),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSelectFee())}),e.EFF(57,"Select Fee"),e.k0s()()()(),e.j41(58,"mat-step",22)(59,"form",23),e.DNE(60,Vl,1,1,"ng-template",36),e.j41(61,"div",25)(62,"div",25)(63,"mat-form-field",30)(64,"mat-label"),e.EFF(65,"Fee Limits"),e.k0s(),e.j41(66,"mat-select",37),e.DNE(67,Yl,2,2,"mat-option",33),e.k0s()(),e.j41(68,"mat-form-field",26)(69,"mat-label"),e.EFF(70),e.k0s(),e.nrm(71,"input",38),e.DNE(72,Xl,2,1,"mat-error",29)(73,Ul,2,1,"mat-error",29),e.k0s()()(),e.j41(74,"div",34)(75,"button",39),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onRebalance())}),e.EFF(76,"Rebalance"),e.k0s()()()(),e.j41(77,"mat-step",40)(78,"form",23),e.DNE(79,Hl,1,0,"ng-template",24),e.j41(80,"div",41)(81,"mat-expansion-panel",42)(82,"mat-expansion-panel-header")(83,"mat-panel-title")(84,"span",43),e.EFF(85),e.DNE(86,zl,2,0,"mat-icon",44),e.k0s()()(),e.j41(87,"div",7)(88,"span",45),e.EFF(89),e.k0s()()(),e.DNE(90,ql,1,0,"mat-progress-bar",46),e.j41(91,"mat-expansion-panel",47)(92,"mat-expansion-panel-header")(93,"mat-panel-title")(94,"span",43),e.EFF(95),e.DNE(96,Jl,2,1,"mat-icon",44),e.k0s()()(),e.DNE(97,Ql,1,0,"div",48),e.k0s(),e.DNE(98,Wl,1,0,"mat-progress-bar",46),e.k0s(),e.DNE(99,Zl,2,1,"h4",49),e.j41(100,"div",50),e.DNE(101,Kl,2,0,"button",51),e.k0s()()()(),e.j41(102,"div",52)(103,"button",53),e.EFF(104,"Close"),e.k0s()()()()()}if(2&t){const n=e.sdS(50),i=e.XpG(),o=e.sdS(2);e.Y8G("@opacityAnimation",void 0),e.R7$(15),e.Y8G("icon",i.faInfoCircle),e.R7$(7),e.JRh(e.bMT(23,42,i.selChannel.remote_alias)),e.R7$(5),e.JRh(i.selChannel.chan_id),e.R7$(),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",i.inputFormGroup)("editable",i.flgEditable),e.R7$(),e.Y8G("formGroup",i.inputFormGroup),e.R7$(6),e.Y8G("step",100),e.R7$(2),e.Lme("(Local Bal: ",null==i.selChannel?null:i.selChannel.local_balance,", Remaining: ",(null==i.selChannel?null:i.selChannel.local_balance)-(i.inputFormGroup.controls.rebalanceAmount.value?i.inputFormGroup.controls.rebalanceAmount.value:0),")"),e.R7$(3),e.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.required),e.R7$(),e.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.min),e.R7$(),e.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.max),e.R7$(4),e.Y8G("matAutocomplete",n),e.R7$(),e.Y8G("displayWith",i.displayFn),e.R7$(2),e.Y8G("ngForOf",e.bMT(52,44,i.filteredActiveChannels)),e.R7$(2),e.Y8G("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.required),e.R7$(),e.Y8G("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.notfound),e.R7$(4),e.Y8G("stepControl",i.feeFormGroup)("editable",i.flgEditable),e.R7$(),e.Y8G("formGroup",i.feeFormGroup),e.R7$(8),e.Y8G("ngForOf",i.feeLimitTypes),e.R7$(3),e.JRh(i.feeFormGroup.controls.selFeeLimitType.value?i.feeFormGroup.controls.selFeeLimitType.value.placeholder:i.feeLimitTypes[0].placeholder),e.R7$(),e.Y8G("step",1),e.R7$(),e.Y8G("ngIf",null==i.feeFormGroup.controls.feeLimit.errors?null:i.feeFormGroup.controls.feeLimit.errors.required),e.R7$(),e.Y8G("ngIf",null==i.feeFormGroup.controls.feeLimit.errors?null:i.feeFormGroup.controls.feeLimit.errors.min),e.R7$(4),e.Y8G("stepControl",i.statusFormGroup),e.R7$(),e.Y8G("formGroup",i.statusFormGroup),e.R7$(7),e.JRh(i.flgInvoiceGenerated?i.flgReusingInvoice?"Invoice re-used":"Invoice generated":"Generating invoice..."),e.R7$(),e.Y8G("ngIf",i.flgInvoiceGenerated),e.R7$(3),e.JRh(i.paymentRequest),e.R7$(),e.Y8G("ngIf",!i.flgInvoiceGenerated),e.R7$(),e.Y8G("expanded",(i.flgInvoiceGenerated||i.flgReusingInvoice)&&i.flgPaymentSent),e.R7$(4),e.JRh(i.flgInvoiceGenerated||i.flgPaymentSent?i.flgPaymentSent?null!=i.paymentStatus&&i.paymentStatus.error?"Payment failed":"Payment successful":"Processing payment...":"Payment waiting for Invoice"),e.R7$(),e.Y8G("ngIf",i.flgPaymentSent),e.R7$(),e.Y8G("ngIf",!i.paymentStatus)("ngIfElse",o),e.R7$(),e.Y8G("ngIf",i.flgInvoiceGenerated&&!i.flgPaymentSent),e.R7$(),e.Y8G("ngIf",i.flgInvoiceGenerated&&i.flgPaymentSent),e.R7$(2),e.Y8G("ngIf",i.paymentStatus&&i.paymentStatus.error),e.R7$(2),e.Y8G("mat-dialog-close",!1)}}function tr(t,s){1&t&&e.eu8(0)}function nr(t,s){if(1&t&&e.DNE(0,tr,1,0,"ng-container",59),2&t){const n=e.XpG(),i=e.sdS(4),o=e.sdS(6);e.Y8G("ngTemplateOutlet",n.paymentStatus.error?i:o)}}function ir(t,s){if(1&t&&(e.j41(0,"div",7)(1,"span",45),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.SpI("Error: ",n.paymentStatus.error)}}function ar(t,s){if(1&t&&(e.j41(0,"div",7)(1,"div",60)(2,"div",61)(3,"h4",62),e.EFF(4,"Payment Hash"),e.k0s(),e.j41(5,"span",45),e.EFF(6),e.k0s()()(),e.nrm(7,"mat-divider",63),e.j41(8,"div",60)(9,"div",64)(10,"h4",62),e.EFF(11),e.k0s(),e.j41(12,"span",45),e.EFF(13),e.k0s()(),e.j41(14,"div",64)(15,"h4",62),e.EFF(16,"Number of Hops"),e.k0s(),e.j41(17,"span",45),e.EFF(18),e.k0s()()()()),2&t){const n=e.XpG();e.R7$(6),e.JRh(n.paymentStatus.payment_hash),e.R7$(5),e.SpI("Total Fees (",n.paymentStatus.payment_route.total_fees_msat?"mSats":"Sats",")"),e.R7$(2),e.JRh(n.paymentStatus.payment_route.total_fees_msat?n.paymentStatus.payment_route.total_fees_msat:n.paymentStatus.payment_route.total_fees?n.paymentStatus.payment_route.total_fees:0),e.R7$(5),e.JRh(n.paymentStatus&&n.paymentStatus.payment_route&&n.paymentStatus.payment_route.hops&&n.paymentStatus.payment_route.hops.length?n.paymentStatus.payment_route.hops.length:0)}}function sr(t,s){if(1&t){const n=e.RV6();e.j41(0,"span",80),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onStepChanged(o))}),e.nrm(1,"p",81),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngClass",e.l_i(1,Dl,i.stepNumber===n,i.stepNumber!==n))}}function or(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",82),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onStepChanged(4))}),e.EFF(1,"Back"),e.k0s()}}function lr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",83),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return o.flgShowInfo=!1,r.Njj(o.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function rr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",84),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return o.flgShowInfo=!1,r.Njj(o.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function cr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",85),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onStepChanged(o.stepNumber-1))}),e.EFF(1,"Back"),e.k0s()}}function pr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",86),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onStepChanged(o.stepNumber+1))}),e.EFF(1,"Next"),e.k0s()}}function mr(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",65)(1,"div",66)(2,"mat-card-header",67)(3,"div",68),e.nrm(4,"span",11),e.k0s(),e.j41(5,"div",69)(6,"button",14),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return o.flgShowInfo=!1,r.Njj(o.stepNumber=1)}),e.EFF(7,"X"),e.k0s()()(),e.j41(8,"mat-card-content",70)(9,"rtl-channel-rebalance-infographics",71),e.mxI("stepNumberChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.stepNumber,o)||(a.stepNumber=o),r.Njj(o)}),e.k0s()(),e.j41(10,"div",72),e.DNE(11,sr,2,4,"span",73),e.k0s(),e.j41(12,"div",74),e.DNE(13,or,2,0,"button",75)(14,lr,2,0,"button",76)(15,rr,2,0,"button",77)(16,cr,2,0,"button",78)(17,pr,2,0,"button",79),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@opacityAnimation",void 0),e.R7$(9),e.Y8G("animationDirection",n.animationDirection),e.R50("stepNumber",n.stepNumber),e.R7$(2),e.Y8G("ngForOf",e.lJ4(9,Gl)),e.R7$(2),e.Y8G("ngIf",5===n.stepNumber),e.R7$(),e.Y8G("ngIf",5===n.stepNumber),e.R7$(),e.Y8G("ngIf",n.stepNumber<5),e.R7$(),e.Y8G("ngIf",n.stepNumber>1&&n.stepNumber<5),e.R7$(),e.Y8G("ngIf",n.stepNumber<5)}}let ur=(()=>{var t;class s{constructor(i,o,a,l,p,m,v,b){this.dialogRef=i,this.data=o,this.logger=a,this.store=l,this.actions=p,this.formBuilder=m,this.decimalPipe=v,this.commonService=b,this.faInfoCircle=x.iW_,this.invoices={},this.selChannel={},this.activeChannels=[],this.feeLimitTypes=[],this.queryRoute={},this.paymentRequest="",this.paymentStatus=null,this.flgReusingInvoice=!1,this.flgInvoiceGenerated=!1,this.flgPaymentSent=!1,this.inputFormLabel="Amount to rebalance",this.feeFormLabel="Select rebalance fee",this.flgEditable=!0,this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=c.f7,this.animationDirection="forward",this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize();let i="",o="";this.selChannel=this.data.message?.selChannel||{},this.activeChannels=this.data.message?.channels?.filter(a=>a.active&&a.chan_id!==this.selChannel.chan_id&&a.remote_balance&&a.remote_balance>0)||[],this.activeChannels=this.activeChannels.sort((a,l)=>(i=a.remote_alias?a.remote_alias.toLowerCase():a.chan_id?a.chan_id.toLowerCase():"",o=l.remote_alias?l.remote_alias.toLowerCase():a.chan_id?a.chan_id.toLowerCase():"",io?1:0)),c.nv.forEach((a,l)=>{l>0&&this.feeLimitTypes.push(a)}),this.inputFormGroup=this.formBuilder.group({hiddenAmount:["",[d.k0.required]],rebalanceAmount:["",[d.k0.required,d.k0.min(1),d.k0.max(this.selChannel.local_balance||0)]],selRebalancePeer:[null,d.k0.required]}),this.feeFormGroup=this.formBuilder.group({selFeeLimitType:[this.feeLimitTypes[0],d.k0.required],feeLimit:["",[d.k0.required,d.k0.min(0)]],hiddenFeeLimit:["",[d.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(F.rN).pipe((0,g.Q)(this.unSubs[0])).subscribe(a=>{this.invoices=a.listInvoices,this.logger.info(a)}),this.actions.pipe((0,g.Q)(this.unSubs[1]),(0,U.p)(a=>a.type===c.QP.SET_QUERY_ROUTES_LND||a.type===c.QP.SEND_PAYMENT_STATUS_LND||a.type===c.QP.NEWLY_SAVED_INVOICE_LND)).subscribe(a=>{a.type===c.QP.SET_QUERY_ROUTES_LND&&(this.queryRoute=a.payload),a.type===c.QP.SEND_PAYMENT_STATUS_LND&&(this.logger.info(a.payload),this.flgPaymentSent=!0,this.paymentStatus=a.payload,this.flgEditable=!0),a.type===c.QP.NEWLY_SAVED_INVOICE_LND&&(this.logger.info(a.payload),this.flgInvoiceGenerated=!0,this.sendPayment(a.payload.paymentRequest))}),this.inputFormGroup.get("rebalanceAmount")?.valueChanges.pipe((0,g.Q)(this.unSubs[2]),(0,Ie.Z)(0)).subscribe(a=>{this.inputFormGroup.controls.selRebalancePeer.setValue(""),this.inputFormGroup.controls.selRebalancePeer.setErrors(null),this.filteredActiveChannels=(0,je.of)(a?this.filterActiveChannels():this.activeChannels.slice())}),this.inputFormGroup.get("selRebalancePeer")?.valueChanges.pipe((0,g.Q)(this.unSubs[3]),(0,Ie.Z)("")).subscribe(a=>{"string"==typeof a&&(this.filteredActiveChannels=(0,je.of)(this.filterActiveChannels()))})}onSelectFee(){return this.inputFormGroup.controls.selRebalancePeer.value&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value&&this.onSelectedPeerChanged(),this.inputFormGroup.controls.selRebalancePeer.value&&"string"!=typeof this.inputFormGroup.controls.selRebalancePeer.value?!this.inputFormGroup.controls.rebalanceAmount.value||(0===this.stepper.selectedIndex&&(this.inputFormGroup.controls.hiddenAmount.setValue(this.inputFormGroup.controls.rebalanceAmount.value),this.stepper.next()),this.queryRoute=null,this.feeFormGroup.reset(),void this.feeFormGroup.controls.selFeeLimitType.setValue(this.feeLimitTypes[0])):(this.inputFormGroup.controls.selRebalancePeer.setErrors({required:!0}),!0)}stepSelectionChanged(i){switch(i.selectedIndex){case 0:default:this.inputFormLabel="Amount to rebalance",this.feeFormLabel="Select rebalance fee";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?this.inputFormGroup.controls.selRebalancePeer.value.remote_alias:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey.substring(0,15)+"..."):"Amount to rebalance",this.feeFormLabel="Select rebalance fee";break;case 2:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?this.inputFormGroup.controls.selRebalancePeer.value.remote_alias:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey.substring(0,15)+"..."):"Amount to rebalance",this.feeFormLabel=this.queryRoute&&this.queryRoute.routes&&this.queryRoute.routes.length>0&&(this.queryRoute.routes[0].total_fees_msat||this.queryRoute.routes[0].hops&&this.queryRoute.routes[0].hops.length)?this.feeFormGroup.controls.selFeeLimitType.value.placeholder+": "+this.decimalPipe.transform(this.feeFormGroup.controls.feeLimit.value?this.feeFormGroup.controls.feeLimit.value:0)+" | Hops: "+this.queryRoute.routes[0].hops?.length:"Select rebalance fee"}i.selectedIndex+this.selChannel.local_balance||!this.feeFormGroup.controls.feeLimit.value||this.feeFormGroup.controls.feeLimit.value<0||!this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey)return!0;this.feeFormGroup.controls.hiddenFeeLimit.setValue(this.feeFormGroup.controls.feeLimit.value),this.stepper.next(),this.flgEditable=!1,this.paymentRequest="",this.paymentStatus=null,this.flgReusingInvoice=!1,this.flgInvoiceGenerated=!1,this.flgPaymentSent=!1;const i=this.findUnsettledInvoice();i?(this.flgReusingInvoice=!0,this.sendPayment(i.payment_request||"")):this.store.dispatch((0,T.VK)({payload:{uiMessage:c.MZ.NO_SPINNER,memo:"Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats",value:this.inputFormGroup.controls.rebalanceAmount.value,private:!1,expiry:c.It,is_amp:!1,pageSize:c.md,openModal:!1}}))}findUnsettledInvoice(){return this.invoices.invoices?.find(i=>(!i.settle_date||0==+i.settle_date)&&i.memo==="Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats"&&"CANCELED"!==i.state)}sendPayment(i){if(this.flgInvoiceGenerated=!0,this.paymentRequest=i,"percent"===this.feeFormGroup.controls.selFeeLimitType.value.id&&+this.feeFormGroup.controls.feeLimit.value%1!=0){const o={uiMessage:c.MZ.NO_SPINNER,payment_request:i,amp:!1,outgoing_chan_ids:this.selChannel?.chan_id?[this.selChannel?.chan_id]:void 0,fee_limit_sat:Math.ceil((0,c.C6)("fixed",this.feeFormGroup.controls.feeLimit.value,this.inputFormGroup.controls.rebalanceAmount.value||0)),allow_self_payment:!0,last_hop_pubkey:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey,fromDialog:!0};this.store.dispatch((0,T.Fd)({payload:o}))}else{const o={uiMessage:c.MZ.NO_SPINNER,payment_request:i,amp:!1,outgoing_chan_ids:this.selChannel?.chan_id?[this.selChannel?.chan_id]:void 0,fee_limit_sat:(0,c.C6)(this.feeFormGroup.controls.selFeeLimitType.value.id,this.feeFormGroup.controls.feeLimit.value,this.inputFormGroup.controls.rebalanceAmount.value||0),allow_self_payment:!0,last_hop_pubkey:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey,fromDialog:!0};this.store.dispatch((0,T.Fd)({payload:o}))}}filterActiveChannels(){return this.activeChannels?.filter(i=>i.remote_balance&&i.remote_balance>=this.inputFormGroup.controls.rebalanceAmount.value&&i.chan_id!==this.selChannel.chan_id&&(0===i.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")||0===i.chan_id?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")))}onSelectedPeerChanged(){if(this.inputFormGroup.controls.selRebalancePeer.value&&this.inputFormGroup.controls.selRebalancePeer.value.length>0&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value){const i=this.activeChannels?.filter(o=>o.remote_alias?.length===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===o.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""));i&&i.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(i[0]),this.inputFormGroup.controls.selRebalancePeer.setErrors(null)):this.inputFormGroup.controls.selRebalancePeer.setErrors({notfound:!0})}}displayFn(i){return i&&i.remote_alias?i.remote_alias:i&&i.chan_id?i.chan_id:""}showInfo(){this.flgShowInfo=!0}onStepChanged(i){this.animationDirection=i{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Y.CP),e.rXU(Y.Vh),e.rXU(D.gP),e.rXU(L.il),e.rXU(K.En),e.rXU(d.ze),e.rXU(_.QX),e.rXU($.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-rebalance"]],viewQuery:function(o,a){if(1&o&&e.GBs(jl,5),2&o){let l;e.mGM(l=e.lsd())&&(a.stepper=l.first)}},standalone:!1,decls:8,vars:2,consts:[["paymentStatusBlock",""],["paymentFailedBlock",""],["paymentSuccessfulBlock",""],["stepper",""],["auto","matAutocomplete"],["fxLayout","column",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column"],[1,"modal-info-header"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayoutAlign","start center"],[1,"page-title"],["fxLayoutAlign","end center"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch",1,"padding-gap-large"],["fxFlex","46"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","rebalanceAmount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start end"],["type","text","aria-label","Receive from Peer","matInput","","formControlName","selRebalancePeer","tabindex","2","required","",3,"change","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","submit",3,"click"],["matStepLabel","","disabled","true"],["tabindex","6","formControlName","selFeeLimitType","required",""],["matInput","","formControlName","feeLimit","type","number","tabindex","7","required","",3,"step"],["mat-button","","color","primary","tabindex","8","type","submit",3,"click"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel","mb-2"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[1,"foreground-secondary-text"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayoutAlign","start","class","font-bold-500 mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-1"],["mat-button","","color","primary","tabindex","11","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],[3,"value"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-1"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[4,"ngTemplateOutlet"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],["fxFlex","50"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["tabindex","21","fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(o,a){1&o&&e.DNE(0,er,105,46,"div",5)(1,nr,1,1,"ng-template",null,0,e.C5r)(3,ir,3,1,"ng-template",null,1,e.C5r)(5,ar,19,4,"ng-template",null,2,e.C5r)(7,mr,18,10,"div",6),2&o&&(e.Y8G("ngIf",!a.flgShowInfo),e.R7$(7),e.Y8G("ngIf",a.flgShowInfo))},dependencies:[_.YU,_.Sq,_.bT,_.T3,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.j4,d.JD,O.aY,Y.tx,N.$z,k.m2,k.MM,z.GK,z.Z2,z.WN,oe.An,M.fg,C.rl,C.nJ,C.MV,C.TL,C.yw,ne.q,V.HM,f.DJ,f.sA,f.UI,j.PW,E.VO,X.wT,q.V5,q.Ti,q.M6,ce.$3,ce.pN,te.N,wl,_.Jj,_.PV],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[Ge.C]}}))}return t(),s})();function dr(t,s){if(1&t&&(e.j41(0,"div",18)(1,"p",19)(2,"mat-icon",20),e.EFF(3,"close"),e.k0s(),e.EFF(4),e.k0s()()),2&t){const n=e.XpG();e.R7$(4),e.JRh(n.errorMsg)}}function hr(t,s){if(1&t&&(e.j41(0,"div",29),e.nrm(1,"fa-icon",30),e.j41(2,"span"),e.EFF(3,"Priority/Fee for force closing inactive channels cannot be modified."),e.k0s()()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faInfoCircle)}}function _r(t,s){if(1&t&&(e.j41(0,"div",29),e.nrm(1,"fa-icon",30),e.j41(2,"span",31)(3,"div"),e.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(5,"span",32)(6,"span"),e.EFF(7),e.k0s(),e.j41(8,"span"),e.EFF(9),e.k0s(),e.j41(10,"span"),e.EFF(11),e.k0s(),e.j41(12,"span"),e.EFF(13),e.k0s(),e.j41(14,"span"),e.EFF(15),e.k0s()()()()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faInfoCircle),e.R7$(6),e.SpI("- High: ",n.recommendedFee.fastestFee||"Unknown"),e.R7$(2),e.SpI("- Medium: ",n.recommendedFee.halfHourFee||"Unknown"),e.R7$(2),e.SpI("- Low: ",n.recommendedFee.hourFee||"Unknown"),e.R7$(2),e.SpI("- Economy: ",n.recommendedFee.economyFee||"Unknown"),e.R7$(2),e.SpI("- Minimum: ",n.recommendedFee.minimumFee||"Unknown")}}function fr(t,s){if(1&t&&(e.j41(0,"mat-option",33),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n.id),e.R7$(),e.SpI(" ",n.name," ")}}function gr(t,s){1&t&&(e.j41(0,"mat-form-field",34)(1,"mat-label"),e.EFF(2,"Default"),e.k0s(),e.nrm(3,"input",35),e.k0s())}function Cr(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function yr(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",36)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.j41(3,"input",37,0),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.blocks,o)||(a.blocks=o),r.Njj(o)}),e.k0s(),e.DNE(5,Cr,2,0,"mat-error",38),e.k0s()}if(2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.blocks),e.R7$(2),e.Y8G("ngIf",!n.blocks)}}function br(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function Fr(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",36)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.j41(3,"input",39,1),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.fees,o)||(a.fees=o),r.Njj(o)}),e.k0s(),e.DNE(5,br,2,0,"mat-error",38),e.k0s()}if(2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.fees),e.R7$(2),e.Y8G("ngIf",!n.fees)}}function xr(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",21),e.DNE(1,hr,4,1,"div",22)(2,_r,16,6,"div",22),e.j41(3,"div",23)(4,"mat-form-field",24)(5,"mat-select",25),e.mxI("valueChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selTransType,o)||(a.selTransType=o),r.Njj(o)}),e.bIt("selectionChange",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSelTransTypeChanged(o))}),e.DNE(6,fr,2,2,"mat-option",26),e.k0s()(),e.DNE(7,gr,4,0,"mat-form-field",27)(8,yr,6,4,"mat-form-field",28)(9,Fr,6,4,"mat-form-field",28),e.k0s()()}if(2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",!n.channelToClose.active),e.R7$(),e.Y8G("ngIf",n.recommendedFee.minimumFee),e.R7$(3),e.Y8G("disabled",!n.channelToClose.active),e.R50("value",n.selTransType),e.R7$(),e.Y8G("ngForOf",n.transTypes),e.R7$(),e.Y8G("ngIf","0"===n.selTransType),e.R7$(),e.Y8G("ngIf","1"===n.selTransType),e.R7$(),e.Y8G("ngIf","2"===n.selTransType)}}function vr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",40),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.EFF(1,"Clear"),e.k0s()}}function Tr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",41),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onCloseChannel())}),e.EFF(1),e.k0s()}if(2&t){const n=e.XpG();e.R7$(),e.JRh(n.channelToClose.active?"Close Channel":"Force Close")}}function kr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",42),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onClose())}),e.EFF(1,"Ok"),e.k0s()}}let Sr=(()=>{var t;class s{constructor(i,o,a,l,p,m){this.dialogRef=i,this.data=o,this.dataService=a,this.store=l,this.actions=p,this.logger=m,this.transTypes=c.XG,this.selTransType="0",this.blocks=null,this.fees=null,this.faExclamationTriangle=x.zpE,this.faInfoCircle=x.iW_,this.flgPendingHtlcs=!1,this.errorMsg="Please wait for pending HTLCs to settle before attempting channel closure.",this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new h.B,new h.B]}ngOnInit(){this.channelToClose=this.data.channel,this.actions.pipe((0,g.Q)(this.unSubs[0]),(0,U.p)(i=>i.type===c.QP.UPDATE_API_CALL_STATUS_LND||i.type===c.QP.SET_CHANNELS_LND)).subscribe(i=>{if(i.type===c.QP.SET_CHANNELS_LND){const o=i.payload.find(a=>a.chan_id===this.data.channel.chan_id);o&&o.pending_htlcs&&o.pending_htlcs.length&&o.pending_htlcs.length>0&&(this.flgPendingHtlcs=!0)}i.type===c.QP.UPDATE_API_CALL_STATUS_LND&&i.payload.status===c.wn.ERROR&&"FetchAllChannels"===i.payload.action&&this.logger.error("Fetching latest channel information failed!\n"+i.payload.message)})}onCloseChannel(){if("1"===this.selTransType&&(!this.blocks||0===this.blocks)||"2"===this.selTransType&&(!this.fees||0===this.fees))return!0;const i={channelPoint:this.channelToClose.channel_point,forcibly:!this.channelToClose.active};this.blocks&&(i.targetConf=this.blocks),this.fees&&(i.satPerByte=this.fees),this.store.dispatch((0,T.w0)({payload:i})),this.dialogRef.close(!1)}resetData(){this.selTransType="0",this.blocks=null,this.fees=null}onSelTransTypeChanged(i){"2"===i.value&&this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[1])).subscribe({next:o=>{this.recommendedFee=o},error:o=>{this.logger.error(o)}})}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Y.CP),e.rXU(Y.Vh),e.rXU(Z.u),e.rXU(L.il),e.rXU(K.En),e.rXU(D.gP))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-close-channel"]],standalone:!1,decls:19,vars:7,consts:[["blcks","ngModel"],["clchfee","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],["fxLayoutAlign","start center",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","class","mr-1","tabindex","3","default","",3,"click",4,"ngIf"],["mat-button","","color","primary","type","submit","tabindex","4",3,"click",4,"ngIf"],["mat-button","","color","primary","type","submit","tabindex","5",3,"click",4,"ngIf"],["fxLayoutAlign","start center"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","column","fxFlex.gt-sm","48"],["tabindex","1",3,"valueChange","selectionChange","disabled","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","48",4,"ngIf"],["fxFlex.gt-sm","48","fxLayoutAlign","start end",4,"ngIf"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["fxFlex","48"],["matInput","","disabled",""],["fxFlex.gt-sm","48","fxLayoutAlign","start end"],["matInput","","type","number","name","blocks","required","","tabindex","2",3,"ngModelChange","step","min","ngModel"],[4,"ngIf"],["matInput","","type","number","name","ccfees","required","","tabindex","3",3,"ngModelChange","step","min","ngModel"],["mat-button","","color","primary","type","reset","tabindex","3","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit","tabindex","4",3,"click"],["mat-button","","color","primary","type","submit","tabindex","5",3,"click"]],template:function(o,a){1&o&&(e.j41(0,"div",2)(1,"div",3)(2,"mat-card-header",4)(3,"div",5)(4,"span",6),e.EFF(5),e.k0s()(),e.j41(6,"button",7),e.bIt("click",function(){return a.onClose()}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",8)(9,"form",9)(10,"div",10)(11,"p",11),e.EFF(12),e.k0s(),e.DNE(13,dr,5,1,"div",12)(14,xr,10,8,"div",13),e.k0s(),e.j41(15,"div",14),e.DNE(16,vr,2,0,"button",15)(17,Tr,2,1,"button",16)(18,kr,2,0,"button",17),e.k0s()()()()()),2&o&&(e.R7$(5),e.JRh(a.channelToClose.active?"Close Channel":"Force Close Channel"),e.R7$(7),e.SpI("",a.channelToClose.active?"Closing channel: "+(a.channelToClose.remote_alias||a.channelToClose.chan_id?a.channelToClose.remote_alias&&a.channelToClose.chan_id?a.channelToClose.remote_alias+" ("+a.channelToClose.chan_id+")":a.channelToClose.remote_alias?a.channelToClose.remote_alias:a.channelToClose.chan_id:a.channelToClose.channel_point):"Force closing channel: "+(a.channelToClose.remote_alias||a.channelToClose.chan_id?a.channelToClose.remote_alias&&a.channelToClose.chan_id?a.channelToClose.remote_alias+" ("+a.channelToClose.chan_id+")":a.channelToClose.remote_alias?a.channelToClose.remote_alias:a.channelToClose.chan_id:a.channelToClose.channel_point)," "),e.R7$(),e.Y8G("ngIf",a.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",!a.flgPendingHtlcs),e.R7$(2),e.Y8G("ngIf",a.channelToClose.active&&!a.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",!a.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",a.flgPendingHtlcs))},dependencies:[_.Sq,_.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,O.aY,N.$z,k.m2,k.MM,oe.An,M.fg,C.rl,C.nJ,C.TL,f.DJ,f.sA,f.UI,E.VO,X.wT,ae.V],encapsulation:2}))}return t(),s})();const Rr=()=>["all"],Er=t=>({"error-border":t}),Ir=()=>["no_channel"],Fe=t=>({width:t}),Lr=t=>({"display-none":t});function wr(t,s){if(1&t&&(e.j41(0,"mat-option",49),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function jr(t,s){1&t&&e.nrm(0,"mat-progress-bar",50)}function Gr(t,s){1&t&&e.nrm(0,"th",51)}function Dr(t,s){1&t&&e.nrm(0,"span",55)}function Nr(t,s){1&t&&e.nrm(0,"span",56)}function Pr(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,Dr,1,0,"span",53)(2,Nr,1,0,"span",54),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",n.active),e.R7$(),e.Y8G("ngIf",!n.active)}}function $r(t,s){1&t&&e.nrm(0,"th",57)}function Ar(t,s){if(1&t&&(e.j41(0,"span",60),e.nrm(1,"fa-icon",61),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faEyeSlash)}}function Mr(t,s){if(1&t&&(e.j41(0,"span",62),e.nrm(1,"fa-icon",61),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faEye)}}function Br(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,Ar,2,1,"span",58)(2,Mr,2,1,"span",59),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",n.private),e.R7$(),e.Y8G("ngIf",!n.private)}}function Or(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Peer"),e.k0s())}function Vr(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.remote_alias)}}function Yr(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Pubkey"),e.k0s())}function Xr(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.remote_pubkey)}}function Ur(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Channel Point"),e.k0s())}function Hr(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel_point)}}function zr(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Channel ID"),e.k0s())}function qr(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.chan_id)}}function Jr(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Initiator"),e.k0s())}function Qr(t,s){if(1&t&&(e.j41(0,"td",52),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(n.initiator?"Yes":"No")}}function Wr(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Static Remote Key"),e.k0s())}function Zr(t,s){if(1&t&&(e.j41(0,"td",52),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(n.static_remote_key?"Yes":"No")}}function Kr(t,s){if(1&t&&(e.j41(0,"th",66),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("Uptime (",n.timeUnit,")")}}function e1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",n.uptime_str," ")}}function t1(t,s){if(1&t&&(e.j41(0,"th",66),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("Lifetime (",n.timeUnit,")")}}function n1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",n.lifetime_str," ")}}function i1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function a1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.commit_fee)," ")}}function s1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Commit Weight"),e.k0s())}function o1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.commit_weight)," ")}}function l1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Fee/KW"),e.k0s())}function r1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.fee_per_kw)," ")}}function c1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Updates"),e.k0s())}function p1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.num_updates)," ")}}function m1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Unsettled Balance (Sats)"),e.k0s())}function u1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.unsettled_balance)," ")}}function d1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Capacity (Sats)"),e.k0s())}function h1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.capacity)," ")}}function _1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Local Reserve (Sats)"),e.k0s())}function f1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.local_chan_reserve_sat)," ")}}function g1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Remote Reserve (Sats)"),e.k0s())}function C1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.remote_chan_reserve_sat)," ")}}function y1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Sats Sent"),e.k0s())}function b1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.total_satoshis_sent)," ")}}function F1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Sats Received"),e.k0s())}function x1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.total_satoshis_received)," ")}}function v1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function T1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.local_balance)," ")}}function k1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function S1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.remote_balance)," ")}}function R1(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Balance Score"),e.k0s())}function E1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",68)(2,"mat-hint",69),e.EFF(3),e.nI1(4,"number"),e.k0s()(),e.nrm(5,"mat-progress-bar",70),e.k0s()),2&t){const n=s.$implicit;e.R7$(3),e.JRh(e.bMT(4,3,n.balancedness||0)),e.R7$(2),e.Y8G("value",e.mNQ(n.local_balance&&n.local_balance>0?+n.local_balance/(+n.local_balance+ +n.remote_balance)*100:0))}}function I1(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",71)(1,"div",72)(2,"mat-select",73),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",74),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onChannelUpdate("all"))}),e.EFF(5,"Update Fee Policy"),e.k0s(),e.j41(6,"mat-option",74),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onDownloadCSV())}),e.EFF(7,"Download CSV"),e.k0s()()()()}}function L1(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-option",74),e.bIt("click",function(){r.eBV(n);const o=e.XpG().$implicit,a=e.XpG();return r.Njj(a.onCircularRebalance(o))}),e.EFF(1,"Circular Rebalance"),e.k0s()}}function w1(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-option",74),e.bIt("click",function(){r.eBV(n);const o=e.XpG().$implicit,a=e.XpG();return r.Njj(a.onLoopOut(o))}),e.EFF(1,"Loop Out"),e.k0s()}}function j1(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",75)(1,"div",72)(2,"mat-select",76),e.nrm(3,"mat-select-trigger"),e.j41(4,"perfect-scrollbar")(5,"mat-option",74),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG();return r.Njj(l.onChannelClick(a,o))}),e.EFF(6,"View Info"),e.k0s(),e.j41(7,"mat-option",74),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onViewRemotePolicy(o))}),e.EFF(8,"View Remote Fee "),e.k0s(),e.j41(9,"mat-option",74),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onChannelUpdate(o))}),e.EFF(10,"Update Fee Policy"),e.k0s(),e.DNE(11,L1,2,0,"mat-option",77)(12,w1,2,0,"mat-option",77),e.j41(13,"mat-option",74),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onChannelClose(o))}),e.EFF(14,"Close Channel"),e.k0s()()()()()}if(2&t){const n=e.XpG();e.R7$(11),e.Y8G("ngIf",+n.versionsArr[0]>0||+n.versionsArr[1]>=9),e.R7$(),e.Y8G("ngIf",n.selNode.swapServerUrl)}}function G1(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No peers connected. Add a peer in order to open a channel."),e.k0s())}function D1(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No channel available."),e.k0s())}function N1(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting channels..."),e.k0s())}function P1(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function $1(t,s){if(1&t&&(e.j41(0,"td",78),e.DNE(1,G1,2,0,"p",79)(2,D1,2,0,"p",79)(3,N1,2,0,"p",79)(4,P1,2,1,"p",79),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",n.numPeers<1&&(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&(null==n.apiCallStatus?null:n.apiCallStatus.status)===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",n.numPeers>0&&(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&(null==n.apiCallStatus?null:n.apiCallStatus.status)===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&(null==n.apiCallStatus?null:n.apiCallStatus.status)===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&(null==n.apiCallStatus?null:n.apiCallStatus.status)===n.apiCallStatusEnum.ERROR)}}function A1(t,s){if(1&t&&e.nrm(0,"tr",80),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,Lr,(null==n.channels?null:n.channels.data)&&(null==n.channels||null==n.channels.data?null:n.channels.data.length)>0))}}function M1(t,s){1&t&&e.nrm(0,"tr",81)}function B1(t,s){1&t&&e.nrm(0,"tr",82)}let O1=(()=>{var t;class s{constructor(i,o,a,l,p,m,v,b){this.logger=i,this.store=o,this.lndEffects=a,this.commonService=l,this.rtlEffects=p,this.decimalPipe=m,this.loopService=v,this.camelCaseWithReplace=b,this.nodePageDefs=c._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open",recordsPerPage:c.md,sortBy:"balancedness",sortOrder:c.oi.DESCENDING},this.timeUnit="mins:secs",this.userPersonaEnum=c.HW,this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new u.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.selFilter="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.versionsArr=[],this.faEye=x.pS3,this.faEyeSlash=x.k6j,this.targetConf=6,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(H._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(F.pI).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.information=i,this.information&&this.information.version&&(this.versionsArr=this.information.version.split("."))}),this.store.select(F.$G).pipe((0,g.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("private"),this.displayedColumns.unshift("active"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(F.os).pipe((0,g.Q)(this.unSubs[3])).subscribe(i=>{this.numPeers=i.peers&&i.peers.length?i.peers.length:0}),this.store.select(F.$7).pipe((0,g.Q)(this.unSubs[4])).subscribe(i=>{this.totalBalance=i.blockchainBalance?.total_balance?+i.blockchainBalance?.total_balance:0}),this.store.select(F.BM).pipe((0,g.Q)(this.unSubs[5])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=this.calculateUptime(i.channels),this.channelsData.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(i)})}ngAfterViewInit(){this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onViewRemotePolicy(i){this.store.dispatch((0,T.ij)({payload:{uiMessage:c.MZ.GET_REMOTE_POLICY,channelID:i.chan_id?.toString()+"/"+this.information.identity_pubkey}})),this.lndEffects.setLookup.pipe((0,W.s)(1)).subscribe(o=>{if(!o.fee_base_msat&&!o.fee_rate_milli_msat&&!o.time_lock_delta)return!1;const a=[[{key:"fee_base_msat",value:o.fee_base_msat,title:"Base Fees (mSats)",width:25,type:c.UN.NUMBER},{key:"fee_rate_milli_msat",value:o.fee_rate_milli_msat,title:"Fee Rate (milli mSats)",width:25,type:c.UN.NUMBER},{key:"fee_rate_milli_msat",value:o.fee_rate_milli_msat/1e4,title:"Fee Rate (%)",width:25,type:c.UN.NUMBER,digitsInfo:"1.0-8"},{key:"time_lock_delta",value:o.time_lock_delta,title:"Time Lock Delta",width:25,type:c.UN.NUMBER}]],l="Remote policy for Channel: "+(i.remote_alias||i.chan_id?i.remote_alias&&i.chan_id?i.remote_alias+" ("+i.chan_id+")":i.remote_alias?i.remote_alias:i.chan_id:i.channel_point);setTimeout(()=>{this.store.dispatch((0,I.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:l,message:a}}}))},0)})}onCircularRebalance(i){this.store.dispatch((0,I.xO)({payload:{data:{message:{channels:this.channelsData,selChannel:i},component:ur}}}))}onChannelUpdate(i){"all"===i?(this.store.dispatch((0,I.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update All Channels",message:[],titleMessage:"Update fee policy for all channels",flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSat)",inputType:c.UN.NUMBER,inputValue:1e3,step:100,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:c.UN.NUMBER,inputValue:1,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:c.UN.NUMBER,inputValue:40,width:32}]}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[6])).subscribe(a=>{a&&this.store.dispatch((0,T.fy)({payload:{baseFeeMsat:a[0].inputValue,feeRate:a[1].inputValue,timeLockDelta:a[2].inputValue,chanPoint:"all"}}))})):(this.myChanPolicy={fee_base_msat:0,fee_rate_milli_msat:0,time_lock_delta:0,min_htlc_msat:0,max_htlc_msat:0},this.store.dispatch((0,T.ij)({payload:{uiMessage:c.MZ.GET_CHAN_POLICY,channelID:i.chan_id.toString()}})),this.lndEffects.setLookup.pipe((0,W.s)(1)).subscribe(o=>{this.myChanPolicy=o.node1_pub===this.information.identity_pubkey?o.node1_policy:o.node2_pub===this.information.identity_pubkey?o.node2_policy:{fee_base_msat:0,fee_rate_milli_msat:0,time_lock_delta:0},this.logger.info(this.myChanPolicy);const a="Update fee policy for Channel: "+(i.remote_alias||i.chan_id?i.remote_alias&&i.chan_id?i.remote_alias+" ("+i.chan_id+")":i.remote_alias?i.remote_alias:i.chan_id:i.channel_point),l=[];setTimeout(()=>{this.store.dispatch((0,I.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Update Fee Policy",titleMessage:a,noBtnText:"Cancel",yesBtnText:"Update Channel",message:l,flgShowInput:!0,hasAdvanced:!0,getInputs:[{placeholder:"Base Fee (mSat)",inputType:c.UN.NUMBER,inputValue:""===this.myChanPolicy.fee_base_msat?0:this.myChanPolicy.fee_base_msat,step:100,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:c.UN.NUMBER,inputValue:this.myChanPolicy.fee_rate_milli_msat,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:c.UN.NUMBER,inputValue:this.myChanPolicy.time_lock_delta,width:32},{placeholder:"Minimum HTLC (mSat)",inputType:c.UN.NUMBER,inputValue:""===this.myChanPolicy.min_htlc?0:this.myChanPolicy.min_htlc,width:49,advancedField:!0},{placeholder:"Maximum HTLC (mSat)",inputType:c.UN.NUMBER,inputValue:""===this.myChanPolicy.max_htlc_msat?0:this.myChanPolicy.max_htlc_msat,width:49,advancedField:!0}]}}}))},0)}),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[7])).subscribe(o=>{if(o){const a={baseFeeMsat:o[0].inputValue,feeRate:o[1].inputValue,timeLockDelta:o[2].inputValue,chanPoint:i.channel_point};o.length>3&&o[3]&&o[4]&&(a.minHtlcMsat=o[3].inputValue,a.maxHtlcMsat=o[4].inputValue),this.store.dispatch((0,T.fy)({payload:a}))}})),this.applyFilter()}onChannelClose(i){i.active&&this.store.dispatch((0,T.$Q)()),this.store.dispatch((0,I.xO)({payload:{data:{channel:i,component:Sr}}}))}onChannelClick(i,o){this.store.dispatch((0,I.xO)({payload:{data:{channel:i,selNode:this.selNode,showCopy:!0,component:we}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.channels.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.active?"active":"inactive")+(i.chan_id?i.chan_id.toLowerCase():"")+(i.remote_pubkey?i.remote_pubkey.toLowerCase():"")+(i.remote_alias?i.remote_alias.toLowerCase():"")+(i.capacity?i.capacity:"")+(i.local_balance?i.local_balance:"")+(i.remote_balance?i.remote_balance:"")+(i.total_satoshis_sent?i.total_satoshis_sent:"")+(i.total_satoshis_received?i.total_satoshis_received:"")+(i.commit_fee?i.commit_fee:"")+(i.private?"private":"public");break;case"active":a=i?.active?"active":"inactive";break;case"private":a=i?.private?"private":"public";break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"active"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}loadChannelsTable(i){this.channels=new u.I6([...i]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}calculateUptime(i){let m=60,v=1,b=0;switch(i.forEach(S=>{S.uptime&&+S.uptime>b&&(b=+S.uptime)}),!0){case b<3600:this.timeUnit="Mins:Secs",m=60,v=1;break;case b>=3600&&b<86400:this.timeUnit="Hrs:Mins",m=3600,v=60;break;case b>=86400&&b<31536e3:this.timeUnit="Days:Hrs",m=86400,v=3600;break;case b>31536e3:this.timeUnit="Yrs:Days",m=31536e3,v=86400;break;default:this.timeUnit="Mins:Secs",m=60,v=1}return i.forEach(S=>{S.uptime_str=S.uptime?this.decimalPipe.transform(Math.floor(+S.uptime/m),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.uptime%m/v),"2.0-0"):"---",S.lifetime_str=S.lifetime?this.decimalPipe.transform(Math.floor(+S.lifetime/m),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.lifetime%m/v),"2.0-0"):"---"}),i}onLoopOut(i){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,g.Q)(this.unSubs[8])).subscribe(o=>{this.store.dispatch((0,I.xO)({payload:{minHeight:"56rem",data:{channel:i,minQuote:o[0],maxQuote:o[1],direction:c.C7.LOOP_OUT,component:Je.D}}}))})}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Open-channels")}percentHintFunction(i){return(i/1e4).toString()+"%"}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU(L.il),e.rXU(me.L),e.rXU($.h),e.rXU(_e.H),e.rXU(_.QX),e.rXU(Qe.Q),e.rXU(J.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-open-table"]],viewQuery:function(o,a){if(1&o&&(e.GBs(R.B4,5),e.GBs(G.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:E.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:G.xX,useValue:(0,c.on)("Channels")}])],decls:96,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","active"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private",4,"matHeaderCellDef"],["matColumnDef","remote_alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","remote_pubkey"],["matColumnDef","channel_point"],["matColumnDef","chan_id"],["matColumnDef","initiator"],["matColumnDef","static_remote_key"],["matColumnDef","uptime_str"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","lifetime_str"],["matColumnDef","commit_fee"],["matColumnDef","commit_weight"],["matColumnDef","fee_per_kw"],["matColumnDef","num_updates"],["matColumnDef","unsettled_balance"],["matColumnDef","capacity"],["matColumnDef","local_chan_reserve_sat"],["matColumnDef","remote_chan_reserve_sat"],["matColumnDef","total_satoshis_sent"],["matColumnDef","total_satoshis_received"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","5",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active"],["mat-cell",""],["class","dot green","matTooltip","Active","matTooltipPosition","right",4,"ngIf"],["class","dot grey","matTooltip","Inactive","matTooltipPosition","right",4,"ngIf"],["matTooltip","Active","matTooltipPosition","right",1,"dot","green"],["matTooltip","Inactive","matTooltipPosition","right",1,"dot","grey"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private"],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2),e.nrm(2,"div",3),e.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",6),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.selFilterBy,m)||(a.selFilterBy=m),r.Njj(m)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,wr,2,2,"mat-option",7),e.k0s()()(),e.j41(10,"mat-form-field",5)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.selFilter,m)||(a.selFilter=m),r.Njj(m)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,jr,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,Gr,1,0,"th",13)(20,Pr,3,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,$r,1,0,"th",16)(23,Br,3,2,"td",14),e.bVm(),e.qex(24,17),e.DNE(25,Or,2,0,"th",18)(26,Vr,4,4,"td",14),e.bVm(),e.qex(27,19),e.DNE(28,Yr,2,0,"th",18)(29,Xr,4,4,"td",14),e.bVm(),e.qex(30,20),e.DNE(31,Ur,2,0,"th",18)(32,Hr,4,4,"td",14),e.bVm(),e.qex(33,21),e.DNE(34,zr,2,0,"th",18)(35,qr,4,4,"td",14),e.bVm(),e.qex(36,22),e.DNE(37,Jr,2,0,"th",18)(38,Qr,2,1,"td",14),e.bVm(),e.qex(39,23),e.DNE(40,Wr,2,0,"th",18)(41,Zr,2,1,"td",14),e.bVm(),e.qex(42,24),e.DNE(43,Kr,2,1,"th",25)(44,e1,3,1,"td",14),e.bVm(),e.qex(45,26),e.DNE(46,t1,2,1,"th",25)(47,n1,3,1,"td",14),e.bVm(),e.qex(48,27),e.DNE(49,i1,2,0,"th",25)(50,a1,4,3,"td",14),e.bVm(),e.qex(51,28),e.DNE(52,s1,2,0,"th",25)(53,o1,4,3,"td",14),e.bVm(),e.qex(54,29),e.DNE(55,l1,2,0,"th",25)(56,r1,4,3,"td",14),e.bVm(),e.qex(57,30),e.DNE(58,c1,2,0,"th",25)(59,p1,4,3,"td",14),e.bVm(),e.qex(60,31),e.DNE(61,m1,2,0,"th",25)(62,u1,4,3,"td",14),e.bVm(),e.qex(63,32),e.DNE(64,d1,2,0,"th",25)(65,h1,4,3,"td",14),e.bVm(),e.qex(66,33),e.DNE(67,_1,2,0,"th",25)(68,f1,4,3,"td",14),e.bVm(),e.qex(69,34),e.DNE(70,g1,2,0,"th",25)(71,C1,4,3,"td",14),e.bVm(),e.qex(72,35),e.DNE(73,y1,2,0,"th",25)(74,b1,4,3,"td",14),e.bVm(),e.qex(75,36),e.DNE(76,F1,2,0,"th",25)(77,x1,4,3,"td",14),e.bVm(),e.qex(78,37),e.DNE(79,v1,2,0,"th",25)(80,T1,4,3,"td",14),e.bVm(),e.qex(81,38),e.DNE(82,k1,2,0,"th",25)(83,S1,4,3,"td",14),e.bVm(),e.qex(84,39),e.DNE(85,R1,2,0,"th",18)(86,E1,6,5,"td",14),e.bVm(),e.qex(87,40),e.DNE(88,I1,8,0,"th",41)(89,j1,15,2,"td",42),e.bVm(),e.qex(90,43),e.DNE(91,$1,5,4,"td",44),e.bVm(),e.DNE(92,A1,1,3,"tr",45)(93,M1,1,0,"tr",46)(94,B1,1,0,"tr",47),e.k0s()(),e.nrm(95,"mat-paginator",48),e.k0s()}2&o&&(e.R7$(7),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,Rr).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",(null==a.apiCallStatus?null:a.apiCallStatus.status)===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",e.eq3(15,Er,""!==a.errorMessage)),e.R7$(76),e.Y8G("matFooterRowDef",e.lJ4(17,Ir)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("hidePageSize",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[_.YU,_.Sq,_.bT,_.B3,d.me,d.BC,d.vS,O.aY,M.fg,C.rl,C.nJ,C.MV,V.HM,f.DJ,f.sA,f.UI,j.PW,j.eI,E.VO,E.$2,X.wT,R.B4,R.aE,u.Zl,u.tL,u.ji,u.cC,u.YV,u.iL,u.Zq,u.xW,u.KS,u.$R,u.Qo,u.YZ,u.NB,u.iF,ee.oV,G.iy,B.ZF,B.Ld,_.QX],styles:[".mat-column-active[_ngcontent-%COMP%], .mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]}))}return t(),s})();const V1=["outputIdx"];function Y1(t,s){if(1&t&&(e.j41(0,"div",31),e.nrm(1,"fa-icon",16),e.j41(2,"span"),e.EFF(3,"Change output balance "),e.j41(4,"strong"),e.EFF(5),e.nI1(6,"number"),e.k0s(),e.EFF(7," (Sats) may be insufficient for fee bumping, depending on the prevailing fee rates."),e.k0s()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(4),e.JRh(e.bMT(6,2,n.dustOutputValue))}}function X1(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Index for change output is required."),e.k0s())}function U1(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid index value."),e.k0s())}function H1(t,s){if(1&t&&(e.j41(0,"mat-option",32),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n.id),e.R7$(),e.SpI(" ",n.name," ")}}function z1(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function q1(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",20)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.j41(3,"input",33,1),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.blocks,o)||(a.blocks=o),r.Njj(o)}),e.k0s(),e.DNE(5,z1,2,0,"mat-error",22),e.k0s()}if(2&t){const n=e.XpG();e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.blocks),e.R7$(2),e.Y8G("ngIf",!n.blocks)}}function J1(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function Q1(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",20)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.j41(3,"input",34,2),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.fees,o)||(a.fees=o),r.Njj(o)}),e.k0s(),e.DNE(5,J1,2,0,"mat-error",22),e.k0s()}if(2&t){const n=e.XpG();e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.fees),e.R7$(2),e.Y8G("ngIf",!n.fees)}}function W1(t,s){if(1&t&&(e.j41(0,"div",35),e.nrm(1,"fa-icon",16),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(2),e.JRh(n.bumpFeeError)}}let nt=(()=>{var t;class s{set outputIndx(i){i&&(this.outputIdx=i)}constructor(i,o,a,l,p){this.dialogRef=i,this.data=o,this.logger=a,this.dataService=l,this.store=p,this.faUpRightFromSquare=x.k02,this.txid="",this.outputIndex=null,this.transTypes=[...c.XG],this.selTransType="2",this.blocks=null,this.fees=null,this.faCopy=x.jPR,this.faInfoCircle=x.iW_,this.faExclamationTriangle=x.zpE,this.bumpFeeError="",this.flgShowDustWarning=!1,this.dustOutputValue=0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){if(this.transTypes=this.transTypes.splice(1),this.data.pendingChannel&&this.data.pendingChannel.channel){const i=this.data.pendingChannel.channel?.channel_point?.split(":")||[];this.txid=i[0]||(this.data.pendingChannel.channel&&this.data.pendingChannel.channel.channel_point?this.data.pendingChannel.channel.channel_point:""),this.outputIndex=i[1]&&""!==i[1]&&0==+i[1]?1:0}else this.data.selUTXO&&this.data.selUTXO.outpoint&&(this.txid=this.data.selUTXO.outpoint.txid_str||"",this.outputIndex=this.data.selUTXO.outpoint.output_index||0);this.logger.info(this.txid,this.outputIndex),this.store.select(H._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i,this.logger.info(this.selNode)}),this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[1])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}}),this.dataService.getBlockExplorerTransaction(this.txid).pipe((0,g.Q)(this.unSubs[2])).subscribe({next:i=>{this.dustOutputValue=i.vout[this.outputIndex].value,this.flgShowDustWarning=this.dustOutputValue<1e3},error:i=>{this.logger.error(i)}})}onBumpFee(){if(this.data.pendingChannel&&this.data.pendingChannel.channel){const i=this.data.pendingChannel.channel?.channel_point?.split(":")||[],o=i.length>1&&i[1]&&""!==i[1]?+i[1]:null;if(o&&this.outputIndex===o)return this.outputIdx.control.setErrors({pendingChannelOutputIndex:!0}),!0}if(!this.outputIndex&&0!==this.outputIndex||"1"===this.selTransType&&(!this.blocks||0===this.blocks)||"2"===this.selTransType&&(!this.fees||0===this.fees))return!0;this.dataService.bumpFee(this.txid,this.outputIndex,this.blocks||null,this.fees||null).pipe((0,g.Q)(this.unSubs[3])).subscribe({next:i=>{this.dialogRef.close(!1)},error:i=>{this.logger.error(i),this.bumpFeeError=i.message?i.message:i}})}onExplorerClicked(){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.txid,"_blank")}resetData(){this.bumpFeeError="",this.selTransType="2",this.blocks=null,this.fees=null,this.outputIdx.control.setErrors(null)}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Y.CP),e.rXU(Y.Vh),e.rXU(D.gP),e.rXU(Z.u),e.rXU(L.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-bump-fee"]],viewQuery:function(o,a){if(1&o&&e.GBs(V1,5),2&o){let l;e.mGM(l=e.lsd())&&(a.outputIndx=l.first)}},standalone:!1,decls:46,vars:20,consts:[["outputIndx","ngModel"],["blcks","ngModel"],["fee","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","column","fxFlex.gt-sm","32","fxLayoutAlign","start end"],["autoFocus","","matInput","","type","number","tabindex","1","required","","name","outputIndx",3,"ngModelChange","step","min","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex.gt-sm","32"],["tabindex","2",3,"valueChange","selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex.gt-sm","32","fxLayoutAlign","start end",4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","tabindex","5","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit","tabindex","6",3,"click"],["fxFlex","100",1,"alert","alert-warn"],[3,"value"],["matInput","","type","number","name","blocks","required","","tabindex","3",3,"ngModelChange","step","min","ngModel"],["matInput","","type","number","name","fees","required","","tabindex","4",3,"ngModelChange","step","min","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",3)(1,"div",4)(2,"mat-card-header",5)(3,"div",6)(4,"span",7),e.EFF(5,"Bump Fee"),e.k0s()(),e.j41(6,"button",8),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",9)(9,"form",10)(10,"div",11)(11,"p",12),e.EFF(12),e.j41(13,"fa-icon",13),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onExplorerClicked())}),e.k0s()(),e.j41(14,"div",14)(15,"div",15),e.nrm(16,"fa-icon",16),e.j41(17,"span",17)(18,"div"),e.EFF(19,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(20,"div"),e.EFF(21),e.k0s(),e.j41(22,"div"),e.EFF(23),e.k0s(),e.j41(24,"div"),e.EFF(25),e.k0s()()(),e.DNE(26,Y1,8,4,"div",18),e.j41(27,"div",19)(28,"mat-form-field",20)(29,"mat-label"),e.EFF(30,"Index for Change Output"),e.k0s(),e.j41(31,"input",21,0),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.outputIndex,m)||(a.outputIndex=m),r.Njj(m)}),e.k0s(),e.DNE(33,X1,2,0,"mat-error",22)(34,U1,2,0,"mat-error",22),e.k0s(),e.j41(35,"mat-form-field",23)(36,"mat-select",24),e.mxI("valueChange",function(m){return r.eBV(l),e.DH7(a.selTransType,m)||(a.selTransType=m),r.Njj(m)}),e.bIt("selectionChange",function(){return r.eBV(l),a.blocks=null,r.Njj(a.fees=null)}),e.DNE(37,H1,2,2,"mat-option",25),e.k0s()(),e.DNE(38,q1,6,4,"mat-form-field",26)(39,Q1,6,4,"mat-form-field",26),e.k0s(),e.DNE(40,W1,4,2,"div",27),e.k0s()(),e.j41(41,"div",28)(42,"button",29),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(43,"Clear"),e.k0s(),e.j41(44,"button",30),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onBumpFee())}),e.EFF(45),e.k0s()()()()()()}if(2&o){const l=e.sdS(32);e.R7$(12),e.SpI(" ",a.txid?"Bump fee for transaction ID: "+a.txid:"Bump fee: "," "),e.R7$(),e.Y8G("matTooltip",e.mNQ("Link to "+a.selNode.settings.blockExplorerUrl))("icon",a.faUpRightFromSquare),e.R7$(3),e.Y8G("icon",a.faInfoCircle),e.R7$(5),e.SpI("- High: ",a.recommendedFee.fastestFee||"Unknown"),e.R7$(2),e.SpI("- Medium: ",a.recommendedFee.halfHourFee||"Unknown"),e.R7$(2),e.SpI("- Low: ",a.recommendedFee.hourFee||"Unknown"),e.R7$(),e.Y8G("ngIf",a.flgShowDustWarning),e.R7$(5),e.Y8G("step",1)("min",0),e.R50("ngModel",a.outputIndex),e.R7$(2),e.Y8G("ngIf",null==l.errors?null:l.errors.required),e.R7$(),e.Y8G("ngIf",null==l.errors?null:l.errors.OutputIndexError),e.R7$(2),e.R50("value",a.selTransType),e.R7$(),e.Y8G("ngForOf",a.transTypes),e.R7$(),e.Y8G("ngIf","1"===a.selTransType),e.R7$(),e.Y8G("ngIf","2"===a.selTransType),e.R7$(),e.Y8G("ngIf",""!==a.bumpFeeError),e.R7$(5),e.JRh(""!==a.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},dependencies:[_.Sq,_.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,O.aY,N.$z,k.m2,k.MM,M.fg,C.rl,C.nJ,C.TL,f.DJ,f.sA,f.UI,E.VO,X.wT,ee.oV,te.N,ae.V,_.QX],encapsulation:2}))}return t(),s})();const xe=t=>({"error-border bordered-box":t,"bordered-box":!0}),Z1=()=>["no_pending_open"],K1=()=>["no_pending_force_closing"],ec=()=>["no_pending_closing"],tc=()=>["no_pending_wait_closing"],Q=t=>({width:t}),De=t=>({"display-none":t}),nc=t=>({"py-0":!0,"display-none":t});function ic(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function ac(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function sc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function oc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Q,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_alias)}}function lc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function rc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Q,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_node_pub)}}function cc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function pc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Q,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.channel_point)}}function mc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function uc(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.channel.initiator,"initiator_"))}}function dc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function hc(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,n.channel.commitment_type,"commitment_type","_"))}}function _c(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Confirmation Height"),e.k0s())}function fc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.confirmation_height))}}function gc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function Cc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.commit_fee))}}function yc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Commit Weight"),e.k0s())}function bc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.commit_weight))}}function Fc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Fee/KW"),e.k0s())}function xc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.fee_per_kw))}}function vc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function Tc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.capacity))}}function kc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function Sc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.local_balance))}}function Rc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function Ec(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.remote_balance))}}function Ic(t,s){1&t&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function Lc(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",49)(1,"div",48)(2,"mat-select",50),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",51),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onOpenClick(o))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",51),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onBumpFee(o))}),e.EFF(7,"Bump Fee"),e.k0s()()()()}}function wc(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function jc(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function Gc(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function Dc(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,wc,2,0,"p",53)(2,jc,2,0,"p",53)(3,Gc,2,1,"p",53),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!n.pendingOpenChannels||!(null!=n.pendingOpenChannels&&n.pendingOpenChannels.data)||(null==n.pendingOpenChannels||null==n.pendingOpenChannels.data?null:n.pendingOpenChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!n.pendingOpenChannels||!(null!=n.pendingOpenChannels&&n.pendingOpenChannels.data)||(null==n.pendingOpenChannels||null==n.pendingOpenChannels.data?null:n.pendingOpenChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!n.pendingOpenChannels||!(null!=n.pendingOpenChannels&&n.pendingOpenChannels.data)||(null==n.pendingOpenChannels||null==n.pendingOpenChannels.data?null:n.pendingOpenChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Nc(t,s){if(1&t&&e.nrm(0,"tr",54),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,De,n.pendingOpenChannels&&(null==n.pendingOpenChannels?null:n.pendingOpenChannels.data)&&(null==n.pendingOpenChannels||null==n.pendingOpenChannels.data?null:n.pendingOpenChannels.data.length)>0))}}function Pc(t,s){1&t&&e.nrm(0,"tr",55)}function $c(t,s){1&t&&e.nrm(0,"tr",56)}function Ac(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function Mc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Bc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Q,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.closing_txid)}}function Oc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function Vc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Q,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_alias)}}function Yc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function Xc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Q,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_node_pub)}}function Uc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function Hc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Q,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.channel_point)}}function zc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function qc(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.channel.initiator,"initiator_"))}}function Jc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function Qc(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,n.channel.commitment_type,"commitment_type","_"))}}function Wc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Limbo Balance (Sats)"),e.k0s())}function Zc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.limbo_balance))}}function Kc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Maturity Height"),e.k0s())}function ep(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.maturity_height))}}function tp(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Blocks till Maturity"),e.k0s())}function np(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.blocks_til_maturity))}}function ip(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Recovered Balance (Sats)"),e.k0s())}function ap(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.recovered_balance))}}function sp(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function op(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.capacity))}}function lp(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function rp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.local_balance))}}function cp(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function pp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.remote_balance))}}function mp(t,s){1&t&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function up(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",49)(1,"button",57),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onForceClosingClick(o))}),e.EFF(2,"View Info"),e.k0s()()}}function dp(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function hp(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function _p(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function fp(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,dp,2,0,"p",53)(2,hp,2,0,"p",53)(3,_p,2,1,"p",53),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!n.pendingForceClosingChannels||!(null!=n.pendingForceClosingChannels&&n.pendingForceClosingChannels.data)||(null==n.pendingForceClosingChannels||null==n.pendingForceClosingChannels.data?null:n.pendingForceClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!n.pendingForceClosingChannels||!(null!=n.pendingForceClosingChannels&&n.pendingForceClosingChannels.data)||(null==n.pendingForceClosingChannels||null==n.pendingForceClosingChannels.data?null:n.pendingForceClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!n.pendingForceClosingChannels||!(null!=n.pendingForceClosingChannels&&n.pendingForceClosingChannels.data)||(null==n.pendingForceClosingChannels||null==n.pendingForceClosingChannels.data?null:n.pendingForceClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function gp(t,s){if(1&t&&e.nrm(0,"tr",54),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,De,n.pendingForceClosingChannels&&(null==n.pendingForceClosingChannels?null:n.pendingForceClosingChannels.data)&&(null==n.pendingForceClosingChannels||null==n.pendingForceClosingChannels.data?null:n.pendingForceClosingChannels.data.length)>0))}}function Cp(t,s){1&t&&e.nrm(0,"tr",55)}function yp(t,s){1&t&&e.nrm(0,"tr",56)}function bp(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function Fp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function xp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Q,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.closing_txid)}}function vp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function Tp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Q,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_alias)}}function kp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function Sp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Q,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_node_pub)}}function Rp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function Ep(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Q,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.channel_point)}}function Ip(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function Lp(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.channel.initiator,"initiator_"))}}function wp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function jp(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,n.channel.commitment_type,"commitment_type","_"))}}function Gp(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function Dp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.capacity))}}function Np(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function Pp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.local_balance))}}function $p(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function Ap(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.remote_balance))}}function Mp(t,s){1&t&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function Bp(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",49)(1,"button",58),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onClosingClick(o))}),e.EFF(2,"View Info"),e.k0s()()}}function Op(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function Vp(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function Yp(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function Xp(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,Op,2,0,"p",53)(2,Vp,2,0,"p",53)(3,Yp,2,1,"p",53),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!n.pendingClosingChannels||!(null!=n.pendingClosingChannels&&n.pendingClosingChannels.data)||(null==n.pendingClosingChannels||null==n.pendingClosingChannels.data?null:n.pendingClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!n.pendingClosingChannels||!(null!=n.pendingClosingChannels&&n.pendingClosingChannels.data)||(null==n.pendingClosingChannels||null==n.pendingClosingChannels.data?null:n.pendingClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!n.pendingClosingChannels||!(null!=n.pendingClosingChannels&&n.pendingClosingChannels.data)||(null==n.pendingClosingChannels||null==n.pendingClosingChannels.data?null:n.pendingClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Up(t,s){if(1&t&&e.nrm(0,"tr",54),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,De,n.pendingClosingChannels&&(null==n.pendingClosingChannels?null:n.pendingClosingChannels.data)&&(null==n.pendingClosingChannels||null==n.pendingClosingChannels.data?null:n.pendingClosingChannels.data.length)>0))}}function Hp(t,s){1&t&&e.nrm(0,"tr",55)}function zp(t,s){1&t&&e.nrm(0,"tr",56)}function qp(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function Jp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Qp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Q,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.closing_txid)}}function Wp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function Zp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Q,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_alias)}}function Kp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function em(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Q,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_node_pub)}}function tm(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function nm(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Q,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.channel_point)}}function im(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function am(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.channel.initiator,"initiator_"))}}function sm(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function om(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,n.channel.commitment_type,"commitment_type","_"))}}function lm(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Limbo Balance (Sats)"),e.k0s())}function rm(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.limbo_balance))}}function cm(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function pm(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.capacity))}}function mm(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function um(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.local_balance))}}function dm(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function hm(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.remote_balance))}}function _m(t,s){1&t&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function fm(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",49)(1,"button",59),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onWaitClosingClick(o))}),e.EFF(2,"View Info"),e.k0s()()}}function gm(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function Cm(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function ym(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function bm(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,gm,2,0,"p",53)(2,Cm,2,0,"p",53)(3,ym,2,1,"p",53),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!n.pendingWaitClosingChannels||!(null!=n.pendingWaitClosingChannels&&n.pendingWaitClosingChannels.data)||(null==n.pendingWaitClosingChannels||null==n.pendingWaitClosingChannels.data?null:n.pendingWaitClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!n.pendingWaitClosingChannels||!(null!=n.pendingWaitClosingChannels&&n.pendingWaitClosingChannels.data)||(null==n.pendingWaitClosingChannels||null==n.pendingWaitClosingChannels.data?null:n.pendingWaitClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!n.pendingWaitClosingChannels||!(null!=n.pendingWaitClosingChannels&&n.pendingWaitClosingChannels.data)||(null==n.pendingWaitClosingChannels||null==n.pendingWaitClosingChannels.data?null:n.pendingWaitClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Fm(t,s){if(1&t&&e.nrm(0,"tr",54),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,nc,n.pendingWaitClosingChannels&&(null==n.pendingWaitClosingChannels?null:n.pendingWaitClosingChannels.data)&&(null==n.pendingWaitClosingChannels||null==n.pendingWaitClosingChannels.data?null:n.pendingWaitClosingChannels.data.length)>0))}}function xm(t,s){1&t&&e.nrm(0,"tr",55)}function vm(t,s){1&t&&e.nrm(0,"tr",56)}let Tm=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.store=o,this.commonService=a,this.PAGE_ID="peers_channels",this.openTableSetting={tableId:"pending_open",recordsPerPage:c.md,sortBy:"capacity",sortOrder:c.oi.DESCENDING},this.forceClosingTableSetting={tableId:"pending_force_closing",recordsPerPage:c.md,sortBy:"limbo_balance",sortOrder:c.oi.DESCENDING},this.closingTableSetting={tableId:"pending_closing",recordsPerPage:c.md,sortBy:"capacity",sortOrder:c.oi.DESCENDING},this.waitingCloseTableSetting={tableId:"pending_waiting_close",recordsPerPage:c.md,sortBy:"limbo_balance",sortOrder:c.oi.DESCENDING},this.information={},this.pendingChannels={},this.displayedOpenColumns=[],this.pendingOpenChannelsLength=0,this.pendingOpenChannels=new u.I6([]),this.displayedForceClosingColumns=[],this.pendingForceClosingChannelsLength=0,this.pendingForceClosingChannels=new u.I6([]),this.displayedClosingColumns=[],this.pendingClosingChannelsLength=0,this.pendingClosingChannels=new u.I6([]),this.displayedWaitClosingColumns=[],this.pendingWaitClosingChannelsLength=0,this.pendingWaitClosingChannels=new u.I6([]),this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(H._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(F.pI).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(F.$G).pipe((0,g.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.openTableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.openTableSetting.tableId)||c.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.openTableSetting.tableId),this.displayedOpenColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.openTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.openTableSetting.columnSelection)),this.displayedOpenColumns.push("actions"),this.logger.info(this.displayedOpenColumns),this.forceClosingTableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.forceClosingTableSetting.tableId)||c.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.forceClosingTableSetting.tableId),this.displayedForceClosingColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.forceClosingTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.forceClosingTableSetting.columnSelection)),this.displayedForceClosingColumns.push("actions"),this.logger.info(this.displayedForceClosingColumns),this.closingTableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.closingTableSetting.tableId)||c.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.closingTableSetting.tableId),this.displayedClosingColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.closingTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.closingTableSetting.columnSelection)),this.displayedClosingColumns.push("actions"),this.logger.info(this.displayedClosingColumns),this.waitingCloseTableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.waitingCloseTableSetting.tableId)||c.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.waitingCloseTableSetting.tableId),this.displayedWaitClosingColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.waitingCloseTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.waitingCloseTableSetting.columnSelection)),this.displayedWaitClosingColumns.push("actions"),this.logger.info(this.displayedWaitClosingColumns)}),this.store.select(F.Uv).pipe((0,g.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.pendingChannels=i.pendingChannels,this.pendingChannels.pending_open_channels&&this.pendingChannels.pending_open_channels.length&&this.pendingChannels.pending_open_channels.length>0&&this.loadOpenChannelsTable(this.pendingChannels.pending_open_channels),this.pendingChannels.pending_force_closing_channels&&this.pendingChannels.pending_force_closing_channels.length&&this.pendingChannels.pending_force_closing_channels.length>0&&this.loadForceClosingChannelsTable(this.pendingChannels.pending_force_closing_channels),this.pendingChannels.pending_closing_channels&&this.pendingChannels.pending_closing_channels.length&&this.pendingChannels.pending_closing_channels.length>0&&this.loadClosingChannelsTable(this.pendingChannels.pending_closing_channels),this.pendingChannels.waiting_close_channels&&this.pendingChannels.waiting_close_channels.length&&this.pendingChannels.waiting_close_channels.length>0&&this.loadWaitClosingChannelsTable(this.pendingChannels.waiting_close_channels),this.logger.info(i)})}ngAfterViewInit(){this.pendingChannels.pending_open_channels&&this.pendingChannels.pending_open_channels.length&&this.pendingChannels.pending_open_channels.length>0&&this.loadOpenChannelsTable(this.pendingChannels.pending_open_channels),this.pendingChannels.pending_force_closing_channels&&this.pendingChannels.pending_force_closing_channels.length&&this.pendingChannels.pending_force_closing_channels.length>0&&this.loadForceClosingChannelsTable(this.pendingChannels.pending_force_closing_channels),this.pendingChannels.pending_closing_channels&&this.pendingChannels.pending_closing_channels.length&&this.pendingChannels.pending_closing_channels.length>0&&this.loadClosingChannelsTable(this.pendingChannels.pending_closing_channels),this.pendingChannels.waiting_close_channels&&this.pendingChannels.waiting_close_channels.length&&this.pendingChannels.waiting_close_channels.length>0&&this.loadWaitClosingChannelsTable(this.pendingChannels.waiting_close_channels)}onOpenClick(i){const o=JSON.parse(JSON.stringify(i,["commit_weight","confirmation_height","fee_per_kw","commit_fee"],2)),a=JSON.parse(JSON.stringify(i.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),l={};Object.assign(l,o,a),this.store.dispatch((0,I.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Opening Channel Information",message:[[{key:"channel_point",value:l.channel_point,title:"Channel Point",width:100,type:c.UN.STRING,explorerLink:"tx"}],[{key:"remote_node_pub",value:l.remote_node_pub,title:"Peer Node Pubkey",width:100,type:c.UN.STRING}],[{key:"remote_alias",value:l.remote_alias,title:"Peer Alias",width:100,type:c.UN.STRING}],[{key:"capacity",value:l.capacity,title:"Capacity",width:25,type:c.UN.NUMBER},{key:"confirmation_height",value:l.confirmation_height,title:"Confirmation Height",width:25,type:c.UN.NUMBER},{key:"local_balance",value:l.local_balance,title:"Local Balance",width:25,type:c.UN.NUMBER},{key:"remote_balance",value:l.remote_balance,title:"Remote Balance",width:25,type:c.UN.NUMBER}],[{key:"fee_per_kw",value:l.fee_per_kw,title:"Fee/KW",width:25,type:c.UN.NUMBER},{key:"commit_weight",value:l.commit_weight,title:"Commit Weight",width:25,type:c.UN.NUMBER},{key:"commit_fee",value:l.commit_fee,title:"Commit Fee",width:50,type:c.UN.NUMBER}]]}}}))}onBumpFee(i){this.store.dispatch((0,I.xO)({payload:{data:{pendingChannel:i,component:nt}}}))}onForceClosingClick(i){const o=JSON.parse(JSON.stringify(i,["closing_txid","limbo_balance","maturity_height","blocks_til_maturity","recovered_balance"],2)),a=JSON.parse(JSON.stringify(i.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),l={};Object.assign(l,o,a),this.store.dispatch((0,I.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Force Closing Channel Information",message:[[{key:"closing_txid",value:l.closing_txid,title:"Closing Transaction ID",width:100,type:c.UN.STRING}],[{key:"channel_point",value:l.channel_point,title:"Channel Point",width:100,type:c.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:l.remote_alias,title:"Peer Alias",width:25,type:c.UN.STRING},{key:"remote_node_pub",value:l.remote_node_pub,title:"Peer Node Pubkey",width:75,type:c.UN.STRING}],[{key:"capacity",value:l.capacity,title:"Capacity",width:25,type:c.UN.NUMBER},{key:"limbo_balance",value:l.limbo_balance,title:"Limbo Balance",width:25,type:c.UN.NUMBER},{key:"local_balance",value:l.local_balance,title:"Local Balance",width:25,type:c.UN.NUMBER},{key:"remote_balance",value:l.remote_balance,title:"Remote Balance",width:25,type:c.UN.NUMBER}],[{key:"maturity_height",value:l.maturity_height,title:"Maturity Height",width:25,type:c.UN.NUMBER},{key:"blocks_til_maturity",value:l.blocks_til_maturity,title:"Blocks Till Maturity",width:25,type:c.UN.NUMBER},{key:"recovered_balance",value:l.recovered_balance,title:"Recovered Balance",width:50,type:c.UN.NUMBER}]]}}}))}onClosingClick(i){const o=JSON.parse(JSON.stringify(i,["closing_txid"],2)),a=JSON.parse(JSON.stringify(i.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),l={};Object.assign(l,o,a),this.store.dispatch((0,I.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Closing Channel Information",message:[[{key:"closing_txid",value:l.closing_txid,title:"Closing Transaction ID",width:50,type:c.UN.STRING}],[{key:"channel_point",value:l.channel_point,title:"Channel Point",width:100,type:c.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:l.remote_alias,title:"Peer Alias",width:25,type:c.UN.STRING},{key:"remote_node_pub",value:l.remote_node_pub,title:"Peer Node Pubkey",width:75,type:c.UN.STRING}],[{key:"capacity",value:l.capacity,title:"Capacity",width:25,type:c.UN.NUMBER},{key:"local_balance",value:l.local_balance,title:"Local Balance",width:25,type:c.UN.NUMBER},{key:"remote_balance",value:l.remote_balance,title:"Remote Balance",width:50,type:c.UN.NUMBER}]]}}}))}onWaitClosingClick(i){const o=JSON.parse(JSON.stringify(i,["limbo_balance"],2)),a=JSON.parse(JSON.stringify(i.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),l=JSON.parse(JSON.stringify(i.commitments,["local_txid"],2)),p={};Object.assign(p,o,a,l),this.store.dispatch((0,I.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Wait Closing Channel Information",message:[[{key:"local_txid",value:p.local_txid,title:"Transaction ID",width:100,type:c.UN.STRING}],[{key:"channel_point",value:p.channel_point,title:"Channel Point",width:100,type:c.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:p.remote_alias,title:"Peer Alias",width:25,type:c.UN.STRING},{key:"remote_node_pub",value:p.remote_node_pub,title:"Peer Node Pubkey",width:75,type:c.UN.STRING}],[{key:"capacity",value:p.capacity,title:"Capacity",width:25,type:c.UN.NUMBER},{key:"limbo_balance",value:p.limbo_balance,title:"Limbo Balance",width:25,type:c.UN.NUMBER},{key:"local_balance",value:p.local_balance,title:"Local Balance",width:25,type:c.UN.NUMBER},{key:"remote_balance",value:p.remote_balance,title:"Remote Balance",width:25,type:c.UN.NUMBER}]]}}}))}loadOpenChannelsTable(i){this.pendingOpenChannelsLength=i.length?i.length:0,this.pendingOpenChannels=new u.I6([...i]),this.pendingOpenChannels.sort=this.sort,this.pendingOpenChannels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.logger.info(this.pendingOpenChannels)}loadForceClosingChannelsTable(i){this.pendingForceClosingChannelsLength=i.length?i.length:0,this.pendingForceClosingChannels=new u.I6([...i]),this.pendingForceClosingChannels.sort=this.sort,this.pendingForceClosingChannels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.logger.info(this.pendingForceClosingChannels)}loadClosingChannelsTable(i){this.pendingClosingChannelsLength=i.length?i.length:0,this.pendingClosingChannels=new u.I6([...i]),this.pendingClosingChannels.sort=this.sort,this.pendingClosingChannels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.logger.info(this.pendingClosingChannels)}loadWaitClosingChannelsTable(i){this.pendingWaitClosingChannelsLength=i.length?i.length:0,this.pendingWaitClosingChannels=new u.I6([...i]),this.pendingWaitClosingChannels.sort=this.sort,this.pendingWaitClosingChannels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.logger.info(this.pendingWaitClosingChannels)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU(L.il),e.rXU($.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-pending-table"]],viewQuery:function(o,a){if(1&o&&e.GBs(R.B4,5),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first)}},standalone:!1,features:[e.Jv_([{provide:E.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:G.xX,useValue:(0,c.on)("Channels")}])],decls:202,vars:52,consts:[["table",""],["fxLayout","column",1,"mb-2"],[1,"page-title"],["displayMode","flat",1,"mt-1"],["mode","indeterminate",4,"ngIf"],["fxLayout","column",1,"flat-expansion-panel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","remote_alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","remote_node_pub"],["matColumnDef","channel_point"],["matColumnDef","initiator"],["matColumnDef","commitment_type"],["matColumnDef","confirmation_height"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","commit_fee"],["matColumnDef","commit_weight"],["matColumnDef","fee_per_kw"],["matColumnDef","capacity"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_pending_open"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","","fxLayoutAlign","start center",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","closing_txid"],["matColumnDef","limbo_balance"],["matColumnDef","maturity_height"],["matColumnDef","blocks_til_maturity"],["matColumnDef","recovered_balance"],["matColumnDef","no_pending_force_closing"],["matColumnDef","no_pending_closing"],["matColumnDef","no_pending_wait_closing"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","","fxLayoutAlign","start center",3,"ngClass"],["mat-header-row",""],["mat-row",""],["mat-stroked-button","","color","primary","type","button","tabindex","2",1,"table-actions-button",3,"click"],["mat-stroked-button","","color","primary","type","button","tabindex","3",1,"table-actions-button",3,"click"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"]],template:function(o,a){1&o&&(e.j41(0,"div",1)(1,"span",2),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.j41(4,"mat-accordion",3),e.DNE(5,ic,1,0,"mat-progress-bar",4),e.j41(6,"mat-expansion-panel",5)(7,"mat-expansion-panel-header")(8,"mat-panel-title"),e.EFF(9),e.k0s()(),e.j41(10,"div",6),e.DNE(11,ac,1,0,"mat-progress-bar",4),e.j41(12,"table",7,0),e.qex(14,8),e.DNE(15,sc,2,0,"th",9)(16,oc,4,4,"td",10),e.bVm(),e.qex(17,11),e.DNE(18,lc,2,0,"th",9)(19,rc,4,4,"td",10),e.bVm(),e.qex(20,12),e.DNE(21,cc,2,0,"th",9)(22,pc,4,4,"td",10),e.bVm(),e.qex(23,13),e.DNE(24,mc,2,0,"th",9)(25,uc,3,4,"td",10),e.bVm(),e.qex(26,14),e.DNE(27,dc,2,0,"th",9)(28,hc,3,5,"td",10),e.bVm(),e.qex(29,15),e.DNE(30,_c,2,0,"th",16)(31,fc,4,3,"td",10),e.bVm(),e.qex(32,17),e.DNE(33,gc,2,0,"th",16)(34,Cc,4,3,"td",10),e.bVm(),e.qex(35,18),e.DNE(36,yc,2,0,"th",16)(37,bc,4,3,"td",10),e.bVm(),e.qex(38,19),e.DNE(39,Fc,2,0,"th",16)(40,xc,4,3,"td",10),e.bVm(),e.qex(41,20),e.DNE(42,vc,2,0,"th",16)(43,Tc,4,3,"td",10),e.bVm(),e.qex(44,21),e.DNE(45,kc,2,0,"th",16)(46,Sc,4,3,"td",10),e.bVm(),e.qex(47,22),e.DNE(48,Rc,2,0,"th",16)(49,Ec,4,3,"td",10),e.bVm(),e.qex(50,23),e.DNE(51,Ic,3,0,"th",24)(52,Lc,8,0,"td",25),e.bVm(),e.qex(53,26),e.DNE(54,Dc,4,3,"td",27),e.bVm(),e.DNE(55,Nc,1,3,"tr",28)(56,Pc,1,0,"tr",29)(57,$c,1,0,"tr",30),e.k0s()()(),e.DNE(58,Ac,1,0,"mat-progress-bar",4),e.j41(59,"mat-expansion-panel",5)(60,"mat-expansion-panel-header")(61,"mat-panel-title"),e.EFF(62),e.k0s()(),e.j41(63,"div",6)(64,"table",31,0),e.qex(66,32),e.DNE(67,Mc,2,0,"th",9)(68,Bc,4,4,"td",10),e.bVm(),e.qex(69,8),e.DNE(70,Oc,2,0,"th",9)(71,Vc,4,4,"td",10),e.bVm(),e.qex(72,11),e.DNE(73,Yc,2,0,"th",9)(74,Xc,4,4,"td",10),e.bVm(),e.qex(75,12),e.DNE(76,Uc,2,0,"th",9)(77,Hc,4,4,"td",10),e.bVm(),e.qex(78,13),e.DNE(79,zc,2,0,"th",9)(80,qc,3,4,"td",10),e.bVm(),e.qex(81,14),e.DNE(82,Jc,2,0,"th",9)(83,Qc,3,5,"td",10),e.bVm(),e.qex(84,33),e.DNE(85,Wc,2,0,"th",16)(86,Zc,4,3,"td",10),e.bVm(),e.qex(87,34),e.DNE(88,Kc,2,0,"th",16)(89,ep,4,3,"td",10),e.bVm(),e.qex(90,35),e.DNE(91,tp,2,0,"th",16)(92,np,4,3,"td",10),e.bVm(),e.qex(93,36),e.DNE(94,ip,2,0,"th",16)(95,ap,4,3,"td",10),e.bVm(),e.qex(96,20),e.DNE(97,sp,2,0,"th",16)(98,op,4,3,"td",10),e.bVm(),e.qex(99,21),e.DNE(100,lp,2,0,"th",16)(101,rp,4,3,"td",10),e.bVm(),e.qex(102,22),e.DNE(103,cp,2,0,"th",16)(104,pp,4,3,"td",10),e.bVm(),e.qex(105,23),e.DNE(106,mp,3,0,"th",24)(107,up,3,0,"td",25),e.bVm(),e.qex(108,37),e.DNE(109,fp,4,3,"td",27),e.bVm(),e.DNE(110,gp,1,3,"tr",28)(111,Cp,1,0,"tr",29)(112,yp,1,0,"tr",30),e.k0s()()(),e.DNE(113,bp,1,0,"mat-progress-bar",4),e.j41(114,"mat-expansion-panel",5)(115,"mat-expansion-panel-header")(116,"mat-panel-title"),e.EFF(117),e.k0s()(),e.j41(118,"div",6)(119,"table",31,0),e.qex(121,32),e.DNE(122,Fp,2,0,"th",9)(123,xp,4,4,"td",10),e.bVm(),e.qex(124,8),e.DNE(125,vp,2,0,"th",9)(126,Tp,4,4,"td",10),e.bVm(),e.qex(127,11),e.DNE(128,kp,2,0,"th",9)(129,Sp,4,4,"td",10),e.bVm(),e.qex(130,12),e.DNE(131,Rp,2,0,"th",9)(132,Ep,4,4,"td",10),e.bVm(),e.qex(133,13),e.DNE(134,Ip,2,0,"th",9)(135,Lp,3,4,"td",10),e.bVm(),e.qex(136,14),e.DNE(137,wp,2,0,"th",9)(138,jp,3,5,"td",10),e.bVm(),e.qex(139,20),e.DNE(140,Gp,2,0,"th",16)(141,Dp,4,3,"td",10),e.bVm(),e.qex(142,21),e.DNE(143,Np,2,0,"th",16)(144,Pp,4,3,"td",10),e.bVm(),e.qex(145,22),e.DNE(146,$p,2,0,"th",16)(147,Ap,4,3,"td",10),e.bVm(),e.qex(148,23),e.DNE(149,Mp,3,0,"th",24)(150,Bp,3,0,"td",25),e.bVm(),e.qex(151,38),e.DNE(152,Xp,4,3,"td",27),e.bVm(),e.DNE(153,Up,1,3,"tr",28)(154,Hp,1,0,"tr",29)(155,zp,1,0,"tr",30),e.k0s()()(),e.DNE(156,qp,1,0,"mat-progress-bar",4),e.j41(157,"mat-expansion-panel",5)(158,"mat-expansion-panel-header")(159,"mat-panel-title"),e.EFF(160),e.k0s()(),e.j41(161,"div",6)(162,"table",31,0),e.qex(164,32),e.DNE(165,Jp,2,0,"th",9)(166,Qp,4,4,"td",10),e.bVm(),e.qex(167,8),e.DNE(168,Wp,2,0,"th",9)(169,Zp,4,4,"td",10),e.bVm(),e.qex(170,11),e.DNE(171,Kp,2,0,"th",9)(172,em,4,4,"td",10),e.bVm(),e.qex(173,12),e.DNE(174,tm,2,0,"th",9)(175,nm,4,4,"td",10),e.bVm(),e.qex(176,13),e.DNE(177,im,2,0,"th",9)(178,am,3,4,"td",10),e.bVm(),e.qex(179,14),e.DNE(180,sm,2,0,"th",9)(181,om,3,5,"td",10),e.bVm(),e.qex(182,33),e.DNE(183,lm,2,0,"th",16)(184,rm,4,3,"td",10),e.bVm(),e.qex(185,20),e.DNE(186,cm,2,0,"th",16)(187,pm,4,3,"td",10),e.bVm(),e.qex(188,21),e.DNE(189,mm,2,0,"th",16)(190,um,4,3,"td",10),e.bVm(),e.qex(191,22),e.DNE(192,dm,2,0,"th",16)(193,hm,4,3,"td",10),e.bVm(),e.qex(194,23),e.DNE(195,_m,3,0,"th",24)(196,fm,3,0,"td",25),e.bVm(),e.qex(197,39),e.DNE(198,bm,4,3,"td",27),e.bVm(),e.DNE(199,Fm,1,3,"tr",28)(200,xm,1,0,"tr",29)(201,vm,1,0,"tr",30),e.k0s()()()()()),2&o&&(e.R7$(2),e.SpI("Total Limbo Balance: ",e.bMT(3,38,a.pendingChannels.total_limbo_balance)," Sats"),e.R7$(3),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Open (",a.pendingOpenChannelsLength,")"),e.R7$(2),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.openTableSetting.sortBy)("matSortDirection",a.openTableSetting.sortOrder)("dataSource",a.pendingOpenChannels)("ngClass",e.eq3(40,xe,""!==a.errorMessage)),e.R7$(43),e.Y8G("matFooterRowDef",e.lJ4(42,Z1)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedOpenColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedOpenColumns),e.R7$(),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Force Closing (",a.pendingForceClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",a.forceClosingTableSetting.sortBy)("matSortDirection",a.forceClosingTableSetting.sortOrder)("dataSource",a.pendingForceClosingChannels)("ngClass",e.eq3(43,xe,""!==a.errorMessage)),e.R7$(46),e.Y8G("matFooterRowDef",e.lJ4(45,K1)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedForceClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedForceClosingColumns),e.R7$(),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Closing (",a.pendingClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",a.closingTableSetting.sortBy)("matSortDirection",a.closingTableSetting.sortOrder)("dataSource",a.pendingClosingChannels)("ngClass",e.eq3(46,xe,""!==a.errorMessage)),e.R7$(34),e.Y8G("matFooterRowDef",e.lJ4(48,ec)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedClosingColumns),e.R7$(),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Waiting Close (",a.pendingWaitClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",a.waitingCloseTableSetting.sortBy)("matSortDirection",a.waitingCloseTableSetting.sortOrder)("dataSource",a.pendingWaitClosingChannels)("ngClass",e.eq3(49,xe,""!==a.errorMessage)),e.R7$(37),e.Y8G("matFooterRowDef",e.lJ4(51,tc)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedWaitClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedWaitClosingColumns))},dependencies:[_.YU,_.bT,_.B3,N.$z,z.BS,z.GK,z.Z2,z.WN,V.HM,f.DJ,f.sA,f.UI,j.PW,j.eI,E.VO,E.$2,X.wT,R.B4,R.aE,u.Zl,u.tL,u.ji,u.cC,u.YV,u.iL,u.Zq,u.xW,u.KS,u.$R,u.Qo,u.YZ,u.NB,u.iF,B.Ld,_.QX,J.VD],styles:["tr.mat-footer-row[_ngcontent-%COMP%] td.mat-footer-cell[_ngcontent-%COMP%]{border-bottom:none}"]}))}return t(),s})();const km=()=>["all"],Sm=t=>({"error-border":t,"overflow-auto":!0}),Rm=()=>["no_closed_channel"],ue=t=>({width:t}),Em=t=>({"display-none":t});function Im(t,s){if(1&t&&(e.j41(0,"mat-option",36),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function Lm(t,s){1&t&&e.nrm(0,"mat-progress-bar",37)}function wm(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Close Type"),e.k0s())}function jm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",40)(2,"mat-icon",41),e.EFF(3,"info_outline"),e.k0s(),e.EFF(4),e.k0s()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(2),e.Y8G("matTooltip",i.channelClosureType[n.close_type].tooltip),e.R7$(2),e.SpI(" ",i.channelClosureType[n.close_type].name," ")}}function Gm(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Peer"),e.k0s())}function Dm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ue,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.remote_alias)}}function Nm(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Pubkey"),e.k0s())}function Pm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ue,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.remote_pubkey)}}function $m(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Channel Point"),e.k0s())}function Am(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ue,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.channel_point)}}function Mm(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Channel ID"),e.k0s())}function Bm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ue,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id)}}function Om(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Closing Tx Hash"),e.k0s())}function Vm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ue,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.closing_tx_hash)}}function Ym(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Chain Hash"),e.k0s())}function Xm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ue,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chain_hash)}}function Um(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Open Initiator"),e.k0s())}function Hm(t,s){if(1&t&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.open_initiator,"initiator_"))}}function zm(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Close Initiator"),e.k0s())}function qm(t,s){if(1&t&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.close_initiator,"initiator_"))}}function Jm(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Timelocked Balance (Sats)"),e.k0s())}function Qm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.time_locked_balance)," ")}}function Wm(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Capacity (Sats)"),e.k0s())}function Zm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.capacity)," ")}}function Km(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Close Height"),e.k0s())}function eu(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.close_height)," ")}}function tu(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Settled Balance (Sats)"),e.k0s())}function nu(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.settled_balance)," ")}}function iu(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",46)(1,"div",47)(2,"mat-select",48),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",49),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function au(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",39)(1,"span",45)(2,"button",50),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG();return r.Njj(l.onClosedChannelClick(a,o))}),e.EFF(3,"View Info"),e.k0s()()()}}function su(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No closed channel available."),e.k0s())}function ou(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting closed channels..."),e.k0s())}function lu(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function ru(t,s){if(1&t&&(e.j41(0,"td",51),e.DNE(1,su,2,0,"p",52)(2,ou,2,0,"p",52)(3,lu,2,1,"p",52),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=n.closedChannels&&n.closedChannels.data)||(null==n.closedChannels||null==n.closedChannels.data?null:n.closedChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.closedChannels&&n.closedChannels.data)||(null==n.closedChannels||null==n.closedChannels.data?null:n.closedChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.closedChannels&&n.closedChannels.data)||(null==n.closedChannels||null==n.closedChannels.data?null:n.closedChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function cu(t,s){if(1&t&&e.nrm(0,"tr",53),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,Em,(null==n.closedChannels?null:n.closedChannels.data)&&(null==n.closedChannels||null==n.closedChannels.data?null:n.closedChannels.data.length)>0))}}function pu(t,s){1&t&&e.nrm(0,"tr",54)}function mu(t,s){1&t&&e.nrm(0,"tr",55)}let uu=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.store=o,this.commonService=a,this.camelCaseWithReplace=l,this.nodePageDefs=c._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"closed",recordsPerPage:c.md,sortBy:"close_type",sortOrder:c.oi.DESCENDING},this.channelClosureType=c.tj,this.faHistory=x.Int,this.displayedColumns=[],this.closedChannelsData=[],this.closedChannels=new u.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(F.$G).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(F.Bw).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.closedChannelsData=i.closedChannels,this.closedChannelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadClosedChannelsTable(this.closedChannelsData),this.logger.info(i)})}ngAfterViewInit(){this.closedChannelsData.length>0&&this.loadClosedChannelsTable(this.closedChannelsData)}applyFilter(){this.closedChannels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.closedChannels.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(i).toLowerCase();break;case"close_type":a=i.close_type&&this.channelClosureType[i.close_type]&&this.channelClosureType[i.close_type].name?this.channelClosureType[i.close_type].name.toLowerCase():"";break;case"open_initiator":case"close_initiator":a=this.camelCaseWithReplace.transform(i[this.selFilterBy]||"","initiator_").trim().toLowerCase();break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"close_type"===this.selFilterBy||"open_initiator"===this.selFilterBy||"close_initiator"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}onClosedChannelClick(i,o){this.store.dispatch((0,I.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Closed Channel Information",message:[[{key:"close_type",value:this.channelClosureType[i.close_type].name,title:"Close Type",width:30,type:c.UN.STRING},{key:"settled_balance",value:i.settled_balance,title:"Settled Balance",width:30,type:c.UN.NUMBER},{key:"time_locked_balance",value:i.time_locked_balance,title:"Time Locked Balance",width:40,type:c.UN.NUMBER}],[{key:"chan_id",value:i.chan_id,title:"Channel ID",width:30},{key:"capacity",value:i.capacity,title:"Capacity",width:30,type:c.UN.NUMBER},{key:"close_height",value:i.close_height,title:"Close Height",width:40,type:c.UN.NUMBER}],[{key:"remote_alias",value:i.remote_alias,title:"Peer Alias",width:30},{key:"remote_pubkey",value:i.remote_pubkey,title:"Peer Public Key",width:70}],[{key:"channel_point",value:i.channel_point,title:"Channel Point",width:100}],[{key:"closing_tx_hash",value:i.closing_tx_hash,title:"Closing Transaction Hash",width:100,type:c.UN.STRING}]]}}}))}loadClosedChannelsTable(i){this.closedChannels=new u.I6([...i]),this.closedChannels.sort=this.sort,this.closedChannels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.closedChannels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.closedChannels)}onDownloadCSV(){this.closedChannels.data&&this.closedChannels.data.length>0&&this.commonService.downloadFile(this.closedChannels.data,"Closed-channels")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU(L.il),e.rXU($.h),e.rXU(J.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-closed-table"]],viewQuery:function(o,a){if(1&o&&(e.GBs(R.B4,5),e.GBs(G.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:E.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:G.xX,useValue:(0,c.on)("Channels")}])],decls:66,vars:18,consts:[["table",""],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","close_type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","remote_alias"],["matColumnDef","remote_pubkey"],["matColumnDef","channel_point"],["matColumnDef","chan_id"],["matColumnDef","closing_tx_hash"],["matColumnDef","chain_hash"],["matColumnDef","open_initiator"],["matColumnDef","close_initiator"],["matColumnDef","time_locked_balance"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","capacity"],["matColumnDef","close_height"],["matColumnDef","settled_balance"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["matColumnDef","no_closed_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout","row","fxLayoutAlign","start center"],[1,"info-icon","info-icon-text",3,"matTooltip"],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2),e.nrm(2,"div",3),e.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",6),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.selFilterBy,m)||(a.selFilterBy=m),r.Njj(m)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,Im,2,2,"mat-option",7),e.k0s()()(),e.j41(10,"mat-form-field",5)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.selFilter,m)||(a.selFilter=m),r.Njj(m)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,Lm,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,wm,2,0,"th",13)(20,jm,5,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,Gm,2,0,"th",13)(23,Dm,4,4,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,Nm,2,0,"th",13)(26,Pm,4,4,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,$m,2,0,"th",13)(29,Am,4,4,"td",14),e.bVm(),e.qex(30,18),e.DNE(31,Mm,2,0,"th",13)(32,Bm,4,4,"td",14),e.bVm(),e.qex(33,19),e.DNE(34,Om,2,0,"th",13)(35,Vm,4,4,"td",14),e.bVm(),e.qex(36,20),e.DNE(37,Ym,2,0,"th",13)(38,Xm,4,4,"td",14),e.bVm(),e.qex(39,21),e.DNE(40,Um,2,0,"th",13)(41,Hm,3,4,"td",14),e.bVm(),e.qex(42,22),e.DNE(43,zm,2,0,"th",13)(44,qm,3,4,"td",14),e.bVm(),e.qex(45,23),e.DNE(46,Jm,2,0,"th",24)(47,Qm,4,3,"td",14),e.bVm(),e.qex(48,25),e.DNE(49,Wm,2,0,"th",24)(50,Zm,4,3,"td",14),e.bVm(),e.qex(51,26),e.DNE(52,Km,2,0,"th",24)(53,eu,4,3,"td",14),e.bVm(),e.qex(54,27),e.DNE(55,tu,2,0,"th",24)(56,nu,4,3,"td",14),e.bVm(),e.qex(57,28),e.DNE(58,iu,6,0,"th",29)(59,au,4,0,"td",14),e.bVm(),e.qex(60,30),e.DNE(61,ru,4,3,"td",31),e.bVm(),e.DNE(62,cu,1,3,"tr",32)(63,pu,1,0,"tr",33)(64,mu,1,0,"tr",34),e.k0s()(),e.nrm(65,"mat-paginator",35),e.k0s()}2&o&&(e.R7$(7),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,km).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.closedChannels)("ngClass",e.eq3(15,Sm,""!==a.errorMessage)),e.R7$(46),e.Y8G("matFooterRowDef",e.lJ4(17,Rm)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("hidePageSize",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[_.YU,_.Sq,_.bT,_.B3,d.me,d.BC,d.vS,N.$z,oe.An,M.fg,C.rl,C.nJ,V.HM,f.DJ,f.sA,f.UI,j.PW,j.eI,E.VO,E.$2,X.wT,R.B4,R.aE,u.Zl,u.tL,u.ji,u.cC,u.YV,u.iL,u.Zq,u.xW,u.KS,u.$R,u.Qo,u.YZ,u.NB,u.iF,ee.oV,G.iy,B.ZF,B.Ld,_.QX,J.VD],encapsulation:2}))}return t(),s})();const du=()=>["all"],hu=t=>({"error-border":t}),_u=()=>["no_channel"],fu=t=>({"display-none":t});function gu(t,s){if(1&t&&(e.j41(0,"mat-option",33),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function Cu(t,s){1&t&&e.nrm(0,"mat-progress-bar",34)}function yu(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Amount (Sats)"),e.k0s())}function bu(t,s){if(1&t&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==n?null:n.amount)," ")}}function Fu(t,s){if(1&t&&(e.qex(0),e.DNE(1,bu,3,3,"span",39),e.bVm()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function xu(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,Fu,2,1,"ng-container",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.SpI(" Active HTLCs: ",null==n||null==n.pending_htlcs?null:n.pending_htlcs.length," "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function vu(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Alias/Incoming"),e.k0s())}function Tu(t,s){if(1&t&&(e.j41(0,"span",37),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",null!=n&&n.incoming?"Yes":"No"," ")}}function ku(t,s){if(1&t&&(e.qex(0),e.DNE(1,Tu,2,1,"span",41),e.bVm()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Su(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,ku,2,1,"ng-container",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(null==n?null:n.remote_alias),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Ru(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Forwarding Channel"),e.k0s())}function Eu(t,s){if(1&t&&(e.j41(0,"span",37),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",null==n?null:n.forwarding_channel," ")}}function Iu(t,s){if(1&t&&(e.qex(0),e.DNE(1,Eu,2,1,"span",41),e.bVm()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Lu(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,Iu,2,1,"ng-container",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function wu(t,s){1&t&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"HTLC Index"),e.k0s()())}function ju(t,s){if(1&t&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==n?null:n.htlc_index)," ")}}function Gu(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,ju,3,3,"span",39),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Du(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Gu,2,1,"span",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Nu(t,s){1&t&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"Forwarding HTLC Index"),e.k0s()())}function Pu(t,s){if(1&t&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==n?null:n.forwarding_htlc_index)," ")}}function $u(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,Pu,3,3,"span",39),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Au(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,$u,2,1,"span",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Mu(t,s){1&t&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"Expiration Height"),e.k0s()())}function Bu(t,s){if(1&t&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==n?null:n.expiration_height,"1.0-0")," ")}}function Ou(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,Bu,3,4,"span",39),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Vu(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Ou,2,1,"span",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Yu(t,s){1&t&&(e.j41(0,"th",43)(1,"span",40),e.EFF(2,"Hash Lock"),e.k0s()())}function Xu(t,s){if(1&t&&(e.j41(0,"span",40),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",null==n?null:n.hash_lock," ")}}function Uu(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,Xu,2,1,"span",39),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Hu(t,s){if(1&t&&(e.j41(0,"td",44)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Uu,2,1,"span",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function zu(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",48),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function qu(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",53)(1,"button",54),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2).$implicit,l=e.XpG();return r.Njj(l.onHTLCClick(o,a))}),e.EFF(2),e.k0s()()}if(2&t){const n=s.index;e.R7$(2),e.SpI("View ",n+1)}}function Ju(t,s){if(1&t&&(e.j41(0,"div"),e.DNE(1,qu,3,1,"div",52),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Qu(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",49)(1,"span",50)(2,"button",51),e.bIt("click",function(){const o=r.eBV(n).$implicit;return r.Njj(o.is_expanded=!o.is_expanded)}),e.EFF(3),e.k0s()(),e.DNE(4,Ju,2,1,"div",38),e.k0s()}if(2&t){const n=s.$implicit;e.R7$(3),e.JRh(n.is_expanded?"Hide":"Show"),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Wu(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No active htlc available."),e.k0s())}function Zu(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting active htlcs..."),e.k0s())}function Ku(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function ed(t,s){if(1&t&&(e.j41(0,"td",55),e.DNE(1,Wu,2,0,"p",38)(2,Zu,2,0,"p",38)(3,Ku,2,1,"p",38),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function td(t,s){if(1&t&&e.nrm(0,"tr",56),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,fu,(null==n.channels?null:n.channels.data)&&(null==n.channels||null==n.channels.data?null:n.channels.data.length)>0))}}function nd(t,s){1&t&&e.nrm(0,"tr",57)}function id(t,s){1&t&&e.nrm(0,"tr",58)}let ad=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.commonService=o,this.store=a,this.camelCaseWithReplace=l,this.nodePageDefs=c._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"active_HTLCs",recordsPerPage:c.md,sortBy:"expiration_height",sortOrder:c.oi.DESCENDING},this.channels=new u.I6([]),this.channelsJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(F.$G).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(F.BM).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsJSONArr=i.channels?.filter(o=>o.pending_htlcs&&o.pending_htlcs.length>0)||[],this.channelsJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(i)})}ngAfterViewInit(){this.channelsJSONArr.length>0&&this.loadHTLCsTable(this.channelsJSONArr)}onHTLCClick(i,o){this.store.dispatch((0,I.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"HTLC Information",message:[[{key:"remote_alias",value:o.remote_alias,title:"Alias",width:100,type:c.UN.STRING}],[{key:"amount",value:i.amount,title:"Amount (Sats)",width:50,type:c.UN.NUMBER},{key:"incoming",value:i.incoming?"Yes":"No",title:"Incoming",width:50,type:c.UN.STRING}],[{key:"expiration_height",value:i.expiration_height,title:"Expiration Height",width:50,type:c.UN.NUMBER},{key:"hash_lock",value:i.hash_lock,title:"Hash Lock",width:50,type:c.UN.STRING}]]}}}))}onChannelClick(i,o){this.store.dispatch((0,I.xO)({payload:{data:{channel:i,showCopy:!0,component:we}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.channels.filterPredicate=(i,o)=>{let a="";return a="all"===this.selFilterBy?(i.remote_alias?i.remote_alias.toLowerCase():"")+i.pending_htlcs?.map(l=>JSON.stringify(l)+(l.incoming?"yes":"no")):typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString(),a.includes(o)}}loadHTLCsTable(i){this.channels=new u.I6(i?[...i]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,a)=>{switch(a){case"amount":return this.commonService.sortByKey(o.pending_htlcs,a,"number",this.sort?.direction),o.pending_htlcs&&o.pending_htlcs.length?o.pending_htlcs.length:null;case"incoming":return this.commonService.sortByKey(o.pending_htlcs,a,"boolean",this.sort?.direction),o.remote_alias?o.remote_alias:o.remote_pubkey?o.remote_pubkey:null;case"expiration_height":case"hash_lock":return this.commonService.sortByKey(o.pending_htlcs,a,"number",this.sort?.direction),o;default:return o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null}},this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.flattenHTLCs(),"ActiveHTLCs")}flattenHTLCs(){return JSON.parse(JSON.stringify(this.channels.data))?.reduce((a,l)=>a.concat(l.pending_htlcs?l.pending_htlcs:l),[])}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU($.h),e.rXU(L.il),e.rXU(J.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-active-htlcs-table"]],viewQuery:function(o,a){if(1&o&&(e.GBs(R.B4,5),e.GBs(G.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:E.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:G.xX,useValue:(0,c.on)("HTLCs")}])],decls:48,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","incoming"],["matColumnDef","forwarding_channel"],["matColumnDef","htlc_index"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","forwarding_htlc_index"],["matColumnDef","expiration_height"],["matColumnDef","hash_lock"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","pl-3 htlc-row-span",4,"matHeaderCellDef"],["mat-cell","","class","pl-3",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","px-2",4,"matHeaderCellDef"],["mat-cell","","class","px-2","fxLayout","column","fxLayoutAlign","center end",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayoutAlign","start center",1,"htlc-row-span"],[4,"ngIf"],["fxLayoutAlign","end center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-row-span"],["fxLayoutAlign","start center","class","htlc-row-span",4,"ngFor","ngForOf"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"pl-3","htlc-row-span"],["mat-cell","",1,"pl-3"],["mat-header-cell","",1,"px-2"],["fxLayoutAlign","end center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayout","column","fxLayoutAlign","center end",1,"px-2"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-htlc-info",3,"click"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2),e.nrm(2,"div",3),e.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",6),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.selFilterBy,m)||(a.selFilterBy=m),r.Njj(m)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,gu,2,2,"mat-option",7),e.k0s()()(),e.j41(10,"mat-form-field",5)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.selFilter,m)||(a.selFilter=m),r.Njj(m)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,Cu,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,yu,2,0,"th",13)(20,xu,4,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,vu,2,0,"th",13)(23,Su,4,2,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,Ru,2,0,"th",13)(26,Lu,4,2,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,wu,3,0,"th",18)(29,Du,4,2,"td",14),e.bVm(),e.qex(30,19),e.DNE(31,Nu,3,0,"th",18)(32,Au,4,2,"td",14),e.bVm(),e.qex(33,20),e.DNE(34,Mu,3,0,"th",18)(35,Vu,4,2,"td",14),e.bVm(),e.qex(36,21),e.DNE(37,Yu,3,0,"th",22)(38,Hu,4,2,"td",23),e.bVm(),e.qex(39,24),e.DNE(40,zu,6,0,"th",25)(41,Qu,5,2,"td",26),e.bVm(),e.qex(42,27),e.DNE(43,ed,4,3,"td",28),e.bVm(),e.DNE(44,td,1,3,"tr",29)(45,nd,1,0,"tr",30)(46,id,1,0,"tr",31),e.k0s()(),e.nrm(47,"mat-paginator",32),e.k0s()}2&o&&(e.R7$(7),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,du).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",e.eq3(15,hu,""!==a.errorMessage)),e.R7$(28),e.Y8G("matFooterRowDef",e.lJ4(17,_u)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("hidePageSize",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[_.YU,_.Sq,_.bT,d.me,d.BC,d.vS,N.$z,M.fg,C.rl,C.nJ,V.HM,f.DJ,f.sA,f.UI,j.PW,E.VO,E.$2,X.wT,R.B4,R.aE,u.Zl,u.tL,u.ji,u.cC,u.YV,u.iL,u.Zq,u.xW,u.KS,u.$R,u.Qo,u.YZ,u.NB,u.iF,G.iy,B.ZF,B.Ld,_.QX],styles:[".mat-column-amount[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem;padding-right:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mat-column-actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_creation_date[_ngcontent-%COMP%]{min-width:7rem}"]}))}return t(),s})();function sd(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Wallet password is required."),e.k0s())}let od=(()=>{var t;class s{constructor(i){this.store=i,this.walletPassword=""}ngOnInit(){this.walletPassword=""}onUnlockWallet(){if(!this.walletPassword)return!0;this.store.dispatch((0,T.WE)({payload:{pwd:window.btoa(this.walletPassword)}}))}resetData(){this.walletPassword=""}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(L.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-unlock-wallet"]],standalone:!1,decls:14,vars:2,consts:[["fxLayout","column",1,"padding-gap","mb-2"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start"],["autoFocus","","matInput","","type","password","name","walletPassword","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","3",3,"click"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"form",1)(2,"mat-form-field",2)(3,"mat-label"),e.EFF(4,"Password"),e.k0s(),e.j41(5,"input",3),e.mxI("ngModelChange",function(p){return e.DH7(a.walletPassword,p)||(a.walletPassword=p),p}),e.k0s(),e.j41(6,"mat-hint"),e.EFF(7,"Enter Wallet Password"),e.k0s(),e.DNE(8,sd,2,0,"mat-error",4),e.k0s(),e.j41(9,"div",5)(10,"button",6),e.bIt("click",function(){return a.resetData()}),e.EFF(11,"Clear Field"),e.k0s(),e.j41(12,"button",7),e.bIt("click",function(){return a.onUnlockWallet()}),e.EFF(13,"Unlock Wallet"),e.k0s()()()()),2&o&&(e.R7$(5),e.R50("ngModel",a.walletPassword),e.R7$(3),e.Y8G("ngIf",!a.walletPassword))},dependencies:[_.bT,d.qT,d.me,d.BC,d.cb,d.YS,d.vS,d.cV,N.$z,M.fg,C.rl,C.nJ,C.MV,C.TL,f.DJ,f.sA,f.UI,te.N],encapsulation:2}))}return t(),s})();var ld=y(97768);function rd(t,s){if(1&t){const n=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",6),e.EFF(3,"Warning: Your connection is unsecure, it's not safe to generate private keys over this connection.Are you sure you want to proceed?"),e.k0s(),e.j41(4,"div",7)(5,"button",8),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return o.proceed=!1,r.Njj(o.warnRes=!0)}),e.EFF(6,"Do Not Proceed"),e.k0s(),e.j41(7,"button",9),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return o.proceed=!0,r.Njj(o.warnRes=!0)}),e.EFF(8,"Proceed"),e.k0s()()()()}}function cd(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",10)(1,"div",11),e.EFF(2,"Please re-configure & re-start RTL after securing your LND connction. You can close this window now."),e.k0s(),e.j41(3,"div",7)(4,"button",12),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.warnRes=!1)}),e.EFF(5,"Go Back"),e.k0s()()()}}function pd(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function md(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Password must be at least 8 characters in length."),e.k0s())}function ud(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Confirm password is required."),e.k0s())}function dd(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Confirm password must be at least 8 characters in length."),e.k0s())}function hd(t,s){1&t&&(e.j41(0,"div",41)(1,"mat-icon",42),e.EFF(2,"cancel"),e.k0s(),e.EFF(3,"Passwords do not match. "),e.k0s())}function _d(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Cipher seed is required."),e.k0s())}function fd(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid Cipher. Enter comma separated 24 words cipher seed."),e.k0s())}function gd(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Passphrase is required."),e.k0s())}function Cd(t,s){1&t&&(e.j41(0,"mat-icon"),e.EFF(1,"vpn_key"),e.k0s())}function yd(t,s){1&t&&(e.j41(0,"mat-icon"),e.EFF(1,"swap_calls"),e.k0s())}function bd(t,s){1&t&&(e.j41(0,"mat-icon"),e.EFF(1,"fingerprint"),e.k0s())}function Fd(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-vertical-stepper",13,0)(2,"mat-step",14)(3,"form",15)(4,"mat-form-field",16)(5,"mat-label"),e.EFF(6,"Password"),e.k0s(),e.nrm(7,"input",17),e.j41(8,"mat-hint"),e.EFF(9,"Enter Wallet Password"),e.k0s(),e.DNE(10,pd,2,0,"mat-error",2)(11,md,2,0,"mat-error",2),e.k0s(),e.j41(12,"mat-form-field",16)(13,"mat-label"),e.EFF(14,"Confirm Password"),e.k0s(),e.nrm(15,"input",18),e.j41(16,"mat-hint"),e.EFF(17,"Confirm Wallet Password"),e.k0s(),e.DNE(18,ud,2,0,"mat-error",2)(19,dd,2,0,"mat-error",2),e.k0s(),e.DNE(20,hd,4,0,"div",19),e.j41(21,"div",20)(22,"button",21),e.EFF(23,"Next"),e.k0s()()()(),e.j41(24,"mat-step",22)(25,"form",23)(26,"div",24)(27,"mat-slide-toggle",25),e.EFF(28,"Existing Cipher"),e.k0s(),e.j41(29,"mat-form-field",26)(30,"mat-label"),e.EFF(31,"Comma separated array of 24 words cipher seed"),e.k0s(),e.nrm(32,"input",27),e.j41(33,"mat-hint"),e.EFF(34,"Cipher Seed"),e.k0s(),e.DNE(35,_d,2,0,"mat-error",2)(36,fd,2,0,"mat-error",2),e.k0s()(),e.j41(37,"div",28)(38,"button",29),e.EFF(39,"Back"),e.k0s(),e.j41(40,"button",30),e.EFF(41,"Next"),e.k0s()()()(),e.j41(42,"mat-step",31)(43,"form",23)(44,"div",24)(45,"mat-slide-toggle",32),e.EFF(46,"Existing Passphrase"),e.k0s(),e.j41(47,"mat-form-field",33)(48,"mat-label"),e.EFF(49,"Passphrase"),e.k0s(),e.nrm(50,"input",34),e.j41(51,"mat-hint"),e.EFF(52,"Enter Passphrase"),e.k0s(),e.DNE(53,gd,2,0,"mat-error",2),e.k0s()(),e.j41(54,"div",28)(55,"button",35),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.EFF(56,"Clear"),e.k0s(),e.j41(57,"button",36),e.EFF(58,"Back"),e.k0s(),e.j41(59,"button",37),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onInitWallet())}),e.EFF(60,"Initialize Wallet"),e.k0s()()()(),e.DNE(61,Cd,2,0,"ng-template",38)(62,yd,2,0,"ng-template",39)(63,bd,2,0,"ng-template",40),e.k0s()}if(2&t){const n=e.XpG();e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",n.passwordFormGroup),e.R7$(),e.Y8G("formGroup",n.passwordFormGroup),e.R7$(7),e.Y8G("ngIf",null==n.passwordFormGroup.controls.initWalletPassword.errors?null:n.passwordFormGroup.controls.initWalletPassword.errors.required),e.R7$(),e.Y8G("ngIf",null==n.passwordFormGroup.controls.initWalletPassword.errors?null:n.passwordFormGroup.controls.initWalletPassword.errors.minlength),e.R7$(7),e.Y8G("ngIf",null==n.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:n.passwordFormGroup.controls.initWalletConfirmPassword.errors.required),e.R7$(),e.Y8G("ngIf",null==n.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:n.passwordFormGroup.controls.initWalletConfirmPassword.errors.minlength),e.R7$(),e.Y8G("ngIf",(null==n.passwordFormGroup.errors?null:n.passwordFormGroup.errors.unmatchedPasswords)&&(n.passwordFormGroup.controls.initWalletPassword.touched||n.passwordFormGroup.controls.initWalletPassword.dirty)&&(n.passwordFormGroup.controls.initWalletConfirmPassword.touched||n.passwordFormGroup.controls.initWalletConfirmPassword.dirty)),e.R7$(4),e.Y8G("stepControl",n.cipherFormGroup),e.R7$(),e.Y8G("formGroup",n.cipherFormGroup),e.R7$(10),e.Y8G("ngIf",null==n.cipherFormGroup.controls.cipherSeed.errors?null:n.cipherFormGroup.controls.cipherSeed.errors.required),e.R7$(),e.Y8G("ngIf",!(null!=n.cipherFormGroup.controls.cipherSeed.errors&&n.cipherFormGroup.controls.cipherSeed.errors.required)&&(null==n.cipherFormGroup.controls.cipherSeed.errors?null:n.cipherFormGroup.controls.cipherSeed.errors.invalidCipher)),e.R7$(6),e.Y8G("stepControl",n.passphraseFormGroup),e.R7$(),e.Y8G("formGroup",n.passphraseFormGroup),e.R7$(10),e.Y8G("ngIf",null==n.passphraseFormGroup.controls.passphrase.errors?null:n.passphraseFormGroup.controls.passphrase.errors.required)}}function xd(t,s){if(1&t&&(e.j41(0,"span",48),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(n)}}function vd(t,s){if(1&t){const n=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",43),e.EFF(3,"YOU MUST WRITE DOWN THIS SEED TO BE ABLE TO RESTORE THE WALLET!"),e.k0s(),e.j41(4,"div",44),e.DNE(5,xd,2,1,"span",45),e.k0s(),e.j41(6,"div",46),e.EFF(7,"Wallet initialization is done."),e.k0s(),e.j41(8,"div",46),e.EFF(9,"The node will be usable only after LND has synced completely with the network."),e.k0s(),e.j41(10,"div",46),e.EFF(11,"Click continue only after writing down the seed."),e.k0s(),e.j41(12,"div",7)(13,"button",47),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onGoToHome())}),e.EFF(14,"Go To Home"),e.k0s()()()()}if(2&t){const n=e.XpG();e.R7$(5),e.Y8G("ngForOf",n.genSeedResponse)}}function Td(t,s){if(1&t){const n=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",46),e.EFF(3,"Something went wrong! Unable to initialize wallet!"),e.k0s(),e.j41(4,"div",7)(5,"button",49),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.EFF(6,"Restart"),e.k0s()()()()}}function kd(t,s){if(1&t){const n=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",46),e.EFF(3,"Wallet recovery is done."),e.k0s(),e.j41(4,"div",46),e.EFF(5,"The node will be usable only after LND has synced completely with the network."),e.k0s(),e.j41(6,"div",7)(7,"button",50),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onGoToHome())}),e.EFF(8,"Go To Home"),e.k0s()()()()}}function Sd(t){const s=t.get("initWalletPassword"),n=t.get("initWalletConfirmPassword");return s&&n&&s.value!==n.value?{unmatchedPasswords:!0}:null}function Rd(t){const s=t.value.toString().trim().split(",")||[];return s&&24!==s.length?{invalidCipher:!0}:null}let Ed=(()=>{var t;class s{constructor(i,o,a){this.store=i,this.formBuilder=o,this.lndEffects=a,this.insecureLND=!1,this.genSeedResponse=[],this.initWalletResponse="",this.proceed=!0,this.warnRes=!1,this.unsubs=[new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.passwordFormGroup=this.formBuilder.group({initWalletPassword:["",[d.k0.required,d.k0.minLength(8)]],initWalletConfirmPassword:["",[d.k0.required,d.k0.minLength(8)]]},{validators:Sd}),this.cipherFormGroup=this.formBuilder.group({existingCipher:[!1],cipherSeed:[{value:"",disabled:!0},[Rd]]}),this.passphraseFormGroup=this.formBuilder.group({enterPassphrase:[!1],passphrase:[{value:"",disabled:!0}]}),this.cipherFormGroup.controls.existingCipher.valueChanges.pipe((0,g.Q)(this.unsubs[0])).subscribe(i=>{i?(this.cipherFormGroup.controls.cipherSeed.setValue(""),this.cipherFormGroup.controls.cipherSeed.enable()):(this.cipherFormGroup.controls.cipherSeed.setValue(""),this.cipherFormGroup.controls.cipherSeed.disable())}),this.passphraseFormGroup.controls.enterPassphrase.valueChanges.pipe((0,g.Q)(this.unsubs[1])).subscribe(i=>{i?(this.passphraseFormGroup.controls.passphrase.setValue(""),this.passphraseFormGroup.controls.passphrase.enable()):(this.passphraseFormGroup.controls.passphrase.setValue(""),this.passphraseFormGroup.controls.passphrase.disable())}),this.insecureLND=!window.location.protocol.includes("https:"),this.lndEffects.initWalletRes.pipe((0,g.Q)(this.unsubs[2])).subscribe(i=>{this.initWalletResponse=i}),this.lndEffects.genSeedResponse.pipe((0,g.Q)(this.unsubs[3])).subscribe(i=>{this.genSeedResponse=i,this.store.dispatch((0,T.GZ)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:this.genSeedResponse,passphrase:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}}:{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:this.genSeedResponse}}))})}onInitWallet(){if(this.passwordFormGroup.invalid||this.cipherFormGroup.invalid||this.passphraseFormGroup.invalid)return!0;if(this.cipherFormGroup.controls.existingCipher.value){const i=this.cipherFormGroup.controls.cipherSeed.value.toString().trim().split(",");this.store.dispatch((0,T.GZ)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:i,passphrase:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}}:{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:i}}))}else this.store.dispatch((0,T.oX)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}:{payload:""}))}onGoToHome(){setTimeout(()=>{this.store.dispatch((0,T.X9)()),this.store.dispatch((0,T.Br)({payload:{loadPage:"HOME"}}))},1e3)}resetData(){this.genSeedResponse=[],this.initWalletResponse=""}ngOnDestroy(){this.unsubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(L.il),e.rXU(d.ze),e.rXU(me.L))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-initialize-wallet"]],viewQuery:function(o,a){if(1&o&&e.GBs(q.M6,5),2&o){let l;e.mGM(l=e.lsd())&&(a.stepper=l.first)}},standalone:!1,features:[e.Jv_([{provide:ld.x8,useValue:{displayDefaultIndicatorType:!1}}])],decls:7,vars:6,consts:[["stepper",""],["fxLayout","column",1,"padding-gap","mb-4"],[4,"ngIf"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","stretch stretch",4,"ngIf"],[3,"linear",4,"ngIf"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mt-2"],["fxFlex","100","fxLayoutAlign","start"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","1","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","2",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","stretch stretch"],["fxFlex","100",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",3,"click"],[3,"linear"],["label","Wallet Password","state","password",3,"stepControl"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mt-1",3,"formGroup"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start"],["matInput","","type","password","name","initWalletPassword","formControlName","initWalletPassword","tabindex","5","required",""],["matInput","","type","password","name","initWalletConfirmPassword","formControlName","initWalletConfirmPassword","tabindex","6","required",""],["class","validation-error-message",4,"ngIf"],["fxLayout","row",1,"my-2"],["mat-flat-button","","color","primary","tabindex","7","type","submit","matStepperNext",""],["label","Cipher","state","cipher",3,"stepControl"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start",1,"mt-1",3,"formGroup"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch"],["labelPosition","before","fxFlex","20","tabindex","8","color","primary","formControlName","existingCipher","name","existingCipher",1,"chkbox-wallet"],["fxLayout","column","fxFlex","75","fxLayoutAlign","start",1,"my-1"],["autofocus","","matInput","","type","input","name","cipherSeed","formControlName","cipherSeed","tabindex","9","required",""],["fxLayout","row",1,"mb-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","10","matStepperPrevious","",1,"mr-1","mt-1"],["mat-flat-button","","color","primary","tabindex","11","type","submit","matStepperNext","",1,"mt-1"],["label","Passphrase","state","passphrase",3,"stepControl"],["labelPosition","before","fxFlex","20","tabindex","10","color","primary","formControlName","enterPassphrase","name","enterPassphrase",1,"chkbox-wallet"],["fxLayout","column","fxFlex","75","fxLayoutAlign","start"],["matInput","","type","password","name","passphrase","formControlName","passphrase","tabindex","12","required",""],["mat-stroked-button","","color","warn","tabindex","13","type","reset",1,"mr-1","mt-1",3,"click"],["mat-stroked-button","","tabindex","14","color","primary","type","button","matStepperPrevious","",1,"mr-1","mt-1"],["mat-flat-button","","color","primary","tabindex","15","type","submit",1,"mt-1",3,"click"],["matStepperIcon","password"],["matStepperIcon","cipher"],["matStepperIcon","passphrase"],[1,"validation-error-message"],[1,"validation-error-icon","red"],["fxFlex","100","fxLayoutAlign","start",1,"blinker"],["fxFlex","40","fxLayout","row wrap",1,"mt-2"],["fxFlex","25","fxLayoutAlign","start","class","genseed-message",4,"ngFor","ngForOf"],["fxFlex","100","fxLayoutAlign","start",1,"mt-2"],["mat-flat-button","","color","primary","type","submit","tabindex","16",3,"click"],["fxFlex","25","fxLayoutAlign","start",1,"genseed-message"],["mat-stroked-button","","color","primary","tabindex","17","type","reset",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","18",3,"click"]],template:function(o,a){1&o&&(e.j41(0,"div",1),e.DNE(1,rd,9,0,"div",2)(2,cd,6,0,"div",3)(3,Fd,64,15,"mat-vertical-stepper",4)(4,vd,15,1,"div",2)(5,Td,7,0,"div",2)(6,kd,9,0,"div",2),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf",a.insecureLND&&!a.warnRes),e.R7$(),e.Y8G("ngIf",a.warnRes&&!a.proceed),e.R7$(),e.Y8G("ngIf",(!a.insecureLND||a.warnRes&&a.proceed)&&a.genSeedResponse.length<=0&&""===a.initWalletResponse),e.R7$(),e.Y8G("ngIf",a.genSeedResponse.length>0&&""!==a.initWalletResponse),e.R7$(),e.Y8G("ngIf",a.genSeedResponse.length>0&&""===a.initWalletResponse),e.R7$(),e.Y8G("ngIf",a.genSeedResponse.length<=0&&""!==a.initWalletResponse))},dependencies:[_.Sq,_.bT,d.qT,d.me,d.BC,d.cb,d.YS,d.cV,d.j4,d.JD,N.$z,oe.An,M.fg,C.rl,C.nJ,C.MV,C.TL,f.DJ,f.sA,f.UI,he.sG,q.V5,q.M6,q.F7,q.FR,q.xJ],encapsulation:2}))}return t(),s})(),Id=(()=>{var t;class s{constructor(){this.faWallet=x.BA1}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-wallet"]],standalone:!1,decls:12,vars:1,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-stretch-tabs","false","mat-align-tabs","start"],["label","Unlock"],["label","Initialize"]],template:function(o,a){1&o&&(e.j41(0,"div",0),e.nrm(1,"fa-icon",1),e.j41(2,"span",2),e.EFF(3,"Wallet"),e.k0s()(),e.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"mat-tab-group",5)(8,"mat-tab",6),e.nrm(9,"rtl-unlock-wallet"),e.k0s(),e.j41(10,"mat-tab",7),e.nrm(11,"rtl-initialize-wallet"),e.k0s()()()()()),2&o&&(e.R7$(),e.Y8G("icon",a.faWallet))},dependencies:[O.aY,k.RN,k.m2,f.DJ,f.sA,A.mq,A.T8,od,Ed],encapsulation:2}))}return t(),s})();function Ld(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",12),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let wd=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.store=o,this.router=a,this.faExchangeAlt=x._qq,this.faChartPie=x.W1p,this.currencyUnits=[],this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"},{link:"lookuptransactions",name:"Lookup"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,U.p)(o=>o instanceof w.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}}),this.store.select(F.BM).pipe((0,g.Q)(this.unSubs[1]),(0,ge.E)(this.store.select(H._c))).subscribe(([o,a])=>{this.currencyUnits=a?.settings.currencyUnits||[],this.balances=a?.settings.userPersona===c.HW.OPERATOR?[{title:"Local Capacity",dataValue:o.lightningBalance.local||0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:o.lightningBalance.remote||0,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:o.lightningBalance.local||0,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:o.lightningBalance.remote||0,tooltip:"Amount you can receive"}],this.logger.info(o)})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU(L.il),e.rXU(w.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-transactions"]],standalone:!1,decls:21,vars:5,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Lightning Balance"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),e.nrm(7,"rtl-currency-unit-converter",6),e.k0s()()(),e.j41(8,"div",7),e.nrm(9,"fa-icon",2),e.j41(10,"span",3),e.EFF(11,"Lightning Transactions"),e.k0s()(),e.j41(12,"div",8)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",9),e.DNE(16,Ld,2,4,"div",10),e.k0s(),e.nrm(17,"mat-tab-nav-panel",null,0),e.j41(19,"div",11),e.nrm(20,"router-outlet"),e.k0s()()()()),2&o){const l=e.sdS(18);e.R7$(),e.Y8G("icon",a.faChartPie),e.R7$(6),e.Y8G("values",a.balances),e.R7$(2),e.Y8G("icon",a.faExchangeAlt),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[_.Sq,O.aY,k.RN,k.m2,f.DJ,f.sA,f.UI,A.Bu,A.hQ,A.Ql,Ee.f,w.n3,ie.Wk],encapsulation:2}))}return t(),s})();function jd(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let Gd=(()=>{var t;class s{constructor(i){this.router=i,this.faSearch=x.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,U.p)(o=>o instanceof w.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(w.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-graph"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Graph Lookups"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,jd,2,4,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8),e.nrm(12,"router-outlet"),e.k0s()()()()),2&o){const l=e.sdS(10);e.R7$(),e.Y8G("icon",a.faSearch),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[_.Sq,O.aY,k.RN,k.m2,f.DJ,f.sA,f.UI,A.Bu,A.hQ,A.Ql,w.n3,ie.Wk],encapsulation:2}))}return t(),s})();const Dd=t=>({"overflow-auto error-border":t,"overflow-auto":!0}),Ne=t=>({width:t});function Nd(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Destination pubkey is required."),e.k0s())}function Pd(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function $d(t,s){1&t&&e.nrm(0,"mat-progress-bar",39)}function Ad(t,s){1&t&&(e.j41(0,"th",40),e.EFF(1,"Hop"),e.k0s())}function Md(t,s){if(1&t&&(e.j41(0,"td",41),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(null==n?null:n.hop_sequence)}}function Bd(t,s){1&t&&(e.j41(0,"th",40),e.EFF(1,"Peer"),e.k0s())}function Od(t,s){if(1&t&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ne,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.pubkey_alias)}}function Vd(t,s){1&t&&(e.j41(0,"th",40),e.EFF(1,"Peer Pubkey"),e.k0s())}function Yd(t,s){if(1&t&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ne,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.pub_key)}}function Xd(t,s){1&t&&(e.j41(0,"th",40),e.EFF(1,"Channel ID"),e.k0s())}function Ud(t,s){if(1&t&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ne,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id)}}function Hd(t,s){1&t&&(e.j41(0,"th",40),e.EFF(1,"TLV Payload"),e.k0s())}function zd(t,s){if(1&t&&(e.j41(0,"td",41),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(null!=n&&n.tlv_payload?"Yes":"No")}}function qd(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Expiry"),e.k0s())}function Jd(t,s){if(1&t&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==n?null:n.expiry))}}function Qd(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Capacity (Sats)"),e.k0s())}function Wd(t,s){if(1&t&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==n?null:n.chan_capacity))}}function Zd(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Amount To Fwd (Sats)"),e.k0s())}function Kd(t,s){if(1&t&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.amt_to_forward)," ")}}function eh(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Fee (mSats)"),e.k0s())}function th(t,s){if(1&t&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.fee_msat)," ")}}function nh(t,s){1&t&&(e.j41(0,"th",46)(1,"div",47),e.EFF(2,"Actions"),e.k0s()())}function ih(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",48)(1,"button",49),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG();return r.Njj(l.onHopClick(a,o))}),e.EFF(2,"View Info"),e.k0s()()}}function ah(t,s){1&t&&e.nrm(0,"tr",50)}function sh(t,s){1&t&&e.nrm(0,"tr",51)}let oh=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.store=o,this.lndEffects=a,this.commonService=l,this.colWidth="20rem",this.PAGE_ID="graph_lookup",this.tableSetting={tableId:"query_routes",recordsPerPage:c.md,sortBy:"hop_sequence",sortOrder:c.oi.ASCENDING},this.destinationPubkey="",this.amount=null,this.qrHops=new u.I6([]),this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=x.TBz,this.faExclamationTriangle=x.zpE,this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(F.$G).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.lndEffects.setQueryRoutes.pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.qrHops=new u.I6([]),i.routes&&i.routes.length&&i.routes.length>0&&i.routes[0].hops?(this.flgLoading[0]=!1,this.qrHops=new u.I6([...i.routes[0].hops]),this.qrHops.data=i.routes[0].hops):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.qrHops=new u.I6([]),this.flgLoading[0]=!0,this.store.dispatch((0,T.T4)({payload:{destPubkey:this.destinationPubkey,amount:this.amount}}))}resetData(){this.destinationPubkey="",this.amount=null,this.flgLoading[0]=!1}onHopClick(i,o){this.store.dispatch((0,I.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"hop_sequence",value:i.hop_sequence,title:"Sequence",width:33,type:c.UN.NUMBER},{key:"amt_to_forward",value:i.amt_to_forward,title:"Amount To Forward (Sats)",width:33,type:c.UN.NUMBER},{key:"fee_msat",value:i.fee_msat,title:"Fee (mSats)",width:34,type:c.UN.NUMBER}],[{key:"chan_capacity",value:i.chan_capacity,title:"Channel Capacity (Sats)",width:50,type:c.UN.NUMBER},{key:"expiry",value:i.expiry,title:"Expiry",width:50,type:c.UN.NUMBER}],[{key:"pubkey_alias",value:i.pubkey_alias,title:"Peer Alias",width:50,type:c.UN.STRING},{key:"chan_id",value:i.chan_id,title:"Channel ID",width:50,type:c.UN.STRING}],[{key:"pub_key",value:i.pub_key,title:"Peer Pubkey",width:100,type:c.UN.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU(L.il),e.rXU(me.L),e.rXU($.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-query-routes"]],viewQuery:function(o,a){if(1&o&&e.GBs(R.B4,5),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first)}},standalone:!1,decls:64,vars:17,consts:[["queryRoutesForm","ngForm"],["destPubkey","ngModel"],["table",""],["fxLayout","column","fxFlex","100",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","destinationPubkey","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"ngModelChange","step","min","ngModel"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-3","mb-1"],["fxFlex","70","fxLayoutAlign","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"table-container","mb-6",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","hop_sequence"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","pubkey_alias"],["matColumnDef","pub_key"],["matColumnDef","chan_id"],["matColumnDef","tlv_payload"],["matColumnDef","expiry"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","chan_capacity"],["matColumnDef","amt_to_forward_msat"],["matColumnDef","fee_msat"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",3)(1,"form",4,0),e.bIt("ngSubmit",function(){r.eBV(l);const m=e.sdS(2);return r.Njj(m.form.valid&&a.onQueryRoutes())}),e.j41(3,"div",5),e.nrm(4,"fa-icon",6),e.j41(5,"span"),e.EFF(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),e.k0s()(),e.j41(7,"mat-form-field",7)(8,"mat-label"),e.EFF(9,"Destination Pubkey"),e.k0s(),e.j41(10,"input",8,1),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.destinationPubkey,m)||(a.destinationPubkey=m),r.Njj(m)}),e.k0s(),e.DNE(12,Nd,2,0,"mat-error",9),e.k0s(),e.j41(13,"mat-form-field",10)(14,"mat-label"),e.EFF(15,"Amount (Sats)"),e.k0s(),e.j41(16,"input",11),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.amount,m)||(a.amount=m),r.Njj(m)}),e.k0s(),e.DNE(17,Pd,2,0,"mat-error",9),e.k0s(),e.j41(18,"div",12)(19,"button",13),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(20,"Clear"),e.k0s(),e.j41(21,"button",14),e.EFF(22,"Query Route"),e.k0s()()(),e.j41(23,"div",15)(24,"div",16),e.nrm(25,"fa-icon",17),e.j41(26,"span",18),e.EFF(27,"Transaction Route"),e.k0s()()(),e.j41(28,"div",19),e.DNE(29,$d,1,0,"mat-progress-bar",20),e.j41(30,"table",21,2),e.qex(32,22),e.DNE(33,Ad,2,0,"th",23)(34,Md,2,1,"td",24),e.bVm(),e.qex(35,25),e.DNE(36,Bd,2,0,"th",23)(37,Od,4,4,"td",24),e.bVm(),e.qex(38,26),e.DNE(39,Vd,2,0,"th",23)(40,Yd,4,4,"td",24),e.bVm(),e.qex(41,27),e.DNE(42,Xd,2,0,"th",23)(43,Ud,4,4,"td",24),e.bVm(),e.qex(44,28),e.DNE(45,Hd,2,0,"th",23)(46,zd,2,1,"td",24),e.bVm(),e.qex(47,29),e.DNE(48,qd,2,0,"th",30)(49,Jd,4,3,"td",24),e.bVm(),e.qex(50,31),e.DNE(51,Qd,2,0,"th",30)(52,Wd,4,3,"td",24),e.bVm(),e.qex(53,32),e.DNE(54,Zd,2,0,"th",30)(55,Kd,4,3,"td",24),e.bVm(),e.qex(56,33),e.DNE(57,eh,2,0,"th",30)(58,th,4,3,"td",24),e.bVm(),e.qex(59,34),e.DNE(60,nh,3,0,"th",35)(61,ih,3,0,"td",36),e.bVm(),e.DNE(62,ah,1,0,"tr",37)(63,sh,1,0,"tr",38),e.k0s()()()}2&o&&(e.R7$(4),e.Y8G("icon",a.faExclamationTriangle),e.R7$(6),e.R50("ngModel",a.destinationPubkey),e.R7$(2),e.Y8G("ngIf",!a.destinationPubkey),e.R7$(4),e.Y8G("step",1e3)("min",0),e.R50("ngModel",a.amount),e.R7$(),e.Y8G("ngIf",!a.amount),e.R7$(8),e.Y8G("icon",a.faRoute),e.R7$(4),e.Y8G("ngIf",!0===a.flgLoading[0]),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.qrHops)("ngClass",e.eq3(15,Dd,"error"===a.flgLoading[0])),e.R7$(32),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns))},dependencies:[_.YU,_.bT,_.B3,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,O.aY,N.$z,M.fg,C.rl,C.nJ,C.TL,V.HM,f.DJ,f.sA,f.UI,j.PW,j.eI,R.B4,R.aE,u.Zl,u.tL,u.ji,u.cC,u.YV,u.iL,u.KS,u.$R,u.YZ,u.NB,B.Ld,ae.V,_.QX],encapsulation:2}))}return t(),s})();var de=y(5951);function lh(t,s){1&t&&(e.j41(0,"h3",15),e.EFF(1,"Node 1"),e.k0s())}function rh(t,s){1&t&&(e.j41(0,"h3",15),e.EFF(1,"Node 1 (Your Node)"),e.k0s())}function ch(t,s){1&t&&(e.j41(0,"h3",15),e.EFF(1,"Node 2"),e.k0s())}function ph(t,s){1&t&&(e.j41(0,"h3",15),e.EFF(1,"Node 2 (Your Node)"),e.k0s())}function mh(t,s){if(1&t&&(e.j41(0,"div",1),e.nrm(1,"mat-divider",2),e.j41(2,"div",3)(3,"div",4)(4,"h4",5),e.EFF(5,"Channel ID"),e.k0s(),e.j41(6,"span",6),e.EFF(7),e.k0s()(),e.j41(8,"div",7)(9,"h4",5),e.EFF(10,"Channel Point"),e.k0s(),e.j41(11,"span",6),e.EFF(12),e.k0s()()(),e.nrm(13,"mat-divider",8),e.j41(14,"div",3)(15,"div",4)(16,"h4",5),e.EFF(17,"Last Update"),e.k0s(),e.j41(18,"span",6),e.EFF(19),e.nI1(20,"date"),e.k0s()(),e.j41(21,"div",7)(22,"h4",5),e.EFF(23,"Capacity (Sats)"),e.k0s(),e.j41(24,"span",6),e.EFF(25),e.nI1(26,"number"),e.k0s()()(),e.nrm(27,"mat-divider",8),e.j41(28,"div",9)(29,"div",10)(30,"div",11),e.DNE(31,lh,2,0,"h3",12)(32,rh,2,0,"h3",12),e.k0s(),e.nrm(33,"mat-divider",8),e.j41(34,"div",13)(35,"h4",5),e.EFF(36,"Pubkey"),e.k0s(),e.j41(37,"span",6),e.EFF(38),e.k0s()(),e.nrm(39,"mat-divider",8),e.j41(40,"div",14)(41,"h4",5),e.EFF(42,"Time Lock Delta"),e.k0s(),e.j41(43,"span",6),e.EFF(44),e.k0s()(),e.nrm(45,"mat-divider",8),e.j41(46,"div",14)(47,"h4",5),e.EFF(48,"Min HTLC"),e.k0s(),e.j41(49,"span",6),e.EFF(50),e.k0s()(),e.nrm(51,"mat-divider",8),e.j41(52,"div",14)(53,"h4",5),e.EFF(54,"Max HTLC"),e.k0s(),e.j41(55,"span",6),e.EFF(56),e.k0s()(),e.nrm(57,"mat-divider",8),e.j41(58,"div",14)(59,"h4",5),e.EFF(60,"Fee Base Msat"),e.k0s(),e.j41(61,"span",6),e.EFF(62),e.k0s()(),e.nrm(63,"mat-divider",8),e.j41(64,"div",14)(65,"h4",5),e.EFF(66,"Fee Rate Milli Msat"),e.k0s(),e.j41(67,"span",6),e.EFF(68),e.k0s()(),e.nrm(69,"mat-divider",8),e.j41(70,"div",14)(71,"h4",5),e.EFF(72,"Disabled"),e.k0s(),e.j41(73,"span",6),e.EFF(74),e.k0s()()(),e.j41(75,"div",10)(76,"div"),e.DNE(77,ch,2,0,"h3",12)(78,ph,2,0,"h3",12),e.k0s(),e.nrm(79,"mat-divider",8),e.j41(80,"div",13)(81,"h4",5),e.EFF(82,"Pubkey"),e.k0s(),e.j41(83,"span",6),e.EFF(84),e.k0s()(),e.nrm(85,"mat-divider",8),e.j41(86,"div",14)(87,"h4",5),e.EFF(88,"Time Lock Delta"),e.k0s(),e.j41(89,"span",6),e.EFF(90),e.k0s()(),e.nrm(91,"mat-divider",8),e.j41(92,"div",14)(93,"h4",5),e.EFF(94,"Min HTLC"),e.k0s(),e.j41(95,"span",6),e.EFF(96),e.k0s()(),e.nrm(97,"mat-divider",8),e.j41(98,"div",14)(99,"h4",5),e.EFF(100,"Max HTLC"),e.k0s(),e.j41(101,"span",6),e.EFF(102),e.k0s()(),e.nrm(103,"mat-divider",8),e.j41(104,"div",14)(105,"h4",5),e.EFF(106,"Fee Base Msat"),e.k0s(),e.j41(107,"span",6),e.EFF(108),e.k0s()(),e.nrm(109,"mat-divider",8),e.j41(110,"div",14)(111,"h4",5),e.EFF(112,"Fee Rate Milli Msat"),e.k0s(),e.j41(113,"span",6),e.EFF(114),e.k0s()(),e.nrm(115,"mat-divider",8),e.j41(116,"div",14)(117,"h4",5),e.EFF(118,"Disabled"),e.k0s(),e.j41(119,"span",6),e.EFF(120),e.k0s()()()()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(n.lookupResult.channel_id),e.R7$(5),e.JRh(n.lookupResult.chan_point),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(20,39,1e3*n.lookupResult.last_update,"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(e.bMT(26,42,n.lookupResult.capacity)),e.R7$(2),e.Y8G("inset",!0),e.R7$(4),e.Y8G("ngIf",!n.node1_match),e.R7$(),e.Y8G("ngIf",n.node1_match),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(n.lookupResult.node1_pub),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node1_policy?null:n.lookupResult.node1_policy.time_lock_delta),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node1_policy?null:n.lookupResult.node1_policy.min_htlc),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node1_policy?null:n.lookupResult.node1_policy.max_htlc_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node1_policy?null:n.lookupResult.node1_policy.fee_base_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node1_policy?null:n.lookupResult.node1_policy.fee_rate_milli_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null!=n.lookupResult.node1_policy&&n.lookupResult.node1_policy.disabled?"Yes":"No"),e.R7$(3),e.Y8G("ngIf",!n.node2_match),e.R7$(),e.Y8G("ngIf",n.node2_match),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(n.lookupResult.node2_pub),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node2_policy?null:n.lookupResult.node2_policy.time_lock_delta),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node2_policy?null:n.lookupResult.node2_policy.min_htlc),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node2_policy?null:n.lookupResult.node2_policy.max_htlc_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node2_policy?null:n.lookupResult.node2_policy.fee_base_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node2_policy?null:n.lookupResult.node2_policy.fee_rate_milli_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null!=n.lookupResult.node2_policy&&n.lookupResult.node2_policy.disabled?"Yes":"No")}}let uh=(()=>{var t;class s{constructor(i){this.store=i,this.node1_match=!1,this.node2_match=!1,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.store.select(F.pI).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.lookupResult.node1_pub===i.identity_pubkey&&(this.node1_match=!0),this.lookupResult.node2_pub===i.identity_pubkey&&(this.node2_match=!0)})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(L.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-lookup"]],inputs:{lookupResult:"lookupResult"},standalone:!1,decls:1,vars:1,consts:[["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1",3,"inset"],["fxLayout","row"],["fxLayout","column","fxFlex","30","fxLayoutAlign","end start"],[1,"font-bold-500"],[1,"foreground-secondary-text"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end start"],[1,"my-1",3,"inset"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mt-1","bordered-box","padding-gap-large"],["fxLayout","column"],["class","page-title font-bold-500",4,"ngIf"],["fxLayout","column","fxFlex","20"],["fxLayout","column","fxFlex","10"],[1,"page-title","font-bold-500"]],template:function(o,a){1&o&&e.DNE(0,mh,121,44,"div",0),2&o&&e.Y8G("ngIf",a.lookupResult)},dependencies:[_.bT,ne.q,f.DJ,f.sA,f.UI,_.QX,_.vh],styles:[".mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%], .mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%]{height:38px!important}"]}))}return t(),s})();const dh=t=>({"background-color":t});function hh(t,s){if(1&t&&(e.j41(0,"span",10),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Lme("",i.nodeFeaturesEnum[n.value.name]||n.value.name,": ",n.value.is_required?"Mandatory":"Optional")}}function _h(t,s){1&t&&(e.j41(0,"th",27),e.EFF(1,"Network"),e.k0s())}function fh(t,s){if(1&t&&(e.j41(0,"td",28),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(null==n?null:n.network)}}function gh(t,s){1&t&&(e.j41(0,"th",27),e.EFF(1,"Address"),e.k0s())}function Ch(t,s){if(1&t&&(e.j41(0,"td",28),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(null==n?null:n.addr)}}function yh(t,s){1&t&&(e.j41(0,"th",29)(1,"div",30),e.EFF(2,"Actions"),e.k0s()())}function bh(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",31)(1,"div",32)(2,"mat-select",33),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",34),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onConnectNode(o))}),e.EFF(5,"Connect"),e.k0s(),e.j41(6,"mat-option",35),e.bIt("copied",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onCopyNodeURI(o))}),e.EFF(7,"Copy URI"),e.k0s()()()()}if(2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(6),e.Y8G("payload",i.lookupResult.node.pub_key+"@"+n.addr)}}function Fh(t,s){1&t&&e.nrm(0,"tr",36)}function xh(t,s){1&t&&e.nrm(0,"tr",37)}function vh(t,s){if(1&t&&(e.j41(0,"div",2),e.nrm(1,"mat-divider",3),e.j41(2,"div",4)(3,"div",5)(4,"h4",6),e.EFF(5,"Alias"),e.k0s(),e.j41(6,"span",7),e.EFF(7),e.j41(8,"span",8),e.EFF(9),e.k0s()()(),e.j41(10,"div",9)(11,"h4",6),e.EFF(12,"Pub Key"),e.k0s(),e.j41(13,"span",10),e.EFF(14),e.k0s()()(),e.nrm(15,"mat-divider",11),e.j41(16,"div",4)(17,"div",5)(18,"h4",6),e.EFF(19,"Last Update"),e.k0s(),e.j41(20,"span",7),e.EFF(21),e.nI1(22,"date"),e.k0s()(),e.j41(23,"div",9)(24,"h4",6),e.EFF(25,"Total Capacity (Sats)"),e.k0s(),e.j41(26,"span",7),e.EFF(27),e.nI1(28,"number"),e.k0s()()(),e.nrm(29,"mat-divider",11),e.j41(30,"div",4)(31,"div",5)(32,"h4",6),e.EFF(33,"Number of Channels"),e.k0s(),e.j41(34,"span",7),e.EFF(35),e.nI1(36,"number"),e.k0s()(),e.j41(37,"div",12)(38,"h4",6),e.EFF(39,"Features"),e.k0s(),e.DNE(40,hh,2,2,"span",13),e.nI1(41,"keyvalue"),e.k0s()(),e.nrm(42,"mat-divider",11),e.j41(43,"div",14)(44,"h4",15),e.EFF(45,"Addresses"),e.k0s(),e.j41(46,"div",16)(47,"table",17,0),e.qex(49,18),e.DNE(50,_h,2,0,"th",19)(51,fh,2,1,"td",20),e.bVm(),e.qex(52,21),e.DNE(53,gh,2,0,"th",19)(54,Ch,2,1,"td",20),e.bVm(),e.qex(55,22),e.DNE(56,yh,3,0,"th",23)(57,bh,8,1,"td",24),e.bVm(),e.DNE(58,Fh,1,0,"tr",25)(59,xh,1,0,"tr",26),e.k0s()()()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(n.lookupResult.node.alias),e.R7$(),e.Y8G("ngStyle",e.eq3(24,dh,null==n.lookupResult.node?null:n.lookupResult.node.color)),e.R7$(),e.JRh(null==n.lookupResult.node?null:n.lookupResult.node.color),e.R7$(5),e.JRh(n.lookupResult.node.pub_key),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(22,15,1e3*n.lookupResult.node.last_update,"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(e.bMT(28,18,n.lookupResult.total_capacity)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(36,20,n.lookupResult.num_channels)),e.R7$(5),e.Y8G("ngForOf",e.bMT(41,22,n.lookupResult.node.features)),e.R7$(2),e.Y8G("inset",!0),e.R7$(5),e.Y8G("dataSource",n.lookupResult.node.addresses),e.R7$(11),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns)}}let Th=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.snackBar=o,this.store=a,this.nodeFeaturesEnum=c._U,this.displayedColumns=["network","addr","actions"],this.information={},this.availableBalance=0,this.unSubs=[new h.B,new h.B,new h.B]}ngOnInit(){this.store.select(F.pI).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.information=i}),this.store.select(F.$7).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.availableBalance=i.blockchainBalance.total_balance||0})}onCopyNodeURI(i){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+i)}onConnectNode(i){this.store.dispatch((0,I.xO)({payload:{data:{message:{peer:{pub_key:this.lookupResult.node?.pub_key,address:i.addr},information:this.information,balance:this.availableBalance},component:tt}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU(le.UG),e.rXU(L.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-node-lookup"]],inputs:{lookupResult:"lookupResult"},standalone:!1,decls:1,vars:1,consts:[["table",""],["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1",3,"inset"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"ml-2",3,"ngStyle"],["fxFlex","70"],[1,"foreground-secondary-text","w-100"],[1,"my-1",3,"inset"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end start",1,"my-1"],["class","foreground-secondary-text w-100",4,"ngFor","ngForOf"],["fxLayout","column"],["fxFlex","100","fxLayoutAlign","start",1,"font-bold-500","mb-1"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",3,"dataSource"],["matColumnDef","network"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","addr"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select","btn-action"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"copied","payload"],["mat-header-row",""],["mat-row",""]],template:function(o,a){1&o&&e.DNE(0,vh,60,26,"div",1),2&o&&e.Y8G("ngIf",a.lookupResult)},dependencies:[_.Sq,_.bT,_.B3,ne.q,f.DJ,f.sA,f.UI,j.eI,E.VO,E.$2,X.wT,R.B4,R.aE,u.Zl,u.tL,u.ji,u.cC,u.YV,u.iL,u.KS,u.$R,u.YZ,u.NB,B.Ld,be.U,_.QX,_.vh,_.lG],encapsulation:2}))}return t(),s})();const kh=t=>({"mt-1":!0,"mt-2":t}),Sh=t=>({"w-100 mt-2 p-2 error-border":t,"w-100 my-2 p-2":!0});function Rh(t,s){if(1&t&&(e.j41(0,"mat-radio-button",17),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n.id)("checked",i.selectedFieldId===n.id),e.R7$(),e.SpI(" ",n.name," ")}}function Eh(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("",null==n.lookupFields[n.selectedFieldId]?null:n.lookupFields[n.selectedFieldId].placeholder," is required.")}}function Ih(t,s){1&t&&e.nrm(0,"mat-progress-bar",20)}function Lh(t,s){if(1&t&&(e.j41(0,"div",18),e.DNE(1,Ih,1,0,"mat-progress-bar",19),e.EFF(2),e.k0s()),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(3,Sh,""!==n.errorMessage&&"Getting lookup details..."!==n.errorMessage)),e.R7$(),e.Y8G("ngIf","Getting lookup details..."===n.errorMessage),e.R7$(),e.SpI(" ",n.errorMessage," ")}}function wh(t,s){if(1&t&&(e.j41(0,"span",27),e.nrm(1,"rtl-node-lookup",28),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("lookupResult",n.lookupValue)}}function jh(t,s){if(1&t&&(e.j41(0,"span",27),e.nrm(1,"rtl-channel-lookup",28),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("lookupResult",n.lookupValue)}}function Gh(t,s){1&t&&(e.j41(0,"span"),e.EFF(1,' fxFlex="100"'),e.j41(2,"h3"),e.EFF(3,"Error! Unable to find details!"),e.k0s()())}function Dh(t,s){if(1&t&&(e.j41(0,"div",21)(1,"div",22)(2,"span",23),e.EFF(3),e.k0s()(),e.j41(4,"div",24),e.DNE(5,wh,2,1,"span",25)(6,jh,2,1,"span",25)(7,Gh,4,0,"span",26),e.k0s()()),2&t){const n=e.XpG();e.R7$(3),e.SpI("",n.lookupFields[n.selectedFieldId].name," Details"),e.R7$(),e.Y8G("ngSwitch",n.selectedFieldId),e.R7$(),e.Y8G("ngSwitchCase",0),e.R7$(),e.Y8G("ngSwitchCase",1)}}let it=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.commonService=o,this.store=a,this.actions=l,this.lookupKey="",this.lookupValue={},this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Pubkey"},{id:1,name:"Channel",placeholder:"Channel ID"}],this.faSearch=x.MjD,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKey=window.history.state.lookupValue||""),this.actions.pipe((0,g.Q)(this.unSubs[0]),(0,U.p)(i=>i.type===c.QP.SET_LOOKUP_LND||i.type===c.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(i=>{i.type===c.QP.SET_LOOKUP_LND&&(this.errorMessage=0===this.selectedFieldId&&i.payload.hasOwnProperty("node")||1===this.selectedFieldId&&i.payload.hasOwnProperty("channel_id")?"":this.errorMessage,this.lookupValue=JSON.parse(JSON.stringify(i.payload)),this.flgSetLookupValue=!(0!==this.selectedFieldId||!i.payload.hasOwnProperty("node"))||!(1!==this.selectedFieldId||!i.payload.hasOwnProperty("channel_id")),this.logger.info(this.lookupValue)),i.type===c.QP.UPDATE_API_CALL_STATUS_LND&&"Lookup"===i.payload.action&&(this.errorMessage="",i.payload.status===c.wn.ERROR&&(this.errorMessage="object"==typeof i.payload.message?JSON.stringify(i.payload.message):i.payload.message),i.payload.status===c.wn.INITIATED&&(this.errorMessage=c.MZ.GET_LOOKUP_DETAILS))})}onLookup(){if(!this.lookupKey)return!0;switch(this.flgSetLookupValue=!1,this.lookupValue={},this.selectedFieldId){case 0:this.store.dispatch((0,T.zU)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,T.ij)({payload:{uiMessage:c.MZ.SEARCHING_CHANNEL,channelID:this.lookupKey.trim()}}))}}onSelectChange(i){this.resetData(),this.selectedFieldId=i.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.lookupKey="",this.lookupValue={},this.errorMessage=""}clearLookupValue(){this.lookupValue={},this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU($.h),e.rXU(L.il),e.rXU(K.En))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lookups"]],standalone:!1,decls:21,vars:10,consts:[["form","ngForm"],["key",""],["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModelChange","change","ngModel"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass",4,"ngIf"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["mode","indeterminate"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxFlex","100"],[3,"lookupResult"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",2)(1,"div",3)(2,"mat-card-content",4)(3,"form",5,0)(5,"div",6)(6,"mat-radio-group",7),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.selectedFieldId,m)||(a.selectedFieldId=m),r.Njj(m)}),e.bIt("change",function(m){return r.eBV(l),r.Njj(a.onSelectChange(m))}),e.DNE(7,Rh,2,3,"mat-radio-button",8),e.k0s()(),e.j41(8,"mat-form-field",9)(9,"mat-label"),e.EFF(10),e.k0s(),e.j41(11,"input",10,1),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.lookupKey,m)||(a.lookupKey=m),r.Njj(m)}),e.bIt("change",function(){return r.eBV(l),r.Njj(a.clearLookupValue())}),e.k0s(),e.DNE(13,Eh,2,1,"mat-error",11),e.k0s(),e.j41(14,"div",12)(15,"button",13),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(16,"Clear"),e.k0s(),e.j41(17,"button",14),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onLookup())}),e.EFF(18,"Lookup"),e.k0s()()(),e.DNE(19,Lh,3,5,"div",15)(20,Dh,8,4,"div",16),e.k0s()()()}2&o&&(e.R7$(6),e.R50("ngModel",a.selectedFieldId),e.R7$(),e.Y8G("ngForOf",a.lookupFields),e.R7$(),e.Y8G("ngClass",e.eq3(8,kh,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),e.R7$(2),e.JRh((null==a.lookupFields[a.selectedFieldId]?null:a.lookupFields[a.selectedFieldId].placeholder)||"Lookup Key"),e.R7$(),e.R50("ngModel",a.lookupKey),e.R7$(2),e.Y8G("ngIf",!a.lookupKey),e.R7$(6),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage&&a.lookupValue&&a.flgSetLookupValue))},dependencies:[_.YU,_.Sq,_.bT,_.ux,_.e1,_.fG,d.qT,d.me,d.BC,d.cb,d.YS,d.vS,d.cV,N.$z,k.m2,M.fg,C.rl,C.nJ,C.TL,V.HM,de.VT,de._g,f.DJ,f.sA,f.UI,j.PW,uh,Th],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]}))}return t(),s})();var Pe=y(25084);function Nh(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid date format."),e.k0s())}function Ph(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid date format."),e.k0s())}function $h(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",28),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let Ah=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.store=o,this.router=a,this.faMapSigns=x.knH,this.today=new Date(Date.now()),this.lastMonthDay=new Date(this.today.getFullYear(),this.today.getMonth()-1,this.today.getDate()+1,0,0,0),this.yesterday=new Date(this.today.getFullYear(),this.today.getMonth(),this.today.getDate()-1,0,0,0),this.endDate=this.today,this.startDate=this.lastMonthDay,this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"peers",name:"Routing Peers"},{link:"nonroutingprs",name:"Non Routing Peers"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B]}ngOnInit(){this.onEventsFetch();const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,U.p)(o=>o instanceof w.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}})}onEventsFetch(){this.store.dispatch((0,T.kv)({payload:{forwarding_events:[]}})),this.endDate||(this.endDate=this.today),this.startDate||(this.startDate=new Date(this.endDate.getFullYear(),this.endDate.getMonth()-1,this.endDate.getDate()+1,0,0,0)),this.store.dispatch((0,T.uK)({payload:{end_time:Math.round(this.endDate.getTime()/1e3).toString(),start_time:Math.round(this.startDate.getTime()/1e3).toString()}}))}resetData(){this.endDate=this.today,this.startDate=this.lastMonthDay}ngOnDestroy(){this.resetData(),this.store.dispatch((0,T.kv)({payload:{forwarding_events:[]}})),this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU(L.il),e.rXU(w.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-routing"]],standalone:!1,decls:41,vars:16,consts:[["routingForm","ngForm"],["strtDate","ngModel"],["startDatepicker",""],["enDate","ngModel"],["endDatepicker",""],["tabPanel",""],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"card-content-gap","mt-1"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mb-1",3,"ngSubmit"],["fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start"],["matInput","","name","startDate","tabindex","1",3,"ngModelChange","matDatepicker","max","ngModel"],["matSuffix","",3,"for"],[3,"startAt"],[4,"ngIf"],["matInput","","name","endDate","tabindex","2",3,"ngModelChange","matDatepicker","min","max","ngModel"],["fxLayout","row",1,""],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","5","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["tabindex","5","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",6)(1,"div",7),e.nrm(2,"fa-icon",8),e.j41(3,"span",9),e.EFF(4,"Routing"),e.k0s()(),e.j41(5,"div",10)(6,"mat-card",11)(7,"mat-card-content",12)(8,"form",13,0),e.bIt("ngSubmit",function(){return r.eBV(l),r.Njj(a.onEventsFetch())}),e.j41(10,"div",14)(11,"mat-form-field",15)(12,"mat-label"),e.EFF(13,"Start Date"),e.k0s(),e.j41(14,"input",16,1),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.startDate,m)||(a.startDate=m),r.Njj(m)}),e.k0s(),e.nrm(16,"mat-datepicker-toggle",17)(17,"mat-datepicker",18,2),e.DNE(19,Nh,2,0,"mat-error",19),e.k0s(),e.j41(20,"mat-form-field",15)(21,"mat-label"),e.EFF(22,"End Date"),e.k0s(),e.j41(23,"input",20,3),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.endDate,m)||(a.endDate=m),r.Njj(m)}),e.k0s(),e.nrm(25,"mat-datepicker-toggle",17)(26,"mat-datepicker",18,4),e.DNE(28,Ph,2,0,"mat-error",19),e.k0s()(),e.j41(29,"div",21)(30,"button",22),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(31,"Clear"),e.k0s(),e.j41(32,"button",23),e.EFF(33,"Fetch Events"),e.k0s()()(),e.j41(34,"div",24)(35,"nav",25),e.DNE(36,$h,2,4,"div",26),e.k0s(),e.nrm(37,"mat-tab-nav-panel",null,5),e.k0s(),e.j41(39,"div",27),e.nrm(40,"router-outlet"),e.k0s()()()()()}if(2&o){const l=e.sdS(15),p=e.sdS(18),m=e.sdS(24),v=e.sdS(27),b=e.sdS(38);e.R7$(2),e.Y8G("icon",a.faMapSigns),e.R7$(12),e.Y8G("matDatepicker",p)("max",a.today),e.R50("ngModel",a.startDate),e.R7$(2),e.Y8G("for",p),e.R7$(),e.Y8G("startAt",a.startDate),e.R7$(2),e.Y8G("ngIf",l.errors),e.R7$(4),e.Y8G("matDatepicker",v)("min",a.startDate)("max",a.today),e.R50("ngModel",a.endDate),e.R7$(2),e.Y8G("for",v),e.R7$(),e.Y8G("startAt",a.endDate),e.R7$(2),e.Y8G("ngIf",m.errors),e.R7$(7),e.Y8G("tabPanel",b),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[_.Sq,_.bT,d.qT,d.me,d.BC,d.cb,d.vS,d.cV,O.aY,N.$z,k.RN,k.m2,Pe.Vh,Pe.bZ,Pe.bU,M.fg,C.rl,C.nJ,C.TL,C.yw,f.DJ,f.sA,f.UI,A.Bu,A.hQ,A.Ql,Ke.z,ae.V,w.n3,ie.Wk],encapsulation:2}))}return t(),s})();const Mh=()=>["all"],Bh=()=>["no_event"],ve=t=>({width:t}),Oh=t=>({"display-none":t});function Vh(t,s){if(1&t&&(e.j41(0,"div",6),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.JRh(n.errorMessage)}}function Yh(t,s){if(1&t&&(e.j41(0,"mat-option",14),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function Xh(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",7),e.nrm(1,"div",8),e.j41(2,"div",9)(3,"mat-form-field",10)(4,"mat-label"),e.EFF(5,"Filter By"),e.k0s(),e.j41(6,"mat-select",11),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilterBy,o)||(a.selFilterBy=o),r.Njj(o)}),e.bIt("selectionChange",function(){r.eBV(n);const o=e.XpG();return o.selFilter="",r.Njj(o.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,Yh,2,2,"mat-option",12),e.k0s()()(),e.j41(9,"mat-form-field",10)(10,"mat-label"),e.EFF(11,"Filter"),e.k0s(),e.j41(12,"input",13),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilter,o)||(a.selFilter=o),r.Njj(o)}),e.bIt("input",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())})("keyup",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())}),e.k0s()()()()}if(2&t){const n=e.XpG();e.R7$(6),e.R50("ngModel",n.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(3,Mh).concat(n.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",n.selFilter)}}function Uh(t,s){1&t&&e.nrm(0,"mat-progress-bar",37)}function Hh(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Timestamp"),e.k0s())}function zh(t,s){if(1&t&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*n.timestamp,"dd/MMM/y HH:mm"))}}function qh(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Inbound Alias"),e.k0s())}function Jh(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ve,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.alias_in)}}function Qh(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Inbound Channel"),e.k0s())}function Wh(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ve,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id_in)}}function Zh(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Outbound Alias"),e.k0s())}function Kh(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ve,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.alias_out)}}function e_(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Outbound Channel"),e.k0s())}function t_(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ve,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id_out)}}function n_(t,s){1&t&&(e.j41(0,"th",42),e.EFF(1,"Inbound Amount (Sats)"),e.k0s())}function i_(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.amt_in))}}function a_(t,s){1&t&&(e.j41(0,"th",42),e.EFF(1,"Outbound Amount (Sats)"),e.k0s())}function s_(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.amt_out))}}function o_(t,s){1&t&&(e.j41(0,"th",42),e.EFF(1,"Fee (mSats)"),e.k0s())}function l_(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.fee_msat))}}function r_(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",44)(1,"div",45)(2,"mat-select",46),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",47),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function c_(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",48)(1,"button",49),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG(2);return r.Njj(l.onForwardingEventClick(a,o))}),e.EFF(2,"View Info"),e.k0s()()}}function p_(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No forwarding history available."),e.k0s())}function m_(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting forwarding history..."),e.k0s())}function u_(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.errorMessage)}}function d_(t,s){if(1&t&&(e.j41(0,"td",50),e.DNE(1,p_,2,0,"p",51)(2,m_,2,0,"p",51)(3,u_,2,1,"p",51),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=n.forwardingHistoryEvents&&n.forwardingHistoryEvents.data)||(null==n.forwardingHistoryEvents||null==n.forwardingHistoryEvents.data?null:n.forwardingHistoryEvents.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.forwardingHistoryEvents&&n.forwardingHistoryEvents.data)||(null==n.forwardingHistoryEvents||null==n.forwardingHistoryEvents.data?null:n.forwardingHistoryEvents.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.forwardingHistoryEvents&&n.forwardingHistoryEvents.data)||(null==n.forwardingHistoryEvents||null==n.forwardingHistoryEvents.data?null:n.forwardingHistoryEvents.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function h_(t,s){if(1&t&&e.nrm(0,"tr",52),2&t){const n=e.XpG(2);e.Y8G("ngClass",e.eq3(1,Oh,(null==n.forwardingHistoryEvents?null:n.forwardingHistoryEvents.data)&&(null==n.forwardingHistoryEvents||null==n.forwardingHistoryEvents.data?null:n.forwardingHistoryEvents.data.length)>0))}}function __(t,s){1&t&&e.nrm(0,"tr",53)}function f_(t,s){1&t&&e.nrm(0,"tr",54)}function g_(t,s){if(1&t&&(e.j41(0,"div",15),e.DNE(1,Uh,1,0,"mat-progress-bar",16),e.j41(2,"table",17,0),e.qex(4,18),e.DNE(5,Hh,2,0,"th",19)(6,zh,3,4,"td",20),e.bVm(),e.qex(7,21),e.DNE(8,qh,2,0,"th",19)(9,Jh,4,4,"td",20),e.bVm(),e.qex(10,22),e.DNE(11,Qh,2,0,"th",19)(12,Wh,4,4,"td",20),e.bVm(),e.qex(13,23),e.DNE(14,Zh,2,0,"th",19)(15,Kh,4,4,"td",20),e.bVm(),e.qex(16,24),e.DNE(17,e_,2,0,"th",19)(18,t_,4,4,"td",20),e.bVm(),e.qex(19,25),e.DNE(20,n_,2,0,"th",26)(21,i_,4,3,"td",20),e.bVm(),e.qex(22,27),e.DNE(23,a_,2,0,"th",26)(24,s_,4,3,"td",20),e.bVm(),e.qex(25,28),e.DNE(26,o_,2,0,"th",26)(27,l_,4,3,"td",20),e.bVm(),e.qex(28,29),e.DNE(29,r_,6,0,"th",30)(30,c_,3,0,"td",31),e.bVm(),e.qex(31,32),e.DNE(32,d_,4,3,"td",33),e.bVm(),e.DNE(33,h_,1,3,"tr",34)(34,__,1,0,"tr",35)(35,f_,1,0,"tr",36),e.k0s()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",n.tableSetting.sortBy)("matSortDirection",n.tableSetting.sortOrder)("dataSource",n.forwardingHistoryEvents),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(7,Bh)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns)}}function C_(t,s){if(1&t&&e.nrm(0,"mat-paginator",55),2&t){const n=e.XpG();e.Y8G("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("hidePageSize",n.screenSize!==n.screenSizeEnum.XS)}}let at=(()=>{var t;class s{constructor(i,o,a,l,p){this.logger=i,this.commonService=o,this.store=a,this.datePipe=l,this.camelCaseWithReplace=p,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=c._1,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:c.md,sortBy:"timestamp",sortOrder:c.oi.DESCENDING},this.forwardingHistoryData=[],this.displayedColumns=[],this.forwardingHistoryEvents=new u.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(i){i.eventsData&&(this.apiCallStatus={status:c.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=i.eventsData.currentValue,this.forwardingHistoryData=this.eventsData,i.eventsData.firstChange||this.loadForwardingEventsTable(this.forwardingHistoryData)),i.selFilter&&!i.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(F.$G).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=i.pageSettings.find(o=>o.pageId===this.pageId)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.ZC.find(o=>o.pageId===this.pageId)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(F.Ie).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=i.apiCallStatus,i.apiCallStatus?.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.forwardingHistoryData=i.forwardingHistory.forwarding_events||[],this.forwardingHistoryData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData),this.logger.info(i.apiCallStatus),this.logger.info(i.forwardingHistory))})}ngAfterViewInit(){setTimeout(()=>{this.forwardingHistoryData.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData)},0)}onForwardingEventClick(i,o){this.store.dispatch((0,I.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Event Information",message:[[{key:"timestamp",value:i.timestamp,title:"Timestamp",width:25,type:c.UN.DATE_TIME},{key:"amt_in",value:i.amt_in,title:"Inbound Amount (Sats)",width:25,type:c.UN.NUMBER},{key:"amt_out",value:i.amt_out,title:"Outbound Amount (Sats)",width:25,type:c.UN.NUMBER},{key:"fee_msat",value:i.fee_msat,title:"Fee (mSats)",width:25,type:c.UN.NUMBER}],[{key:"alias_in",value:i.alias_in,title:"Inbound Peer Alias",width:25,type:c.UN.STRING},{key:"chan_id_in",value:i.chan_id_in,title:"Inbound Channel ID",width:25,type:c.UN.STRING},{key:"alias_out",value:i.alias_out,title:"Outbound Peer Alias",width:25,type:c.UN.STRING},{key:"chan_id_out",value:i.chan_id_out,title:"Outbound Channel ID",width:25,type:c.UN.STRING}]]}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(i){const o=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.timestamp?this.datePipe.transform(new Date(1e3*i.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(i).toLowerCase();break;case"timestamp":a=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return a.includes(o)}}loadForwardingEventsTable(i){this.forwardingHistoryEvents=new u.I6(i?[...i]:[]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.forwardingHistoryEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU($.h),e.rXU(L.il),e.rXU(_.vh),e.rXU(J.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-forwarding-history"]],viewQuery:function(o,a){if(1&o&&(e.GBs(R.B4,5),e.GBs(G.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},standalone:!1,features:[e.Jv_([{provide:E.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:G.xX,useValue:(0,c.on)("Events")}]),e.OA$],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","hidePageSize",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias_in"],["matColumnDef","chan_id_in"],["matColumnDef","alias_out"],["matColumnDef","chan_id_out"],["matColumnDef","amt_in"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amt_out"],["matColumnDef","fee_msat"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"]],template:function(o,a){1&o&&(e.j41(0,"div",1),e.DNE(1,Vh,2,1,"div",2)(2,Xh,13,4,"div",3)(3,g_,36,8,"div",4)(4,C_,1,3,"mat-paginator",5),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage))},dependencies:[_.YU,_.Sq,_.bT,_.B3,d.me,d.BC,d.vS,N.$z,M.fg,C.rl,C.nJ,V.HM,f.DJ,f.sA,f.UI,j.PW,j.eI,E.VO,E.$2,X.wT,R.B4,R.aE,u.Zl,u.tL,u.ji,u.cC,u.YV,u.iL,u.Zq,u.xW,u.KS,u.$R,u.Qo,u.YZ,u.NB,u.iF,G.iy,B.ZF,B.Ld,_.QX,_.vh],encapsulation:2}))}return t(),s})();const y_=["tableIn"],b_=["tableOut"],F_=["paginatorIn"],x_=["paginatorOut"],v_=(t,s)=>({"mt-2":t,"mt-1":s}),T_=()=>["no_incoming_event"],k_=t=>({"mt-2":t}),S_=()=>["no_outgoing_event"],Te=t=>({width:t}),st=t=>({"display-none":t});function R_(t,s){if(1&t&&(e.j41(0,"div",7),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.JRh(n.errorMessage)}}function E_(t,s){1&t&&e.nrm(0,"mat-progress-bar",34)}function I_(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Channel ID"),e.k0s())}function L_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Te,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id)}}function w_(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Peer Alias"),e.k0s())}function j_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Te,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.alias)}}function G_(t,s){1&t&&(e.j41(0,"th",39),e.EFF(1,"Events"),e.k0s())}function D_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.events))}}function N_(t,s){1&t&&(e.j41(0,"th",39),e.EFF(1,"Total Amount (Sats)"),e.k0s())}function P_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.total_amount))}}function $_(t,s){1&t&&(e.j41(0,"th",41)(1,"div",42),e.EFF(2,"Actions"),e.k0s()())}function A_(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",43)(1,"button",44),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG(2);return r.Njj(l.onRoutingPeerClick(a,o,"in"))}),e.EFF(2,"View Info"),e.k0s()()}}function M_(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No incoming routing peer available."),e.k0s())}function B_(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting incoming routing peers..."),e.k0s())}function O_(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.errorMessage)}}function V_(t,s){if(1&t&&(e.j41(0,"td",45),e.DNE(1,M_,2,0,"p",46)(2,B_,2,0,"p",46)(3,O_,2,1,"p",46),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersIncoming&&n.routingPeersIncoming.data)||(null==n.routingPeersIncoming||null==n.routingPeersIncoming.data?null:n.routingPeersIncoming.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersIncoming&&n.routingPeersIncoming.data)||(null==n.routingPeersIncoming||null==n.routingPeersIncoming.data?null:n.routingPeersIncoming.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersIncoming&&n.routingPeersIncoming.data)||(null==n.routingPeersIncoming||null==n.routingPeersIncoming.data?null:n.routingPeersIncoming.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Y_(t,s){if(1&t&&e.nrm(0,"tr",47),2&t){const n=e.XpG(2);e.Y8G("ngClass",e.eq3(1,st,(null==n.routingPeersIncoming||null==n.routingPeersIncoming.data?null:n.routingPeersIncoming.data.length)>0))}}function X_(t,s){1&t&&e.nrm(0,"tr",48)}function U_(t,s){1&t&&e.nrm(0,"tr",49)}function H_(t,s){1&t&&e.nrm(0,"mat-progress-bar",34)}function z_(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Channel ID"),e.k0s())}function q_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Te,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id)}}function J_(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Peer Alias"),e.k0s())}function Q_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Te,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.alias)}}function W_(t,s){1&t&&(e.j41(0,"th",39),e.EFF(1,"Events"),e.k0s())}function Z_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.events))}}function K_(t,s){1&t&&(e.j41(0,"th",39),e.EFF(1,"Total Amount (Sats)"),e.k0s())}function e0(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.total_amount))}}function t0(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No outgoing routing peer available."),e.k0s())}function n0(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting outgoing routing peers..."),e.k0s())}function i0(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.errorMessage)}}function a0(t,s){if(1&t&&(e.j41(0,"td",45),e.DNE(1,t0,2,0,"p",46)(2,n0,2,0,"p",46)(3,i0,2,1,"p",46),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersOutgoing&&n.routingPeersOutgoing.data)||(null==n.routingPeersOutgoing||null==n.routingPeersOutgoing.data?null:n.routingPeersOutgoing.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersOutgoing&&n.routingPeersOutgoing.data)||(null==n.routingPeersOutgoing||null==n.routingPeersOutgoing.data?null:n.routingPeersOutgoing.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersOutgoing&&n.routingPeersOutgoing.data)||(null==n.routingPeersOutgoing||null==n.routingPeersOutgoing.data?null:n.routingPeersOutgoing.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function s0(t,s){if(1&t&&e.nrm(0,"tr",47),2&t){const n=e.XpG(2);e.Y8G("ngClass",e.eq3(1,st,(null==n.routingPeersOutgoing||null==n.routingPeersOutgoing.data?null:n.routingPeersOutgoing.data.length)>0))}}function o0(t,s){1&t&&e.nrm(0,"tr",48)}function l0(t,s){1&t&&e.nrm(0,"tr",49)}function r0(t,s){if(1&t&&(e.j41(0,"div",8)(1,"div",9)(2,"div",10)(3,"div",11),e.EFF(4,"Incoming"),e.k0s(),e.nrm(5,"div",12),e.k0s(),e.j41(6,"div",13),e.DNE(7,E_,1,0,"mat-progress-bar",14),e.j41(8,"table",15,0),e.qex(10,16),e.DNE(11,I_,2,0,"th",17)(12,L_,4,4,"td",18),e.bVm(),e.qex(13,19),e.DNE(14,w_,2,0,"th",17)(15,j_,4,4,"td",18),e.bVm(),e.qex(16,20),e.DNE(17,G_,2,0,"th",21)(18,D_,4,3,"td",18),e.bVm(),e.qex(19,22),e.DNE(20,N_,2,0,"th",21)(21,P_,4,3,"td",18),e.bVm(),e.qex(22,23),e.DNE(23,$_,3,0,"th",24)(24,A_,3,0,"td",25),e.bVm(),e.qex(25,26),e.DNE(26,V_,4,3,"td",27),e.bVm(),e.DNE(27,Y_,1,3,"tr",28)(28,X_,1,0,"tr",29)(29,U_,1,0,"tr",30),e.k0s()(),e.nrm(30,"mat-paginator",31,1),e.k0s(),e.j41(32,"div",9)(33,"div",10)(34,"div",11),e.EFF(35,"Outgoing"),e.k0s(),e.nrm(36,"div",12),e.k0s(),e.j41(37,"div",13),e.DNE(38,H_,1,0,"mat-progress-bar",14),e.j41(39,"table",32,2),e.qex(41,16),e.DNE(42,z_,2,0,"th",17)(43,q_,4,4,"td",18),e.bVm(),e.qex(44,19),e.DNE(45,J_,2,0,"th",17)(46,Q_,4,4,"td",18),e.bVm(),e.qex(47,20),e.DNE(48,W_,2,0,"th",21)(49,Z_,4,3,"td",18),e.bVm(),e.qex(50,22),e.DNE(51,K_,2,0,"th",21)(52,e0,4,3,"td",18),e.bVm(),e.qex(53,33),e.DNE(54,a0,4,3,"td",27),e.bVm(),e.DNE(55,s0,1,3,"tr",28)(56,o0,1,0,"tr",29)(57,l0,1,0,"tr",30),e.k0s()(),e.nrm(58,"mat-paginator",31,3),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.Y8G("ngClass",e.l_i(18,v_,n.screenSize===n.screenSizeEnum.XS,n.screenSize===n.screenSizeEnum.SM)),e.R7$(5),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",n.routingPeersIncoming),e.R7$(19),e.Y8G("matFooterRowDef",e.lJ4(21,T_)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns),e.R7$(),e.Y8G("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("hidePageSize",n.screenSize!==n.screenSizeEnum.XS),e.R7$(3),e.Y8G("ngClass",e.eq3(22,k_,n.screenSize!==n.screenSizeEnum.LG)),e.R7$(5),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",n.routingPeersOutgoing),e.R7$(16),e.Y8G("matFooterRowDef",e.lJ4(24,S_)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns),e.R7$(),e.Y8G("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("hidePageSize",n.screenSize!==n.screenSizeEnum.XS)}}let c0=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.commonService=o,this.store=a,this.camelCaseWithReplace=l,this.nodePageDefs=c._1,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:c.md,sortBy:"total_amount",sortOrder:c.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.routingPeersIncoming=new u.I6([]),this.routingPeersOutgoing=new u.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(F.$G).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(F.Ie).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,i.apiCallStatus?.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=i.forwardingHistory.forwarding_events?i.forwardingHistory.forwarding_events:[],this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData),this.logger.info(i.apiCallStatus),this.logger.info(i.forwardingHistory)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.loadRoutingPeersTable(this.routingPeersData)}onRoutingPeerClick(i,o,a){let l=" Routing Information";l="in"===a?"Incoming"+l:"Outgoing"+l,this.store.dispatch((0,I.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:l,message:[[{key:"chan_id",value:i.chan_id,title:"Channel ID",width:50,type:c.UN.STRING},{key:"alias",value:i.alias,title:"Peer Alias",width:50,type:c.UN.STRING}],[{key:"events",value:i.events,title:"Events",width:50,type:c.UN.NUMBER},{key:"total_amount",value:i.total_amount,title:"Total Amount (Sats)",width:50,type:c.UN.NUMBER}]]}}}))}applyFilterIncoming(){this.routingPeersIncoming.filter=this.filterIn.trim().toLowerCase()}applyFilterOutgoing(){this.routingPeersOutgoing.filter=this.filterOut.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(i,o)=>{let a="";return a="all"===this.selFilterByIn?JSON.stringify(i).toLowerCase():"string"==typeof i[this.selFilterByIn]?i[this.selFilterByIn].toLowerCase():"boolean"==typeof i[this.selFilterByIn]?i[this.selFilterByIn]?"yes":"no":i[this.selFilterByIn].toString(),a.includes(o)},this.routingPeersOutgoing.filterPredicate=(i,o)=>{let a="";switch(this.selFilterByOut){case"all":a=JSON.stringify(i).toLowerCase();break;case"total_amount":case"total_fee":a=(+(i[this.selFilterByOut]||0)/1e3).toString()||"";break;default:a="string"==typeof i[this.selFilterByOut]?i[this.selFilterByOut].toLowerCase():"boolean"==typeof i[this.selFilterByOut]?i[this.selFilterByOut]?"yes":"no":i[this.selFilterByOut].toString()}return a.includes(o)}}loadRoutingPeersTable(i){if(i.length>0){const o=this.groupRoutingPeers(i);this.routingPeersIncoming=new u.I6(o[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.sort.sort({id:this.tableSetting.sortBy||"total_amount",start:this.tableSetting.sortOrder||c.oi.DESCENDING,disableClear:!0}),this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new u.I6(o[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.sort.sort({id:this.tableSetting.sortBy||"total_amount",start:this.tableSetting.sortOrder||c.oi.DESCENDING,disableClear:!0}),this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new u.I6([]),this.routingPeersOutgoing=new u.I6([]);this.setFilterPredicate(),this.applyFilterIncoming(),this.applyFilterOutgoing()}groupRoutingPeers(i){const o=[],a=[];return i.forEach(l=>{const p=o.find(v=>v.chan_id===l.chan_id_in),m=a.find(v=>v.chan_id===l.chan_id_out);p?(p.events++,p.total_amount=+p.total_amount+ +(l.amt_in||0)):o.push({chan_id:l.chan_id_in,alias:l.alias_in,events:1,total_amount:+(l.amt_in||0)}),m?(m.events++,m.total_amount=+m.total_amount+ +(l.amt_out||0)):a.push({chan_id:l.chan_id_out,alias:l.alias_out,events:1,total_amount:+(l.amt_out||0)})}),[this.commonService.sortDescByKey(o,"total_amount"),this.commonService.sortDescByKey(a,"total_amount")]}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU($.h),e.rXU(L.il),e.rXU(J.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-routing-peers"]],viewQuery:function(o,a){if(1&o&&(e.GBs(y_,5,R.B4),e.GBs(b_,5,R.B4),e.GBs(F_,5),e.GBs(x_,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sortIn=l.first),e.mGM(l=e.lsd())&&(a.sortOut=l.first),e.mGM(l=e.lsd())&&(a.paginatorIn=l.first),e.mGM(l=e.lsd())&&(a.paginatorOut=l.first)}},standalone:!1,features:[e.Jv_([{provide:G.xX,useValue:(0,c.on)("Routing peers")}])],decls:3,vars:2,consts:[["tableIn",""],["paginatorIn",""],["tableOut",""],["paginatorOut",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between start","class","page-sub-title-container mt-2",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between start",1,"page-sub-title-container","mt-2"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mb-4"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"dataSource"],["matColumnDef","chan_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","total_amount"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"dataSource"],["matColumnDef","no_outgoing_event"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){1&o&&(e.j41(0,"div",4),e.DNE(1,R_,2,1,"div",5)(2,r0,60,25,"div",6),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage))},dependencies:[_.YU,_.bT,_.B3,N.$z,V.HM,f.DJ,f.sA,f.UI,j.PW,j.eI,R.B4,R.aE,u.Zl,u.tL,u.ji,u.cC,u.YV,u.iL,u.Zq,u.xW,u.KS,u.$R,u.Qo,u.YZ,u.NB,u.iF,G.iy,B.Ld,_.QX],encapsulation:2}))}return t(),s})();function p0(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",8),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let m0=(()=>{var t;class s{constructor(i){this.router=i,this.faChartBar=x.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,U.p)(o=>o instanceof w.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(w.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-reports"]],standalone:!1,decls:12,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Reports"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,p0,2,4,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),e.k0s()()()),2&o){const l=e.sdS(10);e.R7$(),e.Y8G("icon",a.faChartBar),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[_.Sq,O.aY,k.RN,k.m2,f.DJ,f.sA,A.Bu,A.hQ,A.Ql,w.n3,ie.Wk],encapsulation:2}))}return t(),s})();var ot=y(51993),lt=y(24655);const u0=t=>({"error-border":t});function d0(t,s){1&t&&e.nrm(0,"mat-progress-bar",17)}function h0(t,s){if(1&t&&(e.j41(0,"div",18),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&t){const n=e.XpG();e.Y8G("@fadeIn",n.events.total_fee_msat),e.R7$(),e.Lme("",e.i5U(2,3,n.events.total_fee_msat/1e3||0,"1.0-2")," Sats/",e.bMT(3,6,(null==n.events||null==n.events.forwarding_events?null:n.events.forwarding_events.length)||0)," Events")}}function _0(t,s){1&t&&(e.j41(0,"div",19),e.EFF(1,"No routing report for the selected period"),e.k0s())}function f0(t,s){if(1&t&&(e.j41(0,"div",20),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(2,u0,"Getting Forwarding History..."!==n.errorMessage&&""!==n.errorMessage)),e.R7$(),e.JRh(n.errorMessage)}}function g0(t,s){if(1&t&&(e.j41(0,"span")(1,"span",22),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.j41(4,"span",22),e.EFF(5),e.nI1(6,"number"),e.k0s()()),2&t){const n=s.model,i=e.XpG(2);e.R7$(2),e.SpI("Events: ",e.bMT(3,2,(i.selReportBy===i.reportBy.EVENTS?n.value:n.extra.totalEvents)||0)),e.R7$(3),e.SpI("Fee: ",e.i5U(6,4,(i.selReportBy===i.reportBy.EVENTS?n.extra.totalFees:n.value)||0,"1.0-2"))}}function C0(t,s){if(1&t){const n=e.RV6();e.j41(0,"ngx-charts-bar-vertical",21),e.bIt("select",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onChartBarSelected(o))})("mouseup",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onChartMouseUp(o))}),e.DNE(1,g0,7,7,"ng-template",null,0,e.C5r),e.k0s()}if(2&t){const n=e.XpG();e.Y8G("view",n.view)("results",n.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",n.showYAxisLabel)("xAxisLabel",n.xAxisLabel)("yAxisLabel",n.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function y0(t,s){if(1&t&&e.nrm(0,"rtl-forwarding-history",23),2&t){const n=e.XpG();e.Y8G("eventsData",null==n.events?null:n.events.forwarding_events)("selFilter",n.eventFilterValue)}}let b0=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.dataService=o,this.commonService=a,this.store=l,this.reportPeriod=c.rs[0],this.secondsInADay=86400,this.events={},this.eventFilterValue="",this.reportBy=c.aR,this.selReportBy=c.aR.FEES,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.unSubs=[new h.B,new h.B,new h.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===c.f7.XS||this.screenSize===c.f7.SM),this.store.select(F.pI).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{i.identity_pubkey&&setTimeout(()=>{this.fetchEvents(this.startDate,this.endDate)},10)}),this.commonService.containerSizeUpdated.pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{switch(this.screenSize){case c.f7.MD:this.screenPaddingX=i.width/10;break;case c.f7.LG:this.screenPaddingX=i.width/16;break;default:this.screenPaddingX=i.width/20}this.view=[i.width-this.screenPaddingX,i.height/2.2],this.logger.info("Container Size: "+JSON.stringify(i)),this.logger.info("View: "+JSON.stringify(this.view))})}fetchEvents(i,o){this.errorMessage=c.MZ.GET_FORWARDING_HISTORY;const a=Math.round(i.getTime()/1e3).toString(),l=Math.round(o.getTime()/1e3).toString();this.dataService.getForwardingHistory("LND",a,l).pipe((0,g.Q)(this.unSubs[2])).subscribe({next:p=>{this.errorMessage="",p.forwarding_events&&p.forwarding_events.length?(p.forwarding_events=p.forwarding_events.reverse(),this.events=p,this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(i):this.prepareFeeReport(i)):(this.events={forwarding_events:[],total_fee_msat:0},this.routingReportData=[])},error:p=>{this.errorMessage=p}})}onChartMouseUp(i){"svg"===i.srcElement.tagName&&i.srcElement.classList.length>0&&"ngx-charts"===i.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(i){this.eventFilterValue=this.reportPeriod===c.rs[1]?i.name+"/"+this.startDate.getFullYear():i.name.toString().padStart(2,"0")+"/"+c.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(i){const o=Math.round(i.getTime()/1e3),a=[];if(this.events.total_fee_msat=0,this.reportPeriod===c.rs[1]){for(let l=0;l<12;l++)a.push({name:c.KR[l].name,value:0,extra:{totalEvents:0}});this.events.forwarding_events?.map(l=>{const p=new Date(1e3*+(l.timestamp||0)).getMonth();return a[p].value=a[p].value+ +(l.fee_msat||0)/1e3,a[p].extra.totalEvents=a[p].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(l.fee_msat||0),this.events})}else{for(let l=0;l{const p=Math.floor((+(l.timestamp||0)-o)/this.secondsInADay);return a[p].value=a[p].value+ +(l.fee_msat||0)/1e3,a[p].extra.totalEvents=a[p].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(l.fee_msat||0),this.events})}return a}prepareEventsReport(i){const o=Math.round(i.getTime()/1e3),a=[];if(this.events.total_fee_msat=0,this.reportPeriod===c.rs[1]){for(let l=0;l<12;l++)a.push({name:c.KR[l].name,value:0,extra:{totalFees:0}});this.events.forwarding_events?.map(l=>{const p=new Date(1e3*+(l.timestamp||0)).getMonth();return a[p].value=a[p].value+1,a[p].extra.totalFees=a[p].extra.totalFees+ +(l.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(l.fee_msat||0),this.events})}else{for(let l=0;l{const p=Math.floor((+(l.timestamp||0)-o)/this.secondsInADay);return a[p].value=a[p].value+1,a[p].extra.totalFees=a[p].extra.totalFees+ +(l.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(l.fee_msat||0),this.events})}return a}onSelectionChange(i){const o=i.selDate.getMonth(),a=i.selDate.getFullYear();this.reportPeriod=i.selScrollRange,this.reportPeriod===c.rs[1]?(this.startDate=new Date(a,0,1,0,0,0),this.endDate=new Date(a,11,31,23,59,59)):(this.startDate=new Date(a,o,1,0,0,0),this.endDate=new Date(a,o,this.getMonthDays(o,a),23,59,59)),this.fetchEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(i,o){return 1===i&&o%4==0?c.KR[i].days+1:c.KR[i].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU(Z.u),e.rXU($.h),e.rXU(L.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-routing-report"]],hostBindings:function(o,a){1&o&&e.bIt("mouseup",function(p){return a.onChartMouseUp(p)})},standalone:!1,decls:20,vars:11,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start center",1,"my-1",3,"ngModelChange","change","ngModel"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["mode","indeterminate","class","mt-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x","my-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",3,"ngClass",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["pageId","reports","tableId","routing",3,"eventsData","selFilter",4,"ngIf"],["mode","indeterminate",1,"mt-2"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1",3,"ngClass"],[1,"one-color",3,"select","mouseup","view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel"],[1,"tooltip-label"],["pageId","reports","tableId","routing",3,"eventsData","selFilter"]],template:function(o,a){1&o&&(e.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),e.bIt("stepChanged",function(p){return a.onSelectionChange(p)}),e.k0s(),e.j41(2,"div",3)(3,"mat-radio-group",4),e.mxI("ngModelChange",function(p){return e.DH7(a.selReportBy,p)||(a.selReportBy=p),p}),e.bIt("change",function(){return a.onSelReportByChange()}),e.j41(4,"span",5),e.EFF(5,"Report By: "),e.k0s(),e.j41(6,"mat-radio-button",6),e.EFF(7,"Fees"),e.k0s(),e.j41(8,"mat-radio-button",7),e.EFF(9,"Events"),e.k0s()()(),e.DNE(10,d0,1,0,"mat-progress-bar",8),e.j41(11,"div",9),e.DNE(12,h0,4,8,"div",10)(13,_0,2,0,"div",11)(14,f0,2,4,"div",12),e.j41(15,"div",13),e.DNE(16,C0,3,11,"ngx-charts-bar-vertical",14),e.k0s()(),e.j41(17,"div",15)(18,"div",13),e.DNE(19,y0,1,2,"rtl-forwarding-history",16),e.k0s()()()),2&o&&(e.R7$(3),e.R50("ngModel",a.selReportBy),e.R7$(3),e.Y8G("value",e.mNQ(a.reportBy.FEES)),e.R7$(2),e.Y8G("value",e.mNQ(a.reportBy.EVENTS)),e.R7$(2),e.Y8G("ngIf","Getting Forwarding History..."===a.errorMessage),e.R7$(2),e.Y8G("ngIf",a.routingReportData.length>0&&a.events.forwarding_events&&a.events.forwarding_events.length&&a.events.forwarding_events.length>0),e.R7$(),e.Y8G("ngIf",(a.routingReportData.length<=0||a.events.forwarding_events.length<=0)&&""===a.errorMessage),e.R7$(),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(2),e.Y8G("ngIf",a.routingReportData.length>0&&a.events.forwarding_events&&a.events.forwarding_events.length&&a.events.forwarding_events.length>0),e.R7$(3),e.Y8G("ngIf",a.events&&(null==a.events?null:a.events.forwarding_events)&&a.events.forwarding_events.length&&a.events.forwarding_events.length>0))},dependencies:[_.YU,_.bT,d.BC,d.vS,V.HM,de.VT,de._g,f.DJ,f.sA,f.UI,j.PW,ot.L8,lt.m,at,_.QX],encapsulation:2,data:{animation:[Ge.q]}}))}return t(),s})();var F0=y(59584),x0=y(5085);function v0(t,s){1&t&&(e.j41(0,"div",12),e.nrm(1,"mat-progress-bar",13),e.j41(2,"span"),e.EFF(3,"Getting transactions data..."),e.k0s()())}function T0(t,s){if(1&t&&(e.j41(0,"div",14),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.JRh(n.errorMessage)}}function k0(t,s){if(1&t&&(e.j41(0,"div",17),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Lme(" Paid ",e.i5U(2,2,n.transactionsReportSummary.amountPaidSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.bMT(3,5,n.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function S0(t,s){if(1&t&&(e.j41(0,"div",17),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Lme(" Received ",e.i5U(2,2,n.transactionsReportSummary.amountReceivedSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.bMT(3,5,n.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function R0(t,s){if(1&t&&(e.j41(0,"div",15),e.DNE(1,k0,4,7,"div",16)(2,S0,4,7,"div",16),e.k0s()),2&t){const n=e.XpG();e.Y8G("@fadeIn",n.transactionsReportSummary),e.R7$(),e.Y8G("ngIf",n.transactionsReportSummary.paymentsSelectedPeriod>0),e.R7$(),e.Y8G("ngIf",n.transactionsReportSummary.invoicesSelectedPeriod)}}function E0(t,s){1&t&&(e.j41(0,"div",18),e.EFF(1,"No transactions report for the selected period"),e.k0s())}function I0(t,s){if(1&t&&(e.j41(0,"span",21),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&t){const n=s.model;e.R7$(),e.LHq("",n.name,": ",e.i5U(2,4,n.value||0,"1.0-2"),"/# ","Paid"===n.name?"Payments":"Invoices",": ",e.bMT(3,7,(null==n.extra?null:n.extra.total)||0))}}function L0(t,s){if(1&t){const n=e.RV6();e.j41(0,"ngx-charts-bar-vertical-2d",20),e.bIt("select",function(o){r.eBV(n);const a=e.XpG(2);return r.Njj(a.onChartBarSelected(o))})("mouseup",function(o){r.eBV(n);const a=e.XpG(2);return r.Njj(a.onChartMouseUp(o))}),e.DNE(1,I0,4,9,"ng-template",null,0,e.C5r),e.k0s()}if(2&t){const n=e.XpG(2);e.Y8G("view",n.view)("results",n.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",n.showYAxisLabel)("xAxisLabel",n.xAxisLabel)("yAxisLabel",n.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",n.reportPeriod===n.scrollRanges[0]?2:8)}}function w0(t,s){if(1&t&&(e.j41(0,"div",10),e.DNE(1,L0,3,13,"ngx-charts-bar-vertical-2d",19),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",n.transactionsReportData.length>0&&n.transactionsNonZeroReportData.length>0)}}function j0(t,s){if(1&t&&e.nrm(0,"rtl-transactions-report-table",22),2&t){const n=e.XpG();e.Y8G("displayedColumns",n.displayedColumns)("tableSetting",n.tableSetting)("dataList",n.transactionsNonZeroReportData)("dataRange",n.reportPeriod)("selFilter",n.transactionFilterValue)}}let G0=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.commonService=o,this.store=a,this.scrollRanges=c.rs,this.reportPeriod=c.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:c.md,sortBy:"date",sortOrder:c.oi.DESCENDING},this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[{date:"",name:"1",series:[{extra:{total:0},name:"Paid",value:0},{extra:{total:0},name:"Received",value:0}]}],this.transactionsNonZeroReportData=[{amount_paid:0,amount_received:0,date:"",num_invoices:0,num_payments:0}],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===c.f7.XS||this.screenSize===c.f7.SM),this.store.select(F0.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(F.n_).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{i.apiCallStatus.status===c.wn.UN_INITIATED&&this.store.dispatch((0,T.tG)()),this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.payments=i.allLightningTransactions.listPaymentsAll.payments||[],this.invoices=i.allLightningTransactions.listInvoicesAll.invoices||[],(this.payments.length>0||this.invoices.length>0)&&(this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData()),this.logger.info(i)}),this.commonService.containerSizeUpdated.pipe((0,g.Q)(this.unSubs[2])).subscribe(i=>{switch(this.screenSize){case c.f7.MD:this.screenPaddingX=i.width/10;break;case c.f7.LG:this.screenPaddingX=i.width/16;break;default:this.screenPaddingX=i.width/20}this.view=[i.width-this.screenPaddingX,i.height/2.2],this.logger.info("Container Size: "+JSON.stringify(i)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(i){"svg"===i.srcElement.tagName&&i.srcElement.classList.length>0&&"ngx-charts"===i.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(i){this.transactionFilterValue=this.reportPeriod===c.rs[1]?i.series+"/"+this.startDate.getFullYear():i.series.toString().padStart(2,"0")+"/"+c.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(i,o){const a=Math.round(i.getTime()/1e3),l=Math.round(o.getTime()/1e3),p=[];this.transactionsNonZeroReportData=[],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const m=this.payments?.filter(b=>"SUCCEEDED"===b.status&&b.creation_date&&b.creation_date>=a&&b.creation_dateb.settled&&b.creation_date&&+b.creation_date>=a&&+b.creation_date{const S=new Date(1e3*+(b.creation_date||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(b.value_msat||0)+ +(b.fee_msat||0),p[S].series[0].value=p[S].series[0].value+(+(b.value_msat||0)+ +(b.fee_msat||0))/1e3,p[S].series[0].extra.total=p[S].series[0].extra.total+1,this.transactionsReportSummary}),v?.map(b=>{const S=new Date(1e3*+(b.creation_date||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(b.amt_paid_msat||0),p[S].series[1].value=p[S].series[1].value+ +(b.amt_paid_msat||0)/1e3,p[S].series[1].extra.total=p[S].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let b=0;b{const S=Math.floor((+(b.creation_date||0)-a)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(b.value_msat||0)+ +(b.fee_msat||0),p[S].series[0].value=p[S].series[0].value+(+(b.value_msat||0)+ +(b.fee_msat||0))/1e3,p[S].series[0].extra.total=p[S].series[0].extra.total+1,this.transactionsReportSummary}),v?.map(b=>{const S=Math.floor((+(b.creation_date||0)-a)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(b.amt_paid_msat||0),p[S].series[1].value=p[S].series[1].value+ +(b.amt_paid_msat||0)/1e3,p[S].series[1].extra.total=p[S].series[1].extra.total+1,this.transactionsReportSummary})}return p}prepareTableData(){return this.transactionsReportData?.reduce((i,o)=>o.series[0].extra.total>0||o.series[1].extra.total>0?i.concat({date:o.date,amount_paid:o.series[0].value,num_payments:o.series[0].extra.total,amount_received:o.series[1].value,num_invoices:o.series[1].extra.total}):i,[])}onSelectionChange(i){const o=i.selDate.getMonth(),a=i.selDate.getFullYear();this.reportPeriod=i.selScrollRange,this.reportPeriod===c.rs[1]?(this.startDate=new Date(a,0,1,0,0,0),this.endDate=new Date(a,11,31,23,59,59)):(this.startDate=new Date(a,o,1,0,0,0),this.endDate=new Date(a,o,this.getMonthDays(o,a),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(i,o){return 1===i&&o%4==0?c.KR[i].days+1:c.KR[i].days}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU($.h),e.rXU(L.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-transactions-report"]],hostBindings:function(o,a){1&o&&e.bIt("mouseup",function(p){return a.onChartMouseUp(p)})},standalone:!1,decls:11,vars:6,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],[3,"stepChanged"],["class","p-2",4,"ngIf"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["class","mt-1",4,"ngIf"],[1,"mt-1"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter",4,"ngIf"],[1,"p-2"],["mode","indeterminate"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[1,"two-color",3,"select","mouseup","view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding"],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(o,a){1&o&&(e.j41(0,"div",1)(1,"div",2)(2,"div",3)(3,"rtl-horizontal-scroller",4),e.bIt("stepChanged",function(p){return a.onSelectionChange(p)}),e.k0s(),e.DNE(4,v0,4,0,"div",5)(5,T0,2,1,"div",6)(6,R0,3,3,"div",7)(7,E0,2,0,"div",8)(8,w0,2,1,"div",9),e.j41(9,"div",10),e.DNE(10,j0,1,5,"rtl-transactions-report-table",11),e.k0s()()()()),2&o&&(e.R7$(4),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.ERROR),e.R7$(),e.Y8G("ngIf",a.transactionsNonZeroReportData.length>0&&a.apiCallStatus.status===a.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",a.transactionsNonZeroReportData.length<=0&&a.apiCallStatus.status===a.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",a.transactionsNonZeroReportData.length>0&&a.apiCallStatus.status===a.apiCallStatusEnum.COMPLETED),e.R7$(2),e.Y8G("ngIf",a.transactionsNonZeroReportData.length>0&&a.apiCallStatus.status===a.apiCallStatusEnum.COMPLETED))},dependencies:[_.bT,V.HM,f.DJ,f.sA,f.UI,ot.Dl,lt.m,x0.T,_.QX],encapsulation:2,data:{animation:[Ge.q]}}))}return t(),s})();const D0=["form"];function N0(t,s){if(1&t&&(e.j41(0,"div",17),e.nrm(1,"fa-icon",18),e.j41(2,"span"),e.EFF(3,'Bump fee option will be disabled for unconfirmed UTXOs where label text includes "sweep" in its value.'),e.k0s()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle)}}function P0(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"UTXO Label is required."),e.k0s())}function $0(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.labelError)}}function A0(t,s){if(1&t&&(e.j41(0,"div",19),e.nrm(1,"fa-icon",18),e.DNE(2,$0,2,1,"span",12),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.labelError)}}let M0=(()=>{var t;class s{constructor(i,o,a,l,p,m){this.dialogRef=i,this.data=o,this.dataService=a,this.store=l,this.snackBar=p,this.commonService=m,this.faExclamationTriangle=x.zpE,this.utxo=null,this.label="",this.labelError="",this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.utxo=this.data.utxo,this.label=this.utxo.label||""}onLabelUTXO(){if(!this.label||""===this.label)return!0;this.labelError="",this.dataService.labelUTXO(this.utxo&&this.utxo.outpoint&&this.utxo.outpoint.txid_bytes?this.utxo.outpoint.txid_bytes:"",this.label,!0).pipe((0,g.Q)(this.unSubs[0])).subscribe({next:i=>{this.store.dispatch((0,T.mh)()),this.store.dispatch((0,T.SM)()),this.snackBar.open("Successfully labelled the UTXO."),this.dialogRef.close()},error:i=>{this.labelError=i}})}resetData(){this.labelError="",this.label=""}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Y.CP),e.rXU(Y.Vh),e.rXU(Z.u),e.rXU(L.il),e.rXU(le.UG),e.rXU($.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-lebel-modal"]],viewQuery:function(o,a){if(1&o&&e.GBs(D0,7),2&o){let l;e.mGM(l=e.lsd())&&(a.form=l.first)}},standalone:!1,decls:24,vars:7,consts:[["form","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxLayout","column","fxFlex.gt-sm","100"],["autoFocus","","matInput","","name","label","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Label UTXO"),e.k0s()(),e.j41(6,"button",6),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"form",8,0),e.bIt("submit",function(){return r.eBV(l),r.Njj(a.onLabelUTXO())})("reset",function(){return r.eBV(l),r.Njj(a.resetData())}),e.DNE(11,N0,4,1,"div",9),e.nI1(12,"lowercase"),e.j41(13,"mat-form-field",10)(14,"mat-label"),e.EFF(15,"UTXO Label"),e.k0s(),e.j41(16,"input",11),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.label,m)||(a.label=m),r.Njj(m)}),e.k0s(),e.DNE(17,P0,2,0,"mat-error",12),e.k0s(),e.DNE(18,A0,3,2,"div",13),e.j41(19,"div",14)(20,"button",15),e.EFF(21,"Clear"),e.k0s(),e.j41(22,"button",16),e.EFF(23,"Label UTXO"),e.k0s()()()()()()}2&o&&(e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(5),e.Y8G("ngIf",e.bMT(12,5,a.label).includes("sweep")&&"0"===a.utxo.confirmations),e.R7$(5),e.R50("ngModel",a.label),e.R7$(),e.Y8G("ngIf",!a.label),e.R7$(),e.Y8G("ngIf",""!==a.labelError))},dependencies:[_.bT,d.qT,d.me,d.BC,d.cb,d.YS,d.vS,d.cV,O.aY,Y.tx,N.$z,k.m2,k.MM,M.fg,C.rl,C.nJ,C.TL,f.DJ,f.sA,f.UI,te.N,_.GH],encapsulation:2}))}return t(),s})();const rt=()=>["all"],B0=t=>({"error-border":t}),O0=()=>["no_utxo"],$e=t=>({width:t}),V0=t=>({"display-none":t});function Y0(t,s){if(1&t&&(e.j41(0,"mat-option",34),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function X0(t,s){1&t&&e.nrm(0,"mat-progress-bar",35)}function U0(t,s){1&t&&e.nrm(0,"th",36)}function H0(t,s){1&t&&(e.j41(0,"span",39)(1,"mat-icon",40),e.EFF(2,"warning"),e.k0s()())}function z0(t,s){if(1&t&&(e.j41(0,"td",37),e.DNE(1,H0,3,0,"span",38),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(),o=e.sdS(52);e.R7$(),e.Y8G("ngIf",n.amount_sat0))}}function gf(t,s){1&t&&e.nrm(0,"tr",57)}function Cf(t,s){1&t&&e.nrm(0,"tr",58)}function yf(t,s){1&t&&e.nrm(0,"mat-icon",40)}let bf=(()=>{var t;class s{constructor(i,o,a,l,p,m,v,b){this.logger=i,this.commonService=o,this.dataService=a,this.store=l,this.rtlEffects=p,this.decimalPipe=m,this.camelCaseWithReplace=v,this.snackBar=b,this.isDustUTXO=!1,this.dustAmount=1e3,this.faMoneyBillWave=x.ymQ,this.nodePageDefs=c._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"utxos",recordsPerPage:c.md,sortBy:"tx_id",sortOrder:c.oi.DESCENDING},this.addressType=c.aG,this.displayedColumns=[],this.listUTXOs=new u.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(){!this.isDustUTXO&&this.utxos&&this.utxos.length>0&&this.loadUTXOsTable(this.utxos),this.isDustUTXO&&this.dustUtxos&&this.dustUtxos.length>0&&this.loadUTXOsTable(this.dustUtxos)}ngOnInit(){this.tableSetting.tableId=this.isDustUTXO?"dust_utxos":"utxos",this.store.select(F.$G).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(F.ah).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),i.utxos&&i.utxos.length>0&&(this.dustUtxos=i.utxos?.filter(o=>+(o.amount_sat||0)0&&this.dustUtxos.length>0&&!this.isDustUTXO&&this.displayedColumns.unshift("is_dust"),this.loadUTXOsTable(this.isDustUTXO?this.dustUtxos:this.utxos)),this.logger.info(i)})}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):"is_dust"===i?"Dust":this.commonService.titleCase(i)}setFilterPredicate(){this.listUTXOs.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.label?i.label.toLowerCase():"")+(i.outpoint?.txid_str?i.outpoint.txid_str.toLowerCase():"")+(i.outpoint?.output_index?i.outpoint?.output_index:"")+(i.outpoint?.txid_bytes?i.outpoint?.txid_bytes.toLowerCase():"")+(i.address?i.address.toLowerCase():"")+(i.address_type?this.addressType[i.address_type].name.toLowerCase():"")+(i.amount_sat?i.amount_sat:"")+(i.confirmations?i.confirmations:"");break;case"is_dust":a=+(i?.amount_sat||0)"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"is_dust"===this.selFilterBy||"address_type"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}onUTXOClick(i){this.store.dispatch((0,I.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"UTXO Information",message:[[{key:"txid",value:i.outpoint?.txid_str,title:"Transaction ID",width:100,type:c.UN.STRING,explorerLink:"tx"}],[{key:"label",value:i.label,title:"Label",width:100,type:c.UN.STRING}],[{key:"output_index",value:i.outpoint?.output_index,title:"Output Index",width:34,type:c.UN.NUMBER},{key:"amount_sat",value:i.amount_sat,title:"Amount (Sats)",width:33,type:c.UN.NUMBER},{key:"confirmations",value:i.confirmations,title:"Confirmations",width:33,type:c.UN.NUMBER}],[{key:"address_type",value:i.address_type?this.addressType[i.address_type].name:"",title:"Address Type",width:34},{key:"address",value:i.address,title:"Address",width:66}],[{key:"pk_script",value:i.pk_script,title:"PK Script",width:100,type:c.UN.STRING}]]}}}))}loadUTXOsTable(i){this.listUTXOs=new u.I6([...i]),this.listUTXOs.sort=this.sort,this.listUTXOs.sortingDataAccessor=(o,a)=>{switch(a){case"is_dust":return+(o.amount_sat||0){a&&this.dataService.leaseUTXO(i.outpoint?.txid_bytes||"",i.outpoint?.output_index||0).pipe((0,g.Q)(this.unSubs[0])).subscribe({next:l=>{this.snackBar.open("The UTXO has been leased till "+new Date(l).toString().substring(4,21).replace(" ","/").replace(" ","/").toUpperCase()+".")},error:l=>{this.snackBar.open(l+" UTXO not leased.","",{panelClass:"rtl-warn-snack-bar"})}})})}onBumpFee(i){this.store.dispatch((0,I.xO)({payload:{data:{selUTXO:i,component:nt}}}))}onDownloadCSV(){this.listUTXOs.data&&this.listUTXOs.data.length>0&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU($.h),e.rXU(Z.u),e.rXU(L.il),e.rXU(_e.H),e.rXU(_.QX),e.rXU(J.VD),e.rXU(le.UG))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-utxos"]],viewQuery:function(o,a){if(1&o&&(e.GBs(R.B4,5),e.GBs(G.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},inputs:{isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},standalone:!1,features:[e.Jv_([{provide:E.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:G.xX,useValue:(0,c.on)("UTXOs")}]),e.OA$],decls:53,vars:19,consts:[["table",""],["emptySpace",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","end stretch","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","is_dust"],["mat-header-cell","","mat-sort-header","","matTooltip","Dust/Nondust",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","tx_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","output"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","label"],["matColumnDef","address_type"],["matColumnDef","address"],["matColumnDef","amount_sat"],["matColumnDef","confirmations"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_utxo"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Dust/Nondust"],["mat-cell",""],["matTooltip","Risk of dust attack","matTooltipPosition","right",4,"ngIf","ngIfElse"],["matTooltip","Risk of dust attack","matTooltipPosition","right"],["fxLayoutAlign","start center","color","warn",1,"small-icon"],["mat-header-cell","","mat-sort-header",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row","fxLayoutAlign","start center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",2)(1,"div",3)(2,"div",4)(3,"mat-form-field",5)(4,"mat-label"),e.EFF(5,"Filter By"),e.k0s(),e.j41(6,"mat-select",6),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.selFilterBy,m)||(a.selFilterBy=m),r.Njj(m)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,Y0,2,2,"mat-option",7),e.k0s()()(),e.j41(9,"mat-form-field",5)(10,"mat-label"),e.EFF(11,"Filter"),e.k0s(),e.j41(12,"input",8),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.selFilter,m)||(a.selFilter=m),r.Njj(m)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(13,"div",9)(14,"div",10),e.DNE(15,X0,1,0,"mat-progress-bar",11),e.j41(16,"table",12,0),e.qex(18,13),e.DNE(19,U0,1,0,"th",14)(20,z0,2,2,"td",15),e.bVm(),e.qex(21,16),e.DNE(22,q0,2,0,"th",17)(23,J0,4,4,"td",15),e.bVm(),e.qex(24,18),e.DNE(25,Q0,2,0,"th",19)(26,W0,3,1,"td",15),e.bVm(),e.qex(27,20),e.DNE(28,Z0,2,0,"th",17)(29,K0,4,4,"td",15),e.bVm(),e.qex(30,21),e.DNE(31,ef,2,0,"th",17)(32,tf,3,1,"td",15),e.bVm(),e.qex(33,22),e.DNE(34,nf,2,0,"th",17)(35,af,4,4,"td",15),e.bVm(),e.qex(36,23),e.DNE(37,sf,2,0,"th",19)(38,of,4,3,"td",15),e.bVm(),e.qex(39,24),e.DNE(40,lf,2,0,"th",19)(41,rf,4,3,"td",15),e.bVm(),e.qex(42,25),e.DNE(43,cf,6,0,"th",26)(44,mf,12,3,"td",27),e.bVm(),e.qex(45,28),e.DNE(46,_f,4,3,"td",29),e.bVm(),e.DNE(47,ff,1,3,"tr",30)(48,gf,1,0,"tr",31)(49,Cf,1,0,"tr",32),e.k0s(),e.nrm(50,"mat-paginator",33),e.k0s()()(),e.DNE(51,yf,1,0,"ng-template",null,1,e.C5r)}2&o&&(e.R7$(6),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",a.utxos&&a.utxos.length>0&&a.dustUtxos&&a.dustUtxos.length>0&&!a.isDustUTXO?e.lJ4(14,rt).concat(a.displayedColumns.slice(0,-1)):e.lJ4(15,rt).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(3),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.listUTXOs)("ngClass",e.eq3(16,B0,""!==a.errorMessage)),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(18,O0)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("hidePageSize",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[_.YU,_.Sq,_.bT,_.B3,d.me,d.BC,d.vS,oe.An,M.fg,C.rl,C.nJ,V.HM,f.DJ,f.sA,f.UI,j.PW,j.eI,E.VO,E.$2,X.wT,R.B4,R.aE,u.Zl,u.tL,u.ji,u.cC,u.YV,u.iL,u.Zq,u.xW,u.KS,u.$R,u.Qo,u.YZ,u.NB,u.iF,ee.oV,G.iy,B.ZF,B.Ld,_.GH,_.QX],styles:[".mat-column-is_dust[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return t(),s})();const Ff=()=>["all"],xf=t=>({"error-border":t}),vf=()=>["no_transaction"],Ae=t=>({width:t}),Tf=t=>({"display-none":t});function kf(t,s){if(1&t&&(e.j41(0,"mat-option",32),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function Sf(t,s){1&t&&e.nrm(0,"mat-progress-bar",33)}function Rf(t,s){1&t&&(e.j41(0,"th",34),e.EFF(1,"Date/Time"),e.k0s())}function Ef(t,s){if(1&t&&(e.j41(0,"td",35),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*n.time_stamp,"dd/MMM/y HH:mm"))}}function If(t,s){1&t&&(e.j41(0,"th",34),e.EFF(1,"Label"),e.k0s())}function Lf(t,s){if(1&t&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ae,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.label)}}function wf(t,s){1&t&&(e.j41(0,"th",34),e.EFF(1,"Block Hash"),e.k0s())}function jf(t,s){if(1&t&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ae,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.block_hash)}}function Gf(t,s){1&t&&(e.j41(0,"th",34),e.EFF(1,"Transaction Hash"),e.k0s())}function Df(t,s){if(1&t&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ae,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.tx_hash)}}function Nf(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Amount (Sats)"),e.k0s())}function Pf(t,s){if(1&t&&(e.j41(0,"span",41),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.JRh(e.bMT(2,1,n.amount))}}function $f(t,s){if(1&t&&(e.j41(0,"span",42),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.SpI("(",e.bMT(2,1,-1*n.amount),")")}}function Af(t,s){if(1&t&&(e.j41(0,"td",35),e.DNE(1,Pf,3,3,"span",39)(2,$f,3,3,"span",40),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",n.amount>0||0===n.amount),e.R7$(),e.Y8G("ngIf",n.amount<0)}}function Mf(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Fees (Sats)"),e.k0s())}function Bf(t,s){if(1&t&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.total_fees))}}function Of(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Block Height"),e.k0s())}function Vf(t,s){if(1&t&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.block_height))}}function Yf(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Confirmations"),e.k0s())}function Xf(t,s){if(1&t&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI(" ",e.bMT(3,1,null==n?null:n.num_confirmations)," ")}}function Uf(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",43)(1,"div",44)(2,"mat-select",45),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",46),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Hf(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",47)(1,"button",48),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onTransactionClick(o))}),e.EFF(2,"View Info"),e.k0s()()}}function zf(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No transaction available."),e.k0s())}function qf(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting transactions..."),e.k0s())}function Jf(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function Qf(t,s){if(1&t&&(e.j41(0,"td",49),e.DNE(1,zf,2,0,"p",50)(2,qf,2,0,"p",50)(3,Jf,2,1,"p",50),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=n.listTransactions&&n.listTransactions.data)||(null==n.listTransactions||null==n.listTransactions.data?null:n.listTransactions.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.listTransactions&&n.listTransactions.data)||(null==n.listTransactions||null==n.listTransactions.data?null:n.listTransactions.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.listTransactions&&n.listTransactions.data)||(null==n.listTransactions||null==n.listTransactions.data?null:n.listTransactions.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Wf(t,s){if(1&t&&e.nrm(0,"tr",51),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,Tf,(null==n.listTransactions?null:n.listTransactions.data)&&(null==n.listTransactions||null==n.listTransactions.data?null:n.listTransactions.data.length)>0))}}function Zf(t,s){1&t&&e.nrm(0,"tr",52)}function Kf(t,s){1&t&&e.nrm(0,"tr",53)}let e2=(()=>{var t;class s{constructor(i,o,a,l,p){this.logger=i,this.commonService=o,this.store=a,this.datePipe=l,this.camelCaseWithReplace=p,this.nodePageDefs=c._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"transactions",recordsPerPage:c.md,sortBy:"time_stamp",sortOrder:c.oi.DESCENDING},this.faHistory=x.Int,this.displayedColumns=[],this.listTransactions=new u.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(){this.transactions&&this.transactions.length>0&&this.loadTransactionsTable(this.transactions)}ngOnInit(){this.store.select(F.$G).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(F.gN).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),i.transactions&&i.transactions.length>0&&(this.transactions=i.transactions,this.loadTransactionsTable(this.transactions)),this.logger.info(i)})}onTransactionClick(i){this.store.dispatch((0,I.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"block_hash",value:i.block_hash,title:"Block Hash",width:100,explorerLink:"block"}],[{key:"tx_hash",value:i.tx_hash,title:"Transaction Hash",width:100,explorerLink:"tx"}],[{key:"label",value:i.label,title:"Label",width:100,type:c.UN.STRING}],[{key:"time_stamp",value:i.time_stamp,title:"Date/Time",width:50,type:c.UN.DATE_TIME},{key:"block_height",value:i.block_height,title:"Block Height",width:50,type:c.UN.NUMBER}],[{key:"num_confirmations",value:i.num_confirmations,title:"Number of Confirmations",width:34,type:c.UN.NUMBER},{key:"total_fees",value:i.total_fees,title:"Total Fees (Sats)",width:33,type:c.UN.NUMBER},{key:"amount",value:i.amount,title:"Amount (Sats)",width:33,type:c.UN.NUMBER}],[{key:"dest_addresses",value:i.dest_addresses,title:"Destination Addresses",width:100,type:c.UN.ARRAY}]],scrollable:i.dest_addresses&&i.dest_addresses.length>5}}}))}applyFilter(){this.listTransactions.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.listTransactions.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.time_stamp?this.datePipe.transform(new Date(1e3*i.time_stamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(i).toLowerCase();break;case"time_stamp":a=this.datePipe.transform(new Date(1e3*(i?.time_stamp||0)),"dd/MMM/YYYY HH:mm")?.toLowerCase()||"";break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return a.includes(o)}}loadTransactionsTable(i){this.listTransactions=new u.I6([...i]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.listTransactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listTransactions)}onDownloadCSV(){this.listTransactions.data&&this.listTransactions.data.length>0&&this.commonService.downloadFile(this.listTransactions.data,"Transactions")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU($.h),e.rXU(L.il),e.rXU(_.vh),e.rXU(J.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-transaction-history"]],viewQuery:function(o,a){if(1&o&&(e.GBs(R.B4,5),e.GBs(G.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:E.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:G.xX,useValue:(0,c.on)("Transactions")}]),e.OA$],decls:51,vars:18,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","end stretch","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","time_stamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","label"],["matColumnDef","block_hash"],["matColumnDef","tx_hash"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","total_fees"],["matColumnDef","block_height"],["matColumnDef","num_confirmations"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"div",3)(3,"mat-form-field",4)(4,"mat-label"),e.EFF(5,"Filter By"),e.k0s(),e.j41(6,"mat-select",5),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.selFilterBy,m)||(a.selFilterBy=m),r.Njj(m)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,kf,2,2,"mat-option",6),e.k0s()()(),e.j41(9,"mat-form-field",4)(10,"mat-label"),e.EFF(11,"Filter"),e.k0s(),e.j41(12,"input",7),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.selFilter,m)||(a.selFilter=m),r.Njj(m)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(13,"div",8)(14,"div",9),e.DNE(15,Sf,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,Rf,2,0,"th",13)(20,Ef,3,4,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,If,2,0,"th",13)(23,Lf,4,4,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,wf,2,0,"th",13)(26,jf,4,4,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,Gf,2,0,"th",13)(29,Df,4,4,"td",14),e.bVm(),e.qex(30,18),e.DNE(31,Nf,2,0,"th",19)(32,Af,3,2,"td",14),e.bVm(),e.qex(33,20),e.DNE(34,Mf,2,0,"th",19)(35,Bf,4,3,"td",14),e.bVm(),e.qex(36,21),e.DNE(37,Of,2,0,"th",19)(38,Vf,4,3,"td",14),e.bVm(),e.qex(39,22),e.DNE(40,Yf,2,0,"th",19)(41,Xf,4,3,"td",14),e.bVm(),e.qex(42,23),e.DNE(43,Uf,6,0,"th",24)(44,Hf,3,0,"td",25),e.bVm(),e.qex(45,26),e.DNE(46,Qf,4,3,"td",27),e.bVm(),e.DNE(47,Wf,1,3,"tr",28)(48,Zf,1,0,"tr",29)(49,Kf,1,0,"tr",30),e.k0s(),e.nrm(50,"mat-paginator",31),e.k0s()()()}2&o&&(e.R7$(6),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,Ff).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(3),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.listTransactions)("ngClass",e.eq3(15,xf,""!==a.errorMessage)),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(17,vf)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("hidePageSize",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[_.YU,_.Sq,_.bT,_.B3,d.me,d.BC,d.vS,N.$z,M.fg,C.rl,C.nJ,V.HM,f.DJ,f.sA,f.UI,j.PW,j.eI,E.VO,E.$2,X.wT,R.B4,R.aE,u.Zl,u.tL,u.ji,u.cC,u.YV,u.iL,u.Zq,u.xW,u.KS,u.$R,u.Qo,u.YZ,u.NB,u.iF,G.iy,B.ZF,B.Ld,_.QX,_.vh],encapsulation:2}))}return t(),s})();function t2(t,s){if(1&t&&(e.j41(0,"span",5),e.EFF(1,"UTXOs"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numUtxos))}}function n2(t,s){if(1&t&&(e.j41(0,"span",5),e.EFF(1,"Transactions"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numTransactions))}}function i2(t,s){if(1&t&&(e.j41(0,"span",5),e.EFF(1,"Dust UTXOs"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numDustUtxos))}}let a2=(()=>{var t;class s{constructor(i,o){this.logger=i,this.store=o,this.selectedTableIndex=0,this.selectedTableIndexChange=new e.bkB,this.DUST_AMOUNT=1e3,this.numTransactions=0,this.numUtxos=0,this.numDustUtxos=0,this.unSubs=[new h.B,new h.B,new h.B]}ngOnInit(){this.store.dispatch((0,T.mh)()),this.store.dispatch((0,T.SM)()),this.store.select(F.ah).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{i.utxos&&i.utxos.length>0&&(this.numUtxos=i.utxos.length,this.numDustUtxos=i.utxos?.filter(o=>o.amount_sat&&+o.amount_sat{i.transactions&&i.transactions.length>0&&(this.numTransactions=i.transactions.length),this.logger.info(i)})}onSelectedIndexChanged(i){this.selectedTableIndexChange.emit(i)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU(L.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-utxo-tables"]],inputs:{selectedTableIndex:"selectedTableIndex"},outputs:{selectedTableIndexChange:"selectedTableIndexChange"},standalone:!1,decls:11,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedIndex"],["mat-tab-label",""],["fxLayout","row","fxFlex","100",3,"isDustUTXO","dustAmount"],["fxLayout","row","fxFlex","100"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"mat-tab-group",1),e.bIt("selectedIndexChange",function(p){return a.onSelectedIndexChanged(p)}),e.j41(2,"mat-tab"),e.DNE(3,t2,2,2,"ng-template",2),e.nrm(4,"rtl-on-chain-utxos",3),e.k0s(),e.j41(5,"mat-tab"),e.DNE(6,n2,2,2,"ng-template",2),e.nrm(7,"rtl-on-chain-transaction-history",4),e.k0s(),e.j41(8,"mat-tab"),e.DNE(9,i2,2,2,"ng-template",2),e.nrm(10,"rtl-on-chain-utxos",3),e.k0s()()()),2&o&&(e.R7$(),e.Y8G("selectedIndex",a.selectedTableIndex),e.R7$(3),e.Y8G("isDustUTXO",!1)("dustAmount",a.DUST_AMOUNT),e.R7$(6),e.Y8G("isDustUTXO",!0)("dustAmount",a.DUST_AMOUNT))},dependencies:[f.DJ,f.sA,f.UI,Re.k,A.ES,A.mq,A.T8,bf,e2],encapsulation:2}))}return t(),s})();const s2=(t,s)=>[t,s];function o2(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",13),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=null==o?null:o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("active",i.activeLink===(null==n?null:n.link))("routerLink",e.l_i(3,s2,null==n?null:n.link,null==i.selectedTable?null:i.selectedTable.name)),e.R7$(),e.JRh(null==n?null:n.name)}}let l2=(()=>{var t;class s{constructor(i,o,a){this.store=i,this.router=o,this.activatedRoute=a,this.faExchangeAlt=x._qq,this.faChartPie=x.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"},{link:"sweep",name:"Sweep All"}],this.activeLink=this.links[0].link,this.tables=[{id:0,name:"utxos"},{id:1,name:"trans"},{id:2,name:"dustUtxos"}],this.selectedTable=this.tables[0],this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.selectedTable=this.tables.find(o=>o.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,U.p)(o=>o instanceof w.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link,this.selectedTable=this.tables.find(l=>l.name===o.urlAfterRedirects.substring(o.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(H._c).pipe((0,g.Q)(this.unSubs[1])).subscribe(o=>{this.selNode=o}),this.store.select(F.$7).pipe((0,g.Q)(this.unSubs[2])).subscribe(o=>{this.balances=[{title:"Total Balance",dataValue:o.blockchainBalance.total_balance||0},{title:"Confirmed",dataValue:o.blockchainBalance.confirmed_balance||0},{title:"Unconfirmed",dataValue:o.blockchainBalance.unconfirmed_balance||0}]})}onSelectedTableIndexChanged(i){this.selectedTable=this.tables.find(o=>o.id===i)||this.tables[0],this.router.navigate(["./",this.activeLink,this.selectedTable.name],{relativeTo:this.activatedRoute})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(L.il),e.rXU(w.Ix),e.rXU(w.nX))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain"]],standalone:!1,decls:23,vars:6,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100",3,"selectedTableIndexChange","selectedTableIndex"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"On-chain Balance"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),e.nrm(7,"rtl-currency-unit-converter",6),e.k0s()()(),e.j41(8,"div",1),e.nrm(9,"fa-icon",2),e.j41(10,"span",3),e.EFF(11,"On-chain Transactions"),e.k0s()(),e.j41(12,"div",7)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",8),e.DNE(16,o2,2,6,"div",9),e.k0s(),e.nrm(17,"mat-tab-nav-panel",null,0),e.j41(19,"div",10),e.nrm(20,"router-outlet"),e.k0s(),e.j41(21,"div",11)(22,"rtl-utxo-tables",12),e.bIt("selectedTableIndexChange",function(m){return r.eBV(l),r.Njj(a.onSelectedTableIndexChanged(m))}),e.k0s()()()()()}if(2&o){const l=e.sdS(18);e.R7$(),e.Y8G("icon",a.faChartPie),e.R7$(6),e.Y8G("values",a.balances),e.R7$(2),e.Y8G("icon",a.faExchangeAlt),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links),e.R7$(6),e.Y8G("selectedTableIndex",null==a.selectedTable?null:a.selectedTable.id)}},dependencies:[_.Sq,O.aY,k.RN,k.m2,f.DJ,f.sA,f.UI,A.Bu,A.hQ,A.Ql,Ee.f,w.n3,ie.Wk,a2],encapsulation:2}))}return t(),s})();var r2=y(80396);function c2(t,s){if(1&t&&(e.j41(0,"mat-option",6),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.SpI(" ",n.addressTp," ")}}let p2=(()=>{var t;class s{constructor(i,o,a){this.store=i,this.lndEffects=o,this.commonService=a,this.addressTypes=[],this.selectedAddressType=c.Ld[2],this.newAddress="",this.flgVersionCompatible=!0,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.store.select(F.pI).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(i.version,"0.15.0"),this.addressTypes=this.flgVersionCompatible?c.Ld:c.Ld.filter(o=>"4"!==o.addressId)})}onGenerateAddress(){this.store.dispatch((0,T.XT)({payload:this.selectedAddressType})),this.lndEffects.setNewAddress.pipe((0,W.s)(1)).subscribe(i=>{this.newAddress=i,setTimeout(()=>{this.store.dispatch((0,I.xO)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:r2.f}}}))},0)})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(L.il),e.rXU(me.L),e.rXU($.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-receive"]],standalone:!1,decls:10,vars:2,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","space-between center","fxLayoutAlign.gt-sm","start center"],["fxLayout","column","fxFlex","48","fxFlex.gt-md","25","fxLayoutAlign","start end",1,"mr-2"],["name","address_type","tabindex","1",3,"ngModelChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["mat-flat-button","","color","primary","tabindex","2",3,"click"],[3,"value"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"mat-label"),e.EFF(4,"Address Type"),e.k0s(),e.j41(5,"mat-select",3),e.mxI("ngModelChange",function(p){return e.DH7(a.selectedAddressType,p)||(a.selectedAddressType=p),p}),e.DNE(6,c2,2,2,"mat-option",4),e.k0s()(),e.j41(7,"div")(8,"button",5),e.bIt("click",function(){return a.onGenerateAddress()}),e.EFF(9,"Generate Address"),e.k0s()()()()),2&o&&(e.R7$(5),e.R50("ngModel",a.selectedAddressType),e.R7$(),e.Y8G("ngForOf",a.addressTypes))},dependencies:[_.Sq,d.BC,d.vS,N.$z,C.rl,C.nJ,f.DJ,f.sA,f.UI,E.VO,X.wT],encapsulation:2}))}return t(),s})();var m2=y(82852);const u2=["form"],d2=["formSweepAll"],h2=["stepper"];function _2(t,s){if(1&t&&(e.j41(0,"div",16),e.nrm(1,"fa-icon",17),e.j41(2,"span",18)(3,"div"),e.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(5,"span",19)(6,"span"),e.EFF(7),e.k0s(),e.j41(8,"span"),e.EFF(9),e.k0s(),e.j41(10,"span"),e.EFF(11),e.k0s(),e.j41(12,"span"),e.EFF(13),e.k0s(),e.j41(14,"span"),e.EFF(15),e.k0s()()()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faInfoCircle),e.R7$(6),e.SpI("- High: ",n.recommendedFee.fastestFee||"Unknown"),e.R7$(2),e.SpI("- Medium: ",n.recommendedFee.halfHourFee||"Unknown"),e.R7$(2),e.SpI("- Low: ",n.recommendedFee.hourFee||"Unknown"),e.R7$(2),e.SpI("- Economy: ",n.recommendedFee.economyFee||"Unknown"),e.R7$(2),e.SpI("- Minimum: ",n.recommendedFee.minimumFee||"Unknown")}}function f2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Bitcoin address is required."),e.k0s())}function g2(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.amountError)}}function C2(t,s){if(1&t&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.JRh(n)}}function y2(t,s){if(1&t&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n.id),e.R7$(),e.SpI(" ",n.name," ")}}function b2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function F2(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",40)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.j41(3,"input",41,4),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.transactionBlocks,o)||(a.transactionBlocks=o),r.Njj(o)}),e.k0s(),e.DNE(5,b2,2,0,"mat-error",23),e.k0s()}if(2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.transactionBlocks),e.R7$(2),e.Y8G("ngIf",!n.transactionBlocks)}}function x2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function v2(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",40)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.j41(3,"input",42,5),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.transactionFees,o)||(a.transactionFees=o),r.Njj(o)}),e.k0s(),e.DNE(5,x2,2,0,"mat-error",23),e.k0s()}if(2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.transactionFees),e.R7$(2),e.Y8G("ngIf",!n.transactionFees)}}function T2(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.sendFundError)}}function k2(t,s){if(1&t&&(e.j41(0,"div",43),e.nrm(1,"fa-icon",17),e.DNE(2,T2,2,1,"span",23),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.sendFundError)}}function S2(t,s){if(1&t){const n=e.RV6();e.j41(0,"form",20,1),e.bIt("submit",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSendFunds())})("reset",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.j41(2,"mat-form-field",21)(3,"mat-label"),e.EFF(4,"Bitcoin Address"),e.k0s(),e.j41(5,"input",22,2),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.transactionAddress,o)||(a.transactionAddress=o),r.Njj(o)}),e.k0s(),e.DNE(7,f2,2,0,"mat-error",23),e.k0s(),e.j41(8,"mat-form-field",24)(9,"mat-label"),e.EFF(10,"Amount"),e.k0s(),e.j41(11,"input",25,3),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.transactionAmount,o)||(a.transactionAmount=o),r.Njj(o)}),e.k0s(),e.j41(13,"span",26),e.EFF(14),e.k0s(),e.DNE(15,g2,2,1,"mat-error",23),e.k0s(),e.j41(16,"mat-form-field",27)(17,"mat-select",28),e.bIt("selectionChange",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onAmountUnitChange(o))}),e.DNE(18,C2,2,2,"mat-option",29),e.k0s()(),e.j41(19,"div",30)(20,"mat-form-field",31)(21,"mat-select",32),e.mxI("valueChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selTransType,o)||(a.selTransType=o),r.Njj(o)}),e.DNE(22,y2,2,2,"mat-option",29),e.k0s()(),e.DNE(23,F2,6,4,"mat-form-field",33)(24,v2,6,4,"mat-form-field",33),e.k0s(),e.nrm(25,"div",34),e.DNE(26,k2,3,2,"div",35),e.j41(27,"div",36)(28,"button",37),e.EFF(29,"Clear Fields"),e.k0s(),e.j41(30,"button",38),e.EFF(31,"Send Funds"),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(5),e.R50("ngModel",n.transactionAddress),e.R7$(2),e.Y8G("ngIf",!n.transactionAddress),e.R7$(4),e.Y8G("step",100)("min",0),e.R50("ngModel",n.transactionAmount),e.R7$(3),e.SpI("",n.selAmountUnit," "),e.R7$(),e.Y8G("ngIf",!n.transactionAmount),e.R7$(2),e.Y8G("value",n.selAmountUnit),e.R7$(),e.Y8G("ngForOf",n.amountUnits),e.R7$(3),e.R50("value",n.selTransType),e.R7$(),e.Y8G("ngForOf",n.transTypes),e.R7$(),e.Y8G("ngIf","1"===n.selTransType),e.R7$(),e.Y8G("ngIf","2"===n.selTransType),e.R7$(2),e.Y8G("ngIf",""!==n.sendFundError)}}function R2(t,s){if(1&t&&e.EFF(0),2&t){const n=e.XpG(3);e.JRh(n.passwordFormLabel)}}function E2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function I2(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-step",47)(1,"form",66),e.DNE(2,R2,1,1,"ng-template",60),e.j41(3,"div",7)(4,"mat-form-field",18)(5,"mat-label"),e.EFF(6,"Password"),e.k0s(),e.nrm(7,"input",67),e.DNE(8,E2,2,0,"mat-error",23),e.k0s()(),e.j41(9,"div",68)(10,"button",69),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onAuthenticate())}),e.EFF(11,"Confirm"),e.k0s()()()()}if(2&t){const n=e.XpG(2);e.Y8G("stepControl",n.passwordFormGroup)("editable",n.flgEditable),e.R7$(),e.Y8G("formGroup",n.passwordFormGroup),e.R7$(7),e.Y8G("ngIf",null==n.passwordFormGroup.controls.password.errors?null:n.passwordFormGroup.controls.password.errors.required)}}function L2(t,s){if(1&t&&e.EFF(0),2&t){const n=e.XpG(2);e.JRh(n.sendFundFormLabel)}}function w2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Bitcoin address is required."),e.k0s())}function j2(t,s){if(1&t&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n.id),e.R7$(),e.SpI(" ",n.name," ")}}function G2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function D2(t,s){if(1&t&&(e.j41(0,"mat-form-field",70)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.nrm(3,"input",71),e.DNE(4,G2,2,0,"mat-error",23),e.k0s()),2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R7$(),e.Y8G("ngIf",null==n.sendFundFormGroup.controls.transactionBlocks.errors?null:n.sendFundFormGroup.controls.transactionBlocks.errors.required)}}function N2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function P2(t,s){if(1&t&&(e.j41(0,"mat-form-field",70)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.nrm(3,"input",72),e.DNE(4,N2,2,0,"mat-error",23),e.k0s()),2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R7$(),e.Y8G("ngIf",null==n.sendFundFormGroup.controls.transactionFees.errors?null:n.sendFundFormGroup.controls.transactionFees.errors.required)}}function $2(t,s){if(1&t&&e.EFF(0),2&t){const n=e.XpG(2);e.JRh(n.confirmFormLabel)}}function A2(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.sendFundError)}}function M2(t,s){if(1&t&&(e.j41(0,"div",43),e.nrm(1,"fa-icon",17),e.DNE(2,A2,2,1,"span",23),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.sendFundError)}}function B2(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",44)(1,"mat-vertical-stepper",45,6),e.bIt("selectionChange",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.stepSelectionChanged(o))}),e.DNE(3,I2,12,4,"mat-step",46),e.j41(4,"mat-step",47)(5,"form",48),e.DNE(6,L2,1,1,"ng-template",49),e.j41(7,"div",50)(8,"mat-form-field",51)(9,"mat-label"),e.EFF(10,"Bitcoin Address"),e.k0s(),e.nrm(11,"input",52),e.DNE(12,w2,2,0,"mat-error",23),e.k0s(),e.j41(13,"mat-form-field",53)(14,"mat-select",54),e.DNE(15,j2,2,2,"mat-option",29),e.k0s()(),e.DNE(16,D2,5,3,"mat-form-field",55)(17,P2,5,3,"mat-form-field",55),e.k0s(),e.j41(18,"div",56)(19,"button",57),e.EFF(20,"Next"),e.k0s()()()(),e.j41(21,"mat-step",58)(22,"form",59),e.DNE(23,$2,1,1,"ng-template",60),e.j41(24,"div",44)(25,"div",61),e.nrm(26,"fa-icon",62),e.j41(27,"span"),e.EFF(28,"You are about to sweep all funds from RTL. Are you sure?"),e.k0s()(),e.DNE(29,M2,3,2,"div",35),e.j41(30,"div",56)(31,"button",63),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSendFunds())}),e.EFF(32,"Sweep All Funds"),e.k0s()()()()()(),e.j41(33,"div",64)(34,"button",65),e.EFF(35),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(),e.Y8G("linear",!0),e.R7$(2),e.Y8G("ngIf",!n.appConfig.SSO.rtlSSO),e.R7$(),e.Y8G("stepControl",n.sendFundFormGroup)("editable",n.flgEditable),e.R7$(),e.Y8G("formGroup",n.sendFundFormGroup),e.R7$(7),e.Y8G("ngIf",null==n.sendFundFormGroup.controls.transactionAddress.errors?null:n.sendFundFormGroup.controls.transactionAddress.errors.required),e.R7$(3),e.Y8G("ngForOf",n.transTypes),e.R7$(),e.Y8G("ngIf","1"===n.sendFundFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf","2"===n.sendFundFormGroup.controls.selTransType.value),e.R7$(4),e.Y8G("stepControl",n.confirmFormGroup),e.R7$(),e.Y8G("formGroup",n.confirmFormGroup),e.R7$(4),e.Y8G("icon",n.faExclamationTriangle),e.R7$(3),e.Y8G("ngIf",""!==n.sendFundError),e.R7$(5),e.Y8G("mat-dialog-close",!1),e.R7$(),e.JRh(n.flgValidated?"Close":"Cancel")}}let O2=(()=>{var t;class s{constructor(i,o,a,l,p,m,v,b,S,NC,PC){this.dialogRef=i,this.data=o,this.logger=a,this.dataService=l,this.store=p,this.rtlEffects=m,this.commonService=v,this.decimalPipe=b,this.snackBar=S,this.actions=NC,this.formBuilder=PC,this.faExclamationTriangle=x.zpE,this.faInfoCircle=x.iW_,this.sweepAll=!1,this.addressTypes=[],this.selectedAddress={},this.blockchainBalance={},this.information={},this.newAddress="",this.transactionAddress="",this.transactionAmount=null,this.transactionFees=null,this.transactionBlocks=null,this.transTypes=[{id:"1",name:"Target Confirmation Blocks"},{id:"2",name:"Fee"}],this.selTransType="1",this.fiatConversion=!1,this.amountUnits=c.A0,this.selAmountUnit=c.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=c.k,this.sendFundError="",this.flgValidated=!1,this.flgEditable=!0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds",this.confirmFormLabel="Confirm sweep",this.amountError="Amount is Required.",this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[0])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}}),this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[d.k0.required]],password:["",[d.k0.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",d.k0.required],transactionBlocks:[null],transactionFees:[null],selTransType:["1",d.k0.required]}),this.confirmFormGroup=this.formBuilder.group({}),this.sendFundFormGroup.controls.selTransType.valueChanges.pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{"1"===i?(this.sendFundFormGroup.controls.transactionBlocks.setValidators([d.k0.required]),this.sendFundFormGroup.controls.transactionBlocks.setValue(null),this.sendFundFormGroup.controls.transactionFees.setValidators(null),this.sendFundFormGroup.controls.transactionFees.setValue(null)):(this.sendFundFormGroup.controls.transactionBlocks.setValidators(null),this.sendFundFormGroup.controls.transactionBlocks.setValue(null),this.sendFundFormGroup.controls.transactionFees.setValidators([d.k0.required]),this.sendFundFormGroup.controls.transactionFees.setValue(null))}),this.store.select(H.qv).pipe((0,g.Q)(this.unSubs[2])).subscribe(i=>{this.appConfig=i}),this.store.select(H._c).pipe((0,g.Q)(this.unSubs[3])).subscribe(i=>{this.fiatConversion=i.settings.fiatConversion,this.amountUnits=i.settings.currencyUnits,this.logger.info(i)}),this.actions.pipe((0,g.Q)(this.unSubs[4]),(0,U.p)(i=>i.type===c.QP.UPDATE_API_CALL_STATUS_LND||i.type===c.QP.SET_CHANNEL_TRANSACTION_RES_LND)).subscribe(i=>{i.type===c.QP.SET_CHANNEL_TRANSACTION_RES_LND&&(this.store.dispatch((0,I.UI)({payload:this.sweepAll?"All Funds Sent Successfully!":"Fund Sent Successfully!"})),this.dialogRef.close()),i.type===c.QP.UPDATE_API_CALL_STATUS_LND&&i.payload.status===c.wn.ERROR&&"SetChannelTransaction"===i.payload.action&&(this.sendFundError=i.payload.message)})}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,I.oz)({payload:m2(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,W.s)(1)).subscribe(i=>{"ERROR"!==i?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onSendFunds(){if(this.invalidValues)return!0;this.sendFundError="";const i={amount:this.transactionAmount?this.transactionAmount:0,sendAll:this.sweepAll};this.sweepAll?(i.address=this.sendFundFormGroup.controls.transactionAddress.value,"1"===this.sendFundFormGroup.controls.selTransType.value&&(i.blocks=this.sendFundFormGroup.controls.transactionBlocks.value),"2"===this.sendFundFormGroup.controls.selTransType.value&&(i.fees=this.sendFundFormGroup.controls.transactionFees.value)):(i.address=this.transactionAddress,"1"===this.selTransType&&(i.blocks=this.transactionBlocks),"2"===this.selTransType&&(i.fees=this.transactionFees)),this.transactionAmount&&this.selAmountUnit!==c.BQ.SATS?this.commonService.convertCurrency(this.transactionAmount,this.selAmountUnit===this.amountUnits[2]?c.BQ.OTHER:this.selAmountUnit,c.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,g.Q)(this.unSubs[5])).subscribe({next:o=>{this.selAmountUnit=c.BQ.SATS,i.amount=+(this.decimalPipe.transform(o[this.amountUnits[0]],this.currencyUnitFormats[this.amountUnits[0]])?.replace(/,/g,"")||0),this.store.dispatch((0,T.aB)({payload:i}))},error:o=>{this.transactionAmount=null,this.selAmountUnit=c.BQ.SATS,this.amountError="Conversion Error: "+o}}):this.store.dispatch((0,T.aB)({payload:i}))}get invalidValues(){return this.sweepAll?!this.sendFundFormGroup.controls.transactionAddress.value||""===this.sendFundFormGroup.controls.transactionAddress.value||"1"===this.sendFundFormGroup.controls.selTransType.value&&(!this.sendFundFormGroup.controls.transactionBlocks.value||this.sendFundFormGroup.controls.transactionBlocks.value<=0)||"2"===this.sendFundFormGroup.controls.selTransType.value&&(!this.sendFundFormGroup.controls.transactionFees.value||this.sendFundFormGroup.controls.transactionFees.value<=0):!this.transactionAddress||""===this.transactionAddress||!this.transactionAmount||this.transactionAmount<=0||"1"===this.selTransType&&(!this.transactionBlocks||this.transactionBlocks<=0)||"2"===this.selTransType&&(!this.transactionFees||this.transactionFees<=0)}resetData(){this.sendFundError="",this.selTransType="1",this.transactionAddress="",this.transactionBlocks=null,this.transactionFees=null,this.sweepAll||(this.transactionAmount=null)}stepSelectionChanged(i){switch(this.sendFundError="",i.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds";break;case 1:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds";break;case 2:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds | Address: "+this.sendFundFormGroup.controls.transactionAddress.value+" | "+this.transTypes[this.sendFundFormGroup.controls.selTransType.value-1].name+("2"===this.sendFundFormGroup.controls.selTransType.value?" (Sats/vByte)":"")+": "+("1"===this.sendFundFormGroup.controls.selTransType.value?this.sendFundFormGroup.controls.transactionBlocks.value:this.sendFundFormGroup.controls.transactionFees.value)}i.selectedIndex{this.selAmountUnit=i.value,o.transactionAmount=+(o.decimalPipe.transform(m[l],o.currencyUnitFormats[l])?.replace(/,/g,"")||0)},error:m=>{o.transactionAmount=null,this.amountError="Conversion Error: "+m,this.selAmountUnit=a,l=a}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Y.CP),e.rXU(Y.Vh),e.rXU(D.gP),e.rXU(Z.u),e.rXU(L.il),e.rXU(_e.H),e.rXU($.h),e.rXU(_.QX),e.rXU(le.UG),e.rXU(K.En),e.rXU(d.ze))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-send-modal"]],viewQuery:function(o,a){if(1&o&&(e.GBs(u2,7),e.GBs(d2,5),e.GBs(h2,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.form=l.first),e.mGM(l=e.lsd())&&(a.formSweepAll=l.first),e.mGM(l=e.lsd())&&(a.stepper=l.first)}},standalone:!1,decls:13,vars:5,consts:[["sweepAllBlock",""],["form","ngForm"],["address","ngModel"],["amnt","ngModel"],["blocks","ngModel"],["fees","ngModel"],["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],["fxLayout","column",1,"padding-gap-x-large"],["fxFlex","100","class","alert alert-info mb-2",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100","class","overflow-x-hidden",3,"submit","reset",4,"ngIf","ngIfElse"],["fxFlex","100",1,"alert","alert-info","mb-2"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["fxLayout","column","fxFlex.gt-sm","55"],["autoFocus","","matInput","","tabindex","1","name","address","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex.gt-sm","30"],["matInput","","name","amt","type","number","tabindex","2","required","",3,"ngModelChange","step","min","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex.gt-sm","10","fxLayoutAlign","start end"],["tabindex","3","required","","name","amountUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","60","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxLayout","column","fxFlex","48"],["tabindex","4",3,"valueChange","value"],["fxFlex","48",4,"ngIf"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","40","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],[3,"value"],["fxFlex","48"],["matInput","","type","number","name","blcks","required","","tabindex","5",3,"ngModelChange","step","min","ngModel"],["matInput","","type","number","name","chainFees","required","","tabindex","6",3,"ngModelChange","step","min","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl","editable"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxFlex","98","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxLayout","column","fxFlex.gt-sm","45"],["matInput","","formControlName","transactionAddress","tabindex","4","name","address","required",""],["fxLayout","column","fxFlex.gt-sm","25"],["formControlName","selTransType","tabindex","5"],["fxFlex.gt-sm","25","fxLayoutAlign","start end",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","8","type","button","matStepperNext",""],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["fxFlex","100",1,"w-100","alert","alert-warn"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["mat-button","","color","primary","tabindex","9","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["autoFocus","","matInput","","type","password","tabindex","1","formControlName","password","required",""],["fxLayout","row",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxFlex.gt-sm","25","fxLayoutAlign","start end"],["matInput","","formControlName","transactionBlocks","type","number","name","blcks","required","","tabindex","6",3,"step","min"],["matInput","","formControlName","transactionFees","type","number","name","chainFees","required","","tabindex","7",3,"step","min"]],template:function(o,a){if(1&o&&(e.j41(0,"div",7)(1,"div",8)(2,"mat-card-header",9)(3,"div",10)(4,"span",11),e.EFF(5),e.k0s()(),e.j41(6,"button",12),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",13),e.DNE(9,_2,16,6,"div",14)(10,S2,32,14,"form",15),e.k0s()()(),e.DNE(11,B2,36,15,"ng-template",null,0,e.C5r)),2&o){const l=e.sdS(12);e.R7$(5),e.JRh(a.sweepAll?"Sweep All Funds":"Send Funds"),e.R7$(),e.Y8G("mat-dialog-close",!1),e.R7$(3),e.Y8G("ngIf",a.recommendedFee.minimumFee),e.R7$(),e.Y8G("ngIf",!a.sweepAll)("ngIfElse",l)}},dependencies:[_.Sq,_.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,d.j4,d.JD,O.aY,Y.tx,N.$z,k.m2,k.MM,M.fg,C.rl,C.nJ,C.TL,C.yw,f.DJ,f.sA,f.UI,E.VO,X.wT,q.V5,q.Ti,q.M6,q.F7,te.N,ae.V],encapsulation:2}))}return t(),s})(),ct=(()=>{var t;class s{constructor(i,o){this.store=i,this.activatedRoute=o,this.sweepAll=!1,this.unSubs=[new h.B,new h.B]}ngOnInit(){this.activatedRoute.data.pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.sweepAll=i.sweepAll})}openSendFundsModal(){this.store.dispatch((0,I.xO)({payload:{data:{sweepAll:this.sweepAll,component:O2}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(L.il),e.rXU(w.nX))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-send"]],standalone:!1,decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"div",1)(2,"button",2),e.bIt("click",function(){return a.openSendFundsModal()}),e.EFF(3),e.k0s()()()),2&o&&(e.R7$(3),e.JRh(a.sweepAll?"Sweep All":"Send Funds"))},dependencies:[N.$z,f.DJ,f.sA,f.UI],encapsulation:2}))}return t(),s})();const V2=t=>({"mt-1":t}),pt=t=>({"dashboard-card-content":!0,"error-border":t});function Y2(t,s){1&t&&e.nrm(0,"mat-progress-bar",26)}function X2(t,s){if(1&t&&e.nrm(0,"rtl-node-info",27),2&t){const n=e.XpG(3);e.Y8G("information",n.information)("showColorFieldSeparately",!0)}}function U2(t,s){if(1&t&&e.nrm(0,"rtl-channel-status-info",28),2&t){const n=e.XpG(3);e.Y8G("channelsStatus",n.channelsStatus)("errorMessage",n.errorMessages[3]+" "+n.errorMessages[4])}}function H2(t,s){if(1&t&&e.nrm(0,"rtl-fee-info",29),2&t){const n=e.XpG(3);e.Y8G("fees",n.fees)("errorMessage",n.errorMessages[2])}}function z2(t,s){if(1&t&&(e.j41(0,"mat-grid-tile",13)(1,"div",14)(2,"div",15)(3,"div",16),e.nrm(4,"fa-icon",17),e.j41(5,"span"),e.EFF(6),e.k0s()()(),e.j41(7,"div",18)(8,"mat-card",19)(9,"mat-card-content",20),e.DNE(10,Y2,1,0,"mat-progress-bar",21),e.j41(11,"div",22),e.DNE(12,X2,1,2,"rtl-node-info",23)(13,U2,1,2,"rtl-channel-status-info",24)(14,H2,1,2,"rtl-fee-info",25),e.k0s()()()()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("colspan",n.cols)("rowspan",n.rows),e.R7$(4),e.Y8G("icon",n.icon),e.R7$(2),e.JRh(n.title),e.R7$(3),e.Y8G("ngClass",e.eq3(10,pt,"node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"status"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusPendingChannels.status===i.apiCallStatusEnum.ERROR)||"fee"===n.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf","node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"status"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusPendingChannels.status===i.apiCallStatusEnum.INITIATED)||"fee"===n.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",n.id),e.R7$(),e.Y8G("ngSwitchCase","node"),e.R7$(),e.Y8G("ngSwitchCase","status"),e.R7$(),e.Y8G("ngSwitchCase","fee")}}function q2(t,s){if(1&t&&(e.j41(0,"mat-grid-list",11),e.DNE(1,z2,15,12,"mat-grid-tile",12),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngForOf",n.nodeCards)}}function J2(t,s){1&t&&e.nrm(0,"mat-progress-bar",26)}function Q2(t,s){1&t&&e.eu8(0)}function W2(t,s){if(1&t&&(e.j41(0,"div",34),e.DNE(1,Q2,1,0,"ng-container",35),e.k0s()),2&t){const n=e.XpG(2),i=e.sdS(9),o=e.sdS(11);e.R7$(),e.Y8G("ngTemplateOutlet",n.apiCallStatusNetwork.status===n.apiCallStatusEnum.ERROR?i:o)}}function Z2(t,s){1&t&&e.eu8(0)}function K2(t,s){if(1&t&&(e.j41(0,"div",34),e.DNE(1,Z2,1,0,"ng-container",35),e.k0s()),2&t){const n=e.XpG(2),i=e.sdS(9),o=e.sdS(13);e.R7$(),e.Y8G("ngTemplateOutlet",n.apiCallStatusNetwork.status===n.apiCallStatusEnum.ERROR?i:o)}}function eg(t,s){1&t&&e.eu8(0)}function tg(t,s){if(1&t&&(e.j41(0,"div",34),e.DNE(1,eg,1,0,"ng-container",35),e.k0s()),2&t){const n=e.XpG(2),i=e.sdS(9),o=e.sdS(15);e.R7$(),e.Y8G("ngTemplateOutlet",n.apiCallStatusNetwork.status===n.apiCallStatusEnum.ERROR?i:o)}}function ng(t,s){if(1&t&&(e.j41(0,"mat-grid-tile",30)(1,"mat-card",31)(2,"mat-card-content",32),e.DNE(3,J2,1,0,"mat-progress-bar",21),e.j41(4,"div",22),e.DNE(5,W2,2,1,"div",33)(6,K2,2,1,"div",33)(7,tg,2,1,"div",33),e.k0s()()()()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("colspan",n.cols)("rowspan",n.rows),e.R7$(2),e.Y8G("ngClass",e.eq3(8,pt,i.apiCallStatusNetwork.status===i.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf",i.apiCallStatusNetwork.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",n.id),e.R7$(),e.Y8G("ngSwitchCase","general"),e.R7$(),e.Y8G("ngSwitchCase","channels"),e.R7$(),e.Y8G("ngSwitchCase","degrees")}}function ig(t,s){if(1&t&&(e.j41(0,"div",36)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessages[1])}}function ag(t,s){if(1&t&&(e.j41(0,"div",37)(1,"div")(2,"h4",38),e.EFF(3,"Network Capacity"),e.k0s(),e.j41(4,"div",39),e.EFF(5),e.nI1(6,"number"),e.k0s()(),e.j41(7,"div")(8,"h4",38),e.EFF(9,"Number of Nodes"),e.k0s(),e.j41(10,"div",39),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div")(14,"h4",38),e.EFF(15,"Number of Channels"),e.k0s(),e.j41(16,"span",39),e.EFF(17),e.nI1(18,"number"),e.k0s()()()),2&t){const n=e.XpG();e.R7$(5),e.SpI("",e.bMT(6,3,n.networkInfo.total_network_capacity)," Sats"),e.R7$(6),e.JRh(e.bMT(12,5,n.networkInfo.num_nodes)),e.R7$(6),e.JRh(e.bMT(18,7,n.networkInfo.num_channels))}}function sg(t,s){if(1&t&&(e.j41(0,"div",37)(1,"div")(2,"h4",38),e.EFF(3,"Max Channel Size"),e.k0s(),e.j41(4,"div",39),e.EFF(5),e.nI1(6,"number"),e.k0s()(),e.j41(7,"div")(8,"h4",38),e.EFF(9,"Avg Channel Size"),e.k0s(),e.j41(10,"div",39),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div")(14,"h4",38),e.EFF(15,"Min Channel Size"),e.k0s(),e.j41(16,"span",39),e.EFF(17),e.nI1(18,"number"),e.k0s()()()),2&t){const n=e.XpG();e.R7$(5),e.JRh(e.bMT(6,3,n.networkInfo.max_channel_size)),e.R7$(6),e.JRh(e.bMT(12,5,n.networkInfo.avg_channel_size)),e.R7$(6),e.JRh(e.bMT(18,7,n.networkInfo.min_channel_size))}}function og(t,s){if(1&t&&(e.j41(0,"div",37)(1,"div")(2,"h4",38),e.EFF(3,"Max Out Degree"),e.k0s(),e.j41(4,"div",39),e.EFF(5),e.nI1(6,"number"),e.k0s()(),e.j41(7,"div")(8,"h4",38),e.EFF(9,"Avg Out Degree"),e.k0s(),e.j41(10,"div",39),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div",40),e.nrm(14,"h4",38)(15,"span",39),e.k0s()()),2&t){const n=e.XpG();e.R7$(5),e.JRh(e.bMT(6,2,n.networkInfo.max_out_degree)),e.R7$(6),e.JRh(e.i5U(12,4,n.networkInfo.avg_out_degree,"1.0-2"))}}let lg=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.commonService=o,this.store=a,this.faProjectDiagram=x.qFF,this.faBolt=x.zm_,this.faServer=x.D6w,this.faNetworkWired=x.eGi,this.information={},this.channelsStatus={},this.networkInfo={},this.networkCards=[],this.nodeCards=[],this.screenSize="",this.screenSizeEnum=c.f7,this.userPersonaEnum=c.HW,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusNetwork=null,this.apiCallStatusFees=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===c.f7.XS?(this.networkCards=[{id:"general",cols:3,rows:1},{id:"channels",cols:3,rows:1},{id:"degrees",cols:3,rows:1}],this.nodeCards=[{id:"node",icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:3,rows:1},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:3,rows:1}]):(this.networkCards=[{id:"general",cols:1,rows:1},{id:"channels",cols:1,rows:1},{id:"degrees",cols:1,rows:1}],this.nodeCards=[{id:"node",icon:this.faServer,title:"Node Information",cols:1,rows:1},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:1,rows:1},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:1,rows:1}])}ngOnInit(){this.store.select(F.gj).pipe((0,g.Q)(this.unSubs[0]),(0,ge.E)(this.store.select(H._c))).subscribe(([i,o])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=i.apiCallStatus,this.apiCallStatusNodeInfo.status===c.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=o,this.information=i.information}),this.store.select(F.tA).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessages[1]="",this.apiCallStatusNetwork=i.apiCallStatus,this.apiCallStatusNetwork.status===c.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusNetwork.message?JSON.stringify(this.apiCallStatusNetwork.message):this.apiCallStatusNetwork.message?this.apiCallStatusNetwork.message:""),this.networkInfo=i.networkInfo}),this.store.select(F.oR).pipe((0,g.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessages[2]="",this.apiCallStatusFees=i.apiCallStatus,this.apiCallStatusFees.status===c.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=i.fees}),this.store.select(F.Uv).pipe((0,g.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessages[4]="",this.apiCallStatusPendingChannels=i.apiCallStatus,this.apiCallStatusPendingChannels.status===c.wn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPendingChannels.message?JSON.stringify(this.apiCallStatusPendingChannels.message):this.apiCallStatusPendingChannels.message?this.apiCallStatusPendingChannels.message:""),this.channelsStatus.pending={num_channels:i.pendingChannelsSummary.open?.num_channels,capacity:i.pendingChannelsSummary.open?.limbo_balance},this.channelsStatus.closing={num_channels:(i.pendingChannelsSummary.closing?.num_channels||0)+(i.pendingChannelsSummary.force_closing?.num_channels||0)+(i.pendingChannelsSummary.waiting_close?.num_channels||0),capacity:i.pendingChannelsSummary.total_limbo_balance}}),this.store.select(F.BM).pipe((0,g.Q)(this.unSubs[4])).subscribe(i=>{this.errorMessages[3]="",this.apiCallStatusChannels=i.apiCallStatus,this.apiCallStatusChannels.status===c.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:""),this.channelsStatus.active=i.channelsSummary.active,this.channelsStatus.inactive=i.channelsSummary.inactive,this.logger.info(i)})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU($.h),e.rXU(L.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-network-info"]],standalone:!1,decls:16,vars:6,consts:[["errorBlock",""],["generalBlock",""],["channelsBlock",""],["degreesBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch",1,"mb-4"],["cols","3","rowHeight","330px",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container",3,"ngClass"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","3","rowHeight","250px"],["fxLayout","row",3,"colspan","rowspan",4,"ngFor","ngForOf"],["cols","3","rowHeight","330px"],["class","node-grid-tile",3,"colspan","rowspan",4,"ngFor","ngForOf"],[1,"node-grid-tile",3,"colspan","rowspan"],["fxLayout","column","fxLayoutAlign","stretch start","fxFlex","100",1,"h-100"],["fxLayout","row","fxLayoutAlign","start start",1,"w-100"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container"],[1,"mr-1",3,"icon"],["fxLayout","column","fxLayoutAlign","stretch center","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","center stretch",1,"w-100","h-93"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","w-96","h-93"],["fxLayout","column","fxFlex","100",1,"mt-2",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxLayout","row",3,"colspan","rowspan"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","h-93"],["fxLayout","column","fxFlex","100",3,"ngClass"],["fxFlex","100",4,"ngSwitchCase"],["fxFlex","100"],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"mt-2"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxFlex","20"]],template:function(o,a){1&o&&(e.j41(0,"div",4),e.DNE(1,q2,2,1,"mat-grid-list",5),e.j41(2,"div",6),e.nrm(3,"fa-icon",7),e.j41(4,"span",8),e.EFF(5,"Network"),e.k0s()(),e.j41(6,"mat-grid-list",9),e.DNE(7,ng,8,10,"mat-grid-tile",10),e.k0s()(),e.DNE(8,ig,3,1,"ng-template",null,0,e.C5r)(10,ag,19,9,"ng-template",null,1,e.C5r)(12,sg,19,9,"ng-template",null,2,e.C5r)(14,og,16,7,"ng-template",null,3,e.C5r)),2&o&&(e.R7$(),e.Y8G("ngIf",a.selNode.settings.userPersona!==a.userPersonaEnum.OPERATOR),e.R7$(),e.Y8G("ngClass",e.eq3(4,V2,a.screenSize!==a.screenSizeEnum.XS)),e.R7$(),e.Y8G("icon",a.faProjectDiagram),e.R7$(4),e.Y8G("ngForOf",a.networkCards))},dependencies:[_.YU,_.Sq,_.bT,_.T3,_.ux,_.e1,O.aY,k.RN,k.m2,Ce.B_,Ce.NS,V.HM,f.DJ,f.sA,f.UI,j.PW,He,ze,qe,_.QX],encapsulation:2}))}return t(),s})();function rg(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let cg=(()=>{var t;class s{constructor(i){this.router=i,this.faDownload=x.cbP,this.links=[{link:"bckup",name:"Backup"},{link:"restore",name:"Restore"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,U.p)(o=>o instanceof w.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(w.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-backup"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Channels Backup"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,rg,2,4,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8),e.nrm(12,"router-outlet"),e.k0s()()()()),2&o){const l=e.sdS(10);e.R7$(),e.Y8G("icon",a.faDownload),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[_.Sq,O.aY,k.RN,k.m2,f.DJ,f.sA,f.UI,A.Bu,A.hQ,A.Ql,w.n3,ie.Wk],encapsulation:2}))}return t(),s})();const pg=t=>({"overflow-auto error-border":t,"overflow-auto":!0}),mg=()=>["no_channel"],ug=t=>({"max-width":t}),dg=t=>({"display-none":t});function hg(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",24)(1,"h4",25),e.EFF(2),e.k0s(),e.j41(3,"div",26)(4,"button",27),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onRestoreChannels({}))}),e.EFF(5,"Restore All"),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",n.selNode.settings.channelBackupPath,"/restore")}}function _g(t,s){if(1&t&&(e.j41(0,"div",28)(1,"h4",25),e.EFF(2),e.k0s(),e.j41(3,"h4",29),e.EFF(4,"All channel backup file not found! To perform channel restoration, channel backup file/s must be placed at the above location."),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",n.selNode.settings.channelBackupPath,"/restore")}}function fg(t,s){if(1&t&&(e.j41(0,"div",28)(1,"h4",25),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",n.selNode.settings.channelBackupPath,"/restore")}}function gg(t,s){1&t&&e.nrm(0,"mat-progress-bar",30)}function Cg(t,s){1&t&&(e.j41(0,"th",31),e.EFF(1,"Channel Point"),e.k0s())}function yg(t,s){if(1&t&&(e.j41(0,"td",32)(1,"div",33)(2,"span",34),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ug,i.screenSize===i.screenSizeEnum.XS?"25rem":"60rem")),e.R7$(2),e.JRh(null==n?null:n.channel_point)}}function bg(t,s){1&t&&(e.j41(0,"th",35)(1,"div",36),e.EFF(2,"Actions"),e.k0s()())}function Fg(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",32)(1,"span",37)(2,"button",38),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onRestoreChannels(o))}),e.EFF(3,"Restore"),e.k0s()()()}}function xg(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No singular channel backups available."),e.k0s())}function vg(t,s){if(1&t&&(e.j41(0,"td",39),e.DNE(1,xg,2,0,"p",40),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",!n.channels||!n.channels.data||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)}}function Tg(t,s){if(1&t&&e.nrm(0,"tr",41),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,dg,n.channels&&n.channels.data&&(null==n.channels||null==n.channels.data?null:n.channels.data.length)>0))}}function kg(t,s){1&t&&e.nrm(0,"tr",42)}function Sg(t,s){1&t&&e.nrm(0,"tr",43)}let Rg=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.store=o,this.lndEffects=a,this.commonService=l,this.pageSize=c.md,this.pageSizeOptions=c.xp,this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.channels=new u.I6([]),this.allRestoreExists=!1,this.flgLoading=[!0],this.selFilter="",this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,T.$J)()),this.store.select(H._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.lndEffects.setRestoreChannelList.pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.allRestoreExists=i.all_restore_exists,this.channelsData=i.files,this.channelsData.length>0&&this.loadRestoreTable(this.channelsData),("error"!==this.flgLoading[0]||i&&i.files)&&(this.flgLoading[0]=!1),this.logger.info(i)})}ngAfterViewInit(){this.channelsData&&this.channelsData.length>0&&this.loadRestoreTable(this.channelsData)}onRestoreChannels(i){this.store.dispatch((0,T.Lf)({payload:{channelPoint:i.channel_point?i.channel_point:"ALL"}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadRestoreTable(i){this.channels=new u.I6([...i]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(o,a)=>(o.channel_point?o.channel_point.toLowerCase():"").includes(a),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU(L.il),e.rXU(me.L),e.rXU($.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-restore-table"]],viewQuery:function(o,a){if(1&o&&(e.GBs(R.B4,5),e.GBs(G.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:G.xX,useValue:(0,c.on)("Channels")}])],decls:28,vars:16,consts:[["table",""],["fxLayout","column",1,"mt-2"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between start","fxLayout.gt-md","row wrap",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-2"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["fxLayout","column","fxFlex","49"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["matColumnDef","channel_point"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex","100"],["fxLayout","row",1,"mt-2"],["mat-flat-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxLayoutAlign","space-between start","fxLayout.gt-md","row wrap"],["fxFlex","100",1,"mt-1"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","1",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1),e.DNE(1,hg,6,1,"div",2)(2,_g,5,1,"div",3)(3,fg,3,1,"div",3),e.j41(4,"div",4),e.nrm(5,"div",5),e.j41(6,"div",6),e.nrm(7,"div",7),e.j41(8,"mat-form-field",8)(9,"mat-label"),e.EFF(10,"Filter"),e.k0s(),e.j41(11,"input",9),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.selFilter,m)||(a.selFilter=m),r.Njj(m)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(12,"div",10),e.DNE(13,gg,1,0,"mat-progress-bar",11),e.j41(14,"table",12,0),e.qex(16,13),e.DNE(17,Cg,2,0,"th",14)(18,yg,4,4,"td",15),e.bVm(),e.qex(19,16),e.DNE(20,bg,3,0,"th",17)(21,Fg,4,0,"td",15),e.bVm(),e.qex(22,18),e.DNE(23,vg,2,1,"td",19),e.bVm(),e.DNE(24,Tg,1,3,"tr",20)(25,kg,1,0,"tr",21)(26,Sg,1,0,"tr",22),e.k0s()(),e.nrm(27,"mat-paginator",23),e.k0s()}2&o&&(e.R7$(),e.Y8G("ngIf",a.allRestoreExists),e.R7$(),e.Y8G("ngIf",!a.allRestoreExists&&(!a.channels||(null==a.channels||null==a.channels.data?null:a.channels.data.length)<=0)),e.R7$(),e.Y8G("ngIf",!a.allRestoreExists&&a.channels&&(null==a.channels||null==a.channels.data?null:a.channels.data.length)&&(null==a.channels||null==a.channels.data?null:a.channels.data.length)>0),e.R7$(8),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",!0===a.flgLoading[0]),e.R7$(),e.Y8G("dataSource",a.channels)("ngClass",e.eq3(13,pg,"error"===a.flgLoading[0])),e.R7$(10),e.Y8G("matFooterRowDef",e.lJ4(15,mg)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("hidePageSize",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[_.YU,_.bT,_.B3,d.me,d.BC,d.vS,N.$z,M.fg,C.rl,C.nJ,V.HM,f.DJ,f.sA,f.UI,j.PW,j.eI,R.B4,R.aE,u.Zl,u.tL,u.ji,u.cC,u.YV,u.iL,u.Zq,u.xW,u.KS,u.$R,u.Qo,u.YZ,u.NB,u.iF,G.iy,B.Ld],encapsulation:2}))}return t(),s})();const Eg=t=>({"error-border":t}),Ig=()=>["no_channel"],Lg=t=>({"max-width":t}),wg=t=>({"display-none":t});function jg(t,s){1&t&&e.nrm(0,"mat-progress-bar",33)}function Gg(t,s){1&t&&(e.j41(0,"th",34),e.EFF(1,"Channel Point"),e.k0s())}function Dg(t,s){if(1&t&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Lg,i.screenSize===i.screenSizeEnum.XS?"25rem":"60rem")),e.R7$(2),e.JRh(null==n?null:n.channel_point)}}function Ng(t,s){1&t&&(e.j41(0,"th",38)(1,"div",39),e.EFF(2,"Actions"),e.k0s()())}function Pg(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",40)(1,"div",39)(2,"mat-select",41),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",42),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG();return r.Njj(l.onChannelClick(a,o))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",42),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onBackupChannels(o))}),e.EFF(7,"Backup"),e.k0s(),e.j41(8,"mat-option",42),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onDownloadBackup(o))}),e.EFF(9,"Download Backup"),e.k0s(),e.j41(10,"mat-option",42),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onVerifyChannels(o))}),e.EFF(11,"Verify"),e.k0s()()()()}}function $g(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No channel available."),e.k0s())}function Ag(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting channels..."),e.k0s())}function Mg(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function Bg(t,s){if(1&t&&(e.j41(0,"td",43),e.DNE(1,$g,2,0,"p",44)(2,Ag,2,0,"p",44)(3,Mg,2,1,"p",44),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Og(t,s){if(1&t&&e.nrm(0,"tr",45),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,wg,(null==n.channels?null:n.channels.data)&&(null==n.channels||null==n.channels.data?null:n.channels.data.length)>0))}}function Vg(t,s){1&t&&e.nrm(0,"tr",46)}function Yg(t,s){1&t&&e.nrm(0,"tr",47)}let Xg=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.store=o,this.actions=a,this.commonService=l,this.faInfoCircle=x.iW_,this.faExclamationTriangle=x.zpE,this.faArchive=x.Oh6,this.pageSize=c.md,this.pageSizeOptions=c.xp,this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.channels=new u.I6([]),this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(H._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(F.BM).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=i.channels,this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadBackupTable(this.channelsData),this.logger.info(i)}),this.actions.pipe((0,g.Q)(this.unSubs[2]),(0,U.p)(i=>i.type===c.QP.SET_CHANNELS_LND||i.type===c.aU.SHOW_FILE)).subscribe(i=>{i.type===c.QP.SET_CHANNELS_LND&&(this.selectedChannel=null),i.type===c.aU.SHOW_FILE&&(this.commonService.downloadFile(i.payload,"channel-"+(this.selectedChannel?.channel_point?this.selectedChannel.channel_point:"all"),".bak",".bak"),this.selectedChannel=null)})}ngAfterViewInit(){this.channelsData.length>0&&this.loadBackupTable(this.channelsData)}onBackupChannels(i){this.store.dispatch((0,T.H2)({payload:{uiMessage:c.MZ.BACKUP_CHANNEL,channelPoint:i.channel_point?i.channel_point:"ALL",showMessage:""}}))}onVerifyChannels(i){this.store.dispatch((0,T.L)({payload:{channelPoint:i.channel_point?i.channel_point:"ALL"}}))}onDownloadBackup(i){this.selectedChannel=i,this.store.dispatch((0,I.t2)({payload:{channelPoint:i.channel_point?i.channel_point:"all"}}))}onChannelClick(i,o){this.store.dispatch((0,I.xO)({payload:{data:{channel:i,showCopy:!1,component:we}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadBackupTable(i){this.channels=new u.I6(i?[...i]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(o,a)=>(o.channel_point?o.channel_point.toLowerCase():"").includes(a),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU(L.il),e.rXU(K.En),e.rXU($.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-backup-table"]],viewQuery:function(o,a){if(1&o&&(e.GBs(R.B4,5),e.GBs(G.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:E.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:G.xX,useValue:(0,c.on)("Channels")}])],decls:46,vars:17,consts:[["table",""],["fxLayout","column"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","1",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","2",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-2"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["fxLayout","column","fxFlex","49"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["matColumnDef","channel_point"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"div",3),e.nrm(3,"fa-icon",4),e.j41(4,"span"),e.EFF(5,"Save your backup files in a redundant location."),e.k0s()(),e.j41(6,"div",5),e.nrm(7,"fa-icon",4),e.j41(8,"span")(9,"strong"),e.EFF(10,"Backup Folder Location: "),e.k0s(),e.EFF(11),e.k0s()(),e.j41(12,"div",6)(13,"button",7),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onVerifyChannels({}))}),e.EFF(14,"Verify All"),e.k0s(),e.j41(15,"button",8),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onBackupChannels({}))}),e.EFF(16,"Backup All"),e.k0s(),e.j41(17,"button",9),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onDownloadBackup({}))}),e.EFF(18,"Download Backup"),e.k0s()()(),e.j41(19,"div",10)(20,"div",11),e.nrm(21,"fa-icon",12),e.j41(22,"span",13),e.EFF(23,"Backups"),e.k0s()(),e.j41(24,"div",14),e.nrm(25,"div",15),e.j41(26,"mat-form-field",16)(27,"mat-label"),e.EFF(28,"Filter"),e.k0s(),e.j41(29,"input",17),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.selFilter,m)||(a.selFilter=m),r.Njj(m)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(30,"div",18),e.DNE(31,jg,1,0,"mat-progress-bar",19),e.j41(32,"table",20,0),e.qex(34,21),e.DNE(35,Gg,2,0,"th",22)(36,Dg,4,4,"td",23),e.bVm(),e.qex(37,24),e.DNE(38,Ng,3,0,"th",25)(39,Pg,12,0,"td",26),e.bVm(),e.qex(40,27),e.DNE(41,Bg,4,3,"td",28),e.bVm(),e.DNE(42,Og,1,3,"tr",29)(43,Vg,1,0,"tr",30)(44,Yg,1,0,"tr",31),e.k0s()(),e.nrm(45,"mat-paginator",32),e.k0s()}2&o&&(e.R7$(3),e.Y8G("icon",a.faExclamationTriangle),e.R7$(4),e.Y8G("icon",a.faInfoCircle),e.R7$(4),e.SpI("",a.selNode.settings.channelBackupPath,"."),e.R7$(10),e.Y8G("icon",a.faArchive),e.R7$(8),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",a.channels)("ngClass",e.eq3(14,Eg,""!==a.errorMessage)),e.R7$(10),e.Y8G("matFooterRowDef",e.lJ4(16,Ig)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("hidePageSize",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[_.YU,_.bT,_.B3,d.me,d.BC,d.vS,O.aY,N.$z,M.fg,C.rl,C.nJ,V.HM,f.DJ,f.sA,f.UI,j.PW,j.eI,E.VO,E.$2,X.wT,R.B4,R.aE,u.Zl,u.tL,u.ji,u.cC,u.YV,u.iL,u.Zq,u.xW,u.KS,u.$R,u.Qo,u.YZ,u.NB,u.iF,G.iy,B.Ld],encapsulation:2}))}return t(),s})();function Ug(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let Hg=(()=>{var t;class s{constructor(i){this.router=i,this.faUserCheck=x.pCJ,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,U.p)(o=>o instanceof w.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(w.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-sign-verify-message"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Sign/Verify Message"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,Ug,2,4,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8),e.nrm(12,"router-outlet"),e.k0s()()()()),2&o){const l=e.sdS(10);e.R7$(),e.Y8G("icon",a.faUserCheck),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[_.Sq,O.aY,k.RN,k.m2,f.DJ,f.sA,f.UI,A.Bu,A.hQ,A.Ql,w.n3,ie.Wk],encapsulation:2}))}return t(),s})();function zg(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Message is required."),e.k0s())}let qg=(()=>{var t;class s{constructor(i,o,a){this.dataService=i,this.snackBar=o,this.logger=a,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new h.B,new h.B]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.signedMessage=this.message,this.signature=i.signature})}onMessageChange(){this.signedMessage!==this.message&&(this.signature="")}onCopyField(i){this.snackBar.open("Signature copied."),this.logger.info("Copied Text: "+i)}resetData(){this.message="",this.signature="",this.signedMessage=""}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Z.u),e.rXU(le.UG),e.rXU(D.gP))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-sign"]],standalone:!1,decls:22,vars:5,consts:[["form","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],[1,"my-2",3,"inset"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"signature-box","bordered-box","read-only"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","4","rtlClipboard","","type","button",3,"copied","payload"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"form",2,0)(3,"mat-form-field",3)(4,"mat-label"),e.EFF(5,"Message to sign"),e.k0s(),e.j41(6,"textarea",4),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.message,m)||(a.message=m),r.Njj(m)}),e.bIt("keyup",function(){return r.eBV(l),r.Njj(a.onMessageChange())}),e.k0s(),e.DNE(7,zg,2,0,"mat-error",5),e.k0s(),e.j41(8,"div",6)(9,"button",7),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(10,"Clear Field"),e.k0s(),e.j41(11,"button",8),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onSign())}),e.EFF(12,"Sign"),e.k0s()(),e.nrm(13,"mat-divider",9),e.j41(14,"div",10)(15,"p"),e.EFF(16,"Generated Signature"),e.k0s()(),e.j41(17,"div",11),e.EFF(18),e.k0s(),e.j41(19,"div",12)(20,"button",13),e.bIt("copied",function(m){return r.eBV(l),r.Njj(a.onCopyField(m))}),e.EFF(21,"Copy Signature"),e.k0s()()()()}2&o&&(e.R7$(6),e.R50("ngModel",a.message),e.R7$(),e.Y8G("ngIf",!a.message),e.R7$(6),e.Y8G("inset",!0),e.R7$(5),e.JRh(a.signature),e.R7$(2),e.Y8G("payload",a.signature))},dependencies:[_.bT,d.qT,d.me,d.BC,d.cb,d.YS,d.vS,d.cV,N.$z,M.fg,C.rl,C.nJ,C.TL,ne.q,f.DJ,f.sA,f.UI,be.U,te.N],styles:[".signature-box[_ngcontent-%COMP%]{padding:1rem}"]}))}return t(),s})();function Jg(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Message is required."),e.k0s())}function Qg(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Signature is required."),e.k0s())}function Wg(t,s){1&t&&(e.j41(0,"p",13)(1,"mat-icon",14),e.EFF(2,"close"),e.k0s(),e.EFF(3,"Verification failed, please check message and signature"),e.k0s())}function Zg(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Pubkey Used"),e.k0s())}function Kg(t,s){if(1&t&&(e.j41(0,"div",20)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG(2);e.R7$(2),e.JRh(null==n.verifyRes?null:n.verifyRes.pubkey)}}function e4(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",21)(1,"button",22),e.bIt("copied",function(o){r.eBV(n);const a=e.XpG(2);return r.Njj(a.onCopyField(o))}),e.EFF(2,"Copy Pubkey"),e.k0s()()}if(2&t){const n=e.XpG(2);e.R7$(),e.Y8G("payload",null==n.verifyRes?null:n.verifyRes.pubkey)}}function t4(t,s){if(1&t&&(e.j41(0,"div",15),e.nrm(1,"mat-divider",16),e.j41(2,"div",17),e.DNE(3,Zg,2,0,"p",6),e.k0s(),e.DNE(4,Kg,3,1,"div",18)(5,e4,3,1,"div",19),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(2),e.Y8G("ngIf",n.verifyRes.valid),e.R7$(),e.Y8G("ngIf",n.verifyRes.valid),e.R7$(),e.Y8G("ngIf",n.verifyRes.valid)}}let n4=(()=>{var t;class s{constructor(i,o,a){this.dataService=i,this.snackBar=o,this.logger=a,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",valid:null},this.unSubs=[new h.B,new h.B]}onVerify(){if(!this.message||""===this.message||!this.signature||""===this.signature)return!0;this.dataService.verifyMessage(this.message,this.signature).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.verifyRes=i,this.showVerifyStatus=!0,this.verifiedMessage=this.message,this.verifiedSignature=this.signature})}onChange(){(this.verifiedMessage!==this.message||this.verifiedSignature!==this.signature)&&(this.showVerifyStatus=!1,this.verifyRes={pubkey:"",valid:null})}resetData(){this.message="",this.signature="",this.verifyRes=null,this.showVerifyStatus=!1}onCopyField(i){this.snackBar.open("Pubkey copied."),this.logger.info("Copied Text: "+i)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Z.u),e.rXU(le.UG),e.rXU(D.gP))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-verify"]],standalone:!1,decls:21,vars:6,consts:[["form","ngForm"],["sign","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["matInput","","name","signature","tabindex","2","required","",3,"ngModelChange","keyup","ngModel"],["fxFlex","100","class","color-warn","fxLayoutAlign","start center",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],[1,"my-2",3,"inset"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start","class","bordered-box read-only padding-gap",4,"ngIf"],["fxLayout","row","class","mt-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"bordered-box","read-only","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","5","rtlClipboard","","type","button",3,"copied","payload"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",2)(1,"form",3,0)(3,"mat-form-field",4)(4,"mat-label"),e.EFF(5,"Message to verify"),e.k0s(),e.j41(6,"textarea",5),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.message,m)||(a.message=m),r.Njj(m)}),e.bIt("keyup",function(){return r.eBV(l),r.Njj(a.onChange())}),e.k0s(),e.DNE(7,Jg,2,0,"mat-error",6),e.k0s(),e.j41(8,"mat-form-field",4)(9,"mat-label"),e.EFF(10,"Signature provided"),e.k0s(),e.j41(11,"input",7,1),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.signature,m)||(a.signature=m),r.Njj(m)}),e.bIt("keyup",function(){return r.eBV(l),r.Njj(a.onChange())}),e.k0s(),e.DNE(13,Qg,2,0,"mat-error",6),e.k0s(),e.DNE(14,Wg,4,0,"p",8),e.j41(15,"div",9)(16,"button",10),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(17,"Clear Fields"),e.k0s(),e.j41(18,"button",11),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onVerify())}),e.EFF(19,"Verify"),e.k0s()(),e.DNE(20,t4,6,4,"div",12),e.k0s()()}2&o&&(e.R7$(6),e.R50("ngModel",a.message),e.R7$(),e.Y8G("ngIf",!a.message),e.R7$(4),e.R50("ngModel",a.signature),e.R7$(2),e.Y8G("ngIf",!a.signature),e.R7$(),e.Y8G("ngIf",a.showVerifyStatus&&!a.verifyRes.valid),e.R7$(6),e.Y8G("ngIf",a.showVerifyStatus&&a.verifyRes.valid))},dependencies:[_.bT,d.qT,d.me,d.BC,d.cb,d.YS,d.vS,d.cV,N.$z,oe.An,M.fg,C.rl,C.nJ,C.TL,ne.q,f.DJ,f.sA,f.UI,be.U,te.N],encapsulation:2}))}return t(),s})();var i4=y(90013),P=y(17186);const a4=()=>["all"],s4=()=>["no_non_routing_event"],ke=t=>({"max-width":t}),o4=t=>({"display-none":t});function l4(t,s){if(1&t&&(e.j41(0,"div",5),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.JRh(n.errorMessage)}}function r4(t,s){if(1&t&&(e.j41(0,"mat-option",17),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(3);e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function c4(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",10)(1,"div",11),e.EFF(2,"Non Routing Peers"),e.k0s(),e.j41(3,"div",12)(4,"mat-form-field",13)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",14),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.selFilterBy,o)||(a.selFilterBy=o),r.Njj(o)}),e.bIt("selectionChange",function(){r.eBV(n);const o=e.XpG(2);return o.selFilter="",r.Njj(o.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,r4,2,2,"mat-option",15),e.k0s()()(),e.j41(10,"mat-form-field",13)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",16),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.selFilter,o)||(a.selFilter=o),r.Njj(o)}),e.bIt("input",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.applyFilter())})("keyup",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.applyFilter())}),e.k0s()()()()}if(2&t){const n=e.XpG(2);e.R7$(7),e.R50("ngModel",n.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(3,a4).concat(n.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",n.selFilter)}}function p4(t,s){1&t&&e.nrm(0,"mat-progress-bar",50)}function m4(t,s){1&t&&(e.j41(0,"th",51),e.EFF(1,"Channel ID"),e.k0s())}function u4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ke,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id)}}function d4(t,s){1&t&&(e.j41(0,"th",51),e.EFF(1,"Peer Alias"),e.k0s())}function h4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ke,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.remote_alias)}}function _4(t,s){1&t&&(e.j41(0,"th",51),e.EFF(1,"Peer Pubkey"),e.k0s())}function f4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ke,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.remote_pubkey)}}function g4(t,s){1&t&&(e.j41(0,"th",51),e.EFF(1,"Channel Point"),e.k0s())}function C4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ke,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.channel_point)}}function y4(t,s){if(1&t&&(e.j41(0,"th",55),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.SpI("Uptime (",n.timeUnit,")")}}function b4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",n.uptime_str," ")}}function F4(t,s){if(1&t&&(e.j41(0,"th",55),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.SpI("Lifetime (",n.timeUnit,")")}}function x4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",n.lifetime_str," ")}}function v4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function T4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.commit_fee)," ")}}function k4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Commit Weight"),e.k0s())}function S4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.commit_weight)," ")}}function R4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Fee/KW"),e.k0s())}function E4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.fee_per_kw)," ")}}function I4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Updates"),e.k0s())}function L4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.num_updates)," ")}}function w4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Unsettled Balance (Sats)"),e.k0s())}function j4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.unsettled_balance)," ")}}function G4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Capacity (Sats)"),e.k0s())}function D4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.capacity)," ")}}function N4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Local Reserve (Sats)"),e.k0s())}function P4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.local_chan_reserve_sat)," ")}}function $4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Remote Reserve (Sats)"),e.k0s())}function A4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.remote_chan_reserve_sat)," ")}}function M4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Sats Sent"),e.k0s())}function B4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.total_satoshis_sent))}}function O4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Sats Received"),e.k0s())}function V4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.total_satoshis_received))}}function Y4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function X4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.local_balance))}}function U4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function H4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.remote_balance))}}function z4(t,s){1&t&&(e.j41(0,"th",57)(1,"div",58),e.EFF(2,"Actions"),e.k0s()())}function q4(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",59)(1,"button",60),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(3);return r.Njj(a.onManagePeer(o))}),e.EFF(2,"Manage"),e.k0s()()}}function J4(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"All peers are routing."),e.k0s())}function Q4(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting non routing peers..."),e.k0s())}function W4(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(4);e.R7$(),e.JRh(n.errorMessage)}}function Z4(t,s){if(1&t&&(e.j41(0,"td",61),e.DNE(1,J4,2,0,"p",62)(2,Q4,2,0,"p",62)(3,W4,2,1,"p",62),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("ngIf",(!(null!=n.nonRoutingPeers&&n.nonRoutingPeers.data)||(null==n.nonRoutingPeers||null==n.nonRoutingPeers.data?null:n.nonRoutingPeers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.nonRoutingPeers&&n.nonRoutingPeers.data)||(null==n.nonRoutingPeers||null==n.nonRoutingPeers.data?null:n.nonRoutingPeers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.nonRoutingPeers&&n.nonRoutingPeers.data)||(null==n.nonRoutingPeers||null==n.nonRoutingPeers.data?null:n.nonRoutingPeers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function K4(t,s){if(1&t&&e.nrm(0,"tr",63),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,o4,(null==n.nonRoutingPeers||null==n.nonRoutingPeers.data?null:n.nonRoutingPeers.data.length)>0))}}function eC(t,s){1&t&&e.nrm(0,"tr",64)}function tC(t,s){1&t&&e.nrm(0,"tr",65)}function nC(t,s){if(1&t&&(e.j41(0,"div",18),e.DNE(1,p4,1,0,"mat-progress-bar",19),e.j41(2,"table",20,1),e.qex(4,21),e.DNE(5,m4,2,0,"th",22)(6,u4,4,4,"td",23),e.bVm(),e.qex(7,24),e.DNE(8,d4,2,0,"th",22)(9,h4,4,4,"td",23),e.bVm(),e.qex(10,25),e.DNE(11,_4,2,0,"th",22)(12,f4,4,4,"td",23),e.bVm(),e.qex(13,26),e.DNE(14,g4,2,0,"th",22)(15,C4,4,4,"td",23),e.bVm(),e.qex(16,27),e.DNE(17,y4,2,1,"th",28)(18,b4,3,1,"td",23),e.bVm(),e.qex(19,29),e.DNE(20,F4,2,1,"th",28)(21,x4,3,1,"td",23),e.bVm(),e.qex(22,30),e.DNE(23,v4,2,0,"th",28)(24,T4,4,3,"td",23),e.bVm(),e.qex(25,31),e.DNE(26,k4,2,0,"th",28)(27,S4,4,3,"td",23),e.bVm(),e.qex(28,32),e.DNE(29,R4,2,0,"th",28)(30,E4,4,3,"td",23),e.bVm(),e.qex(31,33),e.DNE(32,I4,2,0,"th",28)(33,L4,4,3,"td",23),e.bVm(),e.qex(34,34),e.DNE(35,w4,2,0,"th",28)(36,j4,4,3,"td",23),e.bVm(),e.qex(37,35),e.DNE(38,G4,2,0,"th",28)(39,D4,4,3,"td",23),e.bVm(),e.qex(40,36),e.DNE(41,N4,2,0,"th",28)(42,P4,4,3,"td",23),e.bVm(),e.qex(43,37),e.DNE(44,$4,2,0,"th",28)(45,A4,4,3,"td",23),e.bVm(),e.qex(46,38),e.DNE(47,M4,2,0,"th",28)(48,B4,4,3,"td",23),e.bVm(),e.qex(49,39),e.DNE(50,O4,2,0,"th",28)(51,V4,4,3,"td",23),e.bVm(),e.qex(52,40),e.DNE(53,Y4,2,0,"th",28)(54,X4,4,3,"td",23),e.bVm(),e.qex(55,41),e.DNE(56,U4,2,0,"th",28)(57,H4,4,3,"td",23),e.bVm(),e.qex(58,42),e.DNE(59,z4,3,0,"th",43)(60,q4,3,0,"td",44),e.bVm(),e.qex(61,45),e.DNE(62,Z4,4,3,"td",46),e.bVm(),e.DNE(63,K4,1,3,"tr",47)(64,eC,1,0,"tr",48)(65,tC,1,0,"tr",49),e.k0s()()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",n.tableSetting.sortBy)("matSortDirection",n.tableSetting.sortOrder)("dataSource",n.nonRoutingPeers),e.R7$(61),e.Y8G("matFooterRowDef",e.lJ4(7,s4)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns)}}function iC(t,s){if(1&t&&(e.j41(0,"div",6),e.DNE(1,c4,14,4,"div",7)(2,nC,66,8,"div",8),e.nrm(3,"mat-paginator",9,0),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",""===n.errorMessage),e.R7$(),e.Y8G("ngIf",""===n.errorMessage),e.R7$(),e.Y8G("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("hidePageSize",n.screenSize!==n.screenSizeEnum.XS)}}let aC=(()=>{var t;class s{constructor(i,o,a,l,p,m,v){this.logger=i,this.commonService=o,this.store=a,this.router=l,this.activatedRoute=p,this.decimalPipe=m,this.camelCaseWithReplace=v,this.nodePageDefs=c._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"non_routing_peers",recordsPerPage:c.md,sortBy:"remote_alias",sortOrder:c.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.nonRoutingPeers=new u.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.activeChannels=[],this.timeUnit="mins:secs",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(F.$G).pipe((0,g.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(F.Ie).pipe((0,g.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,i.apiCallStatus?.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=i.forwardingHistory.forwarding_events?i.forwardingHistory.forwarding_events:[],this.routingPeersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadNonRoutingPeersTable(this.routingPeersData),this.logger.info(i.apiCallStatus),this.logger.info(i.forwardingHistory)}),this.store.select(F.BM).pipe((0,g.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.activeChannels=i.channels,this.logger.info(i)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.loadNonRoutingPeersTable(this.routingPeersData)}calculateUptime(i){let m=60,v=1,b=0;switch(i.forEach(S=>{S.uptime&&+S.uptime>b&&(b=+S.uptime)}),!0){case b<3600:this.timeUnit="Mins:Secs",m=60,v=1;break;case b>=3600&&b<86400:this.timeUnit="Hrs:Mins",m=3600,v=60;break;case b>=86400&&b<31536e3:this.timeUnit="Days:Hrs",m=86400,v=3600;break;case b>31536e3:this.timeUnit="Yrs:Days",m=31536e3,v=86400;break;default:this.timeUnit="Mins:Secs",m=60,v=1}return i.forEach(S=>{S.uptime_str=S.uptime?this.decimalPipe.transform(Math.floor(+S.uptime/m),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.uptime%m/v),"2.0-0"):"---",S.lifetime_str=S.lifetime?this.decimalPipe.transform(Math.floor(+S.lifetime/m),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.lifetime%m/v),"2.0-0"):"---"}),i}onManagePeer(i){this.router.navigate(["../../","connections","channels","open"],{relativeTo:this.activatedRoute,state:{filterValue:i.chan_id}})}applyFilter(){this.nonRoutingPeers.filter=this.selFilter.toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.nonRoutingPeers.filterPredicate=(i,o)=>{let a="";return a="all"===this.selFilterBy?JSON.stringify(i).toLowerCase():typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString(),a.includes(o)}}loadNonRoutingPeersTable(i){if(i.length>0){const o=this.calculateUptime(this.activeChannels?.filter(a=>i.findIndex(l=>l.chan_id_in===a.chan_id||l.chan_id_out===a.chan_id)<0));this.nonRoutingPeers=new u.I6(o),this.nonRoutingPeers.sort=this.sort,this.nonRoutingPeers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.nonRoutingPeers)}else this.nonRoutingPeers=new u.I6([]);this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU($.h),e.rXU(L.il),e.rXU(w.Ix),e.rXU(w.nX),e.rXU(_.QX),e.rXU(J.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-non-routing-peers"]],viewQuery:function(o,a){if(1&o&&(e.GBs(R.B4,5),e.GBs(G.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:G.xX,useValue:(0,c.on)("Non routing peers")}])],decls:3,vars:2,consts:[["paginator",""],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","chan_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","remote_alias"],["matColumnDef","remote_pubkey"],["matColumnDef","channel_point"],["matColumnDef","uptime_str"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","lifetime_str"],["matColumnDef","commit_fee"],["matColumnDef","commit_weight"],["matColumnDef","fee_per_kw"],["matColumnDef","num_updates"],["matColumnDef","unsettled_balance"],["matColumnDef","capacity"],["matColumnDef","local_chan_reserve_sat"],["matColumnDef","remote_chan_reserve_sat"],["matColumnDef","total_satoshis_sent"],["matColumnDef","total_satoshis_received"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_non_routing_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){1&o&&(e.j41(0,"div",2),e.DNE(1,l4,2,1,"div",3)(2,iC,5,5,"div",4),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage))},dependencies:[_.YU,_.Sq,_.bT,_.B3,d.me,d.BC,d.vS,N.$z,M.fg,C.rl,C.nJ,V.HM,f.DJ,f.sA,f.UI,j.PW,j.eI,E.VO,X.wT,R.B4,R.aE,u.Zl,u.tL,u.ji,u.cC,u.YV,u.iL,u.Zq,u.xW,u.KS,u.$R,u.Qo,u.YZ,u.NB,u.iF,G.iy,B.ZF,B.Ld,_.QX],encapsulation:2}))}return t(),s})();var mt=y(83838);let sC=(()=>{var t;class s{constructor(i){this.dataService=i,this.paths="",this.unSubs=[new h.B,new h.B]}ngOnInit(){if(this.payment.htlcs&&this.payment.htlcs[0]&&this.payment.htlcs[0].route&&this.payment.htlcs[0].route.hops&&this.payment.htlcs[0].route.hops.length>0){const i=this.payment.htlcs[0].route.hops?.reduce((o,a)=>""===o&&a.pub_key?a.pub_key:o+","+a.pub_key,"");this.dataService.getAliasesFromPubkeys(i,!0).pipe((0,g.Q)(this.unSubs[0])).subscribe(o=>{this.paths=o?.reduce((a,l)=>""===a?l:a+"\n"+l,"")})}this.payment.payment_request&&""!==this.payment.payment_request.trim()&&this.dataService.decodePayment(this.payment.payment_request,!1).pipe((0,W.s)(1)).subscribe(i=>{i&&i.description&&""!==i.description&&(this.payment.description=i.description)})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Z.u))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-payment-lookup"]],inputs:{payment:"payment"},standalone:!1,decls:66,vars:20,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["fxLayout","row"],["fxFlex","50"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"mat-card-content",1)(2,"div",2)(3,"h4",3),e.EFF(4,"Payment Hash"),e.k0s(),e.j41(5,"span",4),e.EFF(6),e.k0s()(),e.nrm(7,"mat-divider",5),e.j41(8,"div",2)(9,"h4",3),e.EFF(10,"Payment Preimage"),e.k0s(),e.j41(11,"span",4)(12,"div"),e.EFF(13),e.k0s()()(),e.nrm(14,"mat-divider",5),e.j41(15,"div",2)(16,"h4",3),e.EFF(17,"Payment Request"),e.k0s(),e.j41(18,"span",4)(19,"div"),e.EFF(20),e.k0s()()(),e.nrm(21,"mat-divider",5),e.j41(22,"div",2)(23,"h4",3),e.EFF(24,"Description"),e.k0s(),e.j41(25,"span",4)(26,"div"),e.EFF(27),e.k0s()()(),e.nrm(28,"mat-divider",5),e.j41(29,"div",6)(30,"div",7)(31,"h4",3),e.EFF(32,"Status"),e.k0s(),e.j41(33,"span",4)(34,"div"),e.EFF(35),e.k0s()()(),e.j41(36,"div",7)(37,"h4",3),e.EFF(38,"Creation Date"),e.k0s(),e.j41(39,"span",4)(40,"div"),e.EFF(41),e.k0s()()()(),e.nrm(42,"mat-divider",5),e.j41(43,"div",6)(44,"div",7)(45,"h4",3),e.EFF(46,"Value (mSats)"),e.k0s(),e.j41(47,"span",4)(48,"div"),e.EFF(49),e.nI1(50,"number"),e.k0s()()(),e.j41(51,"div",7)(52,"h4",3),e.EFF(53,"Fee (mSats)"),e.k0s(),e.j41(54,"span",4)(55,"div"),e.EFF(56),e.nI1(57,"number"),e.k0s()()()(),e.nrm(58,"mat-divider",5),e.j41(59,"div",2)(60,"h4",3),e.EFF(61,"Path"),e.k0s(),e.j41(62,"span",4)(63,"div"),e.EFF(64),e.k0s()()(),e.nrm(65,"mat-divider",5),e.k0s()()),2&o&&(e.R7$(6),e.JRh(null==a.payment?null:a.payment.payment_hash),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==a.payment?null:a.payment.payment_preimage),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==a.payment?null:a.payment.payment_request),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==a.payment?null:a.payment.description),e.R7$(),e.Y8G("inset",!0),e.R7$(7),e.JRh(null==a.payment?null:a.payment.status),e.R7$(6),e.JRh(null==a.payment?null:a.payment.creation_date),e.R7$(),e.Y8G("inset",!0),e.R7$(7),e.JRh(e.bMT(50,16,null==a.payment?null:a.payment.value_msat)),e.R7$(7),e.JRh(e.bMT(57,18,null==a.payment?null:a.payment.fee_msat)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(a.paths),e.R7$(),e.Y8G("inset",!0))},dependencies:[k.m2,ne.q,f.DJ,f.sA,f.UI,_.QX],encapsulation:2}))}return t(),s})();var oC=y(38288);const ut=t=>({"display-none":t}),Me=t=>({"mr-0":t});function lC(t,s){if(1&t&&e.nrm(0,"qr-code",22),2&t){const n=e.XpG();e.Y8G("value",null==n.invoice?null:n.invoice.payment_request)("size",n.qrWidth)}}function rC(t,s){1&t&&(e.j41(0,"span",23),e.EFF(1,"N/A"),e.k0s())}function cC(t,s){if(1&t&&e.nrm(0,"qr-code",22),2&t){const n=e.XpG();e.Y8G("value",null==n.invoice?null:n.invoice.payment_request)("size",n.qrWidth)}}function pC(t,s){1&t&&(e.j41(0,"span",24),e.EFF(1,"QR Code Not Applicable"),e.k0s())}function mC(t,s){1&t&&e.nrm(0,"mat-divider",16),2&t&&e.Y8G("inset",!0)}function uC(t,s){1&t&&(e.qex(0),e.EFF(1," (zero amount) "),e.bVm())}function dC(t,s){if(1&t&&e.nrm(0,"span",38),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Me,n.screenSize===n.screenSizeEnum.XS))}}function hC(t,s){if(1&t&&e.nrm(0,"span",39),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Me,n.screenSize===n.screenSizeEnum.XS))}}function _C(t,s){if(1&t&&e.nrm(0,"span",40),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Me,n.screenSize===n.screenSizeEnum.XS))}}function fC(t,s){if(1&t&&(e.j41(0,"div",27)(1,"div",32)(2,"span",33),e.DNE(3,dC,1,3,"span",34)(4,hC,1,3,"span",35)(5,_C,1,3,"span",36),e.EFF(6),e.k0s(),e.j41(7,"span",37),e.EFF(8),e.nI1(9,"number"),e.k0s()(),e.nrm(10,"mat-divider",16),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(3),e.Y8G("ngIf","SETTLED"===n.state),e.R7$(),e.Y8G("ngIf","ACCEPTED"===n.state),e.R7$(),e.Y8G("ngIf","CANCELED"===n.state),e.R7$(),e.SpI(" ",n.chan_id," "),e.R7$(2),e.JRh(e.i5U(9,6,+n.amt_msat/1e3||0,i.getDecimalFormat(n))),e.R7$(2),e.Y8G("inset",!0)}}function gC(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",11)(1,"mat-expansion-panel",25),e.bIt("opened",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.flgOpened=!0)})("closed",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onExpansionClosed())}),e.j41(2,"mat-expansion-panel-header")(3,"mat-panel-title")(4,"h4",26),e.EFF(5,"HTLCs"),e.k0s()()(),e.j41(6,"div",27)(7,"div",28)(8,"span",29),e.EFF(9,"Channel ID"),e.k0s(),e.j41(10,"span",30),e.EFF(11,"Amount (Sats)"),e.k0s()(),e.nrm(12,"mat-divider",16),e.DNE(13,fC,11,9,"div",31),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(12),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngForOf",null==n.invoice?null:n.invoice.htlcs)}}function CC(t,s){1&t&&e.nrm(0,"mat-divider",16),2&t&&e.Y8G("inset",!0)}let yC=(()=>{var t;class s{constructor(i){this.commonService=i,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=c.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.screenSize===c.f7.XS&&(this.qrWidth=220)}getDecimalFormat(i){return i.amt_msat<1e3?"1.0-4":"1.0-0"}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU($.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-invoice-lookup"]],inputs:{invoice:"invoice"},standalone:!1,decls:90,vars:45,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between stretch"],["fxFlex","20",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxLayout","column","fxFlex","80"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],[3,"perfectScrollbar"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"my-1",3,"inset"],["fxFlex","100"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","34"],["fxFlex","33"],["fxLayout","row",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"font-size-300"],[1,"font-size-120"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"flat-expansion-panel",3,"opened","closed"],["fxLayoutAlign","start center","fxFlex","100",1,"font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100",1,"mt-minus-1"],["fxFlex","60",1,"foreground-secondary-text","font-bold-500"],["fxFlex","40",1,"foreground-secondary-text","font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100"],["fxFlex","60",1,"foreground-secondary-text"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Cancelled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["fxFlex","40",1,"foreground-secondary-text"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Cancelled","matTooltipPosition","right",1,"dot","red",3,"ngClass"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"div",1),e.DNE(2,lC,1,2,"qr-code",2)(3,rC,2,0,"span",3),e.k0s(),e.j41(4,"div",4)(5,"mat-card-content",5)(6,"div",6)(7,"div",7),e.DNE(8,cC,1,2,"qr-code",2)(9,pC,2,0,"span",8),e.k0s(),e.DNE(10,mC,1,1,"mat-divider",9),e.j41(11,"div",10)(12,"div",11)(13,"div",12)(14,"h4",13),e.EFF(15),e.k0s(),e.j41(16,"span",14),e.EFF(17),e.nI1(18,"number"),e.DNE(19,uC,2,0,"ng-container",15),e.k0s()(),e.j41(20,"div",12)(21,"h4",13),e.EFF(22,"Amount Settled"),e.k0s(),e.j41(23,"span",14)(24,"div"),e.EFF(25),e.nI1(26,"number"),e.k0s()()()(),e.nrm(27,"mat-divider",16),e.j41(28,"div",11)(29,"div",12)(30,"h4",13),e.EFF(31,"Date Created"),e.k0s(),e.j41(32,"span",14),e.EFF(33),e.nI1(34,"date"),e.k0s()(),e.j41(35,"div",12)(36,"h4",13),e.EFF(37,"Date Settled"),e.k0s(),e.j41(38,"span",14),e.EFF(39),e.nI1(40,"date"),e.k0s()()(),e.nrm(41,"mat-divider",16),e.j41(42,"div",11)(43,"div",17)(44,"h4",13),e.EFF(45,"Memo"),e.k0s(),e.j41(46,"span",14),e.EFF(47),e.k0s()()(),e.nrm(48,"mat-divider",16),e.j41(49,"div",11)(50,"div",17)(51,"h4",13),e.EFF(52,"Payment Request"),e.k0s(),e.j41(53,"span",18),e.EFF(54),e.k0s()()(),e.nrm(55,"mat-divider",16),e.j41(56,"div",11)(57,"div",17)(58,"h4",13),e.EFF(59,"Payment Hash"),e.k0s(),e.j41(60,"span",18),e.EFF(61),e.k0s()()(),e.j41(62,"div"),e.nrm(63,"mat-divider",16),e.j41(64,"div",11)(65,"div",17)(66,"h4",13),e.EFF(67,"Preimage"),e.k0s(),e.j41(68,"span",18),e.EFF(69),e.k0s()()(),e.nrm(70,"mat-divider",16),e.j41(71,"div",11)(72,"div",19)(73,"h4",13),e.EFF(74,"State"),e.k0s(),e.j41(75,"span",18),e.EFF(76),e.k0s()(),e.j41(77,"div",20)(78,"h4",13),e.EFF(79,"Expiry"),e.k0s(),e.j41(80,"span",18),e.EFF(81),e.k0s()(),e.j41(82,"div",20)(83,"h4",13),e.EFF(84,"Private Routing Hints"),e.k0s(),e.j41(85,"span",18),e.EFF(86),e.k0s()()(),e.nrm(87,"mat-divider",16),e.DNE(88,gC,14,2,"div",21)(89,CC,1,1,"mat-divider",9),e.k0s()()()()()()),2&o&&(e.R7$(),e.Y8G("fxLayoutAlign",null!=a.invoice&&a.invoice.payment_request&&""!==(null==a.invoice?null:a.invoice.payment_request)?"center start":"center center")("ngClass",e.eq3(41,ut,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",(null==a.invoice?null:a.invoice.payment_request)&&""!==(null==a.invoice?null:a.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",!(null!=a.invoice&&a.invoice.payment_request)||""===(null==a.invoice?null:a.invoice.payment_request)),e.R7$(4),e.Y8G("fxLayoutAlign",null!=a.invoice&&a.invoice.payment_request&&""!==(null==a.invoice?null:a.invoice.payment_request)?"center start":"center center")("ngClass",e.eq3(43,ut,a.screenSize!==a.screenSizeEnum.XS&&a.screenSize!==a.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",(null==a.invoice?null:a.invoice.payment_request)&&""!==(null==a.invoice?null:a.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",!(null!=a.invoice&&a.invoice.payment_request)||""===(null==a.invoice?null:a.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM),e.R7$(5),e.JRh(a.screenSize===a.screenSizeEnum.XS?"Amount":"Amount Requested"),e.R7$(2),e.SpI("",e.bMT(18,31,(null==a.invoice?null:a.invoice.value)||0)," Sats"),e.R7$(2),e.Y8G("ngIf",!(null!=a.invoice&&a.invoice.value)||"0"===(null==a.invoice?null:a.invoice.value)),e.R7$(6),e.SpI("",e.bMT(26,33,null==a.invoice?null:a.invoice.amt_paid_sat)," Sats"),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(34,35,1e3*(null==a.invoice?null:a.invoice.creation_date),"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(0!=+(null==a.invoice?null:a.invoice.settle_date)?e.i5U(40,38,1e3*+(null==a.invoice?null:a.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==a.invoice?null:a.invoice.memo),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==a.invoice?null:a.invoice.payment_request)||"N/A"),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==a.invoice?null:a.invoice.r_hash)||""),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==a.invoice?null:a.invoice.r_preimage)||"-"),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==a.invoice?null:a.invoice.state),e.R7$(5),e.JRh(null==a.invoice?null:a.invoice.expiry),e.R7$(5),e.JRh(null!=a.invoice&&a.invoice.private?"Yes":"No"),e.R7$(),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngIf",(null==a.invoice?null:a.invoice.htlcs)&&(null==a.invoice?null:a.invoice.htlcs.length)>0),e.R7$(),e.Y8G("ngIf",(null==a.invoice?null:a.invoice.htlcs)&&(null==a.invoice?null:a.invoice.htlcs.length)>0))},dependencies:[_.YU,_.Sq,_.bT,k.m2,z.GK,z.Z2,z.WN,ne.q,f.DJ,f.sA,f.UI,j.PW,ee.oV,oC.Um,B.Ld,_.QX,_.vh],encapsulation:2}))}return t(),s})();const bC=t=>({"mt-1":!0,"mt-2":t}),FC=t=>({"w-100 mt-2 p-2 error-border":t,"w-100 my-2 p-2":!0});function xC(t,s){if(1&t&&(e.j41(0,"mat-radio-button",17),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n.id)("checked",i.selectedFieldId===n.id),e.R7$(),e.SpI(" ",n.name," ")}}function vC(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("",null==n.lookupFields[n.selectedFieldId]?null:n.lookupFields[n.selectedFieldId].placeholder," is required.")}}function TC(t,s){1&t&&e.nrm(0,"mat-progress-bar",20)}function kC(t,s){if(1&t&&(e.j41(0,"div",18),e.DNE(1,TC,1,0,"mat-progress-bar",19),e.EFF(2),e.k0s()),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(3,FC,""!==n.errorMessage&&"Getting lookup details..."!==n.errorMessage)),e.R7$(),e.Y8G("ngIf","Getting lookup details..."===n.errorMessage),e.R7$(),e.SpI(" ",n.errorMessage," ")}}function SC(t,s){if(1&t&&(e.j41(0,"span",27),e.nrm(1,"rtl-payment-lookup",28),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("payment",n.lookupValue)}}function RC(t,s){if(1&t&&(e.j41(0,"span",27),e.nrm(1,"rtl-invoice-lookup",29),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("invoice",n.lookupValue)}}function EC(t,s){1&t&&(e.j41(0,"span"),e.EFF(1,' fxFlex="100"'),e.j41(2,"h3"),e.EFF(3,"Error! Unable to find details!"),e.k0s()())}function IC(t,s){if(1&t&&(e.j41(0,"div",21)(1,"div",22)(2,"span",23),e.EFF(3),e.k0s()(),e.j41(4,"div",24),e.DNE(5,SC,2,1,"span",25)(6,RC,2,1,"span",25)(7,EC,4,0,"span",26),e.k0s()()),2&t){const n=e.XpG();e.R7$(3),e.SpI("",n.lookupFields[n.selectedFieldId].name," Details"),e.R7$(),e.Y8G("ngSwitch",n.selectedFieldId),e.R7$(),e.Y8G("ngSwitchCase",0),e.R7$(),e.Y8G("ngSwitchCase",1)}}let LC=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.commonService=o,this.store=a,this.actions=l,this.lookupKey="",this.lookupValue={},this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Payment",placeholder:"Payment Hash"},{id:1,name:"Invoice",placeholder:"Payment Hash"}],this.faSearch=x.MjD,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.actions.pipe((0,g.Q)(this.unSubs[0]),(0,U.p)(i=>i.type===c.QP.SET_LOOKUP_LND)).subscribe(i=>{this.flgSetLookupValue=!i.payload.error,this.lookupValue=JSON.parse(JSON.stringify(i.payload)),this.errorMessage=i.payload.error?this.commonService.extractErrorMessage(i.payload.error):"",this.logger.info(this.lookupValue)})}onLookup(){if(!this.lookupKey)return!0;switch(this.errorMessage="",this.flgSetLookupValue=!1,this.lookupValue={},this.selectedFieldId){case 0:this.store.dispatch((0,T.jk)({payload:mt.Buffer.from(this.lookupKey.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}));break;case 1:this.store.dispatch((0,T.Yi)({payload:{openSnackBar:!1,paymentHash:mt.Buffer.from(this.lookupKey.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}}))}}onSelectChange(i){this.resetData(),this.selectedFieldId=i.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.lookupKey="",this.lookupValue={},this.errorMessage=""}clearLookupValue(){this.lookupValue={},this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(D.gP),e.rXU($.h),e.rXU(L.il),e.rXU(K.En))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lookup-transactions"]],standalone:!1,decls:21,vars:10,consts:[["form","ngForm"],["key",""],["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModelChange","change","ngModel"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass",4,"ngIf"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["mode","indeterminate"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"mb-2"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxFlex","100"],[3,"payment"],[3,"invoice"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",2)(1,"div",3)(2,"mat-card-content",4)(3,"form",5,0)(5,"div",6)(6,"mat-radio-group",7),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.selectedFieldId,m)||(a.selectedFieldId=m),r.Njj(m)}),e.bIt("change",function(m){return r.eBV(l),r.Njj(a.onSelectChange(m))}),e.DNE(7,xC,2,3,"mat-radio-button",8),e.k0s()(),e.j41(8,"mat-form-field",9)(9,"mat-label"),e.EFF(10),e.k0s(),e.j41(11,"input",10,1),e.mxI("ngModelChange",function(m){return r.eBV(l),e.DH7(a.lookupKey,m)||(a.lookupKey=m),r.Njj(m)}),e.bIt("change",function(){return r.eBV(l),r.Njj(a.clearLookupValue())}),e.k0s(),e.DNE(13,vC,2,1,"mat-error",11),e.k0s(),e.j41(14,"div",12)(15,"button",13),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(16,"Clear"),e.k0s(),e.j41(17,"button",14),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onLookup())}),e.EFF(18,"Lookup"),e.k0s()()(),e.DNE(19,kC,3,5,"div",15)(20,IC,8,4,"div",16),e.k0s()()()}2&o&&(e.R7$(6),e.R50("ngModel",a.selectedFieldId),e.R7$(),e.Y8G("ngForOf",a.lookupFields),e.R7$(),e.Y8G("ngClass",e.eq3(8,bC,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),e.R7$(2),e.JRh((null==a.lookupFields[a.selectedFieldId]?null:a.lookupFields[a.selectedFieldId].placeholder)||"Lookup Key"),e.R7$(),e.R50("ngModel",a.lookupKey),e.R7$(2),e.Y8G("ngIf",!a.lookupKey),e.R7$(6),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage&&a.lookupValue&&a.flgSetLookupValue))},dependencies:[_.YU,_.Sq,_.bT,_.ux,_.e1,_.fG,d.qT,d.me,d.BC,d.cb,d.YS,d.vS,d.cV,N.$z,k.m2,M.fg,C.rl,C.nJ,C.TL,V.HM,de.VT,de._g,f.DJ,f.sA,f.UI,j.PW,sC,yC],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]}))}return t(),s})();const wC=[{path:"",component:Oe,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Us,canActivate:[(0,P.jn)()]},{path:"wallet",component:Id,canActivate:[P.q_]},{path:"onchain",component:l2,canActivate:[(0,P.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:p2,canActivate:[(0,P.jn)()]},{path:"send/:selTab",component:ct,data:{sweepAll:!1},canActivate:[(0,P.jn)()]},{path:"sweep/:selTab",component:ct,data:{sweepAll:!0},canActivate:[(0,P.jn)()]}]},{path:"connections",component:qs,canActivate:[(0,P.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:gl,canActivate:[(0,P.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:O1,canActivate:[(0,P.jn)()]},{path:"pending",component:Tm,canActivate:[(0,P.jn)()]},{path:"closed",component:uu,canActivate:[(0,P.jn)()]},{path:"activehtlcs",component:ad,canActivate:[(0,P.jn)()]}]},{path:"peers",component:ul,data:{sweepAll:!1},canActivate:[(0,P.jn)()]}]},{path:"transactions",component:wd,canActivate:[(0,P.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Xe,canActivate:[(0,P.jn)()]},{path:"invoices",component:Ye,canActivate:[(0,P.jn)()]},{path:"lookuptransactions",component:LC,canActivate:[(0,P.jn)()]}]},{path:"messages",component:Hg,canActivate:[(0,P.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:qg,canActivate:[(0,P.jn)()]},{path:"verify",component:n4,canActivate:[(0,P.jn)()]}]},{path:"channelbackup",component:cg,canActivate:[(0,P.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"bckup"},{path:"bckup",component:Xg,canActivate:[(0,P.jn)()]},{path:"restore",component:Rg,canActivate:[(0,P.jn)()]}]},{path:"routing",component:Ah,canActivate:[(0,P.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:at,canActivate:[(0,P.jn)()]},{path:"peers",component:c0,canActivate:[(0,P.jn)()]},{path:"nonroutingprs",component:aC,canActivate:[(0,P.jn)()]}]},{path:"reports",component:m0,canActivate:[(0,P.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:b0,canActivate:[(0,P.jn)()]},{path:"transactions",component:G0,canActivate:[(0,P.jn)()]}]},{path:"graph",component:Gd,canActivate:[(0,P.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:it,canActivate:[(0,P.jn)()]},{path:"queryroutes",component:oh,canActivate:[(0,P.jn)()]}]},{path:"lookups",component:it,canActivate:[(0,P.jn)()]},{path:"network",component:lg,canActivate:[(0,P.jn)()]},{path:"**",component:i4.X},{path:"rates",redirectTo:"network"}]}],jC=ie.iI.forChild(wC);var GC=y(19029);let DC=(()=>{var t;class s{static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)},this.\u0275mod=e.$C({type:s,bootstrap:[Oe]}),this.\u0275inj=r.G2t({imports:[_.MD,GC.G,jC]}))}return t(),s})()}}]); \ No newline at end of file diff --git a/frontend/193.0936738599c66c4e.js b/frontend/193.0936738599c66c4e.js deleted file mode 100644 index 99349b8a..00000000 --- a/frontend/193.0936738599c66c4e.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[193],{5085:(c1,j,t)=>{t.d(j,{T:()=>K});var e=t(96695),T=t(2042),f=t(19295),c=t(96183),l=t(4416),k=t(11771),b=t(21413),B=t(56977),w=t(79647),S=t(2615),a=t(73664),P=t(82571),N=t(59640),R=t(72200),V=t(52929),O=t(89417),A=t(88834),G=t(33746),H=t(69588),U=t(52920),C=t(16038),x=t(23029),v=t(10497);const n=()=>["all"],z=()=>["no_transaction"],g=s=>({"display-none":s});function F(s,L){if(1&s&&(a.j41(0,"mat-option",30),a.EFF(1),a.k0s()),2&s){const M=L.$implicit,r=a.XpG();a.Y8G("value",M),a.R7$(),a.JRh(r.getLabel(M))}}function I(s,L){1&s&&(a.j41(0,"th",31),a.EFF(1,"Date"),a.k0s())}function y(s,L){if(1&s&&(a.j41(0,"td",32),a.EFF(1),a.nI1(2,"date"),a.k0s()),2&s){const M=L.$implicit,r=a.XpG();a.R7$(),a.JRh(a.i5U(2,1,null==M?null:M.date,r.dataRange===r.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy"))}}function W(s,L){1&s&&(a.j41(0,"th",33),a.EFF(1,"Amount Paid (Sats)"),a.k0s())}function Y(s,L){if(1&s&&(a.j41(0,"td",32)(1,"span",34),a.EFF(2),a.nI1(3,"number"),a.k0s()()),2&s){const M=L.$implicit;a.R7$(2),a.JRh(a.i5U(3,1,null==M?null:M.amount_paid,"1.0-2"))}}function Z(s,L){1&s&&(a.j41(0,"th",33),a.EFF(1,"# Payments"),a.k0s())}function q(s,L){if(1&s&&(a.j41(0,"td",32)(1,"span",34),a.EFF(2),a.nI1(3,"number"),a.k0s()()),2&s){const M=L.$implicit;a.R7$(2),a.JRh(a.bMT(3,1,null==M?null:M.num_payments))}}function a1(s,L){1&s&&(a.j41(0,"th",33),a.EFF(1,"Amount Received (Sats)"),a.k0s())}function Q(s,L){if(1&s&&(a.j41(0,"td",32)(1,"span",34),a.EFF(2),a.nI1(3,"number"),a.k0s()()),2&s){const M=L.$implicit;a.R7$(2),a.JRh(a.i5U(3,1,null==M?null:M.amount_received,"1.0-2"))}}function e1(s,L){1&s&&(a.j41(0,"th",33),a.EFF(1,"# Invoices"),a.k0s())}function J(s,L){if(1&s&&(a.j41(0,"td",32)(1,"span",34),a.EFF(2),a.nI1(3,"number"),a.k0s()()),2&s){const M=L.$implicit;a.R7$(2),a.JRh(a.bMT(3,1,null==M?null:M.num_invoices))}}function u(s,L){if(1&s){const M=a.RV6();a.j41(0,"th",35)(1,"div",36)(2,"mat-select",37),a.nrm(3,"mat-select-trigger"),a.j41(4,"mat-option",38),a.bIt("click",function(){S.eBV(M);const h=a.XpG();return S.Njj(h.onDownloadCSV())}),a.EFF(5,"Download CSV"),a.k0s()()()()}}function _(s,L){if(1&s){const M=a.RV6();a.j41(0,"td",39)(1,"button",40),a.bIt("click",function(){const h=S.eBV(M).$implicit,p=a.XpG();return S.Njj(p.onTransactionClick(h))}),a.EFF(2,"View Info"),a.k0s()()}}function m(s,L){1&s&&(a.j41(0,"p"),a.EFF(1,"No transaction available."),a.k0s())}function i(s,L){if(1&s&&(a.j41(0,"td",41),a.DNE(1,m,2,0,"p",42),a.k0s()),2&s){const M=a.XpG();a.R7$(),a.Y8G("ngIf",!(null!=M.transactions&&M.transactions.data)||(null==M.transactions||null==M.transactions.data?null:M.transactions.data.length)<1)}}function o(s,L){if(1&s&&a.nrm(0,"tr",43),2&s){const M=a.XpG();a.Y8G("ngClass",a.eq3(1,g,(null==M.transactions?null:M.transactions.data)&&(null==M.transactions||null==M.transactions.data?null:M.transactions.data.length)>0))}}function d(s,L){1&s&&a.nrm(0,"tr",44)}function E(s,L){1&s&&a.nrm(0,"tr",45)}let K=(()=>{var s;class L{constructor(r,h,p,D){this.commonService=r,this.store=h,this.datePipe=p,this.camelCaseWithReplace=D,this.dataRange=l.rs[0],this.dataList=[],this.selFilter="",this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.tableSetting={tableId:"transactions",recordsPerPage:l.md,sortBy:"date",sortOrder:l.oi.DESCENDING},this.nodePageDefs=l._1,this.selFilterBy="all",this.timezoneOffset=60*new Date(Date.now()).getTimezoneOffset(),this.scrollRanges=l.rs,this.transactions=new f.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new b.B,new b.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(r){r.dataList&&!r.dataList.firstChange&&(this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.loadTransactionsTable(this.dataList)),r.selFilter&&!r.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(w._c).pipe((0,B.Q)(this.unSubs[0])).subscribe(r=>{this.nodePageDefs="CLN"===r.lnImplementation?l.Jd:"ECL"===r.lnImplementation?l.WW:l._1}),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.dataList&&this.dataList.length>0&&this.loadTransactionsTable(this.dataList)}ngAfterViewInit(){setTimeout(()=>{this.setTableWidgets()},0)}onTransactionClick(r){const h=[[{key:"date",value:this.datePipe.transform(r.date,this.dataRange===l.rs[1]?"MMM/yyyy":"dd/MMM/yyyy"),title:"Date",width:100,type:l.UN.DATE}],[{key:"amount_paid",value:Math.round(r.amount_paid),title:"Amount Paid (Sats)",width:50,type:l.UN.NUMBER},{key:"num_payments",value:r.num_payments,title:"# Payments",width:50,type:l.UN.NUMBER}],[{key:"amount_received",value:Math.round(r.amount_received),title:"Amount Received (Sats)",width:50,type:l.UN.NUMBER},{key:"num_invoices",value:r.num_invoices,title:"# Invoices",width:50,type:l.UN.NUMBER}]];this.store.dispatch((0,k.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Transaction Summary",message:h}}}))}applyFilter(){this.transactions&&(this.transactions.filter=this.selFilter.trim().toLowerCase())}getLabel(r){const h=this.nodePageDefs.reports[this.tableSetting.tableId].allowedColumns.find(p=>p.column===r);return h?h.label?h.label:this.camelCaseWithReplace.transform(h.column,"_"):this.commonService.titleCase(r)}setFilterPredicate(){this.transactions.filterPredicate=(r,h)=>{let p="";switch(this.selFilterBy){case"all":p=(r.date?(this.datePipe.transform(r.date,"dd/MMM")+"/"+r.date.getFullYear()).toLowerCase():"")+JSON.stringify(r).toLowerCase();break;case"date":p=this.datePipe.transform(new Date(r[this.selFilterBy]||0),this.dataRange===this.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy")?.toLowerCase()||"";break;default:p=typeof r[this.selFilterBy]>"u"?"":"string"==typeof r[this.selFilterBy]?r[this.selFilterBy].toLowerCase():"boolean"==typeof r[this.selFilterBy]?r[this.selFilterBy]?"yes":"no":r[this.selFilterBy].toString()}return p.includes(h)}}loadTransactionsTable(r){this.transactions=new f.I6(r?[...r]:[]),this.setTableWidgets()}setTableWidgets(){this.transactions&&this.transactions.data&&this.transactions.data.length>0&&(this.transactions.sort=this.sort,this.transactions.sortingDataAccessor=(r,h)=>r[h]&&isNaN(r[h])?r[h].toLocaleLowerCase():r[h]?+r[h]:null,this.transactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter())}onDownloadCSV(){this.transactions.data&&this.transactions.data.length>0&&this.commonService.downloadFile(this.dataList,"Transactions-report-"+this.dataRange.toLowerCase())}ngOnDestroy(){this.unSubs.forEach(r=>{r.next(),r.complete()})}static#a=s=()=>(this.\u0275fac=function(h){return new(h||L)(a.rXU(P.h),a.rXU(N.il),a.rXU(R.vh),a.rXU(V.VD))},this.\u0275cmp=a.VBU({type:L,selectors:[["rtl-transactions-report-table"]],viewQuery:function(h,p){if(1&h&&(a.GBs(T.B4,5),a.GBs(e.iy,5)),2&h){let D;a.mGM(D=a.lsd())&&(p.sort=D.first),a.mGM(D=a.lsd())&&(p.paginator=D.first)}},inputs:{dataRange:"dataRange",dataList:"dataList",selFilter:"selFilter",displayedColumns:"displayedColumns",tableSetting:"tableSetting"},standalone:!1,features:[a.Jv_([{provide:c.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:e.xX,useValue:(0,l.on)("Transactions")}]),a.OA$],decls:43,vars:14,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","amount_paid"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","num_payments"],["matColumnDef","amount_received"],["matColumnDef","num_invoices"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(h,p){if(1&h){const D=a.RV6();a.j41(0,"div",1)(1,"div",2)(2,"div",3),a.nrm(3,"div",4),a.j41(4,"div",5)(5,"mat-form-field",6)(6,"mat-label"),a.EFF(7,"Filter By"),a.k0s(),a.j41(8,"mat-select",7),a.mxI("ngModelChange",function($){return S.eBV(D),a.DH7(p.selFilterBy,$)||(p.selFilterBy=$),S.Njj($)}),a.bIt("selectionChange",function(){return S.eBV(D),p.selFilter="",S.Njj(p.applyFilter())}),a.j41(9,"perfect-scrollbar"),a.DNE(10,F,2,2,"mat-option",8),a.k0s()()(),a.j41(11,"mat-form-field",6)(12,"mat-label"),a.EFF(13,"Filter"),a.k0s(),a.j41(14,"input",9),a.mxI("ngModelChange",function($){return S.eBV(D),a.DH7(p.selFilter,$)||(p.selFilter=$),S.Njj($)}),a.bIt("input",function(){return S.eBV(D),S.Njj(p.applyFilter())})("keyup",function(){return S.eBV(D),S.Njj(p.applyFilter())}),a.k0s()()()(),a.j41(15,"div",10)(16,"div",11)(17,"table",12,0),a.qex(19,13),a.DNE(20,I,2,0,"th",14)(21,y,3,4,"td",15),a.bVm(),a.qex(22,16),a.DNE(23,W,2,0,"th",17)(24,Y,4,4,"td",15),a.bVm(),a.qex(25,18),a.DNE(26,Z,2,0,"th",17)(27,q,4,3,"td",15),a.bVm(),a.qex(28,19),a.DNE(29,a1,2,0,"th",17)(30,Q,4,4,"td",15),a.bVm(),a.qex(31,20),a.DNE(32,e1,2,0,"th",17)(33,J,4,3,"td",15),a.bVm(),a.qex(34,21),a.DNE(35,u,6,0,"th",22)(36,_,3,0,"td",23),a.bVm(),a.qex(37,24),a.DNE(38,i,2,1,"td",25),a.bVm(),a.DNE(39,o,1,3,"tr",26)(40,d,1,0,"tr",27)(41,E,1,0,"tr",28),a.k0s(),a.nrm(42,"mat-paginator",29),a.k0s()()()()}2&h&&(a.R7$(8),a.R50("ngModel",p.selFilterBy),a.R7$(2),a.Y8G("ngForOf",a.lJ4(12,n).concat(p.displayedColumns.slice(0,-1))),a.R7$(4),a.R50("ngModel",p.selFilter),a.R7$(3),a.Y8G("matSortActive",p.tableSetting.sortBy)("matSortDirection",p.tableSetting.sortOrder)("dataSource",p.transactions),a.R7$(22),a.Y8G("matFooterRowDef",a.lJ4(13,z)),a.R7$(),a.Y8G("matHeaderRowDef",p.displayedColumns),a.R7$(),a.Y8G("matRowDefColumns",p.displayedColumns),a.R7$(),a.Y8G("pageSize",p.pageSize)("pageSizeOptions",p.pageSizeOptions)("hidePageSize",p.screenSize!==p.screenSizeEnum.XS))},dependencies:[R.YU,R.Sq,R.bT,O.me,O.BC,O.vS,A.$z,G.fg,H.rl,H.nJ,U.DJ,U.sA,U.UI,C.PW,c.VO,c.$2,x.wT,T.B4,T.aE,f.Zl,f.tL,f.ji,f.cC,f.YV,f.iL,f.Zq,f.xW,f.KS,f.$R,f.Qo,f.YZ,f.NB,f.iF,e.iy,v.ZF,v.Ld,R.QX,R.vh],encapsulation:2}))}return s(),L})()},24655:(c1,j,t)=>{t.d(j,{m:()=>J});var e=t(73664),T=t(16949),f=t(4416),c=t(2615),l=t(98570),k=t(72200),b=t(89417),B=t(22598),w=t(25084),S=t(12629),a=t(33746),P=t(69588),N=t(52920),R=t(96183),V=t(23029),O=t(3),A=t(19945);let G=(()=>{var u;class _ extends O.xW{constructor(i){super(i)}format(i,o){return"MMM YYYY"===o?f.KR[i.getMonth()].name+", "+i.getFullYear():"YYYY"===o?i.getFullYear().toString():i.getDate()+"/"+f.KR[i.getMonth()].name+"/"+i.getFullYear()}static#a=u=()=>(this.\u0275fac=function(o){return new(o||_)(c.KVO(A.Ju,8))},this.\u0275prov=c.jDH({token:_,factory:_.\u0275fac}))}return u(),_})();const H={parse:{dateInput:"LL"},display:{dateInput:"MMM YYYY",monthYearLabel:"YYYY",dateA11yLabel:"LL",monthYearA11yLabel:"YYYY"}},U={parse:{dateInput:"LL"},display:{dateInput:"YYYY",monthYearLabel:"YYYY",dateA11yLabel:"LL",monthYearA11yLabel:"YYYY"}};let C=(()=>{var u;class _{static#a=u=()=>(this.\u0275fac=function(o){return new(o||_)},this.\u0275dir=e.FsC({type:_,selectors:[["","monthlyDate",""]],standalone:!1,features:[e.Jv_([{provide:A.MJ,useClass:G},{provide:A.de,useValue:H}])]}))}return u(),_})(),x=(()=>{var u;class _{static#a=u=()=>(this.\u0275fac=function(o){return new(o||_)},this.\u0275dir=e.FsC({type:_,selectors:[["","yearlyDate",""]],standalone:!1,features:[e.Jv_([{provide:A.MJ,useClass:G},{provide:A.de,useValue:U}])]}))}return u(),_})();var v=t(60092),n=t(56114);const z=["monthlyDatepicker"],g=["yearlyDatepicker"],F=()=>({animationDirection:"forward"}),I=()=>({animationDirection:"backward"}),y=()=>({animationDirection:""});function W(u,_){if(1&u&&e.eu8(0,13),2&u){e.XpG();const m=e.sdS(19);e.Y8G("ngTemplateOutlet",m)("ngTemplateOutletContext",e.lJ4(2,F))}}function Y(u,_){if(1&u&&e.eu8(0,13),2&u){e.XpG();const m=e.sdS(19);e.Y8G("ngTemplateOutlet",m)("ngTemplateOutletContext",e.lJ4(2,I))}}function Z(u,_){if(1&u&&e.eu8(0,13),2&u){e.XpG();const m=e.sdS(19);e.Y8G("ngTemplateOutlet",m)("ngTemplateOutletContext",e.lJ4(2,y))}}function q(u,_){if(1&u&&(e.j41(0,"mat-option",21),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&u){const m=_.$implicit;e.Y8G("value",m),e.R7$(),e.SpI(" ",e.bMT(2,2,m)," ")}}function a1(u,_){if(1&u){const m=e.RV6();e.j41(0,"mat-form-field",22)(1,"input",23,1),e.mxI("ngModelChange",function(o){c.eBV(m);const d=e.XpG(2);return e.DH7(d.selectedValue,o)||(d.selectedValue=o),c.Njj(o)}),e.k0s(),e.nrm(3,"mat-datepicker-toggle",24),e.j41(4,"mat-datepicker",25,2),e.bIt("monthSelected",function(o){c.eBV(m);const d=e.XpG(2);return c.Njj(d.onMonthSelected(o))})("dateSelected",function(o){c.eBV(m);const d=e.XpG(2);return c.Njj(d.onMonthSelected(o))}),e.k0s()()}if(2&u){const m=e.sdS(5),i=e.XpG(2);e.R7$(),e.Y8G("matDatepicker",m)("min",i.first)("max",i.last),e.R50("ngModel",i.selectedValue),e.R7$(2),e.Y8G("for",m),e.R7$(),e.Y8G("startAt",i.selectedValue)}}function Q(u,_){if(1&u){const m=e.RV6();e.j41(0,"mat-form-field",26)(1,"input",27,3),e.mxI("ngModelChange",function(o){c.eBV(m);const d=e.XpG(2);return e.DH7(d.selectedValue,o)||(d.selectedValue=o),c.Njj(o)}),e.k0s(),e.nrm(3,"mat-datepicker-toggle",24),e.j41(4,"mat-datepicker",28,4),e.bIt("yearSelected",function(o){c.eBV(m);const d=e.XpG(2);return c.Njj(d.onYearSelected(o))})("monthSelected",function(o){c.eBV(m);const d=e.XpG(2);return c.Njj(d.onYearSelected(o))})("dateSelected",function(o){c.eBV(m);const d=e.XpG(2);return c.Njj(d.onYearSelected(o))}),e.k0s()()}if(2&u){const m=e.sdS(5),i=e.XpG(2);e.R7$(),e.Y8G("matDatepicker",m)("min",i.first)("max",i.last),e.R50("ngModel",i.selectedValue),e.R7$(2),e.Y8G("for",m),e.R7$(),e.Y8G("startAt",i.selectedValue)}}function e1(u,_){if(1&u){const m=e.RV6();e.j41(0,"div",14)(1,"div",15)(2,"mat-select",16),e.mxI("ngModelChange",function(o){c.eBV(m);const d=e.XpG();return e.DH7(d.selScrollRange,o)||(d.selScrollRange=o),c.Njj(o)}),e.bIt("selectionChange",function(o){c.eBV(m);const d=e.XpG();return c.Njj(d.onRangeChanged(o))}),e.DNE(3,q,3,4,"mat-option",17),e.k0s()(),e.j41(4,"div",18),e.DNE(5,a1,6,6,"mat-form-field",19)(6,Q,6,6,"mat-form-field",20),e.k0s()()}if(2&u){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(2),e.R50("ngModel",m.selScrollRange),e.R7$(),e.Y8G("ngForOf",m.scrollRanges),e.R7$(2),e.Y8G("ngIf",m.selScrollRange===m.scrollRanges[0]),e.R7$(),e.Y8G("ngIf",m.selScrollRange===m.scrollRanges[1])}}let J=(()=>{var u;class _{constructor(i){this.logger=i,this.scrollRanges=f.rs,this.selScrollRange=this.scrollRanges[0],this.today=new Date(Date.now()),this.first=new Date(2018,0,1,0,0,0),this.last=new Date(this.today.getFullYear(),this.today.getMonth(),this.today.getDate(),0,0,0),this.disablePrev=!1,this.disableNext=!0,this.animationDirection="",this.selectedValue=this.last,this.stepChanged=new e.bkB}onRangeChanged(i){this.selScrollRange=i.value,this.onStepChange("LAST")}onMonthSelected(i){this.selectedValue=i,this.onStepChange("SELECTED"),this.monthlyDatepicker.close()}onYearSelected(i){this.selectedValue=i,this.onStepChange("SELECTED"),this.yearlyDatepicker.close()}onStepChange(i){switch(this.logger.info(i),i){case"FIRST":this.animationDirection="backward",this.selectedValue!==this.first&&(this.selectedValue=this.first,this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange}));break;case"PREVIOUS":this.selectedValue=this.selScrollRange===f.rs[1]?new Date(this.selectedValue.getFullYear()-1,0,1,0,0,0):new Date(this.selectedValue.getFullYear(),this.selectedValue.getMonth()-1,1,0,0,0),this.animationDirection="backward",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;case"NEXT":this.selectedValue=this.selScrollRange===f.rs[1]?new Date(this.selectedValue.getFullYear()+1,0,1,0,0,0):new Date(this.selectedValue.getFullYear(),this.selectedValue.getMonth()+1,1,0,0,0),this.animationDirection="forward",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;case"LAST":this.animationDirection="forward",this.selectedValue=this.last,this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;default:this.animationDirection="",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange})}this.disablePrev=this.selScrollRange===f.rs[1]?this.selectedValue.getFullYear()<=this.first.getFullYear():this.selectedValue.getFullYear()<=this.first.getFullYear()&&this.selectedValue.getMonth()<=this.first.getMonth(),this.disableNext=this.selScrollRange===f.rs[1]?this.selectedValue.getFullYear()>=this.last.getFullYear():this.selectedValue.getFullYear()>=this.last.getFullYear()&&this.selectedValue.getMonth()>=this.last.getMonth(),this.logger.info(this.disablePrev),this.logger.info(this.disableNext),setTimeout(()=>{this.animationDirection=""},800)}onChartMouseUp(i){"monthlyDate"===i.srcElement.name?this.monthlyDatepicker.open():"yearlyDate"===i.srcElement.name&&this.yearlyDatepicker.open()}static#a=u=()=>(this.\u0275fac=function(o){return new(o||_)(e.rXU(l.gP))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-horizontal-scroller"]],viewQuery:function(o,d){if(1&o&&(e.GBs(z,5),e.GBs(g,5)),2&o){let E;e.mGM(E=e.lsd())&&(d.monthlyDatepicker=E.first),e.mGM(E=e.lsd())&&(d.yearlyDatepicker=E.first)}},hostBindings:function(o,d){1&o&&e.bIt("click",function(K){return d.onChartMouseUp(K)})},outputs:{stepChanged:"stepChanged"},standalone:!1,decls:20,vars:5,consts:[["controlsPanel",""],["monthlyDt","ngModel"],["monthlyDatepicker",""],["yearlyDt","ngModel"],["yearlyDatepicker",""],["fxLayout","row","fxLayoutAlign","space-between stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","20"],["mat-icon-button","","color","primary","type","button","tabindex","1",1,"pr-4",3,"click"],["mat-icon-button","","color","primary","type","button","tabindex","2",3,"click","disabled"],[3,"ngTemplateOutlet","ngTemplateOutletContext",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","20"],["mat-icon-button","","color","primary","type","button","tabindex","5",1,"pr-4",3,"click","disabled"],["mat-icon-button","","color","primary","type","button","tabindex","6",3,"click"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],["fxLayout","row","fxLayoutAlign","center center","fxFlex","58"],["fxFlex","50","fxLayoutAlign","center center","fxLayoutAlign.gt-xs","end center",1,"font-bold-700"],["fxFlex","60","fxFlex.gt-md","30","name","selScrlRange","tabindex","3",1,"font-bold-700",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","50","fxLayout","row","fxLayoutAlign","center center","fxLayoutAlign.gt-xs","start center"],["monthlyDate","","fxLayoutAlign","center center",4,"ngIf"],["yearlyDate","","fxLayoutAlign","center center",4,"ngIf"],[3,"value"],["monthlyDate","","fxLayoutAlign","center center"],["matInput","","name","monthlyDate","tabindex","4","readonly","",3,"ngModelChange","matDatepicker","min","max","ngModel"],["matSuffix","",3,"for"],["startView","year",3,"monthSelected","dateSelected","startAt"],["yearlyDate","","fxLayoutAlign","center center"],["matInput","","name","yearlyDate","tabindex","4","readonly","",3,"ngModelChange","matDatepicker","min","max","ngModel"],["startView","multi-year",3,"yearSelected","monthSelected","dateSelected","startAt"]],template:function(o,d){if(1&o){const E=e.RV6();e.j41(0,"div",5)(1,"div",6)(2,"button",7),e.bIt("click",function(){return c.eBV(E),c.Njj(d.onStepChange("FIRST"))}),e.j41(3,"mat-icon"),e.EFF(4,"skip_previous"),e.k0s()(),e.j41(5,"button",8),e.bIt("click",function(){return c.eBV(E),c.Njj(d.onStepChange("PREVIOUS"))}),e.j41(6,"mat-icon"),e.EFF(7,"navigate_before"),e.k0s()()(),e.DNE(8,W,1,3,"ng-container",9)(9,Y,1,3,"ng-container",9)(10,Z,1,3,"ng-container",9),e.j41(11,"div",10)(12,"button",11),e.bIt("click",function(){return c.eBV(E),c.Njj(d.onStepChange("NEXT"))}),e.j41(13,"mat-icon"),e.EFF(14,"navigate_next"),e.k0s()(),e.j41(15,"button",12),e.bIt("click",function(){return c.eBV(E),c.Njj(d.onStepChange("LAST"))}),e.j41(16,"mat-icon"),e.EFF(17,"skip_next"),e.k0s()()()(),e.DNE(18,e1,7,5,"ng-template",null,0,e.C5r)}2&o&&(e.R7$(5),e.Y8G("disabled",d.disablePrev),e.R7$(3),e.Y8G("ngIf","forward"===d.animationDirection),e.R7$(),e.Y8G("ngIf","backward"===d.animationDirection),e.R7$(),e.Y8G("ngIf",""===d.animationDirection),e.R7$(2),e.Y8G("disabled",d.disableNext))},dependencies:[k.Sq,k.bT,k.T3,b.me,b.BC,b.vS,B.iY,w.Vh,w.bZ,w.bU,S.An,a.fg,P.rl,P.yw,N.DJ,N.sA,N.UI,R.VO,V.wT,C,x,v.z,n.V,k.PV],encapsulation:2,data:{animation:[T.k]}}))}return u(),_})()},25837:(c1,j,t)=>{t.d(j,{f:()=>U});var e=t(21413),T=t(56977),f=t(4416),c=t(79647),l=t(73664),k=t(82571),b=t(59640),B=t(72200),w=t(12629),S=t(52920),a=t(40455),P=t(96850);function N(C,x){if(1&C&&(l.j41(0,"mat-icon",10),l.EFF(1,"info_outline"),l.k0s()),2&C){const v=l.XpG().$implicit;l.Y8G("matTooltip",v.tooltip)}}function R(C,x){if(1&C&&(l.j41(0,"span",11),l.EFF(1),l.nI1(2,"number"),l.k0s()),2&C){const v=l.XpG().$implicit;l.R7$(),l.SpI(" ",l.i5U(2,1,v.dataValue,"1.0-0")," ")}}function V(C,x){if(1&C&&(l.j41(0,"span",11),l.EFF(1),l.nI1(2,"number"),l.k0s()),2&C){const v=l.XpG().$implicit,n=l.XpG(2);l.R7$(),l.SpI(" ",l.i5U(2,1,v[n.currencyUnitEnum.BTC],n.currencyUnitFormats.BTC)," ")}}function O(C,x){if(1&C&&(l.j41(0,"span",11),l.EFF(1),l.nI1(2,"number"),l.k0s()),2&C){const v=l.XpG().$implicit,n=l.XpG(2);l.R7$(),l.SpI(" ",l.i5U(2,1,v[n.currencyUnitEnum.OTHER],n.currencyUnitFormats.OTHER)," ")}}function A(C,x){if(1&C&&(l.j41(0,"div",6)(1,"div",7),l.EFF(2),l.DNE(3,N,2,1,"mat-icon",8),l.k0s(),l.DNE(4,R,3,4,"span",9)(5,V,3,4,"span",9)(6,O,3,4,"span",9),l.k0s()),2&C){const v=x.$implicit,n=l.XpG().$implicit,z=l.XpG();l.R7$(2),l.SpI(" ",v.title," "),l.R7$(),l.Y8G("ngIf",v.tooltip),l.R7$(),l.Y8G("ngIf",n===z.currencyUnitEnum.SATS),l.R7$(),l.Y8G("ngIf",n===z.currencyUnitEnum.BTC),l.R7$(),l.Y8G("ngIf",z.fiatConversion&&n!==z.currencyUnitEnum.SATS&&n!==z.currencyUnitEnum.BTC&&""===z.conversionErrorMsg)}}function G(C,x){if(1&C&&(l.j41(0,"div",12)(1,"div",13),l.EFF(2),l.k0s()()),2&C){const v=l.XpG(2);l.R7$(2),l.JRh(v.conversionErrorMsg)}}function H(C,x){if(1&C&&(l.j41(0,"mat-tab",2)(1,"div",3),l.DNE(2,A,7,5,"div",4),l.k0s(),l.DNE(3,G,3,1,"div",5),l.k0s()),2&C){const v=x.$implicit,n=l.XpG();l.Y8G("label",l.mNQ(v)),l.R7$(2),l.Y8G("ngForOf",n.values),l.R7$(),l.Y8G("ngIf",n.fiatConversion&&v!==n.currencyUnitEnum.SATS&&v!==n.currencyUnitEnum.BTC&&""!==n.conversionErrorMsg)}}let U=(()=>{var C;class x{constructor(n,z){this.commonService=n,this.store=z,this.values=[],this.currencyUnitEnum=f.BQ,this.currencyUnitFormats=f.k,this.currencyUnits=[],this.fiatConversion=!1,this.conversionErrorMsg="",this.unSubs=[new e.B,new e.B,new e.B,new e.B,new e.B]}ngOnChanges(){this.currencyUnits.length>1&&this.values[0]&&this.values[0].dataValue>=0&&this.getCurrencyValues()}ngOnInit(){this.store.select(c._c).pipe((0,T.Q)(this.unSubs[0])).subscribe(n=>{this.fiatConversion=n.settings.fiatConversion,this.currencyUnits=n.settings.currencyUnits,this.fiatConversion||this.currencyUnits.splice(2,1),this.currencyUnits.length>1&&this.values[0]&&this.values[0].dataValue>=0&&this.getCurrencyValues()})}getCurrencyValues(){this.commonService.convertCurrency(this.values[0].dataValue,f.BQ.SATS,f.BQ.BTC,"",!0).pipe((0,T.Q)(this.unSubs[1])).subscribe(n=>{this.values[0][f.BQ.BTC]=n.BTC}),this.commonService.convertCurrency(this.values[0].dataValue,f.BQ.SATS,f.BQ.OTHER,this.currencyUnits[2],this.fiatConversion).pipe((0,T.Q)(this.unSubs[2])).subscribe({next:n=>{if(this.values[0][f.BQ.OTHER]=n.OTHER,n.unit&&""!==n.unit)for(let z=1;z{this.values[z][f.BQ.BTC]=F.BTC}),this.commonService.convertCurrency(g.dataValue,f.BQ.SATS,f.BQ.OTHER,this.currencyUnits[2],this.fiatConversion).pipe((0,T.Q)(this.unSubs[4])).subscribe({next:F=>{this.values[z][f.BQ.OTHER]=F.OTHER},error:F=>{this.conversionErrorMsg="Conversion Error: "+F}})}},error:n=>{this.conversionErrorMsg="Conversion Error: "+n}})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#a=C=()=>(this.\u0275fac=function(z){return new(z||x)(l.rXU(k.h),l.rXU(b.il))},this.\u0275cmp=l.VBU({type:x,selectors:[["rtl-currency-unit-converter"]],inputs:{values:"values"},standalone:!1,features:[l.OA$],decls:2,vars:1,consts:[["mat-stretch-tabs","false","mat-align-tabs","start"],[3,"label",4,"ngFor","ngForOf"],[3,"label"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","center start","class","cc-data-block",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","100","class","p-1 error-border mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center start",1,"cc-data-block"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"cc-data-title"],["matTooltipPosition","below","class","info-icon",3,"matTooltip",4,"ngIf"],["class","cc-data-value",4,"ngIf"],["matTooltipPosition","below",1,"info-icon",3,"matTooltip"],[1,"cc-data-value"],["fxLayout","row","fxFlex","100",1,"p-1","error-border","mt-1"],[1,"cc-data-block"]],template:function(z,g){1&z&&(l.j41(0,"mat-tab-group",0),l.DNE(1,H,4,4,"mat-tab",1),l.k0s()),2&z&&(l.R7$(),l.Y8G("ngForOf",g.currencyUnits))},dependencies:[B.Sq,B.bT,w.An,S.DJ,S.sA,S.UI,a.oV,P.mq,P.T8,B.QX],encapsulation:2}))}return C(),x})()},80396:(c1,j,t)=>{t.d(j,{f:()=>v});var e=t(51585),T=t(45383),f=t(4416),c=t(73664),l=t(98570),k=t(82571),b=t(95416),B=t(72200),w=t(20060),S=t(88834),a=t(25596),P=t(71997),N=t(52920),R=t(16038),V=t(38288),O=t(29157),A=t(89587);const G=n=>({"display-none":n});function H(n,z){if(1&n&&(c.j41(0,"div",20),c.nrm(1,"qr-code",21),c.k0s()),2&n){const g=c.XpG();c.Y8G("ngClass",c.eq3(3,G,g.screenSize===g.screenSizeEnum.XS||g.screenSize===g.screenSizeEnum.SM)),c.R7$(),c.Y8G("value",g.address)("size",g.qrWidth)}}function U(n,z){if(1&n&&(c.j41(0,"div",22),c.nrm(1,"qr-code",21),c.k0s()),2&n){const g=c.XpG();c.Y8G("ngClass",c.eq3(3,G,g.screenSize!==g.screenSizeEnum.XS&&g.screenSize!==g.screenSizeEnum.SM)),c.R7$(),c.Y8G("value",g.address)("size",g.qrWidth)}}function C(n,z){if(1&n&&(c.j41(0,"div",13)(1,"div",14)(2,"h4",15),c.EFF(3,"Address Type"),c.k0s(),c.j41(4,"span",23),c.EFF(5),c.k0s()()()),2&n){const g=c.XpG();c.R7$(5),c.JRh(g.addressType)}}function x(n,z){1&n&&c.nrm(0,"mat-divider",17)}let v=(()=>{var n;class z{constructor(F,I,y,W,Y){this.dialogRef=F,this.data=I,this.logger=y,this.commonService=W,this.snackBar=Y,this.faReceipt=T.Mf0,this.address="",this.addressType="",this.qrWidth=230,this.screenSize="",this.screenSizeEnum=f.f7}ngOnInit(){this.address=this.data.address,this.addressType=this.data.addressType,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onCopyAddress(F){this.snackBar.open("Generated address copied."),this.logger.info("Copied Text: "+F)}static#a=n=()=>(this.\u0275fac=function(I){return new(I||z)(c.rXU(e.CP),c.rXU(e.Vh),c.rXU(l.gP),c.rXU(k.h),c.rXU(b.UG))},this.\u0275cmp=c.VBU({type:z,selectors:[["rtl-on-chain-generated-address"]],standalone:!1,decls:25,vars:8,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35","fxLayoutAlign","center start","class","modal-qr-code-container padding-gap-large",3,"ngClass",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","2","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start","class","modal-qr-code-container padding-gap-large",3,"ngClass",4,"ngIf"],["fxLayout","row",4,"ngIf"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"overflow-wrap","foreground-secondary-text"],[1,"w-100","my-1"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-1"],["autoFocus","","mat-button","","color","primary","tabindex","1","type","submit","rtlClipboard","",3,"copied","payload"],["fxFlex","35","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],["errorCorrectionLevel","L",3,"value","size"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],[1,"foreground-secondary-text"]],template:function(I,y){1&I&&(c.j41(0,"div",0),c.DNE(1,H,2,5,"div",1),c.j41(2,"div",2)(3,"mat-card-header",3)(4,"div",4),c.nrm(5,"fa-icon",5),c.j41(6,"span",6),c.EFF(7),c.k0s()(),c.j41(8,"button",7),c.bIt("click",function(){return y.onClose()}),c.EFF(9,"X"),c.k0s()(),c.j41(10,"mat-card-content",8)(11,"div",9),c.DNE(12,U,2,5,"div",10)(13,C,6,1,"div",11)(14,x,1,0,"mat-divider",12),c.j41(15,"div",13)(16,"div",14)(17,"h4",15),c.EFF(18,"Address"),c.k0s(),c.j41(19,"span",16),c.EFF(20),c.k0s()()(),c.nrm(21,"mat-divider",17),c.j41(22,"div",18)(23,"button",19),c.bIt("copied",function(Y){return y.onCopyAddress(Y)}),c.EFF(24,"Copy Address"),c.k0s()()()()()()),2&I&&(c.R7$(),c.Y8G("ngIf",y.address),c.R7$(4),c.Y8G("icon",y.faReceipt),c.R7$(2),c.JRh(y.screenSize===y.screenSizeEnum.XS?"Address":"Generated Address"),c.R7$(5),c.Y8G("ngIf",y.address),c.R7$(),c.Y8G("ngIf",""!==y.addressType),c.R7$(),c.Y8G("ngIf",""!==y.addressType),c.R7$(6),c.JRh(y.address),c.R7$(3),c.Y8G("payload",y.address))},dependencies:[B.YU,B.bT,w.aY,S.$z,a.m2,a.MM,P.q,N.DJ,N.sA,N.UI,R.PW,V.Um,O.U,A.N],encapsulation:2}))}return n(),z})()},90614:(c1,j,t)=>{t.d(j,{Qpm:()=>p2,wB1:()=>G1});var G1={prefix:"far",iconName:"face-frown",icon:[512,512,[9785,"frown"],"f119","M464 256a208 208 0 1 0 -416 0 208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0 256 256 0 1 1 -512 0zM334.7 384.6C319.7 369 293.6 352 256 352s-63.7 17-78.7 32.6c-9.2 9.6-24.4 9.9-33.9 .7s-9.9-24.4-.7-33.9c22.1-23 60-47.4 113.3-47.4s91.2 24.4 113.3 47.4c9.2 9.6 8.9 24.8-.7 33.9s-24.8 8.9-33.9-.7zM144 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},p2={prefix:"far",iconName:"face-smile",icon:[512,512,[128578,"smile"],"f118","M464 256a208 208 0 1 0 -416 0 208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0 256 256 0 1 1 -512 0zm177.3 63.4C192.3 335 218.4 352 256 352s63.7-17 78.7-32.6c9.2-9.6 24.4-9.9 33.9-.7s9.9 24.4 .7 33.9c-22.1 23-60 47.4-113.3 47.4s-91.2-24.4-113.3-47.4c-9.2-9.6-8.9-24.8 .7-33.9s24.8-8.9 33.9 .7zM144 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]}}}]); \ No newline at end of file diff --git a/frontend/193.5eec0042e2c6f1a7.js b/frontend/193.5eec0042e2c6f1a7.js new file mode 100644 index 00000000..2beeb400 --- /dev/null +++ b/frontend/193.5eec0042e2c6f1a7.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[193],{5837(c1,j,t){t.d(j,{f:()=>U});var e=t(1413),T=t(6977),f=t(4416),c=t(9647),l=t(3664),B=t(2571),b=t(9640),P=t(2200),w=t(2629),S=t(2920),a=t(455),N=t(6850);function k(C,x){if(1&C&&(l.j41(0,"mat-icon",10),l.EFF(1,"info_outline"),l.k0s()),2&C){const v=l.XpG().$implicit;l.Y8G("matTooltip",v.tooltip)}}function R(C,x){if(1&C&&(l.j41(0,"span",11),l.EFF(1),l.nI1(2,"number"),l.k0s()),2&C){const v=l.XpG().$implicit;l.R7$(),l.SpI(" ",l.i5U(2,1,v.dataValue,"1.0-0")," ")}}function V(C,x){if(1&C&&(l.j41(0,"span",11),l.EFF(1),l.nI1(2,"number"),l.k0s()),2&C){const v=l.XpG().$implicit,n=l.XpG(2);l.R7$(),l.SpI(" ",l.i5U(2,1,v[n.currencyUnitEnum.BTC],n.currencyUnitFormats.BTC)," ")}}function O(C,x){if(1&C&&(l.j41(0,"span",11),l.EFF(1),l.nI1(2,"number"),l.k0s()),2&C){const v=l.XpG().$implicit,n=l.XpG(2);l.R7$(),l.SpI(" ",l.i5U(2,1,v[n.currencyUnitEnum.OTHER],n.currencyUnitFormats.OTHER)," ")}}function A(C,x){if(1&C&&(l.j41(0,"div",6)(1,"div",7),l.EFF(2),l.DNE(3,k,2,1,"mat-icon",8),l.k0s(),l.DNE(4,R,3,4,"span",9)(5,V,3,4,"span",9)(6,O,3,4,"span",9),l.k0s()),2&C){const v=x.$implicit,n=l.XpG().$implicit,z=l.XpG();l.R7$(2),l.SpI(" ",v.title," "),l.R7$(),l.Y8G("ngIf",v.tooltip),l.R7$(),l.Y8G("ngIf",n===z.currencyUnitEnum.SATS),l.R7$(),l.Y8G("ngIf",n===z.currencyUnitEnum.BTC),l.R7$(),l.Y8G("ngIf",z.fiatConversion&&n!==z.currencyUnitEnum.SATS&&n!==z.currencyUnitEnum.BTC&&""===z.conversionErrorMsg)}}function G(C,x){if(1&C&&(l.j41(0,"div",12)(1,"div",13),l.EFF(2),l.k0s()()),2&C){const v=l.XpG(2);l.R7$(2),l.JRh(v.conversionErrorMsg)}}function H(C,x){if(1&C&&(l.j41(0,"mat-tab",2)(1,"div",3),l.DNE(2,A,7,5,"div",4),l.k0s(),l.DNE(3,G,3,1,"div",5),l.k0s()),2&C){const v=x.$implicit,n=l.XpG();l.Y8G("label",l.mNQ(v)),l.R7$(2),l.Y8G("ngForOf",n.values),l.R7$(),l.Y8G("ngIf",n.fiatConversion&&v!==n.currencyUnitEnum.SATS&&v!==n.currencyUnitEnum.BTC&&""!==n.conversionErrorMsg)}}let U=(()=>{var C;class x{constructor(n,z){this.commonService=n,this.store=z,this.values=[],this.currencyUnitEnum=f.BQ,this.currencyUnitFormats=f.k,this.currencyUnits=[],this.fiatConversion=!1,this.conversionErrorMsg="",this.unSubs=[new e.B,new e.B,new e.B,new e.B,new e.B]}ngOnChanges(){this.currencyUnits.length>1&&this.values[0]&&this.values[0].dataValue>=0&&this.getCurrencyValues()}ngOnInit(){this.store.select(c._c).pipe((0,T.Q)(this.unSubs[0])).subscribe(n=>{this.fiatConversion=n.settings.fiatConversion,this.currencyUnits=n.settings.currencyUnits,this.fiatConversion||this.currencyUnits.splice(2,1),this.currencyUnits.length>1&&this.values[0]&&this.values[0].dataValue>=0&&this.getCurrencyValues()})}getCurrencyValues(){this.commonService.convertCurrency(this.values[0].dataValue,f.BQ.SATS,f.BQ.BTC,"",!0).pipe((0,T.Q)(this.unSubs[1])).subscribe(n=>{this.values[0][f.BQ.BTC]=n.BTC}),this.commonService.convertCurrency(this.values[0].dataValue,f.BQ.SATS,f.BQ.OTHER,this.currencyUnits[2],this.fiatConversion).pipe((0,T.Q)(this.unSubs[2])).subscribe({next:n=>{if(this.values[0][f.BQ.OTHER]=n.OTHER,n.unit&&""!==n.unit)for(let z=1;z{this.values[z][f.BQ.BTC]=F.BTC}),this.commonService.convertCurrency(g.dataValue,f.BQ.SATS,f.BQ.OTHER,this.currencyUnits[2],this.fiatConversion).pipe((0,T.Q)(this.unSubs[4])).subscribe({next:F=>{this.values[z][f.BQ.OTHER]=F.OTHER},error:F=>{this.conversionErrorMsg="Conversion Error: "+F}})}},error:n=>{this.conversionErrorMsg="Conversion Error: "+n}})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#a=C=()=>(this.\u0275fac=function(z){return new(z||x)(l.rXU(B.h),l.rXU(b.il))},this.\u0275cmp=l.VBU({type:x,selectors:[["rtl-currency-unit-converter"]],inputs:{values:"values"},standalone:!1,features:[l.OA$],decls:2,vars:1,consts:[["mat-stretch-tabs","false","mat-align-tabs","start"],[3,"label",4,"ngFor","ngForOf"],[3,"label"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","center start","class","cc-data-block",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","100","class","p-1 error-border mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center start",1,"cc-data-block"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"cc-data-title"],["matTooltipPosition","below","class","info-icon",3,"matTooltip",4,"ngIf"],["class","cc-data-value",4,"ngIf"],["matTooltipPosition","below",1,"info-icon",3,"matTooltip"],[1,"cc-data-value"],["fxLayout","row","fxFlex","100",1,"p-1","error-border","mt-1"],[1,"cc-data-block"]],template:function(z,g){1&z&&(l.j41(0,"mat-tab-group",0),l.DNE(1,H,4,4,"mat-tab",1),l.k0s()),2&z&&(l.R7$(),l.Y8G("ngForOf",g.currencyUnits))},dependencies:[P.Sq,P.bT,w.An,S.DJ,S.sA,S.UI,a.oV,N.mq,N.T8,P.QX],encapsulation:2}))}return C(),x})()},396(c1,j,t){t.d(j,{f:()=>v});var e=t(1585),T=t(5383),f=t(4416),c=t(3664),l=t(8570),B=t(2571),b=t(5416),P=t(2200),w=t(60),S=t(8834),a=t(5596),N=t(1997),k=t(2920),R=t(6038),V=t(8288),O=t(9157),A=t(9587);const G=n=>({"display-none":n});function H(n,z){if(1&n&&(c.j41(0,"div",20),c.nrm(1,"qr-code",21),c.k0s()),2&n){const g=c.XpG();c.Y8G("ngClass",c.eq3(3,G,g.screenSize===g.screenSizeEnum.XS||g.screenSize===g.screenSizeEnum.SM)),c.R7$(),c.Y8G("value",g.address)("size",g.qrWidth)}}function U(n,z){if(1&n&&(c.j41(0,"div",22),c.nrm(1,"qr-code",21),c.k0s()),2&n){const g=c.XpG();c.Y8G("ngClass",c.eq3(3,G,g.screenSize!==g.screenSizeEnum.XS&&g.screenSize!==g.screenSizeEnum.SM)),c.R7$(),c.Y8G("value",g.address)("size",g.qrWidth)}}function C(n,z){if(1&n&&(c.j41(0,"div",13)(1,"div",14)(2,"h4",15),c.EFF(3,"Address Type"),c.k0s(),c.j41(4,"span",23),c.EFF(5),c.k0s()()()),2&n){const g=c.XpG();c.R7$(5),c.JRh(g.addressType)}}function x(n,z){1&n&&c.nrm(0,"mat-divider",17)}let v=(()=>{var n;class z{constructor(F,I,y,W,Y){this.dialogRef=F,this.data=I,this.logger=y,this.commonService=W,this.snackBar=Y,this.faReceipt=T.Mf0,this.address="",this.addressType="",this.qrWidth=230,this.screenSize="",this.screenSizeEnum=f.f7}ngOnInit(){this.address=this.data.address,this.addressType=this.data.addressType,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onCopyAddress(F){this.snackBar.open("Generated address copied."),this.logger.info("Copied Text: "+F)}static#a=n=()=>(this.\u0275fac=function(I){return new(I||z)(c.rXU(e.CP),c.rXU(e.Vh),c.rXU(l.gP),c.rXU(B.h),c.rXU(b.UG))},this.\u0275cmp=c.VBU({type:z,selectors:[["rtl-on-chain-generated-address"]],standalone:!1,decls:25,vars:8,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35","fxLayoutAlign","center start","class","modal-qr-code-container padding-gap-large",3,"ngClass",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","2","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start","class","modal-qr-code-container padding-gap-large",3,"ngClass",4,"ngIf"],["fxLayout","row",4,"ngIf"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"overflow-wrap","foreground-secondary-text"],[1,"w-100","my-1"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-1"],["autoFocus","","mat-button","","color","primary","tabindex","1","type","submit","rtlClipboard","",3,"copied","payload"],["fxFlex","35","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],["errorCorrectionLevel","L",3,"value","size"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],[1,"foreground-secondary-text"]],template:function(I,y){1&I&&(c.j41(0,"div",0),c.DNE(1,H,2,5,"div",1),c.j41(2,"div",2)(3,"mat-card-header",3)(4,"div",4),c.nrm(5,"fa-icon",5),c.j41(6,"span",6),c.EFF(7),c.k0s()(),c.j41(8,"button",7),c.bIt("click",function(){return y.onClose()}),c.EFF(9,"X"),c.k0s()(),c.j41(10,"mat-card-content",8)(11,"div",9),c.DNE(12,U,2,5,"div",10)(13,C,6,1,"div",11)(14,x,1,0,"mat-divider",12),c.j41(15,"div",13)(16,"div",14)(17,"h4",15),c.EFF(18,"Address"),c.k0s(),c.j41(19,"span",16),c.EFF(20),c.k0s()()(),c.nrm(21,"mat-divider",17),c.j41(22,"div",18)(23,"button",19),c.bIt("copied",function(Y){return y.onCopyAddress(Y)}),c.EFF(24,"Copy Address"),c.k0s()()()()()()),2&I&&(c.R7$(),c.Y8G("ngIf",y.address),c.R7$(4),c.Y8G("icon",y.faReceipt),c.R7$(2),c.JRh(y.screenSize===y.screenSizeEnum.XS?"Address":"Generated Address"),c.R7$(5),c.Y8G("ngIf",y.address),c.R7$(),c.Y8G("ngIf",""!==y.addressType),c.R7$(),c.Y8G("ngIf",""!==y.addressType),c.R7$(6),c.JRh(y.address),c.R7$(3),c.Y8G("payload",y.address))},dependencies:[P.YU,P.bT,w.aY,S.$z,a.m2,a.MM,N.q,k.DJ,k.sA,k.UI,R.PW,V.Um,O.U,A.N],encapsulation:2}))}return n(),z})()},4655(c1,j,t){t.d(j,{m:()=>J});var e=t(3664),T=t(6949),f=t(4416),c=t(2615),l=t(8570),B=t(2200),b=t(9417),P=t(2598),w=t(5084),S=t(2629),a=t(3746),N=t(9588),k=t(2920),R=t(6183),V=t(3029),O=t(3),A=t(9945);let G=(()=>{var p;class _ extends O.xW{constructor(i){super(i)}format(i,o){return"MMM YYYY"===o?f.KR[i.getMonth()].name+", "+i.getFullYear():"YYYY"===o?i.getFullYear().toString():i.getDate()+"/"+f.KR[i.getMonth()].name+"/"+i.getFullYear()}static#a=p=()=>(this.\u0275fac=function(o){return new(o||_)(c.KVO(A.Ju,8))},this.\u0275prov=c.jDH({token:_,factory:_.\u0275fac}))}return p(),_})();const H={parse:{dateInput:"LL"},display:{dateInput:"MMM YYYY",monthYearLabel:"YYYY",dateA11yLabel:"LL",monthYearA11yLabel:"YYYY"}},U={parse:{dateInput:"LL"},display:{dateInput:"YYYY",monthYearLabel:"YYYY",dateA11yLabel:"LL",monthYearA11yLabel:"YYYY"}};let C=(()=>{var p;class _{static#a=p=()=>(this.\u0275fac=function(o){return new(o||_)},this.\u0275dir=e.FsC({type:_,selectors:[["","monthlyDate",""]],standalone:!1,features:[e.Jv_([{provide:A.MJ,useClass:G},{provide:A.de,useValue:H}])]}))}return p(),_})(),x=(()=>{var p;class _{static#a=p=()=>(this.\u0275fac=function(o){return new(o||_)},this.\u0275dir=e.FsC({type:_,selectors:[["","yearlyDate",""]],standalone:!1,features:[e.Jv_([{provide:A.MJ,useClass:G},{provide:A.de,useValue:U}])]}))}return p(),_})();var v=t(92),n=t(6114);const z=["monthlyDatepicker"],g=["yearlyDatepicker"],F=()=>({animationDirection:"forward"}),I=()=>({animationDirection:"backward"}),y=()=>({animationDirection:""});function W(p,_){if(1&p&&e.eu8(0,13),2&p){e.XpG();const m=e.sdS(19);e.Y8G("ngTemplateOutlet",m)("ngTemplateOutletContext",e.lJ4(2,F))}}function Y(p,_){if(1&p&&e.eu8(0,13),2&p){e.XpG();const m=e.sdS(19);e.Y8G("ngTemplateOutlet",m)("ngTemplateOutletContext",e.lJ4(2,I))}}function Z(p,_){if(1&p&&e.eu8(0,13),2&p){e.XpG();const m=e.sdS(19);e.Y8G("ngTemplateOutlet",m)("ngTemplateOutletContext",e.lJ4(2,y))}}function q(p,_){if(1&p&&(e.j41(0,"mat-option",22),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&p){const m=_.$implicit;e.Y8G("value",m),e.R7$(),e.SpI(" ",e.bMT(2,2,m)," ")}}function a1(p,_){if(1&p){const m=e.RV6();e.j41(0,"mat-form-field",23)(1,"mat-label"),e.EFF(2,"Monthly Date"),e.k0s(),e.j41(3,"input",24,1),e.mxI("ngModelChange",function(o){c.eBV(m);const d=e.XpG(2);return e.DH7(d.selectedValue,o)||(d.selectedValue=o),c.Njj(o)}),e.k0s(),e.nrm(5,"mat-datepicker-toggle",25),e.j41(6,"mat-datepicker",26,2),e.bIt("monthSelected",function(o){c.eBV(m);const d=e.XpG(2);return c.Njj(d.onMonthSelected(o))})("dateSelected",function(o){c.eBV(m);const d=e.XpG(2);return c.Njj(d.onMonthSelected(o))}),e.k0s()()}if(2&p){const m=e.sdS(7),i=e.XpG(2);e.R7$(3),e.Y8G("matDatepicker",m)("min",i.first)("max",i.last),e.R50("ngModel",i.selectedValue),e.R7$(2),e.Y8G("for",m),e.R7$(),e.Y8G("startAt",i.selectedValue)}}function Q(p,_){if(1&p){const m=e.RV6();e.j41(0,"mat-form-field",27)(1,"mat-label"),e.EFF(2,"Yearly Date"),e.k0s(),e.j41(3,"input",28,3),e.mxI("ngModelChange",function(o){c.eBV(m);const d=e.XpG(2);return e.DH7(d.selectedValue,o)||(d.selectedValue=o),c.Njj(o)}),e.k0s(),e.nrm(5,"mat-datepicker-toggle",25),e.j41(6,"mat-datepicker",29,4),e.bIt("yearSelected",function(o){c.eBV(m);const d=e.XpG(2);return c.Njj(d.onYearSelected(o))})("monthSelected",function(o){c.eBV(m);const d=e.XpG(2);return c.Njj(d.onYearSelected(o))})("dateSelected",function(o){c.eBV(m);const d=e.XpG(2);return c.Njj(d.onYearSelected(o))}),e.k0s()()}if(2&p){const m=e.sdS(7),i=e.XpG(2);e.R7$(3),e.Y8G("matDatepicker",m)("min",i.first)("max",i.last),e.R50("ngModel",i.selectedValue),e.R7$(2),e.Y8G("for",m),e.R7$(),e.Y8G("startAt",i.selectedValue)}}function e1(p,_){if(1&p){const m=e.RV6();e.j41(0,"div",14)(1,"div",15)(2,"mat-form-field",16)(3,"mat-label"),e.EFF(4,"Scroll Range"),e.k0s(),e.j41(5,"mat-select",17),e.mxI("ngModelChange",function(o){c.eBV(m);const d=e.XpG();return e.DH7(d.selScrollRange,o)||(d.selScrollRange=o),c.Njj(o)}),e.bIt("selectionChange",function(o){c.eBV(m);const d=e.XpG();return c.Njj(d.onRangeChanged(o))}),e.DNE(6,q,3,4,"mat-option",18),e.k0s()()(),e.j41(7,"div",19),e.DNE(8,a1,8,6,"mat-form-field",20)(9,Q,8,6,"mat-form-field",21),e.k0s()()}if(2&p){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(5),e.R50("ngModel",m.selScrollRange),e.R7$(),e.Y8G("ngForOf",m.scrollRanges),e.R7$(2),e.Y8G("ngIf",m.selScrollRange===m.scrollRanges[0]),e.R7$(),e.Y8G("ngIf",m.selScrollRange===m.scrollRanges[1])}}let J=(()=>{var p;class _{constructor(i){this.logger=i,this.scrollRanges=f.rs,this.selScrollRange=this.scrollRanges[0],this.today=new Date(Date.now()),this.first=new Date(2018,0,1,0,0,0),this.last=new Date(this.today.getFullYear(),this.today.getMonth(),this.today.getDate(),0,0,0),this.disablePrev=!1,this.disableNext=!0,this.animationDirection="",this.selectedValue=this.last,this.stepChanged=new e.bkB}onRangeChanged(i){this.selScrollRange=i.value,this.onStepChange("LAST")}onMonthSelected(i){this.selectedValue=i,this.onStepChange("SELECTED"),this.monthlyDatepicker.close()}onYearSelected(i){this.selectedValue=i,this.onStepChange("SELECTED"),this.yearlyDatepicker.close()}onStepChange(i){switch(this.logger.info(i),i){case"FIRST":this.animationDirection="backward",this.selectedValue!==this.first&&(this.selectedValue=this.first,this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange}));break;case"PREVIOUS":this.selectedValue=this.selScrollRange===f.rs[1]?new Date(this.selectedValue.getFullYear()-1,0,1,0,0,0):new Date(this.selectedValue.getFullYear(),this.selectedValue.getMonth()-1,1,0,0,0),this.animationDirection="backward",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;case"NEXT":this.selectedValue=this.selScrollRange===f.rs[1]?new Date(this.selectedValue.getFullYear()+1,0,1,0,0,0):new Date(this.selectedValue.getFullYear(),this.selectedValue.getMonth()+1,1,0,0,0),this.animationDirection="forward",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;case"LAST":this.animationDirection="forward",this.selectedValue=this.last,this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;default:this.animationDirection="",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange})}this.disablePrev=this.selScrollRange===f.rs[1]?this.selectedValue.getFullYear()<=this.first.getFullYear():this.selectedValue.getFullYear()<=this.first.getFullYear()&&this.selectedValue.getMonth()<=this.first.getMonth(),this.disableNext=this.selScrollRange===f.rs[1]?this.selectedValue.getFullYear()>=this.last.getFullYear():this.selectedValue.getFullYear()>=this.last.getFullYear()&&this.selectedValue.getMonth()>=this.last.getMonth(),this.logger.info(this.disablePrev),this.logger.info(this.disableNext),setTimeout(()=>{this.animationDirection=""},800)}onChartMouseUp(i){"monthlyDate"===i.srcElement.name?this.monthlyDatepicker.open():"yearlyDate"===i.srcElement.name&&this.yearlyDatepicker.open()}static#a=p=()=>(this.\u0275fac=function(o){return new(o||_)(e.rXU(l.gP))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-horizontal-scroller"]],viewQuery:function(o,d){if(1&o&&(e.GBs(z,5),e.GBs(g,5)),2&o){let E;e.mGM(E=e.lsd())&&(d.monthlyDatepicker=E.first),e.mGM(E=e.lsd())&&(d.yearlyDatepicker=E.first)}},hostBindings:function(o,d){1&o&&e.bIt("click",function(K){return d.onChartMouseUp(K)})},outputs:{stepChanged:"stepChanged"},standalone:!1,decls:20,vars:5,consts:[["controlsPanel",""],["monthlyDt","ngModel"],["monthlyDatepicker",""],["yearlyDt","ngModel"],["yearlyDatepicker",""],["fxLayout","row","fxLayoutAlign","space-between stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","20"],["mat-icon-button","","color","primary","type","button",1,"pr-4",3,"click"],["mat-icon-button","","color","primary","type","button",3,"click","disabled"],[3,"ngTemplateOutlet","ngTemplateOutletContext",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","20"],["mat-icon-button","","color","primary","type","button",1,"pr-4",3,"click","disabled"],["mat-icon-button","","color","primary","type","button",3,"click"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],["fxLayout","row","fxLayoutAlign","center center","fxFlex","58"],["fxFlex","50","fxLayoutAlign","center center","fxLayoutAlign.gt-xs","end center",1,"font-bold-700"],["subscriptSizing","dynamic","fxLayout","column","fxFlex","100","fxFlex.gt-sm","40","fxLayoutAlign","center end"],["name","selScrlRange",1,"font-bold-700",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","50","fxLayout","row","fxLayoutAlign","center center","fxLayoutAlign.gt-xs","start center"],["monthlyDate","","fxLayoutAlign","center center",4,"ngIf"],["yearlyDate","","fxLayoutAlign","center center",4,"ngIf"],[3,"value"],["monthlyDate","","fxLayoutAlign","center center"],["matInput","","name","monthlyDate","readonly","",3,"ngModelChange","matDatepicker","min","max","ngModel"],["matSuffix","",3,"for"],["startView","year",3,"monthSelected","dateSelected","startAt"],["yearlyDate","","fxLayoutAlign","center center"],["matInput","","name","yearlyDate","readonly","",3,"ngModelChange","matDatepicker","min","max","ngModel"],["startView","multi-year",3,"yearSelected","monthSelected","dateSelected","startAt"]],template:function(o,d){if(1&o){const E=e.RV6();e.j41(0,"div",5)(1,"div",6)(2,"button",7),e.bIt("click",function(){return c.eBV(E),c.Njj(d.onStepChange("FIRST"))}),e.j41(3,"mat-icon"),e.EFF(4,"skip_previous"),e.k0s()(),e.j41(5,"button",8),e.bIt("click",function(){return c.eBV(E),c.Njj(d.onStepChange("PREVIOUS"))}),e.j41(6,"mat-icon"),e.EFF(7,"navigate_before"),e.k0s()()(),e.DNE(8,W,1,3,"ng-container",9)(9,Y,1,3,"ng-container",9)(10,Z,1,3,"ng-container",9),e.j41(11,"div",10)(12,"button",11),e.bIt("click",function(){return c.eBV(E),c.Njj(d.onStepChange("NEXT"))}),e.j41(13,"mat-icon"),e.EFF(14,"navigate_next"),e.k0s()(),e.j41(15,"button",12),e.bIt("click",function(){return c.eBV(E),c.Njj(d.onStepChange("LAST"))}),e.j41(16,"mat-icon"),e.EFF(17,"skip_next"),e.k0s()()()(),e.DNE(18,e1,10,5,"ng-template",null,0,e.C5r)}2&o&&(e.R7$(5),e.Y8G("disabled",d.disablePrev),e.R7$(3),e.Y8G("ngIf","forward"===d.animationDirection),e.R7$(),e.Y8G("ngIf","backward"===d.animationDirection),e.R7$(),e.Y8G("ngIf",""===d.animationDirection),e.R7$(2),e.Y8G("disabled",d.disableNext))},dependencies:[B.Sq,B.bT,B.T3,b.me,b.BC,b.vS,P.iY,w.Vh,w.bZ,w.bU,S.An,a.fg,N.rl,N.nJ,N.yw,k.DJ,k.sA,k.UI,R.VO,V.wT,C,x,v.z,n.V,B.PV],encapsulation:2,data:{animation:[T.k]}}))}return p(),_})()},5085(c1,j,t){t.d(j,{T:()=>K});var e=t(6695),T=t(2042),f=t(1676),c=t(6183),l=t(4416),B=t(1771),b=t(1413),P=t(6977),w=t(9647),S=t(2615),a=t(3664),N=t(2571),k=t(9640),R=t(2200),V=t(2929),O=t(9417),A=t(8834),G=t(3746),H=t(9588),U=t(2920),C=t(6038),x=t(3029),v=t(497);const n=()=>["all"],z=()=>["no_transaction"],g=s=>({"display-none":s});function F(s,L){if(1&s&&(a.j41(0,"mat-option",30),a.EFF(1),a.k0s()),2&s){const M=L.$implicit,r=a.XpG();a.Y8G("value",M),a.R7$(),a.JRh(r.getLabel(M))}}function I(s,L){1&s&&(a.j41(0,"th",31),a.EFF(1,"Date"),a.k0s())}function y(s,L){if(1&s&&(a.j41(0,"td",32),a.EFF(1),a.nI1(2,"date"),a.k0s()),2&s){const M=L.$implicit,r=a.XpG();a.R7$(),a.JRh(a.i5U(2,1,null==M?null:M.date,r.dataRange===r.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy"))}}function W(s,L){1&s&&(a.j41(0,"th",33),a.EFF(1,"Amount Paid (Sats)"),a.k0s())}function Y(s,L){if(1&s&&(a.j41(0,"td",32)(1,"span",34),a.EFF(2),a.nI1(3,"number"),a.k0s()()),2&s){const M=L.$implicit;a.R7$(2),a.JRh(a.i5U(3,1,null==M?null:M.amount_paid,"1.0-2"))}}function Z(s,L){1&s&&(a.j41(0,"th",33),a.EFF(1,"# Payments"),a.k0s())}function q(s,L){if(1&s&&(a.j41(0,"td",32)(1,"span",34),a.EFF(2),a.nI1(3,"number"),a.k0s()()),2&s){const M=L.$implicit;a.R7$(2),a.JRh(a.bMT(3,1,null==M?null:M.num_payments))}}function a1(s,L){1&s&&(a.j41(0,"th",33),a.EFF(1,"Amount Received (Sats)"),a.k0s())}function Q(s,L){if(1&s&&(a.j41(0,"td",32)(1,"span",34),a.EFF(2),a.nI1(3,"number"),a.k0s()()),2&s){const M=L.$implicit;a.R7$(2),a.JRh(a.i5U(3,1,null==M?null:M.amount_received,"1.0-2"))}}function e1(s,L){1&s&&(a.j41(0,"th",33),a.EFF(1,"# Invoices"),a.k0s())}function J(s,L){if(1&s&&(a.j41(0,"td",32)(1,"span",34),a.EFF(2),a.nI1(3,"number"),a.k0s()()),2&s){const M=L.$implicit;a.R7$(2),a.JRh(a.bMT(3,1,null==M?null:M.num_invoices))}}function p(s,L){if(1&s){const M=a.RV6();a.j41(0,"th",35)(1,"div",36)(2,"mat-select",37),a.nrm(3,"mat-select-trigger"),a.j41(4,"mat-option",38),a.bIt("click",function(){S.eBV(M);const h=a.XpG();return S.Njj(h.onDownloadCSV())}),a.EFF(5,"Download CSV"),a.k0s()()()()}}function _(s,L){if(1&s){const M=a.RV6();a.j41(0,"td",39)(1,"button",40),a.bIt("click",function(){const h=S.eBV(M).$implicit,u=a.XpG();return S.Njj(u.onTransactionClick(h))}),a.EFF(2,"View Info"),a.k0s()()}}function m(s,L){1&s&&(a.j41(0,"p"),a.EFF(1,"No transaction available."),a.k0s())}function i(s,L){if(1&s&&(a.j41(0,"td",41),a.DNE(1,m,2,0,"p",42),a.k0s()),2&s){const M=a.XpG();a.R7$(),a.Y8G("ngIf",!(null!=M.transactions&&M.transactions.data)||(null==M.transactions||null==M.transactions.data?null:M.transactions.data.length)<1)}}function o(s,L){if(1&s&&a.nrm(0,"tr",43),2&s){const M=a.XpG();a.Y8G("ngClass",a.eq3(1,g,(null==M.transactions?null:M.transactions.data)&&(null==M.transactions||null==M.transactions.data?null:M.transactions.data.length)>0))}}function d(s,L){1&s&&a.nrm(0,"tr",44)}function E(s,L){1&s&&a.nrm(0,"tr",45)}let K=(()=>{var s;class L{constructor(r,h,u,D){this.commonService=r,this.store=h,this.datePipe=u,this.camelCaseWithReplace=D,this.dataRange=l.rs[0],this.dataList=[],this.selFilter="",this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.tableSetting={tableId:"transactions",recordsPerPage:l.md,sortBy:"date",sortOrder:l.oi.DESCENDING},this.nodePageDefs=l._1,this.selFilterBy="all",this.timezoneOffset=60*new Date(Date.now()).getTimezoneOffset(),this.scrollRanges=l.rs,this.transactions=new f.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new b.B,new b.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(r){r.dataList&&!r.dataList.firstChange&&(this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.loadTransactionsTable(this.dataList)),r.selFilter&&!r.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(w._c).pipe((0,P.Q)(this.unSubs[0])).subscribe(r=>{this.nodePageDefs="CLN"===r.lnImplementation?l.Jd:"ECL"===r.lnImplementation?l.WW:l._1}),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.dataList&&this.dataList.length>0&&this.loadTransactionsTable(this.dataList)}ngAfterViewInit(){setTimeout(()=>{this.setTableWidgets()},0)}onTransactionClick(r){const h=[[{key:"date",value:this.datePipe.transform(r.date,this.dataRange===l.rs[1]?"MMM/yyyy":"dd/MMM/yyyy"),title:"Date",width:100,type:l.UN.DATE}],[{key:"amount_paid",value:Math.round(r.amount_paid),title:"Amount Paid (Sats)",width:50,type:l.UN.NUMBER},{key:"num_payments",value:r.num_payments,title:"# Payments",width:50,type:l.UN.NUMBER}],[{key:"amount_received",value:Math.round(r.amount_received),title:"Amount Received (Sats)",width:50,type:l.UN.NUMBER},{key:"num_invoices",value:r.num_invoices,title:"# Invoices",width:50,type:l.UN.NUMBER}]];this.store.dispatch((0,B.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Transaction Summary",message:h}}}))}applyFilter(){this.transactions&&(this.transactions.filter=this.selFilter.trim().toLowerCase())}getLabel(r){const h=this.nodePageDefs.reports[this.tableSetting.tableId].allowedColumns.find(u=>u.column===r);return h?h.label?h.label:this.camelCaseWithReplace.transform(h.column,"_"):this.commonService.titleCase(r)}setFilterPredicate(){this.transactions.filterPredicate=(r,h)=>{let u="";switch(this.selFilterBy){case"all":u=(r.date?(this.datePipe.transform(r.date,"dd/MMM")+"/"+r.date.getFullYear()).toLowerCase():"")+JSON.stringify(r).toLowerCase();break;case"date":u=this.datePipe.transform(new Date(r[this.selFilterBy]||0),this.dataRange===this.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy")?.toLowerCase()||"";break;default:u=typeof r[this.selFilterBy]>"u"?"":"string"==typeof r[this.selFilterBy]?r[this.selFilterBy].toLowerCase():"boolean"==typeof r[this.selFilterBy]?r[this.selFilterBy]?"yes":"no":r[this.selFilterBy].toString()}return u.includes(h)}}loadTransactionsTable(r){this.transactions=new f.I6(r?[...r]:[]),this.setTableWidgets()}setTableWidgets(){this.transactions&&this.transactions.data&&this.transactions.data.length>0&&(this.transactions.sort=this.sort,this.transactions.sortingDataAccessor=(r,h)=>r[h]&&isNaN(r[h])?r[h].toLocaleLowerCase():r[h]?+r[h]:null,this.transactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter())}onDownloadCSV(){this.transactions.data&&this.transactions.data.length>0&&this.commonService.downloadFile(this.dataList,"Transactions-report-"+this.dataRange.toLowerCase())}ngOnDestroy(){this.unSubs.forEach(r=>{r.next(),r.complete()})}static#a=s=()=>(this.\u0275fac=function(h){return new(h||L)(a.rXU(N.h),a.rXU(k.il),a.rXU(R.vh),a.rXU(V.VD))},this.\u0275cmp=a.VBU({type:L,selectors:[["rtl-transactions-report-table"]],viewQuery:function(h,u){if(1&h&&(a.GBs(T.B4,5),a.GBs(e.iy,5)),2&h){let D;a.mGM(D=a.lsd())&&(u.sort=D.first),a.mGM(D=a.lsd())&&(u.paginator=D.first)}},inputs:{dataRange:"dataRange",dataList:"dataList",selFilter:"selFilter",displayedColumns:"displayedColumns",tableSetting:"tableSetting"},standalone:!1,features:[a.Jv_([{provide:c.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:e.xX,useValue:(0,l.on)("Transactions")}]),a.OA$],decls:43,vars:14,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","amount_paid"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","num_payments"],["matColumnDef","amount_received"],["matColumnDef","num_invoices"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(h,u){if(1&h){const D=a.RV6();a.j41(0,"div",1)(1,"div",2)(2,"div",3),a.nrm(3,"div",4),a.j41(4,"div",5)(5,"mat-form-field",6)(6,"mat-label"),a.EFF(7,"Filter By"),a.k0s(),a.j41(8,"mat-select",7),a.mxI("ngModelChange",function($){return S.eBV(D),a.DH7(u.selFilterBy,$)||(u.selFilterBy=$),S.Njj($)}),a.bIt("selectionChange",function(){return S.eBV(D),u.selFilter="",S.Njj(u.applyFilter())}),a.j41(9,"perfect-scrollbar"),a.DNE(10,F,2,2,"mat-option",8),a.k0s()()(),a.j41(11,"mat-form-field",6)(12,"mat-label"),a.EFF(13,"Filter"),a.k0s(),a.j41(14,"input",9),a.mxI("ngModelChange",function($){return S.eBV(D),a.DH7(u.selFilter,$)||(u.selFilter=$),S.Njj($)}),a.bIt("input",function(){return S.eBV(D),S.Njj(u.applyFilter())})("keyup",function(){return S.eBV(D),S.Njj(u.applyFilter())}),a.k0s()()()(),a.j41(15,"div",10)(16,"div",11)(17,"table",12,0),a.qex(19,13),a.DNE(20,I,2,0,"th",14)(21,y,3,4,"td",15),a.bVm(),a.qex(22,16),a.DNE(23,W,2,0,"th",17)(24,Y,4,4,"td",15),a.bVm(),a.qex(25,18),a.DNE(26,Z,2,0,"th",17)(27,q,4,3,"td",15),a.bVm(),a.qex(28,19),a.DNE(29,a1,2,0,"th",17)(30,Q,4,4,"td",15),a.bVm(),a.qex(31,20),a.DNE(32,e1,2,0,"th",17)(33,J,4,3,"td",15),a.bVm(),a.qex(34,21),a.DNE(35,p,6,0,"th",22)(36,_,3,0,"td",23),a.bVm(),a.qex(37,24),a.DNE(38,i,2,1,"td",25),a.bVm(),a.DNE(39,o,1,3,"tr",26)(40,d,1,0,"tr",27)(41,E,1,0,"tr",28),a.k0s(),a.nrm(42,"mat-paginator",29),a.k0s()()()()}2&h&&(a.R7$(8),a.R50("ngModel",u.selFilterBy),a.R7$(2),a.Y8G("ngForOf",a.lJ4(12,n).concat(u.displayedColumns.slice(0,-1))),a.R7$(4),a.R50("ngModel",u.selFilter),a.R7$(3),a.Y8G("matSortActive",u.tableSetting.sortBy)("matSortDirection",u.tableSetting.sortOrder)("dataSource",u.transactions),a.R7$(22),a.Y8G("matFooterRowDef",a.lJ4(13,z)),a.R7$(),a.Y8G("matHeaderRowDef",u.displayedColumns),a.R7$(),a.Y8G("matRowDefColumns",u.displayedColumns),a.R7$(),a.Y8G("pageSize",u.pageSize)("pageSizeOptions",u.pageSizeOptions)("showFirstLastButtons",u.screenSize!==u.screenSizeEnum.XS))},dependencies:[R.YU,R.Sq,R.bT,O.me,O.BC,O.vS,A.$z,G.fg,H.rl,H.nJ,U.DJ,U.sA,U.UI,C.PW,c.VO,c.$2,x.wT,T.B4,T.aE,f.Zl,f.tL,f.ji,f.cC,f.YV,f.iL,f.Zq,f.xW,f.KS,f.$R,f.Qo,f.YZ,f.NB,f.iF,e.iy,v.ZF,v.Ld,R.QX,R.vh],encapsulation:2}))}return s(),L})()},614(c1,j,t){t.d(j,{Qpm:()=>u2,wB1:()=>G1});var G1={prefix:"far",iconName:"face-frown",icon:[512,512,[9785,"frown"],"f119","M464 256a208 208 0 1 0 -416 0 208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0 256 256 0 1 1 -512 0zM334.7 384.6C319.7 369 293.6 352 256 352s-63.7 17-78.7 32.6c-9.2 9.6-24.4 9.9-33.9 .7s-9.9-24.4-.7-33.9c22.1-23 60-47.4 113.3-47.4s91.2 24.4 113.3 47.4c9.2 9.6 8.9 24.8-.7 33.9s-24.8 8.9-33.9-.7zM144 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},u2={prefix:"far",iconName:"face-smile",icon:[512,512,[128578,"smile"],"f118","M464 256a208 208 0 1 0 -416 0 208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0 256 256 0 1 1 -512 0zm177.3 63.4C192.3 335 218.4 352 256 352s63.7-17 78.7-32.6c9.2-9.6 24.4-9.9 33.9-.7s9.9 24.4 .7 33.9c-22.1 23-60 47.4-113.3 47.4s-91.2-24.4-113.3-47.4c-9.2-9.6-8.9-24.8 .7-33.9s24.8-8.9 33.9 .7zM144 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]}}}]); \ No newline at end of file diff --git a/frontend/3rdpartylicenses.txt b/frontend/3rdpartylicenses.txt index 1c7a5403..d4e492ea 100644 --- a/frontend/3rdpartylicenses.txt +++ b/frontend/3rdpartylicenses.txt @@ -846,140 +846,12 @@ https://github.com/cartant/rxjs-etc by Nicholas Jamieson, MIT licensed. See the file header for details. -@otplib/core -MIT -The MIT License (MIT) - -Copyright (c) 2014 Gerald Yeo - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -@otplib/plugin-crypto -MIT -The MIT License (MIT) - -Copyright (c) 2014 Gerald Yeo - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -@otplib/plugin-thirty-two -MIT -The MIT License (MIT) - -Copyright (c) 2014 Gerald Yeo - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -@otplib/preset-default -MIT -The MIT License (MIT) - -Copyright (c) 2014 Gerald Yeo - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - @swimlane/ngx-charts MIT angular-user-idle MIT -asn1.js -MIT - -available-typed-arrays -MIT -MIT License - -Copyright (c) 2020 Inspect JS - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - base64-js MIT The MIT License (MIT) @@ -1005,149 +877,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -bn.js -MIT -Copyright Fedor Indutny, 2015. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -brorand -MIT - -browserify-aes -MIT -The MIT License (MIT) - -Copyright (c) 2014-2017 browserify-aes contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -browserify-cipher -MIT -The MIT License (MIT) - -Copyright (c) 2014-2017 Calvin Metcalf & contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -browserify-des -MIT -The MIT License (MIT) - -Copyright (c) 2014-2017 Calvin Metcalf, Fedor Indutny & contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -browserify-rsa -MIT -The MIT License (MIT) - -Copyright (c) 2014-2016 Calvin Metcalf & contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -browserify-sign -ISC -Copyright (c) 2014-2015 Calvin Metcalf and browserify-sign contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - buffer MIT The MIT License (MIT) @@ -1173,260 +902,10 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -buffer-xor -MIT -The MIT License (MIT) - -Copyright (c) 2015 Daniel Cousens - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -call-bind -MIT -MIT License - -Copyright (c) 2020 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -call-bind-apply-helpers -MIT -MIT License - -Copyright (c) 2024 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -call-bound -MIT -MIT License - -Copyright (c) 2024 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -cipher-base -MIT -The MIT License (MIT) - -Copyright (c) 2017 crypto-browserify contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - convert-hex convert-string -core-util-is -MIT -Copyright Node.js contributors. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. - - -create-ecdh -MIT -The MIT License (MIT) - -Copyright (c) 2014-2017 createECDH contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -create-hash -MIT -The MIT License (MIT) - -Copyright (c) 2017 crypto-browserify contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -create-hmac -MIT -The MIT License (MIT) - -Copyright (c) 2017 crypto-browserify contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -crypto-browserify -MIT -The MIT License - -Copyright (c) 2013 Dominic Tarr - -Permission is hereby granted, free of charge, -to any person obtaining a copy of this software and -associated documentation files (the "Software"), to -deal in the Software without restriction, including -without limitation the rights to use, copy, modify, -merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom -the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice -shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR -ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - d3-array ISC Copyright 2010-2023 Mike Bostock @@ -1680,57 +1159,6 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -define-data-property -MIT -MIT License - -Copyright (c) 2023 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -des.js -MIT - -diffie-hellman -MIT -Copyright (c) 2017 Calvin Metcalf - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - dijkstrajs MIT ``` @@ -1754,416 +1182,6 @@ THE SOFTWARE. ``` -dunder-proto -MIT -MIT License - -Copyright (c) 2024 ECMAScript Shims - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -elliptic -MIT - -es-define-property -MIT -MIT License - -Copyright (c) 2024 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -es-errors -MIT -MIT License - -Copyright (c) 2024 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -es-object-atoms -MIT -MIT License - -Copyright (c) 2024 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -events -MIT -MIT - -Copyright Joyent, Inc. and other Node contributors. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. - - -evp_bytestokey -MIT -The MIT License (MIT) - -Copyright (c) 2017 crypto-browserify contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -for-each -MIT -The MIT License (MIT) - -Copyright (c) 2012 Raynos. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - - -function-bind -MIT -Copyright (c) 2013 Raynos. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - - -get-intrinsic -MIT -MIT License - -Copyright (c) 2020 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -get-proto -MIT -MIT License - -Copyright (c) 2025 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -gopd -MIT -MIT License - -Copyright (c) 2022 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -has-property-descriptors -MIT -MIT License - -Copyright (c) 2022 Inspect JS - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -has-symbols -MIT -MIT License - -Copyright (c) 2016 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -has-tostringtag -MIT -MIT License - -Copyright (c) 2021 Inspect JS - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -hash-base -MIT -The MIT License (MIT) - -Copyright (c) 2016 Kirill Fomichev - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -hash.js -MIT - -hasown -MIT -MIT License - -Copyright (c) Jordan Harband and contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -hmac-drbg -MIT - ieee754 BSD-3-Clause Copyright 2008 Fair Oaks Labs, Inc. @@ -2179,26 +1197,6 @@ Redistribution and use in source and binary forms, with or without modification, THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -inherits -ISC -The ISC License - -Copyright (c) Isaac Z. Schlueter - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - - internmap ISC Copyright 2021 Mike Bostock @@ -2216,61 +1214,6 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -is-callable -MIT -The MIT License (MIT) - -Copyright (c) 2015 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - - -is-typed-array -MIT -The MIT License (MIT) - -Copyright (c) 2015 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - - -isarray -MIT - material-icons Apache-2.0 @@ -2477,78 +1420,6 @@ Apache-2.0 limitations under the License. -math-intrinsics -MIT -MIT License - -Copyright (c) 2024 ECMAScript Shims - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -md5.js -MIT -The MIT License (MIT) - -Copyright (c) 2016 Kirill Fomichev - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -miller-rabin -MIT - -minimalistic-assert -ISC -Copyright 2015 Calvin Metcalf - -Permission to use, copy, modify, and/or distribute this software for any purpose -with or without fee is hereby granted, provided that the above copyright notice -and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - -minimalistic-crypto-utils -MIT - ng-qrcode MIT MIT License @@ -2577,73 +1448,6 @@ SOFTWARE. ngx-perfect-scrollbar-next MIT -otplib -MIT -The MIT License (MIT) - -Copyright (c) 2014 Gerald Yeo - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -parse-asn1 -ISC -Copyright (c) 2017, crypto-browserify contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - -pbkdf2 -MIT -The MIT License (MIT) - -Copyright (c) 2014 Daniel Cousens - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - pdfmake MIT The MIT License (MIT) @@ -2694,31 +1498,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -possible-typed-array-names -MIT -MIT License - -Copyright (c) 2024 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - process MIT (The MIT License) @@ -2745,52 +1524,6 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -process-nextick-args -MIT -# Copyright (c) 2015 Calvin Metcalf - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -**THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE.** - - -public-encrypt -MIT -Copyright (c) 2017 Calvin Metcalf - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - qrcode MIT The MIT License (MIT) @@ -2805,107 +1538,6 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI -randombytes -MIT -MIT License - -Copyright (c) 2017 crypto-browserify - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -randomfill -MIT -MIT License - -Copyright (c) 2017 crypto-browserify - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -readable-stream -MIT -Node.js is licensed for use as follows: - -""" -Copyright Node.js contributors. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. -""" - -This license applies to parts of Node.js originating from the -https://github.com/joyent/node repository: - -""" -Copyright Joyent, Inc. and other Node contributors. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. -""" - - resize-observer-polyfill MIT The MIT License (MIT) @@ -2931,31 +1563,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -ripemd160 -MIT -The MIT License (MIT) - -Copyright (c) 2016 crypto-browserify - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - roboto-fontface Apache-2.0 Apache License @@ -3367,233 +1974,8 @@ Apache-2.0 -safe-buffer -MIT -The MIT License (MIT) - -Copyright (c) Feross Aboukhadijeh - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -set-function-length -MIT -MIT License - -Copyright (c) Jordan Harband and contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -sha.js -(MIT AND BSD-3-Clause) -Copyright (c) 2013-2018 sha.js contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -Copyright (c) 1998 - 2009, Paul Johnston & Contributors -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, this -list of conditions and the following disclaimer in the documentation and/or -other materials provided with the distribution. - -Neither the name of the author nor the names of its contributors may be used to -endorse or promote products derived from this software without specific prior -written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - - sha256 -stream-browserify -MIT -MIT License - -Copyright (c) James Halliday - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -string_decoder -MIT -Node.js is licensed for use as follows: - -""" -Copyright Node.js contributors. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. -""" - -This license applies to parts of Node.js originating from the -https://github.com/joyent/node repository: - -""" -Copyright Joyent, Inc. and other Node contributors. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. -""" - - - -thirty-two -Copyright (c) 2011, Chris Umbel - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -to-buffer -MIT -The MIT License (MIT) - -Copyright (c) 2016 Mathias Buus - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - tslib 0BSD Copyright (c) Microsoft Corporation. @@ -3609,107 +1991,6 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -typed-array-buffer -MIT -MIT License - -Copyright (c) 2023 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -util-deprecate -MIT -(The MIT License) - -Copyright (c) 2014 Nathan Rajlich - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - - -vm-browserify -MIT -MIT License - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -which-typed-array -MIT -The MIT License (MIT) - -Copyright (c) 2015 Jordan Harband - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - - zone.js MIT The MIT License diff --git a/frontend/853.a5bf31a92e24292f.js b/frontend/853.a5bf31a92e24292f.js deleted file mode 100644 index eebaccef..00000000 --- a/frontend/853.a5bf31a92e24292f.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[853],{29293:Li=>{function zi(Ee,Hn,Pt,Pn,A,q,D){try{var g=Ee[q](D),t=g.value}catch(B){return void Pt(B)}g.done?Hn(t):Promise.resolve(t).then(Pn,A)}Li.exports=function Ve(Ee){return function(){var Hn=this,Pt=arguments;return new Promise(function(Pn,A){var q=Ee.apply(Hn,Pt);function D(t){zi(q,Pn,A,D,g,"next",t)}function g(t){zi(q,Pn,A,D,g,"throw",t)}D(void 0)})}},Li.exports.__esModule=!0,Li.exports.default=Li.exports},77235:function(Li){var zi={"Roboto-Italic.ttf":"AAEAAAARAQAABAAQR0RFRqcXo6wAAdsEAAACWEdQT1O/fgaAAAHdXAAAiQZHU1VCzONMagACZmQAABXoT1MvMpeDsSYAAAGYAAAAYGNtYXAi3dtfAAAWsAAABqZjdnQgO/gmfQAAL7AAAAD+ZnBnbagFhDIAAB1YAAAPhmdhc3AACAAZAAHa+AAAAAxnbHlmo3jwVAAAOxAAAZwKaGVhZAz7DRcAAAEcAAAANmhoZWEMnBKpAAABVAAAACRobXR4bszfxAAAAfgAABS4bG9jYVNq69EAADCwAAAKXm1heHAI3hDGAAABeAAAACBuYW1lVq+GTwAB1xwAAAO8cG9zdP9hAGQAAdrYAAAAIHByZXB5WM7TAAAs4AAAAs4AAQAAAAMDltsABCNfDzz1ABsIAAAAAADE8BEuAAAAAOVdrQ36N/3VCUMIcwACAAkAAgAAAAAAAAABAAAHbP4MAAAJA/o3/mwJQwgAAbMAAAAAAAAAAAAAAAAFLgABAAAFLgCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEYwGQAAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/1AAIFsAAAAgAAAAAEdPT0cAAQAA//0GAP4AAGYHmgIAIAABnwAAAAAEOgWwAAAAIAADA5YAZAAAAAAAAAAAAfcAAAH3AAACAABEAnwAyQTHAFIEXABJBa8AugTUADkBWwCsAqgAbQK0/5ADWABrBGcATAGH/48CJQAaAgwANAM0/5AEXABqBFwA+gRcABgEXAA1BFwABQRcAHIEXABtBFwAnQRcAEAEXACUAesAKQGu/5sD8gBCBEIAcAQPADsDqwClBvgAQQUQ/68E1gA7BQ0AcAUYADsEaQA7BEoAOwVJAHQFiQA7AhwASQRIAAcE3gA7BC4AOwbGADsFiQA7BVcAcwTlADsFVwBrBMgAOwScACkEoQCpBQgAYwTxAKUG4gDDBN3/1ASpAKgEpv/sAg8AAAMwAMACD/97Az4ATwOA/4ECZgDQBDkAMQRcAB8EEABGBGAARwQdAEUCswB1BFwAAwRGACAB4wAvAdv/EwPvACAB4wAvBs4AHgRJACAEbQBGBFz/1wRpAEYCoQAgBAEALgKKAEMERwBbA8IAbgXVAIAD2v/FA6z/qgPa/+4CoAA3AeUAIgKg/40FRwBpAeX/8QQ/AFAEg//zBYkAEgQUAEMB3f/4BML/2gM/ANoGGQBeA3kAwwOuAFYETACBBhoAXQOPAPgC5gDoBCYAJgLiAF0C4gBvAm8A1QRm/+YDzAB4AgcApQHt/8gC4gDgA4gAvwOtABEFuQC6Bg8AtQYTAJ4Drf/RB0H/gwQkACgFVwAgBJYAOQSdAB8GjgATBI0AXARvAEQEZgA6BHn/4ASjAEYFcAA2AewALwRSAC4ELgAjAhkAJAVgADUEZgAlB2YAVQcMAEcB7QA0BV0AUgKl/0cFVQBmBHAAQwVlAGMEzQBbAfX/CQQYAD8DpwEYA3MBKAOZAPgDUQEHAeMBDgKZAQECGv+uA6kA3gLlAMMCSP/pAAD9agAA/eoAAP0LAAD99AAA/NsAAPy6Af4BIwPtAPQCEQClBFEARAV5/7IFSABnBRf/xARvAAwFiQBEBG//2wWPAFYFXgCFBSkACgRjAEgEmf/xA+QAhQRmAEUEMAApBAUAigRmACUEawB1AoQAhARN/7gDzgBABKAAYARm/90ELQBKBGUASAQMAIcEPABoBXgAQAVvAE4GZABnBH4AUgQiAGcGGABoBdIAogU8AHMIUP/NCGMARAZRALQFiABCBO4ANgXW/4wHC/+rBJwAJQWJAEQFf//LBOEAlAX+AFsFrQBBBVAAywdNAEIHhABCBeMAigbAAEQE3gA2BTwAdgb6AEkE8f/pBEsARwRwADEDQgAuBK//jQXy/6cD8QAgBHsAMAQyADAEfP/IBcEAMQR6ADAEewAwA7sAYAWhAEkEmgAwBDkAeQZHADAGbAAlBNEAVgYQADEENwAxBC0AMgZWADEEQv+/BEYAIAQtAE4Glf/DBq8AMARwACAEewAwBtMAbgX9AE8ENgAvBvUASgXLAC0Erv+6BCb/ogbWAFsF3gBPBp4AJgW1ACoIwABJB5UALwQE/80Dvf/JBUgAZwRpAEME5ACtA+UAhQVIAGcEZgBDBssAdAX1AFIG0wBuBf0ATwUKAGkEJwBMBNgAQAAA/OcAAP0KAAD+FgAA/jsAAPo3AAD6TgXlAEQE0QAwBDYALwT0ADsEZ//XBEIANQN2ACUEwABEA+cAJQdx/6sGOv+nBXkARASeADAE4wA2BFwALgZaALwFWgB2BdsAOwS+ADAHkwA7BYgAJQf8AEIGvwAlBcEAawSvAFwE+//UBBT/xQb2AKwFNABXBZoAywR9AHkFRgDKBEkAlAVGABwGAACIBJoABATjADYEOQAuBdr/ywTT/8gFhwBEBGYAJQXtADsE0AAwByEAOwYYADEFXQBSBIQAPASE//0Env/5A5n/6QUQ/9QEKf/FBNEALgZiADEGsABIBiYArQUEAGgEKQCwA+kAoAeG/+AGRP/aB74APAZvACME0QBlA/4ATQWCAJsE+gB9BTwAaAXe/8sE1//IBQMAIgMJAPMD/wAAB/QAAAP/AAAH9AAAAq4AAAIEAAABXAAABGYAAAIpAAABnwAAAQIAAADVAAAAAAAAAi0AGgItABoFIgCmBhkAmAOK/14BjgCwAY4AiQGM/5cBjgDSAsgAuALQAJUCrf+UBEgAdwRt//YCngChA7EAOAU7ADgBdABSB28AlgJVAF0CVQAEA4f/8ALiAI8C4gBkAuIAigLiAJAC4gCiAuIAewLiAKoDHwCIAuEAiQLhAHMB4gCPAeIAPgNHAH4C4v/cAuIALQLi/6sC4v+8AuL/sgLi/9gC4v/eAuL/8ALi/8kC4v/4Ayn/3ALr/90C6//HAeL/6AHi/50Eg//zBiUACgZfADkIPwA7Bb4ACQX8AB8EXABRBa0AQwQDAEoEUgALBR//8gUm/+UFuwDMA7EASwf7ADUE2wDrBPEAfwYBALYGrACSBqUAkAZDAL4EbQBNBWQAJASL/60EcACrBKAAQQf7AEsB/f8VBF8AMwRCAHAD/P/TBBkAGAPpAEICRAB3AnwAcQH1/+QE1wB1BE0AWQRoAHUGoAB1BqAAdQTIAHUGaAAoAAAAAAf1/6sINQBcAtj/6gLYAGwC2AAcA/EAaQPxACcD8QBwA/AASwPxAEoD8f/3A/EAFwPx//0D8QC9A/EARgQD/90ECwB1BDP/twXmAJQERgB5BFsAQgQHAG4EAAASBCkAHQSYAEYEOwAeBJgATAS9AB4F1AAeA5kAHgQ0AB4Dsv/2AdoAKwS+AB4EiABMA68AHgQAABIEFAAGA4UAGQOTAB4ERv+wBJgATARG/7ADbv/TBKoAHgPS/9YFPgBSBPAAfQTNAA4FSQBtBFoASAcK/8MHGAAeBUoAbgSpAB4EOQAgBP3/iQXd/68EHwASBMYAIAQtAB8EnP/EBAAAWgUBAB4ESABWBiAAHgZ5AB4E9gBRBc0AIAQuACAEWgAgBkUAHgRk/+AD8//6Bhj/rwRXAB8E4wAfBQ8AagWXAFAERwB1BIT/twYxAG0ESABVBEgAHgWYAC4EpgBABB8AEgScAEYEFAAAA8YAHwfkAB4Eh//eAtj/+wLY//EC2AAXAtgAHQLYAC8C2AAIAtgANwN7AJMCoAELA8gAHgQa/5kEnwBIBSMARAT9AEQD9QAmBRUARAPwACYEXQAeBFoASAQwAB4EY/+mAe8A/AOJARIAAP0qA9IA0wPWACID8ADOA9cAzQOTAB4DhAESA4MBEwLiAI8C4gBkAuIAigLiAJAC4gCiAuIAewLiAKoFWACABYMAgQVoAEQFswCDBbYAgwO4ALwEXwA5BDf/gQSq/9MESf/VBA4AKwOJARQBhv++BnEATASWAD4B7f8PBGb/rARm/+MEZv+4BGYALARmAFYEZgAkBGYAZgRmABsEZgBABGYBDQIA/wkB//8JAfYALwH2/3gB9gAvBDAAHgTaAGQEAQBiBFwAHwQTAEQEcABDBGkAIwR8AEIEa//XBHkAQgQdAEYEXAA1BE7/vwNoAKkEsQAsA5n/6QYK/5oD2gAeBJj/9AS9AB4EvQAeAfcAAAIlABoFNgAvBTYALwRkAD4EoQCpAor/9AUQ/68FEP+vBRD/rwUQ/68FEP+vBRD/rwUQ/68FDQBwBGkAOwRpADsEaQA7BGkAOwIcAEkCHABJAhwASQIcAEkFiQA7BVcAcwVXAHMFVwBzBVcAcwVXAHMFCABjBQgAYwUIAGMFCABjBKkAqAQ5ADEEOQAxBDkAMQQ5ADEEOQAxBDkAMQQ5ADEEEABGBB0ARQQdAEUEHQBFBB0ARQHsAC8B7AAvAewALwHsAC8ESQAgBG0ARgRtAEYEbQBGBG0ARgRtAEYERwBbBEcAWwRHAFsERwBbA6z/qgOs/6oFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFDQBwBBAARgUNAHAEEABGBQ0AcAQQAEYFDQBwBBAARgUYADsE9gBHBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQVJAHQEXAADBUkAdARcAAMFSQB0BFwAAwVJAHQEXAADBYkAOwRGACACHABJAewAEQIcAEkB7AAuAhwASQHsAC8CHP+LAeP/bQIcAEkGZABJA74ALwRIAAcB9f8JBN4AOwPvACAELgA7AeMALwQuADsB4/+iBC4AOwJ5AC8ELgA7Ar8ALwWJADsESQAgBYkAOwRJACAFiQA7BEkAIARJACAFVwBzBG0ARgVXAHMEbQBGBVcAcwRtAEYEyAA7AqEAIATIADsCof+fBMgAOwKhACAEnAApBAEALgScACkEAQAuBJwAKQQBAC4EnAApBAEALgScACkEAQAuBKEAqQKKAEMEoQCpAooAQwShAKkCsgBDBQgAYwRHAFsFCABjBEcAWwUIAGMERwBbBQgAYwRHAFsFCABjBEcAWwUIAGMERwBbBuIAwwXVAIAEqQCoA6z/qgSpAKgEpv/sA9r/7gSm/+wD2v/uBKb/7APa/+4HQf+DBo4AEwVXACAEZgA6BF3/rwRd/68EBwBuBGP/pgRj/6YEY/+mBGP/pgRj/6YEY/+mBGP/pgRaAEgDyAAeA8gAHgPIAB4DyAAeAdoAKwHaACsB2gArAdoAKwS9AB4EmABMBJgATASYAEwEmABMBJgATARbAEIEWwBCBFsAQgRbAEIECwB1BGP/pgRj/6YEY/+mBFoASARaAEgEWgBIBFoASARdAB4DyAAeA8gAHgPIAB4DyAAeA8gAHgSIAEwEiABMBIgATASIAEwEvgAeAdoADgHaACsB2gArAeT/ggHaACsDsv/2BDQAHgOZAB4DmQAeA5kAHgOZAB4EvQAeBL0AHgS9AB4EmABMBJgATASYAEwEKQAdBCkAHQQpAB0EAAASBAAAEgQAABIEAAASBAcAbgQHAG4EBwBuBFsAQgRbAEIEWwBCBFsAQgRbAEIEWwBCBeYAlAQLAHUECwB1BAP/3QQD/90EA//dBRD/rwTNAAMF7QARAoAAFwVrAGsFDf/tBT0AHgKEACAFEP+vBNYAOwRpADsEpv/sBYkAOwIcAEkE3gA7BsYAOwWJADsFVwBzBOUAOwShAKkEqQCoBN3/1AIcAEkEqQCoBGMASAQwACkEZgAlAoQAhAQ8AGgEUgAuBG0ARgRm/+YDwgBuBE7/vwKEAGUEPABoBG0ARgQ8AGgGZABnBGkAOwRRAEQEnAApAhwASQIcAEkESAAHBP0ARATeADsE4QCUBRD/rwTWADsEUQBEBGkAOwWJAEQGxgA7BYkAOwVXAHMFiQBEBOUAOwUNAHAEoQCpBN3/1AQ5ADEEHQBFBHsAMARtAEYEXP/XBBAARgOs/6oD2v/FBB0ARQNCAC4EAQAuAeMALwHsAC8B2/8TBDIAMAOs/6oG4gDDBdUAgAbiAMMF1QCABuIAwwXVAIAEqQCoA6z/qgFbAKwCfADJBAAARAH1/wkBjgCJBsYAOwbOAB4FEP+vBDkAMQRpADsFiQBEBB0ARQR7ADAFXgCFBW8ATgTkAK0D5QCFCBkARgkDAHMEnAAlA/EAIAUNAHAEEABGBKkAqAPkAIUCHABJBwv/qwXy/6cCHABJBRD/rwQ5ADEFEP+vBDkAMQdB/4MGjgATBGkAOwQdAEUFXQBSBBgAPwQYAD8HC/+rBfL/pwScACUD8QAgBYkARAR7ADAFiQBEBHsAMAVXAHMEbQBGBUgAZwRpAEMFSABnBGkAQwU8AHYELQAyBOEAlAOs/6oE4QCUA6z/qgThAJQDrP+qBVAAywQ5AHkGwABEBhAAMQRgAEcFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFAhwASQHsAC8CHAANAeP/8AVXAHMEbQBGBVcAcwRtAEYFVwBzBG0ARgVXAHMEbQBGBVcAcwRtAEYFVwBzBG0ARgVXAHMEbQBGBVUAZgRwAEMFVQBmBHAAQwVVAGYEcABDBVUAZgRwAEMFVQBmBHAAQwUIAGMERwBbBQgAYwRHAFsFZQBjBM0AWwVlAGMEzQBbBWUAYwTNAFsFZQBjBM0AWwVlAGMEzQBbBKkAqAOs/6oEqQCoA6z/qgSpAKgDrP+qBH4AAAShAKkDuwBgBVAAywQ5AHkEUQBEA0IALgYAAIgEmgAEBEYAIATeACwE3gAsBFEAEQNC/+cFEQBYBAkAOgSpAKgD5ABeBN3/1APa/8UEMAApBEr/1wYZAJgEXAAYBFwANQRcAAUEXAByBHAAgQSEAFQEcACUBIQAfgVJAHQEXAADBYkAOwRJACAFEP+vBDkAMQRpADsEHQBFAhz/4AHs/40FVwBzBG0ARgTIADsCoQAgBQgAYwRHAFsEhv+xBNYAOwRcAB8FGAA7BGAARwUYADsEYABH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YgAAAAAAAA8AugADAAEECQAAALIAAAADAAEECQABAAwAsgADAAEECQACAAwAvgADAAEECQADABoAygADAAEECQAEABoAygADAAEECQAFACYA5AADAAEECQAGABoBCgADAAEECQAHAEABJAADAAEECQAIAAwBZAADAAEECQAJACYBcAADAAEECQALABQBlgADAAEECQAMABQBlgADAAEECQANASIBqgADAAEECQAOADYCzAADAAEECQAZAAwAsgBDAG8AcAB5AHIAaQBnAGgAdAAgADIAMAAxADEAIABUAGgAZQAgAFIAbwBiAG8AdABvACAAUAByAG8AagBlAGMAdAAgAEEAdQB0AGgAbwByAHMAIAAoAGgAdAB0AHAAcwA6AC8ALwBnAGkAdABoAHUAYgAuAGMAbwBtAC8AZwBvAG8AZwBsAGUAZgBvAG4AdABzAC8AcgBvAGIAbwB0AG8ALQBjAGwAYQBzAHMAaQBjACkAUgBvAGIAbwB0AG8ASQB0AGEAbABpAGMAUgBvAGIAbwB0AG8AIABJAHQAYQBsAGkAYwBWAGUAcgBzAGkAbwBuACAAMwAuADAAMQA0ADsAIAAyADAAMgA1AFIAbwBiAG8AdABvAC0ASQB0AGEAbABpAGMAUgBvAGIAbwB0AG8AIABpAHMAIABhACAAdAByAGEAZABlAG0AYQByAGsAIABvAGYAIABHAG8AbwBnAGwAZQAuAEcAbwBvAGcAbABlAEMAaAByAGkAcwB0AGkAYQBuACAAUgBvAGIAZQByAHQAcwBvAG4ARwBvAG8AZwBsAGUALgBjAG8AbQBUAGgAaQBzACAARgBvAG4AdAAgAFMAbwBmAHQAdwBhAHIAZQAgAGkAcwAgAGwAaQBjAGUAbgBzAGUAZAAgAHUAbgBkAGUAcgAgAHQAaABlACAAUwBJAEwAIABPAHAAZQBuACAARgBvAG4AdAAgAEwAaQBjAGUAbgBzAGUALAAgAFYAZQByAHMAaQBvAG4AIAAxAC4AMQAuACAAVABoAGkAcwAgAGwAaQBjAGUAbgBzAGUAIABpAHMAIABhAHYAYQBpAGwAYQBiAGwAZQAgAHcAaQB0AGgAIABhACAARgBBAFEAIABhAHQAOgAgAGgAdAB0AHAAcwA6AC8ALwBvAHAAZQBuAGYAbwBuAHQAbABpAGMAZQBuAHMAZQAuAG8AcgBnAGgAdAB0AHAAcwA6AC8ALwBvAHAAZQBuAGYAbwBuAHQAbABpAGMAZQBuAHMAZQAuAG8AcgBnAAMAAP/0AAD/agBkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQACAAgACP//AA8AAQACAA4AAAAAAAACKAACAFkAJQA+AAEARABeAAEAagBqAAEAcABwAAEAdQB1AAEAgQCBAAEAgwCDAAEAhgCGAAEAiQCJAAEAiwCWAAEAmACfAAEAoQCjAAEApQCmAAEAqACtAAMAsQCxAAEAugC7AAEAvwC/AAEAwQDBAAEAwwDEAAEAxwDHAAEAywDLAAEAzQDOAAEA0ADRAAEA0wDTAAEA2gDeAAEA4QDhAAEA5QDlAAEA5wDpAAEA6wD7AAEA/QD9AAEA/wEBAAEBAwEDAAEBCAEJAAEBFgEaAAEBHAEcAAEBIAEiAAEBJAEnAAMBKgErAAEBMwE0AAEBNgE2AAEBOwE8AAEBQQFEAAEBRwFIAAEBSwFNAAEBUQFRAAEBVAFYAAEBXQFeAAEBYgFiAAEBZAFkAAEBaAFoAAEBagFsAAEBbgFuAAEBcAFwAAEB1gHcAAIB7QIBAAECBQIFAAECDgIOAAECEAIQAAECFwIZAAECGwIcAAECHgIeAAECIgIiAAECJAImAAECLAIsAAECMQIzAAECNQI1AAECQwJDAAECRgJGAAECSAJIAAECSwJOAAECegJ+AAECjgKTAAEClgL+AAEDAQPAAAEDwgPCAAEDxAPOAAED0APZAAED2wP2AAED+gP6AAED/AQDAAEEBQQHAAEECgQOAAEEEASbAAEEngSfAAEEoQSiAAEEpASnAAEEsQUNAAEFDwUZAAEFHAUpAAEAAQADAAAAEAAAABYAAAAgAAEAAQCtAAIAAQCoAKwAAAACAAIAqACsAAABJAEnAAUAAQAAABoANAAKAAcARABcAGYATABUAHAAegAEREZMVAB0Y3lybAB0Z3JlawB0bGF0bgB0AARjcHNwAF5rZXJuAGRtYXJrAGxta21rAHQAAQAAAAEAYgAEAAAAAQBkAAQAAAABAGgAAgAIAAIAwgSiAAIACAACAHoAlgAGABAAAQBYAAAABgAQAAEAWgACAGoAAAAAAAEAAAAAAAIAAgABAAAAAgADAAQAAAACAAUABgABFcYABQAkAEgAAREuEhIAARE0N9YAARFcE9IAARFsStgAAREWERYAAREcESIAARFEESYAARFUETgAAREkAAQAAAACEQ4RFAAA//8ABAAAAAEAAgADAAIRUgAEAAARdhGeAAMAAwAA/5X/iAAA/1YAAAAA/4gAAAABXfQABAAAAesaBBdgF2AeMh3YF6YX5Bi2F8haVhj2GPYb7BgIGPYY9hi2GRgnDh/OJkQX9hgeHX4fXBg0GxYY1Bh+F5IwYhewLUAXsBewGWAYfhfWHvYYmBhKF2YYmBtcGH4YtiBEJX4c0hi2HdgsQi5CKYgkFhdIGJgXflDgF7BD8CtQL0QYZBdOF1RTyhdaGp4aMiDGReI0JEBAMtYY9jzoSBQdfifcGPYY9huiGPYY9hj2PpIhUBj2GdokuCLyHpQqaiOEF5woshdmGbBCFlbIGH4a2DGYIdoZOhh+ImQZhh0oGmgZOh3YGWAX9hiYGbAYfiV+F5wdfhdmG+wb7BvsGPYdfhdmGPYY9hi2F5wdfhdmF2A1xhdgF2AXYBd4HDYchBdyF4gXbBdyF2wXuhdsF+QYthi2GLYYtiZEHdgd2B3YHdgd2B3YHdgX5BfIF8gXyBfIGPYY9hj2GPYY9hi2GLYYthi2GLYfXBjUGNQY1BjUGNQY1BjUF5IXkheSF5IXsBlgGWAZYBlgGWAYmBiYHdgY1B3YGNQd2BjUF+QX5BfkF+QYthfIF5IXyBeSF8gXkhfIF5IXyBeSGPYXsBj2GPYY9hj2GPYb7BgIGAgYCBgIGPYXsBj2F7AY9hewF7AYthlgGLYZYBi2GWAX1hfWF9YmRCZEJkQYHh9cGJgfXBg0GDQYNBdyF3IXeBdsF2wXbBdsF2wXbBdsF3IXchdyF3IXchdsF2wXbBdyF4gXiBeIF4gXchdyF3IXeB3YF8gY9hj2GLYfXB3YF6YXyBg0GPYY9hvsGPYY9hi2GRgmRB9cHX4Y9h9cF7AZYBiYGWAXyCV+GPYY9hvsG+wboh3YF6YlfhfIGPYY9hi2GRgX5CZEHX4Y1BeSGWAYfhiYF2YXkhecGJgYHhgeGB4fXBiYF2AXYBdgGPYXsB3YGNQXyBeSF/YYmBfkH1wYmBj2HX4XZhj2HdgY1B3YGNQXyBeSF5IXkh1+F2YYthlgGWAYfhuiGJgbohiYG6IYmB3YGNQd2BjUHdgY1B3YGNQd2BjUHdgY1B3YGNQd2BjU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AAEAEAAGAAsAEAASALIBhQGGAYcBiAGJAYoBiwGPAZAD9wP4AAIABgAQABAAAQASABIAAQCyALIAAgGHAYcAAQGLAYsAAQGPAZAAAQACAAYABgAGAAEACwALAAEAsgCyAAIBhQGGAAEBiAGKAAED9wP4AAEAAgBMACUAPgAAAEUAXgAaAIsAlgA0AJgAmwBAAJ0AnQBEALoAuwBFAMEAwQBHAM4AzgBIANsA2wBJAN0A3QBKAO8A7wBLAPIA8gBMASEBIgBNAUEBQgBPAUwBTQBRAVgBWABTAWIBYgBUAWQBZABVAWoBbABWAW4BbgBZAe0CAQBaAg4CDgBvAhgCGABwAhsCGwBxAiwCLAByAjICMwBzAkMCQwB1AkYCRgB2AkgCSAB3AksCTgB4AnoCfgB8Ao4CkwCBApYC/gCHAwEDAQDwAwMDRgDxA0sDqAE1A6oDugGTA7wDvAGkA78DwAGlA8IDwgGnA8YDxgGoA8gDyQGpA8sDzgGrA9AD0AGvA9ID0wGwA9UD1QGyA9cD2QGzA9sD4AG2A+ID5wG8A+kD7AHCA+4D9gHGA/oD+gHPA/wEAAHQBAIEAgHVBAoEDgHWBBAEEAHbBBMEFwHcBBoEHgHhBCEEIgHmBCcEKAHoBDAEMAHqBDIEMgHrBDQENAHsBDkEkwHtBJkEmwJIBKEEogJLBKQEpQJNBKcEpwJPBLEEwAJQBMIE/gJgBQAFBAKdBQYFBwKiBQkFCQKkBQsFDQKlBQ8FFwKoBRwFKQKxAAIATwAlAD4AAABFAF4AGgCBAIEANACDAIMANQCGAIYANgCJAIkANwCLAJYAOACYAJ0ARACxALEASgC7ALsASwC/AL8ATADBAMEATQDDAMMATgDHAMcATwDLAMsAUADNAM4AUQDQANEAUwDTANMAVQDaANwAVgDeAN4AWQDhAOEAWgDlAOUAWwDnAOkAXADrAPsAXwD9AP0AcAD/AQEAcQEDAQMAdAEIAQkAdQEWARoAdwEcARwAfAEgASIAfQEqASsAgAFBAUIAggFLAUsAhAFYAVgAhQFiAWIAhgFkAWQAhwFoAWgAiAFqAWwAiQFuAW4AjAHtAgEAjQIFAgUAogIQAhAAowIXAhkApAIcAhwApwIeAh4AqAIiAiIAqQIkAiYAqgIsAiwArQIxAjEArgIzAjMArwI1AjUAsAJDAkMAsQJG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/+wAVf/sAJT/7ACZ/+wAu//sAMj/7ADJ/+wA9//sAQP/7AEe/+wBIv/sAUL/7AFg/+wBYf/sAWv/7AK9/+wCvv/sAr//7ALA/+wCwf/sAtn/7ALb/+wC3f/sAt//7ALh/+wC4//sAuX/7ALn/+wC6f/sAuv/7ALt/+wC7//sAvH/7ALz/+wDuv/sA+D/7APk/+wD5//sBAL/7AQI/+wEDf/sBBv/7AQd/+wEHv/sBCr/7AQ5/+wEU//sBFX/7ARX/+wEWf/sBFv/7ARd/+wEX//sBGH/7AR1/+wEd//sBHn/7AR9/+wEuP/sBMX/7ATH/+wAQAAn/+YAK//mADP/5gA1/+YAg//mAJP/5gCY/+YAs//mALj/wgDEABAA0//mAQj/5gEX/+YBG//mAR3/5gEf/+YBIf/mAUH/5gFq/+YCYP/mAmH/5gJj/+YCZP/mAqL/5gKs/+YCrf/mAq7/5gKv/+YCsP/mAtj/5gLa/+YC3P/mAt7/5gLs/+YC7v/mAvD/5gLy/+YDFP/mAxb/5gMY/+YDSf/mA6b/5gOz/+YD2f/mA9z/5gQJ/+YEDP/mBCf/5gQp/+YEK//mBGb/5gRo/+YEav/mBGz/5gRu/+YEcP/mBHL/5gR0/+YEdv/mBHj/5gR6/+YEfP/mBLv/5gTU/+YARwAQAAAAEgAAAEf/5wBI/+cASf/nAEv/5wBV/+cAlP/nAJn/5wC7/+cAxAAPAMj/5wDJ/+cA9//nAQP/5wEe/+cBIv/nAUL/5wFg/+cBYf/nAWv/5wGHAAABiwAAAY8AAAGQAAACvf/nAr7/5wK//+cCwP/nAsH/5wLZ/+cC2//nAt3/5wLf/+cC4f/nAuP/5wLl/+cC5//nAun/5wLr/+cC7f/nAu//5wLx/+cC8//nA7r/5wPg/+cD5P/nA+f/5wQC/+cECP/nBA3/5wQb/+cEHf/nBB7/5wQq/+cEOf/nBFP/5wRV/+cEV//nBFn/5wRb/+cEXf/nBF//5wRh/+cEdf/nBHf/5wR5/+cEff/nBLj/5wTF/+cEx//nAE0ABgAQAAsAEAANABQAQQASAEf/6ABI/+gASf/oAEv/6ABV/+gAYQATAJT/6ACZ/+gAu//oAMj/6ADJ/+gA9//oAQP/6AEe/+gBIv/oAUL/6AFg/+gBYf/oAWv/6AGFABABhgAQAYgAEAGJABABigAQ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AWv/8AH2/+sB+P/rAgD/6QIH/+sCEP/rAiz/6wI1/+sCTP/rAr3/8AK+//ACv//wAsD/8ALB//ACx//rAsj/6wLJ/+sCyv/rAsv/6wLZ//AC2//wAt3/8ALf//AC4f/wAuP/8ALl//AC5//wAun/8ALr//AC7f/wAu//8ALx//AC8//wAxX/6wMX/+sDGf/rA1X/6wNf/+sDYP/rA2H/6wNi/+sDY//rA2z/6wNt/+sDbv/rA2//6wN2/+sDd//rA3j/6wN5/+sDif/rA4r/6wOL/+sDuv/wA8D/6wPG/+sD4P/wA+L/6wPk//AD5//wBAL/8AQI//AEDf/wBBv/8AQd//AEHv/wBCj/6wQq//AELP/rBDn/8ART//AEVf/wBFf/8ARZ//AEW//wBF3/8ARf//AEYf/wBGf/6wRp/+sEa//rBG3/6wRv/+sEcf/rBHP/6wR1//AEd//wBHn/8AR7/+sEff/wBLj/8AS8/+sExf/wBMf/8ATr/+sFDf/rBRD/6wUV/+sAfAAG/9oAC//aAEf/8ABI//AASf/wAEv/8ABV//AAWf/vAFr/3ABd/9wAlP/wAJn/8ACb/+8Au//wAL3/3ADC/+wAxAAPAMb/6gDI//AAyf/wAMr/xADL/+8AzP/nAPf/8AED//ABGv/cAR7/8AEi//ABQv/wAWD/8AFh//ABa//wAYX/2gGG/9oBiP/aAYn/2gGK/9oCvf/wAr7/8AK///ACwP/wAsH/8ALM/+8Czf/vAs7/7wLP/+8C0P/cAtH/3ALZ//AC2//wAt3/8ALf//AC4f/wAuP/8ALl//AC5//wAun/8ALr//AC7f/wAu//8ALx//AC8//wAzH/7wMz/+8DNf/vAzf/7wM5/+8DO//vAz//3AO6//ADvv/vA8L/3APF/+8Dx//vA+D/8APk//AD5f/cA+f/8APu/9wD9v/cA/f/2gP4/9oD+//aBAL/8AQH/9wECP/wBA3/8AQP/9wEG//wBB3/8AQe//AEKv/wBDD/3AQy/9wENP/cBDn/8ART//AEVf/wBFf/8ARZ//AEW//wBF3/8ARf//AEYf/wBHX/8AR3//AEef/wBH3/8AR//+8Egf/vBIP/7wSF/+8Eh//vBIn/7wSL/+8Ejf/cBI//3ASR/9wEuP/wBMD/7wTF//AEx//wBN//3ATh/9wAjAAG/8oAC//KADj/0gA6/9QAPP/0AD3/0wBR/9EAUv/RAFT/0QBa/+YAXP/vAF3/5gC9/+YAwf/RANL/0gDW/9IA2v/0AN7/7QDh/+EA5v/UAOz/0QDu/+8A8P/RAPH/0QDz/9EA9P/RAPX/0QD2/8kA+P/RAPr/0QD7/9EA/v/RAQD/0QEF/9EBCf/lARn/1AEa/+YBIP/jASv/0QEz//QBNP/vATb/0QE5/9IBOv/EATz/0QE+/9EBQ//0AUT/7wFF/9IBR//hAUn/4QFT/9EBVf/RAVf/0QFc/9EBXf/0AV7/7wFi/9QBY//1AWT/5wFs/9IBbf/JAYX/ygGG/8oBiP/KAYn/ygGK/8oCtf/TAsb/0QLQ/+YC0f/mAw7/0QMQ/9EDEv/RAxP/0QMq/9IDLP/SAy7/0gM+/9MDP//mA0D/0wOn/9MDtv/TA7f/9AO5/9MDvP/RA8L/5gPR/+0D3f/SA97/9APh/9ED4//RA+X/5gPm/+8D6P/RA+3/0QPu/+YD9f/TA/b/5gP3/8oD+P/KA/v/ygP9/9EEA//RBAb/1AQH/+YEDv/TBA//5gQR//QEEv/vBB//9AQg/+8EJP/RBCb/0QQv/+0EMP/mBDH/7QQy/+YEM//tBDT/5gQ1/+EEOP/RBIz/0wSN/+YEjv/TBI//5gSQ/9MEkf/mBJP/0gSV/+EEmP/RBKL/0wS0/9EE0f/RBNP/0QTb/9IE3v/UBN//5gTg/9QE4f/mAJgAJQAQACf/6AAr/+gAM//oADX/6AA4/+AAOv/gAD3/3wCD/+gAk//oAJj/6ACyABAAs//oALQAEADS/+AA0//oANQAEADW/+AA2QAUAN0AEADh/+EA5v/gAO0AEwDyABAA+f/gAQQAEAEI/+gBDQAQARf/6AEZ/+ABG//oAR3/6AEf/+gBIf/oATn/4AFB/+gBRf/gAUf/4QFI/+ABSf/hAUr/4AFN/+EBUAAQAVEAEAFY/+kBYv/fAWT/3gFmABABav/oAWz/3wFu//IBbwAQAXAAEAJg/+gCYf/oAmP/6AJk/+gCmwAQApwAEAKdABACngAQAp8AEAKgABACoQAQAqL/6AKs/+gCrf/oAq7/6AKv/+gCsP/oArX/3wLSABAC1AAQAtYAEALY/+gC2v/oAtz/6ALe/+gC7P/oAu7/6ALw/+gC8v/oAxT/6AMW/+gDGP/oAyr/4AMs/+ADLv/gAz7/3wNA/98DSf/oA6IAEAOm/+gDp//fA6oAEAOz/+gDtv/fA7n/3wPSABAD2f/oA9z/6APd/+AD9f/fA/4AEAQG/+AECf/oBAz/6AQO/98EFAAQBBYAEAQn/+gEKf/oBCv/6AQ1/+EENv/gBDoAEAQ8ABAEPgAQBEAAEARCABAERAAQBEYAEARIABAESgAQBEwAEAROABAEUAAQBGb/6ARo/+gEav/oBGz/6ARu/+gEcP/oBHL/6AR0/+gEdv/oBHj/6AR6/+gEfP/oBIz/3wSO/98EkP/fBJP/4ASV/+EElv/gBKL/3wS1ABAEu//oBNT/6ATb/+AE3v/gBOD/4AM0PT47vjk2O8o9Sj1KNXA71jpuOIg77jv6PAY8EjyEO74y4jwqPDY8QjxOPGA8bDtGO0A8eD1EO8Q5PDvQPVAymjV2O9w6dDi4O/Q8ADwMPBg6hjigMqA8MDw8PEg6wjxmPHI7TDsEPH45WjKmOWAyrDv0MrI9YjhYMrgyvjwSPBgyxDLKMtAy1jq8PUQ6+Dr+NEo5eDs0OEY7UjhMOFIy3DhqORg4cDu4M1Qy4jLoOSoy7jL0Oygy+jMAMwYzDDMSOzozGDMeOTAzJDMqMzAzNjM8M0I7IjNIM047LjNgM1QzWjPSM2AzZjNsM3IzeDN+OcA5xjOEM4ozkDOWM5wzojOoM64ztDhMM7ozwDu+M8Y71jPMM9Iz2DPePQg9CDzwM+Qz6jzkPOo9JjfmM/A85DzePJA82De8PIo8tDyoPPw3jDP2PMwz/DQCPPY0CDQOPQg0FDQaNCA0JjQsNDI0ODQ+PVw0RDv0Nsw9AjzGPVY0SjRKPWI9Yj1iN7w0UDRWPN48/DyQO8o7yjvcPEI8SDRcNFw6JjRiOU40aD0+OTY5ADkAOlY4djRuNHQ0ejiCNIA0hjSGOow0jDm0NJI0kjSYNJ444jqeOp46LDq2OVQ0pD1EOTw5DDSqOlw4pjSwNLY0vDiyNMI0yDTIOpI0zjm6NNQ01DTaNOA46Dn2NOY07DoyOjg9Pj1ENPI0+DT+NQQ1CjUQNRY1HDUiO9A1KDUuOWY5bDU0NTo9Sj1QNUA1RjVMNVI1WDVeNWQ1ajVwNXY1fDWCNYg1jjWUNZo1oDWmOm46dDWsNbI1uDvuO/Q1vjXEO/o8ADv6PAA7+jwAO2Q7ajwSPBg1yjXQPBg11jXcNeI16DXuNfQ1+jYAPCo8MDYGNgw2EjYYNh42JDw2PDw8Njw8Nio2MDxCPEg8QjxINjY8SDY8NkI2SDZONlQ2WjZgNmY2bDZyPE46wjZ4Nn42hDaKOEA2kDaWNpw2ojaoNq42tDa6NsA2xjbMNsw86jbSNtI22DbeNuQ26j1WPQI28DbwNvY8nDb8NwI3CDyuNw49ID0gNxQ3GjcgNyY3JjcsNzI9ODc4Nz49VjdEN0o3UDdWN1w3YjdoN249XDd0N3o3gDeGN4w3kjeYN543pDyoN6o3sDyKN7Y3vDe8N7w3wjyQN8g3zjfUN9o34DfmN+w38jf4PSY3/jzqOAQ86jgKOBA4FjgcOCI85DgoOC48lj04ODQ4Oj0+PUo71jpuPIQ7QDhSPT47vj1KPHg71jpuO+48BjwSPIQ7vjxCO0A7RjiCOEA4RjtSOEw4UjhqOFg6hjxmOF44ZDqGOGo4cDh2OHw8NjpuOII4iDviOI49Pju+OzQ9SjiUPAY71jyEO745NjxCO0Y9RD1QOJo6hjigOTw7BDtMOKY4rDw8OnQ4sji4OL44xDjKONA4yjjQONY43DjiOOg47jj0OPo9Pj1EOQA5BjkMORI5GDkeOSQ5KjkwOTY5PDtAOm45QjlIOm46Mjo4OU45VDlaOWA5ZjlsOXI5eDl+OYQ5ijmQOZY5nDmiOag5rjm0Obo5wDnGOcw50jnYOd455DnqOfA59jn8OgI6CDoOOhQ6GjvQPT49RDogOqo9Pj1EPT49RD0+PUQ9Pj1EOiY6LD0+PUQ9Pj1EPT49RD0+PUQ6Mjo4PUo9UDo+OkQ6SjpQPUo9UD1KPVA9Sj1QPUo9UDpWOlw6YjpoOm46dDyEOoY6ejqAPIQ6hjyEOoY8hDqGPIQ6hjqMOpI6mDqeOpg6njqkOqo6sDq2Orw9RDxOOsI6yDrOOtQ62jrUOto64DrmOuw68jr4Ov47QDsEOwo7EDsWOxw70DxCOyI7KDsuOzQ7OjvcOzQ7Ojv0O0A7RjtMO1I9SjtYO147ZDtqO3A7djt8O4I7iDuOO5Q7mjugO6Y7rDuyO7g7vjvEO8o70DvKO9A71jvcO+I76DvuO/Q7+jwAPAY8DDwSPBg8hDwePCQ8KjwwPDY8PDxCPEg8TjxUPFo8YDxmPGw8cjx4PH48hD1WPVw8/DyoPN49CD1WPMY9XD0IPPw8qDyKPNg8kDzePOQ86j0IPPA8rjyWPJw8oj0mPKg8rjy0PLo8wD1WPMY8zD1cPNI82Dz8PN485D0CPOo88Dz2PPw9Aj0IPQ49FD0aPSA9Jj0sPSw9Mj04PT49RD1KPVA9Vj1cPWIAugBH/9wASP/cAEn/3ABL/9wAUf/zAFL/8wBT/9YAVP/zAFX/3ABZ/90AWv/hAF3/4QCU/9wAmf/cAJv/3QC7/9wAvf/hAL7/7gC//+YAwf/zAML/6wDD/+kAxf/wAMb/5wDI/9wAyf/cAMr/4wDL/90AzP/OAM3/1ADO/9sA7P/zAPD/8wDx//MA8//zAPT/8wD1//MA9//cAPj/8wD6//MA+//zAP7/8wEA//MBA//cAQX/8wEY/9YBGv/hAR7/3AEi/9wBK//zATb/8wE8//MBPv/zAUL/3AFT//MBVf/zAVf/8wFc//MBYP/cAWH/3AFr/9wCvf/cAr7/3AK//9wCwP/cAsH/3ALG//MCx//WAsj/1gLJ/9YCyv/WAsv/1gLM/90Czf/dAs7/3QLP/90C0P/hAtH/4QLZ/9wC2//cAt3/3ALf/9wC4f/cAuP/3ALl/9wC5//cAun/3ALr/9wC7f/cAu//3ALx/9wC8//cAw7/8wMQ//MDEv/zAxP/8wMV/9YDF//WAxn/1gMx/90DM//dAzX/3QM3/90DOf/dAzv/3QM//+EDuv/cA7z/8wO+/90DwP/WA8L/4QPF/90Dxv/WA8f/3QPg/9wD4f/zA+L/1gPj//MD5P/cA+X/4QPn/9wD6P/zA+3/8wPu/+ED9v/hA/3/8wQC/9wEA//zBAf/4QQI/9wEDf/cBA//4QQb/9wEHf/cBB7/3AQk//MEJv/zBCj/1gQq/9wELP/WBDD/4QQy/+EENP/hBDj/8wQ5/9wEU//cBFX/3ARX/9wEWf/cBFv/3ARd/9wEX//cBGH/3ARn/9YEaf/WBGv/1gRt/9YEb//WBHH/1gRz/9YEdf/cBHf/3AR5/9wEe//WBH3/3AR//90Egf/dBIP/3QSF/90Eh//dBIn/3QSL/90Ejf/hBI//4QSR/+EEmP/zBLT/8wS4/9wEvP/WBMD/3QTF/9wEx//cBNH/8wTT//ME3//hBOH/4QC/AAYADAALAAwAR//oAEj/6ABJ/+gASgAMAEv/6ABT/+oAVf/oAFoACwBdAAsAlP/oAJn/6AC7/+gAvQALAL7/7QDEAAAAxgALAMj/6ADJ/+gAygAMAPf/6AED/+gBGP/qARoACwEe/+gBIv/oAUL/6AFg/+gBYf/oAWv/6AGFAAwBhgAMAYgADAGJAAwBigAMAe4ADQHxAA0B8wAOAfT/9QH2/+wB+P/tAgD/7AIG/78CB//tAgj/vwIPAA4CEP/tAhMADgIrAA4CLP/tAi0ADQIvAA4CNf/tAkz/7gJO/78Cvf/oAr7/6AK//+gCwP/oAsH/6ALH/+oCyP/qAsn/6gLK/+oCy//qAtAACwLRAAsC2f/oAtv/6ALd/+gC3//oAuH/6ALj/+gC5f/oAuf/6ALp/+gC6//oAu3/6ALv/+gC8f/oAvP/6AMV/+oDF//qAxn/6gM/AAsDTv+/A0//vwNQ/78DUf+/A1L/vwNT/78DVP+/A1X/7QNf/+0DYP/tA2H/7QNi/+0DY//tA2gADQNp/78Dav+/A2v/vwNs/+0Dbf/tA27/7QNv/+0Ddv/tA3f/7QN4/+0Def/tA4n/7QOK/+0Di//tA4//9QOQ//UDkf/1A5L/9QOUAA4DnQANA54ADQO6/+gDwP/qA8IACwPG/+oD4P/oA+L/6gPk/+gD5QALA+f/6APuAAsD9gALA/cADAP4AAwD+wAMBAL/6AQHAAsECP/oBA3/6AQPAAsEG//oBB3/6AQe/+gEKP/qBCr/6AQs/+oEMAALBDIACwQ0AAsEOf/oBFP/6ARV/+gEV//oBFn/6ARb/+gEXf/oBF//6ARh/+gEZ//qBGn/6gRr/+oEbf/qBG//6gRx/+oEc//qBHX/6AR3/+gEef/oBHv/6gR9/+gEjQALBI8ACwSRAAsEuP/oBLz/6gTF/+gEx//oBN8ACwThAAsE5/+/BOv/7QTsAA0E7v+/BPoADQT9AA0FBv+/BQ3/7QUQ/+0FEQAOBRX/7QUWAA0A4wAGAA0ACwANAEX/8ABH/7AASP+wAEn/sABKAA0AS/+wAFP/1gBV/7AAWgALAF0ACwCU/7AAmf+wALv/sAC9AAsAvv+wAMf/qwDI/8AAyf+wAMz/1QDt/6oA8v+vAPf/sAED/7ABBP+vARj/1gEaAAsBHP/iAR7/sAEgAAwBIv+wAUL/sAFR/68BYP+wAWH/sAFjAAsBZQALAWv/sAFw/68BhQANAYYADQGIAA0BiQANAYoADQHuAA0B8QANAfMADgH0//UB9v/sAfj/7QIA/+wCBv+/Agf/7QII/78CDwAOAhD/7QITAA4CKwAOAiz/7QItAA0CLwAOAjX/7QJM/+4CTv+/Arb/8AK3//ACuP/wArn/8AK6//ACu//wArz/8AK9/7ACvv+wAr//sALA/7ACwf+wAsf/1gLI/9YCyf/WAsr/1gLL/9YC0AALAtEACwLT//AC1f/wAtf/8ALZ/7AC2/+wAt3/sALf/7AC4f+wAuP/sALl/7AC5/+wAun/sALr/7AC7f+wAu//sALx/7AC8/+wAxX/1gMX/9YDGf/WAz8ACwNO/78DT/+/A1D/vwNR/78DUv+/A1P/vwNU/78DVf/tA1//7QNg/+0DYf/tA2L/7QNj/+0DaAANA2n/vwNq/78Da/+/A2z/7QNt/+0Dbv/tA2//7QN2/+0Dd//tA3j/7QN5/+0Dif/tA4r/7QOL/+0Dj//1A5D/9QOR//UDkv/1A5QADgOdAA0DngANA7r/sAPA/9YDwgALA8b/1gPf//AD4P+wA+L/1gPk/7AD5QALA+f/sAPuAAsD9gALA/cADQP4AA0D+wANA///8AQC/7AEBwALBAj/sAQN/7AEDwALBBX/8AQX//AEG/+wBB3/sAQe/7AEKP/WBCr/sAQs/9YEMAALBDIACwQ0AAsEOf+wBDv/8AQ9//AEP//wBEH/8ARD//AERf/wBEf/8ARJ//AES//wBE3/8ARP//AEUf/wBFP/sARV/7AEV/+wBFn/sARb/7AEXf+wBF//sARh/7AEZ//WBGn/1gRr/9YEbf/WBG//1gRx/9YEc//WBHX/sAR3/7AEef+wBHv/1gR9/7AEjQALBI8ACwSRAAsEtv/wBLj/sAS8/9YExf+wBMf/sATfAAsE4QALBOf/vwTr/+0E7AANBO7/vwT6AA0E/QANBQb/vwUN/+0FEP/tBREADgUV/+0FFgANAOcAEP8WABL/FgAl/1YALv74ADgAFABF/94AR//rAEj/6wBJ/+sAS//rAFP/6wBV/+sAVv/mAFn/6gBa/+gAXf/oAJT/6wCZ/+sAm//qALL/VgC0/1YAu//rAL3/6ADI/+sAyf/rAMv/6gDSABQA1gAUAPf/6wED/+sBDf9WARj/6wEa/+gBHv/rASL/6wE5ABQBQv/rAUUAFAFg/+sBYf/rAWv/6wGH/xYBi/8WAY//FgGQ/xYCBv/AAgj/wAJO/8ACm/9WApz/VgKd/1YCnv9WAp//VgKg/1YCof9WArb/3gK3/94CuP/eArn/3gK6/94Cu//eArz/3gK9/+sCvv/rAr//6wLA/+sCwf/rAsf/6wLI/+sCyf/rAsr/6wLL/+sCzP/qAs3/6gLO/+oCz//qAtD/6ALR/+gC0v9WAtP/3gLU/1YC1f/eAtb/VgLX/94C2f/rAtv/6wLd/+sC3//rAuH/6wLj/+sC5f/rAuf/6wLp/+sC6//rAu3/6wLv/+sC8f/rAvP/6wMB/vgDFf/rAxf/6wMZ/+sDKgAUAywAFAMuABQDMf/qAzP/6gM1/+oDN//qAzn/6gM7/+oDP//oA07/wANP/8ADUP/AA1H/wANS/8ADU//AA1T/wANp/8ADav/AA2v/wAOi/1YDqv9WA7r/6wO+/+oDwP/rA8L/6APF/+oDxv/rA8f/6gPO/vgD0v9WA90AFAPf/94D4P/rA+L/6wPk/+sD5f/oA+f/6wPu/+gD9v/oA/7/VgP//94EAv/rBAf/6AQI/+sEDf/rBA//6AQU/1YEFf/eBBb/VgQX/94EG//rBB3/6wQe/+sEKP/rBCr/6wQs/+sEMP/oBDL/6AQ0/+gEOf/rBDr/VgQ7/94EPP9WBD3/3gQ+/1YEP//eBED/VgRB/94EQv9WBEP/3gRE/1YERf/eBEb/VgRH/94ESP9WBEn/3gRK/1YES//eBEz/VgRN/94ETv9WBE//3gRQ/1YEUf/eBFP/6wRV/+sEV//rBFn/6wRb/+sEXf/rBF//6wRh/+sEZ//rBGn/6wRr/+sEbf/rBG//6wRx/+sEc//rBHX/6wR3/+sEef/rBHv/6wR9/+sEf//qBIH/6gSD/+oEhf/qBIf/6gSJ/+oEi//qBI3/6ASP/+gEkf/oBJMAFAS1/1YEtv/eBLj/6wS8/+sEwP/qBMX/6wTH/+sE2wAUBN//6ATh/+gE5//ABO7/wAUG/8AAAgCfAAQABAAAAAYABgABAAsADAACACUAKgAEACwALQAKAC8ANgAMADgAOAAUADoAPwAVAEUARgAbAEkASgAdAEwATAAfAE8ATwAgAFEAVAAhAFYAVgAlAFgAWAAmAFoAXQAnAF8AXwArAIoAigAsAJYAlgAtAJ0AnQAuALEAtQAvALcAuQA0ALsAuwA3AL0AvgA4AMAAwQA6AMMAxQA8AMcAzgA/ANIA0gBHANQA3gBIAOAA7wBTAPEA8QBjAPYA+ABkAPsA/ABnAP4BAABpAQMBBQBsAQoBCgBvAQ0BDQBwARgBGgBxASIBIgB0AS4BMAB1ATMBNQB4ATcBNwB7ATkBOQB8ATsBOwB9AUMBRAB+AVQBVACAAVYBVgCBAVgBWACCAVwBXgCDAYUBhgCGAYgBigCIAfMB8wCLAfUB9gCMAfgB+ACOAfsB+wCPAgYCCACQAksCSwCTAk4CTgCUAmACYACVAmICYwCWApYClwCYApkCmQCaApsCsACbArUCvACxAr4CwQC5AsYCywC9AtAC2ADDAtoC2gDMAtwC3ADNAt4C3gDOAuAC4ADPAuIC6wDQAvQC9gDaAvgC+ADdAvoC+gDeAvwC/ADfAv4C/gDgAwMDAwDhAwUDBQDiAwcDBwDjAwkDCQDkAwsDCwDlAw0DGQDmAxsDGwDzAx0DHQD0Ax8DHwD1AyoDKgD2AywDLAD3Ay4DLgD4AzwDPAD5Az4DQQD6A0MDQwD+A0UDRQD/A0sDVAEAA18DYwEKA2kDawEPA3ADcAESA4IDhQETA4kDiwEXA5QDlAEaA6IDpwEbA6oDuQEhA7wDvAExA8ADwAEyA8IDwgEzA8YDxgE0A8kDygE1A8wDzQE3A88D1QE5A9cD2QFAA9sD4AFDA+ID4wFJA+UD6AFLA+4D7wFPA/ED8QFRA/MD8wFSA/UD+AFTA/sEAAFXBAIEAgFdBAYEBwFeBAwEDAFgBA4EFwFhBBoEGwFrBB0EIAFtBCcEKAFxBCwELAFzBC4ENAF0BDoEYgF7BGQEZAGkBGYEcwGlBHsEewGzBIwEkQG0BJMEkwG6BJcEmAG7BJsEmwG9BJ0EngG+BKAEoAHABKIEogHBBLMEtwHCBLkEuQHHBLsEvAHIBL4EvgHKBMIExAHLBMYExgHOBMgEygHPBMwEzAHSBM4EzgHTBNAE1gHUBNgE2AHbBNsE2wHcBN4E4gHdBOQE5AHiBOYE5wHjBOsE6wHlBO4E7gHmBPkE+QHnBQYFBgHoBQ0FDQHpBREFEQHqAAIAmgAGAAYAAAALAAsAAQAQABAAAgASABIAAwAlACkABAAsADQACQA4AD4AEgBFAEcAGQBJAEkAHABMAEwAHQBRAFQAHgBWAFYAIgBaAFoAIwBcAF4AJACKAIoAJwCWAJYAKACxALQAKQC9AL0ALQDBAMEALgDHAMcALwDUANUAMADXANcAMgDaANoAMwDcAN4ANADgAOYANwDsAOwAPgDuAO4APwD3APcAQAD8APwAQQD+AP8AQgEEAQUARAEKAQoARgENAQ0ARwEYARoASAEuATAASwEzATUATgE3ATcAUQE5ATkAUgE7ATsAUwFDAUQAVAFUAVQAVgFWAVYAVwFYAVgAWAFcAV4AWQGFAYsAXAGPAZAAYwHzAfMAZQH4AfgAZgH7AfwAZwIGAggAaQIaAhoAbAIpAisAbQJLAksAcAJOAk4AcQJgAmAAcgJiAmMAcwKWApcAdQKZApkAdwKbAsEAeALGAssAnwLQAuAApQLiAusAtgL0AvYAwAL4AvgAwwL6AvoAxAL8AvwAxQL+Av4AxgMBAwEAxwMDAwMAyAMFAwUAyQMHAwcAygMJAwkAywMLAwsAzAMNAxkAzQMbAxsA2gMdAx0A2wMfAx8A3AMqAyoA3QMsAywA3gMuAy4A3wMwAzAA4AMyAzIA4QM0AzQA4gM2AzYA4wM4AzgA5AM6AzoA5QM8AzwA5gM+A0YA5wNLA1QA8ANfA2MA+gNpA2sA/wNwA3ABAgOBA4UBAwOJA4sBCAOUA5QBCwOiA6cBDAOqA7kBEgO8A7wBIgPAA8ABIwPCA8IBJAPGA8YBJQPJA8oBJgPMA9UBKAPXA9kBMgPbA+ABNQPiA+gBOwPuA+8BQgPxA/EBRAPzA/MBRQP1A/gBRgP7BAABSgQCBAIBUAQGBAcBUQQMBBcBUwQaBBsBXwQdBCABYQQnBCgBZQQsBCwBZwQuBDQBaAQ6BGIBbwRkBGQBmARmBHMBmQR7BHsBpwR+BH4BqASABIABqQSMBJEBqgSTBJMBsASXBJgBsQSbBJsBswSdBJ4BtASgBKABtgSiBKIBtwSzBLcBuAS5BLkBvQS7BLwBvgS+BL4BwATCBMQBwQTGBMYBxATIBMoBxQTMBMwByATOBM4ByQTQBNYBygTYBNgB0QTbBNsB0gTdBOIB0wTkBOcB2QTrBOsB3QTuBO4B3gT0BPQB3wT5BPkB4AUEBQQB4QUGBQYB4gUNBQ0B4wURBREB5AACAXQABgAGABIACwALABIAEAAQABoAEgASABoAJQAlAAIAJgAmACQAJwAnAA8AKAAoAAEAKQApAAQALgAu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AAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAgAHABoACQACAAAAAgABAAIAAAACAAEAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAPABMAAAADAAAAAAANAAAAAAADAAAAAwAAAAAAAgABAA8AEwANAAAAIAAiAAAAAAAAAAAAAAAAAAAAHgAhAAAAAwAAAAMAAAADAAAAAAAAAAAAAwAPABMAAAABAAEAAAAAAAAAAAAeAAAAAAAAAAIAAQAAAAAAAAAeACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAGwAAABIAEgAYABIAEgASABgAAAAAAAAAGAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAGQAkAAAADgAVABwAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAACUABQAKAAAAAAAAAAAAAAAAABUABQAAAAAAFQAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAFQAFABEAGQAVAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAgAAAAIAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAIAAAAAAAAAAAAAAAAAAAAAAAAAAgACAAIAAgACAAsACwALAAsADAAGAAYABgAGAAYABgAGAAEAAQABAAEAAQAAAAAAAAAAAAMABwAHAAcABwAHAAgACAAIAAgACQAJAAQABgAEAAYABAAGAAIAAQACAAEAAgABAAIAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQACAAEAAgABAAIAAQACAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAADAAAAAwADAAIABwACAAcAAgAHAAAAAAAAAAAAAAAAABQAEAAUABAAFAAQABQAEAAUABAADQAAAA0AAAANAAAACwAIAAsACAALAAgACwAIAAsACAALAAgAFgAAAAwACQAMABcAHQAXAB0AFwAdAAAAAAACAAAAAAAAAAAACgAKAAoACgAKAAoACgAFAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAOAA4ADgAOABEACgAKAAoABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAABwAHAAcABwAAAAVAAAADgAOAA4ADgAOAA4AJAARABEAAAAAAAAABAAAAAAAAAACAAwAAAAAAAQAAAAAABcAAAAAAAAAAAAAAAIAAAAAAAwADwAAAAwAAQAAAAMAAAAIAAAABwAAAAkAAAAAAAgABwAIAAAAAAAAAAAAAAAAACMAAAAAAB8ABAAAAAAAAAAAAAAAAAACAAAAAAACAA0ADwAGAAEAAwAHAAMAAQAJABMAAQADABAAAAAAAAAAAwAJABYAAAAWAAAAFgAAAAwACQASABIAAAAAACYAAAADAAQABgAAAAAAAQADAAAAAAAaAAkAAQACAAAAAAACAAEADAAJAAAADwATAAAABAAGAAQABgAAAAAAAAABAAAAAQABAA8AEwAAAAAAAAADAAAAAwACAAcAAgABAAIABwAAAAAAHwAJAB8ACQAfAAkAIAAiAAAAAwABAAQABgAEAAYABAAGAAQABgAEAAYABAAGAAQABgAEAAYABAAGAAQABgAEAAYABAAGAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAACAAcAAgAHAAIABwACAAcAAgAHAAIABwACAAcAAgABAAIAAQACAAEAAgAHAAIAAQALAAgACwAIAAAACAAAAAgAAAAIAAAACAAAAAgADAAJAAwACQAMAAkAAAANAAAAIAAiAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAQABgAAAAEAAAAAAAIABwAAAAAAAAAIAAAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAgAAAAAAAAAAABQAEAANAAAACwAaAAkAGgAJABYAAAAXAB0AAAAKAAAAAAAAAAUAEQAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAGQAAABEAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAAAAAAAABQAAAAAABQAVABkAAAAAAAUAEQAB/VUAAAAB/Rj+ngAB/rIGaQAB/o8GaQAB/qQGPgAB/oUGuQAB/u4GQAAB/nUFCgAB/lIFCgAB/mgE6AAB/jgE+gAB/rkFDwAB/kkEpgAB/rcEpgAB/mIFAQAB/p4FAQABAjz/9gABAdv/9gABANoACgABAsv+aQABAlgACgABAKoACgABAzUAAAABAy3//wABAIsACgABAjsAAAABAmIACgABAbYACgABAh//9gABAcP/9gABAcf/9gABAeYACgABAKUACgABAij/9gABAan/9gABAi3/9gABAboACgABAdz/9gABAXQACgABAeIACgABAj3/9gABAdkAAAABAEv+NQABADv+NQABAU8ACgABAd7+PgABAVr+PgABAgL98wABAGb+VwABAc/+VgABAUz+QwABAZr+BgABADP+BgABAfMACgABAfv+BgABAWP+BgABAZH+BgABADH+BwABAa3+RwABAXb+PgABAaD9+wABAWn98gABAZP9/AABAPb9/AABAZ/+SAABAQP+SAABAVAAAAABAZgACgABAYT+RAABAdX//AABAXz9+AABADr+TgABAUT+AgABAUD+BAABAZkACAABAZj+AAABAT7+BAABAZcACAABAWP+SAABAUP9/wABAU/+SwABAcUAAAABAi0ACgABAav/9gABAIIACgABAdYACgABAsj/9gABAfn//wABAYf/9gABAe0ACgABAk8ACgABAcL/9gABAyIACgABAoEACgABAAH+NQABAvwACgABAwAACgABAir/9gABAab/9gABAicAAAABAcQAAAABAeL/9gABAY3/9wABAfT+ngABAUL+ngABAbX+qAABAYz+ngABAGv+pwABAgj+ngABAZv+nQABAjgAAAABAcv/9gABAfr+ngABAY3+lAABAeH+ngABAUj+ngABAjb/9wABAfj+lQABAX3+ngABAa/+nwABAfL+AAABAjD/YgABAe8AAAABAewAAAABA0P/+gABAkb//QABAdQACgABAe0AAQABAhYACgABAZQACgABAZ0ACgABAlv/9wABAWT+QQABAlQACgABAbwACgABAjIAAAABAX8AAAABAfIACgABAckAAAABAKkACQABAIwACgABAdn//wABAesACgABAIkACwABAboAAAABAZ3+lAABAbH+ngABAZP+BgABAZb9/AABAhH+qAABAZf+qAABAigAWgABAaYARwABAer++AABAWj+5QABAbb+qAABAr/+qAABAsL+qAABAhf+qAABAX7+qAABAZwACgABADL+aQABAa3+qAABAEv+qQABAbz+nQABAYT+lAABAa7+ngABARL+ngABAh4AAAABAh8ACgABAY0ACgABAeL+qAABAU/+qAABAuX+qAABAkP+qAABAa/+qAABAVv+qAABAkYAAAABAgQACgABAfEABAABAbAAAAABAIYABAABAVL/9gABAZ0ABgABAdcAAAABAaIACgABAaMACAABAoAACgABAX8ACgABAZwAAwABAa8ACAABAYP/9gABAe8ACgABAdD//AABAvr/9gABAv0AAAABAfwAAAABAVb9/AABApQACgABAZ8ACgABAe7+TgABATv+TgABAa/+WAABAYb+TgABAZP+TgABAV/+VgABAE7+qAABAq4G2gABAoAFCgABA28GigABAoAFCQABA20GTAABAaoGPAABAc0GoQABBEoGQwABBAwFCgABAmcG2gABAy4GQwABArUFAQABA1QGQAABBDgGTAABA3YGTAABAyEGTAABBA4GTAABA1IGYgABBCUGQAABAyUGTAABAogE9QABAxME9QABA2gE9QABArAE9QABAoAE9AABAuQE9QABA00E9QABArQE9QABAroE9QABA5MGzAABAtQE9QABA4cE9QABA3AE9QABA5YE9QABAnEE9QABArcFCAABBA0GGgABA2AE9QABAokGzAABAv0GCAABAmcE4AABArwFUAABA54GQAABAzoGYQABAqQFDAABA6YHYwABAuAGDAABA1YGUQABAx4GTAABAw8GHgABAboGTAABA0QGYQABAooFCgABAwEGTAABA0kGYQABA3cFKAABAp0FKAABAsEFKAABAokFKAABAr8FKAABA2oFKAABAuAFKAABAoAFKAABA1oFKAABAo4FKAABA00FKAABAvMFKAABAyIFKAABAt4FKAABArQFKAABAsMFKAABAwgGTAABAXIE4QABA9wFCgABAnsFKAABA28HoAABA2gHeQABA4AH3wABAfUHqwABAfMHqwABAfoHpwABA5wHeQABA5EHogABA4oHewABA2oHoAABA28HnAABA2EHYAABAvMGqAABAsUGaQABAaIGZwABAaEGZwABAagGYwABAtIGQgABAs8GaQABAsgGQgABAtMGaQABAtkGZQABAsoGKQABA2YHaAABAtkGMQABA3wHwAABAqYGaQABA4EHvAABAqwGZQABA3UHewABAp8GJAABA4AHsgABAqoGWwABAzcHnQABAzUHcwABAr0GMQABAzYHZgABAr4GJAABA0EHnQABAskGWwABA3oHvAABAs4GZQABA28HnQABAsMGRgABA20HewABAsEGJAABAz4GYQABApMFCgABA50HpwABAtAHpgABAe0HhAABAZsGQAABAewHcwABAZoGLwABAe8HiAABAZ0GRAABAewHZgABBCIHmgABAa8GPAABAeIHmwABAeUIAAABA6cHkgABAt0GWwABA4kHagABAscGMQABA4wHfwABAsoGRgABA5MHhwABAtEGTgABAzIHoAABAjkGaQABAzYHkgABAj4GWwABAz4HogABAsIGaQABA0QHngABAsgGZQABA0IHlAABAsYGWwABAzgHkQABA2MHeQABAswGQgABA2EHaAABAssGMQABA2UHfQABAs4GRgABA3sH3wABAuQGqAABA2wHhQABAtUGTgABBFgHnAABA5cGZQABA0AHmwABAp8GZQABAzgHoAABAqEGaQABAzEHWwABApoGJAABAzwHkgABAqUGWwABBHMHqwABA+4GagABA6UH6QABArYGaAABAmEFKAABAuYGhwABAusGgwABAt8GYAABAt0GRwABAvcGxgABArsGhwABAsEGgwABAaAGhwABAZ8GhwABAaUGgwABAwkGYAABAwQGgwABAvcGYAABAvUGRwABAuEGhwABAucGgwABAtgGRwABAt0GTwABAuEGZAABAuwGhwABAvEGgwABAuUGQgABAvAGeQABApsGeQABArMGTwABArYGZAABArQGQgABAr8GeQABAu4GgwABAuQGZAABAuIGQgABArMFKAABAwwGgwABAZkGYAABAZgGTwABAZsGZAABAZkGQgABA4AGgwABAZQGhwABAV4FKAABAw8GhwABAxMGeQABAvYGTwABAvkGZAABAwAGbAABAqsGhwABAnUFKAABAq8GeQABAsEGhwABAscGgwABAsUGeQABArgGeQABAtoGYAABAtkGTwABAtwGZAABAvIGxgABAuMGbAABA7IGgwABAr0GgwABArAGQgABArsGeQABAzEHXwABAtUFCgABAqgFCgABAZEE9QABArQFCgABAb4GFAABAq8GFAABAoIE9QABA6oE8gABAzQHawABA0MHqwABAesHawABA+cGPwABA1IHiAABA6cHiAABAuEGMQABAtgFAAABArwGKQABAksGVAABAZkGJwABAYUGQAABArYGUwABApUGRgABBFIHoAABA5EGaQABBEkHYAABA4gGKQABAzoHnwABApoGaQABAa0GMgABBEIHoAABBCEGaQABAz0HqwABA6wHqwABAsYGaQABAuYGVAABAyUE9QABAzIHOQABApwGEQABAv4GYQABAm4FCQABA0YGYQABAnEFCgABBGkHiAABA5kGMQABA2UHYAABAtgGKQABBD4GTAABA7kFCwABAzgHiAABAsAGRgABAzwHPQABApYFCwABAsIGKgABBGUHawABA5UGFAABAysHgAABApoGKAABA6MHcwABAt0GHAABA6MHawABAt0GFAABA4gHYgABAsYGKQABA2cGRwABApYFDAABA5QHZgABAsIGKwABA38HgQABArYGKQABA08HcwABApEGMQABA04HawABApEGKQABA1kHkAABApwGTgABA3cHawABAp0GFAABBDsHawABA50GFAABA4UIAAABA3QHnAABAucGZQABA2oHfQABAt0GRgABA1QICwABAtwGyQABAzYHhAABAr4GQgABA0MHpwABAssGZQABAgoICwABAbgGxwABAb0GTAABAaAGQAABA6cIAgABAuYGyQABApkFCgABA5cHngABAtUGZQABA4wHmgABAuIGaQABA6IH+gABAvgGyQABA4UHcwABAtsGQgABA1YGOwABAp0FCgABA4AIAAABAuoGyQABA4YHqwABAtwGVAABA5wICwABAvMGtAABA38HhAABAtUGLQABA1AGTAABAqYE9QABAmQFCgABA1EH/wABArAGyQABAzMHeAABApMGQgABAkwE9QABA0oGTAABAnAE9QABAw0GTAABAhYE9QABAwQGQAABAxcGTAABAlcFAAABAo4FCQABA3QHwAABAsgGaQABA6MHoAABAtkGaQABA20HcgABAuAGOwABAzwHfQABAsQGOwABAfIHfQABAaAGOQABA5AHdAABAs4GOwABAzEHcgABAjgGOwABA2kHcgABAtIGOwABArsGTAABAvsGTAABAxYGSwABAv4GTAABAsMGTAABA2EGTAABApUGSwABAy0HmgABAvkHqgABAvcGOwABAsMGSwABAawGPAABAa8GoQABBAwGQQABA+sFCgABA20GQQABAqMFCgABAzAHqwABAw0GXwABAv0GQQABAgMFCgABAwkGQwABAo0FCgABAv4GQAABAccFyQABAzQGQQABA0gHhAABAoMGOAABAxkGTAABAlQFAAABBBwGQQABA1sFCgABAwIGQQABAmsFCgABA1sGQwABAnMFKAABAtoFKAABAq4GRwABArIGRwABArgGhwABAWkFKAABAZcGRwABA0QFKAABAqkGhwABArEGZAABAn4FKAABAoIFKAABAxAGZAABA2IFKAABAsgFKAABAqsFKAABAn8FKAABApIFKAABAnAFKAABAtEFKAABArYFKAABAoEFKAABAw0GTwABAq4GTwABBBIGaQABAv4GhwABAosFKAABA60GhwABA6QGRwABArcGhwABAzkGQQABAqwFCgABAwcGTAABApAFCgABArAFKAABAoUFKAABAWsFCAAAAAEAAAAKAGQAJAAEREZMVAD4Y3lybAD4Z3JlawD4bGF0bgD8AB8BEAEYASABKAEwATgBOAFAAUgBUAFYAWABaAFwAXgBgAGIAZABmAGgAagBsAG4AcAByAHQAdgB0AHYAeAB6AAaYzJzYwGwY2NtcAI6ZGxpZwG2ZG5vbQG8ZnJhYwJKbGlnYQHCbGlnYQJCbG51bQHIbG9jbAHObG9jbAHUbG9jbAHabG9jbAHgbnVtcgHmb251bQHscG51bQHyc21jcAH4c3MwMQH+c3MwMgIEc3MwMwIK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","Roboto-Medium.ttf":"AAEAAAARAQAABAAQR0RFRqcXo6wAAcUkAAACWEdQT1PZu1sbAAHHfAAAiWpHU1VCzONMagACUOgAABXoT1MvMpfnsZMAAAGYAAAAYGNtYXAi3dtfAAAWsAAABqZjdnQgO/gmfQAAL7AAAAD+ZnBnbagFhDIAAB1YAAAPhmdhc3AACAAZAAHFGAAAAAxnbHlmG1U/IQAAOxAAAYYCaGVhZA0GDRkAAAEcAAAANmhoZWEK9hLmAAABVAAAACRobXR4WrZbwgAAAfgAABS4bG9jYYlXJ1YAADCwAAAKXm1heHAI3hDGAAABeAAAACBuYW1lYaKOkgABwRQAAAPicG9zdP9tAGQAAcT4AAAAIHByZXB5WM7TAAAs4AAAAs4AAQAAAAMDll+R1PFfDzz1ABsIAAAAAADE8BEuAAAAAOVdrQ/6Jv3VCWEIcwAAAAkAAgAAAAAAAAABAAAHbP4MAAAJbvom/j4JYQgAAAAAAAAAAAAAAAAAAAAFLgABAAAFLgCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEkQH0AAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/1AAIFsAAAAgAAAAAEdPT0cAQAAA//0GAP4AAGYHmgIAIAABnwAAAAAEOgWwAAAAIAADA4wAZAAAAAAAAAAAAf0AAAH9AAACHgCMAo4AYATTAFYEjABkBeQAZAUhAFUBVwBSAsUAgQLMACcDjAAcBHEAQgHKACICuABQAjkAhgMfAAEEjABoBIwAqgSMAFIEjABOBIwANwSMAH8EjABzBIwARASMAGcEjABdAhwAfwHrADMEEgA+BIAAjwQoAH4D5AA7By0AWwVOABEFDQCUBTkAZgU5AJQEhQCUBGgAlAVzAGsFrQCUAkQApQRyAC8FDgCUBFIAlAb/AJQFrQCUBYMAZQUbAJQFgwBgBQkAlATYAEsE4AAtBTwAgAUqABEHCwAvBQ0AJgTjAAgE0wBQAiwAhQNVABICLAALA24ANgOVAAICkAA4BFAAVgR/AH0ELQBOBIIAUARJAFEC0wArBIkAUgRyAHoCCgB8AgL/qwQsAH0CCgCMBvgAfAR0AHoEigBOBH8AfQSHAFAC1AB9BB4ASQKqAAoEcwB3A/gAFgXwACMEBgAfA+sADAQGAFECqwA4Af0ArwKrABwFTQB1Ah8AhQSCAGcEtQBfBZ4AXARAAA0B+ACJBPkAXAOSAGMGSQBaA5AAjgPjAFcEawB/BkoAWQPaAJ0DDwCBBEoAXAL1AD0C9QA3ApQAbwTBAJMD6gBJAkQAkAITAGwC9QCCA6cAeQPjAF4FygBfBiIAUwZcAGYD5QBGB37//ARCAEwFgQBpBM8AlQTrAIoGwgBIBKQAaASRAEMEhgBOBJEAgQTsAFAFsAAfAhcAkASaAI0EZAAgAlIAIAWXAJAEhgB9B7AAZQc+AFkCBwCJBY0AVQLQ/94FkQBbBJ0ATQWjAIAE5gB3AiX/rgQ5AFcD3gCQA6oAbgPaAJ0DfgB1AgoAgQKqAHgCTAApA84AdwMoAEsCcwCJAAD8kwAA/WIAAPx0AAD9OgAA/AgAAP0eAmsAzQQ7AG4CRACQBHQAmQXCABoFegBcBTUAIASMAGoFrgCZBIwARwX5AEwFsQBGBVkAbASEAFYEyACXBA0AHgSGAFEEZQBiBA8AWQSGAH0EpwB2AqUAowRoABUEGgBnBPwAMASGAIAEMwBQBI4AUAQqADwEXQB/BdEARgXMAFIGlABlBLQAeASH/+EGeQArBf0AJAVTAGcIgQAtCIwAmQZRAC0FpQCPBQcAkAX9ACYHqQAVBNsASQWmAJIFqAAsBQsAMgZfAE4F+ACOBYUAkQeaAJUH+gCVBiEAFQbwAJkFAgCQBUgAYwdiAKEE6AAXBIAAWgSLAI8DWwCDBPIAJwaHACAEFwBOBJIAhARsAI8ElAAgBgIAjwSRAIQEkgCEA/oAIwXUAFMEzwCEBGUAYAaNAIQG8QB9BSEAIAZvAI8EaQCPBDkAUAaCAJIEcAAuBHL/1wQ5AFIG1gAdBuQAhASG/+gEkgCEB1gAiAZqAHIEaP/hBygAmAYCAIYFFgAaBGMACwdLAKwGPQCaBuUAfgXdAIEJKgClB+4AkAQgACgD9QAyBXoAYASIAE0FGAAQBA0AHgV6AGAEhgBOB1QAiAZWAHUHWACIBmoAcgUQAGcERwBdBPsAcAAA/HAAAPx1AAD9gQAA/aYAAPomAAD6UQYgAJIFEwCEBGj/4QUQAJQEhgB9BGsAjwOjAH0E6gCZBCQAfQgjABUG4AAgBckAmQT7AI8FLgCRBKwAjQaUADQFoAA8BiAAlAUHAIQH3QCUBa0AfQhJAJcG7wB9BjcAZwUEAGAFOQAmBEEAHwcoACkFbwAnBfIAkQTcAGAFcACBBHQAdQWFAIkGGwAKBMT/ywUgAJEEeACNBh8ALAUUACAFrQCZBIYAfQYqAJQFEQCEB3UAlAZ0AI8FjQBVBKMAWwSkAF0EwwAsA6oAIwVpACYEcQAfBPkATwbzAGgG2wBfBlEAPQUoAC8EgwBKBEgAcwe8AEIGpAA/B/UAlAaeAHQFBgBcBC8AVQWoACEFHQBEBU4AfQZGACwFOwAgBVAAdAMbAGQEFAAACCkAAAQUAAAIKQAAArkAAAIKAAABXAAABH8AAAIwAAABogAAAQAAAADRAAAAAAAAArcAUAK3AFAFIwCcBioAewOaAAgBvwBlAboANwHOADUBowBLAwsAbQMTAEQDAAA1BFsAPwSaAF0CzACKA/0AjQWqAI0BzwBeB64AUAJ0AGwCaQBVA5kAKwL1AEwC9QA2AvUAUAL1AE4C9QA3AvUASwL1AEcDOQBQAvMAUALzAFACAwBTAgMAUANcAGcC9QBMAvUAggL1AD0C9QA3AvUANgL1AFAC9QBOAvUANwL1AEsC9QBHAzkAUALzAFAC8wBQAgMAUwIDAFAEtQBiBm4AIwa/AJkIlQCUBjsAIwabAH0EjABcBeoAIwQtACoEmwAkBWIATwV+ACsF5ABuA+MARQgpAJAFCABvBRQAlgY3AFsG3gBWBtAAXgasAFwEkwBhBYoApgTeAD8EgACcBJ0AOwhSAGECMv+nBJEAZQSAAI8EEgA9BCgAfQQOACUCUQCcAo4AZAHpAEcFGQArBK0AGgS9ACsHKAArBygAKwUPACsGtwBJAAAAAAgwAFkINQBcAvUAPQL1AIIC9QBMBB0ATwQdAFcEHQA4BB0AXwQdAGYEHQAzBB0APQQdAEMEHQCYBB0AWAQrAEEEPgAGBFwAEwYJACcEeQAIBIgAaQQ/ACUENwA/BGQAdQS9AE0EawB2BL0ATgTcAHYGBQB2A7cAdgReAHYD1gAmAf4AhgTdAHYEpwBWA8gAdgQ3AD8EaAA6A6UACgO8AHYEeQAIBL0ATgR5AAgDnQBGBNkAdgQeAEQFpgBPBVgATwTgAF4FkgAjBIAATwdWACQHWAB2BZkAJQTYAHYEcgB2BV4AJwZFABsERgBDBOIAdgRdAHYEywAkBEwAHwViAHYEjQBDBoQAdgcOAHYFYQAJBhYAdgRnAHYEgAA9Bo8AdgSEAEIEKAALBqMAGwSgAHYFDQB2BXQAIQX4AE4EVgAGBMQAEwaXACMEjQBDBI0AdgYAAA4EzgBNBEcAQwS9AE4EaAA6A/QARQgtAHYE9AAoAvUANwL1ADYC9QBQAvUATgL1ADcC9QBLAvUARwO2AI0CrgCYA+AAdgQ6AAwEtgBWBUEAmQUoAJkEMACBBTUAmQQoAIEEegB2BIAATwRgAHYEmgAIAf4AkAOhAHUAAPyeA/cAegP6/1EECwB5A/oAeQO8AHYDnQB1A50AdQL1AEwC9QA2AvUAUAL1AE4C9QA3AvUASwL1AEcFcwBpBZ4AaQV/AJkF2QBpBdoAaQQoAJYEggBrBFgADwS7ADQEawBnBC4AQgOhAHYBugBiBpgATgSvAG4CDP+nBIwAOASMAGgEjAAsBIwAYgSMAF8EjAA0BIwAbASMAFkEjABnBIwA5QIm/64CJf+uAhcAkAIX//oCFwCQBGAAdgTmAGAEMAA5BIgAfQQ+AE8ElQBOBJEATgSdAEkEkgB9BJoATgRJAFEEiQBQBFkANAOtAGEFDABfA8QABQZG/+wEBwB2BL0ATgUOADQE3AB2Af0AAAK4AFAFVwAXBVcAFwSQ//UE4AAtAqr/6wVOABEFTgARBU4AEQVOABEFTgARBU4AEQVOABEFOQBmBIUAlASFAJQEhQCUBIUAlAJE/8sCRAClAkT/ygJE/74FrQCUBYMAZQWDAGUFgwBlBYMAZQWDAGUFPACABTwAgAU8AIAFPACABOMACARQAFYEUABWBFAAVgRQAFYEUABWBFAAVgRQAFYELQBOBEkAUQRJAFEESQBRBEkAUQIX/7QCFwCQAhf/tAIX/6gEdAB6BIoATgSKAE4EigBOBIoATgSKAE4EcwB3BHMAdwRzAHcEcwB3A+sADAPrAAwFTgARBFAAVgVOABEEUABWBU4AEQRQAFYFOQBmBC0ATgU5AGYELQBOBTkAZgQtAE4FOQBmBC0ATgU5AJQFGABQBIUAlARJAFEEhQCUBEkAUQSFAJQESQBRBIUAlARJAFEEhQCUBEkAUQVzAGsEiQBSBXMAawSJAFIFcwBrBIkAUgVzAGsEiQBSBa0AlARyAHoCRP+0Ahf/nQJE/9ECF/+7AkT/3QIX/8YCRAAYAgr//wJEAJ8GtQClBAsAfARyAC8CJf+uBQ4AlAQsAH0EUgCUAgoAjARSAJQCCgBZBFIAlAKgAIwEUgCUAuYAjAWtAJQEdAB6Ba0AlAR0AHoFrQCUBHQAegR0/6MFgwBlBIoATgWDAGUEigBOBYMAZQSKAE4FCQCUAtQAfQUJAJQC1ABSBQkAlALUADYE2ABLBB4ASQTYAEsEHgBJBNgASwQeAEkE2ABLBB4ASQTYAEsEHgBJBOAALQKqAAoE4AAtAqoACgTgAC0C0gAKBTwAgARzAHcFPACABHMAdwU8AIAEcwB3BTwAgARzAHcFPACABHMAdwU8AIAEcwB3BwsALwXwACME4wAIA+sADATjAAgE0wBQBAYAUQTTAFAEBgBRBNMAUAQGAFEHfv/8BsIASAWBAGkEhgBOBHr/pQR6/6UEPwAlBJoACASaAAgEmgAIBJoACASaAAgEmgAIBJoACASAAE8D4AB2A+AAdgPgAHYD4AB2Af7/qAH+AIYB/v+nAf7/nATcAHYEvQBOBL0ATgS9AE4EvQBOBL0ATgSIAGkEiABpBIgAaQSIAGkEPgAGBJoACASaAAgEmgAIBIAATwSAAE8EgABPBIAATwR6AGED4AB2A+AAdgPgAHYD4AB2A+AAdgSnAFYEpwBWBKcAVgSnAFYE3QB2Af7/kQH+/68B/v+6Af4AFwH+AH0D1gAmBF4AdgO3AHYDtwB2A7cAdgO3AHYE3AB2BNwAdgTcAHYEvQBOBL0ATgS9AE4EZAB1BGQAdQRkAHUENwA/BDcAPwQ3AD8ENwA/BD8AJQQ/ACUEPwAlBIgAaQSIAGkEiABpBIgAaQSIAGkEiABpBgkAJwQ+AAYEPgAGBCsAQQQrAEEEKwBBBU4AEQTp/0IGEf9LAqj/TgWX/7UFR/9BBW3/wgKl/4UFTgARBQ0AlASFAJQE0wBQBa0AlAJEAKUFDgCUBv8AlAWtAJQFgwBlBRsAlATgAC0E4wAIBQ0AJgJE/74E4wAIBIQAVgRlAGIEhgB9AqUAowRdAH8EmgCNBIoATgTBAJMD+AAWBFkANAKl/8MEXQB/BIoATgRdAH8GlABlBIUAlAR0AJkE2ABLAkQApQJE/74EcgAvBSgAmQUOAJQFCwAyBU4AEQUNAJQEdACZBIUAlAWmAJIG/wCUBa0AlAWDAGUFrgCZBRsAlAU5AGYE4AAtBQ0AJgRQAFYESQBRBJIAhASKAE4EfwB9BC0ATgPrAAwEBgAf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NAD//wAGAAAEOAYeBiYB7gAAAAcARACKAB7//wAR/lcFPwWwBiYAJQAAAQcApAGAAAMAC7YDDgUBATlWACs0AP//AFb+XAP5BE4GJgBFAAABBwCkALQACAALtgI7MQAATVYAKzQA//8AlP5eBE0FsAYmACkAAAEHAKQBQgAKAAu2BBACAABDVgArNAD//wBR/lQECgROBiYASQAAAQcApAEFAAAAC7YBLAAAAE1WACs0AP//AAj+VASRBI0GJgJOAAAABwCkASIAAP//AHb+XAO2BI0GJgJDAAAABwCkAPEACP//AHj+oQGLBDoGJgCNAAABBwCtA1oACgAOtAEHAgEBuP9/sFYAKzQAAQCyAIkEJAP7AA8ACLEIAAAvLzAxZSImJjU0NjYzMhYWFRQGBgJresh3d8h6esh3d8iJd8h6esh3d8h6esh3AAEAkwAABEEDrwADAAizAQAScgArL3MRIRGTA64Dr/xRAAAEAGT/7wWoBcIAEAAYACAAKgAXQAkgECQIGBAcCBAALy8zETMRMxEzMDF3NjY3JRE2NjcRFAYHBwYGBwU2NjclBgYHATY2NwEGBgcBETY2NxElBgYHZAIcGAGFKGs3CglPEjYgAU0FGhkCBAQdF/s+AR4YBMMEHhf9/yloOgFvBB0XeTpvMlMDfTVSF/wKDx4MeRojBug4cTNtOXIvAa07bjIBAzpxMv44A5I1URr8yE44czEAAAIAsgCJBCQD+wAPAB8AELcAEGoIGGoIAAAvLysrMDFlIiYmNTQ2NjMyFhYVFAYGJzI2NjU0JiYjIgYGFRQWFgJresh3d8h6esh3d8h6ZqViYqVmZaZiYqaJd8h6esh3d8h6esh3TGKmZWalYmKlZmWmYgAAAAAAABEA0gADAAEECQAAALIAAAADAAEECQABABoAsgADAAEECQACAA4AzAADAAEECQADABoAsgADAAEECQAEABoAsgADAAEECQAFACYA2gADAAEECQAGABoBAAADAAEECQAHAEABGgADAAEECQAIAAwBWgADAAEECQAJACYBZgADAAEECQALABQBjAADAAEECQAMABQBjAADAAEECQANASIBoAADAAEECQAOADYCwgADAAEECQAQAAwC+AADAAEECQARAAwDBAADAAEECQAZAAwC+ABDAG8AcAB5AHIAaQBnAGgAdAAgADIAMAAxADEAIABUAGgAZQAgAFIAbwBiAG8AdABvACAAUAByAG8AagBlAGMAdAAgAEEAdQB0AGgAbwByAHMAIAAoAGgAdAB0AHAAcwA6AC8ALwBnAGkAdABoAHUAYgAuAGMAbwBtAC8AZwBvAG8AZwBsAGUAZgBvAG4AdABzAC8AcgBvAGIAbwB0AG8ALQBjAGwAYQBzAHMAaQBjACkAUgBvAGIAbwB0AG8AIABNAGUAZABpAHUAbQBSAGUAZwB1AGwAYQByAFYAZQByAHMAaQBvAG4AIAAzAC4AMAAxADQAOwAgADIAMAAyADUAUgBvAGIAbwB0AG8ALQBNAGUAZABpAHUAbQBSAG8AYgBvAHQAbwAgAGkAcwAgAGEAIAB0AHIAYQBkAGUAbQBhAHIAawAgAG8AZgAgAEcAbwBvAGcAbABlAC4ARwBvAG8AZwBsAGUAQwBoAHIAaQBzAHQAaQBhAG4AIABSAG8AYgBlAHIAdABzAG8AbgBHAG8AbwBnAGwAZQAuAGMAbwBtAFQAaABpAHMAIABGAG8AbgB0ACAAUwBvAGYAdAB3AGEAcgBlACAAaQBzACAAbABpAGMAZQBuAHMAZQBkACAAdQBuAGQAZQByACAAdABoAGUAIABTAEkATAAgAE8AcABlAG4AIABGAG8AbgB0ACAATABpAGMAZQBuAHMAZQAsACAAVgBlAHIAcwBpAG8AbgAgADEALgAxAC4AIABUAGgAaQBzACAAbABpAGMAZQBuAHMAZQAgAGkAcwAgAGEAdgBhAGkAbABhAGIAbABlACAAdwBpAHQAaAAgAGEAIABGAEEAUQAgAGEAdAA6ACAAaAB0AHQAcABzADoALwAvAG8AcABlAG4AZgBvAG4AdABsAGkAYwBlAG4AcwBlAC4AbwByAGcAaAB0AHQAcABzADoALwAvAG8AcABlAG4AZgBvAG4AdABsAGkAYwBlAG4AcwBlAC4AbwByAGcAUgBvAGIAbwB0AG8ATQBlAGQAaQB1AG0AAAADAAAAAAAA/2oAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAgAIAAj//wAPAAEAAgAOAAAAAAAAAigAAgBZACUAPgABAEQAXgABAGoAagABAHAAcAABAHUAdQABAIEAgQABAIMAgwABAIYAhgABAIkAiQABAIsAlgABAJgAnwABAKEAowABAKUApgABAKgArQADALEAsQABALoAuwABAL8AvwABAMEAwQABAMMAxAABAMcAxwABAMsAywABAM0AzgABANAA0QABANMA0wABANoA3gABAOEA4QABAOUA5QABAOcA6QABAOsA+wABAP0A/QABAP8BAQABAQMBAwABAQgBCQABARYBGgABARwBHAABASABIgABASQBJwADASoBKwABATMBNAABATYBNgABATsBPAABAUEBRAABAUcBSAABAUsBTQABAVEBUQABAVQBWAABAV0BXgABAWIBYgABAWQBZAABAWgBaAABAWoBbAABAW4BbgABAXABcAABAdYB3AACAe0CAQABAgUCBQABAg4CDgABAhACEAABAhcCGQABAhsCHAABAh4CHgABAiICIgABAiQCJgABAiwCLAABAjECMwABAjUCNQABAkMCQwABAkYCRgABAkgCSAABAksCTgABAnoCfgABAo4CkwABApYC/gABAwEDwAABA8IDwgABA8QDzgABA9AD2QABA9sD9gABA/oD+gABA/wEAwABBAUEBwABBAoEDgABBBAEmwABBJ4EnwABBKEEogABBKQEpwABBLEFDQABBQ8FGQABBRwFKQABAAEAAwAAABAAAAAWAAAAIAABAAEArQACAAEAqACsAAAAAgACAKgArAAAASQBJwAFAAEAAAAaADQACgAHAEQAXABmAEwAVABwAHoABERGTFQAdGN5cmwAdGdyZWsAdGxhdG4AdAAEY3BzcABea2VybgBkbWFyawBsbWttawB0AAEAAAABAGIABAAAAAEAZAAEAAAAAQBoAAIACAACAMIEogACAAgAAgB6AJYABgAQAAEAWAAAAAYAEAABAFoAAgBqAAAAAAABAAAAAAACAAIAAQAAAAIAAwAEAAAAAgAFAAYAARXGAAUAJABIAAERLhISAAERNDgKAAERXBPSAAERbEsMAAERFhEWAAERHBEiAAERRBEmAAERVBE4AAERJAAEAAAAAhEOERQAAP//AAQAAAABAAIAAwACEVIABAAAEXYRngADAAMAAP+v/4gAAP8sAAAAAP+IAAAAAV4oAAQAAAHrGjgXYBdgHmYeDBewF+4YwBfSWooZABkAHCAYEhkAGQAYwBkiJ0IgAiZ4GAAYKB2yH5AYPhtKGN4YiBecMJYXfi10F7oXuhlqGIgX4B8qGKIYVBdmGKIbkBiIGMAgeCWyHQYYwB4MLHYudim8JEoXSBiiF4hRFBe6RCQrhC94GG4XThdUU/4XWhrSGmYg+kYWNFhAdDMKGQA9HEhIHbIoEBkAGQAb1hkAGQAZAD7GIYQZABoOJOwjJh7IKp4juBemKOYXZhmQQkpW/BiIGwwxzCIOGUQYiCKYGbodXBqcGUQeDBlqGAAYohnkGIglshemHbIXZhwgHCAcIBkAHbIXZhkAGQAYwBemHbIXZhdgNfoXYBdgF2AXeBxqHLgXcheSF2wXchdsF8QXbBfuGMAYwBjAGMAmeB4MHgweDB4MHgweDB4MF+4X0hfSF9IX0hkAGQAZABkAGQAYwBjAGMAYwBjAH5AY3hjeGN4Y3hjeGN4Y3hecF5wXnBecF7oZahlqGWoZahlqGKIYoh4MGN4eDBjeHgwY3hfuF+4X7hfuGMAX0hecF9IXnBfSF5wX0hecF9IXnBkAF7oZABkAGQAZABkAHCAYEhgSGBIYEhkAF7oZABe6GQAXuhe6GMAZahjAGWoYwBlqF+AX4BfgJngmeCZ4GCgfkBiiH5AYPhg+GD4XchdyF3gXbBdsF2wXbBdsF2wXbBdyF3IXchdyF3IXbBdsF2wXcheSF5IXkheSF3IXchdyF3geDBfSGQAZABjAH5AeDBewF9IYPhkAGQAcIBkAGQAYwBkiJngfkB2yGQAfkBe6GWoYohlqF9IlshkAGQAcIBwgG9YeDBewJbIX0hkAGQAYwBkiF+4meB2yGN4XnBlqGIgYohdmF5wXphiiGCgYKBgoH5AYohdgF2AXYBkAF7oeDBjeF9IXnBgAGKIX7h+QGKIZAB2yF2YZAB4MGN4eDBjeF9IXnBecF5wdshdmGMAZahlqGIgb1hiiG9YYohvWGKIeDBjeHgwY3h4MGN4eDBjeHgwY3h4MGN4eDBjeHgwY3h4MGN4eDBjeHgwY3h4MGN4X0hecF9IXnBfSF5wX0hecF9IXnBfSF5wX0hecF9IXnBkAGQAYwBlqGMAZahjAGWoYwBlqGMAZahjAGWoYwBlqGWofkBiiH5AYoh+QGKImeCWyF6YXuhoOJbIcIB+QGQAXuh4MGN4X0hkAGMAZahfgF7AYiBjAGMAZABe6HCAcIBgSGQAXuhkAF7oYwBkiGIgX4CZ4GAAYohgAGKIYKBg+GMAXbBdyF2wXeBdsF3IXeAACXgYABAAA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AUIATwFMAU0AUQFYAVgAUwFiAWIAVAFkAWQAVQFqAWwAVgFuAW4AWQHtAgEAWgIOAg4AbwIYAhgAcAIbAhsAcQIsAiwAcgIyAjMAcwJDAkMAdQJGAkYAdgJIAkgAdwJLAk4AeAJ6An4AfAKOApMAgQKWAv4AhwMBAwEA8AMDA0YA8QNLA6gBNQOqA7oBkwO8A7wBpAO/A8ABpQPCA8IBpwPGA8YBqAPIA8kBqQPLA84BqwPQA9ABrwPSA9MBsAPVA9UBsgPXA9kBswPbA+ABtgPiA+cBvAPpA+wBwgPuA/YBxgP6A/oBzwP8BAAB0AQCBAIB1QQKBA4B1gQQBBAB2wQTBBcB3AQaBB4B4QQhBCIB5gQnBCgB6AQwBDAB6gQyBDIB6wQ0BDQB7AQ5BJMB7QSZBJsCSAShBKICSwSkBKUCTQSnBKcCTwSxBMACUATCBP4CYAUABQQCnQUGBQcCogUJBQkCpAULBQ0CpQUPBRcCqAUcBSkCsQACAE8AJQA+AAAARQBeABoAgQCBADQAgwCDADUAhgCGADYAiQCJADcAiwCWADgAmACdAEQAsQCxAEoAuwC7AEsAvwC/AEwAwQDBAE0AwwDDAE4AxwDHAE8AywDLAFAAzQDOAFEA0ADRAFMA0wDTAFUA2gDcAFYA3gDeAFkA4QDhAFoA5QDlAFsA5wDpAFwA6wD7AF8A/QD9AHAA/wEBAHEBAwEDAHQBCAEJAHUBFgEaAHcBHAEcAHwBIAEiAH0BKgErAIABQQFCAIIBSwFLAIQBWAFYAIUBYgFiAIYBZAFkAIcBaAFoAIgBagFsAIkBbgFuAIwB7QIBAI0CBQIFAKICEAIQAKMCFwIZAKQCHAIcAKcCHgIeAKgCIgIiAKkCJAImAKoCLAIsAK0CMQIxAK4CMwIzAK8CNQI1ALACQwJDALECRgJGALICSAJIALMCSwJOALQCegJ+ALgCjgKTAL0ClgL+AMMDAQOnASwDqQPAAdMDwgPCAesDxAPOAewD0APZAfcD2wP2AgED+gP6Ah0D/AQDAh4EBQQHAiYECgQOAikEEASYAi4EmwSbArcEngSfArgEoQSiAroEpASnArwEsQTsAsAE7gUNAvwFDwUWAxwFGAUZAyQFHAUpAyYAAQD7AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQFxAbIBuAG9AcAClgKXApkCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0ArUC0gLUAtYC2ALaAtwC3gLgAuIC5ALmAugC6gLsAu4C8ALyAvQC9gL4AvoC/AL+Av8DAQMDAwUDBwMJAwsDDQMPAxEDFAMWAxgDGgMcAx4DIAMiAyQDJgMoAyoDLAMuAzADMgM0AzYDOAM6AzwDPgNAA0EDQwNFA0cDSQOiA6MDpAOlA6YDpwOoA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A7kDyQPKA8sDzAPNA84DzwPQA9ED0gPTA9QD1QPWA9cD2APZA9oD2wPcA90D3gPvA/ED8wP1BAoEDAQOBCMEKQQvBJkEngSiBSMFJQABAMQADgABAPb/zQABAMoAEwABAPb/3AABAFsACwABARz/8QABAfH/xwABAfH/8QABAfEADQACAPb/yAGG/6cAAgDK//QA9v/YAAIB8f+3Afb/8AACAPb/9QGG/7YAAgDt/6UBHP/uAAIBEQALAWz/5gACAPb/yAGG/6EAAwHw//UB8f/uA5z/9QADAEr/7gBb/+oB8f/wAAMASgARAFgAMgBbABEABAAN/+YAQf/0AGH/7wFN/+0ABAANABQAQQARAFb/4gBhABMABQBb/7MB8f95Afb/8QIA//ECTP/zAAUADQAPAEEADABW/+sAYQAOAkz/6QAFAFv/5QC4/8sAzf/kAgD/6wJM/+0ABgAQ/4QAEv+EAYf/hAGL/4QBj/+EAZD/hAAGAMr/6gDt/+4A9v+6AP7/+QE6/+wBbf/sAAYAyv/qAO3/7gD2/74A/v/5ATr/7AFt/+wABwBKAA0Avv/5AMYACwDH/+oAygAMAO3/yAEc//EABwCB/98Atf/zALf/8ADE/+oA2f/fAOb/4AFs/+AACAD2//AA/v/6AQn/8QEg//MBOv/xAWP/8wFl/+0Bbf/eAAgA2QAVAO0AFQFJ/+QBSv/lAUz/5AFi/+MBZP/iAWz/5AAIAFgADgCB/1YAvv/5AMT/xADH/9oA2f9xAO3/ngFf/9wACQD2/50A/v/rAQn/0wEg/9sBOv8+AUr/ugFj//ABZf/yAW3/UAAJAMr/6gDt/7gA9v/nAQn/8AEg//EBOv/rAWP/9QFt/+wBhv+kAAoABv/1AAv/9QGF//UBhv/1AYj/9QGJ//UBiv/1A/f/9QP4//UD+//1AAoABv/WAAv/1gGF/9YBhv/WAYj/1gGJ/9YBiv/WA/f/1gP4/9YD+//WAAoABv/qAAv/6gGF/+oBhv/qAYj/6gGJ/+oBiv/qA/f/6gP4/+oD+//qAAoA5v/DAPb/zwD+//ABOv/OAUn/5wFM/98BYv/RAWT/7AFs/6ABbf/RAAsAOP/RANL/0QDW/9EBOf/RAUX/0QMq/9EDLP/RAy7/0QPd/9EEk//RBNv/0QANAFz/8gBe//IA7v/yATT/8gFE//IBXv/yA0L/8gNE//IDRv/yA+b/8gQS//IEIP/yBOX/8gANAPb/mgD5/9YA/v/yAQn/0wEg/9sBOv8+AUj/1gFK/7oBY//wAWX/8gFt/1AENv/WBJb/1gAOAFz/7QBe/+0A7v/tAPb/sgE0/+0BRP/tAV7/7QNC/+0DRP/tA0b/7QPm/+0EEv/tBCD/7QTl/+0ADwDtABQA8gAQAPb/8AD5//AA/v/6AQEAEAEEABABOv/sAUj/8AFK/+IBUQAQAW3/8AFwABAENv/wBJb/8AARAC7/7gA5/+4Csf/uArL/7gKz/+4CtP/uAwH/7gMw/+4DMv/uAzT/7gM2/+4DOP/uAzr/7gPO/+4Efv/uBID/7gTd/+4AEQAu/+wAOf/sArH/7AKy/+wCs//sArT/7AMB/+wDMP/sAzL/7AM0/+wDNv/sAzj/7AM6/+wDzv/sBH7/7ASA/+wE3f/sABIA2f+uAOYAEgDr/+AA7f+tAO//1gD9/98BAf/SAQf/4AEc/84BLv/dATD/4gE4/+ABQP/gAUr/6QFN/9oBX/+9AWn/3wFsABEAEgBb/8EAuP/FAMr/tADq/9cA9v+5AP7/6QEJ/7IBHP/SASD/yAE6/6ABSv/FAVj/5AFj/8wBZf/MAW3/ywFu/+8CAP/mAkz/6AATAe7/7gHw//UB8f/xAfP/8gIP//ICE//y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/+wEAv/sBAj/7AQN/+wEG//sBB3/7AQe/+wEKv/sBDn/7ART/+wEVf/sBFf/7ARZ/+wEW//sBF3/7ARf/+wEYf/sBHX/7AR3/+wEef/sBH3/7AS4/+wExf/sBMf/7ABAACf/5gAr/+YAM//mADX/5gCD/+YAk//mAJj/5gCz/+YAuP/CAMQAEADT/+YBCP/mARf/5gEb/+YBHf/mAR//5gEh/+YBQf/mAWr/5gJg/+YCYf/mAmP/5gJk/+YCov/mAqz/5gKt/+YCrv/mAq//5gKw/+YC2P/mAtr/5gLc/+YC3v/mAuz/5gLu/+YC8P/mAvL/5gMU/+YDFv/mAxj/5gNJ/+YDpv/mA7P/5gPZ/+YD3P/mBAn/5gQM/+YEJ//mBCn/5gQr/+YEZv/mBGj/5gRq/+YEbP/mBG7/5gRw/+YEcv/mBHT/5gR2/+YEeP/mBHr/5gR8/+YEu//mBNT/5gBHABAABAASAAQAR//nAEj/5wBJ/+cAS//nAFX/5wCU/+cAmf/nALv/5wDEAA8AyP/nAMn/5wD3/+cBA//nAR7/5wEi/+cBQv/nAWD/5wFh/+cBa//nAYcABAGLAAQBjwAEAZAABAK9/+cCvv/nAr//5wLA/+cCwf/nAtn/5wLb/+cC3f/nAt//5wLh/+cC4//nAuX/5wLn/+cC6f/nAuv/5wLt/+cC7//nAvH/5wLz/+cDuv/nA+D/5wPk/+cD5//nBAL/5wQI/+cEDf/nBBv/5wQd/+cEHv/nBCr/5wQ5/+cEU//nBFX/5wRX/+cEWf/nBFv/5wRd/+cEX//nBGH/5wR1/+cEd//nBHn/5wR9/+cEuP/nBMX/5wTH/+cATQAGABAACwAQAA0AFABBABIAR//oAEj/6ABJ/+gAS//oAFX/6ABhABMAlP/oAJn/6AC7/+gAyP/oAMn/6AD3/+gBA//oAR7/6AEi/+gBQv/oAWD/6AFh/+gBa//oAYUAEAGGABABiAAQAYkAEAGKABACvf/oAr7/6AK//+gCwP/oAsH/6ALZ/+gC2//oAt3/6ALf/+gC4f/oAuP/6ALl/+gC5//oAun/6ALr/+gC7f/oAu//6ALx/+gC8//oA7r/6APg/+gD5P/oA+f/6AP3ABAD+AAQA/sAEAQC/+gECP/oBA3/6AQb/+gEHf/oBB7/6AQq/+gEOf/oBFP/6ARV/+gEV//o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ABAETAAQBE4AEARQABAEZv/oBGj/6ARq/+gEbP/oBG7/6ARw/+gEcv/oBHT/6AR2/+gEeP/oBHr/6AR8/+gEjP/fBI7/3wSQ/98Ek//gBJX/4QSW/+AEov/fBLUAEAS7/+gE1P/oBNv/4ATe/+AE4P/gAzQ9bjv6OWY8Bj16O441uDwSOqQ4uDwqPDY8QjxOPMA7+jMYPGY8cjx+PIo8nDyoO3w7djy0PXQ8ADlsPAw9gDLENb48GDqqOOg8MDw8PEg8VDxUONAyyjxsPHg8hDr4PKI8rjuCOzo8ujmKMtA5kDLWMtwy4j2SOIgy6DLuPE48VDL0MvozADMGOuw68jsuOzQ0kjmoO2o4djuIOHw4gjMMOJo5SDigO/QzEjMYMx45WjMkMyo7XjMwMzYzPDNCM0g7cDNOM1Q5YDNaM2AzZjNsM3IzeDtYM34zhDtkM5YzijOQOWwzljOcM6IzqDOuM7Q58Dn2M7ozwDPGM8wz0jPYM94z5DPqM/Az9jP8NAI0CDQONCA0FDQaNCA9ID04PSY0JjQsOEw9ID1WPMY0Mj0aPRQ8zD0ON/I8xjzwPOQ9MjfCNDg9AjQ+NEQ9LDRKNFA0VjRcNGI0aDRuNHQ0ejSANIY9jDSMPDA3FD2GPQI9hjSSNJI9kj2SPZI0mDSeNKQ9FDSqPMw8BjwGPBg8fjyENLA0sDpcNLY5fjS8PW45ZjkwOTA6jDimNMI0wjTIOLI0zjTUNNQ6vDTaOeQ04DTgNOY07DkSNPI08jpiNPg5hDT+PXQ5bDk8OTw6kjjWNQQ1BDUKOOI1EDumO6Y6wjUWOeo1HDUcNSI1KDkYOiY1LjU0Omg6bj1uPXQ1OjVANUY1TDVSNVg1XjVkNWo8DDVwNXY5ljmcNXw1gj16PYA1iDWONZQ1mjWgNaY1rDWyNbg1vjXENco10DXWNdw14jXoNe46pDqqNfQ1+jYAPCo8MDYGNgw8Njw8PDY8PDw2PDw7oDumPE48VDYSNhg8VDYeNiQ2KjYwNjY2PDZCNkg8ZjxsNk42VDZaNmA2ZjZsPHI8eDxyPHg2cjZ4PH48hDx+PIQ2fjyENoQ2ijaQNpY2nDaiNqg2rja0Nro8ijr4NsA2xjbMNtI4cDbYNt425DbqNvA29jb8NwI3CDcONxQ3FD0gN3o3ejeANxo3IDcmPYY9hjcsNyw3MjzYNzg3ODc+POo3RD1QPVA3SjdQN1Y3XDdcN2I3aD1oN243dD2GN3o3gDeGN4w3kjeYN543pD2MN6o3sDe2N7w3wjfIN8431DfaPOQ34DfmPMY37DfyN/I38jf4PMw3/jgEOAo4EDz2PMY4FjgcOCI9VjgoPSA4aj0gOC44NDg6OEA4RjhMOFI4WDzSOF44ZDhqPW49ejwSOqQ8wDt2OII9bjv6PXo8tDwSOqQ8KjxCPE48wDv6PH47djt8OLI4cDh2O4g4fDiCOJo4iDxUPKI4jjiUPFQ4mjigOKY4rDxyOqQ4sji4PB44vj1uO/o7aj16OMQ8QjwSPMA7+jlmPH47fD10PYA4yjxUONA5bDs6O4I41jjcPHg6qjjiOOg47jj0OPo5ADj6OQA5BjkMORI5GDkeOSQ5Kj1uPXQ5MDk2OTw5QjlIOU45VDlaOWA5ZjlsO3Y6pDlyOXg6pDpoOm45fjmEOYo5kDmWOZw5ojmoOa45tDm6OcA5xjnMOdI52DneOeQ56jnwOfY5/DoCOgg6DjoUOho6IDomOiw6Mjo4Oj46RDpKPAw9bj10OlA6Vj1uPXQ9bj10PW49dD1uPXQ6XDpiPW49dD1uPXQ9bj10PW49dDpoOm49ej2AOnQ6ejqAOoY9ej2APXo9gD16PYA9ej2AOow6kjqYOp46pDqqPMA8VDqwOrY8wDxUPMA8VDzAPFQ8wDxUOrw6wjrIOs46yDrOOtQ62jrgOuY67DryPIo6+Dr+OwQ7CjsQOwo7EDsWOxw7IjsoOy47NDt2Ozo7QDtGO0w7UjwMPH47WDteO2Q7ajtwPBg7ajtwPDA7djt8O4I7iDuOO5Q7mjugO6Y7rDuyO7g7vjvEO8o70DvWO9w74jvoO+479Dv6PAA8BjwMPAY8DDwSPBg8HjwkPCo8MDw2PDw8QjxIPE48VDzAPFo8YDxmPGw8cjx4PH48hDyKPJA8ljycPKI8qDyuPLQ8ujzAPYY9jD0yPOQ9FD04PYY9Aj2MPSA9MjzkPMY9DjzMPRQ9Gj0gPTg9JjzqPNI82DzePVY85DzqPPA89jz8PYY9Aj0CPYw9CD0OPTI9FD0aPYY9ID0mPSw9Mj2GPTg9Pj1EPUo9UD1WPVw9XD1iPWg9bj10PXo9gD2GPYw9kgC6AEf/3ABI/9wASf/cAEv/3ABR/+EAUv/hAFP/1gBU/+EAVf/cAFn/3QBa/+EAXf/hAJT/3ACZ/9wAm//dALv/3AC9/+EAvv/1AL//5gDB/+EAwv/rAMP/6QDF//AAxv/nAMj/3ADJ/9wAyv/jAMv/3QDM/84Azf/UAM7/2wDs/+EA8P/hAPH/4QDz/+EA9P/hAPX/4QD3/9wA+P/hAPr/4QD7/+EA/v/hAQD/4QED/9wBBf/hARj/1gEa/+EBHv/cASL/3AEr/+EBNv/hATz/4QE+/+EBQv/cAVP/4QFV/+EBV//hAVz/4QFg/9wBYf/cAWv/3AK9/9wCvv/cAr//3ALA/9wCwf/cAsb/4QLH/9YCyP/WAsn/1gLK/9YCy//WAsz/3QLN/90Czv/dAs//3QLQ/+EC0f/hAtn/3ALb/9wC3f/cAt//3ALh/9wC4//cAuX/3ALn/9wC6f/cAuv/3ALt/9wC7//cAvH/3ALz/9wDDv/hAxD/4QMS/+EDE//hAxX/1gMX/9YDGf/WAzH/3QMz/90DNf/dAzf/3QM5/90DO//dAz//4QO6/9wDvP/hA77/3QPA/9YDwv/hA8X/3QPG/9YDx//dA+D/3APh/+ED4v/WA+P/4QPk/9wD5f/hA+f/3APo/+ED7f/hA+7/4QP2/+ED/f/hBAL/3AQD/+EEB//hBAj/3AQN/9wED//hBBv/3AQd/9wEHv/cBCT/4QQm/+EEKP/WBCr/3AQs/9YEMP/hBDL/4QQ0/+EEOP/hBDn/3ART/9wEVf/cBFf/3ARZ/9wEW//cBF3/3ARf/9wEYf/cBGf/1gRp/9YEa//WBG3/1gRv/9YEcf/WBHP/1gR1/9wEd//cBHn/3AR7/9YEff/cBH//3QSB/90Eg//dBIX/3QSH/90Eif/dBIv/3QSN/+EEj//hBJH/4QSY/+EEtP/hBLj/3AS8/9YEwP/dBMX/3ATH/9wE0f/hBNP/4QTf/+EE4f/hAL8ABgAMAAsADABH/+gASP/oAEn/6ABKAAwAS//oAFP/6gBV/+gAWgALAF0ACwCU/+gAmf/oALv/6AC9AAsAvv/0AMT/1wDGAAsAyP/oAMn/6ADKAAwA9//oAQP/6AEY/+oBGgALAR7/6AEi/+gBQv/oAWD/6AFh/+gBa//oAYUADAGGAAwBiAAMAYkADAGKAAwB7gANAfEADQHzAA4B9P/1Afb/7AH4/+0CAP/sAgb/vwIH/+0CCP+/Ag8ADgIQ/+0CEwAO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AtT/TgLV/94C1v9OAtf/3gLZ/+sC2//rAt3/6wLf/+sC4f/rAuP/6wLl/+sC5//rAun/6wLr/+sC7f/rAu//6wLx/+sC8//rAwH/DQMV/+sDF//rAxn/6wMqABQDLAAUAy4AFAMx/+oDM//qAzX/6gM3/+oDOf/qAzv/6gM//+gDTv/AA0//wANQ/8ADUf/AA1L/wANT/8ADVP/AA2n/wANq/8ADa//AA6L/TgOq/04Duv/rA77/6gPA/+sDwv/oA8X/6gPG/+sDx//qA87/DQPS/04D3QAUA9//3gPg/+sD4v/rA+T/6wPl/+gD5//rA+7/6AP2/+gD/v9OA///3gQC/+sEB//oBAj/6wQN/+sED//oBBT/TgQV/94EFv9OBBf/3gQb/+sEHf/rBB7/6wQo/+sEKv/rBCz/6wQw/+gEMv/oBDT/6AQ5/+sEOv9OBDv/3gQ8/04EPf/eBD7/TgQ//94EQP9OBEH/3gRC/04EQ//eBET/TgRF/94ERv9OBEf/3gRI/04ESf/eBEr/TgRL/94ETP9OBE3/3gRO/04ET//eBFD/TgRR/94EU//rBFX/6wRX/+sEWf/rBFv/6wRd/+sEX//rBGH/6wRn/+sEaf/rBGv/6wRt/+sEb//rBHH/6wRz/+sEdf/rBHf/6wR5/+sEe//rBH3/6wR//+oEgf/qBIP/6gSF/+oEh//qBIn/6gSL/+oEjf/oBI//6ASR/+gEkwAUBLX/TgS2/94EuP/rBLz/6wTA/+oExf/rBMf/6wTbABQE3//oBOH/6ATn/8AE7v/ABQb/wAACAJ8ABAAEAAAABgAGAAEACwAMAAIAJQAqAAQALAAtAAoALwA2AAwAOAA4ABQAOgA/ABUARQBGABsASQBKAB0ATABMAB8ATwBPACAAUQBUACEAVgBWACUAWABYACYAWgBdACcAXwBfACsAigCKACwAlgCWAC0AnQCdAC4AsQC1AC8AtwC5ADQAuwC7ADcAvQC+ADgAwADBADoAwwDFADwAxwDOAD8A0gDSAEcA1ADeAEgA4ADvAFMA8QDxAGMA9gD4AGQA+wD8AGcA/gEAAGkBAwEFAGwBCgEKAG8BDQENAHABGAEaAHEBIgEiAHQBLgEwAHUBMwE1AHgBNwE3AHsBOQE5AHwBOwE7AH0BQwFEAH4BVAFUAIABVgFWAIEBWAFYAIIBXAFeAIMBhQGGAIYBiAGKAIgB8wHzAIsB9QH2AIwB+AH4AI4B+wH7AI8CBgIIAJACSwJLAJMCTgJOAJQCYAJgAJUCYgJjAJYClgKXAJgCmQKZAJoCmwKwAJsCtQK8ALECvgLBALkCxgLLAL0C0ALYAMMC2gLaAMwC3ALcAM0C3gLeAM4C4ALgAM8C4gLrANAC9AL2ANoC+AL4AN0C+gL6AN4C/AL8AN8C/gL+AOADAwMDAOEDBQMFAOIDBwMHAOMDCQMJAOQDCwMLAOUDDQMZAOYDGwMbAPMDHQMdAPQDHwMfAPUDKgMqAPYDLAMsAPcDLgMuAPgDPAM8APkDPgNBAPoDQwNDAP4DRQNFAP8DSwNUAQADXwNjAQoDaQNrAQ8DcANwARIDggOFARMDiQOLARcDlAOUARoDogOnARsDqgO5ASEDvAO8ATEDwAPAATIDwgPCATMDxgPGATQDyQPKATUDzAPNATcDzwPVATkD1wPZAUAD2wPgAUMD4gPjAUkD5QPoAUsD7gPvAU8D8QPxAVED8wPzAVID9QP4AVMD+wQAAVcEAgQCAV0EBgQHAV4EDAQMAWAEDgQXAWEEGgQbAWsEHQQgAW0EJwQoAXEELAQsAXMELgQ0AXQEOgRiAXsEZARkAaQEZgRzAaUEewR7AbMEjASRAbQEkwSTAboElwSYAbsEmwSbAb0EnQSeAb4EoASgAcAEogSiAcEEswS3AcIEuQS5AccEuwS8AcgEvgS+AcoEwgTEAcsExgTGAc4EyATKAc8EzATMAdIEzgTOAdME0ATWAdQE2ATYAdsE2wTbAdwE3gTiAd0E5ATkAeIE5gTnAeME6wTrAeUE7gTuAeYE+QT5AecFBgUGAegFDQUNAekFEQURAeoAAgCaAAYABgAAAAsACwABABAAEAACABIAEgADACUAKQAEACwANAAJADgAPgASAEUARwAZAEkASQAcAEwATAAdAFEAVAAeAFYAVgAiAFoAWgAjAFwAXgAkAIoAigAnAJYAlgAoALEAtAApAL0AvQAtAMEAwQAuAMcAxwAvANQA1QAwANcA1wAyANoA2gAzANwA3gA0AOAA5gA3AOwA7AA+AO4A7gA/APcA9wBAAPwA/ABBAP4A/wBCAQQBBQBEAQoBCgBGAQ0BDQBHARgBGgBIAS4BMABLATMBNQBOATcBNwBRATkBOQBSATsBOwBTAUMBRABUAVQBVABWAVYBVgBXAVgBWABYAVwBXgBZAYUBiwBcAY8BkABjAfMB8wBlAfgB+ABmAfsB/ABnAgYCCABpAhoCGgBsAikCKwBtAksCSwBwAk4CTgBxAmACYAByAmICYwBzApYClwB1ApkCmQB3ApsCwQB4AsYCywCfAtAC4AClAuIC6wC2AvQC9gDAAvgC+ADDAvoC+gDEAvwC/ADFAv4C/gDGAwEDAQDHAwMDAwDIAwUDBQDJAwcDBwDKAwkDCQDLAwsDCwDMAw0DGQDNAxsDGwDaAx0DHQDbAx8DHwDcAyoDKgDdAywDLADeAy4DLgDfAzADMADgAzIDMgDhAzQDNADiAzYDNgDjAzgDOADkAzoDOgDlAzwDPADmAz4DRgDnA0sDVADwA18DYwD6A2kDawD/A3ADcAECA4EDhQEDA4kDiwEIA5QDlAELA6IDpwEMA6oDuQESA7wDvAEiA8ADwAEjA8IDwgEkA8YDxgElA8kDygEmA8wD1QEoA9cD2QEyA9sD4AE1A+ID6AE7A+4D7wFCA/ED8QFEA/MD8wFFA/UD+AFGA/sEAAFKBAIEAgFQBAYEBwFRBAwEFwFTBBoEGwFfBB0EIAFhBCcEKAFlBCwELAFnBC4ENAFoBDoEYgFvBGQEZAGYBGYEcwGZBHsEewGnBH4EfgGoBIAEgAGpBIwEkQGqBJMEkwGwBJcEmAGxBJsEmwGzBJ0EngG0BKAEoAG2BKIEogG3BLMEtwG4BLkEuQG9BLsEvAG+BL4EvgHABMIExAHBBMYExgHEBMgEygHFBMwEzAHIBM4EzgHJBNAE1gHKBNgE2AHRBNsE2wHSBN0E4gHTBOQE5wHZBOsE6wHdBO4E7gHeBPQE9AHfBPkE+QHgBQQFBAHhBQYFBgHiBQ0FDQHjBREFEQHkAAIBdAAGAAYAEgALAAsAEgAQABAAGgASABIAGgAlACUAAgAmACYAJAAnACcADwAoACgAAQApACkABAAuAC4ACAAvAC8ADQAwADAAFwAzADMAAQA0ADQAJQA4ADgAEQA5ADkACAA6ADoAHAA7ADsAGAA8ADwAEAA9AD0ADAA+AD4AGQBFAEUAAwBGAEYADgBHAEcAEwBJAEkABQBMAEwACQBRAFIACQBTAFMABgBUAFQADgBWAFYAGwBaAFoABwBcAFwAFQBdAF0ABwBeAF4AHwCK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AAAAAwAAAAMAAAAAAAAAAAADAA8AEwAAAAEAAQAAAAAAAAAAAB4AAAAAAAAAAgABAAAAAAAAAB4AIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAbAAAAEgASABgAEgASABIAGAAAAAAAAAAYABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAZACQAAAAOABUAHAAAAAUAAAAFAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAJQAFAAoAAAAAAAAAAAAAAAAAFQAFAAAAAAAVAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVAAUAEQAZABUAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgACAAAAAgACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAgAAAAAAAAAAAAAAAAAAAAAAAAACAAIAAgACAAIACwALAAsACwAMAAYABgAGAAYABgAGAAYAAQABAAEAAQABAAAAAAAAAAAAAwAHAAcABwAHAAcACAAIAAgACAAJAAkABAAGAAQABgAEAAYAAgABAAIAAQACAAEAAgABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAIAAQACAAEAAgABAAIAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAMAAgAHAAIABwACAAcAAAAAAAAAAAAAAAAAFAAQABQAEAAUABAAFAAQABQAEAANAAAADQAAAA0AAAALAAgACwAIAAsACAALAAgACwAIAAsACAAWAAAADAAJAAwAFwAdABcAHQAXAB0AAAAAAAIAAAAAAAAAAAAKAAoACgAKAAoACgAKAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAA4ADgAOAA4AEQAKAAoACgAFAAUABQAFAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAHAAcABwAHAAAABUAAAAOAA4ADgAOAA4ADgAkABEAEQAAAAAAAAAEAAAAAAAAAAIADAAAAAAABAAAAAAAFwAAAAAAAAAAAAAAAgAAAAAADAAPAAAADAABAAAAAwAAAAgAAAAHAAAACQAAAAAACAAHAAgAAAAAAAAAAAAAAAAAIwAAAAAAHwAEAAAAAAAAAAAAAAAAAAIAAAAAAAIADQAPAAYAAQADAAcAAwABAAkAEwABAAMAEAAAAAAAAAADAAkAFgAAABYAAAAWAAAADAAJABIAEgAAAAAAJgAAAAMABAAGAAAAAAABAAMAAAAAABoACQABAAIAAAAAAAIAAQAMAAkAAAAPABMAAAAEAAYABAAGAAAAAAAAAAEAAAABAAEADwATAAAAAAAAAAMAAAADAAIABwACAAEAAgAHAAAAAAAfAAkAHwAJAB8ACQAgACIAAAADAAEABAAGAAQABgAEAAYABAAGAAQABgAEAAYABAAGAAQABgAEAAYABAAGAAQABgAEAAYAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAIABwACAAcAAgAHAAIABwACAAcAAgAHAAIABwACAAEAAgABAAIAAQACAAcAAgABAAsACAALAAgAAAAIAAAACAAAAAgAAAAIAAAACAAMAAkADAAJAAwACQAAAA0AAAAgACIAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMABAAGAAAAAQAAAAAAAgAHAAAAAAAAAAgAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAwACAAAAAAAAAAAAFAAQAA0AAAALABoACQAaAAkAFgAAABcAHQAAAAoAAAAAAAAABQARAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAZAAAAEQAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAFAAAAAAAFABUAGQAAAAAABQARAAH9qgAAAAH9qv6UAAH95wZ0AAH92gZ0AAH91QZbAAH9pwbDAAH+LwZPAAH95wUKAAH92gUKAAH91QToAAH9pwUDAAH+LwUNAAH95gSmAAH+TQSmAAH9+QUBAAH+HgUBAAECuv/2AAECeP/2AAEBSgAKAAEDjP5pAAEC3gAKAAECYAAKAAEBKgAKAAEDzAAAAAEDqP/8AAEBBAAKAAECvAAAAAECyAAKAAECJwAKAAECmf/2AAECSP/2AAECTv/2AAECWwAKAAEBEAAKAAECIP/2AAECo//2AAECXP/2AAEByQAKAAECWgAKAAEC3P/2AAECUAAAAAECcgAKAAEBDf41AAEBBf41AAECEQAIAAEBxgAKAAECfgAKAAECq/42AAECIf42AAECNQAKAAEC2f32AAEBIv5aAAECj/5IAAECJP40AAECYv4GAAEBBf4GAAECYgAKAAEC0/4CAAECOf4GAAECZP4GAAEA/f4HAAECgP48AAECHv4yAAECgP37AAECHv3yAAECbv4AAAEBuf38AAECbv5AAAEBuf48AAEBuQAAAAECDgAKAAECTf48AAEBxAAKAAECZf//AAECZf37AAEBAP5UAAECBv4DAAECBf4EAAECBQAIAAECbv39AAECDv4EAAECDgAIAAECMv48AAECHP4DAAECHP5DAAECQQAAAAECqQAKAAECbgAKAAECDf/2AAEA9gAKAAECUgAKAAEDS//2AAECgP//AAECAP/2AAECXQAKAAEC0AAKAAECHv/2AAEDjQAKAAEC9wAKAAEAvv41AAEDfgAKAAEDhAAKAAECq//6AAECIf/6AAECqAAAAAECPgAAAAECav/2AAECDv/3AAECtP6YAAEB5/6dAAECdf6eAAEBIv6aAAECxP6UAAECRP6QAAECrwAAAAECQ//2AAECr/6UAAECQ/6KAAECnf6UAAEB6P6UAAECwP/3AAECwP6LAAECOP6UAAECcP6mAAEC9/4PAAEC+P96AAECWQAAAAECbgAEAAEDuP/8AAECyQADAAECSQAKAAECcQASAAECiQANAAECBgAKAAECEwAKAAEC2f/6AAECKv5BAAEC0wAGAAECOQAKAAECtAADAAEB6AAIAAECdgAKAAECOQAAAAEBIgAGAAEBBQAKAAECRf/8AAECZAAKAAEA/QALAAECOAAAAAECXf6eAAECeP6KAAECNP6eAAECWf6UAAECNf4GAAECWf38AAEC0P6eAAECSf6eAAECjwBMAAECJAA4AAECjv7hAAECJP7NAAECYf6eAAEDfv6eAAEDhP6eAAEC0v6bAAECOf6eAAECEgAKAAEA8/5pAAECY/6eAAEA/f6fAAECgP6UAAECHv6KAAECbv6YAAEBuf6UAAECnQAAAAEClgAKAAECAAAKAAEClv6eAAECAP6eAAEDjf6eAAEC9v6eAAECbf6eAAECDv6eAAECxQAAAAECcwAKAAECHAAKAAECbgABAAECMgAAAAEBAAABAAEB0P/2AAECBgAHAAECVgAAAAECDwAKAAECJAAIAAEC/wAKAAEB4wAKAAECHAAHAAECJQAIAAECCf/2AAECZQAKAAECTf//AAEDwP/2AAEDaAAAAAECagAAAAECMv38AAEDAQAKAAECHwAWAAECtP5YAAEB6P5cAAECdv5eAAECOf5UAAECVv5UAAECJP5cAAEBBP6eAAEB3ga4AAECGQUKAAECywaKAAECGgUHAAECCAZHAAEC3gZIAAEBHwY9AAEBKgaaAAEDzAZCAAEDqAUKAAEBkwa4AAECqAZCAAECVwUBAAEDPwT9AAECvAZAAAED2AZIAAEC0wZIAAECkwZIAAEDgAZIAAECnwZWAAEDlAZAAAECigZMAAECIQT1AAECvQT1AAEDSAT9AAECSwT9AAECMwT8AAECgQT1AAEC9wT1AAECSwT1AAECTwT1AAEC6AbMAAECYQT1AAEDLAT1AAEDOgT9AAEDOwT1AAECDQT1AAECQwUJAAEDpwZDAAEDMQT9AAEB0wbMAAECfQYdAAECGQTvAAECRQVQAAEDNwZAAAECmQZhAAECSAUMAAEC0wdrAAECSwYhAAEC3AZXAAECTgUKAAECZgZMAAECiAYZAAECWwZMAAEBEAZMAAECxAZMAAECIAUKAAECYgZMAAECowZhAAEDAQUoAAECOQUoAAECXAUoAAECFQUoAAECTgUoAAEDJAUoAAECbwUoAAECNwUoAAECNQUoAAEDCAUoAAECLgUoAAEDBQUoAAECigUoAAEC3AUoAAECZgUoAAECQQUoAAECXwUoAAECcgZMAAEBDQToAAEBAQUoAAEDaAUKAAECDgUoAAECfgUoAAECqgeqAAECqQeSAAECqgfcAAEBIgexAAEBIgekAAEC1QeSAAECwgesAAECwQeTAAECngeqAAECngedAAECngdsAAECNQZ0AAECNAZbAAECNQalAAEBCwZrAAEBCwZdAAECPgZbAAECPwZbAAECOgZ0AAECOgZmAAECOgY1AAECqgdvAAECNQY4AAECrAe/AAECFgZ0AAECrAexAAECFgZmAAECrAeSAAECFgZHAAECrAeuAAECFgZjAAECMgehAAECdAd2AAECKgY4AAECdAeFAAECKQZIAAECdAehAAECKgZkAAECrgexAAECKwZmAAECrgebAAECKwZQAAECrQeSAAECKwZHAAECrgZVAAECKwUKAAECzgekAAECAgfFAAEBIQeZAAEBCgZSAAEBIgd2AAEBCwYvAAEBIgeOAAEBCwZHAAEBIQeFAAEDVwebAAEBDQZEAAEBFAenAAEBBQgDAAEC1geaAAECPwZjAAECwgdwAAECPwY4AAECwgeIAAECPwZQAAECwgePAAECPwZYAAECWweqAAEBmgZ0AAECWweaAAEBmgZjAAECfQesAAECHgZ0AAECfQeeAAECHgZmAAECfQebAAECHgZjAAECbQeZAAECnQeSAAECOgZbAAECngdvAAECOgY4AAECngeHAAECOgZQAAECngfcAAECOgalAAECngeOAAECOgZYAAEDkQedAAEC9AZmAAECdAecAAECAwZmAAECbweqAAECBwZ0AAECbwd+AAECBgZHAAECbweaAAECBwZjAAEDqQe2AAEDXQZ1AAECywf0AAECGgZxAAEBxAUoAAECTgZ5AAECTwZTAAECTwbDAAECIgaSAAECIgaEAAEA/waSAAEA/waEAAECbwZ5AAECXQaEAAECXAZ5AAECXQZTAAECQgaSAAECQgaEAAECQgZTAAECTwZWAAECTwZuAAECTwaSAAECTwaEAAECTwZlAAECTwaBAAEBxAaBAAECIgZWAAECIgZuAAECIgZlAAECIgaBAAECVwaEAAECVwZuAAECVgZlAAECVwUoAAECZQaEAAEA/gZ5AAEA/wZWAAEA/wZuAAEA/gZlAAEC4gaEAAEA9QaSAAEA9QUoAAECcAaSAAECcAaBAAECXQZWAAECXQZuAAECXQZ2AAECAgaBAAECLwaSAAECLwaEAAECLwaBAAECQgZ5AAECQgZWAAECQgZuAAECQgbDAAECQgZ2AAECQgUoAAEDAQaEAAECGQaEAAECHAaSAAECHAZlAAECHAaBAAECdAdrAAECbgUKAAECQgUKAAEBJgT1AAECUgUKAAEBJgYgAAECKwYoAAECKwT9AAEDTAT7AAECdAdzAAECawexAAEBIgdzAAEDVwY/AAECkweOAAEC0weOAAECSwZDAAECiAUAAAECKgY1AAEBrAZmAAEBCwYsAAEA3wZAAAECMwZmAAECAwZQAAEDkQeqAAEC9AZ0AAEDkQdsAAEC9AY1AAECdAeqAAECAwZ0AAEBDQZCAAEDeweqAAEDjAZ0AAECdAexAAEC0wexAAECKgZ0AAECSwZmAAEC3wT1AAECfQdeAAECGQYxAAECZgZVAAECDgUJAAECrAZVAAECFgUKAAED2AeOAAEDSAZDAAECqgdsAAECNQY1AAEDqQZMAAEDXQULAAECdAeOAAECKgZRAAECiAdEAAECKAULAAECKAY2AAED2AdzAAEDSAYoAAECZgeAAAECDgY0AAEC0wd2AAECSwYrAAEC0wdzAAECSwYoAAECwgdtAAECPwY1AAEC0gZEAAECMwULAAEC0gdwAAECMwY2AAECnweBAAECFgY1AAECkwd2AAECAwY4AAECkwdzAAECAwY1AAECkweVAAECAwZYAAEC1AdzAAECKQYoAAEDgAdzAAEDOgYoAAECqggBAAECNQbKAAECqgedAAECNQZmAAECqgeHAAECNQZQAAECdAgIAAECKgbKAAECdAeZAAECKQZcAAECdAekAAECKgZmAAEBIggIAAEBCwbBAAEBIgZIAAEBBgZAAAECwggCAAECPwbKAAECwgeeAAECPwZmAAECwQepAAECQwZ0AAECwQgAAAECQwbKAAECwQeRAAECQwZbAAECwQY/AAECQwUKAAECOgUKAAECnggBAAECOgbKAAECwge2AAECQgZfAAECwggMAAECQga1AAECwQedAAECQQZGAAECwgZMAAECQgT1AAECAwUKAAECdAgAAAECAwbKAAECcweR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AKkEzAACAK0DBQACAKkDBwACAdUEzgACAK0DIAACAKkDJgACAdUE2QACAK0D7wACAKgD8QACAKkE4gACAK0DBAACAdUEywACAKkEzQACAK0DBgACAKkDCAACAdUEzwACAK0DIQACAKkDJwACAdUE2gACAK0D8AACAKgD8gACAKkE4wACAK0DGgACAKkDHAACAdUEvQACAKwE1wACAK0DGwACAKkDHQACAdUEvgACAKwE2AACAK0CqwACAKoDDQACAKkDDwACAdUEswACAKgE0gACAK0CtQACAKkD9QACAKgEjAACAK0EjgACAKsEkAACAKoCxgACAKoDDgACAKkDEAACAdUEtAACAKgE0wACAK0C0AACAKkD9gACAKgEjQACAK0EjwACAKsEkQACAKoCwgACAKgCwwACAKkC9wACAKoEYwACAKsEugACAKwEdAACAKkEdgACAKgEeAACAKsEegACAKoEfAACAK0EdQACAKkEdwACAKgEeQACAKsEewACAKoEfQACAK0EggACAKkEhAACAKgEhgACAKsEiAACAKoEigACAK0EgwACAKkEhQACAKgEhwACAKsEiQACAKoEiwACAK0CmwACAKgCnAACAKkCngACAKoEOgACAK0EPAACAKsEtQACAKwCowACAKgCpAACAKkEUgACAK0EVAACAKsEVgACAKoEtwACAKwCpwACAKgCqAACAKkC9gACAKoEYgACAKsEZAACAK0EuQACAKwCtgACAKgCtwACAKkCuQACAKoEOwACAK0EPQACAKsEtgACAKwCvgACAKgCvwACAKkEUwACAK0EVQACAKsEVwACAKoEuAACAKwCxwACAKgCyAACAKkCygACAKoEZwACAK0EaQACAKsEvAACAKwCzAACAKgCzQACAKkDMQACAKoEfwACAK0EgQACAKsEwAACAKwCrAACAKgCrQACAKkCrwACAKoEZgACAK0EaAACAKsEuwACAKwCsQACAKgCsgACAKkDMAACAKoEfgACAK0EgAACAKsEvwACAKwE1AADAKoAqQTdAAMAqgCp","Roboto-MediumItalic.ttf":"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BlwACQRh/9EECP/2BnD/qgR8AAoE5gAKBUoAYAXKAD4EPwBsBJ//ogZlAGIEagBbBGoACQXSADsEqQAyBCYADgScADQERgAHA9YAHgfvAAkEzv/aAt7/9QLe//MC3gALAt4AFgLeACUC3gAFAt4ANAOZAJECmgEIA8IACQQa/4cEkgA7BRkAKwUAACsEEAAUBQ0AKwQJABQEVwAJBF4AOQQ/AAkEdv+aAe8A6AOFAQQAAP0nA9kA3APbABYD7ADcA9wA2wOfAAkDgQEEA4EBBQLoAIkC6ABmAugAfgLoAIkC6ACYAugAeALoAKcFSgBsBXMAawVVACsFrABuBa4AbQQJAKsEXwAcBDf/gQSX/9EESf/YBA4AMQOFAQUBrf+4BmYAOwSLAEUB/P8ABHP/qQRz/9oEc//JBHMAEwRzAE0EcwAiBHMAVgRzADEEcwA3BHMA+AIf/wQCH/8EAhEAIwIR/3wCEQAjBD8ACQTBAEwEEABWBGYAEAQeADYEcgA3BG4ALQR6ADIEb//IBHcANgQoADoEZgAuBDj/nwObAKsE5gAkA6f/7wYV/34D6AAJBJn/2wTnACIEtgAJAfgAAAKjAEAFLwAgBS8AIARuACsEugCdApb/5QUl/6MFJf+jBSX/owUl/6MFJf+jBSX/owUl/6MFEQBfBGMAJgRjACYEYwAmBGMAJgIyADcCMgA3AjIANwIyADcFgQAmBVkAYgVZAGIFWQBiBVkAYgVZAGIFFABYBRQAWAUUAFgFFABYBL0AoQQvABwELwAcBC8AHAQvABwELwAcBC8AHAQvABwEDQA3BCgAOgQoADoEKAA6BCgAOgIHACMCBwAjAgcAIwIHACMEUgANBGcAOARnADgEZwA4BGcAOARnADgEUQBKBFEASgRRAEoEUQBKA83/vAPN/7wFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFEQBfBA0ANwURAF8EDQA3BREAXwQNADcFEQBfBA0ANwURACYE9QA4BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoEYwAmBCgAOgVJAGYEZv/5BUkAZgRm//kFSQBmBGb/+QVJAGYEZv/5BYEAJgRQAA0CMgA3AgcAEwIyADcCBwAjAjIANwIHACMCMv+OAfr/dQIyADcGggA3A+wAIARPAAQCFf8EBOcAJgQMABEEMQAmAfoAIAQxACYB+v+mBDEAJgKQACAEMQAmAtYAIAWBACYEUgANBYEAJgRSAA0FgQAmBFIADQRSAA0FWQBiBGcAOAVZAGIEZwA4BVkAYgRnADgE4gAmAr4AEQTiACYCvv+fBOIAJgK+ABEEtAAmA/8AGwS0ACYD/wAbBLQAJgP/ABsEtAAmA/8AGwS0ACYD/wAbBLoAnQKWAD8EugCdApYAPwS6AJ0CvgA/BRQAWARRAEoFFABYBFEASgUUAFgEUQBKBRQAWARRAEoFFABYBFEASgUUAFgEUQBKBtUAtQXCAHkEvQChA83/vAS9AKEErv/lA+j/5gSu/+UD6P/mBK7/5QPo/+YHRf+NBo4ADgVXABYEYwAqBFf/lgRX/5YEHgBjBHb/mgR2/5oEdv+aBHb/mgR2/5oEdv+aBHb/mgReADkDwgAJA8IACQPCAAkDwgAJAe8AGgHvABoB7wAaAe8AGgS2AAkEmQA7BJkAOwSZADsEmQA7BJkAOwRmADgEZgA4BGYAOARmADgEHgBsBHb/mgR2/5oEdv+aBF4AOQReADkEXgA5BF4AOQRXAAkDwgAJA8IACQPCAAkDwgAJA8IACQSDAD8EgwA/BIMAPwSDAD8EtwAJAe8ADgHvABoB7wAaAfn/lgHvABoDuf/zBDwACQObAAkDmwAJA5sACQObAAkEtgAJBLYACQS2AAkEmQA7BJkAOwSZADsEQwAJBEMACQRDAAkEFgAPBBYADwQWAA8EFgAPBB4AYwQeAGMEHgBjBGYAOARmADgEZgA4BGYAOARmADgEZgA4BdoAiwQeAGwEHgBsBAv/1gQL/9YEC//WBSX/owTH/7oF5f/CApb/xgVtACcFIf+5BUQAHgKQAAkFJf+jBOYAJgRjACYErv/lBYEAJgIyADcE5wAmBskAJgWBACYFWQBiBPQAJgS6AJ0EvQChBOb/wAIyADcEvQChBGEAOwRDACgEYwARApAAZgQ8AFcEdwAhBGcAOASd/94D2gBkBDj/nwKQAEQEPABXBGcAOAQ8AFcGYQBSBGMAJgRSACsEtAAmAjIANwIyADcETwAEBQAAKwTnACYE5ACZBSX/owTmACYEUgArBGMAJgV6ACUGyQAmBYEAJgVZAGIFggArBPQAJgURAF8EugCdBOb/wAQvABwEKAA6BG8AFwRnADgEXf/IBA0ANwPN/7wD6P+6BCgAOgNBABYD/wAbAfoAIAIHACMB8v8CBEoAIgPN/7wG1QC1BcIAeQbVALUFwgB5BtUAtQXCAHkEvQChA83/vAFMAJECegCdBBsAMwIV/wQBrQCNBskAJgbDAA8FJf+jBC8AHARjACYFegAlBCgAOgRvABcFhQB2BZ8APwTxAKgD7gB1CDQAOAkmAGIEtgAfA/gAFwURAF8EDQA3BL0AoQPtAHUCMgA3B27/pAZV/7ACMgA3BSX/owQvABwFJf+jBC8AHAdF/40GjgAOBGMAJgQoADoFYgBLBBkANAQZADQHbv+kBlX/sAS2AB8D+AAXBXoAJQRvABcFegAlBG8AFwVZAGIEZwA4BVAAYQRlADQFUABhBGUANAUgAEgEGQAgBOQAmQPN/7wE5ACZA83/vATkAJkDzf+8BVoAxARDAG0GxQAsBkgAIwRfADgFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6AjIANwIHACMCMv//Afr/4wVZAGIEZwA4BVkAYgRnADgFWQBiBGcAOAVZAGIEZwA4BVkAYgRnADgFWQBiBGcAOAVZAGIEZwA4BWYAXAR6ADQFZgBcBHoANAVmAFwEegA0BWYAXAR6ADQFZgBcBHoANAUUAFgEUQBKBRQAWARRAEoFdwBYBMAASgV3AFgEwABKBXcAWATAAEoFdwBYBMAASgV3AFgEwABKBL0AoQPN/7wEvQChA83/vAS9AKEDzf+8BH3/9AS6AJ0D2wBUBVoAxARDAG0EUgArA0EAFgXsAFUEoP/yBFAADQTbACQE2wAkBFIAAANB/8cFFAA/BCQAKAS9AKED7QBSBOb/wAPo/7oEQwAoBEb/wgYEAHwEaQANBGkAJgRpAA0EaQBYBH0AcQSRAEsEfQCMBJEAcwVJAGYEZv/5BYEAJgRSAA0FJf+jBC8AHARjACYEKAA6AjL/zwIH/4AFWQBiBGcAOATiACYCvgAMBRQAWARRAEoEyP+FBOYAJgRdABAFEQAmBF8AOAURACYEXwA4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YmKlZmWmYmKmiXfIenrId3fIenrId0xipmVmpWJipWZlpmIAAAAAEQDSAAMAAQQJAAAAsgAAAAMAAQQJAAEAGgCyAAMAAQQJAAIADADMAAMAAQQJAAMAKADYAAMAAQQJAAQAKADYAAMAAQQJAAUAJgEAAAMAAQQJAAYAJgEmAAMAAQQJAAcAQAFMAAMAAQQJAAgADAGMAAMAAQQJAAkAJgGYAAMAAQQJAAsAFAG+AAMAAQQJAAwAFAG+AAMAAQQJAA0BIgHSAAMAAQQJAA4ANgL0AAMAAQQJABAADAMqAAMAAQQJABEAGgM2AAMAAQQJABkADAMqAEMAbwBwAHkAcgBpAGcAaAB0ACAAMgAwADEAMQAgAFQAaABlACAAUgBvAGIAbwB0AG8AIABQAHIAbwBqAGUAYwB0ACAAQQB1AHQAaABvAHIAcwAgACgAaAB0AHQAcABzADoALwAvAGcAaQB0AGgAdQBiAC4AYwBvAG0ALwBnAG8AbwBnAGwAZQBmAG8AbgB0AHMALwByAG8AYgBvAHQAbwAtAGMAbABhAHMAcwBpAGMAKQBSAG8AYgBvAHQAbwAgAE0AZQBkAGkAdQBtAEkAdABhAGwAaQBjAFIAbwBiAG8AdABvACAATQBlAGQAaQB1AG0AIABJAHQAYQBsAGkAYwBWAGUAcgBzAGkAbwBuACAAMwAuADAAMQA0ADsAIAAyADAAMgA1AFIAbwBiAG8AdABvAC0ATQBlAGQAaQB1AG0ASQB0AGEAbABpAGMAUgBvAGIAbwB0AG8AIABpAHMAIABhACAAdAByAGEAZABlAG0AYQByAGsAIABvAGYAIABHAG8AbwBnAGwAZQAuAEcAbwBvAGcAbABlAEMAaAByAGkAcwB0AGkAYQBuACAAUgBvAGIAZQByAHQAcwBvAG4ARwBvAG8AZwBsAGUALgBjAG8AbQBUAGgAaQBzACAARgBvAG4AdAAgAFMAbwBmAHQAdwBhAHIAZQAgAGkAcwAgAGwAaQBjAGUAbgBzAGUAZAAgAHUAbgBkAGUAcgAgAHQAaABlACAAUwBJAEwAIABPAHAAZQBuACAARgBvAG4AdAAgAEwAaQBjAGUAbgBzAGUALAAgAFYAZQByAHMAaQBvAG4AIAAxAC4AMQAuACAAVABoAGkAcwAgAGwAaQBjAGUAbgBzAGUAIABpAHMAIABhAHYAYQBpAGwAYQBiAGwAZQAgAHcAaQB0AGgAIABhACAARgBBAFEAIABhAHQAOgAgAGgAdAB0AHAAcwA6AC8ALwBvAHAAZQBuAGYAbwBuAHQAbABpAGMAZQBuAHMAZQAuAG8AcgBnAGgAdAB0AHAAcwA6AC8ALwBvAHAAZQBuAGYAbwBuAHQAbABpAGMAZQBuAHMAZQAuAG8AcgBnAFIAbwBiAG8AdABvAE0AZQBkAGkAdQBtACAASQB0AGEAbABpAGMAAAADAAD/9AAA/2oAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAgAIAAj//wAPAAEAAgAOAAAAAAAAAigAAgBZACUAPgABAEQAXgABAGoAagABAHAAcAABAHUAdQABAIEAgQABAIMAgwABAIYAhgABAIkAiQABAIsAlgABAJgAnwABAKEAowABAKUApgABAKgArQADALEAsQABALoAuwABAL8AvwABAMEAwQABAMMAxAABAMcAxwABAMsAywABAM0AzgABANAA0QABANMA0wABANoA3gABAOEA4QABAOUA5QABAOcA6QABAOsA+wABAP0A/QABAP8BAQABAQMBAwABAQgBCQABARYBGgABARwBHAABASABIgABASQBJwADASoBKwABATMBNAABATYBNgABATsBPAABAUEBRAABAUcBSAABAUsBTQABAVEBUQABAVQBWAABAV0BXgABAWIBYgABAWQBZAABAWgBaAABAWoBbAABAW4BbgABAXABcAABAdYB3AACAe0CAQABAgUCBQABAg4CDgABAhACEAABAhcCGQABAhsCHAABAh4CHgABAiICIgABAiQCJgABAiwCLAABAjECMwABAjUCNQABAkMCQwABAkYCRgABAkgCSAABAksCTgABAnoCfgABAo4CkwABApYC/gABAwEDwAABA8IDwgABA8QDzgABA9AD2QABA9sD9gABA/oD+gABA/wEAwABBAUEBwABBAoEDgABBBAEmwABBJ4EnwABBKEEogABBKQEpwABBLEFDQABBQ8FGQABBRwFKQABAAEAAwAAABAAAAAWAAAAIAABAAEArQACAAEAqACsAAAAAgACAKgArAAAASQBJwAFAAEAAAAaADQACgAHAEQAXABmAEwAVABwAHoABERGTFQAdGN5cmwAdGdyZWsAdGxhdG4AdAAEY3BzcABea2VybgBkbWFyawBsbWttawB0AAEAAAABAGIABAAAAAEAZAAEAAAAAQBoAAIACAACAMIEogACAAgAAgB6AJYABgAQAAEAWAAAAAYAEAABAFoAAgBqAAAAAAABAAAAAAACAAIAAQAAAAIAAwAEAAAAAgAFAAYAARXGAAUAJABIAAERLhISAAERNDgKAAERXBPSAAERbEsMAAERFhEWAAERHBEiAAERRBEmAAERVBE4AAERJAAEAAAAAhEOERQAAP//AAQAAAABAAIAAwACEVIABAAAEXYRngADAAMAAP+v/4gAAP8sAAAAAP+IAAAAAV4oAAQAAAHrGjgXYBdgHmYeDBewF+4YwBfSWooZABkAHCAYEhkAGQAYwBkiJ0IgAiZ4GAAYKB2yH5AYPhtKGN4YiBecMJYXfi10F7oXuhlqGIgX4B8qGKIYVBdmGKIbkBiIGMAgeCWyHQYYwB4MLHYudim8JEoXSBiiF4hRFBe6RCQrhC94GG4XThdUU/4XWhrSGmYg+kYWNFhAdDMKGQA9HEhIHbIoEBkAGQAb1hkAGQAZAD7GIYQZABoOJOwjJh7IKp4juBemKOYXZhmQQkpW/BiIGwwxzCIOGUQYiCKYGbodXBqcGUQeDBlqGAAYohnkGIglshemHbIXZhwgHCAcIBkAHbIXZhkAGQAYwBemHbIXZhdgNfoXYBdgF2AXeBxqHLgXcheSF2wXchdsF8QXbBfuGMAYwBjAGMAmeB4MHgweDB4MHgweDB4MF+4X0hfSF9IX0hkAGQAZABkAGQAYwBjAGMAYwBjAH5AY3hjeGN4Y3hjeGN4Y3hecF5wXnBecF7oZahlqGWoZahlqGKIYoh4MGN4eDBjeHgwY3hfuF+4X7hfuGMAX0hecF9IXnBfSF5wX0hecF9IXnBkAF7oZABkAGQAZABkAHCAYEhgSGBIYEhkAF7oZABe6GQAXuhe6GMAZahjAGWoYwBlqF+AX4BfgJngmeCZ4GCgfkBiiH5AYPhg+GD4XchdyF3gXbBdsF2wXbBdsF2wXbBdyF3IXchdyF3IXbBdsF2wXcheSF5IXkheSF3IXchdyF3geDBfSGQAZABjAH5AeDBewF9IYPhkAGQAcIBkAGQAYwBkiJngfkB2yGQAfkBe6GWoYohlqF9IlshkAGQAcIBwgG9YeDBewJbIX0hkAGQAYwBkiF+4meB2yGN4XnBlqGIgYohdmF5wXphiiGCgYKBgoH5AYohdgF2AXYBkAF7oeDBjeF9IXnBgAGKIX7h+QGKIZAB2yF2YZAB4MGN4eDBjeF9IXnBecF5wdshdmGMAZahlqGIgb1hiiG9YYohvWGKIeDBjeHgwY3h4MGN4eDBjeHgwY3h4MGN4eDBjeHgwY3h4MGN4eDBjeHgwY3h4MGN4X0hecF9IXnBfSF5wX0hecF9IXnBfSF5wX0hecF9IXnBkAGQAYwBlqGMAZahjAGWoYwBlqGMAZahjAGWoYwBlqGWofkBiiH5AYoh+QGKImeCWyF6YXuhoOJbIcIB+QGQAXuh4MGN4X0hkAGMAZahfgF7AYiBjAGMAZABe6HCAcIBgSGQAXuhkAF7oYwBkiGIgX4CZ4GAAYohgAGKIYKBg+GMAXbBdyF2wXeBdsF3IXeAACXgYABAAAYaZqYgApACgAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAD/5P/jAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAA/+QAEf/lAAAAAAAAAAAAEgAAAAAAAAAA/+sAAAAAAAAAAAAA/+0AAP/V/9AAAP/qAAAAAAAAAAAAAAAAAAD/6f+T//X/6gAAAAAAAP/hAAAAAAAAAAAAAAAA/+0AAP/rAAAAAP/x/+4AAP/1AAD/9P/1/84AAP/v/43/gv/xAAAAAP/E/4gAAAAA/8f/xgAAAAAAAP+tAAAAAAAMABEAAP/JABL/rAAA/90AAP+IAAAAAAAAAAAAAAAAAAAAAAAAAAD/8QAAAAAAAAAAAAAAAAAAAAD/zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/88AAAAA/+0AAAAAAAAAAAAA/+3/7//mAAAAAAAAABQAAAAAAAD/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//MAAAAAAAAAAAAAAAAAAAAA//IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/yAAAAAAAAAAAAAAAAAAAAAAAAAAD/8QAAAAAAAAAAAAAAAAAAAAD/iv/rAAAAAAAAAAAAAAAAAAAAAAAA//AAAAAAAAD/8AAAAAAAAAAA/4oAAAAA//MAAAAAAAAAAP/x//EAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAAAAAAAP9/AAAAAAAAAAAAAAAAAAAAAP/XAAAAAAAAAAAADwAAAAAAAAAAAAD/6gAAAAAAAAAAAAD/6wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/6wAA/+oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/oQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/6EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/6gAAAAAAAP/uAAAAAAAA/+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/yAAAAAAAAAAAAAAAAAAAAAP/sAAAAAP+/AAAAAAAA/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/9gAAAAAAAAAAP+//+P/2P+N/8v/u/+//9n/7P+r/6AAEgARAAAADf/GAAAAAP/p//D/8wARAAD/Jv/vABL/pwAA/+IAAAAAAAAAAAAA/6D/8/+rAAD/jQAA/+b/4f/xAAD/5wAA/+X/6f/YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP+bAAAAAAAAAAAAAAAA/6MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//UAAAAAAAAAAAAAAAAAAAAA/+P/8QAAAAAAAAAAAAAAAAAAAAAAAP/xAAAAAAAA//IAAAAAAAAAAP/jAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/jAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+b/5wAAAAD/5wAA/+v/6//hAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv+qAAAAAAARAAAAAAAR/9EAAAAAAAAAAAAAAAD/of/k/5r/ov+5/3v/df+s/7T/rwAAABAAEAAAAAD/mwAAAAD/s//w//EADwAA/xf/7QAQ/wn/vP/E/8sAAAAA/37/fP8Z//H/rwAA/6IAAP/FAAD/7P+IAAD/zv+4AAAAAAAAAAAAAAAAAAAAAP+sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/68AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/9QAAAAAAAAAAAAAAAP/rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/sAAAAAAAAAAAAAP/lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/0r/vf8//zoAAP8//1D/Xv9sAAAAAAAHAAcAAAAA/0AAAAAA/2r/0QAAAAUAAP5hAAAAB/5JAAD/hv+SAAAAAP8P/wwAAAAAAAAAAP86AAAAAP+/AAAAE//yAAAAAP/f/38AE//V/wL/B//hAAAAAP9rAAAAAAAA/2v/gwAAAAAAAP9GAAAAAAAAAAAAAAAAAAAAAAAA/6sAEwAAABMAAP/hAAAAAP/V/+f/3//h/+0AAP/LAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAD/fgAAAAD/xAAAAAAAAAAAAAAAAAAAAAAAAP/LAAD/1QAA/+v/5gAAAA3/7AAA/+v/7f/lAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP8sAAAAAP/tAAAAAAAAAAD/3P/mAAAAEgAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAD/cwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAA/9T/8wAA/7X/2f/S/9L/5P/1/7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP8jAAAAAP+vAAAAAAAAAAAAAAAAAAAAAAAA/7QAAP+1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+8AAAAAAAAAAAAAAAAAAAAA/+wAAAAA/7QAAAAAAAD/uwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/1QAAAAAAAAAA//AAAAAAAAAAAAAA//AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/63/MwAA//YAAAAA/8D/yQAAAAAAAAAAAAAAAP/IAAAAAAAA//n/6//nAAAAAAAAAAAAAP/AAAAAAP+9/+n/of+lAAD/nP+9AAAAAAAAAAAAEgASAAAAAP/SAAAAAAAAAAAAAAAAAAD+cQAAAAD/bAAAAAD/ygAAAAD/u//pAAAAAAAAAAD/pQAA/+wAAAAAAAAAAAAA/+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/84AAAAAAAAAAAAAAAAAAAAA/3n/8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/3QAAAAAAAP95AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/yf/lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+gAAAAAAAAAAP/zAAAAAAAAAAAAAAAAAAAAAAAA//MAAAAA/2cAAP/1//MAAAAP/6wAAAAAAAAAAP/aAAAAAAAAAAAAAAAAAAD/4v6fAAAAAAAAAAAAAP+oAAAAAP/HAAD/PgAA/6wAAP9nAAAAAAAAAAAAAP/yAAAAAAAAAAAAAAAAAAAAAP/sAAAAAP+/AAAAAAAA/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/9gAAAAAAAAAAP/FAAD/7P+IAAD/zv+4AAAAAAAAAAAAAAAAAAAAAP+sAAD/rwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/6//iAAAAAD/8f/uAAD/9QAA//T/9f/OAAD/7/+N/4L/8QAAAAD/xAAAAAAAAP/H/8YAAAAAAAD/rQAAAAAADAARAAD/yQAS/6wAAP/dAAD/iAAAAAEAAQCtAAEAAGekAAFnpAABABP/FwABACP/vAACAAEAqACsAAAAAQACABMAsgAFZ4hnjmeUZ5pnoAACAAIAqACsAAABJAEnAAUACQAAZ4oAAGeQAABnlgAAZ5wAAGeiAABnqAAAZ64AAGe0AABnugABABAABgALABAAEgCyAYUBhgGHAYgBiQGKAYsBjwGQA/cD+AACAAYAEAAQAAEAEgASAAEAsgCyAAIBhwGHAAEBiwGLAAEBjwGQAAEAAgAGAAYABgABAAsACwABALIAsgACAYUBhgABAYgBigABA/cD+AABAAIATAAlAD4AAABFAF4AGgCLAJYANACYAJsAQACdAJ0ARAC6ALsARQDBAMEARwDOAM4ASADbANsASQDdAN0ASgDvAO8ASwDyAPIATAEhASIATQFBAUIATwFMAU0AUQFYAVgAUwFiAWIAVAFkAWQAVQFqAWwAVgFuAW4AWQHtAgEAWgIOAg4AbwIYAhgAcAIbAhsAcQIsAiwAcgIyAjMAcwJDAkMAdQJGAkYAdgJIAkgAdwJLAk4AeAJ6An4AfAKOApMAgQKWAv4AhwMBAwEA8AMDA0YA8QNLA6gBNQOqA7oBkwO8A7wBpAO/A8ABpQPCA8IBpwPGA8YBqAPIA8kBqQPLA84BqwPQA9ABrwPSA9MBsAPVA9UBsgPXA9kBswPbA+ABtgPiA+cBvAPpA+wBwgPuA/YBxgP6A/oBzwP8BAAB0AQCBAIB1QQKBA4B1gQQBBAB2wQTBBcB3AQaBB4B4QQhBCIB5gQnBCgB6AQwBDAB6gQyBDIB6wQ0BDQB7AQ5BJMB7QSZBJsCSAShBKICSwSkBKUCTQSnBKcCTwSxBMACUATCBP4CYAUABQQCnQUGBQcCogUJBQkCpAULBQ0CpQUPBRcCqAUcBSkCsQACAE8AJQA+AAAARQBeABoAgQCBADQAgwCDADUAhgCGADYAiQCJADcAiwCWADgAmACdAEQAsQCxAEoAuwC7AEsAvwC/AEwAwQDBAE0AwwDDAE4AxwDHAE8AywDLAFAAzQDOAFEA0ADRAFMA0wDTAFUA2gDcAFYA3gDeAFkA4QDhAFoA5QDlAFsA5wDpAFwA6wD7AF8A/QD9AHAA/wEBAHEBAwEDAHQBCAEJAHUBFgEaAHcBHAEcAHwBIAEiAH0BKgErAIABQQFCAIIBSwFLAIQBWAFYAIUBYgFiAIYBZAFkAIcBaAFoAIgBagFsAIkBbgFuAIwB7QIBAI0CBQIFAKICEAIQAKMCFwIZAKQCHAIcAKcCHgIeAKgCIgIiAKkCJAImAKoCLAIsAK0CMQIxAK4CMwIzAK8CNQI1ALACQwJDALECRgJGALICSAJIALMCSwJOALQCegJ+ALgCjgKTAL0ClgL+AMMDAQOnASwDqQPAAdMDwgPCAesDxAPOAewD0APZAfcD2wP2AgED+gP6Ah0D/AQDAh4EBQQHAiYECgQOAikEEASYAi4EmwSbArcEngSfArgEoQSiAroEpASnArwEsQTsAsAE7gUNAvwFDwUWAxwFGAUZAyQFHAUpAyYAAQD7AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQFxAbIBuAG9AcAClgKXApkCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0ArUC0gLUAtYC2ALaAtwC3gLgAuIC5ALmAugC6gLsAu4C8ALyAvQC9gL4AvoC/AL+Av8DAQMDAwUDBwMJAwsDDQMPAxEDFAMWAxgDGgMcAx4DIAMiAyQDJgMoAyoDLAMuAzADMgM0AzYDOAM6AzwDPgNAA0EDQwNFA0cDSQOiA6MDpAOlA6YDpwOoA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A7kDyQPKA8sDzAPNA84DzwPQA9ED0gPTA9QD1QPWA9cD2APZA9oD2wPcA90D3gPvA/ED8wP1BAoEDAQOBCMEKQQvBJkEngSiBSMFJQABAMQADgABAPb/zQABAMoAEwABAPb/3AABAFsACwABARz/8QABAfH/xwABAfH/8QABAfEADQACAPb/yAGG/6cAAgDK//QA9v/YAAIB8f+3Afb/8AACAPb/9QGG/7YAAgDt/6UBHP/u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Ayz/vgMu/74DP//vA7z/9QPC/+8D3f++A+H/9QPj//UD5f/vA+j/9QPt//UD7v/vA/b/7wP9//UEA//1BAf/7wQP/+8EJP/1BCb/9QQw/+8EMv/vBDT/7wQ4//UEjf/vBI//7wSR/+8Ek/++BJj/9QS0//UE0f/1BNP/9QTb/74E3//vBOH/7wBoADj/MwA6/8gAPP/wAD3/rABR/+8AUv/vAFT/7wDB/+8A0v8zANT/9QDW/zMA2v/wAN3/9QDe/+sA4f/mAOb/wgDs/+8A8P/vAPH/7wDz/+8A9P/vAPX/7wD2/84A+P/vAPr/7wD7/+8A/v/vAQD/7wEF/+8BGf/IASv/7wEz//ABNv/vATn/MwE6/80BPP/vAT7/7wFD//ABRf8zAUf/5gFJ/+YBTP/fAVD/9QFT/+8BVf/vAVf/7wFc/+8BXf/wAWL/0AFk/+sBZv/1AWz/nwFt/9ABb//1ArX/rALG/+8DDv/vAxD/7wMS/+8DE//vAyr/MwMs/zMDLv8zAz7/rANA/6wDp/+sA7b/rAO3//ADuf+sA7z/7wPR/+sD3f8zA97/8APh/+8D4//vA+j/7wPt/+8D9f+sA/3/7wQD/+8EBv/IBA7/rAQR//AEH//wBCT/7wQm/+8EL//rBDH/6wQz/+sENf/mBDj/7wSM/6wEjv+sBJD/rAST/zMElf/mBJj/7wSi/6wEtP/vBNH/7wTT/+8E2/8zBN7/yATg/8gAaABH/7QASP+0AEn/tABL/7QATAAUAE8AFABQABQAU/96AFX/tABX/2QAWwALAJT/tACZ/7QAu/+0AMj/tADJ/7QA9/+0AQP/tAEY/3oBHv+0ASL/tAFC/7QBYP+0AWH/tAFr/7QB3P9kAr3/tAK+/7QCv/+0AsD/tALB/7QCx/96Asj/egLJ/3oCyv96Asv/egLZ/7QC2/+0At3/tALf/7QC4f+0AuP/tALl/7QC5/+0Aun/tALr/7QC7f+0Au//tALx/7QC8/+0AxX/egMX/3oDGf96AyH/ZAMj/2QDJf9kAyf/ZAMp/2QDuv+0A8D/egPG/3oD4P+0A+L/egPk/7QD5/+0A+n/ZAQC/7QECP+0BA3/tAQb/7QEHf+0BB7/tAQo/3oEKv+0BCz/egQ5/7QEU/+0BFX/tARX/7QEWf+0BFv/tARd/7QEX/+0BGH/tARn/3oEaf96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NOY07Dk8NPI08jqMNPg5rjT+PbY5ljlmOWY6vDj6NQQ1CjUQOQY1FjUcNRw68jUiOhQ1KDUoNS41NDlCOlA1OjVAOpI6mD2wPbY1RjVMNVI1WDVeNWQ1ajVwNXY8PDV8NYI5wDnGNYg1jj28PcI1lDWaNaA1pjWsNbI1uDW+NcQ1yjXQNdY13DXiNeg17jX0Nfo6zjrUNgA2BjYMPFo8YDYSNhg8ZjxsPGY8bDxmPGw70DvWPH48hDYeNiQ8hDYqNjA2NjY8NkI2SDZONlQ8ljycNlo2YDZmNmw2cjZ4PKI8qDyiPKg2fjaEPK48tDyuPLQ6qjy0Noo2kDaWNpw2ojaoNq42tDa6NsA8ujsoNsY2zDbSNtg4lDbeNuQ26jbwNvY2/DcCNwg3DjcUNxo3Gj1WNyA3IDeYNyY3LDcyPcg9bjc4Nzg3Pj0IN0Q3SjdQPRo3Vj2MPYw3XDdiN2g3bjduN3Q3ejeAN4Y3jD3IN5I3mDeeN6Q3qjewN7Y3vD3ON8I3yDfON9Q32jfgN+Y37DfyPRQ3+Df+PPY4BDgKOAo4CjgQPPw4FjgcOCI4KDguPPY4NDg6OEA9kjhGPVY4TD1WOFI4WDheOGQ4ajhwOHY4fD0COII4iDiOPbA9vDxCOs488DumOKY9sDwqPbw85DxCOs48WjxyPH488DwqPK47pjusONY4lDiaO7g4oDimOL44rDrmPNI4sji4OuY4vjjEOMo40DyiOs441jjcPE444j2wPCo7mj28OOg8cjxCPPA8KjmQPK47rD22PcI47jrmOPQ5ljtqO7I4+jkAPKg61DkGOQw5EjkYOR45KjkkOSo5MDk2OTw5QjlIOU45VD2wPbY5WjlgOWY5bDlyOXg5fjmEOYo5kDmWO6Y6zjmcOaI6zjqSOpg5qDmuObQ5ujnAOcY5zDnSOdg53jnkOeo58Dn2Ofw6AjoIOg46FDoaOiA6JjosOjI6ODo+OkQ6SjpQOlY6XDpiOmg6bjp0PDw9sD22Ono6gD2wPbY9sD22PbA9tj2wPbY6hjqMPbA9tj2wPbY9sD22PbA9tjqSOpg9vD3COp46pDqqOrA9vD3CPbw9wj28PcI9vD3COrY6vDrCOsg6zjrUPPA65jraOuA88DrmPPA65jzwOuY88DrmOuw68jr4Ov46+Dr+OwQ7CjsQOxY7HDsiPLo7KDsuOzQ7OjtA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/+0FEQAOBRX/7QUWAA0A5wAQ/wcAEv8HACX/TgAu/w0AOAAUAEX/3gBH/+sASP/rAEn/6wBL/+sAU//rAFX/6wBW/+YAWf/qAFr/6ABd/+gAlP/rAJn/6wCb/+oAsv9OALT/TgC7/+sAvf/oAMj/6wDJ/+sAy//qANIAFADWABQA9//rAQP/6wEN/04BGP/rARr/6AEe/+sBIv/rATkAFAFC/+sBRQAUAWD/6wFh/+sBa//rAYf/BwGL/wcBj/8HAZD/BwIG/8ACCP/AAk7/wAKb/04CnP9OAp3/TgKe/04Cn/9OAqD/TgKh/04Ctv/eArf/3gK4/94Cuf/eArr/3gK7/94CvP/eAr3/6wK+/+sCv//rAsD/6wLB/+sCx//rAsj/6wLJ/+sCyv/rAsv/6wLM/+oCzf/qAs7/6gLP/+oC0P/oAtH/6ALS/04C0//eAtT/TgLV/94C1v9OAtf/3gLZ/+sC2//rAt3/6wLf/+sC4f/rAuP/6wLl/+sC5//rAun/6wLr/+sC7f/rAu//6wLx/+sC8//rAwH/DQMV/+sDF//rAxn/6wMqABQDLAAUAy4AFAMx/+oDM//qAzX/6gM3/+oDOf/qAzv/6gM//+gDTv/AA0//wANQ/8ADUf/AA1L/wANT/8ADVP/AA2n/wANq/8ADa//AA6L/TgOq/04Duv/rA77/6gPA/+sDwv/oA8X/6gPG/+sDx//qA87/DQPS/04D3QAUA9//3gPg/+sD4v/rA+T/6wPl/+gD5//rA+7/6AP2/+gD/v9OA///3gQC/+sEB//oBAj/6wQN/+sED//oBBT/TgQV/94EFv9OBBf/3gQb/+sEHf/rBB7/6wQo/+sEKv/rBCz/6wQw/+gEMv/oBDT/6AQ5/+sEOv9OBDv/3gQ8/04EPf/eBD7/TgQ//94EQP9OBEH/3gRC/04EQ//eBET/TgRF/94ERv9OBEf/3gRI/04ESf/eBEr/TgRL/94ETP9OBE3/3gRO/04ET//eBFD/TgRR/94EU//rBFX/6wRX/+sEWf/rBFv/6wRd/+sEX//rBGH/6wRn/+sEaf/rBGv/6wRt/+sEb//rBHH/6wRz/+sEdf/rBHf/6wR5/+sEe//rBH3/6wR//+oEgf/qBIP/6gSF/+oEh//qBIn/6gSL/+oEjf/oBI//6ASR/+gEkwAUBLX/TgS2/94EuP/rBLz/6wTA/+oExf/rBMf/6wTbABQE3//oBOH/6ATn/8AE7v/ABQb/wAACAJ8ABAAEAAAABgAGAAEACwAMAAIAJQAqAAQALAAtAAoALwA2AAwAOAA4ABQAOgA/ABUARQBGABsASQBKAB0ATABMAB8ATwBPACAAUQBUACEAVgBWACUAWABYACYAWgBdACcAXwBfACsAigCKACwAlgCWAC0AnQCdAC4AsQC1AC8AtwC5ADQAuwC7ADcAvQC+ADgAwADBADoAwwDFADwAxwDOAD8A0gDSAEcA1ADeAEgA4ADvAFMA8QDxAGMA9gD4AGQA+wD8AGcA/gEAAGkBAwEFAGwBCgEKAG8BDQENAHABGAEaAHEBIgEiAHQBLgEwAHUBMwE1AHgBNwE3AHsBOQE5AHwBOwE7AH0BQwFEAH4BVAFUAIABVgFWAIEBWAFYAIIBXAFeAIMBhQGGAIYBiAGKAIgB8wHzAIsB9QH2AIwB+AH4AI4B+wH7AI8CBgIIAJACSwJLAJMCTgJOAJQCYAJgAJUCYgJjAJYClgKXAJgCmQKZAJoCmwKwAJsCtQK8ALECvgLBALkCxgLLAL0C0ALYAMMC2gLaAMwC3ALcAM0C3gLeAM4C4ALgAM8C4gLrANAC9AL2ANoC+AL4AN0C+gL6AN4C/AL8AN8C/gL+AOADAwMDAOEDBQMFAOIDBwMHAOMDCQMJAOQDCwMLAOUDDQMZAOYDGwMbAPMDHQMdAPQDHwMfAPUDKgMqAPYDLAMsAPcDLgMuAPgDPAM8APkDPgNBAPoDQwNDAP4DRQNFAP8DSwNUAQADXwNjAQoDaQNrAQ8DcANwARIDggOFARMDiQOLARcDlAOUARoDogOnARsDqgO5ASEDvAO8ATEDwAPAATIDwgPCATMDxgPGATQDyQPKATUDzAPNATcDzwPVATkD1wPZAUAD2wPgAUMD4gPjAUkD5QPoAUsD7gPvAU8D8QPxAVED8wPzAVID9QP4AVMD+wQAAVcEAgQCAV0EBgQHAV4EDAQMAWAEDgQXAWEEGgQbAWsEHQQgAW0EJwQoAXEELAQsAXMELgQ0AXQEOgRiAXsEZARkAaQEZgRzAaUEewR7AbMEjASRAbQEkwSTAboElwSYAbsEmwSbAb0EnQSeAb4EoASgAcAEogSiAcEEswS3AcIEuQS5AccEuwS8AcgEvgS+AcoEwgTEAcsExgTGAc4EyATKAc8EzATMAdIEzgTOAdME0ATWAdQE2ATYAdsE2wTbAdwE3gTiAd0E5ATkAeIE5gTnAeME6wTrAeUE7gTuAeYE+QT5AecFBgUGAegFDQUNAekFEQURAeoAAgCaAAYABgAAAAsACwABABAAEAACABIAEgADACUAKQAEACwANAAJADgAPgASAEUARwAZAEkASQAcAEwATAAdAFEAVAAeAFYAVgAiAFoAWgAjAFwAXgAkAIoAigAnAJYAlgAoALEAtAApAL0AvQAtAMEAwQAuAMcAxwAvANQA1QAwANcA1wAyANoA2gAzANwA3gA0AOAA5gA3AOwA7AA+AO4A7gA/APcA9wBAAPwA/ABBAP4A/wBCAQQBBQBEAQoBCgBGAQ0BDQBHARgBGgBIAS4BMABLATMBNQBOATcBNwBRATkBOQBSATsBOwBTAUMBRABUAVQBVABWAVYBVgBXAVgBWABYAVwBXgBZAYUBiwBcAY8BkABjAfMB8wBlAfgB+ABmAfsB/ABnAgYCCABpAhoCGgBsAikCKwBtAksCSwBwAk4CTgBxAmACYAByAmICYwBzApYClwB1ApkCmQB3ApsCwQB4AsYCywCfAtAC4AClAuIC6wC2AvQC9gDAAvgC+ADDAvoC+gDEAvwC/ADFAv4C/gDGAwEDAQDHAwMDAwDIAwUDBQDJAwcDBwDKAwkDCQDLAwsDCwDMAw0DGQDNAxsDGwDaAx0DHQDbAx8DHwDcAyoDKgDdAywDLADeAy4DLgDfAzADMADgAzIDMgDhAzQDNADiAzYDNgDjAzgDOADkAzoDOgDlAzwDPADmAz4DRgDnA0sDVADwA18DYwD6A2kDawD/A3ADcAECA4EDhQEDA4kDiwEIA5QDlAELA6IDpwEMA6oDuQESA7wDvAEiA8ADwAEjA8IDwgEkA8YDxgElA8kDygEmA8wD1QEoA9cD2QEyA9sD4AE1A+ID6AE7A+4D7wFCA/ED8QFEA/MD8wFFA/UD+AFGA/sEAAFKBAIEAgFQBAYEBwFRBAwEFwFTBBoEGwFfBB0EIAFhBCcEKAFlBCwELAFnBC4ENAFoBDoEYgFvBGQEZAGYBGYEcwGZBHsEewGnBH4EfgGoBIAEgAGpBIwEkQGqBJMEkwGwBJcEmAGxBJsEmwGzBJ0EngG0BKAEoAG2BKIEogG3BLMEtwG4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AAAAAAAAAAAAAAAAACcAAgAEAAAAAAAAAAAAAAAAAAEAAAAJAAAAAAAAAAMAAAAAAAAAAAAAAAAAAQABAAAACAAAAAAAAAAAAAAAAAANAAIAHgAAAA0AAAAAAAAADwAAAAAAHgAfAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAABMAAAADAAMAIQADAAMAAwAAAAEAAwAiAAMAAwAAAAAAAwAAAAMAAAAAAAEAIQADAAAAAAACAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAACAAcAGgAJAAIAAAACAAEAAgAAAAIAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAA8AEwAAAAMAAAAAAA0AAAAAAAMAAAADAAAAAAACAAEADwATAA0AAAAgACIAAAAAAAAAAAAAAAAAAAAeACEAAAADAAAAAwAAAAMAAAAAAAAAAAADAA8AEwAAAAEAAQAAAAAAAAAAAB4AAAAAAAAAAgABAAAAAAAAAB4AIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAbAAAAEgASABgAEgASABIAGAAAAAAAAAAYABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAZACQAAAAOABUAHAAAAAUAAAAFAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAJQAFAAoAAAAAAAAAAAAAAAAAFQAFAAAAAAAVAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVAAUAEQAZABUAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgACAAAAAgACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAgAAAAAAAAAAAAAAAAAAAAAAAAACAAIAAgACAAIACwALAAsACwAMAAYABgAGAAYABgAGAAYAAQABAAEAAQABAAAAAAAAAAAAAwAHAAcABwAHAAcACAAIAAgACAAJAAkABAAGAAQABgAEAAYAAgABAAIAAQACAAEAAgABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAIAAQACAAEAAgABAAIAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAMAAgAHAAIABwACAAcAAAAAAAAAAAAAAAAAFAAQABQAEAAUABAAFAAQABQAEAANAAAADQAAAA0AAAALAAgACwAIAAsACAALAAgACwAIAAsACAAWAAAADAAJAAwAFwAdABcAHQAXAB0AAAAAAAIAAAAAAAAAAAAKAAoACgAKAAoACgAKAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAA4ADgAOAA4AEQAKAAoACgAFAAUABQAFAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAHAAcABwAHAAAABUAAAAOAA4ADgAOAA4ADgAkABEAEQAAAAAAAAAEAAAAAAAAAAIADAAAAAAABAAAAAAAFwAAAAAAAAAAAAAAAgAAAAAADAAPAAAADAABAAAAAwAAAAgAAAAHAAAACQAAAAAACAAHAAgAAAAAAAAAAAAAAAAAIwAAAAAAHwAEAAAAAAAAAAAAAAAAAAIAAAAAAAIADQAPAAYAAQADAAcAAwABAAkAEwABAAMAEAAAAAAAAAADAAkAFgAAABYAAAAWAAAADAAJABIAEgAAAAAAJgAAAAMABAAGAAAAAAABAAMAAAAAABoACQABAAIAAAAAAAIAAQAMAAkAAAAPABMAAAAEAAYABAAGAAAAAAAAAAEAAAABAAEADwATAAAAAAAAAAMAAAADAAIABwACAAEAAgAHAAAAAAAf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BPEE8gIHBPMCCAIJAgoE+AILAgsE+QT6AgwCDQIOAhUFBwUIAhYCFwIYAhkCGgIbBQsFDAUOBREFGgIdAh4CHwIgAiECIgIjAiQCJQImAg8CEAIRAhICEwIUAlYCKAIpAioCKwUUAiwCLgIvAjACMgI0ApIDTQNOA08DUANRA1IDUwNUA1UDVgNXA1gDWQNaA1sDXANdA14DXwNgA2EDYgNjA2QDZQNmA2cDaAOeA2kDagNrA2wDbQNuA28DcANxA3IDcwN0A3UDdgN3A3gDeQN6A3sDfAN9A34FGwOAA4EDggODA4QDhQOGA4cDiAOJA4oDiwOMA40DjgOPA5ADkQUeA5IDkwOVA5QDlgOXA5gDmQOaA5sDnAOdA58DoAOhBRwFHQTnBOgE6QTqBPQE9wT1BPYE+wT8BP0E6wTsBO0FBgUJBQoFDQUPBRACHAUSBP4E/wUABQEFAgUDBQQFBQUfBSAFIQUiBRMFFQUWAjMFGAI1BRkFFwIxAicCLQUnBSgAAgd8APsCAgKNAewB6wHqAekB6AHnAeYB5QHkAeMCTgJNAkwCSwJDAgECAAH/Af4B/QH8AfsB+gH5AfgB9wH2AfUB9AHzAfIB8QHwAe8B7gHtAgMCBAKPApECkAKSAo4CkwJtAgUCBgIHAggCCQIKAgsCDAINAg4CDwIQAhECEgITAhQCFQIWAhcCGAIZAhsCHAUaAh0CHgIfAiACIQIiAiMCJAIlAiYCVgIoAikCKgIrBRQCLAIuAi8CMAIxAjICMwI0An8CNgI3AjkCOANLA0wDTQNOA08DUANRA1IDUwNUA1UDVgNXA1gDWQNaA1sDXANdA14DXwNgA2EDYgNjA2QDZQNmA2cDaANpA2oDawNsA20DbgNvA3ADcQNyA3MDdAN1A3YDdwN4A3kDegN7A3wDfQN+A38FGwOAA4EDggODA4QDhQOGA4cDiAOJA4oDiwOMA40DjgOPA5ADkQUeA5IDkwOVA5QDlgOXA5gDmQOaA5sDnAOdA54DnwOgA6EFHAUdBOcE6ATpBOoE6wTsBO0E7gTvBPAE8QTyBPME9AT1BPYE9wT4BPkE+gT7BPwE/QT+BP8FAAUBBQIFAwIaBQQFBQUGBQcFCAUJBQoFCwUMBQ0FDgUPBRAFEQUSBR8FIAUhBSIFEwUVBRYFGAI1BRkFFwInAi0FJwUoAAEAAQF8AAEAAQBLAAEAAQC7AAEAAQA2AAEAAQATAAEAAgMkAyUAAgdgB1QAAQABAEoAAgdcB04AAQdeAAEHYAABB2IAAgABABQAHQAAAAEAAgAvAE8AAQADAEoAVwCVAAEAAwBJAEsChQACAAAAAQc6AAEABgLWAtcC6ALpA2sDdAABAAYATQBOAv0D6gPsBGUAAgADAZUBlQAAAeAB4gABAjoCQAAEAAIAAgCoAKwAAQEkAScAAQABAAwAJwAoACsAMwA1AEYARwBIAEsAUwBUAFUAAgACABQAHQAAAnACeQAKAAIABgBNAE0AAQBOAE4AAwL9Av0AAgPqA+oABAPsA+wABQRlBGUABgACAAQAFAAdAAACgQKBAAoCjAKMAAsEqQSwAAwAAgAGABoAGgAAABwAHAABAmUCagACAm4CbgAIAnACeQAJAoACgAATAAEAFAAaABwCZQJmAmcCaAJpAmoCbgKAAoECjASpBKoEqwSsBK0ErgSvBLAAAQY6AAEGPAABBj4AAQZAAAEGQgABBkQAAQZGAAEGSAABBkoAAQZMAAEGTgABBlAAAQZSAAEGVAABBlYAAgZYBl4AAgZeBmQAAgZkBmoAAgZqBnAAAgZwBnYAAgZ2BnwAAgZ8BoIAAgaCBogAAgaIBo4AAgaOBpQAAgaUBpoAAwaaBqAGpgADBqQGqgawAAMGrga0BroAAwa4Br4GxAADBsIGyAbOAAMGzAbSBtgAAwbWBtwG4gADBuAG5gbsAAQG6gbwBvYG/AAEBvgG/gcEBwoABQcGBwwHEgcYBx4ABQcYBx4HJAcqBzAABQcqBzAHNgc8B0IABQc8B0IHSAdOB1QABQdOB1QHWgdgB2YABQdgB2YHbAdyB3gABQdyB3gHfgeEB4oABQeEB4oHkAeWB5wABQeWB5wHogeoB64ABgeoB64HtAe6B8AHxgAGB74HxAfKB9AH1gfcAAYH1AfaB+AH5gfsB/IABgfqB/AH9gf8CAIICAAGCAAIBggMCBIIGAgeAAYIFggcCCIIKAguCDQABggsCDIIOAg+CEQISgAHCIoIQghICE4IVAhaCGAABwiCCFYIXAhiCGgIbgh0AAIAEQAlACkAAAArAC0ABQAvADQACAA2ADsADgA9AD4AFABFAEkAFgBLAE0AGwBPAFQAHgBWAFsAJABdAF4AKgCBAIEALACDAIMALQCGAIYALgCJAIkALwCNAI0AMACYAJsAMQDQANAANQABAOsACgBFAEYARwBIAEkASgBLAEwATQBOAE8AUABRAFIAUwBUAFUAVgBXAFgAWQBaAFsAXABdAF4AhQCGAIcAiQCKAIsAjQCQAJIAlAC7ALwAvQC+AL8AwADBAMIAwwDEAMUAxgDHAMgAyQDKAMsAzADNAM4A6gDrAOwA7QDuAO8A8ADxAPIA8wD0APUA9gD3APgA+QD6APsA/AD9AP4A/wEAAQEBAgEDAQQBBQEGAQcBMAE0ATYBOAE6ATwBQgFEAUYBSgFNAVoCmAKaArYCtwK4ArkCugK7ArwCvQK+Ar8CwALBAsICwwLEAsUCxgLHAsgCyQLKAssCzALNAs4CzwLQAtEC0wLVAtcC2QLbAt0C3wLhAuMC5QLnAukC6wLtAu8C8QLzAvUC9wL5AvsC/QMAAwIDBAMGAwgDCgMMAw4DEAMSAxUDFwMZAxsDHQMfAyEDIwMlAycDKQMrAy0DLwMxAzMDNQM3AzkDOwM9Az8DQgNEA0YDSANKA7oDuwO8A70DvwPAA8EDwgPDA8QDxQPGA8cDyAPfA+AD4QPiA+MD5APlA+YD5wPoA+kD6gPrA+wD7QPuA/AD8gP0A/YECwQNBA8EHQQkBCoEMASaBJsEnwSjBSQFJgABAPsACAAKABQAFQAWABcAGAAZABoAGwAcAB0AJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AGUAZwCBAIMAhACMAI8AkQCTALEAsgCzALQAtQC2ALcAuAC5ALoA0gDTANQA1QDWANcA2ADZANoA2wDcAN0A3gDfAOAA4QDiAOMA5ADlAOYA5wDoAOkBLwEzATUBNwE5ATsBQQFDAUUBSQFLAUwBWAFZAXEBsgG4Ab0BwAKWApcCmQKbApwCnQKeAp8CoAKhAqICowKkAqUCpgKnAqgCqQKqAqsCrAKtAq4CrwKwArECsgKzArQCtQLSAtQC1gLYAtoC3ALeAuAC4gLkAuYC6ALqAuwC7gLwAvIC9AL2AvgC+gL8Av4C/wMBAwMDBQMHAwkDCwMNAw8DEQMUAxYDGAMaAxwDHgMgAyIDJAMmAygDKgMsAy4DMAMyAzQDNgM4AzoDPAM+A0ADQQNDA0UDRwNJA6IDowOkA6UDpgOnA6gDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDuQPJA8oDywPMA80DzgPPA9AD0QPSA9MD1APVA9YD1wPYA9kD2gPbA9wD3QPeA+8D8QPzA/UECgQMBA4EIwQpBC8EmQSeBKIFIwUlAdcAAgBNAdgAAgBQAdkAAwBKAE0B2gADAEoAUAHWAAIASgHcAAIAWAHbAAIAWAAAAAEAAQABAAEAAAADBMIAAgCtAtgAAgCpBMgAAgCtBNUAAgCpBMMAAgCtAtkAAgCpBLIAAgCpBMkAAgCtBGUAAgCtBNYAAgCpA0cAAgCpA0kAAgCpA0gAAgCpA0oAAgCpBMEAAgCpBMQAAgCtBMYAAgHVAvIAAgHVBLEAAgCpA/wAAgCpBNAAAgCtAyoAAgHVBNsAAgCtBN4AAgCqBOAAAgCtA0EAAgCpBOQAAgCtBMUAAgCtBMcAAgHVA/0AAgCpBNEAAgCtAysAAgHVBNwAAgCtBN8AAgCqBOEAAgCtA0IAAgCpBOUAAgCtAwMAAgHVBMoAAgCpBMwAAgCtAwUAAgCpAwcAAgHVBM4AAgCtAyAAAgCpAyYAAgHVBNkAAgCtA+8AAgCoA/EAAgCpBOIAAgCtAwQAAgHVBMsAAgCpBM0AAgCtAwYAAgCpAwgAAgHVBM8AAgCtAyEAAgCpAycAAgHVBNoAAgCtA/AAAgCoA/IAAgCpBOMAAgCtAxoAAgCpAxwAAgHVBL0AAgCsBNcAAgCtAxsAAgCpAx0AAgHVBL4AAgCsBNgAAgCtAqsAAgCqAw0AAgCpAw8AAgHVBLMAAgCoBNIAAgCtArUAAgCpA/UAAgCoBIwAAgCtBI4AAgCrBJAAAgCqAsYAAgCqAw4AAgCpAxAAAgHVBLQAAgCoBNMAAgCtAtAAAgCpA/YAAgCoBI0AAgCtBI8AAgCrBJEAAgCqAsIAAgCoAsMAAgCpAvcAAgCqBGMAAgCrBLoAAgCsBHQAAgCpBHYAAgCoBHgAAgCrBHoAAgCqBHwAAgCtBHUAAgCpBHcAAgCoBHkAAgCrBHsAAgCqBH0AAgCtBIIAAgCpBIQAAgCoBIYAAgCrBIgAAgCqBIoAAgCtBIMAAgCpBIUAAgCoBIcAAgCrBIkAAgCqBIsAAgCtApsAAgCoApwAAgCpAp4AAgCqBDoAAgCtBDwAAgCrBLUAAgCsAqMAAgCoAqQAAgCpBFIAAgCtBFQAAgCrBFYAAgCqBLcAAgCsAqcAAgCoAqgAAgCpAvYAAgCqBGIAAgCrBGQAAgCtBLkAAgCsArYAAgCoArcAAgCpArkAAgCqBDsAAgCtBD0AAgCrBLYAAgCsAr4AAgCoAr8AAgCpBFMAAgCtBFUAAgCrBFcAAgCqBLgAAgCsAscAAgCoAsgAAgCpAsoAAgCqBGcAAgCtBGkAAgCrBLwAAgCsAswAAgCoAs0AAgCpAzEAAgCqBH8AAgCtBIEAAgCrBMAAAgCsAqwAAgCoAq0AAgCpAq8AAgCqBGYAAgCtBGgAAgCrBLsAAgCsArEAAgCoArIAAgCpAzAAAgCqBH4AAgCtBIAAAgCrBL8AAgCsBNQAAwCqAKkE3QADAKoAqQ==","Roboto-Regular.ttf":"AAEAAAARAQAABAAQR0RFRqcXo6wAAcTkAAACWEdQT1NEdJY1AAHHPAAAiPRHU1VCzONMagACUDAAABXoT1MvMpeDsYYAAAGYAAAAYGNtYXAi3dtfAAAWsAAABqZjdnQgO/gmfQAAL7AAAAD+ZnBnbagFhDIAAB1YAAAPhmdhc3AACAAZAAHE2AAAAAxnbHlmY2ZsvAAAOxAAAYX+aGVhZAzKDRkAAAEcAAAANmhoZWEKuhLOAAABVAAAACRobXR4GbahRgAAAfgAABS4bG9jYWxTClEAADCwAAAKXm1heHAI3hDGAAABeAAAACBuYW1lVOeDEgABwRAAAAOmcG9zdP9tAGQAAcS4AAAAIHByZXB5WM7TAAAs4AAAAs4AAQAAAAMDltEyzEVfDzz1ABsIAAAAAADE8BEuAAAAAOVdrQ/6Gv3VCTEIcwAAAAkAAgAAAAAAAAABAAAHbP4MAAAJSvoa/koJMQgAAAAAAAAAAAAAAAAAAAAFLgABAAAFLgCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEhAGQAAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/1AAIFsAAAAgAAAAAEdPT0cAQAAA//0GAP4AAGYHmgIAIAABnwAAAAAEOgWwAAAAIAADA4wAZAAAAAAAAAAAAfwAAAH8AAACEAChApAAiQTtAHcEfwBuBdwAaQT6AGYBZgBoAr0AhgLJACcDcgAcBIoATgGTAB0CNgAmAhwAkANNABMEfwBzBH8AqwR/AF4EfwBfBH8ANQR/AJoEfwCFBH8ATgR/AHEEfwBkAfAAhQGxACkEEQBIBGQAmAQvAIcDyABLBy8AbQU4AB0E/ACpBTUAeAVAAKkEjACpBGwAqQVzAHoFtQCpAi0AtwRqADUFBQCpBE8AqQb8AKkFtQCpBYEAdwUMAKkFgQBuBO4AqQTAAFEExgAyBTAAjAUYAB0HGQA9BQQAOgTOAA8EywBXAh8AkwNJACkCHwAKA1gAQAOcAAQCeQA5BFoAbQR+AIwEMABdBIMAXwQ+AF0CyAA9BH4AYQRoAI0B8gCOAer/vgQOAI0B8gCcBwQAiwRrAI0EkABcBH4AjASMAF8CtgCNBCEAXwKeAAkEaQCJA+AAIQYDACsD+AAqA8kAFgP4AFkCtQBAAfQAsAK1ABQFcQCDAfQAiwRhAGkEpwBbBbUAaQQ0AA8B7ACUBOgAWwNZAGUGSQBcA5QAkwPBAGUEbgB/BkoAWwOrAI8C/QCDBEcAYQLvAEIC7wA/AoIAewSJAJsD6gBEAhcAlAH8AHQC7wB7A6QAewPAAGcF3ABVBjUAUAY5AHADygBEB3r/8QRFAFkFgQB3BLoApwTCAIwGwgBPBLEAfgSSAEcEiQBcBJwAlQTIAF8FmwAeAfsAnAR0AJsETwAjAioAIwWLAKIEiQCSB6EAaQdEAGEB/AChBYcAXgK6/+MFfwBmBJMAXAWQAIwE8wCJAgT/tAQ4AGMDxACqA44AjgOrAI8DawCCAfIAjgKuAHkCKwAyA8YAewL8AF8CWgB/AAD8pwAA/W4AAPyKAAD9XQAA/CcAAP04Ag4AuAQMAHICFwCUBHMAsgWkACAFcgBnBT8AMgSSAHgFtQCyBJIARgW7AE4FiQBaBVIAcgSGAGQEvQChBAMALwSJAGEEUQBkBCUAbQSJAJIEjwB7ApgAwwRvACYD7ABmBMUAKQSJAJIETgBlBIgAYQQsAFEEXgCQBaMAWAWaAGAGlwB6BKIAegRD/9oGSABLBgAAKwVlAHsIkgAyCKUAsgaDAD4FtACwBQsAowYEADMHQwAbBMAAUAW1ALIFqgAwBQgATQYtAFQF2gCvBXoAlweHALAHwACwBhIAEQbrALIFBQCjBWUAlAcnALcFGABaBG0AYgSTAJ4DXACbBNQALgYhABYEEABYBJ4AnQRTAJ0EoAAsBe8AngSdAJ0EngCdA9kAKAXOAGQEvgCdBFoAaAZ5AJ0GnwCSBPcAHgY2AJ4EWACeBE4AZAaIAJ4EZAAvBGj/5wROAGcGyQAnBuQAnQSJ//0EngCdBwkAnAYsAIEEV//bBywAuAX5AJoE0wAoBEcADwcMAMoGDAC9BtIAkwXiAJcJBQC3B9EAnAQkAFAD2wBMBXIAZwSMAFwFCwAWBAQALwVyAGcEiQBcBwEAnAYkAH4HCQCcBiwAgQUyAHYESABkBP4AdAAA/GYAAPxwAAD9ZQAA/aQAAPoaAAD6KwYJALIE7QCdBFf/2wUbAKkEigCMBGQAogORAJIE2wCyBAYAkgeiABsGYQAWBZoAsgS4AJ0FCgCkBH4AmwaMAEUFhAA/Bf8AqQTZAJ0HzwCpBbQAkggxALAG9ACSBe8AcQTUAG4FGAA6BCoAKgctADQFXQAfBbwAlwSWAGgFcACXBGsAhAVwAIkGMAA/BL7/3QUKAKQEWgCbBf4AMATvACwFswCyBIkAkgYSAKkE7ACdB08AqQY+AJ4FhwBeBKgAaASoAGoEuAA5A6sAOgUuADoEQAAqBPcAVwaVAFoG5QBkBlcANgUsADEESgBTBAgAeQfCAEUGdgA/B/sAqgaiAJAE9wB2BB4AZgWuACQFIQBGBWUAlwYCADAE8wAsBSsAjwMhAHAEFAAACCkAAAQUAAAIKQAAArkAAAIKAAABXAAABH8AAAIwAAABogAAAQAAAADRAAAAAAAAAjQAJgI0ACYFQACiBj8AkAOmAA0BmgBhAZoAMAGYACQBmgBPAtQAaQLcADwCwgAkBGoARgSQAFcCswCLA8QAlAVaAJQBfwBSB6oARAJnAGwCZwBaA6MAPALvAFEC7wA2Au8AXALvAFYC7wA7Au8ATwLvAEoDOABQAvgAUAL4AFAB8QBUAfEAUANhAHoC7wBRAu8AewLvAEIC7wA/Au8ANgLvAFwC7wBWAu8AOwLvAE8C7wBKAzgAUAL4AFAC+ABQAfEAVAHxAFAEpwBbBlYAHwaRAKcIdgCpBesAHwYrAIwEfwBfBdoAHwQjACsEdAAhBUgAXQVPAB8F6AB7A84AaAg6AKIFAQBoBRgAmAYmAFQG1wBlBs8AZAZqAFoEkABqBY8AqQSvAEYEkwCoBMUAPwg6AGMCDf+vBIIAZQRkAJgEEQA9BC8AhAQIACwCTAC1ApAAbwIEAF0E8wA9BG8AIASLAD0G1AA9BtQAPQTuAD0GmwBfAAAAAAg0AFsINQBcAu8AQgLvAHsC7wBRBBAAVgQQAGEEEABCBA8AcgQQAIEEEAAxBBAATwQQAE8EEACZBBAAYwQjAEgEKwAOBFQAJwYVADEEaAAUBH0AdQQnACkEIABEBEoAigS8AFoEXQCLBLwAYATjAIsGAgCLA7UAiwRVAIsDzwAsAekAmATkAIsErABkA8wAiwQgAEQENAAxA6EADgOvAIsEaAAUBLwAYARoABQDiQA+BM8AiwPwAEAFZwBhBRcAYQTzAHYFcwAnBHwAYQdCACgHUACLBXQAKQTOAIsEWgCLBSUALgYLAB8EQABIBOwAiwROAIwEwQAoBCAAIwUpAIsEagA9BlEAiwasAIsFHQAJBfEAiwRPAIsEfABLBncAiwSHAFAEEgALBkgAHwR5AIwFCgCMBTcAJAXDAGAEXwAOBKgAJwZiACcEagA9BGoAiwXEAAIEywBeBEAASAS8AGAENAAxA+QAQwgiAIsEqwAoAu8APwLvADYC7wBcAu8AVgLvADsC7wBPAu8ASgOXAI8CtQCfA+YAiwQ6AB8ExABkBUwAsgUkALIEFACTBT0AsgQPAJMEgACLBHwAYQRRAIsEhgAUAf4AnwOlAIIAAPyjA/AAbwP0/10EDwBpA/UAaQOvAIsDoACCA58AggLvAFEC7wA2Au8AXALvAFYC7wA7Au8ATwLvAEoFggB+Ba8AfgWTALIF4AB+BeMAfgPVAKAEggCDBFgADwTPAD4EawBlBC4ASgOlAIQBkgBoBqQAYAS6AIIB/P+2BH8AOwR/AHMEfwAiBH8AdgR/AHYEfwA2BH8AfgR/AF4EfwBxBH8A9AIG/7QCBP+0AfsAnAH7//kB+wCcBFEAiwUAAHgEIQA7BH4AjAQzAF0EkwBbBIwAWwSfAFoEjgCMBJwAWwQ+AF0EfgBhBHAAWgN5AFcE1gBoA7UAAQY6AAkD+QCLBLwAYATjADAE4wCLAfwAAAI2ACYFXgAlBV4AJQSGAAEExgAyAp7/9AU4AB0FOAAdBTgAHQU4AB0FOAAdBTgAHQU4AB0FNQB4BIwAqQSMAKkEjACpBIwAqQIt/98CLQCxAi3/6gIt/9UFtQCpBYEAdwWBAHcFgQB3BYEAdwWBAHcFMACMBTAAjAUwAIwFMACMBM4ADwRaAG0EWgBtBFoAbQRaAG0EWgBtBFoAbQRaAG0EMABdBD4AXQQ+AF0EPgBdBD4AXQH7/8QB+wCWAfv/zwH7/7oEawCNBJAAXASQAFwEkABcBJAAXASQAFwEaQCJBGkAiQRpAIkEaQCJA8kAFgPJABYFOAAdBFoAbQU4AB0EWgBtBTgAHQRaAG0FNQB4BDAAXQU1AHgEMABdBTUAeAQwAF0FNQB4BDAAXQVAAKkFGQBfBIwAqQQ+AF0EjACpBD4AXQSMAKkEPgBdBIwAqQQ+AF0EjACpBD4AXQVzAHoEfgBhBXMAegR+AGEFcwB6BH4AYQVzAHoEfgBhBbUAqQRoAI0CLf+2Afv/mwIt/80B+/+yAi3/7AH7/9ECLQAXAfL/+gItAKoGlwC3A9wAjgRqADUCBP+0BQUAqQQOAI0ETwCiAfIAkwRPAKkB8gBWBE8AqQKIAJwETwCpAs4AnAW1AKkEawCNBbUAqQRrAI0FtQCpBGsAjQRr/7sFgQB3BJAAXAWBAHcEkABcBYEAdwSQAFwE7gCpArYAjQTuAKkCtgBTBO4AqQK2AGQEwABRBCEAXwTAAFEEIQBfBMAAUQQhAF8EwABRBCEAXwTAAFEEIQBfBMYAMgKeAAkExgAyAp4ACQTGADICxgAJBTAAjARpAIkFMACMBGkAiQUwAIwEaQCJBTAAjARpAIkFMACMBGkAiQUwAIwEaQCJBxkAPQYDACsEzgAPA8kAFgTOAA8EywBXA/gAWQTLAFcD+ABZBMsAVwP4AFkHev/xBsIATwWBAHcEiQBcBID/vQSA/70EJwApBIYAFASGABQEhgAUBIYAFASGABQEhgAUBIYAFAR8AGED5gCLA+YAiwPmAIsD5gCLAen/vAHpAI4B6f/HAen/sgTjAIsEvABgBLwAYAS8AGAEvABgBLwAYAR9AHUEfQB1BH0AdQR9AHUEKwAOBIYAFASGABQEhgAUBHwAYQR8AGEEfABhBHwAYQSAAIsD5gCLA+YAiwPmAIsD5gCLA+YAiwSsAGQErABkBKwAZASsAGQE5ACLAen/kwHp/6oB6f/JAekABQHpAIcDzwAsBFUAiwO1AIMDtQCLA7UAiwO1AIsE4wCLBOMAiwTjAIsEvABgBLwAYAS8AGAESgCKBEoAigRKAIoEIABEBCAARAQgAEQEIABEBCcAKQQnACkEJwApBH0AdQR9AHUEfQB1BH0AdQR9AHUEfQB1BhUAMQQrAA4EKwAOBCMASAQjAEgEIwBIBTgAHQTw/4wGGf+aApH/oAWV//oFMv92BWb//AKY/5sFOAAdBPwAqQSMAKkEywBXBbUAqQItALcFBQCpBvwAqQW1AKkFgQB3BQwAqQTGADIEzgAPBQQAOgIt/9UEzgAPBIYAZARRAGQEiQCSApgAwwReAJAEdACbBJAAXASJAJsD4AAhBHAAWgKY/+QEXgCQBJAAXAReAJAGlwB6BIwAqQRzALIEwABRAi0AtwIt/9UEagA1BSQAsgUFAKkFCABNBTgAHQT8AKkEcwCyBIwAqQW1ALIG/ACpBbUAqQWBAHcFtQCyBQwAqQU1AHgExgAyBQQAOgRaAG0EPgBdBJ4AnQSQAFwEfgCMBDAAXQPJABYD+AAqBD4AXQNcAJsEIQBfAfIAjgH7/7oB6v++BFMAnQPJABYHGQA9BgMAKwcZAD0GAwArBxkAPQYDACsEzgAPA8kAFgFmAGgCkACJBCAAoQIE/7QBmgAwBvwAqQcEAIsFOAAdBFoAbQSMAKkFtQCyBD4AXQSeAJ0FiQBaBZoAYAULABYEBP/7CFkAXAlKAHcEwABQBBAAWAU1AHgEMABdBM4ADwQDAC8CLQC3B0MAGwYhABYCLQC3BTgAHQRaAG0FOAAdBFoAbQd6//EGwgBPBIwAqQQ+AF0FhwBeBDgAYwQ4AGMHQwAbBiEAFgTAAFAEEABYBbUAsgSeAJ0FtQCyBJ4AnQWBAHcEkABcBXIAZwSMAFwFcgBnBIwAXAVlAJQETgBkBQgATQPJABYFCABNA8kAFgUIAE0DyQAWBXoAlwRaAGgG6wCyBjYAngSDAF8FOAAdBFoAbQU4AB0EWgBtBTgAHQRaAG0FOAAdBFr/yQU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU4AB0EWgBtBTgAHQRaAG0EjACpBD4AXQSMAKkEPgBdBIwAqQQ+AF0EjACpBD4AXQSM/+4EPv+4BIwAqQQ+AF0EjACpBD4AXQSMAKkEPgBdAi0AtwH7AJwCLQCkAfIAhgWBAHcEkABcBYEAdwSQAFwFgQB3BJAAXAWBAEYEkP/CBYEAdwSQAFwFgQB3BJAAXAWBAHcEkABcBX8AZgSTAFwFfwBmBJMAXAV/AGYEkwBcBX8AZgSTAFwFfwBmBJMAXAUwAIwEaQCJBTAAjARpAIkFkACMBPMAiQWQAIwE8wCJBZAAjATzAIkFkACMBPMAiQWQAIwE8wCJBM4ADwPJABYEzgAPA8kAFgTOAA8DyQAWBKEAXwTGADID2QAoBXoAlwRaAGgEcwCyA1wAmwYwAD8Evv/dBGgAjQUF/9QFBf/UBHMAAwNc//0FOAALBCj/0wTOAA8EAwAvBQQAOgP4ACoEUQBkBGwAEgY/AJAEfwBeBH8AXwR/ADUEfwCaBJMAmQSnAIUEkwBkBKcAhwVzAHoEfgBhBbUAqQRrAI0FOAAdBFoAOgSMAF8EPgApAi3/CwH7/vAFgQB3BJAAMwTuAFYCtv+MBTAAjARpACsEp/84BPwAqQR+AIwFQACpBIMAXwVAAKkEgwBf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AHIAbwBqAGUAYwB0ACAAQQB1AHQAaABvAHIAcwAgACgAaAB0AHQAcABzADoALwAvAGcAaQB0AGgAdQBiAC4AYwBvAG0ALwBnAG8AbwBnAGwAZQBmAG8AbgB0AHMALwByAG8AYgBvAHQAbwAtAGMAbABhAHMAcwBpAGMAKQBSAG8AYgBvAHQAbwBSAGUAZwB1AGwAYQByAFYAZQByAHMAaQBvAG4AIAAzAC4AMAAxADQAOwAgADIAMAAyADUAUgBvAGIAbwB0AG8ALQBSAGUAZwB1AGwAYQByAFIAbwBiAG8AdABvACAAaQBzACAAYQAgAHQAcgBhAGQAZQBtAGEAcgBrACAAbwBmACAARwBvAG8AZwBsAGUALgBHAG8AbwBnAGwAZQBDAGgAcgBpAHMAdABpAGEAbgAgAFIAbwBiAGUAcgB0AHMAbwBuAEcAbwBvAGcAbABlAC4AYwBvAG0AVABoAGkAcwAgAEYAbwBuAHQAIABTAG8AZgB0AHcAYQByAGUAIABpAHMAIABsAGkAYwBlAG4AcwBlAGQAIAB1AG4AZABlAHIAIAB0AGgAZQAgAFMASQBMACAATwBwAGUAbgAgAEYAbwBuAHQAIABMAGkAYwBlAG4AcwBlACwAIABWAGUAcgBzAGkAbwBuACAAMQAuADEALgAgAFQAaABpAHMAIABsAGkAYwBlAG4AcwBlACAAaQBzACAAYQB2AGEAaQBsAGEAYgBsAGUAIAB3AGkAdABoACAAYQAgAEYAQQBRACAAYQB0ADoAIABoAHQAdABwAHMAOgAvAC8AbwBwAGUAbgBmAG8AbgB0AGwAaQBjAGUAbgBzAGUALgBvAHIAZwBoAHQAdABwAHMAOgAvAC8AbwBwAGUAbgBmAG8AbgB0AGwAaQBjAGUAbgBzAGUALgBvAHIAZwAAAAMAAAAAAAD/agBkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQACAAgACP//AA8AAQACAA4AAAAAAAACKAACAFkAJQA+AAEARABeAAEAagBqAAEAcABwAAEAdQB1AAEAgQCBAAEAgwCDAAEAhgCGAAEAiQCJAAEAiwCWAAEAmACfAAEAoQCjAAEApQCmAAEAqACtAAMAsQCxAAEAugC7AAEAvwC/AAEAwQDBAAEAwwDEAAEAxwDHAAEAywDLAAEAzQDOAAEA0ADRAAEA0wDTAAEA2gDeAAEA4QDhAAEA5QDlAAEA5wDpAAEA6wD7AAEA/QD9AAEA/wEBAAEBAwEDAAEBCAEJAAEBFgEaAAEBHAEcAAEBIAEiAAEBJAEnAAMBKgErAAEBMwE0AAEBNgE2AAEBOwE8AAEBQQFEAAEBRwFIAAEBSwFNAAEBUQFRAAEBVAFYAAEBXQFeAAEBYgFiAAEBZAFkAAEBaAFoAAEBagFsAAEBbgFuAAEBcAFwAAEB1gHcAAIB7QIBAAECBQIFAAECDgIOAAECEAIQAAECFwIZAAECGwIcAAECHgIeAAECIgIiAAECJAImAAECLAIsAAECMQIzAAECNQI1AAECQwJDAAECRgJGAAECSAJIAAECSwJOAAECegJ+AAECjgKTAAEClgL+AAEDAQPAAAEDwgPCAAEDxAPOAAED0APZAAED2wP2AAED+gP6AAED/AQDAAEEBQQHAAEECgQOAAEEEASbAAEEngSfAAEEoQSiAAEEpASnAAEEsQUNAAEFDwUZAAEFHAUpAAEAAQADAAAAEAAAABYAAAAgAAEAAQCtAAIAAQCoAKwAAAACAAIAqACsAAABJAEnAAUAAQAAABoANAAKAAcARABcAGYATABUAHAAegAEREZMVAB0Y3lybAB0Z3JlawB0bGF0bgB0AARjcHNwAF5rZXJuAGRtYXJrAGxta21rAHQAAQAAAAEAYgAEAAAAAQBkAAQAAAABAGgAAgAIAAIAwgSiAAIACAACAHoAlgAGABAAAQBYAAAABgAQAAEAWgACAGoAAAAAAAEAAAAAAAIAAgABAAAAAgADAAQAAAACAAUABgABFcYABQAkAEgAAREuEhIAARE0N9YAARFcE9IAARFsStgAAREWERYAAREcESIAARFEESYAARFUETgAAREkAAQAAAACEQ4RFAAA//8ABAAAAAEAAgADAAIRUgAEAAARdhGeAAMAAwAA/5X/iAAA/1YAAAAA/4gAAAABXfQABAAAAesaBBdgF2AeMh3YF6YX5Bi2F8haVhj2GPYb7BgIGPYY9hi2GRgnDh/OJkQX9hgeHX4fXBg0GxYY1Bh+F5IwYhewLUAXsBewGWAYfhfWHvYYmBhKF2YYmBtcGH4YtiBEJX4c0hi2HdgsQi5CKYgkFhdIGJgXflDgF7BD8CtQL0QYZBdOF1RTyhdaGp4aMiDGReI0JEBAMtYY9jzoSBQdfifcGPYY9huiGPYY9hj2PpIhUBj2GdokuCLyHpQqaiOEF5woshdmGbBCFlbIGH4a2DGYIdoZOhh+ImQZhh0oGmgZOh3YGWAX9hiYGbAYfiV+F5wdfhdmG+wb7BvsGPYdfhdmGPYY9hi2F5wdfhdmF2A1xhdgF2AXYBd4HDYchBdyF4gXbBdyF2wXuhdsF+QYthi2GLYYtiZEHdgd2B3YHdgd2B3YHdgX5BfIF8gXyBfIGPYY9hj2GPYY9hi2GLYYthi2GLYfXBjUGNQY1BjUGNQY1BjUF5IXkheSF5IXsBlgGWAZYBlgGWAYmBiYHdgY1B3YGNQd2BjUF+QX5BfkF+QYthfIF5IXyBeSF8gXkhfIF5IXyBeSGPYXsBj2GPYY9hj2GPYb7BgIGAgYCBgIGPYXsBj2F7AY9hewF7AYthlgGLYZYBi2GWAX1hfWF9YmRCZEJkQYHh9cGJgfXBg0GDQYNBdyF3IXeBdsF2wXbBdsF2wXbBdsF3IXchdyF3IXchdsF2wXbBdyF4gXiBeIF4gXchdyF3IXeB3YF8gY9hj2GLYfXB3YF6YXyBg0GPYY9hvsGPYY9hi2GRgmRB9cHX4Y9h9cF7AZYBiYGWAXyCV+GPYY9hvsG+wboh3YF6YlfhfIGPYY9hi2GRgX5CZEHX4Y1BeSGWAYfhiYF2YXkhecGJgYHhgeGB4fXBiYF2AXYBdgGPYXsB3YGNQXyBeSF/YYmBfkH1wYmBj2HX4XZhj2HdgY1B3YGNQXyBeSF5IXkh1+F2YYthlgGWAYfhuiGJgbohiYG6IYmB3YGNQd2BjUHdgY1B3YGNQd2BjUHdgY1B3YGNQd2BjUHdgY1B3YGNQd2BjUHdgY1BfIF5IXyBeSF8gXkhfIF5IXyBeSF8gXkhfIF5IXyBeSGPYY9hi2GWAYthlgGLYZYBi2GWAYthlgGLYZYBi2GWAZYB9cGJgfXBiYH1wYmCZEJX4XnBewGdolfhvsH1wY9hewHdgY1BfIGPYYthlgF9YXphh+GLYYthj2F7Ab7BvsGAgY9hewGPYXsBi2GRgYfhfWJkQX9hiYF/YYmBgeGDQYthdsF3IXbBd4F2wXchd4AAJd0gAEAABhcmouACkAKAAAAAAAAAAAABIAAAAAAAAAAAAAAAAAAP/k/+MAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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AiwCLAByAjICMwBzAkMCQwB1AkYCRgB2AkgCSAB3AksCTgB4AnoCfgB8Ao4CkwCBApYC/gCHAwEDAQDwAwMDRgDxA0sDqAE1A6oDugGTA7wDvAGkA78DwAGlA8IDwgGnA8YDxgGoA8gDyQGpA8sDzgGrA9AD0AGvA9ID0wGwA9UD1QGyA9cD2QGzA9sD4AG2A+ID5wG8A+kD7AHCA+4D9gHGA/oD+gHPA/wEAAHQBAIEAgHVBAoEDgHWBBAEEAHbBBMEFwHcBBoEHgHhBCEEIgHmBCcEKAHoBDAEMAHqBDIEMgHrBDQENAHsBDkEkwHtBJkEmwJIBKEEogJLBKQEpQJNBKcEpwJPBLEEwAJQBMIE/gJgBQAFBAKdBQYFBwKiBQkFCQKkBQsFDQKlBQ8FFwKoBRwFKQKxAAIATwAlAD4AAABFAF4AGgCBAIEANACDAIMANQCGAIYANgCJAIkANwCLAJYAOACYAJ0ARACxALEASgC7ALsASwC/AL8ATADBAMEATQDDAMMATgDHAMcATwDLAMsAUADNAM4AUQDQANEAUwDTANMAVQDaANwAVgDeAN4AWQDhAOEAWgDlAOUAWwDnAOkAXADrAPsAXwD9AP0AcAD/AQEAcQEDAQMAdAEIAQkAdQEWARoAdwEcARwAfAEgASIAfQEqASsAgAFBAUIAggFLAUsAhAFYAVgAhQFiAWIAhgFkAWQAhwFoAWgAiAFqAWwAiQFuAW4AjAHtAgEAjQIFAgUAogIQAhAAowIXAhkApAIcAhwApwIeAh4AqAIiAiIAqQIkAiYAqgIsAiwArQIxAjEArgIzAjMArwI1AjUAsAJDAkMAsQJGAkYAsgJIAkgAswJLAk4AtAJ6An4AuAKOApMAvQKWAv4AwwMBA6cBLAOpA8AB0wPCA8IB6wPEA84B7APQA9kB9wPbA/YCAQP6A/oCHQP8BAMCHgQFBAcCJgQKBA4CKQQQBJgCLgSbBJsCtwSeBJ8CuAShBKICugSkBKcCvASxBOwCwATuBQ0C/AUPBRYDHAUYBRkDJAUcBSkDJgABAPsACAAKABQAFQAWABcAGAAZABoAGwAcAB0AJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AGUAZwCBAIMAhACMAI8AkQCTALEAsgCzALQAtQC2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AJP/5gCY/+YAs//mALj/wgDEABAA0//mAQj/5gEX/+YBG//mAR3/5gEf/+YBIf/mAUH/5gFq/+YCYP/mAmH/5gJj/+YCZP/mAqL/5gKs/+YCrf/mAq7/5gKv/+YCsP/mAtj/5gLa/+YC3P/mAt7/5gLs/+YC7v/mAvD/5gLy/+YDFP/mAxb/5gMY/+YDSf/mA6b/5gOz/+YD2f/mA9z/5gQJ/+YEDP/mBCf/5gQp/+YEK//mBGb/5gRo/+YEav/mBGz/5gRu/+YEcP/mBHL/5gR0/+YEdv/mBHj/5gR6/+YEfP/mBLv/5gTU/+YARwAQAAAAEgAAAEf/5wBI/+cASf/nAEv/5wBV/+cAlP/nAJn/5wC7/+cAxAAPAMj/5wDJ/+cA9//nAQP/5wEe/+cBIv/nAUL/5wFg/+cBYf/nAWv/5wGHAAABiwAAAY8AAAGQAAACvf/nAr7/5wK//+cCwP/nAsH/5wLZ/+cC2//nAt3/5wLf/+cC4f/nAuP/5wLl/+cC5//nAun/5wLr/+cC7f/nAu//5wLx/+cC8//nA7r/5wPg/+cD5P/nA+f/5wQC/+cECP/nBA3/5wQb/+cEHf/nBB7/5wQq/+cEOf/nBFP/5wRV/+cEV//nBFn/5wRb/+cEXf/nBF//5wRh/+cEdf/nBHf/5wR5/+cEff/nBLj/5wTF/+cEx//nAE0ABgAQAAsAEAANABQAQQASAEf/6ABI/+gASf/oAEv/6ABV/+gAYQATAJT/6ACZ/+gAu//oAMj/6ADJ/+gA9//oAQP/6AEe/+gBIv/oAUL/6AFg/+gBYf/oAWv/6AGFABABhgAQAYgAEAGJABABigAQAr3/6AK+/+gCv//oAsD/6ALB/+gC2f/oAtv/6ALd/+gC3//oAuH/6ALj/+gC5f/oAuf/6ALp/+gC6//oAu3/6ALv/+gC8f/oAvP/6AO6/+gD4P/oA+T/6APn/+gD9wAQA/gAEAP7ABAEAv/oBAj/6AQN/+gEG//oBB3/6AQe/+gEKv/oBDn/6ART/+gEVf/oBFf/6ARZ/+gEW//oBF3/6ARf/+gEYf/oBHX/6AR3/+gEef/oBH3/6AS4/+gExf/oBMf/6ABPAEcADABIAAwASQAMAEsADABVAAwAlAAMAJkADAC7AAwAyAAMAMkADADtADoA8gAYAPb/4wD3AAwA+f/3APwAAAD+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PSw7rDkkO7g9OD04NWo7xDpcOHY73DvoO/Q8ADxyO6wy6DwYPCQ8MDw8PE48Wjs0Oy48Zj0yO7I5Kju+PT4yoDVwO8o6YjimO+I77jv6PAY6dDiOMqY8HjwqPDY6sDxUPGA7OjryPGw5SDKsOU4ysjviMrg9UDhGMr4yxDwAPAYyyjLQMtYy3DqqPTI65jrsNFY5ZjsiODQ7QDg6OEAy4jhYOQY4XjumM1oy6DLuORgy9DL6OxYzADMGMwwzEjMYOygzHjMkOR4zKjMwMzYzPDNCM0g7EDNOM1Q7HDNmM1ozYDPeM2YzbDNyM3gzfjOEOa45tDOKM5AzljOcM6IzqDOuM7Qzujg6M8AzxjusM8wz0jPYM94z5DPqPPY89jzeM/Az9jzSPNg9FDfUM/w80jzMPH48xjeqPHg8ojyWPOo3ejQCPLo0CDQOPOQ0FDQaPPY0IDQmNCw0MjQ4ND40RDRKPUo0UDviNsA88Dy0PUQ0VjRWPVA9UD1QN6o0XDRiPMw86jx+O7g7uDvKPDA8NjRoNGg6FDRuOTw0dD0sOSQ47jjuOkQ4ZDR6NHo0gDhwNIY0jDSMOno0kjmiNJg0mDSeNKQ40DqMOow6GjqkOUI0qj0yOSo4+jj6Oko4lDSwNLA0tjigNLw0wjTCOoA0yDmoNM40zjTUNNo41jnkNOA05jogOiY9LD0yNOw08jT4NP41BDUKNRA1FjUcO741IjUoOVQ5WjUuNTQ9OD0+NTo1QDVGNUw1UjVYNV41ZDVqNXA1djV8NYI6YjWINY41lDWaOlw6YjWgNaY1rDvcO+I1sjW4O+g77jvoO+476DvuO1I7WDwAPAY1vjXEPAY1yjXQNdY13DXiNeg17jX0PBg8HjX6NgA2BjYMNhI2GDwkPCo8JDwqNh42JDwwPDY8MDw2Nio8NjYwNjY2PDZCNkg2TjZUNlo2YDZmPDw6sDZsNnI2eDZ+OC42hDaKNpA2ljacNqI2qDauNrQ2ujbANsA82DbGNsY2zDbSNtg23j1EPPA25DbkNuo8ijbwNvA29jycNvw9Dj0ONwI3CDcONxQ3FDcaNyA9JjcmNyw9RDcyNzg3PjdEN0o3UDdWN1w9SjdiN2g3bjd0N3o3gDeGN4w3kjyWN5g3njx4N6Q3qjeqN6o3sDx+N7Y3vDfCN8g3zjfUN9o34DfmPRQ37DzYN/I82Df4N/44BDgKOBA80jgWOBw8hD0mOCI4KD0sPTg7xDpcPHI7LjhAPSw7rD04PGY7xDpcO9w79DwAPHI7rDwwOy47NDhwOC44NDtAODo4QDhYOEY6dDxUOEw4Ujp0OFg4XjhkOGo8JDpcOHA4djvQOHw9LDusOyI9ODiCO/Q7xDxyO6w5JDwwOzQ9Mj0+OIg6dDiOOSo68js6OJQ4mjwqOmI4oDimOKw4sji4OL44uDi+OMQ4yjjQONY43DjiOOg9LD0yOO449Dj6OQA5BjkMORI5GDkeOSQ5KjsuOlw5MDk2Olw6IDomOTw5QjlIOU45VDlaOWA5ZjlsOXI5eDl+OYQ5ijmQOZY5nDmiOag5rjm0Obo5wDnGOcw50jnYOd455DnqOfA59jn8OgI6CDu+PSw9MjoOOpg9LD0yPSw9Mj0sPTI9LD0yOhQ6Gj0sPTI9LD0yPSw9Mj0sPTI6IDomPTg9PjosOjI6ODo+PTg9Pj04PT49OD0+PTg9PjpEOko6UDpWOlw6YjxyOnQ6aDpuPHI6dDxyOnQ8cjp0PHI6dDp6OoA6hjqMOoY6jDqSOpg6njqkOqo9Mjw8OrA6tjq8OsI6yDrCOsg6zjrUOto64DrmOuw7LjryOvg6/jsEOwo7vjwwOxA7FjscOyI7KDvKOyI7KDviOy47NDs6O0A9ODtGO0w7UjtYO147ZDtqO3A7djt8O4I7iDuOO5Q7mjugO6Y7rDuyO7g7vju4O747xDvKO9A71jvcO+I76DvuO/Q7+jwAPAY8cjwMPBI8GDwePCQ8KjwwPDY8PDxCPEg8TjxUPFo8YDxmPGw8cj1EPUo86jyWPMw89j1EPLQ9Sjz2POo8ljx4PMY8fjzMPNI82Dz2PN48nDyEPIo8kD0UPJY8nDyiPKg8rj1EPLQ8uj1KPMA8xjzqPMw80jzwPNg83jzkPOo88Dz2PPw9Aj0IPQ49FD0aPRo9ID0mPSw9Mj04PT49RD1KPVAAugBH/9wASP/cAEn/3ABL/9wAUf/zAFL/8wBT/9YAVP/zAFX/3ABZ/90AWv/hAF3/4QCU/9wAmf/cAJv/3QC7/9wAvf/hAL7/7gC//+YAwf/zAML/6wDD/+kAxf/wAMb/5wDI/9wAyf/cAMr/4wDL/90AzP/OAM3/1ADO/9sA7P/zAPD/8wDx//MA8//zAPT/8wD1//MA9//cAPj/8wD6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Azn/6gM7/+oDP//oA07/wANP/8ADUP/AA1H/wANS/8ADU//AA1T/wANp/8ADav/AA2v/wAOi/1YDqv9WA7r/6wO+/+oDwP/rA8L/6APF/+oDxv/rA8f/6gPO/vgD0v9WA90AFAPf/94D4P/rA+L/6wPk/+sD5f/oA+f/6wPu/+gD9v/oA/7/VgP//94EAv/rBAf/6AQI/+sEDf/rBA//6AQU/1YEFf/eBBb/VgQX/94EG//rBB3/6wQe/+sEKP/rBCr/6wQs/+sEMP/oBDL/6AQ0/+gEOf/rBDr/VgQ7/94EPP9WBD3/3gQ+/1YEP//eBED/VgRB/94EQv9WBEP/3gRE/1YERf/eBEb/VgRH/94ESP9WBEn/3gRK/1YES//eBEz/VgRN/94ETv9WBE//3gRQ/1YEUf/eBFP/6wRV/+sEV//rBFn/6wRb/+sEXf/rBF//6wRh/+sEZ//rBGn/6wRr/+sEbf/rBG//6wRx/+sEc//rBHX/6wR3/+sEef/rBHv/6wR9/+sEf//qBIH/6gSD/+oEhf/qBIf/6gSJ/+oEi//qBI3/6ASP/+gEkf/oBJMAFAS1/1YEtv/eBLj/6wS8/+sEwP/qBMX/6wTH/+sE2wAUBN//6ATh/+gE5//ABO7/wAUG/8AAAgCfAAQABAAAAAYABgABAAsADAACACUAKgAEACwALQAKAC8ANgAMADgAOAAUADoAPwAVAEUARgAbAEkASgAdAEwATAAfAE8ATwAgAFEAVAAhAFYAVgAlAFgAWAAmAFoAXQAnAF8AXwArAIoAigAsAJYAlgAtAJ0AnQAuALEAtQAvALcAuQA0ALsAuwA3AL0AvgA4AMAAwQA6AMMAxQA8AMcAzgA/ANIA0gBHANQA3gBIAOAA7wBTAPEA8QBjAPYA+ABkAPsA/ABnAP4BAABpAQMBBQBsAQoBCgBvAQ0BDQBwARgBGgBxASIBIgB0AS4BMAB1ATMBNQB4ATcBNwB7ATkBOQB8ATsBOwB9AUMBRAB+AVQBVACAAVYBVgCBAVgBWACCAVwBXgCDAYUBhgCGAYgBigCIAfMB8wCLAfUB9gCMAfgB+ACOAfsB+wCPAgYCCACQAksCSwCTAk4CTgCUAmACYACVAmICYwCWApYClwCYApkCmQCaApsCsACbArUCvACxAr4CwQC5AsYCywC9AtAC2ADDAtoC2gDMAtwC3ADNAt4C3gDOAuAC4ADPAuIC6wDQAvQC9gDaAvgC+ADdAvoC+gDeAvwC/ADfAv4C/gDgAwMDAwDhAwUDBQDiAwcDBwDjAwkDCQDkAwsDCwDlAw0DGQDmAxsDGwDzAx0DHQD0Ax8DHwD1AyoDKgD2AywDLAD3Ay4DLgD4AzwDPAD5Az4DQQD6A0MDQwD+A0UDRQD/A0sDVAEAA18DYwEKA2kDawEPA3ADcAESA4IDhQETA4kDiwEXA5QDlAEaA6IDpwEbA6oDuQEhA7wDvAExA8ADwAEyA8IDwgEzA8YDxgE0A8kDygE1A8wDzQE3A88D1QE5A9cD2QFAA9sD4AFDA+ID4wFJA+UD6AFLA+4D7wFPA/ED8QFRA/MD8wFSA/UD+AFTA/sEAAFXBAIEAgFdBAYEBwFeBAwEDAFgBA4EFwFhBBoEGwFrBB0EIAFtBCcEKAFxBCwELAFzBC4ENAF0BDoEYgF7BGQEZAGkBGYEcwGlBHsEewGzBIwEkQG0BJMEkwG6BJcEmAG7BJsEmwG9BJ0EngG+BKAEoAHABKIEogHBBLMEtwHCBLkEuQHHBLsEvAHIBL4EvgHKBMIExAHLBMYExgHOBMgEygHPBMwEzAHSBM4EzgHTBNAE1gHUBNgE2AHbBNsE2wHcBN4E4gHdBOQE5AHiBOYE5wHjBOsE6wHlBO4E7gHmBPkE+QHnBQYFBgHoBQ0FDQHpBREFEQHqAAIAmgAGAAYAAAALAAsAAQAQABAAAgASABIAAwAlACkABAAsADQACQA4AD4AEgBFAEcAGQBJAEkAHABMAEwAHQBRAFQAHgBWAFYAIgBaAFoAIwBcAF4AJACKAIoAJwCWAJYAKACxALQAKQC9AL0ALQDBAMEALgDHAMcALwDUANUAMADXANcAMgDaANoAMwDcAN4ANADgAOYANwDsAOwAPgDuAO4APwD3APcAQAD8APwAQQD+AP8AQgEEAQUARAEKAQoARgENAQ0ARwEYARoASAEuATAASwEzATUATgE3ATcAUQE5ATkAUgE7ATsAUwFDAUQAVAFUAVQAVgFWAVYAVwFYAVgAWAFcAV4AWQGFAYsAXAGPAZAAYwHzAfMAZQH4AfgAZgH7AfwAZwIGAggAaQIaAhoAbAIpAisAbQJLAksAcAJOAk4AcQJgAmAAcgJiAmMAcwKWApcAdQKZApkAdwKb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AAAAGAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAGQAkAAAADgAVABwAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAACUABQAKAAAAAAAAAAAAAAAAABUABQAAAAAAFQAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAFQAFABEAGQAVAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAgAAAAIAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAIAAAAAAAAAAAAAAAAAAAAAAAAAAgACAAIAAgACAAsACwALAAsADAAGAAYABgAGAAYABgAGAAEAAQABAAEAAQAAAAAAAAAAAAMABwAHAAcABwAHAAgACAAIAAgACQAJAAQABgAEAAYABAAGAAIAAQACAAEAAgABAAIAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQACAAEAAgABAAIAAQACAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAADAAAAAwADAAIABwACAAcAAgAHAAAAAAAAAAAAAAAAABQAEAAUABAAFAAQABQAEAAUABAADQAAAA0AAAANAAAACwAIAAsACAALAAgACwAIAAsACAALAAgAFgAAAAwACQAMABcAHQAXAB0AFwAdAAAAAAACAAAAAAAAAAAACgAKAAoACgAKAAoACgAFAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAOAA4ADgAOABEACgAKAAoABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAABwAHAAcABwAAAAVAAAADgAOAA4ADgAOAA4AJAARABEAAAAAAAAABAAAAAAAAAACAAwAAAAAAAQAAAAAABcAAAAAAAAAAAAAAAIAAAAAAAwADwAAAAwAAQAAAAMAAAAIAAAABwAAAAkAAAAAAAgABwAIAAAAAAAAAAAAAAAAACMAAAAAAB8ABAAAAAAAAAAAAAAAAAACAAAAAAACAA0ADwAGAAEAAwAHAAMAAQAJABMAAQADABAAAAAAAAAAAwAJABYAAAAWAAAAFgAAAAwACQASABIAAAAAACYAAAADAAQABgAAAAAAAQADAAAAAAAaAAkAAQACAAAAAAACAAEADAAJAAAADwATAAAABAAGAAQABgAAAAAAAAABAAAAAQABAA8AEwAAAAAAAAADAAAAAwACAAcAAgABAAIABwAAAAAAHwAJAB8ACQAfAAkAIAAiAAAAAwABAAQABgAEAAYABAAGAAQABgAEAAYABAAGAAQABgAEAAYABAAGAAQABgAEAAYABAAGAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAACAAcAAgAHAAIABwACAAcAAgAHAAIABwACAAcAAgABAAIAAQACAAEAAgAHAAIAAQALAAgACwAIAAAACAAAAAgAAAAIAAAACAAAAAgADAAJAAwACQAMAAkAAAANAAAAIAAiAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAQABgAAAAEAAAAAAAIABwAAAAAAAAAIAAAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAgAAAAAAAAAAABQAEAANAAAACwAaAAkAGgAJABYAAAAXAB0AAAAKAAAAAAAAAAUAEQAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAGQAAABEAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAAAAAAAABQAAAAAABQAVABkAAAAAAAUAEQAB/asAAAAB/av+ngAB/e4GaQAB/coGaQAB/ecGPgAB/bIGuQAB/jMGQAAB/e4FCgAB/coFCgAB/ecE6AAB/bIE+gAB/jMFDwAB/dIEpgAB/kQEpgAB/dwFAQAB/hoFAQABArr/9gABAlb/9gABAUoACgABA5T+aQABAtQACgABAmoACgABARgACgABA7kAAAABA7H//wABAPgACgABArgAAAABAt4ACgABAi0ACgABApz/9gABAj7/9gABAkL/9gABAl4ACgABARMACgABAqb/9gABAiP/9gABAqv/9gABAjEACgABAlf/9gABAekACgABAloACgABArv/9gABAlMAAAABAQr+NQABAPn+NQABAcIACgABAqj+PgABAhX+PgABAtr98wABARf+VwABApT+VgABAhH+QwABAmz+BgABAPn+BgABAmwACgABAtD+BgABAjP+BgABAmP+BgABAPb+BwABAnT+RwABAjL+PgABAnT9+wABAjL98gABAmb9/AABAcX9/AABAmb+SAABAcX+SAABAcUAAAABAg4ACgABAkr+RAABAk///AABAk/9+AABAPT+TgABAhT+AgABAg/+BAABAg8ACAABAmv+AAABAg3+BAABAg0ACAABAij+SAABAhP9/wABAhP+SwABAj4AAAABAqcACgABAiX/9gABAO8ACgABAk4ACgABA0v/9gABAnT//wABAgD/9gABAmUACgABAsoACgABAjL/9gABA5oACgABAv4ACgABAL7+NQABA30ACgABA4EACgABAqj/9gABAhX/9gABAqMAAAABAj0AAAABAl7/9gABAgb/9wABAq7+ngABAfb+ngABAmv+qAABAjj+ngABARf+pwABAsP+ngABAkj+nQABArQAAAABAkb/9gABArT+ngABAkb+lAABApr+ngABAf3+ngABArT/9wABArT+lQABAjP+ngABAmf+nwABAsj+AAABAsj/YgABAmkAAAABAmYAAAABA8n/+gABAsP//QABAkwACgABAmcAAQABAoUACgABAf8ACgABAhMACgABAtr/9wABAir+QQABAtAACgABAjMACgABAq4AAAABAfYAAAABAmsACgABAjgAAAABARcACQABAPkACgABAkj//wABAmMACgABAPYACwABAjMAAAABAlb+lAABAmn+ngABAmX+BgABAmn9/AABAsr+qAABAkz+qAABApQAWgABAhEARwABApT++AABAhH+5QABAmz+qAABA33+qAABA4H+qAABAtD+qAABAjP+qAABAhIACgABAOf+aQABAmP+qAABAPb+qQABAnT+nQABAjL+lAABAmb+ngABAcX+ngABApoAAAABAo8ACgABAfgACgABAo/+qAABAfj+qAABA5r+qAABAv7+qAABAmX+qAABAg7+qAABAsMAAAABAn0ACgABAmsABAABAigAAAABAPQABAABAcn/9gABAhQABgABAlAAAAABAhgACgABAhkACAABAv0ACgABAfQACgABAhMAAwABAiYACAABAfz/9gABAmcACgABAkr//AABA37/9gABA4AAAAABAncAAAABAij9/AABAxIACgABAhUACgABAq7+TgABAfb+TgABAmv+WAABAjj+TgABAlD+TgABAhn+VgABAPn+qAABAfYG2gABAhkFCgABAssGigABAhkFCQABAtQGTAABAQYGPAABARgGoQABA7kGQwABA7EFCgABAawG2gABApUGQwABAlEFAQABArwGQAABA6UGTAABAt0GTAABAoYGTAABA3oGTAABArQGYgABA5QGQAABAooGTAABAiUE9QABArQE9QABAwwE9QABAk4E9QABAh0E9AABAoQE9QABAvAE9QABAlIE9QABAlgE9QABAuQGzAABAnME9QABAywE9QABAxQE9QABAzsE9QABAg0E9QABAlIFCAABA4IGGgABAwQE9QABAdIGzAABAm0GCAABAgcE4AABAkoFUAABAwkGQAABApwGYQABAj4FDAABAt0HYwABAk4GDAABArsGUQABAoIGTAABAnsGHgABARMGTAABAscGTAABAqYGYQABAiMFCgABAmUGTAABAqsGYQABAxIFKAABAjEFKAABAlcFKAABAh0FKAABAlQFKAABAwUFKAABAnYFKAABAhQFKAABAvQFKAABAiIFKAABAucFKAABAooFKAABArsFKAABAnQFKAABAkkFKAABAl8FKAABAmwGTAABAQoE4QABA4AFCgABAg4FKAABAqAHoAABAp8HeQABAqAH3wABARcHqwABARcHpwABAtUHeQABAsMHogABAsIHewABApsHoAABApsHnAABApsHYAABAkYGqAABAPwGZwABAPwGYwABAjwGQgABAj8GaQABAj4GQgABAjcGaQABAjcGZQABAjcGKQABAqAHaAABAkYGMQABAqgHwAABAhUGaQABAqgHvAABAhUGZQABAqcHewABAhQGJAABAqgHsgABAhUGWwABAmEHnQABAmsHcwABAjUGMQABAmoHZgABAjQGJAABAmsHnQABAjUGWwABAqAHvAABAiwGZQABAqAHnQABAiwGRgABAp8HewABAisGJAABAqAGYQABAiwFCgABAsgHpwABAfUHpgABARYHhAABARcHcwABAPwGLwABARcHiAABAPwGRAABARYHZgABA1QHmgABAQoGPAABAQgHmwABAPkIAAABAtYHkgABAj0GWwABAsMHagABAj8GMQABAsMHfwABAj8GRgABAsMHhwABAj8GTgABAmIHoAABAZgGaQABAmIHkgABAZgGWwABAm4HogABAjIGaQABAm4HngABAjIGZQABAm4HlAABAjIGWwABAmQHkQABApoHeQABAjYGQgABApsHaAABAjcGMQABApsHfQABAjcGRgABApsH3wABAjcGqAABApsHhQABAjcGTgABA5wHnAABAvsGZQABAmoHmwABAfwGZQABAmgHoAABAgMGaQABAmcHWwABAgIGJAABAmgHkgABAgMGWwABA6sHqwABA1sGagABAssH6QABAhkGaAABAfQFKAABAkUGhwABAkUGgwABAkQGYAABAkUGRwABAkUGxgABAhkGhwABAhkGgwABAPQGhwABAPQGgwABAm8GYAABAl4GgwABAl0GYAABAl4GRwABAkAGhwABAkAGgwABAkAGRwABAkUGTwABAkUGZAABAksGhwABAksGgwABAkoGQgABAksGeQABAfQGeQABAhkGTwABAhkGZAABAhgGQgABAhkGeQABAkgGgwABAkgGZAABAkcGQgABAkgFKAABAmcGgwABAPMGYAABAPQGTwABAPQGZAABAPMGQgABAt4GgwABAOkGhwABAOkFKAABAnAGhwABAnAGeQABAl4GTwABAl4GZAABAl4GbAABAggGhwABAggFKAABAggGeQABAh8GhwABAh8GgwABAh8GeQABAhIGeQABAj8GYAABAkAGTwABAkAGZAABAkAGxgABAkAGbAABAxIGgwABAhUGgwABAhQGQgABAhUGeQABAmoHXwABAnEFCgABAkIFCgABASYE9QABAk4FCgABASYGFAABAh8GFAABAh8E9QABA1AE8gABAmsHawABAnEHqwABARcHawABA1QGPwABAoYHiAABAt0HiAABAk4GMQABAnUFAAABAjUGKQABAa8GVAABAPwGJwABAN8GQAABAh0GUwABAfwGRgABA5wHoAABAvsGaQABA5wHYAABAvsGKQABAmoHnwABAfwGaQABAQoGMgABA3oHoAABA48GaQABAmsHqwABAt0HqwABAjUGaQABAk4GVAABAscE9QABAm0HOQABAgcGEQABAl4GYQABAgYFCQABAqgGYQABAhUFCgABA6UHiAABAwwGMQABAqAHYAABAkYGKQABA6sGTAABA1sFCwABAmsHiAABAjUGRgABAnsHPQABAi8FCwABAi8GKgABA6UHawABAwwGFAABAl4HgAABAgYGKAABAt0HcwABAk4GHAABAt0HawABAk4GFAABAsMHYgABAj8GKQABAs8GRwABAi8FDAABAs8HZgABAi8GKwABArQHgQABAiMGKQABAoYHcwABAfwGMQABAoYHawABAfwGKQABAoYHkAABAfwGTgABArAHawABAgwGFAABA3oHawABAxQGFAABAqAIAAABAqAHnAABAkYGZQABAqAHfQABAkYGRgABAmsICwABAjUGyQABAmoHhAABAjQGQgABAmsHpwABAjUGZQABARcICwABAPwGxwABARcGTAABAPsGQAABAsMIAgABAj8GyQABAj8FCgABAsMHngABAj8GZQABAr8HmgABAkYGaQABAr8H+gABAkYGyQABAr4HcwABAkUGQgABAr8GOwABAjcFCgABApsIAAABAjcGyQABArYHqwABAkQGVAABArYICwABAkQGtAABArUHhAABAkMGLQABArYGTAABAkQE9QABAfwFCgABAmoH/wABAfwGyQABAmkHeAABAfsGQgABAecE9QABArAGTAABAgwE9QABAnEGTAABAa8E9QABAmoGQAABAo0GTAABAfwFAAABAicFCQABAqAHwAABAiwGaQABAtYHoAABAj0GaQABAqAHcgABAkYGOwABAmsHfQABAjUGOwABARcHfQABAPwGOQABAsMHdAABAj8GOwABAmIHcgABAZgGOwABApsHcgABAjcGOwABAhwGTAABAl4GTAABAnoGSwABAmEGTAABAiUGTAABAsgGTAABAfUGSwABAl0HmgABAiUHqgABAl0GOwABAiUGSwABAQgGPAABAPkGoQABA3oGQQABA48FCgABAtYGQQABAj0FCgABAl4HqwABAnUGXwABAmIGQQABAZgFCgABAm4GQwABAjIFCgABAmQGQAABATgFyQABApsGQQABAo4HhAABAfgGOAABAo8GTAABAfkFAAABA5wGQQABAvsFCgABAmgGQQABAgMFCgABAsMGQwABAgYFKAABAnAFKAABAhUGRwABAhkGRwABAhYGhwABAPQFKAABAPQGRwABAt4FKAABAgYGhwABAhQGZAABAhEFKAABAhYFKAABAnYGZAABAv0FKAABAl4FKAABAkAFKAABAhIFKAABAiYFKAABAgMFKAABAmcFKAABAksFKAABAhUFKAABAnYGTwABAhQGTwABA4AGaQABAl4GhwABAh8FKAABAxIGhwABAxIGRwABAhUGhwABAqAGQQABAkYFCgABAmsGTAABAjUFCgABAkUFKAABAhkFKAABAPwFCAABAAAACgBkACQABERGTFQA+GN5cmwA+GdyZWsA+GxhdG4A/AAfARABGAEgASgBMAE4ATgBQAFIAVABWAFgAWgBcAF4AYABiAGQAZgBoAGoAbABuAHAAcgB0AHYAdAB2AHgAegAGmMyc2MBsGNjbXACOmRsaWcBtmRub20BvGZyYWMCSmxpZ2EBwmxpZ2ECQmxudW0ByGxvY2wBzmxvY2wB1GxvY2wB2mxvY2wB4G51bXIB5m9udW0B7HBudW0B8nNtY3AB+HNzMDEB/nNzMDICBHNzMDMCCnNzMDQCEHNzMDUCFnNzMDYCHHNzMDcCInN1YnMCKHN1cHMCLnRudW0CNAG2AAADugAHQVpFIAPqQ1JUIAPqRlJBIAQaTU9MIARMTkFWIAR+Uk9NIASwVFJLIAPqAAEAAAABBwIAAQAAAAEFHgAGAAAAAQI+AAEAAAABAgAABAAAAAEElAABAAAAAQGKAAEAAAABAfoAAQAAAAEBgAAEAAAAAQGcAAQAAAABAZwABAAAAAEBsAABAAAAAQFmAAEAAAABAWQAAQAAAAEBYgABAAAAAQF8AAEAAAABAX4AAQAAAAECNgABAAAAAQGEAAEAAAABAkQAAQAAAAECagABAAAAAQKQAAEAAAABArYAAQAAAAEBIAAGAAAAAQGE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AAUHBgcMBxIHGAceAAUHGAceByQHKgcwAAUHKgcwBzYHPAdCAAUHPAdCB0gHTgdUAAUHTgdUB1oHYAdmAAUHYAdmB2wHcgd4AAUHcgd4B34HhAeKAAUHhAeKB5AHlgecAAUHlgecB6IHqAeuAAYHqAeuB7QHugfAB8YABge+B8QHygfQB9YH3AAGB9QH2gfgB+YH7AfyAAYH6gfwB/YH/AgCCAgABggACAYIDAgSCBgIHgAGCBYIHAgiCCgILgg0AAYILAgyCDgIPghECEoABwiKCEIISAhOCFQIWghgAAcIgghWCFwIYghoCG4IdAACABEAJQApAAAAKwAtAAUALwA0AAgANgA7AA4APQA+ABQARQBJABYASwBNABsATwBUAB4AVgBbACQAXQBeACoAgQCBACwAgwCDAC0AhgCGAC4AiQCJAC8AjQCNADAAmACbADEA0ADQADUAAQDrAAoARQBGAEcASABJAEoASwBMAE0ATgBPAFAAUQBSAFMAVABVAFYAVwBYAFkAWgBbAFwAXQBeAIUAhgCHAIkAigCLAI0AkACSAJQAuwC8AL0AvgC/AMAAwQDCAMMAxADFAMYAxwDIAMkAygDLAMwAzQDOAOoA6wDsAO0A7gDvAPAA8QDyAPMA9AD1APYA9wD4APkA+gD7APwA/QD+AP8BAAEBAQIBAwEEAQUBBgEHATABNAE2ATgBOgE8AUIBRAFGAUoBTQFaApgCmgK2ArcCuAK5AroCuwK8Ar0CvgK/AsACwQLCAsMCxALFAsYCxwLIAskCygLLAswCzQLOAs8C0ALRAtMC1QLXAtkC2wLdAt8C4QLjAuUC5wLpAusC7QLvAvEC8wL1AvcC+QL7Av0DAAMCAwQDBgMIAwoDDAMOAxADEgMVAxcDGQMbAx0DHwMhAyMDJQMnAykDKwMtAy8DMQMzAzUDNwM5AzsDPQM/A0IDRANGA0gDSgO6A7sDvAO9A78DwAPBA8IDwwPEA8UDxgPHA8gD3wPgA+ED4gPjA+QD5QPmA+cD6APpA+oD6wPsA+0D7gPwA/ID9AP2BAsEDQQPBB0EJAQqBDAEmgSbBJ8EowUkBSYAAQD7AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBl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"},Ve="object"==typeof window?window:"object"==typeof global?global:"object"==typeof self?self:this;typeof Ve.pdfMake<"u"&&typeof Ve.pdfMake.addVirtualFileSystem<"u"&&Ve.pdfMake.addVirtualFileSystem(zi),Li.exports=zi},82643:function(Li,zi,Ve){var Pn,Ee=Ve(29293).default;Object(typeof self<"u"?self:this),Pn=()=>(()=>{var Hn={78(q){"use strict";q.exports=Function.prototype.call},182(q,D,g){"use strict";function t(K,lA){var uA=Object.keys(K);if(Object.getOwnPropertySymbols){var G=Object.getOwnPropertySymbols(K);lA&&(G=G.filter(function(J){return Object.getOwnPropertyDescriptor(K,J).enumerable})),uA.push.apply(uA,G)}return uA}function B(K){for(var lA=1;lA0?this.tail.next=G:this.head=G,this.tail=G,++this.length}},{key:"unshift",value:function(uA){var G={data:uA,next:this.head};0===this.length&&(this.tail=G),this.head=G,++this.length}},{key:"shift",value:function(){if(0!==this.length){var uA=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,uA}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(uA){if(0===this.length)return"";for(var G=this.head,J=""+G.data;G=G.next;)J+=uA+G.data;return J}},{key:"concat",value:function(uA){if(0===this.length)return E.alloc(0);for(var G=E.allocUnsafe(uA>>>0),J=this.head,rA=0;J;)y(J.data,G,rA),rA+=J.data.length,J=J.next;return G}},{key:"consume",value:function(uA,G){var J;return uA$.length?$.length:uA;if(rA+=Z===$.length?$:$.slice(0,uA),0===(uA-=Z)){Z===$.length?(++J,this.head=G.next?G.next:this.tail=null):(this.head=G,G.data=$.slice(Z));break}++J}return this.length-=J,rA}},{key:"_getBuffer",value:function(uA){var G=E.allocUnsafe(uA),J=this.head,rA=1;for(J.data.copy(G),uA-=J.data.length;J=J.next;){var $=J.data,Z=uA>$.length?$.length:uA;if($.copy(G,G.length-uA,0,Z),0===(uA-=Z)){Z===$.length?(++rA,this.head=J.next?J.next:this.tail=null):(this.head=J,J.data=$.slice(Z));break}++rA}return this.length-=rA,G}},{key:Q,value:function(uA,G){return _(this,B(B({},G),{},{depth:0,customInspect:!1}))}}]),K}()},290(q,D,g){"use strict";var t=g(8993),B=g(8681),M=g(3598),Y=TypeError;q.exports=function(V,d){var c,x;if("string"===d&&B(c=V.toString)&&!M(x=t(c,V))||B(c=V.valueOf)&&!M(x=t(c,V))||"string"!==d&&B(c=V.toString)&&!M(x=t(c,V)))return x;throw new Y("Can't convert object to primitive value")}},299(q){"use strict";q.exports=function(D){try{return!!D()}catch{return!0}}},321(q,D,g){"use strict";var t;q.exports=(t=g(6861),function(B){var M=t,Y=M.lib,V=Y.WordArray,d=Y.Hasher,c=M.algo,x=[],U=[];!function(){function _(lA){for(var uA=B.sqrt(lA),G=2;G<=uA;G++)if(!(lA%G))return!1;return!0}function Q(lA){return 4294967296*(lA-(0|lA))|0}for(var y=2,K=0;K<64;)_(y)&&(K<8&&(x[K]=Q(B.pow(y,.5))),U[K]=Q(B.pow(y,.3333333333333333)),K++),y++}();var E=[],N=c.SHA256=d.extend({_doReset:function(){this._hash=new V.init(x.slice(0))},_doProcessBlock:function(_,Q){for(var y=this._hash.words,K=y[0],lA=y[1],uA=y[2],G=y[3],J=y[4],rA=y[5],$=y[6],Z=y[7],b=0;b<64;b++){if(b<16)E[b]=0|_[Q+b];else{var BA=E[b-15],eA=E[b-2];E[b]=((BA<<25|BA>>>7)^(BA<<14|BA>>>18)^BA>>>3)+E[b-7]+((eA<<15|eA>>>17)^(eA<<13|eA>>>19)^eA>>>10)+E[b-16]}var QA=K&lA^K&uA^lA&uA,Be=Z+((J<<26|J>>>6)^(J<<21|J>>>11)^(J<<7|J>>>25))+(J&rA^~J&$)+U[b]+E[b];Z=$,$=rA,rA=J,J=G+Be|0,G=uA,uA=lA,lA=K,K=Be+(((K<<30|K>>>2)^(K<<19|K>>>13)^(K<<10|K>>>22))+QA)|0}y[0]=y[0]+K|0,y[1]=y[1]+lA|0,y[2]=y[2]+uA|0,y[3]=y[3]+G|0,y[4]=y[4]+J|0,y[5]=y[5]+rA|0,y[6]=y[6]+$|0,y[7]=y[7]+Z|0},_doFinalize:function(){var _=this._data,Q=_.words,y=8*this._nDataBytes,K=8*_.sigBytes;return Q[K>>>5]|=128<<24-K%32,Q[14+(K+64>>>9<<4)]=B.floor(y/4294967296),Q[15+(K+64>>>9<<4)]=y,_.sigBytes=4*Q.length,this._process(),this._hash},clone:function(){var _=d.clone.call(this);return _._hash=this._hash.clone(),_}});M.SHA256=d._createHelper(N),M.HmacSHA256=d._createHmacHelper(N)}(Math),t.SHA256)},336(q,D,g){"use strict";var t=g(783).Buffer;const B=g(2416),M=g(6729);q.exports=class m0{static decode(V,d){return B.readFile(V,function(c,x){return new m0(x).decode(E=>d(E))})}static load(V){const d=B.readFileSync(V);return new m0(d)}constructor(V){let d;for(this.data=V,this.pos=8,this.palette=[],this.imgData=[],this.transparency={},this.text={};;){const _=this.readUInt32();let Q="";for(d=0;d<4;d++)Q+=String.fromCharCode(this.data[this.pos++]);switch(Q){case"IHDR":this.width=this.readUInt32(),this.height=this.readUInt32(),this.bits=this.data[this.pos++],this.colorType=this.data[this.pos++],this.compressionMethod=this.data[this.pos++],this.filterMethod=this.data[this.pos++],this.interlaceMethod=this.data[this.pos++];break;case"PLTE":this.palette=this.read(_);break;case"IDAT":for(d=0;d<_;d++)this.imgData.push(this.data[this.pos++]);break;case"tRNS":switch(this.transparency={},this.colorType){case 3:this.transparency.indexed=this.read(_);var c=255-this.transparency.indexed.length;if(c>0)for(d=0;dthis.data.length)throw new Error("Incomplete or corrupt PNG file")}}read(V){const d=new Array(V);for(let c=0;c{if(d)throw d;const{width:x,height:U}=this,E=this.pixelBitlength/8,N=new t(x*U*E),{length:_}=c;let Q=0;function y(K,lA,uA,G,J){void 0===J&&(J=!1);const rA=Math.ceil((x-K)/uA),$=Math.ceil((U-lA)/G),Z=E*rA,b=J?N:new t(Z*$);let BA=0,L=0;for(;BA<$&&Q<_;){var eA,UA,xA,QA,gA;switch(c[Q++]){case 0:for(xA=0;xA(this.copyToImageData(d,c),V(d)))}}},378(q){q.exports=function(){throw new Error("Readable.from is not available in the browser")}},443(q,D,g){"use strict";var t=g(4494),B=g(3598),M=g(5034),Y=g(7222);q.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var c,V=!1,d={};try{(c=t(Object.prototype,"__proto__","set"))(d,[]),V=d instanceof Array}catch{}return function(U,E){return M(U),Y(E),B(U)&&(V?c(U,E):U.__proto__=E),U}}():void 0)},453(q){"use strict";q.exports=function D(g,t){if(g===t)return!0;if(g&&t&&"object"==typeof g&&"object"==typeof t){if(g.constructor!==t.constructor)return!1;var B,M,Y;if(Array.isArray(g)){if((B=g.length)!=t.length)return!1;for(M=B;0!==M--;)if(!D(g[M],t[M]))return!1;return!0}if(g.constructor===RegExp)return g.source===t.source&&g.flags===t.flags;if(g.valueOf!==Object.prototype.valueOf)return g.valueOf()===t.valueOf();if(g.toString!==Object.prototype.toString)return g.toString()===t.toString();if((B=(Y=Object.keys(g)).length)!==Object.keys(t).length)return!1;for(M=B;0!==M--;)if(!Object.prototype.hasOwnProperty.call(t,Y[M]))return!1;for(M=B;0!==M--;){var V=Y[M];if(!D(g[V],t[V]))return!1}return!0}return g!=g&&t!=t}},477(){},517(q,D,g){"use strict";var B,M,Y,V,d,c,x,t;q.exports=(t=g(6861),g(3144),g(8692),Y=(M=(B=t).x64).Word,V=M.WordArray,x=(d=B.algo).SHA384=(c=d.SHA512).extend({_doReset:function(){this._hash=new V.init([new Y.init(3418070365,3238371032),new Y.init(1654270250,914150663),new Y.init(2438529370,812702999),new Y.init(355462360,4144912697),new Y.init(1731405415,4290775857),new Y.init(2394180231,1750603025),new Y.init(3675008525,1694076839),new Y.init(1203062813,3204075428)])},_doFinalize:function(){var U=c._doFinalize.call(this);return U.sigBytes-=16,U}}),B.SHA384=c._createHelper(x),B.HmacSHA384=c._createHmacHelper(x),t.SHA384)},614(q,D,g){var t=g(4543);D.init=function(){D.dictionary=t.init()},D.offsetsByLength=new Uint32Array([0,0,0,0,0,4096,9216,21504,35840,44032,53248,63488,74752,87040,93696,100864,104704,106752,108928,113536,115968,118528,119872,121280,122016]),D.sizeBitsByLength=new Uint8Array([0,0,0,0,10,10,11,11,10,10,10,10,10,9,9,8,7,7,8,7,7,6,6,5,5]),D.minDictionaryWordLength=4,D.maxDictionaryWordLength=24},644(q,D,g){"use strict";var t=g(2740),B=Math.floor,M=function(Y,V){var d=Y.length;if(d<8)for(var x,U,c=1;c0;)Y[U]=Y[--U];U!==c++&&(Y[U]=x)}else for(var E=B(d/2),N=M(t(Y,0,E),V),_=M(t(Y,E),V),Q=N.length,y=_.length,K=0,lA=0;KY)throw new RangeError('The value "'+sA+'" is invalid for option "size"');const T=new Uint8Array(sA);return Object.setPrototypeOf(T,c.prototype),T}function c(sA,T,v){if("number"==typeof sA){if("string"==typeof T)throw new TypeError('The "string" argument must be of type string. Received type number');return N(sA)}return x(sA,T,v)}function x(sA,T,v){if("string"==typeof sA)return function _(sA,T){if(("string"!=typeof T||""===T)&&(T="utf8"),!c.isEncoding(T))throw new TypeError("Unknown encoding: "+T);const v=0|J(sA,T);let u=d(v);const m=u.write(sA,T);return m!==v&&(u=u.slice(0,m)),u}(sA,T);if(ArrayBuffer.isView(sA))return function y(sA){if(Ge(sA,Uint8Array)){const T=new Uint8Array(sA);return K(T.buffer,T.byteOffset,T.byteLength)}return Q(sA)}(sA);if(null==sA)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof sA);if(Ge(sA,ArrayBuffer)||sA&&Ge(sA.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(Ge(sA,SharedArrayBuffer)||sA&&Ge(sA.buffer,SharedArrayBuffer)))return K(sA,T,v);if("number"==typeof sA)throw new TypeError('The "value" argument must not be of type number. Received type number');const u=sA.valueOf&&sA.valueOf();if(null!=u&&u!==sA)return c.from(u,T,v);const m=function lA(sA){if(c.isBuffer(sA)){const T=0|uA(sA.length),v=d(T);return 0===v.length||sA.copy(v,0,0,T),v}return void 0!==sA.length?"number"!=typeof sA.length||He(sA.length)?d(0):Q(sA):"Buffer"===sA.type&&Array.isArray(sA.data)?Q(sA.data):void 0}(sA);if(m)return m;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof sA[Symbol.toPrimitive])return c.from(sA[Symbol.toPrimitive]("string"),T,v);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof sA)}function U(sA){if("number"!=typeof sA)throw new TypeError('"size" argument must be of type number');if(sA<0)throw new RangeError('The value "'+sA+'" is invalid for option "size"')}function N(sA){return U(sA),d(sA<0?0:0|uA(sA))}function Q(sA){const T=sA.length<0?0:0|uA(sA.length),v=d(T);for(let u=0;u=Y)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+Y.toString(16)+" bytes");return 0|sA}function J(sA,T){if(c.isBuffer(sA))return sA.length;if(ArrayBuffer.isView(sA)||Ge(sA,ArrayBuffer))return sA.byteLength;if("string"!=typeof sA)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof sA);const v=sA.length,u=arguments.length>2&&!0===arguments[2];if(!u&&0===v)return 0;let m=!1;for(;;)switch(T){case"ascii":case"latin1":case"binary":return v;case"utf8":case"utf-8":return PA(sA).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*v;case"hex":return v>>>1;case"base64":return fe(sA).length;default:if(m)return u?-1:PA(sA).length;T=(""+T).toLowerCase(),m=!0}}function rA(sA,T,v){let u=!1;if((void 0===T||T<0)&&(T=0),T>this.length||((void 0===v||v>this.length)&&(v=this.length),v<=0)||(v>>>=0)<=(T>>>=0))return"";for(sA||(sA="utf8");;)switch(sA){case"hex":return we(this,T,v);case"utf8":case"utf-8":return gA(this,T,v);case"ascii":return KA(this,T,v);case"latin1":case"binary":return ae(this,T,v);case"base64":return QA(this,T,v);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ie(this,T,v);default:if(u)throw new TypeError("Unknown encoding: "+sA);sA=(sA+"").toLowerCase(),u=!0}}function $(sA,T,v){const u=sA[T];sA[T]=sA[v],sA[v]=u}function Z(sA,T,v,u,m){if(0===sA.length)return-1;if("string"==typeof v?(u=v,v=0):v>2147483647?v=2147483647:v<-2147483648&&(v=-2147483648),He(v=+v)&&(v=m?0:sA.length-1),v<0&&(v=sA.length+v),v>=sA.length){if(m)return-1;v=sA.length-1}else if(v<0){if(!m)return-1;v=0}if("string"==typeof T&&(T=c.from(T,u)),c.isBuffer(T))return 0===T.length?-1:b(sA,T,v,u,m);if("number"==typeof T)return T&=255,"function"==typeof Uint8Array.prototype.indexOf?m?Uint8Array.prototype.indexOf.call(sA,T,v):Uint8Array.prototype.lastIndexOf.call(sA,T,v):b(sA,[T],v,u,m);throw new TypeError("val must be string, number or Buffer")}function b(sA,T,v,u,m){let VA,R=1,pA=sA.length,aA=T.length;if(void 0!==u&&("ucs2"===(u=String(u).toLowerCase())||"ucs-2"===u||"utf16le"===u||"utf-16le"===u)){if(sA.length<2||T.length<2)return-1;R=2,pA/=2,aA/=2,v/=2}function Me(Ce,dA){return 1===R?Ce[dA]:Ce.readUInt16BE(dA*R)}if(m){let Ce=-1;for(VA=v;VApA&&(v=pA-aA),VA=v;VA>=0;VA--){let Ce=!0;for(let dA=0;dAm&&(u=m):u=m;const R=T.length;let pA;for(u>R/2&&(u=R/2),pA=0;pA>8,m=v%256,R.push(m),R.push(u);return R}(T,sA.length-v),sA,v,u)}function QA(sA,T,v){return t.fromByteArray(0===T&&v===sA.length?sA:sA.slice(T,v))}function gA(sA,T,v){v=Math.min(sA.length,v);const u=[];let m=T;for(;m239?4:R>223?3:R>191?2:1;if(m+aA<=v){let Me,VA,Ce,dA;switch(aA){case 1:R<128&&(pA=R);break;case 2:Me=sA[m+1],128==(192&Me)&&(dA=(31&R)<<6|63&Me,dA>127&&(pA=dA));break;case 3:Me=sA[m+1],VA=sA[m+2],128==(192&Me)&&128==(192&VA)&&(dA=(15&R)<<12|(63&Me)<<6|63&VA,dA>2047&&(dA<55296||dA>57343)&&(pA=dA));break;case 4:Me=sA[m+1],VA=sA[m+2],Ce=sA[m+3],128==(192&Me)&&128==(192&VA)&&128==(192&Ce)&&(dA=(15&R)<<18|(63&Me)<<12|(63&VA)<<6|63&Ce,dA>65535&&dA<1114112&&(pA=dA))}}null===pA?(pA=65533,aA=1):pA>65535&&(pA-=65536,u.push(pA>>>10&1023|55296),pA=56320|1023&pA),u.push(pA),m+=aA}return function Be(sA){const T=sA.length;if(T<=4096)return String.fromCharCode.apply(String,sA);let v="",u=0;for(;uu)&&(v=u);let m="";for(let R=T;Rv)throw new RangeError("Trying to access beyond buffer length")}function CA(sA,T,v,u,m,R){if(!c.isBuffer(sA))throw new TypeError('"buffer" argument must be a Buffer instance');if(T>m||TsA.length)throw new RangeError("Index out of range")}function iA(sA,T,v,u,m){H(T,u,m,sA,v,7);let R=Number(T&BigInt(4294967295));sA[v++]=R,R>>=8,sA[v++]=R,R>>=8,sA[v++]=R,R>>=8,sA[v++]=R;let pA=Number(T>>BigInt(32)&BigInt(4294967295));return sA[v++]=pA,pA>>=8,sA[v++]=pA,pA>>=8,sA[v++]=pA,pA>>=8,sA[v++]=pA,v}function hA(sA,T,v,u,m){H(T,u,m,sA,v,7);let R=Number(T&BigInt(4294967295));sA[v+7]=R,R>>=8,sA[v+6]=R,R>>=8,sA[v+5]=R,R>>=8,sA[v+4]=R;let pA=Number(T>>BigInt(32)&BigInt(4294967295));return sA[v+3]=pA,pA>>=8,sA[v+2]=pA,pA>>=8,sA[v+1]=pA,pA>>=8,sA[v]=pA,v+8}function bA(sA,T,v,u,m,R){if(v+u>sA.length)throw new RangeError("Index out of range");if(v<0)throw new RangeError("Index out of range")}function ne(sA,T,v,u,m){return T=+T,v>>>=0,m||bA(sA,0,v,4),B.write(sA,T,v,u,23,4),v+4}function $A(sA,T,v,u,m){return T=+T,v>>>=0,m||bA(sA,0,v,8),B.write(sA,T,v,u,52,8),v+8}D.kMaxLength=Y,!(c.TYPED_ARRAY_SUPPORT=function V(){try{const sA=new Uint8Array(1),T={foo:function(){return 42}};return Object.setPrototypeOf(T,Uint8Array.prototype),Object.setPrototypeOf(sA,T),42===sA.foo()}catch{return!1}}())&&typeof console<"u"&&"function"==typeof console.error&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(c.prototype,"parent",{enumerable:!0,get:function(){if(c.isBuffer(this))return this.buffer}}),Object.defineProperty(c.prototype,"offset",{enumerable:!0,get:function(){if(c.isBuffer(this))return this.byteOffset}}),c.poolSize=8192,c.from=function(sA,T,v){return x(sA,T,v)},Object.setPrototypeOf(c.prototype,Uint8Array.prototype),Object.setPrototypeOf(c,Uint8Array),c.alloc=function(sA,T,v){return function E(sA,T,v){return U(sA),sA<=0?d(sA):void 0!==T?"string"==typeof v?d(sA).fill(T,v):d(sA).fill(T):d(sA)}(sA,T,v)},c.allocUnsafe=function(sA){return N(sA)},c.allocUnsafeSlow=function(sA){return N(sA)},c.isBuffer=function(T){return null!=T&&!0===T._isBuffer&&T!==c.prototype},c.compare=function(T,v){if(Ge(T,Uint8Array)&&(T=c.from(T,T.offset,T.byteLength)),Ge(v,Uint8Array)&&(v=c.from(v,v.offset,v.byteLength)),!c.isBuffer(T)||!c.isBuffer(v))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(T===v)return 0;let u=T.length,m=v.length;for(let R=0,pA=Math.min(u,m);Rm.length?(c.isBuffer(pA)||(pA=c.from(pA)),pA.copy(m,R)):Uint8Array.prototype.set.call(m,pA,R);else{if(!c.isBuffer(pA))throw new TypeError('"list" argument must be an Array of Buffers');pA.copy(m,R)}R+=pA.length}return m},c.byteLength=J,c.prototype._isBuffer=!0,c.prototype.swap16=function(){const T=this.length;if(T%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let v=0;vv&&(T+=" ... "),""},M&&(c.prototype[M]=c.prototype.inspect),c.prototype.compare=function(T,v,u,m,R){if(Ge(T,Uint8Array)&&(T=c.from(T,T.offset,T.byteLength)),!c.isBuffer(T))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof T);if(void 0===v&&(v=0),void 0===u&&(u=T?T.length:0),void 0===m&&(m=0),void 0===R&&(R=this.length),v<0||u>T.length||m<0||R>this.length)throw new RangeError("out of range index");if(m>=R&&v>=u)return 0;if(m>=R)return-1;if(v>=u)return 1;if(this===T)return 0;let pA=(R>>>=0)-(m>>>=0),aA=(u>>>=0)-(v>>>=0);const Me=Math.min(pA,aA),VA=this.slice(m,R),Ce=T.slice(v,u);for(let dA=0;dA>>=0,isFinite(u)?(u>>>=0,void 0===m&&(m="utf8")):(m=u,u=void 0)}const R=this.length-v;if((void 0===u||u>R)&&(u=R),T.length>0&&(u<0||v<0)||v>this.length)throw new RangeError("Attempt to write outside buffer bounds");m||(m="utf8");let pA=!1;for(;;)switch(m){case"hex":return BA(this,T,v,u);case"utf8":case"utf-8":return L(this,T,v,u);case"ascii":case"latin1":case"binary":return eA(this,T,v,u);case"base64":return UA(this,T,v,u);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return xA(this,T,v,u);default:if(pA)throw new TypeError("Unknown encoding: "+m);m=(""+m).toLowerCase(),pA=!0}},c.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},c.prototype.slice=function(T,v){const u=this.length;(T=~~T)<0?(T+=u)<0&&(T=0):T>u&&(T=u),(v=void 0===v?u:~~v)<0?(v+=u)<0&&(v=0):v>u&&(v=u),v>>=0,v>>>=0,u||kA(T,v,this.length);let m=this[T],R=1,pA=0;for(;++pA>>=0,v>>>=0,u||kA(T,v,this.length);let m=this[T+--v],R=1;for(;v>0&&(R*=256);)m+=this[T+--v]*R;return m},c.prototype.readUint8=c.prototype.readUInt8=function(T,v){return T>>>=0,v||kA(T,1,this.length),this[T]},c.prototype.readUint16LE=c.prototype.readUInt16LE=function(T,v){return T>>>=0,v||kA(T,2,this.length),this[T]|this[T+1]<<8},c.prototype.readUint16BE=c.prototype.readUInt16BE=function(T,v){return T>>>=0,v||kA(T,2,this.length),this[T]<<8|this[T+1]},c.prototype.readUint32LE=c.prototype.readUInt32LE=function(T,v){return T>>>=0,v||kA(T,4,this.length),(this[T]|this[T+1]<<8|this[T+2]<<16)+16777216*this[T+3]},c.prototype.readUint32BE=c.prototype.readUInt32BE=function(T,v){return T>>>=0,v||kA(T,4,this.length),16777216*this[T]+(this[T+1]<<16|this[T+2]<<8|this[T+3])},c.prototype.readBigUInt64LE=Pe(function(T){TA(T>>>=0,"offset");const v=this[T],u=this[T+7];(void 0===v||void 0===u)&&wA(T,this.length-8);const m=v+256*this[++T]+65536*this[++T]+this[++T]*2**24,R=this[++T]+256*this[++T]+65536*this[++T]+u*2**24;return BigInt(m)+(BigInt(R)<>>=0,"offset");const v=this[T],u=this[T+7];(void 0===v||void 0===u)&&wA(T,this.length-8);const m=v*2**24+65536*this[++T]+256*this[++T]+this[++T],R=this[++T]*2**24+65536*this[++T]+256*this[++T]+u;return(BigInt(m)<>>=0,v>>>=0,u||kA(T,v,this.length);let m=this[T],R=1,pA=0;for(;++pA=R&&(m-=Math.pow(2,8*v)),m},c.prototype.readIntBE=function(T,v,u){T>>>=0,v>>>=0,u||kA(T,v,this.length);let m=v,R=1,pA=this[T+--m];for(;m>0&&(R*=256);)pA+=this[T+--m]*R;return R*=128,pA>=R&&(pA-=Math.pow(2,8*v)),pA},c.prototype.readInt8=function(T,v){return T>>>=0,v||kA(T,1,this.length),128&this[T]?-1*(255-this[T]+1):this[T]},c.prototype.readInt16LE=function(T,v){T>>>=0,v||kA(T,2,this.length);const u=this[T]|this[T+1]<<8;return 32768&u?4294901760|u:u},c.prototype.readInt16BE=function(T,v){T>>>=0,v||kA(T,2,this.length);const u=this[T+1]|this[T]<<8;return 32768&u?4294901760|u:u},c.prototype.readInt32LE=function(T,v){return T>>>=0,v||kA(T,4,this.length),this[T]|this[T+1]<<8|this[T+2]<<16|this[T+3]<<24},c.prototype.readInt32BE=function(T,v){return T>>>=0,v||kA(T,4,this.length),this[T]<<24|this[T+1]<<16|this[T+2]<<8|this[T+3]},c.prototype.readBigInt64LE=Pe(function(T){TA(T>>>=0,"offset");const v=this[T],u=this[T+7];return(void 0===v||void 0===u)&&wA(T,this.length-8),(BigInt(this[T+4]+256*this[T+5]+65536*this[T+6]+(u<<24))<>>=0,"offset");const v=this[T],u=this[T+7];(void 0===v||void 0===u)&&wA(T,this.length-8);const m=(v<<24)+65536*this[++T]+256*this[++T]+this[++T];return(BigInt(m)<>>=0,v||kA(T,4,this.length),B.read(this,T,!0,23,4)},c.prototype.readFloatBE=function(T,v){return T>>>=0,v||kA(T,4,this.length),B.read(this,T,!1,23,4)},c.prototype.readDoubleLE=function(T,v){return T>>>=0,v||kA(T,8,this.length),B.read(this,T,!0,52,8)},c.prototype.readDoubleBE=function(T,v){return T>>>=0,v||kA(T,8,this.length),B.read(this,T,!1,52,8)},c.prototype.writeUintLE=c.prototype.writeUIntLE=function(T,v,u,m){T=+T,v>>>=0,u>>>=0,m||CA(this,T,v,u,Math.pow(2,8*u)-1,0);let R=1,pA=0;for(this[v]=255&T;++pA>>=0,u>>>=0,m||CA(this,T,v,u,Math.pow(2,8*u)-1,0);let R=u-1,pA=1;for(this[v+R]=255&T;--R>=0&&(pA*=256);)this[v+R]=T/pA&255;return v+u},c.prototype.writeUint8=c.prototype.writeUInt8=function(T,v,u){return T=+T,v>>>=0,u||CA(this,T,v,1,255,0),this[v]=255&T,v+1},c.prototype.writeUint16LE=c.prototype.writeUInt16LE=function(T,v,u){return T=+T,v>>>=0,u||CA(this,T,v,2,65535,0),this[v]=255&T,this[v+1]=T>>>8,v+2},c.prototype.writeUint16BE=c.prototype.writeUInt16BE=function(T,v,u){return T=+T,v>>>=0,u||CA(this,T,v,2,65535,0),this[v]=T>>>8,this[v+1]=255&T,v+2},c.prototype.writeUint32LE=c.prototype.writeUInt32LE=function(T,v,u){return T=+T,v>>>=0,u||CA(this,T,v,4,4294967295,0),this[v+3]=T>>>24,this[v+2]=T>>>16,this[v+1]=T>>>8,this[v]=255&T,v+4},c.prototype.writeUint32BE=c.prototype.writeUInt32BE=function(T,v,u){return T=+T,v>>>=0,u||CA(this,T,v,4,4294967295,0),this[v]=T>>>24,this[v+1]=T>>>16,this[v+2]=T>>>8,this[v+3]=255&T,v+4},c.prototype.writeBigUInt64LE=Pe(function(T,v){return void 0===v&&(v=0),iA(this,T,v,BigInt(0),BigInt("0xffffffffffffffff"))}),c.prototype.writeBigUInt64BE=Pe(function(T,v){return void 0===v&&(v=0),hA(this,T,v,BigInt(0),BigInt("0xffffffffffffffff"))}),c.prototype.writeIntLE=function(T,v,u,m){if(T=+T,v>>>=0,!m){const Me=Math.pow(2,8*u-1);CA(this,T,v,u,Me-1,-Me)}let R=0,pA=1,aA=0;for(this[v]=255&T;++R>>=0,!m){const Me=Math.pow(2,8*u-1);CA(this,T,v,u,Me-1,-Me)}let R=u-1,pA=1,aA=0;for(this[v+R]=255&T;--R>=0&&(pA*=256);)T<0&&0===aA&&0!==this[v+R+1]&&(aA=1),this[v+R]=(T/pA|0)-aA&255;return v+u},c.prototype.writeInt8=function(T,v,u){return T=+T,v>>>=0,u||CA(this,T,v,1,127,-128),T<0&&(T=255+T+1),this[v]=255&T,v+1},c.prototype.writeInt16LE=function(T,v,u){return T=+T,v>>>=0,u||CA(this,T,v,2,32767,-32768),this[v]=255&T,this[v+1]=T>>>8,v+2},c.prototype.writeInt16BE=function(T,v,u){return T=+T,v>>>=0,u||CA(this,T,v,2,32767,-32768),this[v]=T>>>8,this[v+1]=255&T,v+2},c.prototype.writeInt32LE=function(T,v,u){return T=+T,v>>>=0,u||CA(this,T,v,4,2147483647,-2147483648),this[v]=255&T,this[v+1]=T>>>8,this[v+2]=T>>>16,this[v+3]=T>>>24,v+4},c.prototype.writeInt32BE=function(T,v,u){return T=+T,v>>>=0,u||CA(this,T,v,4,2147483647,-2147483648),T<0&&(T=4294967295+T+1),this[v]=T>>>24,this[v+1]=T>>>16,this[v+2]=T>>>8,this[v+3]=255&T,v+4},c.prototype.writeBigInt64LE=Pe(function(T,v){return void 0===v&&(v=0),iA(this,T,v,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),c.prototype.writeBigInt64BE=Pe(function(T,v){return void 0===v&&(v=0),hA(this,T,v,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),c.prototype.writeFloatLE=function(T,v,u){return ne(this,T,v,!0,u)},c.prototype.writeFloatBE=function(T,v,u){return ne(this,T,v,!1,u)},c.prototype.writeDoubleLE=function(T,v,u){return $A(this,T,v,!0,u)},c.prototype.writeDoubleBE=function(T,v,u){return $A(this,T,v,!1,u)},c.prototype.copy=function(T,v,u,m){if(!c.isBuffer(T))throw new TypeError("argument should be a Buffer");if(u||(u=0),!m&&0!==m&&(m=this.length),v>=T.length&&(v=T.length),v||(v=0),m>0&&m=this.length)throw new RangeError("Index out of range");if(m<0)throw new RangeError("sourceEnd out of bounds");m>this.length&&(m=this.length),T.length-v>>=0,u=void 0===u?this.length:u>>>0,T||(T=0),"number"==typeof T)for(R=v;R=u+4;v-=3)T=`_${sA.slice(v-3,v)}${T}`;return`${sA.slice(0,v)}${T}`}function H(sA,T,v,u,m,R){if(sA>v||sA3?0===T||T===BigInt(0)?`>= 0${pA} and < 2${pA} ** ${8*(R+1)}${pA}`:`>= -(2${pA} ** ${8*(R+1)-1}${pA}) and < 2 ** ${8*(R+1)-1}${pA}`:`>= ${T}${pA} and <= ${v}${pA}`,new EA.ERR_OUT_OF_RANGE("value",aA,sA)}!function w(sA,T,v){TA(T,"offset"),(void 0===sA[T]||void 0===sA[T+v])&&wA(T,sA.length-(v+1))}(u,m,R)}function TA(sA,T){if("number"!=typeof sA)throw new EA.ERR_INVALID_ARG_TYPE(T,"number",sA)}function wA(sA,T,v){throw Math.floor(sA)!==sA?(TA(sA,v),new EA.ERR_OUT_OF_RANGE(v||"offset","an integer",sA)):T<0?new EA.ERR_BUFFER_OUT_OF_BOUNDS:new EA.ERR_OUT_OF_RANGE(v||"offset",`>= ${v?1:0} and <= ${T}`,sA)}P("ERR_BUFFER_OUT_OF_BOUNDS",function(sA){return sA?`${sA} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),P("ERR_INVALID_ARG_TYPE",function(sA,T){return`The "${sA}" argument must be of type number. Received type ${typeof T}`},TypeError),P("ERR_OUT_OF_RANGE",function(sA,T,v){let u=`The value of "${sA}" is out of range.`,m=v;return Number.isInteger(v)&&Math.abs(v)>4294967296?m=cA(String(v)):"bigint"==typeof v&&(m=String(v),(v>BigInt(2)**BigInt(32)||v<-(BigInt(2)**BigInt(32)))&&(m=cA(m)),m+="n"),u+=` It must be ${T}. Received ${m}`,u},RangeError);const j=/[^+/0-9A-Za-z-_]/g;function PA(sA,T){let v;T=T||1/0;const u=sA.length;let m=null;const R=[];for(let pA=0;pA55295&&v<57344){if(!m){if(v>56319){(T-=3)>-1&&R.push(239,191,189);continue}if(pA+1===u){(T-=3)>-1&&R.push(239,191,189);continue}m=v;continue}if(v<56320){(T-=3)>-1&&R.push(239,191,189),m=v;continue}v=65536+(m-55296<<10|v-56320)}else m&&(T-=3)>-1&&R.push(239,191,189);if(m=null,v<128){if((T-=1)<0)break;R.push(v)}else if(v<2048){if((T-=2)<0)break;R.push(v>>6|192,63&v|128)}else if(v<65536){if((T-=3)<0)break;R.push(v>>12|224,v>>6&63|128,63&v|128)}else{if(!(v<1114112))throw new Error("Invalid code point");if((T-=4)<0)break;R.push(v>>18|240,v>>12&63|128,v>>6&63|128,63&v|128)}}return R}function fe(sA){return t.toByteArray(function RA(sA){if((sA=(sA=sA.split("=")[0]).trim().replace(j,"")).length<2)return"";for(;sA.length%4!=0;)sA+="=";return sA}(sA))}function ye(sA,T,v,u){let m;for(m=0;m=T.length||m>=sA.length);++m)T[m+v]=sA[m];return m}function Ge(sA,T){return sA instanceof T||null!=sA&&null!=sA.constructor&&null!=sA.constructor.name&&sA.constructor.name===T.name}function He(sA){return sA!=sA}const _e=function(){const sA="0123456789abcdef",T=new Array(256);for(let v=0;v<16;++v){const u=16*v;for(let m=0;m<16;++m)T[u+m]=sA[v]+sA[m]}return T}();function Pe(sA){return typeof BigInt>"u"?te:sA}function te(){throw new Error("BigInt not supported")}},821(q,D,g){"use strict";var t=g(884),B=typeof globalThis>"u"?g.g:globalThis;q.exports=function(){for(var Y=[],V=0;V0?17+w:(w=cA.readBits(3))>0?8+w:17}function xA(cA){if(cA.readBits(1)){var w=cA.readBits(3);return 0===w?1:cA.readBits(w)+(1<1&&0===j)throw new Error("Invalid size byte");w.meta_block_length|=j<<8*wA}}else for(wA=0;wA4&&0===RA)throw new Error("Invalid size nibble");w.meta_block_length|=RA<<4*wA}return++w.meta_block_length,!w.input_end&&!w.is_metadata&&(w.is_uncompressed=cA.readBits(1)),w}function JA(cA,w,H){var wA;return H.fillBitWindow(),(wA=cA[w+=H.val_>>>H.bit_pos_&255].bits-8)>0&&(H.bit_pos_+=8,w+=cA[w].value,w+=H.val_>>>H.bit_pos_&(1<>=1,++vA;for(PA=0;PA0;++PA){var T,te=Z[PA],sA=0;TA.fillBitWindow(),TA.bit_pos_+=Pe[sA+=TA.val_>>>TA.bit_pos_&15].bits,Ge[te]=T=Pe[sA].value,0!==T&&(He-=32>>T,++_e)}if(1!==_e&&0!==He)throw new Error("[ReadHuffmanCode] invalid num_codes or space");!function Be(cA,w,H,TA){for(var wA=0,j=8,RA=0,PA=0,XA=32768,vA=[],fe=0;fe<32;fe++)vA.push(new d(0,0));for(c(vA,0,5,cA,18);wA0;){var Ge,ye=0;if(TA.readMoreInput(),TA.fillBitWindow(),TA.bit_pos_+=vA[ye+=TA.val_>>>TA.bit_pos_&31].bits,(Ge=255&vA[ye].value)<16)RA=0,H[wA++]=Ge,0!==Ge&&(j=Ge,XA-=32768>>Ge);else{var _e,Pe,He=Ge-14,te=0;if(16===Ge&&(te=j),PA!==te&&(RA=0,PA=te),_e=RA,RA>0&&(RA-=2,RA<<=He),wA+(Pe=(RA+=TA.readBits(He)+3)-_e)>w)throw new Error("[ReadHuffmanCodeLengths] symbol + repeat_delta > num_symbols");for(var sA=0;sA>>5]),this.htrees=new Uint32Array(w)}function iA(cA,w){var j,RA,H={num_htrees:null,context_map:null},wA=0;w.readMoreInput();var PA=H.num_htrees=xA(w)+1,XA=H.context_map=new Uint8Array(cA);if(PA<=1)return H;for(w.readBits(1)&&(wA=w.readBits(4)+1),j=[],RA=0;RA=cA)throw new Error("[DecodeContextMap] i >= context_map_size");XA[RA]=0,++RA}else XA[RA]=vA-wA,++RA}return w.readBits(1)&&function kA(cA,w){var TA,H=new Uint8Array(256);for(TA=0;TA<256;++TA)H[TA]=TA;for(TA=0;TA=cA&&(fe-=cA),TA[H]=fe,wA[PA+(1&j[XA])]=fe,++j[XA]}function bA(cA,w,H,TA,wA,j){var vA,RA=wA+1,PA=H&wA,XA=j.pos_&Y.IBUF_MASK;if(w<8||j.bit_pos_+(w<<3)0;)j.readMoreInput(),TA[PA++]=j.readBits(8),PA===RA&&(cA.write(TA,RA),PA=0);else{if(j.bit_end_pos_<32)throw new Error("[CopyUncompressedBlockToOutput] br.bit_end_pos_ < 32");for(;j.bit_pos_<32;)TA[PA]=j.val_>>>j.bit_pos_,j.bit_pos_+=8,++PA,--w;if(XA+(vA=j.bit_end_pos_-j.bit_pos_>>3)>Y.IBUF_MASK){for(var fe=Y.IBUF_MASK+1-XA,ye=0;ye=RA)for(cA.write(TA,RA),PA-=RA,ye=0;ye=RA;){if(j.input_.read(TA,PA,vA=RA-PA)w.buffer.length){var lt=new Uint8Array(TA+R);lt.set(w.buffer),w.buffer=lt}if(wA=$e.input_end,pA=$e.is_uncompressed,$e.is_metadata)for(ne(v);R>0;--R)v.readMoreInput(),v.readBits(8);else if(0!==R){if(pA){v.bit_pos_=v.bit_pos_+7&-8,bA(w,R,TA,fe,vA,v),TA+=R;continue}for(H=0;H<3;++H)VA[H]=xA(v)+1,VA[H]>=2&&(KA(VA[H]+2,sA,H*rA,v),KA(26,T,H*rA,v),aA[H]=ae(T,H*rA,v),dA[H]=1);for(v.readMoreInput(),W=(1<<(ve=v.readBits(2)))-1,Ie=(qe=16+(v.readBits(4)<0;){var Gt,Rt,Cn,pn,Dn,en,tn,In,DA,mA,_A,jA;for(v.readMoreInput(),0===aA[1]&&(hA(VA[1],sA,1,Me,Ce,dA,v),aA[1]=ae(T,rA,v),nt=te[1].htrees[Me[1]]),--aA[1],(Rt=(Gt=JA(te[1].codes,nt,v))>>6)>=2?(Rt-=2,tn=-1):tn=0,pn=U.kCopyRangeLut[Rt]+(7&Gt),Dn=U.kInsertLengthPrefixCode[Cn=U.kInsertRangeLut[Rt]+(Gt>>3&7)].offset+v.readBits(U.kInsertLengthPrefixCode[Cn].nbits),en=U.kCopyLengthPrefixCode[pn].offset+v.readBits(U.kCopyLengthPrefixCode[pn].nbits),_e=fe[TA-1&vA],Pe=fe[TA-2&vA],DA=0;DA4?3:en-2))]],v))>=qe&&(jA=(tn-=qe)&W,tn=qe+((NA=(2+(1&(tn>>=ve))<<(_A=1+(tn>>1)))-4)+v.readBits(_A)<(PA=TA=V.minDictionaryWordLength&&en<=V.maxDictionaryWordLength))throw new Error("Invalid backward reference. pos: "+TA+" distance: "+In+" len: "+en+" bytes left: "+R);var NA=V.offsetsByLength[en],le=In-PA-1,GA=V.sizeBitsByLength[en],Fe=le>>GA;if(NA+=(le&(1<=ye){w.write(fe,XA);for(var et=0;et0&&(Ge[3&He]=In,++He),en>R)throw new Error("Invalid backward reference. pos: "+TA+" distance: "+In+" len: "+en+" bytes left: "+R);for(DA=0;DA>>8&16711935}V.Utf16=V.Utf16BE={stringify:function(x){for(var U=x.words,E=x.sigBytes,N=[],_=0;_>>2]>>>16-_%4*8&65535));return N.join("")},parse:function(x){for(var U=x.length,E=[],N=0;N>>1]|=x.charCodeAt(N)<<16-N%2*16;return Y.create(E,2*U)}},V.Utf16LE={stringify:function(x){for(var U=x.words,E=x.sigBytes,N=[],_=0;_>>2]>>>16-_%4*8&65535);N.push(String.fromCharCode(Q))}return N.join("")},parse:function(x){for(var U=x.length,E=[],N=0;N>>1]|=c(x.charCodeAt(N)<<16-N%2*16);return Y.create(E,2*U)}}}(),t.enc.Utf16)},1201(q){q.exports=function(g){return g&&"object"==typeof g&&"function"==typeof g.copy&&"function"==typeof g.fill&&"function"==typeof g.readUInt8}},1212(q,D,g){"use strict";var t=g(1676),B=Function.prototype,M=B.call,Y=t&&B.bind.bind(M,M);q.exports=t?Y:function(V){return function(){return M.apply(V,arguments)}}},1220(q,D,g){"use strict";var t;q.exports=(t=g(6861),g(2858),t.mode.CTRGladman=function(){var B=t.lib.BlockCipherMode.extend();function M(d){if(255&~(d>>24))d+=16777216;else{var c=d>>16&255,x=d>>8&255,U=255&d;255===c?(c=0,255===x?(x=0,255===U?U=0:++U):++x):++c,d=0,d+=c<<16,d+=x<<8,d+=U}return d}var V=B.Encryptor=B.extend({processBlock:function(d,c){var x=this._cipher,U=x.blockSize,E=this._iv,N=this._counter;E&&(N=this._counter=E.slice(0),this._iv=void 0),function Y(d){return 0===(d[0]=M(d[0]))&&(d[1]=M(d[1])),d}(N);var _=N.slice(0);x.encryptBlock(_,0);for(var Q=0;Q0&&void 0!==arguments[0]?arguments[0]:{};this._items={},this.limits="boolean"!=typeof f.limits||f.limits}add(f,S){return this._items[f]=S}get(f){return this._items[f]}toString(){const f=Object.keys(this._items).sort((I,tA)=>this._compareKeys(I,tA)),S=["<<"];if(this.limits&&f.length>1){const tA=f[f.length-1];S.push(` /Limits ${Z.convert([this._dataForKey(f[0]),this._dataForKey(tA)])}`)}S.push(` /${this._keysName()} [`);for(let I of f)S.push(` ${Z.convert(this._dataForKey(I))} ${Z.convert(this._items[I])}`);return S.push("]"),S.push(">>"),S.join("\n")}_compareKeys(){throw new Error("Must be implemented by subclasses")}_keysName(){throw new Error("Must be implemented by subclasses")}_dataForKey(){throw new Error("Must be implemented by subclasses")}}class uA{constructor(f,S,I,tA,MA,OA){this.id="CS"+Object.keys(f.spotColors).length,this.name=S,this.values=[I,tA,MA,OA],this.ref=f.ref(["Separation",this.name,"DeviceCMYK",{Range:[0,1,0,1,0,1,0,1],C0:[0,0,0,0],C1:this.values.map(se=>se/100),FunctionType:2,Domain:[0,1],N:1}]),this.ref.end()}toString(){return`${this.ref.id} 0 R`}}const G=(C,f)=>(Array(f+1).join("0")+C).slice(-f),J=/[\n\r\t\b\f()\\]/g,rA={"\n":"\\n","\r":"\\r","\t":"\\t","\b":"\\b","\f":"\\f","\\":"\\\\","(":"\\(",")":"\\)"};class Z{static convert(f){let S=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("string"==typeof f)return`/${f}`;if(f instanceof String){let MA,I=f,tA=!1;for(let OA=0,se=I.length;OA127){tA=!0;break}return MA=tA?function(C){const f=C.length;if(1&f)throw new Error("Buffer length must be even");for(let S=0,I=f-1;SrA[OA]),`(${I})`}if(M.isBuffer(f))return`<${f.toString("hex")}>`;if(f instanceof K||f instanceof lA||f instanceof uA)return f.toString();if(f instanceof Date){let I=`D:${G(f.getUTCFullYear(),4)}`+G(f.getUTCMonth()+1,2)+G(f.getUTCDate(),2)+G(f.getUTCHours(),2)+G(f.getUTCMinutes(),2)+G(f.getUTCSeconds(),2)+"Z";return S&&(I=S(M.from(I,"ascii")).toString("binary"),I=I.replace(J,tA=>rA[tA])),`(${I})`}if(Array.isArray(f))return`[${f.map(tA=>Z.convert(tA,S)).join(" ")}]`;if("[object Object]"==={}.toString.call(f)){const I=["<<"];for(let tA in f)I.push(`/${tA} ${Z.convert(f[tA],S)}`);return I.push(">>"),I.join("\n")}return"number"==typeof f?Z.number(f):`${f}`}static number(f){if(f>-1e21&&f<1e21)return Math.round(1e6*f)/1e6;throw new Error(`unsupported number: ${f}`)}}class b extends K{constructor(f,S){let I=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};super(),this.document=f,this.id=S,this.data=I,this.gen=0,this.compress=this.document.compress&&!this.data.Filter,this.uncompressedLength=0,this.buffer=[]}write(f){f instanceof Uint8Array||(f=M.from(f+"\n","binary")),this.uncompressedLength+=f.length,null==this.data.Length&&(this.data.Length=0),this.buffer.push(f),this.data.Length+=f.length,this.compress&&(this.data.Filter="FlateDecode")}end(f){f&&this.write(f),this.finalize()}finalize(){this.offset=this.document._offset;const f=this.document._security?this.document._security.getEncryptFn(this.id,this.gen):null;this.buffer.length&&(this.buffer=M.concat(this.buffer),this.compress&&(this.buffer=V.default.deflateSync(this.buffer)),f&&(this.buffer=f(this.buffer)),this.data.Length=this.buffer.length),this.document._write(`${this.id} ${this.gen} obj`),this.document._write(Z.convert(this.data,f)),this.buffer.length&&(this.document._write("stream"),this.document._write(this.buffer),this.buffer=[],this.document._write("\nendstream")),this.document._write("endobj"),this.document._refEnd(this)}toString(){return`${this.id} ${this.gen} R`}}const BA=new Float32Array(1),L=new Uint32Array(BA.buffer);function eA(C){const f=Math.fround(C);return f<=C?f:(BA[0]=C,C<=0?L[0]+=1:L[0]-=1,BA[0])}function UA(C){let f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0,S=arguments.length>2&&void 0!==arguments[2]?arguments[2]:I=>I;return(null==C||"object"==typeof C&&0===Object.keys(C).length)&&(C=f),null==C||"object"!=typeof C?C={top:C,right:C,bottom:C,left:C}:Array.isArray(C)&&(C=2===C.length?{vertical:C[0],horizontal:C[1]}:{top:C[0],right:C[1],bottom:C[2],left:C[3]}),("vertical"in C||"horizontal"in C)&&(C={top:C.vertical,right:C.horizontal,bottom:C.vertical,left:C.horizontal}),{top:S(C.top),right:S(C.right),bottom:S(C.bottom),left:S(C.left)}}const QA=1/2.54;function KA(C){return 0===C?1:90===C?0:180===C?-1:270===C?0:Math.cos(C*Math.PI/180)}function ae(C){return 0===C?0:90===C?1:180===C?0:270===C?-1:Math.sin(C*Math.PI/180)}const we={top:72,left:72,bottom:72,right:72},ie={"4A0":[4767.87,6740.79],"2A0":[3370.39,4767.87],A0:[2383.94,3370.39],A1:[1683.78,2383.94],A2:[1190.55,1683.78],A3:[841.89,1190.55],A4:[595.28,841.89],A5:[419.53,595.28],A6:[297.64,419.53],A7:[209.76,297.64],A8:[147.4,209.76],A9:[104.88,147.4],A10:[73.7,104.88],B0:[2834.65,4008.19],B1:[2004.09,2834.65],B2:[1417.32,2004.09],B3:[1000.63,1417.32],B4:[708.66,1000.63],B5:[498.9,708.66],B6:[354.33,498.9],B7:[249.45,354.33],B8:[175.75,249.45],B9:[124.72,175.75],B10:[87.87,124.72],C0:[2599.37,3676.54],C1:[1836.85,2599.37],C2:[1298.27,1836.85],C3:[918.43,1298.27],C4:[649.13,918.43],C5:[459.21,649.13],C6:[323.15,459.21],C7:[229.61,323.15],C8:[161.57,229.61],C9:[113.39,161.57],C10:[79.37,113.39],RA0:[2437.8,3458.27],RA1:[1729.13,2437.8],RA2:[1218.9,1729.13],RA3:[864.57,1218.9],RA4:[609.45,864.57],SRA0:[2551.18,3628.35],SRA1:[1814.17,2551.18],SRA2:[1275.59,1814.17],SRA3:[907.09,1275.59],SRA4:[637.8,907.09],EXECUTIVE:[521.86,756],FOLIO:[612,936],LEGAL:[612,1008],LETTER:[612,792],TABLOID:[792,1224]};class kA{constructor(f){let S=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.document=f,this._options=S,this.size=S.size||"letter",this.layout=S.layout||"portrait";const I=Array.isArray(this.size)?this.size:ie[this.size.toUpperCase()];this.width=I["portrait"===this.layout?0:1],this.height=I["portrait"===this.layout?1:0],this.content=this.document.ref(),S.font&&f.font(S.font,S.fontFamily),S.fontSize&&f.fontSize(S.fontSize),this.margins=UA(S.margin??S.margins,we,tA=>f.sizeToPoint(tA,0,this)),this.resources=this.document.ref({ProcSet:["PDF","Text","ImageB","ImageC","ImageI"]}),this.dictionary=this.document.ref({Type:"Page",Parent:this.document._root.data.Pages,MediaBox:[0,0,this.width,this.height],Contents:this.content,Resources:this.resources}),this.markings=[]}get fonts(){const f=this.resources.data;return null!=f.Font?f.Font:f.Font={}}get xobjects(){const f=this.resources.data;return null!=f.XObject?f.XObject:f.XObject={}}get ext_gstates(){const f=this.resources.data;return null!=f.ExtGState?f.ExtGState:f.ExtGState={}}get patterns(){const f=this.resources.data;return null!=f.Pattern?f.Pattern:f.Pattern={}}get colorSpaces(){const f=this.resources.data;return f.ColorSpace||(f.ColorSpace={})}get annotations(){const f=this.dictionary.data;return null!=f.Annots?f.Annots:f.Annots=[]}get structParentTreeKey(){const f=this.dictionary.data;return null!=f.StructParents?f.StructParents:f.StructParents=this.document.createStructParentTreeNextKey()}get contentWidth(){return this.width-this.margins.left-this.margins.right}get contentHeight(){return this.height-this.margins.top-this.margins.bottom}maxY(){return this.height-this.margins.bottom}write(f){return this.content.write(f)}_setTabOrder(){!this.dictionary.Tabs&&this.document.hasMarkInfoDictionary()&&(this.dictionary.data.Tabs="S")}end(){this._setTabOrder(),this.dictionary.end(),this.resources.data.ColorSpace=this.resources.data.ColorSpace||{};for(let f of Object.values(this.document.spotColors))this.resources.data.ColorSpace[f.id]=f;return this.resources.end(),this.content.end()}}class CA extends lA{_compareKeys(f,S){return f.localeCompare(S)}_keysName(){return"Names"}_dataForKey(f){return new String(f)}}function iA(C,f){if(C=f[MA]&&C<=f[MA+1])return!0;C>f[MA+1]?S=tA+1:I=tA-1}return!1}const hA=[545,545,564,591,686,687,751,767,848,863,880,883,886,889,891,893,895,899,907,907,909,909,930,930,975,975,1015,1023,1159,1159,1231,1231,1270,1271,1274,1279,1296,1328,1367,1368,1376,1376,1416,1416,1419,1424,1442,1442,1466,1466,1477,1487,1515,1519,1525,1547,1549,1562,1564,1566,1568,1568,1595,1599,1622,1631,1774,1775,1791,1791,1806,1806,1837,1839,1867,1919,1970,2304,2308,2308,2362,2363,2382,2383,2389,2391,2417,2432,2436,2436,2445,2446,2449,2450,2473,2473,2481,2481,2483,2485,2490,2491,2493,2493,2501,2502,2505,2506,2510,2518,2520,2523,2526,2526,2532,2533,2555,2561,2563,2564,2571,2574,2577,2578,2601,2601,2609,2609,2612,2612,2615,2615,2618,2619,2621,2621,2627,2630,2633,2634,2638,2648,2653,2653,2655,2661,2677,2688,2692,2692,2700,2700,2702,2702,2706,2706,2729,2729,2737,2737,2740,2740,2746,2747,2758,2758,2762,2762,2766,2767,2769,2783,2785,2789,2800,2816,2820,2820,2829,2830,2833,2834,2857,2857,2865,2865,2868,2869,2874,2875,2884,2886,2889,2890,2894,2901,2904,2907,2910,2910,2914,2917,2929,2945,2948,2948,2955,2957,2961,2961,2966,2968,2971,2971,2973,2973,2976,2978,2981,2983,2987,2989,2998,2998,3002,3005,3011,3013,3017,3017,3022,3030,3032,3046,3059,3072,3076,3076,3085,3085,3089,3089,3113,3113,3124,3124,3130,3133,3141,3141,3145,3145,3150,3156,3159,3167,3170,3173,3184,3201,3204,3204,3213,3213,3217,3217,3241,3241,3252,3252,3258,3261,3269,3269,3273,3273,3278,3284,3287,3293,3295,3295,3298,3301,3312,3329,3332,3332,3341,3341,3345,3345,3369,3369,3386,3389,3396,3397,3401,3401,3406,3414,3416,3423,3426,3429,3440,3457,3460,3460,3479,3481,3506,3506,3516,3516,3518,3519,3527,3529,3531,3534,3541,3541,3543,3543,3552,3569,3573,3584,3643,3646,3676,3712,3715,3715,3717,3718,3721,3721,3723,3724,3726,3731,3736,3736,3744,3744,3748,3748,3750,3750,3752,3753,3756,3756,3770,3770,3774,3775,3781,3781,3783,3783,3790,3791,3802,3803,3806,3839,3912,3912,3947,3952,3980,3983,3992,3992,4029,4029,4045,4046,4048,4095,4130,4130,4136,4136,4139,4139,4147,4149,4154,4159,4186,4255,4294,4303,4345,4346,4348,4351,4442,4446,4515,4519,4602,4607,4615,4615,4679,4679,4681,4681,4686,4687,4695,4695,4697,4697,4702,4703,4743,4743,4745,4745,4750,4751,4783,4783,4785,4785,4790,4791,4799,4799,4801,4801,4806,4807,4815,4815,4823,4823,4847,4847,4879,4879,4881,4881,4886,4887,4895,4895,4935,4935,4955,4960,4989,5023,5109,5120,5751,5759,5789,5791,5873,5887,5901,5901,5909,5919,5943,5951,5972,5983,5997,5997,6001,6001,6004,6015,6109,6111,6122,6143,6159,6159,6170,6175,6264,6271,6314,7679,7836,7839,7930,7935,7958,7959,7966,7967,8006,8007,8014,8015,8024,8024,8026,8026,8028,8028,8030,8030,8062,8063,8117,8117,8133,8133,8148,8149,8156,8156,8176,8177,8181,8181,8191,8191,8275,8278,8280,8286,8292,8297,8306,8307,8335,8351,8370,8399,8427,8447,8507,8508,8524,8530,8580,8591,9167,9215,9255,9279,9291,9311,9471,9471,9748,9749,9752,9752,9854,9855,9866,9984,9989,9989,9994,9995,10024,10024,10060,10060,10062,10062,10067,10069,10071,10071,10079,10080,10133,10135,10160,10160,10175,10191,10220,10223,11008,11903,11930,11930,12020,12031,12246,12271,12284,12287,12352,12352,12439,12440,12544,12548,12589,12592,12687,12687,12728,12783,12829,12831,12868,12880,12924,12926,13004,13007,13055,13055,13175,13178,13278,13279,13311,13311,19894,19967,40870,40959,42125,42127,42183,44031,55204,55295,64046,64047,64107,64255,64263,64274,64280,64284,64311,64311,64317,64317,64319,64319,64322,64322,64325,64325,64434,64466,64832,64847,64912,64913,64968,64975,65021,65023,65040,65055,65060,65071,65095,65096,65107,65107,65127,65127,65132,65135,65141,65141,65277,65278,65280,65280,65471,65473,65480,65481,65488,65489,65496,65497,65501,65503,65511,65511,65519,65528,65536,66303,66335,66335,66340,66351,66379,66559,66598,66599,66638,118783,119030,119039,119079,119081,119262,119807,119893,119893,119965,119965,119968,119969,119971,119972,119975,119976,119981,119981,119994,119994,119996,119996,120001,120001,120004,120004,120070,120070,120075,120076,120085,120085,120093,120093,120122,120122,120127,120127,120133,120133,120135,120137,120145,120145,120484,120487,120778,120781,120832,131069,173783,194559,195102,196605,196608,262141,262144,327677,327680,393213,393216,458749,458752,524285,524288,589821,589824,655357,655360,720893,720896,786429,786432,851965,851968,917501,917504,917504,917506,917535,917632,983037],bA=C=>iA(C,hA),ne=[173,173,847,847,6150,6150,6155,6155,6156,6156,6157,6157,8203,8203,8204,8204,8205,8205,8288,8288,65024,65024,65025,65025,65026,65026,65027,65027,65028,65028,65029,65029,65030,65030,65031,65031,65032,65032,65033,65033,65034,65034,65035,65035,65036,65036,65037,65037,65038,65038,65039,65039,65279,65279],EA=[160,160,5760,5760,8192,8192,8193,8193,8194,8194,8195,8195,8196,8196,8197,8197,8198,8198,8199,8199,8200,8200,8201,8201,8202,8202,8203,8203,8239,8239,8287,8287,12288,12288],cA=[128,159,1757,1757,1807,1807,6158,6158,8204,8204,8205,8205,8232,8232,8233,8233,8288,8288,8289,8289,8290,8290,8291,8291,8298,8303,65279,65279,65529,65532,119155,119162],w=[64976,65007,65534,65535,131070,131071,196606,196607,262142,262143,327678,327679,393214,393215,458750,458751,524286,524287,589822,589823,655358,655359,720894,720895,786430,786431,851966,851967,917502,917503,983038,983039,1114110,1114111],H=[0,31,127,127,832,832,833,833,8206,8206,8207,8207,8234,8234,8235,8235,8236,8236,8237,8237,8238,8238,8298,8298,8299,8299,8300,8300,8301,8301,8302,8302,8303,8303,12272,12283,55296,57343,57344,63743,65529,65529,65530,65530,65531,65531,65532,65532,65533,65533,917505,917505,917536,917631,983040,1048573,1048576,1114109],TA=C=>iA(C,EA)||iA(C,H)||iA(C,cA)||iA(C,w),wA=[1470,1470,1472,1472,1475,1475,1488,1514,1520,1524,1563,1563,1567,1567,1569,1594,1600,1610,1645,1647,1649,1749,1757,1757,1765,1766,1786,1790,1792,1805,1808,1808,1810,1836,1920,1957,1969,1969,8207,8207,64285,64285,64287,64296,64298,64310,64312,64316,64318,64318,64320,64321,64323,64324,64326,64433,64467,64829,64848,64911,64914,64967,65008,65020,65136,65140,65142,65276],j=C=>iA(C,wA),RA=[65,90,97,122,170,170,181,181,186,186,192,214,216,246,248,544,546,563,592,685,688,696,699,705,720,721,736,740,750,750,890,890,902,902,904,906,908,908,910,929,931,974,976,1013,1024,1154,1162,1230,1232,1269,1272,1273,1280,1295,1329,1366,1369,1375,1377,1415,1417,1417,2307,2307,2309,2361,2365,2368,2377,2380,2384,2384,2392,2401,2404,2416,2434,2435,2437,2444,2447,2448,2451,2472,2474,2480,2482,2482,2486,2489,2494,2496,2503,2504,2507,2508,2519,2519,2524,2525,2527,2529,2534,2545,2548,2554,2565,2570,2575,2576,2579,2600,2602,2608,2610,2611,2613,2614,2616,2617,2622,2624,2649,2652,2654,2654,2662,2671,2674,2676,2691,2691,2693,2699,2701,2701,2703,2705,2707,2728,2730,2736,2738,2739,2741,2745,2749,2752,2761,2761,2763,2764,2768,2768,2784,2784,2790,2799,2818,2819,2821,2828,2831,2832,2835,2856,2858,2864,2866,2867,2870,2873,2877,2878,2880,2880,2887,2888,2891,2892,2903,2903,2908,2909,2911,2913,2918,2928,2947,2947,2949,2954,2958,2960,2962,2965,2969,2970,2972,2972,2974,2975,2979,2980,2984,2986,2990,2997,2999,3001,3006,3007,3009,3010,3014,3016,3018,3020,3031,3031,3047,3058,3073,3075,3077,3084,3086,3088,3090,3112,3114,3123,3125,3129,3137,3140,3168,3169,3174,3183,3202,3203,3205,3212,3214,3216,3218,3240,3242,3251,3253,3257,3262,3262,3264,3268,3271,3272,3274,3275,3285,3286,3294,3294,3296,3297,3302,3311,3330,3331,3333,3340,3342,3344,3346,3368,3370,3385,3390,3392,3398,3400,3402,3404,3415,3415,3424,3425,3430,3439,3458,3459,3461,3478,3482,3505,3507,3515,3517,3517,3520,3526,3535,3537,3544,3551,3570,3572,3585,3632,3634,3635,3648,3654,3663,3675,3713,3714,3716,3716,3719,3720,3722,3722,3725,3725,3732,3735,3737,3743,3745,3747,3749,3749,3751,3751,3754,3755,3757,3760,3762,3763,3773,3773,3776,3780,3782,3782,3792,3801,3804,3805,3840,3863,3866,3892,3894,3894,3896,3896,3902,3911,3913,3946,3967,3967,3973,3973,3976,3979,4030,4037,4039,4044,4047,4047,4096,4129,4131,4135,4137,4138,4140,4140,4145,4145,4152,4152,4160,4183,4256,4293,4304,4344,4347,4347,4352,4441,4447,4514,4520,4601,4608,4614,4616,4678,4680,4680,4682,4685,4688,4694,4696,4696,4698,4701,4704,4742,4744,4744,4746,4749,4752,4782,4784,4784,4786,4789,4792,4798,4800,4800,4802,4805,4808,4814,4816,4822,4824,4846,4848,4878,4880,4880,4882,4885,4888,4894,4896,4934,4936,4954,4961,4988,5024,5108,5121,5750,5761,5786,5792,5872,5888,5900,5902,5905,5920,5937,5941,5942,5952,5969,5984,5996,5998,6e3,6016,6070,6078,6085,6087,6088,6100,6106,6108,6108,6112,6121,6160,6169,6176,6263,6272,6312,7680,7835,7840,7929,7936,7957,7960,7965,7968,8005,8008,8013,8016,8023,8025,8025,8027,8027,8029,8029,8031,8061,8064,8116,8118,8124,8126,8126,8130,8132,8134,8140,8144,8147,8150,8155,8160,8172,8178,8180,8182,8188,8206,8206,8305,8305,8319,8319,8450,8450,8455,8455,8458,8467,8469,8469,8473,8477,8484,8484,8486,8486,8488,8488,8490,8493,8495,8497,8499,8505,8509,8511,8517,8521,8544,8579,9014,9082,9109,9109,9372,9449,12293,12295,12321,12329,12337,12341,12344,12348,12353,12438,12445,12447,12449,12538,12540,12543,12549,12588,12593,12686,12688,12727,12784,12828,12832,12867,12896,12923,12927,12976,12992,13003,13008,13054,13056,13174,13179,13277,13280,13310,13312,19893,19968,40869,40960,42124,44032,55203,55296,64045,64048,64106,64256,64262,64275,64279,65313,65338,65345,65370,65382,65470,65474,65479,65482,65487,65490,65495,65498,65500,66304,66334,66336,66339,66352,66378,66560,66597,66600,66637,118784,119029,119040,119078,119082,119142,119146,119154,119171,119172,119180,119209,119214,119261,119808,119892,119894,119964,119966,119967,119970,119970,119973,119974,119977,119980,119982,119993,119995,119995,119997,12e4,120002,120003,120005,120069,120071,120074,120077,120084,120086,120092,120094,120121,120123,120126,120128,120132,120134,120134,120138,120144,120146,120483,120488,120777,131072,173782,194560,195101,983040,1048573,1048576,1114109],PA=C=>iA(C,RA),fe=C=>C.codePointAt(0);function He(C){const f=[],S=C.length;for(let I=0;I=55296&&tA<=56319&&S>I+1){const MA=C.charCodeAt(I+1);if(MA>=56320&&MA<=57343){f.push(1024*(tA-55296)+MA-56320+65536),I+=1;continue}}f.push(tA)}return f}class Pe{static generateFileID(){let f=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},S=`${f.CreationDate.getTime()}\n`;for(let I in f)f.hasOwnProperty(I)&&(S+=`${I}: ${f[I].valueOf()}\n`);return W(d.default.MD5(S))}static generateRandomWordArray(f){return d.default.lib.WordArray.random(f)}static create(f){let S=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return S.ownerPassword||S.userPassword?new Pe(f,S):null}constructor(f){let S=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!S.ownerPassword&&!S.userPassword)throw new Error("None of owner password and user password is defined.");this.document=f,this._setupEncryption(S)}_setupEncryption(f){switch(f.pdfVersion){case"1.4":case"1.5":this.version=2;break;case"1.6":case"1.7":this.version=4;break;case"1.7ext3":this.version=5;break;default:this.version=1}const S={Filter:"Standard"};switch(this.version){case 1:case 2:case 4:this._setupEncryptionV1V2V4(this.version,S,f);break;case 5:this._setupEncryptionV5(S,f)}this.dictionary=this.document.ref(S)}_setupEncryptionV1V2V4(f,S,I){let tA,MA;switch(f){case 1:tA=2,this.keyBits=40,MA=function te(){let C=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},f=-64;return C.printing&&(f|=4),C.modifying&&(f|=8),C.copying&&(f|=16),C.annotating&&(f|=32),f}(I.permissions);break;case 2:tA=3,this.keyBits=128,MA=sA(I.permissions);break;case 4:tA=4,this.keyBits=128,MA=sA(I.permissions)}const OA=dA(I.userPassword),se=I.ownerPassword?dA(I.ownerPassword):OA,ge=function u(C,f,S,I){let tA=I,MA=C>=3?51:1;for(let ge=0;ge=3?20:1;for(let ge=0;ge=3?51:1;for(let ge=0;ge=2&&(S.Length=this.keyBits),4===f&&(S.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV2",Length:this.keyBits/8}},S.StmF="StdCF",S.StrF="StdCF"),S.R=tA,S.O=W(ge),S.U=W(Ne),S.P=MA}_setupEncryptionV5(f,S){this.keyBits=256;const I=sA(S.permissions),tA=ve(S.userPassword),MA=S.ownerPassword?ve(S.ownerPassword):tA;this.encryptionKey=function VA(C){return C(32)}(Pe.generateRandomWordArray);const OA=function R(C,f){const S=f(8),I=f(8);return d.default.SHA256(C.clone().concat(S)).concat(S).concat(I)}(tA,Pe.generateRandomWordArray),ge=function pA(C,f,S){const I=d.default.SHA256(C.clone().concat(f)),tA={mode:d.default.mode.CBC,padding:d.default.pad.NoPadding,iv:d.default.lib.WordArray.create(null,16)};return d.default.AES.encrypt(S,I,tA).ciphertext}(tA,d.default.lib.WordArray.create(OA.words.slice(10,12),8),this.encryptionKey),Ne=function aA(C,f,S){const I=S(8),tA=S(8);return d.default.SHA256(C.clone().concat(I).concat(f)).concat(I).concat(tA)}(MA,OA,Pe.generateRandomWordArray),me=function Me(C,f,S,I){const tA=d.default.SHA256(C.clone().concat(f).concat(S)),MA={mode:d.default.mode.CBC,padding:d.default.pad.NoPadding,iv:d.default.lib.WordArray.create(null,16)};return d.default.AES.encrypt(I,tA,MA).ciphertext}(MA,d.default.lib.WordArray.create(Ne.words.slice(10,12),8),OA,this.encryptionKey),Ke=function Ce(C,f,S){const I=d.default.lib.WordArray.create([qe(C),4294967295,1415668834],12).concat(S(4));return d.default.AES.encrypt(I,f,{mode:d.default.mode.ECB,padding:d.default.pad.NoPadding}).ciphertext}(I,this.encryptionKey,Pe.generateRandomWordArray);f.V=5,f.Length=this.keyBits,f.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV3",Length:this.keyBits/8}},f.StmF="StdCF",f.StrF="StdCF",f.R=5,f.O=W(Ne),f.OE=W(me),f.U=W(OA),f.UE=W(ge),f.P=I,f.Perms=W(Ke)}getEncryptFn(f,S){let I,tA;if(this.version<5&&(I=this.encryptionKey.clone().concat(d.default.lib.WordArray.create([(255&f)<<24|(65280&f)<<8|f>>8&65280|255&S,(65280&S)<<16],5))),1===this.version||2===this.version){let se=d.default.MD5(I);return se.sigBytes=Math.min(16,this.keyBits/8+5),ge=>W(d.default.RC4.encrypt(d.default.lib.WordArray.create(ge),se).ciphertext)}tA=4===this.version?d.default.MD5(I.concat(d.default.lib.WordArray.create([1933667412],4))):this.encryptionKey;const MA=Pe.generateRandomWordArray(16),OA={mode:d.default.mode.CBC,padding:d.default.pad.Pkcs7,iv:MA};return se=>W(MA.clone().concat(d.default.AES.encrypt(d.default.lib.WordArray.create(se),tA,OA).ciphertext))}end(){this.dictionary.end()}}function sA(){let C=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},f=-3904;return"lowResolution"===C.printing&&(f|=4),"highResolution"===C.printing&&(f|=2052),C.modifying&&(f|=8),C.copying&&(f|=16),C.annotating&&(f|=32),C.fillingForms&&(f|=256),C.contentAccessibility&&(f|=512),C.documentAssembly&&(f|=1024),f}function dA(){let C=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";const f=M.alloc(32),S=C.length;let I=0;for(;I255)throw new Error("Password contains one or more invalid characters.");f[I]=tA,I++}for(;I<32;)f[I]=Ie[I-S],I++;return d.default.lib.WordArray.create(f)}function ve(){let C=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";C=unescape(encodeURIComponent(function _e(C){let f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if("string"!=typeof C)throw new TypeError("Expected string.");if(0===C.length)return"";const S=He(C).map(Re=>(C=>iA(C,EA))(Re)?32:Re).filter(Re=>!(C=>iA(C,ne))(Re)),I=String.fromCodePoint.apply(null,S).normalize("NFKC"),tA=He(I);if(tA.some(TA))throw new Error("Prohibited character, see https://tools.ietf.org/html/rfc4013#section-2.3");if(!0!==f.allowUnassigned&&tA.some(bA))throw new Error("Unassigned code point, see https://tools.ietf.org/html/rfc4013#section-2.5");const OA=tA.some(j),se=tA.some(PA);if(OA&&se)throw new Error("String must not contain RandALCat and LCat at the same time, see https://tools.ietf.org/html/rfc3454#section-6");const ge=j(fe((C=>C[0])(I))),Ne=j(fe((C=>C[C.length-1])(I)));if(OA&&(!ge||!Ne))throw new Error("Bidirectional RandALCat character must be the first and the last character of the string, see https://tools.ietf.org/html/rfc3454#section-6");return I}(C)));const f=Math.min(127,C.length),S=M.alloc(f);for(let I=0;I>8&65280|C>>24&255}function W(C){const f=[];for(let S=0;S>8*(3-S%4)&255);return M.from(f)}const Ie=[40,191,78,94,78,117,138,65,100,0,78,86,255,250,1,8,46,46,0,182,208,104,62,128,47,12,169,254,100,83,105,122],{number:de}=Z;class SA{constructor(f){this.doc=f,this.stops=[],this.embedded=!1,this.transform=[1,0,0,1,0,0]}stop(f,S,I){if(null==I&&(I=1),S=this.doc._normalizeColor(S),0===this.stops.length)if(3===S.length)this._colorSpace="DeviceRGB";else if(4===S.length)this._colorSpace="DeviceCMYK";else{if(1!==S.length)throw new Error("Unknown color space");this._colorSpace="DeviceGray"}else if("DeviceRGB"===this._colorSpace&&3!==S.length||"DeviceCMYK"===this._colorSpace&&4!==S.length||"DeviceGray"===this._colorSpace&&1!==S.length)throw new Error("All gradient stops must use the same color space");return I=Math.max(0,Math.min(1,I)),this.stops.push([f,S,I]),this}setTransform(f,S,I,tA,MA,OA){return this.transform=[f,S,I,tA,MA,OA],this}embed(f){let S;const I=this.stops.length;if(0===I)return;this.embedded=!0,this.matrix=f;const tA=this.stops[I-1];tA[0]<1&&this.stops.push([1,tA[1],tA[2]]);const MA=[],OA=[],se=[];for(let Re=0;ReRe[2]<1)){let Re=this.opacityGradient();Re._colorSpace="DeviceGray";for(let xt of this.stops)Re.stop(xt[0],[xt[2]]);Re=Re.embed(this.matrix);const me=[0,0,this.doc.page.width,this.doc.page.height],Ke=this.doc.ref({Type:"XObject",Subtype:"Form",FormType:1,BBox:me,Group:{Type:"Group",S:"Transparency",CS:"DeviceGray"},Resources:{ProcSet:["PDF","Text","ImageB","ImageC","ImageI"],Pattern:{Sh1:Re}}});Ke.write("/Pattern cs /Sh1 scn"),Ke.end(`${me.join(" ")} re f`);const Et=this.doc.ref({Type:"ExtGState",SMask:{Type:"Mask",S:"Luminosity",G:Ke}});Et.end();const Dt=this.doc.ref({Type:"Pattern",PatternType:1,PaintType:1,TilingType:2,BBox:me,XStep:me[2],YStep:me[3],Resources:{ProcSet:["PDF","Text","ImageB","ImageC","ImageI"],Pattern:{Sh1:Ne},ExtGState:{Gs1:Et}}});Dt.write("/Gs1 gs /Pattern cs /Sh1 scn"),Dt.end(`${me.join(" ")} re f`),this.doc.page.patterns[this.id]=Dt}else this.doc.page.patterns[this.id]=Ne;return Ne}apply(f){const[S,I,tA,MA,OA,se]=this.doc._ctm,[ge,Ne,Re,me,Ke,Et]=this.transform,Dt=[S*ge+tA*Ne,I*ge+MA*Ne,S*Re+tA*me,I*Re+MA*me,S*Ke+tA*Et+OA,I*Ke+MA*Et+se];return(!this.embedded||Dt.join(" ")!==this.matrix.join(" "))&&this.embed(Dt),this.doc._setColorSpace("Pattern",f),this.doc.addContent(`/${this.id} ${f?"SCN":"scn"}`)}}class ce extends SA{constructor(f,S,I,tA,MA){super(f),this.x1=S,this.y1=I,this.x2=tA,this.y2=MA}shader(f){return this.doc.ref({ShadingType:2,ColorSpace:this._colorSpace,Coords:[this.x1,this.y1,this.x2,this.y2],Function:f,Extend:[!0,!0]})}opacityGradient(){return new ce(this.doc,this.x1,this.y1,this.x2,this.y2)}}class pe extends SA{constructor(f,S,I,tA,MA,OA,se){super(f),this.doc=f,this.x1=S,this.y1=I,this.r1=tA,this.x2=MA,this.y2=OA,this.r2=se}shader(f){return this.doc.ref({ShadingType:3,ColorSpace:this._colorSpace,Coords:[this.x1,this.y1,this.r1,this.x2,this.y2,this.r2],Function:f,Extend:[!0,!0]})}opacityGradient(){return new pe(this.doc,this.x1,this.y1,this.r1,this.x2,this.y2,this.r2)}}var st={PDFGradient:SA,PDFLinearGradient:ce,PDFRadialGradient:pe};const We=["DeviceCMYK","DeviceRGB"];var Ct={PDFTilingPattern:class Ze{constructor(f,S,I,tA,MA){this.doc=f,this.bBox=S,this.xStep=I,this.yStep=tA,this.stream=MA}createPattern(){const f=this.doc.ref();f.end();const[S,I,tA,MA,OA,se]=this.doc._ctm,[ge,Ne,Re,me,Ke,Et]=[1,0,0,1,0,0],xt=this.doc.ref({Type:"Pattern",PatternType:1,PaintType:2,TilingType:2,BBox:this.bBox,XStep:this.xStep,YStep:this.yStep,Matrix:[S*ge+tA*Ne,I*ge+MA*Ne,S*Re+tA*me,I*Re+MA*me,S*Ke+tA*Et+OA,I*Ke+MA*Et+se].map(It=>+It.toFixed(5)),Resources:f});return xt.end(this.stream),xt}embedPatternColorSpaces(){We.forEach(f=>{const S=this.getPatternColorSpaceId(f);if(this.doc.page.colorSpaces[S])return;const I=this.doc.ref(["Pattern",f]);I.end(),this.doc.page.colorSpaces[S]=I})}getPatternColorSpaceId(f){return`CsP${f}`}embed(){this.id||(this.doc._patternCount=this.doc._patternCount+1,this.id="P"+this.doc._patternCount,this.pattern=this.createPattern()),this.doc.page.patterns[this.id]||(this.doc.page.patterns[this.id]=this.pattern)}apply(f,S){this.embedPatternColorSpaces(),this.embed();const I=this.doc._normalizeColor(S);if(!I)throw Error(`invalid pattern color. (value: ${S})`);const tA=this.getPatternColorSpaceId(this.doc._getColorSpace(I));this.doc._setColorSpace(tA,f);const MA=f?"SCN":"scn";return this.doc.addContent(`${I.join(" ")} /${this.id} ${MA}`)}}};const{PDFGradient:Kt,PDFLinearGradient:rt,PDFRadialGradient:mt}=st,{PDFTilingPattern:zt}=Ct;var kt={initColor(){this.spotColors={},this._opacityRegistry={},this._opacityCount=0,this._patternCount=0,this._gradCount=0},_normalizeColor(C){if("string"==typeof C)if("#"===C.charAt(0)){4===C.length&&(C=C.replace(/#([0-9A-F])([0-9A-F])([0-9A-F])/i,"#$1$1$2$2$3$3"));const f=parseInt(C.slice(1),16);C=[f>>16,f>>8&255,255&f]}else if(Jt[C])C=Jt[C];else if(this.spotColors[C])return this.spotColors[C];return Array.isArray(C)?(3===C.length?C=C.map(f=>f/255):4===C.length&&(C=C.map(f=>f/100)),C):null},_setColor(C,f){return C instanceof Kt?(C.apply(f),!0):Array.isArray(C)&&C[0]instanceof zt?(C[0].apply(f,C[1]),!0):this._setColorCore(C,f)},_setColorCore(C,f){if(!(C=this._normalizeColor(C)))return!1;const S=f?"SCN":"scn",I=this._getColorSpace(C);return this._setColorSpace(I,f),C instanceof uA?(this.page.colorSpaces[C.id]=C.ref,this.addContent(`1 ${S}`)):this.addContent(`${C.join(" ")} ${S}`),!0},_setColorSpace(C,f){return this.addContent(`/${C} ${f?"CS":"cs"}`)},_getColorSpace:C=>C instanceof uA?C.id:4===C.length?"DeviceCMYK":"DeviceRGB",fillColor(C,f){return this._setColor(C,!1)&&this.fillOpacity(f),this._fillColor=[C,f],this},strokeColor(C,f){return this._setColor(C,!0)&&this.strokeOpacity(f),this},opacity(C){return this._doOpacity(C,C),this},fillOpacity(C){return this._doOpacity(C,null),this},strokeOpacity(C){return this._doOpacity(null,C),this},_doOpacity(C,f){let S,I;if(null==C&&null==f)return;null!=C&&(C=Math.max(0,Math.min(1,C))),null!=f&&(f=Math.max(0,Math.min(1,f)));const tA=`${C}_${f}`;return this._opacityRegistry[tA]?[S,I]=this._opacityRegistry[tA]:(S={Type:"ExtGState"},null!=C&&(S.ca=C),null!=f&&(S.CA=f),S=this.ref(S),S.end(),I="Gs"+ ++this._opacityCount,this._opacityRegistry[tA]=[S,I]),this.page.ext_gstates[I]=S,this.addContent(`/${I} gs`)},linearGradient(C,f,S,I){return new rt(this,C,f,S,I)},radialGradient(C,f,S,I,tA,MA){return new mt(this,C,f,S,I,tA,MA)},pattern(C,f,S,I){return new zt(this,C,f,S,I)},addSpotColor(C,f,S,I,tA){const MA=new uA(this,C,f,S,I,tA);return this.spotColors[C]=MA,this}},Jt={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],grey:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]};let nt,$e,lt,tt,Ut,Gt;nt=$e=lt=tt=Ut=Gt=0;const Rt={A:7,a:7,C:6,c:6,H:1,h:1,L:2,l:2,M:2,m:2,Q:4,q:4,S:4,s:4,T:2,t:2,V:1,v:1,Z:0,z:0},Dn={M:(C,f)=>(nt=f[0],$e=f[1],lt=tt=null,Ut=nt,Gt=$e,C.moveTo(nt,$e)),m:(C,f)=>(nt+=f[0],$e+=f[1],lt=tt=null,Ut=nt,Gt=$e,C.moveTo(nt,$e)),C:(C,f)=>(nt=f[4],$e=f[5],lt=f[2],tt=f[3],C.bezierCurveTo(...f)),c:(C,f)=>(C.bezierCurveTo(f[0]+nt,f[1]+$e,f[2]+nt,f[3]+$e,f[4]+nt,f[5]+$e),lt=nt+f[2],tt=$e+f[3],nt+=f[4],$e+=f[5]),S:(C,f)=>(null===lt&&(lt=nt,tt=$e),C.bezierCurveTo(nt-(lt-nt),$e-(tt-$e),f[0],f[1],f[2],f[3]),lt=f[0],tt=f[1],nt=f[2],$e=f[3]),s:(C,f)=>(null===lt&&(lt=nt,tt=$e),C.bezierCurveTo(nt-(lt-nt),$e-(tt-$e),nt+f[0],$e+f[1],nt+f[2],$e+f[3]),lt=nt+f[0],tt=$e+f[1],nt+=f[2],$e+=f[3]),Q:(C,f)=>(lt=f[0],tt=f[1],nt=f[2],$e=f[3],C.quadraticCurveTo(f[0],f[1],nt,$e)),q:(C,f)=>(C.quadraticCurveTo(f[0]+nt,f[1]+$e,f[2]+nt,f[3]+$e),lt=nt+f[0],tt=$e+f[1],nt+=f[2],$e+=f[3]),T:(C,f)=>(null===lt?(lt=nt,tt=$e):(lt=nt-(lt-nt),tt=$e-(tt-$e)),C.quadraticCurveTo(lt,tt,f[0],f[1]),lt=nt-(lt-nt),tt=$e-(tt-$e),nt=f[0],$e=f[1]),t:(C,f)=>(null===lt?(lt=nt,tt=$e):(lt=nt-(lt-nt),tt=$e-(tt-$e)),C.quadraticCurveTo(lt,tt,nt+f[0],$e+f[1]),nt+=f[0],$e+=f[1]),A:(C,f)=>(en(C,nt,$e,f),nt=f[5],$e=f[6]),a:(C,f)=>(f[5]+=nt,f[6]+=$e,en(C,nt,$e,f),nt=f[5],$e=f[6]),L:(C,f)=>(nt=f[0],$e=f[1],lt=tt=null,C.lineTo(nt,$e)),l:(C,f)=>(nt+=f[0],$e+=f[1],lt=tt=null,C.lineTo(nt,$e)),H:(C,f)=>(nt=f[0],lt=tt=null,C.lineTo(nt,$e)),h:(C,f)=>(nt+=f[0],lt=tt=null,C.lineTo(nt,$e)),V:(C,f)=>($e=f[0],lt=tt=null,C.lineTo(nt,$e)),v:(C,f)=>($e+=f[0],lt=tt=null,C.lineTo(nt,$e)),Z:C=>(C.closePath(),nt=Ut,$e=Gt),z:C=>(C.closePath(),nt=Ut,$e=Gt)},en=function(C,f,S,I){const[tA,MA,OA,se,ge,Ne,Re]=I,me=tn(Ne,Re,tA,MA,se,ge,OA,f,S);for(let Ke of me){const Et=In(...Ke);C.bezierCurveTo(...Et)}},tn=function(C,f,S,I,tA,MA,OA,se,ge){const Ne=OA*(Math.PI/180),Re=Math.sin(Ne),me=Math.cos(Ne);S=Math.abs(S),I=Math.abs(I),lt=me*(se-C)*.5+Re*(ge-f)*.5,tt=me*(ge-f)*.5-Re*(se-C)*.5;let Ke=lt*lt/(S*S)+tt*tt/(I*I);Ke>1&&(Ke=Math.sqrt(Ke),S*=Ke,I*=Ke);const Et=me/S,Dt=Re/S,xt=-Re/I,It=me/I,dt=Et*se+Dt*ge,ft=xt*se+It*ge,yt=Et*C+Dt*f,an=xt*C+It*f;let jt=1/((yt-dt)*(yt-dt)+(an-ft)*(an-ft))-.25;jt<0&&(jt=0);let ht=Math.sqrt(jt);MA===tA&&(ht=-ht);const Zt=.5*(dt+yt)-ht*(an-ft),YA=.5*(ft+an)+ht*(yt-dt),s=Math.atan2(ft-YA,dt-Zt);let z=Math.atan2(an-YA,yt-Zt)-s;z<0&&1===MA?z+=2*Math.PI:z>0&&0===MA&&(z-=2*Math.PI);const AA=Math.ceil(Math.abs(z/(.5*Math.PI+.001))),fA=[];for(let FA=0;FA0&&(I[I.length]=+tA),S[S.length]={cmd:f,args:I},I=[],tA="",MA=!1),f=se;else if([" ",","].includes(se)||"-"===se&&tA.length>0&&"e"!==tA[tA.length-1]||"."===se&&MA){if(0===tA.length)continue;I.length===OA?(S[S.length]={cmd:f,args:I},I=[+tA],"M"===f&&(f="L"),"m"===f&&(f="l")):I[I.length]=+tA,MA="."===se,tA=["-","."].includes(se)?se:""}else tA+=se,"."===se&&(MA=!0);return tA.length>0&&(I.length===OA?(S[S.length]={cmd:f,args:I},I=[+tA],"M"===f&&(f="L"),"m"===f&&(f="l")):I[I.length]=+tA),S[S.length]={cmd:f,args:I},S}(S);!function(C,f){nt=$e=lt=tt=Ut=Gt=0;for(let S=0;S1&&void 0!==arguments[1]?arguments[1]:{};const S=C;if(Array.isArray(C)||(C=[C,f.space||C]),!C.every(tA=>Number.isFinite(tA)&&tA>0))throw new Error(`dash(${JSON.stringify(S)}, ${JSON.stringify(f)}) invalid, lengths must be numeric and greater than zero`);return C=C.map(DA).join(" "),this.addContent(`[${C}] ${DA(f.phase||0)} d`)},undash(){return this.addContent("[] 0 d")},moveTo(C,f){return this.addContent(`${DA(C)} ${DA(f)} m`)},lineTo(C,f){return this.addContent(`${DA(C)} ${DA(f)} l`)},bezierCurveTo(C,f,S,I,tA,MA){return this.addContent(`${DA(C)} ${DA(f)} ${DA(S)} ${DA(I)} ${DA(tA)} ${DA(MA)} c`)},quadraticCurveTo(C,f,S,I){return this.addContent(`${DA(C)} ${DA(f)} ${DA(S)} ${DA(I)} v`)},rect(C,f,S,I){return this.addContent(`${DA(C)} ${DA(f)} ${DA(S)} ${DA(I)} re`)},roundedRect(C,f,S,I,tA){null==tA&&(tA=0);const MA=(tA=Math.min(tA,.5*S,.5*I))*(1-mA);return this.moveTo(C+tA,f),this.lineTo(C+S-tA,f),this.bezierCurveTo(C+S-MA,f,C+S,f+MA,C+S,f+tA),this.lineTo(C+S,f+I-tA),this.bezierCurveTo(C+S,f+I-MA,C+S-MA,f+I,C+S-tA,f+I),this.lineTo(C+tA,f+I),this.bezierCurveTo(C+MA,f+I,C,f+I-MA,C,f+I-tA),this.lineTo(C,f+tA),this.bezierCurveTo(C,f+MA,C+MA,f,C+tA,f),this.closePath()},ellipse(C,f,S,I){null==I&&(I=S);const tA=S*mA,MA=I*mA,OA=(C-=S)+2*S,se=(f-=I)+2*I,ge=C+S,Ne=f+I;return this.moveTo(C,Ne),this.bezierCurveTo(C,Ne-MA,ge-tA,f,ge,f),this.bezierCurveTo(ge+tA,f,OA,Ne-MA,OA,Ne),this.bezierCurveTo(OA,Ne+MA,ge+tA,se,ge,se),this.bezierCurveTo(ge-tA,se,C,Ne+MA,C,Ne),this.closePath()},circle(C,f,S){return this.ellipse(C,f,S)},arc(C,f,S,I,tA,MA){null==MA&&(MA=!1);const OA=2*Math.PI,se=.5*Math.PI;let ge=tA-I;Math.abs(ge)>OA?ge=OA:0!==ge&&MA!==ge<0&&(ge=(MA?-1:1)*OA+ge);const Ne=Math.ceil(Math.abs(ge)/se),Re=ge/Ne,me=Re/se*mA*S;let Ke=I,Et=-Math.sin(Ke)*me,Dt=Math.cos(Ke)*me,xt=C+Math.cos(Ke)*S,It=f+Math.sin(Ke)*S;this.moveTo(xt,It);for(let dt=0;dt/even-?odd/.test(C)?"*":"",fill(C,f){return/(even-?odd)|(non-?zero)/.test(C)&&(f=C,C=null),C&&this.fillColor(C),this.addContent(`f${this._windingRule(f)}`)},stroke(C){return C&&this.strokeColor(C),this.addContent("S")},fillAndStroke(C,f,S){null==f&&(f=C);const I=/(even-?odd)|(non-?zero)/;return I.test(C)&&(S=C,C=null),I.test(f)&&(S=f,f=C),C&&(this.fillColor(C),this.strokeColor(f)),this.addContent(`B${this._windingRule(S)}`)},clip(C){return this.addContent(`W${this._windingRule(C)} n`)},transform(C,f,S,I,tA,MA){if(1===C&&0===f&&0===S&&1===I&&0===tA&&0===MA)return this;const OA=this._ctm,[se,ge,Ne,Re,me,Ke]=OA;OA[0]=se*C+Ne*f,OA[1]=ge*C+Re*f,OA[2]=se*S+Ne*I,OA[3]=ge*S+Re*I,OA[4]=se*tA+Ne*MA+me,OA[5]=ge*tA+Re*MA+Ke;const Et=[C,f,S,I,tA,MA].map(Dt=>DA(Dt)).join(" ");return this.addContent(`${Et} cm`)},translate(C,f){return this.transform(1,0,0,1,C,f)},rotate(C){let S,f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const I=C*Math.PI/180,tA=Math.cos(I),MA=Math.sin(I);let OA=S=0;if(null!=f.origin){[OA,S]=f.origin;const ge=OA*MA+S*tA;OA-=OA*tA-S*MA,S-=ge}return this.transform(tA,MA,-MA,tA,OA,S)},scale(C,f){let I,S=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};null==f&&(f=C),"object"==typeof f&&(S=f,f=C);let tA=I=0;return null!=S.origin&&([tA,I]=S.origin,tA-=C*tA,I-=f*I),this.transform(C,0,0,f,tA,I)}};const jA={402:131,8211:150,8212:151,8216:145,8217:146,8218:130,8220:147,8221:148,8222:132,8224:134,8225:135,8226:149,8230:133,8364:128,8240:137,8249:139,8250:155,710:136,8482:153,338:140,339:156,732:152,352:138,353:154,376:159,381:142,382:158},NA=".notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n \nspace exclam quotedbl numbersign\ndollar percent ampersand quotesingle\nparenleft parenright asterisk plus\ncomma hyphen period slash\nzero one two three\nfour five six seven\neight nine colon semicolon\nless equal greater question\n \nat A B C\nD E F G\nH I J K\nL M N O\nP Q R S\nT U V W\nX Y Z bracketleft\nbackslash bracketright asciicircum underscore\n \ngrave a b c\nd e f g\nh i j k\nl m n o\np q r s\nt u v w\nx y z braceleft\nbar braceright asciitilde .notdef\n \nEuro .notdef quotesinglbase florin\nquotedblbase ellipsis dagger daggerdbl\ncircumflex perthousand Scaron guilsinglleft\nOE .notdef Zcaron .notdef\n.notdef quoteleft quoteright quotedblleft\nquotedblright bullet endash emdash\ntilde trademark scaron guilsinglright\noe .notdef zcaron ydieresis\n \nspace exclamdown cent sterling\ncurrency yen brokenbar section\ndieresis copyright ordfeminine guillemotleft\nlogicalnot hyphen registered macron\ndegree plusminus twosuperior threesuperior\nacute mu paragraph periodcentered\ncedilla onesuperior ordmasculine guillemotright\nonequarter onehalf threequarters questiondown\n \nAgrave Aacute Acircumflex Atilde\nAdieresis Aring AE Ccedilla\nEgrave Eacute Ecircumflex Edieresis\nIgrave Iacute Icircumflex Idieresis\nEth Ntilde Ograve Oacute\nOcircumflex Otilde Odieresis multiply\nOslash Ugrave Uacute Ucircumflex\nUdieresis Yacute Thorn germandbls\n \nagrave aacute acircumflex atilde\nadieresis aring ae ccedilla\negrave eacute ecircumflex edieresis\nigrave iacute icircumflex idieresis\neth ntilde ograve oacute\nocircumflex otilde odieresis divide\noslash ugrave uacute ucircumflex\nudieresis yacute thorn ydieresis".split(/\s+/);class le{constructor(f){this.attributes={},this.glyphWidths={},this.boundingBoxes={},this.kernPairs={},this.parse(f),this.bbox=this.attributes.FontBBox.split(/\s+/).map(S=>+S),this.ascender=+(this.attributes.Ascender||0),this.descender=+(this.attributes.Descender||0),this.xHeight=+(this.attributes.XHeight||0),this.capHeight=+(this.attributes.CapHeight||0),this.lineGap=this.bbox[3]-this.bbox[1]-(this.ascender-this.descender)}parse(f){let S="";for(let ge of f.split("\n")){var I,tA;if(I=ge.match(/^Start(\w+)/))S=I[1];else if(I=ge.match(/^End(\w+)/))S="";else switch(S){case"FontMetrics":var MA=(I=ge.match(/(^\w+)\s+(.*)/))[1],OA=I[2];(tA=this.attributes[MA])?(Array.isArray(tA)||(tA=this.attributes[MA]=[tA]),tA.push(OA)):this.attributes[MA]=OA;break;case"CharMetrics":if(!/^CH?\s/.test(ge))continue;var se=ge.match(/\bN\s+(\.?\w+)\s*;/)[1];this.glyphWidths[se]=+ge.match(/\bWX\s+(\d+)\s*;/)[1];break;case"KernPairs":(I=ge.match(/^KPX\s+(\.?\w+)\s+(\.?\w+)\s+(-?\d+)/))&&(this.kernPairs[I[1]+"\0"+I[2]]=parseInt(I[3]))}}}encodeText(f){const S=[];for(let I=0,tA=f.length;I1&&void 0!==arguments[1]&&arguments[1]?this.lineGap:0)-this.descender)/1e3*f}}const ee={Courier:()=>y.readFileSync("//data/Courier.afm","utf8"),"Courier-Bold":()=>y.readFileSync("//data/Courier-Bold.afm","utf8"),"Courier-Oblique":()=>y.readFileSync("//data/Courier-Oblique.afm","utf8"),"Courier-BoldOblique":()=>y.readFileSync("//data/Courier-BoldOblique.afm","utf8"),Helvetica:()=>y.readFileSync("//data/Helvetica.afm","utf8"),"Helvetica-Bold":()=>y.readFileSync("//data/Helvetica-Bold.afm","utf8"),"Helvetica-Oblique":()=>y.readFileSync("//data/Helvetica-Oblique.afm","utf8"),"Helvetica-BoldOblique":()=>y.readFileSync("//data/Helvetica-BoldOblique.afm","utf8"),"Times-Roman":()=>y.readFileSync("//data/Times-Roman.afm","utf8"),"Times-Bold":()=>y.readFileSync("//data/Times-Bold.afm","utf8"),"Times-Italic":()=>y.readFileSync("//data/Times-Italic.afm","utf8"),"Times-BoldItalic":()=>y.readFileSync("//data/Times-BoldItalic.afm","utf8"),Symbol:()=>y.readFileSync("//data/Symbol.afm","utf8"),ZapfDingbats:()=>y.readFileSync("//data/ZapfDingbats.afm","utf8")};class qA extends GA{constructor(f,S,I){super(),this.document=f,this.name=S,this.id=I,this.font=new le(ee[this.name]()),({ascender:this.ascender,descender:this.descender,bbox:this.bbox,lineGap:this.lineGap,xHeight:this.xHeight,capHeight:this.capHeight}=this.font)}embed(){return this.dictionary.data={Type:"Font",BaseFont:this.name,Subtype:"Type1",Encoding:"WinAnsiEncoding"},this.dictionary.end()}encode(f){const S=this.font.encodeText(f),I=this.font.glyphsForString(`${f}`),tA=this.font.advancesForGlyphs(I),MA=[];for(let OA=0;OA>8;let tA=0;this.font.post.isFixedPitch&&(tA|=1),1<=I&&I<=7&&(tA|=2),tA|=4,10===I&&(tA|=8),this.font.head.macStyle.italic&&(tA|=64);const OA=[1,2,3,4,5,6].map(me=>String.fromCharCode((this.id.charCodeAt(me)||73)+17)).join("")+"+"+this.font.postscriptName?.replaceAll(" ","_"),{bbox:se}=this.font,ge=this.document.ref({Type:"FontDescriptor",FontName:OA,Flags:tA,FontBBox:[se.minX*this.scale,se.minY*this.scale,se.maxX*this.scale,se.maxY*this.scale],ItalicAngle:this.font.italicAngle,Ascent:this.ascender,Descent:this.descender,CapHeight:(this.font.capHeight||this.font.ascent)*this.scale,XHeight:(this.font.xHeight||0)*this.scale,StemV:0});if(f?ge.data.FontFile3=S:ge.data.FontFile2=S,this.document.subset&&1===this.document.subset){const me=M.from("FFFFFFFFC0","hex"),Ke=this.document.ref();Ke.write(me),Ke.end(),ge.data.CIDSet=Ke}ge.end();const Ne={Type:"Font",Subtype:"CIDFontType0",BaseFont:OA,CIDSystemInfo:{Registry:new String("Adobe"),Ordering:new String("Identity"),Supplement:0},FontDescriptor:ge,W:[0,this.widths]};f||(Ne.Subtype="CIDFontType2",Ne.CIDToGIDMap="Identity");const Re=this.document.ref(Ne);return Re.end(),this.dictionary.data={Type:"Font",Subtype:"Type0",BaseFont:OA,Encoding:"Identity-H",DescendantFonts:[Re],ToUnicode:this.toUnicodeCmap()},this.dictionary.end()}toUnicodeCmap(){const f=this.document.ref(),S=[];for(let OA of this.unicode){const se=[];for(let ge of OA)ge>65535&&(ge-=65536,se.push(Fe(ge>>>10&1023|55296)),ge=56320|1023&ge),se.push(Fe(ge));S.push(`<${se.join(" ")}>`)}const tA=Math.ceil(S.length/256),MA=[];for(let OA=0;OA <${Fe(ge-1)}> [${S.slice(se,ge).join(" ")}]`)}return f.end(`/CIDInit /ProcSet findresource begin\n12 dict begin\nbegincmap\n/CIDSystemInfo <<\n /Registry (Adobe)\n /Ordering (UCS)\n /Supplement 0\n>> def\n/CMapName /Adobe-Identity-UCS def\n/CMapType 2 def\n1 begincodespacerange\n<0000>\nendcodespacerange\n1 beginbfrange\n${MA.join("\n")}\nendbfrange\nendcmap\nCMapName currentdict /CMap defineresource pop\nend\nend`),f}}class et{static open(f,S,I,tA){let MA;if("string"==typeof S){if(qA.isStandardFont(S))return new qA(f,S,tA);S=y.readFileSync(S)}if(S instanceof Uint8Array?MA=c.create(S,I):S instanceof ArrayBuffer&&(MA=c.create(new Uint8Array(S),I)),null==MA)throw new Error("Not a supported font format or standard PDF font.");return new Le(f,MA,tA)}}var ze={initFonts(){let C=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"Helvetica",f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,S=arguments.length>2&&void 0!==arguments[2]?arguments[2]:12;this._fontFamilies={},this._fontCount=0,this._fontSource=C,this._fontFamily=f,this._fontSize=S,this._font=null,this._remSize=S,this._registeredFonts={},C&&this.font(C,f)},font(C,f,S){let I,tA;if("number"==typeof f&&(S=f,f=null),"string"==typeof C&&this._registeredFonts[C]?(I=C,({src:C,family:f}=this._registeredFonts[C])):(I=f||C,"string"!=typeof I&&(I=null)),this._fontSource=C,this._fontFamily=f,null!=S&&this.fontSize(S),tA=this._fontFamilies[I])return this._font=tA,this;const MA="F"+ ++this._fontCount;return this._font=et.open(this,C,f,MA),(tA=this._fontFamilies[this._font.name])&&((C,f)=>!(C.font._tables?.head?.checkSumAdjustment!==f.font._tables?.head?.checkSumAdjustment||JSON.stringify(C.font._tables?.name?.records)!==JSON.stringify(f.font._tables?.name?.records)))(this._font,tA)?(this._font=tA,this):(I&&(this._fontFamilies[I]=this._font),this._font.name&&(this._fontFamilies[this._font.name]=this._font),this)},fontSize(C){return this._fontSize=this.sizeToPoint(C),this},currentLineHeight(C){return this._font.lineHeight(this._fontSize,C)},registerFont(C,f,S){return this._registeredFonts[C]={src:f,family:S},this},sizeToPoint(C){let f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,S=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.page,I=arguments.length>3&&void 0!==arguments[3]?arguments[3]:void 0;if(I||(I=this._fontSize),"number"!=typeof f&&(f=this.sizeToPoint(f)),void 0===C)return f;if("number"==typeof C)return C;if("boolean"==typeof C)return Number(C);const tA=String(C).match(/((\d+)?(\.\d+)?)(em|in|px|cm|mm|pc|ex|ch|rem|vw|vh|vmin|vmax|%|pt)?/);if(!tA)throw new Error(`Unsupported size '${C}'`);let MA;switch(tA[4]){case"em":MA=this._fontSize;break;case"in":MA=72;break;case"px":MA=.75;break;case"cm":MA=72*QA;break;case"mm":MA=.1*QA*72;break;case"pc":MA=12;break;case"ex":MA=this.currentLineHeight();break;case"ch":MA=this.widthOfString("0");break;case"rem":MA=this._remSize;break;case"vw":MA=S.width/100;break;case"vh":MA=S.height/100;break;case"vmin":MA=Math.min(S.width,S.height)/100;break;case"vmax":MA=Math.max(S.width,S.height)/100;break;case"%":MA=I/100;break;default:MA=1}return MA*Number(tA[1])}};class it extends x.EventEmitter{constructor(f,S){super(),this.document=f,this.horizontalScaling=S.horizontalScaling||100,this.indent=(S.indent||0)*this.horizontalScaling/100,this.characterSpacing=(S.characterSpacing||0)*this.horizontalScaling/100,this.wordSpacing=(0===S.wordSpacing)*this.horizontalScaling/100,this.columns=S.columns||1,this.columnGap=(null!=S.columnGap?S.columnGap:18)*this.horizontalScaling/100,this.lineWidth=(S.width*this.horizontalScaling/100-this.columnGap*(this.columns-1))/this.columns,this.spaceLeft=this.lineWidth,this.startX=this.document.x,this.startY=this.document.y,this.column=1,this.ellipsis=S.ellipsis,this.continuedX=0,this.features=S.features,null!=S.height?(this.height=S.height,this.maxY=eA(this.startY+S.height)):this.maxY=eA(this.document.page.maxY()),this.on("firstLine",I=>{const tA=this.continuedX||this.indent;this.document.x+=tA,this.lineWidth-=tA,!I.indentAllLines&&this.once("line",()=>{this.document.x-=tA,this.lineWidth+=tA,I.continued&&!this.continuedX&&(this.continuedX=this.indent),I.continued||(this.continuedX=0)})}),this.on("lastLine",I=>{const{align:tA}=I;"justify"===tA&&(I.align="left"),this.lastLine=!0,this.once("line",()=>(this.document.y+=I.paragraphGap||0,I.align=tA,this.lastLine=!1))})}wordWidth(f){return eA(this.document.widthOfString(f,this)+this.characterSpacing+this.wordSpacing)}canFit(f,S){return"\xad"!=f[f.length-1]?S<=this.spaceLeft:S+this.wordWidth("-")<=this.spaceLeft}eachWord(f,S){let I;const tA=new U.default(f);let MA=null;const OA=Object.create(null);for(;I=tA.nextBreak();){var se;let Re=f.slice(MA?.position||0,I.position),me=null!=OA[Re]?OA[Re]:OA[Re]=this.wordWidth(Re);if(me>this.lineWidth+this.continuedX){let Ke=MA;const Et={};for(;Re.length;){var ge,Ne;me>this.spaceLeft?(ge=Math.ceil(this.spaceLeft/(me/Re.length)),me=this.wordWidth(Re.slice(0,ge)),Ne=me<=this.spaceLeft&&gethis.spaceLeft&&ge>0;for(;Dt||Ne;)Dt?(me=this.wordWidth(Re.slice(0,--ge)),Dt=me>this.spaceLeft&&ge>0):(me=this.wordWidth(Re.slice(0,++ge)),Dt=me>this.spaceLeft&&ge>0,Ne=me<=this.spaceLeft&&gethis.maxY||I>this.maxY)&&this.nextSection();let tA="",MA=0,OA=0,se=0,{y:ge}=this.document;const Ne=()=>(S.textWidth=MA+this.wordSpacing*(OA-1),S.wordCount=OA,S.lineWidth=this.lineWidth,({y:ge}=this.document),this.emit("line",tA,S,this),se++);this.emit("sectionStart",S,this),this.eachWord(f,(Re,me,Ke,Et)=>{if((null==Et||Et.required)&&(this.emit("firstLine",S,this),this.spaceLeft=this.lineWidth),this.canFit(Re,me)&&(tA+=Re,MA+=me,OA++),Ke.required||!this.canFit(Re,me)){const Dt=this.document.currentLineHeight(!0);if(null!=this.height&&this.ellipsis&&eA(this.document.y+2*Dt)>this.maxY&&this.column>=this.columns){for(!0===this.ellipsis&&(this.ellipsis="\u2026"),tA=tA.replace(/\s+$/,""),MA=this.wordWidth(tA+this.ellipsis);tA&&MA>this.lineWidth;)tA=tA.slice(0,-1).replace(/\s+$/,""),MA=this.wordWidth(tA+this.ellipsis);MA<=this.lineWidth&&(tA+=this.ellipsis),MA=this.wordWidth(tA)}if(Ke.required&&(me>this.spaceLeft&&(Ne(),tA=Re,MA=me,OA=1),this.emit("lastLine",S,this)),"\xad"==tA[tA.length-1]&&(tA=tA.slice(0,-1)+"-",this.spaceLeft-=this.wordWidth("-")),Ne(),eA(this.document.y+Dt)>this.maxY){if(this.emit("sectionEnd",S,this),!this.nextSection())return OA=0,tA="",!1;this.emit("sectionStart",S,this)}return Ke.required?(this.spaceLeft=this.lineWidth,tA="",MA=0,OA=0):(this.spaceLeft=this.lineWidth-me,tA=Re,MA=me,OA=1)}return this.spaceLeft-=me}),OA>0&&(this.emit("lastLine",S,this),Ne()),this.emit("sectionEnd",S,this),!0===S.continued?(se>1&&(this.continuedX=0),this.continuedX+=S.textWidth||0,this.document.y=ge):this.document.x=this.startX}nextSection(f){if(++this.column>this.columns){if(null!=this.height)return!1;this.document.continueOnNewPage(),this.column=1,this.startY=this.document.page.margins.top,this.maxY=this.document.page.maxY(),this.document.x=this.startX,this.document._fillColor&&this.document.fillColor(...this.document._fillColor),this.emit("pageBreak",f,this)}else this.document.x+=this.lineWidth+this.columnGap,this.document.y=this.startY,this.emit("columnBreak",f,this);return!0}}const{number:gt}=Z;var Mt={initText(){this._line=this._line.bind(this),this.x=0,this.y=0,this._lineGap=0},lineGap(C){return this._lineGap=C,this},moveDown(C){return null==C&&(C=1),this.y+=this.currentLineHeight(!0)*C+this._lineGap,this},moveUp(C){return null==C&&(C=1),this.y-=this.currentLineHeight(!0)*C+this._lineGap,this},_text(C,f,S,I,tA){C=null==C?"":`${C}`,(I=this._initOptions(f,S,I)).wordSpacing&&(C=C.replace(/\s{2,}/g," "));const MA=()=>{I.structParent&&I.structParent.add(this.struct(I.structType||"P",[this.markStructureContent(I.structType||"P")]))};if(0!==I.rotation&&(this.save(),this.rotate(-I.rotation,{origin:[this.x,this.y]})),I.width){let OA=this._wrapper;OA||(OA=new it(this,I),OA.on("line",tA),OA.on("firstLine",MA)),this._wrapper=I.continued?OA:null,this._textOptions=I.continued?I:null,OA.wrap(C,I)}else for(let OA of C.split("\n"))MA(),tA(OA,I);return 0!==I.rotation&&this.restore(),this},text(C,f,S,I){return this._text(C,f,S,I,this._line)},widthOfString(C){let f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const S=f.horizontalScaling||100;return(this._font.widthOfString(C,this._fontSize,f.features)+(f.characterSpacing||0)*(C.length-1))*S/100},boundsOfString(C,f,S,I){I=this._initOptions(f,S,I),({x:f,y:S}=this);const tA=I.lineGap??this._lineGap??0,MA=this.currentLineHeight(!0)+tA;let OA=0;if(C=String(C??""),I.wordSpacing&&(C=C.replace(/\s{2,}/g," ")),I.width){let jt=new it(this,I);jt.on("line",(ht,Zt)=>{if(this.y+=MA,(ht=ht.replace(/\n/g,"")).length){let YA=Zt.wordSpacing??0;const s=Zt.characterSpacing??0;if(Zt.width&&"justify"===Zt.align){const p=ht.trim().split(/\s+/),z=this.widthOfString(ht.replace(/\s+/g,""),Zt),AA=this.widthOfString(" ")+s;YA=Math.max(0,(Zt.lineWidth-z)/Math.max(1,p.length-1)-AA)}OA=Math.max(OA,Zt.textWidth+YA*(Zt.wordCount-1)+s*(ht.length-1))}}),jt.wrap(C,I)}else for(let jt of C.split("\n")){const ht=this.widthOfString(jt,I);this.y+=MA,OA=Math.max(OA,ht)}let se=this.y-S;if(I.height&&(se=Math.min(se,I.height)),this.x=f,this.y=S,0===I.rotation)return{x:f,y:S,width:OA,height:se};if(90===I.rotation)return{x:f,y:S-OA,width:se,height:OA};if(180===I.rotation)return{x:f-OA,y:S-se,width:OA,height:se};if(270===I.rotation)return{x:f-se,y:S,width:se,height:OA};const ge=KA(I.rotation),Ne=ae(I.rotation),Re=f,me=S,Ke=f+OA*ge,Et=S-OA*Ne,Dt=f+OA*ge+se*Ne,xt=S-OA*Ne+se*ge,It=f+se*Ne,dt=S+se*ge,ft=Math.min(Re,Ke,Dt,It),yt=Math.max(Re,Ke,Dt,It),an=Math.min(me,Et,xt,dt);return{x:ft,y:an,width:yt-ft,height:Math.max(me,Et,xt,dt)-an}},heightOfString(C,f){const{x:S,y:I}=this;(f=this._initOptions(f)).height=1/0;const tA=f.lineGap||this._lineGap||0;this._text(C,this.x,this.y,f,()=>{this.y+=this.currentLineHeight(!0)+tA});const MA=this.y-I;return this.x=S,this.y=I,MA},list(C,f,S,I){const tA=(I=this._initOptions(f,S,I)).listType||"bullet",MA=Math.round(this._font.ascender/1e3*this._fontSize),OA=MA/2,se=I.bulletRadius||MA/3,ge=I.textIndent||("bullet"===tA?5*se:2*MA),Ne=I.bulletIndent||("bullet"===tA?8*se:2*MA);let Re=1;const me=[],Ke=[],Et=[];var Dt=function(It){let dt=1;for(let ft=0;ft{let yt,an,wn,jt,ht;if(I.structParent&&([an,wn,jt]=I.structTypes?I.structTypes:["LI","Lbl","LBody"]),an?(yt=this.struct(an),I.structParent.add(yt)):I.structParent&&(yt=I.structParent),(ht=Ke[dt++])!==Re){const YA=Ne*(ht-Re);this.x+=YA,ft.lineWidth-=YA,Re=ht}switch(yt&&(wn||jt)&&yt.add(this.struct(wn||jt,[this.markStructureContent(wn||jt)])),tA){case"bullet":this.circle(this.x-ge+se,this.y+OA,se),this.fill();break;case"numbered":case"lettered":var Zt=function Ft(C,f){if("numbered"===f)return`${C}.`;var S=String.fromCharCode((C-1)%26+65),I=Math.floor((C-1)/26+1);return`${Array(I+1).join(S)}.`}(Et[dt-1],tA);this._fragment(Zt,this.x-ge,this.y,I)}yt&&wn&&jt&&yt.add(this.struct(jt,[this.markStructureContent(jt)])),yt&&yt!==I.structParent&&yt.end()}),ft.on("sectionStart",()=>{const yt=ge+Ne*(Re-1);this.x+=yt,ft.lineWidth-=yt}),ft.on("sectionEnd",()=>{const yt=ge+Ne*(Re-1);this.x-=yt,ft.lineWidth+=yt}),ft.wrap(It,I)};for(let It=0;It0&&void 0!==arguments[0]?arguments[0]:{},f=arguments.length>1?arguments[1]:void 0,S=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};"object"==typeof C&&(S=C,C=null);const I=Object.assign({},S);if(this._textOptions)for(let tA in this._textOptions)"continued"!==tA&&void 0===I[tA]&&(I[tA]=this._textOptions[tA]);return null!=C&&(this.x=C),null!=f&&(this.y=f),!1!==I.lineBreak&&(null==I.width&&(I.width=this.page.width-this.x-this.page.margins.right),I.width=Math.max(I.width,0)),I.columns||(I.columns=0),null==I.columnGap&&(I.columnGap=18),I.rotation=Number(S.rotation??0)%360,I.rotation<0&&(I.rotation+=360),I},_line(C){let f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},S=arguments.length>2?arguments[2]:void 0;if(this._fragment(C,this.x,this.y,f),S){const I=f.lineGap||this._lineGap||0;this.y+=this.currentLineHeight(!0)+I}else this.x+=this.widthOfString(C,f)},_fragment(C,f,S,I){let tA,MA,OA,se,ge,Ne;if(0===(C=`${C}`.replace(/\n/g,"")).length)return;let me=I.wordSpacing||0;const Ke=I.characterSpacing||0,Et=I.horizontalScaling||100;if(I.width)switch(I.align||"left"){case"right":ge=this.widthOfString(C.replace(/\s+$/,""),I),f+=I.lineWidth-ge;break;case"center":f+=I.lineWidth/2-I.textWidth/2;break;case"justify":Ne=C.trim().split(/\s+/),ge=this.widthOfString(C.replace(/\s+/g,""),I);var Dt=this.widthOfString(" ")+Ke;me=Math.max(0,(I.lineWidth-ge)/Math.max(1,Ne.length-1)-Dt)}if("number"==typeof I.baseline)tA=-I.baseline;else{switch(I.baseline){case"svg-middle":tA=.5*this._font.xHeight;break;case"middle":case"svg-central":tA=.5*(this._font.descender+this._font.ascender);break;case"bottom":case"ideographic":tA=this._font.descender;break;case"alphabetic":tA=0;break;case"mathematical":tA=.5*this._font.ascender;break;case"hanging":tA=.8*this._font.ascender;break;default:tA=this._font.ascender}tA=tA/1e3*this._fontSize}const xt=I.textWidth+me*(I.wordCount-1)+Ke*(C.length-1);if(null!=I.link&&this.link(f,S,xt,this.currentLineHeight(),I.link),null!=I.goTo&&this.goTo(f,S,xt,this.currentLineHeight(),I.goTo),null!=I.destination&&this.addNamedDestination(I.destination,"XYZ",f,S,null),I.underline){this.save(),I.stroke||this.strokeColor(...this._fillColor||[]);const ht=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(ht);let Zt=S+this.currentLineHeight()-ht;this.moveTo(f,Zt),this.lineTo(f+xt,Zt),this.stroke(),this.restore()}if(I.strike){this.save(),I.stroke||this.strokeColor(...this._fillColor||[]);const ht=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(ht);let Zt=S+this.currentLineHeight()/2;this.moveTo(f,Zt),this.lineTo(f+xt,Zt),this.stroke(),this.restore()}if(this.save(),I.oblique){let ht;ht="number"==typeof I.oblique?-Math.tan(I.oblique*Math.PI/180):-.25,this.transform(1,0,0,1,f,S),this.transform(1,0,ht,1,-ht*tA,0),this.transform(1,0,0,1,-f,-S)}this.transform(1,0,0,-1,0,this.page.height),S=this.page.height-S-tA,null==this.page.fonts[this._font.id]&&(this.page.fonts[this._font.id]=this._font.ref()),this.addContent("BT"),this.addContent(`1 0 0 1 ${gt(f)} ${gt(S)} Tm`),this.addContent(`/${this._font.id} ${gt(this._fontSize)} Tf`);const It=I.fill&&I.stroke?2:I.stroke?1:0;if(It&&this.addContent(`${It} Tr`),Ke&&this.addContent(`${gt(Ke)} Tc`),100!==Et&&this.addContent(`${Et} Tz`),me){Ne=C.trim().split(/\s+/),me+=this.widthOfString(" ")+Ke,me*=1e3/this._fontSize,MA=[],se=[];for(let ht of Ne){const[Zt,YA]=this._font.encode(ht,I.features);MA=MA.concat(Zt),se=se.concat(YA);const s={},p=se[se.length-1];for(let z in p)s[z]=p[z];s.xAdvance+=me,se[se.length-1]=s}}else[MA,se]=this._font.encode(C,I.features);const dt=this._fontSize/1e3,ft=[];let yt=0,an=!1;const wn=ht=>{if(yt ${gt(-(se[ht-1].xAdvance-se[ht-1].advanceWidth))}`)}yt=ht},jt=ht=>{wn(ht),ft.length>0&&(this.addContent(`[${ft.join(" ")}] TJ`),ft.length=0)};for(OA=0;OA{let S,I;const tA=this.image.colors,MA=this.width*this.height,OA=M.alloc(MA*tA),se=M.alloc(MA);let ge=I=S=0;const Ne=f.length,Re=16===this.image.bits?1:0;for(;ge{const I=M.alloc(this.width*this.height);let tA=0;for(let MA=0,OA=S.length;MA{this.imgData=V.default.deflateSync(f),this.finalize()})}}class rn{static open(f,S){let I;if(M.isBuffer(f))I=f;else if(f instanceof ArrayBuffer)I=M.from(new Uint8Array(f));else{const tA=/^data:.+?;base64,(.*)$/.exec(f);if(tA)I=M.from(tA[1],"base64");else if(I=y.readFileSync(f),!I)return}if(255===I[0]&&216===I[1])return new pt(I,S);if(137===I[0]&&"PNG"===I.toString("ascii",1,4))return new Mn(I,S);throw new Error("Unknown image format.")}}var nn={initImages(){this._imageRegistry={},this._imageCount=0},image(C,f,S){let tA,MA,OA,se,ge,Ne,Re,me,Ke,I=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};"object"==typeof f&&(I=f,f=null);const Et=I.ignoreOrientation||!1!==I.ignoreOrientation&&this.options.ignoreOrientation,Dt="number"!=typeof S;f=null!=(Ne=f??I.x)?Ne:this.x,S=null!=(Re=S??I.y)?Re:this.y,"string"==typeof C&&(se=this._imageRegistry[C]),se||(se=C.width&&C.height?C:this.openImage(C)),se.obj||se.embed(this),null==this.page.xobjects[se.label]&&(this.page.xobjects[se.label]=se.obj);let{width:xt,height:It}=se;!Et&&se.orientation>4&&([xt,It]=[It,xt]);let dt=I.width||xt,ft=I.height||It;if(I.width&&!I.height){const Zt=dt/xt;dt=xt*Zt,ft=It*Zt}else if(I.height&&!I.width){const Zt=ft/It;dt=xt*Zt,ft=It*Zt}else I.scale?(dt=xt*I.scale,ft=It*I.scale):I.fit?([OA,tA]=I.fit,MA=OA/tA,ge=xt/It,ge>MA?(dt=OA,ft=OA/ge):(ft=tA,dt=tA*ge)):I.cover&&([OA,tA]=I.cover,MA=OA/tA,ge=xt/It,ge>MA?(ft=tA,dt=tA*ge):(dt=OA,ft=OA/ge));(I.fit||I.cover)&&("center"===I.align?f=f+OA/2-dt/2:"right"===I.align&&(f=f+OA-dt),"center"===I.valign?S=S+tA/2-ft/2:"bottom"===I.valign&&(S=S+tA-ft));let yt=0,an=f,wn=S,jt=ft,ht=dt;if(Et)jt=-ft,wn+=ft;else switch(se.orientation){default:case 1:jt=-ft,wn+=ft;break;case 2:ht=-dt,jt=-ft,an+=dt,wn+=ft;break;case 3:me=f,Ke=S,jt=-ft,an-=dt,yt=180;break;case 4:break;case 5:me=f,Ke=S,ht=ft,jt=dt,wn-=jt,yt=90;break;case 6:me=f,Ke=S,ht=ft,jt=-dt,yt=90;break;case 7:me=f,Ke=S,jt=-dt,ht=-ft,an+=ft,yt=90;break;case 8:me=f,Ke=S,ht=ft,jt=-dt,an-=ft,wn+=dt,yt=-90}return null!=I.link&&this.link(f,S,dt,ft,I.link),null!=I.goTo&&this.goTo(f,S,dt,ft,I.goTo),null!=I.destination&&this.addNamedDestination(I.destination,"XYZ",f,S,null),Dt&&(this.y+=ft),this.save(),yt&&this.rotate(yt,{origin:[me,Ke]}),this.transform(ht,0,0,jt,an,wn),this.addContent(`/${se.label} Do`),this.restore(),this},openImage(C){let f;return"string"==typeof C&&(f=this._imageRegistry[C]),f||(f=rn.open(C,"I"+ ++this._imageCount),"string"==typeof C&&(this._imageRegistry[C]=f)),f}},Vt={annotate(C,f,S,I,tA){tA.Type="Annot",tA.Rect=this._convertRect(C,f,S,I),tA.Border=[0,0,0],"Link"===tA.Subtype&&typeof tA.F>"u"&&(tA.F=4),"Link"!==tA.Subtype&&null==tA.C&&(tA.C=this._normalizeColor(tA.color||[0,0,0])),delete tA.color,"string"==typeof tA.Dest&&(tA.Dest=new String(tA.Dest));for(let OA in tA){const se=tA[OA];tA[OA[0].toUpperCase()+OA.slice(1)]=se}const MA=this.ref(tA);return this.page.annotations.push(MA),MA.end(),this},note(C,f,S,I,tA){let MA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return MA.Subtype="Text",MA.Contents=new String(tA),null==MA.Name&&(MA.Name="Comment"),null==MA.color&&(MA.color=[243,223,92]),this.annotate(C,f,S,I,MA)},goTo(C,f,S,I,tA){let MA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return MA.Subtype="Link",MA.A=this.ref({S:"GoTo",D:new String(tA)}),MA.A.end(),this.annotate(C,f,S,I,MA)},link(C,f,S,I,tA){let MA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};if(MA.Subtype="Link","number"==typeof tA){const OA=this._root.data.Pages.data;if(!(tA>=0&&tA4&&void 0!==arguments[4]?arguments[4]:{};const[MA,OA,se,ge]=this._convertRect(C,f,S,I);return tA.QuadPoints=[MA,ge,se,ge,MA,OA,se,OA],tA.Contents=new String,this.annotate(C,f,S,I,tA)},highlight(C,f,S,I){let tA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return tA.Subtype="Highlight",null==tA.color&&(tA.color=[241,238,148]),this._markup(C,f,S,I,tA)},underline(C,f,S,I){let tA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return tA.Subtype="Underline",this._markup(C,f,S,I,tA)},strike(C,f,S,I){let tA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return tA.Subtype="StrikeOut",this._markup(C,f,S,I,tA)},lineAnnotation(C,f,S,I){let tA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return tA.Subtype="Line",tA.Contents=new String,tA.L=[C,this.page.height-f,S,this.page.height-I],this.annotate(C,f,S,I,tA)},rectAnnotation(C,f,S,I){let tA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return tA.Subtype="Square",tA.Contents=new String,this.annotate(C,f,S,I,tA)},ellipseAnnotation(C,f,S,I){let tA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return tA.Subtype="Circle",tA.Contents=new String,this.annotate(C,f,S,I,tA)},textAnnotation(C,f,S,I,tA){let MA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return MA.Subtype="FreeText",MA.Contents=new String(tA),MA.DA=new String,this.annotate(C,f,S,I,MA)},fileAnnotation(C,f,S,I){let tA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},MA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};const OA=this.file(tA.src,Object.assign({hidden:!0},tA));return MA.Subtype="FileAttachment",MA.FS=OA,MA.Contents?MA.Contents=new String(MA.Contents):OA.data.Desc&&(MA.Contents=OA.data.Desc),this.annotate(C,f,S,I,MA)},_convertRect(C,f,S,I){let tA=f;f+=I;let MA=C+S;const[OA,se,ge,Ne,Re,me]=this._ctm;return MA=OA*MA+ge*tA+Re,tA=se*MA+Ne*tA+me,[C=OA*C+ge*f+Re,f=se*C+Ne*f+me,MA,tA]}};class vn{constructor(f,S,I,tA){let MA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{expanded:!1};this.document=f,this.options=MA,this.outlineData={},null!==tA&&(this.outlineData.Dest=[tA.dictionary,"Fit"]),null!==S&&(this.outlineData.Parent=S),null!==I&&(this.outlineData.Title=new String(I)),this.dictionary=this.document.ref(this.outlineData),this.children=[]}addItem(f){const I=new vn(this.document,this.dictionary,f,this.document.page,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{expanded:!1});return this.children.push(I),I}endOutline(){if(this.children.length>0){this.options.expanded&&(this.outlineData.Count=this.children.length);const S=this.children[this.children.length-1];this.outlineData.First=this.children[0].dictionary,this.outlineData.Last=S.dictionary;for(let I=0,tA=this.children.length;I0&&(MA.outlineData.Prev=this.children[I-1].dictionary),I0)return this._root.data.Outlines=this.outline.dictionary,this._root.data.PageMode="UseOutlines"}};class bn{constructor(f,S){this.refs=[{pageRef:f,mcid:S}]}push(f){f.refs.forEach(S=>this.refs.push(S))}}class cn{constructor(f,S){let I=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},tA=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;this.document=f,this._attached=!1,this._ended=!1,this._flushed=!1,this.dictionary=f.ref({S});const MA=this.dictionary.data;(Array.isArray(I)||this._isValidChild(I))&&(tA=I,I={}),typeof I.title<"u"&&(MA.T=new String(I.title)),typeof I.lang<"u"&&(MA.Lang=new String(I.lang)),typeof I.alt<"u"&&(MA.Alt=new String(I.alt)),typeof I.expanded<"u"&&(MA.E=new String(I.expanded)),typeof I.actual<"u"&&(MA.ActualText=new String(I.actual)),this._children=[],tA&&(Array.isArray(tA)||(tA=[tA]),tA.forEach(OA=>this.add(OA)),this.end())}add(f){if(this._ended)throw new Error("Cannot add child to already-ended structure element");if(!this._isValidChild(f))throw new Error("Invalid structure element child");return f instanceof cn&&(f.setParent(this.dictionary),this._attached&&f.setAttached()),f instanceof bn&&this._addContentToParentTree(f),"function"==typeof f&&this._attached&&(f=this._contentForClosure(f)),this._children.push(f),this}_addContentToParentTree(f){f.refs.forEach(S=>{let{pageRef:I,mcid:tA}=S;this.document.getStructParentTree().get(I.data.StructParents)[tA]=this.dictionary})}setParent(f){if(this.dictionary.data.P)throw new Error("Structure element added to more than one parent");this.dictionary.data.P=f,this._flush()}setAttached(){this._attached||(this._children.forEach((f,S)=>{f instanceof cn&&f.setAttached(),"function"==typeof f&&(this._children[S]=this._contentForClosure(f))}),this._attached=!0,this._flush())}end(){this._ended||(this._children.filter(f=>f instanceof cn).forEach(f=>f.end()),this._ended=!0,this._flush())}_isValidChild(f){return f instanceof cn||f instanceof bn||"function"==typeof f}_contentForClosure(f){const S=this.document.markStructureContent(this.dictionary.data.S);return f(),this.document.endMarkedContent(),this._addContentToParentTree(S),S}_isFlushable(){return!(!this.dictionary.data.P||!this._ended)&&this._children.every(f=>"function"!=typeof f&&(!(f instanceof cn)||f._isFlushable()))}_flush(){this._flushed||!this._isFlushable()||(this.dictionary.data.K=[],this._children.forEach(f=>this._flushChild(f)),this.dictionary.end(),this._children=[],this.dictionary.data.K=null,this._flushed=!0)}_flushChild(f){f instanceof cn&&this.dictionary.data.K.push(f.dictionary),f instanceof bn&&f.refs.forEach(S=>{let{pageRef:I,mcid:tA}=S;this.dictionary.data.Pg||(this.dictionary.data.Pg=I),this.dictionary.data.K.push(this.dictionary.data.Pg===I?tA:{Type:"MCR",Pg:I,MCID:tA})})}}class Tn extends lA{_compareKeys(f,S){return parseInt(f)-parseInt(S)}_keysName(){return"Nums"}_dataForKey(f){return parseInt(f)}}var Xt={initMarkings(C){this.structChildren=[],C.tagged&&(this.getMarkInfoDictionary().data.Marked=!0,this.getStructTreeRoot())},markContent(C){let f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("Artifact"===C||f&&f.mcid){let I=0;for(this.page.markings.forEach(tA=>{(I||tA.structContent||"Artifact"===tA.tag)&&I++});I--;)this.endMarkedContent()}if(!f)return this.page.markings.push({tag:C}),this.addContent(`/${C} BMC`),this;this.page.markings.push({tag:C,options:f});const S={};return typeof f.mcid<"u"&&(S.MCID=f.mcid),"Artifact"===C&&("string"==typeof f.type&&(S.Type=f.type),Array.isArray(f.bbox)&&(S.BBox=[f.bbox[0],this.page.height-f.bbox[3],f.bbox[2],this.page.height-f.bbox[1]]),Array.isArray(f.attached)&&f.attached.every(I=>"string"==typeof I)&&(S.Attached=f.attached)),"Span"===C&&(f.lang&&(S.Lang=new String(f.lang)),f.alt&&(S.Alt=new String(f.alt)),f.expanded&&(S.E=new String(f.expanded)),f.actual&&(S.ActualText=new String(f.actual))),this.addContent(`/${C} ${Z.convert(S)} BDC`),this},markStructureContent(C){let f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const S=this.getStructParentTree().get(this.page.structParentTreeKey),I=S.length;S.push(null),this.markContent(C,{...f,mcid:I});const tA=new bn(this.page.dictionary,I);return this.page.markings.slice(-1)[0].structContent=tA,tA},endMarkedContent(){return this.page.markings.pop(),this.addContent("EMC"),this},struct(C){return new cn(this,C,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},arguments.length>2&&void 0!==arguments[2]?arguments[2]:null)},addStructure(C){const f=this.getStructTreeRoot();return C.setParent(f),C.setAttached(),this.structChildren.push(C),f.data.K||(f.data.K=[]),f.data.K.push(C.dictionary),this},initPageMarkings(C){C.forEach(f=>{if(f.structContent){const S=f.structContent,I=this.markStructureContent(f.tag,f.options);S.push(I),this.page.markings.slice(-1)[0].structContent=S}else this.markContent(f.tag,f.options)})},endPageMarkings(C){const f=C.markings;return f.forEach(()=>C.write("EMC")),C.markings=[],f},getMarkInfoDictionary(){return this._root.data.MarkInfo||(this._root.data.MarkInfo=this.ref({})),this._root.data.MarkInfo},hasMarkInfoDictionary(){return!!this._root.data.MarkInfo},getStructTreeRoot(){return this._root.data.StructTreeRoot||(this._root.data.StructTreeRoot=this.ref({Type:"StructTreeRoot",ParentTree:new Tn,ParentTreeNextKey:0})),this._root.data.StructTreeRoot},getStructParentTree(){return this.getStructTreeRoot().data.ParentTree},createStructParentTreeNextKey(){this.getMarkInfoDictionary();const C=this.getStructTreeRoot(),f=C.data.ParentTreeNextKey++;return C.data.ParentTree.add(f,[]),f},endMarkings(){const C=this._root.data.StructTreeRoot;C&&(C.end(),this.structChildren.forEach(f=>f.end())),this._root.data.MarkInfo&&this._root.data.MarkInfo.end()}};const zn={readOnly:1,required:2,noExport:4,multiline:4096,password:8192,toggleToOffButton:16384,radioButton:32768,pushButton:65536,combo:131072,edit:262144,sort:524288,multiSelect:2097152,noSpell:4194304},Jn={left:0,center:1,right:2},jn={value:"V",defaultValue:"DV"},Rn={zip:"0",zipPlus4:"1",zip4:"1",phone:"2",ssn:"3"},$n_number={nDec:0,sepComma:!1,negStyle:"MinusBlack",currency:"",currencyPrepend:!0},$n_percent={nDec:0,sepComma:!1};var Ii={initForm(){if(!this._font)throw new Error("Must set a font before calling initForm method");this._acroform={fonts:{},defaultFont:this._font.name},this._acroform.fonts[this._font.id]=this._font.ref();let C={Fields:[],NeedAppearances:!0,DA:new String(`/${this._font.id} 0 Tf 0 g`),DR:{Font:{}}};C.DR.Font[this._font.id]=this._font.ref();const f=this.ref(C);return this._root.data.AcroForm=f,this},endAcroForm(){if(this._root.data.AcroForm){if(!Object.keys(this._acroform.fonts).length&&!this._acroform.defaultFont)throw new Error("No fonts specified for PDF form");let C=this._root.data.AcroForm.data.DR.Font;Object.keys(this._acroform.fonts).forEach(f=>{C[f]=this._acroform.fonts[f]}),this._root.data.AcroForm.data.Fields.forEach(f=>{this._endChild(f)}),this._root.data.AcroForm.end()}return this},_endChild(C){return Array.isArray(C.data.Kids)&&(C.data.Kids.forEach(f=>{this._endChild(f)}),C.end()),this},formField(C){let S=this._fieldDict(C,null,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}),I=this.ref(S);return this._addToParent(I),I},formAnnotation(C,f,S,I,tA,MA){let se=this._fieldDict(C,f,arguments.length>6&&void 0!==arguments[6]?arguments[6]:{});return se.Subtype="Widget",void 0===se.F&&(se.F=4),this.annotate(S,I,tA,MA,se),this._addToParent(this.page.annotations[this.page.annotations.length-1])},formText(C,f,S,I,tA){return this.formAnnotation(C,"text",f,S,I,tA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formPushButton(C,f,S,I,tA){return this.formAnnotation(C,"pushButton",f,S,I,tA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formCombo(C,f,S,I,tA){return this.formAnnotation(C,"combo",f,S,I,tA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formList(C,f,S,I,tA){return this.formAnnotation(C,"list",f,S,I,tA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formRadioButton(C,f,S,I,tA){return this.formAnnotation(C,"radioButton",f,S,I,tA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formCheckbox(C,f,S,I,tA){return this.formAnnotation(C,"checkbox",f,S,I,tA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},_addToParent(C){let f=C.data.Parent;return f?(f.data.Kids||(f.data.Kids=[]),f.data.Kids.push(C)):this._root.data.AcroForm.data.Fields.push(C),this},_fieldDict(C,f){let S=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(!this._acroform)throw new Error("Call document.initForm() method before adding form elements to document");let I=Object.assign({},S);return null!==f&&(I=this._resolveType(f,S)),I=this._resolveFlags(I),I=this._resolveJustify(I),I=this._resolveFont(I),I=this._resolveStrings(I),I=this._resolveColors(I),I=this._resolveFormat(I),I.T=new String(C),I.parent&&(I.Parent=I.parent,delete I.parent),I},_resolveType(C,f){if("text"===C)f.FT="Tx";else if("pushButton"===C)f.FT="Btn",f.pushButton=!0;else if("radioButton"===C)f.FT="Btn",f.radioButton=!0;else if("checkbox"===C)f.FT="Btn";else if("combo"===C)f.FT="Ch",f.combo=!0;else{if("list"!==C)throw new Error(`Invalid form annotation type '${C}'`);f.FT="Ch"}return f},_resolveFormat(C){const f=C.format;if(f&&f.type){let S,I,tA="";if(void 0!==Rn[f.type])S="AFSpecial_Keystroke",I="AFSpecial_Format",tA=Rn[f.type];else{let MA=f.type.charAt(0).toUpperCase()+f.type.slice(1);if(S=`AF${MA}_Keystroke`,I=`AF${MA}_Format`,"date"===f.type)S+="Ex",tA=String(f.param);else if("time"===f.type)tA=String(f.param);else if("number"===f.type){let OA=Object.assign({},$n_number,f);tA=String([String(OA.nDec),OA.sepComma?"0":"1",'"'+OA.negStyle+'"',"null",'"'+OA.currency+'"',String(OA.currencyPrepend)].join(","))}else if("percent"===f.type){let OA=Object.assign({},$n_percent,f);tA=String([String(OA.nDec),OA.sepComma?"0":"1"].join(","))}}C.AA=C.AA?C.AA:{},C.AA.K={S:"JavaScript",JS:new String(`${S}(${tA});`)},C.AA.F={S:"JavaScript",JS:new String(`${I}(${tA});`)}}return delete C.format,C},_resolveColors(C){let f=this._normalizeColor(C.backgroundColor);return f&&(C.MK||(C.MK={}),C.MK.BG=f),f=this._normalizeColor(C.borderColor),f&&(C.MK||(C.MK={}),C.MK.BC=f),delete C.backgroundColor,delete C.borderColor,C},_resolveFlags(C){let f=0;return Object.keys(C).forEach(S=>{zn[S]&&(C[S]&&(f|=zn[S]),delete C[S])}),0!==f&&(C.Ff=C.Ff?C.Ff:0,C.Ff|=f),C},_resolveJustify(C){let f=0;return void 0!==C.align&&("number"==typeof Jn[C.align]&&(f=Jn[C.align]),delete C.align),0!==f&&(C.Q=f),C},_resolveFont(C){if(null==this._acroform.fonts[this._font.id]&&(this._acroform.fonts[this._font.id]=this._font.ref()),this._acroform.defaultFont!==this._font.name){C.DR={Font:{}};const f=C.fontSize||0;C.DR.Font[this._font.id]=this._font.ref(),C.DA=new String(`/${this._font.id} ${f} Tf 0 g`)}return C},_resolveStrings(C){let f=[];function S(I){if(Array.isArray(I))for(let tA=0;tA{void 0!==C[I]&&(C[jn[I]]=C[I],delete C[I])}),["V","DV"].forEach(I=>{"string"==typeof C[I]&&(C[I]=new String(C[I]))}),C.MK&&C.MK.CA&&(C.MK.CA=new String(C.MK.CA)),C.label&&(C.MK=C.MK?C.MK:{},C.MK.CA=new String(C.label),delete C.label),C}},Fi={file(C){let f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};f.name=f.name||C,f.relationship=f.relationship||"Unspecified";const S={Type:"EmbeddedFile",Params:{}};let I;if(!C)throw new Error("No src specified");if(M.isBuffer(C))I=C;else if(C instanceof ArrayBuffer)I=M.from(new Uint8Array(C));else{const Ne=/^data:(.*?);base64,(.*)$/.exec(C);if(Ne)Ne[1]&&(S.Subtype=Ne[1].replace("/","#2F")),I=M.from(Ne[2],"base64");else{if(I=y.readFileSync(C),!I)throw new Error(`Could not read contents of file at filepath ${C}`);const{birthtime:Re,ctime:me}=y.statSync(C);S.Params.CreationDate=Re,S.Params.ModDate=me}}f.creationDate instanceof Date&&(S.Params.CreationDate=f.creationDate),f.modifiedDate instanceof Date&&(S.Params.ModDate=f.modifiedDate),f.type&&(S.Subtype=f.type.replace("/","#2F"));const tA=d.default.MD5(d.default.lib.WordArray.create(new Uint8Array(I)));let MA;S.Params.CheckSum=new String(tA),S.Params.Size=I.byteLength,this._fileRegistry||(this._fileRegistry={});let OA=this._fileRegistry[f.name];OA&&function xi(C,f){return C.Subtype===f.Subtype&&C.Params.CheckSum.toString()===f.Params.CheckSum.toString()&&C.Params.Size===f.Params.Size&&C.Params.CreationDate.getTime()===f.Params.CreationDate.getTime()&&(void 0===C.Params.ModDate&&void 0===f.Params.ModDate||C.Params.ModDate.getTime()===f.Params.ModDate.getTime())}(S,OA)?MA=OA.ref:(MA=this.ref(S),MA.end(I),this._fileRegistry[f.name]={...S,ref:MA});const se={Type:"Filespec",AFRelationship:f.relationship,F:new String(f.name),EF:{F:MA},UF:new String(f.name)};f.description&&(se.Desc=new String(f.description));const ge=this.ref(se);return ge.end(),f.hidden||this.addNamedEmbeddedFile(f.name,ge),this._root.data.AF?this._root.data.AF.push(ge):this._root.data.AF=[ge],ge}},wi={initPDFA(C){"-"===C.charAt(C.length-3)?(this.subset_conformance=C.charAt(C.length-1).toUpperCase(),this.subset=parseInt(C.charAt(C.length-2))):(this.subset_conformance="B",this.subset=parseInt(C.charAt(C.length-1)))},endSubset(){this._addPdfaMetadata(),this._addColorOutputIntent()},_addColorOutputIntent(){const C=M("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","base64"),f=this.ref({Length:C.length,N:3});f.write(C),f.end();const S=this.ref({Type:"OutputIntent",S:"GTS_PDFA1",Info:new String("sRGB IEC61966-2.1"),OutputConditionIdentifier:new String("sRGB IEC61966-2.1"),DestOutputProfile:f});S.end(),this._root.data.OutputIntents=[S]},_getPdfaid(){return`\n \n ${this.subset}\n ${this.subset_conformance}\n \n `},_addPdfaMetadata(){this.appendXML(this._getPdfaid())}},yi={initPDFUA(){this.subset=1},endSubset(){this._addPdfuaMetadata()},_addPdfuaMetadata(){this.appendXML(this._getPdfuaid())},_getPdfuaid(){return`\n \n ${this.subset}\n \n `}},_n={_importSubset(C){Object.assign(this,C)},initSubset(C){switch(C.subset){case"PDF/A-1":case"PDF/A-1a":case"PDF/A-1b":case"PDF/A-2":case"PDF/A-2a":case"PDF/A-2b":case"PDF/A-3":case"PDF/A-3a":case"PDF/A-3b":this._importSubset(wi),this.initPDFA(C.subset);break;case"PDF/UA":this._importSubset(yi),this.initPDFUA()}}};const Ci=["height","minHeight","maxHeight"],hs=["width","minWidth","maxWidth"];function ki(C,f){const S=new Map;return function(){const I=arguments.length<=0?void 0:arguments[0];return S.has(I)||(S.set(I,C(...arguments)),S.size>f&&S.delete(S.keys().next())),S.get(I)}}function Hi(C){return C&&"object"==typeof C&&!Array.isArray(C)}function Zn(C){if(!Hi(C))return C;C=si(C);for(var f=arguments.length,S=new Array(f>1?f-1:0),I=1;I{let[MA]=tA;return Ci.includes(MA)})),I=Object.fromEntries(Object.entries(f).filter(tA=>{let[MA]=tA;return hs.includes(MA)}));return f.padding=UA(f.padding),f.border=UA(f.border),f.borderColor=UA(f.borderColor),f.align=vi(f.align),{defaultStyle:f,defaultRowStyle:S,defaultColStyle:I}}(f.defaultStyle);let OA,se;this._defaultStyle=I,f.columnStyles&&(Array.isArray(f.columnStyles)?OA=ge=>f.columnStyles[ge]:"function"==typeof f.columnStyles?OA=ki(ge=>f.columnStyles(ge),1/0):"object"==typeof f.columnStyles&&(OA=()=>f.columnStyles)),OA||(OA=()=>({})),this._colStyle=Yi.bind(this,tA,OA),f.rowStyles&&(Array.isArray(f.rowStyles)?se=ge=>f.rowStyles[ge]:"function"==typeof f.rowStyles?se=ki(ge=>f.rowStyles(ge),10):"object"==typeof f.rowStyles&&(se=()=>f.rowStyles)),se||(se=()=>({})),this._rowStyle=$i.bind(this,MA,se)}function Qs(C,f,S){const I=this._colStyle(S);let tA=this._rowStyle(f);const MA=Zn({},I.font,tA.font,C.font),OA=Object.values(MA).filter(Ke=>null!=Ke).length>0,se=this.document,ge=se._fontSource,Ne=se._fontSize,Re=se._fontFamily;OA&&(MA.src&&se.font(MA.src,MA.family),MA.size&&se.fontSize(MA.size),tA=this._rowStyle(f)),C.padding=UA(C.padding),C.border=UA(C.border),C.borderColor=UA(C.borderColor);const me=Zn(this._defaultStyle,I,tA,C);return me.rowIndex=f,me.colIndex=S,me.font=MA??{},me.customFont=OA,me.text=function ds(C){return null!=C&&(C=`${C}`),C}(me.text),me.rowSpan=me.rowSpan??1,me.colSpan=me.colSpan??1,me.padding=UA(me.padding,"0.25em",Ke=>se.sizeToPoint(Ke,"0.25em")),me.border=UA(me.border,1,Ke=>se.sizeToPoint(Ke,1)),me.borderColor=UA(me.borderColor,"black",Ke=>Ke??"black"),me.align=vi(me.align),me.align.x=me.align.x??"left",me.align.y=me.align.y??"top",me.textStroke=se.sizeToPoint(me.textStroke,0),me.textStrokeColor=me.textStrokeColor??"black",me.textColor=me.textColor??"black",me.textOptions=me.textOptions??{},me.id=new String(me.id??`${this._id}-${f}-${S}`),me.type="TH"===me.type?.toUpperCase()?"TH":"TD",me.scope&&(me.scope=me.scope.toLowerCase(),"row"===me.scope?me.scope="Row":"both"===me.scope?me.scope="Both":"column"===me.scope&&(me.scope="Column")),"boolean"==typeof this.opts.debug&&(me.debug=this.opts.debug),OA&&se.font(ge,Re,Ne),me}function ji(C,f){this._cellClaim||(this._cellClaim=new Set);let S=0;return C.map(I=>{for((null==I||"object"!=typeof I)&&(I={text:I});this._cellClaim.has(`${f},${S}`);)S++;I=Qs.call(this,I,f,S);for(let tA=0;tAf+S.colSpan,0)),this._rowHeights=[],this._rowYPos=[this._position.y],this._rowBuffer=new Set}function oi(C){let f=[],S=0,I=this._maxWidth;for(let OA=0;OAOA+1,0);S>=I?f.forEach((OA,se)=>{this._columnWidths[se]=OA.minWidth}):tA>0&&f.forEach((OA,se)=>{this._columnWidths[se]=Math.max(I/tA,OA.minWidth),OA.maxWidth>0&&(this._columnWidths[se]=Math.min(this._columnWidths[se],OA.maxWidth)),I-=this._columnWidths[se],tA--});let MA=this._position.x;this._columnXPos=Array.from(this._columnWidths,OA=>{const se=MA;return MA+=OA,se})}function ms(C,f){C.forEach(OA=>this._rowBuffer.add(OA)),f>0&&(this._rowYPos[f]=this._rowYPos[f-1]+this._rowHeights[f-1]);const S=this._rowStyle(f);let I=[];this._rowBuffer.forEach(OA=>{OA.rowIndex+OA.rowSpan-1===f&&(I.push(As.call(this,OA,S.height)),this._rowBuffer.delete(OA))});let tA=S.height;"auto"===tA&&(tA=I.reduce((OA,se)=>{let ge=se.textBounds.height+se.padding.top+se.padding.bottom;for(let Ne=0;Ne0&&(tA=Math.min(tA,S.maxHeight)),this._rowHeights[f]=tA;let MA=!1;return tA>this.document.page.contentHeight?(console.warn(new Error(`Row ${f} requested more than the safe page height, row has been clamped`).stack.slice(7)),this._rowHeights[f]=this.document.page.maxY()-this._rowYPos[f]):this._rowYPos[f]+tA>=this.document.page.maxY()&&(this._rowYPos[f]=this.document.page.margins.top,MA=!0),{newPage:MA,toRender:I.map(OA=>As.call(this,OA,tA))}}function As(C,f){let S=0;for(let me=0;me180&&C<270?(I=f/(2*MA),tA=f/(2*OA)):(tA=f/(2*MA),I=f/(2*OA));if(OA*I+MA*tA>S){const Ne=MA*MA-OA*OA;0===C||180===C?(I=f,tA=S):90===C||270===C?(I=S,tA=f):C<90||C>180&&C<270?(I=(f*MA-S*OA)/Ne,tA=(S*MA-f*OA)/Ne):(tA=(f*MA-S*OA)/Ne,I=(S*MA-f*OA)/Ne)}return{width:Math.abs(I),height:Math.abs(tA)}}(OA,tA,MA),Ne={align:C.align.x,ellipsis:!0,stroke:C.textStroke>0,fill:!0,width:se,height:ge,rotation:OA,...C.textOptions};let Re={x:0,y:0,width:0,height:0};if(C.text){const me=this.document._fontSource,Ke=this.document._fontSize,Et=this.document._fontFamily;C.font?.src&&this.document.font(C.font.src,C.font?.family),C.font?.size&&this.document.fontSize(C.font.size);const Dt=this.document.boundsOfString(C.text,0,0,{...Ne,rotation:0});Ne.width=Dt.width,Ne.height=Dt.height,Re=this.document.boundsOfString(C.text,0,0,Ne),this.document.font(me,Et,Ke)}return{...C,textOptions:Ne,x:this._columnXPos[C.colIndex],y:this._rowYPos[C.rowIndex],textX:this._columnXPos[C.colIndex]+C.padding.left,textY:this._rowYPos[C.rowIndex]+C.padding.top,width:S,height:I,textAllocatedHeight:MA,textAllocatedWidth:tA,textBounds:Re}}function ps(){const C=this.opts.structParent;C&&(this._tableStruct=this.document.struct("Table"),this._tableStruct.dictionary.data.ID=this._id,C instanceof cn?C.add(this._tableStruct):C instanceof bi&&C.addStructure(this._tableStruct),this._headerRowLookup={},this._headerColumnLookup={})}function Ai(){this._tableStruct&&this._tableStruct.end()}function Ji(C,f,S){const I=this.document.struct("TR");I.dictionary.data.ID=new String(`${this._id}-${f}`),this._tableStruct.add(I),C.forEach(tA=>S(tA,I)),I.end()}function Ds(C,f,S){const I=this.document,tA=I.struct(C.type,{title:C.title});tA.dictionary.data.ID=C.id,f.add(tA);const MA=C.padding,OA=C.border,se={O:"Table",Width:C.width,Height:C.height,Padding:[MA.top,MA.bottom,MA.left,MA.right],RowSpan:C.rowSpan>1?C.rowSpan:void 0,ColSpan:C.colSpan>1?C.colSpan:void 0,BorderThickness:[OA.top,OA.bottom,OA.left,OA.right]};if("TH"===C.type){if("Row"===C.scope||"Both"===C.scope){for(let me=0;methis._headerColumnLookup[C.colIndex+Ke]).flat(),...Array.from({length:C.rowSpan},(me,Ke)=>this._headerRowLookup[C.rowIndex+Ke]).flat()].filter(Boolean));ge.size&&(se.Headers=Array.from(ge));const Ne=I._normalizeColor;null!=C.backgroundColor&&(se.BackgroundColor=Ne(C.backgroundColor));const Re=[OA.top,OA.bottom,OA.left,OA.right];if(Re.some(me=>me)){const me=C.borderColor;se.BorderColor=[Re[0]?Ne(me.top):null,Re[1]?Ne(me.bottom):null,Re[2]?Ne(me.left):null,Re[3]?Ne(me.right):null]}Object.keys(se).forEach(me=>void 0===se[me]&&delete se[me]),tA.dictionary.data.A=I.ref(se),tA.add(S),tA.end(),tA.dictionary.data.A.end()}function li(C,f){return this._tableStruct?Ji.call(this,C,f,es.bind(this)):C.forEach(S=>es.call(this,S)),this._rowYPos[f]+this._rowHeights[f]}function es(C,f){const S=()=>{null!=C.backgroundColor&&this.document.save().rect(C.x,C.y,C.width,C.height).fill(C.backgroundColor).restore(),Is.call(this,C.border,C.borderColor,C.x,C.y,C.width,C.height),C.debug&&(this.document.save(),this.document.dash(1,{space:1}).lineWidth(1).strokeOpacity(.3),this.document.rect(C.x,C.y,C.width,C.height).stroke("green"),this.document.restore()),C.text&&ci.call(this,C)};f?Ds.call(this,C,f,S):S()}function ci(C){const f=this.document,S=f._fontSource,I=f._fontSize,tA=f._fontFamily;C.customFont&&(C.font.src&&f.font(C.font.src,C.font.family),C.font.size&&f.fontSize(C.font.size));const MA=C.textX,OA=C.textY,se=C.textAllocatedHeight,ge=C.textAllocatedWidth,Ne=C.textBounds.width,Re=C.textBounds.height,Dt=(ge-Ne)*("right"===C.align.x?1:"center"===C.align.x?.5:0),It=(se-Re)*("bottom"===C.align.y?1:"center"===C.align.y?.5:0),dt=Dt+-C.textBounds.x,ft=It+-C.textBounds.y;C.debug&&(f.save(),f.dash(1,{space:1}).lineWidth(1).strokeOpacity(.3),C.text&&f.moveTo(MA+Dt,OA).lineTo(MA+Dt,OA+se).moveTo(MA+Dt+Ne,OA).lineTo(MA+Dt+Ne,OA+se).stroke("blue").moveTo(MA,OA+It).lineTo(MA+ge,OA+It).moveTo(MA,OA+It+Re).lineTo(MA+ge,OA+It+Re).stroke("green"),f.rect(MA,OA,ge,se).stroke("orange"),f.restore()),f.save().rect(MA,OA,ge,se).clip(),f.fillColor(C.textColor).strokeColor(C.textStrokeColor),C.textStroke>0&&f.lineWidth(C.textStroke),f.text(C.text,MA+dt,OA+ft,C.textOptions),f.restore(),C.font&&f.font(S,tA,I)}function Is(C,f,S,I,tA,MA,OA){C=Object.fromEntries(Object.entries(C).map(ge=>{let[Ne,Re]=ge;return[Ne,OA&&!OA[Ne]?0:Re]}));const se=this.document;[C.right,C.bottom,C.left].every(ge=>ge===C.top)?C.top>0&&se.save().lineWidth(C.top).rect(S,I,tA,MA).stroke(f.top).restore():(C.top>0&&se.save().lineWidth(C.top).moveTo(S,I).lineTo(S+tA,I).stroke(f.top).restore(),C.right>0&&se.save().lineWidth(C.right).moveTo(S+tA,I).lineTo(S+tA,I+MA).stroke(f.right).restore(),C.bottom>0&&se.save().lineWidth(C.bottom).moveTo(S+tA,I+MA).lineTo(S,I+MA).stroke(f.bottom).restore(),C.left>0&&se.save().lineWidth(C.left).moveTo(S,I+MA).lineTo(S,I).stroke(f.left).restore())}class Fs{constructor(f){let S=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(this.document=f,this.opts=Object.freeze(S),Cs.call(this),ps.call(this),this._currRowIndex=0,this._ended=!1,S.data){for(const I of S.data)this.row(I);return this.end()}}row(f){let S=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(this._ended)throw new Error(`Table was marked as ended on row ${this._currRowIndex}`);f=Array.from(f),f=ji.call(this,f,this._currRowIndex),0===this._currRowIndex&&Oi.call(this,f);const{newPage:I,toRender:tA}=ms.call(this,f,this._currRowIndex);I&&this.document.continueOnNewPage();const MA=li.call(this,tA,this._currRowIndex);return this.document.x=this._position.x,this.document.y=MA,S?this.end():(this._currRowIndex++,this)}end(){for(;this._rowBuffer?.size;)this.row([]);return this._ended=!0,Ai.call(this),this.document}}var xs={initTables(){this._tableIndex=0},table(C){return new Fs(this,C)}};class di{constructor(){this._metadata='\n \n \n \n '}_closeTags(){this._metadata=this._metadata.concat('\n \n \n \n ')}append(f){let S=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];this._metadata=this._metadata.concat(f),S&&(this._metadata=this._metadata.concat("\n"))}getXML(){return this._metadata}getLength(){return this._metadata.length}end(){this._closeTags(),this._metadata=this._metadata.trim()}}var ys={initMetadata(){this.metadata=new di},appendXML(C){this.metadata.append(C,!(arguments.length>1&&void 0!==arguments[1])||arguments[1])},_addInfo(){this.appendXML(`\n \n ${this.info.CreationDate.toISOString().split(".")[0]+"Z"}\n ${this.info.Creator}\n \n `),(this.info.Title||this.info.Author||this.info.Subject)&&(this.appendXML('\n \n '),this.info.Title&&this.appendXML(`\n \n \n ${this.info.Title}\n \n \n `),this.info.Author&&this.appendXML(`\n \n \n ${this.info.Author}\n \n \n `),this.info.Subject&&this.appendXML(`\n \n \n ${this.info.Subject}\n \n \n `),this.appendXML("\n \n ")),this.appendXML(`\n \n ${this.info.Creator}`,!1),this.info.Keywords&&this.appendXML(`\n ${this.info.Keywords}`,!1),this.appendXML("\n \n ")},endMetadata(){this._addInfo(),this.metadata.end(),1.3!=this.version&&(this.metadataRef=this.ref({length:this.metadata.getLength(),Type:"Metadata",Subtype:"XML"}),this.metadataRef.compress=!1,this.metadataRef.write(M.from(this.metadata.getXML(),"utf-8")),this.metadataRef.end(),this._root.data.Metadata=this.metadataRef)}};class bi extends Y.default.Readable{constructor(){let f=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};switch(super(f),this.options=f,f.pdfVersion){case"1.4":this.version=1.4;break;case"1.5":this.version=1.5;break;case"1.6":this.version=1.6;break;case"1.7":case"1.7ext3":this.version=1.7;break;default:this.version=1.3}this.compress=null==this.options.compress||this.options.compress,this._pageBuffer=[],this._pageBufferStart=0,this._offsets=[],this._waiting=0,this._ended=!1,this._offset=0;const S=this.ref({Type:"Pages",Count:0,Kids:[]}),I=this.ref({Dests:new CA});if(this._root=this.ref({Type:"Catalog",Pages:S,Names:I}),this.options.lang&&(this._root.data.Lang=new String(this.options.lang)),this.page=null,this.initMetadata(),this.initColor(),this.initVector(),this.initFonts(f.font),this.initText(),this.initImages(),this.initOutline(),this.initMarkings(f),this.initTables(),this.initSubset(f),this.info={Producer:"PDFKit",Creator:"PDFKit",CreationDate:new Date},this.options.info)for(let tA in this.options.info)this.info[tA]=this.options.info[tA];this.options.displayTitle&&(this._root.data.ViewerPreferences=this.ref({DisplayDocTitle:!0})),this._id=Pe.generateFileID(this.info),this._security=Pe.create(this,f),this._write(`%PDF-${this.version}`),this._write("%\xff\xff\xff\xff"),!1!==this.options.autoFirstPage&&this.addPage()}addPage(f){null==f&&({options:f}=this),this.options.bufferPages||this.flushPages(),this.page=new kA(this,f),this._pageBuffer.push(this.page);const S=this._root.data.Pages.data;return S.Kids.push(this.page.dictionary),S.Count++,this.x=this.page.margins.left,this.y=this.page.margins.top,this._ctm=[1,0,0,1,0,0],this.transform(1,0,0,-1,0,this.page.height),this.emit("pageAdded"),this}continueOnNewPage(f){const S=this.endPageMarkings(this.page);return this.addPage(f??this.page._options),this.initPageMarkings(S),this}bufferedPageRange(){return{start:this._pageBufferStart,count:this._pageBuffer.length}}switchToPage(f){let S;if(!(S=this._pageBuffer[f-this._pageBufferStart]))throw new Error(`switchToPage(${f}) out of bounds, current buffer covers pages ${this._pageBufferStart} to ${this._pageBufferStart+this._pageBuffer.length-1}`);return this.page=S}flushPages(){const f=this._pageBuffer;this._pageBuffer=[],this._pageBufferStart+=f.length;for(let S of f)this.endPageMarkings(S),S.end()}addNamedDestination(f){for(var S=arguments.length,I=new Array(S>1?S-1:0),tA=1;tA{Object.assign(bi.prototype,C)};Sn(ys),Sn(kt),Sn(_A),Sn(ze),Sn(Mt),Sn(nn),Sn(Vt),Sn(ii),Sn(Xt),Sn(Ii),Sn(Fi),Sn(_n),Sn(xs),bi.LineWrapper=it},1413(q,D,g){"use strict";var t=g(3301),B=g(5985);q.exports=function(M){var Y=t(M,"string");return B(Y)?Y:Y+""}},1561(q,D){function g(V,d){this.bits=V,this.value=d}D.z=g;function B(V,d){for(var c=1<>=1;return(V&c-1)+c}function M(V,d,c,x,U){do{V[d+(x-=c)]=new g(U.bits,U.value)}while(x>0)}function Y(V,d,c){for(var x=1<0;--Z[_])M(V,d+y,K,J,new g(255&_,65535&$[Q++])),y=B(y,_);for(uA=rA-1,lA=-1,_=c+1,K=2;_<=15;++_,K<<=1)for(;Z[_]>0;--Z[_])(y&uA)!==lA&&(d+=J,rA+=J=1<<(G=Y(Z,_,c)),V[E+(lA=y&uA)]=new g(G+c&255,d-E-lA&65535)),M(V,d+(y>>c),K,J,new g(_-c&255,65535&$[Q++])),y=B(y,_);return rA}},1607(q){"use strict";q.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},1613(q,D,g){var t=g(783).Buffer,B=function(){"use strict";function M(Q,y){return null!=y&&Q instanceof y}var Y,V,d;try{Y=Map}catch{Y=function(){}}try{V=Set}catch{V=function(){}}try{d=Promise}catch{d=function(){}}function c(Q,y,K,lA,uA){"object"==typeof y&&(K=y.depth,lA=y.prototype,uA=y.includeNonEnumerable,y=y.circular);var G=[],J=[],rA=typeof t<"u";return typeof y>"u"&&(y=!0),typeof K>"u"&&(K=1/0),function $(Z,b){if(null===Z)return null;if(0===b)return Z;var BA,L;if("object"!=typeof Z)return Z;if(M(Z,Y))BA=new Y;else if(M(Z,V))BA=new V;else if(M(Z,d))BA=new d(function(ae,we){Z.then(function(ie){ae($(ie,b-1))},function(ie){we($(ie,b-1))})});else if(c.__isArray(Z))BA=[];else if(c.__isRegExp(Z))BA=new RegExp(Z.source,_(Z)),Z.lastIndex&&(BA.lastIndex=Z.lastIndex);else if(c.__isDate(Z))BA=new Date(Z.getTime());else{if(rA&&t.isBuffer(Z))return BA=t.allocUnsafe?t.allocUnsafe(Z.length):new t(Z.length),Z.copy(BA),BA;M(Z,Error)?BA=Object.create(Z):typeof lA>"u"?(L=Object.getPrototypeOf(Z),BA=Object.create(L)):(BA=Object.create(lA),L=lA)}if(y){var eA=G.indexOf(Z);if(-1!=eA)return J[eA];G.push(Z),J.push(BA)}for(var UA in M(Z,Y)&&Z.forEach(function(ae,we){var ie=$(we,b-1),kA=$(ae,b-1);BA.set(ie,kA)}),M(Z,V)&&Z.forEach(function(ae){var we=$(ae,b-1);BA.add(we)}),Z){var xA;L&&(xA=Object.getOwnPropertyDescriptor(L,UA)),(!xA||null!=xA.set)&&(BA[UA]=$(Z[UA],b-1))}if(Object.getOwnPropertySymbols){var QA=Object.getOwnPropertySymbols(Z);for(UA=0;UA=0;P--)(EA=CA[P])&&($A=(ne<3?EA($A):ne>3?EA(iA,hA,$A):EA(iA,hA))||$A);return ne>3&&$A&&Object.defineProperty(iA,hA,$A),$A}g.d(D,{__decorate:()=>V}),"function"==typeof SuppressedError&&SuppressedError},1676(q,D,g){"use strict";var t=g(299);q.exports=!t(function(){var B=function(){}.bind();return"function"!=typeof B||B.hasOwnProperty("prototype")})},1689(q,D,g){"use strict";var V,t=g(2774),B=g(6626)(),M=g(5215),Y=g(8109);if(B){var d=t("RegExp.prototype.exec"),c={},x=function(){throw c},U={toString:x,valueOf:x};"symbol"==typeof Symbol.toPrimitive&&(U[Symbol.toPrimitive]=x),V=function(Q){if(!Q||"object"!=typeof Q)return!1;var y=Y(Q,"lastIndex");if(!y||!M(y,"value"))return!1;try{d(Q,U)}catch(lA){return lA===c}}}else{var E=t("Object.prototype.toString");V=function(Q){return!(!Q||"object"!=typeof Q&&"function"!=typeof Q)&&"[object RegExp]"===E(Q)}}q.exports=V},1715(q,D,g){var t=g(5233),B=g(4415),M=g(8395),Y=g(453),V=g(4766),d=g(7571),c=g(4406),x=g(1613),U=g(3483),E=g(4460);function _(oA,a,h,F){Object.defineProperty(oA,a,{get:h,set:F,enumerable:!0,configurable:!0})}function Q(oA){return oA&&oA.__esModule?oA.default:oA}var y={};_(y,"logErrors",()=>K),_(y,"registerFormat",()=>uA),_(y,"create",()=>G),_(y,"defaultLanguage",()=>J),_(y,"setDefaultLanguage",()=>rA);let K=!1,lA=[];function uA(oA){lA.push(oA)}function G(oA,a){for(let h=0;h0?O[0]:"value";if(k.has(IA))return k.get(IA);let LA=F.apply(this,O);return k.set(IA,LA),LA}return Object.defineProperty(this,a,{value:X}),X}}}}let Z=new t.Struct({firstCode:t.uint16,entryCount:t.uint16,idDelta:t.int16,idRangeOffset:t.uint16}),b=new t.Struct({startCharCode:t.uint32,endCharCode:t.uint32,glyphID:t.uint32}),BA=new t.Struct({startUnicodeValue:t.uint24,additionalCount:t.uint8}),L=new t.Struct({unicodeValue:t.uint24,glyphID:t.uint16}),eA=new t.Array(BA,t.uint32),UA=new t.Array(L,t.uint32),xA=new t.Struct({varSelector:t.uint24,defaultUVS:new t.Pointer(t.uint32,eA,{type:"parent"}),nonDefaultUVS:new t.Pointer(t.uint32,UA,{type:"parent"})}),QA=new t.VersionedStruct(t.uint16,{0:{length:t.uint16,language:t.uint16,codeMap:new t.LazyArray(t.uint8,256)},2:{length:t.uint16,language:t.uint16,subHeaderKeys:new t.Array(t.uint16,256),subHeaderCount:oA=>Math.max.apply(Math,oA.subHeaderKeys),subHeaders:new t.LazyArray(Z,"subHeaderCount"),glyphIndexArray:new t.LazyArray(t.uint16,"subHeaderCount")},4:{length:t.uint16,language:t.uint16,segCountX2:t.uint16,segCount:oA=>oA.segCountX2>>1,searchRange:t.uint16,entrySelector:t.uint16,rangeShift:t.uint16,endCode:new t.LazyArray(t.uint16,"segCount"),reservedPad:new t.Reserved(t.uint16),startCode:new t.LazyArray(t.uint16,"segCount"),idDelta:new t.LazyArray(t.int16,"segCount"),idRangeOffset:new t.LazyArray(t.uint16,"segCount"),glyphIndexArray:new t.LazyArray(t.uint16,oA=>(oA.length-oA._currentOffset)/2)},6:{length:t.uint16,language:t.uint16,firstCode:t.uint16,entryCount:t.uint16,glyphIndices:new t.LazyArray(t.uint16,"entryCount")},8:{reserved:new t.Reserved(t.uint16),length:t.uint32,language:t.uint16,is32:new t.LazyArray(t.uint8,8192),nGroups:t.uint32,groups:new t.LazyArray(b,"nGroups")},10:{reserved:new t.Reserved(t.uint16),length:t.uint32,language:t.uint32,firstCode:t.uint32,entryCount:t.uint32,glyphIndices:new t.LazyArray(t.uint16,"numChars")},12:{reserved:new t.Reserved(t.uint16),length:t.uint32,language:t.uint32,nGroups:t.uint32,groups:new t.LazyArray(b,"nGroups")},13:{reserved:new t.Reserved(t.uint16),length:t.uint32,language:t.uint32,nGroups:t.uint32,groups:new t.LazyArray(b,"nGroups")},14:{length:t.uint32,numRecords:t.uint32,varSelectors:new t.LazyArray(xA,"numRecords")}}),gA=new t.Struct({platformID:t.uint16,encodingID:t.uint16,table:new t.Pointer(t.uint32,QA,{type:"parent",lazy:!0})});var JA=new t.Struct({version:t.uint16,numSubtables:t.uint16,tables:new t.Array(gA,"numSubtables")}),Be=new t.Struct({version:t.int32,revision:t.int32,checkSumAdjustment:t.uint32,magicNumber:t.uint32,flags:t.uint16,unitsPerEm:t.uint16,created:new t.Array(t.int32,2),modified:new t.Array(t.int32,2),xMin:t.int16,yMin:t.int16,xMax:t.int16,yMax:t.int16,macStyle:new t.Bitfield(t.uint16,["bold","italic","underline","outline","shadow","condensed","extended"]),lowestRecPPEM:t.uint16,fontDirectionHint:t.int16,indexToLocFormat:t.int16,glyphDataFormat:t.int16}),KA=new t.Struct({version:t.int32,ascent:t.int16,descent:t.int16,lineGap:t.int16,advanceWidthMax:t.uint16,minLeftSideBearing:t.int16,minRightSideBearing:t.int16,xMaxExtent:t.int16,caretSlopeRise:t.int16,caretSlopeRun:t.int16,caretOffset:t.int16,reserved:new t.Reserved(t.int16,4),metricDataFormat:t.int16,numberOfMetrics:t.uint16});let ae=new t.Struct({advance:t.uint16,bearing:t.int16});var we=new t.Struct({metrics:new t.LazyArray(ae,oA=>oA.parent.hhea.numberOfMetrics),bearings:new t.LazyArray(t.int16,oA=>oA.parent.maxp.numGlyphs-oA.parent.hhea.numberOfMetrics)}),ie=new t.Struct({version:t.int32,numGlyphs:t.uint16,maxPoints:t.uint16,maxContours:t.uint16,maxComponentPoints:t.uint16,maxComponentContours:t.uint16,maxZones:t.uint16,maxTwilightPoints:t.uint16,maxStorage:t.uint16,maxFunctionDefs:t.uint16,maxInstructionDefs:t.uint16,maxStackElements:t.uint16,maxSizeOfInstructions:t.uint16,maxComponentElements:t.uint16,maxComponentDepth:t.uint16});function kA(oA,a,h=0){return 1===oA&&$A[h]?$A[h]:ne[oA][a]}const CA=new Set(["x-mac-roman","x-mac-cyrillic","iso-8859-6","iso-8859-8"]),iA={"x-mac-croatian":"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\u0160\u2122\xb4\xa8\u2260\u017d\xd8\u221e\xb1\u2264\u2265\u2206\xb5\u2202\u2211\u220f\u0161\u222b\xaa\xba\u03a9\u017e\xf8\xbf\xa1\xac\u221a\u0192\u2248\u0106\xab\u010c\u2026 \xc0\xc3\xd5\u0152\u0153\u0110\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\uf8ff\xa9\u2044\u20ac\u2039\u203a\xc6\xbb\u2013\xb7\u201a\u201e\u2030\xc2\u0107\xc1\u010d\xc8\xcd\xce\xcf\xcc\xd3\xd4\u0111\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u03c0\xcb\u02da\xb8\xca\xe6\u02c7","x-mac-gaelic":"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\xc6\xd8\u1e02\xb1\u2264\u2265\u1e03\u010a\u010b\u1e0a\u1e0b\u1e1e\u1e1f\u0120\u0121\u1e40\xe6\xf8\u1e41\u1e56\u1e57\u027c\u0192\u017f\u1e60\xab\xbb\u2026 \xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\u1e61\u1e9b\xff\u0178\u1e6a\u20ac\u2039\u203a\u0176\u0177\u1e6b\xb7\u1ef2\u1ef3\u204a\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\u2663\xd2\xda\xdb\xd9\u0131\xdd\xfd\u0174\u0175\u1e84\u1e85\u1e80\u1e81\u1e82\u1e83","x-mac-greek":"\xc4\xb9\xb2\xc9\xb3\xd6\xdc\u0385\xe0\xe2\xe4\u0384\xa8\xe7\xe9\xe8\xea\xeb\xa3\u2122\xee\xef\u2022\xbd\u2030\xf4\xf6\xa6\u20ac\xf9\xfb\xfc\u2020\u0393\u0394\u0398\u039b\u039e\u03a0\xdf\xae\xa9\u03a3\u03aa\xa7\u2260\xb0\xb7\u0391\xb1\u2264\u2265\xa5\u0392\u0395\u0396\u0397\u0399\u039a\u039c\u03a6\u03ab\u03a8\u03a9\u03ac\u039d\xac\u039f\u03a1\u2248\u03a4\xab\xbb\u2026 \u03a5\u03a7\u0386\u0388\u0153\u2013\u2015\u201c\u201d\u2018\u2019\xf7\u0389\u038a\u038c\u038e\u03ad\u03ae\u03af\u03cc\u038f\u03cd\u03b1\u03b2\u03c8\u03b4\u03b5\u03c6\u03b3\u03b7\u03b9\u03be\u03ba\u03bb\u03bc\u03bd\u03bf\u03c0\u03ce\u03c1\u03c3\u03c4\u03b8\u03c9\u03c2\u03c7\u03c5\u03b6\u03ca\u03cb\u0390\u03b0\xad","x-mac-icelandic":"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\xdd\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\xc6\xd8\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u03a9\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026 \xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\u20ac\xd0\xf0\xde\xfe\xfd\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\uf8ff\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7","x-mac-inuit":"\u1403\u1404\u1405\u1406\u140a\u140b\u1431\u1432\u1433\u1434\u1438\u1439\u1449\u144e\u144f\u1450\u1451\u1455\u1456\u1466\u146d\u146e\u146f\u1470\u1472\u1473\u1483\u148b\u148c\u148d\u148e\u1490\u1491\xb0\u14a1\u14a5\u14a6\u2022\xb6\u14a7\xae\xa9\u2122\u14a8\u14aa\u14ab\u14bb\u14c2\u14c3\u14c4\u14c5\u14c7\u14c8\u14d0\u14ef\u14f0\u14f1\u14f2\u14f4\u14f5\u1505\u14d5\u14d6\u14d7\u14d8\u14da\u14db\u14ea\u1528\u1529\u152a\u152b\u152d\u2026 \u152e\u153e\u1555\u1556\u1557\u2013\u2014\u201c\u201d\u2018\u2019\u1558\u1559\u155a\u155d\u1546\u1547\u1548\u1549\u154b\u154c\u1550\u157f\u1580\u1581\u1582\u1583\u1584\u1585\u158f\u1590\u1591\u1592\u1593\u1594\u1595\u1671\u1672\u1673\u1674\u1675\u1676\u1596\u15a0\u15a1\u15a2\u15a3\u15a4\u15a5\u15a6\u157c\u0141\u0142","x-mac-ce":"\xc4\u0100\u0101\xc9\u0104\xd6\xdc\xe1\u0105\u010c\xe4\u010d\u0106\u0107\xe9\u0179\u017a\u010e\xed\u010f\u0112\u0113\u0116\xf3\u0117\xf4\xf6\xf5\xfa\u011a\u011b\xfc\u2020\xb0\u0118\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\u0119\xa8\u2260\u0123\u012e\u012f\u012a\u2264\u2265\u012b\u0136\u2202\u2211\u0142\u013b\u013c\u013d\u013e\u0139\u013a\u0145\u0146\u0143\xac\u221a\u0144\u0147\u2206\xab\xbb\u2026 \u0148\u0150\xd5\u0151\u014c\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\u014d\u0154\u0155\u0158\u2039\u203a\u0159\u0156\u0157\u0160\u201a\u201e\u0161\u015a\u015b\xc1\u0164\u0165\xcd\u017d\u017e\u016a\xd3\xd4\u016b\u016e\xda\u016f\u0170\u0171\u0172\u0173\xdd\xfd\u0137\u017b\u0141\u017c\u0122\u02c7","x-mac-romanian":"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\u0102\u0218\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u03a9\u0103\u0219\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026 \xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\u20ac\u2039\u203a\u021a\u021b\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\uf8ff\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7","x-mac-turkish":"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\xc6\xd8\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u03a9\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026 \xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u011e\u011f\u0130\u0131\u015e\u015f\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\uf8ff\xd2\xda\xdb\xd9\uf8a0\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},hA=new Map;function bA(oA){let a=hA.get(oA);if(a)return a;let h=iA[oA];if(h){let F=new Map;for(let k=0;kkA(oA.platformID,oA.encodingID,oA.languageID)),{type:"parent",relativeTo:oA=>oA.parent.stringOffset,allowNull:!1})}),cA=new t.Struct({length:t.uint16,tag:new t.Pointer(t.uint16,new t.String("length","utf16be"),{type:"parent",relativeTo:oA=>oA.stringOffset})});var w=new t.VersionedStruct(t.uint16,{0:{count:t.uint16,stringOffset:t.uint16,records:new t.Array(P,"count")},1:{count:t.uint16,stringOffset:t.uint16,records:new t.Array(P,"count"),langTagCount:t.uint16,langTags:new t.Array(cA,"langTagCount")}}),H=w;const TA=["copyright","fontFamily","fontSubfamily","uniqueSubfamily","fullName","version","postscriptName","trademark","manufacturer","designer","description","vendorURL","designerURL","license","licenseURL",null,"preferredFamily","preferredSubfamily","compatibleFull","sampleText","postscriptCIDFontName","wwsFamilyName","wwsSubfamilyName"];w.process=function(oA){var a={};for(let h of this.records){let F=EA[h.platformID][h.languageID];null==F&&null!=this.langTags&&h.languageID>=32768&&(F=this.langTags[h.languageID-32768].tag),null==F&&(F=h.platformID+"-"+h.languageID);let k=h.nameID>=256?"fontFeatures":TA[h.nameID]||h.nameID;null==a[k]&&(a[k]={});let X=a[k];h.nameID>=256&&(X=X[h.nameID]||(X[h.nameID]={})),("string"==typeof h.string||"string"!=typeof X[F])&&(X[F]=h.string)}this.records=a},w.preEncode=function(){if(Array.isArray(this.records))return;this.version=0;let oA=[];for(let a in this.records){let h=this.records[a];"fontFeatures"!==a&&(oA.push({platformID:3,encodingID:1,languageID:1033,nameID:TA.indexOf(a),length:2*h.en.length,string:h.en}),"postscriptName"===a&&oA.push({platformID:1,encodingID:0,languageID:0,nameID:TA.indexOf(a),length:h.en.length,string:h.en}))}this.records=oA,this.count=oA.length,this.stringOffset=w.size(this,null,!1)};var wA=new t.VersionedStruct(t.uint16,{header:{xAvgCharWidth:t.int16,usWeightClass:t.uint16,usWidthClass:t.uint16,fsType:new t.Bitfield(t.uint16,[null,"noEmbedding","viewOnly","editable",null,null,null,null,"noSubsetting","bitmapOnly"]),ySubscriptXSize:t.int16,ySubscriptYSize:t.int16,ySubscriptXOffset:t.int16,ySubscriptYOffset:t.int16,ySuperscriptXSize:t.int16,ySuperscriptYSize:t.int16,ySuperscriptXOffset:t.int16,ySuperscriptYOffset:t.int16,yStrikeoutSize:t.int16,yStrikeoutPosition:t.int16,sFamilyClass:t.int16,panose:new t.Array(t.uint8,10),ulCharRange:new t.Array(t.uint32,4),vendorID:new t.String(4),fsSelection:new t.Bitfield(t.uint16,["italic","underscore","negative","outlined","strikeout","bold","regular","useTypoMetrics","wws","oblique"]),usFirstCharIndex:t.uint16,usLastCharIndex:t.uint16},0:{},1:{typoAscender:t.int16,typoDescender:t.int16,typoLineGap:t.int16,winAscent:t.uint16,winDescent:t.uint16,codePageRange:new t.Array(t.uint32,2)},2:{typoAscender:t.int16,typoDescender:t.int16,typoLineGap:t.int16,winAscent:t.uint16,winDescent:t.uint16,codePageRange:new t.Array(t.uint32,2),xHeight:t.int16,capHeight:t.int16,defaultChar:t.uint16,breakChar:t.uint16,maxContent:t.uint16},5:{typoAscender:t.int16,typoDescender:t.int16,typoLineGap:t.int16,winAscent:t.uint16,winDescent:t.uint16,codePageRange:new t.Array(t.uint32,2),xHeight:t.int16,capHeight:t.int16,defaultChar:t.uint16,breakChar:t.uint16,maxContent:t.uint16,usLowerOpticalPointSize:t.uint16,usUpperOpticalPointSize:t.uint16}});let j=wA.versions;j[3]=j[4]=j[2];var RA=wA,PA=new t.VersionedStruct(t.fixed32,{header:{italicAngle:t.fixed32,underlinePosition:t.int16,underlineThickness:t.int16,isFixedPitch:t.uint32,minMemType42:t.uint32,maxMemType42:t.uint32,minMemType1:t.uint32,maxMemType1:t.uint32},1:{},2:{numberOfGlyphs:t.uint16,glyphNameIndex:new t.Array(t.uint16,"numberOfGlyphs"),names:new t.Array(new t.String(t.uint8))},2.5:{numberOfGlyphs:t.uint16,offsets:new t.Array(t.uint8,"numberOfGlyphs")},3:{},4:{map:new t.Array(t.uint32,oA=>oA.parent.maxp.numGlyphs)}}),XA=new t.Struct({controlValues:new t.Array(t.int16)}),vA=new t.Struct({instructions:new t.Array(t.uint8)});let fe=new t.VersionedStruct("head.indexToLocFormat",{0:{offsets:new t.Array(t.uint16)},1:{offsets:new t.Array(t.uint32)}});fe.process=function(){if(0===this.version&&!this._processed){for(let oA=0;oA>>=1;this._processed=!1}};var ye=fe,Ge=new t.Struct({controlValueProgram:new t.Array(t.uint8)}),He=new t.Array(new t.Buffer);class _e{getCFFVersion(a){for(;a&&!a.hdrSize;)a=a.parent;return a?a.version:-1}decode(a,h){let k=this.getCFFVersion(h)>=2?a.readUInt32BE():a.readUInt16BE();if(0===k)return[];let O,X=a.readUInt8();if(1===X)O=t.uint8;else if(2===X)O=t.uint16;else if(3===X)O=t.uint24;else{if(4!==X)throw new Error(`Bad offset size in CFFIndex: ${X} ${a.pos}`);O=t.uint32}let IA=[],LA=a.pos+(k+1)*X-1,ZA=O.decode(a);for(let oe=0;oe>4;if(15===X)break;F+=te[X];let O=15&k;if(15===O)break;F+=te[O]}return parseFloat(F)}return null}static size(a){return a.forceLarge&&(a=32768),(0|a)!==a?1+Math.ceil(((""+a).length+1)/2):-107<=a&&a<=107?1:108<=a&&a<=1131||-1131<=a&&a<=-108?2:-32768<=a&&a<=32767?3:5}static encode(a,h){let F=Number(h);if(h.forceLarge)return a.writeUInt8(29),a.writeInt32BE(F);if((0|F)===F)return-107<=F&&F<=107?a.writeUInt8(F+139):108<=F&&F<=1131?(F-=108,a.writeUInt8(247+(F>>8)),a.writeUInt8(255&F)):-1131<=F&&F<=-108?(F=-F-108,a.writeUInt8(251+(F>>8)),a.writeUInt8(255&F)):-32768<=F&&F<=32767?(a.writeUInt8(28),a.writeInt16BE(F)):(a.writeUInt8(29),a.writeInt32BE(F));{a.writeUInt8(30);let X=""+F;for(let O=0;Othis.decodeOperands(a[O],h,F,[X]));if(null!=a.decode)return a.decode(h,F,k);switch(a){case"number":case"offset":case"sid":return k[0];case"boolean":return!!k[0];default:return k}}encodeOperands(a,h,F,k){return Array.isArray(a)?k.map((X,O)=>this.encodeOperands(a[O],h,F,X)[0]):null!=a.encode?a.encode(h,k,F):"number"==typeof k?[k]:"boolean"==typeof k?[+k]:Array.isArray(k)?k:[k]}decode(a,h){let F=a.pos+h.length,k={},X=[];Object.defineProperties(k,{parent:{value:h},_startOffset:{value:a.pos}});for(let O in this.fields){let IA=this.fields[O];k[IA[1]]=IA[3]}for(;a.posF[0]},super.decode(a,h,F)}encode(a,h,F){if(!a)return this.offsetType={size:()=>0},this.size(h,F),[new m(0)];let k=null;return this.offsetType={encode:(X,O)=>k=O},super.encode(a,h,F),[new m(k)]}constructor(a,h={}){null==h.type&&(h.type="global"),super(null,a,h)}}class m{valueOf(){return this.val}constructor(a){this.val=a,this.forceLarge=!0}}var pA=new v([[6,"BlueValues","delta",null],[7,"OtherBlues","delta",null],[8,"FamilyBlues","delta",null],[9,"FamilyOtherBlues","delta",null],[[12,9],"BlueScale","number",.039625],[[12,10],"BlueShift","number",7],[[12,11],"BlueFuzz","number",1],[10,"StdHW","number",null],[11,"StdVW","number",null],[[12,12],"StemSnapH","delta",null],[[12,13],"StemSnapV","delta",null],[[12,14],"ForceBold","boolean",!1],[[12,17],"LanguageGroup","number",0],[[12,18],"ExpansionFactor","number",.06],[[12,19],"initialRandomSeed","number",0],[20,"defaultWidthX","number",0],[21,"nominalWidthX","number",0],[22,"vsindex","number",0],[23,"blend",class R{static decode(a,h,F){let k=F.pop();for(;F.length>k;)F.pop()}},null],[19,"Subrs",new u(new _e,{type:"local"}),null]]),aA=[".notdef","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","endash","dagger","daggerdbl","periodcentered","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","questiondown","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","ring","cedilla","hungarumlaut","ogonek","caron","emdash","AE","ordfeminine","Lslash","Oslash","OE","ordmasculine","ae","dotlessi","lslash","oslash","oe","germandbls","onesuperior","logicalnot","mu","trademark","Eth","onehalf","plusminus","Thorn","onequarter","divide","brokenbar","degree","thorn","threequarters","twosuperior","registered","minus","eth","multiply","threesuperior","copyright","Aacute","Acircumflex","Adieresis","Agrave","Aring","Atilde","Ccedilla","Eacute","Ecircumflex","Edieresis","Egrave","Iacute","Icircumflex","Idieresis","Igrave","Ntilde","Oacute","Ocircumflex","Odieresis","Ograve","Otilde","Scaron","Uacute","Ucircumflex","Udieresis","Ugrave","Yacute","Ydieresis","Zcaron","aacute","acircumflex","adieresis","agrave","aring","atilde","ccedilla","eacute","ecircumflex","edieresis","egrave","iacute","icircumflex","idieresis","igrave","ntilde","oacute","ocircumflex","odieresis","ograve","otilde","scaron","uacute","ucircumflex","udieresis","ugrave","yacute","ydieresis","zcaron","exclamsmall","Hungarumlautsmall","dollaroldstyle","dollarsuperior","ampersandsmall","Acutesmall","parenleftsuperior","parenrightsuperior","twodotenleader","onedotenleader","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","commasuperior","threequartersemdash","periodsuperior","questionsmall","asuperior","bsuperior","centsuperior","dsuperior","esuperior","isuperior","lsuperior","msuperior","nsuperior","osuperior","rsuperior","ssuperior","tsuperior","ff","ffi","ffl","parenleftinferior","parenrightinferior","Circumflexsmall","hyphensuperior","Gravesmall","Asmall","Bsmall","Csmall","Dsmall","Esmall","Fsmall","Gsmall","Hsmall","Ismall","Jsmall","Ksmall","Lsmall","Msmall","Nsmall","Osmall","Psmall","Qsmall","Rsmall","Ssmall","Tsmall","Usmall","Vsmall","Wsmall","Xsmall","Ysmall","Zsmall","colonmonetary","onefitted","rupiah","Tildesmall","exclamdownsmall","centoldstyle","Lslashsmall","Scaronsmall","Zcaronsmall","Dieresissmall","Brevesmall","Caronsmall","Dotaccentsmall","Macronsmall","figuredash","hypheninferior","Ogoneksmall","Ringsmall","Cedillasmall","questiondownsmall","oneeighth","threeeighths","fiveeighths","seveneighths","onethird","twothirds","zerosuperior","foursuperior","fivesuperior","sixsuperior","sevensuperior","eightsuperior","ninesuperior","zeroinferior","oneinferior","twoinferior","threeinferior","fourinferior","fiveinferior","sixinferior","seveninferior","eightinferior","nineinferior","centinferior","dollarinferior","periodinferior","commainferior","Agravesmall","Aacutesmall","Acircumflexsmall","Atildesmall","Adieresissmall","Aringsmall","AEsmall","Ccedillasmall","Egravesmall","Eacutesmall","Ecircumflexsmall","Edieresissmall","Igravesmall","Iacutesmall","Icircumflexsmall","Idieresissmall","Ethsmall","Ntildesmall","Ogravesmall","Oacutesmall","Ocircumflexsmall","Otildesmall","Odieresissmall","OEsmall","Oslashsmall","Ugravesmall","Uacutesmall","Ucircumflexsmall","Udieresissmall","Yacutesmall","Thornsmall","Ydieresissmall","001.000","001.001","001.002","001.003","Black","Bold","Book","Light","Medium","Regular","Roman","Semibold"];let Me=["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","","endash","dagger","daggerdbl","periodcentered","","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","","questiondown","","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","","ring","cedilla","","hungarumlaut","ogonek","caron","emdash","","","","","","","","","","","","","","","","","AE","","ordfeminine","","","","","Lslash","Oslash","OE","ordmasculine","","","","","","ae","","","","dotlessi","","","lslash","oslash","oe","germandbls"],Ce=[".notdef","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","endash","dagger","daggerdbl","periodcentered","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","questiondown","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","ring","cedilla","hungarumlaut","ogonek","caron","emdash","AE","ordfeminine","Lslash","Oslash","OE","ordmasculine","ae","dotlessi","lslash","oslash","oe","germandbls","onesuperior","logicalnot","mu","trademark","Eth","onehalf","plusminus","Thorn","onequarter","divide","brokenbar","degree","thorn","threequarters","twosuperior","registered","minus","eth","multiply","threesuperior","copyright","Aacute","Acircumflex","Adieresis","Agrave","Aring","Atilde","Ccedilla","Eacute","Ecircumflex","Edieresis","Egrave","Iacute","Icircumflex","Idieresis","Igrave","Ntilde","Oacute","Ocircumflex","Odieresis","Ograve","Otilde","Scaron","Uacute","Ucircumflex","Udieresis","Ugrave","Yacute","Ydieresis","Zcaron","aacute","acircumflex","adieresis","agrave","aring","atilde","ccedilla","eacute","ecircumflex","edieresis","egrave","iacute","icircumflex","idieresis","igrave","ntilde","oacute","ocircumflex","odieresis","ograve","otilde","scaron","uacute","ucircumflex","udieresis","ugrave","yacute","ydieresis","zcaron"],qe=new t.Struct({reserved:new t.Reserved(t.uint16),reqFeatureIndex:t.uint16,featureCount:t.uint16,featureIndexes:new t.Array(t.uint16,"featureCount")}),W=new t.Struct({tag:new t.String(4),langSys:new t.Pointer(t.uint16,qe,{type:"parent"})}),Ie=new t.Struct({defaultLangSys:new t.Pointer(t.uint16,qe),count:t.uint16,langSysRecords:new t.Array(W,"count")}),de=new t.Struct({tag:new t.String(4),script:new t.Pointer(t.uint16,Ie,{type:"parent"})}),SA=new t.Array(de,t.uint16),ce=new t.Struct({version:t.uint16,nameID:t.uint16}),pe=new t.Struct({featureParams:new t.Pointer(t.uint16,ce),lookupCount:t.uint16,lookupListIndexes:new t.Array(t.uint16,"lookupCount")}),st=new t.Struct({tag:new t.String(4),feature:new t.Pointer(t.uint16,pe,{type:"parent"})}),We=new t.Array(st,t.uint16),Ze=new t.Struct({markAttachmentType:t.uint8,flags:new t.Bitfield(t.uint8,["rightToLeft","ignoreBaseGlyphs","ignoreLigatures","ignoreMarks","useMarkFilteringSet"])});function Ct(oA){let a=new t.Struct({lookupType:t.uint16,flags:Ze,subTableCount:t.uint16,subTables:new t.Array(new t.Pointer(t.uint16,oA),"subTableCount"),markFilteringSet:new t.Optional(t.uint16,h=>h.flags.flags.useMarkFilteringSet)});return new t.LazyArray(new t.Pointer(t.uint16,a),t.uint16)}let Kt=new t.Struct({start:t.uint16,end:t.uint16,startCoverageIndex:t.uint16}),rt=new t.VersionedStruct(t.uint16,{1:{glyphCount:t.uint16,glyphs:new t.Array(t.uint16,"glyphCount")},2:{rangeCount:t.uint16,rangeRecords:new t.Array(Kt,"rangeCount")}}),mt=new t.Struct({start:t.uint16,end:t.uint16,class:t.uint16}),zt=new t.VersionedStruct(t.uint16,{1:{startGlyph:t.uint16,glyphCount:t.uint16,classValueArray:new t.Array(t.uint16,"glyphCount")},2:{classRangeCount:t.uint16,classRangeRecord:new t.Array(mt,"classRangeCount")}}),kt=new t.Struct({a:t.uint16,b:t.uint16,deltaFormat:t.uint16}),Jt=new t.Struct({sequenceIndex:t.uint16,lookupListIndex:t.uint16}),nt=new t.Struct({glyphCount:t.uint16,lookupCount:t.uint16,input:new t.Array(t.uint16,oA=>oA.glyphCount-1),lookupRecords:new t.Array(Jt,"lookupCount")}),$e=new t.Array(new t.Pointer(t.uint16,nt),t.uint16),lt=new t.Struct({glyphCount:t.uint16,lookupCount:t.uint16,classes:new t.Array(t.uint16,oA=>oA.glyphCount-1),lookupRecords:new t.Array(Jt,"lookupCount")}),tt=new t.Array(new t.Pointer(t.uint16,lt),t.uint16),Ut=new t.VersionedStruct(t.uint16,{1:{coverage:new t.Pointer(t.uint16,rt),ruleSetCount:t.uint16,ruleSets:new t.Array(new t.Pointer(t.uint16,$e),"ruleSetCount")},2:{coverage:new t.Pointer(t.uint16,rt),classDef:new t.Pointer(t.uint16,zt),classSetCnt:t.uint16,classSet:new t.Array(new t.Pointer(t.uint16,tt),"classSetCnt")},3:{glyphCount:t.uint16,lookupCount:t.uint16,coverages:new t.Array(new t.Pointer(t.uint16,rt),"glyphCount"),lookupRecords:new t.Array(Jt,"lookupCount")}}),Gt=new t.Struct({backtrackGlyphCount:t.uint16,backtrack:new t.Array(t.uint16,"backtrackGlyphCount"),inputGlyphCount:t.uint16,input:new t.Array(t.uint16,oA=>oA.inputGlyphCount-1),lookaheadGlyphCount:t.uint16,lookahead:new t.Array(t.uint16,"lookaheadGlyphCount"),lookupCount:t.uint16,lookupRecords:new t.Array(Jt,"lookupCount")}),Rt=new t.Array(new t.Pointer(t.uint16,Gt),t.uint16),Cn=new t.VersionedStruct(t.uint16,{1:{coverage:new t.Pointer(t.uint16,rt),chainCount:t.uint16,chainRuleSets:new t.Array(new t.Pointer(t.uint16,Rt),"chainCount")},2:{coverage:new t.Pointer(t.uint16,rt),backtrackClassDef:new t.Pointer(t.uint16,zt),inputClassDef:new t.Pointer(t.uint16,zt),lookaheadClassDef:new t.Pointer(t.uint16,zt),chainCount:t.uint16,chainClassSet:new t.Array(new t.Pointer(t.uint16,Rt),"chainCount")},3:{backtrackGlyphCount:t.uint16,backtrackCoverage:new t.Array(new t.Pointer(t.uint16,rt),"backtrackGlyphCount"),inputGlyphCount:t.uint16,inputCoverage:new t.Array(new t.Pointer(t.uint16,rt),"inputGlyphCount"),lookaheadGlyphCount:t.uint16,lookaheadCoverage:new t.Array(new t.Pointer(t.uint16,rt),"lookaheadGlyphCount"),lookupCount:t.uint16,lookupRecords:new t.Array(Jt,"lookupCount")}}),pn=new t.Fixed(16,"BE",14),Dn=new t.Struct({startCoord:pn,peakCoord:pn,endCoord:pn}),en=new t.Struct({axisCount:t.uint16,regionCount:t.uint16,variationRegions:new t.Array(new t.Array(Dn,"axisCount"),"regionCount")}),tn=new t.Struct({shortDeltas:new t.Array(t.int16,oA=>oA.parent.shortDeltaCount),regionDeltas:new t.Array(t.int8,oA=>oA.parent.regionIndexCount-oA.parent.shortDeltaCount),deltas:oA=>oA.shortDeltas.concat(oA.regionDeltas)}),In=new t.Struct({itemCount:t.uint16,shortDeltaCount:t.uint16,regionIndexCount:t.uint16,regionIndexes:new t.Array(t.uint16,"regionIndexCount"),deltaSets:new t.Array(tn,"itemCount")}),yA=new t.Struct({format:t.uint16,variationRegionList:new t.Pointer(t.uint32,en),variationDataCount:t.uint16,itemVariationData:new t.Array(new t.Pointer(t.uint32,In),"variationDataCount")}),DA=new t.VersionedStruct(t.uint16,{1:{axisIndex:t.uint16,axisIndex:t.uint16,filterRangeMinValue:pn,filterRangeMaxValue:pn}}),mA=new t.Struct({conditionCount:t.uint16,conditionTable:new t.Array(new t.Pointer(t.uint32,DA),"conditionCount")}),_A=new t.Struct({featureIndex:t.uint16,alternateFeatureTable:new t.Pointer(t.uint32,pe,{type:"parent"})}),jA=new t.Struct({version:t.fixed32,substitutionCount:t.uint16,substitutions:new t.Array(_A,"substitutionCount")}),NA=new t.Struct({conditionSet:new t.Pointer(t.uint32,mA,{type:"parent"}),featureTableSubstitution:new t.Pointer(t.uint32,jA,{type:"parent"})}),le=new t.Struct({majorVersion:t.uint16,minorVersion:t.uint16,featureVariationRecordCount:t.uint32,featureVariationRecords:new t.Array(NA,"featureVariationRecordCount")});class GA{decode(a,h,F){return this.predefinedOps[F[0]]?this.predefinedOps[F[0]]:this.type.decode(a,h,F)}size(a,h){return this.type.size(a,h)}encode(a,h,F){let k=this.predefinedOps.indexOf(h);return-1!==k?k:this.type.encode(a,h,F)}constructor(a,h){this.predefinedOps=a,this.type=h}}let qA=new t.Struct({first:t.uint16,nLeft:t.uint8}),Fe=new t.Struct({first:t.uint16,nLeft:t.uint16}),et=new GA([Me,["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","space","exclamsmall","Hungarumlautsmall","","dollaroldstyle","dollarsuperior","ampersandsmall","Acutesmall","parenleftsuperior","parenrightsuperior","twodotenleader","onedotenleader","comma","hyphen","period","fraction","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","colon","semicolon","commasuperior","threequartersemdash","periodsuperior","questionsmall","","asuperior","bsuperior","centsuperior","dsuperior","esuperior","","","isuperior","","","lsuperior","msuperior","nsuperior","osuperior","","","rsuperior","ssuperior","tsuperior","","ff","fi","fl","ffi","ffl","parenleftinferior","","parenrightinferior","Circumflexsmall","hyphensuperior","Gravesmall","Asmall","Bsmall","Csmall","Dsmall","Esmall","Fsmall","Gsmall","Hsmall","Ismall","Jsmall","Ksmall","Lsmall","Msmall","Nsmall","Osmall","Psmall","Qsmall","Rsmall","Ssmall","Tsmall","Usmall","Vsmall","Wsmall","Xsmall","Ysmall","Zsmall","colonmonetary","onefitted","rupiah","Tildesmall","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","exclamdownsmall","centoldstyle","Lslashsmall","","","Scaronsmall","Zcaronsmall","Dieresissmall","Brevesmall","Caronsmall","","Dotaccentsmall","","","Macronsmall","","","figuredash","hypheninferior","","","Ogoneksmall","Ringsmall","Cedillasmall","","","","onequarter","onehalf","threequarters","questiondownsmall","oneeighth","threeeighths","fiveeighths","seveneighths","onethird","twothirds","","","zerosuperior","onesuperior","twosuperior","threesuperior","foursuperior","fivesuperior","sixsuperior","sevensuperior","eightsuperior","ninesuperior","zeroinferior","oneinferior","twoinferior","threeinferior","fourinferior","fiveinferior","sixinferior","seveninferior","eightinferior","nineinferior","centinferior","dollarinferior","periodinferior","commainferior","Agravesmall","Aacutesmall","Acircumflexsmall","Atildesmall","Adieresissmall","Aringsmall","AEsmall","Ccedillasmall","Egravesmall","Eacutesmall","Ecircumflexsmall","Edieresissmall","Igravesmall","Iacutesmall","Icircumflexsmall","Idieresissmall","Ethsmall","Ntildesmall","Ogravesmall","Oacutesmall","Ocircumflexsmall","Otildesmall","Odieresissmall","OEsmall","Oslashsmall","Ugravesmall","Uacutesmall","Ucircumflexsmall","Udieresissmall","Yacutesmall","Thornsmall","Ydieresissmall"]],new u(new t.VersionedStruct(new class ee extends t.Number{decode(a){return 127&t.uint8.decode(a)}constructor(){super("UInt8")}},{0:{nCodes:t.uint8,codes:new t.Array(t.uint8,"nCodes")},1:{nRanges:t.uint8,ranges:new t.Array(qA,"nRanges")}}),{lazy:!0}));class ct extends t.Array{decode(a,h){let F=(0,t.resolveLength)(this.length,a,h),k=0,X=[];for(;koA.parent.CharStrings.length-1)},1:{ranges:new ct(qA,oA=>oA.parent.CharStrings.length-1)},2:{ranges:new ct(Fe,oA=>oA.parent.CharStrings.length-1)}}),{lazy:!0})),Oe=new t.Struct({first:t.uint16,fd:t.uint8}),it=new t.Struct({first:t.uint32,fd:t.uint16}),gt=new t.VersionedStruct(t.uint8,{0:{fds:new t.Array(t.uint8,oA=>oA.parent.CharStrings.length)},3:{nRanges:t.uint16,ranges:new t.Array(Oe,"nRanges"),sentinel:t.uint16},4:{nRanges:t.uint32,ranges:new t.Array(it,"nRanges"),sentinel:t.uint32}}),Ft=new u(pA);class Mt{decode(a,h,F){return h.length=F[0],Ft.decode(a,h,[F[1]])}size(a,h){return[pA.size(a,h,!1),Ft.size(a,h)[0]]}encode(a,h,F){return[pA.size(h,F,!1),Ft.encode(a,h,F)[0]]}}let Lt=new v([[18,"Private",new Mt,null],[[12,38],"FontName","sid",null],[[12,7],"FontMatrix","array",[.001,0,0,.001,0,0]],[[12,5],"PaintType","number",0]]),ut=new v([[[12,30],"ROS",["sid","sid","number"],null],[0,"version","sid",null],[1,"Notice","sid",null],[[12,0],"Copyright","sid",null],[2,"FullName","sid",null],[3,"FamilyName","sid",null],[4,"Weight","sid",null],[[12,1],"isFixedPitch","boolean",!1],[[12,2],"ItalicAngle","number",0],[[12,3],"UnderlinePosition","number",-100],[[12,4],"UnderlineThickness","number",50],[[12,5],"PaintType","number",0],[[12,6],"CharstringType","number",2],[[12,7],"FontMatrix","array",[.001,0,0,.001,0,0]],[13,"UniqueID","number",null],[5,"FontBBox","array",[0,0,0,0]],[[12,8],"StrokeWidth","number",0],[14,"XUID","array",null],[15,"charset",ue,Ce],[16,"Encoding",et,Me],[17,"CharStrings",new u(new _e),null],[18,"Private",new Mt,null],[[12,20],"SyntheticBase","number",null],[[12,21],"PostScript","sid",null],[[12,22],"BaseFontName","sid",null],[[12,23],"BaseFontBlend","delta",null],[[12,31],"CIDFontVersion","number",0],[[12,32],"CIDFontRevision","number",0],[[12,33],"CIDFontType","number",0],[[12,34],"CIDCount","number",8720],[[12,35],"UIDBase","number",null],[[12,37],"FDSelect",new u(gt),null],[[12,36],"FDArray",new u(new _e(Lt)),null],[[12,38],"FontName","sid",null]]),pt=new t.Struct({length:t.uint16,itemVariationStore:yA}),Mn=new v([[[12,7],"FontMatrix","array",[.001,0,0,.001,0,0]],[17,"CharStrings",new u(new _e),null],[[12,37],"FDSelect",new u(gt),null],[[12,36],"FDArray",new u(new _e(Lt)),null],[24,"vstore",new u(pt),null],[25,"maxstack","number",193]]);var nn=new t.VersionedStruct(t.fixed16,{1:{hdrSize:t.uint8,offSize:t.uint8,nameIndex:new _e(new t.String("length")),topDictIndex:new _e(ut),stringIndex:new _e(new t.String("length")),globalSubrIndex:new _e},2:{hdrSize:t.uint8,length:t.uint16,topDict:Mn,globalSubrIndex:new _e}});class Vt{static decode(a){return new Vt(a)}decode(){let h=nn.decode(this.stream);for(let F in h)this[F]=h[F];if(this.version<2){if(1!==this.topDictIndex.length)throw new Error("Only a single font is allowed in CFF");this.topDict=this.topDictIndex[0]}return this.isCIDFont=null!=this.topDict.ROS,this}string(a){return this.version>=2?null:a=2||this.isCIDFont)return null;let{charset:h}=this.topDict;if(Array.isArray(h))return h[a];if(0===a)return".notdef";switch(a-=1,h.version){case 0:return this.string(h.glyphs[a]);case 1:case 2:for(let F=0;F>1;if(a=h[X+1].first))return h[X].fd;F=X+1}}default:throw new Error(`Unknown FDSelect version: ${this.topDict.FDSelect.version}`)}}privateDictForGlyph(a){if(this.topDict.FDSelect){let h=this.fdForGlyph(a);return this.topDict.FDArray[h]?this.topDict.FDArray[h].Private:null}return this.version<2?this.topDict.Private:this.topDict.FDArray[0].Private}constructor(a){this.stream=a,this.decode()}}var vn=Vt;let ii=new t.Struct({glyphIndex:t.uint16,vertOriginY:t.int16});var bn=new t.Struct({majorVersion:t.uint16,minorVersion:t.uint16,defaultVertOriginY:t.int16,numVertOriginYMetrics:t.uint16,metrics:new t.Array(ii,"numVertOriginYMetrics")});let cn=new t.Struct({height:t.uint8,width:t.uint8,horiBearingX:t.int8,horiBearingY:t.int8,horiAdvance:t.uint8,vertBearingX:t.int8,vertBearingY:t.int8,vertAdvance:t.uint8}),Tn=new t.Struct({height:t.uint8,width:t.uint8,bearingX:t.int8,bearingY:t.int8,advance:t.uint8}),Xt=new t.Struct({glyph:t.uint16,xOffset:t.int8,yOffset:t.int8});class zn{}class Jn{}new t.VersionedStruct("version",{1:{metrics:Tn,data:zn},2:{metrics:Tn,data:Jn},5:{data:Jn},6:{metrics:cn,data:zn},7:{metrics:cn,data:Jn},8:{metrics:Tn,pad:new t.Reserved(t.uint8),numComponents:t.uint16,components:new t.Array(Xt,"numComponents")},9:{metrics:cn,pad:new t.Reserved(t.uint8),numComponents:t.uint16,components:new t.Array(Xt,"numComponents")},17:{metrics:Tn,dataLen:t.uint32,data:new t.Buffer("dataLen")},18:{metrics:cn,dataLen:t.uint32,data:new t.Buffer("dataLen")},19:{dataLen:t.uint32,data:new t.Buffer("dataLen")}});let Rn=new t.Struct({ascender:t.int8,descender:t.int8,widthMax:t.uint8,caretSlopeNumerator:t.int8,caretSlopeDenominator:t.int8,caretOffset:t.int8,minOriginSB:t.int8,minAdvanceSB:t.int8,maxBeforeBL:t.int8,minAfterBL:t.int8,pad:new t.Reserved(t.int8,2)}),$n=new t.Struct({glyphCode:t.uint16,offset:t.uint16}),Ii=new t.VersionedStruct(t.uint16,{header:{imageFormat:t.uint16,imageDataOffset:t.uint32},1:{offsetArray:new t.Array(t.uint32,oA=>oA.parent.lastGlyphIndex-oA.parent.firstGlyphIndex+1)},2:{imageSize:t.uint32,bigMetrics:cn},3:{offsetArray:new t.Array(t.uint16,oA=>oA.parent.lastGlyphIndex-oA.parent.firstGlyphIndex+1)},4:{numGlyphs:t.uint32,glyphArray:new t.Array($n,oA=>oA.numGlyphs+1)},5:{imageSize:t.uint32,bigMetrics:cn,numGlyphs:t.uint32,glyphCodeArray:new t.Array(t.uint16,"numGlyphs")}}),Fi=new t.Struct({firstGlyphIndex:t.uint16,lastGlyphIndex:t.uint16,subtable:new t.Pointer(t.uint32,Ii)}),xi=new t.Struct({indexSubTableArray:new t.Pointer(t.uint32,new t.Array(Fi,1),{type:"parent"}),indexTablesSize:t.uint32,numberOfIndexSubTables:t.uint32,colorRef:t.uint32,hori:Rn,vert:Rn,startGlyphIndex:t.uint16,endGlyphIndex:t.uint16,ppemX:t.uint8,ppemY:t.uint8,bitDepth:t.uint8,flags:new t.Bitfield(t.uint8,["horizontal","vertical"])});var wi=new t.Struct({version:t.uint32,numSizes:t.uint32,sizes:new t.Array(xi,"numSizes")});let yi=new t.Struct({ppem:t.uint16,resolution:t.uint16,imageOffsets:new t.Array(new t.Pointer(t.uint32,"void"),oA=>oA.parent.parent.maxp.numGlyphs+1)});var _n=new t.Struct({version:t.uint16,flags:new t.Bitfield(t.uint16,["renderOutlines"]),numImgTables:t.uint32,imageTables:new t.Array(new t.Pointer(t.uint32,yi),"numImgTables")});let Ci=new t.Struct({gid:t.uint16,paletteIndex:t.uint16}),hs=new t.Struct({gid:t.uint16,firstLayerIndex:t.uint16,numLayers:t.uint16});var ki=new t.Struct({version:t.uint16,numBaseGlyphRecords:t.uint16,baseGlyphRecord:new t.Pointer(t.uint32,new t.Array(hs,"numBaseGlyphRecords")),layerRecords:new t.Pointer(t.uint32,new t.Array(Ci,"numLayerRecords"),{lazy:!0}),numLayerRecords:t.uint16});let Hi=new t.Struct({blue:t.uint8,green:t.uint8,red:t.uint8,alpha:t.uint8});var Zn=new t.VersionedStruct(t.uint16,{header:{numPaletteEntries:t.uint16,numPalettes:t.uint16,numColorRecords:t.uint16,colorRecords:new t.Pointer(t.uint32,new t.Array(Hi,"numColorRecords")),colorRecordIndices:new t.Array(t.uint16,"numPalettes")},0:{},1:{offsetPaletteTypeArray:new t.Pointer(t.uint32,new t.Array(t.uint32,"numPalettes")),offsetPaletteLabelArray:new t.Pointer(t.uint32,new t.Array(t.uint16,"numPalettes")),offsetPaletteEntryLabelArray:new t.Pointer(t.uint32,new t.Array(t.uint16,"numPaletteEntries"))}});let si=new t.VersionedStruct(t.uint16,{1:{coordinate:t.int16},2:{coordinate:t.int16,referenceGlyph:t.uint16,baseCoordPoint:t.uint16},3:{coordinate:t.int16,deviceTable:new t.Pointer(t.uint16,kt)}}),ws=new t.Struct({defaultIndex:t.uint16,baseCoordCount:t.uint16,baseCoords:new t.Array(new t.Pointer(t.uint16,si),"baseCoordCount")}),$i=new t.Struct({tag:new t.String(4),minCoord:new t.Pointer(t.uint16,si,{type:"parent"}),maxCoord:new t.Pointer(t.uint16,si,{type:"parent"})}),Yi=new t.Struct({minCoord:new t.Pointer(t.uint16,si),maxCoord:new t.Pointer(t.uint16,si),featMinMaxCount:t.uint16,featMinMaxRecords:new t.Array($i,"featMinMaxCount")}),vi=new t.Struct({tag:new t.String(4),minMax:new t.Pointer(t.uint16,Yi,{type:"parent"})}),Cs=new t.Struct({baseValues:new t.Pointer(t.uint16,ws),defaultMinMax:new t.Pointer(t.uint16,Yi),baseLangSysCount:t.uint16,baseLangSysRecords:new t.Array(vi,"baseLangSysCount")}),ds=new t.Struct({tag:new t.String(4),script:new t.Pointer(t.uint16,Cs,{type:"parent"})}),Qs=new t.Array(ds,t.uint16),ji=new t.Array(new t.String(4),t.uint16),Oi=new t.Struct({baseTagList:new t.Pointer(t.uint16,ji),baseScriptList:new t.Pointer(t.uint16,Qs)});var oi=new t.VersionedStruct(t.uint32,{header:{horizAxis:new t.Pointer(t.uint16,Oi),vertAxis:new t.Pointer(t.uint16,Oi)},65536:{},65537:{itemVariationStore:new t.Pointer(t.uint32,yA)}});let ms=new t.Array(t.uint16,t.uint16),As=new t.Struct({coverage:new t.Pointer(t.uint16,rt),glyphCount:t.uint16,attachPoints:new t.Array(new t.Pointer(t.uint16,ms),"glyphCount")}),Ms=new t.VersionedStruct(t.uint16,{1:{coordinate:t.int16},2:{caretValuePoint:t.uint16},3:{coordinate:t.int16,deviceTable:new t.Pointer(t.uint16,kt)}}),ps=new t.Array(new t.Pointer(t.uint16,Ms),t.uint16),Ai=new t.Struct({coverage:new t.Pointer(t.uint16,rt),ligGlyphCount:t.uint16,ligGlyphs:new t.Array(new t.Pointer(t.uint16,ps),"ligGlyphCount")}),Ji=new t.Struct({markSetTableFormat:t.uint16,markSetCount:t.uint16,coverage:new t.Array(new t.Pointer(t.uint32,rt),"markSetCount")});var Ds=new t.VersionedStruct(t.uint32,{header:{glyphClassDef:new t.Pointer(t.uint16,zt),attachList:new t.Pointer(t.uint16,As),ligCaretList:new t.Pointer(t.uint16,Ai),markAttachClassDef:new t.Pointer(t.uint16,zt)},65536:{},65538:{markGlyphSetsDef:new t.Pointer(t.uint16,Ji)},65539:{markGlyphSetsDef:new t.Pointer(t.uint16,Ji),itemVariationStore:new t.Pointer(t.uint32,yA)}});let li=new t.Bitfield(t.uint16,["xPlacement","yPlacement","xAdvance","yAdvance","xPlaDevice","yPlaDevice","xAdvDevice","yAdvDevice"]),es={xPlacement:t.int16,yPlacement:t.int16,xAdvance:t.int16,yAdvance:t.int16,xPlaDevice:new t.Pointer(t.uint16,kt,{type:"global",relativeTo:oA=>oA.rel}),yPlaDevice:new t.Pointer(t.uint16,kt,{type:"global",relativeTo:oA=>oA.rel}),xAdvDevice:new t.Pointer(t.uint16,kt,{type:"global",relativeTo:oA=>oA.rel}),yAdvDevice:new t.Pointer(t.uint16,kt,{type:"global",relativeTo:oA=>oA.rel})};class ci{buildStruct(a){let h=a;for(;!h[this.key]&&h.parent;)h=h.parent;if(!h[this.key])return;let F={rel:()=>h._startOffset},k=h[this.key];for(let X in k)k[X]&&(F[X]=es[X]);return new t.Struct(F)}size(a,h){return this.buildStruct(h).size(a,h)}decode(a,h){let F=this.buildStruct(h).decode(a,h);return delete F.rel,F}constructor(a="valueFormat"){this.key=a}}let Is=new t.Struct({secondGlyph:t.uint16,value1:new ci("valueFormat1"),value2:new ci("valueFormat2")}),Fs=new t.Array(Is,t.uint16),xs=new t.Struct({value1:new ci("valueFormat1"),value2:new ci("valueFormat2")}),di=new t.VersionedStruct(t.uint16,{1:{xCoordinate:t.int16,yCoordinate:t.int16},2:{xCoordinate:t.int16,yCoordinate:t.int16,anchorPoint:t.uint16},3:{xCoordinate:t.int16,yCoordinate:t.int16,xDeviceTable:new t.Pointer(t.uint16,kt),yDeviceTable:new t.Pointer(t.uint16,kt)}}),ys=new t.Struct({entryAnchor:new t.Pointer(t.uint16,di,{type:"parent"}),exitAnchor:new t.Pointer(t.uint16,di,{type:"parent"})}),bi=new t.Struct({class:t.uint16,markAnchor:new t.Pointer(t.uint16,di,{type:"parent"})}),Sn=new t.Array(bi,t.uint16),C=new t.Array(new t.Pointer(t.uint16,di),oA=>oA.parent.classCount),f=new t.Array(C,t.uint16),S=new t.Array(new t.Pointer(t.uint16,di),oA=>oA.parent.parent.classCount),I=new t.Array(S,t.uint16),tA=new t.Array(new t.Pointer(t.uint16,I),t.uint16),MA=new t.VersionedStruct("lookupType",{1:new t.VersionedStruct(t.uint16,{1:{coverage:new t.Pointer(t.uint16,rt),valueFormat:li,value:new ci},2:{coverage:new t.Pointer(t.uint16,rt),valueFormat:li,valueCount:t.uint16,values:new t.LazyArray(new ci,"valueCount")}}),2:new t.VersionedStruct(t.uint16,{1:{coverage:new t.Pointer(t.uint16,rt),valueFormat1:li,valueFormat2:li,pairSetCount:t.uint16,pairSets:new t.LazyArray(new t.Pointer(t.uint16,Fs),"pairSetCount")},2:{coverage:new t.Pointer(t.uint16,rt),valueFormat1:li,valueFormat2:li,classDef1:new t.Pointer(t.uint16,zt),classDef2:new t.Pointer(t.uint16,zt),class1Count:t.uint16,class2Count:t.uint16,classRecords:new t.LazyArray(new t.LazyArray(xs,"class2Count"),"class1Count")}}),3:{format:t.uint16,coverage:new t.Pointer(t.uint16,rt),entryExitCount:t.uint16,entryExitRecords:new t.Array(ys,"entryExitCount")},4:{format:t.uint16,markCoverage:new t.Pointer(t.uint16,rt),baseCoverage:new t.Pointer(t.uint16,rt),classCount:t.uint16,markArray:new t.Pointer(t.uint16,Sn),baseArray:new t.Pointer(t.uint16,f)},5:{format:t.uint16,markCoverage:new t.Pointer(t.uint16,rt),ligatureCoverage:new t.Pointer(t.uint16,rt),classCount:t.uint16,markArray:new t.Pointer(t.uint16,Sn),ligatureArray:new t.Pointer(t.uint16,tA)},6:{format:t.uint16,mark1Coverage:new t.Pointer(t.uint16,rt),mark2Coverage:new t.Pointer(t.uint16,rt),classCount:t.uint16,mark1Array:new t.Pointer(t.uint16,Sn),mark2Array:new t.Pointer(t.uint16,f)},7:Ut,8:Cn,9:{posFormat:t.uint16,lookupType:t.uint16,extension:new t.Pointer(t.uint32,null)}});MA.versions[9].extension.type=MA;var OA=new t.VersionedStruct(t.uint32,{header:{scriptList:new t.Pointer(t.uint16,SA),featureList:new t.Pointer(t.uint16,We),lookupList:new t.Pointer(t.uint16,new Ct(MA))},65536:{},65537:{featureVariations:new t.Pointer(t.uint32,le)}});let se=new t.Array(t.uint16,t.uint16),ge=se,Ne=new t.Struct({glyph:t.uint16,compCount:t.uint16,components:new t.Array(t.uint16,oA=>oA.compCount-1)}),Re=new t.Array(new t.Pointer(t.uint16,Ne),t.uint16),me=new t.VersionedStruct("lookupType",{1:new t.VersionedStruct(t.uint16,{1:{coverage:new t.Pointer(t.uint16,rt),deltaGlyphID:t.int16},2:{coverage:new t.Pointer(t.uint16,rt),glyphCount:t.uint16,substitute:new t.LazyArray(t.uint16,"glyphCount")}}),2:{substFormat:t.uint16,coverage:new t.Pointer(t.uint16,rt),count:t.uint16,sequences:new t.LazyArray(new t.Pointer(t.uint16,se),"count")},3:{substFormat:t.uint16,coverage:new t.Pointer(t.uint16,rt),count:t.uint16,alternateSet:new t.LazyArray(new t.Pointer(t.uint16,ge),"count")},4:{substFormat:t.uint16,coverage:new t.Pointer(t.uint16,rt),count:t.uint16,ligatureSets:new t.LazyArray(new t.Pointer(t.uint16,Re),"count")},5:Ut,6:Cn,7:{substFormat:t.uint16,lookupType:t.uint16,extension:new t.Pointer(t.uint32,null)},8:{substFormat:t.uint16,coverage:new t.Pointer(t.uint16,rt),backtrackCoverage:new t.Array(new t.Pointer(t.uint16,rt),"backtrackGlyphCount"),lookaheadGlyphCount:t.uint16,lookaheadCoverage:new t.Array(new t.Pointer(t.uint16,rt),"lookaheadGlyphCount"),glyphCount:t.uint16,substitutes:new t.Array(t.uint16,"glyphCount")}});me.versions[7].extension.type=me;var Ke=new t.VersionedStruct(t.uint32,{header:{scriptList:new t.Pointer(t.uint16,SA),featureList:new t.Pointer(t.uint16,We),lookupList:new t.Pointer(t.uint16,new Ct(me))},65536:{},65537:{featureVariations:new t.Pointer(t.uint32,le)}});let Et=new t.Array(t.uint16,t.uint16),Dt=new t.Struct({shrinkageEnableGSUB:new t.Pointer(t.uint16,Et),shrinkageDisableGSUB:new t.Pointer(t.uint16,Et),shrinkageEnableGPOS:new t.Pointer(t.uint16,Et),shrinkageDisableGPOS:new t.Pointer(t.uint16,Et),shrinkageJstfMax:new t.Pointer(t.uint16,new Ct(MA)),extensionEnableGSUB:new t.Pointer(t.uint16,Et),extensionDisableGSUB:new t.Pointer(t.uint16,Et),extensionEnableGPOS:new t.Pointer(t.uint16,Et),extensionDisableGPOS:new t.Pointer(t.uint16,Et),extensionJstfMax:new t.Pointer(t.uint16,new Ct(MA))}),xt=new t.Array(new t.Pointer(t.uint16,Dt),t.uint16),It=new t.Struct({tag:new t.String(4),jstfLangSys:new t.Pointer(t.uint16,xt)}),dt=new t.Struct({extenderGlyphs:new t.Pointer(t.uint16,new t.Array(t.uint16,t.uint16)),defaultLangSys:new t.Pointer(t.uint16,xt),langSysCount:t.uint16,langSysRecords:new t.Array(It,"langSysCount")}),ft=new t.Struct({tag:new t.String(4),script:new t.Pointer(t.uint16,dt,{type:"parent"})});var yt=new t.Struct({version:t.uint32,scriptCount:t.uint16,scriptList:new t.Array(ft,"scriptCount")});let wn=new t.Struct({entry:new class an{decode(a,h){switch(this.size(0,h)){case 1:return a.readUInt8();case 2:return a.readUInt16BE();case 3:return a.readUInt24BE();case 4:return a.readUInt32BE()}}size(a,h){return(0,t.resolveLength)(this._size,null,h)}constructor(a){this._size=a}}(oA=>1+((48&oA.parent.entryFormat)>>4)),outerIndex:oA=>oA.entry>>1+(15&oA.parent.entryFormat),innerIndex:oA=>oA.entry&(1<<1+(15&oA.parent.entryFormat))-1}),jt=new t.Struct({entryFormat:t.uint16,mapCount:t.uint16,mapData:new t.Array(wn,"mapCount")});var ht=new t.Struct({majorVersion:t.uint16,minorVersion:t.uint16,itemVariationStore:new t.Pointer(t.uint32,yA),advanceWidthMapping:new t.Pointer(t.uint32,jt),LSBMapping:new t.Pointer(t.uint32,jt),RSBMapping:new t.Pointer(t.uint32,jt)});let Zt=new t.Struct({format:t.uint32,length:t.uint32,offset:t.uint32}),YA=new t.Struct({reserved:new t.Reserved(t.uint16,2),cbSignature:t.uint32,signature:new t.Buffer("cbSignature")});var s=new t.Struct({ulVersion:t.uint32,usNumSigs:t.uint16,usFlag:t.uint16,signatures:new t.Array(Zt,"usNumSigs"),signatureBlocks:new t.Array(YA,"usNumSigs")});let p=new t.Struct({rangeMaxPPEM:t.uint16,rangeGaspBehavior:new t.Bitfield(t.uint16,["grayscale","gridfit","symmetricSmoothing","symmetricGridfit"])});var z=new t.Struct({version:t.uint16,numRanges:t.uint16,gaspRanges:new t.Array(p,"numRanges")});let AA=new t.Struct({pixelSize:t.uint8,maximumWidth:t.uint8,widths:new t.Array(t.uint8,oA=>oA.parent.parent.maxp.numGlyphs)});var fA=new t.Struct({version:t.uint16,numRecords:t.int16,sizeDeviceRecord:t.int32,records:new t.Array(AA,"numRecords")});let FA=new t.Struct({left:t.uint16,right:t.uint16,value:t.int16}),HA=new t.Struct({firstGlyph:t.uint16,nGlyphs:t.uint16,offsets:new t.Array(t.uint16,"nGlyphs"),max:oA=>oA.offsets.length&&Math.max.apply(Math,oA.offsets)}),zA=new t.Struct({off:oA=>oA._startOffset-oA.parent.parent._startOffset,len:oA=>oA.parent.rowWidth/2*((oA.parent.leftTable.max-oA.off)/oA.parent.rowWidth+1),values:new t.LazyArray(t.int16,"len")}),Qe=new t.VersionedStruct("format",{0:{nPairs:t.uint16,searchRange:t.uint16,entrySelector:t.uint16,rangeShift:t.uint16,pairs:new t.Array(FA,"nPairs")},2:{rowWidth:t.uint16,leftTable:new t.Pointer(t.uint16,HA,{type:"parent"}),rightTable:new t.Pointer(t.uint16,HA,{type:"parent"}),array:new t.Pointer(t.uint16,zA,{type:"parent"})},3:{glyphCount:t.uint16,kernValueCount:t.uint8,leftClassCount:t.uint8,rightClassCount:t.uint8,flags:t.uint8,kernValue:new t.Array(t.int16,"kernValueCount"),leftClass:new t.Array(t.uint8,"glyphCount"),rightClass:new t.Array(t.uint8,"glyphCount"),kernIndex:new t.Array(t.uint8,oA=>oA.leftClassCount*oA.rightClassCount)}}),he=new t.VersionedStruct("version",{0:{subVersion:t.uint16,length:t.uint16,format:t.uint8,coverage:new t.Bitfield(t.uint8,["horizontal","minimum","crossStream","override"]),subtable:Qe,padding:new t.Reserved(t.uint8,oA=>oA.length-oA._currentOffset)},1:{length:t.uint32,coverage:new t.Bitfield(t.uint8,[null,null,null,null,null,"variation","crossStream","vertical"]),format:t.uint8,tupleIndex:t.uint16,subtable:Qe,padding:new t.Reserved(t.uint8,oA=>oA.length-oA._currentOffset)}});var De=new t.VersionedStruct(t.uint16,{0:{nTables:t.uint16,tables:new t.Array(he,"nTables")},1:{reserved:new t.Reserved(t.uint16),nTables:t.uint32,tables:new t.Array(he,"nTables")}}),Ye=new t.Struct({version:t.uint16,numGlyphs:t.uint16,yPels:new t.Array(t.uint8,"numGlyphs")}),Se=new t.Struct({version:t.uint16,fontNumber:t.uint32,pitch:t.uint16,xHeight:t.uint16,style:t.uint16,typeFamily:t.uint16,capHeight:t.uint16,symbolSet:t.uint16,typeface:new t.String(16),characterComplement:new t.String(8),fileName:new t.String(6),strokeWeight:new t.String(1),widthType:new t.String(1),serifStyle:t.uint8,reserved:new t.Reserved(t.uint8)});let Te=new t.Struct({bCharSet:t.uint8,xRatio:t.uint8,yStartRatio:t.uint8,yEndRatio:t.uint8}),Je=new t.Struct({yPelHeight:t.uint16,yMax:t.int16,yMin:t.int16}),xe=new t.Struct({recs:t.uint16,startsz:t.uint8,endsz:t.uint8,entries:new t.Array(Je,"recs")});var be=new t.Struct({version:t.uint16,numRecs:t.uint16,numRatios:t.uint16,ratioRanges:new t.Array(Te,"numRatios"),offsets:new t.Array(t.uint16,"numRatios"),groups:new t.Array(xe,"numRecs")}),je=new t.Struct({version:t.uint16,ascent:t.int16,descent:t.int16,lineGap:t.int16,advanceHeightMax:t.int16,minTopSideBearing:t.int16,minBottomSideBearing:t.int16,yMaxExtent:t.int16,caretSlopeRise:t.int16,caretSlopeRun:t.int16,caretOffset:t.int16,reserved:new t.Reserved(t.int16,4),metricDataFormat:t.int16,numberOfMetrics:t.uint16});let At=new t.Struct({advance:t.uint16,bearing:t.int16});var ot=new t.Struct({metrics:new t.LazyArray(At,oA=>oA.parent.vhea.numberOfMetrics),bearings:new t.LazyArray(t.int16,oA=>oA.parent.maxp.numGlyphs-oA.parent.vhea.numberOfMetrics)});let on=new t.Fixed(16,"BE",14),qt=new t.Struct({fromCoord:on,toCoord:on}),kn=new t.Struct({pairCount:t.uint16,correspondence:new t.Array(qt,"pairCount")});var St=new t.Struct({version:t.fixed32,axisCount:t.uint32,segment:new t.Array(kn,"axisCount")});class _i{getItem(a){if(null==this._items[a]){let h=this.stream.pos;this.stream.pos=this.base+this.type.size(null,this.parent)*a,this._items[a]=this.type.decode(this.stream,this.parent),this.stream.pos=h}return this._items[a]}inspect(){return`[UnboundedArray ${this.type.constructor.name}]`}constructor(a,h,F){this.type=a,this.stream=h,this.parent=F,this.base=this.stream.pos,this._items=[]}}class Nn extends t.Array{decode(a,h){return new _i(this.type,a,h)}constructor(a){super(a,0)}}let Un=function(oA=t.uint16){oA=new class a{decode(IA,LA){return this.type.decode(IA,LA=LA.parent.parent)}size(IA,LA){return this.type.size(IA,LA=LA.parent.parent)}encode(IA,LA,ZA){return this.type.encode(IA,LA,ZA=ZA.parent.parent)}constructor(IA){this.type=IA}}(oA);let h=new t.Struct({unitSize:t.uint16,nUnits:t.uint16,searchRange:t.uint16,entrySelector:t.uint16,rangeShift:t.uint16}),F=new t.Struct({lastGlyph:t.uint16,firstGlyph:t.uint16,value:oA}),k=new t.Struct({lastGlyph:t.uint16,firstGlyph:t.uint16,values:new t.Pointer(t.uint16,new t.Array(oA,O=>O.lastGlyph-O.firstGlyph+1),{type:"parent"})}),X=new t.Struct({glyph:t.uint16,value:oA});return new t.VersionedStruct(t.uint16,{0:{values:new Nn(oA)},2:{binarySearchHeader:h,segments:new t.Array(F,O=>O.binarySearchHeader.nUnits)},4:{binarySearchHeader:h,segments:new t.Array(k,O=>O.binarySearchHeader.nUnits)},6:{binarySearchHeader:h,segments:new t.Array(X,O=>O.binarySearchHeader.nUnits)},8:{firstGlyph:t.uint16,count:t.uint16,values:new t.Array(oA,"count")}})};function $t(oA={},a=t.uint16){let h=Object.assign({newState:t.uint16,flags:t.uint16},oA),F=new t.Struct(h),k=new Nn(new t.Array(t.uint16,O=>O.nClasses));return new t.Struct({nClasses:t.uint32,classTable:new t.Pointer(t.uint32,new Un(a)),stateArray:new t.Pointer(t.uint32,k),entryTable:new t.Pointer(t.uint32,new Nn(F))})}let Bi=new t.VersionedStruct("format",{0:{deltas:new t.Array(t.int16,32)},1:{deltas:new t.Array(t.int16,32),mappingData:new Un(t.uint16)},2:{standardGlyph:t.uint16,controlPoints:new t.Array(t.uint16,32)},3:{standardGlyph:t.uint16,controlPoints:new t.Array(t.uint16,32),mappingData:new Un(t.uint16)}});var Vn=new t.Struct({version:t.fixed32,format:t.uint16,defaultBaseline:t.uint16,subtable:Bi});let ei=new t.Struct({setting:t.uint16,nameIndex:t.int16,name:oA=>oA.parent.parent.parent.name.records.fontFeatures[oA.nameIndex]}),ts=new t.Struct({feature:t.uint16,nSettings:t.uint16,settingTable:new t.Pointer(t.uint32,new t.Array(ei,"nSettings"),{type:"parent"}),featureFlags:new t.Bitfield(t.uint8,[null,null,null,null,null,null,"hasDefault","exclusive"]),defaultSetting:t.uint8,nameIndex:t.int16,name:oA=>oA.parent.parent.name.records.fontFeatures[oA.nameIndex]});var Ys=new t.Struct({version:t.fixed32,featureNameCount:t.uint16,reserved1:new t.Reserved(t.uint16),reserved2:new t.Reserved(t.uint32),featureNames:new t.Array(ts,"featureNameCount")});let lr=new t.Struct({axisTag:new t.String(4),minValue:t.fixed32,defaultValue:t.fixed32,maxValue:t.fixed32,flags:t.uint16,nameID:t.uint16,name:oA=>oA.parent.parent.name.records.fontFeatures[oA.nameID]}),cr=new t.Struct({nameID:t.uint16,name:oA=>oA.parent.parent.name.records.fontFeatures[oA.nameID],flags:t.uint16,coord:new t.Array(t.fixed32,oA=>oA.parent.axisCount),postscriptNameID:new t.Optional(t.uint16,oA=>oA.parent.instanceSize-oA._currentOffset>0)});var Qa=new t.Struct({version:t.fixed32,offsetToData:t.uint16,countSizePairs:t.uint16,axisCount:t.uint16,axisSize:t.uint16,instanceCount:t.uint16,instanceSize:t.uint16,axis:new t.Array(lr,"axisCount"),instance:new t.Array(cr,"instanceCount")});let ma=new t.Fixed(16,"BE",14);var pa=new t.Struct({version:t.uint16,reserved:new t.Reserved(t.uint16),axisCount:t.uint16,globalCoordCount:t.uint16,globalCoords:new t.Pointer(t.uint32,new t.Array(new t.Array(ma,"axisCount"),"globalCoordCount")),glyphCount:t.uint16,flags:t.uint16,offsetToData:t.uint32,offsets:new t.Array(new t.Pointer(class Ma{static decode(a,h){return h.flags?a.readUInt32BE():2*a.readUInt16BE()}},"void",{relativeTo:oA=>oA.offsetToData,allowNull:!1}),oA=>oA.glyphCount+1)});let Da=new t.Struct({length:t.uint16,coverage:t.uint16,subFeatureFlags:t.uint32,stateTable:new function Fn(oA={}){let h=new t.Struct({version:()=>8,firstGlyph:t.uint16,values:new t.Array(t.uint8,t.uint16)}),F=Object.assign({newStateOffset:t.uint16,newState:IA=>(IA.newStateOffset-(IA.parent.stateArray.base-IA.parent._startOffset))/IA.parent.nClasses,flags:t.uint16},oA),k=new t.Struct(F),X=new Nn(new t.Array(t.uint8,IA=>IA.nClasses));return new t.Struct({nClasses:t.uint16,classTable:new t.Pointer(t.uint16,h),stateArray:new t.Pointer(t.uint16,X),entryTable:new t.Pointer(t.uint16,new Nn(k))})}}),Ia=new t.Struct({justClass:t.uint32,beforeGrowLimit:t.fixed32,beforeShrinkLimit:t.fixed32,afterGrowLimit:t.fixed32,afterShrinkLimit:t.fixed32,growFlags:t.uint16,shrinkFlags:t.uint16}),Fa=new t.Array(Ia,t.uint32),xa=new t.VersionedStruct("actionType",{0:{lowerLimit:t.fixed32,upperLimit:t.fixed32,order:t.uint16,glyphs:new t.Array(t.uint16,t.uint16)},1:{addGlyph:t.uint16},2:{substThreshold:t.fixed32,addGlyph:t.uint16,substGlyph:t.uint16},3:{},4:{variationAxis:t.uint32,minimumLimit:t.fixed32,noStretchValue:t.fixed32,maximumLimit:t.fixed32},5:{flags:t.uint16,glyph:t.uint16}}),ya=new t.Struct({actionClass:t.uint16,actionType:t.uint16,actionLength:t.uint32,actionData:xa,padding:new t.Reserved(t.uint8,oA=>oA.actionLength-oA._currentOffset)}),Ya=new t.Array(ya,t.uint32),va=new t.Struct({lookupTable:new Un(new t.Pointer(t.uint16,Ya))}),Yr=new t.Struct({classTable:new t.Pointer(t.uint16,Da,{type:"parent"}),wdcOffset:t.uint16,postCompensationTable:new t.Pointer(t.uint16,va,{type:"parent"}),widthDeltaClusters:new Un(new t.Pointer(t.uint16,Fa,{type:"parent",relativeTo:oA=>oA.wdcOffset}))});var ba=new t.Struct({version:t.uint32,format:t.uint16,horizontal:new t.Pointer(t.uint16,Yr),vertical:new t.Pointer(t.uint16,Yr)});let vr={action:t.uint16},Ra={markIndex:t.uint16,currentIndex:t.uint16},Sa={currentInsertIndex:t.uint16,markedInsertIndex:t.uint16},Na=new t.Struct({items:new Nn(new t.Pointer(t.uint32,new Un))}),Ta=new t.VersionedStruct("type",{0:{stateTable:new $t},1:{stateTable:new $t(Ra),substitutionTable:new t.Pointer(t.uint32,Na)},2:{stateTable:new $t(vr),ligatureActions:new t.Pointer(t.uint32,new Nn(t.uint32)),components:new t.Pointer(t.uint32,new Nn(t.uint16)),ligatureList:new t.Pointer(t.uint32,new Nn(t.uint16))},4:{lookupTable:new Un},5:{stateTable:new $t(Sa),insertionActions:new t.Pointer(t.uint32,new Nn(t.uint16))}}),Pa=new t.Struct({length:t.uint32,coverage:t.uint24,type:t.uint8,subFeatureFlags:t.uint32,table:Ta,padding:new t.Reserved(t.uint8,oA=>oA.length-oA._currentOffset)}),Ua=new t.Struct({featureType:t.uint16,featureSetting:t.uint16,enableFlags:t.uint32,disableFlags:t.uint32}),Ga=new t.Struct({defaultFlags:t.uint32,chainLength:t.uint32,nFeatureEntries:t.uint32,nSubtables:t.uint32,features:new t.Array(Ua,"nFeatureEntries"),subtables:new t.Array(Pa,"nSubtables")});var La=new t.Struct({version:t.uint16,unused:new t.Reserved(t.uint16),nChains:t.uint32,chains:new t.Array(Ga,"nChains")});let za=new t.Struct({left:t.int16,top:t.int16,right:t.int16,bottom:t.int16});var ka=new t.Struct({version:t.fixed32,format:t.uint16,lookupTable:new Un(za)});let Yt={};var zs=Yt;Yt.cmap=JA,Yt.head=Be,Yt.hhea=KA,Yt.hmtx=we,Yt.maxp=ie,Yt.name=H,Yt["OS/2"]=RA,Yt.post=PA,Yt.fpgm=vA,Yt.loca=ye,Yt.prep=Ge,Yt["cvt "]=XA,Yt.glyf=He,Yt["CFF "]=vn,Yt.CFF2=vn,Yt.VORG=bn,Yt.EBLC=wi,Yt.CBLC=Yt.EBLC,Yt.sbix=_n,Yt.COLR=ki,Yt.CPAL=Zn,Yt.BASE=oi,Yt.GDEF=Ds,Yt.GPOS=OA,Yt.GSUB=Ke,Yt.JSTF=yt,Yt.HVAR=ht,Yt.DSIG=s,Yt.gasp=z,Yt.hdmx=fA,Yt.kern=De,Yt.LTSH=Ye,Yt.PCLT=Se,Yt.VDMX=be,Yt.vhea=je,Yt.vmtx=ot,Yt.avar=St,Yt.bsln=Vn,Yt.feat=Ys,Yt.fvar=Qa,Yt.gvar=pa,Yt.just=ba,Yt.morx=La,Yt.opbd=ka;let Ha=new t.Struct({tag:new t.String(4),checkSum:t.uint32,offset:new t.Pointer(t.uint32,"void",{type:"global"}),length:t.uint32}),Br=new t.Struct({tag:new t.String(4),numTables:t.uint16,searchRange:t.uint16,entrySelector:t.uint16,rangeShift:t.uint16,tables:new t.Array(Ha,"numTables")});Br.process=function(){let oA={};for(let a of this.tables)oA[a.tag]=a;this.tables=oA},Br.preEncode=function(){if(!Array.isArray(this.tables)){let h=[];for(let F in this.tables){let k=this.tables[F];k&&h.push({tag:F,checkSum:0,offset:new t.VoidPointer(zs[F],k),length:zs[F].size(k)})}this.tables=h}this.tag="true",this.numTables=this.tables.length;let oA=Math.floor(Math.log(this.numTables)/Math.LN2),a=Math.pow(2,oA);this.searchRange=16*a,this.entrySelector=Math.log(a)/Math.LN2,this.rangeShift=16*this.numTables-this.searchRange};var br=Br;function ks(oA,a){let h=0,F=oA.length-1;for(;h<=F;){let k=h+F>>1,X=a(oA[k]);if(X<0)F=k-1;else{if(!(X>0))return k;h=k+1}}return-1}function ns(oA,a){let h=[];for(;oA>4,h[F++]=(15&IA)<<4|LA>>2,h[F++]=(3&LA)<<6|63&ZA}return h}class fr{findSubtable(a,h){for(let[F,k]of h)for(let X of a.tables)if(X.platformID===F&&X.encodingID===k)return X.table;return null}lookup(a,h){if(this.encoding)a=this.encoding.get(a)||a;else if(h){let k=this.getVariationSelector(a,h);if(k)return k}let F=this.cmap;switch(F.version){case 0:return F.codeMap.get(a)||0;case 4:{let k=0,X=F.segCount-1;for(;k<=X;){let O=k+X>>1;if(aF.endCode.get(O))){let LA,IA=F.idRangeOffset.get(O);if(0===IA)LA=a+F.idDelta.get(O);else{let ZA=IA/2+(a-F.startCode.get(O))-(F.segCount-O);LA=F.glyphIndexArray.get(ZA)||0,0!==LA&&(LA+=F.idDelta.get(O))}return 65535&LA}k=O+1}}return 0}case 8:throw new Error("TODO: cmap format 8");case 6:case 10:return F.glyphIndices.get(a-F.firstCode)||0;case 12:case 13:{let k=0,X=F.nGroups-1;for(;k<=X;){let O=k+X>>1,IA=F.groups.get(O);if(aIA.endCharCode))return 12===F.version?IA.glyphID+(a-IA.startCharCode):IA.glyphID;k=O+1}}return 0}case 14:throw new Error("TODO: cmap format 14");default:throw new Error(`Unknown cmap format ${F.version}`)}}getVariationSelector(a,h){if(!this.uvs)return 0;let F=this.uvs.varSelectors.toArray(),k=ks(F,O=>h-O.varSelector),X=F[k];return-1!==k&&X.defaultUVS&&(k=ks(X.defaultUVS,O=>aO.startUnicodeValue+O.additionalCount?1:0)),-1!==k&&X.nonDefaultUVS&&(k=ks(X.nonDefaultUVS,O=>a-O.unicodeValue),-1!==k)?X.nonDefaultUVS[k].glyphID:0}getCharacterSet(){let a=this.cmap;switch(a.version){case 0:return ns(0,a.codeMap.length);case 4:{let h=[],F=a.endCode.toArray();for(let k=0;k=X.glyphID&&a<=X.glyphID+(X.endCharCode-X.startCharCode)&&k.push(X.startCharCode+(a-X.glyphID));return k}case 13:{let k=[];for(let X of h.groups.toArray())a===X.glyphID&&k.push(...ns(X.startCharCode,X.endCharCode+1));return k}default:throw new Error(`Unknown cmap format ${h.version}`)}}constructor(a){if(this.encoding=null,this.cmap=this.findSubtable(a,[[3,10],[0,6],[0,4],[3,1],[0,3],[0,2],[0,1],[0,0]]),!this.cmap)for(let h of a.tables){let k=bA(kA(h.platformID,h.encodingID,h.table.language-1));k&&(this.cmap=h.table,this.encoding=k)}if(!this.cmap)throw new Error("Could not find a supported cmap table");this.uvs=this.findSubtable(a,[[0,5]]),this.uvs&&14!==this.uvs.version&&(this.uvs=null)}}(0,M._)([$],fr.prototype,"getCharacterSet",null),(0,M._)([$],fr.prototype,"codePointsForGlyph",null);class ja{process(a,h){for(let F=0;F=0&&(X=O.pairs[IA].value);break;case 2:let LA=0,ZA=0;LA=a>=O.leftTable.firstGlyph&&a=O.rightTable.firstGlyph&&h=O.glyphCount||h>=O.glyphCount)return 0;X=O.kernValue[O.kernIndex[O.leftClass[a]*O.rightClassCount+O.rightClass[h]]];break;default:throw new Error(`Unsupported kerning sub-table format ${k.format}`)}k.coverage.override?F=X:F+=X}return F}constructor(a){this.kern=a.kern}}class Oa{positionGlyphs(a,h){let F=0,k=0;for(let X=0;X1&&(O.minX+=(X.codePoints.length-1)*O.width/X.codePoints.length);let IA=-h[F].xAdvance,LA=0,ZA=this.font.unitsPerEm/16;for(let oe=F+1;oe<=k;oe++){let re=a[oe],ke=re.cbox,at=h[oe],Bt=this.getCombiningClass(re.codePoints[0]);if("Not_Reordered"!==Bt){switch(at.xOffset=at.yOffset=0,Bt){case"Double_Above":case"Double_Below":at.xOffset+=O.minX-ke.width/2-ke.minX;break;case"Attached_Below_Left":case"Below_Left":case"Above_Left":at.xOffset+=O.minX-ke.minX;break;case"Attached_Above_Right":case"Below_Right":case"Above_Right":at.xOffset+=O.maxX-ke.width-ke.minX;break;default:at.xOffset+=O.minX+(O.width-ke.width)/2-ke.minX}switch(Bt){case"Double_Below":case"Below_Left":case"Below":case"Below_Right":case"Attached_Below_Left":case"Attached_Below":("Attached_Below_Left"===Bt||"Attached_Below"===Bt)&&(O.minY+=ZA),at.yOffset=-O.minY-ke.maxY,O.minY+=ke.height;break;case"Double_Above":case"Above_Left":case"Above":case"Above_Right":case"Attached_Above":case"Attached_Above_Right":("Attached_Above"===Bt||"Attached_Above_Right"===Bt)&&(O.maxY+=ZA),at.yOffset=O.maxY-ke.minY,O.maxY+=ke.height}at.xAdvance=at.yAdvance=0,at.xOffset+=IA,at.yOffset+=LA}else IA-=at.xAdvance,LA-=at.yAdvance}}getCombiningClass(a){let h=(0,V.getCombiningClass)(a);if(3584==(-256&a))if("Not_Reordered"===h)switch(a){case 3633:case 3636:case 3637:case 3638:case 3639:case 3655:case 3660:case 3645:case 3662:return"Above_Right";case 3761:case 3764:case 3765:case 3766:case 3767:case 3771:case 3788:case 3789:return"Above";case 3772:return"Below"}else if(3642===a)return"Below_Right";switch(h){case"CCC10":case"CCC11":case"CCC12":case"CCC13":case"CCC14":case"CCC15":case"CCC16":case"CCC17":case"CCC18":case"CCC20":case"CCC22":case"CCC29":case"CCC32":case"CCC118":case"CCC129":case"CCC132":return"Below";case"CCC23":return"Attached_Above";case"CCC24":case"CCC107":return"Above_Right";case"CCC25":case"CCC19":return"Above_Left";case"CCC26":case"CCC27":case"CCC28":case"CCC30":case"CCC31":case"CCC33":case"CCC34":case"CCC35":case"CCC36":case"CCC122":case"CCC130":return"Above";case"CCC21":break;case"CCC103":return"Below_Right"}return h}constructor(a){this.font=a}}class Ri{get width(){return this.maxX-this.minX}get height(){return this.maxY-this.minY}addPoint(a,h){Math.abs(a)!==1/0&&(athis.maxX&&(this.maxX=a)),Math.abs(h)!==1/0&&(hthis.maxY&&(this.maxY=h))}copy(){return new Ri(this.minX,this.minY,this.maxX,this.maxY)}constructor(a=1/0,h=1/0,F=-1/0,k=-1/0){this.minX=a,this.minY=h,this.maxX=F,this.maxY=k}}const Vi={Caucasian_Albanian:"aghb",Arabic:"arab",Imperial_Aramaic:"armi",Armenian:"armn",Avestan:"avst",Balinese:"bali",Bamum:"bamu",Bassa_Vah:"bass",Batak:"batk",Bengali:["bng2","beng"],Bopomofo:"bopo",Brahmi:"brah",Braille:"brai",Buginese:"bugi",Buhid:"buhd",Chakma:"cakm",Canadian_Aboriginal:"cans",Carian:"cari",Cham:"cham",Cherokee:"cher",Coptic:"copt",Cypriot:"cprt",Cyrillic:"cyrl",Devanagari:["dev2","deva"],Deseret:"dsrt",Duployan:"dupl",Egyptian_Hieroglyphs:"egyp",Elbasan:"elba",Ethiopic:"ethi",Georgian:"geor",Glagolitic:"glag",Gothic:"goth",Grantha:"gran",Greek:"grek",Gujarati:["gjr2","gujr"],Gurmukhi:["gur2","guru"],Hangul:"hang",Han:"hani",Hanunoo:"hano",Hebrew:"hebr",Hiragana:"hira",Pahawh_Hmong:"hmng",Katakana_Or_Hiragana:"hrkt",Old_Italic:"ital",Javanese:"java",Kayah_Li:"kali",Katakana:"kana",Kharoshthi:"khar",Khmer:"khmr",Khojki:"khoj",Kannada:["knd2","knda"],Kaithi:"kthi",Tai_Tham:"lana",Lao:"lao ",Latin:"latn",Lepcha:"lepc",Limbu:"limb",Linear_A:"lina",Linear_B:"linb",Lisu:"lisu",Lycian:"lyci",Lydian:"lydi",Mahajani:"mahj",Mandaic:"mand",Manichaean:"mani",Mende_Kikakui:"mend",Meroitic_Cursive:"merc",Meroitic_Hieroglyphs:"mero",Malayalam:["mlm2","mlym"],Modi:"modi",Mongolian:"mong",Mro:"mroo",Meetei_Mayek:"mtei",Myanmar:["mym2","mymr"],Old_North_Arabian:"narb",Nabataean:"nbat",Nko:"nko ",Ogham:"ogam",Ol_Chiki:"olck",Old_Turkic:"orkh",Oriya:["ory2","orya"],Osmanya:"osma",Palmyrene:"palm",Pau_Cin_Hau:"pauc",Old_Permic:"perm",Phags_Pa:"phag",Inscriptional_Pahlavi:"phli",Psalter_Pahlavi:"phlp",Phoenician:"phnx",Miao:"plrd",Inscriptional_Parthian:"prti",Rejang:"rjng",Runic:"runr",Samaritan:"samr",Old_South_Arabian:"sarb",Saurashtra:"saur",Shavian:"shaw",Sharada:"shrd",Siddham:"sidd",Khudawadi:"sind",Sinhala:"sinh",Sora_Sompeng:"sora",Sundanese:"sund",Syloti_Nagri:"sylo",Syriac:"syrc",Tagbanwa:"tagb",Takri:"takr",Tai_Le:"tale",New_Tai_Lue:"talu",Tamil:["tml2","taml"],Tai_Viet:"tavt",Telugu:["tel2","telu"],Tifinagh:"tfng",Tagalog:"tglg",Thaana:"thaa",Thai:"thai",Tibetan:"tibt",Tirhuta:"tirh",Ugaritic:"ugar",Vai:"vai ",Warang_Citi:"wara",Old_Persian:"xpeo",Cuneiform:"xsux",Yi:"yi ",Inherited:"zinh",Common:"zyyy",Unknown:"zzzz"},ur={};for(let oA in Vi){let a=Vi[oA];if(Array.isArray(a))for(let h of a)ur[h]=oA;else ur[a]=oA}const Wi={arab:!0,hebr:!0,syrc:!0,thaa:!0,cprt:!0,khar:!0,phnx:!0,"nko ":!0,lydi:!0,avst:!0,armi:!0,phli:!0,prti:!0,sarb:!0,orkh:!0,samr:!0,mand:!0,merc:!0,mero:!0,mani:!0,mend:!0,nbat:!0,narb:!0,palm:!0,phlp:!0};function Sr(oA){return Wi[oA]?"rtl":"ltr"}class Va{get advanceWidth(){let a=0;for(let h of this.positions)a+=h.xAdvance;return a}get advanceHeight(){let a=0;for(let h of this.positions)a+=h.yAdvance;return a}get bbox(){let a=new Ri,h=0,F=0;for(let k=0;k[Si[oA].code,Si[oA][a]],js={rlig:Xe("ligatures","requiredLigatures"),clig:Xe("ligatures","contextualLigatures"),dlig:Xe("ligatures","rareLigatures"),hlig:Xe("ligatures","historicalLigatures"),liga:Xe("ligatures","commonLigatures"),hist:Xe("ligatures","historicalLigatures"),smcp:Xe("lowerCase","lowerCaseSmallCaps"),pcap:Xe("lowerCase","lowerCasePetiteCaps"),frac:Xe("fractions","diagonalFractions"),dnom:Xe("fractions","diagonalFractions"),numr:Xe("fractions","diagonalFractions"),afrc:Xe("fractions","verticalFractions"),case:Xe("caseSensitiveLayout","caseSensitiveLayout"),ccmp:Xe("unicodeDecomposition","canonicalComposition"),cpct:Xe("CJKVerticalRomanPlacement","CJKVerticalRomanCentered"),valt:Xe("CJKVerticalRomanPlacement","CJKVerticalRomanCentered"),swsh:Xe("contextualAlternates","swashAlternates"),cswh:Xe("contextualAlternates","contextualSwashAlternates"),curs:Xe("cursiveConnection","cursive"),c2pc:Xe("upperCase","upperCasePetiteCaps"),c2sc:Xe("upperCase","upperCaseSmallCaps"),init:Xe("smartSwash","wordInitialSwashes"),fin2:Xe("smartSwash","wordFinalSwashes"),medi:Xe("smartSwash","nonFinalSwashes"),med2:Xe("smartSwash","nonFinalSwashes"),fin3:Xe("smartSwash","wordFinalSwashes"),fina:Xe("smartSwash","wordFinalSwashes"),pkna:Xe("kanaSpacing","proportionalKana"),half:Xe("textSpacing","halfWidthText"),halt:Xe("textSpacing","altHalfWidthText"),hkna:Xe("alternateKana","alternateHorizKana"),vkna:Xe("alternateKana","alternateVertKana"),ital:Xe("italicCJKRoman","CJKItalicRoman"),lnum:Xe("numberCase","upperCaseNumbers"),onum:Xe("numberCase","lowerCaseNumbers"),mgrk:Xe("mathematicalExtras","mathematicalGreek"),calt:Xe("contextualAlternates","contextualAlternates"),vrt2:Xe("verticalSubstitution","substituteVerticalForms"),vert:Xe("verticalSubstitution","substituteVerticalForms"),tnum:Xe("numberSpacing","monospacedNumbers"),pnum:Xe("numberSpacing","proportionalNumbers"),sups:Xe("verticalPosition","superiors"),subs:Xe("verticalPosition","inferiors"),ordn:Xe("verticalPosition","ordinals"),pwid:Xe("textSpacing","proportionalText"),hwid:Xe("textSpacing","halfWidthText"),qwid:Xe("textSpacing","quarterWidthText"),twid:Xe("textSpacing","thirdWidthText"),fwid:Xe("textSpacing","proportionalText"),palt:Xe("textSpacing","altProportionalText"),trad:Xe("characterShape","traditionalCharacters"),smpl:Xe("characterShape","simplifiedCharacters"),jp78:Xe("characterShape","JIS1978Characters"),jp83:Xe("characterShape","JIS1983Characters"),jp90:Xe("characterShape","JIS1990Characters"),jp04:Xe("characterShape","JIS2004Characters"),expt:Xe("characterShape","expertCharacters"),hojo:Xe("characterShape","hojoCharacters"),nlck:Xe("characterShape","NLCCharacters"),tnam:Xe("characterShape","traditionalNamesCharacters"),ruby:Xe("rubyKana","rubyKana"),titl:Xe("styleOptions","titlingCaps"),zero:Xe("typographicExtras","slashedZero"),ss01:Xe("stylisticAlternatives","stylisticAltOne"),ss02:Xe("stylisticAlternatives","stylisticAltTwo"),ss03:Xe("stylisticAlternatives","stylisticAltThree"),ss04:Xe("stylisticAlternatives","stylisticAltFour"),ss05:Xe("stylisticAlternatives","stylisticAltFive"),ss06:Xe("stylisticAlternatives","stylisticAltSix"),ss07:Xe("stylisticAlternatives","stylisticAltSeven"),ss08:Xe("stylisticAlternatives","stylisticAltEight"),ss09:Xe("stylisticAlternatives","stylisticAltNine"),ss10:Xe("stylisticAlternatives","stylisticAltTen"),ss11:Xe("stylisticAlternatives","stylisticAltEleven"),ss12:Xe("stylisticAlternatives","stylisticAltTwelve"),ss13:Xe("stylisticAlternatives","stylisticAltThirteen"),ss14:Xe("stylisticAlternatives","stylisticAltFourteen"),ss15:Xe("stylisticAlternatives","stylisticAltFifteen"),ss16:Xe("stylisticAlternatives","stylisticAltSixteen"),ss17:Xe("stylisticAlternatives","stylisticAltSeventeen"),ss18:Xe("stylisticAlternatives","stylisticAltEighteen"),ss19:Xe("stylisticAlternatives","stylisticAltNineteen"),ss20:Xe("stylisticAlternatives","stylisticAltTwenty")};for(let oA=1;oA<=99;oA++)js[`cv${`00${oA}`.slice(-2)}`]=[Si.characterAlternatives.code,oA];let Ki={};for(let oA in js){let a=js[oA];null==Ki[a[0]]&&(Ki[a[0]]={}),Ki[a[0]][a[1]]=oA}function Nr(oA){let[a,h]=oA;if(isNaN(a))var F=Si[a]&&Si[a].code;else F=a;if(isNaN(h))var k=Si[a]&&Si[a][h];else k=h;return[F,k]}class Rs{lookup(a){switch(this.table.version){case 0:return this.table.values.getItem(a);case 2:case 4:{let k=0,X=this.table.binarySearchHeader.nUnits-1;for(;k<=X;){if(65535===(F=this.table.segments[h=k+X>>1]).firstGlyph)return null;if(aF.lastGlyph))return 2===this.table.version?F.value:F.values[a-F.firstGlyph];k=h+1}}return null}case 6:{let k=0,X=this.table.binarySearchHeader.nUnits-1;for(;k<=X;){var h,F;if(65535===(F=this.table.segments[h=k+X>>1]).glyph)return null;if(aF.glyph))return F.value;k=h+1}}return null}case 8:return this.table.values[a-this.table.firstGlyph];default:throw new Error(`Unknown lookup table format: ${this.table.version}`)}}glyphsForValue(a){let h=[];switch(this.table.version){case 2:case 4:for(let F of this.table.segments)if(2===this.table.version&&F.value===a)h.push(...ns(F.firstGlyph,F.lastGlyph+1));else for(let k=0;k=-1;){let IA=null,LA=1,ZA=!0;X===a.length||-1===X?LA=0:(IA=a[X],65535===IA.id?LA=2:(LA=this.lookupTable.lookup(IA.id),null==LA&&(LA=1)));let re=this.stateTable.stateArray.getItem(k)[LA],ke=this.stateTable.entryTable.getItem(re);0!==LA&&2!==LA&&(F(IA,ke,X),ZA=!(16384&ke.flags)),k=ke.newState,ZA&&(X+=O)}return a}traverse(a,h=0,F=new Set){if(F.has(h))return;F.add(h);let{nClasses:k,stateArray:X,entryTable:O}=this.stateTable,IA=X.getItem(h);for(let LA=4;LA=0;)65535===a[F].id&&a.splice(F,1),F--;return a}processSubtable(a,h){if(this.subtable=a,this.glyphs=h,4===this.subtable.type)return void this.processNoncontextualSubstitutions(this.subtable,this.glyphs);this.ligatureStack=[],this.markedGlyph=null,this.firstGlyph=null,this.lastGlyph=null,this.markedIndex=null;let F=this.getStateMachine(a),k=this.getProcessor();return F.process(this.glyphs,!!(4194304&this.subtable.coverage),k)}getStateMachine(a){return new $a(a.table.stateTable)}getProcessor(){switch(this.subtable.type){case 0:return this.processIndicRearragement;case 1:return this.processContextualSubstitution;case 2:return this.processLigature;case 4:return this.processNoncontextualSubstitutions;case 5:return this.processGlyphInsertion;default:throw new Error(`Invalid morx subtable type: ${this.subtable.type}`)}}processIndicRearragement(a,h,F){32768&h.flags&&(this.firstGlyph=F),8192&h.flags&&(this.lastGlyph=F),function go(oA,a,h,F){switch(a){case 0:return oA;case 1:return On(oA,[h,1],[F,0]);case 2:return On(oA,[h,0],[F,1]);case 3:return On(oA,[h,1],[F,1]);case 4:return On(oA,[h,2],[F,0]);case 5:return On(oA,[h,2],[F,0],!0,!1);case 6:return On(oA,[h,0],[F,2]);case 7:return On(oA,[h,0],[F,2],!1,!0);case 8:return On(oA,[h,1],[F,2]);case 9:return On(oA,[h,1],[F,2],!1,!0);case 10:return On(oA,[h,2],[F,1]);case 11:return On(oA,[h,2],[F,1],!0,!1);case 12:return On(oA,[h,2],[F,2]);case 13:return On(oA,[h,2],[F,2],!0,!1);case 14:return On(oA,[h,2],[F,2],!1,!0);case 15:return On(oA,[h,2],[F,2],!0,!0);default:throw new Error(`Unknown verb: ${a}`)}}(this.glyphs,15&h.flags,this.firstGlyph,this.lastGlyph)}processContextualSubstitution(a,h,F){let k=this.subtable.table.substitutionTable.items;if(65535!==h.markIndex){let O=k.getItem(h.markIndex);(X=new Rs(O).lookup((a=this.glyphs[this.markedGlyph]).id))&&(this.glyphs[this.markedGlyph]=this.font.getGlyph(X,a.codePoints))}if(65535!==h.currentIndex){let O=k.getItem(h.currentIndex);var X;(X=new Rs(O).lookup((a=this.glyphs[F]).id))&&(this.glyphs[F]=this.font.getGlyph(X,a.codePoints))}32768&h.flags&&(this.markedGlyph=F)}processLigature(a,h,F){if(32768&h.flags&&this.ligatureStack.push(F),8192&h.flags){let k=this.subtable.table.ligatureActions,X=this.subtable.table.components,O=this.subtable.table.ligatureList,IA=h.action,LA=!1,ZA=0,oe=[],re=[];for(;!LA;){let ke=this.ligatureStack.pop();oe.unshift(...this.glyphs[ke].codePoints);let at=k.getItem(IA++);LA=!!(2147483648&at);let Bt=!!(1073741824&at),Nt=(1073741823&at)<<2>>2;if(Nt+=this.glyphs[ke].id,ZA+=X.getItem(Nt),LA||Bt){let vt=O.getItem(ZA);this.glyphs[ke]=this.font.getGlyph(vt,oe),re.push(ke),ZA=0,oe=[]}else this.glyphs[ke]=this.font.getGlyph(65535)}this.ligatureStack.push(...re)}}processNoncontextualSubstitutions(a,h,F){let k=new Rs(a.table.lookupTable);for(F=0;F>>5,!!(1024&h.flags)),65535!==h.currentInsertIndex&&this._insertGlyphs(F,h.currentInsertIndex,(992&h.flags)>>>5,!!(2048&h.flags))}getSupportedFeatures(){let a=[];for(let h of this.morx.chains)for(let F of h.features)a.push([F.featureType,F.featureSetting]);return a}generateInputs(a){return this.inputCache||this.generateInputCache(),this.inputCache[a]||[]}generateInputCache(){this.inputCache={};for(let a of this.morx.chains){let h=a.defaultFlags;for(let F of a.subtables)F.subFeatureFlags&h&&this.generateInputsForSubtable(F)}}generateInputsForSubtable(a){if(2!==a.type)return;if(4194304&a.coverage)throw new Error("Reverse subtable, not supported.");this.subtable=a,this.ligatureStack=[];let F=this.getStateMachine(a),k=this.getProcessor(),X=[],O=[];this.glyphs=[],F.traverse({enter:(IA,LA)=>{let ZA=this.glyphs;O.push({glyphs:ZA.slice(),ligatureStack:this.ligatureStack.slice()});let oe=this.font.getGlyph(IA);X.push(oe),ZA.push(X[X.length-1]),k(ZA[ZA.length-1],LA,ZA.length-1);let re=0,ke=0;for(let at=0;atNt.id),Bt=this.inputCache[ke];Bt?Bt.push(at):this.inputCache[ke]=[at]}},exit:()=>{({glyphs:this.glyphs,ligatureStack:this.ligatureStack}=O.pop()),X.pop()}})}constructor(a){this.processIndicRearragement=this.processIndicRearragement.bind(this),this.processContextualSubstitution=this.processContextualSubstitution.bind(this),this.processLigature=this.processLigature.bind(this),this.processNoncontextualSubstitutions=this.processNoncontextualSubstitutions.bind(this),this.processGlyphInsertion=this.processGlyphInsertion.bind(this),this.font=a,this.morx=a.morx,this.inputCache=null}}function On(oA,a,h,F=!1,k=!1){let X=oA.splice(h[0]-(h[1]-1),h[1]);k&&X.reverse();let O=oA.splice(a[0],a[1],...X);return F&&O.reverse(),oA.splice(h[0]-(a[1]-1),0,...O),oA}(0,M._)([$],Hr.prototype,"getStateMachine",null);class fo{substitute(a){"rtl"===a.direction&&a.glyphs.reverse(),this.morxProcessor.process(a.glyphs,function Ka(oA){let a={};for(let h in oA){let F;(F=js[h])&&(null==a[F[0]]&&(a[F[0]]={}),a[F[0]][F[1]]=oA[h])}return a}(a.features))}getAvailableFeatures(a,h){return function Xa(oA){let a={};if(Array.isArray(oA))for(let h=0;h0&&a.applyFeatures(k,h,F)}constructor(a,h,F){this.font=a,this.script=h,this.direction=F,this.stages=[],this.globalFeatures={},this.allFeatures={}}}const Eo=["rvrn"],ho=["ccmp","locl","rlig","mark","mkmk"],wo=["frac","numr","dnom"],Co=["calt","clig","liga","rclt","curs","kern"],Qo={ltr:["ltra","ltrm"],rtl:["rtla","rtlm"]};class Ni{static plan(a,h,F){this.planPreprocessing(a),this.planFeatures(a),this.planPostprocessing(a,F),a.assignGlobalFeatures(h),this.assignFeatures(a,h)}static planPreprocessing(a){a.add({global:[...Eo,...Qo[a.direction]],local:wo})}static planFeatures(a){}static planPostprocessing(a,h){a.add([...ho,...Co]),a.setFeatureOverrides(h)}static assignFeatures(a,h){for(let F=0;F0&&(0,V.isDigit)(h[X-1].codePoints[0]);)h[X-1].features.numr=!0,h[X-1].features.frac=!0,X--;for(;Othis.index||this.index>=this.glyphs.length?null:this.glyphs[this.index]}next(){return this.move(1)}prev(){return this.move(-1)}peek(a=1){let h=this.index,F=this.increment(a);return this.index=h,F}peekIndex(a=1){let h=this.index;this.increment(a);let F=this.index;return this.index=h,F}increment(a=1){let h=a<0?-1:1;for(a=Math.abs(a);a--;)this.move(h);return this.glyphs[this.index]}constructor(a,h){this.glyphs=a,this.reset(h)}}const Fo=["DFLT","dflt","latn"];class Vs{findScript(a){if(null==this.table.scriptList)return null;Array.isArray(a)||(a=[a]);for(let h of a)for(let F of this.table.scriptList)if(F.tag===h)return F;return null}selectScript(a,h,F){let X,k=!1;if(!this.script||a!==this.scriptTag){if(X=this.findScript(a),X||(X=this.findScript(Fo)),!X)return this.scriptTag;this.scriptTag=X.tag,this.script=X.script,this.language=null,this.languageTag=null,k=!0}if((!F||F!==this.direction)&&(this.direction=F||Sr(a)),h&&h.length<4&&(h+=" ".repeat(4-h.length)),!h||h!==this.languageTag){this.language=null;for(let O of this.script.langSysRecords)if(O.tag===h){this.language=O.langSys,this.languageTag=O.tag;break}this.language||(this.language=this.script.defaultLangSys,this.languageTag=null),k=!0}if(k&&(this.features={},this.language))for(let O of this.language.featureIndexes){let IA=this.table.featureList[O],LA=this.substituteFeatureForVariations(O);this.features[IA.tag]=LA||IA.feature}return this.scriptTag}lookupsForFeatures(a=[],h){let F=[];for(let k of a){let X=this.features[k];if(X)for(let O of X.lookupListIndexes)h&&-1!==h.indexOf(O)||F.push({feature:k,index:O,lookup:this.table.lookupList.get(O)})}return F.sort((k,X)=>k.index-X.index),F}substituteFeatureForVariations(a){if(-1===this.variationsIndex)return null;let F=this.table.featureVariations.featureVariationRecords[this.variationsIndex].featureTableSubstitution.substitutions;for(let k of F)if(k.featureIndex===a)return k.alternateFeatureTable;return null}findVariationsIndex(a){let h=this.table.featureVariations;if(!h)return-1;let F=h.featureVariationRecords;for(let k=0;k{let k=F.axisIndexF===k.id)}sequenceMatchIndices(a,h){return this.match(a,h,(F,k)=>this.currentFeature in k.features&&F===k.id,[])}coverageSequenceMatches(a,h){return this.match(a,h,(F,k)=>this.coverageIndex(F,k.id)>=0)}getClassID(a,h){switch(h.version){case 1:let F=a-h.startGlyph;if(F>=0&&Fk===this.getClassID(X.id,F))}applyContext(a){let h,F;switch(a.version){case 1:if(h=this.coverageIndex(a.coverage),-1===h)return!1;F=a.ruleSets[h];for(let k of F)if(this.sequenceMatches(1,k.input))return this.applyLookupList(k.lookupRecords);break;case 2:if(-1===this.coverageIndex(a.coverage)||(h=this.getClassID(this.glyphIterator.cur.id,a.classDef),-1===h))return!1;F=a.classSet[h];for(let k of F)if(this.classSequenceMatches(1,k.classes,a.classDef))return this.applyLookupList(k.lookupRecords);break;case 3:if(this.coverageSequenceMatches(0,a.coverages))return this.applyLookupList(a.lookupRecords)}return!1}applyChainingContext(a){let h;switch(a.version){case 1:if(h=this.coverageIndex(a.coverage),-1===h)return!1;let F=a.chainRuleSets[h];for(let X of F)if(this.sequenceMatches(-X.backtrack.length,X.backtrack)&&this.sequenceMatches(1,X.input)&&this.sequenceMatches(1+X.input.length,X.lookahead))return this.applyLookupList(X.lookupRecords);break;case 2:if(-1===this.coverageIndex(a.coverage))return!1;h=this.getClassID(this.glyphIterator.cur.id,a.inputClassDef);let k=a.chainClassSet[h];if(!k)return!1;for(let X of k)if(this.classSequenceMatches(-X.backtrack.length,X.backtrack,a.backtrackClassDef)&&this.classSequenceMatches(1,X.input,a.inputClassDef)&&this.classSequenceMatches(1+X.input.length,X.lookahead,a.lookaheadClassDef))return this.applyLookupList(X.lookupRecords);break;case 3:if(this.coverageSequenceMatches(-a.backtrackGlyphCount,a.backtrackCoverage)&&this.coverageSequenceMatches(0,a.inputCoverage)&&this.coverageSequenceMatches(a.inputGlyphCount,a.lookaheadCoverage))return this.applyLookupList(a.lookupRecords)}return!1}constructor(a,h){this.font=a,this.table=h,this.script=null,this.scriptTag=null,this.language=null,this.languageTag=null,this.features={},this.lookups={},this.variationsIndex=a._variationProcessor?this.findVariationsIndex(a._variationProcessor.normalizedCoords):-1,this.selectScript(),this.glyphs=[],this.positions=[],this.ligatureID=1,this.currentFeature=null}}class ri{get id(){return this._id}set id(a){this._id=a,this.substituted=!0;let h=this._font.GDEF;if(h&&h.glyphClassDef){let F=Vs.prototype.getClassID(a,h.glyphClassDef);this.isBase=1===F,this.isLigature=2===F,this.isMark=3===F,this.markAttachmentType=h.markAttachClassDef?Vs.prototype.getClassID(a,h.markAttachClassDef):0}else this.isMark=this.codePoints.length>0&&this.codePoints.every(V.isMark),this.isBase=!this.isMark,this.isLigature=this.codePoints.length>1,this.markAttachmentType=0}copy(){return new ri(this._font,this.id,this.codePoints,this.features)}constructor(a,h,F=[],k){if(this._font=a,this.codePoints=F,this.id=h,this.features={},Array.isArray(k))for(let X=0;X4352<=oA&&oA<=4447||43360<=oA&&oA<=43388)(oA)?1:(oA=>4448<=oA&&oA<=4519||55216<=oA&&oA<=55238)(oA)?2:(oA=>4520<=oA&&oA<=4607||55243<=oA&&oA<=55291)(oA)?3:(oA=>oA-is<11173&&(oA-is)%28==0)(oA)?4:(oA=>is<=oA&&oA<=55204)(oA)?5:(oA=>12334<=oA&&oA<=12335)(oA)?6:0}const mi=1,dr=2,Qr=4,mr=5,Oo=[[[0,0],[0,1],[0,0],[0,0],[mi,2],[mi,3],[mr,0]],[[0,0],[0,1],[dr,2],[0,0],[mi,2],[mi,3],[mr,0]],[[0,0],[0,1],[0,0],[dr,3],[mi,2],[mi,3],[Qr,0]],[[0,0],[0,1],[0,0],[0,0],[mi,2],[mi,3],[Qr,0]]];function Ns(oA,a,h){return new ri(oA,oA.glyphForCodePoint(a).id,[a],h)}function Wr(oA,a,h){let F=oA[a],X=F.codePoints[0]-is,O=Ui+X%28;X=X/28|0;let IA=4352+X/21|0,LA=4449+X%21;if(!h.hasGlyphForCodePoint(IA)||!h.hasGlyphForCodePoint(LA)||O!==Ui&&!h.hasGlyphForCodePoint(O))return a;let ZA=Ns(h,IA,F.features);ZA.features.ljmo=!0;let oe=Ns(h,LA,F.features);oe.features.vjmo=!0;let re=[ZA,oe];if(O>Ui){let ke=Ns(h,O,F.features);ke.features.tjmo=!0,re.push(ke)}return oA.splice(a,1,...re),a+re.length-1}function Jo(oA,a,h){let LA,ZA,oe,re,F=oA[a],X=$s(oA[a].codePoints[0]),O=oA[a-1].codePoints[0],IA=$s(O);if(4===IA&&3===X)LA=O,re=F;else{2===X?(ZA=oA[a-1],oe=F):(ZA=oA[a-2],oe=oA[a-1],re=F);let at=ZA.codePoints[0],Bt=oe.codePoints[0];(oA=>4352<=oA&&oA<=4370)(at)&&(oA=>4449<=oA&&oA<=4469)(Bt)&&(LA=is+28*(21*(at-4352)+(Bt-4449)))}let ke=re&&re.codePoints[0]||Ui;if(null!=LA&&(ke===Ui||(oA=>1<=oA&&oA<=4546)(ke))){let at=LA+(ke-Ui);if(h.hasGlyphForCodePoint(at)){let Bt=2===IA?3:2;return oA.splice(a-Bt+1,Bt,Ns(h,at,F.features)),a-Bt+1}}return ZA&&(ZA.features.ljmo=!0),oe&&(oe.features.vjmo=!0),re&&(re.features.tjmo=!0),4===IA?(Wr(oA,a-1,h),a+1):a}function Vo(oA,a,h){let F=oA[a];if(0===h.glyphForCodePoint(oA[a].codePoints[0]).advanceWidth)return;let O=function _o(oA){switch($s(oA)){case 4:case 5:return 1;case 2:return 2;case 3:return 3}}(oA[a-1].codePoints[0]);return oA.splice(a,1),oA.splice(a-O,0,F)}function Wo(oA,a,h){let F=oA[a],k=oA[a].codePoints[0];if(h.hasGlyphForCodePoint(9676)){let X=Ns(h,9676,F.features),O=0===h.glyphForCodePoint(k).advanceWidth?a:a+1;oA.splice(O,0,X),a++}return a}var Mr,Xi;Mr=JSON.parse('{"stateTable":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,2,3,4,5,6,7,8,9,0,10,11,11,12,13,14,15,16,17],[0,0,0,18,19,20,21,22,23,0,24,0,0,25,26,0,0,27,0],[0,0,0,28,29,30,31,32,33,0,34,0,0,35,36,0,0,37,0],[0,0,0,38,5,7,7,8,9,0,10,0,0,0,13,0,0,16,0],[0,39,0,0,0,40,41,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,43,44,44,8,9,0,0,0,0,12,43,0,0,0,0],[0,0,0,0,43,44,44,8,9,0,0,0,0,0,43,0,0,0,0],[0,0,0,45,46,47,48,49,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,50,0,0,51,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0],[0,0,0,53,54,55,56,57,58,0,59,0,0,60,61,0,0,62,0],[0,0,0,4,5,7,7,8,9,0,10,0,0,0,13,0,0,16,0],[0,63,64,0,0,40,41,0,9,0,10,0,0,0,42,0,63,0,0],[0,2,3,4,5,6,7,8,9,0,10,11,11,12,13,0,2,16,0],[0,0,0,18,65,20,21,22,23,0,24,0,0,25,26,0,0,27,0],[0,0,0,0,66,67,67,8,9,0,10,0,0,0,68,0,0,0,0],[0,0,0,69,0,70,70,0,71,0,72,0,0,0,0,0,0,0,0],[0,0,0,73,19,74,74,22,23,0,24,0,0,0,26,0,0,27,0],[0,75,0,0,0,76,77,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,79,80,80,22,23,0,0,0,0,25,79,0,0,0,0],[0,0,0,18,19,20,74,22,23,0,24,0,0,25,26,0,0,27,0],[0,0,0,81,82,83,84,85,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,86,0,0,87,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0],[0,0,0,18,19,74,74,22,23,0,24,0,0,0,26,0,0,27,0],[0,89,90,0,0,76,77,0,23,0,24,0,0,0,78,0,89,0,0],[0,0,0,0,91,92,92,22,23,0,24,0,0,0,93,0,0,0,0],[0,0,0,94,29,95,31,32,33,0,34,0,0,0,36,0,0,37,0],[0,96,0,0,0,97,98,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,100,101,101,32,33,0,0,0,0,35,100,0,0,0,0],[0,0,0,0,100,101,101,32,33,0,0,0,0,0,100,0,0,0,0],[0,0,0,102,103,104,105,106,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,107,0,0,108,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0],[0,0,0,28,29,95,31,32,33,0,34,0,0,0,36,0,0,37,0],[0,110,111,0,0,97,98,0,33,0,34,0,0,0,99,0,110,0,0],[0,0,0,0,112,113,113,32,33,0,34,0,0,0,114,0,0,0,0],[0,0,0,0,5,7,7,8,9,0,10,0,0,0,13,0,0,16,0],[0,0,0,115,116,117,118,8,9,0,10,0,0,119,120,0,0,16,0],[0,0,0,0,0,121,121,0,9,0,10,0,0,0,42,0,0,0,0],[0,39,0,122,0,123,123,8,9,0,10,0,0,0,42,0,39,0,0],[0,124,64,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0],[0,39,0,0,0,121,125,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,0,126,126,8,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,46,47,48,49,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,47,47,49,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,127,127,49,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,128,127,127,49,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,129,130,131,132,133,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,50,0,0,0,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0],[0,0,0,135,54,56,56,57,58,0,59,0,0,0,61,0,0,62,0],[0,136,0,0,0,137,138,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,140,141,141,57,58,0,0,0,0,60,140,0,0,0,0],[0,0,0,0,140,141,141,57,58,0,0,0,0,0,140,0,0,0,0],[0,0,0,142,143,144,145,146,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,147,0,0,148,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0],[0,0,0,53,54,56,56,57,58,0,59,0,0,0,61,0,0,62,0],[0,150,151,0,0,137,138,0,58,0,59,0,0,0,139,0,150,0,0],[0,0,0,0,152,153,153,57,58,0,59,0,0,0,154,0,0,0,0],[0,0,0,155,116,156,157,8,9,0,10,0,0,158,120,0,0,16,0],[0,0,0,0,0,121,121,0,9,0,10,0,0,0,0,0,0,0,0],[0,75,3,4,5,159,160,8,161,0,162,0,11,12,163,0,75,16,0],[0,0,0,0,0,40,164,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,165,44,44,8,9,0,0,0,0,0,165,0,0,0,0],[0,124,64,0,0,40,164,0,9,0,10,0,0,0,42,0,124,0,0],[0,0,0,0,0,70,70,0,71,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,166,0,0,167,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0],[0,0,0,0,19,74,74,22,23,0,24,0,0,0,26,0,0,27,0],[0,0,0,0,79,80,80,22,23,0,0,0,0,0,79,0,0,0,0],[0,0,0,169,170,171,172,22,23,0,24,0,0,173,174,0,0,27,0],[0,0,0,0,0,175,175,0,23,0,24,0,0,0,78,0,0,0,0],[0,75,0,176,0,177,177,22,23,0,24,0,0,0,78,0,75,0,0],[0,178,90,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0],[0,75,0,0,0,175,179,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,0,180,180,22,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,82,83,84,85,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,83,83,85,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,181,181,85,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,182,181,181,85,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,183,184,185,186,187,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,86,0,0,0,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0],[0,0,0,189,170,190,191,22,23,0,24,0,0,192,174,0,0,27,0],[0,0,0,0,0,175,175,0,23,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,76,193,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,194,80,80,22,23,0,0,0,0,0,194,0,0,0,0],[0,178,90,0,0,76,193,0,23,0,24,0,0,0,78,0,178,0,0],[0,0,0,0,29,95,31,32,33,0,34,0,0,0,36,0,0,37,0],[0,0,0,0,100,101,101,32,33,0,0,0,0,0,100,0,0,0,0],[0,0,0,195,196,197,198,32,33,0,34,0,0,199,200,0,0,37,0],[0,0,0,0,0,201,201,0,33,0,34,0,0,0,99,0,0,0,0],[0,96,0,202,0,203,203,32,33,0,34,0,0,0,99,0,96,0,0],[0,204,111,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0],[0,96,0,0,0,201,205,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,0,206,206,32,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,103,104,105,106,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,104,104,106,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,207,207,106,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,208,207,207,106,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,209,210,211,212,213,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,107,0,0,0,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0],[0,0,0,215,196,216,217,32,33,0,34,0,0,218,200,0,0,37,0],[0,0,0,0,0,201,201,0,33,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,97,219,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,220,101,101,32,33,0,0,0,0,0,220,0,0,0,0],[0,204,111,0,0,97,219,0,33,0,34,0,0,0,99,0,204,0,0],[0,0,0,221,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,223,0,0,0,40,224,0,9,0,10,0,0,0,42,0,223,0,0],[0,0,0,0,225,44,44,8,9,0,0,0,0,119,225,0,0,0,0],[0,0,0,115,116,117,222,8,9,0,10,0,0,119,120,0,0,16,0],[0,0,0,115,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,226,64,0,0,40,224,0,9,0,10,0,0,0,42,0,226,0,0],[0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0],[0,39,0,0,0,121,121,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,0,44,44,8,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,227,0,228,229,0,9,0,10,0,0,230,0,0,0,0,0],[0,39,0,122,0,121,121,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,231,231,49,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,130,131,132,133,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,131,131,133,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,233,233,133,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,234,233,233,133,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,235,236,237,238,239,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,54,56,56,57,58,0,59,0,0,0,61,0,0,62,0],[0,0,0,240,241,242,243,57,58,0,59,0,0,244,245,0,0,62,0],[0,0,0,0,0,246,246,0,58,0,59,0,0,0,139,0,0,0,0],[0,136,0,247,0,248,248,57,58,0,59,0,0,0,139,0,136,0,0],[0,249,151,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0],[0,136,0,0,0,246,250,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,0,251,251,57,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,143,144,145,146,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,144,144,146,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,252,252,146,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,253,252,252,146,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,254,255,256,257,258,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,147,0,0,0,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0],[0,0,0,260,241,261,262,57,58,0,59,0,0,263,245,0,0,62,0],[0,0,0,0,0,246,246,0,58,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,137,264,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,265,141,141,57,58,0,0,0,0,0,265,0,0,0,0],[0,249,151,0,0,137,264,0,58,0,59,0,0,0,139,0,249,0,0],[0,0,0,221,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,9,0,0,0,0,158,225,0,0,0,0],[0,0,0,155,116,156,222,8,9,0,10,0,0,158,120,0,0,16,0],[0,0,0,155,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,0,0,0,43,266,266,8,161,0,24,0,0,12,267,0,0,0,0],[0,75,0,176,43,268,268,269,161,0,24,0,0,0,267,0,75,0,0],[0,0,0,0,0,270,0,0,271,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0],[0,273,274,0,0,40,41,0,9,0,10,0,0,0,42,0,273,0,0],[0,0,0,40,0,123,123,8,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,121,275,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,166,0,0,0,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0],[0,0,0,277,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,279,0,0,0,76,280,0,23,0,24,0,0,0,78,0,279,0,0],[0,0,0,0,281,80,80,22,23,0,0,0,0,173,281,0,0,0,0],[0,0,0,169,170,171,278,22,23,0,24,0,0,173,174,0,0,27,0],[0,0,0,169,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,282,90,0,0,76,280,0,23,0,24,0,0,0,78,0,282,0,0],[0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0],[0,75,0,0,0,175,175,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,0,80,80,22,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,283,0,284,285,0,23,0,24,0,0,286,0,0,0,0,0],[0,75,0,176,0,175,175,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,287,287,85,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,184,185,186,187,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,185,185,187,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,289,289,187,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,290,289,289,187,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,291,292,293,294,295,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,277,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,0,0,0,281,80,80,22,23,0,0,0,0,192,281,0,0,0,0],[0,0,0,189,170,190,278,22,23,0,24,0,0,192,174,0,0,27,0],[0,0,0,189,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,0,0,76,0,177,177,22,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,175,296,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,297,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,299,0,0,0,97,300,0,33,0,34,0,0,0,99,0,299,0,0],[0,0,0,0,301,101,101,32,33,0,0,0,0,199,301,0,0,0,0],[0,0,0,195,196,197,298,32,33,0,34,0,0,199,200,0,0,37,0],[0,0,0,195,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,302,111,0,0,97,300,0,33,0,34,0,0,0,99,0,302,0,0],[0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],[0,96,0,0,0,201,201,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,0,101,101,32,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,303,0,304,305,0,33,0,34,0,0,306,0,0,0,0,0],[0,96,0,202,0,201,201,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,307,307,106,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,210,211,212,213,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,211,211,213,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,309,309,213,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,310,309,309,213,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,311,312,313,314,315,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,297,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,0,0,0,301,101,101,32,33,0,0,0,0,218,301,0,0,0,0],[0,0,0,215,196,216,298,32,33,0,34,0,0,218,200,0,0,37,0],[0,0,0,215,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,0,0,97,0,203,203,32,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,201,316,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,9,0,0,0,0,0,225,0,0,0,0],[0,0,0,317,318,319,320,8,9,0,10,0,0,321,322,0,0,16,0],[0,223,0,323,0,123,123,8,9,0,10,0,0,0,42,0,223,0,0],[0,223,0,0,0,121,324,0,9,0,10,0,0,0,42,0,223,0,0],[0,0,0,325,318,326,327,8,9,0,10,0,0,328,322,0,0,16,0],[0,0,0,64,0,121,121,0,9,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,9,0,0,0,0,230,0,0,0,0,0],[0,0,0,227,0,228,121,0,9,0,10,0,0,230,0,0,0,0,0],[0,0,0,227,0,121,121,0,9,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0],[0,0,0,0,0,329,329,133,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,236,237,238,239,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,237,237,239,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,331,331,239,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,332,331,331,239,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,333,40,121,334,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,335,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,337,0,0,0,137,338,0,58,0,59,0,0,0,139,0,337,0,0],[0,0,0,0,339,141,141,57,58,0,0,0,0,244,339,0,0,0,0],[0,0,0,240,241,242,336,57,58,0,59,0,0,244,245,0,0,62,0],[0,0,0,240,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,340,151,0,0,137,338,0,58,0,59,0,0,0,139,0,340,0,0],[0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0],[0,136,0,0,0,246,246,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,0,141,141,57,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,341,0,342,343,0,58,0,59,0,0,344,0,0,0,0,0],[0,136,0,247,0,246,246,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,345,345,146,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,255,256,257,258,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,256,256,258,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,347,347,258,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,348,347,347,258,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,349,350,351,352,353,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,335,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,0,0,0,339,141,141,57,58,0,0,0,0,263,339,0,0,0,0],[0,0,0,260,241,261,336,57,58,0,59,0,0,263,245,0,0,62,0],[0,0,0,260,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,0,0,137,0,248,248,57,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,246,354,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,126,126,8,23,0,0,0,0,0,0,0,0,0,0],[0,355,90,0,0,121,125,0,9,0,10,0,0,0,42,0,355,0,0],[0,0,0,0,0,356,356,269,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,357,358,359,360,361,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,0,0,0,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0],[0,0,0,364,116,365,366,8,161,0,162,0,0,367,120,0,0,16,0],[0,0,0,0,0,368,368,0,161,0,162,0,0,0,0,0,0,0,0],[0,0,0,40,0,121,121,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,0,0,0,281,80,80,22,23,0,0,0,0,0,281,0,0,0,0],[0,0,0,369,370,371,372,22,23,0,24,0,0,373,374,0,0,27,0],[0,279,0,375,0,177,177,22,23,0,24,0,0,0,78,0,279,0,0],[0,279,0,0,0,175,376,0,23,0,24,0,0,0,78,0,279,0,0],[0,0,0,377,370,378,379,22,23,0,24,0,0,380,374,0,0,27,0],[0,0,0,90,0,175,175,0,23,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,23,0,0,0,0,286,0,0,0,0,0],[0,0,0,283,0,284,175,0,23,0,24,0,0,286,0,0,0,0,0],[0,0,0,283,0,175,175,0,23,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0],[0,0,0,0,0,381,381,187,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,292,293,294,295,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,293,293,295,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,383,383,295,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,384,383,383,295,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,385,76,175,386,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,76,0,175,175,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,0,0,0,301,101,101,32,33,0,0,0,0,0,301,0,0,0,0],[0,0,0,387,388,389,390,32,33,0,34,0,0,391,392,0,0,37,0],[0,299,0,393,0,203,203,32,33,0,34,0,0,0,99,0,299,0,0],[0,299,0,0,0,201,394,0,33,0,34,0,0,0,99,0,299,0,0],[0,0,0,395,388,396,397,32,33,0,34,0,0,398,392,0,0,37,0],[0,0,0,111,0,201,201,0,33,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,33,0,0,0,0,306,0,0,0,0,0],[0,0,0,303,0,304,201,0,33,0,34,0,0,306,0,0,0,0,0],[0,0,0,303,0,201,201,0,33,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0],[0,0,0,0,0,399,399,213,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,312,313,314,315,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,313,313,315,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,401,401,315,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,402,401,401,315,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,403,97,201,404,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,97,0,201,201,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,405,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,407,0,0,0,40,408,0,9,0,10,0,0,0,42,0,407,0,0],[0,0,0,0,409,44,44,8,9,0,0,0,0,321,409,0,0,0,0],[0,0,0,317,318,319,406,8,9,0,10,0,0,321,322,0,0,16,0],[0,0,0,317,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,410,64,0,0,40,408,0,9,0,10,0,0,0,42,0,410,0,0],[0,223,0,0,0,121,121,0,9,0,10,0,0,0,42,0,223,0,0],[0,223,0,323,0,121,121,0,9,0,10,0,0,0,42,0,223,0,0],[0,0,0,405,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,0,0,0,409,44,44,8,9,0,0,0,0,328,409,0,0,0,0],[0,0,0,325,318,326,406,8,9,0,10,0,0,328,322,0,0,16,0],[0,0,0,325,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0],[0,0,0,0,0,411,411,239,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,412,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,40,121,334,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,413,0,0,0,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,0,0,0,339,141,141,57,58,0,0,0,0,0,339,0,0,0,0],[0,0,0,414,415,416,417,57,58,0,59,0,0,418,419,0,0,62,0],[0,337,0,420,0,248,248,57,58,0,59,0,0,0,139,0,337,0,0],[0,337,0,0,0,246,421,0,58,0,59,0,0,0,139,0,337,0,0],[0,0,0,422,415,423,424,57,58,0,59,0,0,425,419,0,0,62,0],[0,0,0,151,0,246,246,0,58,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,58,0,0,0,0,344,0,0,0,0,0],[0,0,0,341,0,342,246,0,58,0,59,0,0,344,0,0,0,0,0],[0,0,0,341,0,246,246,0,58,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0],[0,0,0,0,0,426,426,258,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,350,351,352,353,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,351,351,353,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,428,428,353,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,429,428,428,353,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,430,137,246,431,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,137,0,246,246,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,432,116,433,434,8,161,0,162,0,0,435,120,0,0,16,0],[0,0,0,0,0,180,180,269,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,358,359,360,361,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,359,359,361,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,436,436,361,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,437,436,436,361,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,438,439,440,441,442,161,0,162,0,0,0,362,0,0,0,0],[0,443,274,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,444,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,161,0,0,0,0,367,225,0,0,0,0],[0,0,0,364,116,365,445,8,161,0,162,0,0,367,120,0,0,16,0],[0,0,0,364,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,446,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,448,0,0,0,76,449,0,23,0,24,0,0,0,78,0,448,0,0],[0,0,0,0,450,80,80,22,23,0,0,0,0,373,450,0,0,0,0],[0,0,0,369,370,371,447,22,23,0,24,0,0,373,374,0,0,27,0],[0,0,0,369,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,451,90,0,0,76,449,0,23,0,24,0,0,0,78,0,451,0,0],[0,279,0,0,0,175,175,0,23,0,24,0,0,0,78,0,279,0,0],[0,279,0,375,0,175,175,0,23,0,24,0,0,0,78,0,279,0,0],[0,0,0,446,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,0,0,0,450,80,80,22,23,0,0,0,0,380,450,0,0,0,0],[0,0,0,377,370,378,447,22,23,0,24,0,0,380,374,0,0,27,0],[0,0,0,377,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0],[0,0,0,0,0,452,452,295,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,453,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,76,175,386,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,454,0,0,0,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,455,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,457,0,0,0,97,458,0,33,0,34,0,0,0,99,0,457,0,0],[0,0,0,0,459,101,101,32,33,0,0,0,0,391,459,0,0,0,0],[0,0,0,387,388,389,456,32,33,0,34,0,0,391,392,0,0,37,0],[0,0,0,387,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,460,111,0,0,97,458,0,33,0,34,0,0,0,99,0,460,0,0],[0,299,0,0,0,201,201,0,33,0,34,0,0,0,99,0,299,0,0],[0,299,0,393,0,201,201,0,33,0,34,0,0,0,99,0,299,0,0],[0,0,0,455,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,0,0,0,459,101,101,32,33,0,0,0,0,398,459,0,0,0,0],[0,0,0,395,388,396,456,32,33,0,34,0,0,398,392,0,0,37,0],[0,0,0,395,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0],[0,0,0,0,0,461,461,315,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,462,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,97,201,404,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,463,0,0,0,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,0,0,0,409,44,44,8,9,0,0,0,0,0,409,0,0,0,0],[0,0,0,464,465,466,467,8,9,0,10,0,0,468,469,0,0,16,0],[0,407,0,470,0,123,123,8,9,0,10,0,0,0,42,0,407,0,0],[0,407,0,0,0,121,471,0,9,0,10,0,0,0,42,0,407,0,0],[0,0,0,472,465,473,474,8,9,0,10,0,0,475,469,0,0,16,0],[0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0],[0,0,0,0,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,477,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,479,0,0,0,137,480,0,58,0,59,0,0,0,139,0,479,0,0],[0,0,0,0,481,141,141,57,58,0,0,0,0,418,481,0,0,0,0],[0,0,0,414,415,416,478,57,58,0,59,0,0,418,419,0,0,62,0],[0,0,0,414,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,482,151,0,0,137,480,0,58,0,59,0,0,0,139,0,482,0,0],[0,337,0,0,0,246,246,0,58,0,59,0,0,0,139,0,337,0,0],[0,337,0,420,0,246,246,0,58,0,59,0,0,0,139,0,337,0,0],[0,0,0,477,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,0,0,0,481,141,141,57,58,0,0,0,0,425,481,0,0,0,0],[0,0,0,422,415,423,478,57,58,0,59,0,0,425,419,0,0,62,0],[0,0,0,422,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0],[0,0,0,0,0,483,483,353,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,137,246,431,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,485,0,0,0,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,444,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,161,0,0,0,0,435,225,0,0,0,0],[0,0,0,432,116,433,445,8,161,0,162,0,0,435,120,0,0,16,0],[0,0,0,432,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,0,486,486,361,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,439,440,441,442,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,440,440,442,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,488,488,442,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,489,488,488,442,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,490,491,492,493,494,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,495,0,496,497,0,161,0,162,0,0,498,0,0,0,0,0],[0,0,0,0,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,161,0,0,0,0,0,225,0,0,0,0],[0,0,0,0,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,0,0,0,450,80,80,22,23,0,0,0,0,0,450,0,0,0,0],[0,0,0,499,500,501,502,22,23,0,24,0,0,503,504,0,0,27,0],[0,448,0,505,0,177,177,22,23,0,24,0,0,0,78,0,448,0,0],[0,448,0,0,0,175,506,0,23,0,24,0,0,0,78,0,448,0,0],[0,0,0,507,500,508,509,22,23,0,24,0,0,510,504,0,0,27,0],[0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0],[0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,0,0,0,459,101,101,32,33,0,0,0,0,0,459,0,0,0,0],[0,0,0,512,513,514,515,32,33,0,34,0,0,516,517,0,0,37,0],[0,457,0,518,0,203,203,32,33,0,34,0,0,0,99,0,457,0,0],[0,457,0,0,0,201,519,0,33,0,34,0,0,0,99,0,457,0,0],[0,0,0,520,513,521,522,32,33,0,34,0,0,523,517,0,0,37,0],[0,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0],[0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,525,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,527,0,0,0,40,528,0,9,0,10,0,0,0,42,0,527,0,0],[0,0,0,0,529,44,44,8,9,0,0,0,0,468,529,0,0,0,0],[0,0,0,464,465,466,526,8,9,0,10,0,0,468,469,0,0,16,0],[0,0,0,464,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,530,64,0,0,40,528,0,9,0,10,0,0,0,42,0,530,0,0],[0,407,0,0,0,121,121,0,9,0,10,0,0,0,42,0,407,0,0],[0,407,0,470,0,121,121,0,9,0,10,0,0,0,42,0,407,0,0],[0,0,0,525,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,0,0,0,529,44,44,8,9,0,0,0,0,475,529,0,0,0,0],[0,0,0,472,465,473,526,8,9,0,10,0,0,475,469,0,0,16,0],[0,0,0,472,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0],[0,0,0,0,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,0,0,0,481,141,141,57,58,0,0,0,0,0,481,0,0,0,0],[0,0,0,531,532,533,534,57,58,0,59,0,0,535,536,0,0,62,0],[0,479,0,537,0,248,248,57,58,0,59,0,0,0,139,0,479,0,0],[0,479,0,0,0,246,538,0,58,0,59,0,0,0,139,0,479,0,0],[0,0,0,539,532,540,541,57,58,0,59,0,0,542,536,0,0,62,0],[0,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0],[0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0],[0,0,0,0,0,544,544,442,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,491,492,493,494,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,492,492,494,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,546,546,494,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,547,546,546,494,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,548,549,368,550,0,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,274,0,368,368,0,161,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,161,0,0,0,0,498,0,0,0,0,0],[0,0,0,495,0,496,368,0,161,0,162,0,0,498,0,0,0,0,0],[0,0,0,495,0,368,368,0,161,0,162,0,0,0,0,0,0,0,0],[0,0,0,551,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,553,0,0,0,76,554,0,23,0,24,0,0,0,78,0,553,0,0],[0,0,0,0,555,80,80,22,23,0,0,0,0,503,555,0,0,0,0],[0,0,0,499,500,501,552,22,23,0,24,0,0,503,504,0,0,27,0],[0,0,0,499,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,556,90,0,0,76,554,0,23,0,24,0,0,0,78,0,556,0,0],[0,448,0,0,0,175,175,0,23,0,24,0,0,0,78,0,448,0,0],[0,448,0,505,0,175,175,0,23,0,24,0,0,0,78,0,448,0,0],[0,0,0,551,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,0,0,0,555,80,80,22,23,0,0,0,0,510,555,0,0,0,0],[0,0,0,507,500,508,552,22,23,0,24,0,0,510,504,0,0,27,0],[0,0,0,507,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0],[0,0,0,557,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,559,0,0,0,97,560,0,33,0,34,0,0,0,99,0,559,0,0],[0,0,0,0,561,101,101,32,33,0,0,0,0,516,561,0,0,0,0],[0,0,0,512,513,514,558,32,33,0,34,0,0,516,517,0,0,37,0],[0,0,0,512,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,562,111,0,0,97,560,0,33,0,34,0,0,0,99,0,562,0,0],[0,457,0,0,0,201,201,0,33,0,34,0,0,0,99,0,457,0,0],[0,457,0,518,0,201,201,0,33,0,34,0,0,0,99,0,457,0,0],[0,0,0,557,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,0,0,0,561,101,101,32,33,0,0,0,0,523,561,0,0,0,0],[0,0,0,520,513,521,558,32,33,0,34,0,0,523,517,0,0,37,0],[0,0,0,520,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0],[0,0,0,0,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,0,0,0,529,44,44,8,9,0,0,0,0,0,529,0,0,0,0],[0,0,0,563,66,564,565,8,9,0,10,0,0,566,68,0,0,16,0],[0,527,0,567,0,123,123,8,9,0,10,0,0,0,42,0,527,0,0],[0,527,0,0,0,121,568,0,9,0,10,0,0,0,42,0,527,0,0],[0,0,0,569,66,570,571,8,9,0,10,0,0,572,68,0,0,16,0],[0,0,0,573,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,575,0,0,0,137,576,0,58,0,59,0,0,0,139,0,575,0,0],[0,0,0,0,577,141,141,57,58,0,0,0,0,535,577,0,0,0,0],[0,0,0,531,532,533,574,57,58,0,59,0,0,535,536,0,0,62,0],[0,0,0,531,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,578,151,0,0,137,576,0,58,0,59,0,0,0,139,0,578,0,0],[0,479,0,0,0,246,246,0,58,0,59,0,0,0,139,0,479,0,0],[0,479,0,537,0,246,246,0,58,0,59,0,0,0,139,0,479,0,0],[0,0,0,573,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,0,0,0,577,141,141,57,58,0,0,0,0,542,577,0,0,0,0],[0,0,0,539,532,540,574,57,58,0,59,0,0,542,536,0,0,62,0],[0,0,0,539,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0],[0,0,0,0,0,0,0,442,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0],[0,0,0,0,0,579,579,494,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,580,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,549,368,550,0,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,368,368,0,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,581,0,0,0,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,0,0,0,555,80,80,22,23,0,0,0,0,0,555,0,0,0,0],[0,0,0,582,91,583,584,22,23,0,24,0,0,585,93,0,0,27,0],[0,553,0,586,0,177,177,22,23,0,24,0,0,0,78,0,553,0,0],[0,553,0,0,0,175,587,0,23,0,24,0,0,0,78,0,553,0,0],[0,0,0,588,91,589,590,22,23,0,24,0,0,591,93,0,0,27,0],[0,0,0,0,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,0,0,0,561,101,101,32,33,0,0,0,0,0,561,0,0,0,0],[0,0,0,592,112,593,594,32,33,0,34,0,0,595,114,0,0,37,0],[0,559,0,596,0,203,203,32,33,0,34,0,0,0,99,0,559,0,0],[0,559,0,0,0,201,597,0,33,0,34,0,0,0,99,0,559,0,0],[0,0,0,598,112,599,600,32,33,0,34,0,0,601,114,0,0,37,0],[0,0,0,602,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,0,165,44,44,8,9,0,0,0,0,566,165,0,0,0,0],[0,0,0,563,66,564,67,8,9,0,10,0,0,566,68,0,0,16,0],[0,0,0,563,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,527,0,0,0,121,121,0,9,0,10,0,0,0,42,0,527,0,0],[0,527,0,567,0,121,121,0,9,0,10,0,0,0,42,0,527,0,0],[0,0,0,602,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,0,165,44,44,8,9,0,0,0,0,572,165,0,0,0,0],[0,0,0,569,66,570,67,8,9,0,10,0,0,572,68,0,0,16,0],[0,0,0,569,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,0,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,0,0,0,577,141,141,57,58,0,0,0,0,0,577,0,0,0,0],[0,0,0,603,152,604,605,57,58,0,59,0,0,606,154,0,0,62,0],[0,575,0,607,0,248,248,57,58,0,59,0,0,0,139,0,575,0,0],[0,575,0,0,0,246,608,0,58,0,59,0,0,0,139,0,575,0,0],[0,0,0,609,152,610,611,57,58,0,59,0,0,612,154,0,0,62,0],[0,0,0,0,0,0,0,494,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0],[0,0,0,0,0,0,613,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,614,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,0,194,80,80,22,23,0,0,0,0,585,194,0,0,0,0],[0,0,0,582,91,583,92,22,23,0,24,0,0,585,93,0,0,27,0],[0,0,0,582,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,553,0,0,0,175,175,0,23,0,24,0,0,0,78,0,553,0,0],[0,553,0,586,0,175,175,0,23,0,24,0,0,0,78,0,553,0,0],[0,0,0,614,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,0,194,80,80,22,23,0,0,0,0,591,194,0,0,0,0],[0,0,0,588,91,589,92,22,23,0,24,0,0,591,93,0,0,27,0],[0,0,0,588,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,615,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,220,101,101,32,33,0,0,0,0,595,220,0,0,0,0],[0,0,0,592,112,593,113,32,33,0,34,0,0,595,114,0,0,37,0],[0,0,0,592,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,559,0,0,0,201,201,0,33,0,34,0,0,0,99,0,559,0,0],[0,559,0,596,0,201,201,0,33,0,34,0,0,0,99,0,559,0,0],[0,0,0,615,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,220,101,101,32,33,0,0,0,0,601,220,0,0,0,0],[0,0,0,598,112,599,113,32,33,0,34,0,0,601,114,0,0,37,0],[0,0,0,598,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,616,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,0,0,0,265,141,141,57,58,0,0,0,0,606,265,0,0,0,0],[0,0,0,603,152,604,153,57,58,0,59,0,0,606,154,0,0,62,0],[0,0,0,603,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,575,0,0,0,246,246,0,58,0,59,0,0,0,139,0,575,0,0],[0,575,0,607,0,246,246,0,58,0,59,0,0,0,139,0,575,0,0],[0,0,0,616,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,0,0,0,265,141,141,57,58,0,0,0,0,612,265,0,0,0,0],[0,0,0,609,152,610,153,57,58,0,59,0,0,612,154,0,0,62,0],[0,0,0,609,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,0,0],[0,0,0,0,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,0,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0]],"accepting":[false,true,true,true,true,true,false,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,true,false,false,true,true,true,true,true,true,false,false,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,false,true,true,false,false,true,true,true,true,true,true,true,false,true,true,false,true,true,true,false,true,false,true,true,false,false,true,true,true,true,true,true,true,false,true,true,true,false,true,true,true,false,true,false,true,true,false,false,false,true,true,false,false,true,true,true,true,true,true,false,true,false,true,true,false,false,true,true,true,true,true,true,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,false,true,false,true,true,false,false,false,true,true,false,false,true,true,true,false,true,true,true,true,true,true,false,true,true,true,false,true,false,true,true,false,false,false,true,true,false,false,true,true,true,false,true,true,true,true,true,false,true,true,true,true,true,false,true,true,false,false,false,false,true,true,false,false,true,true,true,false,true,true,true,false,true,false,true,true,false,false,false,true,true,false,false,true,true,true,false,true,true,true,true,false,true,false,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,true,true,false,false,false,false,true,true,false,false,true,true,true,false,true,true,true,true,true,false,true,true,false,false,false,false,true,true,false,false,true,true,true,true,false,true,true,true,true,true,true,false,true,true,false,false,false,false,true,false,true,false,true,true,true,true,true,false,true,true,false,false,false,false,true,true,false,false,true,true,true,false,true,true,false,false,true,false,true,true,false,true,true,false,true,true,false,true,true,true,true,true,true,false,true,true,false,false,false,false,true,false,true,true,false,true,true,true,true,true,true,false,true,true,false,false,false,false,true,false,true,false,true,true,true,true,false,false,false,true,true,false,true,true,true,true,true,true,false,true,true,false,false,false,false,true,false,true,false,true,true,false,false,true,true,false,false,true,true,true,false,true,false,true,true,true,true,false,false,false,true,false,true,true,true,true,false,false,false,true,true,false,true,true,true,true,true,true,false,true,true,false,true,false,true,true,true,true,false,false,false,false,false,false,false,true,true,false,false,true,true,false,true,true,true,true,false,true,true,true,true,true,true,false,true,true,false,true,true,false,true,true,true,true,true,true,false,true,true,false,true,false,true,true,true,true,true,true,false,true,true,true,true,true,true,false,true,true,false,false,false,false,false,true,true,false,true,false,true,true,true,true,true,false,true,true,true,true,true,false,true,true,true,true,true,false,true,true,true,false,true,true,true,true,false,false,false,true,false,true,true,true,true,true,false,true,true,true,false,true,true,true,true,true,false,true,true,true,true,false,true,true,true,true,true,false,true,true,false,true,true,true],"tags":[[],["broken_cluster"],["consonant_syllable"],["vowel_syllable"],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["consonant_syllable"],["broken_cluster"],["symbol_cluster"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["broken_cluster"],["broken_cluster"],["consonant_syllable","broken_cluster"],["broken_cluster"],[],["broken_cluster"],["symbol_cluster"],[],["symbol_cluster"],["symbol_cluster"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],[],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["symbol_cluster"],["symbol_cluster"],["symbol_cluster"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],[],["consonant_syllable"],["consonant_syllable"],[],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],[],["vowel_syllable"],["vowel_syllable"],[],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],[],[],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["broken_cluster"],["symbol_cluster"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],[],[],["consonant_syllable"],["consonant_syllable"],[],[],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],[],[],["vowel_syllable"],["vowel_syllable"],[],[],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],[],[],["broken_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],[],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],[],[],["consonant_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],[],[],["vowel_syllable"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],[],[],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],[],["standalone_cluster"],[],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],[],[],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],[],[],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],[],[],[],[],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],[],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],["consonant_syllable"],["vowel_syllable"],["standalone_cluster"]]}'),Xi=JSON.parse('{"categories":["O","IND","S","GB","B","FM","CGJ","VMAbv","VMPst","VAbv","VPst","CMBlw","VPre","VBlw","H","VMBlw","CMAbv","MBlw","CS","R","SUB","MPst","MPre","FAbv","FPst","FBlw","null","SMAbv","SMBlw","VMPre","ZWNJ","ZWJ","WJ","M","VS","N","HN","MAbv"],"decompositions":{"2507":[2503,2494],"2508":[2503,2519],"2888":[2887,2902],"2891":[2887,2878],"2892":[2887,2903],"3018":[3014,3006],"3019":[3015,3006],"3020":[3014,3031],"3144":[3142,3158],"3264":[3263,3285],"3271":[3270,3285],"3272":[3270,3286],"3274":[3270,3266],"3275":[3270,3266,3285],"3402":[3398,3390],"3403":[3399,3390],"3404":[3398,3415],"3546":[3545,3530],"3548":[3545,3535],"3549":[3545,3535,3530],"3550":[3545,3551],"3635":[3661,3634],"3763":[3789,3762],"3955":[3953,3954],"3957":[3953,3956],"3958":[4018,3968],"3959":[4018,3953,3968],"3960":[4019,3968],"3961":[4019,3953,3968],"3969":[3953,3968],"6971":[6970,6965],"6973":[6972,6965],"6976":[6974,6965],"6977":[6975,6965],"6979":[6978,6965],"69934":[69937,69927],"69935":[69938,69927],"70475":[70471,70462],"70476":[70471,70487],"70843":[70841,70842],"70844":[70841,70832],"70846":[70841,70845],"71098":[71096,71087],"71099":[71097,71087]},"stateTable":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[2,2,3,4,4,5,0,6,7,8,9,10,11,12,13,14,15,16,0,17,18,11,19,20,21,22,0,0,0,23,0,0,2,0,0,24,0,25],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,28,0,0,0,0,0,27,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,34,35,36,37,38,39,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,39,0,0,47],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,0,0,12,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,9,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,10,11,12,13,14,0,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,9,0,0,12,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,10,11,12,13,14,15,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,0,0,0,0,11,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,4,4,5,0,6,7,8,9,10,11,12,13,14,15,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,48,11,12,13,14,48,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,49,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,16,0,0,0,11,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,51,0],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,16,0,0,0,11,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,28,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,0,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,0,0,36,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,33,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,34,35,36,37,38,0,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,33,0,0,36,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,31,0,0,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,34,35,36,37,38,39,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,0,0,0,0,35,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,52,35,36,37,38,52,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,53,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,40,0,0,0,35,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,0,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,40,0,0,0,35,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,48,11,12,13,14,0,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,48,11,12,13,14,48,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0],[0,0,0,0,0,29,0,30,31,32,33,52,35,36,37,38,0,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,52,35,36,37,38,52,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,51,0]],"accepting":[false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],"tags":[[],["broken_cluster"],["independent_cluster"],["symbol_cluster"],["standard_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["numeral_cluster"],["broken_cluster"],["independent_cluster"],["symbol_cluster"],["symbol_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["virama_terminated_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["broken_cluster"],["broken_cluster"],["numeral_cluster"],["number_joiner_terminated_cluster"],["standard_cluster"],["standard_cluster"],["numeral_cluster"]]}');const Qt={Start:1,Ra_To_Become_Reph:2,Pre_M:4,Pre_C:8,Base_C:16,After_Main:32,Above_C:64,Before_Sub:128,Below_C:256,After_Sub:512,Before_Post:1024,Post_C:2048,After_Post:4096,Final_C:8192,SMVD:16384,End:32768},Ts=16400,Xr={Default:{hasOldSpec:!1,virama:0,basePos:"Last",rephPos:Qt.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Devanagari:{hasOldSpec:!0,virama:2381,basePos:"Last",rephPos:Qt.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Bengali:{hasOldSpec:!0,virama:2509,basePos:"Last",rephPos:Qt.After_Sub,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Gurmukhi:{hasOldSpec:!0,virama:2637,basePos:"Last",rephPos:Qt.Before_Sub,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Gujarati:{hasOldSpec:!0,virama:2765,basePos:"Last",rephPos:Qt.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Oriya:{hasOldSpec:!0,virama:2893,basePos:"Last",rephPos:Qt.After_Main,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Tamil:{hasOldSpec:!0,virama:3021,basePos:"Last",rephPos:Qt.After_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Telugu:{hasOldSpec:!0,virama:3149,basePos:"Last",rephPos:Qt.After_Post,rephMode:"Explicit",blwfMode:"Post_Only"},Kannada:{hasOldSpec:!0,virama:3277,basePos:"Last",rephPos:Qt.After_Post,rephMode:"Implicit",blwfMode:"Post_Only"},Malayalam:{hasOldSpec:!0,virama:3405,basePos:"Last",rephPos:Qt.After_Main,rephMode:"Log_Repha",blwfMode:"Pre_And_Post"},Khmer:{hasOldSpec:!1,virama:6098,basePos:"First",rephPos:Qt.Ra_To_Become_Reph,rephMode:"Vis_Repha",blwfMode:"Pre_And_Post"}},Xo={6078:[6081,6078],6079:[6081,6079],6080:[6081,6080],6084:[6081,6084],6085:[6081,6085]},{decompositions:Zo}=Q(Xi),Zr=new(Q(d))(gr("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")),qo=new(Q(c))(Q(Mr));class xn extends Ni{static planFeatures(a){a.addStage($o),a.addStage(["locl","ccmp"]),a.addStage(el),a.addStage("nukt"),a.addStage("akhn"),a.addStage("rphf",!1),a.addStage("rkrf"),a.addStage("pref",!1),a.addStage("blwf",!1),a.addStage("abvf",!1),a.addStage("half",!1),a.addStage("pstf",!1),a.addStage("vatu"),a.addStage("cjct"),a.addStage("cfar",!1),a.addStage(tl),a.addStage({local:["init"],global:["pres","abvs","blws","psts","haln","dist","abvm","blwm","calt","clig"]}),a.unicodeScript=function _a(oA){return ur[oA]}(a.script),a.indicConfig=Xr[a.unicodeScript]||Xr.Default,a.isOldSpec=a.indicConfig.hasOldSpec&&"2"!==a.script[a.script.length-1]}static assignFeatures(a,h){for(let F=h.length-1;F>=0;F--){let k=h[F].codePoints[0],X=Xo[k]||Zo[k];if(X){let O=X.map(IA=>{let LA=a.font.glyphForCodePoint(IA);return new ri(a.font,LA.id,[IA],h[F].features)});h.splice(F,1,...O)}}}}function pr(oA){return Zr.get(oA.codePoints[0])>>8}function qr(oA){return 1<<(255&Zr.get(oA.codePoints[0]))}(0,B._)(xn,"zeroMarkWidths","NONE");class Ar{constructor(a,h,F,k){this.category=a,this.position=h,this.syllableType=F,this.syllable=k}}function $o(oA,a){let h=0,F=0;for(let[k,X,O]of qo.match(a.map(pr))){if(k>F){++h;for(let IA=F;IAke);break}case"First":re=IA;for(let Ue=re+1;Uewt&&!(Zi(a[Tt])||Ue&&16===a[Tt].shaperInfo.category);Tt--);if(16!==a[Tt].shaperInfo.category&&Tt>wt){let yn=a[wt];a.splice(wt,0,...a.splice(wt+1,Tt-wt)),a[Tt]=yn}break}}let Bt=Qt.Start;for(let Ue=IA;UeIA;Tt--)if(a[Tt-1].shaperInfo.position!==Qt.Pre_M){wt.position=a[Tt-1].shaperInfo.position;break}}else wt.position!==Qt.SMVD&&(Bt=wt.position)}let Nt=re;for(let Ue=re+1;UeUe.shaperInfo.position-wt.shaperInfo.position),a.splice(IA,dn.length,...dn);for(let Ue=IA;UeIA&&!Zi(a[Tt]))}}}function tl(oA,a,h){let F=h.indicConfig,k=oA._layoutEngine.engine.GSUBProcessor.features;for(let X=0,O=er(a,0);X=Qt.Base_C){if(IA&&LA+1Qt.Base_C&&LA--;break}if(LA===O&&XX&&!(16528&a[ZA].shaperInfo.category);)ZA--;Mi(a[ZA])&&a[ZA].shaperInfo.position!==Qt.Pre_M?ZA+1X;oe--)if(a[oe-1].shaperInfo.position===Qt.Pre_M){let re=oe-1;reX&&a[ZA].shaperInfo.position===Qt.SMVD;)ZA--;if(Mi(a[ZA]))for(let at=LA+1;atX&&!(16528&a[oe-1].shaperInfo.category);)oe--;if(oe>X&&128===a[oe-1].shaperInfo.category){let at=ZA;for(let Bt=LA+1;BtX&&Mi(a[oe-1])&&oe=oA.length)return a;let h=oA[a].shaperInfo.syllable;for(;++a=0;F--){let k=h[F].codePoints[0];if($r[k]){let X=$r[k].map(O=>{let IA=a.font.glyphForCodePoint(O);return new ri(a.font,IA.id,[O],h[F].features)});h.splice(F,1,...X)}}}}function Aa(oA){return il.get(oA.codePoints[0])}(0,B._)(Ht,"zeroMarkWidths","BEFORE_GPOS");class sl{constructor(a,h,F){this.category=a,this.syllableType=h,this.syllable=F}}function rl(oA,a){let h=0;for(let[F,k,X]of Dr.match(a.map(Aa))){++h;for(let IA=F;IA<=k;IA++)a[IA].shaperInfo=new sl(nl[Aa(a[IA])],X[0],h);let O="R"===a[F].shaperInfo.category?1:Math.min(3,k-F);for(let IA=F;IA1)for(X=F+1;X=oA.length)return a;let h=oA[a].shaperInfo.syllable;for(;++a{let re=new ri(this.font,ZA,void 0,O);return re.shaperInfo=IA.shaperInfo,re.isLigated=IA.isLigated,re.ligatureComponent=oe+1,re.substituted=!0,re.isMultiplied=!0,re});return this.glyphs.splice(this.glyphIterator.index+1,0,...LA),!0}return!1}case 3:{let k=this.coverageIndex(h.coverage);if(-1!==k){let X=0;return this.glyphIterator.cur.id=h.alternateSet.get(k)[X],!0}return!1}case 4:{let k=this.coverageIndex(h.coverage);if(-1===k)return!1;for(let X of h.ligatureSets.get(k)){let O=this.sequenceMatchIndices(1,X.components);if(!O)continue;let IA=this.glyphIterator.cur,LA=IA.codePoints.slice();for(let Nt of O)LA.push(...this.glyphs[Nt].codePoints);let ZA=new ri(this.font,X.glyph,LA,IA.features);ZA.shaperInfo=IA.shaperInfo,ZA.isLigated=!0,ZA.substituted=!0;let oe=IA.isMark;for(let Nt=0;Nt=0;Nt--)this.glyphs.splice(O[Nt],1);return this.glyphs[this.glyphIterator.index]=ZA,!0}return!1}case 5:return this.applyContext(h);case 6:return this.applyChainingContext(h);case 7:return this.applyLookup(h.lookupType,h.extension);default:throw new Error(`GSUB lookupType ${a} is not supported`)}}}class fl extends Vs{applyPositionValue(a,h){let F=this.positions[this.glyphIterator.peekIndex(a)];null!=h.xAdvance&&(F.xAdvance+=h.xAdvance),null!=h.yAdvance&&(F.yAdvance+=h.yAdvance),null!=h.xPlacement&&(F.xOffset+=h.xPlacement),null!=h.yPlacement&&(F.yOffset+=h.yPlacement);let k=this.font._variationProcessor,X=this.font.GDEF&&this.font.GDEF.itemVariationStore;k&&X&&(h.xPlaDevice&&(F.xOffset+=k.getDelta(X,h.xPlaDevice.a,h.xPlaDevice.b)),h.yPlaDevice&&(F.yOffset+=k.getDelta(X,h.yPlaDevice.a,h.yPlaDevice.b)),h.xAdvDevice&&(F.xAdvance+=k.getDelta(X,h.xAdvDevice.a,h.xAdvDevice.b)),h.yAdvDevice&&(F.yAdvance+=k.getDelta(X,h.yAdvDevice.a,h.yAdvDevice.b)))}applyLookup(a,h){switch(a){case 1:{let k=this.coverageIndex(h.coverage);if(-1===k)return!1;switch(h.version){case 1:this.applyPositionValue(0,h.value);break;case 2:this.applyPositionValue(0,h.values.get(k))}return!0}case 2:{let k=this.glyphIterator.peek();if(!k)return!1;let X=this.coverageIndex(h.coverage);if(-1===X)return!1;switch(h.version){case 1:let O=h.pairSets.get(X);for(let ZA of O)if(ZA.secondGlyph===k.id)return this.applyPositionValue(0,ZA.value1),this.applyPositionValue(1,ZA.value2),!0;return!1;case 2:let IA=this.getClassID(this.glyphIterator.cur.id,h.classDef1),LA=this.getClassID(k.id,h.classDef2);if(-1===IA||-1===LA)return!1;var F=h.classRecords.get(IA).get(LA);return this.applyPositionValue(0,F.value1),this.applyPositionValue(1,F.value2),!0}}case 3:{let k=this.glyphIterator.peekIndex(),X=this.glyphs[k];if(!X)return!1;let O=h.entryExitRecords[this.coverageIndex(h.coverage)];if(!O||!O.exitAnchor)return!1;let IA=h.entryExitRecords[this.coverageIndex(h.coverage,X.id)];if(!IA||!IA.entryAnchor)return!1;let ke,LA=this.getAnchor(IA.entryAnchor),ZA=this.getAnchor(O.exitAnchor),oe=this.positions[this.glyphIterator.index],re=this.positions[k];switch(this.direction){case"ltr":oe.xAdvance=ZA.x+oe.xOffset,ke=LA.x+re.xOffset,re.xAdvance-=ke,re.xOffset-=ke;break;case"rtl":ke=ZA.x+oe.xOffset,oe.xAdvance-=ke,oe.xOffset-=ke,re.xAdvance=LA.x+re.xOffset}return this.glyphIterator.flags.rightToLeft?(this.glyphIterator.cur.cursiveAttachment=k,oe.yOffset=LA.y-ZA.y):(X.cursiveAttachment=this.glyphIterator.index,oe.yOffset=ZA.y-LA.y),!0}case 4:{let k=this.coverageIndex(h.markCoverage);if(-1===k)return!1;let X=this.glyphIterator.index;for(;--X>=0&&(this.glyphs[X].isMark||this.glyphs[X].ligatureComponent>0););if(X<0)return!1;let O=this.coverageIndex(h.baseCoverage,this.glyphs[X].id);if(-1===O)return!1;let IA=h.markArray[k];return this.applyAnchor(IA,h.baseArray[O][IA.class],X),!0}case 5:{let k=this.coverageIndex(h.markCoverage);if(-1===k)return!1;let X=this.glyphIterator.index;for(;--X>=0&&this.glyphs[X].isMark;);if(X<0)return!1;let O=this.coverageIndex(h.ligatureCoverage,this.glyphs[X].id);if(-1===O)return!1;let IA=h.ligatureArray[O],LA=this.glyphIterator.cur,ZA=this.glyphs[X],oe=ZA.ligatureID&&ZA.ligatureID===LA.ligatureID&&LA.ligatureComponent>0?Math.min(LA.ligatureComponent,ZA.codePoints.length)-1:ZA.codePoints.length-1,re=h.markArray[k];return this.applyAnchor(re,IA[oe][re.class],X),!0}case 6:{let k=this.coverageIndex(h.mark1Coverage);if(-1===k)return!1;let X=this.glyphIterator.peekIndex(-1),O=this.glyphs[X];if(!O||!O.isMark)return!1;let IA=this.glyphIterator.cur,LA=!1;if(IA.ligatureID===O.ligatureID?IA.ligatureID?IA.ligatureComponent===O.ligatureComponent&&(LA=!0):LA=!0:(IA.ligatureID&&!IA.ligatureComponent||O.ligatureID&&!O.ligatureComponent)&&(LA=!0),!LA)return!1;let ZA=this.coverageIndex(h.mark2Coverage,O.id);if(-1===ZA)return!1;let oe=h.mark1Array[k];return this.applyAnchor(oe,h.mark2Array[ZA][oe.class],X),!0}case 7:return this.applyContext(h);case 8:return this.applyChainingContext(h);case 9:return this.applyLookup(h.lookupType,h.extension);default:throw new Error(`Unsupported GPOS table: ${a}`)}}applyAnchor(a,h,F){let k=this.getAnchor(h),X=this.getAnchor(a.markAnchor),IA=this.positions[this.glyphIterator.index];IA.xOffset=k.x-X.x,IA.yOffset=k.y-X.y,this.glyphIterator.cur.markAttachment=F}getAnchor(a){let h=a.xCoordinate,F=a.yCoordinate,k=this.font._variationProcessor,X=this.font.GDEF&&this.font.GDEF.itemVariationStore;return k&&X&&(a.xDeviceTable&&(h+=k.getDelta(X,a.xDeviceTable.a,a.xDeviceTable.b)),a.yDeviceTable&&(F+=k.getDelta(X,a.yDeviceTable.a,a.yDeviceTable.b))),{x:h,y:F}}applyFeatures(a,h,F){super.applyFeatures(a,h,F);for(var k=0;knew ri(this.font,F.id,[...F.codePoints]));let h=null;this.GPOSProcessor&&(h=this.GPOSProcessor.selectScript(a.script,a.language,a.direction)),this.GSUBProcessor&&(h=this.GSUBProcessor.selectScript(a.script,a.language,a.direction)),this.shaper=function Bl(oA){Array.isArray(oA)||(oA=[oA]);for(let a of oA){let h=cl[a];if(h)return h}return Ni}(h),this.plan=new uo(this.font,h,a.direction),this.shaper.plan(this.plan,this.glyphInfos,a.features);for(let F in this.plan.allFeatures)a.features[F]=!0}substitute(a){this.GSUBProcessor&&(this.plan.process(this.GSUBProcessor,this.glyphInfos),a.glyphs=this.glyphInfos.map(h=>this.font.getGlyph(h.id,h.codePoints)))}position(a){return"BEFORE_GPOS"===this.shaper.zeroMarkWidths&&this.zeroMarkAdvances(a.positions),this.GPOSProcessor&&this.plan.process(this.GPOSProcessor,this.glyphInfos,a.positions),"AFTER_GPOS"===this.shaper.zeroMarkWidths&&this.zeroMarkAdvances(a.positions),"rtl"===a.direction&&(a.glyphs.reverse(),a.positions.reverse()),this.GPOSProcessor&&this.GPOSProcessor.features}zeroMarkAdvances(a){for(let h=0;hnew Wa(F.advanceWidth));let h=null;this.engine&&this.engine.position&&(h=this.engine.position(a)),!h&&(!this.engine||this.engine.fallbackPosition)&&(this.unicodeLayoutEngine||(this.unicodeLayoutEngine=new Oa(this.font)),this.unicodeLayoutEngine.positionGlyphs(a.glyphs,a.positions)),(!h||!h.kern)&&!1!==a.features.kern&&this.font.kern&&(this.kernProcessor||(this.kernProcessor=new ja(this.font)),this.kernProcessor.process(a.glyphs,a.positions),a.features.kern=!0)}hideDefaultIgnorables(a,h){let F=this.font.glyphForCodePoint(32);for(let k=0;k>16;if(0===h)switch(a>>8){case 0:return 173===a;case 3:return 847===a;case 6:return 1564===a;case 23:return 6068<=a&&a<=6069;case 24:return 6155<=a&&a<=6158;case 32:return 8203<=a&&a<=8207||8234<=a&&a<=8238||8288<=a&&a<=8303;case 254:return 65024<=a&&a<=65039||65279===a;case 255:return 65520<=a&&a<=65528;default:return!1}else switch(h){case 1:return 113824<=a&&a<=113827||119155<=a&&a<=119162;case 14:return 917504<=a&&a<=921599;default:return!1}}getAvailableFeatures(a,h){let F=[];return this.engine&&F.push(...this.engine.getAvailableFeatures(a,h)),this.font.kern&&-1===F.indexOf("kern")&&F.push("kern"),F}stringsForGlyph(a){let h=new Set,F=this.font._cmapProcessor.codePointsForGlyph(a);for(let k of F)h.add(String.fromCodePoint(k));if(this.engine&&this.engine.stringsForGlyph)for(let k of this.engine.stringsForGlyph(a))h.add(k);return Array.from(h)}constructor(a){this.font=a,this.unicodeLayoutEngine=null,this.kernProcessor=null,this.font.morx?this.engine=new fo(this.font):(this.font.GSUB||this.font.GPOS)&&(this.engine=new ul(this.font))}}const hl={moveTo:"M",lineTo:"L",quadraticCurveTo:"Q",bezierCurveTo:"C",closePath:"Z"};class ss{toFunction(){return a=>{this.commands.forEach(h=>a[h.command].apply(a,h.args))}}toSVG(){return this.commands.map(h=>{let F=h.args.map(k=>Math.round(100*k)/100);return`${hl[h.command]}${F.join(" ")}`}).join("")}get cbox(){if(!this._cbox){let a=new Ri;for(let h of this.commands)for(let F=0;FMath.pow(1-_t,3)*at[vt]+3*Math.pow(1-_t,2)*_t*Bt[vt]+3*(1-_t)*Math.pow(_t,2)*Nt[vt]+Math.pow(_t,3)*dn[vt];for(let _t of this.commands)switch(_t.command){case"moveTo":case"lineTo":let[Ue,wt]=_t.args;a.addPoint(Ue,wt),h=Ue,F=wt;break;case"quadraticCurveTo":case"bezierCurveTo":if("quadraticCurveTo"===_t.command)var[X,O,re,ke]=_t.args,IA=h+2/3*(X-h),LA=F+2/3*(O-F),ZA=re+2/3*(X-re),oe=ke+2/3*(O-ke);else var[IA,LA,ZA,oe,re,ke]=_t.args;a.addPoint(re,ke);for(var at=[h,F],Bt=[IA,LA],Nt=[ZA,oe],dn=[re,ke],vt=0;vt<=1;vt++){let Tt=6*at[vt]-12*Bt[vt]+6*Nt[vt],yn=-3*at[vt]+9*Bt[vt]-9*Nt[vt]+3*dn[vt];if(_t=3*Bt[vt]-3*at[vt],0===yn){if(0===Tt)continue;let gn=-_t/Tt;0[a*IA+F*LA+X,h*IA+k*LA+O])}translate(a,h){return this.transform(1,0,0,1,a,h)}rotate(a){let h=Math.cos(a),F=Math.sin(a);return this.transform(h,F,-F,h,0,0)}scale(a,h=a){return this.transform(a,0,0,h,0,0)}constructor(){this.commands=[],this._bbox=null,this._cbox=null}}for(let oA of["moveTo","lineTo","quadraticCurveTo","bezierCurveTo","closePath"])ss.prototype[oA]=function(...a){return this._bbox=this._cbox=null,this.commands.push({command:oA,args:a}),this};var Ps=[".notdef",".null","nonmarkingreturn","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quotesingle","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","grave","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","Adieresis","Aring","Ccedilla","Eacute","Ntilde","Odieresis","Udieresis","aacute","agrave","acircumflex","adieresis","atilde","aring","ccedilla","eacute","egrave","ecircumflex","edieresis","iacute","igrave","icircumflex","idieresis","ntilde","oacute","ograve","ocircumflex","odieresis","otilde","uacute","ugrave","ucircumflex","udieresis","dagger","degree","cent","sterling","section","bullet","paragraph","germandbls","registered","copyright","trademark","acute","dieresis","notequal","AE","Oslash","infinity","plusminus","lessequal","greaterequal","yen","mu","partialdiff","summation","product","pi","integral","ordfeminine","ordmasculine","Omega","ae","oslash","questiondown","exclamdown","logicalnot","radical","florin","approxequal","Delta","guillemotleft","guillemotright","ellipsis","nonbreakingspace","Agrave","Atilde","Otilde","OE","oe","endash","emdash","quotedblleft","quotedblright","quoteleft","quoteright","divide","lozenge","ydieresis","Ydieresis","fraction","currency","guilsinglleft","guilsinglright","fi","fl","daggerdbl","periodcentered","quotesinglbase","quotedblbase","perthousand","Acircumflex","Ecircumflex","Aacute","Edieresis","Egrave","Iacute","Icircumflex","Idieresis","Igrave","Oacute","Ocircumflex","apple","Ograve","Uacute","Ucircumflex","Ugrave","dotlessi","circumflex","tilde","macron","breve","dotaccent","ring","cedilla","hungarumlaut","ogonek","caron","Lslash","lslash","Scaron","scaron","Zcaron","zcaron","brokenbar","Eth","eth","Yacute","yacute","Thorn","thorn","minus","multiply","onesuperior","twosuperior","threesuperior","onehalf","onequarter","threequarters","franc","Gbreve","gbreve","Idotaccent","Scedilla","scedilla","Cacute","cacute","Ccaron","ccaron","dcroat"];class fi{_getPath(){return new ss}_getCBox(){return this.path.cbox}_getBBox(){return this.path.bbox}_getTableMetrics(a){if(this.id"u"||null===a)&&({cbox:a}=this),(O=this._font["OS/2"])&&O.version>0)k=Math.abs(O.typoAscender-O.typoDescender),X=O.typoAscender-a.maxY;else{let{hhea:IA}=this._font;var k=Math.abs(IA.ascent-IA.descent),X=IA.ascent-a.maxY}}return this._font._variationProcessor&&this._font.HVAR&&(h+=this._font._variationProcessor.getAdvanceAdjustment(this.id,this._font.HVAR)),this._metrics={advanceWidth:h,advanceHeight:k,leftBearing:F,topBearing:X}}get cbox(){return this._getCBox()}get bbox(){return this._getBBox()}get path(){return this._getPath()}getScaledPath(a){return this.path.scale(1/this._font.unitsPerEm*a)}get advanceWidth(){return this._getMetrics().advanceWidth}get advanceHeight(){return this._getMetrics().advanceHeight}get ligatureCaretPositions(){}_getName(){let{post:a}=this._font;if(!a)return null;switch(a.version){case 1:return Ps[this.id];case 2:let h=a.glyphNameIndex[this.id];return h0&&this.codePoints.every(V.isMark),this.isLigature=this.codePoints.length>1}}(0,M._)([$],fi.prototype,"cbox",null),(0,M._)([$],fi.prototype,"bbox",null),(0,M._)([$],fi.prototype,"path",null),(0,M._)([$],fi.prototype,"advanceWidth",null),(0,M._)([$],fi.prototype,"advanceHeight",null),(0,M._)([$],fi.prototype,"name",null);let na=new t.Struct({numberOfContours:t.int16,xMin:t.int16,yMin:t.int16,xMax:t.int16,yMax:t.int16});class ti{copy(){return new ti(this.onCurve,this.endContour,this.x,this.y)}constructor(a,h,F=0,k=0){this.onCurve=a,this.endContour=h,this.x=F,this.y=k}}class vl{constructor(a,h,F){this.glyphID=a,this.dx=h,this.dy=F,this.pos=0,this.scaleX=this.scaleY=1,this.scale01=this.scale10=0}}class nr extends fi{_getCBox(a){if(this._font._variationProcessor&&!a)return this.path.cbox;let h=this._font._getTableStream("glyf");h.pos+=this._font.loca.offsets[this.id];let F=na.decode(h),k=new Ri(F.xMin,F.yMin,F.xMax,F.yMax);return Object.freeze(k)}_parseGlyphCoord(a,h,F,k){if(F){var X=a.readUInt8();k||(X=-X),X+=h}else X=k?h:h+a.readInt16BE();return X}_decode(){let a=this._font.loca.offsets[this.id];if(a===this._font.loca.offsets[this.id+1])return null;let F=this._font._getTableStream("glyf");F.pos+=a;let k=F.pos,X=na.decode(F);return X.numberOfContours>0?this._decodeSimple(X,F):X.numberOfContours<0&&this._decodeComposite(X,F,k),X}_decodeSimple(a,h){a.points=[];let F=new t.Array(t.uint16,a.numberOfContours).decode(h);a.instructions=new t.Array(t.uint8,t.uint16).decode(h);let k=[],X=F[F.length-1]+1;for(;k.length=0,0,0);a.points.push(re)}let LA=0;for(IA=0;IA>1,O.length=0}function qn(ai,Kn){Bt&&X.closePath(),X.moveTo(ai,Kn),Bt=!0}let gn=function(){for(;h.pos1&&Ln(),re+=O.shift(),qn(oe,re);break;case 5:for(;O.length>=2;)oe+=O.shift(),re+=O.shift(),X.lineTo(oe,re);break;case 6:case 7:for(Gi=6===Xn;O.length>=1;)Gi?oe+=O.shift():re+=O.shift(),X.lineTo(oe,re),Gi=!Gi;break;case 8:for(;O.length>0;)fn=oe+O.shift(),un=re+O.shift(),En=fn+O.shift(),hn=un+O.shift(),oe=En+O.shift(),re=hn+O.shift(),X.bezierCurveTo(fn,un,En,hn,oe,re);break;case 10:if(rs=O.pop()+Ue,Ei=_t[rs],Ei){at[rs]=!0;let An=h.pos,Qn=k;h.pos=Ei.offset,k=Ei.offset+Ei.length,gn(),h.pos=An,k=Qn}break;case 11:if(a.version>=2)break;return;case 14:if(a.version>=2)break;O.length>0&&Ln(),Bt&&(X.closePath(),Bt=!1);break;case 15:if(a.version<2)throw new Error("vsindex operator not supported in CFF v1");Tt=O.pop();break;case 16:{if(a.version<2)throw new Error("blend operator not supported in CFF v1");if(!yn)throw new Error("blend operator in non-variation font");let An=yn.getBlendVector(wt,Tt),Qn=O.pop(),ir=Qn*An.length,ni=O.length-ir,sr=ni-Qn;for(let Es=0;Es>3;break;case 21:O.length>2&&Ln(),oe+=O.shift(),re+=O.shift(),qn(oe,re);break;case 22:O.length>1&&Ln(),oe+=O.shift(),qn(oe,re);break;case 24:for(;O.length>=8;)fn=oe+O.shift(),un=re+O.shift(),En=fn+O.shift(),hn=un+O.shift(),oe=En+O.shift(),re=hn+O.shift(),X.bezierCurveTo(fn,un,En,hn,oe,re);oe+=O.shift(),re+=O.shift(),X.lineTo(oe,re);break;case 25:for(;O.length>=8;)oe+=O.shift(),re+=O.shift(),X.lineTo(oe,re);fn=oe+O.shift(),un=re+O.shift(),En=fn+O.shift(),hn=un+O.shift(),oe=En+O.shift(),re=hn+O.shift(),X.bezierCurveTo(fn,un,En,hn,oe,re);break;case 26:for(O.length%2&&(oe+=O.shift());O.length>=4;)fn=oe,un=re+O.shift(),En=fn+O.shift(),hn=un+O.shift(),oe=En,re=hn+O.shift(),X.bezierCurveTo(fn,un,En,hn,oe,re);break;case 27:for(O.length%2&&(re+=O.shift());O.length>=4;)fn=oe+O.shift(),un=re,En=fn+O.shift(),hn=un+O.shift(),oe=En+O.shift(),re=hn,X.bezierCurveTo(fn,un,En,hn,oe,re);break;case 28:O.push(h.readInt16BE());break;case 29:if(rs=O.pop()+dn,Ei=Nt[rs],Ei){ke[rs]=!0;let An=h.pos,Qn=k;h.pos=Ei.offset,k=Ei.offset+Ei.length,gn(),h.pos=An,k=Qn}break;case 30:case 31:for(Gi=31===Xn;O.length>=4;)Gi?(fn=oe+O.shift(),un=re,En=fn+O.shift(),hn=un+O.shift(),re=hn+O.shift(),oe=En+(1===O.length?O.shift():0)):(fn=oe,un=re+O.shift(),En=fn+O.shift(),hn=un+O.shift(),oe=En+O.shift(),re=hn+(1===O.length?O.shift():0)),X.bezierCurveTo(fn,un,En,hn,oe,re),Gi=!Gi;break;case 12:switch(Xn=h.readUInt8(),Xn){case 3:let An=O.pop(),Qn=O.pop();O.push(An&&Qn?1:0);break;case 4:An=O.pop(),Qn=O.pop(),O.push(An||Qn?1:0);break;case 5:An=O.pop(),O.push(An?0:1);break;case 9:An=O.pop(),O.push(Math.abs(An));break;case 10:An=O.pop(),Qn=O.pop(),O.push(An+Qn);break;case 11:An=O.pop(),Qn=O.pop(),O.push(An-Qn);break;case 12:An=O.pop(),Qn=O.pop(),O.push(An/Qn);break;case 14:An=O.pop(),O.push(-An);break;case 15:An=O.pop(),Qn=O.pop(),O.push(An===Qn?1:0);break;case 18:O.pop();break;case 20:let ir=O.pop(),ni=O.pop();IA[ni]=ir;break;case 21:ni=O.pop(),O.push(IA[ni]||0);break;case 22:let sr=O.pop(),Es=O.pop(),rr=O.pop(),Gs=O.pop();O.push(rr<=Gs?sr:Es);break;case 23:O.push(Math.random());break;case 24:An=O.pop(),Qn=O.pop(),O.push(An*Qn);break;case 26:An=O.pop(),O.push(Math.sqrt(An));break;case 27:An=O.pop(),O.push(An,An);break;case 28:An=O.pop(),Qn=O.pop(),O.push(Qn,An);break;case 29:ni=O.pop(),ni<0?ni=0:ni>O.length-1&&(ni=O.length-1),O.push(O[ni]);break;case 30:let ar=O.pop(),Ls=O.pop();if(Ls>=0)for(;Ls>0;){var ai=O[ar-1];for(let hi=ar-2;hi>=0;hi--)O[hi+1]=O[hi];O[0]=ai,Ls--}else for(;Ls<0;){ai=O[0];for(let or=0;or<=ar;or++)O[or]=O[or+1];O[ar-1]=ai,Ls++}break;case 34:fn=oe+O.shift(),un=re,En=fn+O.shift(),hn=un+O.shift(),as=En+O.shift(),os=hn,ls=as+O.shift(),cs=os,Bs=ls+O.shift(),gs=cs,fs=Bs+O.shift(),us=gs,oe=fs,re=us,X.bezierCurveTo(fn,un,En,hn,as,os),X.bezierCurveTo(ls,cs,Bs,gs,fs,us);break;case 35:Di=[];for(let hi=0;hi<=5;hi++)oe+=O.shift(),re+=O.shift(),Di.push(oe,re);X.bezierCurveTo(...Di.slice(0,6)),X.bezierCurveTo(...Di.slice(6)),O.shift();break;case 36:fn=oe+O.shift(),un=re+O.shift(),En=fn+O.shift(),hn=un+O.shift(),as=En+O.shift(),os=hn,ls=as+O.shift(),cs=os,Bs=ls+O.shift(),gs=cs+O.shift(),fs=Bs+O.shift(),us=gs,oe=fs,re=us,X.bezierCurveTo(fn,un,En,hn,as,os),X.bezierCurveTo(ls,cs,Bs,gs,fs,us);break;case 37:let wa=oe,Ca=re;Di=[];for(let hi=0;hi<=4;hi++)oe+=O.shift(),re+=O.shift(),Di.push(oe,re);Math.abs(oe-wa)>Math.abs(re-Ca)?(oe+=O.shift(),re=Ca):(oe=wa,re+=O.shift()),Di.push(oe,re),X.bezierCurveTo(...Di.slice(0,6)),X.bezierCurveTo(...Di.slice(6));break;default:throw new Error(`Unknown op: 12 ${Xn}`)}break;default:throw new Error(`Unknown op: ${Xn}`)}}else if(Xn<247)O.push(Xn-139);else if(Xn<251){var Kn=h.readUInt8();O.push(256*(Xn-247)+Kn+108)}else Xn<255?(Kn=h.readUInt8(),O.push(256*-(Xn-251)-Kn-108)):O.push(h.readInt32BE()/65536)}};return gn(),Bt&&X.closePath(),X}constructor(...a){super(...a),(0,B._)(this,"type","CFF")}}let Rl=new t.Struct({originX:t.uint16,originY:t.uint16,type:new t.String(4),data:new t.Buffer(oA=>oA.parent.buflen-oA._currentOffset)});class Sl extends nr{getImageForSize(a){for(let O=0;O=a)break}let F=h.imageOffsets,k=F[this.id],X=F[this.id+1];return k===X?null:(this._font.stream.pos=k,Rl.decode(this._font.stream,{buflen:X-k}))}render(a,h){let F=this.getImageForSize(h);null!=F&&a.image(F.data,{height:h,x:F.originX,y:h/this._font.unitsPerEm*(this.bbox.minY-F.originY)}),this._font.sbix.flags.renderOutlines&&super.render(a,h)}constructor(...a){super(...a),(0,B._)(this,"type","SBIX")}}class sa{constructor(a,h){this.glyph=a,this.color=h}}class Nl extends fi{_getBBox(){let a=new Ri;for(let h=0;h>1;if(this.id<(X=h.baseGlyphRecord[oe]).gid)k=oe-1;else{if(!(this.id>X.gid)){var O=X;break}F=oe+1}}if(null==O){var IA=this._font._getBaseGlyph(this.id);return[new sa(IA,LA={red:0,green:0,blue:0,alpha:255})]}let ZA=[];for(let oe=O.firstLayerIndex;oe=1&&h[F]=F.glyphCount)return;let k=F.offsets[a];if(k===F.offsets[a+1])return;let{stream:X}=this.font;if(X.pos=k,X.pos>=X.length)return;let O=X.readUInt16BE(),IA=k+X.readUInt16BE();if(32768&O){var LA=X.pos;X.pos=IA;var ZA=this.decodePoints();IA=X.pos,X.pos=LA}let oe=h.map(dn=>dn.copy());O&=4095;for(let dn=0;dn=F.globalCoordCount)throw new Error("Invalid gvar table");re=F.globalCoords[4095&_t]}if(16384&_t){var ke=[];for(let ln=0;lngn.copy()),qn=h.map(()=>!1);for(let gn=0;gnk[LA])return 0;IA=X[LA]Math.max(0,h[LA]))return 0;IA=(IA*X[LA]+Number.EPSILON)/(h[LA]+Number.EPSILON)}}return IA}interpolateMissingDeltas(a,h,F){if(0===a.length)return;let k=0;for(;kO)continue;let LA=k,ZA=k;for(k++;k<=O;)F[k]&&(this.deltaInterpolate(ZA+1,k-1,ZA,k,h,a),ZA=k),k++;ZA===LA?this.deltaShift(X,O,ZA,h,a):(this.deltaInterpolate(ZA+1,O,ZA,LA,h,a),LA>0&&this.deltaInterpolate(X,LA-1,ZA,LA,h,a)),k=O+1}}deltaInterpolate(a,h,F,k,X,O){if(a>h)return;let IA=["x","y"];for(let ZA=0;ZAX[k][oe]){var LA=F;F=k,k=LA}let re=X[F][oe],ke=X[k][oe],at=O[F][oe],Bt=O[k][oe];if(re!==ke||at===Bt){let Nt=re===ke?0:(Bt-at)/(ke-re);for(let dn=a;dn<=h;dn++){let vt=X[dn][oe];vt<=re?vt+=at-re:vt>=ke?vt+=Bt-ke:vt=at+(vt-re)*Nt,O[dn][oe]=vt}}}}deltaShift(a,h,F,k,X){let O=X[F].x-k[F].x,IA=X[F].y-k[F].y;if(0!==O||0!==IA)for(let LA=a;LA<=h;LA++)LA!==F&&(X[LA].x+=O,X[LA].y+=IA)}getAdvanceAdjustment(a,h){let F,k;if(h.advanceWidthMapping){let X=a;X>=h.advanceWidthMapping.mapCount&&(X=h.advanceWidthMapping.mapCount-1),({outerIndex:F,innerIndex:k}=h.advanceWidthMapping.mapData[X])}else F=0,k=a;return this.getDelta(h.itemVariationStore,F,k)}getDelta(a,h,F){if(h>=a.itemVariationData.length)return 0;let k=a.itemVariationData[h];if(F>=k.deltaSets.length)return 0;let X=k.deltaSets[F],O=this.getBlendVector(a,h),IA=0;for(let LA=0;LAre.peakCoord||re.peakCoord>re.endCoord||re.startCoord<0&&re.endCoord>0&&0!==re.peakCoord||0===re.peakCoord?1:k[oe]re.endCoord?0:k[oe]===re.peakCoord?1:k[oe]=0&&a<=255?1:2}static encode(a,h){h>=0&&h<=255?a.writeUInt8(h):a.writeInt16BE(h)}}let Ba=new t.Struct({numberOfContours:t.int16,xMin:t.int16,yMin:t.int16,xMax:t.int16,yMax:t.int16,endPtsOfContours:new t.Array(t.uint16,"numberOfContours"),instructions:new t.Array(t.uint8,t.uint16),flags:new t.Array(t.uint8,0),xPoints:new t.Array(ca,0),yPoints:new t.Array(ca,0)});class Kl{encodeSimple(a,h=[]){let F=[],k=[],X=[],O=[],IA=0,LA=0,ZA=0,oe=0,re=0;for(let vt=0;vt0&&(O.push(IA),IA=0),O.push(yn),oe=yn),LA=wt,ZA=Tt,re++}"closePath"===_t.command&&F.push(re-1)}a.commands.length>1&&"closePath"!==a.commands[a.commands.length-1].command&&F.push(re-1);let ke=a.bbox,at={numberOfContours:F.length,xMin:ke.minX,yMin:ke.minY,xMax:ke.maxX,yMax:ke.maxY,endPtsOfContours:F,instructions:h,flags:O,xPoints:k,yPoints:X},Bt=Ba.size(at),Nt=4-Bt%4,dn=new t.EncodeStream(Bt+Nt);return Ba.encode(dn,at),0!==Nt&&dn.fill(0,Nt),dn.buffer}_encodePoint(a,h,F,k,X,O){let IA=a-h;return a===h?k|=O:(-255<=IA&&IA<=255&&(k|=X,IA<0?IA=-IA:k|=O),F.push(IA)),k}}class Xl extends xr{_addGlyph(a){let h=this.font.getGlyph(a),F=h._decode(),k=this.font.loca.offsets[a],X=this.font.loca.offsets[a+1],O=this.font._getTableStream("glyf");O.pos+=k;let IA=O.readBuffer(X-k);if(F&&F.numberOfContours<0){IA=new Uint8Array(IA);let LA=new DataView(IA.buffer);for(let ZA of F.components)a=this.includeGlyph(ZA.glyphID),LA.setUint16(ZA.pos,a)}else F&&this.font._variationProcessor&&(IA=this.glyphEncoder.encodeSimple(h.path,F.instructions));return this.glyf.push(IA),this.loca.offsets.push(this.offset),this.hmtx.metrics.push({advance:h.advanceWidth,bearing:h._getMetrics().leftBearing}),this.offset+=IA.length,this.glyf.length-1}encode(){this.glyf=[],this.offset=0,this.loca={offsets:[],version:this.font.loca.version},this.hmtx={metrics:[],bearings:[]};let a=0;for(;a255?2:1,ranges:[{first:1,nLeft:this.charstrings.length-2}]},h=Object.assign({},this.cff.topDict);h.Private=null,h.charset=a,h.Encoding=null,h.CharStrings=this.charstrings;for(let k of["version","Notice","Copyright","FullName","FamilyName","Weight","PostScript","BaseFontName","FontName"])h[k]=this.addString(this.cff.string(h[k]));return h.ROS=[this.addString("Adobe"),this.addString("Identity"),0],h.CIDCount=this.charstrings.length,this.cff.isCIDFont?this.subsetFontdict(h):this.createCIDFontdict(h),nn.toBuffer({version:1,hdrSize:this.cff.hdrSize,offSize:4,header:this.cff.header,nameIndex:[this.cff.postscriptName],topDictIndex:[h],stringIndex:this.strings,globalSubrIndex:this.gsubrs})}constructor(a){if(super(a),this.cff=this.font["CFF "],!this.cff)throw new Error("Not a CFF Font")}}class Gn{static probe(a){let h=Hs.decode(a.slice(0,4));return"true"===h||"OTTO"===h||"\0\x01\0\0"===h}setDefaultLanguage(a=null){this.defaultLanguage=a}_getTable(a){if(!(a.tag in this._tables))try{this._tables[a.tag]=this._decodeTable(a)}catch(h){K&&(console.error(`Error decoding table ${a.tag}`),console.error(h.stack))}return this._tables[a.tag]}_getTableStream(a){let h=this.directory.tables[a];return h?(this.stream.pos=h.offset,this.stream):null}_decodeDirectory(){return this.directory=br.decode(this.stream,{_startOffset:0})}_decodeTable(a){let h=this.stream.pos,F=this._getTableStream(a.tag),k=zs[a.tag].decode(F,this,a.length);return this.stream.pos=h,k}getName(a,h=this.defaultLanguage||J){let F=this.name&&this.name.records[a];return F&&(F[h]||F[this.defaultLanguage]||F[J]||F.en||F[Object.keys(F)[0]])||null}get postscriptName(){return this.getName("postscriptName")}get fullName(){return this.getName("fullName")}get familyName(){return this.getName("fontFamily")}get subfamilyName(){return this.getName("fontSubfamily")}get copyright(){return this.getName("copyright")}get version(){return this.getName("version")}get ascent(){return this.hhea.ascent}get descent(){return this.hhea.descent}get lineGap(){return this.hhea.lineGap}get underlinePosition(){return this.post.underlinePosition}get underlineThickness(){return this.post.underlineThickness}get italicAngle(){return this.post.italicAngle}get capHeight(){let a=this["OS/2"];return a?a.capHeight:this.ascent}get xHeight(){let a=this["OS/2"];return a?a.xHeight:0}get numGlyphs(){return this.maxp.numGlyphs}get unitsPerEm(){return this.head.unitsPerEm}get bbox(){return Object.freeze(new Ri(this.head.xMin,this.head.yMin,this.head.xMax,this.head.yMax))}get _cmapProcessor(){return new fr(this.cmap)}get characterSet(){return this._cmapProcessor.getCharacterSet()}hasGlyphForCodePoint(a){return!!this._cmapProcessor.lookup(a)}glyphForCodePoint(a){return this.getGlyph(this._cmapProcessor.lookup(a),[a])}glyphsForString(a){let h=[],F=a.length,k=0,X=-1,O=-1;for(;k<=F;){let IA=0,LA=0;if(k{let IA=X.axisTag.trim();return IA in a?Math.max(X.minValue,Math.min(X.maxValue,a[IA])):X.defaultValue}),F=new t.DecodeStream(this.stream.buffer);F.pos=this._directoryPos;let k=new Gn(F,h);return k._tables=this._tables,k}get _variationProcessor(){if(!this.fvar)return null;let a=this.variationCoords;return a||this.CFF2?(a||(a=this.fvar.axis.map(h=>h.defaultValue)),new Hl(this,a)):null}getFont(a){return this.getVariation(a)}constructor(a,h=null){(0,B._)(this,"type","TTF"),this.defaultLanguage=null,this.stream=a,this.variationCoords=h,this._directoryPos=this.stream.pos,this._tables={},this._glyphs={},this._decodeDirectory();for(let F in this.directory.tables){let k=this.directory.tables[F];zs[F]&&k.length>0&&Object.defineProperty(this,F,{get:this._getTable.bind(this,k)})}}}(0,M._)([$],Gn.prototype,"bbox",null),(0,M._)([$],Gn.prototype,"_cmapProcessor",null),(0,M._)([$],Gn.prototype,"characterSet",null),(0,M._)([$],Gn.prototype,"_layoutEngine",null),(0,M._)([$],Gn.prototype,"variationAxes",null),(0,M._)([$],Gn.prototype,"namedVariations",null),(0,M._)([$],Gn.prototype,"_variationProcessor",null);let ql=new t.Struct({tag:new t.String(4),offset:new t.Pointer(t.uint32,"void",{type:"global"}),compLength:t.uint32,length:t.uint32,origChecksum:t.uint32}),ga=new t.Struct({tag:new t.String(4),flavor:t.uint32,length:t.uint32,numTables:t.uint16,reserved:new t.Reserved(t.uint16),totalSfntSize:t.uint32,majorVersion:t.uint16,minorVersion:t.uint16,metaOffset:t.uint32,metaLength:t.uint32,metaOrigLength:t.uint32,privOffset:t.uint32,privLength:t.uint32,tables:new t.Array(ql,"numTables")});ga.process=function(){let oA={};for(let a of this.tables)oA[a.tag]=a;this.tables=oA};var $l=ga;class A0 extends nr{_decode(){return this._font._transformedGlyphs[this.id]}_getCBox(){return this.path.bbox}constructor(...a){super(...a),(0,B._)(this,"type","WOFF2")}}const fa={decode(oA){let a=0,h=[0,1,2,3,4];for(let F=0;F!(63&~oA.flags)),tag:oA=>oA.customTag||e0[63&oA.flags],length:fa,transformVersion:oA=>oA.flags>>>6&3,transformed:oA=>"glyf"===oA.tag||"loca"===oA.tag?0===oA.transformVersion:0!==oA.transformVersion,transformLength:new t.Optional(fa,oA=>oA.transformed)}),ua=new t.Struct({tag:new t.String(4),flavor:t.uint32,length:t.uint32,numTables:t.uint16,reserved:new t.Reserved(t.uint16),totalSfntSize:t.uint32,totalCompressedSize:t.uint32,majorVersion:t.uint16,minorVersion:t.uint16,metaOffset:t.uint32,metaLength:t.uint32,metaOrigLength:t.uint32,privOffset:t.uint32,privLength:t.uint32,tables:new t.Array(t0,"numTables")});ua.process=function(){let oA={};for(let a=0;a>7);if(re&=127,re<10)ZA=0,oe=ui(re,((14&re)<<7)+a.readUInt8());else if(re<20)ZA=ui(re,((re-10&14)<<7)+a.readUInt8()),oe=0;else if(re<84)ZA=ui(re,1+(48&(O=re-20))+((IA=a.readUInt8())>>4)),oe=ui(re>>1,1+((12&O)<<2)+(15&IA));else if(re<120){var O;ZA=ui(re,1+((O=re-84)/12<<8)+a.readUInt8()),oe=ui(re>>1,1+(O%12>>2<<8)+a.readUInt8())}else if(re<124){var IA=a.readUInt8();let Bt=a.readUInt8();ZA=ui(re,(IA<<4)+(Bt>>4)),oe=ui(re>>1,((15&Bt)<<8)+a.readUInt8())}else ZA=ui(re,a.readUInt16BE()),oe=ui(re>>1,a.readUInt16BE());k+=ZA,F+=oe,X.push(new ti(ke,!1,k,F))}return X}let c0=new t.VersionedStruct(t.uint32,{65536:{numFonts:t.uint32,offsets:new t.Array(t.uint32,"numFonts")},131072:{numFonts:t.uint32,offsets:new t.Array(t.uint32,"numFonts"),dsigTag:t.uint32,dsigLength:t.uint32,dsigOffset:t.uint32}}),g0=new t.String(t.uint8),f0=(new t.Struct({len:t.uint32,buf:new t.Buffer("len")}),new t.Struct({id:t.uint16,nameOffset:t.int16,attr:t.uint8,dataOffset:t.uint24,handle:t.uint32})),u0=new t.Struct({name:new t.String(4),maxTypeIndex:t.uint16,refList:new t.Pointer(t.uint16,new t.Array(f0,oA=>oA.maxTypeIndex+1),{type:"parent"})}),E0=new t.Struct({length:t.uint16,types:new t.Array(u0,oA=>oA.length+1)}),h0=new t.Struct({reserved:new t.Reserved(t.uint8,24),typeList:new t.Pointer(t.uint16,E0),nameListOffset:new t.Pointer(t.uint16,"void")}),ha=new t.Struct({dataOffset:t.uint32,map:new t.Pointer(t.uint32,h0),dataLength:t.uint32,mapLength:t.uint32});uA(Gn),uA(class Us extends Gn{static probe(a){return"wOFF"===Hs.decode(a.slice(0,4))}_decodeDirectory(){this.directory=$l.decode(this.stream,{_startOffset:0})}_getTableStream(a){let h=this.directory.tables[a];if(h){if(this.stream.pos=h.offset,h.compLength0){let IA=[],LA=0;for(let ZA=0;ZAa[O]===X))return k}return null}get fonts(){let a=[];for(let h of this.header.offsets){let F=new t.DecodeStream(this.stream.buffer);F.pos=h,a.push(new Gn(F))}return a}constructor(a){if((0,B._)(this,"type","TTC"),this.stream=a,"ttcf"!==a.readString(4))throw new Error("Not a TrueType collection");this.header=c0.decode(a)}}),uA(class w0{static probe(a){let h=new t.DecodeStream(a);try{var F=ha.decode(h)}catch{return!1}for(let k of F.map.typeList.types)if("sfnt"===k.name)return!0;return!1}getFont(a){if(!this.sfnt)return null;for(let h of this.sfnt.refList){let k=new t.DecodeStream(this.stream.buffer.slice(this.header.dataOffset+h.dataOffset+4)),X=new Gn(k);if(X.postscriptName===a||X.postscriptName instanceof Uint8Array&&a instanceof Uint8Array&&X.postscriptName.every((O,IA)=>a[IA]===O))return X}return null}get fonts(){let a=[];for(let h of this.sfnt.refList){let k=new t.DecodeStream(this.stream.buffer.slice(this.header.dataOffset+h.dataOffset+4));a.push(new Gn(k))}return a}constructor(a){(0,B._)(this,"type","DFont"),this.stream=a,this.header=ha.decode(this.stream);for(let h of this.header.map.typeList.types){for(let F of h.refList)F.nameOffset>=0?(this.stream.pos=F.nameOffset+this.header.map.nameListOffset,F.name=g0.decode(this.stream)):F.name=null;"sfnt"===h.name&&(this.sfnt=h)}}}),function N(oA,a){Object.keys(a).forEach(function(h){"default"===h||"__esModule"===h||Object.prototype.hasOwnProperty.call(oA,h)||Object.defineProperty(oA,h,{enumerable:!0,get:function(){return a[h]}})})}(q.exports,y)},1733(q,D,g){var t=g(783).Buffer;!function(B){B.parser=function(EA,P){return new Y(EA,P)},B.SAXParser=Y,B.SAXStream=N,B.createStream=function E(EA,P){return new N(EA,P)},B.MAX_BUFFER_LENGTH=65536;var x,M=["comment","sgmlDecl","textNode","tagName","doctype","procInstName","procInstBody","entity","attribName","attribValue","cdata","script"];function Y(EA,P){if(!(this instanceof Y))return new Y(EA,P);var cA=this;(function d(EA){for(var P=0,cA=M.length;P"===w?(QA(P,"onsgmldeclaration",P.sgmlDecl),P.sgmlDecl="",P.state=eA.TEXT):(Z(w)&&(P.state=eA.SGML_DECL_QUOTED),P.sgmlDecl+=w);continue;case eA.SGML_DECL_QUOTED:w===P.q&&(P.state=eA.SGML_DECL,P.q=""),P.sgmlDecl+=w;continue;case eA.DOCTYPE:">"===w?(P.state=eA.TEXT,QA(P,"ondoctype",P.doctype),P.doctype=!0):(P.doctype+=w,"["===w?P.state=eA.DOCTYPE_DTD:Z(w)&&(P.state=eA.DOCTYPE_QUOTED,P.q=w));continue;case eA.DOCTYPE_QUOTED:P.doctype+=w,w===P.q&&(P.q="",P.state=eA.DOCTYPE);continue;case eA.DOCTYPE_DTD:"]"===w?(P.doctype+=w,P.state=eA.DOCTYPE):"<"===w?(P.state=eA.OPEN_WAKA,P.startTagPosition=P.position):Z(w)?(P.doctype+=w,P.state=eA.DOCTYPE_DTD_QUOTED,P.q=w):P.doctype+=w;continue;case eA.DOCTYPE_DTD_QUOTED:P.doctype+=w,w===P.q&&(P.state=eA.DOCTYPE_DTD,P.q="");continue;case eA.COMMENT:"-"===w?P.state=eA.COMMENT_ENDING:P.comment+=w;continue;case eA.COMMENT_ENDING:"-"===w?(P.state=eA.COMMENT_ENDED,P.comment=JA(P.opt,P.comment),P.comment&&QA(P,"oncomment",P.comment),P.comment=""):(P.comment+="-"+w,P.state=eA.COMMENT);continue;case eA.COMMENT_ENDED:">"!==w?(ae(P,"Malformed comment"),P.comment+="--"+w,P.state=eA.COMMENT):P.state=P.doctype&&!0!==P.doctype?eA.DOCTYPE_DTD:eA.TEXT;continue;case eA.CDATA:for(TA=cA-1;w&&"]"!==w;)(w=ne(EA,cA++))&&P.trackPosition&&(P.position++,"\n"===w?(P.line++,P.column=0):P.column++);P.cdata+=EA.substring(TA,cA-1),"]"===w&&(P.state=eA.CDATA_ENDING);continue;case eA.CDATA_ENDING:"]"===w?P.state=eA.CDATA_ENDING_2:(P.cdata+="]"+w,P.state=eA.CDATA);continue;case eA.CDATA_ENDING_2:">"===w?(P.cdata&&QA(P,"oncdata",P.cdata),QA(P,"onclosecdata"),P.cdata="",P.state=eA.TEXT):"]"===w?P.cdata+="]":(P.cdata+="]]"+w,P.state=eA.CDATA);continue;case eA.PROC_INST:"?"===w?P.state=eA.PROC_INST_ENDING:$(w)?P.state=eA.PROC_INST_BODY:P.procInstName+=w;continue;case eA.PROC_INST_BODY:if(!P.procInstBody&&$(w))continue;"?"===w?P.state=eA.PROC_INST_ENDING:P.procInstBody+=w;continue;case eA.PROC_INST_ENDING:">"===w?(QA(P,"onprocessinginstruction",{name:P.procInstName,body:P.procInstBody}),P.procInstName=P.procInstBody="",P.state=eA.TEXT):(P.procInstBody+="?"+w,P.state=eA.PROC_INST_BODY);continue;case eA.OPEN_TAG:BA(G,w)?P.tagName+=w:(we(P),">"===w?CA(P):"/"===w?P.state=eA.OPEN_TAG_SLASH:($(w)||ae(P,"Invalid character in tag name"),P.state=eA.ATTRIB));continue;case eA.OPEN_TAG_SLASH:">"===w?(CA(P,!0),iA(P)):(ae(P,"Forward-slash in opening tag not followed by >"),P.state=eA.ATTRIB);continue;case eA.ATTRIB:if($(w))continue;">"===w?CA(P):"/"===w?P.state=eA.OPEN_TAG_SLASH:BA(uA,w)?(P.attribName=w,P.attribValue="",P.state=eA.ATTRIB_NAME):ae(P,"Invalid attribute name");continue;case eA.ATTRIB_NAME:"="===w?P.state=eA.ATTRIB_VALUE:">"===w?(ae(P,"Attribute without value"),P.attribValue=P.attribName,kA(P),CA(P)):$(w)?P.state=eA.ATTRIB_NAME_SAW_WHITE:BA(G,w)?P.attribName+=w:ae(P,"Invalid attribute name");continue;case eA.ATTRIB_NAME_SAW_WHITE:if("="===w)P.state=eA.ATTRIB_VALUE;else{if($(w))continue;ae(P,"Attribute without value"),P.tag.attributes[P.attribName]="",P.attribValue="",QA(P,"onattribute",{name:P.attribName,value:""}),P.attribName="",">"===w?CA(P):BA(uA,w)?(P.attribName=w,P.state=eA.ATTRIB_NAME):(ae(P,"Invalid attribute name"),P.state=eA.ATTRIB)}continue;case eA.ATTRIB_VALUE:if($(w))continue;Z(w)?(P.q=w,P.state=eA.ATTRIB_VALUE_QUOTED):(P.opt.unquotedAttributeValues||Be(P,"Unquoted attribute value"),P.state=eA.ATTRIB_VALUE_UNQUOTED,P.attribValue=w);continue;case eA.ATTRIB_VALUE_QUOTED:if(w!==P.q){"&"===w?P.state=eA.ATTRIB_VALUE_ENTITY_Q:P.attribValue+=w;continue}kA(P),P.q="",P.state=eA.ATTRIB_VALUE_CLOSED;continue;case eA.ATTRIB_VALUE_CLOSED:$(w)?P.state=eA.ATTRIB:">"===w?CA(P):"/"===w?P.state=eA.OPEN_TAG_SLASH:BA(uA,w)?(ae(P,"No whitespace between attributes"),P.attribName=w,P.attribValue="",P.state=eA.ATTRIB_NAME):ae(P,"Invalid attribute name");continue;case eA.ATTRIB_VALUE_UNQUOTED:if(!b(w)){"&"===w?P.state=eA.ATTRIB_VALUE_ENTITY_U:P.attribValue+=w;continue}kA(P),">"===w?CA(P):P.state=eA.ATTRIB;continue;case eA.CLOSE_TAG:if(P.tagName)">"===w?iA(P):BA(G,w)?P.tagName+=w:P.script?(P.script+=""===w?iA(P):ae(P,"Invalid characters in closing tag");continue;case eA.TEXT_ENTITY:case eA.ATTRIB_VALUE_ENTITY_Q:case eA.ATTRIB_VALUE_ENTITY_U:var wA,j;switch(P.state){case eA.TEXT_ENTITY:wA=eA.TEXT,j="textNode";break;case eA.ATTRIB_VALUE_ENTITY_Q:wA=eA.ATTRIB_VALUE_QUOTED,j="attribValue";break;case eA.ATTRIB_VALUE_ENTITY_U:wA=eA.ATTRIB_VALUE_UNQUOTED,j="attribValue"}if(";"===w){var RA=hA(P);P.opt.unparsedEntities&&!Object.values(B.XML_ENTITIES).includes(RA)?(P.entity="",P.state=wA,P.write(RA)):(P[j]+=RA,P.entity="",P.state=wA)}else BA(P.entity.length?rA:J,w)?P.entity+=w:(ae(P,"Invalid character in entity name"),P[j]+="&"+P.entity+w,P.entity="",P.state=wA);continue;default:throw new Error(P,"Unknown state: "+P.state)}return P.position>=P.bufferCheckPosition&&function V(EA){for(var P=Math.max(B.MAX_BUFFER_LENGTH,10),cA=0,w=0,H=M.length;wP)switch(M[w]){case"textNode":gA(EA);break;case"cdata":QA(EA,"oncdata",EA.cdata),EA.cdata="";break;case"script":QA(EA,"onscript",EA.script),EA.script="";break;default:Be(EA,"Max buffer length exceeded: "+M[w])}cA=Math.max(cA,TA)}EA.bufferCheckPosition=B.MAX_BUFFER_LENGTH-cA+EA.position}(P),P},resume:function(){return this.error=null,this},close:function(){return this.write(null)},flush:function(){!function c(EA){gA(EA),""!==EA.cdata&&(QA(EA,"oncdata",EA.cdata),EA.cdata=""),""!==EA.script&&(QA(EA,"onscript",EA.script),EA.script="")}(this)}};try{x=g(9760).Stream}catch{x=function(){}}x||(x=function(){});var U=B.EVENTS.filter(function(EA){return"error"!==EA&&"end"!==EA});function N(EA,P){if(!(this instanceof N))return new N(EA,P);x.apply(this),this._parser=new Y(EA,P),this.writable=!0,this.readable=!0;var cA=this;this._parser.onend=function(){cA.emit("end")},this._parser.onerror=function(w){cA.emit("error",w),cA._parser.error=null},this._decoder=null,U.forEach(function(w){Object.defineProperty(cA,"on"+w,{get:function(){return cA._parser["on"+w]},set:function(H){if(!H)return cA.removeAllListeners(w),cA._parser["on"+w]=H,H;cA.on(w,H)},enumerable:!0,configurable:!1})})}(N.prototype=Object.create(x.prototype,{constructor:{value:N}})).write=function(EA){return"function"==typeof t&&"function"==typeof t.isBuffer&&t.isBuffer(EA)&&(this._decoder||(this._decoder=new TextDecoder("utf8")),EA=this._decoder.decode(EA,{stream:!0})),this._parser.write(EA.toString()),this.emit("data",EA),!0},N.prototype.end=function(EA){if(EA&&EA.length&&this.write(EA),this._decoder){var P=this._decoder.decode();P&&(this._parser.write(P),this.emit("data",P))}return this._parser.end(),!0},N.prototype.on=function(EA,P){var cA=this;return!cA._parser["on"+EA]&&-1!==U.indexOf(EA)&&(cA._parser["on"+EA]=function(){var w=1===arguments.length?[arguments[0]]:Array.apply(null,arguments);w.splice(0,0,EA),cA.emit.apply(cA,w)}),x.prototype.on.call(cA,EA,P)};var _="[CDATA[",Q="DOCTYPE",y="http://www.w3.org/XML/1998/namespace",K="http://www.w3.org/2000/xmlns/",lA={xml:y,xmlns:K},uA=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,G=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/,J=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,rA=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/;function $(EA){return" "===EA||"\n"===EA||"\r"===EA||"\t"===EA}function Z(EA){return'"'===EA||"'"===EA}function b(EA){return">"===EA||$(EA)}function BA(EA,P){return EA.test(P)}function L(EA,P){return!BA(EA,P)}var EA,P,cA,eA=0;for(var UA in B.STATE={BEGIN:eA++,BEGIN_WHITESPACE:eA++,TEXT:eA++,TEXT_ENTITY:eA++,OPEN_WAKA:eA++,SGML_DECL:eA++,SGML_DECL_QUOTED:eA++,DOCTYPE:eA++,DOCTYPE_QUOTED:eA++,DOCTYPE_DTD:eA++,DOCTYPE_DTD_QUOTED:eA++,COMMENT_STARTING:eA++,COMMENT:eA++,COMMENT_ENDING:eA++,COMMENT_ENDED:eA++,CDATA:eA++,CDATA_ENDING:eA++,CDATA_ENDING_2:eA++,PROC_INST:eA++,PROC_INST_BODY:eA++,PROC_INST_ENDING:eA++,OPEN_TAG:eA++,OPEN_TAG_SLASH:eA++,ATTRIB:eA++,ATTRIB_NAME:eA++,ATTRIB_NAME_SAW_WHITE:eA++,ATTRIB_VALUE:eA++,ATTRIB_VALUE_QUOTED:eA++,ATTRIB_VALUE_CLOSED:eA++,ATTRIB_VALUE_UNQUOTED:eA++,ATTRIB_VALUE_ENTITY_Q:eA++,ATTRIB_VALUE_ENTITY_U:eA++,CLOSE_TAG:eA++,CLOSE_TAG_SAW_WHITE:eA++,SCRIPT:eA++,SCRIPT_ENDING:eA++},B.XML_ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},B.ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'",AElig:198,Aacute:193,Acirc:194,Agrave:192,Aring:197,Atilde:195,Auml:196,Ccedil:199,ETH:208,Eacute:201,Ecirc:202,Egrave:200,Euml:203,Iacute:205,Icirc:206,Igrave:204,Iuml:207,Ntilde:209,Oacute:211,Ocirc:212,Ograve:210,Oslash:216,Otilde:213,Ouml:214,THORN:222,Uacute:218,Ucirc:219,Ugrave:217,Uuml:220,Yacute:221,aacute:225,acirc:226,aelig:230,agrave:224,aring:229,atilde:227,auml:228,ccedil:231,eacute:233,ecirc:234,egrave:232,eth:240,euml:235,iacute:237,icirc:238,igrave:236,iuml:239,ntilde:241,oacute:243,ocirc:244,ograve:242,oslash:248,otilde:245,ouml:246,szlig:223,thorn:254,uacute:250,ucirc:251,ugrave:249,uuml:252,yacute:253,yuml:255,copy:169,reg:174,nbsp:160,iexcl:161,cent:162,pound:163,curren:164,yen:165,brvbar:166,sect:167,uml:168,ordf:170,laquo:171,not:172,shy:173,macr:175,deg:176,plusmn:177,sup1:185,sup2:178,sup3:179,acute:180,micro:181,para:182,middot:183,cedil:184,ordm:186,raquo:187,frac14:188,frac12:189,frac34:190,iquest:191,times:215,divide:247,OElig:338,oelig:339,Scaron:352,scaron:353,Yuml:376,fnof:402,circ:710,tilde:732,Alpha:913,Beta:914,Gamma:915,Delta:916,Epsilon:917,Zeta:918,Eta:919,Theta:920,Iota:921,Kappa:922,Lambda:923,Mu:924,Nu:925,Xi:926,Omicron:927,Pi:928,Rho:929,Sigma:931,Tau:932,Upsilon:933,Phi:934,Chi:935,Psi:936,Omega:937,alpha:945,beta:946,gamma:947,delta:948,epsilon:949,zeta:950,eta:951,theta:952,iota:953,kappa:954,lambda:955,mu:956,nu:957,xi:958,omicron:959,pi:960,rho:961,sigmaf:962,sigma:963,tau:964,upsilon:965,phi:966,chi:967,psi:968,omega:969,thetasym:977,upsih:978,piv:982,ensp:8194,emsp:8195,thinsp:8201,zwnj:8204,zwj:8205,lrm:8206,rlm:8207,ndash:8211,mdash:8212,lsquo:8216,rsquo:8217,sbquo:8218,ldquo:8220,rdquo:8221,bdquo:8222,dagger:8224,Dagger:8225,bull:8226,hellip:8230,permil:8240,prime:8242,Prime:8243,lsaquo:8249,rsaquo:8250,oline:8254,frasl:8260,euro:8364,image:8465,weierp:8472,real:8476,trade:8482,alefsym:8501,larr:8592,uarr:8593,rarr:8594,darr:8595,harr:8596,crarr:8629,lArr:8656,uArr:8657,rArr:8658,dArr:8659,hArr:8660,forall:8704,part:8706,exist:8707,empty:8709,nabla:8711,isin:8712,notin:8713,ni:8715,prod:8719,sum:8721,minus:8722,lowast:8727,radic:8730,prop:8733,infin:8734,ang:8736,and:8743,or:8744,cap:8745,cup:8746,int:8747,there4:8756,sim:8764,cong:8773,asymp:8776,ne:8800,equiv:8801,le:8804,ge:8805,sub:8834,sup:8835,nsub:8836,sube:8838,supe:8839,oplus:8853,otimes:8855,perp:8869,sdot:8901,lceil:8968,rceil:8969,lfloor:8970,rfloor:8971,lang:9001,rang:9002,loz:9674,spades:9824,clubs:9827,hearts:9829,diams:9830},Object.keys(B.ENTITIES).forEach(function(EA){var P=B.ENTITIES[EA],cA="number"==typeof P?String.fromCharCode(P):P;B.ENTITIES[EA]=cA}),B.STATE)B.STATE[B.STATE[UA]]=UA;function xA(EA,P,cA){EA[P]&&EA[P](cA)}function QA(EA,P,cA){EA.textNode&&gA(EA),xA(EA,P,cA)}function gA(EA){EA.textNode=JA(EA.opt,EA.textNode),EA.textNode&&xA(EA,"ontext",EA.textNode),EA.textNode=""}function JA(EA,P){return EA.trim&&(P=P.trim()),EA.normalize&&(P=P.replace(/\s+/g," ")),P}function Be(EA,P){return gA(EA),EA.trackPosition&&(P+="\nLine: "+EA.line+"\nColumn: "+EA.column+"\nChar: "+EA.c),P=new Error(P),EA.error=P,xA(EA,"onerror",P),EA}function KA(EA){return EA.sawRoot&&!EA.closedRoot&&ae(EA,"Unclosed root tag"),EA.state!==eA.BEGIN&&EA.state!==eA.BEGIN_WHITESPACE&&EA.state!==eA.TEXT&&Be(EA,"Unexpected end"),gA(EA),EA.c="",EA.closed=!0,xA(EA,"onend"),Y.call(EA,EA.strict,EA.opt),EA}function ae(EA,P){if("object"!=typeof EA||!(EA instanceof Y))throw new Error("bad call to strictFail");EA.strict&&Be(EA,P)}function we(EA){EA.strict||(EA.tagName=EA.tagName[EA.looseCase]());var P=EA.tags[EA.tags.length-1]||EA,cA=EA.tag={name:EA.tagName,attributes:{}};EA.opt.xmlns&&(cA.ns=P.ns),EA.attribList.length=0,QA(EA,"onopentagstart",cA)}function ie(EA,P){var w=EA.indexOf(":")<0?["",EA]:EA.split(":"),H=w[0],TA=w[1];return P&&"xmlns"===EA&&(H="xmlns",TA=""),{prefix:H,local:TA}}function kA(EA){if(EA.strict||(EA.attribName=EA.attribName[EA.looseCase]()),-1!==EA.attribList.indexOf(EA.attribName)||EA.tag.attributes.hasOwnProperty(EA.attribName))EA.attribName=EA.attribValue="";else{if(EA.opt.xmlns){var P=ie(EA.attribName,!0),w=P.local;if("xmlns"===P.prefix)if("xml"===w&&EA.attribValue!==y)ae(EA,"xml: prefix must be bound to "+y+"\nActual: "+EA.attribValue);else if("xmlns"===w&&EA.attribValue!==K)ae(EA,"xmlns: prefix must be bound to "+K+"\nActual: "+EA.attribValue);else{var H=EA.tag,TA=EA.tags[EA.tags.length-1]||EA;H.ns===TA.ns&&(H.ns=Object.create(TA.ns)),H.ns[w]=EA.attribValue}EA.attribList.push([EA.attribName,EA.attribValue])}else EA.tag.attributes[EA.attribName]=EA.attribValue,QA(EA,"onattribute",{name:EA.attribName,value:EA.attribValue});EA.attribName=EA.attribValue=""}}function CA(EA,P){if(EA.opt.xmlns){var cA=EA.tag,w=ie(EA.tagName);cA.prefix=w.prefix,cA.local=w.local,cA.uri=cA.ns[w.prefix]||"",cA.prefix&&!cA.uri&&(ae(EA,"Unbound namespace prefix: "+JSON.stringify(EA.tagName)),cA.uri=w.prefix),cA.ns&&(EA.tags[EA.tags.length-1]||EA).ns!==cA.ns&&Object.keys(cA.ns).forEach(function(He){QA(EA,"onopennamespace",{prefix:He,uri:cA.ns[He]})});for(var TA=0,wA=EA.attribList.length;TA",EA.tagName="",void(EA.state=eA.SCRIPT);QA(EA,"onscript",EA.script),EA.script=""}var P=EA.tags.length,cA=EA.tagName;EA.strict||(cA=cA[EA.looseCase]());for(var w=cA;P--&&EA.tags[P].name!==w;)ae(EA,"Unexpected close tag");if(P<0)return ae(EA,"Unmatched closing tag: "+EA.tagName),EA.textNode+="",void(EA.state=eA.TEXT);EA.tagName=cA;for(var TA=EA.tags.length;TA-- >P;){var wA=EA.tag=EA.tags.pop();EA.tagName=EA.tag.name,QA(EA,"onclosetag",EA.tagName);var j={};for(var RA in wA.ns)j[RA]=wA.ns[RA];EA.opt.xmlns&&wA.ns!==(EA.tags[EA.tags.length-1]||EA).ns&&Object.keys(wA.ns).forEach(function(XA){QA(EA,"onclosenamespace",{prefix:XA,uri:wA.ns[XA]})})}0===P&&(EA.closedRoot=!0),EA.tagName=EA.attribValue=EA.attribName="",EA.attribList.length=0,EA.state=eA.TEXT}function hA(EA){var w,P=EA.entity,cA=P.toLowerCase(),H="";return EA.ENTITIES[P]?EA.ENTITIES[P]:EA.ENTITIES[cA]?EA.ENTITIES[cA]:("#"===(P=cA).charAt(0)&&("x"===P.charAt(1)?(P=P.slice(2),H=(w=parseInt(P,16)).toString(16)):(P=P.slice(1),H=(w=parseInt(P,10)).toString(10))),P=P.replace(/^0+/,""),isNaN(w)||H.toLowerCase()!==P||w<0||w>1114111?(ae(EA,"Invalid character entity"),"&"+EA.entity+";"):String.fromCodePoint(w))}function bA(EA,P){"<"===P?(EA.state=eA.OPEN_WAKA,EA.startTagPosition=EA.position):$(P)||(ae(EA,"Non-whitespace before first tag."),EA.textNode=P,EA.state=eA.TEXT)}function ne(EA,P){var cA="";return P1114111||P(XA)!==XA)throw RangeError("Invalid code point: "+XA);XA<=65535?H.push(XA):H.push(55296+((XA-=65536)>>10),XA%1024+56320),(j+1===RA||H.length>16384)&&(PA+=EA.apply(null,H),H.length=0)}return PA},Object.defineProperty?Object.defineProperty(String,"fromCodePoint",{value:cA,configurable:!0,writable:!0}):String.fromCodePoint=cA)}(D)},1909(q){"use strict";q.exports=typeof Reflect<"u"&&Reflect&&Reflect.apply},2017(q,D,g){"use strict";var t=g(7756),B=g(5336),M=g(299),Y=g(1078),V=g(644),d=g(4074),c=g(5337),x=g(7383),U=g(2227),E=g(4507),N=d.aTypedArray,_=d.exportTypedArrayMethod,Q=t.Uint16Array,y=Q&&B(Q.prototype.sort),K=!(!y||M(function(){y(new Q(2),null)})&&M(function(){y(new Q(2),{})})),lA=!!y&&!M(function(){if(U)return U<74;if(c)return c<67;if(x)return!0;if(E)return E<602;var rA,$,G=new Q(516),J=Array(516);for(rA=0;rA<516;rA++)$=rA%4,G[rA]=515-rA,J[rA]=rA-2*$+3;for(y(G,function(Z,b){return(Z/4|0)-(b/4|0)}),rA=0;rA<516;rA++)if(G[rA]!==J[rA])return!0});_("sort",function(J){return void 0!==J&&Y(J),lA?y(this,J):V(N(this),(G=J,function(J,rA){return void 0!==G?+G(J,rA)||0:rA!=rA?-1:J!=J?1:0===J&&0===rA?1/J>0&&1/rA<0?1:-1:J>rA}));var G},!lA||K)},2022(q,D,g){"use strict";q.exports=function(){if("object"==typeof globalThis)return globalThis;var t;try{t=this||new Function("return this")()}catch{if("object"==typeof window)return window;if("object"==typeof self)return self;if(typeof g.g<"u")return g.g}return t}()},2073(q,D,g){"use strict";var t;q.exports=(t=g(6861),g(2858),t.mode.CFB=function(){var B=t.lib.BlockCipherMode.extend();function M(Y,V,d,c){var x,U=this._iv;U?(x=U.slice(0),this._iv=void 0):x=this._prevBlock,c.encryptBlock(x,0);for(var E=0;E0&&c[0]<4?1:+(c[0]+c[1])),!x&&B&&(!(c=B.match(/Edge\/(\d+)/))||c[1]>=74)&&(c=B.match(/Chrome\/(\d+)/))&&(x=+c[1]),q.exports=x},2269(q,D,g){"use strict";var t=g(2519),B=g(6911),M=g(9049),Y=g(6395),V=g(2920),K=-2;function fe(VA){return(VA>>>24&255)+(VA>>>8&65280)+((65280&VA)<<8)+((255&VA)<<24)}function ye(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new t.Buf16(320),this.work=new t.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function Ge(VA){var Ce;return VA&&VA.state?(VA.total_in=VA.total_out=(Ce=VA.state).total=0,VA.msg="",Ce.wrap&&(VA.adler=1&Ce.wrap),Ce.mode=1,Ce.last=0,Ce.havedict=0,Ce.dmax=32768,Ce.head=null,Ce.hold=0,Ce.bits=0,Ce.lencode=Ce.lendyn=new t.Buf32(852),Ce.distcode=Ce.distdyn=new t.Buf32(592),Ce.sane=1,Ce.back=-1,0):K}function He(VA){var Ce;return VA&&VA.state?((Ce=VA.state).wsize=0,Ce.whave=0,Ce.wnext=0,Ge(VA)):K}function _e(VA,Ce){var dA,ve;return!VA||!VA.state||(ve=VA.state,Ce<0?(dA=0,Ce=-Ce):(dA=1+(Ce>>4),Ce<48&&(Ce&=15)),Ce&&(Ce<8||Ce>15))?K:(null!==ve.window&&ve.wbits!==Ce&&(ve.window=null),ve.wrap=dA,ve.wbits=Ce,He(VA))}function Pe(VA,Ce){var dA,ve;return VA?(ve=new ye,VA.state=ve,ve.window=null,0!==(dA=_e(VA,Ce))&&(VA.state=null),dA):K}var T,v,sA=!0;function u(VA){if(sA){var Ce;for(T=new t.Buf32(512),v=new t.Buf32(32),Ce=0;Ce<144;)VA.lens[Ce++]=8;for(;Ce<256;)VA.lens[Ce++]=9;for(;Ce<280;)VA.lens[Ce++]=7;for(;Ce<288;)VA.lens[Ce++]=8;for(V(1,VA.lens,0,288,T,0,VA.work,{bits:9}),Ce=0;Ce<32;)VA.lens[Ce++]=5;V(2,VA.lens,0,32,v,0,VA.work,{bits:5}),sA=!1}VA.lencode=T,VA.lenbits=9,VA.distcode=v,VA.distbits=5}function m(VA,Ce,dA,ve){var qe,W=VA.state;return null===W.window&&(W.wsize=1<=W.wsize?(t.arraySet(W.window,Ce,dA-W.wsize,W.wsize,0),W.wnext=0,W.whave=W.wsize):((qe=W.wsize-W.wnext)>ve&&(qe=ve),t.arraySet(W.window,Ce,dA-ve,qe,W.wnext),(ve-=qe)?(t.arraySet(W.window,Ce,dA-ve,ve,0),W.wnext=ve,W.whave=W.wsize):(W.wnext+=qe,W.wnext===W.wsize&&(W.wnext=0),W.whave>>8&255,dA.check=M(dA.check,Ut,2,0),ce=0,pe=0,dA.mode=2;break}if(dA.flags=0,dA.head&&(dA.head.done=!1),!(1&dA.wrap)||(((255&ce)<<8)+(ce>>8))%31){VA.msg="incorrect header check",dA.mode=30;break}if(8!=(15&ce)){VA.msg="unknown compression method",dA.mode=30;break}if(pe-=4,lt=8+(15&(ce>>>=4)),0===dA.wbits)dA.wbits=lt;else if(lt>dA.wbits){VA.msg="invalid window size",dA.mode=30;break}dA.dmax=1<>8&1),512&dA.flags&&(Ut[0]=255&ce,Ut[1]=ce>>>8&255,dA.check=M(dA.check,Ut,2,0)),ce=0,pe=0,dA.mode=3;case 3:for(;pe<32;){if(0===de)break A;de--,ce+=ve[W++]<>>8&255,Ut[2]=ce>>>16&255,Ut[3]=ce>>>24&255,dA.check=M(dA.check,Ut,4,0)),ce=0,pe=0,dA.mode=4;case 4:for(;pe<16;){if(0===de)break A;de--,ce+=ve[W++]<>8),512&dA.flags&&(Ut[0]=255&ce,Ut[1]=ce>>>8&255,dA.check=M(dA.check,Ut,2,0)),ce=0,pe=0,dA.mode=5;case 5:if(1024&dA.flags){for(;pe<16;){if(0===de)break A;de--,ce+=ve[W++]<>>8&255,dA.check=M(dA.check,Ut,2,0)),ce=0,pe=0}else dA.head&&(dA.head.extra=null);dA.mode=6;case 6:if(1024&dA.flags&&((Ze=dA.length)>de&&(Ze=de),Ze&&(dA.head&&(lt=dA.head.extra_len-dA.length,dA.head.extra||(dA.head.extra=new Array(dA.head.extra_len)),t.arraySet(dA.head.extra,ve,W,Ze,lt)),512&dA.flags&&(dA.check=M(dA.check,ve,Ze,W)),de-=Ze,W+=Ze,dA.length-=Ze),dA.length))break A;dA.length=0,dA.mode=7;case 7:if(2048&dA.flags){if(0===de)break A;Ze=0;do{lt=ve[W+Ze++],dA.head&<&&dA.length<65536&&(dA.head.name+=String.fromCharCode(lt))}while(lt&&Ze>9&1,dA.head.done=!0),VA.adler=dA.check=0,dA.mode=12;break;case 10:for(;pe<32;){if(0===de)break A;de--,ce+=ve[W++]<>>=7&pe,pe-=7&pe,dA.mode=27;break}for(;pe<3;){if(0===de)break A;de--,ce+=ve[W++]<>>=1)){case 0:dA.mode=14;break;case 1:if(u(dA),dA.mode=20,6===Ce){ce>>>=2,pe-=2;break A}break;case 2:dA.mode=17;break;case 3:VA.msg="invalid block type",dA.mode=30}ce>>>=2,pe-=2;break;case 14:for(ce>>>=7&pe,pe-=7&pe;pe<32;){if(0===de)break A;de--,ce+=ve[W++]<>>16^65535)){VA.msg="invalid stored block lengths",dA.mode=30;break}if(dA.length=65535&ce,ce=0,pe=0,dA.mode=15,6===Ce)break A;case 15:dA.mode=16;case 16:if(Ze=dA.length){if(Ze>de&&(Ze=de),Ze>SA&&(Ze=SA),0===Ze)break A;t.arraySet(qe,ve,W,Ze,Ie),de-=Ze,W+=Ze,SA-=Ze,Ie+=Ze,dA.length-=Ze;break}dA.mode=12;break;case 17:for(;pe<14;){if(0===de)break A;de--,ce+=ve[W++]<>>=5)),pe-=5,dA.ncode=4+(15&(ce>>>=5)),ce>>>=4,pe-=4,dA.nlen>286||dA.ndist>30){VA.msg="too many length or distance symbols",dA.mode=30;break}dA.have=0,dA.mode=18;case 18:for(;dA.have>>=3,pe-=3}for(;dA.have<19;)dA.lens[Cn[dA.have++]]=0;if(dA.lencode=dA.lendyn,dA.lenbits=7,tt=V(0,dA.lens,0,19,dA.lencode,0,dA.work,Gt={bits:dA.lenbits}),dA.lenbits=Gt.bits,tt){VA.msg="invalid code lengths set",dA.mode=30;break}dA.have=0,dA.mode=19;case 19:for(;dA.have>>16&255,kt=65535&rt,!((mt=rt>>>24)<=pe);){if(0===de)break A;de--,ce+=ve[W++]<>>=mt,pe-=mt,dA.lens[dA.have++]=kt;else{if(16===kt){for(Rt=mt+2;pe>>=mt,pe-=mt,0===dA.have){VA.msg="invalid bit length repeat",dA.mode=30;break}lt=dA.lens[dA.have-1],Ze=3+(3&ce),ce>>>=2,pe-=2}else if(17===kt){for(Rt=mt+3;pe>>=mt)),ce>>>=3,pe-=3}else{for(Rt=mt+7;pe>>=mt)),ce>>>=7,pe-=7}if(dA.have+Ze>dA.nlen+dA.ndist){VA.msg="invalid bit length repeat",dA.mode=30;break}for(;Ze--;)dA.lens[dA.have++]=lt}}if(30===dA.mode)break;if(0===dA.lens[256]){VA.msg="invalid code -- missing end-of-block",dA.mode=30;break}if(dA.lenbits=9,tt=V(1,dA.lens,0,dA.nlen,dA.lencode,0,dA.work,Gt={bits:dA.lenbits}),dA.lenbits=Gt.bits,tt){VA.msg="invalid literal/lengths set",dA.mode=30;break}if(dA.distbits=6,dA.distcode=dA.distdyn,tt=V(2,dA.lens,dA.nlen,dA.ndist,dA.distcode,0,dA.work,Gt={bits:dA.distbits}),dA.distbits=Gt.bits,tt){VA.msg="invalid distances set",dA.mode=30;break}if(dA.mode=20,6===Ce)break A;case 20:dA.mode=21;case 21:if(de>=6&&SA>=258){VA.next_out=Ie,VA.avail_out=SA,VA.next_in=W,VA.avail_in=de,dA.hold=ce,dA.bits=pe,Y(VA,We),Ie=VA.next_out,qe=VA.output,SA=VA.avail_out,W=VA.next_in,ve=VA.input,de=VA.avail_in,ce=dA.hold,pe=dA.bits,12===dA.mode&&(dA.back=-1);break}for(dA.back=0;zt=(rt=dA.lencode[ce&(1<>>16&255,kt=65535&rt,!((mt=rt>>>24)<=pe);){if(0===de)break A;de--,ce+=ve[W++]<>Jt)])>>>16&255,kt=65535&rt,!(Jt+(mt=rt>>>24)<=pe);){if(0===de)break A;de--,ce+=ve[W++]<>>=Jt,pe-=Jt,dA.back+=Jt}if(ce>>>=mt,pe-=mt,dA.back+=mt,dA.length=kt,0===zt){dA.mode=26;break}if(32&zt){dA.back=-1,dA.mode=12;break}if(64&zt){VA.msg="invalid literal/length code",dA.mode=30;break}dA.extra=15&zt,dA.mode=22;case 22:if(dA.extra){for(Rt=dA.extra;pe>>=dA.extra,pe-=dA.extra,dA.back+=dA.extra}dA.was=dA.length,dA.mode=23;case 23:for(;zt=(rt=dA.distcode[ce&(1<>>16&255,kt=65535&rt,!((mt=rt>>>24)<=pe);){if(0===de)break A;de--,ce+=ve[W++]<>Jt)])>>>16&255,kt=65535&rt,!(Jt+(mt=rt>>>24)<=pe);){if(0===de)break A;de--,ce+=ve[W++]<>>=Jt,pe-=Jt,dA.back+=Jt}if(ce>>>=mt,pe-=mt,dA.back+=mt,64&zt){VA.msg="invalid distance code",dA.mode=30;break}dA.offset=kt,dA.extra=15&zt,dA.mode=24;case 24:if(dA.extra){for(Rt=dA.extra;pe>>=dA.extra,pe-=dA.extra,dA.back+=dA.extra}if(dA.offset>dA.dmax){VA.msg="invalid distance too far back",dA.mode=30;break}dA.mode=25;case 25:if(0===SA)break A;if(dA.offset>(Ze=We-SA)){if((Ze=dA.offset-Ze)>dA.whave&&dA.sane){VA.msg="invalid distance too far back",dA.mode=30;break}Ct=Ze>dA.wnext?dA.wsize-(Ze-=dA.wnext):dA.wnext-Ze,Ze>dA.length&&(Ze=dA.length),Kt=dA.window}else Kt=qe,Ct=Ie-dA.offset,Ze=dA.length;Ze>SA&&(Ze=SA),SA-=Ze,dA.length-=Ze;do{qe[Ie++]=Kt[Ct++]}while(--Ze);0===dA.length&&(dA.mode=21);break;case 26:if(0===SA)break A;qe[Ie++]=dA.length,SA--,dA.mode=21;break;case 27:if(dA.wrap){for(;pe<32;){if(0===de)break A;de--,ce|=ve[W++]<=0;)R[pA]=0}var L=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],eA=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],UA=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],xA=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],gA=new Array(576);d(gA);var JA=new Array(60);d(JA);var Be=new Array(512);d(Be);var KA=new Array(256);d(KA);var ae=new Array(29);d(ae);var kA,CA,iA,we=new Array(30);function ie(R,pA,aA,Me,VA){this.static_tree=R,this.extra_bits=pA,this.extra_base=aA,this.elems=Me,this.max_length=VA,this.has_stree=R&&R.length}function hA(R,pA){this.dyn_tree=R,this.max_code=0,this.stat_desc=pA}function bA(R){return R<256?Be[R]:Be[256+(R>>>7)]}function ne(R,pA){R.pending_buf[R.pending++]=255&pA,R.pending_buf[R.pending++]=pA>>>8&255}function $A(R,pA,aA){R.bi_valid>16-aA?(R.bi_buf|=pA<>16-R.bi_valid,R.bi_valid+=aA-16):(R.bi_buf|=pA<>>=1,aA<<=1}while(--pA>0);return aA>>>1}function H(R,pA,aA){var Ce,dA,Me=new Array(16),VA=0;for(Ce=1;Ce<=15;Ce++)Me[Ce]=VA=VA+aA[Ce-1]<<1;for(dA=0;dA<=pA;dA++){var ve=R[2*dA+1];0!==ve&&(R[2*dA]=P(Me[ve]++,ve))}}function wA(R){var pA;for(pA=0;pA<286;pA++)R.dyn_ltree[2*pA]=0;for(pA=0;pA<30;pA++)R.dyn_dtree[2*pA]=0;for(pA=0;pA<19;pA++)R.bl_tree[2*pA]=0;R.dyn_ltree[512]=1,R.opt_len=R.static_len=0,R.last_lit=R.matches=0}function j(R){R.bi_valid>8?ne(R,R.bi_buf):R.bi_valid>0&&(R.pending_buf[R.pending++]=R.bi_buf),R.bi_buf=0,R.bi_valid=0}function PA(R,pA,aA,Me){var VA=2*pA,Ce=2*aA;return R[VA]>1;dA>=1;dA--)XA(R,aA,dA);W=Ce;do{dA=R.heap[1],R.heap[1]=R.heap[R.heap_len--],XA(R,aA,1),ve=R.heap[1],R.heap[--R.heap_max]=dA,R.heap[--R.heap_max]=ve,aA[2*W]=aA[2*dA]+aA[2*ve],R.depth[W]=(R.depth[dA]>=R.depth[ve]?R.depth[dA]:R.depth[ve])+1,aA[2*dA+1]=aA[2*ve+1]=W,R.heap[1]=W++,XA(R,aA,1)}while(R.heap_len>=2);R.heap[--R.heap_max]=R.heap[1],function w(R,pA){var W,Ie,de,SA,ce,pe,aA=pA.dyn_tree,Me=pA.max_code,VA=pA.stat_desc.static_tree,Ce=pA.stat_desc.has_stree,dA=pA.stat_desc.extra_bits,ve=pA.stat_desc.extra_base,qe=pA.stat_desc.max_length,st=0;for(SA=0;SA<=15;SA++)R.bl_count[SA]=0;for(aA[2*R.heap[R.heap_max]+1]=0,W=R.heap_max+1;W<573;W++)(SA=aA[2*aA[2*(Ie=R.heap[W])+1]+1]+1)>qe&&(SA=qe,st++),aA[2*Ie+1]=SA,!(Ie>Me)&&(R.bl_count[SA]++,ce=0,Ie>=ve&&(ce=dA[Ie-ve]),R.opt_len+=(pe=aA[2*Ie])*(SA+ce),Ce&&(R.static_len+=pe*(VA[2*Ie+1]+ce)));if(0!==st){do{for(SA=qe-1;0===R.bl_count[SA];)SA--;R.bl_count[SA]--,R.bl_count[SA+1]+=2,R.bl_count[qe]--,st-=2}while(st>0);for(SA=qe;0!==SA;SA--)for(Ie=R.bl_count[SA];0!==Ie;)!((de=R.heap[--W])>Me)&&(aA[2*de+1]!==SA&&(R.opt_len+=(SA-aA[2*de+1])*aA[2*de],aA[2*de+1]=SA),Ie--)}}(R,pA),H(aA,qe,R.bl_count)}function ye(R,pA,aA){var Me,Ce,VA=-1,dA=pA[1],ve=0,qe=7,W=4;for(0===dA&&(qe=138,W=3),pA[2*(aA+1)+1]=65535,Me=0;Me<=aA;Me++)Ce=dA,dA=pA[2*(Me+1)+1],!(++ve>=7;Me<30;Me++)for(we[Me]=VA<<7,R=0;R<1<0?(2===R.strm.data_type&&(R.strm.data_type=function Pe(R){var aA,pA=4093624447;for(aA=0;aA<=31;aA++,pA>>>=1)if(1&pA&&0!==R.dyn_ltree[2*aA])return 0;if(0!==R.dyn_ltree[18]||0!==R.dyn_ltree[20]||0!==R.dyn_ltree[26])return 1;for(aA=32;aA<256;aA++)if(0!==R.dyn_ltree[2*aA])return 1;return 0}(R)),fe(R,R.l_desc),fe(R,R.d_desc),dA=function He(R){var pA;for(ye(R,R.dyn_ltree,R.l_desc.max_code),ye(R,R.dyn_dtree,R.d_desc.max_code),fe(R,R.bl_desc),pA=18;pA>=3&&0===R.bl_tree[2*xA[pA]+1];pA--);return R.opt_len+=3*(pA+1)+5+5+4,pA}(R),(Ce=R.static_len+3+7>>>3)<=(VA=R.opt_len+3+7>>>3)&&(VA=Ce)):VA=Ce=aA+5,aA+4<=VA&&-1!==pA?T(R,pA,aA,Me):4===R.strategy||Ce===VA?($A(R,2+(Me?1:0),3),vA(R,gA,JA)):($A(R,4+(Me?1:0),3),function _e(R,pA,aA,Me){var VA;for($A(R,pA-257,5),$A(R,aA-1,5),$A(R,Me-4,4),VA=0;VA>>8&255,R.pending_buf[R.d_buf+2*R.last_lit+1]=255&pA,R.pending_buf[R.l_buf+R.last_lit]=255&aA,R.last_lit++,0===pA?R.dyn_ltree[2*aA]++:(R.matches++,pA--,R.dyn_ltree[2*(KA[aA]+256+1)]++,R.dyn_dtree[2*bA(pA)]++),R.last_lit===R.lit_bufsize-1},D._tr_align=function v(R){$A(R,2,3),EA(R,256,gA),function cA(R){16===R.bi_valid?(ne(R,R.bi_buf),R.bi_buf=0,R.bi_valid=0):R.bi_valid>=8&&(R.pending_buf[R.pending++]=255&R.bi_buf,R.bi_buf>>=8,R.bi_valid-=8)}(R)}},2416(q,D,g){q.exports=g(6811).default},2504(q,D){"use strict";D.byteLength=function c(Q){var y=d(Q),lA=y[1];return 3*(y[0]+lA)/4-lA},D.toByteArray=function U(Q){var y,$,K=d(Q),lA=K[0],uA=K[1],G=new B(function x(Q,y,K){return 3*(y+K)/4-K}(0,lA,uA)),J=0,rA=uA>0?lA-4:lA;for($=0;$>16&255,G[J++]=y>>8&255,G[J++]=255&y;return 2===uA&&(y=t[Q.charCodeAt($)]<<2|t[Q.charCodeAt($+1)]>>4,G[J++]=255&y),1===uA&&(y=t[Q.charCodeAt($)]<<10|t[Q.charCodeAt($+1)]<<4|t[Q.charCodeAt($+2)]>>2,G[J++]=y>>8&255,G[J++]=255&y),G},D.fromByteArray=function _(Q){for(var y,K=Q.length,lA=K%3,uA=[],G=16383,J=0,rA=K-lA;JrA?rA:J+G));return 1===lA?uA.push(g[(y=Q[K-1])>>2]+g[y<<4&63]+"=="):2===lA&&uA.push(g[(y=(Q[K-2]<<8)+Q[K-1])>>10]+g[y>>4&63]+g[y<<2&63]+"="),uA.join("")};for(var g=[],t=[],B=typeof Uint8Array<"u"?Uint8Array:Array,M="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Y=0;Y<64;++Y)g[Y]=M[Y],t[M.charCodeAt(Y)]=Y;function d(Q){var y=Q.length;if(y%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var K=Q.indexOf("=");return-1===K&&(K=y),[K,K===y?0:4-K%4]}function E(Q){return g[Q>>18&63]+g[Q>>12&63]+g[Q>>6&63]+g[63&Q]}function N(Q,y,K){for(var uA=[],G=y;G0?g:D)(M)}},2538(q,D,g){"use strict";var t=g(5144),B=g(299);q.exports=t&&B(function(){return 42!==Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype})},2621(q){"use strict";q.exports=function(g){return g!=g}},2657(q,D,g){"use strict";var t=g(3598);q.exports=function(B){return t(B)||null===B}},2719(q){"use strict";var g=Object.prototype.toString,t=Math.max,M=function(c,x){for(var U=[],E=0;E-1?B([c]):c}},2843(q){"use strict";q.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var g={},t=Symbol("test"),B=Object(t);if("string"==typeof t||"[object Symbol]"!==Object.prototype.toString.call(t)||"[object Symbol]"!==Object.prototype.toString.call(B))return!1;for(var Y in g[t]=42,g)return!1;if("function"==typeof Object.keys&&0!==Object.keys(g).length||"function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(g).length)return!1;var V=Object.getOwnPropertySymbols(g);if(1!==V.length||V[0]!==t||!Object.prototype.propertyIsEnumerable.call(g,t))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var d=Object.getOwnPropertyDescriptor(g,t);if(42!==d.value||!0!==d.enumerable)return!1}return!0}},2858(q,D,g){"use strict";var M,Y,V,d,c,x,E,_,Q,K,lA,uA,J,$,b,BA,eA,UA,t;q.exports=(t=g(6861),g(6818),void(t.lib.Cipher||(M=t,Y=M.lib,V=Y.Base,d=Y.WordArray,c=Y.BufferedBlockAlgorithm,x=M.enc,E=x.Base64,_=M.algo.EvpKDF,Q=Y.Cipher=c.extend({cfg:V.extend(),createEncryptor:function(xA,QA){return this.create(this._ENC_XFORM_MODE,xA,QA)},createDecryptor:function(xA,QA){return this.create(this._DEC_XFORM_MODE,xA,QA)},init:function(xA,QA,gA){this.cfg=this.cfg.extend(gA),this._xformMode=xA,this._key=QA,this.reset()},reset:function(){c.reset.call(this),this._doReset()},process:function(xA){return this._append(xA),this._process()},finalize:function(xA){return xA&&this._append(xA),this._doFinalize()},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(){function xA(QA){return"string"==typeof QA?UA:BA}return function(QA){return{encrypt:function(gA,JA,Be){return xA(JA).encrypt(QA,gA,JA,Be)},decrypt:function(gA,JA,Be){return xA(JA).decrypt(QA,gA,JA,Be)}}}}()}),Y.StreamCipher=Q.extend({_doFinalize:function(){return this._process(!0)},blockSize:1}),K=M.mode={},lA=Y.BlockCipherMode=V.extend({createEncryptor:function(xA,QA){return this.Encryptor.create(xA,QA)},createDecryptor:function(xA,QA){return this.Decryptor.create(xA,QA)},init:function(xA,QA){this._cipher=xA,this._iv=QA}}),uA=K.CBC=function(){var xA=lA.extend();function QA(gA,JA,Be){var KA,ae=this._iv;ae?(KA=ae,this._iv=undefined):KA=this._prevBlock;for(var we=0;we>>2]}},Y.BlockCipher=Q.extend({cfg:Q.cfg.extend({mode:uA,padding:J}),reset:function(){var xA;Q.reset.call(this);var QA=this.cfg,gA=QA.iv,JA=QA.mode;this._xformMode==this._ENC_XFORM_MODE?xA=JA.createEncryptor:(xA=JA.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==xA?this._mode.init(this,gA&&gA.words):(this._mode=xA.call(JA,this,gA&&gA.words),this._mode.__creator=xA)},_doProcessBlock:function(xA,QA){this._mode.processBlock(xA,QA)},_doFinalize:function(){var xA,QA=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(QA.pad(this._data,this.blockSize),xA=this._process(!0)):(xA=this._process(!0),QA.unpad(xA)),xA},blockSize:4}),$=Y.CipherParams=V.extend({init:function(xA){this.mixIn(xA)},toString:function(xA){return(xA||this.formatter).stringify(this)}}),b=(M.format={}).OpenSSL={stringify:function(xA){var gA=xA.ciphertext,JA=xA.salt;return(JA?d.create([1398893684,1701076831]).concat(JA).concat(gA):gA).toString(E)},parse:function(xA){var QA,gA=E.parse(xA),JA=gA.words;return 1398893684==JA[0]&&1701076831==JA[1]&&(QA=d.create(JA.slice(2,4)),JA.splice(0,4),gA.sigBytes-=16),$.create({ciphertext:gA,salt:QA})}},BA=Y.SerializableCipher=V.extend({cfg:V.extend({format:b}),encrypt:function(xA,QA,gA,JA){JA=this.cfg.extend(JA);var Be=xA.createEncryptor(gA,JA),KA=Be.finalize(QA),ae=Be.cfg;return $.create({ciphertext:KA,key:gA,iv:ae.iv,algorithm:xA,mode:ae.mode,padding:ae.padding,blockSize:xA.blockSize,formatter:JA.format})},decrypt:function(xA,QA,gA,JA){return JA=this.cfg.extend(JA),QA=this._parse(QA,JA.format),xA.createDecryptor(gA,JA).finalize(QA.ciphertext)},_parse:function(xA,QA){return"string"==typeof xA?QA.parse(xA,this):xA}}),eA=(M.kdf={}).OpenSSL={execute:function(xA,QA,gA,JA,Be){if(JA||(JA=d.random(8)),Be)var KA=_.create({keySize:QA+gA,hasher:Be}).compute(xA,JA);else KA=_.create({keySize:QA+gA}).compute(xA,JA);var ae=d.create(KA.words.slice(QA),4*gA);return KA.sigBytes=4*QA,$.create({key:KA,iv:ae,salt:JA})}},UA=Y.PasswordBasedCipher=BA.extend({cfg:BA.cfg.extend({kdf:eA}),encrypt:function(xA,QA,gA,JA){var Be=(JA=this.cfg.extend(JA)).kdf.execute(gA,xA.keySize,xA.ivSize,JA.salt,JA.hasher);JA.iv=Be.iv;var KA=BA.encrypt.call(this,xA,QA,Be.key,JA);return KA.mixIn(Be),KA},decrypt:function(xA,QA,gA,JA){JA=this.cfg.extend(JA),QA=this._parse(QA,JA.format);var Be=JA.kdf.execute(gA,xA.keySize,xA.ivSize,QA.salt,JA.hasher);return JA.iv=Be.iv,BA.decrypt.call(this,xA,QA,Be.key,JA)}}))))},2908(q,D,g){"use strict";var t=g(783).Buffer,B=g(9964),M=g(7801),Y=g(7468),V=g(2925),d=g(2269),c=g(1607);for(var x in c)D[x]=c[x];function N(_){if("number"!=typeof _||_D.UNZIP)throw new TypeError("Bad argument");this.dictionary=null,this.err=0,this.flush=0,this.init_done=!1,this.level=0,this.memLevel=0,this.mode=_,this.strategy=0,this.windowBits=0,this.write_in_progress=!1,this.pending_close=!1,this.gzip_id_bytes_read=0}D.NONE=0,D.DEFLATE=1,D.INFLATE=2,D.GZIP=3,D.GUNZIP=4,D.DEFLATERAW=5,D.INFLATERAW=6,D.UNZIP=7,N.prototype.close=function(){this.write_in_progress?this.pending_close=!0:(this.pending_close=!1,M(this.init_done,"close before init"),M(this.mode<=D.UNZIP),this.mode===D.DEFLATE||this.mode===D.GZIP||this.mode===D.DEFLATERAW?V.deflateEnd(this.strm):(this.mode===D.INFLATE||this.mode===D.GUNZIP||this.mode===D.INFLATERAW||this.mode===D.UNZIP)&&d.inflateEnd(this.strm),this.mode=D.NONE,this.dictionary=null)},N.prototype.write=function(_,Q,y,K,lA,uA,G){return this._write(!0,_,Q,y,K,lA,uA,G)},N.prototype.writeSync=function(_,Q,y,K,lA,uA,G){return this._write(!1,_,Q,y,K,lA,uA,G)},N.prototype._write=function(_,Q,y,K,lA,uA,G,J){if(M.equal(arguments.length,8),M(this.init_done,"write before init"),M(this.mode!==D.NONE,"already finalized"),M.equal(!1,this.write_in_progress,"write already in progress"),M.equal(!1,this.pending_close,"close is pending"),this.write_in_progress=!0,M.equal(!1,void 0===Q,"must provide flush value"),this.write_in_progress=!0,Q!==D.Z_NO_FLUSH&&Q!==D.Z_PARTIAL_FLUSH&&Q!==D.Z_SYNC_FLUSH&&Q!==D.Z_FULL_FLUSH&&Q!==D.Z_FINISH&&Q!==D.Z_BLOCK)throw new Error("Invalid flush value");if(null==y&&(y=t.alloc(0),lA=0,K=0),this.strm.avail_in=lA,this.strm.input=y,this.strm.next_in=K,this.strm.avail_out=J,this.strm.output=uA,this.strm.next_out=G,this.flush=Q,!_)return this._process(),this._checkError()?this._afterSync():void 0;var rA=this;return B.nextTick(function(){rA._process(),rA._after()}),this},N.prototype._afterSync=function(){var _=this.strm.avail_out,Q=this.strm.avail_in;return this.write_in_progress=!1,[Q,_]},N.prototype._process=function(){var _=null;switch(this.mode){case D.DEFLATE:case D.GZIP:case D.DEFLATERAW:this.err=V.deflate(this.strm,this.flush);break;case D.UNZIP:switch(this.strm.avail_in>0&&(_=this.strm.next_in),this.gzip_id_bytes_read){case 0:if(null===_)break;if(31!==this.strm.input[_]){this.mode=D.INFLATE;break}if(this.gzip_id_bytes_read=1,_++,1===this.strm.avail_in)break;case 1:if(null===_)break;139===this.strm.input[_]?(this.gzip_id_bytes_read=2,this.mode=D.GUNZIP):this.mode=D.INFLATE;break;default:throw new Error("invalid number of gzip magic number bytes read")}case D.INFLATE:case D.GUNZIP:case D.INFLATERAW:for(this.err=d.inflate(this.strm,this.flush),this.err===D.Z_NEED_DICT&&this.dictionary&&(this.err=d.inflateSetDictionary(this.strm,this.dictionary),this.err===D.Z_OK?this.err=d.inflate(this.strm,this.flush):this.err===D.Z_DATA_ERROR&&(this.err=D.Z_NEED_DICT));this.strm.avail_in>0&&this.mode===D.GUNZIP&&this.err===D.Z_STREAM_END&&0!==this.strm.next_in[0];)this.reset(),this.err=d.inflate(this.strm,this.flush);break;default:throw new Error("Unknown mode "+this.mode)}},N.prototype._checkError=function(){switch(this.err){case D.Z_OK:case D.Z_BUF_ERROR:if(0!==this.strm.avail_out&&this.flush===D.Z_FINISH)return this._error("unexpected end of file"),!1;break;case D.Z_STREAM_END:break;case D.Z_NEED_DICT:return this._error(null==this.dictionary?"Missing dictionary":"Bad dictionary"),!1;default:return this._error("Zlib error"),!1}return!0},N.prototype._after=function(){if(this._checkError()){var _=this.strm.avail_out,Q=this.strm.avail_in;this.write_in_progress=!1,this.callback(Q,_),this.pending_close&&this.close()}},N.prototype._error=function(_){this.strm.msg&&(_=this.strm.msg),this.onerror(_,this.err),this.write_in_progress=!1,this.pending_close&&this.close()},N.prototype.init=function(_,Q,y,K,lA){M(4===arguments.length||5===arguments.length,"init(windowBits, level, memLevel, strategy, [dictionary])"),M(_>=8&&_<=15,"invalid windowBits"),M(Q>=-1&&Q<=9,"invalid compression level"),M(y>=1&&y<=9,"invalid memlevel"),M(K===D.Z_FILTERED||K===D.Z_HUFFMAN_ONLY||K===D.Z_RLE||K===D.Z_FIXED||K===D.Z_DEFAULT_STRATEGY,"invalid strategy"),this._init(Q,_,y,K,lA),this._setDictionary()},N.prototype.params=function(){throw new Error("deflateParams Not supported")},N.prototype.reset=function(){this._reset(),this._setDictionary()},N.prototype._init=function(_,Q,y,K,lA){switch(this.level=_,this.windowBits=Q,this.memLevel=y,this.strategy=K,this.flush=D.Z_NO_FLUSH,this.err=D.Z_OK,(this.mode===D.GZIP||this.mode===D.GUNZIP)&&(this.windowBits+=16),this.mode===D.UNZIP&&(this.windowBits+=32),(this.mode===D.DEFLATERAW||this.mode===D.INFLATERAW)&&(this.windowBits=-1*this.windowBits),this.strm=new Y,this.mode){case D.DEFLATE:case D.GZIP:case D.DEFLATERAW:this.err=V.deflateInit2(this.strm,this.level,D.Z_DEFLATED,this.windowBits,this.memLevel,this.strategy);break;case D.INFLATE:case D.GUNZIP:case D.INFLATERAW:case D.UNZIP:this.err=d.inflateInit2(this.strm,this.windowBits);break;default:throw new Error("Unknown mode "+this.mode)}this.err!==D.Z_OK&&this._error("Init error"),this.dictionary=lA,this.write_in_progress=!1,this.init_done=!0},N.prototype._setDictionary=function(){if(null!=this.dictionary){switch(this.err=D.Z_OK,this.mode){case D.DEFLATE:case D.DEFLATERAW:this.err=V.deflateSetDictionary(this.strm,this.dictionary)}this.err!==D.Z_OK&&this._error("Failed to set dictionary")}},N.prototype._reset=function(){switch(this.err=D.Z_OK,this.mode){case D.DEFLATE:case D.DEFLATERAW:case D.GZIP:this.err=V.deflateReset(this.strm);break;case D.INFLATE:case D.INFLATERAW:case D.GUNZIP:this.err=d.inflateReset(this.strm)}this.err!==D.Z_OK&&this._error("Failed to reset stream")},D.Zlib=N},2920(q,D,g){"use strict";var t=g(2519),x=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],U=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],E=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],N=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];q.exports=function(Q,y,K,lA,uA,G,J,rA){var Be,KA,ae,we,ie,iA,EA,P,cA,$=rA.bits,Z=0,b=0,BA=0,L=0,eA=0,UA=0,xA=0,QA=0,gA=0,JA=0,kA=null,CA=0,hA=new t.Buf16(16),bA=new t.Buf16(16),ne=null,$A=0;for(Z=0;Z<=15;Z++)hA[Z]=0;for(b=0;b=1&&0===hA[L];L--);if(eA>L&&(eA=L),0===L)return uA[G++]=20971520,uA[G++]=20971520,rA.bits=1,0;for(BA=1;BA0&&(0===Q||1!==L))return-1;for(bA[1]=0,Z=1;Z<15;Z++)bA[Z+1]=bA[Z]+hA[Z];for(b=0;b852||2===Q&&gA>592)return 1;for(;;){EA=Z-xA,J[b]iA?(P=ne[$A+J[b]],cA=kA[CA+J[b]]):(P=96,cA=0),Be=1<>xA)+(KA-=Be)]=EA<<24|P<<16|cA}while(0!==KA);for(Be=1<>=1;if(0!==Be?(JA&=Be-1,JA+=Be):JA=0,b++,0===--hA[Z]){if(Z===L)break;Z=y[K+J[b]]}if(Z>eA&&(JA&we)!==ae){for(0===xA&&(xA=eA),ie+=BA,QA=1<<(UA=Z-xA);UA+xA852||2===Q&&gA>592)return 1;uA[ae=JA&we]=eA<<24|UA<<16|ie-G}}return 0!==JA&&(uA[ie+JA]=4194304|Z-xA<<24),rA.bits=eA,0}},2925(q,D,g){"use strict";var u,t=g(2519),B=g(2367),M=g(6911),Y=g(9049),V=g(6228),Q=-2,ie=262;function wA(W,Ie){return W.msg=V[Ie],Ie}function j(W){return(W<<1)-(W>4?9:0)}function RA(W){for(var Ie=W.length;--Ie>=0;)W[Ie]=0}function PA(W){var Ie=W.state,de=Ie.pending;de>W.avail_out&&(de=W.avail_out),0!==de&&(t.arraySet(W.output,Ie.pending_buf,Ie.pending_out,de,W.next_out),W.next_out+=de,Ie.pending_out+=de,W.total_out+=de,W.avail_out-=de,Ie.pending-=de,0===Ie.pending&&(Ie.pending_out=0))}function XA(W,Ie){B._tr_flush_block(W,W.block_start>=0?W.block_start:-1,W.strstart-W.block_start,Ie),W.block_start=W.strstart,PA(W.strm)}function vA(W,Ie){W.pending_buf[W.pending++]=Ie}function fe(W,Ie){W.pending_buf[W.pending++]=Ie>>>8&255,W.pending_buf[W.pending++]=255&Ie}function ye(W,Ie,de,SA){var ce=W.avail_in;return ce>SA&&(ce=SA),0===ce?0:(W.avail_in-=ce,t.arraySet(Ie,W.input,W.next_in,ce,de),1===W.state.wrap?W.adler=M(W.adler,Ie,ce,de):2===W.state.wrap&&(W.adler=Y(W.adler,Ie,ce,de)),W.next_in+=ce,W.total_in+=ce,ce)}function Ge(W,Ie){var ce,pe,de=W.max_chain_length,SA=W.strstart,st=W.prev_length,We=W.nice_match,Ze=W.strstart>W.w_size-ie?W.strstart-(W.w_size-ie):0,Ct=W.window,Kt=W.w_mask,rt=W.prev,mt=W.strstart+258,zt=Ct[SA+st-1],kt=Ct[SA+st];W.prev_length>=W.good_match&&(de>>=2),We>W.lookahead&&(We=W.lookahead);do{if(Ct[(ce=Ie)+st]===kt&&Ct[ce+st-1]===zt&&Ct[ce]===Ct[SA]&&Ct[++ce]===Ct[SA+1]){SA+=2,ce++;do{}while(Ct[++SA]===Ct[++ce]&&Ct[++SA]===Ct[++ce]&&Ct[++SA]===Ct[++ce]&&Ct[++SA]===Ct[++ce]&&Ct[++SA]===Ct[++ce]&&Ct[++SA]===Ct[++ce]&&Ct[++SA]===Ct[++ce]&&Ct[++SA]===Ct[++ce]&&SAst){if(W.match_start=Ie,st=pe,pe>=We)break;zt=Ct[SA+st-1],kt=Ct[SA+st]}}}while((Ie=rt[Ie&Kt])>Ze&&0!==--de);return st<=W.lookahead?st:W.lookahead}function He(W){var de,SA,ce,pe,st,Ie=W.w_size;do{if(pe=W.window_size-W.lookahead-W.strstart,W.strstart>=Ie+(Ie-ie)){t.arraySet(W.window,W.window,Ie,Ie,0),W.match_start-=Ie,W.strstart-=Ie,W.block_start-=Ie,de=SA=W.hash_size;do{ce=W.head[--de],W.head[de]=ce>=Ie?ce-Ie:0}while(--SA);de=SA=Ie;do{ce=W.prev[--de],W.prev[de]=ce>=Ie?ce-Ie:0}while(--SA);pe+=Ie}if(0===W.strm.avail_in)break;if(SA=ye(W.strm,W.window,W.strstart+W.lookahead,pe),W.lookahead+=SA,W.lookahead+W.insert>=3)for(W.ins_h=W.window[st=W.strstart-W.insert],W.ins_h=(W.ins_h<=3&&(W.ins_h=(W.ins_h<=3)if(SA=B._tr_tally(W,W.strstart-W.match_start,W.match_length-3),W.lookahead-=W.match_length,W.match_length<=W.max_lazy_match&&W.lookahead>=3){W.match_length--;do{W.strstart++,W.ins_h=(W.ins_h<=3&&(W.ins_h=(W.ins_h<4096)&&(W.match_length=2)),W.prev_length>=3&&W.match_length<=W.prev_length){ce=W.strstart+W.lookahead-3,SA=B._tr_tally(W,W.strstart-1-W.prev_match,W.prev_length-3),W.lookahead-=W.prev_length-1,W.prev_length-=2;do{++W.strstart<=ce&&(W.ins_h=(W.ins_h<15&&(st=2,SA-=16),ce<1||ce>9||8!==de||SA<8||SA>15||Ie<0||Ie>9||pe<0||pe>4)return wA(W,Q);8===SA&&(SA=9);var We=new R;return W.state=We,We.strm=W,We.wrap=st,We.gzhead=null,We.w_bits=SA,We.w_size=1<W.pending_buf_size-5&&(de=W.pending_buf_size-5);;){if(W.lookahead<=1){if(He(W),0===W.lookahead&&0===Ie)return 1;if(0===W.lookahead)break}W.strstart+=W.lookahead,W.lookahead=0;var SA=W.block_start+de;if((0===W.strstart||W.strstart>=SA)&&(W.lookahead=W.strstart-SA,W.strstart=SA,XA(W,!1),0===W.strm.avail_out)||W.strstart-W.block_start>=W.w_size-ie&&(XA(W,!1),0===W.strm.avail_out))return 1}return W.insert=0,4===Ie?(XA(W,!0),0===W.strm.avail_out?3:4):(W.strstart>W.block_start&&XA(W,!1),1)}),new v(4,4,8,4,Pe),new v(4,5,16,8,Pe),new v(4,6,32,32,Pe),new v(4,4,16,16,te),new v(8,16,32,32,te),new v(8,16,128,128,te),new v(8,32,128,256,te),new v(32,128,258,1024,te),new v(32,258,258,4096,te)],D.deflateInit=function Ce(W,Ie){return VA(W,Ie,8,15,8,0)},D.deflateInit2=VA,D.deflateReset=aA,D.deflateResetKeep=pA,D.deflateSetHeader=function Me(W,Ie){return W&&W.state&&2===W.state.wrap?(W.state.gzhead=Ie,0):Q},D.deflate=function dA(W,Ie){var de,SA,ce,pe;if(!W||!W.state||Ie>5||Ie<0)return W?wA(W,Q):Q;if(SA=W.state,!W.output||!W.input&&0!==W.avail_in||666===SA.status&&4!==Ie)return wA(W,0===W.avail_out?-5:Q);if(SA.strm=W,de=SA.last_flush,SA.last_flush=Ie,42===SA.status)if(2===SA.wrap)W.adler=0,vA(SA,31),vA(SA,139),vA(SA,8),SA.gzhead?(vA(SA,(SA.gzhead.text?1:0)+(SA.gzhead.hcrc?2:0)+(SA.gzhead.extra?4:0)+(SA.gzhead.name?8:0)+(SA.gzhead.comment?16:0)),vA(SA,255&SA.gzhead.time),vA(SA,SA.gzhead.time>>8&255),vA(SA,SA.gzhead.time>>16&255),vA(SA,SA.gzhead.time>>24&255),vA(SA,9===SA.level?2:SA.strategy>=2||SA.level<2?4:0),vA(SA,255&SA.gzhead.os),SA.gzhead.extra&&SA.gzhead.extra.length&&(vA(SA,255&SA.gzhead.extra.length),vA(SA,SA.gzhead.extra.length>>8&255)),SA.gzhead.hcrc&&(W.adler=Y(W.adler,SA.pending_buf,SA.pending,0)),SA.gzindex=0,SA.status=69):(vA(SA,0),vA(SA,0),vA(SA,0),vA(SA,0),vA(SA,0),vA(SA,9===SA.level?2:SA.strategy>=2||SA.level<2?4:0),vA(SA,3),SA.status=113);else{var st=8+(SA.w_bits-8<<4)<<8;st|=(SA.strategy>=2||SA.level<2?0:SA.level<6?1:6===SA.level?2:3)<<6,0!==SA.strstart&&(st|=32),st+=31-st%31,SA.status=113,fe(SA,st),0!==SA.strstart&&(fe(SA,W.adler>>>16),fe(SA,65535&W.adler)),W.adler=1}if(69===SA.status)if(SA.gzhead.extra){for(ce=SA.pending;SA.gzindex<(65535&SA.gzhead.extra.length)&&(SA.pending!==SA.pending_buf_size||(SA.gzhead.hcrc&&SA.pending>ce&&(W.adler=Y(W.adler,SA.pending_buf,SA.pending-ce,ce)),PA(W),ce=SA.pending,SA.pending!==SA.pending_buf_size));)vA(SA,255&SA.gzhead.extra[SA.gzindex]),SA.gzindex++;SA.gzhead.hcrc&&SA.pending>ce&&(W.adler=Y(W.adler,SA.pending_buf,SA.pending-ce,ce)),SA.gzindex===SA.gzhead.extra.length&&(SA.gzindex=0,SA.status=73)}else SA.status=73;if(73===SA.status)if(SA.gzhead.name){ce=SA.pending;do{if(SA.pending===SA.pending_buf_size&&(SA.gzhead.hcrc&&SA.pending>ce&&(W.adler=Y(W.adler,SA.pending_buf,SA.pending-ce,ce)),PA(W),ce=SA.pending,SA.pending===SA.pending_buf_size)){pe=1;break}pe=SA.gzindexce&&(W.adler=Y(W.adler,SA.pending_buf,SA.pending-ce,ce)),0===pe&&(SA.gzindex=0,SA.status=91)}else SA.status=91;if(91===SA.status)if(SA.gzhead.comment){ce=SA.pending;do{if(SA.pending===SA.pending_buf_size&&(SA.gzhead.hcrc&&SA.pending>ce&&(W.adler=Y(W.adler,SA.pending_buf,SA.pending-ce,ce)),PA(W),ce=SA.pending,SA.pending===SA.pending_buf_size)){pe=1;break}pe=SA.gzindexce&&(W.adler=Y(W.adler,SA.pending_buf,SA.pending-ce,ce)),0===pe&&(SA.status=103)}else SA.status=103;if(103===SA.status&&(SA.gzhead.hcrc?(SA.pending+2>SA.pending_buf_size&&PA(W),SA.pending+2<=SA.pending_buf_size&&(vA(SA,255&W.adler),vA(SA,W.adler>>8&255),W.adler=0,SA.status=113)):SA.status=113),0!==SA.pending){if(PA(W),0===W.avail_out)return SA.last_flush=-1,0}else if(0===W.avail_in&&j(Ie)<=j(de)&&4!==Ie)return wA(W,-5);if(666===SA.status&&0!==W.avail_in)return wA(W,-5);if(0!==W.avail_in||0!==SA.lookahead||0!==Ie&&666!==SA.status){var Ze=2===SA.strategy?function T(W,Ie){for(var de;;){if(0===W.lookahead&&(He(W),0===W.lookahead)){if(0===Ie)return 1;break}if(W.match_length=0,de=B._tr_tally(W,0,W.window[W.strstart]),W.lookahead--,W.strstart++,de&&(XA(W,!1),0===W.strm.avail_out))return 1}return W.insert=0,4===Ie?(XA(W,!0),0===W.strm.avail_out?3:4):W.last_lit&&(XA(W,!1),0===W.strm.avail_out)?1:2}(SA,Ie):3===SA.strategy?function sA(W,Ie){for(var de,SA,ce,pe,st=W.window;;){if(W.lookahead<=258){if(He(W),W.lookahead<=258&&0===Ie)return 1;if(0===W.lookahead)break}if(W.match_length=0,W.lookahead>=3&&W.strstart>0&&(SA=st[ce=W.strstart-1])===st[++ce]&&SA===st[++ce]&&SA===st[++ce]){pe=W.strstart+258;do{}while(SA===st[++ce]&&SA===st[++ce]&&SA===st[++ce]&&SA===st[++ce]&&SA===st[++ce]&&SA===st[++ce]&&SA===st[++ce]&&SA===st[++ce]&&ceW.lookahead&&(W.match_length=W.lookahead)}if(W.match_length>=3?(de=B._tr_tally(W,1,W.match_length-3),W.lookahead-=W.match_length,W.strstart+=W.match_length,W.match_length=0):(de=B._tr_tally(W,0,W.window[W.strstart]),W.lookahead--,W.strstart++),de&&(XA(W,!1),0===W.strm.avail_out))return 1}return W.insert=0,4===Ie?(XA(W,!0),0===W.strm.avail_out?3:4):W.last_lit&&(XA(W,!1),0===W.strm.avail_out)?1:2}(SA,Ie):u[SA.level].func(SA,Ie);if((3===Ze||4===Ze)&&(SA.status=666),1===Ze||3===Ze)return 0===W.avail_out&&(SA.last_flush=-1),0;if(2===Ze&&(1===Ie?B._tr_align(SA):5!==Ie&&(B._tr_stored_block(SA,0,0,!1),3===Ie&&(RA(SA.head),0===SA.lookahead&&(SA.strstart=0,SA.block_start=0,SA.insert=0))),PA(W),0===W.avail_out))return SA.last_flush=-1,0}return 4!==Ie?0:SA.wrap<=0?1:(2===SA.wrap?(vA(SA,255&W.adler),vA(SA,W.adler>>8&255),vA(SA,W.adler>>16&255),vA(SA,W.adler>>24&255),vA(SA,255&W.total_in),vA(SA,W.total_in>>8&255),vA(SA,W.total_in>>16&255),vA(SA,W.total_in>>24&255)):(fe(SA,W.adler>>>16),fe(SA,65535&W.adler)),PA(W),SA.wrap>0&&(SA.wrap=-SA.wrap),0!==SA.pending?0:1)},D.deflateEnd=function ve(W){var Ie;return W&&W.state?42!==(Ie=W.state.status)&&69!==Ie&&73!==Ie&&91!==Ie&&103!==Ie&&113!==Ie&&666!==Ie?wA(W,Q):(W.state=null,113===Ie?wA(W,-3):0):Q},D.deflateSetDictionary=function qe(W,Ie){var SA,ce,pe,st,We,Ze,Ct,Kt,de=Ie.length;if(!W||!W.state||2===(st=(SA=W.state).wrap)||1===st&&42!==SA.status||SA.lookahead)return Q;for(1===st&&(W.adler=M(W.adler,Ie,de,0)),SA.wrap=0,de>=SA.w_size&&(0===st&&(RA(SA.head),SA.strstart=0,SA.block_start=0,SA.insert=0),Kt=new t.Buf8(SA.w_size),t.arraySet(Kt,Ie,de-SA.w_size,SA.w_size,0),Ie=Kt,de=SA.w_size),We=W.avail_in,Ze=W.next_in,Ct=W.input,W.avail_in=de,W.next_in=0,W.input=Ie,He(SA);SA.lookahead>=3;){ce=SA.strstart,pe=SA.lookahead-2;do{SA.ins_h=(SA.ins_h<D},3018(q,D,g){"use strict";var t=g(3301),B=TypeError;q.exports=function(M){var Y=t(M,"number");if("number"==typeof Y)throw new B("Can't convert number to bigint");return BigInt(Y)}},3032(q,D,g){"use strict";var t;q.exports=(t=g(6861),g(4866),g(3532),g(6818),g(2858),function(){var B=t,Y=B.lib.BlockCipher;const d=16,c=[608135816,2242054355,320440878,57701188,2752067618,698298832,137296536,3964562569,1160258022,953160567,3193202383,887688300,3232508343,3380367581,1065670069,3041331479,2450970073,2306472731],x=[[3509652390,2564797868,805139163,3491422135,3101798381,1780907670,3128725573,4046225305,614570311,3012652279,134345442,2240740374,1667834072,1901547113,2757295779,4103290238,227898511,1921955416,1904987480,2182433518,2069144605,3260701109,2620446009,720527379,3318853667,677414384,3393288472,3101374703,2390351024,1614419982,1822297739,2954791486,3608508353,3174124327,2024746970,1432378464,3864339955,2857741204,1464375394,1676153920,1439316330,715854006,3033291828,289532110,2706671279,2087905683,3018724369,1668267050,732546397,1947742710,3462151702,2609353502,2950085171,1814351708,2050118529,680887927,999245976,1800124847,3300911131,1713906067,1641548236,4213287313,1216130144,1575780402,4018429277,3917837745,3693486850,3949271944,596196993,3549867205,258830323,2213823033,772490370,2760122372,1774776394,2652871518,566650946,4142492826,1728879713,2882767088,1783734482,3629395816,2517608232,2874225571,1861159788,326777828,3124490320,2130389656,2716951837,967770486,1724537150,2185432712,2364442137,1164943284,2105845187,998989502,3765401048,2244026483,1075463327,1455516326,1322494562,910128902,469688178,1117454909,936433444,3490320968,3675253459,1240580251,122909385,2157517691,634681816,4142456567,3825094682,3061402683,2540495037,79693498,3249098678,1084186820,1583128258,426386531,1761308591,1047286709,322548459,995290223,1845252383,2603652396,3431023940,2942221577,3202600964,3727903485,1712269319,422464435,3234572375,1170764815,3523960633,3117677531,1434042557,442511882,3600875718,1076654713,1738483198,4213154764,2393238008,3677496056,1014306527,4251020053,793779912,2902807211,842905082,4246964064,1395751752,1040244610,2656851899,3396308128,445077038,3742853595,3577915638,679411651,2892444358,2354009459,1767581616,3150600392,3791627101,3102740896,284835224,4246832056,1258075500,768725851,2589189241,3069724005,3532540348,1274779536,3789419226,2764799539,1660621633,3471099624,4011903706,913787905,3497959166,737222580,2514213453,2928710040,3937242737,1804850592,3499020752,2949064160,2386320175,2390070455,2415321851,4061277028,2290661394,2416832540,1336762016,1754252060,3520065937,3014181293,791618072,3188594551,3933548030,2332172193,3852520463,3043980520,413987798,3465142937,3030929376,4245938359,2093235073,3534596313,375366246,2157278981,2479649556,555357303,3870105701,2008414854,3344188149,4221384143,3956125452,2067696032,3594591187,2921233993,2428461,544322398,577241275,1471733935,610547355,4027169054,1432588573,1507829418,2025931657,3646575487,545086370,48609733,2200306550,1653985193,298326376,1316178497,3007786442,2064951626,458293330,2589141269,3591329599,3164325604,727753846,2179363840,146436021,1461446943,4069977195,705550613,3059967265,3887724982,4281599278,3313849956,1404054877,2845806497,146425753,1854211946],[1266315497,3048417604,3681880366,3289982499,290971e4,1235738493,2632868024,2414719590,3970600049,1771706367,1449415276,3266420449,422970021,1963543593,2690192192,3826793022,1062508698,1531092325,1804592342,2583117782,2714934279,4024971509,1294809318,4028980673,1289560198,2221992742,1669523910,35572830,157838143,1052438473,1016535060,1802137761,1753167236,1386275462,3080475397,2857371447,1040679964,2145300060,2390574316,1461121720,2956646967,4031777805,4028374788,33600511,2920084762,1018524850,629373528,3691585981,3515945977,2091462646,2486323059,586499841,988145025,935516892,3367335476,2599673255,2839830854,265290510,3972581182,2759138881,3795373465,1005194799,847297441,406762289,1314163512,1332590856,1866599683,4127851711,750260880,613907577,1450815602,3165620655,3734664991,3650291728,3012275730,3704569646,1427272223,778793252,1343938022,2676280711,2052605720,1946737175,3164576444,3914038668,3967478842,3682934266,1661551462,3294938066,4011595847,840292616,3712170807,616741398,312560963,711312465,1351876610,322626781,1910503582,271666773,2175563734,1594956187,70604529,3617834859,1007753275,1495573769,4069517037,2549218298,2663038764,504708206,2263041392,3941167025,2249088522,1514023603,1998579484,1312622330,694541497,2582060303,2151582166,1382467621,776784248,2618340202,3323268794,2497899128,2784771155,503983604,4076293799,907881277,423175695,432175456,1378068232,4145222326,3954048622,3938656102,3820766613,2793130115,2977904593,26017576,3274890735,3194772133,1700274565,1756076034,4006520079,3677328699,720338349,1533947780,354530856,688349552,3973924725,1637815568,332179504,3949051286,53804574,2852348879,3044236432,1282449977,3583942155,3416972820,4006381244,1617046695,2628476075,3002303598,1686838959,431878346,2686675385,1700445008,1080580658,1009431731,832498133,3223435511,2605976345,2271191193,2516031870,1648197032,4164389018,2548247927,300782431,375919233,238389289,3353747414,2531188641,2019080857,1475708069,455242339,2609103871,448939670,3451063019,1395535956,2413381860,1841049896,1491858159,885456874,4264095073,4001119347,1565136089,3898914787,1108368660,540939232,1173283510,2745871338,3681308437,4207628240,3343053890,4016749493,1699691293,1103962373,3625875870,2256883143,3830138730,1031889488,3479347698,1535977030,4236805024,3251091107,2132092099,1774941330,1199868427,1452454533,157007616,2904115357,342012276,595725824,1480756522,206960106,497939518,591360097,863170706,2375253569,3596610801,1814182875,2094937945,3421402208,1082520231,3463918190,2785509508,435703966,3908032597,1641649973,2842273706,3305899714,1510255612,2148256476,2655287854,3276092548,4258621189,236887753,3681803219,274041037,1734335097,3815195456,3317970021,1899903192,1026095262,4050517792,356393447,2410691914,3873677099,3682840055],[3913112168,2491498743,4132185628,2489919796,1091903735,1979897079,3170134830,3567386728,3557303409,857797738,1136121015,1342202287,507115054,2535736646,337727348,3213592640,1301675037,2528481711,1895095763,1721773893,3216771564,62756741,2142006736,835421444,2531993523,1442658625,3659876326,2882144922,676362277,1392781812,170690266,3921047035,1759253602,3611846912,1745797284,664899054,1329594018,3901205900,3045908486,2062866102,2865634940,3543621612,3464012697,1080764994,553557557,3656615353,3996768171,991055499,499776247,1265440854,648242737,3940784050,980351604,3713745714,1749149687,3396870395,4211799374,3640570775,1161844396,3125318951,1431517754,545492359,4268468663,3499529547,1437099964,2702547544,3433638243,2581715763,2787789398,1060185593,1593081372,2418618748,4260947970,69676912,2159744348,86519011,2512459080,3838209314,1220612927,3339683548,133810670,1090789135,1078426020,1569222167,845107691,3583754449,4072456591,1091646820,628848692,1613405280,3757631651,526609435,236106946,48312990,2942717905,3402727701,1797494240,859738849,992217954,4005476642,2243076622,3870952857,3732016268,765654824,3490871365,2511836413,1685915746,3888969200,1414112111,2273134842,3281911079,4080962846,172450625,2569994100,980381355,4109958455,2819808352,2716589560,2568741196,3681446669,3329971472,1835478071,660984891,3704678404,4045999559,3422617507,3040415634,1762651403,1719377915,3470491036,2693910283,3642056355,3138596744,1364962596,2073328063,1983633131,926494387,3423689081,2150032023,4096667949,1749200295,3328846651,309677260,2016342300,1779581495,3079819751,111262694,1274766160,443224088,298511866,1025883608,3806446537,1145181785,168956806,3641502830,3584813610,1689216846,3666258015,3200248200,1692713982,2646376535,4042768518,1618508792,1610833997,3523052358,4130873264,2001055236,3610705100,2202168115,4028541809,2961195399,1006657119,2006996926,3186142756,1430667929,3210227297,1314452623,4074634658,4101304120,2273951170,1399257539,3367210612,3027628629,1190975929,2062231137,2333990788,2221543033,2438960610,1181637006,548689776,2362791313,3372408396,3104550113,3145860560,296247880,1970579870,3078560182,3769228297,1714227617,3291629107,3898220290,166772364,1251581989,493813264,448347421,195405023,2709975567,677966185,3703036547,1463355134,2715995803,1338867538,1343315457,2802222074,2684532164,233230375,2599980071,2000651841,3277868038,1638401717,4028070440,3237316320,6314154,819756386,300326615,590932579,1405279636,3267499572,3150704214,2428286686,3959192993,3461946742,1862657033,1266418056,963775037,2089974820,2263052895,1917689273,448879540,3550394620,3981727096,150775221,3627908307,1303187396,508620638,2975983352,2726630617,1817252668,1876281319,1457606340,908771278,3720792119,3617206836,2455994898,1729034894,1080033504],[976866871,3556439503,2881648439,1522871579,1555064734,1336096578,3548522304,2579274686,3574697629,3205460757,3593280638,3338716283,3079412587,564236357,2993598910,1781952180,1464380207,3163844217,3332601554,1699332808,1393555694,1183702653,3581086237,1288719814,691649499,2847557200,2895455976,3193889540,2717570544,1781354906,1676643554,2592534050,3230253752,1126444790,2770207658,2633158820,2210423226,2615765581,2414155088,3127139286,673620729,2805611233,1269405062,4015350505,3341807571,4149409754,1057255273,2012875353,2162469141,2276492801,2601117357,993977747,3918593370,2654263191,753973209,36408145,2530585658,25011837,3520020182,2088578344,530523599,2918365339,1524020338,1518925132,3760827505,3759777254,1202760957,3985898139,3906192525,674977740,4174734889,2031300136,2019492241,3983892565,4153806404,3822280332,352677332,2297720250,60907813,90501309,3286998549,1016092578,2535922412,2839152426,457141659,509813237,4120667899,652014361,1966332200,2975202805,55981186,2327461051,676427537,3255491064,2882294119,3433927263,1307055953,942726286,933058658,2468411793,3933900994,4215176142,1361170020,2001714738,2830558078,3274259782,1222529897,1679025792,2729314320,3714953764,1770335741,151462246,3013232138,1682292957,1483529935,471910574,1539241949,458788160,3436315007,1807016891,3718408830,978976581,1043663428,3165965781,1927990952,4200891579,2372276910,3208408903,3533431907,1412390302,2931980059,4132332400,1947078029,3881505623,4168226417,2941484381,1077988104,1320477388,886195818,18198404,3786409e3,2509781533,112762804,3463356488,1866414978,891333506,18488651,661792760,1628790961,3885187036,3141171499,876946877,2693282273,1372485963,791857591,2686433993,3759982718,3167212022,3472953795,2716379847,445679433,3561995674,3504004811,3574258232,54117162,3331405415,2381918588,3769707343,4154350007,1140177722,4074052095,668550556,3214352940,367459370,261225585,2610173221,4209349473,3468074219,3265815641,314222801,3066103646,3808782860,282218597,3406013506,3773591054,379116347,1285071038,846784868,2669647154,3771962079,3550491691,2305946142,453669953,1268987020,3317592352,3279303384,3744833421,2610507566,3859509063,266596637,3847019092,517658769,3462560207,3443424879,370717030,4247526661,2224018117,4143653529,4112773975,2788324899,2477274417,1456262402,2901442914,1517677493,1846949527,2295493580,3734397586,2176403920,1280348187,1908823572,3871786941,846861322,1172426758,3287448474,3383383037,1655181056,3139813346,901632758,1897031941,2986607138,3066810236,3447102507,1393639104,373351379,950779232,625454576,3124240540,4148612726,2007998917,544563296,2244738638,2330496472,2058025392,1291430526,424198748,50039436,29584100,3605783033,2429876329,2791104160,1057563949,3255363231,3075367218,3463963227,1469046755,985887462]];var U={pbox:[],sbox:[]};function E(K,lA){let $=K.sbox[0][lA>>24&255]+K.sbox[1][lA>>16&255];return $^=K.sbox[2][lA>>8&255],$+=K.sbox[3][255&lA],$}function N(K,lA,uA){let rA,G=lA,J=uA;for(let $=0;$=uA&&(G=0);let J=0,rA=0,$=0;for(let Z=0;Z<18;Z+=2)$=N(K,J,rA),J=$.left,rA=$.right,K.pbox[Z]=J,K.pbox[Z+1]=rA;for(let Z=0;Z<4;Z++)for(let b=0;b<256;b+=2)$=N(K,J,rA),J=$.left,rA=$.right,K.sbox[Z][b]=J,K.sbox[Z][b+1]=rA;return!0}(U,K.words,K.sigBytes/4)}},encryptBlock:function(K,lA){var uA=N(U,K[lA],K[lA+1]);K[lA]=uA.left,K[lA+1]=uA.right},decryptBlock:function(K,lA){var uA=function _(K,lA,uA){let rA,G=lA,J=uA;for(let $=17;$>1;--$)G^=K.pbox[$],J=E(K,G)^J,rA=G,G=J,J=rA;return rA=G,G=J,J=rA,J^=K.pbox[1],G^=K.pbox[0],{left:G,right:J}}(U,K[lA],K[lA+1]);K[lA]=uA.left,K[lA+1]=uA.right},blockSize:2,keySize:4,ivSize:2});B.Blowfish=Y._createHelper(y)}(),t.Blowfish)},3036(q){"use strict";q.exports=Function.prototype.apply},3143(q,D,g){"use strict";var t=g(5691).Buffer,B=t.isEncoding||function(G){switch((G=""+G)&&G.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function V(G){var J;switch(this.encoding=function Y(G){var J=function M(G){if(!G)return"utf8";for(var J;;)switch(G){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return G;default:if(J)return;G=(""+G).toLowerCase(),J=!0}}(G);if("string"!=typeof J&&(t.isEncoding===B||!B(G)))throw new Error("Unknown encoding: "+G);return J||G}(G),this.encoding){case"utf16le":this.text=_,this.end=Q,J=4;break;case"utf8":this.fillLast=U,J=4;break;case"base64":this.text=y,this.end=K,J=3;break;default:return this.write=lA,void(this.end=uA)}this.lastNeed=0,this.lastTotal=0,this.lastChar=t.allocUnsafe(J)}function d(G){return G<=127?0:G>>5==6?2:G>>4==14?3:G>>3==30?4:G>>6==2?-1:-2}function U(G){var J=this.lastTotal-this.lastNeed,rA=function x(G,J){if(128!=(192&J[0]))return G.lastNeed=0,"\ufffd";if(G.lastNeed>1&&J.length>1){if(128!=(192&J[1]))return G.lastNeed=1,"\ufffd";if(G.lastNeed>2&&J.length>2&&128!=(192&J[2]))return G.lastNeed=2,"\ufffd"}}(this,G);return void 0!==rA?rA:this.lastNeed<=G.length?(G.copy(this.lastChar,J,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(G.copy(this.lastChar,J,0,G.length),void(this.lastNeed-=G.length))}function _(G,J){if((G.length-J)%2==0){var rA=G.toString("utf16le",J);if(rA){var $=rA.charCodeAt(rA.length-1);if($>=55296&&$<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=G[G.length-2],this.lastChar[1]=G[G.length-1],rA.slice(0,-1)}return rA}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=G[G.length-1],G.toString("utf16le",J,G.length-1)}function Q(G){var J=G&&G.length?this.write(G):"";return this.lastNeed?J+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):J}function y(G,J){var rA=(G.length-J)%3;return 0===rA?G.toString("base64",J):(this.lastNeed=3-rA,this.lastTotal=3,1===rA?this.lastChar[0]=G[G.length-1]:(this.lastChar[0]=G[G.length-2],this.lastChar[1]=G[G.length-1]),G.toString("base64",J,G.length-rA))}function K(G){var J=G&&G.length?this.write(G):"";return this.lastNeed?J+this.lastChar.toString("base64",0,3-this.lastNeed):J}function lA(G){return G.toString(this.encoding)}function uA(G){return G&&G.length?this.write(G):""}D.I=V,V.prototype.write=function(G){if(0===G.length)return"";var J,rA;if(this.lastNeed){if(void 0===(J=this.fillLast(G)))return"";rA=this.lastNeed,this.lastNeed=0}else rA=0;return rA=0?(Z>0&&(G.lastNeed=Z-1),Z):--$=0?(Z>0&&(G.lastNeed=Z-2),Z):--$=0?(Z>0&&(2===Z?Z=0:G.lastNeed=Z-3),Z):0}(this,G,J);if(!this.lastNeed)return G.toString("utf8",J);this.lastTotal=rA;var $=G.length-(rA-this.lastNeed);return G.copy(this.lastChar,0,$),G.toString("utf8",J,$)},V.prototype.fillLast=function(G){if(this.lastNeed<=G.length)return G.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);G.copy(this.lastChar,this.lastTotal-this.lastNeed,0,G.length),this.lastNeed-=G.length}},3144(q,D,g){"use strict";var Y,V,d,c,t;q.exports=(t=g(6861),V=(Y=t.lib).Base,d=Y.WordArray,(c=t.x64={}).Word=V.extend({init:function(E,N){this.high=E,this.low=N}}),c.WordArray=V.extend({init:function(E,N){E=this.words=E||[],this.sigBytes=null!=N?N:8*E.length},toX32:function(){for(var E=this.words,N=E.length,_=[],Q=0;Q1?arguments[1]:void 0,c),E=x>2?arguments[2]:void 0,N=void 0===E?c:B(E,c);N>U;)d[U++]=V;return d}},3249(q){"use strict";var D=function(g){return g!=g};q.exports=function(t,B){return 0===t&&0===B?1/t==1/B:!!(t===B||D(t)&&D(B))}},3257(q,D,g){"use strict";var t=typeof Symbol<"u"&&Symbol,B=g(2843);q.exports=function(){return"function"==typeof t&&"function"==typeof Symbol&&"symbol"==typeof t("foo")&&"symbol"==typeof Symbol("bar")&&B()}},3282(q,D,g){"use strict";var t;q.exports=(t=g(6861),g(2858),t.pad.Iso97971={pad:function(B,M){B.concat(t.lib.WordArray.create([2147483648],1)),t.pad.ZeroPadding.pad(B,M)},unpad:function(B){t.pad.ZeroPadding.unpad(B),B.sigBytes--}},t.pad.Iso97971)},3297(q,D,g){"use strict";var t=g(5034),B=Object;q.exports=function(M){return B(t(M))}},3301(q,D,g){"use strict";var t=g(8993),B=g(3598),M=g(5985),Y=g(9738),V=g(290),d=g(8663),c=TypeError,x=d("toPrimitive");q.exports=function(U,E){if(!B(U)||M(U))return U;var _,N=Y(U,x);if(N){if(void 0===E&&(E="default"),_=t(N,U,E),!B(_)||M(_))return _;throw new c("Can't convert object to primitive value")}return void 0===E&&(E="number"),V(U,E)}},3324(q,D,g){"use strict";var t;q.exports=(t=g(6861),g(4866),g(3532),g(6818),g(2858),function(){var B=t,M=B.lib,Y=M.WordArray,V=M.BlockCipher,d=B.algo,c=[57,49,41,33,25,17,9,1,58,50,42,34,26,18,10,2,59,51,43,35,27,19,11,3,60,52,44,36,63,55,47,39,31,23,15,7,62,54,46,38,30,22,14,6,61,53,45,37,29,21,13,5,28,20,12,4],x=[14,17,11,24,1,5,3,28,15,6,21,10,23,19,12,4,26,8,16,7,27,20,13,2,41,52,31,37,47,55,30,40,51,45,33,48,44,49,39,56,34,53,46,42,50,36,29,32],U=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28],E=[{0:8421888,268435456:32768,536870912:8421378,805306368:2,1073741824:512,1342177280:8421890,1610612736:8389122,1879048192:8388608,2147483648:514,2415919104:8389120,2684354560:33280,2952790016:8421376,3221225472:32770,3489660928:8388610,3758096384:0,4026531840:33282,134217728:0,402653184:8421890,671088640:33282,939524096:32768,1207959552:8421888,1476395008:512,1744830464:8421378,2013265920:2,2281701376:8389120,2550136832:33280,2818572288:8421376,3087007744:8389122,3355443200:8388610,3623878656:32770,3892314112:514,4160749568:8388608,1:32768,268435457:2,536870913:8421888,805306369:8388608,1073741825:8421378,1342177281:33280,1610612737:512,1879048193:8389122,2147483649:8421890,2415919105:8421376,2684354561:8388610,2952790017:33282,3221225473:514,3489660929:8389120,3758096385:32770,4026531841:0,134217729:8421890,402653185:8421376,671088641:8388608,939524097:512,1207959553:32768,1476395009:8388610,1744830465:2,2013265921:33282,2281701377:32770,2550136833:8389122,2818572289:514,3087007745:8421888,3355443201:8389120,3623878657:0,3892314113:33280,4160749569:8421378},{0:1074282512,16777216:16384,33554432:524288,50331648:1074266128,67108864:1073741840,83886080:1074282496,100663296:1073758208,117440512:16,134217728:540672,150994944:1073758224,167772160:1073741824,184549376:540688,201326592:524304,218103808:0,234881024:16400,251658240:1074266112,8388608:1073758208,25165824:540688,41943040:16,58720256:1073758224,75497472:1074282512,92274688:1073741824,109051904:524288,125829120:1074266128,142606336:524304,159383552:0,176160768:16384,192937984:1074266112,209715200:1073741840,226492416:540672,243269632:1074282496,260046848:16400,268435456:0,285212672:1074266128,301989888:1073758224,318767104:1074282496,335544320:1074266112,352321536:16,369098752:540688,385875968:16384,402653184:16400,419430400:524288,436207616:524304,452984832:1073741840,469762048:540672,486539264:1073758208,503316480:1073741824,520093696:1074282512,276824064:540688,293601280:524288,310378496:1074266112,327155712:16384,343932928:1073758208,360710144:1074282512,377487360:16,394264576:1073741824,411041792:1074282496,427819008:1073741840,444596224:1073758224,461373440:524304,478150656:0,494927872:16400,511705088:1074266128,528482304:540672},{0:260,1048576:0,2097152:67109120,3145728:65796,4194304:65540,5242880:67108868,6291456:67174660,7340032:67174400,8388608:67108864,9437184:67174656,10485760:65792,11534336:67174404,12582912:67109124,13631488:65536,14680064:4,15728640:256,524288:67174656,1572864:67174404,2621440:0,3670016:67109120,4718592:67108868,5767168:65536,6815744:65540,7864320:260,8912896:4,9961472:256,11010048:67174400,12058624:65796,13107200:65792,14155776:67109124,15204352:67174660,16252928:67108864,16777216:67174656,17825792:65540,18874368:65536,19922944:67109120,20971520:256,22020096:67174660,23068672:67108868,24117248:0,25165824:67109124,26214400:67108864,27262976:4,28311552:65792,29360128:67174400,30408704:260,31457280:65796,32505856:67174404,17301504:67108864,18350080:260,19398656:67174656,20447232:0,21495808:65540,22544384:67109120,23592960:256,24641536:67174404,25690112:65536,26738688:67174660,27787264:65796,28835840:67108868,29884416:67109124,30932992:67174400,31981568:4,33030144:65792},{0:2151682048,65536:2147487808,131072:4198464,196608:2151677952,262144:0,327680:4198400,393216:2147483712,458752:4194368,524288:2147483648,589824:4194304,655360:64,720896:2147487744,786432:2151678016,851968:4160,917504:4096,983040:2151682112,32768:2147487808,98304:64,163840:2151678016,229376:2147487744,294912:4198400,360448:2151682112,425984:0,491520:2151677952,557056:4096,622592:2151682048,688128:4194304,753664:4160,819200:2147483648,884736:4194368,950272:4198464,1015808:2147483712,1048576:4194368,1114112:4198400,1179648:2147483712,1245184:0,1310720:4160,1376256:2151678016,1441792:2151682048,1507328:2147487808,1572864:2151682112,1638400:2147483648,1703936:2151677952,1769472:4198464,1835008:2147487744,1900544:4194304,1966080:64,2031616:4096,1081344:2151677952,1146880:2151682112,1212416:0,1277952:4198400,1343488:4194368,1409024:2147483648,1474560:2147487808,1540096:64,1605632:2147483712,1671168:4096,1736704:2147487744,1802240:2151678016,1867776:4160,1933312:2151682048,1998848:4194304,2064384:4198464},{0:128,4096:17039360,8192:262144,12288:536870912,16384:537133184,20480:16777344,24576:553648256,28672:262272,32768:16777216,36864:537133056,40960:536871040,45056:553910400,49152:553910272,53248:0,57344:17039488,61440:553648128,2048:17039488,6144:553648256,10240:128,14336:17039360,18432:262144,22528:537133184,26624:553910272,30720:536870912,34816:537133056,38912:0,43008:553910400,47104:16777344,51200:536871040,55296:553648128,59392:16777216,63488:262272,65536:262144,69632:128,73728:536870912,77824:553648256,81920:16777344,86016:553910272,90112:537133184,94208:16777216,98304:553910400,102400:553648128,106496:17039360,110592:537133056,114688:262272,118784:536871040,122880:0,126976:17039488,67584:553648256,71680:16777216,75776:17039360,79872:537133184,83968:536870912,88064:17039488,92160:128,96256:553910272,100352:262272,104448:553910400,108544:0,112640:553648128,116736:16777344,120832:262144,124928:537133056,129024:536871040},{0:268435464,256:8192,512:270532608,768:270540808,1024:268443648,1280:2097152,1536:2097160,1792:268435456,2048:0,2304:268443656,2560:2105344,2816:8,3072:270532616,3328:2105352,3584:8200,3840:270540800,128:270532608,384:270540808,640:8,896:2097152,1152:2105352,1408:268435464,1664:268443648,1920:8200,2176:2097160,2432:8192,2688:268443656,2944:270532616,3200:0,3456:270540800,3712:2105344,3968:268435456,4096:268443648,4352:270532616,4608:270540808,4864:8200,5120:2097152,5376:268435456,5632:268435464,5888:2105344,6144:2105352,6400:0,6656:8,6912:270532608,7168:8192,7424:268443656,7680:270540800,7936:2097160,4224:8,4480:2105344,4736:2097152,4992:268435464,5248:268443648,5504:8200,5760:270540808,6016:270532608,6272:270540800,6528:270532616,6784:8192,7040:2105352,7296:2097160,7552:0,7808:268435456,8064:268443656},{0:1048576,16:33555457,32:1024,48:1049601,64:34604033,80:0,96:1,112:34603009,128:33555456,144:1048577,160:33554433,176:34604032,192:34603008,208:1025,224:1049600,240:33554432,8:34603009,24:0,40:33555457,56:34604032,72:1048576,88:33554433,104:33554432,120:1025,136:1049601,152:33555456,168:34603008,184:1048577,200:1024,216:34604033,232:1,248:1049600,256:33554432,272:1048576,288:33555457,304:34603009,320:1048577,336:33555456,352:34604032,368:1049601,384:1025,400:34604033,416:1049600,432:1,448:0,464:34603008,480:33554433,496:1024,264:1049600,280:33555457,296:34603009,312:1,328:33554432,344:1048576,360:1025,376:34604032,392:33554433,408:34603008,424:0,440:34604033,456:1049601,472:1024,488:33555456,504:1048577},{0:134219808,1:131072,2:134217728,3:32,4:131104,5:134350880,6:134350848,7:2048,8:134348800,9:134219776,10:133120,11:134348832,12:2080,13:0,14:134217760,15:133152,2147483648:2048,2147483649:134350880,2147483650:134219808,2147483651:134217728,2147483652:134348800,2147483653:133120,2147483654:133152,2147483655:32,2147483656:134217760,2147483657:2080,2147483658:131104,2147483659:134350848,2147483660:0,2147483661:134348832,2147483662:134219776,2147483663:131072,16:133152,17:134350848,18:32,19:2048,20:134219776,21:134217760,22:134348832,23:131072,24:0,25:131104,26:134348800,27:134219808,28:134350880,29:133120,30:2080,31:134217728,2147483664:131072,2147483665:2048,2147483666:134348832,2147483667:133152,2147483668:32,2147483669:134348800,2147483670:134217728,2147483671:134219808,2147483672:134350880,2147483673:134217760,2147483674:134219776,2147483675:0,2147483676:133120,2147483677:2080,2147483678:131104,2147483679:134350848}],N=[4160749569,528482304,33030144,2064384,129024,8064,504,2147483679],_=d.DES=V.extend({_doReset:function(){for(var uA=this._key.words,G=[],J=0;J<56;J++){var rA=c[J]-1;G[J]=uA[rA>>>5]>>>31-rA%32&1}for(var $=this._subKeys=[],Z=0;Z<16;Z++){var b=$[Z]=[],BA=U[Z];for(J=0;J<24;J++)b[J/6|0]|=G[(x[J]-1+BA)%28]<<31-J%6,b[4+(J/6|0)]|=G[28+(x[J+24]-1+BA)%28]<<31-J%6;for(b[0]=b[0]<<1|b[0]>>>31,J=1;J<7;J++)b[J]=b[J]>>>4*(J-1)+3;b[7]=b[7]<<5|b[7]>>>27}var L=this._invSubKeys=[];for(J=0;J<16;J++)L[J]=$[15-J]},encryptBlock:function(lA,uA){this._doCryptBlock(lA,uA,this._subKeys)},decryptBlock:function(lA,uA){this._doCryptBlock(lA,uA,this._invSubKeys)},_doCryptBlock:function(lA,uA,G){this._lBlock=lA[uA],this._rBlock=lA[uA+1],Q.call(this,4,252645135),Q.call(this,16,65535),y.call(this,2,858993459),y.call(this,8,16711935),Q.call(this,1,1431655765);for(var J=0;J<16;J++){for(var rA=G[J],$=this._lBlock,Z=this._rBlock,b=0,BA=0;BA<8;BA++)b|=E[BA][((Z^rA[BA])&N[BA])>>>0];this._lBlock=Z,this._rBlock=$^b}var L=this._lBlock;this._lBlock=this._rBlock,this._rBlock=L,Q.call(this,1,1431655765),y.call(this,8,16711935),y.call(this,2,858993459),Q.call(this,16,65535),Q.call(this,4,252645135),lA[uA]=this._lBlock,lA[uA+1]=this._rBlock},keySize:2,ivSize:2,blockSize:2});function Q(lA,uA){var G=(this._lBlock>>>lA^this._rBlock)&uA;this._rBlock^=G,this._lBlock^=G<>>lA^this._lBlock)&uA;this._lBlock^=G,this._rBlock^=G<192.");var G=uA.slice(0,2),J=uA.length<4?uA.slice(0,2):uA.slice(2,4),rA=uA.length<6?uA.slice(0,2):uA.slice(4,6);this._des1=_.createEncryptor(Y.create(G)),this._des2=_.createEncryptor(Y.create(J)),this._des3=_.createEncryptor(Y.create(rA))},encryptBlock:function(lA,uA){this._des1.encryptBlock(lA,uA),this._des2.decryptBlock(lA,uA),this._des3.encryptBlock(lA,uA)},decryptBlock:function(lA,uA){this._des3.decryptBlock(lA,uA),this._des2.encryptBlock(lA,uA),this._des1.decryptBlock(lA,uA)},keySize:6,ivSize:2,blockSize:2});B.TripleDES=V._createHelper(K)}(),t.TripleDES)},3381(q,D,g){"use strict";var t=g(8404),B=g(821),M=g(6601),Y=g(2774),V=g(8109),d=g(7106),c=Y("Object.prototype.toString"),x=g(6626)(),U=typeof globalThis>"u"?g.g:globalThis,E=B(),N=Y("String.prototype.slice"),_=Y("Array.prototype.indexOf",!0)||function(uA,G){for(var J=0;J-1?G:"Object"===G&&function(uA){var G=!1;return t(Q,function(J,rA){if(!G)try{J(uA),G=N(rA,1)}catch{}}),G}(uA)}return V?function(uA){var G=!1;return t(Q,function(J,rA){if(!G)try{"$"+J(uA)===rA&&(G=N(rA,1))}catch{}}),G}(uA):null}},3383(q,D,g){"use strict";var t=g(1212),B=g(299),M=g(8681),Y=g(6341),V=g(5144),d=g(4378).CONFIGURABLE,c=g(4550),x=g(6921),U=x.enforce,E=x.get,N=String,_=Object.defineProperty,Q=t("".slice),y=t("".replace),K=t([].join),lA=V&&!B(function(){return 8!==_(function(){},"length",{value:8}).length}),uA=String(String).split("String"),G=q.exports=function(J,rA,$){"Symbol("===Q(N(rA),0,7)&&(rA="["+y(N(rA),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),$&&$.getter&&(rA="get "+rA),$&&$.setter&&(rA="set "+rA),(!Y(J,"name")||d&&J.name!==rA)&&(V?_(J,"name",{value:rA,configurable:!0}):J.name=rA),lA&&$&&Y($,"arity")&&J.length!==$.arity&&_(J,"length",{value:$.arity});try{$&&Y($,"constructor")&&$.constructor?V&&_(J,"prototype",{writable:!1}):J.prototype&&(J.prototype=void 0)}catch{}var Z=U(J);return Y(Z,"source")||(Z.source=K(uA,"string"==typeof rA?rA:"")),J};Function.prototype.toString=G(function(){return M(this)&&E(this).source||c(this)},"toString")},3483(q){function t(){this.table=new Uint16Array(16),this.trans=new Uint16Array(288)}function B(b,BA){this.source=b,this.sourceIndex=0,this.tag=0,this.bitcount=0,this.dest=BA,this.destLen=0,this.ltree=new t,this.dtree=new t}var M=new t,Y=new t,V=new Uint8Array(30),d=new Uint16Array(30),c=new Uint8Array(30),x=new Uint16Array(30),U=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),E=new t,N=new Uint8Array(320);function _(b,BA,L,eA){var UA,xA;for(UA=0;UA>>=1,BA}function uA(b,BA,L){if(!BA)return L;for(;b.bitcount<24;)b.tag|=b.source[b.sourceIndex++]<>>16-BA;return b.tag>>>=BA,b.bitcount-=BA,eA+L}function G(b,BA){for(;b.bitcount<24;)b.tag|=b.source[b.sourceIndex++]<>>=1,++UA,L+=BA.table[UA],eA-=BA.table[UA]}while(eA>=0);return b.tag=xA,b.bitcount-=UA,BA.trans[L+eA]}function J(b,BA,L){var eA,UA,xA,QA,gA,JA;for(eA=uA(b,5,257),UA=uA(b,5,1),xA=uA(b,4,4),QA=0;QA<19;++QA)N[QA]=0;for(QA=0;QA8;)b.sourceIndex--,b.bitcount-=8;if((BA=256*(BA=b.source[b.sourceIndex+1])+b.source[b.sourceIndex])!==(65535&~(256*b.source[b.sourceIndex+3]+b.source[b.sourceIndex+2])))return-3;for(b.sourceIndex+=4,eA=BA;eA;--eA)b.dest[b.destLen++]=b.source[b.sourceIndex++];return b.bitcount=0,0}(function Q(b,BA){var L;for(L=0;L<7;++L)b.table[L]=0;for(b.table[7]=24,b.table[8]=152,b.table[9]=112,L=0;L<24;++L)b.trans[L]=256+L;for(L=0;L<144;++L)b.trans[24+L]=L;for(L=0;L<8;++L)b.trans[168+L]=280+L;for(L=0;L<112;++L)b.trans[176+L]=144+L;for(L=0;L<5;++L)BA.table[L]=0;for(BA.table[5]=32,L=0;L<32;++L)BA.trans[L]=L})(M,Y),_(V,d,4,3),_(c,x,2,1),V[28]=0,d[28]=258,q.exports=function Z(b,BA){var eA,xA,L=new B(b,BA);do{switch(eA=lA(L),uA(L,2,0)){case 0:xA=$(L);break;case 1:xA=rA(L,M,Y);break;case 2:J(L,L.ltree,L.dtree),xA=rA(L,L.ltree,L.dtree);break;default:xA=-3}if(0!==xA)throw new Error("Data error")}while(!eA);return L.destLen>>24)|4278255360&(G<<24|G>>>8)}var J=this._hash.words,rA=y[K+0],$=y[K+1],Z=y[K+2],b=y[K+3],BA=y[K+4],L=y[K+5],eA=y[K+6],UA=y[K+7],xA=y[K+8],QA=y[K+9],gA=y[K+10],JA=y[K+11],Be=y[K+12],KA=y[K+13],ae=y[K+14],we=y[K+15],ie=J[0],kA=J[1],CA=J[2],iA=J[3];ie=E(ie,kA,CA,iA,rA,7,x[0]),iA=E(iA,ie,kA,CA,$,12,x[1]),CA=E(CA,iA,ie,kA,Z,17,x[2]),kA=E(kA,CA,iA,ie,b,22,x[3]),ie=E(ie,kA,CA,iA,BA,7,x[4]),iA=E(iA,ie,kA,CA,L,12,x[5]),CA=E(CA,iA,ie,kA,eA,17,x[6]),kA=E(kA,CA,iA,ie,UA,22,x[7]),ie=E(ie,kA,CA,iA,xA,7,x[8]),iA=E(iA,ie,kA,CA,QA,12,x[9]),CA=E(CA,iA,ie,kA,gA,17,x[10]),kA=E(kA,CA,iA,ie,JA,22,x[11]),ie=E(ie,kA,CA,iA,Be,7,x[12]),iA=E(iA,ie,kA,CA,KA,12,x[13]),CA=E(CA,iA,ie,kA,ae,17,x[14]),ie=N(ie,kA=E(kA,CA,iA,ie,we,22,x[15]),CA,iA,$,5,x[16]),iA=N(iA,ie,kA,CA,eA,9,x[17]),CA=N(CA,iA,ie,kA,JA,14,x[18]),kA=N(kA,CA,iA,ie,rA,20,x[19]),ie=N(ie,kA,CA,iA,L,5,x[20]),iA=N(iA,ie,kA,CA,gA,9,x[21]),CA=N(CA,iA,ie,kA,we,14,x[22]),kA=N(kA,CA,iA,ie,BA,20,x[23]),ie=N(ie,kA,CA,iA,QA,5,x[24]),iA=N(iA,ie,kA,CA,ae,9,x[25]),CA=N(CA,iA,ie,kA,b,14,x[26]),kA=N(kA,CA,iA,ie,xA,20,x[27]),ie=N(ie,kA,CA,iA,KA,5,x[28]),iA=N(iA,ie,kA,CA,Z,9,x[29]),CA=N(CA,iA,ie,kA,UA,14,x[30]),ie=_(ie,kA=N(kA,CA,iA,ie,Be,20,x[31]),CA,iA,L,4,x[32]),iA=_(iA,ie,kA,CA,xA,11,x[33]),CA=_(CA,iA,ie,kA,JA,16,x[34]),kA=_(kA,CA,iA,ie,ae,23,x[35]),ie=_(ie,kA,CA,iA,$,4,x[36]),iA=_(iA,ie,kA,CA,BA,11,x[37]),CA=_(CA,iA,ie,kA,UA,16,x[38]),kA=_(kA,CA,iA,ie,gA,23,x[39]),ie=_(ie,kA,CA,iA,KA,4,x[40]),iA=_(iA,ie,kA,CA,rA,11,x[41]),CA=_(CA,iA,ie,kA,b,16,x[42]),kA=_(kA,CA,iA,ie,eA,23,x[43]),ie=_(ie,kA,CA,iA,QA,4,x[44]),iA=_(iA,ie,kA,CA,Be,11,x[45]),CA=_(CA,iA,ie,kA,we,16,x[46]),ie=Q(ie,kA=_(kA,CA,iA,ie,Z,23,x[47]),CA,iA,rA,6,x[48]),iA=Q(iA,ie,kA,CA,UA,10,x[49]),CA=Q(CA,iA,ie,kA,ae,15,x[50]),kA=Q(kA,CA,iA,ie,L,21,x[51]),ie=Q(ie,kA,CA,iA,Be,6,x[52]),iA=Q(iA,ie,kA,CA,b,10,x[53]),CA=Q(CA,iA,ie,kA,gA,15,x[54]),kA=Q(kA,CA,iA,ie,$,21,x[55]),ie=Q(ie,kA,CA,iA,xA,6,x[56]),iA=Q(iA,ie,kA,CA,we,10,x[57]),CA=Q(CA,iA,ie,kA,eA,15,x[58]),kA=Q(kA,CA,iA,ie,KA,21,x[59]),ie=Q(ie,kA,CA,iA,BA,6,x[60]),iA=Q(iA,ie,kA,CA,JA,10,x[61]),CA=Q(CA,iA,ie,kA,Z,15,x[62]),kA=Q(kA,CA,iA,ie,QA,21,x[63]),J[0]=J[0]+ie|0,J[1]=J[1]+kA|0,J[2]=J[2]+CA|0,J[3]=J[3]+iA|0},_doFinalize:function(){var y=this._data,K=y.words,lA=8*this._nDataBytes,uA=8*y.sigBytes;K[uA>>>5]|=128<<24-uA%32;var G=B.floor(lA/4294967296),J=lA;K[15+(uA+64>>>9<<4)]=16711935&(G<<8|G>>>24)|4278255360&(G<<24|G>>>8),K[14+(uA+64>>>9<<4)]=16711935&(J<<8|J>>>24)|4278255360&(J<<24|J>>>8),y.sigBytes=4*(K.length+1),this._process();for(var rA=this._hash,$=rA.words,Z=0;Z<4;Z++){var b=$[Z];$[Z]=16711935&(b<<8|b>>>24)|4278255360&(b<<24|b>>>8)}return rA},clone:function(){var y=d.clone.call(this);return y._hash=this._hash.clone(),y}});function E(y,K,lA,uA,G,J,rA){var $=y+(K&lA|~K&uA)+G+rA;return($<>>32-J)+K}function N(y,K,lA,uA,G,J,rA){var $=y+(K&uA|lA&~uA)+G+rA;return($<>>32-J)+K}function _(y,K,lA,uA,G,J,rA){var $=y+(K^lA^uA)+G+rA;return($<>>32-J)+K}function Q(y,K,lA,uA,G,J,rA){var $=y+(lA^(K|~uA))+G+rA;return($<>>32-J)+K}M.MD5=d._createHelper(U),M.HmacMD5=d._createHmacHelper(U)}(Math),t.MD5)},3534(q,D,g){"use strict";var t=g(9636),B=g(5421);q.exports=function(){var Y=t();return B(Object,{is:Y},{is:function(){return Object.is!==Y}}),Y}},3598(q,D,g){"use strict";var t=g(8681);q.exports=function(B){return"object"==typeof B?null!==B:t(B)}},3610(q,D,g){"use strict";var t;q.exports=(t=g(6861),g(4866),g(3532),g(6818),g(2858),function(){var B=t,Y=B.lib.StreamCipher,d=[],c=[],x=[],U=B.algo.Rabbit=Y.extend({_doReset:function(){for(var N=this._key.words,_=this.cfg.iv,Q=0;Q<4;Q++)N[Q]=16711935&(N[Q]<<8|N[Q]>>>24)|4278255360&(N[Q]<<24|N[Q]>>>8);var y=this._X=[N[0],N[3]<<16|N[2]>>>16,N[1],N[0]<<16|N[3]>>>16,N[2],N[1]<<16|N[0]>>>16,N[3],N[2]<<16|N[1]>>>16],K=this._C=[N[2]<<16|N[2]>>>16,4294901760&N[0]|65535&N[1],N[3]<<16|N[3]>>>16,4294901760&N[1]|65535&N[2],N[0]<<16|N[0]>>>16,4294901760&N[2]|65535&N[3],N[1]<<16|N[1]>>>16,4294901760&N[3]|65535&N[0]];for(this._b=0,Q=0;Q<4;Q++)E.call(this);for(Q=0;Q<8;Q++)K[Q]^=y[Q+4&7];if(_){var lA=_.words,uA=lA[0],G=lA[1],J=16711935&(uA<<8|uA>>>24)|4278255360&(uA<<24|uA>>>8),rA=16711935&(G<<8|G>>>24)|4278255360&(G<<24|G>>>8),$=J>>>16|4294901760&rA,Z=rA<<16|65535&J;for(K[0]^=J,K[1]^=$,K[2]^=rA,K[3]^=Z,K[4]^=J,K[5]^=$,K[6]^=rA,K[7]^=Z,Q=0;Q<4;Q++)E.call(this)}},_doProcessBlock:function(N,_){var Q=this._X;E.call(this),d[0]=Q[0]^Q[5]>>>16^Q[3]<<16,d[1]=Q[2]^Q[7]>>>16^Q[5]<<16,d[2]=Q[4]^Q[1]>>>16^Q[7]<<16,d[3]=Q[6]^Q[3]>>>16^Q[1]<<16;for(var y=0;y<4;y++)d[y]=16711935&(d[y]<<8|d[y]>>>24)|4278255360&(d[y]<<24|d[y]>>>8),N[_+y]^=d[y]},blockSize:4,ivSize:2});function E(){for(var N=this._X,_=this._C,Q=0;Q<8;Q++)c[Q]=_[Q];for(_[0]=_[0]+1295307597+this._b|0,_[1]=_[1]+3545052371+(_[0]>>>0>>0?1:0)|0,_[2]=_[2]+886263092+(_[1]>>>0>>0?1:0)|0,_[3]=_[3]+1295307597+(_[2]>>>0>>0?1:0)|0,_[4]=_[4]+3545052371+(_[3]>>>0>>0?1:0)|0,_[5]=_[5]+886263092+(_[4]>>>0>>0?1:0)|0,_[6]=_[6]+1295307597+(_[5]>>>0>>0?1:0)|0,_[7]=_[7]+3545052371+(_[6]>>>0>>0?1:0)|0,this._b=_[7]>>>0>>0?1:0,Q=0;Q<8;Q++){var y=N[Q]+_[Q],K=65535&y,lA=y>>>16;x[Q]=((K*K>>>17)+K*lA>>>15)+lA*lA^((4294901760&y)*y|0)+((65535&y)*y|0)}N[0]=x[0]+(x[7]<<16|x[7]>>>16)+(x[6]<<16|x[6]>>>16)|0,N[1]=x[1]+(x[0]<<8|x[0]>>>24)+x[7]|0,N[2]=x[2]+(x[1]<<16|x[1]>>>16)+(x[0]<<16|x[0]>>>16)|0,N[3]=x[3]+(x[2]<<8|x[2]>>>24)+x[1]|0,N[4]=x[4]+(x[3]<<16|x[3]>>>16)+(x[2]<<16|x[2]>>>16)|0,N[5]=x[5]+(x[4]<<8|x[4]>>>24)+x[3]|0,N[6]=x[6]+(x[5]<<16|x[5]>>>16)+(x[4]<<16|x[4]>>>16)|0,N[7]=x[7]+(x[6]<<8|x[6]>>>24)+x[5]|0}B.Rabbit=Y._createHelper(U)}(),t.Rabbit)},3620(q,D,g){"use strict";var B,Y,V,d,c,t;q.exports=(t=g(6861),g(321),Y=(B=t).lib.WordArray,c=(V=B.algo).SHA224=(d=V.SHA256).extend({_doReset:function(){this._hash=new Y.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var x=d._doFinalize.call(this);return x.sigBytes-=4,x}}),B.SHA224=d._createHelper(c),B.HmacSHA224=d._createHmacHelper(c),t.SHA224)},3701(q,D,g){"use strict";var B,M,t;q.exports=(t=g(6861),g(2858),t.mode.OFB=(M=(B=t.lib.BlockCipherMode.extend()).Encryptor=B.extend({processBlock:function(Y,V){var d=this._cipher,c=d.blockSize,x=this._iv,U=this._keystream;x&&(U=this._keystream=x.slice(0),this._iv=void 0),d.encryptBlock(U,0);for(var E=0;E"u"||"object"==typeof G))try{var J=d.call(G);return("[object HTMLAllCollection]"===J||"[object HTML document.all class]"===J||"[object HTMLCollection]"===J||"[object Object]"===J)&&null==G("")}catch{}return!1})}q.exports=g?function(G){if(K(G))return!0;if(!G||"function"!=typeof G&&"object"!=typeof G)return!1;try{g(G,null,t)}catch(J){if(J!==B)return!1}return!Y(G)&&V(G)}:function(G){if(K(G))return!0;if(!G||"function"!=typeof G&&"object"!=typeof G)return!1;if(Q)return V(G);if(Y(G))return!1;var J=d.call(G);return!("[object Function]"!==J&&"[object GeneratorFunction]"!==J&&!/^\[object HTML/.test(J))&&V(G)}},3752(q,D,g){"use strict";var t;q.exports=(t=g(6861),function(){var M=t,Y=M.lib,V=Y.WordArray,d=Y.Hasher,c=M.algo,x=V.create([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13]),U=V.create([5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11]),E=V.create([11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6]),N=V.create([8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]),_=V.create([0,1518500249,1859775393,2400959708,2840853838]),Q=V.create([1352829926,1548603684,1836072691,2053994217,0]),y=c.RIPEMD160=d.extend({_doReset:function(){this._hash=V.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function($,Z){for(var b=0;b<16;b++){var BA=Z+b,L=$[BA];$[BA]=16711935&(L<<8|L>>>24)|4278255360&(L<<24|L>>>8)}var KA,ae,we,ie,kA,CA,iA,hA,bA,ne,$A,eA=this._hash.words,UA=_.words,xA=Q.words,QA=x.words,gA=U.words,JA=E.words,Be=N.words;for(CA=KA=eA[0],iA=ae=eA[1],hA=we=eA[2],bA=ie=eA[3],ne=kA=eA[4],b=0;b<80;b+=1)$A=KA+$[Z+QA[b]]|0,$A+=b<16?K(ae,we,ie)+UA[0]:b<32?lA(ae,we,ie)+UA[1]:b<48?uA(ae,we,ie)+UA[2]:b<64?G(ae,we,ie)+UA[3]:J(ae,we,ie)+UA[4],$A=($A=rA($A|=0,JA[b]))+kA|0,KA=kA,kA=ie,ie=rA(we,10),we=ae,ae=$A,$A=CA+$[Z+gA[b]]|0,$A+=b<16?J(iA,hA,bA)+xA[0]:b<32?G(iA,hA,bA)+xA[1]:b<48?uA(iA,hA,bA)+xA[2]:b<64?lA(iA,hA,bA)+xA[3]:K(iA,hA,bA)+xA[4],$A=($A=rA($A|=0,Be[b]))+ne|0,CA=ne,ne=bA,bA=rA(hA,10),hA=iA,iA=$A;$A=eA[1]+we+bA|0,eA[1]=eA[2]+ie+ne|0,eA[2]=eA[3]+kA+CA|0,eA[3]=eA[4]+KA+iA|0,eA[4]=eA[0]+ae+hA|0,eA[0]=$A},_doFinalize:function(){var $=this._data,Z=$.words,b=8*this._nDataBytes,BA=8*$.sigBytes;Z[BA>>>5]|=128<<24-BA%32,Z[14+(BA+64>>>9<<4)]=16711935&(b<<8|b>>>24)|4278255360&(b<<24|b>>>8),$.sigBytes=4*(Z.length+1),this._process();for(var L=this._hash,eA=L.words,UA=0;UA<5;UA++){var xA=eA[UA];eA[UA]=16711935&(xA<<8|xA>>>24)|4278255360&(xA<<24|xA>>>8)}return L},clone:function(){var $=d.clone.call(this);return $._hash=this._hash.clone(),$}});function K($,Z,b){return $^Z^b}function lA($,Z,b){return $&Z|~$&b}function uA($,Z,b){return($|~Z)^b}function G($,Z,b){return $&b|Z&~b}function J($,Z,b){return $^(Z|~b)}function rA($,Z){return $<>>32-Z}M.RIPEMD160=d._createHelper(y),M.HmacRIPEMD160=d._createHmacHelper(y)}(Math),t.RIPEMD160)},3765(q,D,g){"use strict";var t,M=g(3797).F,Y=M.ERR_MISSING_ARGS,V=M.ERR_STREAM_DESTROYED;function d(Q){if(Q)throw Q}function U(Q){Q()}function E(Q,y){return Q.pipe(y)}q.exports=function _(){for(var Q=arguments.length,y=new Array(Q),K=0;K0,function(b){uA||(uA=b),b&&G.forEach(U),!$&&(G.forEach(U),lA(uA))})});return y.reduce(E)}},3766(q,D,g){"use strict";var t=g(5846);q.exports=t.getPrototypeOf||null},3774(q){"use strict";q.exports=Math.max},3779(){},3793(q,D,g){"use strict";var t=g(7695),B=g(7756),M=g(7309),Y="__core-js_shared__",V=q.exports=B[Y]||M(Y,{});(V.versions||(V.versions=[])).push({version:"3.47.0",mode:t?"pure":"global",copyright:"\xa9 2014-2025 Denis Pushkarev (zloirock.ru), 2025 CoreJS Company (core-js.io)",license:"https://github.com/zloirock/core-js/blob/v3.47.0/LICENSE",source:"https://github.com/zloirock/core-js"})},3797(q){"use strict";var g={};function t(d,c,x){x||(x=Error);var E=function(N){function _(Q,y,K){return N.call(this,function U(N,_,Q){return"string"==typeof c?c:c(N,_,Q)}(Q,y,K))||this}return function D(d,c){d.prototype=Object.create(c.prototype),d.prototype.constructor=d,d.__proto__=c}(_,N),_}(x);E.prototype.name=x.name,E.prototype.code=d,g[d]=E}function B(d,c){if(Array.isArray(d)){var x=d.length;return d=d.map(function(U){return String(U)}),x>2?"one of ".concat(c," ").concat(d.slice(0,x-1).join(", "),", or ")+d[x-1]:2===x?"one of ".concat(c," ").concat(d[0]," or ").concat(d[1]):"of ".concat(c," ").concat(d[0])}return"of ".concat(c," ").concat(String(d))}t("ERR_INVALID_OPT_VALUE",function(d,c){return'The value "'+c+'" is invalid for option "'+d+'"'},TypeError),t("ERR_INVALID_ARG_TYPE",function(d,c,x){var U,E;if("string"==typeof c&&function M(d,c,x){return d.substr(!x||x<0?0:+x,c.length)===c}(c,"not ")?(U="must not be",c=c.replace(/^not /,"")):U="must be",function Y(d,c,x){return(void 0===x||x>d.length)&&(x=d.length),d.substring(x-c.length,x)===c}(d," argument"))E="The ".concat(d," ").concat(U," ").concat(B(c,"type"));else{var N=function V(d,c,x){return"number"!=typeof x&&(x=0),!(x+c.length>d.length)&&-1!==d.indexOf(c,x)}(d,".")?"property":"argument";E='The "'.concat(d,'" ').concat(N," ").concat(U," ").concat(B(c,"type"))}return E+". Received type ".concat(typeof x)},TypeError),t("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),t("ERR_METHOD_NOT_IMPLEMENTED",function(d){return"The "+d+" method is not implemented"}),t("ERR_STREAM_PREMATURE_CLOSE","Premature close"),t("ERR_STREAM_DESTROYED",function(d){return"Cannot call "+d+" after a stream was destroyed"}),t("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),t("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),t("ERR_STREAM_WRITE_AFTER_END","write after end"),t("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),t("ERR_UNKNOWN_ENCODING",function(d){return"Unknown encoding: "+d},TypeError),t("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),q.exports.F=g},3915(q,D,g){"use strict";g(8376),g(6401),g(2017),function(B){var M=typeof Uint8Array<"u"?Uint8Array:Array;function N(y){var K=y.charCodeAt(0);return 43===K||45===K?62:47===K||95===K?63:K<48?-1:K<58?K-48+26+26:K<91?K-65:K<123?K-97+26:void 0}B.toByteArray=function _(y){var K,lA,uA,G,J,rA;if(y.length%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var $=y.length;J="="===y.charAt($-2)?2:"="===y.charAt($-1)?1:0,rA=new M(3*y.length/4-J),uA=J>0?y.length-4:y.length;var Z=0;function b(BA){rA[Z++]=BA}for(K=0,lA=0;K>16),b((65280&G)>>8),b(255&G);return 2===J?b(255&(G=N(y.charAt(K))<<2|N(y.charAt(K+1))>>4)):1===J&&(b((G=N(y.charAt(K))<<10|N(y.charAt(K+1))<<4|N(y.charAt(K+2))>>2)>>8&255),b(255&G)),rA},B.fromByteArray=function Q(y){var K,G,J,lA=y.length%3,uA="";function rA(Z){return"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(Z)}function $(Z){return rA(Z>>18&63)+rA(Z>>12&63)+rA(Z>>6&63)+rA(63&Z)}for(K=0,J=y.length-lA;K>2),uA+=rA(G<<4&63),uA+="==";break;case 2:uA+=rA((G=(y[y.length-2]<<8)+y[y.length-1])>>10),uA+=rA(G>>4&63),uA+=rA(G<<2&63),uA+="="}return uA}}(D)},4001(q,D,g){"use strict";var t=g(7866),B=RangeError;q.exports=function(M,Y){var V=t(M);if(V%Y)throw new B("Wrong offset");return V}},4055(q){"use strict";q.exports=URIError},4074(q,D,g){"use strict";var KA,ae,we,t=g(5117),B=g(5144),M=g(7756),Y=g(8681),V=g(3598),d=g(6341),c=g(9391),x=g(8819),U=g(5719),E=g(4092),N=g(1182),_=g(9877),Q=g(8607),y=g(443),K=g(8663),lA=g(6044),uA=g(6921),G=uA.enforce,J=uA.get,rA=M.Int8Array,$=rA&&rA.prototype,Z=M.Uint8ClampedArray,b=Z&&Z.prototype,BA=rA&&Q(rA),L=$&&Q($),eA=Object.prototype,UA=M.TypeError,xA=K("toStringTag"),QA=lA("TYPED_ARRAY_TAG"),gA="TypedArrayConstructor",JA=t&&!!y&&"Opera"!==c(M.opera),Be=!1,ie={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},kA={BigInt64Array:8,BigUint64Array:8},iA=function(P){var cA=Q(P);if(V(cA)){var w=J(cA);return w&&d(w,gA)?w[gA]:iA(cA)}},hA=function(P){if(!V(P))return!1;var cA=c(P);return d(ie,cA)||d(kA,cA)};for(KA in ie)(we=(ae=M[KA])&&ae.prototype)?G(we)[gA]=ae:JA=!1;for(KA in kA)(we=(ae=M[KA])&&ae.prototype)&&(G(we)[gA]=ae);if((!JA||!Y(BA)||BA===Function.prototype)&&(BA=function(){throw new UA("Incorrect invocation")},JA))for(KA in ie)M[KA]&&y(M[KA],BA);if((!JA||!L||L===eA)&&(L=BA.prototype,JA))for(KA in ie)M[KA]&&y(M[KA].prototype,L);if(JA&&Q(b)!==L&&y(b,L),B&&!d(L,xA))for(KA in Be=!0,N(L,xA,{configurable:!0,get:function(){return V(this)?this[QA]:void 0}}),ie)M[KA]&&U(M[KA],QA,KA);q.exports={NATIVE_ARRAY_BUFFER_VIEWS:JA,TYPED_ARRAY_TAG:Be&&QA,aTypedArray:function(P){if(hA(P))return P;throw new UA("Target is not a typed array")},aTypedArrayConstructor:function(P){if(Y(P)&&(!y||_(BA,P)))return P;throw new UA(x(P)+" is not a typed array constructor")},exportTypedArrayMethod:function(P,cA,w,H){if(B){if(w)for(var TA in ie){var wA=M[TA];if(wA&&d(wA.prototype,P))try{delete wA.prototype[P]}catch{try{wA.prototype[P]=cA}catch{}}}(!L[P]||w)&&E(L,P,w?cA:JA&&$[P]||cA,H)}},exportTypedArrayStaticMethod:function(P,cA,w){var H,TA;if(B){if(y){if(w)for(H in ie)if((TA=M[H])&&d(TA,P))try{delete TA[P]}catch{}if(BA[P]&&!w)return;try{return E(BA,P,w?cA:JA&&BA[P]||cA)}catch{}}for(H in ie)(TA=M[H])&&(!TA[P]||w)&&E(TA,P,cA)}},getTypedArrayConstructor:iA,isView:function(cA){if(!V(cA))return!1;var w=c(cA);return"DataView"===w||d(ie,w)||d(kA,w)},isTypedArray:hA,TypedArray:BA,TypedArrayPrototype:L}},4092(q,D,g){"use strict";var t=g(8681),B=g(2333),M=g(3383),Y=g(7309);q.exports=function(V,d,c,x){x||(x={});var U=x.enumerable,E=void 0!==x.name?x.name:d;if(t(c)&&M(c,E,x),x.global)U?V[d]=c:Y(d,c);else{try{x.unsafe?V[d]&&(U=!0):delete V[d]}catch{}U?V[d]=c:B.f(V,d,{value:c,enumerable:!1,configurable:!x.nonConfigurable,writable:!x.nonWritable})}return V}},4097(q){var D=4096,B=new Uint32Array([0,1,3,7,15,31,63,127,255,511,1023,2047,4095,8191,16383,32767,65535,131071,262143,524287,1048575,2097151,4194303,8388607,16777215]);function M(Y){this.buf_=new Uint8Array(8224),this.input_=Y,this.reset()}M.READ_SIZE=D,M.IBUF_MASK=8191,M.prototype.reset=function(){this.buf_ptr_=0,this.val_=0,this.pos_=0,this.bit_pos_=0,this.bit_end_pos_=0,this.eos_=0,this.readMoreInput();for(var Y=0;Y<4;Y++)this.val_|=this.buf_[this.pos_]<<8*Y,++this.pos_;return this.bit_end_pos_>0},M.prototype.readMoreInput=function(){if(!(this.bit_end_pos_>256))if(this.eos_){if(this.bit_pos_>this.bit_end_pos_)throw new Error("Unexpected end of input "+this.bit_pos_+" "+this.bit_end_pos_)}else{var Y=this.buf_ptr_,V=this.input_.read(this.buf_,Y,D);if(V<0)throw new Error("Unexpected end of input");if(V=8;)this.val_>>>=8,this.val_|=this.buf_[8191&this.pos_]<<24,++this.pos_,this.bit_pos_=this.bit_pos_-8>>>0,this.bit_end_pos_=this.bit_end_pos_-8>>>0},M.prototype.readBits=function(Y){32-this.bit_pos_>>this.bit_pos_&B[Y];return this.bit_pos_+=Y,V},q.exports=M},4137(q,D,g){"use strict";var t,V,c;q.exports=(t=g(6861),g(2858),V=t.lib.CipherParams,c=t.enc.Hex,t.format.Hex={stringify:function(E){return E.ciphertext.toString(c)},parse:function(E){var N=c.parse(E);return V.create({ciphertext:N})}},t.format.Hex)},4378(q,D,g){"use strict";var t=g(5144),B=g(6341),M=Function.prototype,Y=t&&Object.getOwnPropertyDescriptor,V=B(M,"name"),d=V&&"something"===function(){}.name,c=V&&(!t||t&&Y(M,"name").configurable);q.exports={EXISTS:V,PROPER:d,CONFIGURABLE:c}},4406(q){"use strict";q.exports=class t{constructor(M){this.stateTable=M.stateTable,this.accepting=M.accepting,this.tags=M.tags}match(M){var Y=this;return{*[Symbol.iterator](){for(var V=1,d=null,c=null,x=null,U=0;U=d&&(yield[d,c,Y.tags[x]]),V=Y.stateTable[1][E],d=null),0!==V&&null==d&&(d=U),Y.accepting[V]&&(c=U),0===V&&(V=1)}null!=d&&null!=c&&c>=d&&(yield[d,c,Y.tags[V]])}}}apply(M,Y){for(var[V,d,c]of this.match(M))for(var x of c)"function"==typeof Y[x]&&Y[x](V,d,M.slice(V,d+1))}}},4415(q,D){"use strict";D._=function g(t,B,M){return B in t?Object.defineProperty(t,B,{value:M,enumerable:!0,configurable:!0,writable:!0}):t[B]=M,t}},4460(q,D,g){q.exports=g(980).BrotliDecompressBuffer},4483(q,D,g){"use strict";var t=g(2227),B=g(299),Y=g(7756).String;q.exports=!!Object.getOwnPropertySymbols&&!B(function(){var V=Symbol("symbol detection");return!Y(V)||!(Object(V)instanceof Symbol)||!Symbol.sham&&t&&t<41})},4494(q,D,g){"use strict";var t=g(1212),B=g(1078);q.exports=function(M,Y,V){try{return t(B(Object.getOwnPropertyDescriptor(M,Y)[V]))}catch{}}},4507(q,D,g){"use strict";var B=g(8115).match(/AppleWebKit\/(\d+)\./);q.exports=!!B&&+B[1]},4540(q,D,g){"use strict";var t;q.exports=(t=g(6861),g(2858),t.pad.NoPadding={pad:function(){},unpad:function(){}},t.pad.NoPadding)},4543(q,D,g){var t=g(2504);D.init=function(){return(0,g(980).BrotliDecompressBuffer)(t.toByteArray(g(3501)))}},4550(q,D,g){"use strict";var t=g(1212),B=g(8681),M=g(3793),Y=t(Function.toString);B(M.inspectSource)||(M.inspectSource=function(V){return Y(V)}),q.exports=M.inspectSource},4610(q,D,g){"use strict";var t=g(2774),M=g(8843)(/^\s*(?:function)?\*/),Y=g(6626)(),V=g(7106),d=t("Object.prototype.toString"),c=t("Function.prototype.toString"),x=g(3011);q.exports=function(E){if("function"!=typeof E)return!1;if(M(c(E)))return!0;if(!Y)return"[object GeneratorFunction]"===d(E);if(!V)return!1;var _=x();return _&&V(E)===_.prototype}},4730(q,D,g){"use strict";var t=g(8266);q.exports=function(B){return t(B.length)}},4766(q,D,g){var d,t=g(2504),B=g(7571);function M(iA){return iA&&iA.__esModule?iA.default:iA}function V(iA,hA,bA,ne){Object.defineProperty(iA,hA,{get:bA,set:ne,enumerable:!0,configurable:!0})}(function Y(iA){Object.defineProperty(iA,"__esModule",{value:!0,configurable:!0})})(q.exports),V(q.exports,"getCategory",()=>BA),V(q.exports,"getCombiningClass",()=>L),V(q.exports,"getScript",()=>eA),V(q.exports,"getEastAsianWidth",()=>UA),V(q.exports,"getNumericValue",()=>xA),V(q.exports,"isAlphabetic",()=>QA),V(q.exports,"isDigit",()=>gA),V(q.exports,"isPunctuation",()=>JA),V(q.exports,"isLowerCase",()=>Be),V(q.exports,"isUpperCase",()=>KA),V(q.exports,"isTitleCase",()=>ae),V(q.exports,"isWhiteSpace",()=>we),V(q.exports,"isBaseForm",()=>ie),V(q.exports,"isMark",()=>kA),V(q.exports,"default",()=>CA),d=JSON.parse('{"categories":["Cc","Zs","Po","Sc","Ps","Pe","Sm","Pd","Nd","Lu","Sk","Pc","Ll","So","Lo","Pi","Cf","No","Pf","Lt","Lm","Mn","Me","Mc","Nl","Zl","Zp","Cs","Co"],"combiningClasses":["Not_Reordered","Above","Above_Right","Below","Attached_Above_Right","Attached_Below","Overlay","Iota_Subscript","Double_Below","Double_Above","Below_Right","Above_Left","CCC10","CCC11","CCC12","CCC13","CCC14","CCC15","CCC16","CCC17","CCC18","CCC19","CCC20","CCC21","CCC22","CCC23","CCC24","CCC25","CCC30","CCC31","CCC32","CCC27","CCC28","CCC29","CCC33","CCC34","CCC35","CCC36","Nukta","Virama","CCC84","CCC91","CCC103","CCC107","CCC118","CCC122","CCC129","CCC130","CCC132","Attached_Above","Below_Left","Left","Kana_Voicing","CCC26","Right"],"scripts":["Common","Latin","Bopomofo","Inherited","Greek","Coptic","Cyrillic","Armenian","Hebrew","Arabic","Syriac","Thaana","Nko","Samaritan","Mandaic","Devanagari","Bengali","Gurmukhi","Gujarati","Oriya","Tamil","Telugu","Kannada","Malayalam","Sinhala","Thai","Lao","Tibetan","Myanmar","Georgian","Hangul","Ethiopic","Cherokee","Canadian_Aboriginal","Ogham","Runic","Tagalog","Hanunoo","Buhid","Tagbanwa","Khmer","Mongolian","Limbu","Tai_Le","New_Tai_Lue","Buginese","Tai_Tham","Balinese","Sundanese","Batak","Lepcha","Ol_Chiki","Braille","Glagolitic","Tifinagh","Han","Hiragana","Katakana","Yi","Lisu","Vai","Bamum","Syloti_Nagri","Phags_Pa","Saurashtra","Kayah_Li","Rejang","Javanese","Cham","Tai_Viet","Meetei_Mayek","null","Linear_B","Lycian","Carian","Old_Italic","Gothic","Old_Permic","Ugaritic","Old_Persian","Deseret","Shavian","Osmanya","Osage","Elbasan","Caucasian_Albanian","Linear_A","Cypriot","Imperial_Aramaic","Palmyrene","Nabataean","Hatran","Phoenician","Lydian","Meroitic_Hieroglyphs","Meroitic_Cursive","Kharoshthi","Old_South_Arabian","Old_North_Arabian","Manichaean","Avestan","Inscriptional_Parthian","Inscriptional_Pahlavi","Psalter_Pahlavi","Old_Turkic","Old_Hungarian","Hanifi_Rohingya","Old_Sogdian","Sogdian","Elymaic","Brahmi","Kaithi","Sora_Sompeng","Chakma","Mahajani","Sharada","Khojki","Multani","Khudawadi","Grantha","Newa","Tirhuta","Siddham","Modi","Takri","Ahom","Dogra","Warang_Citi","Nandinagari","Zanabazar_Square","Soyombo","Pau_Cin_Hau","Bhaiksuki","Marchen","Masaram_Gondi","Gunjala_Gondi","Makasar","Cuneiform","Egyptian_Hieroglyphs","Anatolian_Hieroglyphs","Mro","Bassa_Vah","Pahawh_Hmong","Medefaidrin","Miao","Tangut","Nushu","Duployan","SignWriting","Nyiakeng_Puachue_Hmong","Wancho","Mende_Kikakui","Adlam"],"eaw":["N","Na","A","W","H","F"]}');const c=new(M(B))(M(t).toByteArray("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")),x=Math.log2||(iA=>Math.log(iA)/Math.LN2),U=iA=>x(iA)+1|0,E=U(M(d).categories.length-1),N=U(M(d).combiningClasses.length-1),_=U(M(d).scripts.length-1),Q=U(M(d).eaw.length-1),K=N+_+Q+10,lA=_+Q+10,uA=Q+10,J=(1<>K&J]}function L(iA){const hA=c.get(iA);return M(d).combiningClasses[hA>>lA&rA]}function eA(iA){const hA=c.get(iA);return M(d).scripts[hA>>uA&$]}function UA(iA){const hA=c.get(iA);return M(d).eaw[hA>>10&Z]}function xA(iA){let hA=c.get(iA),bA=1023&hA;if(0===bA)return null;if(bA<=50)return bA-1;if(bA<480)return((bA>>4)-12)/(1+(15&bA));if(bA<768){hA=(bA>>5)-14;let ne=2+(31&bA);for(;ne>0;)hA*=10,ne--;return hA}{hA=(bA>>2)-191;let ne=1+(3&bA);for(;ne>0;)hA*=60,ne--;return hA}}function QA(iA){const hA=BA(iA);return"Lu"===hA||"Ll"===hA||"Lt"===hA||"Lm"===hA||"Lo"===hA||"Nl"===hA}function gA(iA){return"Nd"===BA(iA)}function JA(iA){const hA=BA(iA);return"Pc"===hA||"Pd"===hA||"Pe"===hA||"Pf"===hA||"Pi"===hA||"Po"===hA||"Ps"===hA}function Be(iA){return"Ll"===BA(iA)}function KA(iA){return"Lu"===BA(iA)}function ae(iA){return"Lt"===BA(iA)}function we(iA){const hA=BA(iA);return"Zs"===hA||"Zl"===hA||"Zp"===hA}function ie(iA){const hA=BA(iA);return"Nd"===hA||"No"===hA||"Nl"===hA||"Lu"===hA||"Ll"===hA||"Lt"===hA||"Lm"===hA||"Lo"===hA||"Me"===hA||"Mc"===hA}function kA(iA){const hA=BA(iA);return"Mn"===hA||"Me"===hA||"Mc"===hA}var CA={getCategory:BA,getCombiningClass:L,getScript:eA,getEastAsianWidth:UA,getNumericValue:xA,isAlphabetic:QA,isDigit:gA,isPunctuation:JA,isLowerCase:Be,isUpperCase:KA,isTitleCase:ae,isWhiteSpace:we,isBaseForm:ie,isMark:kA}},4779(q,D,g){"use strict";var t;q.exports=(t=g(6861),g(2858),t.pad.ZeroPadding={pad:function(B,M){var Y=4*M;B.clamp(),B.sigBytes+=Y-(B.sigBytes%Y||Y)},unpad:function(B){var M=B.words,Y=B.sigBytes-1;for(Y=B.sigBytes-1;Y>=0;Y--)if(M[Y>>>2]>>>24-Y%4*8&255){B.sigBytes=Y+1;break}}},t.pad.ZeroPadding)},4785(q){"use strict";var t,D="object"==typeof Reflect?Reflect:null,g=D&&"function"==typeof D.apply?D.apply:function(rA,$,Z){return Function.prototype.apply.call(rA,$,Z)};t=D&&"function"==typeof D.ownKeys?D.ownKeys:Object.getOwnPropertySymbols?function(rA){return Object.getOwnPropertyNames(rA).concat(Object.getOwnPropertySymbols(rA))}:function(rA){return Object.getOwnPropertyNames(rA)};var M=Number.isNaN||function(rA){return rA!=rA};function Y(){Y.init.call(this)}q.exports=Y,q.exports.once=function lA(J,rA){return new Promise(function($,Z){function b(L){J.removeListener(rA,BA),Z(L)}function BA(){"function"==typeof J.removeListener&&J.removeListener("error",b),$([].slice.call(arguments))}G(J,rA,BA,{once:!0}),"error"!==rA&&function uA(J,rA,$){"function"==typeof J.on&&G(J,"error",rA,$)}(J,b,{once:!0})})},Y.EventEmitter=Y,Y.prototype._events=void 0,Y.prototype._eventsCount=0,Y.prototype._maxListeners=void 0;var V=10;function d(J){if("function"!=typeof J)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof J)}function c(J){return void 0===J._maxListeners?Y.defaultMaxListeners:J._maxListeners}function x(J,rA,$,Z){var b,BA,L;if(d($),void 0===(BA=J._events)?(BA=J._events=Object.create(null),J._eventsCount=0):(void 0!==BA.newListener&&(J.emit("newListener",rA,$.listener?$.listener:$),BA=J._events),L=BA[rA]),void 0===L)L=BA[rA]=$,++J._eventsCount;else if("function"==typeof L?L=BA[rA]=Z?[$,L]:[L,$]:Z?L.unshift($):L.push($),(b=c(J))>0&&L.length>b&&!L.warned){L.warned=!0;var eA=new Error("Possible EventEmitter memory leak detected. "+L.length+" "+String(rA)+" listeners added. Use emitter.setMaxListeners() to increase limit");eA.name="MaxListenersExceededWarning",eA.emitter=J,eA.type=rA,eA.count=L.length,function B(J){console&&console.warn&&console.warn(J)}(eA)}return J}function U(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function E(J,rA,$){var Z={fired:!1,wrapFn:void 0,target:J,type:rA,listener:$},b=U.bind(Z);return b.listener=$,Z.wrapFn=b,b}function N(J,rA,$){var Z=J._events;if(void 0===Z)return[];var b=Z[rA];return void 0===b?[]:"function"==typeof b?$?[b.listener||b]:[b]:$?function K(J){for(var rA=new Array(J.length),$=0;$0&&(L=$[0]),L instanceof Error)throw L;var eA=new Error("Unhandled error."+(L?" ("+L.message+")":""));throw eA.context=L,eA}var UA=BA[rA];if(void 0===UA)return!1;if("function"==typeof UA)g(UA,this,$);else{var xA=UA.length,QA=Q(UA,xA);for(Z=0;Z=0;L--)if(Z[L]===$||Z[L].listener===$){eA=Z[L].listener,BA=L;break}if(BA<0)return this;0===BA?Z.shift():function y(J,rA){for(;rA+1=0;b--)this.removeListener(rA,$[b]);return this},Y.prototype.listeners=function(rA){return N(this,rA,!0)},Y.prototype.rawListeners=function(rA){return N(this,rA,!1)},Y.listenerCount=function(J,rA){return"function"==typeof J.listenerCount?J.listenerCount(rA):_.call(J,rA)},Y.prototype.listenerCount=_,Y.prototype.eventNames=function(){return this._eventsCount>0?t(this._events):[]}},4866(q,D,g){"use strict";var t,Y;q.exports=(t=g(6861),Y=t.lib.WordArray,t.enc.Base64={stringify:function(x){var U=x.words,E=x.sigBytes,N=this._map;x.clamp();for(var _=[],Q=0;Q>>2]>>>24-Q%4*8&255)<<16|(U[Q+1>>>2]>>>24-(Q+1)%4*8&255)<<8|U[Q+2>>>2]>>>24-(Q+2)%4*8&255,G=0;G<4&&Q+.75*G>>6*(3-G)&63));var J=N.charAt(64);if(J)for(;_.length%4;)_.push(J);return _.join("")},parse:function(x){var U=x.length,E=this._map,N=this._reverseMap;if(!N){N=this._reverseMap=[];for(var _=0;_>>6-Q%4*2;N[_>>>2]|=(y|K)<<24-_%4*8,_++}return Y.create(N,_)}(x,U,N)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="},t.enc.Base64)},4873(q,D,g){"use strict";var t;q.exports=(t=g(6861),g(2858),t.pad.AnsiX923={pad:function(B,M){var Y=B.sigBytes,V=4*M,d=V-Y%V,c=Y+d-1;B.clamp(),B.words[c>>>2]|=d<<24-c%4*8,B.sigBytes+=d},unpad:function(B){B.sigBytes-=255&B.words[B.sigBytes-1>>>2]}},t.pad.Ansix923)},4903(q,D,g){"use strict";var t=g(9964),B=Object.keys||function(N){var _=[];for(var Q in N)_.push(Q);return _};q.exports=x;var M=g(8261),Y=g(9781);g(9784)(x,M);for(var V=B(Y.prototype),d=0;dV),g(q.exports,"DecodeStream",()=>B),g(q.exports,"Array",()=>w),g(q.exports,"LazyArray",()=>H),g(q.exports,"Bitfield",()=>wA),g(q.exports,"Boolean",()=>j),g(q.exports,"Buffer",()=>RA),g(q.exports,"Enum",()=>PA),g(q.exports,"Optional",()=>XA),g(q.exports,"Reserved",()=>vA),g(q.exports,"String",()=>fe),g(q.exports,"Struct",()=>He),g(q.exports,"VersionedStruct",()=>Pe);const t={utf16le:"utf-16le",ucs2:"utf-16le",utf16be:"utf-16be"};let B=(()=>{class v{constructor(m){this.buffer=m,this.view=new DataView(m.buffer,m.byteOffset,m.byteLength),this.pos=0,this.length=this.buffer.length}readString(m,R="ascii"){R=t[R]||R;let pA=this.readBuffer(m);try{return new TextDecoder(R).decode(pA)}catch{return pA}}readBuffer(m){return this.buffer.slice(this.pos,this.pos+=m)}readUInt24BE(){return(this.readUInt16BE()<<8)+this.readUInt8()}readUInt24LE(){return this.readUInt16LE()+(this.readUInt8()<<16)}readInt24BE(){return(this.readInt16BE()<<8)+this.readUInt8()}readInt24LE(){return this.readUInt16LE()+(this.readInt8()<<16)}}return v.TYPES={UInt8:1,UInt16:2,UInt24:3,UInt32:4,Int8:1,Int16:2,Int24:3,Int32:4,Float:4,Double:8},v})();for(let v of Object.getOwnPropertyNames(DataView.prototype))if("get"===v.slice(0,3)){let u=v.slice(3).replace("Ui","UI");"Float32"===u?u="Float":"Float64"===u&&(u="Double");let m=B.TYPES[u];B.prototype["read"+u+(1===m?"":"BE")]=function(){const R=this.view[v](this.pos,!1);return this.pos+=m,R},1!==m&&(B.prototype["read"+u+"LE"]=function(){const R=this.view[v](this.pos,!0);return this.pos+=m,R})}const M=new TextEncoder,Y=18==new Uint8Array(new Uint16Array([4660]).buffer)[0];class V{constructor(u){this.buffer=u,this.view=new DataView(this.buffer.buffer,this.buffer.byteOffset,this.buffer.byteLength),this.pos=0}writeBuffer(u){this.buffer.set(u,this.pos),this.pos+=u.length}writeString(u,m="ascii"){let R;switch(m){case"utf16le":case"utf16-le":case"ucs2":R=d(u,Y);break;case"utf16be":case"utf16-be":R=d(u,!Y);break;case"utf8":R=M.encode(u);break;case"ascii":R=function c(v){let u=new Uint8Array(v.length);for(let m=0;m>>16&255,this.buffer[this.pos++]=u>>>8&255,this.buffer[this.pos++]=255&u}writeUInt24LE(u){this.buffer[this.pos++]=255&u,this.buffer[this.pos++]=u>>>8&255,this.buffer[this.pos++]=u>>>16&255}writeInt24BE(u){this.writeUInt24BE(u>=0?u:u+16777215+1)}writeInt24LE(u){this.writeUInt24LE(u>=0?u:u+16777215+1)}fill(u,m){if(m>8|(255&pA)<<8),m[R]=pA}return new Uint8Array(m.buffer)}for(let v of Object.getOwnPropertyNames(DataView.prototype))if("set"===v.slice(0,3)){let u=v.slice(3).replace("Ui","UI");"Float32"===u?u="Float":"Float64"===u&&(u="Double");let m=B.TYPES[u];V.prototype["write"+u+(1===m?"":"BE")]=function(R){this.view[v](this.pos,R,!1),this.pos+=m},1!==m&&(V.prototype["write"+u+"LE"]=function(R){this.view[v](this.pos,R,!0),this.pos+=m})}class x{fromBuffer(u){let m=new B(u);return this.decode(m)}toBuffer(u){let m=this.size(u),R=new Uint8Array(m),pA=new V(R);return this.encode(pA,u),R}}var U={};g(U,"Number",()=>E),g(U,"uint8",()=>N),g(U,"uint16be",()=>_),g(U,"uint16",()=>Q),g(U,"uint16le",()=>y),g(U,"uint24be",()=>K),g(U,"uint24",()=>lA),g(U,"uint24le",()=>uA),g(U,"uint32be",()=>G),g(U,"uint32",()=>J),g(U,"uint32le",()=>rA),g(U,"int8",()=>$),g(U,"int16be",()=>Z),g(U,"int16",()=>b),g(U,"int16le",()=>BA),g(U,"int24be",()=>L),g(U,"int24",()=>eA),g(U,"int24le",()=>UA),g(U,"int32be",()=>xA),g(U,"int32",()=>QA),g(U,"int32le",()=>gA),g(U,"floatbe",()=>JA),g(U,"float",()=>Be),g(U,"floatle",()=>KA),g(U,"doublebe",()=>ae),g(U,"double",()=>we),g(U,"doublele",()=>ie),g(U,"Fixed",()=>kA),g(U,"fixed16be",()=>CA),g(U,"fixed16",()=>iA),g(U,"fixed16le",()=>hA),g(U,"fixed32be",()=>bA),g(U,"fixed32",()=>ne),g(U,"fixed32le",()=>$A);class E extends x{constructor(u,m="BE"){super(),this.type=u,this.endian=m,this.fn=this.type,"8"!==this.type[this.type.length-1]&&(this.fn+=this.endian)}size(){return B.TYPES[this.type]}decode(u){return u[`read${this.fn}`]()}encode(u,m){return u[`write${this.fn}`](m)}}const N=new E("UInt8"),_=new E("UInt16","BE"),Q=_,y=new E("UInt16","LE"),K=new E("UInt24","BE"),lA=K,uA=new E("UInt24","LE"),G=new E("UInt32","BE"),J=G,rA=new E("UInt32","LE"),$=new E("Int8"),Z=new E("Int16","BE"),b=Z,BA=new E("Int16","LE"),L=new E("Int24","BE"),eA=L,UA=new E("Int24","LE"),xA=new E("Int32","BE"),QA=xA,gA=new E("Int32","LE"),JA=new E("Float","BE"),Be=JA,KA=new E("Float","LE"),ae=new E("Double","BE"),we=ae,ie=new E("Double","LE");class kA extends E{constructor(u,m,R=u>>1){super(`Int${u}`,m),this._point=1<P),g(EA,"PropertyDescriptor",()=>cA);class cA{constructor(u={}){this.enumerable=!0,this.configurable=!0;for(let m in u)this[m]=u[m]}}class w extends x{constructor(u,m,R="count"){super(),this.type=u,this.length=m,this.lengthType=R}decode(u,m){let R;const{pos:pA}=u,aA=[];let Me=m;if(null!=this.length&&(R=P(this.length,u,m)),this.length instanceof E&&(Object.defineProperties(aA,{parent:{value:m},_startOffset:{value:pA},_currentOffset:{value:0,writable:!0},_length:{value:R}}),Me=aA),null==R||"bytes"===this.lengthType){const VA=null!=R?u.pos+R:m?._length?m._startOffset+m._length:u.length;for(;u.pos=this.length)){if(null==this.items[u]){const{pos:m}=this.stream;this.stream.pos=this.base+this.type.size(null,this.ctx)*u,this.items[u]=this.type.decode(this.stream,this.ctx),this.stream.pos=m}return this.items[u]}}toArray(){const u=[];for(let m=0,R=this.length;m=55296&&pA<=56319&&Rthis.versionPath.reduce((m,R)=>m&&m[R],v))(m):this.type.decode(u),this.versions.header&&this._parseFields(u,pA,this.versions.header);const aA=this.versions[pA.version];if(null==aA)throw new Error(`Unknown version ${pA.version}`);return aA instanceof Pe?aA.decode(u,m):(this._parseFields(u,pA,aA),null!=this.process&&this.process.call(pA,u),pA)}size(u,m,R=!0){let pA,aA;if(!u)throw new Error("Not a fixed size");null!=this.preEncode&&this.preEncode.call(u);const Me={parent:m,val:u,pointerSize:0};let VA=0;if("string"!=typeof this.type&&(VA+=this.type.size(u.version,Me)),this.versions.header)for(pA in this.versions.header)aA=this.versions.header[pA],null!=aA.size&&(VA+=aA.size(u[pA],Me));const Ce=this.versions[u.version];if(null==Ce)throw new Error(`Unknown version ${u.version}`);for(pA in Ce)aA=Ce[pA],null!=aA.size&&(VA+=aA.size(u[pA],Me));return R&&(VA+=Me.pointerSize),VA}encode(u,m,R){let pA,aA;null!=this.preEncode&&this.preEncode.call(m,u);const Me={pointers:[],startOffset:u.pos,parent:R,val:m,pointerSize:0};if(Me.pointerOffset=u.pos+this.size(m,Me,!1),"string"!=typeof this.type&&this.type.encode(u,m.version),this.versions.header)for(pA in this.versions.header)aA=this.versions.header[pA],null!=aA.encode&&aA.encode(u,m[pA],Me);const VA=this.versions[m.version];for(pA in VA)aA=VA[pA],null!=aA.encode&&aA.encode(u,m[pA],Me);let Ce=0;for(;CesA),g(te,"VoidPointer",()=>T);class sA extends x{constructor(u,m,R={}){if(super(),this.offsetType=u,this.type=m,this.options=R,"void"===this.type&&(this.type=null),null==this.options.type&&(this.options.type="local"),null==this.options.allowNull&&(this.options.allowNull=!0),null==this.options.nullValue&&(this.options.nullValue=0),null==this.options.lazy&&(this.options.lazy=!1),this.options.relativeTo){if("function"!=typeof this.options.relativeTo)throw new Error("relativeTo option must be a function");this.relativeToGetter=R.relativeTo}}decode(u,m){const R=this.offsetType.decode(u,m);if(R===this.options.nullValue&&this.options.allowNull)return null;let pA;switch(this.options.type){case"local":pA=m._startOffset;break;case"immediate":pA=u.pos-this.offsetType.size();break;case"parent":pA=m.parent._startOffset;break;default:for(var aA=m;aA.parent;)aA=aA.parent;pA=aA._startOffset||0}this.options.relativeTo&&(pA+=this.relativeToGetter(m));const Me=R+pA;if(null!=this.type){let VA=null;const Ce=()=>{if(null!=VA)return VA;const{pos:dA}=u;return u.pos=Me,VA=this.type.decode(u,m),u.pos=dA,VA};return this.options.lazy?new cA({get:Ce}):Ce()}return Me}size(u,m){const R=m;switch(this.options.type){case"local":case"immediate":break;case"parent":m=m.parent;break;default:for(;m.parent;)m=m.parent}let{type:pA}=this;if(null==pA){if(!(u instanceof T))throw new Error("Must be a VoidPointer");({type:pA}=u),u=u.value}if(u&&m){let aA=pA.size(u,R);m.pointerSize+=aA}return this.offsetType.size()}encode(u,m,R){let pA;const aA=R;if(null==m)return void this.offsetType.encode(u,this.options.nullValue);switch(this.options.type){case"local":pA=R.startOffset;break;case"immediate":pA=u.pos+this.offsetType.size(m,aA);break;case"parent":pA=(R=R.parent).startOffset;break;default:for(pA=0;R.parent;)R=R.parent}this.options.relativeTo&&(pA+=this.relativeToGetter(aA.val)),this.offsetType.encode(u,R.pointerOffset-pA);let{type:Me}=this;if(null==Me){if(!(m instanceof T))throw new Error("Must be a VoidPointer");({type:Me}=m),m=m.value}return R.pointers.push({type:Me,val:m,parent:aA}),R.pointerOffset+=Me.size(m,aA)}}class T{constructor(u,m){this.type=u,this.value=m}}D(q.exports,EA),D(q.exports,U),D(q.exports,te)},5293(q){"use strict";q.exports=Error},5336(q,D,g){"use strict";var t=g(8420),B=g(1212);q.exports=function(M){if("Function"===t(M))return B(M)}},5337(q,D,g){"use strict";var B=g(8115).match(/firefox\/(\d+)/i);q.exports=!!B&&+B[1]},5348(q,D,g){"use strict";var t;q.exports=(t=g(6861),g(3144),g(9064),g(1199),g(4866),g(7493),g(3532),g(9663),g(321),g(3620),g(8692),g(517),g(6174),g(3752),g(8865),g(7331),g(6818),g(2858),g(2073),g(6843),g(1220),g(3701),g(8358),g(4873),g(7705),g(3282),g(4779),g(4540),g(4137),g(9851),g(3324),g(6089),g(3610),g(5464),g(3032),t)},5403(q,D,g){"use strict";function t(Z){return(t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(b){return typeof b}:function(b){return b&&"function"==typeof Symbol&&b.constructor===Symbol&&b!==Symbol.prototype?"symbol":typeof b})(Z)}function B(Z,b){for(var BA=0;BA"u"||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var eA,L=Q(Z);if(b){var UA=Q(this).constructor;eA=Reflect.construct(L,arguments,UA)}else eA=L.apply(this,arguments);return function E(Z,b){if(b&&("object"===t(b)||"function"==typeof b))return b;if(void 0!==b)throw new TypeError("Derived constructors may only return object or undefined");return function N(Z){if(void 0===Z)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return Z}(Z)}(this,eA)}}(QA);function QA(gA,JA,Be){var KA;return function d(Z,b){if(!(Z instanceof b))throw new TypeError("Cannot call a class as a function")}(this,QA),KA=xA.call(this,function L(UA,xA,QA){return"string"==typeof b?b:b(UA,xA,QA)}(gA,JA,Be)),KA.code=Z,KA}return function M(Z,b,BA){return b&&B(Z.prototype,b),BA&&B(Z,BA),Object.defineProperty(Z,"prototype",{writable:!1}),Z}(QA)}(BA);y[Z]=eA}function G(Z,b){if(Array.isArray(Z)){var BA=Z.length;return Z=Z.map(function(L){return String(L)}),BA>2?"one of ".concat(b," ").concat(Z.slice(0,BA-1).join(", "),", or ")+Z[BA-1]:2===BA?"one of ".concat(b," ").concat(Z[0]," or ").concat(Z[1]):"of ".concat(b," ").concat(Z[0])}return"of ".concat(b," ").concat(String(Z))}uA("ERR_AMBIGUOUS_ARGUMENT",'The "%s" argument is ambiguous. %s',TypeError),uA("ERR_INVALID_ARG_TYPE",function(Z,b,BA){var L,eA;if(void 0===K&&(K=g(7801)),K("string"==typeof Z,"'name' must be a string"),"string"==typeof b&&function J(Z,b,BA){return Z.substr(!BA||BA<0?0:+BA,b.length)===b}(b,"not ")?(L="must not be",b=b.replace(/^not /,"")):L="must be",function rA(Z,b,BA){return(void 0===BA||BA>Z.length)&&(BA=Z.length),Z.substring(BA-b.length,BA)===b}(Z," argument"))eA="The ".concat(Z," ").concat(L," ").concat(G(b,"type"));else{var UA=function $(Z,b,BA){return"number"!=typeof BA&&(BA=0),!(BA+b.length>Z.length)&&-1!==Z.indexOf(b,BA)}(Z,".")?"property":"argument";eA='The "'.concat(Z,'" ').concat(UA," ").concat(L," ").concat(G(b,"type"))}return eA+". Received type ".concat(t(BA))},TypeError),uA("ERR_INVALID_ARG_VALUE",function(Z,b){var BA=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"is invalid";void 0===lA&&(lA=g(7187));var L=lA.inspect(b);return L.length>128&&(L="".concat(L.slice(0,128),"...")),"The argument '".concat(Z,"' ").concat(BA,". Received ").concat(L)},TypeError,RangeError),uA("ERR_INVALID_RETURN_VALUE",function(Z,b,BA){var L;return L=BA&&BA.constructor&&BA.constructor.name?"instance of ".concat(BA.constructor.name):"type ".concat(t(BA)),"Expected ".concat(Z,' to be returned from the "').concat(b,'"')+" function but got ".concat(L,".")},TypeError),uA("ERR_MISSING_ARGS",function(){for(var Z=arguments.length,b=new Array(Z),BA=0;BA0,"At least one arg needs to be specified");var L="The ",eA=b.length;switch(b=b.map(function(UA){return'"'.concat(UA,'"')}),eA){case 1:L+="".concat(b[0]," argument");break;case 2:L+="".concat(b[0]," and ").concat(b[1]," arguments");break;default:L+=b.slice(0,eA-1).join(", "),L+=", and ".concat(b[eA-1]," arguments")}return"".concat(L," must be specified")},TypeError),q.exports.codes=y},5416(q,D,g){"use strict";var t=g(9964);function B(kA,CA){var iA=Object.keys(kA);if(Object.getOwnPropertySymbols){var hA=Object.getOwnPropertySymbols(kA);CA&&(hA=hA.filter(function(bA){return Object.getOwnPropertyDescriptor(kA,bA).enumerable})),iA.push.apply(iA,hA)}return iA}function M(kA){for(var CA=1;CA"u"||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function G(kA,CA){return(G=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(hA,bA){return hA.__proto__=bA,hA})(kA,CA)}function J(kA){return(J=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(iA){return iA.__proto__||Object.getPrototypeOf(iA)})(kA)}function rA(kA){return(rA="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(CA){return typeof CA}:function(CA){return CA&&"function"==typeof Symbol&&CA.constructor===Symbol&&CA!==Symbol.prototype?"symbol":typeof CA})(kA)}var Z=g(7187).inspect,BA=g(5403).codes.ERR_INVALID_ARG_TYPE;function L(kA,CA,iA){return(void 0===iA||iA>kA.length)&&(iA=kA.length),kA.substring(iA-CA.length,iA)===CA}var UA="",xA="",QA="",gA="",JA={deepStrictEqual:"Expected values to be strictly deep-equal:",strictEqual:"Expected values to be strictly equal:",strictEqualObject:'Expected "actual" to be reference-equal to "expected":',deepEqual:"Expected values to be loosely deep-equal:",equal:"Expected values to be loosely equal:",notDeepStrictEqual:'Expected "actual" not to be strictly deep-equal to:',notStrictEqual:'Expected "actual" to be strictly unequal to:',notStrictEqualObject:'Expected "actual" not to be reference-equal to "expected":',notDeepEqual:'Expected "actual" not to be loosely deep-equal to:',notEqual:'Expected "actual" to be loosely unequal to:',notIdentical:"Values identical but not reference-equal:"};function KA(kA){var CA=Object.keys(kA),iA=Object.create(Object.getPrototypeOf(kA));return CA.forEach(function(hA){iA[hA]=kA[hA]}),Object.defineProperty(iA,"message",{value:kA.message}),iA}function ae(kA){return Z(kA,{compact:!1,customInspect:!1,depth:1e3,maxArrayLength:1/0,showHidden:!1,breakLength:1/0,showProxy:!1,sorted:!0,getters:!0})}var ie=function(kA,CA){!function E(kA,CA){if("function"!=typeof CA&&null!==CA)throw new TypeError("Super expression must either be null or a function");kA.prototype=Object.create(CA&&CA.prototype,{constructor:{value:kA,writable:!0,configurable:!0}}),Object.defineProperty(kA,"prototype",{writable:!1}),CA&&G(kA,CA)}(hA,kA);var iA=function N(kA){var CA=lA();return function(){var bA,hA=J(kA);if(CA){var ne=J(this).constructor;bA=Reflect.construct(hA,arguments,ne)}else bA=hA.apply(this,arguments);return _(this,bA)}}(hA);function hA(bA){var ne;if(function V(kA,CA){if(!(kA instanceof CA))throw new TypeError("Cannot call a class as a function")}(this,hA),"object"!==rA(bA)||null===bA)throw new BA("options","Object",bA);var $A=bA.message,EA=bA.operator,P=bA.stackStartFn,cA=bA.actual,w=bA.expected,H=Error.stackTraceLimit;if(Error.stackTraceLimit=0,null!=$A)ne=iA.call(this,String($A));else if(t.stderr&&t.stderr.isTTY&&(t.stderr&&t.stderr.getColorDepth&&1!==t.stderr.getColorDepth()?(UA="\x1b[34m",xA="\x1b[32m",gA="\x1b[39m",QA="\x1b[31m"):(UA="",xA="",gA="",QA="")),"object"===rA(cA)&&null!==cA&&"object"===rA(w)&&null!==w&&"stack"in cA&&cA instanceof Error&&"stack"in w&&w instanceof Error&&(cA=KA(cA),w=KA(w)),"deepStrictEqual"===EA||"strictEqual"===EA)ne=iA.call(this,function we(kA,CA,iA){var hA="",bA="",ne=0,$A="",EA=!1,P=ae(kA),cA=P.split("\n"),w=ae(CA).split("\n"),H=0,TA="";if("strictEqual"===iA&&"object"===rA(kA)&&"object"===rA(CA)&&null!==kA&&null!==CA&&(iA="strictEqualObject"),1===cA.length&&1===w.length&&cA[0]!==w[0]){var wA=cA[0].length+w[0].length;if(wA<=10){if(!("object"===rA(kA)&&null!==kA||"object"===rA(CA)&&null!==CA||0===kA&&0===CA))return"".concat(JA[iA],"\n\n")+"".concat(cA[0]," !== ").concat(w[0],"\n")}else if("strictEqualObject"!==iA&&wA<(t.stderr&&t.stderr.isTTY?t.stderr.columns:80)){for(;cA[0][H]===w[0][H];)H++;H>2&&(TA="\n ".concat(function eA(kA,CA){if(CA=Math.floor(CA),0==kA.length||0==CA)return"";var iA=kA.length*CA;for(CA=Math.floor(Math.log(CA)/Math.log(2));CA;)kA+=kA,CA--;return kA+kA.substring(0,iA-kA.length)}(" ",H),"^"),H=0)}}for(var RA=cA[cA.length-1],PA=w[w.length-1];RA===PA&&(H++<2?$A="\n ".concat(RA).concat($A):hA=RA,cA.pop(),w.pop(),0!==cA.length&&0!==w.length);)RA=cA[cA.length-1],PA=w[w.length-1];var XA=Math.max(cA.length,w.length);if(0===XA){var vA=P.split("\n");if(vA.length>30)for(vA[26]="".concat(UA,"...").concat(gA);vA.length>27;)vA.pop();return"".concat(JA.notIdentical,"\n\n").concat(vA.join("\n"),"\n")}H>3&&($A="\n".concat(UA,"...").concat(gA).concat($A),EA=!0),""!==hA&&($A="\n ".concat(hA).concat($A),hA="");var fe=0,ye=JA[iA]+"\n".concat(xA,"+ actual").concat(gA," ").concat(QA,"- expected").concat(gA),Ge=" ".concat(UA,"...").concat(gA," Lines skipped");for(H=0;H1&&H>2&&(He>4?(bA+="\n".concat(UA,"...").concat(gA),EA=!0):He>3&&(bA+="\n ".concat(w[H-2]),fe++),bA+="\n ".concat(w[H-1]),fe++),ne=H,hA+="\n".concat(QA,"-").concat(gA," ").concat(w[H]),fe++;else if(w.length1&&H>2&&(He>4?(bA+="\n".concat(UA,"...").concat(gA),EA=!0):He>3&&(bA+="\n ".concat(cA[H-2]),fe++),bA+="\n ".concat(cA[H-1]),fe++),ne=H,bA+="\n".concat(xA,"+").concat(gA," ").concat(cA[H]),fe++;else{var _e=w[H],Pe=cA[H],te=Pe!==_e&&(!L(Pe,",")||Pe.slice(0,-1)!==_e);te&&L(_e,",")&&_e.slice(0,-1)===Pe&&(te=!1,Pe+=","),te?(He>1&&H>2&&(He>4?(bA+="\n".concat(UA,"...").concat(gA),EA=!0):He>3&&(bA+="\n ".concat(cA[H-2]),fe++),bA+="\n ".concat(cA[H-1]),fe++),ne=H,bA+="\n".concat(xA,"+").concat(gA," ").concat(Pe),hA+="\n".concat(QA,"-").concat(gA," ").concat(_e),fe+=2):(bA+=hA,hA="",(1===He||0===H)&&(bA+="\n ".concat(Pe),fe++))}if(fe>20&&H30)for(wA[26]="".concat(UA,"...").concat(gA);wA.length>27;)wA.pop();ne=iA.call(this,1===wA.length?"".concat(TA," ").concat(wA[0]):"".concat(TA,"\n\n").concat(wA.join("\n"),"\n"))}else{var j=ae(cA),RA="",PA=JA[EA];"notDeepEqual"===EA||"notEqual"===EA?(j="".concat(JA[EA],"\n\n").concat(j)).length>1024&&(j="".concat(j.slice(0,1021),"...")):(RA="".concat(ae(w)),j.length>512&&(j="".concat(j.slice(0,509),"...")),RA.length>512&&(RA="".concat(RA.slice(0,509),"...")),"deepEqual"===EA||"equal"===EA?j="".concat(PA,"\n\n").concat(j,"\n\nshould equal\n\n"):RA=" ".concat(EA," ").concat(RA)),ne=iA.call(this,"".concat(j).concat(RA))}return Error.stackTraceLimit=H,ne.generatedMessage=!$A,Object.defineProperty(Q(ne),"name",{value:"AssertionError [ERR_ASSERTION]",enumerable:!1,writable:!0,configurable:!0}),ne.code="ERR_ASSERTION",ne.actual=cA,ne.expected=w,ne.operator=EA,Error.captureStackTrace&&Error.captureStackTrace(Q(ne),P),ne.name="AssertionError",_(ne)}return function c(kA,CA,iA){CA&&d(kA.prototype,CA),iA&&d(kA,iA),Object.defineProperty(kA,"prototype",{writable:!1})}(hA,[{key:"toString",value:function(){return"".concat(this.name," [").concat(this.code,"]: ").concat(this.message)}},{key:CA,value:function(ne,$A){return Z(this,M(M({},$A),{},{customInspect:!1,depth:0}))}}]),hA}(y(Error),Z.custom);q.exports=ie},5421(q,D,g){"use strict";var t=g(5643),B="function"==typeof Symbol&&"symbol"==typeof Symbol("foo"),M=Object.prototype.toString,Y=Array.prototype.concat,V=g(9295),c=g(8890)(),x=function(E,N,_,Q){if(N in E)if(!0===Q){if(E[N]===_)return}else if(!function(E){return"function"==typeof E&&"[object Function]"===M.call(E)}(Q)||!Q())return;c?V(E,N,_,!0):V(E,N,_)},U=function(E,N){var _=arguments.length>2?arguments[2]:{},Q=t(N);B&&(Q=Y.call(Q,Object.getOwnPropertySymbols(N)));for(var y=0;y>>16,N[1],N[0]<<16|N[3]>>>16,N[2],N[1]<<16|N[0]>>>16,N[3],N[2]<<16|N[1]>>>16],y=this._C=[N[2]<<16|N[2]>>>16,4294901760&N[0]|65535&N[1],N[3]<<16|N[3]>>>16,4294901760&N[1]|65535&N[2],N[0]<<16|N[0]>>>16,4294901760&N[2]|65535&N[3],N[1]<<16|N[1]>>>16,4294901760&N[3]|65535&N[0]];this._b=0;for(var K=0;K<4;K++)E.call(this);for(K=0;K<8;K++)y[K]^=Q[K+4&7];if(_){var lA=_.words,uA=lA[0],G=lA[1],J=16711935&(uA<<8|uA>>>24)|4278255360&(uA<<24|uA>>>8),rA=16711935&(G<<8|G>>>24)|4278255360&(G<<24|G>>>8),$=J>>>16|4294901760&rA,Z=rA<<16|65535&J;for(y[0]^=J,y[1]^=$,y[2]^=rA,y[3]^=Z,y[4]^=J,y[5]^=$,y[6]^=rA,y[7]^=Z,K=0;K<4;K++)E.call(this)}},_doProcessBlock:function(N,_){var Q=this._X;E.call(this),d[0]=Q[0]^Q[5]>>>16^Q[3]<<16,d[1]=Q[2]^Q[7]>>>16^Q[5]<<16,d[2]=Q[4]^Q[1]>>>16^Q[7]<<16,d[3]=Q[6]^Q[3]>>>16^Q[1]<<16;for(var y=0;y<4;y++)d[y]=16711935&(d[y]<<8|d[y]>>>24)|4278255360&(d[y]<<24|d[y]>>>8),N[_+y]^=d[y]},blockSize:4,ivSize:2});function E(){for(var N=this._X,_=this._C,Q=0;Q<8;Q++)c[Q]=_[Q];for(_[0]=_[0]+1295307597+this._b|0,_[1]=_[1]+3545052371+(_[0]>>>0>>0?1:0)|0,_[2]=_[2]+886263092+(_[1]>>>0>>0?1:0)|0,_[3]=_[3]+1295307597+(_[2]>>>0>>0?1:0)|0,_[4]=_[4]+3545052371+(_[3]>>>0>>0?1:0)|0,_[5]=_[5]+886263092+(_[4]>>>0>>0?1:0)|0,_[6]=_[6]+1295307597+(_[5]>>>0>>0?1:0)|0,_[7]=_[7]+3545052371+(_[6]>>>0>>0?1:0)|0,this._b=_[7]>>>0>>0?1:0,Q=0;Q<8;Q++){var y=N[Q]+_[Q],K=65535&y,lA=y>>>16;x[Q]=((K*K>>>17)+K*lA>>>15)+lA*lA^((4294901760&y)*y|0)+((65535&y)*y|0)}N[0]=x[0]+(x[7]<<16|x[7]>>>16)+(x[6]<<16|x[6]>>>16)|0,N[1]=x[1]+(x[0]<<8|x[0]>>>24)+x[7]|0,N[2]=x[2]+(x[1]<<16|x[1]>>>16)+(x[0]<<16|x[0]>>>16)|0,N[3]=x[3]+(x[2]<<8|x[2]>>>24)+x[1]|0,N[4]=x[4]+(x[3]<<16|x[3]>>>16)+(x[2]<<16|x[2]>>>16)|0,N[5]=x[5]+(x[4]<<8|x[4]>>>24)+x[3]|0,N[6]=x[6]+(x[5]<<16|x[5]>>>16)+(x[4]<<16|x[4]>>>16)|0,N[7]=x[7]+(x[6]<<8|x[6]>>>24)+x[5]|0}B.RabbitLegacy=Y._createHelper(U)}(),t.RabbitLegacy)},5567(q){"use strict";q.exports=Object.getOwnPropertyDescriptor},5643(q,D,g){"use strict";var t=Array.prototype.slice,B=g(6515),M=Object.keys,Y=M?function(c){return M(c)}:g(8461),V=Object.keys;Y.shim=function(){if(Object.keys){var c=function(){var x=Object.keys(arguments);return x&&x.length===arguments.length}(1,2);c||(Object.keys=function(U){return B(U)?V(t.call(U)):V(U)})}else Object.keys=Y;return Object.keys||Y},q.exports=Y},5691(q,D,g){"use strict";var t=g(783),B=t.Buffer;function M(V,d){for(var c in V)d[c]=V[c]}function Y(V,d,c){return B(V,d,c)}B.from&&B.alloc&&B.allocUnsafe&&B.allocUnsafeSlow?q.exports=t:(M(t,D),D.Buffer=Y),M(B,Y),Y.from=function(V,d,c){if("number"==typeof V)throw new TypeError("Argument must not be a number");return B(V,d,c)},Y.alloc=function(V,d,c){if("number"!=typeof V)throw new TypeError("Argument must be a number");var x=B(V);return void 0!==d?"string"==typeof c?x.fill(d,c):x.fill(d):x.fill(0),x},Y.allocUnsafe=function(V){if("number"!=typeof V)throw new TypeError("Argument must be a number");return B(V)},Y.allocUnsafeSlow=function(V){if("number"!=typeof V)throw new TypeError("Argument must be a number");return t.SlowBuffer(V)}},5719(q,D,g){"use strict";var t=g(5144),B=g(2333),M=g(8264);q.exports=t?function(Y,V,d){return B.f(Y,V,M(1,d))}:function(Y,V,d){return Y[V]=d,Y}},5846(q){"use strict";q.exports=Object},5874(q){"use strict";q.exports=Math.pow},5888(q,D,g){"use strict";var t=g(299),B=g(8681),M=/#|\.prototype\./,Y=function(U,E){var N=d[V(U)];return N===x||N!==c&&(B(E)?t(E):!!E)},V=Y.normalize=function(U){return String(U).replace(M,".").toLowerCase()},d=Y.data={},c=Y.NATIVE="N",x=Y.POLYFILL="P";q.exports=Y},5985(q,D,g){"use strict";var t=g(7139),B=g(8681),M=g(9877),Y=g(8300),V=Object;q.exports=Y?function(d){return"symbol"==typeof d}:function(d){var c=t("Symbol");return B(c)&&M(c.prototype,V(d))}},6016(q,D,g){"use strict";g(8376),g(6401),g(2017);const t=18===new Uint8Array(new Uint32Array([305419896]).buffer)[0],B=(V,d,c)=>{let x=V[d];V[d]=V[c],V[c]=x};q.exports={swap32LE:V=>{t&&(V=>{const d=V.length;for(let c=0;c>>2]>>>24-K%4*8&255))%256],_[y]=uA}this._i=this._j=0},_doProcessBlock:function(U,E){U[E]^=c.call(this)},keySize:8,ivSize:0});function c(){for(var U=this._S,E=this._i,N=this._j,_=0,Q=0;Q<4;Q++){var y=U[E=(E+1)%256];U[E]=U[N=(N+U[E])%256],U[N]=y,_|=U[(U[E]+U[N])%256]<<24-8*Q}return this._i=E,this._j=N,_}B.RC4=Y._createHelper(d);var x=V.RC4Drop=d.extend({cfg:d.cfg.extend({drop:192}),_doReset:function(){d._doReset.call(this);for(var U=this.cfg.drop;U>0;U--)c.call(this)}});B.RC4Drop=Y._createHelper(x)}(),t.RC4)},6092(q,D,g){var t=g(2736),B=g(2022);typeof B.pdfMake>"u"&&(B.pdfMake=t),q.exports=t},6094(q,D,g){"use strict";var t=g(3381);q.exports=function(M){return!!t(M)}},6174(q,D,g){"use strict";var t;q.exports=(t=g(6861),g(3144),function(B){var M=t,Y=M.lib,V=Y.WordArray,d=Y.Hasher,x=M.x64.Word,U=M.algo,E=[],N=[],_=[];!function(){for(var K=1,lA=0,uA=0;uA<24;uA++){E[K+5*lA]=(uA+1)*(uA+2)/2%64;var J=(2*K+3*lA)%5;K=lA%5,lA=J}for(K=0;K<5;K++)for(lA=0;lA<5;lA++)N[K+5*lA]=lA+(2*K+3*lA)%5*5;for(var rA=1,$=0;$<24;$++){for(var Z=0,b=0,BA=0;BA<7;BA++){if(1&rA){var L=(1<>>24)|4278255360&(rA<<24|rA>>>8),(Z=uA[J]).high^=$=16711935&($<<8|$>>>24)|4278255360&($<<24|$>>>8),Z.low^=rA}for(var b=0;b<24;b++){for(var BA=0;BA<5;BA++){for(var L=0,eA=0,UA=0;UA<5;UA++)L^=(Z=uA[BA+5*UA]).high,eA^=Z.low;var xA=Q[BA];xA.high=L,xA.low=eA}for(BA=0;BA<5;BA++){var QA=Q[(BA+4)%5],gA=Q[(BA+1)%5],JA=gA.high,Be=gA.low;for(L=QA.high^(JA<<1|Be>>>31),eA=QA.low^(Be<<1|JA>>>31),UA=0;UA<5;UA++)(Z=uA[BA+5*UA]).high^=L,Z.low^=eA}for(var KA=1;KA<25;KA++){var ae=(Z=uA[KA]).high,we=Z.low,ie=E[KA];ie<32?(L=ae<>>32-ie,eA=we<>>32-ie):(L=we<>>64-ie,eA=ae<>>64-ie);var kA=Q[N[KA]];kA.high=L,kA.low=eA}var CA=Q[0],iA=uA[0];for(CA.high=iA.high,CA.low=iA.low,BA=0;BA<5;BA++)for(UA=0;UA<5;UA++){var hA=Q[KA=BA+5*UA],bA=Q[(BA+1)%5+5*UA],ne=Q[(BA+2)%5+5*UA];(Z=uA[KA]).high=hA.high^~bA.high&ne.high,Z.low=hA.low^~bA.low&ne.low}var Z,$A=_[b];(Z=uA[0]).high^=$A.high,Z.low^=$A.low}},_doFinalize:function(){var K=this._data,lA=K.words,G=8*K.sigBytes,J=32*this.blockSize;lA[G>>>5]|=1<<24-G%32,lA[(B.ceil((G+1)/J)*J>>>5)-1]|=128,K.sigBytes=4*lA.length,this._process();for(var rA=this._state,$=this.cfg.outputLength/8,Z=$/8,b=[],BA=0;BA>>24)|4278255360&(eA<<24|eA>>>8),b.push(UA=16711935&(UA<<8|UA>>>24)|4278255360&(UA<<24|UA>>>8)),b.push(eA)}return new V.init(b,$)},clone:function(){for(var K=d.clone.call(this),lA=K._state=this._state.slice(0),uA=0;uA<25;uA++)lA[uA]=lA[uA].clone();return K}});M.SHA3=d._createHelper(y),M.HmacSHA3=d._createHmacHelper(y)}(Math),t.SHA3)},6228(q){"use strict";q.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},6255(q,D,g){"use strict";var t=g(8651),B=g(9295),M=g(8890)(),Y=g(8109),V=g(6785),d=t("%Math.floor%");q.exports=function(x,U){if("function"!=typeof x)throw new V("`fn` is not a function");if("number"!=typeof U||U<0||U>4294967295||d(U)!==U)throw new V("`length` must be a positive 32-bit integer");var E=arguments.length>2&&!!arguments[2],N=!0,_=!0;if("length"in x&&Y){var Q=Y(x,"length");Q&&!Q.configurable&&(N=!1),Q&&!Q.writable&&(_=!1)}return(N||_||!E)&&(M?B(x,"length",U,!0,!0):B(x,"length",U)),x}},6297(q){"use strict";q.exports=function(D){return null==D}},6341(q,D,g){"use strict";var t=g(1212),B=g(3297),M=t({}.hasOwnProperty);q.exports=Object.hasOwn||function(V,d){return M(B(V),d)}},6395(q){"use strict";q.exports=function(B,M){var Y,V,d,c,x,U,E,N,_,Q,y,K,lA,uA,G,J,rA,$,Z,b,BA,L,eA,UA,xA;UA=B.input,d=(V=B.next_in)+(B.avail_in-5),xA=B.output,x=(c=B.next_out)-(M-B.avail_out),U=c+(B.avail_out-257),E=(Y=B.state).dmax,N=Y.wsize,_=Y.whave,Q=Y.wnext,y=Y.window,K=Y.hold,lA=Y.bits,uA=Y.lencode,G=Y.distcode,J=(1<>>=Z=$>>>24,lA-=Z,0==(Z=$>>>16&255))xA[c++]=65535&$;else{if(!(16&Z)){if(64&Z){if(32&Z){Y.mode=12;break A}B.msg="invalid literal/length code",Y.mode=30;break A}$=uA[(65535&$)+(K&(1<>>=Z,lA-=Z),lA<15&&(K+=UA[V++]<>>=Z=$>>>24,lA-=Z,16&(Z=$>>>16&255)){if(BA=65535&$,lA<(Z&=15)&&(K+=UA[V++]<E){B.msg="invalid distance too far back",Y.mode=30;break A}if(K>>>=Z,lA-=Z,BA>(Z=c-x)){if((Z=BA-Z)>_&&Y.sane){B.msg="invalid distance too far back",Y.mode=30;break A}if(L=0,eA=y,0===Q){if(L+=N-Z,Z2;)xA[c++]=eA[L++],xA[c++]=eA[L++],xA[c++]=eA[L++],b-=3;b&&(xA[c++]=eA[L++],b>1&&(xA[c++]=eA[L++]))}else{L=c-BA;do{xA[c++]=xA[L++],xA[c++]=xA[L++],xA[c++]=xA[L++],b-=3}while(b>2);b&&(xA[c++]=xA[L++],b>1&&(xA[c++]=xA[L++]))}break}if(64&Z){B.msg="invalid distance code",Y.mode=30;break A}$=G[(65535&$)+(K&(1<>3)<<3))-1,B.next_in=V-=b,B.next_out=c,B.avail_in=V1?arguments[1]:void 0,1),J=d(uA);if(y)return B(N,this,J,G);var rA=this.length,$=Y(J),Z=0;if($+G>rA)throw new x("Wrong length");for(;Z<$;)this[G+Z]=J[Z++]},!y||K)},6465(q,D,g){function B(M){try{if(!g.g.localStorage)return!1}catch{return!1}var Y=g.g.localStorage[M];return null!=Y&&"true"===String(Y).toLowerCase()}q.exports=function t(M,Y){if(B("noDeprecation"))return M;var V=!1;return function d(){if(!V){if(B("throwDeprecation"))throw new Error(Y);B("traceDeprecation")?console.trace(Y):console.warn(Y),V=!0}return M.apply(this,arguments)}}},6515(q){"use strict";var D=Object.prototype.toString;q.exports=function(t){var B=D.call(t),M="[object Arguments]"===B;return M||(M="[object Array]"!==B&&null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Function]"===D.call(t.callee)),M}},6521(q,D,g){"use strict";var t=g(5643),B=g(2843)(),M=g(2774),Y=g(5846),V=M("Array.prototype.push"),d=M("Object.prototype.propertyIsEnumerable"),c=B?Y.getOwnPropertySymbols:null;q.exports=function(U,E){if(null==U)throw new TypeError("target must be an object");var N=Y(U);if(1===arguments.length)return N;for(var _=1;_0?x:0),!0)},B?B(q.exports,"apply",{value:Y}):q.exports.apply=Y},6626(q,D,g){"use strict";var t=g(2843);q.exports=function(){return t()&&!!Symbol.toStringTag}},6649(q){"use strict";var D=Object.defineProperty||!1;if(D)try{D({},"a",{value:1})}catch{D=!1}q.exports=D},6688(q,D,g){"use strict";var t=g(5049),B=g(6785),M=g(78),Y=g(7802);q.exports=function(d){if(d.length<1||"function"!=typeof d[0])throw new B("a function is required");return Y(t,M,d)}},6729(q,D,g){"use strict";var t=g(9964),B=g(783).Buffer,M=g(9760).Transform,Y=g(2908),V=g(7187),d=g(7801).ok,c=g(783).kMaxLength,x="Cannot create final Buffer. It would be larger than 0x"+c.toString(16)+" bytes";Y.Z_MIN_WINDOWBITS=8,Y.Z_MAX_WINDOWBITS=15,Y.Z_DEFAULT_WINDOWBITS=15,Y.Z_MIN_CHUNK=64,Y.Z_MAX_CHUNK=1/0,Y.Z_DEFAULT_CHUNK=16384,Y.Z_MIN_MEMLEVEL=1,Y.Z_MAX_MEMLEVEL=9,Y.Z_DEFAULT_MEMLEVEL=8,Y.Z_MIN_LEVEL=-1,Y.Z_MAX_LEVEL=9,Y.Z_DEFAULT_LEVEL=Y.Z_DEFAULT_COMPRESSION;for(var U=Object.keys(Y),E=0;E=c?CA=new RangeError(x):kA=B.concat(Be,KA),Be=[],QA.close(),JA(CA,kA)}QA.on("error",function we(kA){QA.removeListener("end",ie),QA.removeListener("readable",ae),JA(kA)}),QA.on("end",ie),QA.end(gA),ae()}function uA(QA,gA){if("string"==typeof gA&&(gA=B.from(gA)),!B.isBuffer(gA))throw new TypeError("Not a string or buffer");return QA._processChunk(gA,QA._finishFlushFlag)}function G(QA){if(!(this instanceof G))return new G(QA);eA.call(this,QA,Y.DEFLATE)}function J(QA){if(!(this instanceof J))return new J(QA);eA.call(this,QA,Y.INFLATE)}function rA(QA){if(!(this instanceof rA))return new rA(QA);eA.call(this,QA,Y.GZIP)}function $(QA){if(!(this instanceof $))return new $(QA);eA.call(this,QA,Y.GUNZIP)}function Z(QA){if(!(this instanceof Z))return new Z(QA);eA.call(this,QA,Y.DEFLATERAW)}function b(QA){if(!(this instanceof b))return new b(QA);eA.call(this,QA,Y.INFLATERAW)}function BA(QA){if(!(this instanceof BA))return new BA(QA);eA.call(this,QA,Y.UNZIP)}function L(QA){return QA===Y.Z_NO_FLUSH||QA===Y.Z_PARTIAL_FLUSH||QA===Y.Z_SYNC_FLUSH||QA===Y.Z_FULL_FLUSH||QA===Y.Z_FINISH||QA===Y.Z_BLOCK}function eA(QA,gA){var JA=this;if(this._opts=QA=QA||{},this._chunkSize=QA.chunkSize||D.Z_DEFAULT_CHUNK,M.call(this,QA),QA.flush&&!L(QA.flush))throw new Error("Invalid flush flag: "+QA.flush);if(QA.finishFlush&&!L(QA.finishFlush))throw new Error("Invalid flush flag: "+QA.finishFlush);if(this._flushFlag=QA.flush||Y.Z_NO_FLUSH,this._finishFlushFlag=typeof QA.finishFlush<"u"?QA.finishFlush:Y.Z_FINISH,QA.chunkSize&&(QA.chunkSizeD.Z_MAX_CHUNK))throw new Error("Invalid chunk size: "+QA.chunkSize);if(QA.windowBits&&(QA.windowBitsD.Z_MAX_WINDOWBITS))throw new Error("Invalid windowBits: "+QA.windowBits);if(QA.level&&(QA.levelD.Z_MAX_LEVEL))throw new Error("Invalid compression level: "+QA.level);if(QA.memLevel&&(QA.memLevelD.Z_MAX_MEMLEVEL))throw new Error("Invalid memLevel: "+QA.memLevel);if(QA.strategy&&QA.strategy!=D.Z_FILTERED&&QA.strategy!=D.Z_HUFFMAN_ONLY&&QA.strategy!=D.Z_RLE&&QA.strategy!=D.Z_FIXED&&QA.strategy!=D.Z_DEFAULT_STRATEGY)throw new Error("Invalid strategy: "+QA.strategy);if(QA.dictionary&&!B.isBuffer(QA.dictionary))throw new Error("Invalid dictionary: it should be a Buffer instance");this._handle=new Y.Zlib(gA);var Be=this;this._hadError=!1,this._handle.onerror=function(we,ie){UA(Be),Be._hadError=!0;var kA=new Error(we);kA.errno=ie,kA.code=D.codes[ie],Be.emit("error",kA)};var KA=D.Z_DEFAULT_COMPRESSION;"number"==typeof QA.level&&(KA=QA.level);var ae=D.Z_DEFAULT_STRATEGY;"number"==typeof QA.strategy&&(ae=QA.strategy),this._handle.init(QA.windowBits||D.Z_DEFAULT_WINDOWBITS,KA,QA.memLevel||D.Z_DEFAULT_MEMLEVEL,ae,QA.dictionary),this._buffer=B.allocUnsafe(this._chunkSize),this._offset=0,this._level=KA,this._strategy=ae,this.once("end",this.close),Object.defineProperty(this,"_closed",{get:function(){return!JA._handle},configurable:!0,enumerable:!0})}function UA(QA,gA){gA&&t.nextTick(gA),QA._handle&&(QA._handle.close(),QA._handle=null)}function xA(QA){QA.emit("close")}Object.defineProperty(D,"codes",{enumerable:!0,value:Object.freeze(_),writable:!1}),D.Deflate=G,D.Inflate=J,D.Gzip=rA,D.Gunzip=$,D.DeflateRaw=Z,D.InflateRaw=b,D.Unzip=BA,D.createDeflate=function(QA){return new G(QA)},D.createInflate=function(QA){return new J(QA)},D.createDeflateRaw=function(QA){return new Z(QA)},D.createInflateRaw=function(QA){return new b(QA)},D.createGzip=function(QA){return new rA(QA)},D.createGunzip=function(QA){return new $(QA)},D.createUnzip=function(QA){return new BA(QA)},D.deflate=function(QA,gA,JA){return"function"==typeof gA&&(JA=gA,gA={}),lA(new G(gA),QA,JA)},D.deflateSync=function(QA,gA){return uA(new G(gA),QA)},D.gzip=function(QA,gA,JA){return"function"==typeof gA&&(JA=gA,gA={}),lA(new rA(gA),QA,JA)},D.gzipSync=function(QA,gA){return uA(new rA(gA),QA)},D.deflateRaw=function(QA,gA,JA){return"function"==typeof gA&&(JA=gA,gA={}),lA(new Z(gA),QA,JA)},D.deflateRawSync=function(QA,gA){return uA(new Z(gA),QA)},D.unzip=function(QA,gA,JA){return"function"==typeof gA&&(JA=gA,gA={}),lA(new BA(gA),QA,JA)},D.unzipSync=function(QA,gA){return uA(new BA(gA),QA)},D.inflate=function(QA,gA,JA){return"function"==typeof gA&&(JA=gA,gA={}),lA(new J(gA),QA,JA)},D.inflateSync=function(QA,gA){return uA(new J(gA),QA)},D.gunzip=function(QA,gA,JA){return"function"==typeof gA&&(JA=gA,gA={}),lA(new $(gA),QA,JA)},D.gunzipSync=function(QA,gA){return uA(new $(gA),QA)},D.inflateRaw=function(QA,gA,JA){return"function"==typeof gA&&(JA=gA,gA={}),lA(new b(gA),QA,JA)},D.inflateRawSync=function(QA,gA){return uA(new b(gA),QA)},V.inherits(eA,M),eA.prototype.params=function(QA,gA,JA){if(QAD.Z_MAX_LEVEL)throw new RangeError("Invalid compression level: "+QA);if(gA!=D.Z_FILTERED&&gA!=D.Z_HUFFMAN_ONLY&&gA!=D.Z_RLE&&gA!=D.Z_FIXED&&gA!=D.Z_DEFAULT_STRATEGY)throw new TypeError("Invalid strategy: "+gA);if(this._level!==QA||this._strategy!==gA){var Be=this;this.flush(Y.Z_SYNC_FLUSH,function(){d(Be._handle,"zlib binding closed"),Be._handle.params(QA,gA),Be._hadError||(Be._level=QA,Be._strategy=gA,JA&&JA())})}else t.nextTick(JA)},eA.prototype.reset=function(){return d(this._handle,"zlib binding closed"),this._handle.reset()},eA.prototype._flush=function(QA){this._transform(B.alloc(0),"",QA)},eA.prototype.flush=function(QA,gA){var JA=this,Be=this._writableState;("function"==typeof QA||void 0===QA&&!gA)&&(gA=QA,QA=Y.Z_FULL_FLUSH),Be.ended?gA&&t.nextTick(gA):Be.ending?gA&&this.once("end",gA):Be.needDrain?gA&&this.once("drain",function(){return JA.flush(QA,gA)}):(this._flushFlag=QA,this.write(B.alloc(0),"",gA))},eA.prototype.close=function(QA){UA(this,QA),t.nextTick(xA,this)},eA.prototype._transform=function(QA,gA,JA){var Be,KA=this._writableState,we=(KA.ending||KA.ended)&&(!QA||KA.length===QA.length);return null===QA||B.isBuffer(QA)?this._handle?(we?Be=this._finishFlushFlag:(Be=this._flushFlag,QA.length>=KA.length&&(this._flushFlag=this._opts.flush||Y.Z_NO_FLUSH)),void this._processChunk(QA,Be,JA)):JA(new Error("zlib binding closed")):JA(new Error("invalid input"))},eA.prototype._processChunk=function(QA,gA,JA){var Be=QA&&QA.length,KA=this._chunkSize-this._offset,ae=0,we=this,ie="function"==typeof JA;if(!ie){var iA,kA=[],CA=0;this.on("error",function(EA){iA=EA}),d(this._handle,"zlib binding closed");do{var hA=this._handle.writeSync(gA,QA,ae,Be,this._buffer,this._offset,KA)}while(!this._hadError&&$A(hA[0],hA[1]));if(this._hadError)throw iA;if(CA>=c)throw UA(this),new RangeError(x);var bA=B.concat(kA,CA);return UA(this),bA}d(this._handle,"zlib binding closed");var ne=this._handle.write(gA,QA,ae,Be,this._buffer,this._offset,KA);function $A(EA,P){if(this&&(this.buffer=null,this.callback=null),!we._hadError){var cA=KA-P;if(d(cA>=0,"have should not go down"),cA>0){var w=we._buffer.slice(we._offset,we._offset+cA);we._offset+=cA,ie?we.push(w):(kA.push(w),CA+=w.length)}if((0===P||we._offset>=we._chunkSize)&&(KA=we._chunkSize,we._offset=0,we._buffer=B.allocUnsafe(we._chunkSize)),0===P){if(ae+=Be-EA,Be=EA,!ie)return!0;var H=we._handle.write(gA,QA,ae,Be,we._buffer,we._offset,we._chunkSize);return H.callback=$A,void(H.buffer=QA)}if(!ie)return!1;JA()}}ne.buffer=QA,ne.callback=$A},V.inherits(G,eA),V.inherits(J,eA),V.inherits(rA,eA),V.inherits($,eA),V.inherits(Z,eA),V.inherits(b,eA),V.inherits(BA,eA)},6781(q,D,g){"use strict";function t(te,sA){return function d(te){if(Array.isArray(te))return te}(te)||function V(te,sA){var T=null==te?null:typeof Symbol<"u"&&te[Symbol.iterator]||te["@@iterator"];if(null!=T){var v,u,m,R,pA=[],aA=!0,Me=!1;try{if(m=(T=T.call(te)).next,0===sA){if(Object(T)!==T)return;aA=!1}else for(;!(aA=(v=m.call(T)).done)&&(pA.push(v.value),pA.length!==sA);aA=!0);}catch(VA){Me=!0,u=VA}finally{try{if(!aA&&null!=T.return&&(R=T.return(),Object(R)!==R))return}finally{if(Me)throw u}}return pA}}(te,sA)||function M(te,sA){if(te){if("string"==typeof te)return Y(te,sA);var T=Object.prototype.toString.call(te).slice(8,-1);if("Object"===T&&te.constructor&&(T=te.constructor.name),"Map"===T||"Set"===T)return Array.from(te);if("Arguments"===T||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(T))return Y(te,sA)}}(te,sA)||function B(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Y(te,sA){(null==sA||sA>te.length)&&(sA=te.length);for(var T=0,v=new Array(sA);T10)return!0;for(var sA=0;sA57)return!0}return 10===te.length&&te>=Math.pow(2,32)}function we(te){return Object.keys(te).filter(ae).concat(_(te).filter(Object.prototype.propertyIsEnumerable.bind(te)))}function ie(te,sA){if(te===sA)return 0;for(var T=te.length,v=sA.length,u=0,m=Math.min(T,v);uV});var B=g(783).Buffer;const M=d=>(0===d.indexOf("/")&&(d=d.substring(1)),0===d.indexOf("/")&&(d=d.substring(1)),d),V=new class Y{constructor(){this.storage={}}existsSync(c){const x=M(c);return typeof this.storage[x]<"u"}readFileSync(c,x){const U=M(c),E="object"==typeof x?x.encoding:x;if(!this.existsSync(U))throw new Error(`File '${U}' not found in virtual file system`);const N=this.storage[U];return E?N.toString(E):N}writeFileSync(c,x,U){const E=M(c),N="object"==typeof U?U.encoding:U;if(!x&&!U)throw new Error("No content");this.storage[E]=N||"string"==typeof x?new B(x,N):x}}},6818(q,D,g){"use strict";var B,M,Y,V,d,x,t;q.exports=(t=g(6861),g(9663),g(8865),V=(M=(B=t).lib).WordArray,x=(d=B.algo).EvpKDF=(Y=M.Base).extend({cfg:Y.extend({keySize:4,hasher:d.MD5,iterations:1}),init:function(U){this.cfg=this.cfg.extend(U)},compute:function(U,E){for(var N,_=this.cfg,Q=_.hasher.create(),y=V.create(),K=y.words,lA=_.keySize,uA=_.iterations;K.length>>2]|=(rA[b>>>2]>>>24-b%4*8&255)<<24-($+b)%4*8;else for(var L=0;L>>2]=rA[L>>>2];return this.sigBytes+=Z,this},clamp:function(){var G=this.words,J=this.sigBytes;G[J>>>2]&=4294967295<<32-J%4*8,G.length=B.ceil(J/4)},clone:function(){var G=U.clone.call(this);return G.words=this.words.slice(0),G},random:function(G){for(var J=[],rA=0;rA>>2]>>>24-Z%4*8&255;$.push((b>>>4).toString(16)),$.push((15&b).toString(16))}return $.join("")},parse:function(G){for(var J=G.length,rA=[],$=0;$>>3]|=parseInt(G.substr($,2),16)<<24-$%8*4;return new E.init(rA,J/2)}},Q=N.Latin1={stringify:function(G){for(var J=G.words,rA=G.sigBytes,$=[],Z=0;Z>>2]>>>24-Z%4*8&255));return $.join("")},parse:function(G){for(var J=G.length,rA=[],$=0;$>>2]|=(255&G.charCodeAt($))<<24-$%4*8;return new E.init(rA,J)}},y=N.Utf8={stringify:function(G){try{return decodeURIComponent(escape(Q.stringify(G)))}catch{throw new Error("Malformed UTF-8 data")}},parse:function(G){return Q.parse(unescape(encodeURIComponent(G)))}},K=x.BufferedBlockAlgorithm=U.extend({reset:function(){this._data=new E.init,this._nDataBytes=0},_append:function(G){"string"==typeof G&&(G=y.parse(G)),this._data.concat(G),this._nDataBytes+=G.sigBytes},_process:function(G){var J,rA=this._data,$=rA.words,Z=rA.sigBytes,b=this.blockSize,L=Z/(4*b),eA=(L=G?B.ceil(L):B.max((0|L)-this._minBufferSize,0))*b,UA=B.min(4*eA,Z);if(eA){for(var xA=0;xA>>16&65535,d=0;0!==B;){B-=d=B>2e3?2e3:B;do{V=V+(Y=Y+t[M++]|0)|0}while(--d);Y%=65521,V%=65521}return Y|V<<16}},6921(q,D,g){"use strict";var _,Q,y,t=g(1194),B=g(7756),M=g(3598),Y=g(5719),V=g(6341),d=g(3793),c=g(7099),x=g(2993),U="Object already initialized",E=B.TypeError;if(t||d.state){var uA=d.state||(d.state=new(0,B.WeakMap));uA.get=uA.get,uA.has=uA.has,uA.set=uA.set,_=function(J,rA){if(uA.has(J))throw new E(U);return rA.facade=J,uA.set(J,rA),rA},Q=function(J){return uA.get(J)||{}},y=function(J){return uA.has(J)}}else{var G=c("state");x[G]=!0,_=function(J,rA){if(V(J,G))throw new E(U);return rA.facade=J,Y(J,G,rA),rA},Q=function(J){return V(J,G)?J[G]:{}},y=function(J){return V(J,G)}}q.exports={set:_,get:Q,has:y,enforce:function(J){return y(J)?Q(J):_(J,{})},getterFor:function(J){return function(rA){var $;if(!M(rA)||($=Q(rA)).type!==J)throw new E("Incompatible receiver, "+J+" required");return $}}}},7043(q,D){D.lookup=new Uint8Array([0,0,0,0,0,0,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,16,12,12,20,12,16,24,28,12,12,32,12,36,12,44,44,44,44,44,44,44,44,44,44,32,32,24,40,28,12,12,48,52,52,52,48,52,52,52,48,52,52,52,52,52,48,52,52,52,52,52,48,52,52,52,52,52,24,12,28,12,12,12,56,60,60,60,56,60,60,60,56,60,60,60,60,60,56,60,60,60,60,60,56,60,60,60,60,60,24,12,28,12,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,56,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]),D.lookupOffsets=new Uint16Array([1024,1536,1280,1536,0,256,768,512])},7051(q,D,g){"use strict";var t=g(6601),B=g(5421),M=g(2621),Y=g(1320),V=g(5074),d=t(Y(),Number);B(d,{getPolyfill:Y,implementation:M,shim:V}),q.exports=d},7099(q,D,g){"use strict";var t=g(997),B=g(6044),M=t("keys");q.exports=function(Y){return M[Y]||(M[Y]=B(Y))}},7106(q,D,g){"use strict";var t=g(6822),B=g(3766),M=g(9302);q.exports=t?function(V){return t(V)}:B?function(V){if(!V||"object"!=typeof V&&"function"!=typeof V)throw new TypeError("getProto: not an object");return B(V)}:M?function(V){return M(V)}:null},7133(q,D,g){"use strict";g.d(D,{default:()=>Zt});var t=g(1337),B=g(783).Buffer;const V=class Y extends t.A{constructor(s,p,z,AA,fA,FA){void 0===s&&(s={}),void 0===p&&(p={}),void 0===z&&(z={}),void 0===AA&&(AA={}),void 0===fA&&(fA={}),void 0===FA&&(FA=null),super(fA),this.fonts={},this.fontCache={};for(let HA in s)if(s.hasOwnProperty(HA)){let zA=s[HA];this.fonts[HA]={normal:zA.normal,bold:zA.bold,italics:zA.italics,bolditalics:zA.bolditalics}}this.patterns={};for(let HA in z)if(z.hasOwnProperty(HA)){let zA=z[HA];this.patterns[HA]=this.pattern(zA.boundingBox,zA.xStep,zA.yStep,zA.pattern,zA.colored)}this.images=p,this.attachments=AA,this.virtualfs=FA}getFontType(s,p){return((YA,s)=>{let p="normal";return YA&&s?p="bolditalics":YA?p="bold":s&&(p="italics"),p})(s,p)}getFontFile(s,p,z){let AA=this.getFontType(p,z);return this.fonts[s]&&this.fonts[s][AA]?this.fonts[s][AA]:null}provideFont(s,p,z){let AA=this.getFontType(p,z);if(null===this.getFontFile(s,p,z))throw new Error(`Font '${s}' in style '${AA}' is not defined in the font section of the document definition.`);if(this.fontCache[s]=this.fontCache[s]||{},!this.fontCache[s][AA]){let fA=this.fonts[s][AA];Array.isArray(fA)||(fA=[fA]),this.virtualfs&&this.virtualfs.existsSync(fA[0])&&(fA[0]=this.virtualfs.readFileSync(fA[0])),this.fontCache[s][AA]=this.font(...fA)._font}return this.fontCache[s][AA]}provideImage(s){const p=AA=>{let fA=this.images[AA];if(!fA)return AA;if(this.virtualfs&&this.virtualfs.existsSync(fA))return this.virtualfs.readFileSync(fA);let FA=fA.indexOf("base64,");return FA<0?this.images[AA]:B.from(fA.substring(FA+7),"base64")};if(this._imageRegistry[s])return this._imageRegistry[s];let z;try{if(z=this.openImage(p(s)),!z)throw new Error("No image")}catch(AA){throw new Error(`Invalid image: ${AA.toString()}\nImages dictionary should contain dataURL entries (or local file paths in node.js)`)}return z.embed(this),this._imageRegistry[s]=z,z}providePattern(s){return Array.isArray(s)&&2===s.length?[this.patterns[s[0]],s[1]]:null}provideAttachment(s){const p=AA=>{if(!AA)throw new Error("No attachment");if(!AA.src)throw new Error('The "src" key is required for attachments');return AA};if("object"==typeof s)return p(s);let z=p(this.attachments[s]);return this.virtualfs&&this.virtualfs.existsSync(z.src)?this.virtualfs.readFileSync(z.src):z}setOpenActionAsPrint(){let s=this.ref({Type:"Action",S:"Named",N:"Print"});this._root.data.OpenAction=s,s.end()}};function d(YA){return"string"==typeof YA||YA instanceof String}function c(YA){return("number"==typeof YA||YA instanceof Number)&&!Number.isNaN(YA)}function x(YA){return!(!c(YA)||!Number.isInteger(YA)||YA<=0)}function U(YA){return null!==YA&&!Array.isArray(YA)&&!d(YA)&&!c(YA)&&"object"==typeof YA}function E(YA){return U(YA)&&0===Object.keys(YA).length}function N(YA){return null!=YA}function _(YA,s){return"font"===YA?"font":s}function Q(YA){return JSON.stringify(YA,_)}function y(YA){if(YA.id)return YA.id;if(Array.isArray(YA.text))for(let s of YA.text){let p=y(s);if(p)return p}return null}var lA=g(783).Buffer;const uA=YA=>d(YA)?YA.replace(/\t/g," "):c(YA)||"boolean"==typeof YA?YA.toString():!N(YA)||E(YA)?"":YA,J=class G{preprocessDocument(s){return this.parentNode=null,this.tocs=[],this.nodeReferences=[],this.preprocessNode(s,!0)}preprocessBlock(s){return this.parentNode=null,this.tocs=[],this.nodeReferences=[],this.preprocessNode(s)}preprocessNode(s,p){if(void 0===p&&(p=!1),Array.isArray(s)?s={stack:s}:d(s)||c(s)||"boolean"==typeof s||!N(s)||E(s)?s={text:uA(s)}:"text"in s&&(s.text=uA(s.text)),s.section){if(!p)throw new Error(`Incorrect document structure, section node is only allowed at the root level of document structure: ${Q(s)}`);return this.preprocessSection(s)}if(s.columns)return this.preprocessColumns(s);if(s.stack)return this.preprocessVerticalContainer(s,p);if(s.ul)return this.preprocessList(s);if(s.ol)return this.preprocessList(s);if(s.table)return this.preprocessTable(s);if(void 0!==s.text)return this.preprocessText(s);if(s.toc)return this.preprocessToc(s);if(s.image)return this.preprocessImage(s);if(s.svg)return this.preprocessSVG(s);if(s.canvas)return this.preprocessCanvas(s);if(s.qr)return this.preprocessQr(s);if(s.attachment)return this.preprocessAttachment(s);if(s.pageReference||s.textReference)return this.preprocessText(s);throw new Error(`Unrecognized document structure: ${Q(s)}`)}preprocessSection(s){return s.section=this.preprocessNode(s.section),s}preprocessColumns(s){let p=s.columns;for(let z=0,AA=p.length;z{s.styleOverrides.push(p)}),s}push(s){this.styleOverrides.push(s)}pop(s){for(void 0===s&&(s=1);s-- >0;)this.styleOverrides.pop()}autopush(s){if(d(s)||typeof s.section<"u")return 0;let p=[];s.style&&(p=Array.isArray(s.style)?s.style:[s.style]);for(let z=0,AA=p.length;z0&&this.pop(z),AA}getProperty(s){if(this.styleOverrides)for(let p=this.styleOverrides.length-1;p>=0;p--){let z=this.styleOverrides[p];if(d(z)){let AA=this.styleDictionary[z];if(AA&&N(AA[s]))return AA[s]}else if(N(z[s]))return z[s]}return this.defaultStyle&&this.defaultStyle[s]}static getStyleProperty(s,p,z,AA){let fA;return N(s[z])?s[z]:p?(p.auto(s,()=>{fA=p.getProperty(z)}),N(fA)?fA:AA):AA}static copyStyle(s,p){void 0===s&&(s={}),void 0===p&&(p={});for(let z in s)"text"!=z&&s.hasOwnProperty(z)&&(p[z]=s[z]);return p}}const de=Ie,SA=function(YA,s,p){void 0===p&&(p=!1);let z=[];if(YA=null==YA?"":String(YA),s)return z.push({text:YA}),z;if(p)return YA.split("").map(HA=>HA.match(/^\n$|^\r$/)?{text:"",lineEnd:!0}:{text:HA});if(0===YA.length)return z.push({text:""}),z;let FA,AA=new Z(YA),fA=0;for(;FA=AA.nextBreak();){let HA=YA.slice(fA,FA.position);FA.required||HA.match(/\r?\n$|\r$/)?(HA=HA.replace(/\r?\n$|\r$/,""),z.push({text:HA,lineEnd:!0})):z.push({text:HA}),fA=FA.position}return z},ce=(YA,s)=>{let p=YA[0];if(void 0===p)return null;if(s){let z=SA(p.text,!1);if(void 0===z[0])return null;p=z[0]}return p.text},pe=(YA,s)=>{let p=YA[YA.length-1];if(void 0===p||p.lineEnd)return null;if(s){let z=SA(p.text,!1);if(void 0===z[z.length-1])return null;p=z[z.length-1]}return p.text},We=class st{getBreaks(s,p){let z=[];Array.isArray(s)||(s=[s]);let AA=null;for(let fA=0,FA=s.length;fAMath.max(0,De.width-De.leadingCut-De.trailingCut);let FA,AA=0,fA=0,HA=(YA=s,Array.isArray(YA)||(YA=[YA]),YA=function s(p){return p.reduce((z,AA)=>{let fA=Array.isArray(AA.text)?s(AA.text):AA,FA=[].concat(fA).some(Array.isArray);return z.concat(FA?s(fA):fA)},[])}(YA),YA),Qe=(new We).getBreaks(HA,p),he=this.measure(Qe,p);var YA;return he.forEach(De=>{AA=Math.max(AA,z(De)),FA||(FA={width:0,leadingCut:De.leadingCut,trailingCut:0}),FA.width+=De.width,FA.trailingCut=De.trailingCut,fA=Math.max(fA,z(FA)),De.lineEnd&&(FA=null)}),de.getStyleProperty({},p,"noWrap",!1)&&(AA=fA),{items:he,minWidth:AA,maxWidth:fA}}measure(s,p){if(s.length){let z=de.getStyleProperty(s[0],p,"leadingIndent",0);z&&(s[0].leadingCut=-z,s[0].leadingIndent=z)}return s.forEach(z=>{let AA=de.getStyleProperty(z,p,"font","Roboto"),fA=de.getStyleProperty(z,p,"bold",!1),FA=de.getStyleProperty(z,p,"italics",!1);z.font=this.pdfDocument.provideFont(AA,fA,FA),z.alignment=de.getStyleProperty(z,p,"alignment","left"),z.fontSize=de.getStyleProperty(z,p,"fontSize",12),z.fontFeatures=de.getStyleProperty(z,p,"fontFeatures",null),z.characterSpacing=de.getStyleProperty(z,p,"characterSpacing",0),z.color=de.getStyleProperty(z,p,"color","black"),z.decoration=de.getStyleProperty(z,p,"decoration",null),z.decorationColor=de.getStyleProperty(z,p,"decorationColor",null),z.decorationStyle=de.getStyleProperty(z,p,"decorationStyle",null),z.background=de.getStyleProperty(z,p,"background",null),z.link=de.getStyleProperty(z,p,"link",null),z.linkToPage=de.getStyleProperty(z,p,"linkToPage",null),z.linkToDestination=de.getStyleProperty(z,p,"linkToDestination",null),z.noWrap=de.getStyleProperty(z,p,"noWrap",null),z.opacity=de.getStyleProperty(z,p,"opacity",1),z.sup=de.getStyleProperty(z,p,"sup",!1),z.sub=de.getStyleProperty(z,p,"sub",!1),(z.sup||z.sub)&&(z.fontSize*=.58);let HA=de.getStyleProperty(z,p,"lineHeight",1);if(z.width=this.widthOfText(z.text,z),z.height=z.font.lineHeight(z.fontSize)*HA,z.leadingCut||(z.leadingCut=0),!de.getStyleProperty(z,p,"preserveLeadingSpaces",!1)){let he=z.text.match(Ze);he&&(z.leadingCut+=this.widthOfText(he[0],z))}if(z.trailingCut=0,!de.getStyleProperty(z,p,"preserveTrailingSpaces",!1)){let he=z.text.match(Ct);he&&(z.trailingCut=this.widthOfText(he[0],z))}},this),s}widthOfText(s,p){return p.font.widthOfString(s,p.fontSize,p.fontFeatures)+(p.characterSpacing||0)*(s.length-1)}sizeOfText(s,p){let z=de.getStyleProperty({},p,"font","Roboto"),AA=de.getStyleProperty({},p,"fontSize",12),fA=de.getStyleProperty({},p,"fontFeatures",null),FA=de.getStyleProperty({},p,"bold",!1),HA=de.getStyleProperty({},p,"italics",!1),zA=de.getStyleProperty({},p,"lineHeight",1),Qe=de.getStyleProperty({},p,"characterSpacing",0),he=this.pdfDocument.provideFont(z,FA,HA);return{width:this.widthOfText(s,{font:he,fontSize:AA,characterSpacing:Qe,fontFeatures:fA}),height:he.lineHeight(AA)*zA,fontSize:AA,lineHeight:zA,ascender:he.ascender/1e3*AA,descender:he.descender/1e3*AA}}sizeOfRotatedText(s,p,z){let AA=p*Math.PI/-180,fA=this.sizeOfText(s,z);return{width:Math.abs(fA.height*Math.sin(AA))+Math.abs(fA.width*Math.cos(AA)),height:Math.abs(fA.width*Math.sin(AA))+Math.abs(fA.height*Math.cos(AA))}}};function kt(YA){return"auto"===YA.width}function Jt(YA){return null==YA.width||"*"===YA.width||"star"===YA.width}const $e_buildColumnWidths=function zt(YA,s,p,z){void 0===p&&(p=0);let AA=[],fA=0,FA=0,HA=[],zA=0,Qe=0,he=[],De=s;YA.forEach(Te=>{kt(Te)?(AA.push(Te),fA+=Te._minWidth,FA+=Te._maxWidth):Jt(Te)?(HA.push(Te),zA=Math.max(zA,Te._minWidth),Qe=Math.max(Qe,Te._maxWidth)):he.push(Te)}),he.forEach((Te,Je)=>{if(d(Te.width)&&/\d+%/.test(Te.width)){let xe=0;if(z){const je=z._layout.paddingLeft(Je,z),At=z._layout.paddingRight(Je,z),ot=z._layout.vLineWidth(Je,z),on=z._layout.vLineWidth(Je+1,z);xe=0===Je?je+At+ot+on/2:Je===he.length-1?je+At+ot/2+on:je+At+ot/2+on/2}const be=De+p;Te.width=parseFloat(Te.width)*be/100-xe}Te._calcWidth=Te.width=s)AA.forEach(Te=>{Te._calcWidth=Te._minWidth}),HA.forEach(Te=>{Te._calcWidth=zA});else{if(Se{Te._calcWidth=Te._maxWidth,s-=Te._calcWidth});else{let Te=s-Ye,Je=Se-Ye;AA.forEach(xe=>{xe._calcWidth=xe._minWidth+(xe._maxWidth-xe._minWidth)*Te/Je,s-=xe._calcWidth})}if(HA.length>0){let Te=s/HA.length;HA.forEach(Je=>{Je._calcWidth=Te})}}},$e_measureMinMax=function nt(YA){let s={min:0,max:0},p={min:0,max:0},z=0;for(let AA=0,fA=YA.length;AA0,vLineWidth:YA=>0,paddingLeft:YA=>YA?4:0,paddingRight:(YA,s)=>YA0===YA||YA===s.table.body.length?0:YA===s.table.headerRows?2:0,vLineWidth:YA=>0,paddingLeft:YA=>0===YA?0:8,paddingRight:(YA,s)=>YA===s.table.widths.length-1?0:8},lightHorizontalLines:{hLineWidth:(YA,s)=>0===YA||YA===s.table.body.length?0:YA===s.table.headerRows?2:1,vLineWidth:YA=>0,hLineColor:YA=>1===YA?"black":"#aaa",paddingLeft:YA=>0===YA?0:8,paddingRight:(YA,s)=>YA===s.table.widths.length-1?0:8}},tt={hLineWidth:(YA,s)=>1,vLineWidth:(YA,s)=>1,hLineColor:(YA,s)=>"black",vLineColor:(YA,s)=>"black",hLineStyle:(YA,s)=>null,vLineStyle:(YA,s)=>null,paddingLeft:(YA,s)=>4,paddingRight:(YA,s)=>4,paddingTop:(YA,s)=>2,paddingBottom:(YA,s)=>2,fillColor:(YA,s)=>null,fillOpacity:(YA,s)=>1,defaultBorder:!0};function Ut(){let YA={};for(let s=0,p=arguments.length;sJSON.parse(JSON.stringify(YA))}for(var Cn=[null,[[10,7,17,13],[1,1,1,1],[]],[[16,10,28,22],[1,1,1,1],[4,16]],[[26,15,22,18],[1,1,2,2],[4,20]],[[18,20,16,26],[2,1,4,2],[4,24]],[[24,26,22,18],[2,1,4,4],[4,28]],[[16,18,28,24],[4,2,4,4],[4,32]],[[18,20,26,18],[4,2,5,6],[4,20,36]],[[22,24,26,22],[4,2,6,6],[4,22,40]],[[22,30,24,20],[5,2,8,8],[4,24,44]],[[26,18,28,24],[5,4,8,8],[4,26,48]],[[30,20,24,28],[5,4,11,8],[4,28,52]],[[22,24,28,26],[8,4,11,10],[4,30,56]],[[22,26,22,24],[9,4,16,12],[4,32,60]],[[24,30,24,20],[9,4,16,16],[4,24,44,64]],[[24,22,24,30],[10,6,18,12],[4,24,46,68]],[[28,24,30,24],[10,6,16,17],[4,24,48,72]],[[28,28,28,28],[11,6,19,16],[4,28,52,76]],[[26,30,28,28],[13,6,21,18],[4,28,54,80]],[[26,28,26,26],[14,7,25,21],[4,28,56,84]],[[26,28,28,30],[16,8,25,20],[4,32,60,88]],[[26,28,30,28],[17,8,25,23],[4,26,48,70,92]],[[28,28,24,30],[17,9,34,23],[4,24,48,72,96]],[[28,30,30,30],[18,9,30,25],[4,28,52,76,100]],[[28,30,30,30],[20,10,32,27],[4,26,52,78,104]],[[28,26,30,30],[21,12,35,29],[4,30,56,82,108]],[[28,28,30,28],[23,12,37,34],[4,28,56,84,112]],[[28,30,30,30],[25,12,40,34],[4,32,60,88,116]],[[28,30,30,30],[26,13,42,35],[4,24,48,72,96,120]],[[28,30,30,30],[28,14,45,38],[4,28,52,76,100,124]],[[28,30,30,30],[29,15,48,40],[4,24,50,76,102,128]],[[28,30,30,30],[31,16,51,43],[4,28,54,80,106,132]],[[28,30,30,30],[33,17,54,45],[4,32,58,84,110,136]],[[28,30,30,30],[35,18,57,48],[4,28,56,84,112,140]],[[28,30,30,30],[37,19,60,51],[4,32,60,88,116,144]],[[28,30,30,30],[38,19,63,53],[4,28,52,76,100,124,148]],[[28,30,30,30],[40,20,66,56],[4,22,48,74,100,126,152]],[[28,30,30,30],[43,21,70,59],[4,26,52,78,104,130,156]],[[28,30,30,30],[45,22,74,62],[4,30,56,82,108,134,160]],[[28,30,30,30],[47,24,77,65],[4,24,52,80,108,136,164]],[[28,30,30,30],[49,25,81,68],[4,28,56,84,112,140,168]]],yA=/^\d*$/,DA=/^[A-Za-z0-9 $%*+\-./:]*$/,mA=/^[A-Z0-9 $%*+\-./:]*$/,GA=[],ee=[-1],qA=0,Fe=1;qA<255;++qA)GA.push(Fe),ee[Fe]=qA,Fe=2*Fe^(Fe>=128?285:0);var Le=[[]];for(qA=0;qA<30;++qA){for(var et=Le[qA],ct=[],ze=0;ze<=qA;++ze)ct.push(ee[(ze6},ut=function(YA,s){var p=-8&function(YA){var s=Cn[YA],p=16*YA*YA+128*YA+64;return Ft(YA)&&(p-=36),s[2].length&&(p-=25*s[2].length*s[2].length-10*s[2].length-55),p}(YA),z=Cn[YA];return p-8*z[0][s]*z[1][s]},pt=function(YA,s){switch(s){case 1:return YA<10?10:YA<27?12:14;case 2:return YA<10?9:YA<27?11:13;case 4:return YA<10?8:16;case 8:return YA<10?8:YA<27?10:12}},Mn=function(YA,s,p){var z=ut(YA,p)-4-pt(YA,s);switch(s){case 1:return 3*(z/10|0)+(z%10<4?0:z%10<7?1:2);case 2:return 2*(z/11|0)+(z%11<6?0:1);case 4:return z/8|0;case 8:return z/13|0}},Vt=function(YA,s){for(var p=YA.slice(0),z=YA.length,AA=s.length,fA=0;fA=0)for(var HA=0;HA=0;--fA)AA>>z+fA&1&&(AA^=p<>FA&1;return YA},zn=function(YA){for(var fA=function(xe){for(var be=0,je=0;je=5&&(be+=xe[je]-5+3);for(je=5;je=4*At||xe[je+1]>=4*At)&&(be+=40)}return be},FA=YA.length,HA=0,zA=0,Qe=0;Qe>6,128|63&AA):AA<65536?p.push(224|AA>>12,128|AA>>6&63,128|63&AA):p.push(240|AA>>18,128|AA>>12&63,128|AA>>6&63,128|63&AA)}return p}return s}}(FA,YA),null===YA)throw"invalid data format";if(fA<0||fA>3)throw"invalid ECC level";if(AA<0){for(AA=1;AA<=40&&!(YA.length<=Mn(AA,FA,fA));++AA);if(AA>40)throw"too large data for the Qr format"}else if(AA<1||AA>40)throw"invalid Qr version! should be between 1 and 40";if(-1!=HA&&(HA<0||HA>8))throw"invalid mask";return function(YA,s,p,z,AA){var fA=Cn[s],FA=function(YA,s,p,z){var AA=[],fA=0,FA=8,HA=p.length,zA=function(De,Ye){if(Ye>=FA){for(AA.push(fA|De>>(Ye-=FA));Ye>=8;)AA.push(De>>(Ye-=8)&255);fA=0,FA=8}Ye>0&&(fA|=(De&(1<>3);FA=function(YA,s,p){for(var z=[],AA=YA.length/s|0,fA=0,FA=s-YA.length%s,HA=0;HA>ot&1,AA[Te+At][Je+ot]=1};for(FA(0,0,9,9,[127,65,93,93,93,65,383,0,64]),FA(p-8,0,8,9,[256,127,65,93,93,93,65,127]),FA(0,p-8,9,8,[254,130,186,186,186,130,254,0,0]),fA=9;fA>Se++&1,AA[fA][p-11+De]=AA[p-11+De][fA]=1}return{matrix:z,reserved:AA}}(s),zA=HA.matrix,Qe=HA.reserved;if(function(YA,s,p){for(var z=YA.length,AA=0,fA=-1,FA=z-1;FA>=0;FA-=2){6==FA&&--FA;for(var HA=fA<0?z-1:0,zA=0;zAFA-2;--Qe)s[HA][Qe]||(YA[HA][Qe]=p[AA>>3]>>(7&~AA)&1,++AA);HA+=fA}fA=-fA}}(zA,Qe,FA),AA<0){Tn(zA,Qe,0),Xt(zA,0,z,0);var he=0,De=zn(zA);for(Tn(zA,Qe,0),AA=1;AA<8;++AA){Tn(zA,Qe,AA),Xt(zA,0,z,AA);var Ye=zn(zA);De>Ye&&(De=Ye,he=AA),Tn(zA,Qe,AA)}AA=he}return Tn(zA,Qe,AA),Xt(zA,0,z,AA),zA}(YA,AA,FA,fA,HA)}const Ii_measure=function $n(YA){var s=function Rn(YA,s){var p=[],z=s.background||"#fff",AA=s.foreground||"#000",fA=s.padding||0,FA=jn(YA,s),HA=FA.length,zA=Math.floor(s.fit?s.fit/HA:5),Qe=HA*zA+zA*fA*2,he=zA*fA;p.push({type:"rect",x:0,y:0,w:Qe,h:Qe,lineWidth:0,color:z});for(var De=0;De{if(s._margin=function K(YA,s){function p(FA,HA){return FA.marginLeft||FA.marginTop||FA.marginRight||FA.marginBottom?[FA.marginLeft||HA[0]||0,FA.marginTop||HA[1]||0,FA.marginRight||HA[2]||0,FA.marginBottom||HA[3]||0]:HA}function AA(FA){return c(FA)?FA=[FA,FA,FA,FA]:Array.isArray(FA)&&2===FA.length&&(FA=[FA[0],FA[1],FA[0],FA[1]]),FA}let fA=[void 0,void 0,void 0,void 0];if(YA.style){let HA=function z(FA,HA){let zA={};for(let Qe=FA.length-1;Qe>=0;Qe--){let De=HA.styleDictionary[FA[Qe]];for(let Ye in De)De.hasOwnProperty(Ye)&&(zA[Ye]=De[Ye])}return zA}(Array.isArray(YA.style)?YA.style:[YA.style],s);HA&&(fA=p(HA,fA)),HA.margin&&(fA=AA(HA.margin))}return fA=p(YA,fA),YA.margin&&(fA=AA(YA.margin)),void 0===fA[0]&&void 0===fA[1]&&void 0===fA[2]&&void 0===fA[3]?null:fA}(s,this.styleStack),s.section)return p(this.measureSection(s));if(s.columns)return p(this.measureColumns(s));if(s.stack)return p(this.measureVerticalContainer(s));if(s.ul)return p(this.measureUnorderedList(s));if(s.ol)return p(this.measureOrderedList(s));if(s.table)return p(this.measureTable(s));if(void 0!==s.text)return p(this.measureLeaf(s));if(s.toc)return p(this.measureToc(s));if(s.image)return p(this.measureImage(s));if(s.svg)return p(this.measureSVG(s));if(s.canvas)return p(this.measureCanvas(s));if(s.qr)return p(this.measureQr(s));if(s.attachment)return p(this.measureAttachment(s));throw new Error(`Unrecognized document structure: ${Q(s)}`)});function p(z){let AA=z._margin;return AA&&(z._minWidth+=AA[0]+AA[2],z._maxWidth+=AA[0]+AA[2]),z}}measureImageWithDimensions(s,p){if(s.fit){let z=p.width/p.height>s.fit[0]/s.fit[1]?s.fit[0]/p.width:s.fit[1]/p.height;s._width=s._minWidth=s._maxWidth=p.width*z,s._height=p.height*z}else if(s.cover)s._width=s._minWidth=s._maxWidth=s.cover.width,s._height=s._minHeight=s._maxHeight=s.cover.height;else{let z=p.width/p.height;s._width=s._minWidth=s._maxWidth=s.width||(s.height?s.height*z:p.width),s._height=s.height||(s.width?s.width/z:p.height),c(s.maxWidth)&&s.maxWidths._width&&(s._width=s._minWidth=s._maxWidth=s.minWidth,s._height=s._width*p.height/p.width),c(s.minHeight)&&s.minHeight>s._height&&(s._height=s.minHeight,s._width=s._minWidth=s._maxWidth=s._height*p.width/p.height)}s._alignment=this.styleStack.getProperty("alignment")}convertIfBase64Image(s){if(/^data:image\/(jpeg|jpg|png);base64,/.test(s.image)){let p="$$pdfmake$$"+this.autoImageIndex++;this.pdfDocument.images[p]=s.image,s.image=p}}measureImage(s){this.convertIfBase64Image(s);let p=this.pdfDocument.provideImage(s.image),z={width:p.width,height:p.height};return p.orientation>4&&(z={width:p.height,height:p.width}),this.measureImageWithDimensions(s,z),s}measureSVG(s){let p=this.svgMeasure.measureSVG(s.svg);if(this.measureImageWithDimensions(s,p),s.font=this.styleStack.getProperty("font"),!c(s._width)&&!c(s._height))throw new Error("SVG is missing defined width and height.");if(!c(s._width))throw new Error("SVG is missing defined width.");if(!c(s._height))throw new Error("SVG is missing defined height.");return s.svg=this.svgMeasure.writeDimensions(s.svg,{width:s._width,height:s._height}),s}measureLeaf(s){s._textRef&&s._textRef._textNodeRef.text&&(s.text=s._textRef._textNodeRef.text);let p=this.styleStack.clone();p.push(s);let z=this.textInlines.buildInlines(s.text,p);return s._inlines=z.items,s._minWidth=z.minWidth,s._maxWidth=z.maxWidth,s}measureToc(s){if(s.toc.title&&(s.toc.title=this.measureNode(s.toc.title)),s.toc._items.length>0){let p=[],z=s.toc.textStyle||{},AA=s.toc.numberStyle||z,fA=s.toc.textMargin||[0,0,0,0];for(let FA=0,HA=s.toc._items.length;FA=26?Se((Te/26|0)-1):"")+"abcdefghijklmnopqrstuvwxyz"[Te%26|0]}(Ye-1)}function HA(Ye){if(Ye<1||Ye>4999)return Ye.toString();let Se=Ye,Te={M:1e3,CM:900,D:500,CD:400,C:100,XC:90,L:50,XL:40,X:10,IX:9,V:5,IV:4,I:1},Je="";for(let xe in Te)for(;Se>=Te[xe];)Je+=xe,Se-=Te[xe];return Je}let Qe;switch(AA){case"none":Qe=null;break;case"upper-alpha":Qe=FA(p).toUpperCase();break;case"lower-alpha":Qe=FA(p);break;case"upper-roman":Qe=HA(p);break;case"lower-roman":Qe=HA(p).toLowerCase();break;default:Qe=function zA(Ye){return Ye.toString()}(p)}if(null===Qe)return{};fA&&(Array.isArray(fA)?(fA[0]&&(Qe=fA[0]+Qe),fA[1]&&(Qe+=fA[1]),Qe+=" "):Qe+=`${fA} `);let he=de.getStyleProperty(s,z,"markerColor",void 0)||z.getProperty("color")||"black";return{_inlines:this.textInlines.buildInlines({text:Qe,color:he},z).items}}measureUnorderedList(s){let p=this.styleStack.clone(),z=s.ul;s.type=s.type||"disc",s._gapSize=this.gapSizeForList(),s._minWidth=0,s._maxWidth=0;for(let AA=0,fA=z.length;AA0?p.length-1:0;return s._minWidth=z.min+s._gap*AA,s._maxWidth=z.max+s._gap*AA,s}measureTable(s){(function Je(xe){if(xe.table.widths||(xe.table.widths="auto"),d(xe.table.widths))for(xe.table.widths=[xe.table.widths];xe.table.widths.length1?(Se(be,z,je.colSpan),p.push({col:z,span:je.colSpan,minWidth:je._minWidth,maxWidth:je._maxWidth})):(xe._minWidth=Math.max(xe._minWidth,je._minWidth),xe._maxWidth=Math.max(xe._maxWidth,je._maxWidth))),je.rowSpan&&je.rowSpan>1&&Te(s.table,AA,z,je.rowSpan)}}!function De(){let xe,be;for(let je=0,At=p.length;je0)for(xe=qt/ot.span,be=0;be0)for(xe=kn/ot.span,be=0;be(U(be)&&(be.fillColor=xe.styleStack.getProperty("fillColor"),be.fillOpacity=xe.styleStack.getProperty("fillOpacity")),xe.measureNode(be))}function Ye(xe,be,je){let At={minWidth:0,maxWidth:0};for(let ot=0;ots.page?YA:s.page>YA.page?s:YA.y>s.y?YA:s,{page:p.page,x:p.x,y:p.y,availableHeight:p.availableHeight,availableWidth:p.availableWidth}}(this,s.bottomMost)}markEnding(s,p,z){this.page=s._columnEndingContext.page,this.x=s._columnEndingContext.x+p,this.y=s._columnEndingContext.y-z,this.availableWidth=s._columnEndingContext.availableWidth,this.availableHeight=s._columnEndingContext.availableHeight,this.lastColumnWidth=s._columnEndingContext.lastColumnWidth}saveContextInEndingCell(s){s._columnEndingContext={page:this.page,x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,lastColumnWidth:this.lastColumnWidth}}completeColumnGroup(s,p){let z=this.snapshots.pop();this.calculateBottomMost(z,p),this.x=z.x;let AA=z.bottomMost.y;return s&&(z.page===z.bottomMost.page?z.y+s>AA&&(AA=z.y+s):AA+=s),this.y=AA,this.page=z.bottomMost.page,this.availableWidth=z.availableWidth,this.availableHeight=z.bottomMost.availableHeight,s&&(this.availableHeight-=AA-z.bottomMost.y),this.lastColumnWidth=z.lastColumnWidth,z.bottomByPage}addMargin(s,p){this.x+=s,this.availableWidth-=s+(p||0)}moveDown(s){return this.y+=s,this.availableHeight-=s,this.availableHeight>0}initializePage(){this.y=this.pageMargins.top,this.availableHeight=this.getCurrentPage().pageSize.height-this.pageMargins.top-this.pageMargins.bottom;const{pageCtx:s,isSnapshot:p}=this.pageSnapshot();s.availableWidth=this.getCurrentPage().pageSize.width-this.pageMargins.left-this.pageMargins.right,p&&this.marginXTopParent&&(s.availableWidth-=this.marginXTopParent[0],s.availableWidth-=this.marginXTopParent[1])}pageSnapshot(){return this.snapshots[0]?{pageCtx:this.snapshots[0],isSnapshot:!0}:{pageCtx:this,isSnapshot:!1}}moveTo(s,p){null!=s&&(this.x=s,this.availableWidth=this.getCurrentPage().pageSize.width-this.x-this.pageMargins.right),null!=p&&(this.y=p,this.availableHeight=this.getCurrentPage().pageSize.height-this.y-this.pageMargins.bottom)}moveToRelative(s,p){null!=s&&(this.x=this.x+s),null!=p&&(this.y=this.y+p)}beginDetachedBlock(){this.snapshots.push({x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,page:this.page,lastColumnWidth:this.lastColumnWidth})}endDetachedBlock(){let s=this.snapshots.pop();this.x=s.x,this.y=s.y,this.availableWidth=s.availableWidth,this.availableHeight=s.availableHeight,this.page=s.page,this.lastColumnWidth=s.lastColumnWidth}moveToNextPage(s){let p=this.page+1,z=this.page,AA=this.y;if(this.snapshots.length>0){let FA=this.snapshots[this.snapshots.length-1];FA.bottomMost&&FA.bottomMost.y&&(AA=Math.max(this.y,FA.bottomMost.y))}let fA=p>=this.pages.length;if(fA){let FA=this.availableWidth,HA=this.getCurrentPage().pageSize.orientation,zA=((YA,s)=>(s=function _n(YA,s){return void 0===YA?s:d(YA)&&"landscape"===YA.toLowerCase()?"landscape":"portrait"}(s,YA.pageSize.orientation),s!==YA.pageSize.orientation?{orientation:s,width:YA.pageSize.height,height:YA.pageSize.width}:{orientation:YA.pageSize.orientation,width:YA.pageSize.width,height:YA.pageSize.height}))(this.getCurrentPage(),s);this.addPage(zA,null,this.getCurrentPage().customProperties),HA===zA.orientation&&(this.availableWidth=FA)}else this.page=p,this.initializePage();return{newPageCreated:fA,prevPage:z,prevY:AA,y:this.y}}addPage(s,p,z){void 0===p&&(p=null),void 0===z&&(z={}),null!==p&&(this.pageMargins=p,this.x=p.left,this.availableWidth=s.width-p.left-p.right);let AA={items:[],pageSize:s,pageMargins:this.pageMargins,customProperties:z};return this.pages.push(AA),this.backgroundLength.push(0),this.page=this.pages.length-1,this.initializePage(),this.emit("pageAdded",AA),AA}getCurrentPage(){return this.page<0||this.page>=this.pages.length?null:this.pages[this.page]}getCurrentPosition(){let s=this.getCurrentPage().pageSize,p=s.height-this.pageMargins.top-this.pageMargins.bottom,z=s.width-this.pageMargins.left-this.pageMargins.right;return{pageNumber:this.page+1,pageOrientation:s.orientation,pageInnerHeight:p,pageInnerWidth:z,left:this.x,top:this.y,verticalRatio:(this.y-this.pageMargins.top)/p,horizontalRatio:(this.x-this.pageMargins.left)/z}}};function Zn(YA,s,p){null==p||p<0||p>YA.items.length?YA.items.push(s):YA.items.splice(p,0,s)}const si=class Hi extends wi.EventEmitter{constructor(s){super(),this._context=s,this.contextStack=[]}context(){return this._context}addLine(s,p,z){let AA=s.getHeight(),fA=this.context(),FA=fA.getCurrentPage(),HA=this.getCurrentPositionOnPage();return!(fA.availableHeight0&&s.inlines[0].alignment,fA=0;switch(AA){case"right":fA=p-z;break;case"center":fA=(p-z)/2}if(fA&&(s.x=(s.x||0)+fA),"justify"===AA&&!s.newLineForced&&!s.lastLineInParagraph&&s.inlines.length>1){let FA=(p-z)/(s.inlines.length-1);for(let HA=1,zA=s.inlines.length;HA0)&&(void 0===s._x&&(s._x=s.x||0),s.x=z.x+s._x,s.y=z.y,this.alignImage(s),Zn(AA,{type:"image",item:s},p),z.moveDown(s._height),fA)}addCanvas(s,p){let z=this.context(),AA=z.getCurrentPage(),fA=[],FA=s._minHeight;return!(!AA||void 0===s.absolutePosition&&z.availableHeight0)&&(void 0===s._x&&(s._x=s.x||0),s.x=z.x+s._x,s.y=z.y,this.alignImage(s),Zn(AA,{type:"svg",item:s},p),z.moveDown(s._height),fA)}addQr(s,p){let z=this.context(),AA=z.getCurrentPage(),fA=this.getCurrentPositionOnPage();if(!AA||void 0===s.absolutePosition&&z.availableHeight0)&&(void 0===s._x&&(s._x=s.x||0),s.x=z.x+s._x,s.y=z.y,Zn(AA,{type:"attachment",item:s},p),z.moveDown(s._height),fA)}alignImage(s){let p=this.context().availableWidth,z=s._minWidth,AA=0;switch(s._alignment){case"right":AA=p-z;break;case"center":AA=(p-z)/2}AA&&(s.x=(s.x||0)+AA)}alignCanvas(s){let p=this.context().availableWidth,z=s._minWidth,AA=0;switch(s._alignment){case"right":AA=p-z;break;case"center":AA=(p-z)/2}AA&&s.canvas.forEach(fA=>{Gt(fA,AA,0)})}addVector(s,p,z,AA,fA){let FA=this.context(),HA=FA.getCurrentPage();c(fA)&&(HA=FA.pages[fA]);let zA=this.getCurrentPositionOnPage();if(HA)return Gt(s,p?0:FA.x,z?0:FA.y),Zn(HA,{type:"vector",item:s},AA),zA}beginClip(s,p){let z=this.context();return z.getCurrentPage().items.push({type:"beginClip",item:{x:z.x,y:z.y,width:s,height:p}}),!0}endClip(){return this.context().getCurrentPage().items.push({type:"endClip"}),!0}addFragment(s,p,z,AA){let fA=this.context(),FA=fA.getCurrentPage();return!(!p&&s.height>fA.availableHeight||(s.items.forEach(HA=>{switch(HA.type){case"line":var zA=HA.item.clone();zA._node&&(zA._node.positions[0].pageNumber=fA.page+1),zA.x=(zA.x||0)+(p?s.xOffset||0:fA.x),zA.y=(zA.y||0)+(z?s.yOffset||0:fA.y),FA.items.push({type:"line",item:zA});break;case"vector":var Qe=Ut(HA.item);Gt(Qe,p?s.xOffset||0:fA.x,z?s.yOffset||0:fA.y),Qe._isFillColorFromUnbreakable?(delete Qe._isFillColorFromUnbreakable,FA.items.splice(fA.backgroundLength[fA.page],0,{type:"vector",item:Qe})):FA.items.push({type:"vector",item:Qe});break;case"image":case"svg":var he=Ut(HA.item);he.x=(he.x||0)+(p?s.xOffset||0:fA.x),he.y=(he.y||0)+(z?s.yOffset||0:fA.y),FA.items.push({type:HA.type,item:he})}}),AA||fA.moveDown(s.height),0))}pushContext(s,p){if(void 0===s&&(p=this.context().getCurrentPage().height-this.context().pageMargins.top-this.context().pageMargins.bottom,s=this.context().availableWidth),c(s)){let z=s;(s=new ki).addPage({width:z,height:p},{left:0,right:0,top:0,bottom:0})}this.contextStack.push(this.context()),this._context=s}popContext(){this._context=this.contextStack.pop()}getCurrentPositionOnPage(){return(this.contextStack[0]||this.context()).getCurrentPosition()}},ws={"4A0":[4767.87,6740.79],"2A0":[3370.39,4767.87],A0:[2383.94,3370.39],A1:[1683.78,2383.94],A2:[1190.55,1683.78],A3:[841.89,1190.55],A4:[595.28,841.89],A5:[419.53,595.28],A6:[297.64,419.53],A7:[209.76,297.64],A8:[147.4,209.76],A9:[104.88,147.4],A10:[73.7,104.88],B0:[2834.65,4008.19],B1:[2004.09,2834.65],B2:[1417.32,2004.09],B3:[1000.63,1417.32],B4:[708.66,1000.63],B5:[498.9,708.66],B6:[354.33,498.9],B7:[249.45,354.33],B8:[175.75,249.45],B9:[124.72,175.75],B10:[87.87,124.72],C0:[2599.37,3676.54],C1:[1836.85,2599.37],C2:[1298.27,1836.85],C3:[918.43,1298.27],C4:[649.13,918.43],C5:[459.21,649.13],C6:[323.15,459.21],C7:[229.61,323.15],C8:[161.57,229.61],C9:[113.39,161.57],C10:[79.37,113.39],RA0:[2437.8,3458.27],RA1:[1729.13,2437.8],RA2:[1218.9,1729.13],RA3:[864.57,1218.9],RA4:[609.45,864.57],SRA0:[2551.18,3628.35],SRA1:[1814.17,2551.18],SRA2:[1275.59,1814.17],SRA3:[907.09,1275.59],SRA4:[637.8,907.09],EXECUTIVE:[521.86,756],FOLIO:[612,936],LEGAL:[612,1008],LETTER:[612,792],TABLOID:[792,1224]};function $i(YA,s){YA&&"auto"===YA.height&&(YA.height=1/0);let AA=function z(fA){if(d(fA)){let FA=ws[fA.toUpperCase()];if(!FA)throw new Error(`Page size ${fA} not recognized`);return{width:FA[0],height:FA[1]}}return fA}(YA||"A4");return function p(fA){return!!d(fA)&&("portrait"===(fA=fA.toLowerCase())&&AA.width>AA.height||"landscape"===fA&&AA.widthAA.height?"landscape":"portrait",AA}function Yi(YA){if(c(YA))YA={left:YA,right:YA,top:YA,bottom:YA};else if(Array.isArray(YA))if(2===YA.length)YA={left:YA[0],top:YA[1],right:YA[0],bottom:YA[1]};else{if(4!==YA.length)throw new Error("Invalid pageMargins definition");YA={left:YA[0],top:YA[1],right:YA[2],bottom:YA[3]}}return YA}const Cs=class vi extends si{constructor(s){super(s),this.transactionLevel=0,this.repeatables=[]}addLine(s,p,z){return this._fitOnPage(()=>super.addLine(s,p,z))}addImage(s,p){return this._fitOnPage(()=>super.addImage(s,p))}addCanvas(s,p){return this._fitOnPage(()=>super.addCanvas(s,p))}addSVG(s,p){return this._fitOnPage(()=>super.addSVG(s,p))}addQr(s,p){return this._fitOnPage(()=>super.addQr(s,p))}addAttachment(s,p){return this._fitOnPage(()=>super.addAttachment(s,p))}addVector(s,p,z,AA,fA){return super.addVector(s,p,z,AA,fA)}beginClip(s,p){return super.beginClip(s,p)}endClip(){return super.endClip()}addFragment(s,p,z,AA){return this._fitOnPage(()=>super.addFragment(s,p,z,AA))}moveToNextPage(s){let p=this.context().moveToNextPage(s);this.repeatables.forEach(function(z){void 0===z.insertedOnPages[this.context().page]?(z.insertedOnPages[this.context().page]=!0,this.addFragment(z,!0)):this.context().moveDown(z.height)},this),this.emit("pageChanged",{prevPage:p.prevPage,prevY:p.prevY,y:this.context().y})}addPage(s,p,z,AA){void 0===AA&&(AA={});let fA=this.page,FA=this.y;this.context().addPage($i(s,p),Yi(z),AA),this.emit("pageChanged",{prevPage:fA,prevY:FA,y:this.context().y})}beginUnbreakableBlock(s,p){0===this.transactionLevel++&&(this.originalX=this.context().x,this.pushContext(s,p))}commitUnbreakableBlock(s,p){if(0===--this.transactionLevel){let z=this.context();this.popContext();let AA=z.pages.length;if(AA>0){let fA=z.pages[0];if(fA.xOffset=s,fA.yOffset=p,AA>1)if(void 0!==s||void 0!==p)fA.height=z.getCurrentPage().pageSize.height-z.pageMargins.top-z.pageMargins.bottom;else{fA.height=this.context().getCurrentPage().pageSize.height-this.context().pageMargins.top-this.context().pageMargins.bottom;for(let FA=0,HA=this.repeatables.length;FA{p.items.push(z)}),p.xOffset=this.originalX,p.height=s.y,p.insertedOnPages=[],p}pushToRepeatables(s){this.repeatables.push(s)}popFromRepeatables(){this.repeatables.pop()}_fitOnPage(s){let p=s();return p||(this.moveToNextPage(),p=s()),p}},Qs=class ds{constructor(s){this.tableNode=s}beginTable(s){let fA,FA;fA=this.tableNode,this.offsets=fA._offsets,this.layout=fA._layout,FA=s.context().availableWidth-this.offsets.total,$e_buildColumnWidths(fA.table.widths,FA,this.offsets.total,fA),this.tableWidth=fA._offsets.total+(()=>{let zA=0;return fA.table.widths.forEach(Qe=>{zA+=Qe._calcWidth}),zA})(),this.rowSpanData=(()=>{let zA=[],Qe=0,he=0;zA.push({left:0,rowSpan:0});for(let De=0,Ye=this.tableNode.table.body[0].length;DefA.table.body.length)throw new Error(`Too few rows in the table. Property headerRows requires at least ${this.headerRows}, contains only ${fA.table.body.length}`);this.rowsWithoutPageBreak=this.headerRows;const zA=fA.table.keepWithHeaderRows;x(zA)&&(this.rowsWithoutPageBreak+=zA)}this.dontBreakRows=fA.table.dontBreakRows||!1,(this.rowsWithoutPageBreak||this.dontBreakRows)&&(s.beginUnbreakableBlock(),this.drawHorizontalLine(0,s),this.rowsWithoutPageBreak&&this.dontBreakRows&&s.beginUnbreakableBlock()),(zA=>{for(let he=0;he0&&Qe(he+xe,Ye,0,Se.border[0]),void 0!==Se.border[2]&&Qe(he+xe,Ye+Je-1,2,Se.border[2]);for(let xe=0;xe0&&Qe(he,Ye+xe,1,Se.border[1]),void 0!==Se.border[3]&&Qe(he+Te-1,Ye+xe,3,Se.border[3])}}}function Qe(he,De,Ye,Se){let Te=zA[he][De];Te.border=Te.border||{},Te.border[Ye]=Se}})(this.tableNode.table.body)}onRowBreak(s,p){return()=>{let z=this.rowPaddingTop+(this.headerRows?0:this.topLineWidth);p.context().availableHeight-=this.reservedAtBottom,p.context().moveDown(z)}}beginRow(s,p){this.topLineWidth=this.layout.hLineWidth(s,this.tableNode),this.rowPaddingTop=this.layout.paddingTop(s,this.tableNode),this.bottomLineWidth=this.layout.hLineWidth(s+1,this.tableNode),this.rowPaddingBottom=this.layout.paddingBottom(s,this.tableNode),this.rowCallback=this.onRowBreak(s,p),p.addListener("pageChanged",this.rowCallback),0==s&&!this.dontBreakRows&&!this.rowsWithoutPageBreak&&(this._tableTopBorderY=p.context().y,p.context().moveDown(this.topLineWidth)),this.dontBreakRows&&s>0&&p.beginUnbreakableBlock(),this.rowTopY=p.context().y,this.reservedAtBottom=this.bottomLineWidth+this.rowPaddingBottom,p.context().availableHeight-=this.reservedAtBottom,p.context().moveDown(this.rowPaddingTop)}drawHorizontalLine(s,p,z,AA,fA){void 0===AA&&(AA=!0);let FA=this.layout.hLineWidth(s,this.tableNode);if(FA){let De,he=this.layout.hLineStyle(s,this.tableNode);he&&he.dash&&(De=he.dash);let Je,xe,be,Ye=FA/2,Se=null,Te=this.tableNode.table.body;for(let je=0,At=this.rowSpanData.length;je0&&(Je=Te[s-1][je],(zA=Je.border?Je.border[3]:this.layout.defaultBorder)&&Je.borderColor&&(qt=Je.borderColor[3])),sSt;)Se.width+=this.rowSpanData[je+St++].width||0;je+=St-1}else if(Je&&Je.colSpan&&zA){for(;Je.colSpan>St;)Se.width+=this.rowSpanData[je+St++].width||0;je+=St-1}else if(xe&&xe.colSpan&&HA){for(;xe.colSpan>St;)Se.width+=this.rowSpanData[je+St++].width||0;je+=St-1}else Se.width+=this.rowSpanData[je].width||0}let kn=(z||0)+Ye;on&&Se&&Se.width&&(p.addVector({type:"line",x1:Se.left,x2:Se.left+Se.width,y1:kn,y2:kn,lineWidth:FA,dash:De,lineColor:qt},!1,c(z),null,fA),Se=null,qt=null,Je=null,xe=null,be=null)}AA&&p.context().moveDown(FA)}}drawVerticalLine(s,p,z,AA,fA,FA,HA){let zA=this.layout.vLineWidth(AA,this.tableNode);if(0===zA)return;let he,Qe=this.layout.vLineStyle(AA,this.tableNode);Qe&&Qe.dash&&(he=Qe.dash);let Ye,Se,Te,De=this.tableNode.table.body;if(AA>0&&(Ye=De[FA][HA],Ye&&Ye.borderColor&&(Ye.border?Ye.border[2]:this.layout.defaultBorder)&&(Te=Ye.borderColor[2])),null==Te&&AA{let be=[],je=0;for(let At=0,ot=this.tableNode.table.body[s].length;At0&&je--}return be.push({x:this.rowSpanData[this.rowSpanData.length-1].left,index:this.rowSpanData.length-1}),be})(),zA=[],Qe=z&&z.length>0,he=this.tableNode.table.body;if(zA.push({y0:this.rowTopY,page:Qe?z[0].prevPage:fA}),Qe)for(let be=0,je=z.length;be0&&(be=z[0].prevPage),this.drawHorizontalLine(0,p,this._tableTopBorderY,!1,be)}for(let be=De?1:0,je=zA.length;be0&&!this.headerRows,on=ot?0:this.topLineWidth,qt=zA[be].y0,kn=zA[be].y1;At&&(kn+=this.rowPaddingBottom),p.context().page!=zA[be].page&&(p.context().page=zA[be].page,this.reservedAtBottom=0),At&&!1!==this.layout.hLineWhenBroken&&this.drawHorizontalLine(s+1,p,kn),ot&&!1!==this.layout.hLineWhenBroken&&this.drawHorizontalLine(s,p,qt);for(let St=0,_i=HA.length;St<_i;St++){let Nn=!1,Un=!1,$t=HA[St].index;if($t0&&!Nn){let Fn=he[s][$t-1];Nn=Fn.border?Fn.border[2]:this.layout.defaultBorder}if($t+11)for(let At=1;At1)for(let At=1;At0&&this.rowSpanData[be].rowSpan--}if(this.drawHorizontalLine(s+1,p),this.headerRows&&s===this.headerRows-1&&(this.headerRepeatable=p.currentBlockToRepeatable()),this.dontBreakRows){const be=()=>{s>0&&!this.headerRows&&!1!==this.layout.hLineWhenBroken&&this.drawHorizontalLine(s,p)};p.addListener("pageChanged",be),p.commitUnbreakableBlock(),p.removeListener("pageChanged",be)}this.headerRepeatable&&(s===this.rowsWithoutPageBreak-1||s===this.tableNode.table.body.length-1)&&(p.commitUnbreakableBlock(),p.pushToRepeatables(this.headerRepeatable),this.cleanUpRepeatables=!0,this.headerRepeatable=null)}};class ji{constructor(s){this.maxWidth=s,this.leadingCut=0,this.trailingCut=0,this.inlineWidths=0,this.inlines=[]}addInline(s){0===this.inlines.length&&(this.leadingCut=s.leadingCut||0),this.trailingCut=s.trailingCut||0,s.x=this.inlineWidths-this.leadingCut,this.inlines.push(s),this.inlineWidths+=s.width,s.lineEnd&&(this.newLineForced=!0)}getHeight(){let s=0;return this.inlines.forEach(p=>{s=Math.max(s,p.height||0)}),s}getAscenderHeight(){let s=0;return this.inlines.forEach(p=>{s=Math.max(s,p.font.ascender/1e3*p.fontSize)}),s}getWidth(){return this.inlineWidths-this.leadingCut-this.trailingCut}getAvailableWidth(){return this.maxWidth-this.getWidth()}hasEnoughSpaceForInline(s,p){if(void 0===p&&(p=[]),0===this.inlines.length)return!0;if(this.newLineForced)return!1;let z=s.width,AA=s.trailingCut||0;if(s.noNewLine)for(let fA=0,FA=p.length;fA{YA.push(p)})}const Ms=class ms{constructor(s,p,z){this.pageSize=s,this.pageMargins=p,this.svgMeasure=z,this.tableLayouts={},this.nestedLevel=0}registerTableLayouts(s){this.tableLayouts=Ut(this.tableLayouts,s)}layoutDocument(s,p,z,AA,fA,FA,HA,zA,Qe){function he(Se,Te){if("function"!=typeof Qe)return!1;(Se=Se.filter(xe=>!(!xe||0===xe.positions.length||""===xe.text&&!xe.listMarker))).forEach(xe=>{let be={};["id","text","ul","ol","table","image","qr","canvas","svg","columns","headlineLevel","style","pageBreak","pageOrientation","width","height"].forEach(je=>{void 0!==xe[je]&&(be[je]=xe[je])}),be.startPosition=xe.positions[0],be.pageNumbers=Array.from(new Set(xe.positions.map(je=>je.pageNumber))),be.pages=Te.length,be.stack=Array.isArray(xe.stack),xe.nodeInfo=be});for(let xe=0;xe{let At=[];for(let ot=xe+1,on=Se.length;ot-1&&At.push(Se[ot].nodeInfo);return At},getNodesOnNextPage:()=>{let At=[];for(let ot=xe+1,on=Se.length;ot-1&&At.push(Se[ot].nodeInfo);return At},getPreviousNodesOnPage:()=>{let At=[];for(let ot=0;ot-1&&At.push(Se[ot].nodeInfo);return At}}))return be.pageBreak="before",!0}}return!1}function De(Se){Se.linearNodeList.forEach(Te=>{Te.resetXY()})}this.docPreprocessor=new J,this.docMeasure=new xi(p,z,AA,this.svgMeasure,this.tableLayouts);let Ye=this.tryLayoutDocument(s,p,z,AA,fA,FA,HA,zA);for(;he(Ye.linearNodeList,Ye.pages);)De(Ye),Ye=this.tryLayoutDocument(s,p,z,AA,fA,FA,HA,zA);return Ye.pages}tryLayoutDocument(s,p,z,AA,fA,FA,HA,zA){return this.linearNodeList=[],s=this.docPreprocessor.preprocessDocument(s),s=this.docMeasure.measureDocument(s),this.writer=new Cs(new ki),this.writer.context().addListener("pageAdded",he=>{let De=fA;(he.customProperties.background||null===he.customProperties.background)&&(De=he.customProperties.background),this.addBackground(De)}),!((he=s).stack&&he.stack.length>0&&he.stack[0].section||he.section)&&this.writer.addPage(this.pageSize,null,this.pageMargins),this.processNode(s),this.addHeadersAndFooters(FA,HA),this.addWatermark(zA,p,AA),{pages:this.writer.context().pages,linearNodeList:this.linearNodeList};var he}addBackground(s){let p="function"==typeof s?s:()=>s,z=this.writer.context(),AA=z.getCurrentPage().pageSize,fA=p(z.page+1,AA);fA&&(this.writer.beginUnbreakableBlock(AA.width,AA.height),fA=this.docPreprocessor.preprocessBlock(fA),this.processNode(this.docMeasure.measureBlock(fA)),this.writer.commitUnbreakableBlock(0,0),z.backgroundLength[z.page]+=fA.positions.length)}addDynamicRepeatable(s,p,z){for(let fA=0,FA=this.writer.context().pages.length;fA"u"||null===zA)continue;let Qe=zA(fA+1,FA,this.writer.context().pages[fA].pageSize);if(Qe){let he=p(this.writer.context().getCurrentPage().pageSize,this.writer.context().getCurrentPage().pageMargins);this.writer.beginUnbreakableBlock(he.width,he.height),Qe=this.docPreprocessor.preprocessBlock(Qe),this.processNode(this.docMeasure.measureBlock(Qe)),this.writer.commitUnbreakableBlock(he.x,he.y)}}}addHeadersAndFooters(s,p){this.addDynamicRepeatable(s,(fA,FA)=>({x:0,y:0,width:fA.width,height:FA.top}),"header"),this.addDynamicRepeatable(p,(fA,FA)=>({x:0,y:fA.height-FA.bottom,width:fA.width,height:FA.bottom}),"footer")}addWatermark(s,p,z){let AA=this.writer.context().pages;for(let zA=0,Qe=AA.length;zA1;)Ye.push({fontSize:xe}),Se=De.sizeOfRotatedText(Qe.text,Qe.angle,Ye),Se.width>zA.width?(Je=xe,xe=(Te+Je)/2):Se.widthzA.height?(Je=xe,xe=(Te+Je)/2):(Te=xe,xe=(Te+Je)/2)),Ye.pop();return xe}(Qe,zA,he));let Ye={text:zA.text,font:he.provideFont(zA.font,zA.bold,zA.italics),fontSize:zA.fontSize,color:zA.color,opacity:zA.opacity,angle:zA.angle};return Ye._size=function FA(zA,Qe){let he=new mt(Qe),De=new de(null,{font:zA.font,bold:zA.bold,italics:zA.italics});return De.push({fontSize:zA.fontSize}),{size:he.sizeOfText(zA.text,De),rotatedSize:he.sizeOfRotatedText(zA.text,zA.angle,De)}}(zA,he),Ye}}processNode(s){this.linearNodeList.push(s),function As(YA){let s=YA.x,p=YA.y;YA.positions=[],Array.isArray(YA.canvas)&&YA.canvas.forEach(z=>{let AA=z.x,fA=z.y,FA=z.x1,HA=z.y1,zA=z.x2,Qe=z.y2;z.resetXY=()=>{z.x=AA,z.y=fA,z.x1=FA,z.y1=HA,z.x2=zA,z.y2=Qe}}),YA.resetXY=()=>{YA.x=s,YA.y=p,Array.isArray(YA.canvas)&&YA.canvas.forEach(z=>{z.resetXY()})}}(s),(z=>{let AA=s._margin;"before"===s.pageBreak?this.writer.moveToNextPage(s.pageOrientation):"beforeOdd"===s.pageBreak?(this.writer.moveToNextPage(s.pageOrientation),(this.writer.context().page+1)%2==1&&this.writer.moveToNextPage(s.pageOrientation)):"beforeEven"===s.pageBreak&&(this.writer.moveToNextPage(s.pageOrientation),(this.writer.context().page+1)%2==0&&this.writer.moveToNextPage(s.pageOrientation));const fA=s.relativePosition||s.absolutePosition;if(AA&&!fA){const FA=this.writer.context().availableHeight;FA-AA[1]<0?(this.writer.context().moveDown(FA),this.writer.moveToNextPage(s.pageOrientation)):this.writer.context().moveDown(AA[1]),this.writer.context().addMargin(AA[0],AA[2])}if(z(),AA&&!fA){const FA=this.writer.context().availableHeight;FA-AA[3]<0?(this.writer.context().moveDown(FA),this.writer.moveToNextPage(s.pageOrientation)):this.writer.context().moveDown(AA[3]),this.writer.context().addMargin(-AA[0],-AA[2])}"after"===s.pageBreak?this.writer.moveToNextPage(s.pageOrientation):"afterOdd"===s.pageBreak?(this.writer.moveToNextPage(s.pageOrientation),(this.writer.context().page+1)%2==1&&this.writer.moveToNextPage(s.pageOrientation)):"afterEven"===s.pageBreak&&(this.writer.moveToNextPage(s.pageOrientation),(this.writer.context().page+1)%2==0&&this.writer.moveToNextPage(s.pageOrientation))})(()=>{let z=s.unbreakable;z&&this.writer.beginUnbreakableBlock();let AA=s.absolutePosition;AA&&(this.writer.context().beginDetachedBlock(),this.writer.context().moveTo(AA.x||0,AA.y||0));let fA=s.relativePosition;if(fA&&(this.writer.context().beginDetachedBlock(),this.writer.context().moveToRelative(fA.x||0,fA.y||0)),s.stack)this.processVerticalContainer(s);else if(s.section)this.processSection(s);else if(s.columns)this.processColumns(s);else if(s.ul)this.processList(!1,s);else if(s.ol)this.processList(!0,s);else if(s.table)this.processTable(s);else if(void 0!==s.text)this.processLeaf(s);else if(s.toc)this.processToc(s);else if(s.image)this.processImage(s);else if(s.svg)this.processSVG(s);else if(s.canvas)this.processCanvas(s);else if(s.qr)this.processQr(s);else if(s.attachment)this.processAttachment(s);else if(!s._span)throw new Error(`Unrecognized document structure: ${Q(s)}`);(AA||fA)&&this.writer.context().endDetachedBlock(),z&&this.writer.commitUnbreakableBlock()})}processVerticalContainer(s){s.stack.forEach(p=>{this.processNode(p),oi(s.positions,p.positions)},this)}processSection(s){let p=this.writer.context().getCurrentPage();if(!p||p&&p.items.length){"inherit"===s.pageSize&&(s.pageSize=p?{width:p.pageSize.width,height:p.pageSize.height}:void 0),"inherit"===s.pageOrientation&&(s.pageOrientation=p?p.pageSize.orientation:void 0),"inherit"===s.pageMargins&&(s.pageMargins=p?p.pageMargins:void 0),"inherit"===s.header&&(s.header=p?p.customProperties.header:void 0),"inherit"===s.footer&&(s.footer=p?p.customProperties.footer:void 0),"inherit"===s.background&&(s.background=p?p.customProperties.background:void 0),"inherit"===s.watermark&&(s.watermark=p?p.customProperties.watermark:void 0),s.header&&"function"!=typeof s.header&&null!==s.header&&(s.header=Rt(s.header)),s.footer&&"function"!=typeof s.footer&&null!==s.footer&&(s.footer=Rt(s.footer));let z={};typeof s.header<"u"&&(z.header=s.header),typeof s.footer<"u"&&(z.footer=s.footer),typeof s.background<"u"&&(z.background=s.background),typeof s.watermark<"u"&&(z.watermark=s.watermark),this.writer.addPage(s.pageSize||this.pageSize,s.pageOrientation,s.pageMargins||this.pageMargins,z)}this.processNode(s.section)}processColumns(s){this.nestedLevel++;let p=s.columns,z=this.writer.context().availableWidth,AA=function FA(HA){if(!HA)return null;let zA=[];zA.push(0);for(let Qe=p.length-1;Qe>0;Qe--)zA.push(HA);return zA}(s._gap);AA&&(z-=(AA.length-1)*s._gap),$e_buildColumnWidths(p,z);let fA=this.processRow({marginX:s._margin?[s._margin[0],s._margin[2]]:[0,0],cells:p,widths:p,gaps:AA});oi(s.positions,fA.positions),this.nestedLevel--,0===this.nestedLevel&&this.writer.context().resetMarginXTopParent()}_findStartingRowSpanCell(s,p){let z=1;for(let AA=p-1;AA>=0;AA--){if(!s[AA]._span)return s[AA].rowSpan>1&&(s[AA].colSpan||1)===z?s[AA]:null;z++}return null}_getPageBreak(s,p){return s.find(z=>z.prevPage===p)}_getPageBreakListBySpan(s,p,z){if(!s||!s._breaksBySpan)return null;const AA=s._breaksBySpan.filter(HA=>HA.prevPage===p&&z<=HA.rowIndexOfSpanEnd);let fA=Number.MAX_VALUE,FA=Number.MIN_VALUE;return AA.forEach(HA=>{FA=Math.max(HA.prevY,FA),fA=Math.min(HA.y,fA)}),{prevPage:p,prevY:FA,y:fA}}_findSameRowPageBreakByRowSpanData(s,p,z){return s?s.find(AA=>AA.prevPage===p&&z===AA.rowIndexOfSpanEnd):null}_updatePageBreaksData(s,p,z){Object.keys(p._bottomByPage).forEach(AA=>{const fA=Number(AA),FA=this._getPageBreak(s,fA);if(FA&&(FA.prevY=Math.max(FA.prevY,p._bottomByPage[fA])),p._breaksBySpan&&p._breaksBySpan.length>0){const HA=p._breaksBySpan.filter(zA=>zA.prevPage===fA&&z<=zA.rowIndexOfSpanEnd);HA&&HA.length>0&&HA.forEach(zA=>{zA.prevY=Math.max(zA.prevY,p._bottomByPage[fA])})}})}_resolveBreakY(s,p,z){z.prevY=Math.max(s.prevY,p.prevY),z.y=Math.min(s.y,p.y)}_storePageBreakData(s,p,z,AA){if(p){let FA=this._findSameRowPageBreakByRowSpanData(AA&&AA._breaksBySpan||null,s.prevPage,s.rowIndex);FA||(FA={...s,rowIndexOfSpanEnd:s.rowIndex+s.rowSpan-1},AA._breaksBySpan||(AA._breaksBySpan=[]),AA._breaksBySpan.push(FA)),FA.prevY=Math.max(FA.prevY,s.prevY),FA.y=Math.min(FA.y,s.y);let HA=this._getPageBreak(z,s.prevPage);HA&&this._resolveBreakY(HA,FA,HA)}else{let fA=this._getPageBreak(z,s.prevPage),FA=this._getPageBreakListBySpan(AA,s.prevPage,s.rowIndex);fA||(fA={...s},z.push(fA)),FA&&this._resolveBreakY(fA,FA,fA),this._resolveBreakY(fA,s,fA)}}_colLeftOffset(s,p){return p&&p.length>s?p[s]:0}_getRowSpanEndingCell(s,p,z,AA){if(z.rowSpan&&z.rowSpan>1){let fA=p+z.rowSpan-1;if(fA>=s.length)throw new Error(`Row span for column ${AA} (with indexes starting from 0) exceeded row count`);return s[fA][AA]}return null}processRow(s){let{marginX:p=[0,0],dontBreakRows:z=!1,rowsWithoutPageBreak:AA=0,cells:fA,widths:FA,gaps:HA,tableNode:zA,tableBody:Qe,rowIndex:he,height:De}=s;const Ye=z||he<=AA-1;let Se=[],Je=[],xe=!1;FA=FA||fA,!Ye&&De>this.writer.context().availableHeight&&(xe=!0);const be=1===this.nestedLevel?p:null,je=zA?zA._bottomByPage:null;this.writer.context().beginColumnGroup(be,je);for(let qt=0,kn=fA.length;qt{const ei=St.rowSpan&&St.rowSpan>1;ei&&(Vn.rowSpan=St.rowSpan),Vn.rowIndex=he,this._storePageBreakData(Vn,ei,Se,zA)};this.writer.addListener("pageChanged",_i);let Nn=FA[qt]._calcWidth,Un=this._colLeftOffset(qt,HA),$t=this._findStartingRowSpanCell(fA,qt);if(St.colSpan&&St.colSpan>1)for(let Vn=1;Vn0&&(Bi._isUnbreakableContext=!0,Bi._originalXOffset=this.writer.originalX)),this.writer.context().beginColumn(Nn,Un,Bi),St._span){if(St._columnEndingContext){let Vn=0;z&&(Vn=this.writer.contextStack[this.writer.contextStack.length-1].y-St._startingRowSpanY);let ei=0;St._isUnbreakableContext&&!this.writer.transactionLevel&&(ei=St._originalXOffset),this.writer.context().markEnding(St,ei,Vn)}}else this.processNode(St),this.writer.context().updateBottomByPage(),oi(Je,St.positions);this.writer.removeListener("pageChanged",_i)}let At=null;const ot=fA.length>0?fA[fA.length-1]:null;if(ot)if(ot._endingCell)At=ot._endingCell;else if(!0===ot._span){const qt=this._findStartingRowSpanCell(fA,fA.length);qt&&(At=qt._endingCell,this.writer.transactionLevel>0&&(At._isUnbreakableContext=!0,At._originalXOffset=this.writer.originalX))}xe&&!Ye&&0===Se.length&&(this.writer.context().moveDown(this.writer.context().availableHeight),this.writer.moveToNextPage());const on=this.writer.context().completeColumnGroup(De,At);return zA&&(zA._bottomByPage=on,this._updatePageBreaksData(Se,zA,he)),{pageBreaksBySpan:[],pageBreaks:Se,positions:Je}}processList(s,p){const z=HA=>{if(FA){let zA=FA;if(FA=null,zA.canvas){let Qe=zA.canvas[0];Gt(Qe,-zA._minWidth,0),this.writer.addVector(Qe)}else if(zA._inlines){let Qe=new Oi(this.pageSize.width);Qe.addInline(zA._inlines[0]),Qe.x=-zA._minWidth,Qe.y=HA.getAscenderHeight()-Qe.getAscenderHeight(),this.writer.addLine(Qe,!0)}}};let FA,AA=s?p.ol:p.ul,fA=p._gapSize;this.writer.context().addMargin(fA.width),this.writer.addListener("lineAdded",z),AA.forEach(HA=>{FA=HA.listMarker,this.processNode(HA),oi(p.positions,HA.positions)}),this.writer.removeListener("lineAdded",z),this.writer.context().addMargin(-fA.width)}processTable(s){this.nestedLevel++;let p=new Qs(s);p.beginTable(this.writer);let z=s.table.heights;for(let AA=0,fA=s.table.body.length;AA{Qe.rowSpan&&Qe.rowSpan>1&&(Qe._startingRowSpanY=this.writer.context().y)}),p.beginRow(AA,this.writer),FA="function"==typeof z?z(AA):Array.isArray(z)?z[AA]:z,"auto"===FA&&(FA=void 0);const HA=this.writer.context().page;let zA=this.processRow({marginX:s._margin?[s._margin[0],s._margin[2]]:[0,0],dontBreakRows:p.dontBreakRows,rowsWithoutPageBreak:p.rowsWithoutPageBreak,cells:s.table.body[AA],widths:s.table.widths,gaps:s._offsets.offsets,tableBody:s.table.body,tableNode:s,rowIndex:AA,height:FA});if(oi(s.positions,zA.positions),!zA.pageBreaks||0===zA.pageBreaks.length){const he=this._findSameRowPageBreakByRowSpanData(s&&s._breaksBySpan||null,HA,AA);if(he){const De=this._getPageBreakListBySpan(s,he.prevPage,AA);zA.pageBreaks.push(De)}}p.endRow(AA,this.writer,zA.pageBreaks)}p.endTable(this.writer),this.nestedLevel--,0===this.nestedLevel&&this.writer.context().resetMarginXTopParent()}processLeaf(s){let p=this.buildNextLine(s);p&&(s.tocItem||s.id)&&(p._node=s);let z=p?p.getHeight():0,AA=s.maxHeight||-1;if(p){let fA=y(s);fA&&(p.id=fA)}if(s._tocItemRef&&(p._pageNodeRef=s._tocItemRef),s._pageRef&&(p._pageNodeRef=s._pageRef._nodeRef),p&&p.inlines&&Array.isArray(p.inlines))for(let fA=0,FA=p.inlines.length;fA0&&(AA.hasEnoughSpaceForInline(s._inlines[0],s._inlines.slice(1))||FA);){let HA=!1,zA=s._inlines.shift();if(FA=!1,!zA.noWrap&&zA.text.length>1&&zA.width>AA.getAvailableWidth()){let Qe=z(zA.text,AA.getAvailableWidth(),he=>fA.widthOfText(he,zA));if(Qe{let s=parseFloat(YA);if("number"==typeof s&&!isNaN(s))return s},Ji=YA=>{let s;try{s=new ps.XmlDocument(YA)}catch(p){throw new Error("Invalid svg document ("+p+")")}if("svg"!==s.name)throw new Error("Invalid svg document (expected )");return s},li=class Ds{constructor(){}measureSVG(s){let p,z,AA;if(d(s)){let HA=Ji(s);p=HA.attr.width,z=HA.attr.height,AA=HA.attr.viewBox}else{if(!(typeof SVGElement<"u"&&s instanceof SVGElement&&"function"==typeof getComputedStyle))throw new Error("Invalid SVG document");p=s.getAttribute("width"),z=s.getAttribute("height"),AA=s.getAttribute("viewBox")}let fA=Ai(p),FA=Ai(z);if((void 0===fA||void 0===FA)&&"string"==typeof AA){let HA=AA.split(/[,\s]+/);if(4!==HA.length)throw new Error("Unexpected svg viewBox format, should have 4 entries but found: '"+AA+"'");void 0===fA&&(fA=Ai(HA[2])),void 0===FA&&(FA=Ai(HA[3]))}return{width:fA,height:FA}}writeDimensions(s,p){if(d(s)){let z=Ji(s);return"string"!=typeof z.attr.viewBox&&(z.attr.viewBox=`0 0 ${Ai(z.attr.width)} ${Ai(z.attr.height)}`),z.attr.width=""+p.width,z.attr.height=""+p.height,z.toString()}return s.hasAttribute("viewBox")||s.setAttribute("viewBox",`0 0 ${Ai(s.getAttribute("width"))} ${Ai(s.getAttribute("height"))}`),s.setAttribute("width",""+p.width),s.setAttribute("height",""+p.height),s}},Is=class ci{constructor(s){this.pdfDocument=s}drawBackground(s,p,z){let AA=s.getHeight();for(let fA=0,FA=s.inlines.length;fA{let s=[],p=null;for(let z=0,AA=YA.inlines.length;z{let Te=0;for(let Je=0,xe=s.inlines.length;JeTe?Je:Te;return s.inlines[Te]})(),zA=(()=>{let Te=0;for(let Je=0,xe=s.inlines.length;Je{let p=YA;return s.sup&&(p-=.75*s.fontSize),s.sub&&(p+=.35*s.fontSize),p},bi=class ys{constructor(s,p){this.pdfDocument=s,this.progressCallback=p}renderPages(s){this.pdfDocument._pdfMakePages=s;let p=0;this.progressCallback&&s.forEach(AA=>{p+=AA.items.length});let z=0;for(let AA=0;AA1){let FA=s.points[0],HA=s.points[s.points.length-1];(s.closePath||FA.x===HA.x&&FA.y===HA.y)&&this.pdfDocument.closePath()}break;case"path":this.pdfDocument.path(s.d)}if(s.linearGradient&&p){let FA=1/(s.linearGradient.length-1);for(let HA=0;HA{let FA=z.split(",").map(Qe=>Qe.trim().replace(/('|")/g,"")),HA=((YA,s,p)=>{for(let z=0;z-1&&(HA=HA.slice(0,zA)),HA.forEach(he=>{he.pageSize.height===1/0&&(he.pageSize.height=function S(YA,s){let AA=Yi(s||40),fA=AA.top;return YA.items.forEach(FA=>{let HA=function z(FA){return(FA.item.y||0)+function p(FA){return"function"==typeof FA.item.getHeight?FA.item.getHeight():FA.item._height?FA.item._height:"vector"===FA.type?typeof FA.item.y1<"u"?FA.item.y1>FA.item.y2?FA.item.y1:FA.item.y2:FA.item.h:0}(FA)}(FA);HA>fA&&(fA=HA)}),fA+=AA.bottom,fA}(he,he.pageMargins))}),new bi(z.pdfKitDoc,p.progressCallback).renderPages(HA),z.pdfKitDoc})()}resolveUrls(s){var p=this;return Ee(function*(){const z=AA=>"object"==typeof AA?{url:AA.url,headers:AA.headers}:{url:AA,headers:{}};if(null!==p.urlResolver){for(let AA in p.fontDescriptors)if(p.fontDescriptors.hasOwnProperty(AA)){if(p.fontDescriptors[AA].normal)if(Array.isArray(p.fontDescriptors[AA].normal)){let fA=z(p.fontDescriptors[AA].normal[0]);p.urlResolver.resolve(fA.url,fA.headers),p.fontDescriptors[AA].normal[0]=fA.url}else{let fA=z(p.fontDescriptors[AA].normal);p.urlResolver.resolve(fA.url,fA.headers),p.fontDescriptors[AA].normal=fA.url}if(p.fontDescriptors[AA].bold)if(Array.isArray(p.fontDescriptors[AA].bold)){let fA=z(p.fontDescriptors[AA].bold[0]);p.urlResolver.resolve(fA.url,fA.headers),p.fontDescriptors[AA].bold[0]=fA.url}else{let fA=z(p.fontDescriptors[AA].bold);p.urlResolver.resolve(fA.url,fA.headers),p.fontDescriptors[AA].bold=fA.url}if(p.fontDescriptors[AA].italics)if(Array.isArray(p.fontDescriptors[AA].italics)){let fA=z(p.fontDescriptors[AA].italics[0]);p.urlResolver.resolve(fA.url,fA.headers),p.fontDescriptors[AA].italics[0]=fA.url}else{let fA=z(p.fontDescriptors[AA].italics);p.urlResolver.resolve(fA.url,fA.headers),p.fontDescriptors[AA].italics=fA.url}if(p.fontDescriptors[AA].bolditalics)if(Array.isArray(p.fontDescriptors[AA].bolditalics)){let fA=z(p.fontDescriptors[AA].bolditalics[0]);p.urlResolver.resolve(fA.url,fA.headers),p.fontDescriptors[AA].bolditalics[0]=fA.url}else{let fA=z(p.fontDescriptors[AA].bolditalics);p.urlResolver.resolve(fA.url,fA.headers),p.fontDescriptors[AA].bolditalics=fA.url}}if(s.images)for(let AA in s.images)if(s.images.hasOwnProperty(AA)){let fA=z(s.images[AA]);p.urlResolver.resolve(fA.url,fA.headers),s.images[AA]=fA.url}if(s.attachments)for(let AA in s.attachments)if(s.attachments.hasOwnProperty(AA)&&s.attachments[AA].src){let fA=z(s.attachments[AA].src);p.urlResolver.resolve(fA.url,fA.headers),s.attachments[AA].src=fA.url}if(s.files)for(let AA in s.files)if(s.files.hasOwnProperty(AA)&&s.files[AA].src){let fA=z(s.files[AA].src);p.urlResolver.resolve(fA.url,fA.headers),s.files[AA].src=fA.url}yield p.urlResolver.resolved()}})()}};var tA=g(6811);const OA=class MA{constructor(){this.virtualfs=tA.default,this.urlResolver=null}createPdf(s,p){if(void 0===p&&(p={}),!U(s))throw new Error("Parameter 'docDefinition' has an invalid type. Object expected.");if(!U(p))throw new Error("Parameter 'options' has an invalid type. Object expected.");p.progressCallback=this.progressCallback,p.tableLayouts=this.tableLayouts;const AA=new I(this.fonts,this.virtualfs,this.urlResolver()).createPdfKitDocument(s,p);return this._transformToDocument(AA)}setProgressCallback(s){this.progressCallback=s}addTableLayouts(s){this.tableLayouts=Ut(this.tableLayouts,s)}setTableLayouts(s){this.tableLayouts=s}clearTableLayouts(){this.tableLayouts={}}addFonts(s){this.fonts=Ut(this.fonts,s)}setFonts(s){this.fonts=s}clearFonts(){this.fonts={}}_transformToDocument(s){return s}};var se=g(783).Buffer;const Ne=class ge{constructor(s){this.bufferSize=1073741824,this.pdfDocumentPromise=s,this.bufferPromise=null}getStream(){return this.pdfDocumentPromise}getBuffer(){var s=this;const p=function(){var z=Ee(function*(){const AA=yield s.getStream();return new Promise(fA=>{let FA=[];AA.on("readable",()=>{let HA;for(;null!==(HA=AA.read(s.bufferSize));)FA.push(HA)}),AA.on("end",()=>{fA(se.concat(FA))}),AA.end()})});return function(){return z.apply(this,arguments)}}();return null===this.bufferPromise&&(this.bufferPromise=p()),this.bufferPromise}getBase64(){var s=this;return Ee(function*(){return(yield s.getBuffer()).toString("base64")})()}getDataUrl(){var s=this;return Ee(function*(){return"data:application/pdf;base64,"+(yield s.getBase64())})()}};var Re=g(7532);const Et=class Ke extends Ne{getBlob(){var s=this;return Ee(function*(){const p=yield s.getBuffer();return new Blob([p],{type:"application/pdf"})})()}download(s){var p=this;return Ee(function*(){void 0===s&&(s="file.pdf");const z=yield p.getBlob();(0,Re.saveAs)(z,s)})()}open(s){var p=this;return Ee(function*(){void 0===s&&(s=null),s||(s=(()=>{let YA=window.open("","_blank");if(null===YA)throw new Error("Open PDF in new window blocked by browser");return YA})());const z=yield p.getBlob();try{let fA=(window.URL||window.webkitURL).createObjectURL(z);s.location.href=fA}catch(AA){throw s.close(),AA}})()}print(s){var p=this;return Ee(function*(){void 0===s&&(s=null),(yield p.getStream()).setOpenActionAsPrint(),yield p.open(s)})()}};function xt(){return(xt=Ee(function*(YA,s){void 0===s&&(s={});try{const p=yield fetch(YA,{headers:s});if(!p.ok)throw new Error(`Failed to fetch (status code: ${p.status}, url: "${YA}")`);return yield p.arrayBuffer()}catch(p){throw new Error(`Network request failed (url: "${YA}", error: ${p.message})`)}})).apply(this,arguments)}const dt=class It{constructor(s){this.fs=s,this.resolving={}}resolve(s,p){var z=this;void 0===p&&(p={});const AA=function(){var fA=Ee(function*(){if(s.toLowerCase().startsWith("https://")||s.toLowerCase().startsWith("http://")){if(z.fs.existsSync(s))return;const FA=yield function Dt(YA,s){return xt.apply(this,arguments)}(s,p);z.fs.writeFileSync(s,FA)}});return function(){return fA.apply(this,arguments)}}();return this.resolving[s]||(this.resolving[s]=AA()),this.resolving[s]}resolved(){return Promise.all(Object.values(this.resolving))}};var ft=g(2416),yt=g.n(ft),an=g(890);g.n(an)()({useNative:["Promise"]});let jt={Roboto:{normal:"Roboto-Regular.ttf",bold:"Roboto-Medium.ttf",italics:"Roboto-Italic.ttf",bolditalics:"Roboto-MediumItalic.ttf"}};const Zt=new class ht extends OA{constructor(){super(),this.urlResolver=()=>new dt(this.virtualfs),this.fonts=jt}addFontContainer(s){this.addVirtualFileSystem(s.vfs),this.addFonts(s.fonts)}addVirtualFileSystem(s){for(let p in s)if(s.hasOwnProperty(p)){let z,AA;"object"==typeof s[p]?(z=s[p].data,AA=s[p].encoding||"base64"):(z=s[p],AA="base64"),yt().writeFileSync(p,z,AA)}}_transformToDocument(s){return new Et(s)}}},7139(q,D,g){"use strict";var t=g(7756),B=g(8681);q.exports=function(Y,V){return arguments.length<2?function(Y){return B(Y)?Y:void 0}(t[Y]):t[Y]&&t[Y][V]}},7187(q,D,g){var t=g(9964),B=Object.getOwnPropertyDescriptors||function(hA){for(var bA=Object.keys(hA),ne={},$A=0;$A=$A)return cA;switch(cA){case"%s":return String(ne[bA++]);case"%d":return Number(ne[bA++]);case"%j":try{return JSON.stringify(ne[bA++])}catch{return"[Circular]"}default:return cA}}),P=ne[bA];bA<$A;P=ne[++bA])J(P)||!eA(P)?EA+=" "+P:EA+=" "+c(P);return EA},D.deprecate=function(iA,hA){if(typeof t<"u"&&!0===t.noDeprecation)return iA;if(typeof t>"u")return function(){return D.deprecate(iA,hA).apply(this,arguments)};var bA=!1;return function ne(){if(!bA){if(t.throwDeprecation)throw new Error(hA);t.traceDeprecation?console.trace(hA):console.error(hA),bA=!0}return iA.apply(this,arguments)}};var Y={},V=/^$/;if(t.env.NODE_DEBUG){var d=t.env.NODE_DEBUG;d=d.replace(/[|\\{}()[\]^$+?.]/g,"\\$&").replace(/\*/g,".*").replace(/,/g,"$|^").toUpperCase(),V=new RegExp("^"+d+"$","i")}function c(iA,hA){var bA={seen:[],stylize:U};return arguments.length>=3&&(bA.depth=arguments[2]),arguments.length>=4&&(bA.colors=arguments[3]),G(hA)?bA.showHidden=hA:hA&&D._extend(bA,hA),BA(bA.showHidden)&&(bA.showHidden=!1),BA(bA.depth)&&(bA.depth=2),BA(bA.colors)&&(bA.colors=!1),BA(bA.customInspect)&&(bA.customInspect=!0),bA.colors&&(bA.stylize=x),N(bA,iA,bA.depth)}function x(iA,hA){var bA=c.styles[hA];return bA?"\x1b["+c.colors[bA][0]+"m"+iA+"\x1b["+c.colors[bA][1]+"m":iA}function U(iA,hA){return iA}function N(iA,hA,bA){if(iA.customInspect&&hA&&QA(hA.inspect)&&hA.inspect!==D.inspect&&(!hA.constructor||hA.constructor.prototype!==hA)){var ne=hA.inspect(bA,iA);return Z(ne)||(ne=N(iA,ne,bA)),ne}var $A=function _(iA,hA){if(BA(hA))return iA.stylize("undefined","undefined");if(Z(hA)){var bA="'"+JSON.stringify(hA).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return iA.stylize(bA,"string")}return $(hA)?iA.stylize(""+hA,"number"):G(hA)?iA.stylize(""+hA,"boolean"):J(hA)?iA.stylize("null","null"):void 0}(iA,hA);if($A)return $A;var EA=Object.keys(hA),P=function E(iA){var hA={};return iA.forEach(function(bA,ne){hA[bA]=!0}),hA}(EA);if(iA.showHidden&&(EA=Object.getOwnPropertyNames(hA)),xA(hA)&&(EA.indexOf("message")>=0||EA.indexOf("description")>=0))return Q(hA);if(0===EA.length){if(QA(hA))return iA.stylize("[Function"+(hA.name?": "+hA.name:"")+"]","special");if(L(hA))return iA.stylize(RegExp.prototype.toString.call(hA),"regexp");if(UA(hA))return iA.stylize(Date.prototype.toString.call(hA),"date");if(xA(hA))return Q(hA)}var j,w="",H=!1,TA=["{","}"];return uA(hA)&&(H=!0,TA=["[","]"]),QA(hA)&&(w=" [Function"+(hA.name?": "+hA.name:"")+"]"),L(hA)&&(w=" "+RegExp.prototype.toString.call(hA)),UA(hA)&&(w=" "+Date.prototype.toUTCString.call(hA)),xA(hA)&&(w=" "+Q(hA)),0!==EA.length||H&&0!=hA.length?bA<0?L(hA)?iA.stylize(RegExp.prototype.toString.call(hA),"regexp"):iA.stylize("[Object]","special"):(iA.seen.push(hA),j=H?function y(iA,hA,bA,ne,$A){for(var EA=[],P=0,cA=hA.length;P60?bA[0]+(""===hA?"":hA+"\n ")+" "+iA.join(",\n ")+" "+bA[1]:bA[0]+hA+" "+iA.join(", ")+" "+bA[1]}(j,w,TA)):TA[0]+w+TA[1]}function Q(iA){return"["+Error.prototype.toString.call(iA)+"]"}function K(iA,hA,bA,ne,$A,EA){var P,cA,w;if((w=Object.getOwnPropertyDescriptor(hA,$A)||{value:hA[$A]}).get?cA=iA.stylize(w.set?"[Getter/Setter]":"[Getter]","special"):w.set&&(cA=iA.stylize("[Setter]","special")),we(ne,$A)||(P="["+$A+"]"),cA||(iA.seen.indexOf(w.value)<0?(cA=J(bA)?N(iA,w.value,null):N(iA,w.value,bA-1)).indexOf("\n")>-1&&(cA=EA?cA.split("\n").map(function(H){return" "+H}).join("\n").slice(2):"\n"+cA.split("\n").map(function(H){return" "+H}).join("\n")):cA=iA.stylize("[Circular]","special")),BA(P)){if(EA&&$A.match(/^\d+$/))return cA;(P=JSON.stringify(""+$A)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(P=P.slice(1,-1),P=iA.stylize(P,"name")):(P=P.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),P=iA.stylize(P,"string"))}return P+": "+cA}function uA(iA){return Array.isArray(iA)}function G(iA){return"boolean"==typeof iA}function J(iA){return null===iA}function $(iA){return"number"==typeof iA}function Z(iA){return"string"==typeof iA}function BA(iA){return void 0===iA}function L(iA){return eA(iA)&&"[object RegExp]"===JA(iA)}function eA(iA){return"object"==typeof iA&&null!==iA}function UA(iA){return eA(iA)&&"[object Date]"===JA(iA)}function xA(iA){return eA(iA)&&("[object Error]"===JA(iA)||iA instanceof Error)}function QA(iA){return"function"==typeof iA}function JA(iA){return Object.prototype.toString.call(iA)}function Be(iA){return iA<10?"0"+iA.toString(10):iA.toString(10)}D.debuglog=function(iA){if(iA=iA.toUpperCase(),!Y[iA])if(V.test(iA)){var hA=t.pid;Y[iA]=function(){var bA=D.format.apply(D,arguments);console.error("%s %d: %s",iA,hA,bA)}}else Y[iA]=function(){};return Y[iA]},D.inspect=c,c.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},c.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},D.types=g(9490),D.isArray=uA,D.isBoolean=G,D.isNull=J,D.isNullOrUndefined=function rA(iA){return null==iA},D.isNumber=$,D.isString=Z,D.isSymbol=function b(iA){return"symbol"==typeof iA},D.isUndefined=BA,D.isRegExp=L,D.types.isRegExp=L,D.isObject=eA,D.isDate=UA,D.types.isDate=UA,D.isError=xA,D.types.isNativeError=xA,D.isFunction=QA,D.isPrimitive=function gA(iA){return null===iA||"boolean"==typeof iA||"number"==typeof iA||"string"==typeof iA||"symbol"==typeof iA||typeof iA>"u"},D.isBuffer=g(1201);var KA=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function we(iA,hA){return Object.prototype.hasOwnProperty.call(iA,hA)}D.log=function(){console.log("%s - %s",function ae(){var iA=new Date,hA=[Be(iA.getHours()),Be(iA.getMinutes()),Be(iA.getSeconds())].join(":");return[iA.getDate(),KA[iA.getMonth()],hA].join(" ")}(),D.format.apply(D,arguments))},D.inherits=g(9784),D._extend=function(iA,hA){if(!hA||!eA(hA))return iA;for(var bA=Object.keys(hA),ne=bA.length;ne--;)iA[bA[ne]]=hA[bA[ne]];return iA};var ie=typeof Symbol<"u"?Symbol("util.promisify.custom"):void 0;function kA(iA,hA){if(!iA){var bA=new Error("Promise was rejected with a falsy value");bA.reason=iA,iA=bA}return hA(iA)}D.promisify=function(hA){if("function"!=typeof hA)throw new TypeError('The "original" argument must be of type Function');if(ie&&hA[ie]){var bA;if("function"!=typeof(bA=hA[ie]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(bA,ie,{value:bA,enumerable:!1,writable:!1,configurable:!0}),bA}function bA(){for(var ne,$A,EA=new Promise(function(w,H){ne=w,$A=H}),P=[],cA=0;cA>>2]>>>24-y%4*8&255)<<16|(E[y+1>>>2]>>>24-(y+1)%4*8&255)<<8|E[y+2>>>2]>>>24-(y+2)%4*8&255,J=0;J<4&&y+.75*J>>6*(3-J)&63));var rA=_.charAt(64);if(rA)for(;Q.length%4;)Q.push(rA);return Q.join("")},parse:function(x,U){void 0===U&&(U=!0);var E=x.length,N=U?this._safe_map:this._map,_=this._reverseMap;if(!_){_=this._reverseMap=[];for(var Q=0;Q>>6-Q%4*2;N[_>>>2]|=(y|K)<<24-_%4*8,_++}return Y.create(N,_)}(x,E,_)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",_safe_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"},t.enc.Base64url)},7507(q,D,g){"use strict";var t=this&&this.__importDefault||function(_){return _&&_.__esModule?_:{default:_}};Object.defineProperty(D,"__esModule",{value:!0}),D.XmlDocument=D.XmlElement=D.XmlCommentNode=D.XmlCDataNode=D.XmlTextNode=void 0;const B=t(g(1733));class M{constructor(Q){this.text=Q,this.type="text"}toString(Q){return N(E(this.text),Q)}toStringWithIndent(Q,y){return Q+this.toString(y)}}D.XmlTextNode=M;class Y{constructor(Q){this.cdata=Q,this.type="cdata"}toString(Q){return`${N(this.cdata,Q)}`}toStringWithIndent(Q,y){return Q+this.toString(y)}}D.XmlCDataNode=Y;class V{constructor(Q){this.comment=Q,this.type="comment"}toString(Q){return`\x3c!--${N(E(this.comment),Q)}--\x3e`}toStringWithIndent(Q,y){return Q+this.toString(y)}}D.XmlCommentNode=V;class d{constructor(Q,y){if(this.type="element",!y&&x.length){var K=x[x.length-1];"parser"in K&&(y=K.parser)}this.name=Q.name,this.attr=Q.attributes,this.val="",this.children=[],this.firstChild=null,this.lastChild=null,this.line=y?y.line:null,this.column=y?y.column:null,this.position=y?y.position:null,this.startTagPosition=y?y.startTagPosition:null}_addChild(Q){this.children.push(Q),this.firstChild||(this.firstChild=Q),this.lastChild=Q}_opentag(Q){const y=new d(Q);this._addChild(y),x.unshift(y)}_closetag(){x.shift()}_text(Q){this.val+=Q,this._addChild(new M(Q))}_cdata(Q){this.val+=Q,this._addChild(new Y(Q))}_comment(Q){this._addChild(new V(Q))}_error(Q){throw Q}eachChild(Q,y){for(let K=0,lA=this.children.length;K1?K.attr[y[1]]:K.val}toString(Q){return this.toStringWithIndent("",Q)}toStringWithIndent(Q,y){let K=`${Q}<${this.name}`;const lA=y?.compressed?"":"\n";for(const uA in this.attr)Object.prototype.hasOwnProperty.call(this.attr,uA)&&(K+=` ${uA}="${E(this.attr[uA])}"`);if(1===this.children.length&&"element"!==this.children[0].type)K+=`>${this.children[0].toString(y)}`;else if(this.children.length){K+=`>${lA}`;const uA=Q+(y?.compressed?"":" ");for(let G=0,J=this.children.length;G`}else y?.html?["area","base","br","col","embed","frame","hr","img","input","keygen","link","menuitem","meta","param","source","track","wbr"].includes(this.name)?K+="/>":K+=`>`:K+="/>";return K}}D.XmlElement=d;class c extends d{constructor(Q){if(super({name:"",attributes:{}}),!(Q=Q.toString().trim()))throw new Error("No XML to parse!");this.doctype="",this.parser=B.default.parser(!0),function U(_){_.onopentag=Q=>{var y;return null===(y=x[0])||void 0===y?void 0:y._opentag(Q)},_.onclosetag=()=>{var Q;return null===(Q=x[0])||void 0===Q?void 0:Q._closetag()},_.ontext=Q=>{var y;return null===(y=x[0])||void 0===y?void 0:y._text(Q)},_.oncdata=Q=>{var y;return null===(y=x[0])||void 0===y?void 0:y._cdata(Q)},_.oncomment=Q=>{var y;return null===(y=x[0])||void 0===y?void 0:y._comment(Q)},_.ondoctype=Q=>{const y=x[0];y._doctype&&y._doctype(Q)},_.onerror=Q=>{var y;return null===(y=x[0])||void 0===y?void 0:y._error(Q)}}(this.parser),x=[this];try{this.parser.write(Q)}finally{delete this.parser}}_opentag(Q){""===this.name?(this.name=Q.name,this.attr=Q.attributes):super._opentag(Q)}_doctype(Q){this.doctype+=Q}}D.XmlDocument=c;let x=[];function E(_){return _.toString().replace(/&/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,""")}function N(_,Q){let y=_;return Q?.trimmed&&_.length>25&&(y=y.substring(0,25).trim()+"\u2026"),Q?.preserveWhitespace||(y=y.trim()),y}D.default=c},7532(q,D,g){var t,M;void 0!==(M="function"==typeof(t=function(){"use strict";function V(N,_,Q){var y=new XMLHttpRequest;y.open("GET",N),y.responseType="blob",y.onload=function(){E(y.response,_,Q)},y.onerror=function(){console.error("could not download file")},y.send()}function d(N){var _=new XMLHttpRequest;_.open("HEAD",N,!1);try{_.send()}catch{}return 200<=_.status&&299>=_.status}function c(N){try{N.dispatchEvent(new MouseEvent("click"))}catch{var _=document.createEvent("MouseEvents");_.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),N.dispatchEvent(_)}}var x="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof g.g&&g.g.global===g.g?g.g:void 0,U=x.navigator&&/Macintosh/.test(navigator.userAgent)&&/AppleWebKit/.test(navigator.userAgent)&&!/Safari/.test(navigator.userAgent),E=x.saveAs||("object"!=typeof window||window!==x?function(){}:typeof HTMLAnchorElement<"u"&&"download"in HTMLAnchorElement.prototype&&!U?function(N,_,Q){var y=x.URL||x.webkitURL,K=document.createElement("a");K.download=_=_||N.name||"download",K.rel="noopener","string"==typeof N?(K.href=N,K.origin===location.origin?c(K):d(K.href)?V(N,_,Q):c(K,K.target="_blank")):(K.href=y.createObjectURL(N),setTimeout(function(){y.revokeObjectURL(K.href)},4e4),setTimeout(function(){c(K)},0))}:"msSaveOrOpenBlob"in navigator?function(N,_,Q){if(_=_||N.name||"download","string"!=typeof N)navigator.msSaveOrOpenBlob(function Y(N,_){return typeof _>"u"?_={autoBom:!1}:"object"!=typeof _&&(console.warn("Deprecated: Expected third argument to be a object"),_={autoBom:!_}),_.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(N.type)?new Blob(["\ufeff",N],{type:N.type}):N}(N,Q),_);else if(d(N))V(N,_,Q);else{var y=document.createElement("a");y.href=N,y.target="_blank",setTimeout(function(){c(y)})}}:function(N,_,Q,y){if((y=y||open("","_blank"))&&(y.document.title=y.document.body.innerText="downloading..."),"string"==typeof N)return V(N,_,Q);var K="application/octet-stream"===N.type,lA=/constructor/i.test(x.HTMLElement)||x.safari,uA=/CriOS\/[\d]+/.test(navigator.userAgent);if((uA||K&&lA||U)&&typeof FileReader<"u"){var G=new FileReader;G.onloadend=function(){var $=G.result;$=uA?$:$.replace(/^data:[^;]*;/,"data:attachment/file;"),y?y.location.href=$:location=$,y=null},G.readAsDataURL(N)}else{var J=x.URL||x.webkitURL,rA=J.createObjectURL(N);y?y.location=rA:location.href=rA,y=null,setTimeout(function(){J.revokeObjectURL(rA)},4e4)}});x.saveAs=E.saveAs=E,q.exports=E})?t.apply(D,[]):t)&&(q.exports=M)},7552(q){"use strict";q.exports=Math.min},7571(q,D,g){"use strict";g(8376),g(6401),g(2017);const t=g(3483),{swap32LE:B}=g(6016);q.exports=class J{constructor($){const Z="function"==typeof $.readUInt32BE&&"function"==typeof $.slice;if(Z||$ instanceof Uint8Array){let b;if(Z)this.highStart=$.readUInt32LE(0),this.errorValue=$.readUInt32LE(4),b=$.readUInt32LE(8),$=$.slice(12);else{const BA=new DataView($.buffer);this.highStart=BA.getUint32(0,!0),this.errorValue=BA.getUint32(4,!0),b=BA.getUint32(8,!0),$=$.subarray(12)}$=t($,new Uint8Array(b)),$=t($,new Uint8Array(b)),B($),this.data=new Uint32Array($.buffer)}else({data:this.data,highStart:this.highStart,errorValue:this.errorValue}=$)}get($){let Z;return $<0||$>1114111?this.errorValue:$<55296||$>56319&&$<=65535?(Z=(this.data[$>>5]<<2)+(31&$),this.data[Z]):$<=65535?(Z=(this.data[2048+($-55296>>5)]<<2)+(31&$),this.data[Z]):$>11)],Z=this.data[Z+($>>5&63)],Z=(Z<<2)+(31&$),this.data[Z]):this.data[this.data.length-4]}}},7596(q,D,g){"use strict";var t=g(6521);q.exports=function(){return!Object.assign||function(){if(!Object.assign)return!1;for(var Y="abcdefghijklmnopqrst",V=Y.split(""),d={},c=0;c ${$A(GA.kern)}`),_A="")}function le(){_A.length&&(mA.push(`<${_A}> 0`),_A=""),mA.length&&(B.addContent(`[${mA.join(" ")}] TJ`),mA=[])}for(let GA=0;GA0)for(;DA<0;)DA+=_A;B.dash(yA,{phase:DA})}function xA(yA){let DA=function(GA,ee,qA,Fe){this.error=Fe,this.nodeName=GA,this.nodeValue=qA,this.nodeType=ee,this.attributes=Object.create(null),this.childNodes=[],this.parentNode=null,this.id="",this.textContent="",this.classList=[]};DA.prototype.getAttribute=function(GA){return null!=this.attributes[GA]?this.attributes[GA]:null},DA.prototype.getElementById=function(GA){let ee=null;return function qA(Fe){if(!ee&&1===Fe.nodeType){Fe.id===GA&&(ee=Fe);for(let Le=0;Le/)){for(;ee=le();)qA.childNodes.push(ee),ee.parentNode=qA,qA.textContent+=3===ee.nodeType||4===ee.nodeType?ee.nodeValue:ee.textContent;return(GA=mA.match(/^<\/([\w:.-]+)\s*>/,!0))?(GA[1]===qA.nodeName||(tt('parseXml: tag not matching, opening "'+qA.nodeName+'" & closing "'+GA[1]+'"'),NA=!0),qA):(tt('parseXml: tag not matching, opening "'+qA.nodeName+'" & not closing'),NA=!0,qA)}if(mA.match(/^\/>/))return qA;tt('parseXml: tag could not be parsed "'+qA.nodeName+'"'),NA=!0}else{if(GA=mA.match(/^/))return new DA(null,8,GA,NA);if(GA=mA.match(/^<\?[\s\S]*?\?>/))return new DA(null,7,GA,NA);if(GA=mA.match(/^/))return new DA(null,10,GA,NA);if(GA=mA.match(/^/,!0))return new DA("#cdata-section",4,GA[1],NA);if(GA=mA.match(/^([^<]+)/,!0))return new DA("#text",3,QA(GA[1]),NA)}};for(;jA=le();)1!==jA.nodeType||_A?(1===jA.nodeType||3===jA.nodeType&&""!==jA.nodeValue.trim())&&tt("parseXml: data after document end has been discarded"):_A=jA;return mA.matchAll()&&tt("parseXml: parsing error"),_A}function QA(yA){return yA.replace(/&(?:#([0-9]+)|#[xX]([0-9A-Fa-f]+)|([0-9A-Za-z]+));/g,function(DA,mA,_A,jA){return mA?String.fromCharCode(parseInt(mA,10)):_A?String.fromCharCode(parseInt(_A,16)):jA&&U[jA]?String.fromCharCode(U[jA]):DA})}function gA(yA){let DA,mA;return yA=(yA||"").trim(),(DA=c[yA])?mA=[DA.slice(),1]:(DA=yA.match(/^cmyk\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9.]+)\s*\)$/i))?(DA[1]=parseInt(DA[1]),DA[2]=parseInt(DA[2]),DA[3]=parseInt(DA[3]),DA[4]=parseFloat(DA[4]),DA[1]<=100&&DA[2]<=100&&DA[3]<=100&&DA[4]<=100&&(mA=[DA.slice(1,5),1])):(DA=yA.match(/^rgba\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9.]+)\s*\)$/i))?(DA[1]=parseInt(DA[1]),DA[2]=parseInt(DA[2]),DA[3]=parseInt(DA[3]),DA[4]=parseFloat(DA[4]),DA[1]<256&&DA[2]<256&&DA[3]<256&&DA[4]<=1&&(mA=[DA.slice(1,4),DA[4]])):(DA=yA.match(/^rgb\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*\)$/i))?(DA[1]=parseInt(DA[1]),DA[2]=parseInt(DA[2]),DA[3]=parseInt(DA[3]),DA[1]<256&&DA[2]<256&&DA[3]<256&&(mA=[DA.slice(1,4),1])):(DA=yA.match(/^rgb\(\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*\)$/i))?(DA[1]=2.55*parseFloat(DA[1]),DA[2]=2.55*parseFloat(DA[2]),DA[3]=2.55*parseFloat(DA[3]),DA[1]<256&&DA[2]<256&&DA[3]<256&&(mA=[DA.slice(1,4),1])):(DA=yA.match(/^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i))?mA=[[parseInt(DA[1],16),parseInt(DA[2],16),parseInt(DA[3],16)],1]:(DA=yA.match(/^#([0-9a-f])([0-9a-f])([0-9a-f])$/i))&&(mA=[[17*parseInt(DA[1],16),17*parseInt(DA[2],16),17*parseInt(DA[3],16)],1]),Rt?Rt(mA,yA):mA}function JA(yA,DA,mA){let _A=yA[0].slice(),jA=yA[1]*DA;if(mA){for(let NA=0;NA=0;DA--)yA=Be(Dn[DA].savedMatrix,yA);return yA}function we(){return(new te).M(0,0).L(B.page.width,0).L(B.page.width,B.page.height).L(0,B.page.height).transform(kA(ae())).getBoundingBox()}function kA(yA){let DA=yA[0]*yA[3]-yA[1]*yA[2];return[yA[3]/DA,-yA[1]/DA,-yA[2]/DA,yA[0]/DA,(yA[2]*yA[5]-yA[3]*yA[4])/DA,(yA[1]*yA[4]-yA[0]*yA[5])/DA]}function CA(yA){let DA=$A(yA[0]),mA=$A(yA[1]),_A=$A(yA[2]),jA=$A(yA[3]),NA=$A(yA[4]),le=$A(yA[5]);if(ne(DA*jA-mA*_A,0))return[DA,mA,_A,jA,NA,le]}function iA(yA){let DA=yA[2]||0,mA=yA[1]||0,_A=yA[0]||0;if(bA(DA,0)&&bA(mA,0))return[];if(bA(DA,0))return[-_A/mA];{let jA=mA*mA-4*DA*_A;return ne(jA,0)&&jA>0?[(-mA+Math.sqrt(jA))/(2*DA),(-mA-Math.sqrt(jA))/(2*DA)]:bA(jA,0)?[-mA/(2*DA)]:[]}}function hA(yA,DA){return(DA[0]||0)+(DA[1]||0)*yA+(DA[2]||0)*yA*yA+(DA[3]||0)*yA*yA*yA}function bA(yA,DA){return Math.abs(yA-DA)<1e-10}function ne(yA,DA){return Math.abs(yA-DA)>=1e-10}function $A(yA){return yA>-1e21&&yA<1e21?Math.round(1e6*yA)/1e6:0}function P(yA){let _A,DA=new He((yA||"").trim()),mA=[1,0,0,1,0,0];for(;_A=DA.match(/^([A-Za-z]+)\s*[(]([^(]+)[)]/,!0);){let GA,jA=_A[1],NA=[],le=new He(_A[2].trim());for(;GA=le.matchNumber();)NA.push(Number(GA)),le.matchSeparator();if("matrix"===jA&&6===NA.length)mA=Be(mA,[NA[0],NA[1],NA[2],NA[3],NA[4],NA[5]]);else if("translate"===jA&&2===NA.length)mA=Be(mA,[1,0,0,1,NA[0],NA[1]]);else if("translate"===jA&&1===NA.length)mA=Be(mA,[1,0,0,1,NA[0],0]);else if("scale"===jA&&2===NA.length)mA=Be(mA,[NA[0],0,0,NA[1],0,0]);else if("scale"===jA&&1===NA.length)mA=Be(mA,[NA[0],0,0,NA[0],0,0]);else if("rotate"===jA&&3===NA.length){let ee=NA[0]*Math.PI/180;mA=Be(mA,[1,0,0,1,NA[1],NA[2]],[Math.cos(ee),Math.sin(ee),-Math.sin(ee),Math.cos(ee),0,0],[1,0,0,1,-NA[1],-NA[2]])}else if("rotate"===jA&&1===NA.length){let ee=NA[0]*Math.PI/180;mA=Be(mA,[Math.cos(ee),Math.sin(ee),-Math.sin(ee),Math.cos(ee),0,0])}else if("skewX"===jA&&1===NA.length){let ee=NA[0]*Math.PI/180;mA=Be(mA,[1,0,Math.tan(ee),1,0,0])}else{if("skewY"!==jA||1!==NA.length)return;{let ee=NA[0]*Math.PI/180;mA=Be(mA,[1,Math.tan(ee),0,1,0,0])}}DA.matchSeparator()}if(!DA.matchAll())return mA}function cA(yA,DA,mA,_A,jA,NA){let le=(yA||"").trim().match(/^(none)$|^x(Min|Mid|Max)Y(Min|Mid|Max)(?:\s+(meet|slice))?$/)||[],GA=le[1]||le[4]||"meet",Fe=DA/_A,Le=mA/jA,et={Min:0,Mid:.5,Max:1}[le[2]||"Mid"]-(NA||0),ct={Min:0,Mid:.5,Max:1}[le[3]||"Mid"]-(NA||0);return"slice"===GA?Le=Fe=Math.max(Fe,Le):"meet"===GA&&(Le=Fe=Math.min(Fe,Le)),[Fe,0,0,Le,et*(DA-_A*Fe),ct*(mA-jA*Le)]}function w(yA){let DA=Object.create(null);yA=(yA||"").trim().split(/;/);for(let mA=0;mAit&&(ze=it,it=ue,ue=ze),Oe>gt&&(ze=gt,gt=Oe,Oe=ze);let Ft=iA(Le);for(let Lt=0;Lt=0&&Ft[Lt]<=1){let ut=hA(Ft[Lt],qA);utit&&(it=ut)}let Mt=iA(et);for(let Lt=0;Lt=0&&Mt[Lt]<=1){let ut=hA(Mt[Lt],Fe);utgt&&(gt=ut)}return[ue,Oe,it,gt]},this.getPointAtLength=function(ze){if(bA(ze,0))return this.startPoint;if(bA(ze,this.totalLength))return this.endPoint;if(!(ze<0||ze>this.totalLength))for(let ue=1;ue<=ee;ue++){let Oe=ct[ue-1],it=ct[ue];if(Oe<=ze&&ze<=it){let gt=(ue-(it-ze)/(it-Oe))/ee,Ft=hA(gt,qA),Mt=hA(gt,Fe),Lt=hA(gt,Le),ut=hA(gt,et);return[Ft,Mt,Math.atan2(ut,Lt)]}}}},Pe=function(yA,DA,mA,_A){this.totalLength=Math.sqrt((mA-yA)*(mA-yA)+(_A-DA)*(_A-DA)),this.startPoint=[yA,DA,Math.atan2(_A-DA,mA-yA)],this.endPoint=[mA,_A,Math.atan2(_A-DA,mA-yA)],this.getBoundingBox=function(){return[Math.min(this.startPoint[0],this.endPoint[0]),Math.min(this.startPoint[1],this.endPoint[1]),Math.max(this.startPoint[0],this.endPoint[0]),Math.max(this.startPoint[1],this.endPoint[1])]},this.getPointAtLength=function(jA){if(jA>=0&&jA<=this.totalLength){let NA=jA/this.totalLength||0;return[this.startPoint[0]+NA*(this.endPoint[0]-this.startPoint[0]),this.startPoint[1]+NA*(this.endPoint[1]-this.startPoint[1]),this.startPoint[2]]}}},te=function(){this.pathCommands=[],this.pathSegments=[],this.startPoint=null,this.endPoint=null,this.totalLength=0;let jA,NA,le,yA=0,DA=0,mA=0,_A=0;this.move=function(GA,ee){return yA=mA=GA,DA=_A=ee,null},this.line=function(GA,ee){let qA=new Pe(mA,_A,GA,ee);return mA=GA,_A=ee,qA},this.curve=function(GA,ee,qA,Fe,Le,et){let ct=new _e(mA,_A,GA,ee,qA,Fe,Le,et);return mA=Le,_A=et,ct},this.close=function(){let GA=new Pe(mA,_A,yA,DA);return mA=yA,_A=DA,GA},this.addCommand=function(GA){this.pathCommands.push(GA);let ee=this[GA[0]].apply(this,GA.slice(3));ee&&(ee.hasStart=GA[1],ee.hasEnd=GA[2],this.startPoint=this.startPoint||ee.startPoint,this.endPoint=ee.endPoint,this.pathSegments.push(ee),this.totalLength+=ee.totalLength)},this.M=function(GA,ee){return this.addCommand(["move",!0,!0,GA,ee]),jA="M",this},this.m=function(GA,ee){return this.M(mA+GA,_A+ee)},this.Z=this.z=function(){return this.addCommand(["close",!0,!0]),jA="Z",this},this.L=function(GA,ee){return this.addCommand(["line",!0,!0,GA,ee]),jA="L",this},this.l=function(GA,ee){return this.L(mA+GA,_A+ee)},this.H=function(GA){return this.L(GA,_A)},this.h=function(GA){return this.L(mA+GA,_A)},this.V=function(GA){return this.L(mA,GA)},this.v=function(GA){return this.L(mA,_A+GA)},this.C=function(GA,ee,qA,Fe,Le,et){return this.addCommand(["curve",!0,!0,GA,ee,qA,Fe,Le,et]),jA="C",NA=qA,le=Fe,this},this.c=function(GA,ee,qA,Fe,Le,et){return this.C(mA+GA,_A+ee,mA+qA,_A+Fe,mA+Le,_A+et)},this.S=function(GA,ee,qA,Fe){return this.C(mA+("C"===jA?mA-NA:0),_A+("C"===jA?_A-le:0),GA,ee,qA,Fe)},this.s=function(GA,ee,qA,Fe){return this.C(mA+("C"===jA?mA-NA:0),_A+("C"===jA?_A-le:0),mA+GA,_A+ee,mA+qA,_A+Fe)},this.Q=function(GA,ee,qA,Fe){return this.addCommand(["curve",!0,!0,mA+.6666666666666666*(GA-mA),_A+2/3*(ee-_A),qA+2/3*(GA-qA),Fe+2/3*(ee-Fe),qA,Fe]),jA="Q",NA=GA,le=ee,this},this.q=function(GA,ee,qA,Fe){return this.Q(mA+GA,_A+ee,mA+qA,_A+Fe)},this.T=function(GA,ee){return this.Q(mA+("Q"===jA?mA-NA:0),_A+("Q"===jA?_A-le:0),GA,ee)},this.t=function(GA,ee){return this.Q(mA+("Q"===jA?mA-NA:0),_A+("Q"===jA?_A-le:0),mA+GA,_A+ee)},this.A=function(GA,ee,qA,Fe,Le,et,ct){if(bA(GA,0)||bA(ee,0))this.addCommand(["line",!0,!0,et,ct]);else{qA*=Math.PI/180,GA=Math.abs(GA),ee=Math.abs(ee),Fe=1*!!Fe,Le=1*!!Le;let ze=Math.cos(qA)*(mA-et)/2+Math.sin(qA)*(_A-ct)/2,ue=Math.cos(qA)*(_A-ct)/2-Math.sin(qA)*(mA-et)/2,Oe=ze*ze/(GA*GA)+ue*ue/(ee*ee);Oe>1&&(GA*=Math.sqrt(Oe),ee*=Math.sqrt(Oe));let it=Math.sqrt(Math.max(0,GA*GA*ee*ee-GA*GA*ue*ue-ee*ee*ze*ze)/(GA*GA*ue*ue+ee*ee*ze*ze)),gt=(Fe===Le?-1:1)*it*GA*ue/ee,Ft=(Fe===Le?1:-1)*it*ee*ze/GA,Mt=Math.cos(qA)*gt-Math.sin(qA)*Ft+(mA+et)/2,Lt=Math.sin(qA)*gt+Math.cos(qA)*Ft+(_A+ct)/2,ut=Math.atan2((ue-Ft)/ee,(ze-gt)/GA),pt=Math.atan2((-ue-Ft)/ee,(-ze-gt)/GA);0===Le&&pt-ut>0?pt-=2*Math.PI:1===Le&&pt-ut<0&&(pt+=2*Math.PI);let Mn=Math.ceil(Math.abs(pt-ut)/(Math.PI/pn));for(let rn=0;rnGA[2]&&(GA[2]=qA[2]),qA[1]GA[3]&&(GA[3]=qA[3])}for(let qA=0;qA=0&&GA<=this.totalLength){let ee;for(let qA=0;qAjA.selector.specificity||(DA[NA]=jA.css[NA],mA[NA]=jA.selector.specificity)}return DA}(yA),this.allowedChildren=[],this.attr=function(jA){if("function"==typeof yA.getAttribute)return yA.getAttribute(jA)},this.resolveUrl=function(jA){let NA=(jA||"").match(/^\s*(?:url\("(.*)#(.*)"\)|url\('(.*)#(.*)'\)|url\((.*)#(.*)\)|(.*)#(.*))\s*$/)||[],le=NA[1]||NA[3]||NA[5]||NA[7],GA=NA[2]||NA[4]||NA[6]||NA[8];if(GA){if(!le){let ee=M.getElementById(GA);if(ee)return-1===this.stack.indexOf(ee)?ee:void tt('SVGtoPDF: loop of circular references for id "'+GA+'"')}if(Cn){let ee=en[le];if(!ee){ee=Cn(le),function EA(yA){return"object"==typeof yA&&null!==yA&&"number"==typeof yA.length}(ee)||(ee=[ee]);for(let qA=0;qA=0&&le[3]>=0?le:NA},this.getPercent=function(jA,NA){let le=this.attr(jA),GA=new He((le||"").trim()),Fe=GA.matchNumber();return!Fe||(GA.match("%")&&(Fe*=.01),GA.matchAll())?NA:Math.max(0,Math.min(1,Fe))},this.chooseValue=function(jA){for(let NA=0;NA=0&&(GA=qA);break;case"stroke-miterlimit":qA=parseFloat(le),null!=qA&&qA>=1&&(GA=qA);break;case"word-spacing":case"letter-spacing":case"stroke-dashoffset":GA=this.computeLength(le,this.getViewport())}if(null!=GA)return mA[jA]=GA}}return mA[jA]=NA.inherit&&this.inherits?this.inherits.get(jA):NA.initial},this.getChildren=function(){if(null!=_A)return _A;let jA=[];for(let NA=0;NA0?NA:this.ref?this.ref.getChildren():[]},this.getPaint=function(NA,le,GA,ee){let qA="userSpaceOnUse"!==this.attr("patternUnits"),Fe="objectBoundingBox"===this.attr("patternContentUnits"),Le=this.getLength("x",qA?1:this.getParentVWidth(),0),et=this.getLength("y",qA?1:this.getParentVHeight(),0),ct=this.getLength("width",qA?1:this.getParentVWidth(),0),ze=this.getLength("height",qA?1:this.getParentVHeight(),0);Fe&&!qA?(Le=(Le-NA[0])/(NA[2]-NA[0])||0,et=(et-NA[1])/(NA[3]-NA[1])||0,ct=ct/(NA[2]-NA[0])||0,ze=ze/(NA[3]-NA[1])||0):!Fe&&qA&&(Le=NA[0]+Le*(NA[2]-NA[0]),et=NA[1]+et*(NA[3]-NA[1]),ct*=NA[2]-NA[0],ze*=NA[3]-NA[1]);let ue=this.getViewbox("viewBox",[0,0,ct,ze]),it=Be(cA((this.attr("preserveAspectRatio")||"").trim(),ct,ze,ue[2],ue[3],0),[1,0,0,1,-ue[0],-ue[1]]),gt=P(this.attr("patternTransform"));if(Fe&&(gt=Be([NA[2]-NA[0],0,0,NA[3]-NA[1],NA[0],NA[1]],gt)),gt=Be(gt,[1,0,0,1,Le,et]),(gt=CA(gt))&&(it=CA(it))&&(ct=$A(ct))&&(ze=$A(ze))){let Ft=Q([0,0,ct,ze]);return B.transform.apply(B,it),this.drawChildren(GA,ee),y(Ft),[uA(Ft,ct,ze,gt),le]}return mA?[mA[0],mA[1]*le]:void 0},this.getVWidth=function(){let NA="userSpaceOnUse"!==this.attr("patternUnits"),le=this.getLength("width",NA?1:this.getParentVWidth(),0);return this.getViewbox("viewBox",[0,0,le,0])[2]},this.getVHeight=function(){let NA="userSpaceOnUse"!==this.attr("patternUnits"),le=this.getLength("height",NA?1:this.getParentVHeight(),0);return this.getViewbox("viewBox",[0,0,0,le])[3]}},dA=function(yA,DA,mA){sA.call(this,yA,DA),this.allowedChildren=["stop"],this.ref=function(){let NA=this.getUrl("href")||this.getUrl("xlink:href");if(NA&&NA.nodeName===yA.nodeName)return new dA(NA,DA,mA)}.call(this);let _A=this.attr;this.attr=function(NA){let le=_A.call(this,NA);return null!=le||"href"===NA||"xlink:href"===NA?le:this.ref?this.ref.attr(NA):null};let jA=this.getChildren;this.getChildren=function(){let NA=jA.call(this);return NA.length>0?NA:this.ref?this.ref.getChildren():[]},this.getPaint=function(NA,le,GA,ee){let qA=this.getChildren();if(0===qA.length)return;if(1===qA.length){let ut=qA[0],pt=ut.get("stop-color");return"none"===pt?void 0:JA(pt,ut.get("stop-opacity")*le,ee)}let ct,ze,ue,Oe,it,gt,Fe="userSpaceOnUse"!==this.attr("gradientUnits"),Le=P(this.attr("gradientTransform")),et=this.attr("spreadMethod"),Ft=0,Mt=0,Lt=1;if(Fe&&(Le=Be([NA[2]-NA[0],0,0,NA[3]-NA[1],NA[0],NA[1]],Le)),Le=CA(Le)){if("linearGradient"===this.name)ze=this.getLength("x1",Fe?1:this.getVWidth(),0),ue=this.getLength("x2",Fe?1:this.getVWidth(),Fe?1:this.getVWidth()),Oe=this.getLength("y1",Fe?1:this.getVHeight(),0),it=this.getLength("y2",Fe?1:this.getVHeight(),0);else{ue=this.getLength("cx",Fe?1:this.getVWidth(),Fe?.5:.5*this.getVWidth()),it=this.getLength("cy",Fe?1:this.getVHeight(),Fe?.5:.5*this.getVHeight()),gt=this.getLength("r",Fe?1:this.getViewport(),Fe?.5:.5*this.getViewport()),ze=this.getLength("fx",Fe?1:this.getVWidth(),ue),Oe=this.getLength("fy",Fe?1:this.getVHeight(),it),gt<0&&tt("SvgElemGradient: negative r value");let ut=Math.sqrt(Math.pow(ue-ze,2)+Math.pow(it-Oe,2)),pt=1;ut>gt&&(pt=gt/ut,ze=ue+(ze-ue)*pt,Oe=it+(Oe-it)*pt),gt=Math.max(gt,ut*pt*1.000001)}if("reflect"===et||"repeat"===et){let ut=kA(Le),pt=KA([NA[0],NA[1]],ut),Mn=KA([NA[2],NA[1]],ut),rn=KA([NA[2],NA[3]],ut),nn=KA([NA[0],NA[3]],ut);"linearGradient"===this.name?(Ft=Math.max((pt[0]-ue)*(ue-ze)+(pt[1]-it)*(it-Oe),(Mn[0]-ue)*(ue-ze)+(Mn[1]-it)*(it-Oe),(rn[0]-ue)*(ue-ze)+(rn[1]-it)*(it-Oe),(nn[0]-ue)*(ue-ze)+(nn[1]-it)*(it-Oe))/(Math.pow(ue-ze,2)+Math.pow(it-Oe,2)),Mt=Math.max((pt[0]-ze)*(ze-ue)+(pt[1]-Oe)*(Oe-it),(Mn[0]-ze)*(ze-ue)+(Mn[1]-Oe)*(Oe-it),(rn[0]-ze)*(ze-ue)+(rn[1]-Oe)*(Oe-it),(nn[0]-ze)*(ze-ue)+(nn[1]-Oe)*(Oe-it))/(Math.pow(ue-ze,2)+Math.pow(it-Oe,2))):Ft=Math.sqrt(Math.max(Math.pow(pt[0]-ue,2)+Math.pow(pt[1]-it,2),Math.pow(Mn[0]-ue,2)+Math.pow(Mn[1]-it,2),Math.pow(rn[0]-ue,2)+Math.pow(rn[1]-it,2),Math.pow(nn[0]-ue,2)+Math.pow(nn[1]-it,2)))/gt-1,Ft=Math.ceil(Ft+.5),Mt=Math.ceil(Mt+.5),Lt=Mt+1+Ft}ct="linearGradient"===this.name?B.linearGradient(ze-Mt*(ue-ze),Oe-Mt*(it-Oe),ue+Ft*(ue-ze),it+Ft*(it-Oe)):B.radialGradient(ze,Oe,0,ue,it,gt+Ft*gt);for(let ut=0;ut0&&ct.stop((ut+0)/Lt,Vt[0],Vt[1]),ct.stop((ut+pt)/(Ft+Mt+1),Vt[0],Vt[1]),rn===qA.length-1&&pt<1&&ct.stop((ut+1)/Lt,Vt[0],Vt[1])}}return ct.setTransform.apply(ct,Le),[ct,1]}return mA?[mA[0],mA[1]*le]:void 0}},ve=function(yA,DA){T.call(this,yA,DA),this.dashScale=1,this.getBoundingShape=function(){return this.shape},this.getTransformation=function(){return this.get("transform")},this.drawInDocument=function(mA,_A){if("hidden"!==this.get("visibility")&&this.shape){if(B.save(),"non-scaling-stroke"===this.get("vector-effect")?this.shape.transform(this.getTransformation()):this.transform(),this.clip(),mA)this.shape.insertInDocument(),BA(x.white),B.fill(this.get("clip-rule"));else{let NA;this.mask()&&(NA=Q(we()));let le=this.shape.getSubPaths(),GA=this.getFill(mA,_A),ee=this.getStroke(mA,_A),qA=this.get("stroke-width"),Fe=this.get("stroke-linecap");if("non-scaling-stroke"===this.get("vector-effect")&&(qA/=function ie(){const yA=we();return B.page.width/yA[2]}()),GA||ee){if(GA&&BA(GA),ee){for(let Oe=0;Oe0&&le[Oe].startPoint&&le[Oe].startPoint.length>1){let it=le[Oe].startPoint[0],gt=le[Oe].startPoint[1];BA(ee),"square"===Fe?B.rect(it-.5*qA,gt-.5*qA,qA,qA):"round"===Fe&&B.circle(it,gt,.5*qA),B.fill()}let ze=this.get("stroke-dasharray"),ue=this.get("stroke-dashoffset");if(ne(this.dashScale,1)){for(let Oe=0;Oe0&&le[ze].insertInDocument();GA&&ee?B.fillAndStroke(this.get("fill-rule")):GA?B.fill(this.get("fill-rule")):ee&&B.stroke()}let Le=this.get("marker-start"),et=this.get("marker-mid"),ct=this.get("marker-end");if("none"!==Le||"none"!==et||"none"!==ct){let ze=this.shape.getMarkers();if("none"!==Le&&ze.length>0&&new st(Le,null).drawMarker(!1,_A,ze[0],qA),"none"!==et)for(let ue=1;ue0&&new st(ct,null).drawMarker(!1,_A,ze[ze.length-1],qA)}NA&&(y(NA),K(NA))}B.restore()}}},qe=function(yA,DA){ve.call(this,yA,DA);let mA=this.getLength("x",this.getVWidth(),0),_A=this.getLength("y",this.getVHeight(),0),jA=this.getLength("width",this.getVWidth(),0),NA=this.getLength("height",this.getVHeight(),0),le=this.getLength("rx",this.getVWidth()),GA=this.getLength("ry",this.getVHeight());void 0===le&&void 0===GA?le=GA=0:void 0===le&&void 0!==GA?le=GA:void 0!==le&&void 0===GA&&(GA=le),jA>0&&NA>0?le&&GA?(le=Math.min(le,.5*jA),GA=Math.min(GA,.5*NA),this.shape=(new te).M(mA+le,_A).L(mA+jA-le,_A).A(le,GA,0,0,1,mA+jA,_A+GA).L(mA+jA,_A+NA-GA).A(le,GA,0,0,1,mA+jA-le,_A+NA).L(mA+le,_A+NA).A(le,GA,0,0,1,mA,_A+NA-GA).L(mA,_A+GA).A(le,GA,0,0,1,mA+le,_A).Z()):this.shape=(new te).M(mA,_A).L(mA+jA,_A).L(mA+jA,_A+NA).L(mA,_A+NA).Z():this.shape=new te},W=function(yA,DA){ve.call(this,yA,DA);let mA=this.getLength("cx",this.getVWidth(),0),_A=this.getLength("cy",this.getVHeight(),0),jA=this.getLength("r",this.getViewport(),0);this.shape=jA>0?(new te).M(mA+jA,_A).A(jA,jA,0,0,1,mA-jA,_A).A(jA,jA,0,0,1,mA+jA,_A).Z():new te},Ie=function(yA,DA){ve.call(this,yA,DA);let mA=this.getLength("cx",this.getVWidth(),0),_A=this.getLength("cy",this.getVHeight(),0),jA=this.getLength("rx",this.getVWidth(),0),NA=this.getLength("ry",this.getVHeight(),0);this.shape=jA>0&&NA>0?(new te).M(mA+jA,_A).A(jA,NA,0,0,1,mA-jA,_A).A(jA,NA,0,0,1,mA+jA,_A).Z():new te},de=function(yA,DA){ve.call(this,yA,DA);let mA=this.getLength("x1",this.getVWidth(),0),_A=this.getLength("y1",this.getVHeight(),0),jA=this.getLength("x2",this.getVWidth(),0),NA=this.getLength("y2",this.getVHeight(),0);this.shape=(new te).M(mA,_A).L(jA,NA)},SA=function(yA,DA){ve.call(this,yA,DA);let mA=this.getNumberList("points");this.shape=new te;for(let _A=0;_A0?mA:void 0,this.dashScale=void 0!==this.pathLength?this.shape.totalLength/this.pathLength:1},st=function(yA,DA){v.call(this,yA,DA);let mA=this.getLength("markerWidth",this.getParentVWidth(),3),_A=this.getLength("markerHeight",this.getParentVHeight(),3),jA=this.getViewbox("viewBox",[0,0,mA,_A]);this.getVWidth=function(){return jA[2]},this.getVHeight=function(){return jA[3]},this.drawMarker=function(NA,le,GA,ee){B.save();let qA=this.attr("orient"),Fe=this.attr("markerUnits"),Le="auto"===qA?GA[2]:(parseFloat(qA)||0)*Math.PI/180,et="userSpaceOnUse"===Fe?1:ee;B.transform(Math.cos(Le)*et,Math.sin(Le)*et,-Math.sin(Le)*et,Math.cos(Le)*et,GA[0],GA[1]);let Oe,ct=this.getLength("refX",this.getVWidth(),0),ze=this.getLength("refY",this.getVHeight(),0),ue=cA(this.attr("preserveAspectRatio"),mA,_A,jA[2],jA[3],.5);"hidden"===this.get("overflow")&&B.rect(ue[0]*(jA[0]+jA[2]/2-ct)-mA/2,ue[3]*(jA[1]+jA[3]/2-ze)-_A/2,mA,_A).clip(),B.transform.apply(B,ue),B.translate(-ct,-ze),this.get("opacity")<1&&!NA&&(Oe=Q(we())),this.drawChildren(NA,le),Oe&&(y(Oe),B.fillOpacity(this.get("opacity")),K(Oe)),B.restore()}},We=function(yA,DA){v.call(this,yA,DA),this.useMask=function(mA){let _A=Q(we());B.save(),B.transform.apply(B,this.get("transform")),"objectBoundingBox"===this.attr("clipPathUnits")&&B.transform(mA[2]-mA[0],0,0,mA[3]-mA[1],mA[0],mA[1]),this.clip(),this.drawChildren(!0,!1),B.restore(),y(_A),lA(_A,!0)}},Ze=function(yA,DA){v.call(this,yA,DA),this.useMask=function(mA){let jA,NA,le,GA,_A=Q(we());B.save(),"userSpaceOnUse"===this.attr("maskUnits")?(jA=this.getLength("x",this.getVWidth(),-.1*(mA[2]-mA[0])+mA[0]),NA=this.getLength("y",this.getVHeight(),-.1*(mA[3]-mA[1])+mA[1]),le=this.getLength("width",this.getVWidth(),1.2*(mA[2]-mA[0])),GA=this.getLength("height",this.getVHeight(),1.2*(mA[3]-mA[1]))):(jA=this.getLength("x",this.getVWidth(),-.1)*(mA[2]-mA[0])+mA[0],NA=this.getLength("y",this.getVHeight(),-.1)*(mA[3]-mA[1])+mA[1],le=this.getLength("width",this.getVWidth(),1.2)*(mA[2]-mA[0]),GA=this.getLength("height",this.getVHeight(),1.2)*(mA[3]-mA[1])),"objectBoundingBox"===this.attr("maskContentUnits")&&B.transform(mA[2]-mA[0],0,0,mA[3]-mA[1],mA[0],mA[1]),this.clip(),this.drawChildren(!1,!0),B.restore(),y(_A),lA(_A,!0)}},Ct=function(yA,DA){T.call(this,yA,DA),this.allowedChildren=["tspan","#text","#cdata-section","a"],this.isText=!0,this.getBoundingShape=function(){let mA=new te;for(let _A=0;_A0?NA:this.pathObject.totalLength,this.pathScale=this.pathObject.totalLength/this.pathLength}else if((jA=this.getUrl("href")||this.getUrl("xlink:href"))&&"path"===jA.nodeName){let NA=new pe(jA,this);this.pathObject=NA.shape.clone().transform(NA.get("transform")),this.pathLength=this.chooseValue(NA.pathLength,this.pathObject.totalLength),this.pathScale=this.pathObject.totalLength/this.pathLength}},zt=function(yA,DA){Ct.call(this,yA,DA),this.allowedChildren=["textPath","tspan","#text","#cdata-section","a"],function(mA){let GA,ee,_A="",jA=yA.textContent,NA=[],le=[],qA=0,Fe=0;function Le(){if(le.length){let ue=le[le.length-1],gt={startltr:0,middleltr:.5,endltr:1,startrtl:1,middlertl:.5,endrtl:0}[GA+ee]*(ue.x+ue.width-le[0].x)||0;for(let Ft=0;Ftit||Lt<0)ue._pos[Mt].hidden=!0;else{let ut=Oe.getPointAtLength(Lt*gt);ne(gt,1)&&(ue._pos[Mt].scale*=gt,ue._pos[Mt].width*=gt),ue._pos[Mt].x=ut[0]-.5*ue._pos[Mt].width*Math.cos(ut[2])-ue._pos[Mt].y*Math.sin(ut[2]),ue._pos[Mt].y=ut[1]-.5*ue._pos[Mt].width*Math.sin(ut[2])+ue._pos[Mt].y*Math.cos(ut[2]),ue._pos[Mt].rotate=ut[2]+ue._pos[Mt].rotate,ue._pos[Mt].continuous=!1}}}else for(let Ft=0;Ft0&&ut<1/0)for(let pt=0;pt=2){let ut=(Oe-(Lt-Mt))/(ue.length-1);for(let pt=0;pt>>2]}},t.pad.Iso10126)},7723(q,D,g){"use strict";q.exports=B;var t=g(8569);function B(M){if(!(this instanceof B))return new B(M);t.call(this,M)}g(9784)(B,t),B.prototype._transform=function(M,Y,V){V(null,M)}},7756(q,D,g){"use strict";var t=function(B){return B&&B.Math===Math&&B};q.exports=t("object"==typeof globalThis&&globalThis)||t("object"==typeof window&&window)||t("object"==typeof self&&self)||t("object"==typeof g.g&&g.g)||t("object"==typeof this&&this)||function(){return this}()||Function("return this")()},7770(q){"use strict";q.exports=SyntaxError},7801(q,D,g){"use strict";var t=g(9964);function B(RA){return(B="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(PA){return typeof PA}:function(PA){return PA&&"function"==typeof Symbol&&PA.constructor===Symbol&&PA!==Symbol.prototype?"symbol":typeof PA})(RA)}function M(RA,PA){for(var XA=0;XA1?XA-1:0),fe=1;fe1?XA-1:0),fe=1;fe1?XA-1:0),fe=1;fe1?XA-1:0),fe=1;fe=0&&"[object Array]"!==M(x)&&"callee"in x&&"[object Function]"===M(x.callee)},d=function(){return Y(arguments)}();Y.isLegacyArguments=V,q.exports=d?Y:V},7913(q,D,g){"use strict";var t=g(8651),B=g(6601),M=B(t("String.prototype.indexOf"));q.exports=function(V,d){var c=t(V,!!d);return"function"==typeof c&&M(V,".prototype.")>-1?B(c):c}},7920(q,D,g){"use strict";var M={};M[g(8663)("toStringTag")]="z",q.exports="[object z]"===String(M)},7984(q,D,g){var t=g(614),_=10,Q=11;function b(eA,UA,xA){this.prefix=new Uint8Array(eA.length),this.transform=UA,this.suffix=new Uint8Array(xA.length);for(var QA=0;QA'),new b("",0,"\n"),new b("",3,""),new b("",0,"]"),new b("",0," for "),new b("",14,""),new b("",2,""),new b("",0," a "),new b("",0," that "),new b(" ",_,""),new b("",0,". "),new b(".",0,""),new b(" ",0,", "),new b("",15,""),new b("",0," with "),new b("",0,"'"),new b("",0," from "),new b("",0," by "),new b("",16,""),new b("",17,""),new b(" the ",0,""),new b("",4,""),new b("",0,". The "),new b("",Q,""),new b("",0," on "),new b("",0," as "),new b("",0," is "),new b("",7,""),new b("",1,"ing "),new b("",0,"\n\t"),new b("",0,":"),new b(" ",0,". "),new b("",0,"ed "),new b("",20,""),new b("",18,""),new b("",6,""),new b("",0,"("),new b("",_,", "),new b("",8,""),new b("",0," at "),new b("",0,"ly "),new b(" the ",0," of "),new b("",5,""),new b("",9,""),new b(" ",_,", "),new b("",_,'"'),new b(".",0,"("),new b("",Q," "),new b("",_,'">'),new b("",0,'="'),new b(" ",0,"."),new b(".com/",0,""),new b(" the ",0," of the "),new b("",_,"'"),new b("",0,". This "),new b("",0,","),new b(".",0," "),new b("",_,"("),new b("",_,"."),new b("",0," not "),new b(" ",0,'="'),new b("",0,"er "),new b(" ",Q," "),new b("",0,"al "),new b(" ",Q,""),new b("",0,"='"),new b("",Q,'"'),new b("",_,". "),new b(" ",0,"("),new b("",0,"ful "),new b(" ",_,". "),new b("",0,"ive "),new b("",0,"less "),new b("",Q,"'"),new b("",0,"est "),new b(" ",_,"."),new b("",Q,'">'),new b(" ",0,"='"),new b("",_,","),new b("",0,"ize "),new b("",Q,"."),new b("\xc2\xa0",0,""),new b(" ",0,","),new b("",_,'="'),new b("",Q,'="'),new b("",0,"ous "),new b("",Q,", "),new b("",_,"='"),new b(" ",_,","),new b(" ",Q,'="'),new b(" ",Q,", "),new b("",Q,","),new b("",Q,"("),new b("",Q,". "),new b(" ",Q,"."),new b("",Q,"='"),new b(" ",Q,". "),new b(" ",_,'="'),new b(" ",Q,"='"),new b(" ",_,"='")];function L(eA,UA){return eA[UA]<192?(eA[UA]>=97&&eA[UA]<=122&&(eA[UA]^=32),1):eA[UA]<224?(eA[UA+1]^=32,2):(eA[UA+2]^=5,3)}D.kTransforms=BA,D.kNumTransforms=BA.length,D.transformDictionaryWord=function(eA,UA,xA,QA,gA){var kA,JA=BA[gA].prefix,Be=BA[gA].suffix,KA=BA[gA].transform,ae=KA<12?0:KA-11,we=0,ie=UA;ae>QA&&(ae=QA);for(var CA=0;CA0;){var iA=L(eA,kA);kA+=iA,QA-=iA}for(var hA=0;hAthis.buffer.length&&(Y=this.buffer.length-this.pos);for(var V=0;Vthis.buffer.length)throw new Error("Output buffer is not large enough");return this.buffer.set(B.subarray(0,M),this.pos),this.pos+=M,M},D.y=t},8261(q,D,g){"use strict";var B,t=g(9964);q.exports=xA,xA.ReadableState=UA,g(4785);var N,Y=function(j,RA){return j.listeners(RA).length},V=g(9018),d=g(783).Buffer,c=(typeof g.g<"u"?g.g:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},E=g(7199);N=E&&E.debuglog?E.debuglog("stream"):function(){};var $,Z,b,_=g(182),Q=g(7385),K=g(8130).getHighWaterMark,lA=g(3797).F,uA=lA.ERR_INVALID_ARG_TYPE,G=lA.ERR_STREAM_PUSH_AFTER_EOF,J=lA.ERR_METHOD_NOT_IMPLEMENTED,rA=lA.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;g(9784)(xA,V);var BA=Q.errorOrDestroy,L=["error","close","destroy","pause","resume"];function UA(wA,j,RA){B=B||g(4903),"boolean"!=typeof RA&&(RA=j instanceof B),this.objectMode=!!(wA=wA||{}).objectMode,RA&&(this.objectMode=this.objectMode||!!wA.readableObjectMode),this.highWaterMark=K(this,wA,"readableHighWaterMark",RA),this.buffer=new _,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.paused=!0,this.emitClose=!1!==wA.emitClose,this.autoDestroy=!!wA.autoDestroy,this.destroyed=!1,this.defaultEncoding=wA.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,wA.encoding&&($||($=g(3143).I),this.decoder=new $(wA.encoding),this.encoding=wA.encoding)}function xA(wA){if(B=B||g(4903),!(this instanceof xA))return new xA(wA);this._readableState=new UA(wA,this,this instanceof B),this.readable=!0,wA&&("function"==typeof wA.read&&(this._read=wA.read),"function"==typeof wA.destroy&&(this._destroy=wA.destroy)),V.call(this)}function QA(wA,j,RA,PA,XA){N("readableAddChunk",j);var fe,vA=wA._readableState;if(null===j)vA.reading=!1,function we(wA,j){if(N("onEofChunk"),!j.ended){if(j.decoder){var RA=j.decoder.end();RA&&RA.length&&(j.buffer.push(RA),j.length+=j.objectMode?1:RA.length)}j.ended=!0,j.sync?ie(wA):(j.needReadable=!1,j.emittedReadable||(j.emittedReadable=!0,kA(wA)))}}(wA,vA);else if(XA||(fe=function JA(wA,j){var RA;return!function U(wA){return d.isBuffer(wA)||wA instanceof c}(j)&&"string"!=typeof j&&void 0!==j&&!wA.objectMode&&(RA=new uA("chunk",["string","Buffer","Uint8Array"],j)),RA}(vA,j)),fe)BA(wA,fe);else if(vA.objectMode||j&&j.length>0)if("string"!=typeof j&&!vA.objectMode&&Object.getPrototypeOf(j)!==d.prototype&&(j=function x(wA){return d.from(wA)}(j)),PA)vA.endEmitted?BA(wA,new rA):gA(wA,vA,j,!0);else if(vA.ended)BA(wA,new G);else{if(vA.destroyed)return!1;vA.reading=!1,vA.decoder&&!RA?(j=vA.decoder.write(j),vA.objectMode||0!==j.length?gA(wA,vA,j,!1):CA(wA,vA)):gA(wA,vA,j,!1)}else PA||(vA.reading=!1,CA(wA,vA));return!vA.ended&&(vA.lengthj.highWaterMark&&(j.highWaterMark=function KA(wA){return wA>=Be?wA=Be:(wA--,wA|=wA>>>1,wA|=wA>>>2,wA|=wA>>>4,wA|=wA>>>8,wA|=wA>>>16,wA++),wA}(wA)),wA<=j.length?wA:j.ended?j.length:(j.needReadable=!0,0))}function ie(wA){var j=wA._readableState;N("emitReadable",j.needReadable,j.emittedReadable),j.needReadable=!1,j.emittedReadable||(N("emitReadable",j.flowing),j.emittedReadable=!0,t.nextTick(kA,wA))}function kA(wA){var j=wA._readableState;N("emitReadable_",j.destroyed,j.length,j.ended),!j.destroyed&&(j.length||j.ended)&&(wA.emit("readable"),j.emittedReadable=!1),j.needReadable=!j.flowing&&!j.ended&&j.length<=j.highWaterMark,P(wA)}function CA(wA,j){j.readingMore||(j.readingMore=!0,t.nextTick(iA,wA,j))}function iA(wA,j){for(;!j.reading&&!j.ended&&(j.length0,j.resumeScheduled&&!j.paused?j.flowing=!0:wA.listenerCount("data")>0&&wA.resume()}function ne(wA){N("readable nexttick read 0"),wA.read(0)}function EA(wA,j){N("resume",j.reading),j.reading||wA.read(0),j.resumeScheduled=!1,wA.emit("resume"),P(wA),j.flowing&&!j.reading&&wA.read(0)}function P(wA){var j=wA._readableState;for(N("flow",j.flowing);j.flowing&&null!==wA.read(););}function cA(wA,j){return 0===j.length?null:(j.objectMode?RA=j.buffer.shift():!wA||wA>=j.length?(RA=j.decoder?j.buffer.join(""):1===j.buffer.length?j.buffer.first():j.buffer.concat(j.length),j.buffer.clear()):RA=j.buffer.consume(wA,j.decoder),RA);var RA}function w(wA){var j=wA._readableState;N("endReadable",j.endEmitted),j.endEmitted||(j.ended=!0,t.nextTick(H,j,wA))}function H(wA,j){if(N("endReadableNT",wA.endEmitted,wA.length),!wA.endEmitted&&0===wA.length&&(wA.endEmitted=!0,j.readable=!1,j.emit("end"),wA.autoDestroy)){var RA=j._writableState;(!RA||RA.autoDestroy&&RA.finished)&&j.destroy()}}function TA(wA,j){for(var RA=0,PA=wA.length;RA=j.highWaterMark:j.length>0)||j.ended))return N("read: emitReadable",j.length,j.ended),0===j.length&&j.ended?w(this):ie(this),null;if(0===(wA=ae(wA,j))&&j.ended)return 0===j.length&&w(this),null;var XA,PA=j.needReadable;return N("need readable",PA),(0===j.length||j.length-wA0?cA(wA,j):null)?(j.needReadable=j.length<=j.highWaterMark,wA=0):(j.length-=wA,j.awaitDrain=0),0===j.length&&(j.ended||(j.needReadable=!0),RA!==wA&&j.ended&&w(this)),null!==XA&&this.emit("data",XA),XA},xA.prototype._read=function(wA){BA(this,new J("_read()"))},xA.prototype.pipe=function(wA,j){var RA=this,PA=this._readableState;switch(PA.pipesCount){case 0:PA.pipes=wA;break;case 1:PA.pipes=[PA.pipes,wA];break;default:PA.pipes.push(wA)}PA.pipesCount+=1,N("pipe count=%d opts=%j",PA.pipesCount,j);var vA=j&&!1===j.end||wA===t.stdout||wA===t.stderr?v:ye;function ye(){N("onend"),wA.end()}PA.endEmitted?t.nextTick(vA):RA.once("end",vA),wA.on("unpipe",function fe(u,m){N("onunpipe"),u===RA&&m&&!1===m.hasUnpiped&&(m.hasUnpiped=!0,function _e(){N("cleanup"),wA.removeListener("close",sA),wA.removeListener("finish",T),wA.removeListener("drain",Ge),wA.removeListener("error",te),wA.removeListener("unpipe",fe),RA.removeListener("end",ye),RA.removeListener("end",v),RA.removeListener("data",Pe),He=!0,PA.awaitDrain&&(!wA._writableState||wA._writableState.needDrain)&&Ge()}())});var Ge=function hA(wA){return function(){var RA=wA._readableState;N("pipeOnDrain",RA.awaitDrain),RA.awaitDrain&&RA.awaitDrain--,0===RA.awaitDrain&&Y(wA,"data")&&(RA.flowing=!0,P(wA))}}(RA);wA.on("drain",Ge);var He=!1;function Pe(u){N("ondata");var m=wA.write(u);N("dest.write",m),!1===m&&((1===PA.pipesCount&&PA.pipes===wA||PA.pipesCount>1&&-1!==TA(PA.pipes,wA))&&!He&&(N("false write response, pause",PA.awaitDrain),PA.awaitDrain++),RA.pause())}function te(u){N("onerror",u),v(),wA.removeListener("error",te),0===Y(wA,"error")&&BA(wA,u)}function sA(){wA.removeListener("finish",T),v()}function T(){N("onfinish"),wA.removeListener("close",sA),v()}function v(){N("unpipe"),RA.unpipe(wA)}return RA.on("data",Pe),function eA(wA,j,RA){if("function"==typeof wA.prependListener)return wA.prependListener(j,RA);wA._events&&wA._events[j]?Array.isArray(wA._events[j])?wA._events[j].unshift(RA):wA._events[j]=[RA,wA._events[j]]:wA.on(j,RA)}(wA,"error",te),wA.once("close",sA),wA.once("finish",T),wA.emit("pipe",RA),PA.flowing||(N("pipe resume"),RA.resume()),wA},xA.prototype.unpipe=function(wA){var j=this._readableState,RA={hasUnpiped:!1};if(0===j.pipesCount)return this;if(1===j.pipesCount)return wA&&wA!==j.pipes||(wA||(wA=j.pipes),j.pipes=null,j.pipesCount=0,j.flowing=!1,wA&&wA.emit("unpipe",this,RA)),this;if(!wA){var PA=j.pipes,XA=j.pipesCount;j.pipes=null,j.pipesCount=0,j.flowing=!1;for(var vA=0;vA0,!1!==PA.flowing&&this.resume()):"readable"===wA&&!PA.endEmitted&&!PA.readableListening&&(PA.readableListening=PA.needReadable=!0,PA.flowing=!1,PA.emittedReadable=!1,N("on readable",PA.length,PA.reading),PA.length?ie(this):PA.reading||t.nextTick(ne,this)),RA},xA.prototype.removeListener=function(wA,j){var RA=V.prototype.removeListener.call(this,wA,j);return"readable"===wA&&t.nextTick(bA,this),RA},xA.prototype.removeAllListeners=function(wA){var j=V.prototype.removeAllListeners.apply(this,arguments);return("readable"===wA||void 0===wA)&&t.nextTick(bA,this),j},xA.prototype.resume=function(){var wA=this._readableState;return wA.flowing||(N("resume"),wA.flowing=!wA.readableListening,function $A(wA,j){j.resumeScheduled||(j.resumeScheduled=!0,t.nextTick(EA,wA,j))}(this,wA)),wA.paused=!1,this},xA.prototype.pause=function(){return N("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(N("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},xA.prototype.wrap=function(wA){var j=this,RA=this._readableState,PA=!1;for(var XA in wA.on("end",function(){if(N("wrapped end"),RA.decoder&&!RA.ended){var fe=RA.decoder.end();fe&&fe.length&&j.push(fe)}j.push(null)}),wA.on("data",function(fe){N("wrapped data"),RA.decoder&&(fe=RA.decoder.write(fe)),RA.objectMode&&null==fe||!(RA.objectMode||fe&&fe.length)||j.push(fe)||(PA=!0,wA.pause())}),wA)void 0===this[XA]&&"function"==typeof wA[XA]&&(this[XA]=function(ye){return function(){return wA[ye].apply(wA,arguments)}}(XA));for(var vA=0;vA0?B(Y,9007199254740991):0}},8300(q,D,g){"use strict";var t=g(4483);q.exports=t&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},8358(q,D,g){"use strict";var B,t;q.exports=(t=g(6861),g(2858),t.mode.ECB=((B=t.lib.BlockCipherMode.extend()).Encryptor=B.extend({processBlock:function(M,Y){this._cipher.encryptBlock(M,Y)}}),B.Decryptor=B.extend({processBlock:function(M,Y){this._cipher.decryptBlock(M,Y)}}),B),t.mode.ECB)},8376(q,D,g){"use strict";var t=g(4074),B=g(3161),M=g(3018),Y=g(9391),V=g(8993),d=g(1212),c=g(299),x=t.aTypedArray,U=t.exportTypedArrayMethod,E=d("".slice);U("fill",function(Q){var y=arguments.length;x(this);var K="Big"===E(Y(this),0,3)?M(Q):+Q;return V(B,this,K,y>1?arguments[1]:void 0,y>2?arguments[2]:void 0)},c(function(){var _=0;return new Int8Array(2).fill({valueOf:function(){return _++}}),1!==_}))},8395(q,D,g){"use strict";D._=g(1635).__decorate},8404(q,D,g){"use strict";var t=g(3746),B=Object.prototype.toString,M=Object.prototype.hasOwnProperty;q.exports=function(U,E,N){if(!t(E))throw new TypeError("iterator must be a function");var _;arguments.length>=3&&(_=N),function c(x){return"[object Array]"===B.call(x)}(U)?function(U,E,N){for(var _=0,Q=U.length;_"u")return!1;for(var Q in window)try{if(!E["$"+Q]&&B.call(window,Q)&&null!==window[Q]&&"object"==typeof window[Q])try{U(window[Q])}catch{return!0}}catch{return!0}return!1}();t=function(y){var K=null!==y&&"object"==typeof y,lA="[object Function]"===M.call(y),uA=Y(y),G=K&&"[object String]"===M.call(y),J=[];if(!K&&!lA&&!uA)throw new TypeError("Object.keys called on a non-object");var rA=c&&lA;if(G&&y.length>0&&!B.call(y,0))for(var $=0;$0)for(var Z=0;Z"u"||!N)return U(Q);try{return U(Q)}catch{return!1}}(y),L=0;L"u"||!BA?t:BA(Uint8Array),JA={__proto__:null,"%AggregateError%":typeof AggregateError>"u"?t:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?t:ArrayBuffer,"%ArrayIteratorPrototype%":b&&BA?BA([][Symbol.iterator]()):t,"%AsyncFromSyncIteratorPrototype%":t,"%AsyncFunction%":QA,"%AsyncGenerator%":QA,"%AsyncGeneratorFunction%":QA,"%AsyncIteratorPrototype%":QA,"%Atomics%":typeof Atomics>"u"?t:Atomics,"%BigInt%":typeof BigInt>"u"?t:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?t:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?t:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?t:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":M,"%eval%":eval,"%EvalError%":Y,"%Float16Array%":typeof Float16Array>"u"?t:Float16Array,"%Float32Array%":typeof Float32Array>"u"?t:Float32Array,"%Float64Array%":typeof Float64Array>"u"?t:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?t:FinalizationRegistry,"%Function%":uA,"%GeneratorFunction%":QA,"%Int8Array%":typeof Int8Array>"u"?t:Int8Array,"%Int16Array%":typeof Int16Array>"u"?t:Int16Array,"%Int32Array%":typeof Int32Array>"u"?t:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":b&&BA?BA(BA([][Symbol.iterator]())):t,"%JSON%":"object"==typeof JSON?JSON:t,"%Map%":typeof Map>"u"?t:Map,"%MapIteratorPrototype%":typeof Map>"u"||!b||!BA?t:BA((new Map)[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":B,"%Object.getOwnPropertyDescriptor%":J,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?t:Promise,"%Proxy%":typeof Proxy>"u"?t:Proxy,"%RangeError%":V,"%ReferenceError%":d,"%Reflect%":typeof Reflect>"u"?t:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?t:Set,"%SetIteratorPrototype%":typeof Set>"u"||!b||!BA?t:BA((new Set)[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?t:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":b&&BA?BA(""[Symbol.iterator]()):t,"%Symbol%":b?Symbol:t,"%SyntaxError%":c,"%ThrowTypeError%":Z,"%TypedArray%":gA,"%TypeError%":x,"%Uint8Array%":typeof Uint8Array>"u"?t:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?t:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?t:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?t:Uint32Array,"%URIError%":U,"%WeakMap%":typeof WeakMap>"u"?t:WeakMap,"%WeakRef%":typeof WeakRef>"u"?t:WeakRef,"%WeakSet%":typeof WeakSet>"u"?t:WeakSet,"%Function.prototype.call%":xA,"%Function.prototype.apply%":UA,"%Object.defineProperty%":rA,"%Object.getPrototypeOf%":L,"%Math.abs%":E,"%Math.floor%":N,"%Math.max%":_,"%Math.min%":Q,"%Math.pow%":y,"%Math.round%":K,"%Math.sign%":lA,"%Reflect.getPrototypeOf%":eA};if(BA)try{null.error}catch(cA){var Be=BA(BA(cA));JA["%Error.prototype%"]=Be}var KA=function cA(w){var H;if("%AsyncFunction%"===w)H=G("async function () {}");else if("%GeneratorFunction%"===w)H=G("function* () {}");else if("%AsyncGeneratorFunction%"===w)H=G("async function* () {}");else if("%AsyncGenerator%"===w){var TA=cA("%AsyncGeneratorFunction%");TA&&(H=TA.prototype)}else if("%AsyncIteratorPrototype%"===w){var wA=cA("%AsyncGenerator%");wA&&BA&&(H=BA(wA.prototype))}return JA[w]=H,H},ae={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},we=g(5049),ie=g(5215),kA=we.call(xA,Array.prototype.concat),CA=we.call(UA,Array.prototype.splice),iA=we.call(xA,String.prototype.replace),hA=we.call(xA,String.prototype.slice),bA=we.call(xA,RegExp.prototype.exec),ne=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,$A=/\\(\\)?/g,P=function(w,H){var wA,TA=w;if(ie(ae,TA)&&(TA="%"+(wA=ae[TA])[0]+"%"),ie(JA,TA)){var j=JA[TA];if(j===QA&&(j=KA(TA)),typeof j>"u"&&!H)throw new x("intrinsic "+w+" exists, but is not available. Please file an issue!");return{alias:wA,name:TA,value:j}}throw new c("intrinsic "+w+" does not exist!")};q.exports=function(w,H){if("string"!=typeof w||0===w.length)throw new x("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof H)throw new x('"allowMissing" argument must be a boolean');if(null===bA(/^%?[^%]*%?$/,w))throw new c("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var TA=function(w){var H=hA(w,0,1),TA=hA(w,-1);if("%"===H&&"%"!==TA)throw new c("invalid intrinsic syntax, expected closing `%`");if("%"===TA&&"%"!==H)throw new c("invalid intrinsic syntax, expected opening `%`");var wA=[];return iA(w,ne,function(j,RA,PA,XA){wA[wA.length]=PA?iA(XA,$A,"$1"):RA||j}),wA}(w),wA=TA.length>0?TA[0]:"",j=P("%"+wA+"%",H),RA=j.name,PA=j.value,XA=!1,vA=j.alias;vA&&(wA=vA[0],CA(TA,kA([0,1],vA)));for(var fe=1,ye=!0;fe=TA.length){var Pe=J(PA,Ge);PA=(ye=!!Pe)&&"get"in Pe&&!("originalValue"in Pe.get)?Pe.get:PA[Ge]}else ye=ie(PA,Ge),PA=PA[Ge];ye&&!XA&&(JA[RA]=PA)}}return PA}},8663(q,D,g){"use strict";var t=g(7756),B=g(997),M=g(6341),Y=g(6044),V=g(4483),d=g(8300),c=t.Symbol,x=B("wks"),U=d?c.for||c:c&&c.withoutSetter||Y;q.exports=function(E){return M(x,E)||(x[E]=V&&M(c,E)?c[E]:U("Symbol."+E)),x[E]}},8681(q){"use strict";var D="object"==typeof document&&document.all;q.exports=typeof D>"u"&&void 0!==D?function(g){return"function"==typeof g||g===D}:function(g){return"function"==typeof g}},8692(q,D,g){"use strict";var t;q.exports=(t=g(6861),g(3144),function(){var B=t,Y=B.lib.Hasher,V=B.x64,d=V.Word,c=V.WordArray,x=B.algo;function U(){return d.create.apply(d,arguments)}var E=[U(1116352408,3609767458),U(1899447441,602891725),U(3049323471,3964484399),U(3921009573,2173295548),U(961987163,4081628472),U(1508970993,3053834265),U(2453635748,2937671579),U(2870763221,3664609560),U(3624381080,2734883394),U(310598401,1164996542),U(607225278,1323610764),U(1426881987,3590304994),U(1925078388,4068182383),U(2162078206,991336113),U(2614888103,633803317),U(3248222580,3479774868),U(3835390401,2666613458),U(4022224774,944711139),U(264347078,2341262773),U(604807628,2007800933),U(770255983,1495990901),U(1249150122,1856431235),U(1555081692,3175218132),U(1996064986,2198950837),U(2554220882,3999719339),U(2821834349,766784016),U(2952996808,2566594879),U(3210313671,3203337956),U(3336571891,1034457026),U(3584528711,2466948901),U(113926993,3758326383),U(338241895,168717936),U(666307205,1188179964),U(773529912,1546045734),U(1294757372,1522805485),U(1396182291,2643833823),U(1695183700,2343527390),U(1986661051,1014477480),U(2177026350,1206759142),U(2456956037,344077627),U(2730485921,1290863460),U(2820302411,3158454273),U(3259730800,3505952657),U(3345764771,106217008),U(3516065817,3606008344),U(3600352804,1432725776),U(4094571909,1467031594),U(275423344,851169720),U(430227734,3100823752),U(506948616,1363258195),U(659060556,3750685593),U(883997877,3785050280),U(958139571,3318307427),U(1322822218,3812723403),U(1537002063,2003034995),U(1747873779,3602036899),U(1955562222,1575990012),U(2024104815,1125592928),U(2227730452,2716904306),U(2361852424,442776044),U(2428436474,593698344),U(2756734187,3733110249),U(3204031479,2999351573),U(3329325298,3815920427),U(3391569614,3928383900),U(3515267271,566280711),U(3940187606,3454069534),U(4118630271,4000239992),U(116418474,1914138554),U(174292421,2731055270),U(289380356,3203993006),U(460393269,320620315),U(685471733,587496836),U(852142971,1086792851),U(1017036298,365543100),U(1126000580,2618297676),U(1288033470,3409855158),U(1501505948,4234509866),U(1607167915,987167468),U(1816402316,1246189591)],N=[];!function(){for(var Q=0;Q<80;Q++)N[Q]=U()}();var _=x.SHA512=Y.extend({_doReset:function(){this._hash=new c.init([new d.init(1779033703,4089235720),new d.init(3144134277,2227873595),new d.init(1013904242,4271175723),new d.init(2773480762,1595750129),new d.init(1359893119,2917565137),new d.init(2600822924,725511199),new d.init(528734635,4215389547),new d.init(1541459225,327033209)])},_doProcessBlock:function(Q,y){for(var K=this._hash.words,lA=K[0],uA=K[1],G=K[2],J=K[3],rA=K[4],$=K[5],Z=K[6],b=K[7],BA=lA.high,L=lA.low,eA=uA.high,UA=uA.low,xA=G.high,QA=G.low,gA=J.high,JA=J.low,Be=rA.high,KA=rA.low,ae=$.high,we=$.low,ie=Z.high,kA=Z.low,CA=b.high,iA=b.low,hA=BA,bA=L,ne=eA,$A=UA,EA=xA,P=QA,cA=gA,w=JA,H=Be,TA=KA,wA=ae,j=we,RA=ie,PA=kA,XA=CA,vA=iA,fe=0;fe<80;fe++){var ye,Ge,He=N[fe];if(fe<16)Ge=He.high=0|Q[y+2*fe],ye=He.low=0|Q[y+2*fe+1];else{var _e=N[fe-15],Pe=_e.high,te=_e.low,T=(te>>>1|Pe<<31)^(te>>>8|Pe<<24)^(te>>>7|Pe<<25),v=N[fe-2],u=v.high,m=v.low,pA=(m>>>19|u<<13)^(m<<3|u>>>29)^(m>>>6|u<<26),aA=N[fe-7],Ce=N[fe-16],ve=Ce.low;He.high=Ge=(Ge=(Ge=((Pe>>>1|te<<31)^(Pe>>>8|te<<24)^Pe>>>7)+aA.high+((ye=T+aA.low)>>>0>>0?1:0))+((u>>>19|m<<13)^(u<<3|m>>>29)^u>>>6)+((ye+=pA)>>>0>>0?1:0))+Ce.high+((ye+=ve)>>>0>>0?1:0),He.low=ye}var Kt,qe=H&wA^~H&RA,W=TA&j^~TA&PA,Ie=hA&ne^hA&EA^ne&EA,ce=(bA>>>28|hA<<4)^(bA<<30|hA>>>2)^(bA<<25|hA>>>7),We=E[fe],Ct=We.low,rt=XA+((H>>>14|TA<<18)^(H>>>18|TA<<14)^(H<<23|TA>>>9))+((Kt=vA+((TA>>>14|H<<18)^(TA>>>18|H<<14)^(TA<<23|H>>>9)))>>>0>>0?1:0),mt=ce+(bA&$A^bA&P^$A&P);XA=RA,vA=PA,RA=wA,PA=j,wA=H,j=TA,H=cA+(rt=(rt=(rt=rt+qe+((Kt+=W)>>>0>>0?1:0))+We.high+((Kt+=Ct)>>>0>>0?1:0))+Ge+((Kt+=ye)>>>0>>0?1:0))+((TA=w+Kt|0)>>>0>>0?1:0)|0,cA=EA,w=P,EA=ne,P=$A,ne=hA,$A=bA,hA=rt+(((hA>>>28|bA<<4)^(hA<<30|bA>>>2)^(hA<<25|bA>>>7))+Ie+(mt>>>0>>0?1:0))+((bA=Kt+mt|0)>>>0>>0?1:0)|0}L=lA.low=L+bA,lA.high=BA+hA+(L>>>0>>0?1:0),UA=uA.low=UA+$A,uA.high=eA+ne+(UA>>>0<$A>>>0?1:0),QA=G.low=QA+P,G.high=xA+EA+(QA>>>0

>>0?1:0),JA=J.low=JA+w,J.high=gA+cA+(JA>>>0>>0?1:0),KA=rA.low=KA+TA,rA.high=Be+H+(KA>>>0>>0?1:0),we=$.low=we+j,$.high=ae+wA+(we>>>0>>0?1:0),kA=Z.low=kA+PA,Z.high=ie+RA+(kA>>>0>>0?1:0),iA=b.low=iA+vA,b.high=CA+XA+(iA>>>0>>0?1:0)},_doFinalize:function(){var Q=this._data,y=Q.words,K=8*this._nDataBytes,lA=8*Q.sigBytes;return y[lA>>>5]|=128<<24-lA%32,y[30+(lA+128>>>10<<5)]=Math.floor(K/4294967296),y[31+(lA+128>>>10<<5)]=K,Q.sigBytes=4*y.length,this._process(),this._hash.toX32()},clone:function(){var Q=Y.clone.call(this);return Q._hash=this._hash.clone(),Q},blockSize:32});B.SHA512=Y._createHelper(_),B.HmacSHA512=Y._createHmacHelper(_)}(),t.SHA512)},8819(q){"use strict";var D=String;q.exports=function(g){try{return D(g)}catch{return"Object"}}},8834(q,D,g){"use strict";var B=function M(b){return b&&b.__esModule?b:{default:b}}(g(2416)),Y=g(9240),V=[0,1,1,2,4,8,1,1,2,4,8,4,8],Q=void 0,y=function(BA){try{return 65496===BA.readUInt16BE(0)}catch{throw new Error("Unsupport file format.")}},K=function(BA){try{var L=BA.readUInt16BE(0);return 18761===L||19789===L}catch{throw new Error("Unsupport file format.")}},uA=function(BA,L,eA,UA){var xA=eA?BA.readUInt16BE(0):BA.readUInt16LE(0);if(0===xA)return{};for(var gA=BA.slice(2),Be={},KA=0;KA4){var fe=(eA?vA.readUInt32BE(0):vA.readUInt32LE(0))-UA;vA=BA.slice(fe,fe+XA)}var ye=void 0;if(cA){switch(TA){case 1:ye=vA.readUInt8(0);break;case 2:ye=vA.toString("ascii").replace(/\0+$/,"");break;case 3:ye=eA?vA.readUInt16BE(0):vA.readUInt16LE(0);break;case 4:ye=eA?vA.readUInt32BE(0):vA.readUInt32LE(0);break;case 5:ye=[];for(var Ge=0;Ge1&&void 0!==arguments[1])||arguments[1]){var UA=(eA=BA.slice(2)).readUInt16BE(0);eA=(eA=(eA=(eA=eA.slice(0,UA)).slice(2)).slice(5)).slice(1)}var Be="MM"===eA.toString("ascii",0,2),we=eA.readUInt32BE(4),ie=eA.readUInt32LE(4),kA=Be?we:ie;if((eA=eA.slice(kA)).length>0&&((Q=uA(eA,Y.ifd,Be,kA)).ExifIFDPointer&&(eA=eA.slice(Q.ExifIFDPointer-kA),Q.SubExif=uA(eA,Y.ifd,Be,Q.ExifIFDPointer)),Q.GPSInfoIFDPointer)){var CA=Q.GPSInfoIFDPointer;eA=eA.slice(Q.ExifIFDPointer?CA-Q.ExifIFDPointer:CA-kA),Q.GPSInfo=uA(eA,Y.gps,Be,CA)}},J=function b(BA){var L=function(BA){try{var L=BA.readUInt16BE(0);return!!(L>=65504&&L<=65519)&&L-65504}catch{throw new Error("Invalid APP Tag.")}}(BA);if(!1!==L){var eA=BA.readUInt16BE(2);1===L?G(BA):b(BA.slice(2+eA))}},rA=function(BA){if(!BA)throw new Error("buffer not found");return Q=void 0,y(BA)?(BA=BA.slice(2),Q={},J(BA)):K(BA)&&(Q={},G(BA,!1)),Q};D.fromBuffer=rA,D.parse=function(BA,L){Q=void 0,new Promise(function(eA,UA){BA||UA(new Error("\u2753File not found.")),B.default.readFile(BA,function(xA,QA){if(xA)UA(xA);else try{if(y(QA)){var gA=QA.slice(2);Q={},J(gA),eA(Q)}else K(QA)?(Q={},G(QA,!1),eA(Q)):UA(new Error("\u{1f631}Unsupport file type."))}catch(JA){UA(JA)}})},function(eA){L(eA,void 0)}).then(function(eA){L(void 0,eA)}).catch(function(eA){L(eA,void 0)})},D.parseSync=function(BA){if(!BA)throw new Error("File not found");var L=B.default.readFileSync(BA);return rA(L)}},8843(q,D,g){"use strict";var t=g(2774),B=g(1689),M=t("RegExp.prototype.exec"),Y=g(6785);q.exports=function(d){if(!B(d))throw new Y("`regex` must be a RegExp");return function(x){return null!==M(d,x)}}},8865(q,D,g){"use strict";var t,d;q.exports=(t=g(6861),d=t.enc.Utf8,void(t.algo.HMAC=t.lib.Base.extend({init:function(U,E){U=this._hasher=new U.init,"string"==typeof E&&(E=d.parse(E));var N=U.blockSize,_=4*N;E.sigBytes>_&&(E=U.finalize(E)),E.clamp();for(var Q=this._oKey=E.clone(),y=this._iKey=E.clone(),K=Q.words,lA=y.words,uA=0;uA>1,E=-7,N=B?Y-1:0,_=B?-1:1,Q=g[t+N];for(N+=_,V=Q&(1<<-E)-1,Q>>=-E,E+=c;E>0;V=256*V+g[t+N],N+=_,E-=8);for(d=V&(1<<-E)-1,V>>=-E,E+=M;E>0;d=256*d+g[t+N],N+=_,E-=8);if(0===V)V=1-U;else{if(V===x)return d?NaN:1/0*(Q?-1:1);d+=Math.pow(2,M),V-=U}return(Q?-1:1)*d*Math.pow(2,V-M)},D.write=function(g,t,B,M,Y,V){var d,c,x,U=8*V-Y-1,E=(1<>1,_=23===Y?Math.pow(2,-24)-Math.pow(2,-77):0,Q=M?0:V-1,y=M?1:-1,K=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(c=isNaN(t)?1:0,d=E):(d=Math.floor(Math.log(t)/Math.LN2),t*(x=Math.pow(2,-d))<1&&(d--,x*=2),(t+=d+N>=1?_/x:_*Math.pow(2,1-N))*x>=2&&(d++,x/=2),d+N>=E?(c=0,d=E):d+N>=1?(c=(t*x-1)*Math.pow(2,Y),d+=N):(c=t*Math.pow(2,N-1)*Math.pow(2,Y),d=0));Y>=8;g[B+Q]=255&c,Q+=y,c/=256,Y-=8);for(d=d<0;g[B+Q]=255&d,Q+=y,d/=256,U-=8);g[B+Q-y]|=128*K}},9049(q){"use strict";var g=function D(){for(var B,M=[],Y=0;Y<256;Y++){B=Y;for(var V=0;V<8;V++)B=1&B?3988292384^B>>>1:B>>>1;M[Y]=B}return M}();q.exports=function t(B,M,Y,V){var d=g,c=V+Y;B^=-1;for(var x=V;x>>8^d[255&(B^M[x])];return-1^B}},9055(q){"use strict";q.exports=EvalError},9064(q,D,g){"use strict";var t;g(8376),g(6401),g(2017),q.exports=(t=g(6861),function(){if("function"==typeof ArrayBuffer){var Y=t.lib.WordArray,V=Y.init,d=Y.init=function(c){if(c instanceof ArrayBuffer&&(c=new Uint8Array(c)),(c instanceof Int8Array||typeof Uint8ClampedArray<"u"&&c instanceof Uint8ClampedArray||c instanceof Int16Array||c instanceof Uint16Array||c instanceof Int32Array||c instanceof Uint32Array||c instanceof Float32Array||c instanceof Float64Array)&&(c=new Uint8Array(c.buffer,c.byteOffset,c.byteLength)),c instanceof Uint8Array){for(var x=c.byteLength,U=[],E=0;E>>2]|=c[E]<<24-E%4*8;V.call(this,U,x)}else V.apply(this,arguments)};d.prototype=Y}}(),t.lib.WordArray)},9240(q){"use strict";q.exports=JSON.parse('{"ifd":{"8298":"Copyright","8769":"ExifIFDPointer","8822":"ExposureProgram","8824":"SpectralSensitivity","8825":"GPSInfoIFDPointer","8827":"PhotographicSensitivity","8828":"OECF","8830":"SensitivityType","8831":"StandardOutputSensitivity","8832":"RecommendedExposureIndex","8833":"ISOSpeed","8834":"ISOSpeedLatitudeyyy","8835":"ISOSpeedLatitudezzz","9000":"ExifVersion","9003":"DateTimeOriginal","9004":"DateTimeDigitized","9101":"ComponentsConfiguration","9102":"CompressedBitsPerPixel","9201":"ShutterSpeedValue","9202":"ApertureValue","9203":"BrightnessValue","9204":"ExposureBiasValue","9205":"MaxApertureValue","9206":"SubjectDistance","9207":"MeteringMode","9208":"LightSource","9209":"Flash","9214":"SubjectArea","9286":"UserComment","9290":"SubSecTime","9291":"SubSecTimeOriginal","9292":"SubSecTimeDigitized","010e":"ImageDescription","010f":"Make","011a":"XResolution","011b":"YResolution","011c":"PlanarConfiguration","012d":"TransferFunction","013b":"Artist","013e":"WhitePoint","013f":"PrimaryChromaticities","0100":"ImageWidth","0101":"ImageHeight","0102":"BitsPerSample","0103":"Compression","0106":"PhotometricInterpretation","0110":"Model","0111":"StripOffsets","0112":"Orientation","0115":"SamplesPerPixel","0116":"RowsPerStrip","0117":"StripByteCounts","0128":"ResolutionUnit","0131":"Software","0132":"DateTime","0201":"JPEGInterchangeFormat","0202":"JPEGInterchangeFormatLength","0211":"YCbCrCoefficients","0212":"YCbCrSubSampling","0213":"YCbCrPositioning","0214":"ReferenceBlackWhite","829a":"ExposureTime","829d":"FNumber","920a":"FocalLength","927c":"MakerNote","a000":"FlashpixVersion","a001":"ColorSpace","a002":"PixelXDimension","a003":"PixelYDimension","a004":"RelatedSoundFile","a005":"InteroperabilityIFDPointer","a20b":"FlashEnergy","a20c":"SpatialFrequencyResponse","a20e":"FocalPlaneXResolution","a20f":"FocalPlaneYResolution","a40a":"Sharpness","a40b":"DeviceSettingDescription","a40c":"SubjectDistanceRange","a210":"FocalPlaneResolutionUnit","a214":"SubjectLocation","a215":"ExposureIndex","a217":"SensingMethod","a300":"FileSource","a301":"SceneType","a302":"CFAPattern","a401":"CustomRendered","a402":"ExposureMode","a403":"WhiteBalance","a404":"DigitalZoomRatio","a405":"FocalLengthIn35mmFilm","a406":"SceneCaptureType","a407":"GainControl","a408":"Contrast","a409":"Saturation","a420":"ImageUniqueID","a430":"CameraOwnerName","a431":"BodySerialNumber","a432":"LensSpecification","a433":"LensMake","a434":"LensModel","a435":"LensSerialNumber","a500":"Gamma"},"gps":{"0000":"GPSVersionID","0001":"GPSLatitudeRef","0002":"GPSLatitude","0003":"GPSLongitudeRef","0004":"GPSLongitude","0005":"GPSAltitudeRef","0006":"GPSAltitude","0007":"GPSTimeStamp","0008":"GPSSatellites","0009":"GPSStatus","000a":"GPSMeasureMode","000b":"GPSDOP","000c":"GPSSpeedRef","000d":"GPSSpeed","000e":"GPSTrackRef","000f":"GPSTrack","0010":"GPSImgDirectionRef","0011":"GPSImgDirection","0012":"GPSMapDatum","0013":"GPSDestLatitudeRef","0014":"GPSDestLatitude","0015":"GPSDestLongitudeRef","0016":"GPSDestLongitude","0017":"GPSDestBearingRef","0018":"GPSDestBearing","0019":"GPSDestDistanceRef","001a":"GPSDestDistance","001b":"GPSProcessingMethod","001c":"GPSAreaInformation","001d":"GPSDateStamp","001e":"GPSDifferential","001f":"GPSHPositioningError"}}')},9292(q){"use strict";q.exports=Math.round},9295(q,D,g){"use strict";var t=g(6649),B=g(7770),M=g(6785),Y=g(8109);q.exports=function(d,c,x){if(!d||"object"!=typeof d&&"function"!=typeof d)throw new M("`obj` must be an object or a function`");if("string"!=typeof c&&"symbol"!=typeof c)throw new M("`property` must be a string or a symbol`");if(arguments.length>3&&"boolean"!=typeof arguments[3]&&null!==arguments[3])throw new M("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!=typeof arguments[4]&&null!==arguments[4])throw new M("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!=typeof arguments[5]&&null!==arguments[5])throw new M("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!=typeof arguments[6])throw new M("`loose`, if provided, must be a boolean");var U=arguments.length>3?arguments[3]:null,E=arguments.length>4?arguments[4]:null,N=arguments.length>5?arguments[5]:null,_=arguments.length>6&&arguments[6],Q=!!Y&&Y(d,c);if(t)t(d,c,{configurable:null===N&&Q?Q.configurable:!N,enumerable:null===U&&Q?Q.enumerable:!U,value:x,writable:null===E&&Q?Q.writable:!E});else{if(!_&&(U||E||N))throw new B("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");d[c]=x}}},9302(q,D,g){"use strict";var M,t=g(6688),B=g(8109);try{M=[].__proto__===Array.prototype}catch(c){if(!c||"object"!=typeof c||!("code"in c)||"ERR_PROTO_ACCESS"!==c.code)throw c}var Y=!!M&&B&&B(Object.prototype,"__proto__"),V=Object,d=V.getPrototypeOf;q.exports=Y&&"function"==typeof Y.get?t([Y.get]):"function"==typeof d&&function(x){return d(null==x?x:V(x))}},9391(q,D,g){"use strict";var t=g(7920),B=g(8681),M=g(8420),V=g(8663)("toStringTag"),d=Object,c="Arguments"===M(function(){return arguments}());q.exports=t?M:function(U){var E,N,_;return void 0===U?"Undefined":null===U?"Null":"string"==typeof(N=function(U,E){try{return U[E]}catch{}}(E=d(U),V))?N:c?M(E):"Object"===(_=M(E))&&B(E.callee)?"Arguments":_}},9490(q,D,g){"use strict";var t=g(7906),B=g(4610),M=g(3381),Y=g(6094);function V(vA){return vA.call.bind(vA)}var d=typeof BigInt<"u",c=typeof Symbol<"u",x=V(Object.prototype.toString),U=V(Number.prototype.valueOf),E=V(String.prototype.valueOf),N=V(Boolean.prototype.valueOf);if(d)var _=V(BigInt.prototype.valueOf);if(c)var Q=V(Symbol.prototype.valueOf);function y(vA,fe){if("object"!=typeof vA)return!1;try{return fe(vA),!0}catch{return!1}}function xA(vA){return"[object Map]"===x(vA)}function gA(vA){return"[object Set]"===x(vA)}function Be(vA){return"[object WeakMap]"===x(vA)}function ae(vA){return"[object WeakSet]"===x(vA)}function ie(vA){return"[object ArrayBuffer]"===x(vA)}function kA(vA){return!(typeof ArrayBuffer>"u")&&(ie.working?ie(vA):vA instanceof ArrayBuffer)}function CA(vA){return"[object DataView]"===x(vA)}function iA(vA){return!(typeof DataView>"u")&&(CA.working?CA(vA):vA instanceof DataView)}D.isArgumentsObject=t,D.isGeneratorFunction=B,D.isTypedArray=Y,D.isPromise=function K(vA){return typeof Promise<"u"&&vA instanceof Promise||null!==vA&&"object"==typeof vA&&"function"==typeof vA.then&&"function"==typeof vA.catch},D.isArrayBufferView=function lA(vA){return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?ArrayBuffer.isView(vA):Y(vA)||iA(vA)},D.isUint8Array=function uA(vA){return"Uint8Array"===M(vA)},D.isUint8ClampedArray=function G(vA){return"Uint8ClampedArray"===M(vA)},D.isUint16Array=function J(vA){return"Uint16Array"===M(vA)},D.isUint32Array=function rA(vA){return"Uint32Array"===M(vA)},D.isInt8Array=function $(vA){return"Int8Array"===M(vA)},D.isInt16Array=function Z(vA){return"Int16Array"===M(vA)},D.isInt32Array=function b(vA){return"Int32Array"===M(vA)},D.isFloat32Array=function BA(vA){return"Float32Array"===M(vA)},D.isFloat64Array=function L(vA){return"Float64Array"===M(vA)},D.isBigInt64Array=function eA(vA){return"BigInt64Array"===M(vA)},D.isBigUint64Array=function UA(vA){return"BigUint64Array"===M(vA)},xA.working=typeof Map<"u"&&xA(new Map),D.isMap=function QA(vA){return!(typeof Map>"u")&&(xA.working?xA(vA):vA instanceof Map)},gA.working=typeof Set<"u"&&gA(new Set),D.isSet=function JA(vA){return!(typeof Set>"u")&&(gA.working?gA(vA):vA instanceof Set)},Be.working=typeof WeakMap<"u"&&Be(new WeakMap),D.isWeakMap=function KA(vA){return!(typeof WeakMap>"u")&&(Be.working?Be(vA):vA instanceof WeakMap)},ae.working=typeof WeakSet<"u"&&ae(new WeakSet),D.isWeakSet=function we(vA){return ae(vA)},ie.working=typeof ArrayBuffer<"u"&&ie(new ArrayBuffer),D.isArrayBuffer=kA,CA.working=typeof ArrayBuffer<"u"&&typeof DataView<"u"&&CA(new DataView(new ArrayBuffer(1),0,1)),D.isDataView=iA;var hA=typeof SharedArrayBuffer<"u"?SharedArrayBuffer:void 0;function bA(vA){return"[object SharedArrayBuffer]"===x(vA)}function ne(vA){return!(typeof hA>"u")&&(typeof bA.working>"u"&&(bA.working=bA(new hA)),bA.working?bA(vA):vA instanceof hA)}function H(vA){return y(vA,U)}function TA(vA){return y(vA,E)}function wA(vA){return y(vA,N)}function j(vA){return d&&y(vA,_)}function RA(vA){return c&&y(vA,Q)}D.isSharedArrayBuffer=ne,D.isAsyncFunction=function $A(vA){return"[object AsyncFunction]"===x(vA)},D.isMapIterator=function EA(vA){return"[object Map Iterator]"===x(vA)},D.isSetIterator=function P(vA){return"[object Set Iterator]"===x(vA)},D.isGeneratorObject=function cA(vA){return"[object Generator]"===x(vA)},D.isWebAssemblyCompiledModule=function w(vA){return"[object WebAssembly.Module]"===x(vA)},D.isNumberObject=H,D.isStringObject=TA,D.isBooleanObject=wA,D.isBigIntObject=j,D.isSymbolObject=RA,D.isBoxedPrimitive=function PA(vA){return H(vA)||TA(vA)||wA(vA)||j(vA)||RA(vA)},D.isAnyArrayBuffer=function XA(vA){return typeof Uint8Array<"u"&&(kA(vA)||ne(vA))},["isProxy","isExternal","isModuleNamespaceObject"].forEach(function(vA){Object.defineProperty(D,vA,{enumerable:!1,value:function(){throw new Error(vA+" is not supported in userland")}})})},9636(q,D,g){"use strict";var t=g(3249);q.exports=function(){return"function"==typeof Object.is?Object.is:t}},9663(q,D,g){"use strict";var B,M,Y,V,c,x,t;q.exports=(t=g(6861),Y=(M=(B=t).lib).WordArray,c=[],x=B.algo.SHA1=(V=M.Hasher).extend({_doReset:function(){this._hash=new Y.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(U,E){for(var N=this._hash.words,_=N[0],Q=N[1],y=N[2],K=N[3],lA=N[4],uA=0;uA<80;uA++){if(uA<16)c[uA]=0|U[E+uA];else{var G=c[uA-3]^c[uA-8]^c[uA-14]^c[uA-16];c[uA]=G<<1|G>>>31}var J=(_<<5|_>>>27)+lA+c[uA];J+=uA<20?1518500249+(Q&y|~Q&K):uA<40?1859775393+(Q^y^K):uA<60?(Q&y|Q&K|y&K)-1894007588:(Q^y^K)-899497514,lA=K,K=y,y=Q<<30|Q>>>2,Q=_,_=J}N[0]=N[0]+_|0,N[1]=N[1]+Q|0,N[2]=N[2]+y|0,N[3]=N[3]+K|0,N[4]=N[4]+lA|0},_doFinalize:function(){var U=this._data,E=U.words,N=8*this._nDataBytes,_=8*U.sigBytes;return E[_>>>5]|=128<<24-_%32,E[14+(_+64>>>9<<4)]=Math.floor(N/4294967296),E[15+(_+64>>>9<<4)]=N,U.sigBytes=4*E.length,this._process(),this._hash},clone:function(){var U=V.clone.call(this);return U._hash=this._hash.clone(),U}}),B.SHA1=V._createHelper(x),B.HmacSHA1=V._createHmacHelper(x),t.SHA1)},9676(q,D,g){"use strict";var B,t=g(9964);function M($,Z,b){return Z=function Y($){var Z=function V($,Z){if("object"!=typeof $||null===$)return $;var b=$[Symbol.toPrimitive];if(void 0!==b){var BA=b.call($,Z||"default");if("object"!=typeof BA)return BA;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===Z?String:Number)($)}($,"string");return"symbol"==typeof Z?Z:String(Z)}(Z),Z in $?Object.defineProperty($,Z,{value:b,enumerable:!0,configurable:!0,writable:!0}):$[Z]=b,$}var d=g(2167),c=Symbol("lastResolve"),x=Symbol("lastReject"),U=Symbol("error"),E=Symbol("ended"),N=Symbol("lastPromise"),_=Symbol("handlePromise"),Q=Symbol("stream");function y($,Z){return{value:$,done:Z}}function K($){var Z=$[c];if(null!==Z){var b=$[Q].read();null!==b&&($[N]=null,$[c]=null,$[x]=null,Z(y(b,!1)))}}function lA($){t.nextTick(K,$)}var G=Object.getPrototypeOf(function(){}),J=Object.setPrototypeOf((M(B={get stream(){return this[Q]},next:function(){var Z=this,b=this[U];if(null!==b)return Promise.reject(b);if(this[E])return Promise.resolve(y(void 0,!0));if(this[Q].destroyed)return new Promise(function(UA,xA){t.nextTick(function(){Z[U]?xA(Z[U]):UA(y(void 0,!0))})});var L,BA=this[N];if(BA)L=new Promise(function uA($,Z){return function(b,BA){$.then(function(){Z[E]?b(y(void 0,!0)):Z[_](b,BA)},BA)}}(BA,this));else{var eA=this[Q].read();if(null!==eA)return Promise.resolve(y(eA,!1));L=new Promise(this[_])}return this[N]=L,L}},Symbol.asyncIterator,function(){return this}),M(B,"return",function(){var Z=this;return new Promise(function(b,BA){Z[Q].destroy(null,function(L){L?BA(L):b(y(void 0,!0))})})}),B),G);q.exports=function(Z){var b,BA=Object.create(J,(M(b={},Q,{value:Z,writable:!0}),M(b,c,{value:null,writable:!0}),M(b,x,{value:null,writable:!0}),M(b,U,{value:null,writable:!0}),M(b,E,{value:Z._readableState.endEmitted,writable:!0}),M(b,_,{value:function(eA,UA){var xA=BA[Q].read();xA?(BA[N]=null,BA[c]=null,BA[x]=null,eA(y(xA,!1))):(BA[c]=eA,BA[x]=UA)},writable:!0}),b));return BA[N]=null,d(Z,function(L){if(L&&"ERR_STREAM_PREMATURE_CLOSE"!==L.code){var eA=BA[x];return null!==eA&&(BA[N]=null,BA[c]=null,BA[x]=null,eA(L)),void(BA[U]=L)}var UA=BA[c];null!==UA&&(BA[N]=null,BA[c]=null,BA[x]=null,UA(y(void 0,!0))),BA[E]=!0}),Z.on("readable",lA.bind(null,BA)),BA}},9738(q,D,g){"use strict";var t=g(1078),B=g(6297);q.exports=function(M,Y){var V=M[Y];return B(V)?void 0:t(V)}},9760(q,D,g){q.exports=M;var t=g(4785).EventEmitter;function M(){t.call(this)}g(9784)(M,t),M.Readable=g(8261),M.Writable=g(9781),M.Duplex=g(4903),M.Transform=g(8569),M.PassThrough=g(7723),M.finished=g(2167),M.pipeline=g(3765),M.Stream=M,M.prototype.pipe=function(Y,V){var d=this;function c(y){Y.writable&&!1===Y.write(y)&&d.pause&&d.pause()}function x(){d.readable&&d.resume&&d.resume()}d.on("data",c),Y.on("drain",x),!Y._isStdio&&(!V||!1!==V.end)&&(d.on("end",E),d.on("close",N));var U=!1;function E(){U||(U=!0,Y.end())}function N(){U||(U=!0,"function"==typeof Y.destroy&&Y.destroy())}function _(y){if(Q(),0===t.listenerCount(this,"error"))throw y}function Q(){d.removeListener("data",c),Y.removeListener("drain",x),d.removeListener("end",E),d.removeListener("close",N),d.removeListener("error",_),Y.removeListener("error",_),d.removeListener("end",Q),d.removeListener("close",Q),Y.removeListener("close",Q)}return d.on("error",_),Y.on("error",_),d.on("end",Q),d.on("close",Q),Y.on("close",Q),Y.emit("pipe",d),Y}},9781(q,D,g){"use strict";var Y,t=g(9964);function M(P){var cA=this;this.next=null,this.entry=null,this.finish=function(){!function EA(P,cA,w){var H=P.entry;for(P.entry=null;H;){var TA=H.callback;cA.pendingcb--,TA(w),H=H.next}cA.corkedRequestsFree.next=P}(cA,P)}}q.exports=UA,UA.WritableState=L;var eA,V={deprecate:g(6465)},d=g(9018),c=g(783).Buffer,x=(typeof g.g<"u"?g.g:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},N=g(7385),Q=g(8130).getHighWaterMark,y=g(3797).F,K=y.ERR_INVALID_ARG_TYPE,lA=y.ERR_METHOD_NOT_IMPLEMENTED,uA=y.ERR_MULTIPLE_CALLBACK,G=y.ERR_STREAM_CANNOT_PIPE,J=y.ERR_STREAM_DESTROYED,rA=y.ERR_STREAM_NULL_VALUES,$=y.ERR_STREAM_WRITE_AFTER_END,Z=y.ERR_UNKNOWN_ENCODING,b=N.errorOrDestroy;function BA(){}function L(P,cA,w){Y=Y||g(4903),"boolean"!=typeof w&&(w=cA instanceof Y),this.objectMode=!!(P=P||{}).objectMode,w&&(this.objectMode=this.objectMode||!!P.writableObjectMode),this.highWaterMark=Q(this,P,"writableHighWaterMark",w),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1,this.decodeStrings=!(!1===P.decodeStrings),this.defaultEncoding=P.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(TA){!function we(P,cA){var w=P._writableState,H=w.sync,TA=w.writecb;if("function"!=typeof TA)throw new uA;if(function ae(P){P.writing=!1,P.writecb=null,P.length-=P.writelen,P.writelen=0}(w),cA)!function KA(P,cA,w,H,TA){--cA.pendingcb,w?(t.nextTick(TA,H),t.nextTick(ne,P,cA),P._writableState.errorEmitted=!0,b(P,H)):(TA(H),P._writableState.errorEmitted=!0,b(P,H),ne(P,cA))}(P,w,H,cA,TA);else{var wA=iA(w)||P.destroyed;!wA&&!w.corked&&!w.bufferProcessing&&w.bufferedRequest&&CA(P,w),H?t.nextTick(ie,P,w,wA,TA):ie(P,w,wA,TA)}}(cA,TA)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=!1!==P.emitClose,this.autoDestroy=!!P.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new M(this)}function UA(P){var cA=this instanceof(Y=Y||g(4903));if(!cA&&!eA.call(UA,this))return new UA(P);this._writableState=new L(P,this,cA),this.writable=!0,P&&("function"==typeof P.write&&(this._write=P.write),"function"==typeof P.writev&&(this._writev=P.writev),"function"==typeof P.destroy&&(this._destroy=P.destroy),"function"==typeof P.final&&(this._final=P.final)),d.call(this)}function Be(P,cA,w,H,TA,wA,j){cA.writelen=H,cA.writecb=j,cA.writing=!0,cA.sync=!0,cA.destroyed?cA.onwrite(new J("write")):w?P._writev(TA,cA.onwrite):P._write(TA,wA,cA.onwrite),cA.sync=!1}function ie(P,cA,w,H){w||function kA(P,cA){0===cA.length&&cA.needDrain&&(cA.needDrain=!1,P.emit("drain"))}(P,cA),cA.pendingcb--,H(),ne(P,cA)}function CA(P,cA){cA.bufferProcessing=!0;var w=cA.bufferedRequest;if(P._writev&&w&&w.next){var TA=new Array(cA.bufferedRequestCount),wA=cA.corkedRequestsFree;wA.entry=w;for(var j=0,RA=!0;w;)TA[j]=w,w.isBuf||(RA=!1),w=w.next,j+=1;TA.allBuffers=RA,Be(P,cA,!0,cA.length,TA,"",wA.finish),cA.pendingcb++,cA.lastBufferedRequest=null,wA.next?(cA.corkedRequestsFree=wA.next,wA.next=null):cA.corkedRequestsFree=new M(cA),cA.bufferedRequestCount=0}else{for(;w;){var PA=w.chunk;if(Be(P,cA,!1,cA.objectMode?1:PA.length,PA,w.encoding,w.callback),w=w.next,cA.bufferedRequestCount--,cA.writing)break}null===w&&(cA.lastBufferedRequest=null)}cA.bufferedRequest=w,cA.bufferProcessing=!1}function iA(P){return P.ending&&0===P.length&&null===P.bufferedRequest&&!P.finished&&!P.writing}function hA(P,cA){P._final(function(w){cA.pendingcb--,w&&b(P,w),cA.prefinished=!0,P.emit("prefinish"),ne(P,cA)})}function ne(P,cA){var w=iA(cA);if(w&&(function bA(P,cA){!cA.prefinished&&!cA.finalCalled&&("function"!=typeof P._final||cA.destroyed?(cA.prefinished=!0,P.emit("prefinish")):(cA.pendingcb++,cA.finalCalled=!0,t.nextTick(hA,P,cA)))}(P,cA),0===cA.pendingcb&&(cA.finished=!0,P.emit("finish"),cA.autoDestroy))){var H=P._readableState;(!H||H.autoDestroy&&H.endEmitted)&&P.destroy()}return w}g(9784)(UA,d),L.prototype.getBuffer=function(){for(var cA=this.bufferedRequest,w=[];cA;)w.push(cA),cA=cA.next;return w},function(){try{Object.defineProperty(L.prototype,"buffer",{get:V.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch{}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(eA=Function.prototype[Symbol.hasInstance],Object.defineProperty(UA,Symbol.hasInstance,{value:function(cA){return!!eA.call(this,cA)||this===UA&&cA&&cA._writableState instanceof L}})):eA=function(cA){return cA instanceof this},UA.prototype.pipe=function(){b(this,new G)},UA.prototype.write=function(P,cA,w){var H=this._writableState,TA=!1,wA=!H.objectMode&&function E(P){return c.isBuffer(P)||P instanceof x}(P);return wA&&!c.isBuffer(P)&&(P=function U(P){return c.from(P)}(P)),"function"==typeof cA&&(w=cA,cA=null),wA?cA="buffer":cA||(cA=H.defaultEncoding),"function"!=typeof w&&(w=BA),H.ending?function xA(P,cA){var w=new $;b(P,w),t.nextTick(cA,w)}(this,w):(wA||function QA(P,cA,w,H){var TA;return null===w?TA=new rA:"string"!=typeof w&&!cA.objectMode&&(TA=new K("chunk",["string","Buffer"],w)),!TA||(b(P,TA),t.nextTick(H,TA),!1)}(this,H,P,w))&&(H.pendingcb++,TA=function JA(P,cA,w,H,TA,wA){if(!w){var j=function gA(P,cA,w){return!P.objectMode&&!1!==P.decodeStrings&&"string"==typeof cA&&(cA=c.from(cA,w)),cA}(cA,H,TA);H!==j&&(w=!0,TA="buffer",H=j)}var RA=cA.objectMode?1:H.length;cA.length+=RA;var PA=cA.length-1))throw new Z(cA);return this._writableState.defaultEncoding=cA,this},Object.defineProperty(UA.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(UA.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),UA.prototype._write=function(P,cA,w){w(new lA("_write()"))},UA.prototype._writev=null,UA.prototype.end=function(P,cA,w){var H=this._writableState;return"function"==typeof P?(w=P,P=null,cA=null):"function"==typeof cA&&(w=cA,cA=null),null!=P&&this.write(P,cA),H.corked&&(H.corked=1,this.uncork()),H.ending||function $A(P,cA,w){cA.ending=!0,ne(P,cA),w&&(cA.finished?t.nextTick(w):P.once("finish",w)),cA.ended=!0,P.writable=!1}(this,H,w),this},Object.defineProperty(UA.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(UA.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(cA){this._writableState&&(this._writableState.destroyed=cA)}}),UA.prototype.destroy=N.destroy,UA.prototype._undestroy=N.undestroy,UA.prototype._destroy=function(P,cA){cA(P)}},9784(q){q.exports="function"==typeof Object.create?function(g,t){t&&(g.super_=t,g.prototype=Object.create(t.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}))}:function(g,t){if(t){g.super_=t;var B=function(){};B.prototype=t.prototype,g.prototype=new B,g.prototype.constructor=g}}},9851(q,D,g){"use strict";var t;q.exports=(t=g(6861),g(4866),g(3532),g(6818),g(2858),function(){var B=t,Y=B.lib.BlockCipher,V=B.algo,d=[],c=[],x=[],U=[],E=[],N=[],_=[],Q=[],y=[],K=[];!function(){for(var G=[],J=0;J<256;J++)G[J]=J<128?J<<1:J<<1^283;var rA=0,$=0;for(J=0;J<256;J++){var Z=$^$<<1^$<<2^$<<3^$<<4;d[rA]=Z=Z>>>8^255&Z^99,c[Z]=rA;var eA,b=G[rA],BA=G[b],L=G[BA];x[rA]=(eA=257*G[Z]^16843008*Z)<<24|eA>>>8,U[rA]=eA<<16|eA>>>16,E[rA]=eA<<8|eA>>>24,N[rA]=eA,_[Z]=(eA=16843009*L^65537*BA^257*b^16843008*rA)<<24|eA>>>8,Q[Z]=eA<<16|eA>>>16,y[Z]=eA<<8|eA>>>24,K[Z]=eA,rA?(rA=b^G[G[G[L^b]]],$^=G[G[$]]):rA=$=1}}();var lA=[0,1,2,4,8,16,32,64,128,27,54],uA=V.AES=Y.extend({_doReset:function(){if(!this._nRounds||this._keyPriorReset!==this._key){for(var J=this._keyPriorReset=this._key,rA=J.words,$=J.sigBytes/4,b=4*((this._nRounds=$+6)+1),BA=this._keySchedule=[],L=0;L6&&L%$==4&&(G=d[G>>>24]<<24|d[G>>>16&255]<<16|d[G>>>8&255]<<8|d[255&G]):(G=d[(G=G<<8|G>>>24)>>>24]<<24|d[G>>>16&255]<<16|d[G>>>8&255]<<8|d[255&G],G^=lA[L/$|0]<<24),BA[L]=BA[L-$]^G);for(var eA=this._invKeySchedule=[],UA=0;UA>>24]]^Q[d[G>>>16&255]]^y[d[G>>>8&255]]^K[d[255&G]]}}},encryptBlock:function(G,J){this._doCryptBlock(G,J,this._keySchedule,x,U,E,N,d)},decryptBlock:function(G,J){var rA=G[J+1];G[J+1]=G[J+3],G[J+3]=rA,this._doCryptBlock(G,J,this._invKeySchedule,_,Q,y,K,c),rA=G[J+1],G[J+1]=G[J+3],G[J+3]=rA},_doCryptBlock:function(G,J,rA,$,Z,b,BA,L){for(var eA=this._nRounds,UA=G[J]^rA[0],xA=G[J+1]^rA[1],QA=G[J+2]^rA[2],gA=G[J+3]^rA[3],JA=4,Be=1;Be>>24]^Z[xA>>>16&255]^b[QA>>>8&255]^BA[255&gA]^rA[JA++],ae=$[xA>>>24]^Z[QA>>>16&255]^b[gA>>>8&255]^BA[255&UA]^rA[JA++],we=$[QA>>>24]^Z[gA>>>16&255]^b[UA>>>8&255]^BA[255&xA]^rA[JA++],ie=$[gA>>>24]^Z[UA>>>16&255]^b[xA>>>8&255]^BA[255&QA]^rA[JA++];UA=KA,xA=ae,QA=we,gA=ie}KA=(L[UA>>>24]<<24|L[xA>>>16&255]<<16|L[QA>>>8&255]<<8|L[255&gA])^rA[JA++],ae=(L[xA>>>24]<<24|L[QA>>>16&255]<<16|L[gA>>>8&255]<<8|L[255&UA])^rA[JA++],we=(L[QA>>>24]<<24|L[gA>>>16&255]<<16|L[UA>>>8&255]<<8|L[255&xA])^rA[JA++],ie=(L[gA>>>24]<<24|L[UA>>>16&255]<<16|L[xA>>>8&255]<<8|L[255&QA])^rA[JA++],G[J]=KA,G[J+1]=ae,G[J+2]=we,G[J+3]=ie},keySize:8});B.AES=Y._createHelper(uA)}(),t.AES)},9877(q,D,g){"use strict";var t=g(1212);q.exports=t({}.isPrototypeOf)},9964(q){var g,t,D=q.exports={};function B(){throw new Error("setTimeout has not been defined")}function M(){throw new Error("clearTimeout has not been defined")}function Y(y){if(g===setTimeout)return setTimeout(y,0);if((g===B||!g)&&setTimeout)return g=setTimeout,setTimeout(y,0);try{return g(y,0)}catch{try{return g.call(null,y,0)}catch{return g.call(this,y,0)}}}!function(){try{g="function"==typeof setTimeout?setTimeout:B}catch{g=B}try{t="function"==typeof clearTimeout?clearTimeout:M}catch{t=M}}();var x,d=[],c=!1,U=-1;function E(){!c||!x||(c=!1,x.length?d=x.concat(d):U=-1,d.length&&N())}function N(){if(!c){var y=Y(E);c=!0;for(var K=d.length;K;){for(x=d,d=[];++U1)for(var lA=1;lA{var D=q&&q.__esModule?()=>q.default:()=>q;return Pn.d(D,{a:D}),D},Pn.d=(q,D)=>{for(var g in D)Pn.o(D,g)&&!Pn.o(q,g)&&Object.defineProperty(q,g,{enumerable:!0,get:D[g]})},Pn.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch{if("object"==typeof window)return window}}(),Pn.o=(q,D)=>Object.prototype.hasOwnProperty.call(q,D),Pn.nmd=q=>(q.paths=[],q.children||(q.children=[]),q),Pn(6092)})(),Li.exports=Pn()},94853:(Li,zi,Ve)=>{"use strict";Ve.r(zi),Ve.d(zi,{CLNModule:()=>kw});var Ee=Ve(72200),Hn=Ve(38132),Pt=Ve(43694),Pn=Ve(9881),A=Ve(73664),q=Ve(67575),D=Ve(52920);function g(n,l){1&n&&A.nrm(0,"mat-progress-bar",3)}let t=(()=>{var n;class l{constructor(i){this.router=i,this.loading=!1,this.router.events.subscribe(o=>{switch(!0){case o instanceof Pt.Z:this.loading=!0;break;case o instanceof Pt.wF:case o instanceof Pt.j5:case o instanceof Pt.L6:this.loading=!1}})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(Pt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-root"]],standalone:!1,decls:4,vars:1,consts:[["outlet","outlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["color","primary","mode","indeterminate"]],template:function(o,r){1&o&&(A.j41(0,"div",1),A.DNE(1,g,1,0,"mat-progress-bar",2),A.nrm(2,"router-outlet",null,0),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",r.loading))},dependencies:[Ee.bT,q.HM,D.DJ,D.sA,D.UI,Pt.n3],encapsulation:2,data:{animation:[Pn.E]}}))}return n(),l})();var B=Ve(21413),M=Ve(56977),Y=Ve(53993),V=Ve(90614),d=Ve(45383),c=Ve(4416),x=Ve(79647),U=Ve(59584),E=Ve(2615),N=Ve(98570),_=Ve(59640),Q=Ve(82571),y=Ve(20060),K=Ve(22598),lA=Ve(25596),uA=Ve(82885),G=Ve(12629),J=Ve(59115),rA=Ve(16038),$=Ve(96850),Z=Ve(5964),b=Ve(96695),BA=Ve(2042),L=Ve(19295),eA=Ve(96183),UA=Ve(51585),xA=Ve(28430),QA=Ve(11747),gA=Ve(89417),JA=Ve(88834),Be=Ve(33746),KA=Ve(69588),ae=Ve(23029),we=Ve(30450),ie=Ve(40455),kA=Ve(89587),CA=Ve(56114);function iA(n,l){1&n&&(A.j41(0,"span",31),A.EFF(1,"= "),A.k0s())}function hA(n,l){if(1&n&&(A.j41(0,"span",32),A.nrm(1,"fa-icon",33),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function bA(n,l){if(1&n&&A.nrm(0,"span",34),2&n){const e=A.XpG();A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function ne(n,l){if(1&n&&(A.j41(0,"mat-option",35),A.EFF(1),A.nI1(2,"titlecase"),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e),A.R7$(),A.JRh(A.bMT(2,2,e))}}function $A(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.invoiceError)}}function EA(n,l){if(1&n&&(A.j41(0,"div",36),A.nrm(1,"fa-icon",37),A.DNE(2,$A,2,1,"span",38),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.invoiceError)}}let P=(()=>{var n;class l{constructor(i,o,r,nA,WA,Ae){this.dialogRef=i,this.data=o,this.store=r,this.decimalPipe=nA,this.commonService=WA,this.actions=Ae,this.faExclamationTriangle=d.zpE,this.convertedCurrency=null,this.description="",this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=c.md,this.timeUnitEnum=c.F7,this.timeUnits=c.SY,this.selTimeUnit=c.F7.SECS,this.invoiceError="",this.unSubs=[new B.B,new B.B,new B.B,new B.B,new B.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(x._c).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(U.mH).pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.actions.pipe((0,M.Q)(this.unSubs[2]),(0,Z.p)(i=>i.type===c.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(i=>{i.type===c.TC.UPDATE_API_CALL_STATUS_CLN&&"SaveNewInvoice"===i.payload.action&&(i.payload.status===c.wn.ERROR&&(this.invoiceError=i.payload.message),i.payload.status===c.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(i){this.invoiceError="",this.invoiceValue||(this.invoiceValue=0);let o=this.expiry?this.expiry:c.It;this.selTimeUnit!==c.F7.SECS&&this.expiry&&(o=this.commonService.convertTime(this.expiry,this.selTimeUnit,c.F7.SECS)),this.store.dispatch((0,xA.VK)({payload:{label:"ulbl"+Math.random().toString(36).slice(2)+Date.now(),amount_msat:this.invoiceValue?1e3*this.invoiceValue:"any",description:this.description,expiry:o,exposeprivatechannels:this.private}}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=c.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&(this.invoiceValueHint="",this.invoiceValue&&this.invoiceValue>99&&this.commonService.convertCurrency(this.invoiceValue,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,M.Q)(this.unSubs[3])).subscribe({next:i=>{this.convertedCurrency=i,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,c.k.OTHER)+" "+this.convertedCurrency.unit},error:i=>{this.invoiceValueHint="Conversion Error: "+i}}))}onTimeUnitChange(i){this.expiry&&this.selTimeUnit!==i.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,i.value)),this.selTimeUnit=i.value}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(UA.CP),A.rXU(UA.Vh),A.rXU(_.il),A.rXU(Ee.QX),A.rXU(Q.h),A.rXU(QA.En))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-create-invoices"]],standalone:!1,decls:48,vars:19,consts:[["addInvoiceForm","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","tabindex","2","name","description",3,"ngModelChange","ngModel"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","tabindex","3","name","invoiceValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","name","expiry","type","number","tabindex","4",3,"ngModelChange","step","min","ngModel"],["fxLayout","column","fxFlex","26"],["tabindex","5","name","timeUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","50","fxLayoutAlign","start center",1,"ml-2"],["tabindex","6","color","primary","name","private",3,"ngModelChange","ngModel"],["matTooltip","Include routing hints for private channels","matTooltipPosition","above",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","8",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),A.EFF(5,"Create Invoice"),A.k0s()(),A.j41(6,"button",6),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),A.EFF(13,"Description"),A.k0s(),A.j41(14,"input",10),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.description,Ae)||(r.description=Ae),E.Njj(Ae)}),A.k0s()(),A.j41(15,"div",11)(16,"mat-form-field",12)(17,"mat-label"),A.EFF(18,"Amount"),A.k0s(),A.j41(19,"input",13),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.invoiceValue,Ae)||(r.invoiceValue=Ae),E.Njj(Ae)}),A.bIt("keyup",function(){return E.eBV(nA),E.Njj(r.onInvoiceValueChange())}),A.k0s(),A.j41(20,"span",14),A.EFF(21,"Sats "),A.k0s(),A.j41(22,"mat-hint",15),A.DNE(23,iA,2,0,"span",16)(24,hA,2,1,"span",17)(25,bA,1,1,"span",18),A.EFF(26),A.k0s()(),A.j41(27,"mat-form-field",19)(28,"mat-label"),A.EFF(29,"Expiry"),A.k0s(),A.j41(30,"input",20),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.expiry,Ae)||(r.expiry=Ae),E.Njj(Ae)}),A.k0s(),A.j41(31,"span",14),A.EFF(32),A.nI1(33,"titlecase"),A.k0s()(),A.j41(34,"mat-form-field",21)(35,"mat-select",22),A.bIt("selectionChange",function(Ae){return E.eBV(nA),E.Njj(r.onTimeUnitChange(Ae))}),A.DNE(36,ne,3,4,"mat-option",23),A.k0s()()(),A.j41(37,"div",24)(38,"mat-slide-toggle",25),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.private,Ae)||(r.private=Ae),E.Njj(Ae)}),A.EFF(39,"Private Routing Hints"),A.k0s(),A.j41(40,"mat-icon",26),A.EFF(41,"info_outline"),A.k0s()(),A.DNE(42,EA,3,2,"div",27),A.j41(43,"div",28)(44,"button",29),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.resetData())}),A.EFF(45,"Clear Field"),A.k0s(),A.j41(46,"button",30),A.bIt("click",function(){E.eBV(nA);const Ae=A.sdS(10);return E.Njj(r.onAddInvoice(Ae))}),A.EFF(47,"Create Invoice"),A.k0s()()()()()()}2&o&&(A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(8),A.R50("ngModel",r.description),A.R7$(5),A.Y8G("step",100)("min",1),A.R50("ngModel",r.invoiceValue),A.R7$(4),A.Y8G("ngIf",""!==r.invoiceValueHint),A.R7$(),A.Y8G("ngIf",r.convertedCurrency&&"FA"===r.convertedCurrency.iconType&&""!==r.invoiceValueHint),A.R7$(),A.Y8G("ngIf",r.convertedCurrency&&"SVG"===r.convertedCurrency.iconType&&""!==r.invoiceValueHint),A.R7$(),A.SpI(" ",r.invoiceValueHint," "),A.R7$(4),A.Y8G("step",r.selTimeUnit===r.timeUnitEnum.SECS?300:r.selTimeUnit===r.timeUnitEnum.MINS?10:r.selTimeUnit===r.timeUnitEnum.HOURS?2:1)("min",1),A.R50("ngModel",r.expiry),A.R7$(2),A.SpI("",A.bMT(33,17,r.selTimeUnit)," "),A.R7$(3),A.Y8G("value",r.selTimeUnit),A.R7$(),A.Y8G("ngForOf",r.timeUnits),A.R7$(2),A.R50("ngModel",r.private),A.R7$(4),A.Y8G("ngIf",""!==r.invoiceError))},dependencies:[Ee.Sq,Ee.bT,gA.qT,gA.me,gA.Q0,gA.BC,gA.cb,gA.VZ,gA.vS,gA.cV,y.aY,UA.tx,JA.$z,lA.m2,lA.MM,G.An,Be.fg,KA.rl,KA.nJ,KA.MV,KA.yw,D.DJ,D.sA,D.UI,eA.VO,ae.wT,we.sG,ie.oV,kA.N,CA.V,Ee.PV],encapsulation:2}))}return n(),l})();var cA=Ve(8321),w=Ve(11771),H=Ve(37541),TA=Ve(52929),wA=Ve(10497);const j=()=>["all"],RA=n=>({"error-border":n}),PA=()=>["no_invoice"],XA=n=>({"mr-0":n}),vA=n=>({width:n}),fe=n=>({"display-none":n});function ye(n,l){1&n&&(A.j41(0,"span",19),A.EFF(1,"= "),A.k0s())}function Ge(n,l){if(1&n&&(A.j41(0,"span",20),A.nrm(1,"fa-icon",21),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function He(n,l){if(1&n&&A.nrm(0,"span",22),2&n){const e=A.XpG(2);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function _e(n,l){if(1&n){const e=A.RV6();A.j41(0,"form",6,0)(2,"mat-form-field",7)(3,"mat-label"),A.EFF(4,"Description"),A.k0s(),A.j41(5,"input",8),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.description,o)||(r.description=o),E.Njj(o)}),A.k0s()(),A.j41(6,"mat-form-field",9)(7,"mat-label"),A.EFF(8,"Amount"),A.k0s(),A.j41(9,"input",10),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.invoiceValue,o)||(r.invoiceValue=o),E.Njj(o)}),A.bIt("keyup",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onInvoiceValueChange())}),A.k0s(),A.j41(10,"span",11),A.EFF(11,"Sats "),A.k0s(),A.j41(12,"mat-hint",12),A.DNE(13,ye,2,0,"span",13)(14,Ge,2,1,"span",14)(15,He,1,1,"span",15),A.EFF(16),A.k0s()(),A.j41(17,"div",16)(18,"button",17),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.resetData())}),A.EFF(19,"Clear Field"),A.k0s(),A.j41(20,"button",18),A.bIt("click",function(){E.eBV(e);const o=A.sdS(1),r=A.XpG();return E.Njj(r.onAddInvoice(o))}),A.EFF(21,"Create Invoice"),A.k0s()()()}if(2&n){const e=A.XpG();A.R7$(5),A.R50("ngModel",e.description),A.R7$(4),A.Y8G("step",100)("min",1),A.R50("ngModel",e.invoiceValue),A.R7$(4),A.Y8G("ngIf",""!==e.invoiceValueHint),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.invoiceValueHint),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.invoiceValueHint),A.R7$(),A.SpI(" ",e.invoiceValueHint," ")}}function Pe(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",23)(1,"button",24),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onDeleteExpiredInvoices())}),A.EFF(2,"Delete Expired"),A.k0s(),A.j41(3,"button",25),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.openCreateInvoiceModal())}),A.EFF(4,"Create Invoice"),A.k0s()()}}function te(n,l){if(1&n&&(A.j41(0,"mat-option",62),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function sA(n,l){1&n&&A.nrm(0,"mat-progress-bar",63)}function T(n,l){1&n&&A.nrm(0,"th",64)}function v(n,l){if(1&n&&A.nrm(0,"span",69),2&n){const e=A.XpG(3);A.Y8G("ngClass",A.eq3(1,XA,e.screenSize===e.screenSizeEnum.XS))}}function u(n,l){if(1&n&&A.nrm(0,"span",70),2&n){const e=A.XpG(3);A.Y8G("ngClass",A.eq3(1,XA,e.screenSize===e.screenSizeEnum.XS))}}function m(n,l){if(1&n&&A.nrm(0,"span",71),2&n){const e=A.XpG(3);A.Y8G("ngClass",A.eq3(1,XA,e.screenSize===e.screenSizeEnum.XS))}}function R(n,l){if(1&n&&(A.j41(0,"td",65),A.DNE(1,v,1,3,"span",66)(2,u,1,3,"span",67)(3,m,1,3,"span",68),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf","paid"===(null==e?null:e.status)),A.R7$(),A.Y8G("ngIf","unpaid"===(null==e?null:e.status)),A.R7$(),A.Y8G("ngIf","expired"===(null==e?null:e.status))}}function pA(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Expiry Date"),A.k0s())}function aA(n,l){if(1&n&&(A.j41(0,"td",65),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*(null==e?null:e.expires_at),"dd/MMM/y HH:mm")," ")}}function Me(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Date Settled"),A.k0s())}function VA(n,l){if(1&n&&(A.j41(0,"td",65),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.paid_at),"dd/MMM/y HH:mm")||"-")}}function Ce(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Type"),A.k0s())}function dA(n,l){if(1&n&&(A.j41(0,"td",65),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null!=e&&e.bolt12?"Bolt12":null!=e&&e.bolt11&&e.label.includes("keysend-")?"Keysend":"Bolt11")}}function ve(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Description"),A.k0s())}function qe(n,l){if(1&n&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,vA,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.description)}}function W(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Label"),A.k0s())}function Ie(n,l){if(1&n&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,vA,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.label)}}function de(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Payment Hash"),A.k0s())}function SA(n,l){if(1&n&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,vA,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash)}}function ce(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Invoice"),A.k0s())}function pe(n,l){if(1&n&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,vA,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.bolt11)}}function st(n,l){1&n&&(A.j41(0,"th",75),A.EFF(1,"Amount (Sats)"),A.k0s())}function We(n,l){if(1&n&&(A.j41(0,"td",65)(1,"span",76),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.amount_msat)/1e3,(null==e?null:e.amount_msat)<1e3?"1.0-4":"1.0-0"))}}function Ze(n,l){1&n&&(A.j41(0,"th",75),A.EFF(1,"Amount Settled (Sats)"),A.k0s())}function Ct(n,l){if(1&n&&(A.j41(0,"td",65)(1,"span",76),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.amount_received_msat)/1e3,(null==e?null:e.amount_received_msat)<1e3?"1.0-4":"1.0-0"))}}function Kt(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",77)(1,"div",78)(2,"mat-select",79),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",80),A.bIt("click",function(){E.eBV(e);const o=A.XpG(2);return E.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function rt(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",81)(1,"div",78)(2,"mat-select",82),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",80),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG(2);return E.Njj(r.onInvoiceClick(o))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",80),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG(2);return E.Njj(r.onRefreshInvoice(o))}),A.EFF(7,"Refresh"),A.k0s()()()()}}function mt(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No invoice available."),A.k0s())}function zt(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting invoices..."),A.k0s())}function kt(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function Jt(n,l){if(1&n&&(A.j41(0,"td",83),A.DNE(1,mt,2,0,"p",84)(2,zt,2,0,"p",84)(3,kt,2,1,"p",84),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function nt(n,l){if(1&n&&A.nrm(0,"tr",85),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,fe,(null==e.invoices?null:e.invoices.data)&&(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)>0))}}function $e(n,l){1&n&&A.nrm(0,"tr",86)}function lt(n,l){1&n&&A.nrm(0,"tr",87)}function tt(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",26)(1,"div",27)(2,"div",28),A.nrm(3,"fa-icon",29),A.j41(4,"span",30),A.EFF(5,"Invoices History"),A.k0s()(),A.j41(6,"div",31)(7,"mat-form-field",32)(8,"mat-label"),A.EFF(9,"Filter By"),A.k0s(),A.j41(10,"mat-select",33),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.selFilterBy,o)||(r.selFilterBy=o),E.Njj(o)}),A.bIt("selectionChange",function(){E.eBV(e);const o=A.XpG();return o.selFilter="",E.Njj(o.applyFilter())}),A.j41(11,"perfect-scrollbar"),A.DNE(12,te,2,2,"mat-option",34),A.k0s()()(),A.j41(13,"mat-form-field",32)(14,"mat-label"),A.EFF(15,"Filter"),A.k0s(),A.j41(16,"input",35),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.selFilter,o)||(r.selFilter=o),E.Njj(o)}),A.bIt("input",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.applyFilter())})("keyup",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.applyFilter())}),A.k0s()()()(),A.j41(17,"div",36),A.DNE(18,sA,1,0,"mat-progress-bar",37),A.j41(19,"table",38,1),A.qex(21,39),A.DNE(22,T,1,0,"th",40)(23,R,4,3,"td",41),A.bVm(),A.qex(24,42),A.DNE(25,pA,2,0,"th",43)(26,aA,3,4,"td",41),A.bVm(),A.qex(27,44),A.DNE(28,Me,2,0,"th",43)(29,VA,3,4,"td",41),A.bVm(),A.qex(30,45),A.DNE(31,Ce,2,0,"th",43)(32,dA,2,1,"td",41),A.bVm(),A.qex(33,46),A.DNE(34,ve,2,0,"th",43)(35,qe,4,4,"td",41),A.bVm(),A.qex(36,47),A.DNE(37,W,2,0,"th",43)(38,Ie,4,4,"td",41),A.bVm(),A.qex(39,48),A.DNE(40,de,2,0,"th",43)(41,SA,4,4,"td",41),A.bVm(),A.qex(42,49),A.DNE(43,ce,2,0,"th",43)(44,pe,4,4,"td",41),A.bVm(),A.qex(45,50),A.DNE(46,st,2,0,"th",51)(47,We,4,4,"td",41),A.bVm(),A.qex(48,52),A.DNE(49,Ze,2,0,"th",51)(50,Ct,4,4,"td",41),A.bVm(),A.qex(51,53),A.DNE(52,Kt,6,0,"th",54)(53,rt,8,0,"td",55),A.bVm(),A.qex(54,56),A.DNE(55,Jt,4,3,"td",57),A.bVm(),A.DNE(56,nt,1,3,"tr",58)(57,$e,1,0,"tr",59)(58,lt,1,0,"tr",60),A.k0s()(),A.nrm(59,"mat-paginator",61),A.k0s()}if(2&n){const e=A.XpG();A.R7$(3),A.Y8G("icon",e.faHistory),A.R7$(7),A.R50("ngModel",e.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,j).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter),A.R7$(2),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.invoices)("ngClass",A.eq3(16,RA,""!==e.errorMessage)),A.R7$(37),A.Y8G("matFooterRowDef",A.lJ4(18,PA)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns),A.R7$(),A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("hidePageSize",e.screenSize!==e.screenSizeEnum.XS)}}let Ut=(()=>{var n;class l{constructor(i,o,r,nA,WA,Ae,mn,bt){this.logger=i,this.store=o,this.decimalPipe=r,this.commonService=nA,this.rtlEffects=WA,this.datePipe=Ae,this.actions=mn,this.camelCaseWithReplace=bt,this.calledFrom="transactions",this.faHistory=d.Int,this.nodePageDefs=c.Jd,this.convertedCurrency=null,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:c.md,sortBy:"expires_at",sortOrder:c.oi.DESCENDING},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoices=new L.I6([]),this.invoiceJSONArr=[],this.information={},this.private=!1,this.expiryStep=100,this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(x._c).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(U.mH).pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(U.av).pipe((0,M.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(U.Pj).pipe((0,M.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.invoiceJSONArr=i.listInvoices.invoices||[],this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(i)}),this.actions.pipe((0,M.Q)(this.unSubs[4]),(0,Z.p)(i=>i.type===c.TC.SET_LOOKUP_CLN||i.type===c.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(i=>{i.type===c.TC.SET_LOOKUP_CLN&&this.invoiceJSONArr&&this.sort&&this.paginator&&i.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(i.payload))),this.loadInvoicesTable(this.invoiceJSONArr))})}ngAfterViewInit(){this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr)}openCreateInvoiceModal(){this.store.dispatch((0,w.xO)({payload:{data:{pageSize:this.pageSize,component:P}}}))}onAddInvoice(i){this.invoiceValue||(this.invoiceValue=0);const o=this.expiry?this.expiry:c.It;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,xA.VK)({payload:{label:this.newlyAddedInvoiceMemo,amount_msat:this.invoiceValue?1e3*this.invoiceValue:"any",description:this.description,expiry:o,exposeprivatechannels:this.private}})),this.resetData()}onDeleteExpiredInvoices(){this.store.dispatch((0,w.I1)({payload:{data:{type:"CONFIRM",titleMessage:"Delete Expired Invoices",noBtnText:"Cancel",yesBtnText:"Delete Invoices"}}})),this.rtlEffects.closeConfirm.pipe((0,M.Q)(this.unSubs[5])).subscribe(i=>{i&&this.store.dispatch((0,xA.a5)({payload:null}))})}onInvoiceClick(i){this.store.dispatch((0,w.xO)({payload:{data:{invoice:{amount_msat:i.amount_msat,label:i.label,expires_at:i.expires_at,paid_at:i.paid_at,bolt11:i.bolt11,payment_hash:i.payment_hash,description:i.description,status:i.status,amount_received_msat:i.amount_received_msat},newlyAdded:!1,component:cA.y}}}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint=""}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.invoices.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=this.datePipe.transform(new Date(1e3*(i.paid_at||0)),"dd/MMM/y HH:mm")?.toLowerCase()+this.datePipe.transform(new Date(1e3*(i.expires_at||0)),"dd/MMM/y HH:mm")?.toLowerCase()+(i.bolt12?"bolt12":i.bolt11?"bolt11":"keysend")+JSON.stringify(i).toLowerCase();break;case"status":r="paid"===i?.status?"paid":"unpaid"===i?.status?"unpaid":"expired";break;case"expires_at":case"paid_at":r=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"type":r=i?.bolt12?"bolt12":i?.bolt11&&i?.label?.includes("keysend-")?"keysend":"bolt11";break;case"msatoshi":r=((i.amount_msat||0)/1e3).toString()||"";break;case"msatoshi_received":r=((i.amount_received_msat||0)/1e3).toString()||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"status"===this.selFilterBy||"type"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,c.BQ.SATS,c.BQ.OTHER,this.selNode?.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,M.Q)(this.unSubs[6])).subscribe({next:i=>{this.convertedCurrency=i,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,c.k.OTHER)+" "+this.convertedCurrency.unit},error:i=>{this.invoiceValueHint="Conversion Error: "+i}}))}onRefreshInvoice(i){this.store.dispatch((0,xA.Yi)({payload:i.label}))}updateInvoicesData(i){this.invoiceJSONArr=this.invoiceJSONArr?.map(o=>o.label===i.label?i:o)}loadInvoicesTable(i){this.invoices=new L.I6(i?[...i]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(o,r)=>{switch(r){case"msatoshi":return o.amount_msat;case"msatoshi_received":return o.amount_received_msat;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.invoices.paginator=this.paginator,this.applyFilter(),this.setFilterPredicate()}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(_.il),A.rXU(Ee.QX),A.rXU(Q.h),A.rXU(H.H),A.rXU(Ee.vh),A.rXU(QA.En),A.rXU(TA.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-lightning-invoices-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(BA.B4,5),A.GBs(b.iy,5)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.sort=nA.first),A.mGM(nA=A.lsd())&&(r.paginator=nA.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[A.Jv_([{provide:eA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:b.xX,useValue:(0,c.on)("Invoices")}])],decls:4,vars:3,consts:[["addInvoiceForm","ngForm"],["table",""],["fxLayout","column","fxFlex","110","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["matInput","","tabindex","2","name","description",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","name","invoiceValue","type","number","tabindex","3",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","9","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","10",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["mat-stroked-button","","color","warn","tabindex","7","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","expires_at"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","paid_at"],["matColumnDef","type"],["matColumnDef","description"],["matColumnDef","label"],["matColumnDef","payment_hash"],["matColumnDef","bolt11"],["matColumnDef","msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi_received"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Paid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Expired","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Paid","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Expired","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){1&o&&(A.j41(0,"div",2),A.DNE(1,_e,22,8,"form",3)(2,Pe,5,0,"div",4)(3,tt,60,19,"div",5),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf","home"===r.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===r.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===r.calledFrom))},dependencies:[Ee.YU,Ee.Sq,Ee.bT,Ee.B3,gA.qT,gA.me,gA.Q0,gA.BC,gA.cb,gA.VZ,gA.vS,gA.cV,y.aY,JA.$z,Be.fg,KA.rl,KA.nJ,KA.MV,KA.yw,q.HM,D.DJ,D.sA,D.UI,rA.PW,rA.eI,eA.VO,eA.$2,ae.wT,BA.B4,BA.aE,L.Zl,L.tL,L.ji,L.cC,L.YV,L.iL,L.Zq,L.xW,L.KS,L.$R,L.Qo,L.YZ,L.NB,L.iF,ie.oV,b.iy,wA.ZF,wA.Ld,CA.V,Ee.QX,Ee.vh],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return n(),l})();var Gt=Ve(96697),Rt=Ve(51534),Cn=Ve(82765),pn=Ve(5951);const Dn=["sendPaymentForm"],en=["paymentAmt"],tn=["offerAmt"],In=["paymentReq"],yA=["offerReq"];function DA(n,l){if(1&n&&(A.j41(0,"mat-radio-button",26),A.EFF(1,"Offer"),A.k0s()),2&n){const e=A.XpG();A.Y8G("value",A.mNQ(e.paymentTypes.OFFER))}}function mA(n,l){1&n&&A.eu8(0)}function _A(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.paymentError)}}function jA(n,l){if(1&n&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",28),A.DNE(2,_A,2,1,"span",29),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.paymentError)}}function NA(n,l){if(1&n&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function le(n,l){if(1&n&&A.nrm(0,"span",39),2&n){const e=A.XpG(3);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function GA(n,l){if(1&n&&(A.j41(0,"mat-hint",34),A.EFF(1),A.DNE(2,NA,2,1,"span",35)(3,le,1,1,"span",36),A.EFF(4),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.SpI(" ",e.paymentDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),A.R7$(),A.SpI(" ",e.paymentDecodedHintPost," ")}}function ee(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Payment request is required."),A.k0s())}function qA(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.paymentDecodedHint)}}function Fe(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Payment amount is required."),A.k0s())}function Le(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",10)(1,"mat-label"),A.EFF(2,"Amount (Sats)"),A.k0s(),A.j41(3,"input",40,5),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG(2);return A.DH7(r.paymentAmount,o)||(r.paymentAmount=o),E.Njj(o)}),A.bIt("change",function(o){E.eBV(e);const r=A.XpG(2);return E.Njj(r.onAmountChange(o))}),A.k0s(),A.j41(5,"mat-hint"),A.EFF(6,"It is a zero amount invoice, enter amount to be paid."),A.k0s(),A.DNE(7,Fe,2,0,"mat-error",29),A.k0s()}if(2&n){const e=A.XpG(2);A.R7$(3),A.R50("ngModel",e.paymentAmount),A.R7$(4),A.Y8G("ngIf",!e.paymentAmount)}}function et(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",30)(1,"mat-label"),A.EFF(2,"Payment Request"),A.k0s(),A.j41(3,"textarea",31,4),A.bIt("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return E.Njj(r.onPaymentRequestEntry(o))})("matTextareaAutosize",function(){return E.eBV(e),E.Njj(!0)}),A.k0s(),A.DNE(5,GA,5,4,"mat-hint",32)(6,ee,2,0,"mat-error",29)(7,qA,2,1,"mat-error",29),A.k0s(),A.DNE(8,Le,8,2,"mat-form-field",33)}if(2&n){const e=A.sdS(4),i=A.XpG();A.R7$(3),A.Y8G("ngModel",i.paymentRequest),A.R7$(2),A.Y8G("ngIf",i.paymentRequest&&""!==i.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",!i.paymentRequest),A.R7$(),A.Y8G("ngIf",null==e.errors?null:e.errors.decodeError),A.R7$(),A.Y8G("ngIf",i.zeroAmtInvoice)}}function ct(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Pubkey is required."),A.k0s())}function ze(n,l){1&n&&(A.j41(0,"span",45),A.EFF(1,"= "),A.k0s())}function ue(n,l){if(1&n&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function Oe(n,l){if(1&n&&A.nrm(0,"span",39),2&n){const e=A.XpG(2);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function it(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Keysend amount is required."),A.k0s())}function gt(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",30)(1,"mat-label"),A.EFF(2,"Pubkey"),A.k0s(),A.j41(3,"input",41),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.pubkey,o)||(r.pubkey=o),E.Njj(o)}),A.k0s(),A.DNE(4,ct,2,0,"mat-error",29),A.k0s(),A.j41(5,"mat-form-field",30)(6,"mat-label"),A.EFF(7,"Amount"),A.k0s(),A.j41(8,"input",42,6),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.keysendAmount,o)||(r.keysendAmount=o),E.Njj(o)}),A.bIt("keyup",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onKeysendAmountChange())}),A.k0s(),A.j41(10,"span",43),A.EFF(11,"Sats "),A.k0s(),A.j41(12,"mat-hint",34),A.DNE(13,ze,2,0,"span",44)(14,ue,2,1,"span",35)(15,Oe,1,1,"span",36),A.EFF(16),A.k0s(),A.DNE(17,it,2,0,"mat-error",29),A.k0s()}if(2&n){const e=A.XpG();A.R7$(3),A.R50("ngModel",e.pubkey),A.R7$(),A.Y8G("ngIf",!e.pubkey),A.R7$(4),A.R50("ngModel",e.keysendAmount),A.R7$(5),A.Y8G("ngIf",""!==e.keysendValueHint),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.keysendValueHint),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.keysendValueHint),A.R7$(),A.SpI(" ",e.keysendValueHint," "),A.R7$(),A.Y8G("ngIf",!e.keysendAmount)}}function Ft(n,l){if(1&n&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function Mt(n,l){if(1&n&&A.nrm(0,"span",39),2&n){const e=A.XpG(3);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function Lt(n,l){if(1&n&&(A.j41(0,"mat-hint",34),A.EFF(1),A.DNE(2,Ft,2,1,"span",35)(3,Mt,1,1,"span",36),A.EFF(4),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.SpI(" ",e.offerDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.offerDecodedHintPre),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.offerDecodedHintPre),A.R7$(),A.SpI(" ",e.offerDecodedHintPost," ")}}function ut(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Offer request is required."),A.k0s())}function pt(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.offerDecodedHint)}}function Mn(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Offer amount is required."),A.k0s())}function rn(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",10)(1,"mat-label"),A.EFF(2,"Amount (Sats)"),A.k0s(),A.j41(3,"input",51,8),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG(2);return A.DH7(r.offerAmount,o)||(r.offerAmount=o),E.Njj(o)}),A.bIt("change",function(o){E.eBV(e);const r=A.XpG(2);return E.Njj(r.onAmountChange(o))}),A.k0s(),A.j41(5,"mat-hint"),A.EFF(6,"It is a zero amount offer, enter amount to be paid."),A.k0s(),A.DNE(7,Mn,2,0,"mat-error",29),A.k0s()}if(2&n){const e=A.XpG(2);A.R7$(3),A.R50("ngModel",e.offerAmount),A.R7$(4),A.Y8G("ngIf",!e.offerAmount)}}function nn(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",52)(1,"mat-label"),A.EFF(2,"Title to Save"),A.k0s(),A.j41(3,"input",53),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG(2);return A.DH7(r.offerTitle,o)||(r.offerTitle=o),E.Njj(o)}),A.k0s()()}if(2&n){const e=A.XpG(2);A.R7$(3),A.R50("ngModel",e.offerTitle)}}function Vt(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",30)(1,"mat-label"),A.EFF(2,"Offer Request"),A.k0s(),A.j41(3,"textarea",46,7),A.bIt("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return E.Njj(r.onPaymentRequestEntry(o))})("matTextareaAutosize",function(){return E.eBV(e),E.Njj(!0)}),A.k0s(),A.DNE(5,Lt,5,4,"mat-hint",32)(6,ut,2,0,"mat-error",29)(7,pt,2,1,"mat-error",29),A.k0s(),A.DNE(8,rn,8,2,"mat-form-field",33),A.j41(9,"div",47)(10,"mat-checkbox",48),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.flgSaveToDB,o)||(r.flgSaveToDB=o),E.Njj(o)}),A.EFF(11,"Bookmark Offer"),A.k0s(),A.j41(12,"mat-icon",49),A.EFF(13,"info_outline"),A.k0s()(),A.DNE(14,nn,4,1,"mat-form-field",50)}if(2&n){const e=A.sdS(4),i=A.XpG();A.R7$(3),A.Y8G("ngModel",i.offerRequest),A.R7$(2),A.Y8G("ngIf",i.offerRequest&&""!==i.offerDecodedHintPre),A.R7$(),A.Y8G("ngIf",!i.offerRequest),A.R7$(),A.Y8G("ngIf",null==e.errors?null:e.errors.decodeError),A.R7$(),A.Y8G("ngIf",i.zeroAmtOffer),A.R7$(2),A.R50("ngModel",i.flgSaveToDB),A.R7$(4),A.Y8G("ngIf",i.flgSaveToDB||""!==i.offerTitle)}}let vn=(()=>{var n;class l{set payReq(i){i&&(this.paymentReq=i)}set offrReq(i){i&&(this.offerReq=i)}constructor(i,o,r,nA,WA,Ae,mn,bt){this.dialogRef=i,this.data=o,this.store=r,this.logger=nA,this.commonService=WA,this.decimalPipe=Ae,this.actions=mn,this.dataService=bt,this.faExclamationTriangle=d.zpE,this.convertedCurrency=null,this.paymentTypes=c.Y0,this.paymentType=c.Y0.INVOICE,this.offerDecoded={},this.offerRequest="",this.offerDecodedHintPre="",this.offerDecodedHintPost="",this.offerDescription="",this.offerIssuer="",this.offerTitle="",this.zeroAmtOffer=!1,this.offerInvoice=null,this.offerAmount=null,this.flgSaveToDB=!1,this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentAmount=null,this.pubkey="",this.keysendAmount=null,this.keysendValueHint="",this.selActiveChannel={},this.activeChannels={},this.feeLimit=null,this.selFeeLimitType=c.nv[0],this.feeLimitTypes=c.nv,this.paymentError="",this.unSubs=[new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B]}ngOnInit(){if(this.data&&this.data.paymentType)switch(this.paymentType=this.data.paymentType,this.paymentType){case c.Y0.INVOICE:this.paymentRequest=this.data.invoiceBolt11;break;case c.Y0.KEYSEND:this.pubkey=this.data.pubkeyKeysend;break;case c.Y0.OFFER:this.onPaymentRequestEntry(this.data.bolt12),this.offerTitle=this.data.offerTitle,this.flgSaveToDB=!1}this.store.select(x._c).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(U.BM).pipe((0,M.Q)(this.unSubs[2])).subscribe(i=>{this.activeChannels=i.activeChannels,this.logger.info(i)}),this.actions.pipe((0,M.Q)(this.unSubs[3]),(0,Z.p)(i=>i.type===c.TC.UPDATE_API_CALL_STATUS_CLN||i.type===c.TC.SEND_PAYMENT_STATUS_CLN||i.type===c.TC.SET_OFFER_INVOICE_CLN)).subscribe(i=>{i.type===c.TC.SEND_PAYMENT_STATUS_CLN&&this.dialogRef.close(),i.type===c.TC.SET_OFFER_INVOICE_CLN&&(this.offerInvoice=i.payload,this.sendPayment()),i.type===c.TC.UPDATE_API_CALL_STATUS_CLN&&i.payload.status===c.wn.ERROR&&("SendPayment"===i.payload.action&&(delete this.paymentDecoded.amount_msat,this.paymentError=i.payload.message),"DecodePayment"===i.payload.action&&(this.paymentType===c.Y0.INVOICE&&(this.paymentDecodedHintPre="ERROR: "+i.payload.message,this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})),this.paymentType===c.Y0.OFFER&&(this.offerDecodedHintPre="ERROR: "+i.payload.message,this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})),this.paymentType===c.Y0.KEYSEND&&(this.keysendValueHint="ERROR: "+i.payload.message)),"FetchOfferInvoice"===i.payload.action&&this.paymentType===c.Y0.OFFER&&(this.paymentError=i.payload.message))})}onSendPayment(){switch(this.paymentType){case c.Y0.KEYSEND:if(!this.pubkey||""===this.pubkey.trim()||!this.keysendAmount||this.keysendAmount<=0)return!0;this.keysendPayment();break;case c.Y0.INVOICE:if(!this.paymentRequest||this.zeroAmtInvoice&&(0===this.paymentAmount||!this.paymentAmount))return this.paymentReq.control.markAsTouched(),this.paymentAmt.control.markAsTouched(),!0;this.paymentDecoded.created_at?this.sendPayment():(this.resetInvoiceDetails(),this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,M.Q)(this.unSubs[4])).subscribe(i=>{"bolt12 offer"===i.type&&i.offer_id?(this.paymentDecodedHintPre="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=i,this.setPaymentDecodedDetails())}));break;case c.Y0.OFFER:if(!this.offerRequest||this.zeroAmtOffer&&(0===this.offerAmount||!this.offerAmount))return this.offerReq.control.markAsTouched(),this.offerAmt.control.markAsTouched(),!0;this.offerDecoded.offer_id?this.sendPayment():(this.resetOfferDetails(),this.dataService.decodePayment(this.offerRequest,!0).pipe((0,M.Q)(this.unSubs[5])).subscribe(i=>{"bolt11 invoice"===i.type&&i.payment_hash?(this.offerDecodedHintPre="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=i,this.setOfferDecodedDetails())}))}}keysendPayment(){this.keysendAmount&&this.store.dispatch((0,xA.Fd)({payload:{uiMessage:c.MZ.SEND_KEYSEND,paymentType:c.Y0.KEYSEND,destination:this.pubkey,amount_msat:1e3*this.keysendAmount,fromDialog:!0}}))}sendPayment(){this.paymentError="",this.paymentType===c.Y0.INVOICE?this.store.dispatch((0,xA.Fd)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{uiMessage:c.MZ.SEND_PAYMENT,paymentType:c.Y0.INVOICE,bolt11:this.paymentRequest,amount_msat:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{uiMessage:c.MZ.SEND_PAYMENT,paymentType:c.Y0.INVOICE,bolt11:this.paymentRequest,fromDialog:!0}})):this.paymentType===c.Y0.OFFER&&(this.offerInvoice?this.offerAmount&&this.store.dispatch((0,xA.Fd)({payload:{uiMessage:c.MZ.SEND_PAYMENT,paymentType:c.Y0.OFFER,bolt11:this.offerInvoice.invoice,saveToDB:this.flgSaveToDB,bolt12:this.offerRequest,amount_msat:1e3*this.offerAmount,zeroAmtOffer:this.zeroAmtOffer,title:this.offerTitle,issuer:this.offerIssuer,description:this.offerDescription,fromDialog:!0}})):this.store.dispatch((0,xA.Ew)(this.zeroAmtOffer&&this.offerAmount?{payload:{offer:this.offerRequest,amount_msat:1e3*this.offerAmount}}:{payload:{offer:this.offerRequest}})))}onPaymentRequestEntry(i){this.paymentType===c.Y0.INVOICE?(this.paymentRequest=i,this.resetInvoiceDetails()):this.paymentType===c.Y0.OFFER&&(this.offerRequest=i,this.resetOfferDetails()),i.length>100&&this.dataService.decodePayment(i,!0).pipe((0,M.Q)(this.unSubs[6])).subscribe(o=>{this.paymentType===c.Y0.INVOICE?"bolt12 offer"===o.type&&o.offer_id?(this.paymentDecodedHintPre="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=o,this.setPaymentDecodedDetails()):this.paymentType===c.Y0.OFFER&&("bolt11 invoice"===o.type&&o.payment_hash?(this.offerDecodedHintPre="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=o,this.setOfferDecodedDetails()))})}resetOfferDetails(){this.offerInvoice=null,this.offerAmount=null,this.offerDecodedHintPre="",this.offerDecodedHintPost="",this.zeroAmtOffer=!1,this.paymentError="",this.offerReq&&this.offerReq.control.setErrors(null)}resetInvoiceDetails(){this.paymentAmount=null,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentError="",this.paymentReq&&this.paymentReq.control.setErrors(null)}onAmountChange(i){this.paymentType===c.Y0.INVOICE&&(delete this.paymentDecoded.amount_msat,this.paymentDecoded.amount_msat=+i.target.value),this.paymentType===c.Y0.OFFER&&(delete this.offerDecoded.offer_amount_msat,this.offerDecoded.offer_amount_msat=i.target.value)}onPaymentTypeChange(){this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.offerDecodedHintPre="",this.offerDecodedHintPost="",this.offerInvoice=null}setOfferDecodedDetails(){this.offerDecoded.offer_id&&!this.offerDecoded.offer_amount_msat?(this.offerDecoded.offer_amount_msat=0,this.zeroAmtOffer=!0,this.offerDescription=this.offerDecoded.offer_description||"",this.offerIssuer=this.offerDecoded.offer_issuer?this.offerDecoded.offer_issuer:"",this.offerDecodedHintPre="Zero Amount Offer | Description: "+this.offerDecoded.offer_description,this.offerDecodedHintPost=""):(this.zeroAmtOffer=!1,this.offerAmount=this.offerDecoded.offer_amount_msat?this.offerDecoded.offer_amount_msat/1e3:0,this.offerDescription=this.offerDecoded.offer_description||"",this.offerIssuer=this.offerDecoded.offer_issuer?this.offerDecoded.offer_issuer:"",this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(this.offerAmount,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,M.Q)(this.unSubs[7])).subscribe({next:i=>{this.convertedCurrency=i,this.offerDecodedHintPre="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats (",this.offerDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,c.k.OTHER)+" "+this.convertedCurrency.unit+") | Description: "+this.offerDecoded.offer_description},error:i=>{this.offerDecodedHintPre="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats | Description: "+this.offerDecoded.offer_description+". Unable to convert currency.",this.offerDecodedHintPost=""}}):(this.offerDecodedHintPre="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats | Description: "+this.offerDecoded.offer_description,this.offerDecodedHintPost=""))}setPaymentDecodedDetails(){this.paymentDecoded.created_at&&!this.paymentDecoded.amount_msat?(this.paymentDecoded.amount_msat=0,this.zeroAmtInvoice=!0,this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,M.Q)(this.unSubs[8])).subscribe({next:i=>{this.convertedCurrency=i,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,c.k.OTHER)+" "+this.convertedCurrency.unit+") | Memo: "+this.paymentDecoded.description},error:i=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""))}resetData(){switch(this.paymentType){case c.Y0.KEYSEND:this.pubkey="",this.keysendValueHint="",this.keysendAmount=null;break;case c.Y0.INVOICE:this.paymentRequest="",this.paymentDecoded={},this.selActiveChannel=null,this.feeLimit=null,this.selFeeLimitType=c.nv[0],this.resetInvoiceDetails();break;case c.Y0.OFFER:this.offerRequest="",this.offerDecoded={},this.flgSaveToDB=!1,this.resetOfferDetails()}this.paymentError=""}onKeysendAmountChange(){this.selNode&&this.selNode.settings.fiatConversion&&(this.keysendValueHint="",this.keysendAmount&&this.keysendAmount>99&&this.commonService.convertCurrency(this.keysendAmount,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,M.Q)(this.unSubs[3])).subscribe({next:i=>{this.convertedCurrency=i,this.keysendValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,c.k.OTHER)+" "+this.convertedCurrency.unit},error:i=>{this.keysendValueHint="Conversion Error: "+i}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(UA.CP),A.rXU(UA.Vh),A.rXU(_.il),A.rXU(N.gP),A.rXU(Q.h),A.rXU(Ee.QX),A.rXU(QA.En),A.rXU(Rt.u))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-lightning-send-payments"]],viewQuery:function(o,r){if(1&o&&(A.GBs(Dn,5),A.GBs(en,5),A.GBs(tn,5),A.GBs(In,5),A.GBs(yA,5)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.form=nA.first),A.mGM(nA=A.lsd())&&(r.paymentAmt=nA.first),A.mGM(nA=A.lsd())&&(r.offerAmt=nA.first),A.mGM(nA=A.lsd())&&(r.payReq=nA.first),A.mGM(nA=A.lsd())&&(r.offrReq=nA.first)}},standalone:!1,decls:30,vars:9,consts:[["sendPaymentForm","ngForm"],["invoiceBlock",""],["keysendBlock",""],["offerBlock",""],["paymentReq","ngModel"],["paymentAmt","ngModel"],["keysendAmt","ngModel"],["offerReq","ngModel"],["offerAmt","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","12","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["color","primary","name","paymentType","fxFlex","100","fxLayoutAlign","start start",1,"my-1",3,"ngModelChange","change","ngModel"],["fxFlex","20","tabindex","1",3,"value"],["fxFlex","20","tabindex","2",3,"value"],["fxFlex","20","tabindex","3",3,"value",4,"ngIf"],["fxLayoutAlign","space-between stretch","fxLayout","column",3,"submit","reset"],[4,"ngTemplateOutlet"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","9","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],["fxFlex","20","tabindex","3",3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","rows","4","name","paymentRequest","tabindex","4","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["matInput","","name","amount","tabindex","5","required","",3,"ngModelChange","change","ngModel"],["autoFocus","","matInput","","name","pubkey","tabindex","4","required","",3,"ngModelChange","ngModel"],["matInput","","name","keysendAmount","tabindex","5","required","",3,"ngModelChange","keyup","ngModel"],["matSuffix",""],["class","mr-3px",4,"ngIf"],[1,"mr-3px"],["autoFocus","","matInput","","rows","4","name","offerRequest","tabindex","4","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"mt-1"],["fxFlex","none","tabindex","6","color","primary",3,"ngModelChange","ngModel"],["matTooltip","Save offer in database for future payments","matTooltipPosition","below","fxFlex","none",1,"info-icon"],["fxFlex","100","class","mt-1",4,"ngIf"],["matInput","","name","amountoffer","tabindex","5","required","",3,"ngModelChange","change","ngModel"],["fxFlex","100",1,"mt-1"],["matInput","","tabindex","7",3,"ngModelChange","ngModel"]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",9)(1,"div",10)(2,"mat-card-header",11)(3,"div",12)(4,"span",13),A.EFF(5,"Send Payment"),A.k0s()(),A.j41(6,"button",14),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",15)(9,"mat-radio-group",16),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.paymentType,Ae)||(r.paymentType=Ae),E.Njj(Ae)}),A.bIt("change",function(){return E.eBV(nA),E.Njj(r.onPaymentTypeChange())}),A.j41(10,"mat-radio-button",17),A.EFF(11,"Invoice"),A.k0s(),A.j41(12,"mat-radio-button",18),A.EFF(13,"Keysend"),A.k0s(),A.DNE(14,DA,2,2,"mat-radio-button",19),A.k0s(),A.j41(15,"form",20,0),A.bIt("submit",function(){return E.eBV(nA),E.Njj(r.onSendPayment())})("reset",function(){return E.eBV(nA),E.Njj(r.resetData())}),A.DNE(17,mA,1,0,"ng-container",21)(18,jA,3,2,"div",22),A.j41(19,"div",23)(20,"button",24),A.EFF(21,"Clear Fields"),A.k0s(),A.j41(22,"button",25),A.EFF(23,"Send Payment"),A.k0s()()()()()(),A.DNE(24,et,9,5,"ng-template",null,1,A.C5r)(26,gt,18,8,"ng-template",null,2,A.C5r)(28,Vt,15,7,"ng-template",null,3,A.C5r)}if(2&o){const nA=A.sdS(25),WA=A.sdS(27),Ae=A.sdS(29);A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(3),A.R50("ngModel",r.paymentType),A.R7$(),A.Y8G("value",A.mNQ(r.paymentTypes.INVOICE)),A.R7$(2),A.Y8G("value",A.mNQ(r.paymentTypes.KEYSEND)),A.R7$(2),A.Y8G("ngIf",r.selNode.settings.enableOffers),A.R7$(3),A.Y8G("ngTemplateOutlet",r.paymentType===r.paymentTypes.KEYSEND?WA:r.paymentType===r.paymentTypes.OFFER?Ae:nA),A.R7$(),A.Y8G("ngIf",""!==r.paymentError)}},dependencies:[Ee.bT,Ee.T3,gA.qT,gA.me,gA.BC,gA.cb,gA.YS,gA.vS,gA.cV,y.aY,UA.tx,JA.$z,lA.m2,lA.MM,Cn.So,G.An,Be.fg,KA.rl,KA.nJ,KA.MV,KA.TL,KA.yw,pn.VT,pn._g,D.DJ,D.sA,D.UI,ie.oV,kA.N],encapsulation:2}))}return n(),l})();const ii=["sendPaymentForm"],bn=()=>["all"],cn=n=>({"error-border":n}),Tn=()=>["no_payment"],Xt=n=>({width:n}),zn=n=>({"display-none":n});function Jn(n,l){if(1&n&&(A.j41(0,"span",18),A.nrm(1,"fa-icon",19),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function jn(n,l){if(1&n&&A.nrm(0,"span",20),2&n){const e=A.XpG(3);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function Rn(n,l){if(1&n&&(A.j41(0,"mat-hint",15),A.EFF(1),A.DNE(2,Jn,2,1,"span",16)(3,jn,1,1,"span",17),A.EFF(4),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.SpI(" ",e.paymentDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),A.R7$(),A.SpI(" ",e.paymentDecodedHintPost," ")}}function $n(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Payment request is required."),A.k0s())}function Ii(n,l){if(1&n){const e=A.RV6();A.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),A.EFF(4,"Payment Request"),A.k0s(),A.j41(5,"textarea",9,1),A.bIt("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return E.Njj(r.onPaymentRequestEntry(o))})("matTextareaAutosize",function(){return E.eBV(e),E.Njj(!0)}),A.k0s(),A.DNE(7,Rn,5,4,"mat-hint",10)(8,$n,2,0,"mat-error",11),A.k0s(),A.j41(9,"div",12)(10,"button",13),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.resetData())}),A.EFF(11,"Clear Field"),A.k0s(),A.j41(12,"button",14),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onSendPayment())}),A.EFF(13,"Send Payment"),A.k0s()()()}if(2&n){const e=A.XpG();A.R7$(5),A.Y8G("ngModel",e.paymentRequest),A.R7$(2),A.Y8G("ngIf",e.paymentRequest&&""!==e.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",!e.paymentRequest)}}function Fi(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",21)(1,"button",14),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.openSendPaymentModal())}),A.EFF(2,"Send Payment"),A.k0s()()}}function xi(n,l){if(1&n&&(A.j41(0,"mat-option",70),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function wi(n,l){1&n&&A.nrm(0,"mat-progress-bar",71)}function yi(n,l){1&n&&A.nrm(0,"th",72)}function _n(n,l){1&n&&A.nrm(0,"span",76)}function Ci(n,l){1&n&&A.nrm(0,"span",77)}function hs(n,l){if(1&n&&(A.j41(0,"td",73),A.DNE(1,_n,1,0,"span",74)(2,Ci,1,0,"span",75),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf","complete"===e.status),A.R7$(),A.Y8G("ngIf","complete"!==e.status)}}function ki(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Created At"),A.k0s())}function Hi(n,l){if(1&n&&(A.j41(0,"td",73),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*(null==e?null:e.created_at),"dd/MMM/y HH:mm")," ")}}function Zn(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Type"),A.k0s())}function si(n,l){if(1&n&&(A.j41(0,"td",73),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null!=e&&e.bolt12?"Bolt12":null!=e&&e.bolt11?"Bolt11":"Keysend")}}function ws(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Payment Hash"),A.k0s())}function $i(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Xt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash)}}function Yi(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Invoice"),A.k0s())}function vi(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Xt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.bolt11)}}function Cs(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Label"),A.k0s())}function ds(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Xt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.label)}}function Qs(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Destination"),A.k0s())}function ji(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Xt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.destination)}}function Oi(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Memo"),A.k0s())}function oi(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Xt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.memo)}}function ms(n,l){1&n&&(A.j41(0,"th",81),A.EFF(1,"Sats Sent"),A.k0s())}function As(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",82),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.amount_sent_msat)/1e3,"1.0-4"))}}function Ms(n,l){1&n&&(A.j41(0,"th",81),A.EFF(1,"Sats Received"),A.k0s())}function ps(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",82),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.amount_msat)/1e3,"1.0-4"))}}function Ai(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",83)(1,"div",84)(2,"mat-select",85),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",86),A.bIt("click",function(){E.eBV(e);const o=A.XpG(2);return E.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Ji(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",87)(1,"button",88),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG(2);return E.Njj(r.onPaymentClick(o))}),A.EFF(2,"View Info"),A.k0s()()}}function Ds(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No payment available."),A.k0s())}function li(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting payments..."),A.k0s())}function es(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function ci(n,l){if(1&n&&(A.j41(0,"td",89),A.DNE(1,Ds,2,0,"p",11)(2,li,2,0,"p",11)(3,es,2,1,"p",11),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",!(null!=e.payments&&e.payments.data&&null!=e.payments&&null!=e.payments.data&&e.payments.data.length||(null==e.apiCallStatus?null:e.apiCallStatus.status)!==e.apiCallStatusEnum.COMPLETED)),A.R7$(),A.Y8G("ngIf",!(null!=e.payments&&e.payments.data&&null!=e.payments&&null!=e.payments.data&&e.payments.data.length||(null==e.apiCallStatus?null:e.apiCallStatus.status)!==e.apiCallStatusEnum.INITIATED)),A.R7$(),A.Y8G("ngIf",!(null!=e.payments&&e.payments.data&&null!=e.payments&&null!=e.payments.data&&e.payments.data.length||(null==e.apiCallStatus?null:e.apiCallStatus.status)!==e.apiCallStatusEnum.ERROR))}}function Is(n,l){1&n&&A.nrm(0,"span",76)}function Fs(n,l){1&n&&A.nrm(0,"span",77)}function xs(n,l){1&n&&A.nrm(0,"span",76)}function di(n,l){1&n&&A.nrm(0,"span",77)}function ys(n,l){if(1&n&&(A.j41(0,"span",90),A.DNE(1,xs,1,0,"span",74)(2,di,1,0,"span",75),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf","complete"===e.status),A.R7$(),A.Y8G("ngIf","complete"!==e.status)}}function bi(n,l){if(1&n&&(A.qex(0),A.DNE(1,ys,3,2,"span",91),A.bVm()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function Sn(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",90),A.DNE(2,Is,1,0,"span",74)(3,Fs,1,0,"span",75),A.k0s(),A.DNE(4,bi,2,1,"ng-container",11),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.Y8G("ngIf","complete"===e.status),A.R7$(),A.Y8G("ngIf","complete"!==e.status),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function C(n,l){if(1&n&&(A.j41(0,"span",90),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*e.created_at,"dd/MMM/y HH:mm")," ")}}function f(n,l){if(1&n&&(A.qex(0),A.DNE(1,C,3,4,"span",91),A.bVm()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function S(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",90),A.EFF(2),A.k0s(),A.DNE(3,f,2,1,"ng-container",11),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" Total Attempts: ",null==e?null:e.total_parts," "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function I(n,l){1&n&&A.nrm(0,"span",90)}function tA(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,I,1,0,"span",91),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function MA(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",90),A.EFF(2),A.k0s(),A.DNE(3,tA,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(null!=e&&e.bolt12?"Bolt12":null!=e&&e.bolt11?"Bolt11":"Keysend"),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function OA(n,l){if(1&n&&(A.j41(0,"span",90),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" Part ID ",e.partid?e.partid:0," ")}}function se(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,OA,2,1,"span",91),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function ge(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,se,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,Xt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Ne(n,l){if(1&n&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&n){const e=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,Xt,e.screenSize===e.screenSizeEnum.XS?"6rem":e.colWidth))}}function Re(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,Ne,2,3,"span",93),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function me(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,Re,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,Xt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.bolt11),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Ke(n,l){if(1&n&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&n){const e=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,Xt,e.screenSize===e.screenSizeEnum.XS?"6rem":e.colWidth))}}function Et(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,Ke,2,3,"span",93),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function Dt(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,Et,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,Xt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.label),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function xt(n,l){if(1&n&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&n){const e=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,Xt,e.screenSize===e.screenSizeEnum.XS?"6rem":e.colWidth))}}function It(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,xt,2,3,"span",93),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function dt(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,It,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,Xt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.destination),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function ft(n,l){if(1&n&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&n){const e=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,Xt,e.screenSize===e.screenSizeEnum.XS?"6rem":e.colWidth))}}function yt(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,ft,2,3,"span",93),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function an(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,yt,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,Xt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.memo),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function wn(n,l){if(1&n&&(A.j41(0,"span",95),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,e.amount_sent_msat/1e3,e.amount_sent_msat<1e3?"1.0-4":"1.0-0")," ")}}function jt(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,wn,3,4,"span",96),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function ht(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",95),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.DNE(4,jt,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,2,(null==e?null:e.amount_sent_msat)/1e3,(null==e?null:e.amount_sent_msat)<1e3?"1.0-4":"1.0-0")),A.R7$(2),A.Y8G("ngIf",e.is_expanded)}}function Zt(n,l){if(1&n&&(A.j41(0,"span",95),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,e.amount_msat/1e3,e.amount_msat<1e3?"1.0-4":"1.0-0")," ")}}function YA(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,Zt,3,4,"span",96),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function s(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",95),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.DNE(4,YA,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,2,(null==e?null:e.amount_msat)/1e3,(null==e?null:e.amount_msat)<1e3?"1.0-4":"1.0-0")),A.R7$(2),A.Y8G("ngIf",e.is_expanded)}}function p(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",100)(1,"button",101),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG(4);return E.Njj(r.onPaymentClick(o))}),A.EFF(2),A.k0s()()}if(2&n){const e=l.$implicit;A.R7$(2),A.SpI("View ",e.partid?e.partid:0)}}function z(n,l){if(1&n&&(A.j41(0,"div"),A.DNE(1,p,3,1,"div",99),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function AA(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",73)(1,"span",97)(2,"button",98),A.bIt("click",function(){const o=E.eBV(e).$implicit;return E.Njj(o.is_expanded=!o.is_expanded)}),A.EFF(3),A.k0s()(),A.DNE(4,z,2,1,"div",11),A.k0s()}if(2&n){const e=l.$implicit;A.R7$(3),A.JRh(e.is_expanded?"Hide":"Show"),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function fA(n,l){1&n&&A.nrm(0,"tr",102)}function FA(n,l){if(1&n&&A.nrm(0,"tr",103),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,zn,(null==e.payments?null:e.payments.data)&&(null==e.payments||null==e.payments.data?null:e.payments.data.length)&&(null==e.payments||null==e.payments.data?null:e.payments.data.length)>0))}}function HA(n,l){1&n&&A.nrm(0,"tr",104)}function zA(n,l){1&n&&A.nrm(0,"tr",102)}function Qe(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",22)(1,"div",23)(2,"div",24),A.nrm(3,"fa-icon",25),A.j41(4,"span",26),A.EFF(5,"Payments History"),A.k0s()(),A.j41(6,"div",27)(7,"mat-form-field",28)(8,"mat-label"),A.EFF(9,"Filter By"),A.k0s(),A.j41(10,"mat-select",29),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.selFilterBy,o)||(r.selFilterBy=o),E.Njj(o)}),A.bIt("selectionChange",function(){E.eBV(e);const o=A.XpG();return o.selFilter="",E.Njj(o.applyFilter())}),A.j41(11,"perfect-scrollbar"),A.DNE(12,xi,2,2,"mat-option",30),A.k0s()()(),A.j41(13,"mat-form-field",28)(14,"mat-label"),A.EFF(15,"Filter"),A.k0s(),A.j41(16,"input",31),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.selFilter,o)||(r.selFilter=o),E.Njj(o)}),A.bIt("input",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.applyFilter())})("keyup",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.applyFilter())}),A.k0s()()()(),A.j41(17,"div",32)(18,"div",33),A.DNE(19,wi,1,0,"mat-progress-bar",34),A.j41(20,"table",35,2),A.qex(22,36),A.DNE(23,yi,1,0,"th",37)(24,hs,3,2,"td",38),A.bVm(),A.qex(25,39),A.DNE(26,ki,2,0,"th",40)(27,Hi,3,4,"td",38),A.bVm(),A.qex(28,41),A.DNE(29,Zn,2,0,"th",40)(30,si,2,1,"td",38),A.bVm(),A.qex(31,42),A.DNE(32,ws,2,0,"th",40)(33,$i,4,4,"td",38),A.bVm(),A.qex(34,43),A.DNE(35,Yi,2,0,"th",40)(36,vi,4,4,"td",38),A.bVm(),A.qex(37,44),A.DNE(38,Cs,2,0,"th",40)(39,ds,4,4,"td",38),A.bVm(),A.qex(40,45),A.DNE(41,Qs,2,0,"th",40)(42,ji,4,4,"td",38),A.bVm(),A.qex(43,46),A.DNE(44,Oi,2,0,"th",40)(45,oi,4,4,"td",38),A.bVm(),A.qex(46,47),A.DNE(47,ms,2,0,"th",48)(48,As,4,4,"td",38),A.bVm(),A.qex(49,49),A.DNE(50,Ms,2,0,"th",48)(51,ps,4,4,"td",38),A.bVm(),A.qex(52,50),A.DNE(53,Ai,6,0,"th",51)(54,Ji,3,0,"td",52),A.bVm(),A.qex(55,53),A.DNE(56,ci,4,3,"td",54),A.bVm(),A.qex(57,55),A.DNE(58,Sn,5,3,"td",38),A.bVm(),A.qex(59,56),A.DNE(60,S,4,2,"td",38),A.bVm(),A.qex(61,57),A.DNE(62,MA,4,2,"td",38),A.bVm(),A.qex(63,58),A.DNE(64,ge,5,5,"td",38),A.bVm(),A.qex(65,59),A.DNE(66,me,5,5,"td",38),A.bVm(),A.qex(67,60),A.DNE(68,Dt,5,5,"td",38),A.bVm(),A.qex(69,61),A.DNE(70,dt,5,5,"td",38),A.bVm(),A.qex(71,62),A.DNE(72,an,5,5,"td",38),A.bVm(),A.qex(73,63),A.DNE(74,ht,5,5,"td",38),A.bVm(),A.qex(75,64),A.DNE(76,s,5,5,"td",38),A.bVm(),A.qex(77,65),A.DNE(78,AA,5,2,"td",38),A.bVm(),A.DNE(79,fA,1,0,"tr",66)(80,FA,1,3,"tr",67)(81,HA,1,0,"tr",68)(82,zA,1,0,"tr",66),A.k0s()()(),A.nrm(83,"mat-paginator",69),A.k0s()}if(2&n){const e=A.XpG();A.R7$(3),A.Y8G("icon",e.faHistory),A.R7$(7),A.R50("ngModel",e.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(18,bn).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter),A.R7$(3),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.payments)("ngClass",A.eq3(19,cn,""!==e.errorMessage)),A.R7$(59),A.Y8G("matRowDefColumns",e.mppColumns)("matRowDefWhen",e.is_group),A.R7$(),A.Y8G("matFooterRowDef",A.lJ4(21,Tn)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)("matRowDefWhen",!e.is_group),A.R7$(),A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("hidePageSize",e.screenSize!==e.screenSizeEnum.XS)}}let he=(()=>{var n;class l{constructor(i,o,r,nA,WA,Ae,mn,bt,Yn){this.logger=i,this.commonService=o,this.store=r,this.rtlEffects=nA,this.decimalPipe=WA,this.titleCasePipe=Ae,this.datePipe=mn,this.dataService=bt,this.camelCaseWithReplace=Yn,this.calledFrom="transactions",this.convertedCurrency=null,this.nodePageDefs=c.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:c.md,sortBy:"created_at",sortOrder:c.oi.DESCENDING},this.faHistory=d.Int,this.newlyAddedPayment="",this.information={},this.payments=new L.I6([]),this.paymentJSONArr=[],this.displayedColumns=[],this.mppColumns=[],this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(x._c).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(U.mH).pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(U.av).pipe((0,M.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.mppColumns=[],this.displayedColumns.map(o=>this.mppColumns.push("group_"+o)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns),this.logger.info(this.mppColumns)}),this.store.select(U.KT).pipe((0,M.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=i.payments||[],this.paymentJSONArr.length&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(i)})}ngAfterViewInit(){this.paymentJSONArr.length&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr)}is_group(i,o){return o.is_group||!1}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.created_at?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,M.Q)(this.unSubs[4])).subscribe(i=>{this.paymentDecoded=i,this.paymentDecoded.created_at?(this.paymentDecoded.amount_msat||(this.paymentDecoded.amount_msat=0),this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded?.payment_hash||"",this.paymentDecoded.amount_msat&&0!==this.paymentDecoded.amount_msat?(this.store.dispatch((0,w.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"payee",value:this.paymentDecoded.payee,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"created_at",value:this.paymentDecoded.created_at,title:"Creation Date",width:50,type:c.UN.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.amount_msat/1e3,title:"Amount (Sats)",width:50,type:c.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:c.UN.NUMBER},{key:"min_finaltv_expiry",value:this.paymentDecoded.min_final_cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,Gt.s)(1)).subscribe(o=>{o&&(this.store.dispatch((0,xA.Fd)({payload:{uiMessage:c.MZ.SEND_PAYMENT,paymentType:c.Y0.INVOICE,bolt11:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,w.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"payee",value:this.paymentDecoded.payee,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"created_at",value:this.paymentDecoded.created_at,title:"Creation Date",width:40,type:c.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:c.UN.NUMBER},{key:"min_finaltv_expiry",value:this.paymentDecoded.min_final_cltv_expiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",getInputs:[{placeholder:"Amount (Sats)",inputType:c.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,Gt.s)(1)).subscribe(r=>{r&&(this.paymentDecoded.amount_msat=r[0].inputValue,this.store.dispatch((0,xA.Fd)({payload:{uiMessage:c.MZ.SEND_PAYMENT,paymentType:c.Y0.INVOICE,bolt11:this.paymentRequest,amount_msat:1e3*r[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(i){this.paymentRequest=i,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,M.Q)(this.unSubs[5])).subscribe(o=>{this.paymentDecoded=o,this.paymentDecoded.amount_msat?this.selNode?.settings.fiatConversion?this.commonService.convertCurrency(this.paymentDecoded.amount_msat/1e3||0,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,M.Q)(this.unSubs[6])).subscribe({next:r=>{this.convertedCurrency=r,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,c.k.OTHER)+" "+this.convertedCurrency.unit+") | Memo: "+this.paymentDecoded.description},error:r=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost="")})}openSendPaymentModal(){this.store.dispatch((0,w.xO)({payload:{data:{component:vn}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}onPaymentClick(i){const o=[[{key:"payment_preimage",value:i.payment_preimage,title:"Payment Preimage",width:100,type:c.UN.STRING}],[{key:"id",value:i.id,title:"ID",width:20,type:c.UN.STRING},{key:"destination",value:i.destination,title:"Destination",width:80,type:c.UN.STRING}],[{key:"created_at",value:i.created_at,title:"Creation Date",width:50,type:c.UN.DATE_TIME},{key:"status",value:this.titleCasePipe.transform(i.status),title:"Status",width:50,type:c.UN.STRING}],[{key:"amount_msat",value:i.amount_msat,title:"Amount (mSats)",width:50,type:c.UN.NUMBER},{key:"amount_sent_msat",value:i.amount_sent_msat,title:"Amount Sent (mSats)",width:50,type:c.UN.NUMBER}]];i.bolt11&&""!==i.bolt11&&o?.unshift([{key:"bolt11",value:i.bolt11,title:"Bolt 11",width:100,type:c.UN.STRING}]),i.bolt12&&""!==i.bolt12&&o?.unshift([{key:"bolt12",value:i.bolt12,title:"Bolt 12",width:100,type:c.UN.STRING}]),i.memo&&""!==i.memo&&o?.splice(2,0,[{key:"memo",value:i.memo,title:"Memo",width:100,type:c.UN.STRING}]),i.hasOwnProperty("partid")?o?.unshift([{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:80,type:c.UN.STRING},{key:"partid",value:i.partid,title:"Part ID",width:20,type:c.UN.STRING}]):o?.unshift([{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:100,type:c.UN.STRING}]),this.store.dispatch((0,w.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Payment Information",message:o}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.payments.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.created_at?this.datePipe.transform(new Date(1e3*i.created_at),"dd/MMM/y HH:mm")?.toLowerCase():"")+(i.bolt12?"bolt12":i.bolt11?"bolt11":"keysend")+JSON.stringify(i).toLowerCase();break;case"status":r="complete"===i?.status?"completed":"incomplete/failed";break;case"created_at":r=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"msatoshi_sent":r=((i.amount_sent_msat||0)/1e3).toString()||"";break;case"msatoshi":r=((i.amount_msat||0)/1e3).toString()||"";break;case"type":r=i?.bolt12?"bolt12":i?.bolt11?"bolt11":"keysend";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"status"===this.selFilterBy||"type"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadPaymentsTable(i){this.payments=new L.I6(i?[...i]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(o,r)=>{switch(r){case"msatoshi_sent":return o.amount_sent_msat;case"msatoshi":return o.amount_msat;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.payments.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const o=JSON.parse(JSON.stringify(this.payments.data))?.reduce((r,nA)=>nA.mpps?r.concat(nA.mpps):(delete nA.is_group,delete nA.is_expanded,delete nA.total_parts,r.concat(nA)),[]);this.commonService.downloadFile(o,"Payments")}}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(Q.h),A.rXU(_.il),A.rXU(H.H),A.rXU(Ee.QX),A.rXU(Ee.PV),A.rXU(Ee.vh),A.rXU(Rt.u),A.rXU(TA.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-lightning-payments"]],viewQuery:function(o,r){if(1&o&&(A.GBs(ii,5),A.GBs(BA.B4,5),A.GBs(b.iy,5)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.form=nA.first),A.mGM(nA=A.lsd())&&(r.sort=nA.first),A.mGM(nA=A.lsd())&&(r.paginator=nA.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[A.Jv_([{provide:eA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:b.xX,useValue:(0,c.on)("Payments")}])],decls:4,vars:3,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["table",""],["fxLayout","column","fxFlex","110","fxLayoutAlign","space-between stretch",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100"],["matInput","","name","paymentRequest","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","perfectScrollbar","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxLayout","row",1,"mt-3"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","created_at"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","type"],["matColumnDef","payment_hash"],["matColumnDef","bolt11"],["matColumnDef","label"],["matColumnDef","destination"],["matColumnDef","memo"],["matColumnDef","msatoshi_sent"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","group_status"],["matColumnDef","group_created_at"],["matColumnDef","group_type"],["matColumnDef","group_payment_hash"],["matColumnDef","group_bolt11"],["matColumnDef","group_label"],["matColumnDef","group_destination"],["matColumnDef","group_memo"],["matColumnDef","group_msatoshi_sent"],["matColumnDef","group_msatoshi"],["matColumnDef","group_actions"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Completed","matTooltipPosition","right",4,"ngIf"],["class","dot yellow","matTooltip","Incomplete/Failed","matTooltipPosition","right",4,"ngIf"],["matTooltip","Completed","matTooltipPosition","right",1,"dot","green"],["matTooltip","Incomplete/Failed","matTooltipPosition","right",1,"dot","yellow"],["mat-header-cell","","mat-sort-header",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"mpp-row-span"],["fxLayoutAlign","start center","class","mpp-row-span",4,"ngFor","ngForOf"],["fxLayout","row",1,"ellipsis-parent","mpp-row-span",3,"ngStyle"],["fxLayoutAlign","start center","class","ellipsis-parent mpp-row-span",3,"ngStyle",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"ellipsis-parent","mpp-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"mpp-row-span"],["fxLayoutAlign","end center","class","mpp-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"mpp-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-mpp-expand",3,"click"],["class","mpp-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"mpp-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-mpp-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(o,r){1&o&&(A.j41(0,"div",3),A.DNE(1,Ii,14,3,"form",4)(2,Fi,3,0,"div",5)(3,Qe,84,22,"div",6),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf","home"===r.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===r.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===r.calledFrom))},dependencies:[Ee.YU,Ee.Sq,Ee.bT,Ee.B3,gA.qT,gA.me,gA.BC,gA.cb,gA.YS,gA.vS,gA.cV,y.aY,JA.$z,Be.fg,KA.rl,KA.nJ,KA.MV,KA.TL,q.HM,D.DJ,D.sA,D.UI,rA.PW,rA.eI,eA.VO,eA.$2,ae.wT,BA.B4,BA.aE,L.Zl,L.tL,L.ji,L.cC,L.YV,L.iL,L.Zq,L.xW,L.KS,L.$R,L.Qo,L.YZ,L.NB,L.iF,ie.oV,b.iy,wA.ZF,wA.Ld,Ee.QX,Ee.vh],styles:[".mat-column-status[_ngcontent-%COMP%], .mat-column-group_status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-group_actions[_ngcontent-%COMP%] .mpp-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .mpp-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-mpp-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-mpp-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_status[_ngcontent-%COMP%] .mpp-row-span[_ngcontent-%COMP%]:not(:first-of-type), .mat-column-group_created_at[_ngcontent-%COMP%] .mpp-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem}.mpp-row-span[_ngcontent-%COMP%]{min-height:3rem}.mpp-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mpp-row-span[_ngcontent-%COMP%] .dot[_ngcontent-%COMP%]{margin-top:-.3rem;position:absolute}.mat-column-group_created_at[_ngcontent-%COMP%]{min-width:11rem}"]}))}return n(),l})();const De=n=>({backgroundColor:n});function Ye(n,l){if(1&n&&A.nrm(0,"span",6),2&n){const e=A.XpG();A.Y8G("ngStyle",A.eq3(1,De,"#"+(null==e.information?null:e.information.color)))}}function Se(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",1),A.EFF(2,"Color"),A.k0s(),A.j41(3,"div",2),A.nrm(4,"span",7),A.EFF(5),A.nI1(6,"uppercase"),A.k0s()()),2&n){const e=A.XpG();A.R7$(4),A.Y8G("ngStyle",A.eq3(4,De,"#"+(null==e.information?null:e.information.color))),A.R7$(),A.SpI(" ",A.bMT(6,2,null==e.information?null:e.information.color)," ")}}function Te(n,l){if(1&n&&(A.j41(0,"span",2),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(e)}}let Je=(()=>{var n;class l{constructor(i){this.commonService=i,this.chains=[""]}ngOnChanges(){this.information&&this.information.chains&&this.information.chains.length>0&&(this.chains=[""],this.information.chains.forEach(i=>{this.chains.push(this.commonService.titleCase(i.chain||"")+" "+this.commonService.titleCase(i.network||""))}))}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(Q.h))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},standalone:!1,features:[A.OA$],decls:17,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-2"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"]],template:function(o,r){1&o&&(A.j41(0,"div",0)(1,"div")(2,"h4",1),A.EFF(3,"Alias"),A.k0s(),A.j41(4,"div",2),A.EFF(5),A.DNE(6,Ye,1,3,"span",3),A.k0s()(),A.DNE(7,Se,7,6,"div",4),A.j41(8,"div")(9,"h4",1),A.EFF(10,"Implementation"),A.k0s(),A.j41(11,"div",2),A.EFF(12),A.k0s()(),A.j41(13,"div")(14,"h4",1),A.EFF(15,"Chain"),A.k0s(),A.DNE(16,Te,2,1,"span",5),A.k0s()()),2&o&&(A.R7$(5),A.SpI(" ",null==r.information?null:r.information.alias," "),A.R7$(),A.Y8G("ngIf",!r.showColorFieldSeparately),A.R7$(),A.Y8G("ngIf",r.showColorFieldSeparately),A.R7$(5),A.JRh(null!=r.information&&r.information.lnImplementation||null!=r.information&&r.information.version?(null==r.information?null:r.information.lnImplementation)+" "+(null==r.information?null:r.information.version):""),A.R7$(4),A.Y8G("ngForOf",r.chains))},dependencies:[Ee.Sq,Ee.bT,Ee.B3,D.DJ,D.sA,D.UI,rA.eI,Ee.Pc],encapsulation:2}))}return n(),l})();function xe(n,l){if(1&n&&(A.j41(0,"div",2)(1,"div")(2,"h4",3),A.EFF(3,"Lightning"),A.k0s(),A.j41(4,"div",4),A.EFF(5),A.nI1(6,"number"),A.k0s(),A.nrm(7,"mat-progress-bar",5),A.k0s(),A.j41(8,"div")(9,"h4",3),A.EFF(10,"On-chain"),A.k0s(),A.j41(11,"div",4),A.EFF(12),A.nI1(13,"number"),A.k0s(),A.nrm(14,"mat-progress-bar",5),A.k0s(),A.j41(15,"div")(16,"h4",3),A.EFF(17,"Total"),A.k0s(),A.j41(18,"div",4),A.EFF(19),A.nI1(20,"number"),A.k0s()()()),2&n){const e=A.XpG();A.R7$(5),A.SpI("",A.i5U(6,7,e.balances.lightning,"1.0-0")," Sats"),A.R7$(2),A.Y8G("value",A.mNQ(e.balances.lightning/e.balances.total*100)),A.R7$(5),A.SpI("",A.i5U(13,10,e.balances.onchain,"1.0-0")," Sats"),A.R7$(2),A.Y8G("value",A.mNQ(e.balances.onchain/e.balances.total*100)),A.R7$(5),A.SpI("",A.i5U(20,13,e.balances.total,"1.0-0")," Sats")}}function be(n,l){if(1&n&&(A.j41(0,"div",6)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let je=(()=>{var n;class l{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["class","mt-1","fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,xe,21,16,"div",1)(1,be,3,1,"ng-template",null,0,A.C5r),2&o){const nA=A.sdS(2);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",nA)}},dependencies:[Ee.bT,q.HM,D.DJ,D.sA,D.UI,Ee.QX],encapsulation:2}))}return n(),l})();const At=()=>["../routing"];function ot(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",4),A.EFF(2,"Transactions"),A.k0s(),A.j41(3,"div",5),A.EFF(4),A.nI1(5,"number"),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(4),A.JRh(A.bMT(5,1,null==e.fees?null:e.fees.totalTxCount))}}function on(n,l){1&n&&(A.j41(0,"div")(1,"h4",4),A.EFF(2,"Transactions"),A.k0s(),A.j41(3,"a",8),A.EFF(4," Go to Routing "),A.k0s()()),2&n&&(A.R7$(3),A.Y8G("routerLink",A.lJ4(1,At)))}function qt(n,l){if(1&n&&(A.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A.EFF(4,"Total"),A.k0s(),A.j41(5,"div",5),A.EFF(6),A.nI1(7,"number"),A.k0s()()(),A.j41(8,"div",6),A.DNE(9,ot,6,3,"div",7)(10,on,5,2,"div",7),A.k0s()()),2&n){const e=A.XpG();A.R7$(6),A.SpI("",A.bMT(7,3,(null==e.fees?null:e.fees.feeCollected)/1e3)," Sats"),A.R7$(3),A.Y8G("ngIf",null==e.fees?null:e.fees.totalTxCount),A.R7$(),A.Y8G("ngIf",!(null!=e.fees&&e.fees.totalTxCount))}}function kn(n,l){if(1&n&&(A.j41(0,"div",9)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let St=(()=>{var n;class l{constructor(){this.totalFees=[{name:"Total",value:0}]}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["class","mt-2","fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",1,"mt-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],[4,"ngIf"],[1,"overflow-wrap","dashboard-info-value",3,"routerLink"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,qt,11,5,"div",1)(1,kn,3,1,"ng-template",null,0,A.C5r),2&o){const nA=A.sdS(2);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",nA)}},dependencies:[Ee.bT,D.DJ,D.sA,D.UI,Hn.Wk,Ee.QX],encapsulation:2}))}return n(),l})();function _i(n,l){if(1&n&&(A.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A.EFF(4,"Active"),A.k0s(),A.j41(5,"div",5),A.nrm(6,"span",6),A.EFF(7),A.nI1(8,"number"),A.k0s()(),A.j41(9,"div")(10,"h4",4),A.EFF(11,"Pending"),A.k0s(),A.j41(12,"div",5),A.nrm(13,"span",7),A.EFF(14),A.nI1(15,"number"),A.k0s()(),A.j41(16,"div")(17,"h4",4),A.EFF(18,"Inactive"),A.k0s(),A.j41(19,"div",5),A.nrm(20,"span",8),A.EFF(21),A.nI1(22,"number"),A.k0s()()(),A.j41(23,"div",3)(24,"div")(25,"h4",4),A.EFF(26,"Capacity"),A.k0s(),A.j41(27,"div",5),A.EFF(28),A.nI1(29,"number"),A.k0s()(),A.j41(30,"div")(31,"h4",4),A.EFF(32,"Capacity"),A.k0s(),A.j41(33,"div",5),A.EFF(34),A.nI1(35,"number"),A.k0s()(),A.j41(36,"div")(37,"h4",4),A.EFF(38,"Capacity"),A.k0s(),A.j41(39,"div",5),A.EFF(40),A.nI1(41,"number"),A.k0s()()()()),2&n){const e=A.XpG();A.R7$(7),A.JRh(A.bMT(8,6,(null==e.channelsStatus||null==e.channelsStatus.active?null:e.channelsStatus.active.channels)||0)),A.R7$(7),A.JRh(A.bMT(15,8,(null==e.channelsStatus||null==e.channelsStatus.pending?null:e.channelsStatus.pending.channels)||0)),A.R7$(7),A.JRh(A.bMT(22,10,(null==e.channelsStatus||null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.channels)||0)),A.R7$(7),A.SpI("",A.i5U(29,12,(null==e.channelsStatus||null==e.channelsStatus.active?null:e.channelsStatus.active.capacity)||0,"1.0-0")," Sats"),A.R7$(6),A.SpI("",A.i5U(35,15,(null==e.channelsStatus||null==e.channelsStatus.pending?null:e.channelsStatus.pending.capacity)||0,"1.0-0")," Sats"),A.R7$(6),A.SpI("",A.i5U(41,18,(null==e.channelsStatus||null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.capacity)||0,"1.0-0")," Sats")}}function Nn(n,l){if(1&n&&(A.j41(0,"div",9)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let Un=(()=>{var n;class l{constructor(){this.channelsStatus={active:{},pending:{},inactive:{}}}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["class","mt-2","fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",1,"mt-2"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,_i,42,21,"div",1)(1,Nn,3,1,"ng-template",null,0,A.C5r),2&o){const nA=A.sdS(2);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",nA)}},dependencies:[Ee.bT,D.DJ,D.sA,D.UI,Ee.QX],encapsulation:2}))}return n(),l})();var $t=Ve(71997);const Fn=()=>["../connections/channels/open"],Bi=(n,l)=>({filterColumn:n,filterValue:l});function Vn(n,l){if(1&n&&(A.j41(0,"div",19)(1,"a",20),A.EFF(2),A.nI1(3,"slice"),A.k0s(),A.j41(4,"div",6)(5,"mat-hint",21)(6,"strong",8),A.EFF(7,"Local:"),A.k0s(),A.EFF(8),A.nI1(9,"number"),A.k0s(),A.j41(10,"mat-hint",22),A.nrm(11,"fa-icon",23),A.EFF(12),A.nI1(13,"number"),A.k0s(),A.j41(14,"mat-hint",24)(15,"strong",8),A.EFF(16,"Remote:"),A.k0s(),A.EFF(17),A.nI1(18,"number"),A.k0s()(),A.nrm(19,"mat-progress-bar",25),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(3);A.R7$(),A.Y8G("matTooltip",A.mNQ(e.alias||e.peer_id))("matTooltipDisabled",A.mNQ((e.alias||e.peer_id).length<26))("routerLink",A.lJ4(26,Fn))("state",A.l_i(27,Bi,e.alias?"alias":"peer_id",e.alias||e.peer_id)),A.R7$(),A.Lme(" ",A.brH(3,14,e.alias||e.peer_id,0,24),"",(e.alias||e.peer_id).length>25?"...":""," "),A.R7$(6),A.SpI("",A.i5U(9,18,e.to_us_msat/1e3||0,"1.0-0")," Sats"),A.R7$(3),A.Y8G("icon",i.faBalanceScale),A.R7$(),A.SpI(" (",A.bMT(13,21,e.balancedness||0),") "),A.R7$(5),A.SpI("",A.i5U(18,23,e.to_them_msat/1e3||0,"1.0-0")," Sats"),A.R7$(2),A.Y8G("value",A.mNQ(e.to_us_msat&&e.to_us_msat>0?e.to_us_msat/(e.to_us_msat+e.to_them_msat)*100:0))}}function ei(n,l){if(1&n&&(A.j41(0,"div",17),A.DNE(1,Vn,20,30,"div",18),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngForOf",e.activeChannels)}}function ts(n,l){if(1&n&&(A.j41(0,"div",3)(1,"div",4)(2,"span",5),A.EFF(3,"Total Capacity"),A.k0s(),A.j41(4,"div",6)(5,"mat-hint",7)(6,"strong",8),A.EFF(7,"Local:"),A.k0s(),A.EFF(8),A.nI1(9,"number"),A.k0s(),A.j41(10,"mat-hint",9),A.nrm(11,"fa-icon",10),A.EFF(12),A.nI1(13,"number"),A.k0s(),A.j41(14,"mat-hint",11)(15,"strong",8),A.EFF(16,"Remote:"),A.k0s(),A.EFF(17),A.nI1(18,"number"),A.k0s()(),A.nrm(19,"mat-progress-bar",12),A.k0s(),A.j41(20,"div",13),A.nrm(21,"mat-divider",14),A.k0s(),A.j41(22,"div",15),A.DNE(23,ei,2,1,"div",16),A.k0s()()),2&n){const e=A.XpG(),i=A.sdS(2);A.R7$(8),A.SpI("",A.i5U(9,8,(null==e.channelBalances?null:e.channelBalances.localBalance)||0,"1.0-0")," Sats"),A.R7$(3),A.Y8G("icon",e.faBalanceScale),A.R7$(),A.SpI(" (",A.bMT(13,11,(null==e.channelBalances?null:e.channelBalances.balancedness)||0),") "),A.R7$(5),A.SpI("",A.i5U(18,13,(null==e.channelBalances?null:e.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),A.R7$(2),A.Y8G("value",A.mNQ(null!=e.channelBalances&&e.channelBalances.localBalance&&(null==e.channelBalances?null:e.channelBalances.localBalance)>0?+(null==e.channelBalances?null:e.channelBalances.localBalance)/(+(null==e.channelBalances?null:e.channelBalances.localBalance)+ +(null==e.channelBalances?null:e.channelBalances.remoteBalance))*100:0)),A.R7$(4),A.Y8G("ngIf",e.activeChannels&&e.activeChannels.length>0)("ngIfElse",i)}}function Ys(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",26),A.EFF(1," No channels available. "),A.j41(2,"button",27),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.goToChannels())}),A.EFF(3,"Open Channel"),A.k0s()()}}function lr(n,l){if(1&n&&(A.j41(0,"div",28)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let cr=(()=>{var n;class l{constructor(i){this.router=i,this.faBalanceScale=d.GR4,this.faDumbbell=d.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/cln/connections")}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(Pt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",activeChannels:"activeChannels",sortBy:"sortBy",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,ts,24,16,"div",2)(1,Ys,4,0,"ng-template",null,0,A.C5r)(3,lr,3,1,"ng-template",null,1,A.C5r),2&o){const nA=A.sdS(4);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",nA)}},dependencies:[Ee.Sq,Ee.bT,y.aY,JA.$z,KA.MV,$t.q,q.HM,D.DJ,D.sA,D.UI,ie.oV,wA.Ld,Hn.Wk,Ee.P9,Ee.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]}))}return n(),l})();const Qa=(n,l,e)=>({"mb-4":n,"mb-2":l,"mb-1":e}),ma=()=>["../connections/channels/open"],Ma=(n,l)=>({filterColumn:n,filterValue:l});function M0(n,l){if(1&n&&(A.j41(0,"mat-hint",19)(1,"strong",20),A.EFF(2,"Capacity: "),A.k0s(),A.EFF(3),A.nI1(4,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(3),A.SpI("",A.i5U(4,1,e.to_them_msat/1e3||0,"1.0-0")," Sats")}}function pa(n,l){if(1&n&&(A.j41(0,"mat-hint",19)(1,"strong",20),A.EFF(2,"Capacity: "),A.k0s(),A.EFF(3),A.nI1(4,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(3),A.SpI("",A.i5U(4,1,e.to_us_msat/1e3||0,"1.0-0")," Sats")}}function Da(n,l){if(1&n&&A.nrm(0,"mat-progress-bar",21),2&n){const e=A.XpG().$implicit,i=A.XpG(3);A.Y8G("value",A.mNQ(i.totalLiquidity>0?(e.to_them_msat/1e3||0)/i.totalLiquidity*100:0))}}function Ia(n,l){if(1&n&&A.nrm(0,"mat-progress-bar",21),2&n){const e=A.XpG().$implicit,i=A.XpG(3);A.Y8G("value",A.mNQ(i.totalLiquidity>0?(e.to_us_msat/1e3||0)/i.totalLiquidity*100:0))}}function Fa(n,l){if(1&n&&(A.j41(0,"div",14)(1,"a",15),A.EFF(2),A.nI1(3,"slice"),A.k0s(),A.j41(4,"div",16),A.DNE(5,M0,5,4,"mat-hint",17)(6,pa,5,4,"mat-hint",17),A.k0s(),A.DNE(7,Da,1,2,"mat-progress-bar",18)(8,Ia,1,2,"mat-progress-bar",18),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(3);A.R7$(),A.Y8G("matTooltip",A.mNQ(e.alias||e.peer_id))("matTooltipDisabled",A.mNQ((e.alias||e.peer_id).length<26))("routerLink",A.lJ4(16,ma))("state",A.l_i(17,Ma,e.alias?"alias":"peer_id",e.alias||e.peer_id)),A.R7$(),A.Lme(" ",A.brH(3,12,e.alias||e.peer_id,0,24),"",(e.alias||e.peer_id).length>25?"...":""," "),A.R7$(3),A.Y8G("ngIf","In"===i.direction),A.R7$(),A.Y8G("ngIf","Out"===i.direction),A.R7$(),A.Y8G("ngIf","In"===i.direction),A.R7$(),A.Y8G("ngIf","Out"===i.direction)}}function xa(n,l){if(1&n&&(A.j41(0,"div",12),A.DNE(1,Fa,9,20,"div",13),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngForOf",e.activeChannels)}}function ya(n,l){if(1&n&&(A.j41(0,"div",3)(1,"div",4)(2,"span",5),A.EFF(3,"Total Capacity"),A.k0s(),A.j41(4,"mat-hint",6),A.EFF(5),A.nI1(6,"number"),A.k0s(),A.nrm(7,"mat-progress-bar",7),A.k0s(),A.j41(8,"div",8),A.nrm(9,"mat-divider",9),A.k0s(),A.j41(10,"div",10),A.DNE(11,xa,2,1,"div",11),A.k0s()()),2&n){const e=A.XpG(),i=A.sdS(2);A.Y8G("ngClass",A.sMw(7,Qa,e.screenSize===e.screenSizeEnum.XS||e.screenSize===e.screenSizeEnum.SM,e.screenSize===e.screenSizeEnum.MD,e.screenSize===e.screenSizeEnum.LG||e.screenSize===e.screenSizeEnum.XL)),A.R7$(5),A.SpI("",A.i5U(6,4,e.totalLiquidity,"1.0-0")," Sats"),A.R7$(6),A.Y8G("ngIf",e.activeChannels&&e.activeChannels.length>0)("ngIfElse",i)}}function Ya(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",25),A.bIt("click",function(){E.eBV(e);const o=A.XpG(2);return E.Njj(o.goToChannels())}),A.EFF(1,"Open Channel"),A.k0s()}}function va(n,l){if(1&n&&(A.j41(0,"div",22)(1,"div",23)(2,"div"),A.EFF(3,"No channels available."),A.k0s(),A.DNE(4,Ya,2,0,"button",24),A.k0s()()),2&n){const e=A.XpG();A.R7$(4),A.Y8G("ngIf","Out"===e.direction)}}function Yr(n,l){if(1&n&&(A.j41(0,"div",26)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let ba=(()=>{var n;class l{constructor(i,o){this.router=i,this.commonService=o,this.screenSize="",this.screenSizeEnum=c.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/cln/connections")}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(Pt.Ix),A.rXU(Q.h))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",activeChannels:"activeChannels",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],["fxLayout","column","fxFlex.gt-sm","88","fxFlex","84","fxLayoutAlign","start start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","class","w-100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100",1,"w-100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","100","fxLayoutAlign","start center","class","font-size-90 color-primary",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"w-100","mt-1"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,ya,12,11,"div",2)(1,va,5,1,"ng-template",null,0,A.C5r)(3,Yr,3,1,"ng-template",null,1,A.C5r),2&o){const nA=A.sdS(4);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",nA)}},dependencies:[Ee.YU,Ee.Sq,Ee.bT,JA.$z,KA.MV,$t.q,q.HM,D.DJ,D.sA,D.UI,rA.PW,ie.oV,wA.Ld,Hn.Wk,Ee.P9,Ee.QX],encapsulation:2}))}return n(),l})();const vr=n=>({"dashboard-card-content":!0,"error-border":n}),Ra=n=>({"p-0":n});function Sa(n,l){if(1&n&&(A.j41(0,"button",28)(1,"mat-icon"),A.EFF(2,"more_vert"),A.k0s()()),2&n){A.XpG();const e=A.sdS(11);A.Y8G("matMenuTriggerFor",e)}}function Na(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const o=E.eBV(e).index,r=A.XpG().$implicit,nA=A.XpG(2);return E.Njj(nA.onNavigateTo(r.links[o]))}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit;A.R7$(),A.JRh(e)}}function Ta(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){E.eBV(e);const o=A.XpG(3);return E.Njj(o.onsortChannelsBy())}),A.EFF(1),A.k0s()}if(2&n){const e=A.XpG(3);A.R7$(),A.SpI("Sort By ","Balance Score"===e.sortField?"Capacity":"Balance Score")}}function Pa(n,l){1&n&&A.nrm(0,"mat-progress-bar",30)}function Ua(n,l){if(1&n&&A.nrm(0,"rtl-cln-node-info",31),2&n){const e=A.XpG(3);A.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function Ga(n,l){if(1&n&&A.nrm(0,"rtl-cln-balances-info",32),2&n){const e=A.XpG(3);A.Y8G("balances",e.balances)("errorMessage",e.errorMessages[1])}}function La(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-capacity-info",33),2&n){const e=A.XpG(3);A.Y8G("sortBy",e.sortField)("channelBalances",e.channelBalances)("activeChannels",e.activeChannelsCapacity)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[1])}}function za(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-info",34),2&n){const e=A.XpG(3);A.Y8G("fees",e.fees)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[2]+" "+e.errorMessages[3])}}function ka(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-status-info",35),2&n){const e=A.XpG(3);A.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[1]+" "+e.errorMessages[2])}}function Yt(n,l){1&n&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find information!"),A.k0s())}function zs(n,l){if(1&n&&(A.j41(0,"mat-grid-tile",11)(1,"mat-card",12)(2,"mat-card-header")(3,"mat-card-title",13)(4,"div"),A.nrm(5,"fa-icon",14),A.j41(6,"span"),A.EFF(7),A.k0s()(),A.j41(8,"div"),A.DNE(9,Sa,3,1,"button",15),A.j41(10,"mat-menu",16,1),A.DNE(12,Na,2,1,"button",17)(13,Ta,2,1,"button",18),A.k0s()()()(),A.j41(14,"mat-card-content",19),A.DNE(15,Pa,1,0,"mat-progress-bar",20),A.j41(16,"div",21),A.DNE(17,Ua,1,2,"rtl-cln-node-info",22)(18,Ga,1,2,"rtl-cln-balances-info",23)(19,La,1,4,"rtl-cln-channel-capacity-info",24)(20,za,1,2,"rtl-cln-fee-info",25)(21,ka,1,2,"rtl-cln-channel-status-info",26)(22,Yt,2,0,"h3",27),A.k0s()()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("colspan",e.cols)("rowspan",e.rows),A.R7$(5),A.Y8G("icon",e.icon),A.R7$(2),A.JRh(e.title),A.R7$(2),A.Y8G("ngIf",e.links[0]),A.R7$(3),A.Y8G("ngForOf",e.goToOptions),A.R7$(),A.Y8G("ngIf","capacity"===e.id),A.R7$(),A.Y8G("fxFlex",A.mNQ("capacity"===e.id?90:70))("ngClass",A.eq3(17,vr,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===e.id&&i.apiCallStatusBalances.status===i.apiCallStatusEnum.ERROR||"capacity"===e.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusBalances.status===i.apiCallStatusEnum.ERROR)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.ERROR)||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusBalances.status===i.apiCallStatusEnum.ERROR))),A.R7$(),A.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===e.id&&i.apiCallStatusBalances.status===i.apiCallStatusEnum.INITIATED||"capacity"===e.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusBalances.status===i.apiCallStatusEnum.INITIATED)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.INITIATED)||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusBalances.status===i.apiCallStatusEnum.INITIATED)),A.R7$(),A.Y8G("ngSwitch",e.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","balance"),A.R7$(),A.Y8G("ngSwitchCase","capacity"),A.R7$(),A.Y8G("ngSwitchCase","fee"),A.R7$(),A.Y8G("ngSwitchCase","status")}}function Ha(n,l){if(1&n&&(A.j41(0,"div",5)(1,"div",6),A.nrm(2,"fa-icon",7),A.j41(3,"span",8),A.EFF(4),A.k0s()(),A.j41(5,"mat-grid-list",9),A.DNE(6,zs,23,19,"mat-grid-tile",10),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.Y8G("icon",e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.ERROR?e.faFrown:e.faSmile),A.R7$(2),A.JRh(e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.COMPLETED?"Welcome "+e.information.alias+"! Your node is up and running.":e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),A.R7$(),A.Y8G("rowHeight",e.operatorCardHeight),A.R7$(),A.Y8G("ngForOf",e.operatorCards)}}function Br(n,l){if(1&n&&(A.j41(0,"button",28)(1,"mat-icon"),A.EFF(2,"more_vert"),A.k0s()()),2&n){A.XpG();const e=A.sdS(9);A.Y8G("matMenuTriggerFor",e)}}function br(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const o=E.eBV(e).index,r=A.XpG(2).$implicit,nA=A.XpG(2);return E.Njj(nA.onNavigateTo(r.links[o]))}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit;A.R7$(),A.JRh(e)}}function ks(n,l){if(1&n&&(A.j41(0,"mat-card-header")(1,"mat-card-title",13)(2,"div"),A.nrm(3,"fa-icon",14),A.j41(4,"span"),A.EFF(5),A.k0s()(),A.j41(6,"div"),A.DNE(7,Br,3,1,"button",15),A.j41(8,"mat-menu",16,2),A.DNE(10,br,2,1,"button",17),A.k0s()()()()),2&n){const e=A.XpG().$implicit;A.R7$(3),A.Y8G("icon",e.icon),A.R7$(2),A.JRh(e.title),A.R7$(2),A.Y8G("ngIf",e.links[0]),A.R7$(3),A.Y8G("ngForOf",e.goToOptions)}}function ns(n,l){1&n&&A.nrm(0,"mat-progress-bar",30)}function Hs(n,l){if(1&n&&A.nrm(0,"rtl-cln-node-info",45),2&n){const e=A.XpG(3);A.Y8G("information",e.information)}}function Rr(n,l){if(1&n&&A.nrm(0,"rtl-cln-balances-info",32),2&n){const e=A.XpG(3);A.Y8G("balances",e.balances)("errorMessage",e.errorMessages[1])}}function vs(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-liquidity-info",46),2&n){const e=A.XpG(3);A.Y8G("totalLiquidity",e.totalInboundLiquidity)("activeChannels",e.allInboundChannels)("errorMessage",e.errorMessages[2])}}function gr(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-liquidity-info",47),2&n){const e=A.XpG(3);A.Y8G("totalLiquidity",e.totalOutboundLiquidity)("activeChannels",e.allOutboundChannels)("errorMessage",e.errorMessages[2])}}function fr(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const o=E.eBV(e).index,r=A.XpG(2).$implicit,nA=A.XpG(2);return E.Njj(nA.onNavigateTo(r.links[o]))}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit;A.R7$(),A.JRh(e)}}function ja(n,l){if(1&n&&(A.j41(0,"span",48)(1,"mat-tab-group",49)(2,"mat-tab",50),A.nrm(3,"rtl-cln-lightning-invoices-table",51),A.k0s(),A.j41(4,"mat-tab",52),A.nrm(5,"rtl-cln-lightning-payments",53),A.k0s()(),A.j41(6,"div",54)(7,"button",28)(8,"mat-icon"),A.EFF(9,"more_vert"),A.k0s()(),A.j41(10,"mat-menu",16,3),A.DNE(12,fr,2,1,"button",17),A.k0s()()()),2&n){const e=A.sdS(11),i=A.XpG().$implicit;A.R7$(7),A.Y8G("matMenuTriggerFor",e),A.R7$(5),A.Y8G("ngForOf",i.goToOptions)}}function Oa(n,l){1&n&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find information!"),A.k0s())}function Ri(n,l){if(1&n&&(A.j41(0,"mat-grid-tile",11)(1,"mat-card",38),A.DNE(2,ks,11,4,"mat-card-header",39),A.j41(3,"mat-card-content",40),A.DNE(4,ns,1,0,"mat-progress-bar",20),A.j41(5,"div",21),A.DNE(6,Hs,1,1,"rtl-cln-node-info",41)(7,Rr,1,2,"rtl-cln-balances-info",23)(8,vs,1,3,"rtl-cln-channel-liquidity-info",42)(9,gr,1,3,"rtl-cln-channel-liquidity-info",43)(10,ja,13,2,"span",44)(11,Oa,2,0,"h3",27),A.k0s()()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("colspan",e.cols)("rowspan",e.rows),A.R7$(),A.Y8G("ngClass",A.eq3(14,Ra,"transactions"===e.id)),A.R7$(),A.Y8G("ngIf","transactions"!==e.id),A.R7$(),A.Y8G("fxFlex",A.mNQ("transactions"===e.id?100:"balance"===e.id?70:90))("ngClass",A.eq3(16,vr,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===e.id&&i.apiCallStatusBalances.status===i.apiCallStatusEnum.ERROR||("inboundLiq"===e.id||"outboundLiq"===e.id)&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===e.id&&i.apiCallStatusBalances.status===i.apiCallStatusEnum.INITIATED||("inboundLiq"===e.id||"outboundLiq"===e.id)&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",e.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","balance"),A.R7$(),A.Y8G("ngSwitchCase","inboundLiq"),A.R7$(),A.Y8G("ngSwitchCase","outboundLiq"),A.R7$(),A.Y8G("ngSwitchCase","transactions")}}function Vi(n,l){if(1&n&&(A.j41(0,"div",36),A.nrm(1,"fa-icon",7),A.j41(2,"span",8),A.EFF(3),A.k0s()(),A.j41(4,"mat-grid-list",37),A.DNE(5,Ri,12,18,"mat-grid-tile",10),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faSmile),A.R7$(2),A.SpI("Welcome ",e.information.alias,"! Your node is up and running."),A.R7$(),A.Y8G("rowHeight",e.merchantCardHeight),A.R7$(),A.Y8G("ngForOf",e.merchantCards)}}let ur=(()=>{var n;class l{constructor(i,o,r,nA){this.logger=i,this.store=o,this.commonService=r,this.router=nA,this.faSmile=V.Qpm,this.faFrown=V.wB1,this.faAngleDoubleDown=d.WxX,this.faAngleDoubleUp=d.$sC,this.faChartPie=d.W1p,this.faBolt=d.zm_,this.faServer=d.D6w,this.faNetworkWired=d.eGi,this.userPersonaEnum=c.HW,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.information={},this.totalBalance={},this.balances={onchain:-1,lightning:-1,total:0},this.activeChannels=[],this.channelsStatus={active:{},pending:{},inactive:{}},this.activeChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="390px",this.merchantCardHeight="62px",this.sortField="Balance Score",this.errorMessages=["","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusBalances=null,this.apiCallStatusChannels=null,this.apiCallStatusFHistory=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new B.B,new B.B,new B.B,new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===c.f7.XS?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}]):this.screenSize===c.f7.SM||this.screenSize===c.f7.MD?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}]):(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}])}ngOnInit(){this.store.select(U.RQ).pipe((0,M.Q)(this.unSubs[0]),(0,Y.E)(this.store.select(x._c))).subscribe(([i,o])=>{this.errorMessages[0]="",this.errorMessages[3]="",this.apiCallStatusNodeInfo=i.apisCallStatus[0],this.apiCallStatusFHistory=i.apisCallStatus[1],this.apiCallStatusNodeInfo.status===c.wn.ERROR&&(this.errorMessages[0]=this.apiCallStatusNodeInfo.message?"object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message:""),this.apiCallStatusFHistory.status===c.wn.ERROR&&(this.errorMessages[3]=this.apiCallStatusFHistory.message?"object"==typeof this.apiCallStatusFHistory.message?JSON.stringify(this.apiCallStatusFHistory.message):this.apiCallStatusFHistory.message:""),this.selNode=o,this.information=i.information,this.fees=i.fees}),this.store.select(U.BM).pipe((0,M.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessages[2]="",this.apiCallStatusChannels=i.apiCallStatus,this.apiCallStatusChannels.status===c.wn.ERROR&&(this.errorMessages[2]=this.apiCallStatusChannels.message?"object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message:""),this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.activeChannels=i.activeChannels,this.activeChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels,"balancedness")))||[],this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels?.filter(o=>!!o.to_them_msat&&o.to_them_msat>0),"to_them_msat")))||[],this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels?.filter(o=>!!o.to_us_msat&&o.to_us_msat>0),"to_us_msat")))||[],this.activeChannels.forEach(o=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil((o.to_them_msat||0)/1e3),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor((o.to_us_msat||0)/1e3)}),this.channelsStatus.active.channels=i.activeChannels.length||0,this.channelsStatus.pending.channels=i.pendingChannels.length||0,this.channelsStatus.inactive.channels=i.inactiveChannels.length||0,this.logger.info(i)}),this.store.select(U.Al).pipe((0,M.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessages[1]="",this.apiCallStatusBalances=i.apiCallStatus,this.apiCallStatusBalances.status===c.wn.ERROR&&(this.errorMessages[1]=this.apiCallStatusBalances.message?"object"==typeof this.apiCallStatusBalances.message?JSON.stringify(this.apiCallStatusBalances.message):this.apiCallStatusBalances.message:""),this.totalBalance=i.balance,this.balances.onchain=i.balance.totalBalance||0,this.balances.lightning=i.localRemoteBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const o=i.localRemoteBalance.localBalance?+i.localRemoteBalance.localBalance:0,r=i.localRemoteBalance.remoteBalance?+i.localRemoteBalance.remoteBalance:0;this.channelBalances={localBalance:o,remoteBalance:r,balancedness:+(1-Math.abs((o-r)/(o+r))).toFixed(3)},this.channelsStatus.active.capacity=i.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=i.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=i.localRemoteBalance.inactiveBalance||0,this.logger.info(i)})}onNavigateTo(i){this.router.navigateByUrl("/cln/"+i)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.activeChannelsCapacity=this.activeChannels.sort((i,o)=>{const r=(i.to_us_msat?+i.to_us_msat:0)+(i.to_them_msat?+i.to_them_msat:0),nA=(o.to_them_msat?+o.to_them_msat:0)+(o.to_them_msat?+o.to_them_msat:0);return r>nA?-1:r{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(_.il),A.rXU(Q.h),A.rXU(Pt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-home"]],standalone:!1,decls:3,vars:2,consts:[["merchantDashboard",""],["menuOperator","matMenu"],["menuMerchant","matMenu"],["menuTransactions","matMenu"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","activeChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","activeChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100","direction","In",3,"totalLiquidity","activeChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100","direction","Out",3,"totalLiquidity","activeChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100","direction","In",3,"totalLiquidity","activeChannels","errorMessage"],["fxFlex","100","direction","Out",3,"totalLiquidity","activeChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],["calledFrom","home",1,"h-100"],["label","Pay"],["calledFrom","home"],[1,"underline"]],template:function(o,r){if(1&o&&A.DNE(0,Ha,7,4,"div",4)(1,Vi,6,4,"ng-template",null,0,A.C5r),2&o){const nA=A.sdS(2);A.Y8G("ngIf",(null==r.selNode?null:r.selNode.settings.userPersona)===r.userPersonaEnum.OPERATOR)("ngIfElse",nA)}},dependencies:[Ee.YU,Ee.Sq,Ee.bT,Ee.ux,Ee.e1,Ee.fG,y.aY,K.iY,lA.RN,lA.m2,lA.MM,lA.dh,uA.B_,uA.NS,G.An,J.kk,J.fb,J.Cp,q.HM,D.DJ,D.sA,D.UI,rA.PW,$.mq,$.T8,Ut,he,Je,je,St,Un,cr,ba],encapsulation:2}))}return n(),l})();var Ja=Ve(84572),_a=Ve(82852),bs=Ve(95416),Qi=Ve(9454),Wi=Ve(36013);const Sr=["form"],Va=["formSweepAll"],Wa=["stepper"],Si=(n,l)=>({"mr-6":n,"mr-2":l});function Xe(n,l){if(1&n&&(A.j41(0,"div",16),A.nrm(1,"fa-icon",17),A.j41(2,"span",18)(3,"div"),A.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(5,"span",19)(6,"span"),A.EFF(7),A.k0s(),A.j41(8,"span"),A.EFF(9),A.k0s(),A.j41(10,"span"),A.EFF(11),A.k0s(),A.j41(12,"span"),A.EFF(13),A.k0s(),A.j41(14,"span"),A.EFF(15),A.k0s()()()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faInfoCircle),A.R7$(6),A.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),A.R7$(2),A.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),A.R7$(2),A.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),A.R7$(2),A.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),A.R7$(2),A.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function js(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Bitcoin address is required."),A.k0s())}function Ki(n,l){1&n&&(A.j41(0,"mat-hint"),A.EFF(1,"Amount replaced by UTXO balance"),A.k0s())}function Ka(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.amountError)}}function Nr(n,l){if(1&n&&(A.j41(0,"mat-option",51),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e),A.R7$(),A.JRh(e)}}function Xa(n,l){if(1&n&&(A.j41(0,"mat-option",51),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e.feeRateId),A.R7$(),A.SpI(" ",e.feeRateType," ")}}function Rs(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function Za(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",52)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.j41(3,"input",53,5),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG(2);return A.DH7(r.customFeeRate,o)||(r.customFeeRate=o),E.Njj(o)}),A.k0s(),A.DNE(5,Rs,2,0,"mat-error",23),A.k0s()}if(2&n){const e=A.XpG(2);A.R7$(3),A.Y8G("step",1)("min",0)("required","customperkb"===e.selFeeRate&&!e.flgMinConf),A.R50("ngModel",e.customFeeRate),A.R7$(2),A.Y8G("ngIf","customperkb"===e.selFeeRate&&!e.flgMinConf&&!e.customFeeRate)}}function p0(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function Tr(n,l){if(1&n&&(A.j41(0,"mat-option",51),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e),A.R7$(),A.SpI("",A.i5U(2,2,e.amount_msat/1e3,"1.0-0")," Sats")}}function Pr(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.sendFundError)}}function Ur(n,l){if(1&n&&(A.j41(0,"div",54),A.nrm(1,"fa-icon",17),A.DNE(2,Pr,2,1,"span",23),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.sendFundError)}}function D0(n,l){if(1&n){const e=A.RV6();A.j41(0,"form",20,1),A.bIt("submit",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onSendFunds())})("reset",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.resetData())}),A.j41(2,"mat-form-field",21)(3,"mat-label"),A.EFF(4,"Bitcoin Address"),A.k0s(),A.j41(5,"input",22,2),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.transaction.destination,o)||(r.transaction.destination=o),E.Njj(o)}),A.k0s(),A.DNE(7,js,2,0,"mat-error",23),A.k0s(),A.j41(8,"mat-form-field",24)(9,"mat-label"),A.EFF(10,"Amount"),A.k0s(),A.j41(11,"input",25,3),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.transaction.satoshi,o)||(r.transaction.satoshi=o),E.Njj(o)}),A.k0s(),A.DNE(13,Ki,2,0,"mat-hint",23),A.j41(14,"span",26),A.EFF(15),A.k0s(),A.DNE(16,Ka,2,1,"mat-error",23),A.k0s(),A.j41(17,"mat-form-field",27)(18,"mat-select",28),A.bIt("selectionChange",function(o){E.eBV(e);const r=A.XpG();return E.Njj(r.onAmountUnitChange(o))}),A.DNE(19,Nr,2,2,"mat-option",29),A.k0s()(),A.j41(20,"div",30)(21,"div",31)(22,"div",32)(23,"mat-form-field",33)(24,"mat-label"),A.EFF(25,"Fee Rate"),A.k0s(),A.j41(26,"mat-select",34),A.mxI("valueChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.selFeeRate,o)||(r.selFeeRate=o),E.Njj(o)}),A.bIt("selectionChange",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.customFeeRate=null)}),A.DNE(27,Xa,2,2,"mat-option",29),A.k0s()(),A.DNE(28,Za,6,5,"mat-form-field",35),A.k0s(),A.j41(29,"div",36)(30,"mat-checkbox",37),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.flgMinConf,o)||(r.flgMinConf=o),E.Njj(o)}),A.bIt("change",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.flgMinConf?o.selFeeRate=null:o.minConfValue=null)}),A.k0s(),A.j41(31,"mat-form-field",38)(32,"mat-label"),A.EFF(33,"Min Confirmation Blocks"),A.k0s(),A.j41(34,"input",39,4),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.minConfValue,o)||(r.minConfValue=o),E.Njj(o)}),A.k0s(),A.DNE(36,p0,2,0,"mat-error",23),A.k0s()()(),A.j41(37,"mat-expansion-panel",40),A.bIt("closed",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onAdvancedPanelToggle(!0))})("opened",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onAdvancedPanelToggle(!1))}),A.j41(38,"mat-expansion-panel-header")(39,"mat-panel-title")(40,"span"),A.EFF(41),A.k0s()()(),A.j41(42,"div",30)(43,"div",41)(44,"mat-form-field",42)(45,"mat-label"),A.EFF(46,"Coin Selection"),A.k0s(),A.j41(47,"mat-select",43),A.mxI("valueChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.selUTXOs,o)||(r.selUTXOs=o),E.Njj(o)}),A.bIt("selectionChange",function(o){E.eBV(e);const r=A.XpG();return E.Njj(r.onUTXOSelectionChange(o))}),A.j41(48,"mat-select-trigger"),A.EFF(49),A.nI1(50,"number"),A.k0s(),A.DNE(51,Tr,3,5,"mat-option",29),A.k0s()(),A.j41(52,"div",44)(53,"mat-slide-toggle",45),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.flgUseAllBalance,o)||(r.flgUseAllBalance=o),E.Njj(o)}),A.bIt("change",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onUTXOAllBalanceChange())}),A.EFF(54," Use selected UTXOs balance "),A.k0s(),A.j41(55,"mat-icon",46),A.EFF(56,"info_outline"),A.k0s()()()()(),A.nrm(57,"div",30),A.DNE(58,Ur,3,2,"div",47),A.j41(59,"div",48)(60,"button",49),A.EFF(61,"Clear Fields"),A.k0s(),A.j41(62,"button",50),A.EFF(63,"Send Funds"),A.k0s()()()()}if(2&n){const e=A.XpG();A.R7$(5),A.R50("ngModel",e.transaction.destination),A.R7$(2),A.Y8G("ngIf",!e.transaction.destination),A.R7$(4),A.Y8G("type",e.flgUseAllBalance?"text":"number")("step",100)("min",0)("disabled",e.flgUseAllBalance),A.R50("ngModel",e.transaction.satoshi),A.R7$(2),A.Y8G("ngIf",e.flgUseAllBalance),A.R7$(2),A.SpI("",e.selAmountUnit," "),A.R7$(),A.Y8G("ngIf",!e.transaction.satoshi),A.R7$(2),A.Y8G("value",e.selAmountUnit)("disabled",e.flgUseAllBalance),A.R7$(),A.Y8G("ngForOf",e.amountUnits),A.R7$(4),A.Y8G("ngClass","customperkb"!==e.selFeeRate||e.flgMinConf?"flex-100":"flex-48"),A.R7$(3),A.Y8G("disabled",e.flgMinConf),A.R50("value",e.selFeeRate),A.R7$(),A.Y8G("ngForOf",e.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===e.selFeeRate&&!e.flgMinConf),A.R7$(2),A.Y8G("ngClass",A.l_i(36,Si,e.screenSize===e.screenSizeEnum.XS||e.screenSize===e.screenSizeEnum.SM,e.screenSize===e.screenSizeEnum.MD||e.screenSize===e.screenSizeEnum.LG||e.screenSize===e.screenSizeEnum.XL)),A.R50("ngModel",e.flgMinConf),A.R7$(4),A.Y8G("step",1)("min",0)("required",e.flgMinConf)("disabled",!e.flgMinConf),A.R50("ngModel",e.minConfValue),A.R7$(2),A.Y8G("ngIf",e.flgMinConf&&!e.minConfValue),A.R7$(5),A.JRh(e.advancedTitle),A.R7$(6),A.R50("value",e.selUTXOs),A.R7$(2),A.Lme("",A.bMT(50,34,e.totalSelectedUTXOAmount)," Sats (",e.selUTXOs.length>1?e.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.R7$(2),A.Y8G("ngForOf",e.utxos),A.R7$(2),A.Y8G("disabled",e.selUTXOs.length<1),A.R50("ngModel",e.flgUseAllBalance),A.R7$(5),A.Y8G("ngIf",""!==e.sendFundError)}}function qa(n,l){if(1&n&&A.EFF(0),2&n){const e=A.XpG(3);A.JRh(e.passwordFormLabel)}}function $a(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Password is required."),A.k0s())}function Ao(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-step",58)(1,"form",76),A.DNE(2,qa,1,1,"ng-template",70),A.j41(3,"div",7)(4,"mat-form-field",18)(5,"mat-label"),A.EFF(6,"Password"),A.k0s(),A.nrm(7,"input",77),A.DNE(8,$a,2,0,"mat-error",23),A.k0s()(),A.j41(9,"div",78)(10,"button",79),A.bIt("click",function(){E.eBV(e);const o=A.XpG(2);return E.Njj(o.onAuthenticate())}),A.EFF(11,"Confirm"),A.k0s()()()()}if(2&n){const e=A.XpG(2);A.Y8G("stepControl",e.passwordFormGroup)("editable",e.flgEditable),A.R7$(),A.Y8G("formGroup",e.passwordFormGroup),A.R7$(7),A.Y8G("ngIf",null==e.passwordFormGroup.controls.password.errors?null:e.passwordFormGroup.controls.password.errors.required)}}function eo(n,l){if(1&n&&A.EFF(0),2&n){const e=A.XpG(2);A.JRh(e.sendFundFormLabel)}}function to(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Bitcoin address is required."),A.k0s())}function Gr(n,l){if(1&n&&(A.j41(0,"mat-option",51),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e.feeRateId),A.R7$(),A.SpI(" ",e.feeRateType," ")}}function no(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function io(n,l){if(1&n&&(A.j41(0,"mat-form-field",52)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.nrm(3,"input",80),A.DNE(4,no,2,0,"mat-error",23),A.k0s()),2&n){const e=A.XpG(2);A.R7$(3),A.Y8G("step",1)("min",0),A.R7$(),A.Y8G("ngIf","customperkb"===e.sendFundFormGroup.controls.selFeeRate.value&&!e.sendFundFormGroup.controls.flgMinConf.value&&!e.sendFundFormGroup.controls.customFeeRate.value)}}function so(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function ro(n,l){if(1&n&&A.EFF(0),2&n){const e=A.XpG(2);A.JRh(e.confirmFormLabel)}}function ao(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.sendFundError)}}function I0(n,l){if(1&n&&(A.j41(0,"div",54),A.nrm(1,"fa-icon",17),A.DNE(2,ao,2,1,"span",23),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.sendFundError)}}function Lr(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",55)(1,"mat-vertical-stepper",56,6),A.bIt("selectionChange",function(o){E.eBV(e);const r=A.XpG();return E.Njj(r.stepSelectionChanged(o))}),A.DNE(3,Ao,12,4,"mat-step",57),A.j41(4,"mat-step",58)(5,"form",59),A.DNE(6,eo,1,1,"ng-template",60),A.j41(7,"div",30)(8,"mat-form-field",18)(9,"mat-label"),A.EFF(10,"Bitcoin Address"),A.k0s(),A.nrm(11,"input",61),A.DNE(12,to,2,0,"mat-error",23),A.k0s(),A.j41(13,"div",62)(14,"div",32)(15,"mat-form-field",33)(16,"mat-label"),A.EFF(17,"Fee Rate"),A.k0s(),A.j41(18,"mat-select",63),A.DNE(19,Gr,2,2,"mat-option",29),A.k0s()(),A.DNE(20,io,5,3,"mat-form-field",35),A.k0s(),A.j41(21,"div",36),A.nrm(22,"mat-checkbox",64),A.j41(23,"mat-form-field",38)(24,"mat-label"),A.EFF(25,"Min Confirmation Blocks"),A.k0s(),A.nrm(26,"input",65),A.DNE(27,so,2,0,"mat-error",23),A.k0s()()()(),A.j41(28,"div",66)(29,"button",67),A.EFF(30,"Next"),A.k0s()()()(),A.j41(31,"mat-step",68)(32,"form",69),A.DNE(33,ro,1,1,"ng-template",70),A.j41(34,"div",55)(35,"div",71),A.nrm(36,"fa-icon",72),A.j41(37,"span"),A.EFF(38,"You are about to sweep all funds from RTL. Are you sure?"),A.k0s()(),A.DNE(39,I0,3,2,"div",47),A.j41(40,"div",66)(41,"button",73),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onSendFunds())}),A.EFF(42,"Sweep All Funds"),A.k0s()()()()()(),A.j41(43,"div",74)(44,"button",75),A.EFF(45),A.k0s()()()}if(2&n){const e=A.XpG();A.R7$(),A.Y8G("linear",!0),A.R7$(2),A.Y8G("ngIf",!e.appConfig.SSO.rtlSSO),A.R7$(),A.Y8G("stepControl",e.sendFundFormGroup)("editable",e.flgEditable),A.R7$(),A.Y8G("formGroup",e.sendFundFormGroup),A.R7$(7),A.Y8G("ngIf",null==e.sendFundFormGroup.controls.transactionAddress.errors?null:e.sendFundFormGroup.controls.transactionAddress.errors.required),A.R7$(3),A.Y8G("ngClass","customperkb"!==e.sendFundFormGroup.controls.selFeeRate.value||e.sendFundFormGroup.controls.flgMinConf.value?"flex-100":"flex-48"),A.R7$(4),A.Y8G("ngForOf",e.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===e.sendFundFormGroup.controls.selFeeRate.value&&!e.sendFundFormGroup.controls.flgMinConf.value),A.R7$(2),A.Y8G("ngClass",A.l_i(20,Si,e.screenSize===e.screenSizeEnum.XS||e.screenSize===e.screenSizeEnum.SM,e.screenSize===e.screenSizeEnum.MD||e.screenSize===e.screenSizeEnum.LG||e.screenSize===e.screenSizeEnum.XL)),A.R7$(4),A.Y8G("step",1)("min",0)("required",e.sendFundFormGroup.controls.flgMinConf.value),A.R7$(),A.Y8G("ngIf",e.sendFundFormGroup.controls.flgMinConf.value&&!e.sendFundFormGroup.controls.minConfValue.value),A.R7$(4),A.Y8G("stepControl",e.confirmFormGroup),A.R7$(),A.Y8G("formGroup",e.confirmFormGroup),A.R7$(4),A.Y8G("icon",e.faExclamationTriangle),A.R7$(3),A.Y8G("ngIf",""!==e.sendFundError),A.R7$(5),A.Y8G("mat-dialog-close",!1),A.R7$(),A.JRh(e.flgValidated?"Close":"Cancel")}}let oo=(()=>{var n;class l{constructor(i,o,r,nA,WA,Ae,mn,bt,Yn,Hw,jw){this.dialogRef=i,this.data=o,this.logger=r,this.dataService=nA,this.store=WA,this.commonService=Ae,this.decimalPipe=mn,this.actions=bt,this.formBuilder=Yn,this.rtlEffects=Hw,this.snackBar=jw,this.faExclamationTriangle=d.zpE,this.faInfoCircle=d.iW_,this.sweepAll=!1,this.addressTypes=[],this.utxos=[],this.selUTXOs=[],this.flgUseAllBalance=!1,this.totalSelectedUTXOAmount=null,this.selectedAddress=c.Ld[1],this.blockchainBalance={},this.information={},this.newAddress="",this.transaction={},this.feeRateTypes=c.G,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.sendFundError="",this.fiatConversion=!1,this.amountUnits=c.A0,this.selAmountUnit=c.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=c.k,this.advancedTitle="Advanced Options",this.flgValidated=!1,this.flgEditable=!0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds",this.confirmFormLabel="Confirm sweep",this.amountError="Amount is Required.",this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.dataService.getRecommendedFeeRates().pipe((0,M.Q)(this.unSubs[0])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}}),this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[gA.k0.required]],password:["",[gA.k0.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",gA.k0.required],selFeeRate:[null],customFeeRate:[null],flgMinConf:[!1],minConfValue:[{value:null,disabled:!0}]}),this.confirmFormGroup=this.formBuilder.group({}),this.sendFundFormGroup.controls.flgMinConf.valueChanges.pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{i?(this.sendFundFormGroup.controls.selFeeRate.disable(),this.sendFundFormGroup.controls.selFeeRate.setValue(null),this.sendFundFormGroup.controls.minConfValue.reset(),this.sendFundFormGroup.controls.minConfValue.enable(),this.sendFundFormGroup.controls.minConfValue.setValidators([gA.k0.required]),this.sendFundFormGroup.controls.minConfValue.setValue(null)):(this.sendFundFormGroup.controls.selFeeRate.enable(),this.sendFundFormGroup.controls.selFeeRate.setValue(null),this.sendFundFormGroup.controls.minConfValue.setValue(null),this.sendFundFormGroup.controls.minConfValue.disable(),this.sendFundFormGroup.controls.minConfValue.setValidators(null),this.sendFundFormGroup.controls.minConfValue.setErrors(null))}),this.sendFundFormGroup.controls.selFeeRate.valueChanges.pipe((0,M.Q)(this.unSubs[2])).subscribe(i=>{this.sendFundFormGroup.controls.customFeeRate.setValue(null),this.sendFundFormGroup.controls.customFeeRate.reset(),this.sendFundFormGroup.controls.customFeeRate.setValidators("customperkb"!==i||this.sendFundFormGroup.controls.flgMinConf.value?null:[gA.k0.required])}),(0,Ja.z)([this.store.select(x._c),this.store.select(x.qv)]).pipe((0,M.Q)(this.unSubs[3])).subscribe(([i,o])=>{this.fiatConversion=i.settings.fiatConversion,this.amountUnits=i.settings.currencyUnits,this.appConfig=o}),this.store.select(U.mH).pipe((0,M.Q)(this.unSubs[4])).subscribe(i=>{this.information=i}),this.store.select(U.Al).pipe((0,M.Q)(this.unSubs[5])).subscribe(i=>{this.utxos=this.commonService.sortAscByKey(i.utxos?.filter(o=>"confirmed"===o.status),"value"),this.logger.info(i)}),this.actions.pipe((0,M.Q)(this.unSubs[6]),(0,Z.p)(i=>i.type===c.TC.UPDATE_API_CALL_STATUS_CLN||i.type===c.TC.SET_CHANNEL_TRANSACTION_RES_CLN)).subscribe(i=>{i.type===c.TC.SET_CHANNEL_TRANSACTION_RES_CLN&&(this.store.dispatch((0,w.UI)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),i.type===c.TC.UPDATE_API_CALL_STATUS_CLN&&i.payload.status===c.wn.ERROR&&"SetChannelTransaction"===i.payload.action&&(this.sendFundError=i.payload.message)})}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,w.oz)({payload:_a(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,Gt.s)(1)).subscribe(i=>{"ERROR"!==i?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onSendFunds(){if(this.sendFundError="",this.flgUseAllBalance&&(this.transaction.satoshi="all"),this.selUTXOs.length&&this.selUTXOs.length>0&&(this.transaction.utxos=[],this.selUTXOs.forEach(i=>this.transaction.utxos?.push(i.txid+":"+i.output))),this.sweepAll){if(!this.sendFundFormGroup.controls.transactionAddress.value||""===this.sendFundFormGroup.controls.transactionAddress.value||this.sendFundFormGroup.controls.flgMinConf.value&&(!this.sendFundFormGroup.controls.minConfValue.value||this.sendFundFormGroup.controls.minConfValue.value<=0)||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate)return!0;this.transaction.satoshi="all",this.transaction.destination=this.sendFundFormGroup.controls.transactionAddress.value,this.sendFundFormGroup.controls.flgMinConf.value?(delete this.transaction.feerate,this.transaction.minconf=this.sendFundFormGroup.controls.flgMinConf.value?this.sendFundFormGroup.controls.minConfValue.value:null):(delete this.transaction.minconf,this.transaction.feerate="customperkb"===this.sendFundFormGroup.controls.selFeeRate.value&&!this.sendFundFormGroup.controls.flgMinConf.value&&this.sendFundFormGroup.controls.customFeeRate.value?1e3*this.sendFundFormGroup.controls.customFeeRate.value+"perkb":this.sendFundFormGroup.controls.selFeeRate.value),delete this.transaction.utxos,this.store.dispatch((0,xA.aB)({payload:this.transaction}))}else{if(this.transaction.minconf=this.flgMinConf?this.minConfValue:null,this.transaction.feerate="customperkb"===this.selFeeRate&&!this.flgMinConf&&this.customFeeRate?1e3*this.customFeeRate+"perkb":""!==this.selFeeRate?this.selFeeRate:null,!this.transaction.destination||""===this.transaction.destination||!this.transaction.satoshi||+this.transaction.satoshi<=0||this.flgMinConf&&(!this.transaction.minconf||this.transaction.minconf<=0)||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate)return!0;this.transaction.satoshi&&"all"!==this.transaction.satoshi&&this.selAmountUnit!==c.BQ.SATS?this.commonService.convertCurrency(+this.transaction.satoshi,this.selAmountUnit===this.amountUnits[2]?c.BQ.OTHER:this.selAmountUnit,c.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,M.Q)(this.unSubs[7])).subscribe({next:i=>{this.transaction.satoshi=i[c.BQ.SATS],this.selAmountUnit=c.BQ.SATS,this.store.dispatch((0,xA.aB)({payload:this.transaction}))},error:i=>{this.transaction.satoshi=null,this.selAmountUnit=c.BQ.SATS,this.amountError="Conversion Error: "+i}}):this.store.dispatch((0,xA.aB)({payload:this.transaction}))}}resetData(){this.sendFundError="",this.transaction={},this.flgMinConf=!1,this.totalSelectedUTXOAmount=null,this.selUTXOs=[],this.flgUseAllBalance=!1,this.selAmountUnit=c.A0[0]}stepSelectionChanged(i){switch(this.sendFundError="",i.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds";break;case 1:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds";break;case 2:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds | Address: "+this.sendFundFormGroup.controls.transactionAddress.value+(this.sendFundFormGroup.controls.flgMinConf.value?" | Min Confirmation Blocks: "+this.sendFundFormGroup.controls.minConfValue.value:this.sendFundFormGroup.controls.selFeeRate.value?" | Fee Rate: "+this.feeRateTypes.find(o=>o.feeRateId===this.sendFundFormGroup.controls.selFeeRate.value)?.feeRateType:"")}i.selectedIndex0?(this.totalSelectedUTXOAmount=this.selUTXOs?.reduce((o,r)=>o+(r.amount_msat||0)/1e3,0),this.flgUseAllBalance&&this.onUTXOAllBalanceChange()):(this.totalSelectedUTXOAmount=null,this.transaction.satoshi=null,this.flgUseAllBalance=!1)}onUTXOAllBalanceChange(){this.flgUseAllBalance?(this.transaction.satoshi=this.totalSelectedUTXOAmount,this.selAmountUnit=c.A0[0]):this.transaction.satoshi=null}onAmountUnitChange(i){const o=this,r=this.selAmountUnit===this.amountUnits[2]?c.BQ.OTHER:this.selAmountUnit;let nA=i.value===this.amountUnits[2]?c.BQ.OTHER:i.value;this.transaction.satoshi&&this.selAmountUnit!==i.value&&this.commonService.convertCurrency(+this.transaction.satoshi,r,nA,this.amountUnits[2],this.fiatConversion).pipe((0,M.Q)(this.unSubs[8])).subscribe({next:WA=>{this.selAmountUnit=i.value,o.transaction.satoshi=o.decimalPipe.transform(WA[nA],o.currencyUnitFormats[nA])?.replace(/,/g,"")},error:WA=>{o.transaction.satoshi=null,this.amountError="Conversion Error: "+WA,this.selAmountUnit=r,nA=r}})}onAdvancedPanelToggle(i){this.advancedTitle=i&&this.selUTXOs.length&&this.selUTXOs.length>0?"Advanced Options | Selected UTXOs: "+this.selUTXOs.length+" | Selected UTXO Amount: "+this.decimalPipe.transform(this.totalSelectedUTXOAmount)+" Sats":"Advanced Options"}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(UA.CP),A.rXU(UA.Vh),A.rXU(N.gP),A.rXU(Rt.u),A.rXU(_.il),A.rXU(Q.h),A.rXU(Ee.QX),A.rXU(QA.En),A.rXU(gA.ze),A.rXU(H.H),A.rXU(bs.UG))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-on-chain-send-modal"]],viewQuery:function(o,r){if(1&o&&(A.GBs(Sr,7),A.GBs(Va,5),A.GBs(Wa,5)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.form=nA.first),A.mGM(nA=A.lsd())&&(r.formSweepAll=nA.first),A.mGM(nA=A.lsd())&&(r.stepper=nA.first)}},standalone:!1,decls:13,vars:5,consts:[["sweepAllBlock",""],["form","ngForm"],["address","ngModel"],["amount","ngModel"],["blocks","ngModel"],["custFeeRate","ngModel"],["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],["fxLayout","column",1,"padding-gap-x-large"],["fxFlex","100","class","alert alert-info mb-2",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100","class","overflow-x-hidden",3,"submit","reset",4,"ngIf","ngIfElse"],["fxFlex","100",1,"alert","alert-info","mb-2"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["fxLayout","column","fxFlex","55"],["matInput","","autoFocus","","tabindex","1","name","address","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","name","amount","tabindex","2","required","",3,"ngModelChange","type","step","min","disabled","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex","10","fxLayoutAlign","start end"],["tabindex","3","required","","name","amountUnit",3,"selectionChange","value","disabled"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxFlex","48","fxLayoutAlign","space-between start"],["fxLayout","column","fxLayoutAlign","start center",3,"ngClass"],["tabindex","4",3,"valueChange","selectionChange","disabled","value"],["fxFlex","48","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","48","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","tabindex","5","color","primary","name","flgMinConf","fxLayoutAlign","stretch start",3,"ngModelChange","change","ngClass","ngModel"],["fxLayout","column","fxFlex","93"],["matInput","","type","number","name","blocks","tabindex","8",3,"ngModelChange","step","min","required","disabled","ngModel"],["fxLayout","column","fxFlex","100","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","35","fxLayoutAlign","start end"],["tabindex","8","multiple","",3,"valueChange","selectionChange","value"],["fxFlex","60","fxLayout","row","fxLayoutAlign","start center"],["tabindex","9","color","primary","name","flgUseAllBalance",3,"ngModelChange","change","disabled","ngModel"],["matTooltip","Use selected UTXOs balance as the amount to be sent. Final amount sent will be less the mining fee.","matTooltipPosition","above",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],[3,"value"],["fxFlex","48","fxLayoutAlign","end center"],["matInput","","type","number","name","custFeeRate","tabindex","4",3,"ngModelChange","step","min","required","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl","editable"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["matInput","","formControlName","transactionAddress","tabindex","4","name","address","required",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["tabindex","4","formControlName","selFeeRate"],["fxFlex","7","tabindex","5","color","primary","formControlName","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass"],["matInput","","formControlName","minConfValue","type","number","name","blocks","tabindex","8",3,"step","min","required"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","8","type","default","matStepperNext",""],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["fxFlex","100",1,"w-100","alert","alert-warn"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["mat-button","","color","primary","tabindex","9","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["autoFocus","","matInput","","type","password","tabindex","1","formControlName","password","required",""],["fxLayout","row",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","default",3,"click"],["matInput","","formControlName","customFeeRate","type","number","name","custFeeRate","tabindex","4",3,"step","min"]],template:function(o,r){if(1&o&&(A.j41(0,"div",7)(1,"div",8)(2,"mat-card-header",9)(3,"div",10)(4,"span",11),A.EFF(5),A.k0s()(),A.j41(6,"button",12),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",13),A.DNE(9,Xe,16,6,"div",14)(10,D0,64,39,"form",15),A.k0s()()(),A.DNE(11,Lr,46,23,"ng-template",null,0,A.C5r)),2&o){const nA=A.sdS(12);A.R7$(5),A.JRh(r.sweepAll?"Sweep All Funds":"Send Funds"),A.R7$(),A.Y8G("mat-dialog-close",!1),A.R7$(3),A.Y8G("ngIf",r.recommendedFee.minimumFee),A.R7$(),A.Y8G("ngIf",!r.sweepAll)("ngIfElse",nA)}},dependencies:[Ee.YU,Ee.Sq,Ee.bT,gA.qT,gA.me,gA.Q0,gA.BC,gA.cb,gA.YS,gA.VZ,gA.vS,gA.cV,gA.j4,gA.JD,y.aY,UA.tx,JA.$z,lA.m2,lA.MM,Cn.So,Qi.GK,Qi.Z2,Qi.WN,G.An,Be.fg,KA.rl,KA.nJ,KA.MV,KA.TL,KA.yw,D.DJ,D.sA,D.UI,rA.PW,eA.VO,eA.$2,ae.wT,we.sG,ie.oV,Wi.V5,Wi.Ti,Wi.M6,Wi.F7,kA.N,CA.V,Ee.QX],encapsulation:2}))}return n(),l})();var zr=Ve(25837),kr=Ve(1975);const lo=()=>["all"],co=n=>({"error-border":n}),Bo=()=>["no_utxo"],Er=n=>({width:n}),Hr=n=>({"display-none":n});function On(n,l){if(1&n&&(A.j41(0,"mat-option",37),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function go(n,l){1&n&&A.nrm(0,"mat-progress-bar",38)}function fo(n,l){1&n&&A.nrm(0,"th",39)}function uo(n,l){1&n&&(A.j41(0,"span",42)(1,"mat-icon",43),A.EFF(2,"warning"),A.k0s()())}function Eo(n,l){if(1&n&&(A.j41(0,"td",40),A.DNE(1,uo,3,0,"span",41),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(),o=A.sdS(56);A.R7$(),A.Y8G("ngIf",i.numDustUTXOs>0&&!i.isDustUTXO&&(null==e?null:e.amount_msat)/1e30||0===e.amount_msat),A.R7$(),A.Y8G("ngIf",e.amount_msat<0)}}function Wt(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Blockheight"),A.k0s())}function po(n,l){if(1&n&&(A.j41(0,"td",40)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.bMT(3,1,null==e?null:e.blockheight)," ")}}function Pi(n,l){1&n&&(A.j41(0,"th",49),A.EFF(1,"Reserved"),A.k0s())}function Do(n,l){if(1&n&&(A.j41(0,"td",40)(1,"span"),A.EFF(2),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(e.reserved?"Yes":"No")}}function Io(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",57)(1,"div",58)(2,"mat-select",59),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",60),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Fo(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",61)(1,"button",62),A.bIt("click",function(o){const r=E.eBV(e).$implicit,nA=A.XpG();return E.Njj(nA.onUTXOClick(r,o))}),A.EFF(2,"View Info"),A.k0s()()}}function Vs(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No utxos available."),A.k0s())}function ri(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting utxos..."),A.k0s())}function Or(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function is(n,l){if(1&n&&(A.j41(0,"td",63),A.DNE(1,Vs,2,0,"p",64)(2,ri,2,0,"p",64)(3,Or,2,1,"p",64),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.listUTXOs&&e.listUTXOs.data)||(null==e.listUTXOs||null==e.listUTXOs.data?null:e.listUTXOs.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.listUTXOs&&e.listUTXOs.data)||(null==e.listUTXOs||null==e.listUTXOs.data?null:e.listUTXOs.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.listUTXOs&&e.listUTXOs.data)||(null==e.listUTXOs||null==e.listUTXOs.data?null:e.listUTXOs.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function Jr(n,l){if(1&n&&A.nrm(0,"tr",65),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,Hr,(null==e.listUTXOs?null:e.listUTXOs.data)&&(null==e.listUTXOs||null==e.listUTXOs.data?null:e.listUTXOs.data.length)>0))}}function xo(n,l){1&n&&A.nrm(0,"tr",66)}function Ws(n,l){1&n&&A.nrm(0,"tr",67)}function Ks(n,l){1&n&&A.nrm(0,"mat-icon",68)}let Ui=(()=>{var n;class l{constructor(i,o,r,nA){this.logger=i,this.commonService=o,this.store=r,this.camelCaseWithReplace=nA,this.numDustUTXOs=0,this.isDustUTXO=!1,this.dustAmount=1e3,this.nodePageDefs=c.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"utxos",recordsPerPage:c.md,sortBy:"status",sortOrder:c.oi.DESCENDING},this.displayedColumns=[],this.listUTXOs=new L.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new B.B,new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.tableSetting.tableId=this.isDustUTXO?"dust_utxos":"utxos",this.store.select(U.av).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(U.Al).pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),i.utxos&&i.utxos.length>0&&(this.dustUtxos=i.utxos?.filter(o=>+(o.amount_msat||0)/1e30&&this.loadUTXOsTable(this.dustUtxos):(this.displayedColumns.unshift("is_dust"),this.utxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.utxos))),this.logger.info(i)})}ngAfterViewInit(){setTimeout(()=>{this.isDustUTXO?this.dustUtxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.dustUtxos):this.utxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.utxos)},0)}onUTXOClick(i,o){const r=[[{key:"txid",value:i.txid,title:"Transaction ID",width:100,type:c.UN.STRING,explorerLink:"tx"}],[{key:"output",value:i.output,title:"Output",width:50,type:c.UN.NUMBER},{key:"amount_msat",value:(i.amount_msat||0)/1e3,title:"Value (Sats)",width:50,type:c.UN.NUMBER}],[{key:"status",value:this.commonService.titleCase(i.status||""),title:"Status",width:50,type:c.UN.STRING},{key:"blockheight",value:i.blockheight,title:"Blockheight",width:50,type:c.UN.NUMBER}],[{key:"address",value:i.address,title:"Address",width:100}]];this.store.dispatch((0,w.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"UTXO Information",message:r}}}))}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column||"","_"):"is_dust"===i?"Dust":this.commonService.titleCase(i)}setFilterPredicate(){this.listUTXOs.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=JSON.stringify(i).toLowerCase();break;case"is_dust":r=(i?.amount_msat||0)/1e3"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"is_dust"===this.selFilterBy||"status"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadUTXOsTable(i){this.listUTXOs=new L.I6([...i]),this.listUTXOs.sort=this.sort,this.listUTXOs.sortingDataAccessor=(o,r)=>{switch(r){case"is_dust":return(o.amount_msat||0)/1e30&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(Q.h),A.rXU(_.il),A.rXU(TA.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-on-chain-utxos"]],viewQuery:function(o,r){if(1&o&&(A.GBs(BA.B4,5),A.GBs(b.iy,5)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.sort=nA.first),A.mGM(nA=A.lsd())&&(r.paginator=nA.first)}},inputs:{numDustUTXOs:"numDustUTXOs",isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},standalone:!1,features:[A.Jv_([{provide:eA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:b.xX,useValue:(0,c.on)("UTXOs")}])],decls:57,vars:18,consts:[["table",""],["emptySpace",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","is_dust"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Dust/Nondust",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["matColumnDef","txid"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","address"],["matColumnDef","scriptpubkey"],["matColumnDef","output"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","value"],["matColumnDef","blockheight"],["matColumnDef","reserved"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_utxo"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Dust/Nondust"],["mat-cell",""],["matTooltip","Risk of dust attack","matTooltipPosition","right",4,"ngIf","ngIfElse"],["matTooltip","Risk of dust attack","matTooltipPosition","right"],["fxLayoutAlign","start center","color","warn",1,"small-icon"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["class","dot green","matTooltip","Confirmed","matTooltipPosition","right",4,"ngIf"],["class","dot yellow","matTooltipPosition","right",3,"matTooltip",4,"ngIf"],["matTooltip","Confirmed","matTooltipPosition","right",1,"dot","green"],["matTooltipPosition","right",1,"dot","yellow",3,"matTooltip"],["mat-header-cell","","mat-sort-header",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],["fxLayoutAlign","start center","color","warn",1,"mr-1"]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",2)(1,"div",3),A.nrm(2,"div",4),A.j41(3,"div",5)(4,"mat-form-field",6)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",7),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.selFilterBy,Ae)||(r.selFilterBy=Ae),E.Njj(Ae)}),A.bIt("selectionChange",function(){return E.eBV(nA),r.selFilter="",E.Njj(r.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,On,2,2,"mat-option",8),A.k0s()()(),A.j41(10,"mat-form-field",6)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",9),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.selFilter,Ae)||(r.selFilter=Ae),E.Njj(Ae)}),A.bIt("input",function(){return E.eBV(nA),E.Njj(r.applyFilter())})("keyup",function(){return E.eBV(nA),E.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(14,"div",10)(15,"div",11),A.DNE(16,go,1,0,"mat-progress-bar",12),A.j41(17,"table",13,0),A.qex(19,14),A.DNE(20,fo,1,0,"th",15)(21,Eo,2,2,"td",16),A.bVm(),A.qex(22,17),A.DNE(23,ho,1,0,"th",18)(24,F0,3,2,"td",16),A.bVm(),A.qex(25,19),A.DNE(26,Qo,2,0,"th",20)(27,Ni,4,4,"td",16),A.bVm(),A.qex(28,21),A.DNE(29,mo,2,0,"th",20)(30,jr,4,4,"td",16),A.bVm(),A.qex(31,22),A.DNE(32,hr,2,0,"th",20)(33,Bn,4,4,"td",16),A.bVm(),A.qex(34,23),A.DNE(35,Ti,2,0,"th",24)(36,wr,4,3,"td",16),A.bVm(),A.qex(37,25),A.DNE(38,Mo,2,0,"th",24)(39,_s,3,2,"td",16),A.bVm(),A.qex(40,26),A.DNE(41,Wt,2,0,"th",24)(42,po,4,3,"td",16),A.bVm(),A.qex(43,27),A.DNE(44,Pi,2,0,"th",20)(45,Do,3,1,"td",16),A.bVm(),A.qex(46,28),A.DNE(47,Io,6,0,"th",29)(48,Fo,3,0,"td",30),A.bVm(),A.qex(49,31),A.DNE(50,is,4,3,"td",32),A.bVm(),A.DNE(51,Jr,1,3,"tr",33)(52,xo,1,0,"tr",34)(53,Ws,1,0,"tr",35),A.k0s(),A.nrm(54,"mat-paginator",36),A.k0s()()(),A.DNE(55,Ks,1,0,"ng-template",null,1,A.C5r)}2&o&&(A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,lo).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(3),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.listUTXOs)("ngClass",A.eq3(15,co,""!==r.errorMessage)),A.R7$(34),A.Y8G("matFooterRowDef",A.lJ4(17,Bo)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("hidePageSize",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[Ee.YU,Ee.Sq,Ee.bT,Ee.B3,gA.me,gA.BC,gA.vS,JA.$z,G.An,Be.fg,KA.rl,KA.nJ,q.HM,D.DJ,D.sA,D.UI,rA.PW,rA.eI,eA.VO,eA.$2,ae.wT,BA.B4,BA.aE,L.Zl,L.tL,L.ji,L.cC,L.YV,L.iL,L.Zq,L.xW,L.KS,L.$R,L.Qo,L.YZ,L.NB,L.iF,ie.oV,b.iy,wA.ZF,wA.Ld,Ee.QX,Ee.PV],styles:[".mat-column-is_dust[_ngcontent-%COMP%]{max-width:3rem;width:3rem;text-overflow:unset}.mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return n(),l})();function yo(n,l){if(1&n&&(A.j41(0,"span",4),A.EFF(1,"UTXOs"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.numUtxos))}}function Xs(n,l){if(1&n&&(A.j41(0,"span",5),A.EFF(1,"Dust UTXOs"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.numDustUtxos))}}let Ss=(()=>{var n;class l{constructor(i,o){this.logger=i,this.store=o,this.selectedTableIndex=0,this.selectedTableIndexChange=new A.bkB,this.numUtxos=0,this.numDustUtxos=0,this.DUST_AMOUNT=1e3,this.unSubs=[new B.B,new B.B]}ngOnInit(){this.store.select(U.Al).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{i.utxos&&i.utxos.length>0&&(this.numUtxos=i.utxos.length||0,this.numDustUtxos=i.utxos?.filter(o=>+(o.amount_msat||0)/1e3{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(_.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-utxo-tables"]],inputs:{selectedTableIndex:"selectedTableIndex"},outputs:{selectedTableIndexChange:"selectedTableIndexChange"},standalone:!1,decls:8,vars:7,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"bordered-box","my-2"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedIndex"],["mat-tab-label",""],["fxLayout","row","fxFlex","100",3,"numDustUTXOs","isDustUTXO","dustAmount"],["matBadgeOverlap","false","matBadgeColor","primary",1,"tab-badge",3,"matBadge"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,r){1&o&&(A.j41(0,"div",0)(1,"mat-tab-group",1),A.bIt("selectedIndexChange",function(WA){return r.onSelectedIndexChanged(WA)}),A.j41(2,"mat-tab"),A.DNE(3,yo,2,2,"ng-template",2),A.nrm(4,"rtl-cln-on-chain-utxos",3),A.k0s(),A.j41(5,"mat-tab"),A.DNE(6,Xs,2,2,"ng-template",2),A.nrm(7,"rtl-cln-on-chain-utxos",3),A.k0s()()()),2&o&&(A.R7$(),A.Y8G("selectedIndex",r.selectedTableIndex),A.R7$(3),A.Y8G("numDustUTXOs",r.numDustUtxos)("isDustUTXO",!1)("dustAmount",r.DUST_AMOUNT),A.R7$(3),A.Y8G("numDustUTXOs",r.numDustUtxos)("isDustUTXO",!0)("dustAmount",r.DUST_AMOUNT))},dependencies:[D.DJ,D.sA,D.UI,kr.k,$.ES,$.mq,$.T8,Ui],encapsulation:2}))}return n(),l})();const Yo=(n,l)=>[n,l];function vo(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",13),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.activeLink=null==o?null:o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("active",i.activeLink===(null==e?null:e.link))("routerLink",A.l_i(3,Yo,null==e?null:e.link,null==i.selectedTable?null:i.selectedTable.name)),A.R7$(),A.JRh(null==e?null:e.name)}}let bo=(()=>{var n;class l{constructor(i,o,r){this.store=i,this.router=o,this.activatedRoute=r,this.faExchangeAlt=d._qq,this.faChartPie=d.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"},{link:"sweep",name:"Sweep All"}],this.activeLink=this.links[0].link,this.tables=[{id:0,name:"utxos"},{id:1,name:"dustUtxos"}],this.selectedTable=this.tables[0],this.unSubs=[new B.B,new B.B,new B.B,new B.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.selectedTable=this.tables.find(o=>o.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,M.Q)(this.unSubs[0]),(0,Z.p)(o=>o instanceof Pt.gx)).subscribe({next:o=>{const r=this.links.find(nA=>o.urlAfterRedirects.includes(nA.link));this.activeLink=r?r.link:this.links[0].link,this.selectedTable=this.tables.find(nA=>nA.name===o.urlAfterRedirects.substring(o.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(x._c).pipe((0,M.Q)(this.unSubs[1])).subscribe(o=>{this.selNode=o}),this.store.select(U.Al).pipe((0,M.Q)(this.unSubs[2])).subscribe(o=>{this.balances=[{title:"Total Balance",dataValue:o.balance.totalBalance||0},{title:"Confirmed",dataValue:o.balance.confBalance||0},{title:"Unconfirmed",dataValue:o.balance.unconfBalance||0}]})}openSendFundsModal(i){this.store.dispatch((0,w.xO)({payload:{data:{sweepAll:i,component:oo}}}))}onSelectedTableIndexChanged(i){this.selectedTable=this.tables.find(o=>o.id===i)||this.tables[0],this.router.navigate(["./",this.activeLink,this.selectedTable.name],{relativeTo:this.activatedRoute})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(_.il),A.rXU(Pt.Ix),A.rXU(Pt.nX))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-on-chain"]],standalone:!1,decls:23,vars:6,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100",3,"selectedTableIndexChange","selectedTableIndex"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"On-chain Balance"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),A.nrm(7,"rtl-currency-unit-converter",6),A.k0s()()(),A.j41(8,"div",1),A.nrm(9,"fa-icon",2),A.j41(10,"span",3),A.EFF(11,"On-chain Transactions"),A.k0s()(),A.j41(12,"div",7)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",8),A.DNE(16,vo,2,6,"div",9),A.k0s(),A.nrm(17,"mat-tab-nav-panel",null,0),A.j41(19,"div",10),A.nrm(20,"router-outlet"),A.k0s(),A.j41(21,"div",11)(22,"rtl-cln-utxo-tables",12),A.bIt("selectedTableIndexChange",function(Ae){return E.eBV(nA),E.Njj(r.onSelectedTableIndexChanged(Ae))}),A.k0s()()()()()}if(2&o){const nA=A.sdS(18);A.R7$(),A.Y8G("icon",r.faChartPie),A.R7$(6),A.Y8G("values",r.balances),A.R7$(2),A.Y8G("icon",r.faExchangeAlt),A.R7$(6),A.Y8G("tabPanel",nA),A.R7$(),A.Y8G("ngForOf",r.links),A.R7$(6),A.Y8G("selectedTableIndex",null==r.selectedTable?null:r.selectedTable.id)}},dependencies:[Ee.Sq,y.aY,lA.RN,lA.m2,D.DJ,D.sA,D.UI,$.Bu,$.hQ,$.Ql,zr.f,Pt.n3,Hn.Wk,Ss],encapsulation:2}))}return n(),l})();function _r(n,l){if(1&n&&(A.j41(0,"span",10),A.EFF(1,"Channels"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.activeChannels))}}function Ro(n,l){if(1&n&&(A.j41(0,"span",10),A.EFF(1,"Peers"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.activePeers))}}let So=(()=>{var n;class l{constructor(i,o,r){this.store=i,this.logger=o,this.router=r,this.activePeers=0,this.activeChannels=0,this.faUsers=d.gdJ,this.faChartPie=d.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new B.B,new B.B,new B.B,new B.B]}ngOnInit(){this.activeLink=this.links.findIndex(i=>i.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,M.Q)(this.unSubs[0]),(0,Z.p)(i=>i instanceof Pt.gx)).subscribe({next:i=>{this.activeLink=this.links.findIndex(o=>o.link===i.urlAfterRedirects.substring(i.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(U.BM).pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{this.activeChannels=i.activeChannels.length||0}),this.store.select(U.os).pipe((0,M.Q)(this.unSubs[2])).subscribe(i=>{this.activePeers=i.peers&&i.peers.length?i.peers.length:0,this.logger.info(i)}),this.store.select(U.Al).pipe((0,M.Q)(this.unSubs[3])).subscribe(i=>{this.balances=[{title:"Total Balance",dataValue:i.balance.totalBalance||0},{title:"Confirmed",dataValue:i.balance.confBalance||0},{title:"Unconfirmed",dataValue:i.balance.unconfBalance||0}]})}onSelectedTabChange(i){this.router.navigateByUrl("/cln/connections/"+this.links[i.index].link)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(_.il),A.rXU(N.gP),A.rXU(Pt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-connections"]],standalone:!1,decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,r){1&o&&(A.j41(0,"div",0),A.nrm(1,"fa-icon",1),A.j41(2,"span",2),A.EFF(3,"On-chain Balance"),A.k0s()(),A.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),A.nrm(7,"rtl-currency-unit-converter",5),A.k0s()()(),A.j41(8,"div",0),A.nrm(9,"fa-icon",1),A.j41(10,"span",2),A.EFF(11,"Connections"),A.k0s()(),A.j41(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),A.mxI("selectedIndexChange",function(WA){return A.DH7(r.activeLink,WA)||(r.activeLink=WA),WA}),A.bIt("selectedTabChange",function(WA){return r.onSelectedTabChange(WA)}),A.j41(16,"mat-tab"),A.DNE(17,_r,2,2,"ng-template",8),A.k0s(),A.j41(18,"mat-tab"),A.DNE(19,Ro,2,2,"ng-template",8),A.k0s()(),A.j41(20,"div",9),A.nrm(21,"router-outlet"),A.k0s()()()()),2&o&&(A.R7$(),A.Y8G("icon",r.faChartPie),A.R7$(6),A.Y8G("values",r.balances),A.R7$(2),A.Y8G("icon",r.faUsers),A.R7$(6),A.R50("selectedIndex",r.activeLink))},dependencies:[y.aY,lA.RN,lA.m2,D.DJ,D.sA,D.UI,kr.k,$.ES,$.mq,$.T8,zr.f,Pt.n3],encapsulation:2}))}return n(),l})();function No(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",12),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.activeLink=o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("routerLink",A.mNQ(e.link))("active",i.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let To=(()=>{var n;class l{constructor(i,o,r){this.logger=i,this.store=o,this.router=r,this.faExchangeAlt=d._qq,this.faChartPie=d.W1p,this.currencyUnits=[],this.routerUrl="",this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"}],this.activeLink=this.links[0].link,this.unSubs=[new B.B,new B.B,new B.B,new B.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,M.Q)(this.unSubs[0]),(0,Z.p)(o=>o instanceof Pt.gx)).subscribe({next:o=>{const r=this.links.find(nA=>o.urlAfterRedirects.includes(nA.link));this.activeLink=r?r.link:this.links[0].link,this.routerUrl=o.urlAfterRedirects}}),this.store.select(x._c).pipe((0,M.Q)(this.unSubs[1])).subscribe(o=>{if(this.selNode=o,this.selNode&&this.selNode.settings.enableOffers){this.store.dispatch((0,xA.Eb)()),this.store.dispatch((0,xA.Ml)()),this.links.push({link:"offers",name:"Offers"}),this.links.push({link:"offrBookmarks",name:"Paid Offer Bookmarks"});const r=this.links.find(nA=>this.router.url.includes(nA.link));this.activeLink=r?r.link:this.links[0].link}}),this.store.select(U.Al).pipe((0,M.Q)(this.unSubs[2]),(0,Y.E)(this.store.select(x._c))).subscribe(([o,r])=>{this.currencyUnits=r?.settings.currencyUnits||[],this.balances=r&&r.settings.userPersona===c.HW.OPERATOR?[{title:"Local Capacity",dataValue:o.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:o.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:o.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:o.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(o)})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(_.il),A.rXU(Pt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-transactions"]],standalone:!1,decls:21,vars:5,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Lightning Balance"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),A.nrm(7,"rtl-currency-unit-converter",6),A.k0s()()(),A.j41(8,"div",7),A.nrm(9,"fa-icon",2),A.j41(10,"span",3),A.EFF(11,"Lightning Transactions"),A.k0s()(),A.j41(12,"div",8)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",9),A.DNE(16,No,2,4,"div",10),A.k0s(),A.nrm(17,"mat-tab-nav-panel",null,0),A.j41(19,"div",11),A.nrm(20,"router-outlet"),A.k0s()()()()),2&o){const nA=A.sdS(18);A.R7$(),A.Y8G("icon",r.faChartPie),A.R7$(6),A.Y8G("values",r.balances),A.R7$(2),A.Y8G("icon",r.faExchangeAlt),A.R7$(6),A.Y8G("tabPanel",nA),A.R7$(),A.Y8G("ngForOf",r.links)}},dependencies:[Ee.Sq,y.aY,lA.RN,lA.m2,D.DJ,D.sA,D.UI,$.Bu,$.hQ,$.Ql,zr.f,Pt.n3,Hn.Wk],encapsulation:2}))}return n(),l})();function Po(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",12),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.activeLink=o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("routerLink",A.mNQ(e.link))("active",i.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let Uo=(()=>{var n;class l{constructor(i){this.router=i,this.faMapSigns=d.knH,this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"routingpeers",name:"Routing Peers"},{link:"failedtransactions",name:"Failed Transactions"},{link:"localfail",name:"Local Failed Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new B.B,new B.B,new B.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,M.Q)(this.unSubs[0]),(0,Z.p)(o=>o instanceof Pt.gx)).subscribe({next:o=>{const r=this.links.find(nA=>o.urlAfterRedirects.includes(nA.link));this.activeLink=r?r.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(Pt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-routing"]],standalone:!1,decls:15,vars:3,consts:[["tabPanel",""],["fxLayout","column",1,"mb-2"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","1","mat-tab-link","","role","tab","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["tabindex","1","mat-tab-link","","role","tab",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1)(1,"div",2),A.nrm(2,"fa-icon",3),A.j41(3,"span",4),A.EFF(4,"Routing"),A.k0s()(),A.j41(5,"div",5)(6,"mat-card",6)(7,"mat-card-content",7)(8,"div",8)(9,"nav",9),A.DNE(10,Po,2,4,"div",10),A.k0s(),A.nrm(11,"mat-tab-nav-panel",null,0),A.k0s(),A.j41(13,"div",11),A.nrm(14,"router-outlet"),A.k0s()()()()()),2&o){const nA=A.sdS(12);A.R7$(2),A.Y8G("icon",r.faMapSigns),A.R7$(7),A.Y8G("tabPanel",nA),A.R7$(),A.Y8G("ngForOf",r.links)}},dependencies:[Ee.Sq,y.aY,lA.RN,lA.m2,D.DJ,D.sA,D.UI,$.Bu,$.hQ,$.Ql,Pt.n3,Hn.Wk],encapsulation:2}))}return n(),l})();function Go(n,l){1&n&&(A.j41(0,"h3",9),A.EFF(1,"Node 1"),A.k0s())}function Lo(n,l){1&n&&(A.j41(0,"h3",9),A.EFF(1,"Node 1 (Your Node)"),A.k0s())}function zo(n,l){1&n&&(A.j41(0,"h3",9),A.EFF(1,"Node 2"),A.k0s())}function ko(n,l){1&n&&(A.j41(0,"h3",9),A.EFF(1,"Node 2 (Your Node)"),A.k0s())}function Ho(n,l){if(1&n&&(A.j41(0,"div",1),A.nrm(1,"mat-divider"),A.j41(2,"div",2)(3,"div",3)(4,"div",4),A.DNE(5,Go,2,0,"h3",5)(6,Lo,2,0,"h3",5),A.k0s(),A.nrm(7,"mat-divider",6),A.j41(8,"div",4)(9,"h4",7),A.EFF(10,"Short Channel ID"),A.k0s(),A.j41(11,"span",8),A.EFF(12),A.k0s()(),A.nrm(13,"mat-divider",6),A.j41(14,"div",4)(15,"h4",7),A.EFF(16,"Active"),A.k0s(),A.j41(17,"span",8),A.EFF(18),A.k0s()(),A.nrm(19,"mat-divider",6),A.j41(20,"div",4)(21,"h4",7),A.EFF(22,"Last Update"),A.k0s(),A.j41(23,"span",8),A.EFF(24),A.nI1(25,"date"),A.k0s()(),A.nrm(26,"mat-divider",6),A.j41(27,"div",4)(28,"h4",7),A.EFF(29,"Amount (Sats)"),A.k0s(),A.j41(30,"span",8),A.EFF(31),A.nI1(32,"number"),A.k0s()(),A.nrm(33,"mat-divider",6),A.j41(34,"div",4)(35,"h4",7),A.EFF(36,"Base Fee (mSats)"),A.k0s(),A.j41(37,"span",8),A.EFF(38),A.nI1(39,"number"),A.k0s()(),A.nrm(40,"mat-divider",6),A.j41(41,"div",4)(42,"h4",7),A.EFF(43,"Fee/Millionth"),A.k0s(),A.j41(44,"span",8),A.EFF(45),A.nI1(46,"number"),A.k0s()(),A.nrm(47,"mat-divider",6),A.j41(48,"div",4)(49,"h4",7),A.EFF(50,"Channel Flags"),A.k0s(),A.j41(51,"span",8),A.EFF(52),A.nI1(53,"number"),A.k0s()(),A.nrm(54,"mat-divider",6),A.j41(55,"div",4)(56,"h4",7),A.EFF(57,"Delay"),A.k0s(),A.j41(58,"span",8),A.EFF(59),A.nI1(60,"number"),A.k0s()(),A.nrm(61,"mat-divider",6),A.j41(62,"div",4)(63,"h4",7),A.EFF(64,"Max Htlc (mSat)"),A.k0s(),A.j41(65,"span",8),A.EFF(66),A.nI1(67,"number"),A.k0s()(),A.nrm(68,"mat-divider",6),A.j41(69,"div",4)(70,"h4",7),A.EFF(71,"Min Htlc (mSat)"),A.k0s(),A.j41(72,"span",8),A.EFF(73),A.nI1(74,"number"),A.k0s()(),A.nrm(75,"mat-divider",6),A.j41(76,"div",4)(77,"h4",7),A.EFF(78,"Message Flags"),A.k0s(),A.j41(79,"span",8),A.EFF(80),A.nI1(81,"number"),A.k0s()(),A.nrm(82,"mat-divider",6),A.j41(83,"div",4)(84,"h4",7),A.EFF(85,"Public"),A.k0s(),A.j41(86,"span",8),A.EFF(87),A.k0s()(),A.nrm(88,"mat-divider",6),A.j41(89,"div",4)(90,"h4",7),A.EFF(91,"Source"),A.k0s(),A.j41(92,"span",8),A.EFF(93),A.k0s()(),A.nrm(94,"mat-divider",6),A.j41(95,"div",4)(96,"h4",7),A.EFF(97,"Destination"),A.k0s(),A.j41(98,"span",8),A.EFF(99),A.k0s()()(),A.j41(100,"div",3)(101,"div"),A.DNE(102,zo,2,0,"h3",5)(103,ko,2,0,"h3",5),A.k0s(),A.nrm(104,"mat-divider",6),A.j41(105,"div",4)(106,"h4",7),A.EFF(107,"Short Channel ID"),A.k0s(),A.j41(108,"span",8),A.EFF(109),A.k0s()(),A.nrm(110,"mat-divider",6),A.j41(111,"div",4)(112,"h4",7),A.EFF(113,"Active"),A.k0s(),A.j41(114,"span",8),A.EFF(115),A.k0s()(),A.nrm(116,"mat-divider",6),A.j41(117,"div",4)(118,"h4",7),A.EFF(119,"Last Update"),A.k0s(),A.j41(120,"span",8),A.EFF(121),A.nI1(122,"date"),A.k0s()(),A.nrm(123,"mat-divider",6),A.j41(124,"div",4)(125,"h4",7),A.EFF(126,"Amount (Sats)"),A.k0s(),A.j41(127,"span",8),A.EFF(128),A.nI1(129,"number"),A.k0s()(),A.nrm(130,"mat-divider",6),A.j41(131,"div",4)(132,"h4",7),A.EFF(133,"Base Fee (mSats)"),A.k0s(),A.j41(134,"span",8),A.EFF(135),A.nI1(136,"number"),A.k0s()(),A.nrm(137,"mat-divider",6),A.j41(138,"div",4)(139,"h4",7),A.EFF(140,"Fee/Millionth"),A.k0s(),A.j41(141,"span",8),A.EFF(142),A.nI1(143,"number"),A.k0s()(),A.nrm(144,"mat-divider",6),A.j41(145,"div",4)(146,"h4",7),A.EFF(147,"Channel Flags"),A.k0s(),A.j41(148,"span",8),A.EFF(149),A.nI1(150,"number"),A.k0s()(),A.nrm(151,"mat-divider",6),A.j41(152,"div",4)(153,"h4",7),A.EFF(154,"Delay"),A.k0s(),A.j41(155,"span",8),A.EFF(156),A.nI1(157,"number"),A.k0s()(),A.nrm(158,"mat-divider",6),A.j41(159,"div",4)(160,"h4",7),A.EFF(161,"Max Htlc (mSat)"),A.k0s(),A.j41(162,"span",8),A.EFF(163),A.nI1(164,"number"),A.k0s()(),A.nrm(165,"mat-divider",6),A.j41(166,"div",4)(167,"h4",7),A.EFF(168,"Min Htlc (mSat)"),A.k0s(),A.j41(169,"span",8),A.EFF(170),A.nI1(171,"number"),A.k0s()(),A.nrm(172,"mat-divider",6),A.j41(173,"div",4)(174,"h4",7),A.EFF(175,"Message Flags"),A.k0s(),A.j41(176,"span",8),A.EFF(177),A.nI1(178,"number"),A.k0s()(),A.nrm(179,"mat-divider",6),A.j41(180,"div",4)(181,"h4",7),A.EFF(182,"Public"),A.k0s(),A.j41(183,"span",8),A.EFF(184),A.k0s()(),A.nrm(185,"mat-divider",6),A.j41(186,"div",4)(187,"h4",7),A.EFF(188,"Source"),A.k0s(),A.j41(189,"span",8),A.EFF(190),A.k0s()(),A.nrm(191,"mat-divider",6),A.j41(192,"div",4)(193,"h4",7),A.EFF(194,"Destination"),A.k0s(),A.j41(195,"span",8),A.EFF(196),A.k0s()()()()()),2&n){const e=A.XpG();A.R7$(5),A.Y8G("ngIf",!e.node1_match),A.R7$(),A.Y8G("ngIf",e.node1_match),A.R7$(6),A.JRh(null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].short_channel_id),A.R7$(6),A.JRh(null!=e.lookupResult.channels[0]&&e.lookupResult.channels[0].active?"True":"False"),A.R7$(6),A.JRh(A.i5U(25,32,1e3*(null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].last_update),"dd/MMM/y HH:mm")),A.R7$(7),A.JRh(A.i5U(32,35,(null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].amount_msat)/1e3,"1.0-0")),A.R7$(7),A.JRh(A.bMT(39,38,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].base_fee_millisatoshi)),A.R7$(7),A.JRh(A.bMT(46,40,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].fee_per_millionth)),A.R7$(7),A.JRh(A.bMT(53,42,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].channel_flags)),A.R7$(7),A.JRh(A.bMT(60,44,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].delay)),A.R7$(7),A.JRh(A.bMT(67,46,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].htlc_maximum_msat)),A.R7$(7),A.JRh(A.bMT(74,48,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].htlc_minimum_msat)),A.R7$(7),A.JRh(A.bMT(81,50,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].message_flags)),A.R7$(7),A.JRh(null!=e.lookupResult.channels[0]&&e.lookupResult.channels[0].public?"Yes":"No"),A.R7$(6),A.JRh(null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].source),A.R7$(6),A.JRh(null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].destination),A.R7$(3),A.Y8G("ngIf",!e.node2_match),A.R7$(),A.Y8G("ngIf",e.node2_match),A.R7$(6),A.JRh(null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].short_channel_id),A.R7$(6),A.JRh(null!=e.lookupResult.channels[1]&&e.lookupResult.channels[1].active?"True":"False"),A.R7$(6),A.JRh(A.i5U(122,52,1e3*(null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].last_update),"dd/MMM/y HH:mm")),A.R7$(7),A.JRh(A.i5U(129,55,(null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].amount_msat)/1e3,"1.0-0")),A.R7$(7),A.JRh(A.bMT(136,58,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].base_fee_millisatoshi)),A.R7$(7),A.JRh(A.bMT(143,60,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].fee_per_millionth)),A.R7$(7),A.JRh(A.bMT(150,62,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].channel_flags)),A.R7$(7),A.JRh(A.bMT(157,64,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].delay)),A.R7$(7),A.JRh(A.bMT(164,66,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].htlc_maximum_msat)),A.R7$(7),A.JRh(A.bMT(171,68,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].htlc_minimum_msat)),A.R7$(7),A.JRh(A.bMT(178,70,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].message_flags)),A.R7$(7),A.JRh(null!=e.lookupResult.channels[1]&&e.lookupResult.channels[1].public?"Yes":"No"),A.R7$(6),A.JRh(null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].source),A.R7$(6),A.JRh(null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].destination)}}let Zs=(()=>{var n;class l{constructor(i){this.store=i,this.lookupResult={},this.node1_match=!1,this.node2_match=!1,this.unSubs=[new B.B,new B.B,new B.B,new B.B]}ngOnInit(){this.store.select(U.mH).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.lookupResult.channels&&this.lookupResult.channels.length>0&&this.lookupResult.channels[0].source===i.id&&(this.node1_match=!0),this.lookupResult.channels&&this.lookupResult.channels.length>1&&this.lookupResult.channels[1].source===i.id&&(this.node2_match=!0)})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(_.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-lookup"]],inputs:{lookupResult:"lookupResult"},standalone:!1,decls:1,vars:1,consts:[["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mt-1","bordered-box","padding-gap-large"],["fxLayout","column"],["class","page-title font-bold-500",4,"ngIf"],[1,"my-1"],[1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"page-title","font-bold-500"]],template:function(o,r){1&o&&A.DNE(0,Ho,197,72,"div",0),2&o&&A.Y8G("ngIf",r.lookupResult)},dependencies:[Ee.bT,$t.q,D.DJ,D.sA,D.UI,Ee.QX,Ee.vh],styles:[".mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%], .mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%]{height:38px!important}"]}))}return n(),l})();const Cr=["peersForm"],qs=["stepper"],Vr=(n,l)=>({"mr-6":n,"mr-2":l});function jo(n,l){if(1&n&&A.EFF(0),2&n){const e=A.XpG();A.JRh(e.peerFormLabel)}}function $s(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Address is required."),A.k0s())}function Wn(n,l){if(1&n&&(A.j41(0,"div",42),A.nrm(1,"fa-icon",43),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(2),A.JRh(e.peerConnectionError)}}function mi(n,l){if(1&n&&A.EFF(0),2&n){const e=A.XpG();A.JRh(e.channelFormLabel)}}function dr(n,l){if(1&n&&(A.j41(0,"div",44),A.nrm(1,"fa-icon",43),A.j41(2,"span",13)(3,"div"),A.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(5,"span",45)(6,"span"),A.EFF(7),A.k0s(),A.j41(8,"span"),A.EFF(9),A.k0s(),A.j41(10,"span"),A.EFF(11),A.k0s(),A.j41(12,"span"),A.EFF(13),A.k0s(),A.j41(14,"span"),A.EFF(15),A.k0s()()()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faInfoCircle),A.R7$(6),A.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),A.R7$(2),A.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),A.R7$(2),A.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),A.R7$(2),A.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),A.R7$(2),A.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function Qr(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function mr(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Amount must be a positive number."),A.k0s())}function Oo(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function Ns(n,l){if(1&n&&(A.j41(0,"mat-option",46),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e.feeRateId),A.R7$(),A.SpI(" ",e.feeRateType," ")}}function Wr(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function Jo(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function _o(n,l){if(1&n&&(A.j41(0,"mat-form-field",47)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.nrm(3,"input",48),A.j41(4,"mat-hint"),A.EFF(5),A.k0s(),A.DNE(6,Wr,2,0,"mat-error",15)(7,Jo,2,1,"mat-error",15),A.k0s()),2&n){const e=A.XpG();A.R7$(3),A.Y8G("step",1)("min",e.recommendedFee.minimumFee||0),A.R7$(2),A.SpI("Mempool Min: ",e.recommendedFee.minimumFee," (Sats/vByte)"),A.R7$(),A.Y8G("ngIf","customperkb"===e.channelFormGroup.controls.selFeeRate.value&&!e.channelFormGroup.controls.flgMinConf.value&&!e.channelFormGroup.controls.customFeeRate.value),A.R7$(),A.Y8G("ngIf",e.channelFormGroup.controls.customFeeRate.value&&(null==e.channelFormGroup.controls.customFeeRate.errors?null:e.channelFormGroup.controls.customFeeRate.errors.minimum))}}function Vo(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function Wo(n,l){if(1&n&&(A.j41(0,"div",42),A.nrm(1,"fa-icon",43),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(2),A.JRh(e.channelConnectionError)}}let Mr=(()=>{var n;class l{constructor(i,o,r,nA,WA,Ae,mn,bt){this.dialogRef=i,this.data=o,this.store=r,this.formBuilder=nA,this.actions=WA,this.logger=Ae,this.commonService=mn,this.dataService=bt,this.faExclamationTriangle=d.zpE,this.faInfoCircle=d.iW_,this.peerAddress="",this.totalBalance=0,this.feeRateTypes=c.G,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.screenSize="",this.screenSizeEnum=c.f7,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new B.B,new B.B,new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.data.message?(this.totalBalance=this.data.message.balance,this.peerAddress=this.data.message.peer&&this.data.message.peer.id&&this.data.message.peer.netaddr?this.data.message.peer.id+"@"+this.data.message.peer.netaddr:this.data.message.peer&&this.data.message.peer.id&&!this.data.message.peer.netaddr?this.data.message.peer.id:""):(this.totalBalance=0,this.peerAddress=""),this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[gA.k0.required]],peerAddress:[this.peerAddress,[gA.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[gA.k0.required,gA.k0.min(1),gA.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],selFeeRate:[null],customFeeRate:[null],flgMinConf:[!1],minConfValue:[{value:null,disabled:!0}],hiddenAmount:["",[gA.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(x._c).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i,this.channelFormGroup.controls.isPrivate.setValue(!!i?.settings.unannouncedChannels)}),this.channelFormGroup.controls.flgMinConf.valueChanges.pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{i?(this.channelFormGroup.controls.selFeeRate.setValue(null),this.channelFormGroup.controls.selFeeRate.disable(),this.channelFormGroup.controls.customFeeRate.setValue(null),this.channelFormGroup.controls.minConfValue.reset(),this.channelFormGroup.controls.minConfValue.enable(),this.channelFormGroup.controls.minConfValue.setValidators([gA.k0.required])):(this.channelFormGroup.controls.selFeeRate.enable(),this.channelFormGroup.controls.minConfValue.setValue(null),this.channelFormGroup.controls.minConfValue.disable(),this.channelFormGroup.controls.minConfValue.setValidators(null))}),this.channelFormGroup.controls.selFeeRate.valueChanges.pipe((0,M.Q)(this.unSubs[2])).subscribe(i=>{this.channelFormGroup.controls.customFeeRate.setValue(null),this.channelFormGroup.controls.customFeeRate.reset(),this.channelFormGroup.controls.customFeeRate.setValidators("customperkb"!==i||this.channelFormGroup.controls.flgMinConf.value?null:[gA.k0.required])}),this.actions.pipe((0,M.Q)(this.unSubs[3]),(0,Z.p)(i=>i.type===c.TC.NEWLY_ADDED_PEER_CLN||i.type===c.TC.FETCH_CHANNELS_CLN||i.type===c.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(i=>{i.type===c.TC.NEWLY_ADDED_PEER_CLN&&(this.logger.info(i.payload),this.flgEditable=!1,this.newlyAddedPeer=i.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),i.type===c.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close(),i.type===c.TC.UPDATE_API_CALL_STATUS_CLN&&i.payload.status===c.wn.ERROR&&("SaveNewPeer"===i.payload.action?this.peerConnectionError=i.payload.message:"SaveNewChannel"===i.payload.action&&(this.channelConnectionError=i.payload.message))}),this.dataService.getRecommendedFeeRates().pipe((0,M.Q)(this.unSubs[4])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,xA.sq)({payload:{id:this.peerFormGroup.controls.peerAddress.value}}))}onOpenChannel(){return"customperkb"===this.channelFormGroup.controls.selFeeRate.value&&this.recommendedFee.minimumFee>this.channelFormGroup.controls.customFeeRate.value?(this.channelFormGroup.controls.customFeeRate.setErrors({minimum:!0}),!0):!!(!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||this.channelFormGroup.controls.flgMinConf.value&&!this.channelFormGroup.controls.minConfValue.value)||(this.channelConnectionError="",void this.store.dispatch((0,xA.vL)({payload:{peerId:this.newlyAddedPeer?.id,amount:this.channelFormGroup.controls.fundingAmount.value,announce:!this.channelFormGroup.controls.isPrivate.value,feeRate:"customperkb"===this.channelFormGroup.controls.selFeeRate.value&&!this.channelFormGroup.controls.flgMinConf.value&&this.channelFormGroup.controls.customFeeRate.value?1e3*this.channelFormGroup.controls.customFeeRate.value+"perkb":this.channelFormGroup.controls.selFeeRate.value,minconf:this.channelFormGroup.controls.flgMinConf.value?this.channelFormGroup.controls.minConfValue.value:null}})))}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(i){switch(i.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.id):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer?.alias:this.newlyAddedPeer?.id):"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}i.selectedIndex{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(UA.CP),A.rXU(UA.Vh),A.rXU(_.il),A.rXU(gA.ze),A.rXU(QA.En),A.rXU(N.gP),A.rXU(Q.h),A.rXU(Rt.u))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-connect-peer"]],viewQuery:function(o,r){if(1&o&&(A.GBs(Cr,5),A.GBs(qs,5)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.form=nA.first),A.mGM(nA=A.lsd())&&(r.stepper=nA.first)}},standalone:!1,decls:67,vars:33,consts:[["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"ngSubmit","formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["fxLayout","column","fxFlex","53","fxLayoutAlign","start end"],["matInput","","autoFocus","","formControlName","fundingAmount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxFlex","45","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["fxFlex","53","fxLayoutAlign","space-between end"],["fxLayout","column","fxLayoutAlign","start center",3,"ngClass"],["tabindex","4","formControlName","selFeeRate"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","45","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","tabindex","5","color","primary","formControlName","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass"],["fxLayout","column","fxFlex","93"],["matInput","","formControlName","minConfValue","type","number","name","blocks","tabindex","8",3,"step","min","required"],["mat-button","","color","primary","tabindex","8","type","submit"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end center"],["matInput","","formControlName","customFeeRate","type","number","name","custFeeRate","tabindex","4",3,"step","min"]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),A.EFF(5,"Connect to a new peer"),A.k0s()(),A.j41(6,"button",6),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),A.bIt("selectionChange",function(Ae){return E.eBV(nA),E.Njj(r.stepSelectionChanged(Ae))}),A.j41(12,"mat-step",10)(13,"form",11),A.DNE(14,jo,1,1,"ng-template",12),A.j41(15,"mat-form-field",13)(16,"mat-label"),A.EFF(17,"Lightning Address (pubkey OR pubkey@ip:port)"),A.k0s(),A.nrm(18,"input",14),A.DNE(19,$s,2,0,"mat-error",15),A.k0s(),A.DNE(20,Wn,4,2,"div",16),A.j41(21,"div",17)(22,"button",18),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onConnectPeer())}),A.EFF(23),A.k0s()()()(),A.j41(24,"mat-step",10)(25,"form",19),A.bIt("ngSubmit",function(){return E.eBV(nA),E.Njj(r.onOpenChannel())}),A.DNE(26,mi,1,1,"ng-template",20),A.j41(27,"div",21),A.DNE(28,dr,16,6,"div",22),A.j41(29,"div",23)(30,"mat-form-field",24)(31,"mat-label"),A.EFF(32,"Amount"),A.k0s(),A.nrm(33,"input",25),A.j41(34,"mat-hint"),A.EFF(35),A.nI1(36,"number"),A.k0s(),A.j41(37,"span",26),A.EFF(38," Sats "),A.k0s(),A.DNE(39,Qr,2,0,"mat-error",15)(40,mr,2,0,"mat-error",15)(41,Oo,2,1,"mat-error",15),A.k0s(),A.j41(42,"div",27)(43,"mat-slide-toggle",28),A.EFF(44,"Private Channel"),A.k0s()()(),A.j41(45,"div",29)(46,"div",30)(47,"mat-form-field",31)(48,"mat-label"),A.EFF(49,"Fee Rate"),A.k0s(),A.j41(50,"mat-select",32),A.DNE(51,Ns,2,2,"mat-option",33),A.k0s()(),A.DNE(52,_o,8,5,"mat-form-field",34),A.k0s(),A.j41(53,"div",35),A.nrm(54,"mat-checkbox",36),A.j41(55,"mat-form-field",37)(56,"mat-label"),A.EFF(57,"Min Confirmation Blocks"),A.k0s(),A.nrm(58,"input",38),A.DNE(59,Vo,2,0,"mat-error",15),A.k0s()()()(),A.DNE(60,Wo,4,2,"div",16),A.j41(61,"div",17)(62,"button",39),A.EFF(63),A.k0s()()()()(),A.j41(64,"div",40)(65,"button",41),A.EFF(66),A.k0s()()()()()()}2&o&&(A.R7$(10),A.Y8G("linear",!0),A.R7$(2),A.Y8G("stepControl",r.peerFormGroup)("editable",r.flgEditable),A.R7$(),A.Y8G("formGroup",r.peerFormGroup),A.R7$(6),A.Y8G("ngIf",null==r.peerFormGroup.controls.peerAddress.errors?null:r.peerFormGroup.controls.peerAddress.errors.required),A.R7$(),A.Y8G("ngIf",""!==r.peerConnectionError),A.R7$(3),A.JRh(""!==r.peerConnectionError?"Retry":"Add Peer"),A.R7$(),A.Y8G("stepControl",r.channelFormGroup)("editable",r.flgEditable),A.R7$(),A.Y8G("formGroup",r.channelFormGroup),A.R7$(3),A.Y8G("ngIf",r.recommendedFee.minimumFee),A.R7$(5),A.Y8G("step",1e3),A.R7$(2),A.SpI("Remaining: ",A.bMT(36,28,r.totalBalance-(r.channelFormGroup.controls.fundingAmount.value?r.channelFormGroup.controls.fundingAmount.value:0))),A.R7$(4),A.Y8G("ngIf",null==r.channelFormGroup.controls.fundingAmount.errors?null:r.channelFormGroup.controls.fundingAmount.errors.required),A.R7$(),A.Y8G("ngIf",null==r.channelFormGroup.controls.fundingAmount.errors?null:r.channelFormGroup.controls.fundingAmount.errors.min),A.R7$(),A.Y8G("ngIf",null==r.channelFormGroup.controls.fundingAmount.errors?null:r.channelFormGroup.controls.fundingAmount.errors.max),A.R7$(6),A.Y8G("ngClass","customperkb"!==r.channelFormGroup.controls.selFeeRate.value||r.channelFormGroup.controls.flgMinConf.value?"flex-100":"flex-25"),A.R7$(4),A.Y8G("ngForOf",r.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===r.channelFormGroup.controls.selFeeRate.value&&!r.channelFormGroup.controls.flgMinConf.value),A.R7$(2),A.Y8G("ngClass",A.l_i(30,Vr,r.screenSize===r.screenSizeEnum.XS||r.screenSize===r.screenSizeEnum.SM,r.screenSize===r.screenSizeEnum.MD||r.screenSize===r.screenSizeEnum.LG||r.screenSize===r.screenSizeEnum.XL)),A.R7$(4),A.Y8G("step",1)("min",0)("required",r.channelFormGroup.controls.flgMinConf.value),A.R7$(),A.Y8G("ngIf",r.channelFormGroup.controls.flgMinConf.value&&!r.channelFormGroup.controls.minConfValue.value),A.R7$(),A.Y8G("ngIf",""!==r.channelConnectionError),A.R7$(3),A.JRh(""!==r.channelConnectionError?"Retry":"Open Channel"),A.R7$(2),A.Y8G("mat-dialog-close",!1),A.R7$(),A.JRh(null!=r.newlyAddedPeer&&r.newlyAddedPeer.id?"Do It Later":"Close"))},dependencies:[Ee.YU,Ee.Sq,Ee.bT,gA.qT,gA.me,gA.Q0,gA.BC,gA.cb,gA.YS,gA.VZ,gA.j4,gA.JD,y.aY,UA.tx,JA.$z,lA.m2,lA.MM,Cn.So,Be.fg,KA.rl,KA.nJ,KA.MV,KA.TL,KA.yw,D.DJ,D.sA,D.UI,rA.PW,eA.VO,ae.wT,we.sG,Wi.V5,Wi.Ti,Wi.M6,kA.N,CA.V,Ee.QX],encapsulation:2}))}return n(),l})();var Xi=Ve(29157);const Ot=n=>({"background-color":n});function Qt(n,l){if(1&n&&(A.j41(0,"span",7),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(e)}}function Ko(n,l){1&n&&(A.j41(0,"th",27),A.EFF(1,"Type"),A.k0s())}function Kr(n,l){if(1&n&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.type)}}function Ts(n,l){1&n&&(A.j41(0,"th",27),A.EFF(1,"Address"),A.k0s())}function Xr(n,l){if(1&n&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.address)}}function Xo(n,l){1&n&&(A.j41(0,"th",27),A.EFF(1,"Port"),A.k0s())}function Zo(n,l){if(1&n&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.port)}}function Zr(n,l){1&n&&(A.j41(0,"th",29)(1,"div",30),A.EFF(2,"Actions"),A.k0s()())}function qo(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",31)(1,"div",32)(2,"mat-select",33),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",34),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG(2);return E.Njj(r.onConnectNode(o))}),A.EFF(5,"Connect"),A.k0s(),A.j41(6,"mat-option",35),A.bIt("copied",function(o){E.eBV(e);const r=A.XpG(2);return E.Njj(r.onCopyNodeURI(o))}),A.EFF(7,"Copy URI"),A.k0s()()()()}if(2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(6),A.Y8G("payload",(null==i.lookupResult?null:i.lookupResult.nodeid)+"@"+e.address+":"+e.port)}}function xn(n,l){1&n&&A.nrm(0,"tr",36)}function pr(n,l){1&n&&A.nrm(0,"tr",37)}function qr(n,l){if(1&n&&(A.j41(0,"div",2),A.nrm(1,"mat-divider",3),A.j41(2,"div",4)(3,"div",5)(4,"h4",6),A.EFF(5,"Alias"),A.k0s(),A.j41(6,"span",7),A.EFF(7),A.j41(8,"span",8),A.EFF(9),A.k0s()()(),A.j41(10,"div",9)(11,"h4",6),A.EFF(12,"Pub Key"),A.k0s(),A.j41(13,"span",10),A.EFF(14),A.k0s()()(),A.nrm(15,"mat-divider",11),A.j41(16,"div",4)(17,"div",5)(18,"h4",6),A.EFF(19,"Last Update"),A.k0s(),A.j41(20,"span",7),A.EFF(21),A.nI1(22,"date"),A.k0s()(),A.j41(23,"div",9)(24,"h4",6),A.EFF(25,"Features"),A.k0s(),A.DNE(26,Qt,2,1,"span",12),A.k0s()(),A.nrm(27,"mat-divider",11),A.j41(28,"div",13)(29,"h4",14),A.EFF(30,"Addresses"),A.k0s(),A.j41(31,"div",15)(32,"table",16,0),A.qex(34,17),A.DNE(35,Ko,2,0,"th",18)(36,Kr,2,1,"td",19),A.bVm(),A.qex(37,20),A.DNE(38,Ts,2,0,"th",18)(39,Xr,2,1,"td",19),A.bVm(),A.qex(40,21),A.DNE(41,Xo,2,0,"th",18)(42,Zo,2,1,"td",19),A.bVm(),A.qex(43,22),A.DNE(44,Zr,3,0,"th",23)(45,qo,8,1,"td",24),A.bVm(),A.DNE(46,xn,1,0,"tr",25)(47,pr,1,0,"tr",26),A.k0s()()()()),2&n){const e=A.XpG();A.R7$(7),A.JRh(null==e.lookupResult?null:e.lookupResult.alias),A.R7$(),A.Y8G("ngStyle",A.eq3(12,Ot,"#"+(null==e.lookupResult?null:e.lookupResult.color))),A.R7$(),A.JRh(null!=e.lookupResult&&e.lookupResult.color?"#"+(null==e.lookupResult?null:e.lookupResult.color):""),A.R7$(5),A.JRh(null==e.lookupResult?null:e.lookupResult.nodeid),A.R7$(7),A.JRh(A.i5U(22,9,1e3*(null==e.lookupResult?null:e.lookupResult.last_timestamp),"dd/MMM/y HH:mm")),A.R7$(5),A.Y8G("ngForOf",e.featureDescriptions),A.R7$(6),A.Y8G("dataSource",e.addresses),A.R7$(14),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}let Ar=(()=>{var n;class l{constructor(i,o,r){this.logger=i,this.snackBar=o,this.store=r,this.featureDescriptions=[],this.addresses=new L.I6([]),this.displayedColumns=["type","address","port","actions"],this.information={},this.availableBalance=0,this.unSubs=[new B.B]}ngOnInit(){if(this.addresses=new L.I6(this.lookupResult&&this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(i,o)=>i[o]&&isNaN(i[o])?i[o].toLocaleLowerCase():i[o]?+i[o]:null,this.lookupResult.features&&""!==this.lookupResult.features.trim()){this.lookupResult.features=this.lookupResult.features.substring(this.lookupResult.features.length-40);const i=parseInt(this.lookupResult.features,16);c.TH.forEach(o=>{i&1<{this.information=i.information,this.availableBalance=i.balance.totalBalance||0})}onConnectNode(i){this.store.dispatch((0,w.xO)({payload:{data:{message:{peer:{id:this.lookupResult.nodeid+"@"+i.address+":"+i.port},information:this.information,balance:this.availableBalance},component:Mr}}}))}onCopyNodeURI(i){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+i)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(bs.UG),A.rXU(_.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-node-lookup"]],viewQuery:function(o,r){if(1&o&&A.GBs(BA.B4,5),2&o){let nA;A.mGM(nA=A.lsd())&&(r.sort=nA.first)}},inputs:{lookupResult:"lookupResult"},standalone:!1,decls:1,vars:1,consts:[["table",""],["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"ml-2",3,"ngStyle"],["fxFlex","70"],[1,"foreground-secondary-text","w-100"],[1,"my-1"],["class","foreground-secondary-text",4,"ngFor","ngForOf"],["fxLayout","column"],["fxFlex","100","fxLayoutAlign","start",1,"font-bold-500","mb-1"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",3,"dataSource"],["matColumnDef","type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","port"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select","btn-action"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"copied","payload"],["mat-header-row",""],["mat-row",""]],template:function(o,r){1&o&&A.DNE(0,qr,48,14,"div",1),2&o&&A.Y8G("ngIf",r.lookupResult)},dependencies:[Ee.Sq,Ee.bT,Ee.B3,$t.q,D.DJ,D.sA,D.UI,rA.eI,eA.VO,eA.$2,ae.wT,BA.B4,BA.aE,L.Zl,L.tL,L.ji,L.cC,L.YV,L.iL,L.KS,L.$R,L.YZ,L.NB,wA.Ld,Xi.U,Ee.vh],encapsulation:2}))}return n(),l})();const $o=["form"],Zi=n=>({"mt-1":!0,"mt-2":n});function gi(n,l){if(1&n&&(A.j41(0,"mat-radio-button",17),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e.id)("checked",i.selectedFieldId===e.id),A.R7$(),A.SpI(" ",e.name," ")}}function Mi(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.SpI("",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder," is required.")}}function pi(n,l){if(1&n&&(A.j41(0,"div"),A.nrm(1,"rtl-cln-node-lookup",26),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.Y8G("lookupResult",e.nodeLookupValue)}}function Al(n,l){if(1&n&&(A.j41(0,"span",24),A.DNE(1,pi,2,1,"div",25),A.k0s()),2&n){const e=A.XpG(2),i=A.sdS(21);A.R7$(),A.Y8G("ngIf",""!==e.nodeLookupValue.nodeid)("ngIfElse",i)}}function el(n,l){if(1&n&&(A.j41(0,"div"),A.nrm(1,"rtl-cln-channel-lookup",26),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.Y8G("lookupResult",e.channelLookupValue)}}function tl(n,l){if(1&n&&(A.j41(0,"span",24),A.DNE(1,el,2,1,"div",25),A.k0s()),2&n){const e=A.XpG(2),i=A.sdS(21);A.R7$(),A.Y8G("ngIf",e.channelLookupValue.channels&&e.channelLookupValue.channels.length>0)("ngIfElse",i)}}function er(n,l){1&n&&(A.j41(0,"span"),A.EFF(1,' fxFlex="100"'),A.j41(2,"h3"),A.EFF(3,"Error! Unable to find details!"),A.k0s()())}function nl(n,l){if(1&n&&(A.j41(0,"div",18)(1,"div",19)(2,"span",20),A.EFF(3),A.k0s()(),A.j41(4,"div",21),A.DNE(5,Al,2,2,"span",22)(6,tl,2,2,"span",22)(7,er,4,0,"span",23),A.k0s()()),2&n){const e=A.XpG();A.R7$(3),A.SpI("",e.lookupFields[e.selectedFieldId].name," Details"),A.R7$(),A.Y8G("ngSwitch",e.selectedFieldId),A.R7$(),A.Y8G("ngSwitchCase",0),A.R7$(),A.Y8G("ngSwitchCase",1)}}function $r(n,l){1&n&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find details!"),A.k0s())}let il=(()=>{var n;class l{constructor(i,o,r,nA){this.logger=i,this.commonService=o,this.store=r,this.actions=nA,this.lookupKey="",this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Pubkey"},{id:1,name:"Channel",placeholder:"Short Channel ID"}],this.flgLoading=[!0],this.faSearch=d.MjD,this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKey=window.history.state.lookupValue||""),this.actions.pipe((0,M.Q)(this.unSubs[0]),(0,Z.p)(i=>i.type===c.TC.SET_LOOKUP_CLN||i.type===c.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(i=>{if(i.type===c.TC.SET_LOOKUP_CLN){switch(this.flgLoading[0]=!0,this.selectedFieldId){case 0:this.nodeLookupValue="object"!=typeof i.payload[0]?{nodeid:""}:JSON.parse(JSON.stringify(i.payload[0]));break;case 1:this.channelLookupValue=i.payload.channels&&"object"!=typeof i.payload.channels?{channels:[]}:JSON.parse(JSON.stringify(i.payload))}this.flgSetLookupValue=!0,this.logger.info(this.nodeLookupValue),this.logger.info(this.channelLookupValue)}i.type===c.TC.UPDATE_API_CALL_STATUS_CLN&&i.payload.status===c.wn.ERROR&&"Lookup"===i.payload.action&&(this.flgLoading[0]="error")})}onLookup(){if(!this.lookupKey)return!0;switch(this.flgSetLookupValue=!1,this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.selectedFieldId){case 0:this.store.dispatch((0,xA.zU)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,xA.ij)({payload:{uiMessage:c.MZ.SEARCHING_CHANNEL,shortChannelID:this.lookupKey.trim(),showError:!1}}))}}onSelectChange(i){this.resetData(),this.selectedFieldId=i.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.form.resetForm()}clearLookupValue(){this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(Q.h),A.rXU(_.il),A.rXU(QA.En))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-lookups"]],viewQuery:function(o,r){if(1&o&&A.GBs($o,7),2&o){let nA;A.mGM(nA=A.lsd())&&(r.form=nA.first)}},standalone:!1,decls:22,vars:9,consts:[["form","ngForm"],["key",""],["errorBlock",""],["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModelChange","change","ngModel"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxFlex","100"],[4,"ngIf","ngIfElse"],[3,"lookupResult"]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",3)(1,"div",4)(2,"mat-card-content",5)(3,"form",6,0)(5,"div",7)(6,"mat-radio-group",8),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.selectedFieldId,Ae)||(r.selectedFieldId=Ae),E.Njj(Ae)}),A.bIt("change",function(Ae){return E.eBV(nA),E.Njj(r.onSelectChange(Ae))}),A.DNE(7,gi,2,3,"mat-radio-button",9),A.k0s()(),A.j41(8,"mat-form-field",10)(9,"mat-label"),A.EFF(10),A.k0s(),A.j41(11,"input",11,1),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.lookupKey,Ae)||(r.lookupKey=Ae),E.Njj(Ae)}),A.bIt("change",function(){return E.eBV(nA),E.Njj(r.clearLookupValue())}),A.k0s(),A.DNE(13,Mi,2,1,"mat-error",12),A.k0s(),A.j41(14,"div",13)(15,"button",14),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.resetData())}),A.EFF(16,"Clear"),A.k0s(),A.j41(17,"button",15),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onLookup())}),A.EFF(18,"Lookup"),A.k0s()()(),A.DNE(19,nl,8,4,"div",16),A.k0s()()(),A.DNE(20,$r,2,0,"ng-template",null,2,A.C5r)}2&o&&(A.R7$(6),A.R50("ngModel",r.selectedFieldId),A.R7$(),A.Y8G("ngForOf",r.lookupFields),A.R7$(),A.Y8G("ngClass",A.eq3(7,Zi,r.screenSize===r.screenSizeEnum.XS||r.screenSize===r.screenSizeEnum.SM)),A.R7$(2),A.JRh((null==r.lookupFields[r.selectedFieldId]?null:r.lookupFields[r.selectedFieldId].placeholder)||"Lookup Key"),A.R7$(),A.R50("ngModel",r.lookupKey),A.R7$(2),A.Y8G("ngIf",!r.lookupKey),A.R7$(6),A.Y8G("ngIf",r.flgSetLookupValue))},dependencies:[Ee.YU,Ee.Sq,Ee.bT,Ee.ux,Ee.e1,Ee.fG,gA.qT,gA.me,gA.BC,gA.cb,gA.YS,gA.vS,gA.cV,JA.$z,lA.m2,Be.fg,KA.rl,KA.nJ,KA.TL,pn.VT,pn._g,D.DJ,D.sA,D.UI,rA.PW,Zs,Ar],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]}))}return n(),l})();var Dr=function(n){return n.KB="KB",n.KW="KW",n}(Dr||{});function Ht(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 2 Blocks "),A.j41(3,"mat-icon",16),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==e.perkbw?null:e.perkbw.estimates[0].smoothed_feerate))}}function Aa(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 6 Blocks "),A.j41(3,"mat-icon",17),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==e.perkbw?null:e.perkbw.estimates[1].smoothed_feerate))}}function sl(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 12 Blocks "),A.j41(3,"mat-icon",18),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==e.perkbw?null:e.perkbw.estimates[2].smoothed_feerate))}}function rl(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 100 Blocks "),A.j41(3,"mat-icon",19),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==e.perkbw?null:e.perkbw.estimates[3].smoothed_feerate))}}function ea(n,l){if(1&n&&(A.j41(0,"div",2)(1,"div",3)(2,"div",4)(3,"div")(4,"h4",5),A.EFF(5," Opening "),A.j41(6,"mat-icon",6),A.EFF(7,"info_outline"),A.k0s()(),A.j41(8,"div",7),A.EFF(9),A.nI1(10,"number"),A.k0s()(),A.j41(11,"div")(12,"h4",5),A.EFF(13," Mutual Close "),A.j41(14,"mat-icon",8),A.EFF(15,"info_outline"),A.k0s()(),A.j41(16,"div",7),A.EFF(17),A.nI1(18,"number"),A.k0s()(),A.j41(19,"div")(20,"h4",5),A.EFF(21," Unilateral Close "),A.j41(22,"mat-icon",9),A.EFF(23,"info_outline"),A.k0s()(),A.j41(24,"div",7),A.EFF(25),A.nI1(26,"number"),A.k0s()(),A.j41(27,"div")(28,"h4",5),A.EFF(29," Delayed To Us "),A.j41(30,"mat-icon",10),A.EFF(31,"info_outline"),A.k0s()(),A.j41(32,"div",7),A.EFF(33),A.nI1(34,"number"),A.k0s()(),A.j41(35,"div")(36,"h4",5),A.EFF(37," Minimum Acceptable "),A.j41(38,"mat-icon",11),A.EFF(39,"info_outline"),A.k0s()(),A.j41(40,"div",7),A.EFF(41),A.nI1(42,"number"),A.k0s()(),A.j41(43,"div")(44,"h4",5),A.EFF(45," Maximum Acceptable "),A.j41(46,"mat-icon",12),A.EFF(47,"info_outline"),A.k0s()(),A.j41(48,"div",7),A.EFF(49),A.nI1(50,"number"),A.k0s()()(),A.j41(51,"div",4)(52,"div")(53,"h4",5),A.EFF(54," HTLC Resolution "),A.j41(55,"mat-icon",13),A.EFF(56,"info_outline"),A.k0s()(),A.j41(57,"div",7),A.EFF(58),A.nI1(59,"number"),A.k0s()(),A.j41(60,"div")(61,"h4",5),A.EFF(62," Penalty "),A.j41(63,"mat-icon",14),A.EFF(64,"info_outline"),A.k0s()(),A.j41(65,"div",7),A.EFF(66),A.nI1(67,"number"),A.k0s()(),A.DNE(68,Ht,8,3,"div",15)(69,Aa,8,3,"div",15)(70,sl,8,3,"div",15)(71,rl,8,3,"div",15),A.k0s()()()),2&n){const e=A.XpG();A.R7$(9),A.JRh(A.bMT(10,12,null==e.perkbw?null:e.perkbw.opening)),A.R7$(8),A.JRh(A.bMT(18,14,null==e.perkbw?null:e.perkbw.mutual_close)),A.R7$(8),A.JRh(A.bMT(26,16,null==e.perkbw?null:e.perkbw.unilateral_close)),A.R7$(8),A.JRh(A.bMT(34,18,null==e.perkbw?null:e.perkbw.delayed_to_us)),A.R7$(8),A.JRh(A.bMT(42,20,null==e.perkbw?null:e.perkbw.min_acceptable)),A.R7$(8),A.JRh(A.bMT(50,22,null==e.perkbw?null:e.perkbw.max_acceptable)),A.R7$(9),A.JRh(A.bMT(59,24,null==e.perkbw?null:e.perkbw.htlc_resolution)),A.R7$(8),A.JRh(A.bMT(67,26,null==e.perkbw?null:e.perkbw.penalty)),A.R7$(2),A.Y8G("ngIf",(null==e.perkbw?null:e.perkbw.estimates)&&(null==e.perkbw?null:e.perkbw.estimates.length)&&(null==e.perkbw?null:e.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==e.perkbw?null:e.perkbw.estimates)&&(null==e.perkbw?null:e.perkbw.estimates.length)&&(null==e.perkbw?null:e.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==e.perkbw?null:e.perkbw.estimates)&&(null==e.perkbw?null:e.perkbw.estimates.length)&&(null==e.perkbw?null:e.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==e.perkbw?null:e.perkbw.estimates)&&(null==e.perkbw?null:e.perkbw.estimates.length)&&(null==e.perkbw?null:e.perkbw.estimates.length)>3)}}function al(n,l){if(1&n&&(A.j41(0,"div",20)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let ol=(()=>{var n;class l{constructor(){this.perkbw={},this.displayedColumns=["blockcount","feerate"]}ngAfterContentChecked(){this.feeRateStyle===Dr.KB?this.perkbw=this.feeRates.perkb||{}:this.feeRateStyle===Dr.KW&&(this.perkbw=this.feeRates.perkw||{})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-fee-rates"]],inputs:{feeRateStyle:"feeRateStyle",feeRates:"feeRates",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch",1,"mt-2"],["fxLayoutAlign","start start",1,"dashboard-info-title"],["matTooltip","Default feerate for fundchannel and withdraw","matTooltipPosition","below",1,"info-icon","info-icon-primary"],[1,"overflow-wrap","dashboard-info-value"],["matTooltip","Feerate to aim for in cooperative shutdown. Note that since mutual close is a negotiation, the actual feerate used in mutual close will be somewhere between this and the corresponding mutual close feerate of the peer","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for commitment transaction in a live channel which we originally funded","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for returning unilateral close funds to our wallet","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","The smallest feerate that you can use, usually the minimum relayed feerate of the backend","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","The largest feerate we will accept from remote negotiations. If a peer attempts to set the feerate higher than this we will unilaterally close the channel (or simply forget it if it's not open yet)","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for returning unilateral close HTLC outputs to our wallet","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate to start at when penalizing a cheat attempt","matTooltipPosition","below",1,"info-icon","info-icon-primary"],[4,"ngIf"],["matTooltip","Fee rate estimate for 2 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 6 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 12 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 100 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,ea,72,28,"div",1)(1,al,3,1,"ng-template",null,0,A.C5r),2&o){const nA=A.sdS(2);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",nA)}},dependencies:[Ee.bT,G.An,D.DJ,D.sA,D.UI,ie.oV,Ee.QX],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]}))}return n(),l})();function ll(n,l){if(1&n&&(A.j41(0,"div",3)(1,"div",4)(2,"div")(3,"h4",5),A.EFF(4," Opening Channel "),A.j41(5,"mat-icon",6),A.EFF(6,"info_outline"),A.k0s()(),A.j41(7,"div",7),A.EFF(8),A.nI1(9,"number"),A.k0s()(),A.j41(10,"div")(11,"h4",5),A.EFF(12," Mutual Close "),A.j41(13,"mat-icon",8),A.EFF(14,"info_outline"),A.k0s()(),A.j41(15,"div",7),A.EFF(16),A.nI1(17,"number"),A.k0s()(),A.j41(18,"div")(19,"h4",5),A.EFF(20," Unilateral Close "),A.j41(21,"mat-icon",9),A.EFF(22,"info_outline"),A.k0s()(),A.j41(23,"div",7),A.EFF(24),A.nI1(25,"number"),A.k0s()(),A.j41(26,"div",10),A.nrm(27,"h4",5)(28,"div",7),A.k0s()(),A.j41(29,"div",4)(30,"div")(31,"h4",5),A.EFF(32," HTLC Timeout "),A.j41(33,"mat-icon",11),A.EFF(34,"info_outline"),A.k0s()(),A.j41(35,"div",7),A.EFF(36),A.nI1(37,"number"),A.k0s()(),A.j41(38,"div")(39,"h4",5),A.EFF(40," HTLC Success "),A.j41(41,"mat-icon",12),A.EFF(42,"info_outline"),A.k0s()(),A.j41(43,"div",7),A.EFF(44),A.nI1(45,"number"),A.k0s()(),A.j41(46,"div",10),A.nrm(47,"h4",5)(48,"div",7),A.k0s(),A.j41(49,"div",10),A.nrm(50,"h4",5)(51,"div",7),A.k0s()()()),2&n){const e=A.XpG();A.R7$(8),A.JRh(A.bMT(9,5,null==e.feeRates||null==e.feeRates.onchain_fee_estimates?null:e.feeRates.onchain_fee_estimates.opening_channel_satoshis)),A.R7$(8),A.JRh(A.bMT(17,7,null==e.feeRates||null==e.feeRates.onchain_fee_estimates?null:e.feeRates.onchain_fee_estimates.mutual_close_satoshis)),A.R7$(8),A.JRh(A.bMT(25,9,null==e.feeRates||null==e.feeRates.onchain_fee_estimates?null:e.feeRates.onchain_fee_estimates.unilateral_close_satoshis)),A.R7$(12),A.JRh(A.bMT(37,11,null==e.feeRates||null==e.feeRates.onchain_fee_estimates?null:e.feeRates.onchain_fee_estimates.htlc_timeout_satoshis)),A.R7$(8),A.JRh(A.bMT(45,13,null==e.feeRates||null==e.feeRates.onchain_fee_estimates?null:e.feeRates.onchain_fee_estimates.htlc_success_satoshis))}}function ta(n,l){if(1&n&&(A.j41(0,"div",13)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let tr=(()=>{var n;class l{constructor(){}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-onchain-fee-estimates"]],inputs:{feeRates:"feeRates",errorMessage:"errorMessage"},standalone:!1,decls:4,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","62","fxLayoutAlign","stretch stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","62","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch",1,"mt-2"],["fxLayoutAlign","start start",1,"dashboard-info-title"],["matTooltip","Estimated cost of typical channel open","matTooltipPosition","below",1,"info-icon","info-icon-primary"],[1,"overflow-wrap","dashboard-info-value"],["matTooltip","Estimated cost of typical channel close","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Estimated cost of typical unilateral close (without HTLCs)","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxFlex","12"],["matTooltip","Estimated cost of typical HTLC timeout transaction","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Estimated cost of typical HTLC fulfillment transaction","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1),A.DNE(1,ll,52,15,"div",2)(2,ta,3,1,"ng-template",null,0,A.C5r),A.k0s()),2&o){const nA=A.sdS(3);A.R7$(),A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",nA)}},dependencies:[Ee.bT,G.An,D.DJ,D.sA,D.UI,ie.oV,Ee.QX],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]}))}return n(),l})();const Ir=n=>({"dashboard-card-content":!0,"error-border":n});function cl(n,l){1&n&&A.nrm(0,"mat-progress-bar",20)}function Bl(n,l){if(1&n&&A.nrm(0,"rtl-cln-node-info",21),2&n){const e=A.XpG(3);A.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function gl(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-status-info",22),2&n){const e=A.XpG(3);A.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[1])}}function fl(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-info",23),2&n){const e=A.XpG(3);A.Y8G("fees",e.fees)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[2]+" "+e.errorMessages[3])}}function ul(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-rates",24),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKB)("errorMessage",e.errorMessages[4])}}function El(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-rates",25),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKW)("errorMessage",e.errorMessages[5])}}function hl(n,l){if(1&n&&A.nrm(0,"rtl-cln-onchain-fee-estimates",26),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKW)("errorMessage",e.errorMessages[4])}}function ss(n,l){if(1&n&&(A.j41(0,"mat-grid-tile",4)(1,"div",5)(2,"div",6)(3,"div",7),A.nrm(4,"fa-icon",8),A.j41(5,"span"),A.EFF(6),A.k0s()()(),A.j41(7,"div",9)(8,"mat-card",10)(9,"mat-card-content",11),A.DNE(10,cl,1,0,"mat-progress-bar",12),A.j41(11,"div",13),A.DNE(12,Bl,1,2,"rtl-cln-node-info",14)(13,gl,1,2,"rtl-cln-channel-status-info",15)(14,fl,1,2,"rtl-cln-fee-info",16)(15,ul,1,2,"rtl-cln-fee-rates",17)(16,El,1,2,"rtl-cln-fee-rates",18)(17,hl,1,2,"rtl-cln-onchain-fee-estimates",19),A.k0s()()()()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("colspan",e.cols)("rowspan",e.rows),A.R7$(4),A.Y8G("icon",e.icon),A.R7$(2),A.JRh(e.title),A.R7$(3),A.Y8G("ngClass",A.eq3(13,Ir,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusLRBal.status===i.apiCallStatusEnum.ERROR)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.ERROR)||"feeRatesKB"===e.id&&i.apiCallStatusPerKB.status===i.apiCallStatusEnum.ERROR||"feeRatesKW"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusLRBal.status===i.apiCallStatusEnum.INITIATED)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.INITIATED)||"feeRatesKB"===e.id&&i.apiCallStatusPerKB.status===i.apiCallStatusEnum.INITIATED||"feeRatesKW"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",e.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","status"),A.R7$(),A.Y8G("ngSwitchCase","fee"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKB"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKW"),A.R7$(),A.Y8G("ngSwitchCase","onChainFeeEstimates")}}function Ps(n,l){if(1&n&&(A.j41(0,"mat-grid-list",2),A.DNE(1,ss,18,15,"mat-grid-tile",3),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngForOf",e.nodeCardsOperator)}}function fi(n,l){1&n&&A.nrm(0,"mat-progress-bar",20)}function na(n,l){if(1&n&&A.nrm(0,"rtl-cln-node-info",21),2&n){const e=A.XpG(3);A.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function wl(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-status-info",22),2&n){const e=A.XpG(3);A.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[1])}}function Cl(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-info",23),2&n){const e=A.XpG(3);A.Y8G("fees",e.fees)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[2]+" "+e.errorMessages[3])}}function dl(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-rates",24),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKB)("errorMessage",e.errorMessages[4])}}function Ql(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-rates",25),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKW)("errorMessage",e.errorMessages[4])}}function ml(n,l){if(1&n&&A.nrm(0,"rtl-cln-onchain-fee-estimates",26),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKW)("errorMessage",e.errorMessages[4])}}function Ml(n,l){if(1&n&&(A.j41(0,"mat-grid-tile",4)(1,"div",5)(2,"div",6)(3,"div",27),A.nrm(4,"fa-icon",8),A.j41(5,"span"),A.EFF(6),A.k0s()()(),A.j41(7,"div",9)(8,"mat-card",10)(9,"mat-card-content",11),A.DNE(10,fi,1,0,"mat-progress-bar",12),A.j41(11,"div",13),A.DNE(12,na,1,2,"rtl-cln-node-info",14)(13,wl,1,2,"rtl-cln-channel-status-info",15)(14,Cl,1,2,"rtl-cln-fee-info",16)(15,dl,1,2,"rtl-cln-fee-rates",17)(16,Ql,1,2,"rtl-cln-fee-rates",18)(17,ml,1,2,"rtl-cln-onchain-fee-estimates",19),A.k0s()()()()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("colspan",e.cols)("rowspan",e.rows),A.R7$(4),A.Y8G("icon",e.icon),A.R7$(2),A.JRh(e.title),A.R7$(3),A.Y8G("ngClass",A.eq3(13,Ir,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusLRBal.status===i.apiCallStatusEnum.ERROR)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.ERROR)||"feeRatesKB"===e.id&&i.apiCallStatusPerKB.status===i.apiCallStatusEnum.ERROR||"feeRatesKW"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusLRBal.status===i.apiCallStatusEnum.INITIATED)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.INITIATED)||"feeRatesKB"===e.id&&i.apiCallStatusPerKB.status===i.apiCallStatusEnum.INITIATED||"feeRatesKW"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",e.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","status"),A.R7$(),A.Y8G("ngSwitchCase","fee"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKB"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKW"),A.R7$(),A.Y8G("ngSwitchCase","onChainFeeEstimates")}}function pl(n,l){if(1&n&&(A.j41(0,"mat-grid-list",2),A.DNE(1,Ml,18,15,"mat-grid-tile",3),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngForOf",e.nodeCardsMerchant)}}let x0=(()=>{var n;class l{constructor(i,o,r){this.logger=i,this.commonService=o,this.store=r,this.faBolt=d.zm_,this.faServer=d.D6w,this.faNetworkWired=d.eGi,this.faLink=d.CQO,this.information={},this.channelsStatus={active:{},pending:{},inactive:{}},this.feeRatesPerKB={},this.feeRatesPerKW={},this.nodeCardsOperator=[],this.nodeCardsMerchant=[],this.screenSize="",this.screenSizeEnum=c.f7,this.userPersonaEnum=c.HW,this.errorMessages=["","","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusLRBal=null,this.apiCallStatusChannels=null,this.apiCallStatusFHistory=null,this.apiCallStatusPerKB=null,this.apiCallStatusPerKW=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===c.f7.XS?(this.nodeCardsMerchant=[{id:"node",icon:this.faServer,title:"Node Information",cols:6,rows:3},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:6,rows:3},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:6,rows:1},{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:4,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:4,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:4,rows:6}],this.nodeCardsOperator=[{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:4,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:4,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:4,rows:6}]):(this.nodeCardsMerchant=[{id:"node",icon:this.faServer,title:"Node Information",cols:2,rows:3},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:2,rows:3},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:2,rows:3},{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:2,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:2,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:2,rows:6}],this.nodeCardsOperator=[{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:2,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:2,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:2,rows:6}])}ngOnInit(){this.store.select(U.RQ).pipe((0,M.Q)(this.unSubs[0]),(0,Y.E)(this.store.select(x._c))).subscribe(([i,o])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=i.apisCallStatus[0],this.apiCallStatusNodeInfo.status===c.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=o,this.information=i.information,this.fees=i.fees,this.logger.info(i)}),this.store.select(U.BM).pipe((0,M.Q)(this.unSubs[1]),(0,Y.E)(this.store.select(U.Al))).subscribe(([i,o])=>{this.errorMessages[1]="",this.errorMessages[2]="",this.apiCallStatusLRBal=o.apiCallStatus,this.apiCallStatusChannels=i.apiCallStatus,this.apiCallStatusLRBal.status===c.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusLRBal.message?JSON.stringify(this.apiCallStatusLRBal.message):this.apiCallStatusLRBal.message?this.apiCallStatusLRBal.message:""),this.apiCallStatusChannels.status===c.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:""),this.channelsStatus.active.channels=i.activeChannels.length||0,this.channelsStatus.pending.channels=i.pendingChannels.length||0,this.channelsStatus.inactive.channels=i.inactiveChannels.length||0,this.channelsStatus.active.capacity=o.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=o.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=o.localRemoteBalance.inactiveBalance||0}),this.store.select(U.Ie).pipe((0,M.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessages[3]="",this.apiCallStatusFHistory=i.apiCallStatus,this.apiCallStatusFHistory.status===c.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusFHistory.message?JSON.stringify(this.apiCallStatusFHistory.message):this.apiCallStatusFHistory.message?this.apiCallStatusFHistory.message:""),i.forwardingHistory&&i.forwardingHistory.listForwards&&i.forwardingHistory.listForwards.length&&(this.fees.totalTxCount=i.forwardingHistory.listForwards.length)}),this.store.select(U.kr).pipe((0,M.Q)(this.unSubs[4])).subscribe(i=>{this.errorMessages[4]="",this.apiCallStatusPerKB=i.apiCallStatus,this.apiCallStatusPerKB.status===c.wn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPerKB.message?JSON.stringify(this.apiCallStatusPerKB.message):this.apiCallStatusPerKB.message?this.apiCallStatusPerKB.message:""),this.feeRatesPerKB=i.feeRatesPerKB}),this.store.select(U.RB).pipe((0,M.Q)(this.unSubs[5])).subscribe(i=>{this.errorMessages[5]="",this.apiCallStatusPerKW=i.apiCallStatus,this.apiCallStatusPerKW.status===c.wn.ERROR&&(this.errorMessages[5]="object"==typeof this.apiCallStatusPerKW.message?JSON.stringify(this.apiCallStatusPerKW.message):this.apiCallStatusPerKW.message?this.apiCallStatusPerKW.message:""),this.feeRatesPerKW=i.feeRatesPerKW})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(Q.h),A.rXU(_.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-network-info"]],standalone:!1,decls:3,vars:2,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch",1,"mb-4"],["cols","6","rowHeight","100px",4,"ngIf"],["cols","6","rowHeight","100px"],["class","node-grid-tile",3,"colspan","rowspan",4,"ngFor","ngForOf"],[1,"node-grid-tile",3,"colspan","rowspan"],["fxLayout","column","fxLayoutAlign","stretch start","fxFlex","100",1,"h-100"],["fxLayout","row","fxLayoutAlign","start start",1,"w-100"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","pl-2"],[1,"mr-1",3,"icon"],["fxLayout","column","fxLayoutAlign","stretch center","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","center stretch",1,"w-100","h-93"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","w-96","h-93"],["fxLayout","column","fxFlex","100",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["class","h-100","feeRateStyle","KB",3,"feeRates","errorMessage",4,"ngSwitchCase"],["class","h-100","feeRateStyle","KW",3,"feeRates","errorMessage",4,"ngSwitchCase"],["class","h-100",3,"feeRates","errorMessage",4,"ngSwitchCase"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["feeRateStyle","KB",1,"h-100",3,"feeRates","errorMessage"],["feeRateStyle","KW",1,"h-100",3,"feeRates","errorMessage"],[1,"h-100",3,"feeRates","errorMessage"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","pl-15px"]],template:function(o,r){1&o&&(A.j41(0,"div",0),A.DNE(1,Ps,2,1,"mat-grid-list",1)(2,pl,2,1,"mat-grid-list",1),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",r.selNode.settings.userPersona===r.userPersonaEnum.OPERATOR),A.R7$(),A.Y8G("ngIf",r.selNode.settings.userPersona===r.userPersonaEnum.MERCHANT))},dependencies:[Ee.YU,Ee.Sq,Ee.bT,Ee.ux,Ee.e1,y.aY,lA.RN,lA.m2,uA.B_,uA.NS,q.HM,D.DJ,D.sA,D.UI,rA.PW,Je,St,Un,ol,tr],encapsulation:2}))}return n(),l})();function y0(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",9),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.activeLink=o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("routerLink",A.mNQ(e.link))("active",i.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let Dl=(()=>{var n;class l{constructor(i){this.router=i,this.faUserCheck=d.pCJ,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new B.B,new B.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,M.Q)(this.unSubs[0]),(0,Z.p)(o=>o instanceof Pt.gx)).subscribe({next:o=>{const r=this.links.find(nA=>o.urlAfterRedirects.includes(nA.link));this.activeLink=r?r.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(Pt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-sign-verify-message"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","role","tab","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper","mb-2"],["tabindex","1","mat-tab-link","","role","tab",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Sign/Verify Message"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),A.DNE(8,y0,2,4,"div",7),A.k0s(),A.nrm(9,"mat-tab-nav-panel",null,0),A.j41(11,"div",8),A.nrm(12,"router-outlet"),A.k0s()()()()),2&o){const nA=A.sdS(10);A.R7$(),A.Y8G("icon",r.faUserCheck),A.R7$(6),A.Y8G("tabPanel",nA),A.R7$(),A.Y8G("ngForOf",r.links)}},dependencies:[Ee.Sq,y.aY,lA.RN,lA.m2,D.DJ,D.sA,D.UI,$.Bu,$.hQ,$.Ql,Pt.n3,Hn.Wk],encapsulation:2}))}return n(),l})();var ia=Ve(80396),Fr=Ve(283);function Il(n,l){if(1&n&&(A.j41(0,"mat-option",6),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e),A.R7$(),A.SpI(" ",e.addressTp," ")}}let Fl=(()=>{var n;class l{constructor(i,o){this.store=i,this.clnEffects=o,this.addressTypes=c.Ld,this.selectedAddressType=c.Ld[2],this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,xA.XT)({payload:this.selectedAddressType})),this.clnEffects.setNewAddressCL.pipe((0,Gt.s)(1)).subscribe(i=>{this.newAddress=i,setTimeout(()=>{this.store.dispatch((0,w.xO)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:ia.f}}}))},0)})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(_.il),A.rXU(Fr.i))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-on-chain-receive"]],standalone:!1,decls:10,vars:2,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","space-between center","fxLayoutAlign.gt-sm","start center"],["fxLayout","column","fxFlex","48","fxFlex.gt-md","25","fxLayoutAlign","start end",1,"mr-2"],["name","address_type","tabindex","1",3,"ngModelChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["mat-flat-button","","color","primary","tabindex","2",3,"click"],[3,"value"]],template:function(o,r){1&o&&(A.j41(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"mat-label"),A.EFF(4,"Address Type"),A.k0s(),A.j41(5,"mat-select",3),A.mxI("ngModelChange",function(WA){return A.DH7(r.selectedAddressType,WA)||(r.selectedAddressType=WA),WA}),A.DNE(6,Il,2,2,"mat-option",4),A.k0s()(),A.j41(7,"div")(8,"button",5),A.bIt("click",function(){return r.onGenerateAddress()}),A.EFF(9,"Generate Address"),A.k0s()()()()),2&o&&(A.R7$(5),A.R50("ngModel",r.selectedAddressType),A.R7$(),A.Y8G("ngForOf",r.addressTypes))},dependencies:[Ee.Sq,gA.BC,gA.vS,JA.$z,KA.rl,KA.nJ,D.DJ,D.sA,D.UI,eA.VO,ae.wT],encapsulation:2}))}return n(),l})(),xl=(()=>{var n;class l{constructor(i,o){this.store=i,this.activatedRoute=o,this.sweepAll=!1,this.unSubs=[new B.B,new B.B]}ngOnInit(){this.activatedRoute.data.pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.sweepAll=i.sweepAll})}openSendFundsModal(){this.store.dispatch((0,w.xO)({payload:{data:{sweepAll:this.sweepAll,component:oo}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(_.il),A.rXU(Pt.nX))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-on-chain-send"]],standalone:!1,decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(o,r){1&o&&(A.j41(0,"div",0)(1,"div",1)(2,"button",2),A.bIt("click",function(){return r.openSendFundsModal()}),A.EFF(3),A.k0s()()()),2&o&&(A.R7$(3),A.JRh(r.sweepAll?"Sweep All":"Send Funds"))},dependencies:[JA.$z,D.DJ,D.sA,D.UI],encapsulation:2}))}return n(),l})();var Y0=Ve(99172),yl=Ve(96354),Yl=Ve(22628),ti=Ve(60092);const vl=["form"],nr=(n,l)=>({"mr-6":n,"mr-2":l});function bl(n,l){if(1&n&&(A.j41(0,"mat-option",48),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e),A.R7$(),A.JRh(e.alias?e.alias:e.id?e.id:"")}}function Rl(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Peer alias is required."),A.k0s())}function Sl(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Peer not found in the list."),A.k0s())}function sa(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",7)(1,"mat-label"),A.EFF(2,"Peer Alias"),A.k0s(),A.j41(3,"input",46),A.bIt("change",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onSelectedPeerChanged())}),A.k0s(),A.j41(4,"mat-autocomplete",47,4),A.bIt("optionSelected",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onSelectedPeerChanged())}),A.DNE(6,bl,2,2,"mat-option",31),A.nI1(7,"async"),A.k0s(),A.DNE(8,Rl,2,0,"mat-error",21)(9,Sl,2,0,"mat-error",21),A.k0s()}if(2&n){const e=A.sdS(5),i=A.XpG();A.R7$(3),A.Y8G("formControl",i.selectedPeer)("matAutocomplete",e),A.R7$(),A.Y8G("displayWith",i.displayFn),A.R7$(2),A.Y8G("ngForOf",A.bMT(7,6,i.filteredPeers)),A.R7$(2),A.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.required),A.R7$(),A.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.notfound)}}function Nl(n,l){1&n&&A.eu8(0)}function Tl(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function Pl(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function Ul(n,l){if(1&n&&(A.j41(0,"div",49),A.nrm(1,"fa-icon",50),A.j41(2,"span",51)(3,"div"),A.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(5,"span",52)(6,"span"),A.EFF(7),A.k0s(),A.j41(8,"span"),A.EFF(9),A.k0s(),A.j41(10,"span"),A.EFF(11),A.k0s(),A.j41(12,"span"),A.EFF(13),A.k0s(),A.j41(14,"span"),A.EFF(15),A.k0s()()()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faInfoCircle),A.R7$(6),A.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),A.R7$(2),A.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),A.R7$(2),A.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),A.R7$(2),A.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),A.R7$(2),A.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function ra(n,l){if(1&n&&(A.j41(0,"mat-option",48),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e.feeRateId),A.R7$(),A.SpI(" ",e.feeRateType," ")}}function Gl(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function aa(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function oa(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",53)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.j41(3,"input",54,5),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.customFeeRate,o)||(r.customFeeRate=o),E.Njj(o)}),A.k0s(),A.j41(5,"mat-hint"),A.EFF(6),A.k0s(),A.DNE(7,Gl,2,0,"mat-error",21)(8,aa,2,1,"mat-error",21),A.k0s()}if(2&n){const e=A.XpG();A.R7$(3),A.Y8G("step",1)("min",e.recommendedFee.minimumFee)("required","customperkb"===e.selFeeRate&&!e.flgMinConf),A.R50("ngModel",e.customFeeRate),A.R7$(3),A.SpI("Mempool Min: ",e.recommendedFee.minimumFee," (Sats/vByte)"),A.R7$(),A.Y8G("ngIf","customperkb"===e.selFeeRate&&!e.flgMinConf&&!e.customFeeRate),A.R7$(),A.Y8G("ngIf","customperkb"===e.selFeeRate&&!e.flgMinConf&&e.customFeeRate&&e.customFeeRate{var n;class l{constructor(i,o,r,nA,WA,Ae,mn,bt){this.logger=i,this.dialogRef=o,this.data=r,this.store=nA,this.actions=WA,this.decimalPipe=Ae,this.commonService=mn,this.dataService=bt,this.selectedPeer=new gA.hs,this.faExclamationTriangle=d.zpE,this.faInfoCircle=d.iW_,this.utxos=[],this.selUTXOs=[],this.flgUseAllBalance=!1,this.totalSelectedUTXOAmount=0,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.fundingAmount=null,this.selectedPubkey="",this.isPrivate=!1,this.feeRateTypes=c.G,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.screenSize="",this.screenSizeEnum=c.f7,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new B.B,new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.data.message?(this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.utxos=this.data.message.utxos,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[]):(this.information={},this.totalBalance=0,this.utxos=[],this.peer=null,this.peers=[]),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(x._c).pipe((0,M.Q)(this.unSubs[0])).subscribe(r=>{this.selNode=r,this.isPrivate=!!r?.settings.unannouncedChannels}),this.actions.pipe((0,M.Q)(this.unSubs[1]),(0,Z.p)(r=>r.type===c.TC.UPDATE_API_CALL_STATUS_CLN||r.type===c.TC.FETCH_CHANNELS_CLN)).subscribe(r=>{r.type===c.TC.UPDATE_API_CALL_STATUS_CLN&&r.payload.status===c.wn.ERROR&&"SaveNewChannel"===r.payload.action&&(this.channelConnectionError=r.payload.message),r.type===c.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close()});let i="",o="";this.sortedPeers=this.peers.sort((r,nA)=>(i=r.alias?r.alias.toLowerCase():r.id?r.id.toLowerCase():"",o=nA.alias?nA.alias.toLowerCase():r.id?r.id.toLowerCase():"",io?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,M.Q)(this.unSubs[2]),(0,Y0.Z)(""),(0,yl.T)(r=>"string"==typeof r?r:r.alias?r.alias:r.id),(0,yl.T)(r=>r?this.filterPeers(r):this.sortedPeers.slice()))}filterPeers(i){return this.sortedPeers?.filter(o=>0===o.alias?.toLowerCase().indexOf(i?i.toLowerCase():""))}displayFn(i){return i&&i.alias?i.alias:i&&i.id?i.id:""}onSelectedPeerChanged(){if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.id?this.selectedPeer.value.id:null,"string"==typeof this.selectedPeer.value){const i=this.peers?.filter(o=>o.alias?.length===this.selectedPeer.value.length&&0===o.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===i.length&&i[0].id&&(this.selectedPubkey=i[0].id)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){this.flgMinConf=!1,this.selFeeRate="",this.minConfValue=null,this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!!this.selNode?.settings.unannouncedChannels,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onAdvancedPanelToggle(i){i?this.flgMinConf||this.selFeeRate||this.selUTXOs.length&&0!==this.selUTXOs.length?(this.advancedTitle="Advanced Options",this.flgMinConf&&(this.advancedTitle=this.advancedTitle+" | Min Confirmation Blocks: "+this.minConfValue),this.selFeeRate&&(this.advancedTitle=this.advancedTitle+" | Fee Rate: "+(this.customFeeRate?this.customFeeRate+" (Sats/vByte)":this.feeRateTypes.find(o=>o.feeRateId===this.selFeeRate)?.feeRateType)),this.selUTXOs.length&&this.selUTXOs.length>0&&(this.advancedTitle=this.advancedTitle+" | Total Selected: "+this.selUTXOs.length+" | Selected UTXOs: "+this.decimalPipe.transform(this.totalSelectedUTXOAmount)+" Sats")):this.advancedTitle="Advanced Options":(this.advancedTitle="Advanced Options",this.dataService.getRecommendedFeeRates().pipe((0,M.Q)(this.unSubs[3])).subscribe({next:o=>{this.recommendedFee=o},error:o=>{this.logger.error(o)}}))}onUTXOSelectionChange(i){this.selUTXOs.length&&this.selUTXOs.length>0?(this.totalSelectedUTXOAmount=this.selUTXOs?.reduce((o,r)=>o+(r.amount_msat||0)/1e3,0),this.flgUseAllBalance&&this.onUTXOAllBalanceChange()):(this.totalSelectedUTXOAmount=0,this.fundingAmount=null,this.flgUseAllBalance=!1)}onUTXOAllBalanceChange(){this.fundingAmount=this.flgUseAllBalance?this.totalSelectedUTXOAmount:null}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||this.flgMinConf&&!this.minConfValue||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate||"customperkb"===this.selFeeRate&&this.recommendedFee.minimumFee>this.customFeeRate)return!0;const i={peerId:this.peer&&this.peer.id?this.peer.id:this.selectedPubkey,amount:this.flgUseAllBalance?"all":this.fundingAmount.toString(),announce:!this.isPrivate,minconf:this.flgMinConf?this.minConfValue:null};i.feeRate="customperkb"===this.selFeeRate&&!this.flgMinConf&&this.customFeeRate?1e3*this.customFeeRate+"perkb":this.selFeeRate,this.selUTXOs.length&&this.selUTXOs.length>0&&(i.utxos=[],this.selUTXOs.forEach(o=>i.utxos.push(o.txid+":"+o.output))),this.store.dispatch((0,xA.vL)({payload:i}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(UA.CP),A.rXU(UA.Vh),A.rXU(_.il),A.rXU(QA.En),A.rXU(Ee.QX),A.rXU(Q.h),A.rXU(Rt.u))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-open-channel"]],viewQuery:function(o,r){if(1&o&&A.GBs(vl,7),2&o){let nA;A.mGM(nA=A.lsd())&&(r.form=nA.first)}},standalone:!1,decls:75,vars:42,consts:[["form","ngForm"],["amount","ngModel"],["blocks","ngModel"],["peerDetailsExpansionBlock",""],["auto","matAutocomplete"],["custFeeRate","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","1","required","","name","amount",3,"ngModelChange","step","min","max","disabled","ngModel"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","25","fxLayoutAlign","center start"],["fxLayout","column","fxLayoutAlign","center start","tabindex","2","color","primary","name","isPrivate",3,"ngModelChange","ngModel"],["expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxFlex","64","fxLayout","row","fxLayoutAlign","space-between center"],["fxLayout","column","fxLayoutAlign","start center",3,"ngClass"],["tabindex","4",3,"valueChange","disabled","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","58","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","32","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","tabindex","5","color","primary","name","flgMinConf","fxLayoutAlign","stretch start",3,"ngModelChange","change","ngClass","ngModel"],["fxLayout","column","fxFlex","93"],["matInput","","type","number","name","blocks","tabindex","8",3,"ngModelChange","step","min","required","disabled","ngModel"],["fxLayout","column","fxFlex","54","fxLayoutAlign","start end"],["tabindex","6","multiple","",3,"valueChange","selectionChange","value"],["fxFlex","41","fxLayout","row","fxLayoutAlign","start center"],["tabindex","7","color","primary","name","flgUseAllBalance",3,"ngModelChange","change","disabled","ngModel"],["matTooltip","Use selected UTXOs balance as the amount to be sent. Final amount sent will be less the mining fee.","matTooltipPosition","before",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","9"],["type","text","aria-label","Peers","matInput","","tabindex","1","required","",3,"change","formControl","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["fxLayout","column","fxFlex","58","fxLayoutAlign","end center"],["matInput","","type","number","name","custFeeRate","tabindex","4",3,"ngModelChange","step","min","required","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",6)(1,"div",7)(2,"mat-card-header",8)(3,"div",9)(4,"span",10),A.EFF(5),A.k0s()(),A.j41(6,"button",11),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",12)(9,"form",13,0),A.bIt("submit",function(){return E.eBV(nA),E.Njj(r.onOpenChannel())})("reset",function(){return E.eBV(nA),E.Njj(r.resetData())}),A.j41(11,"div",14),A.DNE(12,sa,10,8,"mat-form-field",15),A.k0s(),A.DNE(13,Nl,1,0,"ng-container",16),A.j41(14,"div",14)(15,"div",17)(16,"mat-form-field",18)(17,"mat-label"),A.EFF(18,"Amount"),A.k0s(),A.j41(19,"input",19,1),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.fundingAmount,Ae)||(r.fundingAmount=Ae),E.Njj(Ae)}),A.k0s(),A.j41(21,"mat-hint"),A.EFF(22),A.nI1(23,"number"),A.k0s(),A.j41(24,"span",20),A.EFF(25," Sats "),A.k0s(),A.DNE(26,Tl,2,0,"mat-error",21)(27,Pl,2,1,"mat-error",21),A.k0s(),A.j41(28,"div",22)(29,"mat-slide-toggle",23),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.isPrivate,Ae)||(r.isPrivate=Ae),E.Njj(Ae)}),A.EFF(30,"Private Channel"),A.k0s()()(),A.j41(31,"mat-expansion-panel",24),A.bIt("closed",function(){return E.eBV(nA),E.Njj(r.onAdvancedPanelToggle(!0))})("opened",function(){return E.eBV(nA),E.Njj(r.onAdvancedPanelToggle(!1))}),A.j41(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),A.EFF(35),A.k0s()()(),A.j41(36,"div",25),A.DNE(37,Ul,16,6,"div",26),A.j41(38,"div",27)(39,"div",28)(40,"mat-form-field",29)(41,"mat-label"),A.EFF(42,"Fee Rate"),A.k0s(),A.j41(43,"mat-select",30),A.mxI("valueChange",function(Ae){return E.eBV(nA),A.DH7(r.selFeeRate,Ae)||(r.selFeeRate=Ae),E.Njj(Ae)}),A.DNE(44,ra,2,2,"mat-option",31),A.k0s()(),A.DNE(45,oa,9,7,"mat-form-field",32),A.k0s(),A.j41(46,"div",33)(47,"mat-checkbox",34),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.flgMinConf,Ae)||(r.flgMinConf=Ae),E.Njj(Ae)}),A.bIt("change",function(){return E.eBV(nA),E.Njj(r.flgMinConf?r.selFeeRate=null:r.minConfValue=null)}),A.k0s(),A.j41(48,"mat-form-field",35)(49,"mat-label"),A.EFF(50,"Min Confirmation Blocks"),A.k0s(),A.j41(51,"input",36,2),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.minConfValue,Ae)||(r.minConfValue=Ae),E.Njj(Ae)}),A.k0s(),A.DNE(53,la,2,0,"mat-error",21),A.k0s()()(),A.j41(54,"mat-form-field",37)(55,"mat-label"),A.EFF(56,"Coin Selection"),A.k0s(),A.j41(57,"mat-select",38),A.mxI("valueChange",function(Ae){return E.eBV(nA),A.DH7(r.selUTXOs,Ae)||(r.selUTXOs=Ae),E.Njj(Ae)}),A.bIt("selectionChange",function(Ae){return E.eBV(nA),E.Njj(r.onUTXOSelectionChange(Ae))}),A.j41(58,"mat-select-trigger"),A.EFF(59),A.nI1(60,"number"),A.k0s(),A.DNE(61,Ll,3,5,"mat-option",31),A.k0s()(),A.j41(62,"div",39)(63,"mat-slide-toggle",40),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.flgUseAllBalance,Ae)||(r.flgUseAllBalance=Ae),E.Njj(Ae)}),A.bIt("change",function(){return E.eBV(nA),E.Njj(r.onUTXOAllBalanceChange())}),A.EFF(64," Use selected UTXOs balance "),A.k0s(),A.j41(65,"mat-icon",41),A.EFF(66,"info_outline"),A.k0s()()()()(),A.DNE(67,kl,3,2,"div",42),A.j41(68,"div",43)(69,"button",44),A.EFF(70,"Clear Fields"),A.k0s(),A.j41(71,"button",45),A.EFF(72,"Open Channel"),A.k0s()()()()()(),A.DNE(73,v0,1,1,"ng-template",null,3,A.C5r)}if(2&o){const nA=A.sdS(20),WA=A.sdS(74);A.R7$(5),A.JRh(r.alertTitle),A.R7$(7),A.Y8G("ngIf",!r.peer&&r.peers&&r.peers.length>0),A.R7$(),A.Y8G("ngTemplateOutlet",WA),A.R7$(6),A.Y8G("step",1e3)("min",1)("max",r.totalBalance)("disabled",r.flgUseAllBalance),A.R50("ngModel",r.fundingAmount),A.R7$(3),A.Lme("Remaining: ",A.bMT(23,35,r.totalBalance-(r.fundingAmount?r.fundingAmount:0)),"",r.flgUseAllBalance?". Amount replaced by UTXO balance":""),A.R7$(4),A.Y8G("ngIf",(null==nA.errors?null:nA.errors.required)||!r.fundingAmount),A.R7$(),A.Y8G("ngIf",null==nA.errors?null:nA.errors.max),A.R7$(2),A.R50("ngModel",r.isPrivate),A.R7$(6),A.JRh(r.advancedTitle),A.R7$(2),A.Y8G("ngIf",r.recommendedFee.minimumFee),A.R7$(3),A.Y8G("ngClass","customperkb"!==r.selFeeRate||r.flgMinConf?"flex-100":"flex-40"),A.R7$(3),A.Y8G("disabled",r.flgMinConf),A.R50("value",r.selFeeRate),A.R7$(),A.Y8G("ngForOf",r.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===r.selFeeRate&&!r.flgMinConf),A.R7$(2),A.Y8G("ngClass",A.l_i(39,nr,r.screenSize===r.screenSizeEnum.XS||r.screenSize===r.screenSizeEnum.SM,r.screenSize===r.screenSizeEnum.MD||r.screenSize===r.screenSizeEnum.LG||r.screenSize===r.screenSizeEnum.XL)),A.R50("ngModel",r.flgMinConf),A.R7$(4),A.Y8G("step",1)("min",0)("required",r.flgMinConf)("disabled",!r.flgMinConf),A.R50("ngModel",r.minConfValue),A.R7$(2),A.Y8G("ngIf",r.flgMinConf&&!r.minConfValue),A.R7$(4),A.R50("value",r.selUTXOs),A.R7$(2),A.Lme("",A.bMT(60,37,r.totalSelectedUTXOAmount)," Sats (",r.selUTXOs.length>1?r.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.R7$(2),A.Y8G("ngForOf",r.utxos),A.R7$(2),A.Y8G("disabled",r.selUTXOs.length<1),A.R50("ngModel",r.flgUseAllBalance),A.R7$(4),A.Y8G("ngIf",""!==r.channelConnectionError)}},dependencies:[Ee.YU,Ee.Sq,Ee.bT,Ee.T3,gA.qT,gA.me,gA.Q0,gA.BC,gA.cb,gA.YS,gA.VZ,gA.zX,gA.vS,gA.cV,gA.l_,y.aY,JA.$z,lA.m2,lA.MM,Cn.So,Qi.GK,Qi.Z2,Qi.WN,G.An,Be.fg,KA.rl,KA.nJ,KA.MV,KA.TL,KA.yw,$t.q,D.DJ,D.sA,D.UI,rA.PW,eA.VO,eA.$2,ae.wT,we.sG,ie.oV,Yl.$3,Yl.pN,kA.N,ti.z,CA.V,Ee.Jj,Ee.QX],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]}))}return n(),l})();function jl(n,l){if(1&n&&(A.j41(0,"span",7),A.EFF(1,"Open"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.openChannels))}}function Ol(n,l){if(1&n&&(A.j41(0,"span",7),A.EFF(1,"Pending/Inactive"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.pendingChannels))}}function Jl(n,l){if(1&n&&(A.j41(0,"span",7),A.EFF(1,"Active HTLCs"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.activeHTLCs))}}let _l=(()=>{var n;class l{constructor(i,o,r,nA){this.logger=i,this.store=o,this.commonService=r,this.router=nA,this.openChannels=0,this.pendingChannels=0,this.activeHTLCs=0,this.information={},this.peers=[],this.utxos=[],this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending/Inactive"},{link:"activehtlcs",name:"Active HTLCs"}],this.activeLink=0,this.unSubs=[new B.B,new B.B,new B.B,new B.B,new B.B,new B.B]}ngOnInit(){this.activeLink=this.links.findIndex(i=>i.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,M.Q)(this.unSubs[0]),(0,Z.p)(i=>i instanceof Pt.gx)).subscribe({next:i=>{this.activeLink=this.links.findIndex(o=>o.link===i.urlAfterRedirects.substring(i.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(U.kQ).pipe((0,M.Q)(this.unSubs[1]),(0,Y.E)(this.store.select(x._c))).subscribe(([i,o])=>{this.selNode=o,this.information=i.information,this.totalBalance=i.balance.totalBalance||0,this.logger.info(i)}),this.store.select(U.os).pipe((0,M.Q)(this.unSubs[2])).subscribe(i=>{this.peers=i.peers}),this.store.select(U.Al).pipe((0,M.Q)(this.unSubs[3])).subscribe(i=>{this.utxos=this.commonService.sortAscByKey(i.utxos?.filter(o=>"confirmed"===o.status),"value")}),this.store.select(U.BM).pipe((0,M.Q)(this.unSubs[4])).subscribe(i=>{this.openChannels=i.activeChannels.length||0,this.pendingChannels=i.pendingChannels.length+i.inactiveChannels.length||0;const o=[...i.activeChannels,...i.pendingChannels,...i.inactiveChannels];this.activeHTLCs=o?.reduce((r,nA)=>r+(nA.htlcs&&nA.htlcs.length>0?nA.htlcs.length:0),0),this.logger.info(i)})}onOpenChannel(){this.store.dispatch((0,w.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance,utxos:this.utxos},component:xr}}}))}onSelectedTabChange(i){this.router.navigateByUrl("/cln/connections/channels/"+this.links[i.index].link)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(_.il),A.rXU(Q.h),A.rXU(Pt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channels-tables"]],standalone:!1,decls:14,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,r){1&o&&(A.j41(0,"div",0)(1,"div",1)(2,"button",2),A.bIt("click",function(){return r.onOpenChannel()}),A.EFF(3,"Open Channel"),A.k0s()(),A.j41(4,"div",3)(5,"mat-tab-group",4),A.mxI("selectedIndexChange",function(WA){return A.DH7(r.activeLink,WA)||(r.activeLink=WA),WA}),A.bIt("selectedTabChange",function(WA){return r.onSelectedTabChange(WA)}),A.j41(6,"mat-tab"),A.DNE(7,jl,2,2,"ng-template",5),A.k0s(),A.j41(8,"mat-tab"),A.DNE(9,Ol,2,2,"ng-template",5),A.k0s(),A.j41(10,"mat-tab"),A.DNE(11,Jl,2,2,"ng-template",5),A.k0s()(),A.j41(12,"div",6),A.nrm(13,"router-outlet"),A.k0s()()()),2&o&&(A.R7$(5),A.R50("selectedIndex",r.activeLink))},dependencies:[JA.$z,D.DJ,D.sA,D.UI,kr.k,$.ES,$.mq,$.T8,Pt.n3],encapsulation:2}))}return n(),l})();const Vl=n=>({"xs-scroll-y":n}),Wl=(n,l)=>({"mt-2":n,"mt-1":l});function ca(n,l){if(1&n&&(A.j41(0,"div")(1,"div",10)(2,"div",11)(3,"h4",12),A.EFF(4,"Receivable (Sats)"),A.k0s(),A.j41(5,"span",19),A.EFF(6),A.nI1(7,"number"),A.k0s()(),A.j41(8,"div",11)(9,"h4",12),A.EFF(10,"Spendable (Sats)"),A.k0s(),A.j41(11,"span",19),A.EFF(12),A.nI1(13,"number"),A.k0s()()(),A.nrm(14,"mat-divider",15),A.j41(15,"div",10)(16,"div",11)(17,"h4",12),A.EFF(18,"Their Reserve (Sats)"),A.k0s(),A.j41(19,"span",19),A.EFF(20),A.nI1(21,"number"),A.k0s()(),A.j41(22,"div",11)(23,"h4",12),A.EFF(24,"Our Reserve (Sats)"),A.k0s(),A.j41(25,"span",19),A.EFF(26),A.nI1(27,"number"),A.k0s()()(),A.nrm(28,"mat-divider",15),A.k0s()),2&n){const e=A.XpG();A.R7$(6),A.JRh(A.i5U(7,4,e.channel.receivable_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(13,7,e.channel.spendable_msat/1e3,"1.0-0")),A.R7$(8),A.JRh(A.i5U(21,10,e.channel.their_reserve_msat/1e3,"1.0-2")),A.R7$(6),A.JRh(A.i5U(27,13,e.channel.our_reserve_msat/1e3,"1.0-2"))}}function Ba(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Show Advanced"),A.k0s())}function Kl(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Hide Advanced"),A.k0s())}function Xl(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",27),A.bIt("copied",function(o){E.eBV(e);const r=A.XpG();return E.Njj(r.onCopyChanID(o))}),A.EFF(1,"Copy Short Channel ID"),A.k0s()}if(2&n){const e=A.XpG();A.Y8G("payload",e.channel.short_channel_id)}}function Zl(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",28),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onClose())}),A.EFF(1,"OK"),A.k0s()}}let Gn=(()=>{var n;class l{constructor(i,o,r,nA,WA,Ae){this.dialogRef=i,this.data=o,this.logger=r,this.commonService=nA,this.snackBar=WA,this.router=Ae,this.faReceipt=d.Mf0,this.faUpRightFromSquare=d.k02,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=c.f7}ngOnInit(){this.channel=this.data.channel,this.showCopy=!!this.data.showCopy,this.selNode=this.data.selNode,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(i){this.snackBar.open("Short channel ID "+i+" copied."),this.logger.info("Copied Text: "+i)}onGoToLink(i,o){this.router.navigateByUrl("/cln/graph/lookups",{state:{lookupType:i,lookupValue:o}}),this.onClose()}onExplorerClicked(){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.channel.funding_txid,"_blank")}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(UA.CP),A.rXU(UA.Vh),A.rXU(N.gP),A.rXU(Q.h),A.rXU(bs.UG),A.rXU(Pt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-information"]],standalone:!1,decls:91,vars:39,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],["tabindex","4","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"foreground-secondary-text"],[1,"my-1"],["tabindex","5","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["fxFlex","33"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","34"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","6",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","7","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","8","type","button",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","7","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","8","type","button",3,"click"]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4),A.nrm(4,"fa-icon",5),A.j41(5,"span",6),A.EFF(6,"Channel Information"),A.k0s()(),A.j41(7,"button",7),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onClose())}),A.EFF(8,"X"),A.k0s()(),A.j41(9,"mat-card-content",8)(10,"div",9)(11,"div",10)(12,"div",11)(13,"h4",12),A.EFF(14,"Short Channel ID"),A.k0s(),A.j41(15,"span",13),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onGoToLink("1",r.channel.short_channel_id))}),A.EFF(16),A.k0s()(),A.j41(17,"div",11)(18,"h4",12),A.EFF(19,"Peer Alias"),A.k0s(),A.j41(20,"span",14),A.EFF(21),A.k0s()()(),A.nrm(22,"mat-divider",15),A.j41(23,"div",10)(24,"div",2)(25,"h4",12),A.EFF(26,"Channel ID"),A.k0s(),A.j41(27,"span",14),A.EFF(28),A.k0s()()(),A.nrm(29,"mat-divider",15),A.j41(30,"div",10)(31,"div",2)(32,"h4",12),A.EFF(33,"Peer Public Key"),A.k0s(),A.j41(34,"span",16),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onGoToLink("0",r.channel.peer_id))}),A.EFF(35),A.k0s()()(),A.nrm(36,"mat-divider",15),A.j41(37,"div",10)(38,"div",2)(39,"h4",12),A.EFF(40,"Funding Transaction ID"),A.k0s(),A.j41(41,"span",14),A.EFF(42),A.j41(43,"fa-icon",17),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onExplorerClicked())}),A.k0s()()()(),A.nrm(44,"mat-divider",15),A.j41(45,"div",10)(46,"div",18)(47,"h4",12),A.EFF(48,"State"),A.k0s(),A.j41(49,"span",19),A.EFF(50),A.nI1(51,"camelcaseWithReplace"),A.k0s()(),A.j41(52,"div",18)(53,"h4",12),A.EFF(54,"Connected"),A.k0s(),A.j41(55,"span",19),A.EFF(56),A.k0s()(),A.j41(57,"div",20)(58,"h4",12),A.EFF(59,"Private"),A.k0s(),A.j41(60,"span",19),A.EFF(61),A.k0s()()(),A.nrm(62,"mat-divider",15),A.j41(63,"div",10)(64,"div",18)(65,"h4",12),A.EFF(66,"Remote Balance (Sats)"),A.k0s(),A.j41(67,"span",19),A.EFF(68),A.nI1(69,"number"),A.k0s()(),A.j41(70,"div",18)(71,"h4",12),A.EFF(72,"Local Balance (Sats)"),A.k0s(),A.j41(73,"span",19),A.EFF(74),A.nI1(75,"number"),A.k0s()(),A.j41(76,"div",20)(77,"h4",12),A.EFF(78,"Total (Sats)"),A.k0s(),A.j41(79,"span",19),A.EFF(80),A.nI1(81,"number"),A.k0s()()(),A.nrm(82,"mat-divider",15),A.DNE(83,ca,29,16,"div",21),A.j41(84,"div",22)(85,"button",23),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onShowAdvanced())}),A.DNE(86,Ba,2,0,"p",24)(87,Kl,2,0,"ng-template",null,0,A.C5r),A.k0s(),A.DNE(89,Xl,2,1,"button",25)(90,Zl,2,0,"button",26),A.k0s()()()()()}if(2&o){const nA=A.sdS(88);A.R7$(4),A.Y8G("icon",r.faReceipt),A.R7$(5),A.Y8G("ngClass",A.eq3(34,Vl,r.screenSize===r.screenSizeEnum.XS)),A.R7$(7),A.SpI(" ",r.channel.short_channel_id," "),A.R7$(5),A.JRh(r.channel.alias),A.R7$(7),A.JRh(r.channel.channel_id),A.R7$(7),A.SpI(" ",r.channel.peer_id," "),A.R7$(7),A.SpI(" ",r.channel.funding_txid," "),A.R7$(),A.Y8G("matTooltip",A.mNQ("Link to "+r.selNode.settings.blockExplorerUrl))("icon",r.faUpRightFromSquare),A.R7$(7),A.JRh(A.i5U(51,22,null==r.channel?null:r.channel.state,"_")),A.R7$(6),A.JRh(r.channel.peer_connected?"Yes":"No"),A.R7$(5),A.JRh(r.channel.private?"Yes":"No"),A.R7$(7),A.JRh(A.i5U(69,25,r.channel.to_them_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(75,28,r.channel.to_us_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(81,31,r.channel.total_msat/1e3,"1.0-0")),A.R7$(3),A.Y8G("ngIf",r.showAdvanced),A.R7$(),A.Y8G("ngClass",A.l_i(36,Wl,!r.showAdvanced,r.showAdvanced)),A.R7$(2),A.Y8G("ngIf",!r.showAdvanced)("ngIfElse",nA),A.R7$(3),A.Y8G("ngIf",r.showCopy),A.R7$(),A.Y8G("ngIf",!r.showCopy)}},dependencies:[Ee.YU,Ee.bT,y.aY,JA.$z,lA.m2,lA.MM,$t.q,D.DJ,D.sA,D.UI,rA.PW,ie.oV,Xi.U,kA.N,Ee.QX,TA.VD],encapsulation:2}))}return n(),l})();const ql=()=>["all"],ga=n=>({"error-border":n}),$l=()=>["no_peer"],Us=n=>({width:n}),A0=n=>({"display-none":n});function fa(n,l){if(1&n&&(A.j41(0,"mat-option",39),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function e0(n,l){1&n&&A.nrm(0,"mat-progress-bar",40)}function t0(n,l){1&n&&A.nrm(0,"th",41)}function ua(n,l){if(1&n&&(A.j41(0,"span",45),A.nrm(1,"fa-icon",46),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faEyeSlash)}}function n0(n,l){if(1&n&&(A.j41(0,"span",47),A.nrm(1,"fa-icon",46),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faEye)}}function i0(n,l){if(1&n&&(A.j41(0,"td",42),A.DNE(1,ua,2,1,"span",43)(2,n0,2,1,"span",44),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",e.private),A.R7$(),A.Y8G("ngIf",!e.private)}}function qi(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Short Channel ID"),A.k0s())}function s0(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Us,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.short_channel_id)}}function r0(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Alias"),A.k0s())}function a0(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Us,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.alias)}}function o0(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"ID"),A.k0s())}function Ea(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Us,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.id)}}function yr(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Channel ID"),A.k0s())}function ui(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Us,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.channel_id)}}function l0(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Funding Transaction ID"),A.k0s())}function c0(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Us,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.funding_txid)}}function B0(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Connected"),A.k0s())}function g0(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null!=e&&e.connected?"Connected":"Disconnected")}}function b0(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Local Reserve (Sats)"),A.k0s())}function f0(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.our_reserve_msat)/1e3,"1.0-0")," ")}}function u0(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Remote Reserve (Sats)"),A.k0s())}function E0(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.their_reserve_msat)/1e3,"1.0-0")," ")}}function h0(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Total (Sats)"),A.k0s())}function ha(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.total_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function w0(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Spendable (Sats)"),A.k0s())}function oA(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.spendable_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function a(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Local Balance (Sats)"),A.k0s())}function h(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.to_us_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function F(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Remote Balance (Sats)"),A.k0s())}function k(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.to_them_msat)/1e3,(null==e?null:e.to_them_msat)<1e3?"1.0-4":"1.0-0")," ")}}function X(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Balance Score"),A.k0s())}function O(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",53)(2,"mat-hint",54),A.EFF(3),A.nI1(4,"number"),A.k0s()(),A.nrm(5,"mat-progress-bar",55),A.k0s()),2&n){const e=l.$implicit;A.R7$(3),A.JRh(A.bMT(4,3,e.balancedness||0)),A.R7$(2),A.Y8G("value",A.mNQ(e.to_us_msat&&e.to_us_msat>0?e.to_us_msat/(e.to_us_msat+e.to_them_msat)*100:0))}}function IA(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",56)(1,"div",57)(2,"mat-select",58),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",59),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onChannelUpdate("all"))}),A.EFF(5,"Update Fee Policy"),A.k0s(),A.j41(6,"mat-option",59),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onDownloadCSV())}),A.EFF(7,"Download CSV"),A.k0s()()()()}}function LA(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",60)(1,"div",57)(2,"mat-select",61),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",59),A.bIt("click",function(o){const r=E.eBV(e).$implicit,nA=A.XpG();return E.Njj(nA.onChannelClick(r,o))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",59),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.onViewRemotePolicy(o))}),A.EFF(7,"View Remote Fee"),A.k0s(),A.j41(8,"mat-option",59),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.onChannelUpdate(o))}),A.EFF(9,"Update Fee Policy"),A.k0s(),A.j41(10,"mat-option",59),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.onChannelClose(o))}),A.EFF(11,"Close Channel"),A.k0s()()()()}}function ZA(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No peers connected. Add a peer in order to open a channel."),A.k0s())}function oe(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No channel available."),A.k0s())}function re(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting channels..."),A.k0s())}function ke(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function at(n,l){if(1&n&&(A.j41(0,"td",62),A.DNE(1,ZA,2,0,"p",63)(2,oe,2,0,"p",63)(3,re,2,0,"p",63)(4,ke,2,1,"p",63),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",e.numPeers<1&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",e.numPeers>0&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function Bt(n,l){if(1&n&&A.nrm(0,"tr",64),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,A0,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function Nt(n,l){1&n&&A.nrm(0,"tr",65)}function dn(n,l){1&n&&A.nrm(0,"tr",66)}let vt=(()=>{var n;class l{constructor(i,o,r,nA,WA,Ae){this.logger=i,this.store=o,this.rtlEffects=r,this.clnEffects=nA,this.commonService=WA,this.camelCaseWithReplace=Ae,this.faEye=d.pS3,this.faEyeSlash=d.k6j,this.nodePageDefs=c.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open_channels",recordsPerPage:c.md,sortBy:"alias",sortOrder:c.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new L.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=c.G,this.selFilter="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(U.GX).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.information=i.information,this.numPeers=i.numPeers,this.totalBalance=i.balance.totalBalance||0,this.logger.info(i)}),this.store.select(U.av).pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("private"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(U.BM).pipe((0,M.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=i.activeChannels,this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(i)}),this.store.select(x._c).pipe((0,M.Q)(this.unSubs[3])).subscribe(i=>{this.selNode=i})}ngAfterViewInit(){this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onViewRemotePolicy(i){this.store.dispatch((0,xA.ij)({payload:{uiMessage:c.MZ.GET_REMOTE_POLICY,shortChannelID:i.short_channel_id||"",showError:!0}})),this.clnEffects.setLookupCL.pipe((0,Gt.s)(1)).subscribe(o=>{if(o.channels&&0===o.channels.length)return!1;let r={};r=o.channels[0].source!==this.information.id?o.channels[0]:o.channels[1];const nA=[[{key:"base_fee_millisatoshi",value:r.base_fee_millisatoshi,title:"Base Fees (mSats)",width:34,type:c.UN.NUMBER},{key:"fee_per_millionth",value:r.fee_per_millionth,title:"Fee/Millionth",width:33,type:c.UN.NUMBER},{key:"delay",value:r.delay,title:"Delay",width:33,type:c.UN.NUMBER}]],WA="Remote policy for Channel: "+(i.alias||i.short_channel_id?i.alias&&i.short_channel_id?i.alias+" ("+i.short_channel_id+")":i.alias?i.alias:i.short_channel_id:i.channel_id);setTimeout(()=>{this.store.dispatch((0,w.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:WA,message:nA}}}))},0)})}onChannelUpdate(i){"all"!==i&&"ONCHAIN"===i.state||("all"===i?(this.store.dispatch((0,w.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update All",message:[],titleMessage:"Update fee policy for all channels",flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:c.UN.NUMBER,inputValue:1e3,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:c.UN.NUMBER,inputValue:1,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,M.Q)(this.unSubs[4])).subscribe(o=>{o&&this.store.dispatch((0,xA.fy)({payload:{feebase:o[0].inputValue,feeppm:o[1].inputValue,id:"all"}}))})):(this.store.dispatch((0,w.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:[],titleMessage:"Update fee policy for Channel: "+(i.alias||i.short_channel_id?i.alias&&i.short_channel_id?i.alias+" ("+i.short_channel_id+")":i.alias?i.alias:i.short_channel_id:i.channel_id),flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:c.UN.NUMBER,inputValue:""===i.fee_base_msat?0:i.fee_base_msat,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:c.UN.NUMBER,inputValue:i.fee_proportional_millionths,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,M.Q)(this.unSubs[5])).subscribe(nA=>{nA&&this.store.dispatch((0,xA.fy)({payload:{feebase:nA[0].inputValue,feeppm:nA[1].inputValue,id:i.channel_id}}))})),this.applyFilter())}percentHintFunction(i){return(i/1e4).toString()+"%"}onChannelClose(i){this.store.dispatch((0,w.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Close Channel",titleMessage:"Closing channel: "+(i.alias||i.short_channel_id?i.alias&&i.short_channel_id?i.alias+" ("+i.short_channel_id+")":i.alias?i.alias:i.short_channel_id:i.channel_id),noBtnText:"Cancel",yesBtnText:"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,M.Q)(this.unSubs[6])).subscribe(o=>{o&&this.store.dispatch((0,xA.w0)({payload:{id:i.id||"",channelId:i.channel_id||"",force:!1}}))})}onChannelClick(i,o){this.store.dispatch((0,w.xO)({payload:{data:{channel:i,selNode:this.selNode,showCopy:!0,component:Gn}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column||"","_"):this.commonService.titleCase(i)}setFilterPredicate(){this.channels.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.peer_connected?"connected":"disconnected")+(i.channel_id?i.channel_id.toLowerCase():"")+(i.short_channel_id?i.short_channel_id.toLowerCase():"")+(i.id?i.id.toLowerCase():"")+(i.alias?i.alias.toLowerCase():"")+(i.private?"private":"public")+(i.state?i.state.toLowerCase():"")+(i.funding_txid?i.funding_txid.toLowerCase():"")+(i.to_them_msat?i.to_them_msat/1e3:"")+(i.to_us_msat?i.to_us_msat/1e3:"")+(i.total_msat?i.total_msat/1e3:"")+(i.their_reserve_msat?i.their_reserve_msat/1e3:"")+(i.our_reserve_msat?i.our_reserve_msat/1e3:"")+(i.spendable_msat?i.spendable_msat/1e3:"");break;case"private":r=i?.private?"private":"public";break;case"connected":r=i?.peer_connected?"connected":"disconnected";break;case"msatoshi_total":r=((i.total_msat||0)/1e3).toString()||"";break;case"spendable_msatoshi":r=((i.spendable_msat||0)/1e3).toString()||"";break;case"msatoshi_to_us":r=((i.to_us_msat||0)/1e3).toString()||"";break;case"msatoshi_to_them":r=((i.to_them_msat||0)/1e3).toString()||"";break;case"our_channel_reserve_satoshis":r=((i.our_reserve_msat||0)/1e3).toString()||"";break;case"their_channel_reserve_satoshis":r=((i.their_reserve_msat||0)/1e3).toString()||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"connected"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadChannelsTable(i){this.channels=new L.I6([...i]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,r)=>{switch(r){case"msatoshi_total":return o.total_msat;case"spendable_msatoshi":return o.spendable_msat;case"msatoshi_to_us":return o.to_us_msat;case"msatoshi_to_them":return o.to_them_msat;case"our_channel_reserve_satoshis":return o.our_reserve_msat;case"their_channel_reserve_satoshis":return o.their_reserve_msat;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Open-channels")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(_.il),A.rXU(H.H),A.rXU(Fr.i),A.rXU(Q.h),A.rXU(TA.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-open-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(BA.B4,5),A.GBs(b.iy,5)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.sort=nA.first),A.mGM(nA=A.lsd())&&(r.paginator=nA.first)}},standalone:!1,features:[A.Jv_([{provide:eA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:b.xX,useValue:(0,c.on)("Channels")}])],decls:69,vars:18,consts:[["table",""],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"table-container","w-100",3,"perfectScrollbar"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","short_channel_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","alias"],["matColumnDef","id"],["matColumnDef","channel_id"],["matColumnDef","funding_txid"],["matColumnDef","connected"],["matColumnDef","our_channel_reserve_satoshis"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","their_channel_reserve_satoshis"],["matColumnDef","msatoshi_total"],["matColumnDef","spendable_msatoshi"],["matColumnDef","msatoshi_to_us"],["matColumnDef","msatoshi_to_them"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","5",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",1)(1,"div",2),A.nrm(2,"div",3),A.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",6),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.selFilterBy,Ae)||(r.selFilterBy=Ae),E.Njj(Ae)}),A.bIt("selectionChange",function(){return E.eBV(nA),r.selFilter="",E.Njj(r.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,fa,2,2,"mat-option",7),A.k0s()()(),A.j41(10,"mat-form-field",5)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",8),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.selFilter,Ae)||(r.selFilter=Ae),E.Njj(Ae)}),A.bIt("input",function(){return E.eBV(nA),E.Njj(r.applyFilter())})("keyup",function(){return E.eBV(nA),E.Njj(r.applyFilter())}),A.k0s()()()(),A.DNE(14,e0,1,0,"mat-progress-bar",9),A.j41(15,"div",10)(16,"table",11,0),A.qex(18,12),A.DNE(19,t0,1,0,"th",13)(20,i0,3,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,qi,2,0,"th",16)(23,s0,4,4,"td",14),A.bVm(),A.qex(24,17),A.DNE(25,r0,2,0,"th",16)(26,a0,4,4,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,o0,2,0,"th",16)(29,Ea,4,4,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,yr,2,0,"th",16)(32,ui,4,4,"td",14),A.bVm(),A.qex(33,20),A.DNE(34,l0,2,0,"th",16)(35,c0,4,4,"td",14),A.bVm(),A.qex(36,21),A.DNE(37,B0,2,0,"th",16)(38,g0,2,1,"td",14),A.bVm(),A.qex(39,22),A.DNE(40,b0,2,0,"th",23)(41,f0,4,4,"td",14),A.bVm(),A.qex(42,24),A.DNE(43,u0,2,0,"th",23)(44,E0,4,4,"td",14),A.bVm(),A.qex(45,25),A.DNE(46,h0,2,0,"th",23)(47,ha,4,4,"td",14),A.bVm(),A.qex(48,26),A.DNE(49,w0,2,0,"th",23)(50,oA,4,4,"td",14),A.bVm(),A.qex(51,27),A.DNE(52,a,2,0,"th",23)(53,h,4,4,"td",14),A.bVm(),A.qex(54,28),A.DNE(55,F,2,0,"th",23)(56,k,4,4,"td",14),A.bVm(),A.qex(57,29),A.DNE(58,X,2,0,"th",16)(59,O,6,5,"td",14),A.bVm(),A.qex(60,30),A.DNE(61,IA,8,0,"th",31)(62,LA,12,0,"td",32),A.bVm(),A.qex(63,33),A.DNE(64,at,5,4,"td",34),A.bVm(),A.DNE(65,Bt,1,3,"tr",35)(66,Nt,1,0,"tr",36)(67,dn,1,0,"tr",37),A.k0s()(),A.nrm(68,"mat-paginator",38),A.k0s()}2&o&&(A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,ql).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(),A.Y8G("ngIf",r.apiCallStatus.status===r.apiCallStatusEnum.INITIATED),A.R7$(2),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.channels)("ngClass",A.eq3(15,ga,""!==r.errorMessage)),A.R7$(49),A.Y8G("matFooterRowDef",A.lJ4(17,$l)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("hidePageSize",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[Ee.YU,Ee.Sq,Ee.bT,Ee.B3,gA.me,gA.BC,gA.vS,y.aY,Be.fg,KA.rl,KA.nJ,KA.MV,q.HM,D.DJ,D.sA,D.UI,rA.PW,rA.eI,eA.VO,eA.$2,ae.wT,BA.B4,BA.aE,L.Zl,L.tL,L.ji,L.cC,L.YV,L.iL,L.Zq,L.xW,L.KS,L.$R,L.Qo,L.YZ,L.NB,L.iF,ie.oV,b.iy,wA.ZF,wA.Ld,Ee.QX],styles:[".mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]}))}return n(),l})();const _t=["outputIdx"];function Ue(n,l){if(1&n&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",15),A.j41(2,"span"),A.EFF(3,"Change output balance "),A.j41(4,"strong"),A.EFF(5),A.nI1(6,"number"),A.k0s(),A.EFF(7," (Sats) may be insufficient for fee bumping, depending on the prevailing fee rates."),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(4),A.JRh(A.bMT(6,2,e.dustOutputValue))}}function wt(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Output Index required."),A.k0s())}function Tt(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Invalid index value."),A.k0s())}function yn(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fees is required."),A.k0s())}function Ln(n,l){if(1&n&&(A.j41(0,"div",28),A.nrm(1,"fa-icon",15),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(2),A.JRh(e.bumpFeeError)}}let ln=(()=>{var n;class l{set outputIndx(i){i&&(this.outputIdx=i)}constructor(i,o,r,nA,WA,Ae){this.actions=i,this.dialogRef=o,this.data=r,this.store=nA,this.logger=WA,this.dataService=Ae,this.faUpRightFromSquare=d.k02,this.newAddress="",this.fees=null,this.outputIndex=null,this.faCopy=d.jPR,this.faInfoCircle=d.iW_,this.faExclamationTriangle=d.zpE,this.bumpFeeError="",this.flgShowDustWarning=!1,this.dustOutputValue=0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new B.B,new B.B,new B.B,new B.B]}ngOnInit(){this.bumpFeeChannel=this.data.channel,this.logger.info(this.bumpFeeChannel),this.store.select(x._c).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i,this.logger.info(this.selNode)}),this.dataService.getRecommendedFeeRates().pipe((0,M.Q)(this.unSubs[1])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}}),this.dataService.getBlockExplorerTransaction(this.bumpFeeChannel.funding_txid).pipe((0,M.Q)(this.unSubs[2])).subscribe({next:i=>{this.outputIndex=0===i.vout.findIndex(o=>o.value===this.bumpFeeChannel.to_us_msat)?1:0,this.dustOutputValue=i.vout[this.outputIndex].value,this.flgShowDustWarning=this.dustOutputValue<1e3},error:i=>{this.logger.error(i)}})}onBumpFee(){if(!this.outputIndex&&0!==this.outputIndex||!this.fees)return!0;this.bumpFeeError="",this.store.dispatch((0,xA.XT)({payload:c.Ld[0]})),this.actions.pipe((0,Z.p)(i=>i.type===c.TC.SET_NEW_ADDRESS_CLN),(0,Gt.s)(1)).subscribe(i=>{this.store.dispatch((0,xA.aB)({payload:{destination:i.payload,satoshi:"all",feerate:(1e3*+(this.fees||0)).toString()+"perkb",utxos:[this.bumpFeeChannel.funding_txid+":"+(this.outputIndex||"").toString()]}}))}),this.actions.pipe((0,Z.p)(i=>i.type===c.TC.SET_CHANNEL_TRANSACTION_RES_CLN),(0,Gt.s)(1)).subscribe(i=>{this.store.dispatch((0,w.UI)({payload:"Successfully bumped the fee. Use the block explorer to verify transaction."})),this.dialogRef.close()}),this.actions.pipe((0,Z.p)(i=>i.type===c.TC.UPDATE_API_CALL_STATUS_CLN),(0,M.Q)(this.unSubs[3])).subscribe(i=>{i.payload.status===c.wn.ERROR&&("SetChannelTransaction"===i.payload.action||"GenerateNewAddress"===i.payload.action)&&(this.logger.error(i.payload.message),this.bumpFeeError=i.payload.message)})}onExplorerClicked(i){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+i,"_blank")}resetData(){this.bumpFeeError="",this.fees=null,this.outputIndex=null,this.flgShowDustWarning=!1,this.outputIdx.control.setErrors(null)}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(QA.En),A.rXU(UA.CP),A.rXU(UA.Vh),A.rXU(_.il),A.rXU(N.gP),A.rXU(Rt.u))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-bump-fee"]],viewQuery:function(o,r){if(1&o&&A.GBs(_t,5),2&o){let nA;A.mGM(nA=A.lsd())&&(r.outputIndx=nA.first)}},standalone:!1,decls:47,vars:20,consts:[["outputIndx","ngModel"],["fee","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","49"],["autoFocus","","matInput","","type","number","tabindex","1","required","","name","outputIndx",3,"ngModelChange","step","min","ngModel"],[4,"ngIf"],["matInput","","type","number","name","fees","required","","tabindex","4",3,"ngModelChange","step","min","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","tabindex","5","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit","tabindex","6",3,"click"],["fxFlex","100",1,"alert","alert-warn"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",2)(1,"div",3)(2,"mat-card-header",4)(3,"div",5)(4,"span",6),A.EFF(5,"Bump Fee"),A.k0s()(),A.j41(6,"button",7),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",8)(9,"form",9)(10,"div",10)(11,"p",11),A.EFF(12),A.j41(13,"fa-icon",12),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onExplorerClicked(null==r.bumpFeeChannel?null:r.bumpFeeChannel.funding_txid))}),A.k0s()(),A.j41(14,"div",13)(15,"div",14),A.nrm(16,"fa-icon",15),A.j41(17,"span",16)(18,"div"),A.EFF(19,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(20,"div"),A.EFF(21),A.k0s(),A.j41(22,"div"),A.EFF(23),A.k0s(),A.j41(24,"div"),A.EFF(25),A.k0s()()(),A.DNE(26,Ue,8,4,"div",17),A.j41(27,"div",18)(28,"mat-form-field",19)(29,"mat-label"),A.EFF(30,"Output Index"),A.k0s(),A.j41(31,"input",20,0),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.outputIndex,Ae)||(r.outputIndex=Ae),E.Njj(Ae)}),A.k0s(),A.DNE(33,wt,2,0,"mat-error",21)(34,Tt,2,0,"mat-error",21),A.k0s(),A.j41(35,"mat-form-field",19)(36,"mat-label"),A.EFF(37,"Fees (Sats/vByte)"),A.k0s(),A.j41(38,"input",22,1),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.fees,Ae)||(r.fees=Ae),E.Njj(Ae)}),A.k0s(),A.DNE(40,yn,2,0,"mat-error",21),A.k0s()(),A.DNE(41,Ln,4,2,"div",23),A.k0s()(),A.j41(42,"div",24)(43,"button",25),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.resetData())}),A.EFF(44,"Clear"),A.k0s(),A.j41(45,"button",26),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onBumpFee())}),A.EFF(46),A.k0s()()()()()()}if(2&o){const nA=A.sdS(32);A.R7$(12),A.SpI("Bump fee for transaction id: ",null==r.bumpFeeChannel?null:r.bumpFeeChannel.funding_txid," "),A.R7$(),A.Y8G("matTooltip",A.mNQ("Link to "+r.selNode.settings.blockExplorerUrl))("icon",r.faUpRightFromSquare),A.R7$(3),A.Y8G("icon",r.faInfoCircle),A.R7$(5),A.SpI("- High: ",r.recommendedFee.fastestFee||"Unknown"),A.R7$(2),A.SpI("- Medium: ",r.recommendedFee.halfHourFee||"Unknown"),A.R7$(2),A.SpI("- Low: ",r.recommendedFee.hourFee||"Unknown"),A.R7$(),A.Y8G("ngIf",r.flgShowDustWarning),A.R7$(5),A.Y8G("step",1)("min",0),A.R50("ngModel",r.outputIndex),A.R7$(2),A.Y8G("ngIf",null==nA.errors?null:nA.errors.required),A.R7$(),A.Y8G("ngIf",null==nA.errors?null:nA.errors.pendingChannelOutputIndex),A.R7$(4),A.Y8G("step",1)("min",0),A.R50("ngModel",r.fees),A.R7$(2),A.Y8G("ngIf",!r.fees),A.R7$(),A.Y8G("ngIf",""!==r.bumpFeeError),A.R7$(5),A.JRh(""!==r.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},dependencies:[Ee.bT,gA.qT,gA.me,gA.Q0,gA.BC,gA.cb,gA.YS,gA.VZ,gA.vS,gA.cV,y.aY,JA.$z,lA.m2,lA.MM,Be.fg,KA.rl,KA.nJ,KA.TL,D.DJ,D.sA,D.UI,ie.oV,kA.N,CA.V,Ee.QX],encapsulation:2}))}return n(),l})();const qn=()=>["all"],gn=n=>({"error-border":n}),ai=()=>["no_peer"],Kn=n=>({width:n}),Xn=n=>({"display-none":n});function rs(n,l){if(1&n&&(A.j41(0,"mat-option",39),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function Ei(n,l){1&n&&A.nrm(0,"mat-progress-bar",40)}function Gi(n,l){1&n&&A.nrm(0,"th",41)}function fn(n,l){if(1&n&&(A.j41(0,"span",45),A.nrm(1,"fa-icon",46),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faEyeSlash)}}function un(n,l){if(1&n&&(A.j41(0,"span",47),A.nrm(1,"fa-icon",46),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faEye)}}function En(n,l){if(1&n&&(A.j41(0,"td",42),A.DNE(1,fn,2,1,"span",43)(2,un,2,1,"span",44),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",e.private),A.R7$(),A.Y8G("ngIf",!e.private)}}function hn(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Alias"),A.k0s())}function as(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Kn,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.alias)}}function os(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"ID"),A.k0s())}function ls(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Kn,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.id)}}function cs(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Channel ID"),A.k0s())}function Bs(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Kn,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.channel_id)}}function gs(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Funding Transaction ID"),A.k0s())}function fs(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Kn,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.funding_txid)}}function us(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Connected"),A.k0s())}function Di(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null!=e&&e.connected?"Connected":"Disconnected")}}function An(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"State"),A.k0s())}function Qn(n,l){if(1&n&&(A.j41(0,"td",51),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("ngStyle",A.eq3(2,Kn,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(),A.JRh(i.CLNChannelPendingState[null==e?null:e.state])}}function ir(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Local Reserve (Sats)"),A.k0s())}function ni(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.our_reserve_msat)/1e3,"1.0-0")," ")}}function sr(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Remote Reserve (Sats)"),A.k0s())}function Es(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.their_reserve_msat)/1e3,"1.0-0")," ")}}function rr(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Total (Sats)"),A.k0s())}function Gs(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.total_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function ar(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Spendable (Sats)"),A.k0s())}function Ls(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.spendable_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function wa(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Local Balance (Sats)"),A.k0s())}function Ca(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.to_us_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function hi(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Remote Balance (Sats)"),A.k0s())}function or(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.to_them_msat)/1e3,(null==e?null:e.to_them_msat)<1e3?"1.0-4":"1.0-0")," ")}}function _0(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",54)(1,"div",55)(2,"mat-select",56),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",57),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function V0(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",57),A.bIt("click",function(){E.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return E.Njj(r.onChannelClose(o))}),A.EFF(1,"Close Channel"),A.k0s()}}function W0(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",57),A.bIt("click",function(){E.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return E.Njj(r.onBumpFee(o))}),A.EFF(1,"Bump Fee"),A.k0s()}}function K0(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",58)(1,"div",55)(2,"mat-select",59),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",57),A.bIt("click",function(o){const r=E.eBV(e).$implicit,nA=A.XpG();return E.Njj(nA.onChannelClick(r,o))}),A.EFF(5,"View Info"),A.k0s(),A.DNE(6,V0,2,0,"mat-option",60)(7,W0,2,0,"mat-option",60),A.k0s()()()}if(2&n){const e=l.$implicit;A.R7$(6),A.Y8G("ngIf","CHANNELD_SHUTTING_DOWN"===e.state||"CLOSINGD_SIGEXCHANGE"===e.state||!e.connected&&"CHANNELD_NORMAL"===e.state),A.R7$(),A.Y8G("ngIf","CHANNELD_AWAITING_LOCKIN"===e.state)}}function X0(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No peers connected. Add a peer in order to open a channel."),A.k0s())}function Z0(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No pending/inactive channel available."),A.k0s())}function q0(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting pending/inactive channels..."),A.k0s())}function $0(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function Ac(n,l){if(1&n&&(A.j41(0,"td",61),A.DNE(1,X0,2,0,"p",62)(2,Z0,2,0,"p",62)(3,q0,2,0,"p",62)(4,$0,2,1,"p",62),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",e.numPeers<1&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",e.numPeers>0&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function ec(n,l){if(1&n&&A.nrm(0,"tr",63),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,Xn,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function tc(n,l){1&n&&A.nrm(0,"tr",64)}function nc(n,l){1&n&&A.nrm(0,"tr",65)}let ic=(()=>{var n;class l{constructor(i,o,r,nA,WA){this.logger=i,this.store=o,this.rtlEffects=r,this.commonService=nA,this.camelCaseWithReplace=WA,this.faEye=d.pS3,this.faEyeSlash=d.k6j,this.nodePageDefs=c.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"pending_inactive_channels",recordsPerPage:c.md,sortBy:"alias",sortOrder:c.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new L.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=c.G,this.selFilter="",this.CLNChannelPendingState=c.Zb,this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new B.B,new B.B,new B.B,new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(U.GX).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.information=i.information,this.numPeers=i.numPeers,this.totalBalance=i.balance.totalBalance||0,this.logger.info(i)}),this.store.select(U.av).pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("private"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(U.BM).pipe((0,M.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=[...i.pendingChannels,...i.inactiveChannels],this.channelsData=this.channelsData.sort((o,r)=>this.CLNChannelPendingState[o.state||""]>=this.CLNChannelPendingState[r.state||""]?1:-1),this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(i)})}ngAfterViewInit(){this.channelsData&&this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onBumpFee(i){this.store.dispatch((0,w.xO)({payload:{data:{channel:i,component:ln}}}))}onChannelClick(i,o){this.store.dispatch((0,w.xO)({payload:{data:{channel:i,showCopy:!0,component:Gn}}}))}onChannelClose(i){this.store.dispatch((0,w.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Force Close Channel",titleMessage:"Force closing channel: "+(i.alias||i.short_channel_id?i.alias&&i.short_channel_id?i.alias+" ("+i.short_channel_id+")":i.alias?i.alias:i.short_channel_id:i.channel_id),noBtnText:"Cancel",yesBtnText:"Force Close"}}})),this.rtlEffects.closeConfirm.pipe((0,M.Q)(this.unSubs[3])).subscribe(o=>{o&&this.store.dispatch((0,xA.w0)({payload:{id:i.id,channelId:i.channel_id,force:!0}}))})}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column||"","_"):this.commonService.titleCase(i)}setFilterPredicate(){this.channels.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.peer_connected?"connected":"disconnected")+(i.channel_id?i.channel_id.toLowerCase():"")+(i.short_channel_id?i.short_channel_id.toLowerCase():"")+(i.id?i.id.toLowerCase():"")+(i.alias?i.alias.toLowerCase():"")+(i.private?"private":"public")+(i.state&&this.CLNChannelPendingState[i.state]?this.CLNChannelPendingState[i.state].toLowerCase():"")+(i.funding_txid?i.funding_txid.toLowerCase():"")+(i.to_us_msat?i.to_us_msat:"")+(i.to_them_msat?i.to_them_msat/1e3:"")+(i.total_msat?i.total_msat/1e3:"")+(i.their_reserve_msat?i.their_reserve_msat/1e3:"")+(i.our_reserve_msat?i.our_reserve_msat/1e3:"")+(i.spendable_msat?i.spendable_msat/1e3:"");break;case"private":r=i?.private?"private":"public";break;case"connected":r=i?.peer_connected?"connected":"disconnected";break;case"msatoshi_total":r=((i.total_msat||0)/1e3).toString()||"";break;case"spendable_msatoshi":r=((i.spendable_msat||0)/1e3).toString()||"";break;case"msatoshi_to_us":r=((i.to_us_msat||0)/1e3).toString()||"";break;case"msatoshi_to_them":r=((i.to_them_msat||0)/1e3).toString()||"";break;case"our_channel_reserve_satoshis":r=((i.our_reserve_msat||0)/1e3).toString()||"";break;case"their_channel_reserve_satoshis":r=((i.their_reserve_msat||0)/1e3).toString()||"";break;case"state":r=i?.state?this.CLNChannelPendingState[i?.state]:"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"connected"===this.selFilterBy||"state"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadChannelsTable(i){this.channels=new L.I6([...i]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,r)=>{switch(r){case"msatoshi_total":return o.total_msat;case"spendable_msatoshi":return o.spendable_msat;case"msatoshi_to_us":return o.to_us_msat;case"msatoshi_to_them":return o.to_them_msat;case"our_channel_reserve_satoshis":return o.our_reserve_msat;case"their_channel_reserve_satoshis":return o.their_reserve_msat;case"state":return this.CLNChannelPendingState[o.state];default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Pending-inactive-channels")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(_.il),A.rXU(H.H),A.rXU(Q.h),A.rXU(TA.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-pending-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(BA.B4,5),A.GBs(b.iy,5)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.sort=nA.first),A.mGM(nA=A.lsd())&&(r.paginator=nA.first)}},standalone:!1,features:[A.Jv_([{provide:eA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:b.xX,useValue:(0,c.on)("Channels")}])],decls:66,vars:18,consts:[["table",""],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"table-container","w-100",3,"perfectScrollbar"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","id"],["matColumnDef","channel_id"],["matColumnDef","funding_txid"],["matColumnDef","connected"],["matColumnDef","state"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","our_channel_reserve_satoshis"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","their_channel_reserve_satoshis"],["matColumnDef","msatoshi_total"],["matColumnDef","spendable_msatoshi"],["matColumnDef","msatoshi_to_us"],["matColumnDef","msatoshi_to_them"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","5",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-cell","",3,"ngStyle"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",1)(1,"div",2),A.nrm(2,"div",3),A.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",6),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.selFilterBy,Ae)||(r.selFilterBy=Ae),E.Njj(Ae)}),A.bIt("selectionChange",function(){return E.eBV(nA),r.selFilter="",E.Njj(r.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,rs,2,2,"mat-option",7),A.k0s()()(),A.j41(10,"mat-form-field",5)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",8),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.selFilter,Ae)||(r.selFilter=Ae),E.Njj(Ae)}),A.bIt("input",function(){return E.eBV(nA),E.Njj(r.applyFilter())})("keyup",function(){return E.eBV(nA),E.Njj(r.applyFilter())}),A.k0s()()()(),A.DNE(14,Ei,1,0,"mat-progress-bar",9),A.j41(15,"div",10)(16,"table",11,0),A.qex(18,12),A.DNE(19,Gi,1,0,"th",13)(20,En,3,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,hn,2,0,"th",16)(23,as,4,4,"td",14),A.bVm(),A.qex(24,17),A.DNE(25,os,2,0,"th",16)(26,ls,4,4,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,cs,2,0,"th",16)(29,Bs,4,4,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,gs,2,0,"th",16)(32,fs,4,4,"td",14),A.bVm(),A.qex(33,20),A.DNE(34,us,2,0,"th",16)(35,Di,2,1,"td",14),A.bVm(),A.qex(36,21),A.DNE(37,An,2,0,"th",16)(38,Qn,2,4,"td",22),A.bVm(),A.qex(39,23),A.DNE(40,ir,2,0,"th",24)(41,ni,4,4,"td",14),A.bVm(),A.qex(42,25),A.DNE(43,sr,2,0,"th",24)(44,Es,4,4,"td",14),A.bVm(),A.qex(45,26),A.DNE(46,rr,2,0,"th",24)(47,Gs,4,4,"td",14),A.bVm(),A.qex(48,27),A.DNE(49,ar,2,0,"th",24)(50,Ls,4,4,"td",14),A.bVm(),A.qex(51,28),A.DNE(52,wa,2,0,"th",24)(53,Ca,4,4,"td",14),A.bVm(),A.qex(54,29),A.DNE(55,hi,2,0,"th",24)(56,or,4,4,"td",14),A.bVm(),A.qex(57,30),A.DNE(58,_0,6,0,"th",31)(59,K0,8,2,"td",32),A.bVm(),A.qex(60,33),A.DNE(61,Ac,5,4,"td",34),A.bVm(),A.DNE(62,ec,1,3,"tr",35)(63,tc,1,0,"tr",36)(64,nc,1,0,"tr",37),A.k0s()(),A.nrm(65,"mat-paginator",38),A.k0s()}2&o&&(A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,qn).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(),A.Y8G("ngIf",r.apiCallStatus.status===r.apiCallStatusEnum.INITIATED),A.R7$(2),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.channels)("ngClass",A.eq3(15,gn,""!==r.errorMessage)),A.R7$(46),A.Y8G("matFooterRowDef",A.lJ4(17,ai)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("hidePageSize",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[Ee.YU,Ee.Sq,Ee.bT,Ee.B3,gA.me,gA.BC,gA.vS,y.aY,Be.fg,KA.rl,KA.nJ,q.HM,D.DJ,D.sA,D.UI,rA.PW,rA.eI,eA.VO,eA.$2,ae.wT,BA.B4,BA.aE,L.Zl,L.tL,L.ji,L.cC,L.YV,L.iL,L.Zq,L.xW,L.KS,L.$R,L.Qo,L.YZ,L.NB,L.iF,ie.oV,b.iy,wA.ZF,wA.Ld,Ee.QX],styles:[".mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return n(),l})();const sc=()=>["all"],rc=n=>({"error-border":n}),ac=()=>["no_peer"],R0=n=>({"mr-0":n}),C0=n=>({width:n}),oc=n=>({"display-none":n});function lc(n,l){if(1&n&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function cc(n,l){1&n&&A.nrm(0,"mat-progress-bar",35)}function Bc(n,l){1&n&&A.nrm(0,"th",36)}function gc(n,l){if(1&n&&A.nrm(0,"span",40),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,R0,e.screenSize===e.screenSizeEnum.XS))}}function fc(n,l){if(1&n&&A.nrm(0,"span",41),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,R0,e.screenSize===e.screenSizeEnum.XS))}}function uc(n,l){if(1&n&&(A.j41(0,"td",37),A.DNE(1,gc,1,3,"span",38)(2,fc,1,3,"span",39),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",null==e?null:e.connected),A.R7$(),A.Y8G("ngIf",!(null!=e&&e.connected))}}function Ec(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Alias"),A.k0s())}function hc(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,C0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.alias)}}function wc(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"ID"),A.k0s())}function Cc(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,C0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.id)}}function dc(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Network Address"),A.k0s())}function Qc(n,l){1&n&&(A.j41(0,"span"),A.EFF(1,","),A.nrm(2,"br"),A.k0s())}function mc(n,l){if(1&n&&(A.j41(0,"span",44),A.EFF(1),A.DNE(2,Qc,3,0,"span",46),A.k0s()),2&n){const e=l.$implicit,i=l.last;A.R7$(),A.JRh(e),A.R7$(),A.Y8G("ngIf",!i)}}function Mc(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",43),A.DNE(2,mc,3,2,"span",45),A.k0s()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,C0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(),A.Y8G("ngForOf",null==e?null:e.netaddr)}}function pc(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Dc(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",50),A.bIt("click",function(){E.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return E.Njj(r.onPeerDetach(o))}),A.EFF(1,"Disconnect"),A.k0s()}}function Ic(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",50),A.bIt("click",function(){E.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return E.Njj(r.onConnectPeer(o))}),A.EFF(1,"Reconnect"),A.k0s()}}function Fc(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",51)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(o){const r=E.eBV(e).$implicit,nA=A.XpG();return E.Njj(nA.onPeerClick(r,o))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",50),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.onOpenChannel(o))}),A.EFF(7,"Open Channel"),A.k0s(),A.DNE(8,Dc,2,0,"mat-option",52)(9,Ic,2,0,"mat-option",52),A.k0s()()()}if(2&n){const e=l.$implicit;A.R7$(8),A.Y8G("ngIf",e.connected),A.R7$(),A.Y8G("ngIf",!e.connected)}}function xc(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No connected peer."),A.k0s())}function yc(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting peers..."),A.k0s())}function Yc(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function vc(n,l){if(1&n&&(A.j41(0,"td",53),A.DNE(1,xc,2,0,"p",46)(2,yc,2,0,"p",46)(3,Yc,2,1,"p",46),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function bc(n,l){if(1&n&&A.nrm(0,"tr",54),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,oc,(null==e.peers?null:e.peers.data)&&(null==e.peers||null==e.peers.data?null:e.peers.data.length)>0))}}function Rc(n,l){1&n&&A.nrm(0,"tr",55)}function Sc(n,l){1&n&&A.nrm(0,"tr",56)}let Nc=(()=>{var n;class l{constructor(i,o,r,nA,WA,Ae){this.logger=i,this.store=o,this.rtlEffects=r,this.actions=nA,this.commonService=WA,this.camelCaseWithReplace=Ae,this.faUsers=d.gdJ,this.nodePageDefs=c.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:c.md,sortBy:"alias",sortOrder:c.oi.DESCENDING},this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.peers=new L.I6([]),this.utxos=[],this.information={},this.availableBalance=0,this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new B.B,new B.B,new B.B,new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(U.kQ).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.information=i.information,this.availableBalance=i.balance.totalBalance||0}),this.store.select(U.av).pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("connected"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(U.os).pipe((0,M.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=i.peers||[],this.peersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPeersTable(this.peersData),this.logger.info(i)}),this.store.select(U.Al).pipe((0,M.Q)(this.unSubs[3])).subscribe(i=>{this.utxos=this.commonService.sortAscByKey(i.utxos?.filter(o=>"confirmed"===o.status),"value")}),this.actions.pipe((0,M.Q)(this.unSubs[4]),(0,Z.p)(i=>i.type===c.TC.SET_PEERS_CLN)).subscribe(i=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(i,o){this.store.dispatch((0,w.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:i.id,goToName:"Graph lookup",goToLink:"/cln/graph/lookups",showQRName:"Public Key",showQRField:i.id,message:[[{key:"id",value:i.id,title:"Public Key",width:100}],[{key:"netaddr",value:i.netaddr,title:"Address",width:100}],[{key:"alias",value:i.alias,title:"Alias",width:50},{key:"connected",value:i.connected?"True":"False",title:"Connected",width:50}]]}}}))}onConnectPeer(i){this.store.dispatch((0,w.xO)({payload:{data:{message:{peer:i.id?i:null,information:this.information,balance:this.availableBalance},component:Mr}}}))}onOpenChannel(i){this.store.dispatch((0,w.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:i,information:this.information,balance:this.availableBalance,utxos:this.utxos},newlyAdded:!1,component:xr}}}))}onPeerDetach(i){this.store.dispatch((0,w.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(i.alias?i.alias:i.id),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,M.Q)(this.unSubs[5])).subscribe(r=>{r&&this.store.dispatch((0,xA.ed)({payload:{id:i.id,force:!1}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.peers.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=JSON.stringify(i).toLowerCase();break;case"connected":r=i?.connected?"connected":"disconnected";break;case"netaddr":r=i.netaddr?i.netaddr.reduce((nA,WA)=>nA+WA," "):"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"connected"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadPeersTable(i){this.peers=new L.I6([...i]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(o,r)=>{if("netaddr"===r){if(o.netaddr&&o.netaddr[0]){const nA=o.netaddr[0].toString().split(".");return nA[0]?+nA[0]:o.netaddr[0]}return""}return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null},this.peers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(_.il),A.rXU(H.H),A.rXU(QA.En),A.rXU(Q.h),A.rXU(TA.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-peers"]],viewQuery:function(o,r){if(1&o&&(A.GBs(BA.B4,5),A.GBs(b.iy,5)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.sort=nA.first),A.mGM(nA=A.lsd())&&(r.paginator=nA.first)}},standalone:!1,features:[A.Jv_([{provide:eA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:b.xX,useValue:(0,c.on)("Peers")}])],decls:47,vars:19,consts:[["peersForm","ngForm"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-x-hidden","overflow-y-hidden",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","connected"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Connected",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","id"],["matColumnDef","netaddr"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Connected"],["mat-cell",""],["class","dot green","matTooltip","Connected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Disconnected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Connected","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Disconnected","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["class","ellipsis-child",4,"ngFor","ngForOf"],[4,"ngIf"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",2)(1,"form",3,0)(3,"button",4),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onConnectPeer({}))}),A.EFF(4,"Add Peer"),A.k0s()(),A.j41(5,"div",5)(6,"div",6)(7,"div",7),A.nrm(8,"fa-icon",8),A.j41(9,"span",9),A.EFF(10,"Connected Peers"),A.k0s()(),A.j41(11,"div",10)(12,"mat-form-field",11)(13,"mat-label"),A.EFF(14,"Filter By"),A.k0s(),A.j41(15,"mat-select",12),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.selFilterBy,Ae)||(r.selFilterBy=Ae),E.Njj(Ae)}),A.bIt("selectionChange",function(){return E.eBV(nA),r.selFilter="",E.Njj(r.applyFilter())}),A.j41(16,"perfect-scrollbar"),A.DNE(17,lc,2,2,"mat-option",13),A.k0s()()(),A.j41(18,"mat-form-field",11)(19,"mat-label"),A.EFF(20,"Filter"),A.k0s(),A.j41(21,"input",14),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.selFilter,Ae)||(r.selFilter=Ae),E.Njj(Ae)}),A.bIt("input",function(){return E.eBV(nA),E.Njj(r.applyFilter())})("keyup",function(){return E.eBV(nA),E.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(22,"div",15),A.DNE(23,cc,1,0,"mat-progress-bar",16),A.j41(24,"table",17,1),A.qex(26,18),A.DNE(27,Bc,1,0,"th",19)(28,uc,3,2,"td",20),A.bVm(),A.qex(29,21),A.DNE(30,Ec,2,0,"th",22)(31,hc,4,4,"td",20),A.bVm(),A.qex(32,23),A.DNE(33,wc,2,0,"th",22)(34,Cc,4,4,"td",20),A.bVm(),A.qex(35,24),A.DNE(36,dc,2,0,"th",22)(37,Mc,3,4,"td",20),A.bVm(),A.qex(38,25),A.DNE(39,pc,6,0,"th",26)(40,Fc,10,2,"td",27),A.bVm(),A.qex(41,28),A.DNE(42,vc,4,3,"td",29),A.bVm(),A.DNE(43,bc,1,3,"tr",30)(44,Rc,1,0,"tr",31)(45,Sc,1,0,"tr",32),A.k0s()(),A.nrm(46,"mat-paginator",33),A.k0s()()}2&o&&(A.R7$(8),A.Y8G("icon",r.faUsers),A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,sc).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(2),A.Y8G("ngIf",r.apiCallStatus.status===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.peers)("ngClass",A.eq3(16,rc,""!==r.errorMessage)),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(18,ac)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("hidePageSize",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[Ee.YU,Ee.Sq,Ee.bT,Ee.B3,gA.qT,gA.me,gA.BC,gA.cb,gA.vS,gA.cV,y.aY,JA.$z,Be.fg,KA.rl,KA.nJ,q.HM,D.DJ,D.sA,D.UI,rA.PW,rA.eI,eA.VO,eA.$2,ae.wT,BA.B4,BA.aE,L.Zl,L.tL,L.ji,L.cC,L.YV,L.iL,L.Zq,L.xW,L.KS,L.$R,L.Qo,L.YZ,L.NB,L.iF,ie.oV,b.iy,wA.ZF,wA.Ld],styles:[".mat-column-connected[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return n(),l})();const Tc=["queryRoutesForm"],Pc=n=>({"overflow-auto error-border":n,"overflow-auto":!0}),S0=n=>({width:n});function Uc(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Destination pubkey is required."),A.k0s())}function Gc(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function Lc(n,l){1&n&&A.nrm(0,"mat-progress-bar",36)}function zc(n,l){1&n&&(A.j41(0,"th",37),A.EFF(1,"ID"),A.k0s())}function kc(n,l){if(1&n&&(A.j41(0,"td",38)(1,"div",39)(2,"span",40),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,S0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.id)}}function Hc(n,l){1&n&&(A.j41(0,"th",37),A.EFF(1,"Alias"),A.k0s())}function jc(n,l){if(1&n&&(A.j41(0,"td",38)(1,"div",39)(2,"span",40),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,S0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.alias)}}function Oc(n,l){1&n&&(A.j41(0,"th",37),A.EFF(1,"Channel"),A.k0s())}function Jc(n,l){if(1&n&&(A.j41(0,"td",38),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.channel)}}function _c(n,l){1&n&&(A.j41(0,"th",37),A.EFF(1,"Direction"),A.k0s())}function Vc(n,l){if(1&n&&(A.j41(0,"td",38),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.direction)}}function Wc(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Delay"),A.k0s())}function Kc(n,l){if(1&n&&(A.j41(0,"td",38)(1,"span",42),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI("",A.bMT(3,1,null==e?null:e.delay)," ")}}function Xc(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Amount (Sats)"),A.k0s())}function Zc(n,l){if(1&n&&(A.j41(0,"td",38)(1,"span",42),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,(null==e?null:e.amount_msat)/1e3))}}function qc(n,l){1&n&&(A.j41(0,"th",43)(1,"div",44),A.EFF(2,"Actions"),A.k0s()())}function $c(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",45)(1,"button",46),A.bIt("click",function(o){const r=E.eBV(e).$implicit,nA=A.XpG();return E.Njj(nA.onHopClick(r,o))}),A.EFF(2,"View Info"),A.k0s()()}}function AB(n,l){1&n&&A.nrm(0,"tr",47)}function eB(n,l){1&n&&A.nrm(0,"tr",48)}let tB=(()=>{var n;class l{constructor(i,o,r){this.store=i,this.clnEffects=o,this.commonService=r,this.PAGE_ID="graph_lookup",this.tableSetting={tableId:"query_routes",recordsPerPage:c.md,sortBy:"id",sortOrder:c.oi.ASCENDING},this.destinationPubkey="",this.amount=null,this.qrHops=new L.I6([]),this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=d.TBz,this.faExclamationTriangle=d.zpE,this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new B.B,new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(U.av).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions")}),this.clnEffects.setQueryRoutesCL.pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{this.qrHops.data=[],i.route&&i.route.length&&i.route.length>0?(this.flgLoading[0]=!1,this.qrHops=new L.I6([...i.route])):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(o,r)=>o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.flgLoading[0]=!0,this.store.dispatch((0,xA.T4)({payload:{destPubkey:this.destinationPubkey,amount:1e3*this.amount}}))}resetData(){this.destinationPubkey="",this.amount=null,this.flgLoading[0]=!1,this.qrHops.data=[],this.form.resetForm()}onHopClick(i,o){this.store.dispatch((0,w.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"id",value:i.id,title:"ID",width:100,type:c.UN.STRING}],[{key:"channel",value:i.channel,title:"Channel",width:50,type:c.UN.STRING},{key:"alias",value:i.alias,title:"Peer Alias",width:50,type:c.UN.STRING}],[{key:"amount_msat",value:i.amount_msat,title:"Amount (mSat)",width:34,type:c.UN.NUMBER},{key:"direction",value:i.direction,title:"Direction",width:33,type:c.UN.STRING},{key:"delay",value:i.delay,title:"Delay",width:33,type:c.UN.NUMBER}]]}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(_.il),A.rXU(Fr.i),A.rXU(Q.h))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-query-routes"]],viewQuery:function(o,r){if(1&o&&(A.GBs(BA.B4,5),A.GBs(Tc,7)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.sort=nA.first),A.mGM(nA=A.lsd())&&(r.form=nA.first)}},standalone:!1,decls:55,vars:17,consts:[["queryRoutesForm","ngForm"],["destPubkey","ngModel"],["table",""],["fxLayout","column","fxFlex","100",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","destinationPubkey","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"ngModelChange","step","min","ngModel"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","row","fxLayoutAlign","start center",1,"page-sub-title-container","mt-2","mb-1"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"table-container","mb-6",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","channel"],["matColumnDef","direction"],["matColumnDef","delay"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",3)(1,"form",4,0),A.bIt("ngSubmit",function(){E.eBV(nA);const Ae=A.sdS(2);return E.Njj(Ae.form.valid&&r.onQueryRoutes())}),A.j41(3,"div",5),A.nrm(4,"fa-icon",6),A.j41(5,"span"),A.EFF(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),A.k0s()(),A.j41(7,"mat-form-field",7)(8,"mat-label"),A.EFF(9,"Destination Pubkey"),A.k0s(),A.j41(10,"input",8,1),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.destinationPubkey,Ae)||(r.destinationPubkey=Ae),E.Njj(Ae)}),A.k0s(),A.DNE(12,Uc,2,0,"mat-error",9),A.k0s(),A.j41(13,"mat-form-field",10)(14,"mat-label"),A.EFF(15,"Amount (Sats)"),A.k0s(),A.j41(16,"input",11),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.amount,Ae)||(r.amount=Ae),E.Njj(Ae)}),A.k0s(),A.DNE(17,Gc,2,0,"mat-error",9),A.k0s(),A.j41(18,"div",12)(19,"button",13),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.resetData())}),A.EFF(20,"Clear"),A.k0s(),A.j41(21,"button",14),A.EFF(22,"Query Route"),A.k0s()()(),A.j41(23,"div",15)(24,"div",16),A.nrm(25,"fa-icon",17),A.j41(26,"span",18),A.EFF(27,"Transaction Route"),A.k0s()()(),A.j41(28,"div",19),A.DNE(29,Lc,1,0,"mat-progress-bar",20),A.j41(30,"table",21,2),A.qex(32,22),A.DNE(33,zc,2,0,"th",23)(34,kc,4,4,"td",24),A.bVm(),A.qex(35,25),A.DNE(36,Hc,2,0,"th",23)(37,jc,4,4,"td",24),A.bVm(),A.qex(38,26),A.DNE(39,Oc,2,0,"th",23)(40,Jc,2,1,"td",24),A.bVm(),A.qex(41,27),A.DNE(42,_c,2,0,"th",23)(43,Vc,2,1,"td",24),A.bVm(),A.qex(44,28),A.DNE(45,Wc,2,0,"th",29)(46,Kc,4,3,"td",24),A.bVm(),A.qex(47,30),A.DNE(48,Xc,2,0,"th",29)(49,Zc,4,3,"td",24),A.bVm(),A.qex(50,31),A.DNE(51,qc,3,0,"th",32)(52,$c,3,0,"td",33),A.bVm(),A.DNE(53,AB,1,0,"tr",34)(54,eB,1,0,"tr",35),A.k0s()()()}2&o&&(A.R7$(4),A.Y8G("icon",r.faExclamationTriangle),A.R7$(6),A.R50("ngModel",r.destinationPubkey),A.R7$(2),A.Y8G("ngIf",!r.destinationPubkey),A.R7$(4),A.Y8G("step",1e3)("min",0),A.R50("ngModel",r.amount),A.R7$(),A.Y8G("ngIf",!r.amount),A.R7$(8),A.Y8G("icon",r.faRoute),A.R7$(4),A.Y8G("ngIf",!0===r.flgLoading[0]),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.qrHops)("ngClass",A.eq3(15,Pc,"error"===r.flgLoading[0])),A.R7$(23),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns))},dependencies:[Ee.YU,Ee.bT,Ee.B3,gA.qT,gA.me,gA.Q0,gA.BC,gA.cb,gA.YS,gA.VZ,gA.vS,gA.cV,y.aY,JA.$z,Be.fg,KA.rl,KA.nJ,KA.TL,q.HM,D.DJ,D.sA,D.UI,rA.PW,rA.eI,BA.B4,BA.aE,L.Zl,L.tL,L.ji,L.cC,L.YV,L.iL,L.KS,L.$R,L.YZ,L.NB,wA.Ld,CA.V,Ee.QX],encapsulation:2}))}return n(),l})();function nB(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Message is required."),A.k0s())}let iB=(()=>{var n;class l{constructor(i,o,r){this.dataService=i,this.snackBar=o,this.logger=r,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new B.B,new B.B]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.signedMessage=this.message,this.signature=i.zbase})}onMessageChange(){this.signedMessage!==this.message&&(this.signature="")}onCopyField(i){this.snackBar.open("Signature copied."),this.logger.info("Copied Text: "+i)}resetData(){this.message="",this.signature="",this.signedMessage=""}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(Rt.u),A.rXU(bs.UG),A.rXU(N.gP))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-sign"]],standalone:!1,decls:22,vars:4,consts:[["form","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],[1,"my-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","row","fxLayoutAlign","start center",1,"signature-box","bordered-box","read-only"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","4","rtlClipboard","","type","button",3,"copied","payload"]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",1)(1,"form",2,0)(3,"mat-form-field",3)(4,"mat-label"),A.EFF(5,"Message to sign"),A.k0s(),A.j41(6,"textarea",4),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.message,Ae)||(r.message=Ae),E.Njj(Ae)}),A.bIt("keyup",function(){return E.eBV(nA),E.Njj(r.onMessageChange())}),A.k0s(),A.DNE(7,nB,2,0,"mat-error",5),A.k0s(),A.j41(8,"div",6)(9,"button",7),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.resetData())}),A.EFF(10,"Clear Field"),A.k0s(),A.j41(11,"button",8),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onSign())}),A.EFF(12,"Sign"),A.k0s()(),A.nrm(13,"mat-divider",9),A.j41(14,"div",10)(15,"p"),A.EFF(16,"Generated Signature"),A.k0s()(),A.j41(17,"div",11),A.EFF(18),A.k0s(),A.j41(19,"div",12)(20,"button",13),A.bIt("copied",function(Ae){return E.eBV(nA),E.Njj(r.onCopyField(Ae))}),A.EFF(21,"Copy Signature"),A.k0s()()()()}2&o&&(A.R7$(6),A.R50("ngModel",r.message),A.R7$(),A.Y8G("ngIf",!r.message),A.R7$(11),A.JRh(r.signature),A.R7$(2),A.Y8G("payload",r.signature))},dependencies:[Ee.bT,gA.qT,gA.me,gA.BC,gA.cb,gA.YS,gA.vS,gA.cV,JA.$z,Be.fg,KA.rl,KA.nJ,KA.TL,$t.q,D.DJ,D.sA,D.UI,Xi.U,kA.N],styles:[".signature-box[_ngcontent-%COMP%]{padding:1rem}"]}))}return n(),l})();function sB(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Message is required."),A.k0s())}function rB(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Signature is required."),A.k0s())}function aB(n,l){1&n&&(A.j41(0,"p",13)(1,"mat-icon",14),A.EFF(2,"close"),A.k0s(),A.EFF(3,"Verification failed, please check message and signature"),A.k0s())}function oB(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Pubkey Used"),A.k0s())}function lB(n,l){if(1&n&&(A.j41(0,"div",20)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(2),A.JRh(null==e.verifyRes?null:e.verifyRes.pubkey)}}function cB(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",21)(1,"button",22),A.bIt("copied",function(o){E.eBV(e);const r=A.XpG(2);return E.Njj(r.onCopyField(o))}),A.EFF(2,"Copy Pubkey"),A.k0s()()}if(2&n){const e=A.XpG(2);A.R7$(),A.Y8G("payload",null==e.verifyRes?null:e.verifyRes.pubkey)}}function BB(n,l){if(1&n&&(A.j41(0,"div",15),A.nrm(1,"mat-divider",16),A.j41(2,"div",17),A.DNE(3,oB,2,0,"p",6),A.k0s(),A.DNE(4,lB,3,1,"div",18)(5,cB,3,1,"div",19),A.k0s()),2&n){const e=A.XpG();A.R7$(3),A.Y8G("ngIf",e.verifyRes.verified),A.R7$(),A.Y8G("ngIf",e.verifyRes.verified),A.R7$(),A.Y8G("ngIf",e.verifyRes.verified)}}let gB=(()=>{var n;class l{constructor(i,o,r){this.dataService=i,this.snackBar=o,this.logger=r,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",verified:null},this.unSubs=[new B.B,new B.B]}onVerify(){if(!this.message||""===this.message||!this.signature||""===this.signature)return!0;this.dataService.verifyMessage(this.message,this.signature).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.verifyRes=i,this.showVerifyStatus=!0,this.verifiedMessage=this.message,this.verifiedSignature=this.signature})}onChange(){(this.verifiedMessage!==this.message||this.verifiedSignature!==this.signature)&&(this.showVerifyStatus=!1,this.verifyRes={pubkey:"",verified:null})}resetData(){this.message="",this.signature="",this.verifyRes=null,this.showVerifyStatus=!1}onCopyField(i){this.snackBar.open("Pubkey copied."),this.logger.info("Copied Text: "+i)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(Rt.u),A.rXU(bs.UG),A.rXU(N.gP))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-verify"]],standalone:!1,decls:21,vars:6,consts:[["form","ngForm"],["sign","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["matInput","","name","signature","tabindex","2","required","",3,"ngModelChange","keyup","ngModel"],["fxFlex","100","class","color-warn","fxLayoutAlign","start center",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],[1,"my-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start","class","bordered-box read-only padding-gap",4,"ngIf"],["fxLayout","row","class","mt-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"bordered-box","read-only","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","5","rtlClipboard","","type","button",3,"copied","payload"]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",2)(1,"form",3,0)(3,"mat-form-field",4)(4,"mat-label"),A.EFF(5,"Message to verify"),A.k0s(),A.j41(6,"textarea",5),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.message,Ae)||(r.message=Ae),E.Njj(Ae)}),A.bIt("keyup",function(){return E.eBV(nA),E.Njj(r.onChange())}),A.k0s(),A.DNE(7,sB,2,0,"mat-error",6),A.k0s(),A.j41(8,"mat-form-field",4)(9,"mat-label"),A.EFF(10,"Signature provided"),A.k0s(),A.j41(11,"input",7,1),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.signature,Ae)||(r.signature=Ae),E.Njj(Ae)}),A.bIt("keyup",function(){return E.eBV(nA),E.Njj(r.onChange())}),A.k0s(),A.DNE(13,rB,2,0,"mat-error",6),A.k0s(),A.DNE(14,aB,4,0,"p",8),A.j41(15,"div",9)(16,"button",10),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.resetData())}),A.EFF(17,"Clear Fields"),A.k0s(),A.j41(18,"button",11),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onVerify())}),A.EFF(19,"Verify"),A.k0s()(),A.DNE(20,BB,6,3,"div",12),A.k0s()()}2&o&&(A.R7$(6),A.R50("ngModel",r.message),A.R7$(),A.Y8G("ngIf",!r.message),A.R7$(4),A.R50("ngModel",r.signature),A.R7$(2),A.Y8G("ngIf",!r.signature),A.R7$(),A.Y8G("ngIf",r.showVerifyStatus&&!r.verifyRes.verified),A.R7$(6),A.Y8G("ngIf",r.showVerifyStatus&&r.verifyRes.verified))},dependencies:[Ee.bT,gA.qT,gA.me,gA.BC,gA.cb,gA.YS,gA.vS,gA.cV,JA.$z,G.An,Be.fg,KA.rl,KA.nJ,KA.TL,$t.q,D.DJ,D.sA,D.UI,Xi.U,kA.N],encapsulation:2}))}return n(),l})();const fB=()=>["all"],uB=()=>["no_event"],d0=n=>({width:n}),EB=n=>({"display-none":n});function hB(n,l){if(1&n&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function wB(n,l){if(1&n&&(A.j41(0,"mat-option",14),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function CB(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",7),A.nrm(1,"div",8),A.j41(2,"div",9)(3,"mat-form-field",10)(4,"mat-label"),A.EFF(5,"Filter By"),A.k0s(),A.j41(6,"mat-select",11),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.selFilterBy,o)||(r.selFilterBy=o),E.Njj(o)}),A.bIt("selectionChange",function(){E.eBV(e);const o=A.XpG();return o.selFilter="",E.Njj(o.applyFilter())}),A.j41(7,"perfect-scrollbar"),A.DNE(8,wB,2,2,"mat-option",12),A.k0s()()(),A.j41(9,"mat-form-field",10)(10,"mat-label"),A.EFF(11,"Filter"),A.k0s(),A.j41(12,"input",13),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.selFilter,o)||(r.selFilter=o),E.Njj(o)}),A.bIt("input",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.applyFilter())})("keyup",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.applyFilter())}),A.k0s()()()()}if(2&n){const e=A.XpG();A.R7$(6),A.R50("ngModel",e.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(3,fB).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter)}}function dB(n,l){1&n&&A.nrm(0,"mat-progress-bar",39)}function QB(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Received Time"),A.k0s())}function mB(n,l){if(1&n&&(A.j41(0,"td",41),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.received_time),"dd/MMM/y HH:mm"))}}function MB(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Resolved Time"),A.k0s())}function pB(n,l){if(1&n&&(A.j41(0,"td",41),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.resolved_time),"dd/MMM/y HH:mm"))}}function DB(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"In Channel ID"),A.k0s())}function IB(n,l){if(1&n&&(A.j41(0,"td",41),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.in_channel)}}function FB(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"In Channel"),A.k0s())}function xB(n,l){if(1&n&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,d0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.in_channel_alias)}}function yB(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Out Channel ID"),A.k0s())}function YB(n,l){if(1&n&&(A.j41(0,"td",41),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.out_channel)}}function vB(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Out Channel"),A.k0s())}function bB(n,l){if(1&n&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,d0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.out_channel_alias)}}function RB(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Payment Hash"),A.k0s())}function SB(n,l){if(1&n&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,d0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash)}}function NB(n,l){1&n&&(A.j41(0,"th",44),A.EFF(1,"Amount In (Sats)"),A.k0s())}function TB(n,l){if(1&n&&(A.j41(0,"td",41)(1,"span",45),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.in_msat)/1e3,(null==e?null:e.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function PB(n,l){1&n&&(A.j41(0,"th",44),A.EFF(1,"Amount Out (Sats)"),A.k0s())}function UB(n,l){if(1&n&&(A.j41(0,"td",41)(1,"span",45),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.out_msat)/1e3,(null==e?null:e.out_msat)<1e3?"1.0-4":"1.0-0")," ")}}function GB(n,l){1&n&&(A.j41(0,"th",44),A.EFF(1,"Fee (mSat)"),A.k0s())}function LB(n,l){if(1&n&&(A.j41(0,"span",45),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==e?null:e.fee)," ")}}function zB(n,l){if(1&n&&(A.j41(0,"span",45),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==e?null:e.fee_msat)," ")}}function kB(n,l){if(1&n&&(A.j41(0,"td",41),A.DNE(1,LB,3,3,"span",46)(2,zB,3,3,"span",46),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",null==e?null:e.fee),A.R7$(),A.Y8G("ngIf",!(null!=e&&e.fee)&&(null==e?null:e.fee_msat))}}function HB(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(){E.eBV(e);const o=A.XpG(2);return E.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function jB(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",51)(1,"button",52),A.bIt("click",function(o){const r=E.eBV(e).$implicit,nA=A.XpG(2);return E.Njj(nA.onForwardingEventClick(r,o))}),A.EFF(2,"View Info"),A.k0s()()}}function OB(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No forwarding history available."),A.k0s())}function JB(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting forwarding history..."),A.k0s())}function _B(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function VB(n,l){if(1&n&&(A.j41(0,"td",53),A.DNE(1,OB,2,0,"p",54)(2,JB,2,0,"p",54)(3,_B,2,1,"p",54),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function WB(n,l){if(1&n&&A.nrm(0,"tr",55),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,EB,(null==e.forwardingHistoryEvents?null:e.forwardingHistoryEvents.data)&&(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)>0))}}function KB(n,l){1&n&&A.nrm(0,"tr",56)}function XB(n,l){1&n&&A.nrm(0,"tr",57)}function ZB(n,l){if(1&n&&(A.j41(0,"div",15),A.DNE(1,dB,1,0,"mat-progress-bar",16),A.j41(2,"table",17,0),A.qex(4,18),A.DNE(5,QB,2,0,"th",19)(6,mB,3,4,"td",20),A.bVm(),A.qex(7,21),A.DNE(8,MB,2,0,"th",19)(9,pB,3,4,"td",20),A.bVm(),A.qex(10,22),A.DNE(11,DB,2,0,"th",19)(12,IB,2,1,"td",20),A.bVm(),A.qex(13,23),A.DNE(14,FB,2,0,"th",19)(15,xB,4,4,"td",20),A.bVm(),A.qex(16,24),A.DNE(17,yB,2,0,"th",19)(18,YB,2,1,"td",20),A.bVm(),A.qex(19,25),A.DNE(20,vB,2,0,"th",19)(21,bB,4,4,"td",20),A.bVm(),A.qex(22,26),A.DNE(23,RB,2,0,"th",19)(24,SB,4,4,"td",20),A.bVm(),A.qex(25,27),A.DNE(26,NB,2,0,"th",28)(27,TB,4,4,"td",20),A.bVm(),A.qex(28,29),A.DNE(29,PB,2,0,"th",28)(30,UB,4,4,"td",20),A.bVm(),A.qex(31,30),A.DNE(32,GB,2,0,"th",28)(33,kB,3,2,"td",20),A.bVm(),A.qex(34,31),A.DNE(35,HB,6,0,"th",32)(36,jB,3,0,"td",33),A.bVm(),A.qex(37,34),A.DNE(38,VB,4,3,"td",35),A.bVm(),A.DNE(39,WB,1,3,"tr",36)(40,KB,1,0,"tr",37)(41,XB,1,0,"tr",38),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.forwardingHistoryEvents),A.R7$(37),A.Y8G("matFooterRowDef",A.lJ4(7,uB)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}function qB(n,l){if(1&n&&A.nrm(0,"mat-paginator",58),2&n){const e=A.XpG();A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("hidePageSize",e.screenSize!==e.screenSizeEnum.XS)}}let N0=(()=>{var n;class l{constructor(i,o,r,nA,WA){this.logger=i,this.commonService=o,this.store=r,this.datePipe=nA,this.camelCaseWithReplace=WA,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=c.Jd,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:c.md,sortBy:"received_time",sortOrder:c.oi.DESCENDING},this.successfulEvents=[],this.displayedColumns=[],this.forwardingHistoryEvents=new L.I6([]),this.totalForwardedTransactions=0,this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(i){i.eventsData&&(this.apiCallStatus={status:c.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=i.eventsData.currentValue,this.successfulEvents=this.eventsData,this.totalForwardedTransactions=this.eventsData.length,this.paginator&&this.paginator.firstPage(),i.eventsData.firstChange||this.loadForwardingEventsTable(this.successfulEvents)),i.selFilter&&!i.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(U.av).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=i.pageSettings.find(o=>o.pageId===this.pageId)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.mu.find(o=>o.pageId===this.pageId)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.pipe((0,Gt.s)(1)).subscribe(i=>{i.cln.apisCallStatus.FetchForwardingHistoryS.status===c.wn.UN_INITIATED&&!i.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,xA.uK)({payload:{status:c.xk.SETTLED}}))}),this.store.select(U.Ie).pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.eventsData.length<=0&&i.forwardingHistory.listForwards&&(this.totalForwardedTransactions=i.forwardingHistory.totalForwards||0,this.successfulEvents=i.forwardingHistory.listForwards||[],this.successfulEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.successfulEvents),this.logger.info(i))})}ngAfterViewInit(){setTimeout(()=>{this.successfulEvents.length>0&&this.loadForwardingEventsTable(this.successfulEvents)},0)}onForwardingEventClick(i,o){const r=[[{key:"status",value:"Settled",title:"Status",width:50,type:c.UN.STRING},{key:"fee",value:i.fee_msat,title:"Fee (mSats)",width:50,type:c.UN.NUMBER}],[{key:"received_time",value:i.received_time,title:"Received Time",width:50,type:c.UN.DATE_TIME},{key:"resolved_time",value:i.resolved_time,title:"Resolved Time",width:50,type:c.UN.DATE_TIME}],[{key:"in_channel",value:i.in_channel_alias,title:"Inbound Channel",width:50,type:c.UN.STRING},{key:"out_channel",value:i.out_channel_alias,title:"Outbound Channel",width:50,type:c.UN.STRING}],[{key:"in_msatoshi",value:i.in_msat,title:"In (mSats)",width:50,type:c.UN.NUMBER},{key:"out_msatoshi",value:i.out_msat,title:"Out (mSats)",width:50,type:c.UN.NUMBER}]];i.payment_hash&&r.unshift([{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:100,type:c.UN.STRING}]),this.store.dispatch((0,w.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Event Information",message:r}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(i){const o=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.received_time?this.datePipe.transform(new Date(1e3*i.received_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(i.resolved_time?this.datePipe.transform(new Date(1e3*i.resolved_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(i.in_channel?i.in_channel.toLowerCase()+" ":"")+(i.out_channel?i.out_channel.toLowerCase()+" ":"")+(i.in_channel_alias?i.in_channel_alias.toLowerCase()+" ":"")+(i.out_channel_alias?i.out_channel_alias.toLowerCase()+" ":"")+(i.in_msat?+i.in_msat/1e3+" ":"")+(i.out_msat?+i.out_msat/1e3+" ":"")+(i.fee_msat?i.fee_msat+" ":"");break;case"received_time":case"resolved_time":r=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":r=(+(i.fee_msat||0)).toString()||"";break;case"in_msatoshi":r=(+(i.in_msat||0)/1e3).toString()||"";break;case"out_msatoshi":r=(+(i.out_msat||0)/1e3).toString()||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return r.includes(o)}}loadForwardingEventsTable(i){this.forwardingHistoryEvents=new L.I6([...i]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(o,r)=>{switch(r){case"in_msatoshi":return o.in_msat;case"out_msatoshi":return o.out_msat;case"fee":return o.fee_msat;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.forwardingHistoryEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(Q.h),A.rXU(_.il),A.rXU(Ee.vh),A.rXU(TA.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-forwarding-history"]],viewQuery:function(o,r){if(1&o&&(A.GBs(BA.B4,5),A.GBs(b.iy,5)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.sort=nA.first),A.mGM(nA=A.lsd())&&(r.paginator=nA.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},standalone:!1,features:[A.Jv_([{provide:eA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:b.xX,useValue:(0,c.on)("Events")}]),A.OA$],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","hidePageSize",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","received_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","resolved_time"],["matColumnDef","in_channel"],["matColumnDef","in_channel_alias"],["matColumnDef","out_channel"],["matColumnDef","out_channel_alias"],["matColumnDef","payment_hash"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","out_msatoshi"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",4,"ngIf"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"]],template:function(o,r){1&o&&(A.j41(0,"div",1),A.DNE(1,hB,2,1,"div",2)(2,CB,13,4,"div",3)(3,ZB,42,8,"div",4)(4,qB,1,3,"mat-paginator",5),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",""!==r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage))},dependencies:[Ee.YU,Ee.Sq,Ee.bT,Ee.B3,gA.me,gA.BC,gA.vS,JA.$z,Be.fg,KA.rl,KA.nJ,q.HM,D.DJ,D.sA,D.UI,rA.PW,rA.eI,eA.VO,eA.$2,ae.wT,BA.B4,BA.aE,L.Zl,L.tL,L.ji,L.cC,L.YV,L.iL,L.Zq,L.xW,L.KS,L.$R,L.Qo,L.YZ,L.NB,L.iF,b.iy,wA.ZF,wA.Ld,Ee.QX,Ee.vh],encapsulation:2}))}return n(),l})();const $B=()=>["all"],Ag=()=>["no_event"],T0=n=>({width:n}),eg=n=>({"display-none":n});function tg(n,l){if(1&n&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function ng(n,l){if(1&n&&(A.j41(0,"mat-option",17),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function ig(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",7)(1,"div",8),A.nrm(2,"fa-icon",9),A.j41(3,"span"),A.EFF(4,"Maximum 1,000 failed transactions only."),A.k0s()(),A.j41(5,"div",10),A.nrm(6,"div",11),A.j41(7,"div",12)(8,"mat-form-field",13)(9,"mat-label"),A.EFF(10,"Filter By"),A.k0s(),A.j41(11,"mat-select",14),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.selFilterBy,o)||(r.selFilterBy=o),E.Njj(o)}),A.bIt("selectionChange",function(){E.eBV(e);const o=A.XpG();return o.selFilter="",E.Njj(o.applyFilter())}),A.j41(12,"perfect-scrollbar"),A.DNE(13,ng,2,2,"mat-option",15),A.k0s()()(),A.j41(14,"mat-form-field",13)(15,"mat-label"),A.EFF(16,"Filter"),A.k0s(),A.j41(17,"input",16),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.selFilter,o)||(r.selFilter=o),E.Njj(o)}),A.bIt("input",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.applyFilter())})("keyup",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.applyFilter())}),A.k0s()()()()()}if(2&n){const e=A.XpG();A.R7$(2),A.Y8G("icon",e.faExclamationTriangle),A.R7$(9),A.R50("ngModel",e.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(4,$B).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter)}}function sg(n,l){1&n&&A.nrm(0,"mat-progress-bar",41)}function rg(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Received Time"),A.k0s())}function ag(n,l){if(1&n&&(A.j41(0,"td",43),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.received_time),"dd/MMM/y HH:mm"))}}function og(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Resolved Time"),A.k0s())}function lg(n,l){if(1&n&&(A.j41(0,"td",43),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.resolved_time),"dd/MMM/y HH:mm"))}}function cg(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"In Channel ID"),A.k0s())}function Bg(n,l){if(1&n&&(A.j41(0,"td",43),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.in_channel)}}function gg(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"In Channel"),A.k0s())}function fg(n,l){if(1&n&&(A.j41(0,"td",43)(1,"span",44)(2,"span",45),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,T0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.in_channel_alias)}}function ug(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Out Channel ID"),A.k0s())}function Eg(n,l){if(1&n&&(A.j41(0,"td",43),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.out_channel)}}function hg(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Out Channel"),A.k0s())}function wg(n,l){if(1&n&&(A.j41(0,"td",43)(1,"span",44)(2,"span",45),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,T0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.out_channel_alias)}}function Cg(n,l){1&n&&(A.j41(0,"th",46),A.EFF(1,"Amount In (Sats)"),A.k0s())}function dg(n,l){if(1&n&&(A.j41(0,"td",43)(1,"span",47),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.in_msat)/1e3,(null==e?null:e.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Qg(n,l){1&n&&(A.j41(0,"th",46),A.EFF(1,"Amount Out (Sats)"),A.k0s())}function mg(n,l){if(1&n&&(A.j41(0,"td",43)(1,"span",47),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.out_msat)/1e3,(null==e?null:e.out_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Mg(n,l){1&n&&(A.j41(0,"th",46),A.EFF(1,"Fee (mSat)"),A.k0s())}function pg(n,l){if(1&n&&(A.j41(0,"span",47),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==e?null:e.fee,"1.0-0")," ")}}function Dg(n,l){if(1&n&&(A.j41(0,"span",47),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==e?null:e.fee_msat,"1.0-0")," ")}}function Ig(n,l){if(1&n&&(A.j41(0,"td",43),A.DNE(1,pg,3,4,"span",48)(2,Dg,3,4,"span",48),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",null==e?null:e.fee),A.R7$(),A.Y8G("ngIf",!(null!=e&&e.fee)&&(null==e?null:e.fee_msat))}}function Fg(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",49)(1,"div",50)(2,"mat-select",51),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",52),A.bIt("click",function(){E.eBV(e);const o=A.XpG(2);return E.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function xg(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",53)(1,"button",54),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG(2);return E.Njj(r.onFailedEventClick(o))}),A.EFF(2,"View Info"),A.k0s()()}}function yg(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No failed transaction available."),A.k0s())}function Yg(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting failed transactions..."),A.k0s())}function vg(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function bg(n,l){if(1&n&&(A.j41(0,"td",55),A.DNE(1,yg,2,0,"p",56)(2,Yg,2,0,"p",56)(3,vg,2,1,"p",56),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.failedForwardingEvents&&e.failedForwardingEvents.data)||(null==e.failedForwardingEvents||null==e.failedForwardingEvents.data?null:e.failedForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.failedForwardingEvents&&e.failedForwardingEvents.data)||(null==e.failedForwardingEvents||null==e.failedForwardingEvents.data?null:e.failedForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.failedForwardingEvents&&e.failedForwardingEvents.data)||(null==e.failedForwardingEvents||null==e.failedForwardingEvents.data?null:e.failedForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function Rg(n,l){if(1&n&&A.nrm(0,"tr",57),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,eg,(null==e.failedForwardingEvents?null:e.failedForwardingEvents.data)&&(null==e.failedForwardingEvents||null==e.failedForwardingEvents.data?null:e.failedForwardingEvents.data.length)>0))}}function Sg(n,l){1&n&&A.nrm(0,"tr",58)}function Ng(n,l){1&n&&A.nrm(0,"tr",59)}function Tg(n,l){if(1&n&&(A.j41(0,"div",18),A.DNE(1,sg,1,0,"mat-progress-bar",19),A.j41(2,"table",20,0),A.qex(4,21),A.DNE(5,rg,2,0,"th",22)(6,ag,3,4,"td",23),A.bVm(),A.qex(7,24),A.DNE(8,og,2,0,"th",22)(9,lg,3,4,"td",23),A.bVm(),A.qex(10,25),A.DNE(11,cg,2,0,"th",22)(12,Bg,2,1,"td",23),A.bVm(),A.qex(13,26),A.DNE(14,gg,2,0,"th",22)(15,fg,4,4,"td",23),A.bVm(),A.qex(16,27),A.DNE(17,ug,2,0,"th",22)(18,Eg,2,1,"td",23),A.bVm(),A.qex(19,28),A.DNE(20,hg,2,0,"th",22)(21,wg,4,4,"td",23),A.bVm(),A.qex(22,29),A.DNE(23,Cg,2,0,"th",30)(24,dg,4,4,"td",23),A.bVm(),A.qex(25,31),A.DNE(26,Qg,2,0,"th",30)(27,mg,4,4,"td",23),A.bVm(),A.qex(28,32),A.DNE(29,Mg,2,0,"th",30)(30,Ig,3,2,"td",23),A.bVm(),A.qex(31,33),A.DNE(32,Fg,6,0,"th",34)(33,xg,3,0,"td",35),A.bVm(),A.qex(34,36),A.DNE(35,bg,4,3,"td",37),A.bVm(),A.DNE(36,Rg,1,3,"tr",38)(37,Sg,1,0,"tr",39)(38,Ng,1,0,"tr",40),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.failedForwardingEvents),A.R7$(34),A.Y8G("matFooterRowDef",A.lJ4(7,Ag)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}function Pg(n,l){if(1&n&&A.nrm(0,"mat-paginator",60),2&n){const e=A.XpG();A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("hidePageSize",e.screenSize!==e.screenSizeEnum.XS)}}let Ug=(()=>{var n;class l{constructor(i,o,r,nA,WA){this.logger=i,this.commonService=o,this.store=r,this.datePipe=nA,this.camelCaseWithReplace=WA,this.nodePageDefs=c.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"failed",recordsPerPage:c.md,sortBy:"received_time",sortOrder:c.oi.DESCENDING},this.faExclamationTriangle=d.zpE,this.failedEvents=[],this.errorMessage="",this.displayedColumns=[],this.failedForwardingEvents=new L.I6([]),this.selFilter="",this.totalFailedTransactions=0,this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,xA.uK)({payload:{status:c.xk.FAILED}})),this.store.select(U.av).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(U.Dv).pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalFailedTransactions=i.failedForwardingHistory.totalForwards||0,this.failedEvents=i.failedForwardingHistory.listForwards||[],this.failedEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadFailedEventsTable(this.failedEvents),this.logger.info(i)})}ngAfterViewInit(){this.failedEvents.length>0&&this.loadFailedEventsTable(this.failedEvents)}onFailedEventClick(i){const o=[[{key:"received_time",value:i.received_time,title:"Received Time",width:50,type:c.UN.DATE_TIME},{key:"resolved_time",value:i.resolved_time,title:"Resolved Time",width:50,type:c.UN.DATE_TIME}],[{key:"in_channel_alias",value:i.in_channel_alias,title:"Inbound Channel",width:50,type:c.UN.STRING},{key:"out_channel_alias",value:i.out_channel_alias,title:"Outbound Channel",width:50,type:c.UN.STRING}],[{key:"in_msatoshi",value:i.in_msat,title:"Amount In (mSats)",width:33,type:c.UN.NUMBER},{key:"out_msatoshi",value:i.out_msat,title:"Amount Out (mSats)",width:33,type:c.UN.NUMBER},{key:"fee",value:i.fee_msat,title:"Fee (mSats)",width:34,type:c.UN.NUMBER}]];i.payment_hash&&o?.unshift([{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:100,type:c.UN.STRING}]),this.store.dispatch((0,w.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Failed Event Information",message:o}}}))}applyFilter(){this.failedForwardingEvents.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.failedForwardingEvents.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.received_time?this.datePipe.transform(new Date(1e3*i.received_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(i.resolved_time?this.datePipe.transform(new Date(1e3*i.resolved_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(i.in_channel?i.in_channel.toLowerCase()+" ":"")+(i.out_channel?i.out_channel.toLowerCase()+" ":"")+(i.in_channel_alias?i.in_channel_alias.toLowerCase()+" ":"")+(i.out_channel_alias?i.out_channel_alias.toLowerCase()+" ":"")+(i.fee_msat?i.fee_msat+" ":"")+(i.in_msat?+i.in_msat/1e3+" ":"")+(i.out_msat?+i.out_msat/1e3+" ":"")+(i.fee_msat?i.fee_msat+" ":"");break;case"received_time":case"resolved_time":r=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":r=(i.fee_msat||0)?.toString()||"";break;case"in_msatoshi":r=(+(i.in_msat||0)/1e3).toString()||"";break;case"out_msatoshi":r=(+(i.out_msat||0)/1e3).toString()||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return r.includes(o)}}loadFailedEventsTable(i){this.failedForwardingEvents=new L.I6([...i]),this.failedForwardingEvents.sort=this.sort,this.failedForwardingEvents.sortingDataAccessor=(o,r)=>{switch(r){case"in_msatoshi":return o.in_msat;case"out_msatoshi":return o.out_msat;case"fee":return o.fee_msat;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.failedForwardingEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.failedForwardingEvents)}onDownloadCSV(){this.failedForwardingEvents&&this.failedForwardingEvents.data&&this.failedForwardingEvents.data.length>0&&this.commonService.downloadFile(this.failedForwardingEvents.data,"Failed-transactions")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(Q.h),A.rXU(_.il),A.rXU(Ee.vh),A.rXU(TA.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-failed-history"]],viewQuery:function(o,r){if(1&o&&(A.GBs(BA.B4,5),A.GBs(b.iy,5)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.sort=nA.first),A.mGM(nA=A.lsd())&&(r.paginator=nA.first)}},standalone:!1,features:[A.Jv_([{provide:eA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:b.xX,useValue:(0,c.on)("Failed events")}])],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","hidePageSize",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-warn","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","received_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","resolved_time"],["matColumnDef","in_channel"],["matColumnDef","in_channel_alias"],["matColumnDef","out_channel"],["matColumnDef","out_channel_alias"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","out_msatoshi"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",4,"ngIf"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"]],template:function(o,r){1&o&&(A.j41(0,"div",1),A.DNE(1,tg,2,1,"div",2)(2,ig,18,5,"div",3)(3,Tg,39,8,"div",4)(4,Pg,1,3,"mat-paginator",5),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",""!==r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage))},dependencies:[Ee.YU,Ee.Sq,Ee.bT,Ee.B3,gA.me,gA.BC,gA.vS,y.aY,JA.$z,Be.fg,KA.rl,KA.nJ,q.HM,D.DJ,D.sA,D.UI,rA.PW,rA.eI,eA.VO,eA.$2,ae.wT,BA.B4,BA.aE,L.Zl,L.tL,L.ji,L.cC,L.YV,L.iL,L.Zq,L.xW,L.KS,L.$R,L.Qo,L.YZ,L.NB,L.iF,b.iy,wA.ZF,wA.Ld,Ee.QX,Ee.vh],encapsulation:2}))}return n(),l})();const Gg=["tableIn"],Lg=["tableOut"],zg=["paginatorIn"],kg=["paginatorOut"],Hg=(n,l)=>({"mt-2":n,"mt-1":l}),jg=()=>["no_incoming_event"],Og=n=>({"mt-2":n}),Jg=()=>["no_outgoing_event"],da=n=>({width:n}),P0=n=>({"display-none":n});function _g(n,l){if(1&n&&(A.j41(0,"div",7),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function Vg(n,l){1&n&&A.nrm(0,"mat-progress-bar",34)}function Wg(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Channel ID"),A.k0s())}function Kg(n,l){if(1&n&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,da,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.channel_id)}}function Xg(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Peer Alias"),A.k0s())}function Zg(n,l){if(1&n&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,da,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.alias)}}function qg(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Events"),A.k0s())}function $g(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,e.events))}}function Af(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Amount (Sats)"),A.k0s())}function ef(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.total_amount)/1e3,(null==e?null:e.total_amount)<1e3?"1.0-4":"1.0-0"))}}function tf(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Fee (Sats)"),A.k0s())}function nf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.total_fee)/1e3,(null==e?null:e.total_fee)<1e3?"1.0-4":"1.0-0"))}}function sf(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No incoming routing peer available."),A.k0s())}function rf(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting incoming routing peers..."),A.k0s())}function af(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function of(n,l){if(1&n&&(A.j41(0,"td",41),A.DNE(1,sf,2,0,"p",42)(2,rf,2,0,"p",42)(3,af,2,1,"p",42),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function lf(n,l){if(1&n&&A.nrm(0,"tr",43),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,P0,(null==e.routingPeersIncoming?null:e.routingPeersIncoming.data)&&(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)>0))}}function cf(n,l){1&n&&A.nrm(0,"tr",44)}function Bf(n,l){1&n&&A.nrm(0,"tr",45)}function gf(n,l){1&n&&A.nrm(0,"mat-progress-bar",34)}function ff(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Channel ID"),A.k0s())}function uf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,da,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.channel_id)}}function Ef(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Peer Alias"),A.k0s())}function hf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,da,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.alias)}}function wf(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Events"),A.k0s())}function Cf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,e.events))}}function df(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Amount (Sats)"),A.k0s())}function Qf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.total_amount)/1e3,(null==e?null:e.total_amount)<1e3?"1.0-4":"1.0-0"))}}function mf(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Fee (Sats)"),A.k0s())}function Mf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.total_fee)/1e3,(null==e?null:e.total_fee)<1e3?"1.0-4":"1.0-0"))}}function pf(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No outgoing routing peer available."),A.k0s())}function Df(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting outgoing routing peers..."),A.k0s())}function If(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function Ff(n,l){if(1&n&&(A.j41(0,"td",41),A.DNE(1,pf,2,0,"p",42)(2,Df,2,0,"p",42)(3,If,2,1,"p",42),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function xf(n,l){if(1&n&&A.nrm(0,"tr",43),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,P0,(null==e.routingPeersOutgoing?null:e.routingPeersOutgoing.data)&&(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)>0))}}function yf(n,l){1&n&&A.nrm(0,"tr",44)}function Yf(n,l){1&n&&A.nrm(0,"tr",45)}function vf(n,l){if(1&n&&(A.j41(0,"div",8)(1,"div",9)(2,"div",10)(3,"div",11),A.EFF(4,"Incoming"),A.k0s(),A.nrm(5,"div",12),A.k0s(),A.j41(6,"div",13),A.DNE(7,Vg,1,0,"mat-progress-bar",14),A.j41(8,"table",15,0),A.qex(10,16),A.DNE(11,Wg,2,0,"th",17)(12,Kg,4,4,"td",18),A.bVm(),A.qex(13,19),A.DNE(14,Xg,2,0,"th",17)(15,Zg,4,4,"td",18),A.bVm(),A.qex(16,20),A.DNE(17,qg,2,0,"th",21)(18,$g,4,3,"td",18),A.bVm(),A.qex(19,22),A.DNE(20,Af,2,0,"th",21)(21,ef,4,4,"td",18),A.bVm(),A.qex(22,23),A.DNE(23,tf,2,0,"th",21)(24,nf,4,4,"td",18),A.bVm(),A.qex(25,24),A.DNE(26,of,4,3,"td",25),A.bVm(),A.DNE(27,lf,1,3,"tr",26)(28,cf,1,0,"tr",27)(29,Bf,1,0,"tr",28),A.k0s()(),A.nrm(30,"mat-paginator",29,1),A.k0s(),A.j41(32,"div",30)(33,"div",10)(34,"div",11),A.EFF(35,"Outgoing"),A.k0s(),A.nrm(36,"div",12),A.k0s(),A.j41(37,"div",31),A.DNE(38,gf,1,0,"mat-progress-bar",14),A.j41(39,"table",32,2),A.qex(41,16),A.DNE(42,ff,2,0,"th",17)(43,uf,4,4,"td",18),A.bVm(),A.qex(44,19),A.DNE(45,Ef,2,0,"th",17)(46,hf,4,4,"td",18),A.bVm(),A.qex(47,20),A.DNE(48,wf,2,0,"th",21)(49,Cf,4,3,"td",18),A.bVm(),A.qex(50,22),A.DNE(51,df,2,0,"th",21)(52,Qf,4,4,"td",18),A.bVm(),A.qex(53,23),A.DNE(54,mf,2,0,"th",21)(55,Mf,4,4,"td",18),A.bVm(),A.qex(56,33),A.DNE(57,Ff,4,3,"td",25),A.bVm(),A.DNE(58,xf,1,3,"tr",26)(59,yf,1,0,"tr",27)(60,Yf,1,0,"tr",28),A.k0s(),A.nrm(61,"mat-paginator",29,3),A.k0s()()()),2&n){const e=A.XpG();A.R7$(2),A.Y8G("ngClass",A.l_i(22,Hg,e.screenSize===e.screenSizeEnum.XS,e.screenSize===e.screenSizeEnum.SM)),A.R7$(5),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersIncoming),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(25,jg)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns),A.R7$(),A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("hidePageSize",e.screenSize!==e.screenSizeEnum.XS),A.R7$(3),A.Y8G("ngClass",A.eq3(26,Og,e.screenSize!==e.screenSizeEnum.LG)),A.R7$(5),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersOutgoing),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(28,Jg)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns),A.R7$(),A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("hidePageSize",e.screenSize!==e.screenSizeEnum.XS)}}let bf=(()=>{var n;class l{constructor(i,o,r,nA){this.logger=i,this.commonService=o,this.store=r,this.camelCaseWithReplace=nA,this.eventsData=[],this.selFilter="",this.nodePageDefs=c.Jd,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:c.md,sortBy:"total_fee",sortOrder:c.oi.DESCENDING},this.successfulEvents=[],this.displayedColumns=[],this.routingPeersIncoming=new L.I6([]),this.routingPeersOutgoing=new L.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(i){i.eventsData&&(this.apiCallStatus={status:c.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=i.eventsData.currentValue,this.successfulEvents=this.eventsData,i.eventsData.firstChange||this.loadRoutingPeersTable(this.successfulEvents))}ngOnInit(){this.store.pipe((0,Gt.s)(1)).subscribe(i=>{i.cln.apisCallStatus.FetchForwardingHistoryS.status===c.wn.UN_INITIATED&&!i.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,xA.uK)({payload:{status:c.xk.SETTLED}}))}),this.store.select(U.av).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(U.Ie).pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.successfulEvents=i.forwardingHistory.listForwards||[],this.successfulEvents.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.successfulEvents),this.logger.info(i))})}ngAfterViewInit(){this.successfulEvents.length>0&&this.loadRoutingPeersTable(this.successfulEvents)}applyIncomingFilter(){this.routingPeersIncoming.filter=this.filterIn.toLowerCase()}applyOutgoingFilter(){this.routingPeersOutgoing.filter=this.filterOut.toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):"all"}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(i,o)=>JSON.stringify(i).toLowerCase().includes(o),this.routingPeersOutgoing.filterPredicate=(i,o)=>JSON.stringify(i).toLowerCase().includes(o)}loadRoutingPeersTable(i){if(i.length>0){const o=this.groupRoutingPeers(i);this.routingPeersIncoming=new L.I6(o[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new L.I6(o[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new L.I6([]),this.routingPeersOutgoing=new L.I6([]);this.setFilterPredicate(),this.applyIncomingFilter(),this.applyOutgoingFilter(),this.logger.info(this.routingPeersIncoming),this.logger.info(this.routingPeersOutgoing)}groupRoutingPeers(i){const o=[],r=[];return i.forEach(nA=>{const WA=o?.find(mn=>mn.channel_id===nA.in_channel),Ae=r?.find(mn=>mn.channel_id===nA.out_channel);WA?(WA.events++,WA.total_amount=+WA.total_amount+ +(nA.in_msat||0),WA.total_fee=+(nA.in_msat||0)-+(nA.out_msat||0)+ +WA.total_fee):o.push({channel_id:nA.in_channel,alias:nA.in_channel_alias,events:1,total_amount:+(nA.in_msat||0),total_fee:+(nA.in_msat||0)-+(nA.out_msat||0)}),Ae?(Ae.events++,Ae.total_amount=+Ae.total_amount+ +(nA.out_msat||0),Ae.total_fee=+(nA.in_msat||0)-+(nA.out_msat||0)+ +Ae.total_fee):r.push({channel_id:nA.out_channel,alias:nA.out_channel_alias,events:1,total_amount:+(nA.out_msat||0),total_fee:+(nA.in_msat||0)-+(nA.out_msat||0)})}),[this.commonService.sortDescByKey(o,"total_fee"),this.commonService.sortDescByKey(r,"total_fee")]}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(Q.h),A.rXU(_.il),A.rXU(TA.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-routing-peers"]],viewQuery:function(o,r){if(1&o&&(A.GBs(Gg,5,BA.B4),A.GBs(Lg,5,BA.B4),A.GBs(zg,5),A.GBs(kg,5)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.sortIn=nA.first),A.mGM(nA=A.lsd())&&(r.sortOut=nA.first),A.mGM(nA=A.lsd())&&(r.paginatorIn=nA.first),A.mGM(nA=A.lsd())&&(r.paginatorOut=nA.first)}},inputs:{eventsData:"eventsData",selFilter:"selFilter"},standalone:!1,features:[A.Jv_([{provide:b.xX,useValue:(0,c.on)("Peers")}]),A.OA$],decls:3,vars:2,consts:[["tableIn",""],["paginatorIn",""],["tableOut",""],["paginatorOut",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch","class","page-sub-title-container mt-2",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"page-sub-title-container","mt-2"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","channel_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","total_amount"],["matColumnDef","total_fee"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],["fxLayout","column","fxFlex","49","fxLayoutAlign","end stretch"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","no_outgoing_event"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){1&o&&(A.j41(0,"div",4),A.DNE(1,_g,2,1,"div",5)(2,vf,63,29,"div",6),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",""!==r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage))},dependencies:[Ee.YU,Ee.bT,Ee.B3,q.HM,D.DJ,D.sA,D.UI,rA.PW,rA.eI,BA.B4,BA.aE,L.Zl,L.tL,L.ji,L.cC,L.YV,L.iL,L.Zq,L.xW,L.KS,L.$R,L.Qo,L.YZ,L.NB,L.iF,b.iy,wA.Ld,Ee.QX],encapsulation:2}))}return n(),l})();const Rf=()=>["all"],Sf=n=>({"error-border":n}),Nf=()=>["no_channel"],U0=n=>({width:n}),Tf=n=>({"display-none":n});function Pf(n,l){if(1&n&&(A.j41(0,"mat-option",33),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function Uf(n,l){1&n&&A.nrm(0,"mat-progress-bar",34)}function Gf(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Amount (Sats)"),A.k0s())}function Lf(n,l){if(1&n&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,(null==e?null:e.amount_msat)/1e3,"1.0-2")," ")}}function zf(n,l){if(1&n&&(A.qex(0),A.DNE(1,Lf,3,4,"span",39),A.bVm()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function kf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",37),A.EFF(2),A.k0s(),A.DNE(3,zf,2,1,"ng-container",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" Active HTLCs: ",null==e||null==e.htlcs?null:e.htlcs.length," "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Hf(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Alias/Direction"),A.k0s())}function jf(n,l){if(1&n&&(A.j41(0,"span",37),A.EFF(1),A.nI1(2,"titlecase"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==e?null:e.direction)," ")}}function Of(n,l){if(1&n&&(A.qex(0),A.DNE(1,jf,3,3,"span",41),A.bVm()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function Jf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",37),A.EFF(2),A.k0s(),A.DNE(3,Of,2,1,"ng-container",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(null==e?null:e.alias),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function _f(n,l){1&n&&(A.j41(0,"th",42)(1,"span",40),A.EFF(2,"HTLC ID"),A.k0s()())}function Vf(n,l){if(1&n&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==e?null:e.id)," ")}}function Wf(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,Vf,3,3,"span",39),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function Kf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,Wf,2,1,"span",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(null==e?null:e.id),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Xf(n,l){1&n&&(A.j41(0,"th",42)(1,"span",40),A.EFF(2,"Expiry"),A.k0s()())}function Zf(n,l){if(1&n&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==e?null:e.expiry,"1.0-0")," ")}}function qf(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,Zf,3,4,"span",39),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function $f(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,qf,2,1,"span",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Au(n,l){1&n&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"State"),A.k0s()())}function eu(n,l){if(1&n&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"camelcaseWithReplace"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==e?null:e.state,"_")," ")}}function tu(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,eu,3,4,"span",39),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function nu(n,l){if(1&n&&(A.j41(0,"td",44)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,tu,2,1,"span",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function iu(n,l){1&n&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"Local Trimmed"),A.k0s()())}function su(n,l){if(1&n&&(A.j41(0,"span",40),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",null!=e&&e.local_trimmed?"Yes":"No"," ")}}function ru(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,su,2,1,"span",39),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function au(n,l){if(1&n&&(A.j41(0,"td",44)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,ru,2,1,"span",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function ou(n,l){1&n&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"Payment Hash"),A.k0s()())}function lu(n,l){if(1&n&&(A.j41(0,"span",48)(1,"span",49),A.EFF(2),A.k0s()()),2&n){const e=l.$implicit,i=A.XpG(3);A.Y8G("ngStyle",A.eq3(2,U0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash)}}function cu(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,lu,3,4,"span",47),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function Bu(n,l){if(1&n&&(A.j41(0,"td",44)(1,"span",45)(2,"span",46),A.EFF(3),A.k0s()(),A.DNE(4,cu,2,1,"span",38),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(3,U0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function gu(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",50)(1,"div",51)(2,"mat-select",52),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",53),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function fu(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",58)(1,"button",59),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG(2).$implicit,nA=A.XpG();return E.Njj(nA.onHTLCClick(o,r))}),A.EFF(2),A.k0s()()}if(2&n){const e=l.index;A.R7$(2),A.SpI("View ",e+1)}}function uu(n,l){if(1&n&&(A.j41(0,"div"),A.DNE(1,fu,3,1,"div",57),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function Eu(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",54)(1,"span",55)(2,"button",56),A.bIt("click",function(){const o=E.eBV(e).$implicit;return E.Njj(o.is_expanded=!o.is_expanded)}),A.EFF(3),A.k0s()(),A.DNE(4,uu,2,1,"div",38),A.k0s()}if(2&n){const e=l.$implicit;A.R7$(3),A.JRh(e.is_expanded?"Hide":"Show"),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function hu(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No active htlc available."),A.k0s())}function wu(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting active htlcs..."),A.k0s())}function Cu(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function du(n,l){if(1&n&&(A.j41(0,"td",60),A.DNE(1,hu,2,0,"p",38)(2,wu,2,0,"p",38)(3,Cu,2,1,"p",38),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function Qu(n,l){if(1&n&&A.nrm(0,"tr",61),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,Tf,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function mu(n,l){1&n&&A.nrm(0,"tr",62)}function Mu(n,l){1&n&&A.nrm(0,"tr",63)}let pu=(()=>{var n;class l{constructor(i,o,r,nA){this.logger=i,this.commonService=o,this.store=r,this.camelCaseWithReplace=nA,this.nodePageDefs=c.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"active_HTLCs",recordsPerPage:c.md,sortBy:"expiry",sortOrder:c.oi.DESCENDING},this.channels=new L.I6([]),this.channelsJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new B.B,new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(U.av).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(U.BM).pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:"");const o=[...i.activeChannels,...i.pendingChannels,...i.inactiveChannels];this.channelsJSONArr=o?.filter(r=>r.htlcs&&r.htlcs.length>0)||[],this.channelsJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(i)})}ngAfterViewInit(){this.channelsJSONArr.length>0&&this.loadHTLCsTable(this.channelsJSONArr)}onHTLCClick(i,o){const r=[[{key:"alias",value:o.alias,title:"Alias",width:100,type:c.UN.STRING}],[{key:"amount_msat",value:(i.amount_msat||0)/1e3,title:"Amount (Sats)",width:50,type:c.UN.NUMBER},{key:"direction",value:this.commonService.titleCase(i.direction||""),title:"Direction",width:50,type:c.UN.STRING}],[{key:"expiry",value:i.expiry,title:"Expiry",width:50,type:c.UN.NUMBER},{key:"state",value:this.camelCaseWithReplace.transform(i.state||"","_"),title:"State",width:50,type:c.UN.STRING}],[{key:"id",value:i.id,title:"HTLC ID",width:50,type:c.UN.STRING},{key:"local_trimmed",value:i.local_trimmed,title:"Local Trimmed",width:50,type:c.UN.BOOLEAN}],[{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:100,type:c.UN.STRING}]];this.store.dispatch((0,w.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"HTLC Information",message:r}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column||"","_"):this.commonService.titleCase(i)}setFilterPredicate(){this.channels.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.alias?i.alias.toLowerCase():"")+i.htlcs?.map(nA=>JSON.stringify(nA).toLowerCase()+(nA.local_trimmed?" yes ":" no "));break;case"direction":r=i.htlcs?.map(nA=>nA.direction+" ").toString()||"";break;case"id":r=i.htlcs?.map(nA=>nA.id+" ").toString()||"";break;case"expiry":r=i.htlcs?.map(nA=>nA.expiry+" ").toString()||"";break;case"state":r=i.htlcs?.map(nA=>this.camelCaseWithReplace.transform(nA.state||"","_").toLowerCase()+" ").toString()||"";break;case"payment_hash":r=i.htlcs?.map(nA=>nA.payment_hash+" ").toString()||"";break;case"local_trimmed":r=i.htlcs?.map(nA=>nA.local_trimmed?" yes ":" no ").toString()||"";break;case"amount_msat":r=i.htlcs?.map(nA=>(nA.amount_msat||0)/1e3)?.toString()||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return r.includes(o)}}loadHTLCsTable(i){this.channels=new L.I6(i?[...i]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,r)=>{switch(r){case"amount_msat":return this.commonService.sortByKey(o.htlcs,r,"number",this.sort?.direction),o.htlcs&&o.htlcs.length?o.htlcs.length:null;case"id":case"payment_hash":case"state":return this.commonService.sortByKey(o.htlcs,r,"string",this.sort?.direction),o;case"direction":return this.commonService.sortByKey(o.htlcs,r,"string",this.sort?.direction),o.alias?o.alias:o.id?o.id:null;case"expiry":return this.commonService.sortByKey(o.htlcs,r,"number",this.sort?.direction),o;case"local_trimmed":return this.commonService.sortByKey(o.htlcs,r,"boolean",this.sort?.direction),o;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.flattenHTLCs(),"ActiveHTLCs")}flattenHTLCs(){return JSON.parse(JSON.stringify(this.channels.data))?.reduce((r,nA)=>r.concat(nA.htlcs?nA.htlcs:nA),[])}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(Q.h),A.rXU(_.il),A.rXU(TA.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-active-htlcs-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(BA.B4,5),A.GBs(b.iy,5)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.sort=nA.first),A.mGM(nA=A.lsd())&&(r.paginator=nA.first)}},standalone:!1,features:[A.Jv_([{provide:eA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:b.xX,useValue:(0,c.on)("HTLCs")}])],decls:48,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","amount_msat"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","direction"],["matColumnDef","id"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","expiry"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","pl-3 htlc-row-span",4,"matHeaderCellDef"],["mat-cell","","class","pl-3",4,"matCellDef"],["matColumnDef","local_trimmed"],["matColumnDef","payment_hash"],["matColumnDef","actions"],["mat-header-cell","","class","px-2",4,"matHeaderCellDef"],["mat-cell","","class","px-2","fxLayout","column","fxLayoutAlign","center end",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayoutAlign","start center",1,"htlc-row-span"],[4,"ngIf"],["fxLayoutAlign","end center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-row-span"],["fxLayoutAlign","start center","class","htlc-row-span",4,"ngFor","ngForOf"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"pl-3","htlc-row-span"],["mat-cell","",1,"pl-3"],["fxLayout","row",1,"ellipsis-parent","htlc-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"ellipsis-child"],["fxLayoutAlign","start center","class","ellipsis-parent htlc-row-span",3,"ngStyle",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"ellipsis-parent","htlc-row-span",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","",1,"px-2"],["fxLayoutAlign","end center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayout","column","fxLayoutAlign","center end",1,"px-2"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-htlc-info",3,"click"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",1)(1,"div",2),A.nrm(2,"div",3),A.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",6),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.selFilterBy,Ae)||(r.selFilterBy=Ae),E.Njj(Ae)}),A.bIt("selectionChange",function(){return E.eBV(nA),r.selFilter="",E.Njj(r.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,Pf,2,2,"mat-option",7),A.k0s()()(),A.j41(10,"mat-form-field",5)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",8),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.selFilter,Ae)||(r.selFilter=Ae),E.Njj(Ae)}),A.bIt("input",function(){return E.eBV(nA),E.Njj(r.applyFilter())})("keyup",function(){return E.eBV(nA),E.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(14,"div",9),A.DNE(15,Uf,1,0,"mat-progress-bar",10),A.j41(16,"table",11,0),A.qex(18,12),A.DNE(19,Gf,2,0,"th",13)(20,kf,4,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,Hf,2,0,"th",13)(23,Jf,4,2,"td",14),A.bVm(),A.qex(24,16),A.DNE(25,_f,3,0,"th",17)(26,Kf,4,2,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,Xf,3,0,"th",17)(29,$f,4,2,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,Au,3,0,"th",20)(32,nu,4,2,"td",21),A.bVm(),A.qex(33,22),A.DNE(34,iu,3,0,"th",20)(35,au,4,2,"td",21),A.bVm(),A.qex(36,23),A.DNE(37,ou,3,0,"th",20)(38,Bu,5,5,"td",21),A.bVm(),A.qex(39,24),A.DNE(40,gu,6,0,"th",25)(41,Eu,5,2,"td",26),A.bVm(),A.qex(42,27),A.DNE(43,du,4,3,"td",28),A.bVm(),A.DNE(44,Qu,1,3,"tr",29)(45,mu,1,0,"tr",30)(46,Mu,1,0,"tr",31),A.k0s()(),A.nrm(47,"mat-paginator",32),A.k0s()}2&o&&(A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,Rf).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(2),A.Y8G("ngIf",r.apiCallStatus.status===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.channels)("ngClass",A.eq3(15,Sf,""!==r.errorMessage)),A.R7$(28),A.Y8G("matFooterRowDef",A.lJ4(17,Nf)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("hidePageSize",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[Ee.YU,Ee.Sq,Ee.bT,Ee.B3,gA.me,gA.BC,gA.vS,JA.$z,Be.fg,KA.rl,KA.nJ,q.HM,D.DJ,D.sA,D.UI,rA.PW,rA.eI,eA.VO,eA.$2,ae.wT,BA.B4,BA.aE,L.Zl,L.tL,L.ji,L.cC,L.YV,L.iL,L.Zq,L.xW,L.KS,L.$R,L.Qo,L.YZ,L.NB,L.iF,b.iy,wA.ZF,wA.Ld,Ee.QX,Ee.PV,TA.VD],styles:[".mat-column-amount_msat[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem;padding-right:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mat-column-actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}"]}))}return n(),l})();function Du(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",8),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.activeLink=o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("routerLink",A.mNQ(e.link))("active",i.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let Iu=(()=>{var n;class l{constructor(i){this.router=i,this.faChartBar=d.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new B.B,new B.B,new B.B,new B.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,M.Q)(this.unSubs[0]),(0,Z.p)(o=>o instanceof Pt.gx)).subscribe({next:o=>{const r=this.links.find(nA=>o.urlAfterRedirects.includes(nA.link));this.activeLink=r?r.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(Pt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-reports"]],standalone:!1,decls:12,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Reports"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),A.DNE(8,Du,2,4,"div",7),A.k0s(),A.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),A.k0s()()()),2&o){const nA=A.sdS(10);A.R7$(),A.Y8G("icon",r.faChartBar),A.R7$(6),A.Y8G("tabPanel",nA),A.R7$(),A.Y8G("ngForOf",r.links)}},dependencies:[Ee.Sq,y.aY,lA.RN,lA.m2,D.DJ,D.sA,$.Bu,$.hQ,$.Ql,Pt.n3,Hn.Wk],encapsulation:2}))}return n(),l})();var G0=Ve(1001),L0=Ve(51993),z0=Ve(24655);function Fu(n,l){1&n&&(A.j41(0,"div",15),A.nrm(1,"mat-progress-bar",16),A.j41(2,"p"),A.EFF(3,"Getting Forwarding History..."),A.k0s()())}function xu(n,l){if(1&n&&(A.j41(0,"div",17),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function yu(n,l){if(1&n&&(A.j41(0,"div",18),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=A.XpG();A.Y8G("@fadeIn",e.totalFeeMsat),A.R7$(),A.Lme("",A.i5U(2,3,e.totalFeeMsat/1e3||0,"1.0-2")," Sats/",A.bMT(3,6,e.filteredEventsBySelectedPeriod.length||0)," Events")}}function Yu(n,l){1&n&&(A.j41(0,"div",15),A.EFF(1,"No routing report for the selected period"),A.k0s())}function vu(n,l){if(1&n&&(A.j41(0,"span")(1,"span",20),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.j41(4,"span",20),A.EFF(5),A.nI1(6,"number"),A.k0s()()),2&n){const e=l.model,i=A.XpG(2);A.R7$(2),A.SpI("Events: ",A.bMT(3,2,(i.selReportBy===i.reportBy.EVENTS?e.value:e.extra.totalEvents)||0)),A.R7$(3),A.SpI("Fee: ",A.i5U(6,4,(i.selReportBy===i.reportBy.EVENTS?e.extra.totalFees:e.value)||0,"1.0-2"))}}function bu(n,l){if(1&n){const e=A.RV6();A.j41(0,"ngx-charts-bar-vertical",19),A.bIt("select",function(o){E.eBV(e);const r=A.XpG();return E.Njj(r.onChartBarSelected(o))})("mouseup",function(o){E.eBV(e);const r=A.XpG();return E.Njj(r.onChartMouseUp(o))}),A.DNE(1,vu,7,7,"ng-template",null,0,A.C5r),A.k0s()}if(2&n){const e=A.XpG();A.Y8G("view",e.view)("results",e.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function Ru(n,l){if(1&n&&A.nrm(0,"rtl-cln-forwarding-history",21),2&n){const e=A.XpG();A.Y8G("eventsData",e.filteredEventsBySelectedPeriod)("selFilter",e.eventFilterValue)}}let Su=(()=>{var n;class l{constructor(i,o,r,nA){this.logger=i,this.commonService=o,this.store=r,this.dataService=nA,this.reportPeriod=c.rs[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=c.aR,this.selReportBy=c.aR.FEES,this.totalFeeMsat=null,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new B.B,new B.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===c.f7.XS||this.screenSize===c.f7.SM),this.store.pipe((0,Gt.s)(1)).subscribe(i=>{i.cln.apisCallStatus.FetchForwardingHistoryS.status===c.wn.UN_INITIATED&&!i.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,xA.uK)({payload:{status:c.xk.SETTLED}}))}),this.store.select(U.Ie).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{i.forwardingHistory.status===c.xk.SETTLED&&(this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR?this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:"":this.apiCallStatus.status===c.wn.COMPLETED&&(this.events=i.forwardingHistory.listForwards||[],this.filterForwardingEvents(this.startDate,this.endDate)),this.logger.info(i))}),this.commonService.containerSizeUpdated.pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{switch(this.screenSize){case c.f7.MD:this.screenPaddingX=i.width/10;break;case c.f7.LG:this.screenPaddingX=i.width/16;break;default:this.screenPaddingX=i.width/20}this.view=[i.width-this.screenPaddingX,i.height/2.2],this.logger.info("Container Size: "+JSON.stringify(i)),this.logger.info("View: "+JSON.stringify(this.view))})}filterForwardingEvents(i,o){const r=Math.round(i.getTime()/1e3),nA=Math.round(o.getTime()/1e3);this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeMsat=null,this.events&&this.events.length>0&&(this.events.forEach(WA=>{WA.received_time&&WA.received_time>=r&&WA.received_time0&&"ngx-charts"===i.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(i){this.eventFilterValue=this.reportPeriod===c.rs[1]?i.name+"/"+this.startDate.getFullYear():i.name.toString().padStart(2,"0")+"/"+c.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(i){const o=Math.round(i.getTime()/1e3),r=[];if(this.totalFeeMsat=0,this.reportPeriod===c.rs[1]){for(let nA=0;nA<12;nA++)r.push({name:c.KR[nA].name,value:0,extra:{totalEvents:0}});this.filteredEventsBySelectedPeriod?.map(nA=>{const WA=nA.received_time?new Date(1e3*+nA.received_time).getMonth():12;return r[WA].extra.totalEvents=r[WA].extra.totalEvents+1,r[WA].value=r[WA].value+ +(nA.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(nA.fee_msat||0),this.filteredEventsBySelectedPeriod})}else{for(let nA=0;nA{const WA=nA.received_time?Math.floor((+nA.received_time-o)/this.secondsInADay):0;return r[WA].extra.totalEvents=r[WA].extra.totalEvents+1,r[WA].value=r[WA].value+ +(nA.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(nA.fee_msat||0),this.filteredEventsBySelectedPeriod})}return r}prepareEventsReport(i){const o=Math.round(i.getTime()/1e3),r=[];if(this.totalFeeMsat=0,this.reportPeriod===c.rs[1]){for(let nA=0;nA<12;nA++)r.push({name:c.KR[nA].name,value:0,extra:{totalFees:0}});this.filteredEventsBySelectedPeriod?.map(nA=>{const WA=nA.received_time?new Date(1e3*+nA.received_time).getMonth():12;return r[WA].value=r[WA].value+1,r[WA].extra.totalFees=r[WA].extra.totalFees+ +(nA.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(nA.fee_msat||0),this.filteredEventsBySelectedPeriod})}else{for(let nA=0;nA{const WA=nA.received_time?Math.floor((+nA.received_time-o)/this.secondsInADay):0;return r[WA].value=r[WA].value+1,r[WA].extra.totalFees=r[WA].extra.totalFees+ +(nA.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(nA.fee_msat||0),this.filteredEventsBySelectedPeriod})}return r}onSelectionChange(i){const o=i.selDate.getMonth(),r=i.selDate.getFullYear();this.reportPeriod=i.selScrollRange,this.reportPeriod===c.rs[1]?(this.startDate=new Date(r,0,1,0,0,0),this.endDate=new Date(r,11,31,23,59,59)):(this.startDate=new Date(r,o,1,0,0,0),this.endDate=new Date(r,o,this.getMonthDays(o,r),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(i,o){return 1===i&&o%4==0?c.KR[i].days+1:c.KR[i].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(Q.h),A.rXU(_.il),A.rXU(Rt.u))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-routing-report"]],hostBindings:function(o,r){1&o&&A.bIt("mouseup",function(WA){return r.onChartMouseUp(WA)})},standalone:!1,decls:19,vars:11,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start center",1,"my-1",3,"ngModelChange","change","ngModel"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1 error-border",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],["pageId","reports","tableId","routing",3,"eventsData","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["mode","indeterminate"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1","error-border"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],[1,"one-color",3,"select","mouseup","view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel"],[1,"tooltip-label"],["pageId","reports","tableId","routing",3,"eventsData","selFilter"]],template:function(o,r){1&o&&(A.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),A.bIt("stepChanged",function(WA){return r.onSelectionChange(WA)}),A.k0s(),A.j41(2,"div",3)(3,"mat-radio-group",4),A.mxI("ngModelChange",function(WA){return A.DH7(r.selReportBy,WA)||(r.selReportBy=WA),WA}),A.bIt("change",function(){return r.onSelReportByChange()}),A.j41(4,"span",5),A.EFF(5,"Report By: "),A.k0s(),A.j41(6,"mat-radio-button",6),A.EFF(7,"Fees"),A.k0s(),A.j41(8,"mat-radio-button",7),A.EFF(9,"Events"),A.k0s()()(),A.j41(10,"div",8),A.DNE(11,Fu,4,0,"div",9)(12,xu,2,1,"div",10)(13,yu,4,8,"div",11)(14,Yu,2,0,"div",9),A.j41(15,"div",12),A.DNE(16,bu,3,11,"ngx-charts-bar-vertical",13),A.k0s(),A.j41(17,"div",12),A.DNE(18,Ru,1,2,"rtl-cln-forwarding-history",14),A.k0s()()()),2&o&&(A.R7$(3),A.R50("ngModel",r.selReportBy),A.R7$(3),A.Y8G("value",A.mNQ(r.reportBy.FEES)),A.R7$(2),A.Y8G("value",A.mNQ(r.reportBy.EVENTS)),A.R7$(3),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.ERROR),A.R7$(),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.COMPLETED&&r.routingReportData.length>0&&r.filteredEventsBySelectedPeriod.length>0),A.R7$(),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.COMPLETED&&(r.routingReportData.length<=0||r.filteredEventsBySelectedPeriod.length<=0)),A.R7$(2),A.Y8G("ngIf",r.routingReportData.length>0&&r.filteredEventsBySelectedPeriod.length>0),A.R7$(2),A.Y8G("ngIf",r.filteredEventsBySelectedPeriod&&r.filteredEventsBySelectedPeriod.length>0))},dependencies:[Ee.bT,gA.BC,gA.vS,q.HM,pn.VT,pn._g,D.DJ,D.sA,D.UI,L0.L8,z0.m,N0,Ee.QX],encapsulation:2,data:{animation:[G0.q]}}))}return n(),l})();var Nu=Ve(5085);function Tu(n,l){if(1&n&&(A.j41(0,"div",11),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Lme(" Paid ",A.i5U(2,2,e.transactionsReportSummary.amountPaidSelectedPeriod/1e3||0,"1.0-2")," Sats/",A.bMT(3,5,e.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function Pu(n,l){if(1&n&&(A.j41(0,"div",11),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Lme(" Received ",A.i5U(2,2,e.transactionsReportSummary.amountReceivedSelectedPeriod/1e3||0,"1.0-2")," Sats/",A.bMT(3,5,e.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function Uu(n,l){if(1&n&&(A.j41(0,"div",9),A.DNE(1,Tu,4,7,"div",10)(2,Pu,4,7,"div",10),A.k0s()),2&n){const e=A.XpG();A.Y8G("@fadeIn",e.transactionsReportSummary),A.R7$(),A.Y8G("ngIf",e.transactionsReportSummary.paymentsSelectedPeriod),A.R7$(),A.Y8G("ngIf",e.transactionsReportSummary.invoicesSelectedPeriod)}}function Gu(n,l){1&n&&(A.j41(0,"div",12),A.EFF(1,"No transactions report for the selected period"),A.k0s())}function Lu(n,l){if(1&n&&(A.j41(0,"span",14),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=l.model;A.R7$(),A.LHq("",e.name,": ",A.i5U(2,4,e.value||0,"1.0-2"),"/# ","Paid"===e.name?"Payments":"Invoices",": ",A.bMT(3,7,(null==e.extra?null:e.extra.total)||0))}}function zu(n,l){if(1&n){const e=A.RV6();A.j41(0,"ngx-charts-bar-vertical-2d",13),A.bIt("select",function(o){E.eBV(e);const r=A.XpG();return E.Njj(r.onChartBarSelected(o))})("mouseup",function(o){E.eBV(e);const r=A.XpG();return E.Njj(r.onChartMouseUp(o))}),A.DNE(1,Lu,4,9,"ng-template",null,0,A.C5r),A.k0s()}if(2&n){const e=A.XpG();A.Y8G("view",e.view)("results",e.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",e.reportPeriod===e.scrollRanges[0]?2:4)}}function ku(n,l){if(1&n&&A.nrm(0,"rtl-transactions-report-table",15),2&n){const e=A.XpG();A.Y8G("displayedColumns",e.displayedColumns)("tableSetting",e.tableSetting)("dataList",e.transactionsNonZeroReportData)("dataRange",e.reportPeriod)("selFilter",e.transactionFilterValue)}}let Hu=(()=>{var n;class l{constructor(i,o,r){this.logger=i,this.commonService=o,this.store=r,this.scrollRanges=c.rs,this.reportPeriod=c.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:c.md,sortBy:"date",sortOrder:c.oi.DESCENDING},this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[],this.transactionsNonZeroReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new B.B,new B.B,new B.B,new B.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===c.f7.XS||this.screenSize===c.f7.SM),this.store.select(U.av).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(U.KT).pipe((0,M.Q)(this.unSubs[1]),(0,Y.E)(this.store.select(U.Pj))).subscribe(([i,o])=>{this.payments=i.payments,this.invoices=o.listInvoices.invoices||[],this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData()}),this.commonService.containerSizeUpdated.pipe((0,M.Q)(this.unSubs[2])).subscribe(i=>{switch(this.screenSize){case c.f7.MD:this.screenPaddingX=i.width/10;break;case c.f7.LG:this.screenPaddingX=i.width/16;break;default:this.screenPaddingX=i.width/20}this.view=[i.width-this.screenPaddingX,i.height/2.2],this.logger.info("Container Size: "+JSON.stringify(i)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(i){"svg"===i.srcElement.tagName&&i.srcElement.classList.length>0&&"ngx-charts"===i.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(i){this.transactionFilterValue=this.reportPeriod===c.rs[1]?i.series+"/"+this.startDate.getFullYear():i.series.toString().padStart(2,"0")+"/"+c.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(i,o){const r=Math.round(i.getTime()/1e3),nA=Math.round(o.getTime()/1e3),WA=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const Ae=this.payments?.filter(bt=>"complete"===bt.status&&bt.created_at&&bt.created_at>=r&&bt.created_at"paid"===bt.status&&bt.paid_at&&bt.paid_at>=r&&bt.paid_at{const Yn=new Date(1e3*(bt.created_at||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(bt.amount_sent_msat||0),WA[Yn].series[0].value=WA[Yn].series[0].value+(bt.amount_sent_msat||0)/1e3,WA[Yn].series[0].extra.total=WA[Yn].series[0].extra.total+1,this.transactionsReportSummary}),mn?.map(bt=>{const Yn=new Date(1e3*+(bt.paid_at||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(bt.amount_received_msat||0),WA[Yn].series[1].value=WA[Yn].series[1].value+(bt.amount_received_msat||0)/1e3,WA[Yn].series[1].extra.total=WA[Yn].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let bt=0;bt{const Yn=Math.floor((+(bt.created_at||0)-r)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(bt.amount_sent_msat||0),WA[Yn].series[0].value=WA[Yn].series[0].value+(bt.amount_sent_msat||0)/1e3,WA[Yn].series[0].extra.total=WA[Yn].series[0].extra.total+1,this.transactionsReportSummary}),mn?.map(bt=>{const Yn=Math.floor((+(bt.paid_at||0)-r)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(bt.amount_received_msat||0),WA[Yn].series[1].value=WA[Yn].series[1].value+(bt.amount_received_msat||0)/1e3,WA[Yn].series[1].extra.total=WA[Yn].series[1].extra.total+1,this.transactionsReportSummary})}return WA}prepareTableData(){return this.transactionsReportData?.reduce((i,o)=>o.series[0].extra.total>0||o.series[1].extra.total>0?i.concat({date:o.date,amount_paid:o.series[0].value,num_payments:o.series[0].extra.total,amount_received:o.series[1].value,num_invoices:o.series[1].extra.total}):i,[])}onSelectionChange(i){const o=i.selDate.getMonth(),r=i.selDate.getFullYear();this.reportPeriod=i.selScrollRange,this.reportPeriod===c.rs[1]?(this.startDate=new Date(r,0,1,0,0,0),this.endDate=new Date(r,11,31,23,59,59)):(this.startDate=new Date(r,o,1,0,0,0),this.endDate=new Date(r,o,this.getMonthDays(o,r),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(i,o){return 1===i&&o%4==0?c.KR[i].days+1:c.KR[i].days}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(Q.h),A.rXU(_.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-transactions-report"]],hostBindings:function(o,r){1&o&&A.bIt("mouseup",function(WA){return r.onChartMouseUp(WA)})},standalone:!1,decls:9,vars:4,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"two-color",3,"select","mouseup","view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding"],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(o,r){1&o&&(A.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),A.bIt("stepChanged",function(WA){return r.onSelectionChange(WA)}),A.k0s(),A.j41(2,"div",3),A.DNE(3,Uu,3,3,"div",4)(4,Gu,2,0,"div",5),A.j41(5,"div",6),A.DNE(6,zu,3,13,"ngx-charts-bar-vertical-2d",7),A.k0s(),A.j41(7,"div",6),A.DNE(8,ku,1,5,"rtl-transactions-report-table",8),A.k0s()()()),2&o&&(A.R7$(3),A.Y8G("ngIf",r.transactionsNonZeroReportData.length>0),A.R7$(),A.Y8G("ngIf",r.transactionsNonZeroReportData.length<=0),A.R7$(2),A.Y8G("ngIf",r.transactionsNonZeroReportData.length>0),A.R7$(2),A.Y8G("ngIf",r.transactionsNonZeroReportData.length>0))},dependencies:[Ee.bT,D.DJ,D.sA,D.UI,L0.Dl,z0.m,Nu.T,Ee.QX],encapsulation:2,data:{animation:[G0.q]}}))}return n(),l})();var sn=Ve(17186),ju=Ve(90013);function Ou(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",9),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.activeLink=o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("routerLink",A.mNQ(e.link))("active",i.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let Ju=(()=>{var n;class l{constructor(i){this.router=i,this.faSearch=d.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new B.B,new B.B,new B.B,new B.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,M.Q)(this.unSubs[0]),(0,Z.p)(o=>o instanceof Pt.gx)).subscribe({next:o=>{const r=this.links.find(nA=>o.urlAfterRedirects.includes(nA.link));this.activeLink=r?r.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(Pt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-graph"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Graph Lookups"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),A.DNE(8,Ou,2,4,"div",7),A.k0s(),A.nrm(9,"mat-tab-nav-panel",null,0),A.j41(11,"div",8),A.nrm(12,"router-outlet"),A.k0s()()()()),2&o){const nA=A.sdS(10);A.R7$(),A.Y8G("icon",r.faSearch),A.R7$(6),A.Y8G("tabPanel",nA),A.R7$(),A.Y8G("ngForOf",r.links)}},dependencies:[Ee.Sq,y.aY,lA.RN,lA.m2,D.DJ,D.sA,D.UI,$.Bu,$.hQ,$.Ql,Pt.n3,Hn.Wk],encapsulation:2}))}return n(),l})();var _u=Ve(82643),Vu=Ve(77235);function Wu(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.offerError)}}function Ku(n,l){if(1&n&&(A.j41(0,"div",21),A.nrm(1,"fa-icon",22),A.DNE(2,Wu,2,1,"span",23),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.offerError)}}let Xu=(()=>{var n;class l{constructor(i,o,r,nA,WA,Ae){this.dialogRef=i,this.data=o,this.store=r,this.decimalPipe=nA,this.commonService=WA,this.actions=Ae,this.faExclamationTriangle=d.zpE,this.description="",this.issuer="",this.offerValueHint="",this.information={},this.pageSize=c.md,this.offerError="",this.unSubs=[new B.B,new B.B,new B.B,new B.B,new B.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(x._c).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(U.mH).pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{this.information=i,this.issuer=this.information.alias}),this.actions.pipe((0,M.Q)(this.unSubs[2]),(0,Z.p)(i=>i.type===c.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(i=>{i.type===c.TC.UPDATE_API_CALL_STATUS_CLN&&"SaveNewOffer"===i.payload.action&&(i.payload.status===c.wn.ERROR&&(this.offerError=i.payload.message),i.payload.status===c.wn.COMPLETED&&this.dialogRef.close())})}onAddOffer(){this.offerError="";const i=this.offerValue?(1e3*this.offerValue).toString():"any";this.store.dispatch((0,xA.y0)({payload:{amount:i,description:this.description,issuer:this.issuer}}))}resetData(){this.description="",this.issuer=this.information.alias,this.offerValue=null,this.offerValueHint="",this.offerError=""}onOfferValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.offerValue&&this.offerValue>99&&(this.offerValueHint="",this.commonService.convertCurrency(this.offerValue,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,M.Q)(this.unSubs[3])).subscribe({next:i=>{this.offerValueHint="= "+this.decimalPipe.transform(i.OTHER,c.k.OTHER)+" "+i.unit},error:i=>{this.offerValueHint="Conversion Error: "+i}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(UA.CP),A.rXU(UA.Vh),A.rXU(_.il),A.rXU(Ee.QX),A.rXU(Q.h),A.rXU(QA.En))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-create-offer"]],standalone:!1,decls:34,vars:8,consts:[["addOfferForm","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","6","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","tabindex","1","name","description",3,"ngModelChange","ngModel"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","tabindex","2","name","offerValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex","58","fxLayoutAlign","start end"],["matInput","","tabindex","3","name","issuer",3,"ngModelChange","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","4","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","5",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),A.EFF(5,"Create Offer"),A.k0s()(),A.j41(6,"button",6),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),A.EFF(13,"Description"),A.k0s(),A.j41(14,"input",10),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.description,Ae)||(r.description=Ae),E.Njj(Ae)}),A.k0s()(),A.j41(15,"div",11)(16,"mat-form-field",12)(17,"mat-label"),A.EFF(18,"Amount"),A.k0s(),A.j41(19,"input",13),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.offerValue,Ae)||(r.offerValue=Ae),E.Njj(Ae)}),A.bIt("keyup",function(){return E.eBV(nA),E.Njj(r.onOfferValueChange())}),A.k0s(),A.j41(20,"span",14),A.EFF(21,"Sats "),A.k0s(),A.j41(22,"mat-hint"),A.EFF(23),A.k0s()(),A.j41(24,"mat-form-field",15)(25,"mat-label"),A.EFF(26,"Issuer"),A.k0s(),A.j41(27,"input",16),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.issuer,Ae)||(r.issuer=Ae),E.Njj(Ae)}),A.k0s()()(),A.DNE(28,Ku,3,2,"div",17),A.j41(29,"div",18)(30,"button",19),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.resetData())}),A.EFF(31,"Clear Field"),A.k0s(),A.j41(32,"button",20),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onAddOffer())}),A.EFF(33,"Create Offer"),A.k0s()()()()()()}2&o&&(A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(8),A.R50("ngModel",r.description),A.R7$(5),A.Y8G("step",100)("min",1),A.R50("ngModel",r.offerValue),A.R7$(4),A.JRh(r.offerValueHint),A.R7$(4),A.R50("ngModel",r.issuer),A.R7$(),A.Y8G("ngIf",""!==r.offerError))},dependencies:[Ee.bT,gA.qT,gA.me,gA.Q0,gA.BC,gA.cb,gA.VZ,gA.vS,gA.cV,y.aY,UA.tx,JA.$z,lA.m2,lA.MM,Be.fg,KA.rl,KA.nJ,KA.MV,KA.yw,D.DJ,D.sA,D.UI,kA.N,CA.V],encapsulation:2}))}return n(),l})();var k0=Ve(32142);const Zu=()=>["all"],qu=n=>({"error-border":n}),$u=()=>["no_offer"],H0=n=>({"mr-0":n}),j0=n=>({width:n}),AE=n=>({"display-none":n});function eE(n,l){if(1&n&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function tE(n,l){1&n&&A.nrm(0,"mat-progress-bar",35)}function nE(n,l){1&n&&A.nrm(0,"th",36)}function iE(n,l){if(1&n&&A.nrm(0,"span",40),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,H0,e.screenSize===e.screenSizeEnum.XS))}}function sE(n,l){if(1&n&&A.nrm(0,"span",41),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,H0,e.screenSize===e.screenSizeEnum.XS))}}function rE(n,l){if(1&n&&(A.j41(0,"td",37),A.DNE(1,iE,1,3,"span",38)(2,sE,1,3,"span",39),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",e.active),A.R7$(),A.Y8G("ngIf",!e.active)}}function aE(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Offer ID"),A.k0s())}function oE(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,j0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.SpI(" ",e.offer_id," ")}}function lE(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Single Use"),A.k0s())}function cE(n,l){if(1&n&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(e.single_use?"Yes":"No")}}function BE(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Used"),A.k0s())}function gE(n,l){if(1&n&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",e.used?"Yes":"No"," ")}}function fE(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Invoice"),A.k0s())}function uE(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,j0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.SpI(" ",e.bolt12," ")}}function EE(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",48),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function hE(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",48),A.bIt("click",function(){E.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return E.Njj(r.onDisableOffer(o))}),A.EFF(1,"Disable Offer"),A.k0s()}}function wE(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",48),A.bIt("click",function(){E.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return E.Njj(r.onPrintOffer(o))}),A.EFF(1,"Export QR code"),A.k0s()}}function CE(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",49)(1,"div",46)(2,"mat-select",50),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",48),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.onOfferClick(o))}),A.EFF(5,"View Info"),A.k0s(),A.DNE(6,hE,2,0,"mat-option",51)(7,wE,2,0,"mat-option",51),A.k0s()()()}if(2&n){const e=l.$implicit;A.R7$(6),A.Y8G("ngIf",e.active),A.R7$(),A.Y8G("ngIf",e.active)}}function dE(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No offer available."),A.k0s())}function QE(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting offers..."),A.k0s())}function mE(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function ME(n,l){if(1&n&&(A.j41(0,"td",52),A.DNE(1,dE,2,0,"p",53)(2,QE,2,0,"p",53)(3,mE,2,1,"p",53),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.offers&&e.offers.data)||(null==e.offers||null==e.offers.data?null:e.offers.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.offers&&e.offers.data)||(null==e.offers||null==e.offers.data?null:e.offers.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.offers&&e.offers.data)||(null==e.offers||null==e.offers.data?null:e.offers.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function pE(n,l){if(1&n&&A.nrm(0,"tr",54),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,AE,(null==e.offers?null:e.offers.data)&&(null==e.offers||null==e.offers.data?null:e.offers.data.length)>0))}}function DE(n,l){1&n&&A.nrm(0,"tr",55)}function IE(n,l){1&n&&A.nrm(0,"tr",56)}let FE=(()=>{var n;class l{constructor(i,o,r,nA,WA,Ae,mn){this.logger=i,this.store=o,this.commonService=r,this.rtlEffects=nA,this.dataService=WA,this.decimalPipe=Ae,this.camelCaseWithReplace=mn,this.faHistory=d.Int,this.nodePageDefs=c.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"offers",recordsPerPage:c.md,sortBy:"offer_id",sortOrder:c.oi.DESCENDING},this.newlyAddedOfferMemo="",this.newlyAddedOfferValue=0,this.description="",this.offerValue=null,this.offerValueHint="",this.displayedColumns=[],this.offerPaymentReq="",this.offerJSONArr=[],this.information={},this.private=!1,this.expiryStep=100,this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new B.B,new B.B,new B.B,new B.B,new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(x._c).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(U.mH).pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(U.av).pipe((0,M.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("active"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(U.O5).pipe((0,M.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.offerJSONArr=i.offers||[],this.offerJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr),this.logger.info(i)})}ngAfterViewInit(){this.offerJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr)}openCreateOfferModal(){this.store.dispatch((0,w.xO)({payload:{data:{pageSize:this.pageSize,component:Xu}}}))}onOfferClick(i){this.store.dispatch((0,w.xO)({payload:{data:{offer:{used:i.used,single_use:i.single_use,active:i.active,offer_id:i.offer_id,bolt12:i.bolt12,created:i.created,label:i.label},newlyAdded:!1,component:k0.f}}}))}onDisableOffer(i){this.store.dispatch((0,w.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Disable Offer",titleMessage:"Disabling Offer: "+(i.offer_id||i.bolt12),noBtnText:"Cancel",yesBtnText:"Disable"}}})),this.rtlEffects.closeConfirm.pipe((0,M.Q)(this.unSubs[4])).subscribe(o=>{o&&this.store.dispatch((0,xA.jQ)({payload:{offer_id:i.offer_id}}))})}onPrintOffer(i){this.dataService.decodePayment(i.bolt12,!1).pipe((0,Gt.s)(1)).subscribe(o=>{o.offer_id&&!o.offer_amount_msat&&(o.offer_amount_msat=0);const r={pageSize:"A5",pageOrientation:"portrait",pageMargins:[10,50,10,50],background:{svg:'\n \n \n \n \n \n ',width:249,height:333,absolutePosition:{x:84,y:160}},header:{text:o.offer_issuer||"",alignment:"center",fontSize:25,color:"#272727",margin:[0,20,0,0]},content:[{svg:'',width:249,height:40,alignment:"center"},{text:o.offer_description?o.offer_description.substring(0,160):"",alignment:"center",fontSize:16,color:"#5C5C5C"},{qr:i.bolt12,eccLevel:"M",fit:"227",alignment:"center",absolutePosition:{x:7,y:205}},{text:o?.offer_amount_msat&&0!==o?.offer_amount_msat?this.decimalPipe.transform((o.offer_amount_msat||0)/1e3)+" SATS":"Open amount",fontSize:20,bold:!1,color:"white",alignment:"center",absolutePosition:{x:0,y:430}},{text:"SCAN TO PAY",fontSize:22,bold:!0,color:"white",alignment:"center",absolutePosition:{x:0,y:455}}],footer:{svg:'\n \n \n \n \n ',alignment:"center"}};_u.createPdf(r,null,null,Vu.pdfMake.vfs).download("Offer-"+(o&&o.offer_description?o.offer_description:i.bolt12))})}applyFilter(){this.offers.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.offers.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.active?" active":" inactive")+(i.used?" yes":" no")+(i.single_use?" single":" multiple")+JSON.stringify(i).toLowerCase(),("active"===o||"inactive"===o||"single"===o||"multiple"===o)&&(o=" "+o);break;case"active":r=i?.active?"active":"inactive";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"active"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadOffersTable(i){this.offers=new L.I6(i?[...i]:[]),this.offers.sort=this.sort,this.offers.sortingDataAccessor=(o,r)=>o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null,this.offers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.offers.data&&this.offers.data.length>0&&this.commonService.downloadFile(this.offers.data,"Offers")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(_.il),A.rXU(Q.h),A.rXU(H.H),A.rXU(Rt.u),A.rXU(Ee.QX),A.rXU(TA.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-offers-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(BA.B4,5),A.GBs(b.iy,5)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.sort=nA.first),A.mGM(nA=A.lsd())&&(r.paginator=nA.first)}},standalone:!1,features:[A.Jv_([{provide:eA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:b.xX,useValue:(0,c.on)("Offers")}])],decls:49,vars:19,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","active"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","offer_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","single_use"],["matColumnDef","used"],["matColumnDef","bolt12"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_offer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active"],["mat-cell",""],["class","dot green","matTooltip","Active","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Inactive","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Active","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Inactive","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"button",3),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.openCreateOfferModal())}),A.EFF(3,"Create Offer"),A.k0s()(),A.j41(4,"div",4)(5,"div",5)(6,"div",6),A.nrm(7,"fa-icon",7),A.j41(8,"span",8),A.EFF(9,"Offers History"),A.k0s()(),A.j41(10,"div",9)(11,"mat-form-field",10)(12,"mat-label"),A.EFF(13,"Filter By"),A.k0s(),A.j41(14,"mat-select",11),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.selFilterBy,Ae)||(r.selFilterBy=Ae),E.Njj(Ae)}),A.bIt("selectionChange",function(){return E.eBV(nA),r.selFilter="",E.Njj(r.applyFilter())}),A.j41(15,"perfect-scrollbar"),A.DNE(16,eE,2,2,"mat-option",12),A.k0s()()(),A.j41(17,"mat-form-field",10)(18,"mat-label"),A.EFF(19,"Filter"),A.k0s(),A.j41(20,"input",13),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.selFilter,Ae)||(r.selFilter=Ae),E.Njj(Ae)}),A.bIt("input",function(){return E.eBV(nA),E.Njj(r.applyFilter())})("keyup",function(){return E.eBV(nA),E.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(21,"div",14),A.DNE(22,tE,1,0,"mat-progress-bar",15),A.j41(23,"table",16,0),A.qex(25,17),A.DNE(26,nE,1,0,"th",18)(27,rE,3,2,"td",19),A.bVm(),A.qex(28,20),A.DNE(29,aE,2,0,"th",21)(30,oE,4,4,"td",19),A.bVm(),A.qex(31,22),A.DNE(32,lE,2,0,"th",21)(33,cE,2,1,"td",19),A.bVm(),A.qex(34,23),A.DNE(35,BE,2,0,"th",21)(36,gE,2,1,"td",19),A.bVm(),A.qex(37,24),A.DNE(38,fE,2,0,"th",21)(39,uE,4,4,"td",19),A.bVm(),A.qex(40,25),A.DNE(41,EE,6,0,"th",26)(42,CE,8,2,"td",27),A.bVm(),A.qex(43,28),A.DNE(44,ME,4,3,"td",29),A.bVm(),A.DNE(45,pE,1,3,"tr",30)(46,DE,1,0,"tr",31)(47,IE,1,0,"tr",32),A.k0s()(),A.nrm(48,"mat-paginator",33),A.k0s()()}2&o&&(A.R7$(7),A.Y8G("icon",r.faHistory),A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,Zu).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(2),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.offers)("ngClass",A.eq3(16,qu,""!==r.errorMessage)),A.R7$(22),A.Y8G("matFooterRowDef",A.lJ4(18,$u)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("hidePageSize",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[Ee.YU,Ee.Sq,Ee.bT,Ee.B3,gA.me,gA.BC,gA.vS,y.aY,JA.$z,Be.fg,KA.rl,KA.nJ,q.HM,D.DJ,D.sA,D.UI,rA.PW,rA.eI,eA.VO,eA.$2,ae.wT,BA.B4,BA.aE,L.Zl,L.tL,L.ji,L.cC,L.YV,L.iL,L.Zq,L.xW,L.KS,L.$R,L.Qo,L.YZ,L.NB,L.iF,ie.oV,b.iy,wA.ZF,wA.Ld],styles:[".mat-column-active[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return n(),l})();const xE=()=>["all"],yE=n=>({"error-border":n}),YE=()=>["no_offer"],Q0=n=>({width:n}),vE=n=>({"display-none":n});function bE(n,l){if(1&n&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function RE(n,l){1&n&&A.nrm(0,"mat-progress-bar",35)}function SE(n,l){1&n&&(A.j41(0,"th",36),A.EFF(1,"Updated At"),A.k0s())}function NE(n,l){if(1&n&&(A.j41(0,"td",37),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,e.lastUpdatedAt,"dd/MMM/y HH:mm"))}}function TE(n,l){1&n&&(A.j41(0,"th",36),A.EFF(1,"Title"),A.k0s())}function PE(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Q0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.title)}}function UE(n,l){1&n&&(A.j41(0,"th",36),A.EFF(1,"Description"),A.k0s())}function GE(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Q0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.description)}}function LE(n,l){1&n&&(A.j41(0,"th",36),A.EFF(1,"Issuer"),A.k0s())}function zE(n,l){if(1&n&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(e.issuer)}}function kE(n,l){1&n&&(A.j41(0,"th",36),A.EFF(1,"Invoice"),A.k0s())}function HE(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Q0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.bolt12)}}function jE(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Amount (Sats)"),A.k0s())}function OE(n,l){if(1&n&&(A.j41(0,"td",37)(1,"span",41),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(0===e.amountMSat?"Open":A.bMT(3,1,e.amountMSat/1e3))}}function JE(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",42)(1,"div",43)(2,"mat-select",44),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",45),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function _E(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",46)(1,"div",43)(2,"mat-select",47),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",45),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.onOfferBookmarkClick(o))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",45),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.onRePayOffer(o))}),A.EFF(7,"Pay Again"),A.k0s(),A.j41(8,"mat-option",45),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.onDeleteBookmark(o))}),A.EFF(9,"Delete Bookmark"),A.k0s()()()()}}function VE(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No offer bookmarked."),A.k0s())}function WE(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting offer bookmarks..."),A.k0s())}function KE(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function XE(n,l){if(1&n&&(A.j41(0,"td",48),A.DNE(1,VE,2,0,"p",49)(2,WE,2,0,"p",49)(3,KE,2,1,"p",49),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.offersBookmarks&&e.offersBookmarks.data)||(null==e.offersBookmarks||null==e.offersBookmarks.data?null:e.offersBookmarks.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.offersBookmarks&&e.offersBookmarks.data)||(null==e.offersBookmarks||null==e.offersBookmarks.data?null:e.offersBookmarks.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.offersBookmarks&&e.offersBookmarks.data)||(null==e.offersBookmarks||null==e.offersBookmarks.data?null:e.offersBookmarks.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function ZE(n,l){if(1&n&&A.nrm(0,"tr",50),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,vE,(null==e.offersBookmarks?null:e.offersBookmarks.data)&&(null==e.offersBookmarks||null==e.offersBookmarks.data?null:e.offersBookmarks.data.length)>0))}}function qE(n,l){1&n&&A.nrm(0,"tr",51)}function $E(n,l){1&n&&A.nrm(0,"tr",52)}let Ah=(()=>{var n;class l{constructor(i,o,r,nA,WA,Ae){this.logger=i,this.store=o,this.commonService=r,this.rtlEffects=nA,this.datePipe=WA,this.camelCaseWithReplace=Ae,this.faHistory=d.Int,this.nodePageDefs=c.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"offer_bookmarks",recordsPerPage:c.md,sortBy:"lastUpdatedAt",sortOrder:c.oi.DESCENDING},this.displayedColumns=[],this.offersBookmarks=new L.I6([]),this.offersBookmarksJSONArr=[],this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.selFilter="",this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new B.B,new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(U.av).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(U.ip).pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.offersBookmarksJSONArr=i.offersBookmarks||[],this.offersBookmarksJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offersBookmarksJSONArr),this.logger.info(i)})}ngAfterViewInit(){this.offersBookmarksJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offersBookmarksJSONArr)}onOfferBookmarkClick(i){this.store.dispatch((0,w.xO)({payload:{data:{offer:{bolt12:i.bolt12},newlyAdded:!1,component:k0.f}}}))}onDeleteBookmark(i){this.store.dispatch((0,w.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Delete Bookmark",titleMessage:"Deleting Bookmark: "+(i.title||i.description),noBtnText:"Cancel",yesBtnText:"Delete"}}})),this.rtlEffects.closeConfirm.pipe((0,M.Q)(this.unSubs[2])).subscribe(o=>{o&&this.store.dispatch((0,xA.ED)({payload:{bolt12:i.bolt12}}))})}onRePayOffer(i){this.store.dispatch((0,w.xO)({payload:{data:{paymentType:c.Y0.OFFER,bolt12:i.bolt12,offerTitle:i.title,component:vn}}}))}applyFilter(){this.offersBookmarks.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.offersBookmarks.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=JSON.stringify(i).toLowerCase();break;case"lastUpdatedAt":r=this.datePipe.transform(new Date(i.lastUpdatedAt||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"amountMSat":r=(i.amountMSat&&0!==i.amountMSat?(i.amountMSat/1e3).toString():"Open")||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return r.includes(o)}}loadOffersTable(i){this.offersBookmarks=new L.I6(i?[...i]:[]),this.offersBookmarks.sort=this.sort,this.offersBookmarks.sortingDataAccessor=(o,r)=>o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null,this.offersBookmarks.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.offersBookmarks.data&&this.offersBookmarks.data.length>0&&this.commonService.downloadFile(this.offersBookmarks.data,"OfferBookmarks")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(_.il),A.rXU(Q.h),A.rXU(H.H),A.rXU(Ee.vh),A.rXU(TA.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-offer-bookmarks-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(BA.B4,5),A.GBs(b.iy,5)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.sort=nA.first),A.mGM(nA=A.lsd())&&(r.paginator=nA.first)}},standalone:!1,features:[A.Jv_([{provide:eA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:b.xX,useValue:(0,c.on)("Offer Bookmarks")}])],decls:50,vars:19,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","lastUpdatedAt"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","title"],["matColumnDef","description"],["matColumnDef","issuer"],["matColumnDef","bolt12"],["matColumnDef","amountMSat"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_offer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",1),A.nrm(1,"div",2),A.j41(2,"div",3)(3,"div",4)(4,"div",5),A.nrm(5,"fa-icon",6),A.j41(6,"span",7),A.EFF(7,"Offer Bookmarks"),A.k0s()(),A.j41(8,"div",8)(9,"mat-form-field",9)(10,"mat-label"),A.EFF(11,"Filter By"),A.k0s(),A.j41(12,"mat-select",10),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.selFilterBy,Ae)||(r.selFilterBy=Ae),E.Njj(Ae)}),A.bIt("selectionChange",function(){return E.eBV(nA),r.selFilter="",E.Njj(r.applyFilter())}),A.j41(13,"perfect-scrollbar"),A.DNE(14,bE,2,2,"mat-option",11),A.k0s()()(),A.j41(15,"mat-form-field",9)(16,"mat-label"),A.EFF(17,"Filter"),A.k0s(),A.j41(18,"input",12),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.selFilter,Ae)||(r.selFilter=Ae),E.Njj(Ae)}),A.bIt("input",function(){return E.eBV(nA),E.Njj(r.applyFilter())})("keyup",function(){return E.eBV(nA),E.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(19,"div",13),A.DNE(20,RE,1,0,"mat-progress-bar",14),A.j41(21,"table",15,0),A.qex(23,16),A.DNE(24,SE,2,0,"th",17)(25,NE,3,4,"td",18),A.bVm(),A.qex(26,19),A.DNE(27,TE,2,0,"th",17)(28,PE,4,4,"td",18),A.bVm(),A.qex(29,20),A.DNE(30,UE,2,0,"th",17)(31,GE,4,4,"td",18),A.bVm(),A.qex(32,21),A.DNE(33,LE,2,0,"th",17)(34,zE,2,1,"td",18),A.bVm(),A.qex(35,22),A.DNE(36,kE,2,0,"th",17)(37,HE,4,4,"td",18),A.bVm(),A.qex(38,23),A.DNE(39,jE,2,0,"th",24)(40,OE,4,3,"td",18),A.bVm(),A.qex(41,25),A.DNE(42,JE,6,0,"th",26)(43,_E,10,0,"td",27),A.bVm(),A.qex(44,28),A.DNE(45,XE,4,3,"td",29),A.bVm(),A.DNE(46,ZE,1,3,"tr",30)(47,qE,1,0,"tr",31)(48,$E,1,0,"tr",32),A.k0s()(),A.nrm(49,"mat-paginator",33),A.k0s()()}2&o&&(A.R7$(5),A.Y8G("icon",r.faHistory),A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,xE).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(2),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.offersBookmarks)("ngClass",A.eq3(16,yE,""!==r.errorMessage)),A.R7$(25),A.Y8G("matFooterRowDef",A.lJ4(18,YE)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("hidePageSize",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[Ee.YU,Ee.Sq,Ee.bT,Ee.B3,gA.me,gA.BC,gA.vS,y.aY,Be.fg,KA.rl,KA.nJ,q.HM,D.DJ,D.sA,D.UI,rA.PW,rA.eI,eA.VO,eA.$2,ae.wT,BA.B4,BA.aE,L.Zl,L.tL,L.ji,L.cC,L.YV,L.iL,L.Zq,L.xW,L.KS,L.$R,L.Qo,L.YZ,L.NB,L.iF,b.iy,wA.ZF,wA.Ld,Ee.QX,Ee.vh],encapsulation:2}))}return n(),l})();const eh=()=>["all"],th=()=>["no_event"],O0=n=>({width:n}),nh=n=>({"display-none":n});function ih(n,l){if(1&n&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function sh(n,l){if(1&n&&(A.j41(0,"mat-option",17),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function rh(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",7)(1,"div",8),A.nrm(2,"fa-icon",9),A.j41(3,"span"),A.EFF(4,"Maximum 1,000 local failed transactions only."),A.k0s()(),A.j41(5,"div",10),A.nrm(6,"div",11),A.j41(7,"div",12)(8,"mat-form-field",13)(9,"mat-label"),A.EFF(10,"Filter By"),A.k0s(),A.j41(11,"mat-select",14),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.selFilterBy,o)||(r.selFilterBy=o),E.Njj(o)}),A.bIt("selectionChange",function(){E.eBV(e);const o=A.XpG();return o.selFilter="",E.Njj(o.applyFilter())}),A.j41(12,"perfect-scrollbar"),A.DNE(13,sh,2,2,"mat-option",15),A.k0s()()(),A.j41(14,"mat-form-field",13)(15,"mat-label"),A.EFF(16,"Filter"),A.k0s(),A.j41(17,"input",16),A.mxI("ngModelChange",function(o){E.eBV(e);const r=A.XpG();return A.DH7(r.selFilter,o)||(r.selFilter=o),E.Njj(o)}),A.bIt("input",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.applyFilter())})("keyup",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.applyFilter())}),A.k0s()()()()()}if(2&n){const e=A.XpG();A.R7$(2),A.Y8G("icon",e.faExclamationTriangle),A.R7$(9),A.R50("ngModel",e.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(4,eh).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter)}}function ah(n,l){1&n&&A.nrm(0,"mat-progress-bar",40)}function oh(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Received Time"),A.k0s())}function lh(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.received_time),"dd/MMM/y HH:mm"))}}function ch(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"In Channel ID"),A.k0s())}function Bh(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.in_channel)}}function gh(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"In Channel"),A.k0s())}function fh(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,O0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.in_channel_alias)}}function uh(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Out Channel ID"),A.k0s())}function Eh(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.out_channel)}}function hh(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Out Channel"),A.k0s())}function wh(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,O0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.out_channel_alias)}}function Ch(n,l){1&n&&(A.j41(0,"th",45),A.EFF(1,"Amount In (Sats)"),A.k0s())}function dh(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",46),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.in_msat)/1e3,(null==e?null:e.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Qh(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Style"),A.k0s())}function mh(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.style)}}function Mh(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Fail Reason"),A.k0s())}function ph(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.JRh(i.CLNFailReason[null==e?null:e.failreason])}}function Dh(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(){E.eBV(e);const o=A.XpG(2);return E.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Ih(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",51)(1,"button",52),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG(2);return E.Njj(r.onFailedLocalEventClick(o))}),A.EFF(2,"View Info"),A.k0s()()}}function Fh(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No failed transaction available."),A.k0s())}function xh(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting failed transactions..."),A.k0s())}function yh(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function Yh(n,l){if(1&n&&(A.j41(0,"td",53),A.DNE(1,Fh,2,0,"p",54)(2,xh,2,0,"p",54)(3,yh,2,1,"p",54),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.failedLocalForwardingEvents&&e.failedLocalForwardingEvents.data)||(null==e.failedLocalForwardingEvents||null==e.failedLocalForwardingEvents.data?null:e.failedLocalForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.failedLocalForwardingEvents&&e.failedLocalForwardingEvents.data)||(null==e.failedLocalForwardingEvents||null==e.failedLocalForwardingEvents.data?null:e.failedLocalForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.failedLocalForwardingEvents&&e.failedLocalForwardingEvents.data)||(null==e.failedLocalForwardingEvents||null==e.failedLocalForwardingEvents.data?null:e.failedLocalForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function vh(n,l){if(1&n&&A.nrm(0,"tr",55),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,nh,(null==e.failedLocalForwardingEvents?null:e.failedLocalForwardingEvents.data)&&(null==e.failedLocalForwardingEvents||null==e.failedLocalForwardingEvents.data?null:e.failedLocalForwardingEvents.data.length)>0))}}function bh(n,l){1&n&&A.nrm(0,"tr",56)}function Rh(n,l){1&n&&A.nrm(0,"tr",57)}function Sh(n,l){if(1&n&&(A.j41(0,"div",18),A.DNE(1,ah,1,0,"mat-progress-bar",19),A.j41(2,"table",20,0),A.qex(4,21),A.DNE(5,oh,2,0,"th",22)(6,lh,3,4,"td",23),A.bVm(),A.qex(7,24),A.DNE(8,ch,2,0,"th",22)(9,Bh,2,1,"td",23),A.bVm(),A.qex(10,25),A.DNE(11,gh,2,0,"th",22)(12,fh,4,4,"td",23),A.bVm(),A.qex(13,26),A.DNE(14,uh,2,0,"th",22)(15,Eh,2,1,"td",23),A.bVm(),A.qex(16,27),A.DNE(17,hh,2,0,"th",22)(18,wh,4,4,"td",23),A.bVm(),A.qex(19,28),A.DNE(20,Ch,2,0,"th",29)(21,dh,4,4,"td",23),A.bVm(),A.qex(22,30),A.DNE(23,Qh,2,0,"th",22)(24,mh,2,1,"td",23),A.bVm(),A.qex(25,31),A.DNE(26,Mh,2,0,"th",22)(27,ph,2,1,"td",23),A.bVm(),A.qex(28,32),A.DNE(29,Dh,6,0,"th",33)(30,Ih,3,0,"td",34),A.bVm(),A.qex(31,35),A.DNE(32,Yh,4,3,"td",36),A.bVm(),A.DNE(33,vh,1,3,"tr",37)(34,bh,1,0,"tr",38)(35,Rh,1,0,"tr",39),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.failedLocalForwardingEvents),A.R7$(31),A.Y8G("matFooterRowDef",A.lJ4(7,th)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}function Nh(n,l){if(1&n&&A.nrm(0,"mat-paginator",58),2&n){const e=A.XpG();A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("hidePageSize",e.screenSize!==e.screenSizeEnum.XS)}}let Th=(()=>{var n;class l{constructor(i,o,r,nA,WA){this.logger=i,this.commonService=o,this.store=r,this.datePipe=nA,this.camelCaseWithReplace=WA,this.faExclamationTriangle=d.zpE,this.nodePageDefs=c.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"local_failed",recordsPerPage:c.md,sortBy:"received_time",sortOrder:c.oi.DESCENDING},this.CLNFailReason=c.iI,this.failedLocalEvents=[],this.errorMessage="",this.displayedColumns=[],this.failedLocalForwardingEvents=new L.I6([]),this.selFilter="",this.totalLocalFailedTransactions=0,this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new B.B,new B.B,new B.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,xA.uK)({payload:{status:c.xk.LOCAL_FAILED}})),this.store.select(U.av).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(U.aJ).pipe((0,M.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalLocalFailedTransactions=i.localFailedForwardingHistory.totalForwards||0,this.failedLocalEvents=i.localFailedForwardingHistory.listForwards||[],this.failedLocalEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadLocalfailedLocalEventsTable(this.failedLocalEvents),this.logger.info(i)})}ngAfterViewInit(){this.failedLocalEvents.length>0&&this.loadLocalfailedLocalEventsTable(this.failedLocalEvents)}onFailedLocalEventClick(i){this.store.dispatch((0,w.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Local Failed Event Information",message:[[{key:"received_time",value:i.received_time,title:"Received Time",width:50,type:c.UN.DATE_TIME},{key:"in_channel_alias",value:i.in_channel_alias,title:"Inbound Channel",width:50,type:c.UN.STRING}],[{key:"in_msatoshi",value:i.in_msat,title:"Amount In (mSats)",width:100,type:c.UN.NUMBER}],[{key:"failreason",value:i.failreason?this.CLNFailReason[i.failreason]:"",title:"Reason for Failure",width:100,type:c.UN.STRING}]]}}}))}applyFilter(){this.failedLocalForwardingEvents.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.failedLocalForwardingEvents.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.received_time?this.datePipe.transform(new Date(1e3*i.received_time),"dd/MMM/y HH:mm")?.toLowerCase():"")+(i.in_channel_alias?i.in_channel_alias.toLowerCase():"")+(i.failreason&&this.CLNFailReason[i.failreason]?this.CLNFailReason[i.failreason].toLowerCase():"")+(i.in_msat?i.in_msat:"");break;case"received_time":r=this.datePipe.transform(new Date(1e3*(i.received_time||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"in_msatoshi":r=(+(i.in_msat||0)/1e3).toString()||"";break;case"failreason":r=i?.failreason?this.CLNFailReason[i?.failreason]:"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"failreason"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadLocalfailedLocalEventsTable(i){this.failedLocalForwardingEvents=new L.I6([...i]),this.failedLocalForwardingEvents.sort=this.sort,this.failedLocalForwardingEvents.sortingDataAccessor=(o,r)=>{switch(r){case"in_msatoshi":return o.in_msat;case"failreason":return o.failreason?this.CLNFailReason[o.failreason]:"";default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.failedLocalForwardingEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.failedLocalForwardingEvents)}onDownloadCSV(){this.failedLocalForwardingEvents&&this.failedLocalForwardingEvents.data&&this.failedLocalForwardingEvents.data.length>0&&this.commonService.downloadFile(this.failedLocalForwardingEvents.data,"Local-failed-transactions")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(Q.h),A.rXU(_.il),A.rXU(Ee.vh),A.rXU(TA.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-local-failed-history"]],viewQuery:function(o,r){if(1&o&&(A.GBs(BA.B4,5),A.GBs(b.iy,5)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.sort=nA.first),A.mGM(nA=A.lsd())&&(r.paginator=nA.first)}},standalone:!1,features:[A.Jv_([{provide:eA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:b.xX,useValue:(0,c.on)("Local failed events")}])],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","hidePageSize",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-warn","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","received_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","in_channel"],["matColumnDef","in_channel_alias"],["matColumnDef","out_channel"],["matColumnDef","out_channel_alias"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","style"],["matColumnDef","failreason"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"]],template:function(o,r){1&o&&(A.j41(0,"div",1),A.DNE(1,ih,2,1,"div",2)(2,rh,18,5,"div",3)(3,Sh,36,8,"div",4)(4,Nh,1,3,"mat-paginator",5),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",""!==r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage))},dependencies:[Ee.YU,Ee.Sq,Ee.bT,Ee.B3,gA.me,gA.BC,gA.vS,y.aY,JA.$z,Be.fg,KA.rl,KA.nJ,q.HM,D.DJ,D.sA,D.UI,rA.PW,rA.eI,eA.VO,eA.$2,ae.wT,BA.B4,BA.aE,L.Zl,L.tL,L.ji,L.cC,L.YV,L.iL,L.Zq,L.xW,L.KS,L.$R,L.Qo,L.YZ,L.NB,L.iF,b.iy,wA.ZF,wA.Ld,Ee.QX,Ee.vh],encapsulation:2}))}return n(),l})();const Ph=["form"];function Uh(n,l){1&n&&A.eu8(0)}function Gh(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Requested amount is required."),A.k0s())}function Lh(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fee rate is required."),A.k0s())}function zh(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Local amount is required."),A.k0s())}function kh(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Local amount must be greater than or equal to 20,000 Sats. It's required to cover the channel force close fee, if needed."),A.k0s())}function Hh(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.SpI("Local amount must be less than or equal to ",e.totalBalance,".")}}function jh(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.channelConnectionError)}}function Oh(n,l){if(1&n&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",28),A.DNE(2,jh,2,1,"span",19),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.channelConnectionError)}}function Jh(n,l){1&n&&(A.j41(0,"th",47),A.EFF(1,"Type"),A.k0s())}function _h(n,l){if(1&n&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.type)}}function Vh(n,l){1&n&&(A.j41(0,"th",47),A.EFF(1,"Address"),A.k0s())}function Wh(n,l){if(1&n&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.address)}}function Kh(n,l){1&n&&(A.j41(0,"th",47),A.EFF(1,"Port"),A.k0s())}function Xh(n,l){if(1&n&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.port)}}function Zh(n,l){1&n&&A.nrm(0,"tr",49)}function qh(n,l){1&n&&A.nrm(0,"tr",50)}function $h(n,l){if(1&n&&(A.j41(0,"mat-expansion-panel",30)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),A.EFF(4,"Node: \xa0"),A.k0s(),A.j41(5,"strong",31),A.EFF(6),A.k0s()()(),A.j41(7,"div",13)(8,"div",6)(9,"div",7)(10,"h4",32),A.EFF(11,"Pubkey"),A.k0s(),A.j41(12,"span",33),A.EFF(13),A.k0s()()(),A.nrm(14,"mat-divider",34),A.j41(15,"div",6)(16,"div",7)(17,"h4",32),A.EFF(18,"Last Timestamp"),A.k0s(),A.j41(19,"span",35),A.EFF(20),A.nI1(21,"date"),A.k0s()()(),A.nrm(22,"mat-divider",34),A.j41(23,"div",36)(24,"h4",37),A.EFF(25,"Addresses"),A.k0s(),A.j41(26,"div",38)(27,"table",39,5),A.qex(29,40),A.DNE(30,Jh,2,0,"th",41)(31,_h,2,1,"td",42),A.bVm(),A.qex(32,43),A.DNE(33,Vh,2,0,"th",41)(34,Wh,2,1,"td",42),A.bVm(),A.qex(35,44),A.DNE(36,Kh,2,0,"th",41)(37,Xh,2,1,"td",42),A.bVm(),A.DNE(38,Zh,1,0,"tr",45)(39,qh,1,0,"tr",46),A.k0s()()()()()),2&n){const e=A.XpG(2);A.R7$(6),A.JRh((null==e.node?null:e.node.alias)||(null==e.node?null:e.node.nodeid)),A.R7$(7),A.JRh(e.node.nodeid),A.R7$(7),A.JRh(A.i5U(21,6,1e3*e.node.last_timestamp,"dd/MMM/y HH:mm")),A.R7$(7),A.Y8G("dataSource",e.node.addresses),A.R7$(11),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}function Aw(n,l){if(1&n&&A.DNE(0,$h,40,9,"mat-expansion-panel",29),2&n){const e=A.XpG();A.Y8G("ngIf",e.node)}}let ew=(()=>{var n;class l{constructor(i,o,r,nA){this.dialogRef=i,this.data=o,this.actions=r,this.store=nA,this.faExclamationTriangle=d.zpE,this.totalBalance=0,this.node={},this.requestedAmount=0,this.feeRate=0,this.localAmount=0,this.channelConnectionError="",this.displayedColumns=["type","address","port"],this.unSubs=[new B.B,new B.B]}ngOnInit(){this.alertTitle=this.data.alertTitle||"",this.totalBalance=this.data.message?.balance||0,this.node=this.data.message?.node||{},this.requestedAmount=this.data.message?.requestedAmount||0,this.feeRate=this.data.message?.feeRate||0,this.localAmount=this.data.message?.localAmount||0,this.actions.pipe((0,M.Q)(this.unSubs[0]),(0,Z.p)(i=>i.type===c.TC.UPDATE_API_CALL_STATUS_CLN||i.type===c.TC.FETCH_CHANNELS_CLN)).subscribe(i=>{i.type===c.TC.UPDATE_API_CALL_STATUS_CLN&&i.payload.status===c.wn.ERROR&&"SaveNewChannel"===i.payload.action&&(this.channelConnectionError=i.payload.message),i.type===c.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close()})}onClose(){this.dialogRef.close(!1)}resetData(){this.form.resetForm(),this.form.controls.ramount.setValue(this.data.message?.requestedAmount),this.form.controls.feerate.setValue(this.data.message?.feeRate),this.form.controls.lamount.setValue(this.data.message?.localAmount),this.calculateFee(),this.channelConnectionError=""}calculateFee(){this.node.channel_opening_fee=+(this.node.option_will_fund?.lease_fee_base_msat||0)/1e3+this.requestedAmount*+(this.node.option_will_fund?.lease_fee_basis||0)/1e4+ +(this.node.option_will_fund?.funding_weight||0)/4*this.feeRate}onOpenChannel(){if(!this.node||!this.node.option_will_fund||!this.requestedAmount||!this.feeRate||!this.localAmount||this.localAmount<2e4)return!0;const i={peerId:this.node.nodeid||"",amount:this.localAmount.toString(),feeRate:this.feeRate+"perkb",requestAmount:this.requestedAmount.toString(),compactLease:this.node.option_will_fund.compact_lease,announce:!0};this.store.dispatch((0,xA.vL)({payload:i}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(UA.CP),A.rXU(UA.Vh),A.rXU(QA.En),A.rXU(_.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-open-liquidity-channel"]],viewQuery:function(o,r){if(1&o&&A.GBs(Ph,7),2&o){let nA;A.mGM(nA=A.lsd())&&(r.form=nA.first)}},standalone:!1,decls:54,vars:24,consts:[["form","ngForm"],["ramount","ngModel"],["feeRt","ngModel"],["lamount","ngModel"],["nodeDetailsExpansionBlock",""],["table",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","6","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[4,"ngTemplateOutlet"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","30","fxLayoutAlign","start end"],["autoFocus","","matInput","","type","number","tabindex","1","required","","name","ramount",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],[4,"ngIf"],["matInput","","type","number","tabindex","2","required","","name","feerate",3,"ngModelChange","keyup","step","min","ngModel"],["matInput","","type","number","tabindex","3","required","","name","lamount",3,"ngModelChange","step","min","max","ngModel"],["fxFlex","100",1,"alert","alert-info","mt-4"],["fxFlex","100","class","alert alert-danger mt-2",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","4",1,"mr-1",3,"click"],["autoFocus","","mat-button","","color","primary","tabindex","5",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-2"],[1,"mr-1","alert-icon",3,"icon"],["class","flat-expansion-panel mt-1 mb-2","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","mt-1","mb-2"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],[1,"overflow-wrap","foreground-secondary-text"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxFlex","100",1,"font-bold-500","mb-1"],[1,"table-container"],["mat-table","","matSort","",1,"overflow-auto",3,"dataSource"],["matColumnDef","type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","port"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",6)(1,"div",7)(2,"mat-card-header",8)(3,"div",9)(4,"span",10),A.EFF(5),A.k0s()(),A.j41(6,"button",11),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",12)(9,"form",13,0),A.DNE(11,Uh,1,0,"ng-container",14),A.j41(12,"div",15)(13,"mat-form-field",16)(14,"mat-label"),A.EFF(15,"Requested Amount"),A.k0s(),A.j41(16,"input",17,1),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.requestedAmount,Ae)||(r.requestedAmount=Ae),E.Njj(Ae)}),A.bIt("keyup",function(){return E.eBV(nA),E.Njj(r.calculateFee())}),A.k0s(),A.j41(18,"span",18),A.EFF(19," Sats "),A.k0s(),A.DNE(20,Gh,2,0,"mat-error",19),A.k0s(),A.j41(21,"mat-form-field",16)(22,"mat-label"),A.EFF(23,"Fee Rate"),A.k0s(),A.j41(24,"input",20,2),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.feeRate,Ae)||(r.feeRate=Ae),E.Njj(Ae)}),A.bIt("keyup",function(){return E.eBV(nA),E.Njj(r.calculateFee())}),A.k0s(),A.j41(26,"span",18),A.EFF(27," Sats/vByte "),A.k0s(),A.DNE(28,Lh,2,0,"mat-error",19),A.k0s(),A.j41(29,"mat-form-field",16)(30,"mat-label"),A.EFF(31,"Local Amount"),A.k0s(),A.j41(32,"input",21,3),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.localAmount,Ae)||(r.localAmount=Ae),E.Njj(Ae)}),A.k0s(),A.j41(34,"mat-hint"),A.EFF(35),A.nI1(36,"number"),A.k0s(),A.j41(37,"span",18),A.EFF(38," Sats "),A.k0s(),A.DNE(39,zh,2,0,"mat-error",19)(40,kh,2,0,"mat-error",19)(41,Hh,2,1,"mat-error",19),A.k0s()(),A.j41(42,"div",22)(43,"span"),A.EFF(44),A.nI1(45,"number"),A.k0s()(),A.DNE(46,Oh,3,2,"div",23),A.j41(47,"div",24)(48,"button",25),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.resetData())}),A.EFF(49,"Clear"),A.k0s(),A.j41(50,"button",26),A.bIt("click",function(){return E.eBV(nA),E.Njj(r.onOpenChannel())}),A.EFF(51,"Execute"),A.k0s()()()()()(),A.DNE(52,Aw,1,1,"ng-template",null,4,A.C5r)}if(2&o){const nA=A.sdS(17),WA=A.sdS(25),Ae=A.sdS(33),mn=A.sdS(53);A.R7$(5),A.JRh(r.alertTitle),A.R7$(6),A.Y8G("ngTemplateOutlet",mn),A.R7$(5),A.Y8G("step",1e4)("min",0),A.R50("ngModel",r.requestedAmount),A.R7$(4),A.Y8G("ngIf",null==nA.errors?null:nA.errors.required),A.R7$(4),A.Y8G("step",10)("min",0),A.R50("ngModel",r.feeRate),A.R7$(4),A.Y8G("ngIf",null==WA.errors?null:WA.errors.required),A.R7$(4),A.Y8G("step",1e4)("min",2e4)("max",r.totalBalance),A.R50("ngModel",r.localAmount),A.R7$(3),A.SpI("Remaining: ",A.bMT(36,20,r.totalBalance-(r.localAmount?r.localAmount:0))),A.R7$(4),A.Y8G("ngIf",null==Ae.errors?null:Ae.errors.required),A.R7$(),A.Y8G("ngIf",null==Ae.errors?null:Ae.errors.min),A.R7$(),A.Y8G("ngIf",null==Ae.errors?null:Ae.errors.max),A.R7$(3),A.SpI("Total cost to lease ",A.bMT(45,22,r.node.channel_opening_fee)," (Sats)"),A.R7$(2),A.Y8G("ngIf",""!==r.channelConnectionError)}},dependencies:[Ee.bT,Ee.T3,gA.qT,gA.me,gA.Q0,gA.BC,gA.cb,gA.YS,gA.VZ,gA.zX,gA.vS,gA.cV,y.aY,JA.$z,lA.m2,lA.MM,Qi.GK,Qi.Z2,Qi.WN,Be.fg,KA.rl,KA.nJ,KA.MV,KA.TL,KA.yw,$t.q,D.DJ,D.sA,D.UI,BA.B4,BA.aE,L.Zl,L.tL,L.ji,L.cC,L.YV,L.iL,L.KS,L.$R,L.YZ,L.NB,kA.N,ti.z,CA.V,Ee.QX,Ee.vh],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]}))}return n(),l})();var tw=Ve(36471);const nw=()=>["all"],iw=n=>({"error-border":n}),sw=()=>["no_lqNode"],J0=n=>({width:n}),rw=n=>({"display-none":n});function aw(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Channel amount is required."),A.k0s())}function ow(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Channel opening fee rate is required."),A.k0s())}function lw(n,l){if(1&n&&(A.j41(0,"mat-option",49),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function cw(n,l){1&n&&A.nrm(0,"mat-progress-bar",50)}function Bw(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Alias"),A.k0s())}function gw(n,l){if(1&n&&(A.j41(0,"mat-chip",57),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ","tor"===e?"Tor":"ipv"===e?"Clearnet":e," ")}}function fw(n,l){if(1&n&&(A.j41(0,"td",52)(1,"div",53)(2,"span",54),A.EFF(3),A.j41(4,"mat-chip-list",55),A.DNE(5,gw,2,1,"mat-chip",56),A.k0s()()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(3,J0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.SpI(" ",null==e?null:e.alias," "),A.R7$(2),A.Y8G("ngForOf",e.address_types)}}function uw(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Node ID"),A.k0s())}function Ew(n,l){if(1&n&&(A.j41(0,"td",52)(1,"div",53)(2,"span",58),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,J0,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.nodeid)}}function hw(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Last Announcement At"),A.k0s())}function ww(n,l){if(1&n&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.last_timestamp),"dd/MMM/y HH:mm")||"-")}}function Cw(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Compact Lease"),A.k0s())}function dw(n,l){if(1&n&&(A.j41(0,"td",52),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e||null==e.option_will_fund?null:e.option_will_fund.compact_lease)}}function Qw(n,l){1&n&&(A.j41(0,"th",59),A.EFF(1," Lease Fee"),A.k0s())}function mw(n,l){if(1&n&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Lme(" ",A.i5U(2,2,(null==e||null==e.option_will_fund?null:e.option_will_fund.lease_fee_base_msat)/1e3,"1.0-0")," Sats + ",A.i5U(3,5,(null==e||null==e.option_will_fund?null:e.option_will_fund.lease_fee_basis)/100,"1.2-2"),"% ")}}function Mw(n,l){1&n&&(A.j41(0,"th",59),A.EFF(1," Routing Fee"),A.k0s())}function pw(n,l){if(1&n&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Lme(" ",A.i5U(2,2,(null==e||null==e.option_will_fund?null:e.option_will_fund.channel_fee_max_base_msat)/1e3,"1.0-0")," Sats + ",A.i5U(3,5,1e3*(null==e||null==e.option_will_fund?null:e.option_will_fund.channel_fee_max_proportional_thousandths),"1.0-0")," ppm ")}}function Dw(n,l){1&n&&(A.j41(0,"th",60),A.EFF(1,"Channel Opening Fee (Sats)"),A.k0s())}function Iw(n,l){if(1&n&&(A.j41(0,"td",52)(1,"span",61),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,e.channel_opening_fee,"1.0-0")," ")}}function Fw(n,l){1&n&&(A.j41(0,"th",60),A.EFF(1,"Funding Weight"),A.k0s())}function xw(n,l){if(1&n&&(A.j41(0,"td",52)(1,"span",61),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,null==e||null==e.option_will_fund?null:e.option_will_fund.funding_weight,"1.0-0")," ")}}function yw(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",59)(1,"div",62)(2,"mat-select",63),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",64),A.bIt("click",function(){E.eBV(e);const o=A.XpG();return E.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Yw(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",65)(1,"div",62)(2,"mat-select",63),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",64),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.onViewLeaseInfo(o))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",64),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.onOpenChannel(o))}),A.EFF(7,"Open Channel"),A.k0s(),A.j41(8,"mat-option",64),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.viewLeaseOn(o,"LN"))}),A.EFF(9,"View on Lnrouter"),A.k0s(),A.j41(10,"mat-option",64),A.bIt("click",function(){const o=E.eBV(e).$implicit,r=A.XpG();return E.Njj(r.viewLeaseOn(o,"AM"))}),A.EFF(11,"View on Amboss"),A.k0s()()()()}}function vw(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No node with liquidity."),A.k0s())}function bw(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting nodes with liquidity..."),A.k0s())}function Rw(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function Sw(n,l){if(1&n&&(A.j41(0,"td",66),A.DNE(1,vw,2,0,"p",17)(2,bw,2,0,"p",17)(3,Rw,2,1,"p",17),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.liquidityNodes&&e.liquidityNodes.data)||(null==e.liquidityNodes||null==e.liquidityNodes.data?null:e.liquidityNodes.data.length)<1)&&e.listNodesCallStatus===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.liquidityNodes&&e.liquidityNodes.data)||(null==e.liquidityNodes||null==e.liquidityNodes.data?null:e.liquidityNodes.data.length)<1)&&e.listNodesCallStatus===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.liquidityNodes&&e.liquidityNodes.data)||(null==e.liquidityNodes||null==e.liquidityNodes.data?null:e.liquidityNodes.data.length)<1)&&e.listNodesCallStatus===e.apiCallStatusEnum.ERROR)}}function Nw(n,l){if(1&n&&A.nrm(0,"tr",67),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,rw,(null==e.liquidityNodes?null:e.liquidityNodes.data)&&(null==e.liquidityNodes||null==e.liquidityNodes.data?null:e.liquidityNodes.data.length)>0))}}function Tw(n,l){1&n&&A.nrm(0,"tr",68)}function Pw(n,l){1&n&&A.nrm(0,"tr",69)}let Uw=(()=>{var n;class l{constructor(i,o,r,nA,WA,Ae,mn){this.logger=i,this.store=o,this.dataService=r,this.commonService=nA,this.rtlEffects=WA,this.datePipe=Ae,this.camelCaseWithReplace=mn,this.nodePageDefs=c.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="liquidity_ads",this.tableSetting={tableId:"liquidity_ads",recordsPerPage:c.md,sortBy:"channel_opening_fee",sortOrder:c.oi.ASCENDING},this.askTooltipMsg="",this.nodesTooltipMsg="",this.displayedColumns=[],this.faBullhorn=d.e4L,this.faExclamationTriangle=d.zpE,this.faUsers=d.gdJ,this.totalBalance=0,this.channelAmount=1e5,this.channel_opening_feeRate=10,this.node_capacity=5e5,this.channel_count=5,this.liquidityNodesData=[],this.liquidityNodes=new L.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.listNodesCallStatus=c.wn.INITIATED,this.apiCallStatusEnum=c.wn,this.unSubs=[new B.B,new B.B,new B.B,new B.B,new B.B,new B.B],this.askTooltipMsg="Specify the liquidity requirements for your node: \n 1. Channel Amount - Amount in Sats you need on the channel opened to your node \n 2. Channel opening fee rate - Rate in Sats/vByte that you are willing to pay to open the channel to you",this.nodesTooltipMsg="These nodes are advertising their liquidity offering on the network.\nYou should pay attention to the following aspects to evaluate each node offer: \n- The total bitcoin deployed on the node, the more the better\n",this.nodesTooltipMsg=this.nodesTooltipMsg+"- The number of channels open on the node, the more the better\n- The channel open fee which the node will charge from you\n- The routing fee which the node will charge on the payments, the lesser the better\n- The reliability of the node, ideally uptime. Refer to the information being provided by the node explorers",this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(U.av).pipe((0,M.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",i.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=i.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||c.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),(0,Ja.z)([this.store.select(U.kQ),this.dataService.listNetworkNodes({liquidity_ads:!0})]).pipe((0,M.Q)(this.unSubs[1])).subscribe({next:([i,o])=>{this.information=i.information,this.totalBalance=i.balance.totalBalance||0,this.logger.info(i),o&&!o.length&&(o=[]),this.logger.info("Received Liquidity Ads Enabled Nodes: "+JSON.stringify(o)),this.listNodesCallStatus=c.wn.COMPLETED,o.forEach(r=>{r.address_types=Array.from(new Set(r.addresses?.reduce((WA,Ae)=>((Ae.type?.includes("ipv")||Ae.type?.includes("tor"))&&WA.push(Ae.type?.substring(0,3)),WA),[])))}),this.liquidityNodesData=o.filter(r=>r.nodeid!==this.information.id),this.onCalculateOpeningFee(),this.loadLiqNodesTable(this.liquidityNodesData)},error:i=>{this.logger.error("Liquidity Ads Nodes Error: "+JSON.stringify(i)),this.listNodesCallStatus=c.wn.ERROR,this.errorMessage=JSON.stringify(i)}})}onCalculateOpeningFee(){this.liquidityNodesData.forEach(i=>{i.option_will_fund&&(i.channel_opening_fee=+(i.option_will_fund.lease_fee_base_msat||0)/1e3+this.channelAmount*+(i.option_will_fund.lease_fee_basis||0)/1e4+ +(i.option_will_fund.funding_weight||0)/4*this.channel_opening_feeRate)}),this.paginator&&this.paginator.firstPage()}onFilter(){}applyFilter(){this.liquidityNodes.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column||"","_"):this.commonService.titleCase(i)}setFilterPredicate(){this.liquidityNodes.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.alias?i.alias.toLocaleLowerCase():"")+(i.channel_opening_fee?i.channel_opening_fee+" Sats":"")+(i.option_will_fund?.lease_fee_base_msat?i.option_will_fund?.lease_fee_base_msat/1e3+" Sats":"")+(i.option_will_fund?.lease_fee_basis?i.option_will_fund?.lease_fee_basis/100+"%":"")+(i.option_will_fund?.channel_fee_max_base_msat?i.option_will_fund?.channel_fee_max_base_msat/1e3+" Sats":"")+(i.option_will_fund?.channel_fee_max_proportional_thousandths?1e3*i.option_will_fund?.channel_fee_max_proportional_thousandths+" ppm":"")+(i.address_types?i.address_types.reduce((nA,WA)=>nA+("tor"===WA?" tor":"ipv"===WA?" clearnet":" "+WA.toLowerCase()),""):"");break;case"alias":r=(i?.alias?.toLowerCase()||" ")+i?.address_types?.reduce((nA,WA)=>nA+(WA?"ipv"===WA?"clearnet":WA:"")," ")||"";break;case"last_timestamp":r=this.datePipe.transform(new Date(1e3*(i.last_timestamp||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"compact_lease":r=i?.option_will_fund?.compact_lease?.toLowerCase()||"";break;case"lease_fee":r=((i.option_will_fund?.lease_fee_base_msat||0)/1e3+" sats "||0)+((i.option_will_fund?.lease_fee_basis||0)/100+"%")||0;break;case"routing_fee":r=((i.option_will_fund?.channel_fee_max_base_msat||0)/1e3+" sats "||0)+(1e3*(i.option_will_fund?.channel_fee_max_proportional_thousandths||0)+" ppm")||0;break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return r.includes(o)}}loadLiqNodesTable(i){this.liquidityNodes=new L.I6([...i]),this.liquidityNodes.sort=this.sort,this.liquidityNodes.sortingDataAccessor=(o,r)=>o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null,this.setFilterPredicate(),this.applyFilter(),this.liquidityNodes.paginator=this.paginator}viewLeaseOn(i,o){"LN"===o?window.open("https://lnrouter.app/node/"+i.nodeid,"_blank"):"AM"===o&&window.open("https://amboss.space/node/"+i.nodeid,"_blank")}onOpenChannel(i){this.store.dispatch((0,w.xO)({payload:{data:{alertTitle:"Open Channel",message:{node:i,balance:this.totalBalance,requestedAmount:this.channelAmount,feeRate:this.channel_opening_feeRate,localAmount:2e4},component:ew}}}))}onViewLeaseInfo(i){const o=i.addresses?.reduce((WA,Ae)=>(Ae.address&&Ae.address.length>40&&(Ae.address=Ae.address.substring(0,39)+"..."),WA.concat(JSON.stringify(Ae).replace("{","").replace("}","").replace(/:/g,": ").replace(/,/g,"        ").replace(/"/g,""))),[]),r=[];if(i.features&&""!==i.features.trim()){const WA=parseInt(i.features,16);c.TH.forEach(Ae=>{WA&1<{WA&&this.onOpenChannel(i)})}onDownloadCSV(){this.liquidityNodes.data&&this.liquidityNodes.data.length>0&&this.commonService.downloadFile(this.liquidityNodes.data,"LiquidityNodes")}onFilterReset(){this.node_capacity=0,this.channel_count=0}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(N.gP),A.rXU(_.il),A.rXU(Rt.u),A.rXU(Q.h),A.rXU(H.H),A.rXU(Ee.vh),A.rXU(TA.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-liquidity-ads-list"]],viewQuery:function(o,r){if(1&o&&(A.GBs(BA.B4,5),A.GBs(b.iy,5)),2&o){let nA;A.mGM(nA=A.lsd())&&(r.sort=nA.first),A.mGM(nA=A.lsd())&&(r.paginator=nA.first)}},standalone:!1,features:[A.Jv_([{provide:eA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:b.xX,useValue:(0,c.on)("Liquidity Ads")}])],decls:83,vars:26,consts:[["formAsk","ngForm"],["table",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],[1,"padding-gap-large"],["fxLayout","column","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex.gt-xs","100","fxLayout","row",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-1"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","30"],[1,"page-text"],["matTooltipPosition","above","matTooltipClass","pre-wrap",1,"info-icon","info-icon-primary",3,"matTooltip"],["fxLayout","column","fxFlex","34"],["autoFocus","","matInput","","name","channelAmount","tabindex","1","type","number","step","10000","required","",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["matInput","","name","channel_opening_feeRate","type","number","step","10","tabindex","2","required","",3,"ngModelChange","keyup","ngModel"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-2"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","nodeid"],["matColumnDef","last_timestamp"],["matColumnDef","compact_lease"],["matColumnDef","lease_fee"],["mat-header-cell","",4,"matHeaderCellDef"],["matColumnDef","routing_fee"],["matColumnDef","channel_opening_fee"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","funding_weight"],["matColumnDef","actions"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_lqNode"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],["fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center",1,"ellipsis-child"],["aria-label","Address Types",1,"ml-half"],["color","primary","selected","",4,"ngFor","ngForOf"],["color","primary","selected",""],[1,"ellipsis-child"],["mat-header-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const nA=A.RV6();A.j41(0,"div",2),A.nrm(1,"fa-icon",3),A.j41(2,"span",4),A.EFF(3,"Liquidity Ads"),A.k0s()(),A.j41(4,"div",5)(5,"mat-card")(6,"mat-card-content",6)(7,"div",7)(8,"form",8,0)(10,"div",9),A.nrm(11,"fa-icon",10),A.j41(12,"span"),A.EFF(13,"Ads should be supplemented with additional research of the node, before buying liquidity."),A.k0s()(),A.j41(14,"div",11)(15,"div",12)(16,"span",13),A.EFF(17,"Liquidity Ask"),A.k0s(),A.j41(18,"mat-icon",14),A.EFF(19,"info_outline"),A.k0s()(),A.j41(20,"mat-form-field",15)(21,"mat-label"),A.EFF(22,"Channel Amount (Sats)"),A.k0s(),A.j41(23,"input",16),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.channelAmount,Ae)||(r.channelAmount=Ae),E.Njj(Ae)}),A.bIt("keyup",function(){return E.eBV(nA),E.Njj(r.onCalculateOpeningFee())}),A.k0s(),A.DNE(24,aw,2,0,"mat-error",17),A.k0s(),A.j41(25,"mat-form-field",15)(26,"mat-label"),A.EFF(27,"Channel Opening Fee Rate (Sats/vByte)"),A.k0s(),A.j41(28,"input",18),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.channel_opening_feeRate,Ae)||(r.channel_opening_feeRate=Ae),E.Njj(Ae)}),A.bIt("keyup",function(){return E.eBV(nA),E.Njj(r.onCalculateOpeningFee())}),A.k0s(),A.DNE(29,ow,2,0,"mat-error",17),A.k0s()()(),A.j41(30,"div",19)(31,"div",20),A.nrm(32,"fa-icon",3),A.j41(33,"span",4),A.EFF(34,"Liquidity Providing Peers"),A.k0s()(),A.j41(35,"div",21)(36,"mat-form-field",22)(37,"mat-label"),A.EFF(38,"Filter By"),A.k0s(),A.j41(39,"mat-select",23),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.selFilterBy,Ae)||(r.selFilterBy=Ae),E.Njj(Ae)}),A.bIt("selectionChange",function(){return E.eBV(nA),r.selFilter="",E.Njj(r.applyFilter())}),A.j41(40,"perfect-scrollbar"),A.DNE(41,lw,2,2,"mat-option",24),A.k0s()()(),A.j41(42,"mat-form-field",22)(43,"mat-label"),A.EFF(44,"Filter"),A.k0s(),A.j41(45,"input",25),A.mxI("ngModelChange",function(Ae){return E.eBV(nA),A.DH7(r.selFilter,Ae)||(r.selFilter=Ae),E.Njj(Ae)}),A.bIt("input",function(){return E.eBV(nA),E.Njj(r.applyFilter())})("keyup",function(){return E.eBV(nA),E.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(46,"div",26),A.DNE(47,cw,1,0,"mat-progress-bar",27),A.j41(48,"table",28,1),A.qex(50,29),A.DNE(51,Bw,2,0,"th",30)(52,fw,6,5,"td",31),A.bVm(),A.qex(53,32),A.DNE(54,uw,2,0,"th",30)(55,Ew,4,4,"td",31),A.bVm(),A.qex(56,33),A.DNE(57,hw,2,0,"th",30)(58,ww,3,4,"td",31),A.bVm(),A.qex(59,34),A.DNE(60,Cw,2,0,"th",30)(61,dw,2,1,"td",31),A.bVm(),A.qex(62,35),A.DNE(63,Qw,2,0,"th",36)(64,mw,4,8,"td",31),A.bVm(),A.qex(65,37),A.DNE(66,Mw,2,0,"th",36)(67,pw,4,8,"td",31),A.bVm(),A.qex(68,38),A.DNE(69,Dw,2,0,"th",39)(70,Iw,4,4,"td",31),A.bVm(),A.qex(71,40),A.DNE(72,Fw,2,0,"th",39)(73,xw,4,4,"td",31),A.bVm(),A.qex(74,41),A.DNE(75,yw,6,0,"th",36)(76,Yw,12,0,"td",42),A.bVm(),A.qex(77,43),A.DNE(78,Sw,4,3,"td",44),A.bVm(),A.DNE(79,Nw,1,3,"tr",45)(80,Tw,1,0,"tr",46)(81,Pw,1,0,"tr",47),A.k0s()(),A.nrm(82,"mat-paginator",48),A.k0s()()()()}2&o&&(A.R7$(),A.Y8G("icon",r.faBullhorn),A.R7$(10),A.Y8G("icon",r.faExclamationTriangle),A.R7$(7),A.Y8G("matTooltip",r.askTooltipMsg),A.R7$(5),A.R50("ngModel",r.channelAmount),A.R7$(),A.Y8G("ngIf",!r.channelAmount),A.R7$(4),A.R50("ngModel",r.channel_opening_feeRate),A.R7$(),A.Y8G("ngIf",!r.channel_opening_feeRate),A.R7$(3),A.Y8G("icon",r.faUsers),A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(22,nw).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(2),A.Y8G("ngIf",r.listNodesCallStatus===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.liquidityNodes)("ngClass",A.eq3(23,iw,""!==r.errorMessage)),A.R7$(31),A.Y8G("matFooterRowDef",A.lJ4(25,sw)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("hidePageSize",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[Ee.YU,Ee.Sq,Ee.bT,Ee.B3,gA.qT,gA.me,gA.Q0,gA.BC,gA.cb,gA.YS,gA.vS,gA.cV,y.aY,lA.RN,lA.m2,G.An,Be.fg,KA.rl,KA.nJ,KA.TL,q.HM,D.DJ,D.sA,D.UI,rA.PW,rA.eI,tw.Jl,eA.VO,eA.$2,ae.wT,BA.B4,BA.aE,L.Zl,L.tL,L.ji,L.cC,L.YV,L.iL,L.Zq,L.xW,L.KS,L.$R,L.Qo,L.YZ,L.NB,L.iF,ie.oV,b.iy,wA.ZF,wA.Ld,kA.N,Ee.QX,Ee.vh],encapsulation:2}))}return n(),l})();const Gw=[{path:"",component:t,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:ur,canActivate:[(0,sn.Wz)()]},{path:"onchain",component:bo,canActivate:[(0,sn.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:Fl,canActivate:[(0,sn.Wz)()]},{path:"send/:selTab",component:xl,data:{sweepAll:!1},canActivate:[(0,sn.Wz)()]},{path:"sweep/:selTab",component:xl,data:{sweepAll:!0},canActivate:[(0,sn.Wz)()]}]},{path:"connections",component:So,canActivate:[(0,sn.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:_l,canActivate:[(0,sn.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:vt,canActivate:[(0,sn.Wz)()]},{path:"pending",component:ic,canActivate:[(0,sn.Wz)()]},{path:"activehtlcs",component:pu,canActivate:[(0,sn.Wz)()]}]},{path:"peers",component:Nc,data:{sweepAll:!1},canActivate:[(0,sn.Wz)()]}]},{path:"liquidityads",component:Uw,canActivate:[(0,sn.Wz)()]},{path:"transactions",component:To,canActivate:[(0,sn.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:he,canActivate:[(0,sn.Wz)()]},{path:"invoices",component:Ut,canActivate:[(0,sn.Wz)()]},{path:"offers",component:FE,canActivate:[(0,sn.Wz)()]},{path:"offrBookmarks",component:Ah,canActivate:[(0,sn.Wz)()]}]},{path:"messages",component:Dl,canActivate:[(0,sn.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:iB,canActivate:[(0,sn.Wz)()]},{path:"verify",component:gB,canActivate:[(0,sn.Wz)()]}]},{path:"routing",component:Uo,canActivate:[(0,sn.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:N0,canActivate:[(0,sn.Wz)()]},{path:"failedtransactions",component:Ug,canActivate:[(0,sn.Wz)()]},{path:"localfail",component:Th,canActivate:[(0,sn.Wz)()]},{path:"routingpeers",component:bf,canActivate:[(0,sn.Wz)()]}]},{path:"reports",component:Iu,canActivate:[(0,sn.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:Su,canActivate:[(0,sn.Wz)()]},{path:"transactions",component:Hu,canActivate:[(0,sn.Wz)()]}]},{path:"graph",component:Ju,canActivate:[(0,sn.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:il,canActivate:[(0,sn.Wz)()]},{path:"queryroutes",component:tB,canActivate:[(0,sn.Wz)()]}]},{path:"rates",component:x0,canActivate:[(0,sn.Wz)()]},{path:"**",component:ju.X},{path:"network",redirectTo:"rates"},{path:"wallet",redirectTo:"home"},{path:"backup",redirectTo:"home"}]}],Lw=Hn.iI.forChild(Gw);var zw=Ve(19029);let kw=(()=>{var n;class l{static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275mod=A.$C({type:l,bootstrap:[t]}),this.\u0275inj=E.G2t({imports:[Ee.MD,zw.G,Lw]}))}return n(),l})()}}]); \ No newline at end of file diff --git a/frontend/853.e46ed60b577aec33.js b/frontend/853.e46ed60b577aec33.js new file mode 100644 index 00000000..22253620 --- /dev/null +++ b/frontend/853.e46ed60b577aec33.js @@ -0,0 +1 @@ +(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[853],{4853(Pi,Wi,We){"use strict";We.d(Wi,{CLNModule:()=>jw});var de=We(2200),Sn=We(8132),xt=We(3694),Mn=We(9881),A=We(3664),eA=We(7575),Q=We(2920);function f(n,l){1&n&&A.nrm(0,"mat-progress-bar",3)}let t=(()=>{var n;class l{constructor(i){this.router=i,this.loading=!1,this.router.events.subscribe(o=>{switch(!0){case o instanceof xt.Z:this.loading=!0;break;case o instanceof xt.wF:case o instanceof xt.j5:case o instanceof xt.L6:this.loading=!1}})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-root"]],standalone:!1,decls:4,vars:1,consts:[["outlet","outlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["color","primary","mode","indeterminate"]],template:function(o,r){1&o&&(A.j41(0,"div",1),A.DNE(1,f,1,0,"mat-progress-bar",2),A.nrm(2,"router-outlet",null,0),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",r.loading))},dependencies:[de.bT,eA.HM,Q.DJ,Q.sA,Q.UI,xt.n3],encapsulation:2,data:{animation:[Mn.E]}}))}return n(),l})();var g=We(1413),I=We(6977),N=We(3993),K=We(614),v=We(5383),B=We(4416),j=We(9647),tA=We(9584),w=We(2615),aA=We(8570),AA=We(9640),L=We(2571),P=We(60),rA=We(2598),QA=We(5596),NA=We(2885),oA=We(2629),uA=We(9115),dA=We(6038),RA=We(6850),nA=We(5964),H=We(6695),pA=We(2042),z=We(1676),OA=We(6183),wA=We(1585),VA=We(8430),kA=We(1747),hA=We(9417),fA=We(8834),UA=We(3746),yA=We(9588),xA=We(3029),Ee=We(450),HA=We(455),cA=We(9587),J=We(6114);function U(n,l){1&n&&(A.j41(0,"span",31),A.EFF(1,"= "),A.k0s())}function O(n,l){if(1&n&&(A.j41(0,"span",32),A.nrm(1,"fa-icon",33),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function lA(n,l){if(1&n&&A.nrm(0,"span",34),2&n){const e=A.XpG();A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function LA(n,l){if(1&n&&(A.j41(0,"mat-option",35),A.EFF(1),A.nI1(2,"titlecase"),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e),A.R7$(),A.JRh(A.bMT(2,2,e))}}function JA(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.invoiceError)}}function $A(n,l){if(1&n&&(A.j41(0,"div",36),A.nrm(1,"fa-icon",37),A.DNE(2,JA,2,1,"span",38),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.invoiceError)}}let IA=(()=>{var n;class l{constructor(i,o,r,iA,ne,re){this.dialogRef=i,this.data=o,this.store=r,this.decimalPipe=iA,this.commonService=ne,this.actions=re,this.faExclamationTriangle=v.zpE,this.convertedCurrency=null,this.description="",this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=B.md,this.timeUnitEnum=B.F7,this.timeUnits=B.SY,this.selTimeUnit=B.F7.SECS,this.invoiceError="",this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(tA.mH).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.actions.pipe((0,I.Q)(this.unSubs[2]),(0,nA.p)(i=>i.type===B.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(i=>{i.type===B.TC.UPDATE_API_CALL_STATUS_CLN&&"SaveNewInvoice"===i.payload.action&&(i.payload.status===B.wn.ERROR&&(this.invoiceError=i.payload.message),i.payload.status===B.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(i){this.invoiceError="",this.invoiceValue||(this.invoiceValue=0);let o=this.expiry?this.expiry:B.It;this.selTimeUnit!==B.F7.SECS&&this.expiry&&(o=this.commonService.convertTime(this.expiry,this.selTimeUnit,B.F7.SECS)),this.store.dispatch((0,VA.VK)({payload:{label:"ulbl"+Math.random().toString(36).slice(2)+Date.now(),amount_msat:this.invoiceValue?1e3*this.invoiceValue:"any",description:this.description,expiry:o,exposeprivatechannels:this.private}}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=B.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&(this.invoiceValueHint="",this.invoiceValue&&this.invoiceValue>99&&this.commonService.convertCurrency(this.invoiceValue,B.BQ.SATS,B.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,I.Q)(this.unSubs[3])).subscribe({next:i=>{this.convertedCurrency=i,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,B.k.OTHER)+" "+this.convertedCurrency.unit},error:i=>{this.invoiceValueHint="Conversion Error: "+i}}))}onTimeUnitChange(i){this.expiry&&this.selTimeUnit!==i.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,i.value)),this.selTimeUnit=i.value}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(AA.il),A.rXU(de.QX),A.rXU(L.h),A.rXU(kA.En))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-create-invoices"]],standalone:!1,decls:50,vars:19,consts:[["addInvoiceForm","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","name","description",3,"ngModelChange","ngModel"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","name","invoiceValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","name","expiry","type","number",3,"ngModelChange","step","min","ngModel"],["fxLayout","column","fxFlex","26"],["name","timeUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","50","fxLayoutAlign","start center",1,"ml-2"],["color","primary","name","private",3,"ngModelChange","ngModel"],["matTooltip","Include routing hints for private channels","matTooltipPosition","above",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),A.EFF(5,"Create Invoice"),A.k0s()(),A.j41(6,"button",6),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),A.EFF(13,"Description"),A.k0s(),A.j41(14,"input",10),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.description,re)||(r.description=re),w.Njj(re)}),A.k0s()(),A.j41(15,"div",11)(16,"mat-form-field",12)(17,"mat-label"),A.EFF(18,"Amount"),A.k0s(),A.j41(19,"input",13),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.invoiceValue,re)||(r.invoiceValue=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.onInvoiceValueChange())}),A.k0s(),A.j41(20,"span",14),A.EFF(21,"Sats "),A.k0s(),A.j41(22,"mat-hint",15),A.DNE(23,U,2,0,"span",16)(24,O,2,1,"span",17)(25,lA,1,1,"span",18),A.EFF(26),A.k0s()(),A.j41(27,"mat-form-field",19)(28,"mat-label"),A.EFF(29,"Expiry"),A.k0s(),A.j41(30,"input",20),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.expiry,re)||(r.expiry=re),w.Njj(re)}),A.k0s(),A.j41(31,"span",14),A.EFF(32),A.nI1(33,"titlecase"),A.k0s()(),A.j41(34,"mat-form-field",21)(35,"mat-label"),A.EFF(36,"Time Unit"),A.k0s(),A.j41(37,"mat-select",22),A.bIt("selectionChange",function(re){return w.eBV(iA),w.Njj(r.onTimeUnitChange(re))}),A.DNE(38,LA,3,4,"mat-option",23),A.k0s()()(),A.j41(39,"div",24)(40,"mat-slide-toggle",25),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.private,re)||(r.private=re),w.Njj(re)}),A.EFF(41,"Private Routing Hints"),A.k0s(),A.j41(42,"mat-icon",26),A.EFF(43,"info_outline"),A.k0s()(),A.DNE(44,$A,3,2,"div",27),A.j41(45,"div",28)(46,"button",29),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.EFF(47,"Clear Field"),A.k0s(),A.j41(48,"button",30),A.bIt("click",function(){w.eBV(iA);const re=A.sdS(10);return w.Njj(r.onAddInvoice(re))}),A.EFF(49,"Create Invoice"),A.k0s()()()()()()}2&o&&(A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(8),A.R50("ngModel",r.description),A.R7$(5),A.Y8G("step",100)("min",1),A.R50("ngModel",r.invoiceValue),A.R7$(4),A.Y8G("ngIf",""!==r.invoiceValueHint),A.R7$(),A.Y8G("ngIf",r.convertedCurrency&&"FA"===r.convertedCurrency.iconType&&""!==r.invoiceValueHint),A.R7$(),A.Y8G("ngIf",r.convertedCurrency&&"SVG"===r.convertedCurrency.iconType&&""!==r.invoiceValueHint),A.R7$(),A.SpI(" ",r.invoiceValueHint," "),A.R7$(4),A.Y8G("step",r.selTimeUnit===r.timeUnitEnum.SECS?300:r.selTimeUnit===r.timeUnitEnum.MINS?10:r.selTimeUnit===r.timeUnitEnum.HOURS?2:1)("min",1),A.R50("ngModel",r.expiry),A.R7$(2),A.SpI("",A.bMT(33,17,r.selTimeUnit)," "),A.R7$(5),A.Y8G("value",r.selTimeUnit),A.R7$(),A.Y8G("ngForOf",r.timeUnits),A.R7$(2),A.R50("ngModel",r.private),A.R7$(4),A.Y8G("ngIf",""!==r.invoiceError))},dependencies:[de.Sq,de.bT,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.VZ,hA.vS,hA.cV,P.aY,wA.tx,fA.$z,QA.m2,QA.MM,oA.An,UA.fg,yA.rl,yA.nJ,yA.MV,yA.yw,Q.DJ,Q.sA,Q.UI,OA.VO,xA.wT,Ee.sG,HA.oV,cA.N,J.V,de.PV],encapsulation:2}))}return n(),l})();var gA=We(8321),C=We(1771),b=We(7541),R=We(2929),M=We(497);const D=()=>["all"],X=n=>({"error-border":n}),YA=()=>["no_invoice"],KA=n=>({"mr-0":n}),bA=n=>({width:n}),le=n=>({"display-none":n});function ve(n,l){1&n&&(A.j41(0,"span",19),A.EFF(1,"= "),A.k0s())}function Ne(n,l){if(1&n&&(A.j41(0,"span",20),A.nrm(1,"fa-icon",21),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function Te(n,l){if(1&n&&A.nrm(0,"span",22),2&n){const e=A.XpG(2);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function ze(n,l){if(1&n){const e=A.RV6();A.j41(0,"form",6,0)(2,"mat-form-field",7)(3,"mat-label"),A.EFF(4,"Description"),A.k0s(),A.j41(5,"input",8),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.description,o)||(r.description=o),w.Njj(o)}),A.k0s()(),A.j41(6,"mat-form-field",9)(7,"mat-label"),A.EFF(8,"Amount"),A.k0s(),A.j41(9,"input",10),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.invoiceValue,o)||(r.invoiceValue=o),w.Njj(o)}),A.bIt("keyup",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onInvoiceValueChange())}),A.k0s(),A.j41(10,"span",11),A.EFF(11,"Sats "),A.k0s(),A.j41(12,"mat-hint",12),A.DNE(13,ve,2,0,"span",13)(14,Ne,2,1,"span",14)(15,Te,1,1,"span",15),A.EFF(16),A.k0s()(),A.j41(17,"div",16)(18,"button",17),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.resetData())}),A.EFF(19,"Clear Field"),A.k0s(),A.j41(20,"button",18),A.bIt("click",function(){w.eBV(e);const o=A.sdS(1),r=A.XpG();return w.Njj(r.onAddInvoice(o))}),A.EFF(21,"Create Invoice"),A.k0s()()()}if(2&n){const e=A.XpG();A.R7$(5),A.R50("ngModel",e.description),A.R7$(4),A.Y8G("step",100)("min",1),A.R50("ngModel",e.invoiceValue),A.R7$(4),A.Y8G("ngIf",""!==e.invoiceValueHint),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.invoiceValueHint),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.invoiceValueHint),A.R7$(),A.SpI(" ",e.invoiceValueHint," ")}}function Oe(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",23)(1,"button",24),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDeleteExpiredInvoices())}),A.EFF(2,"Delete Expired"),A.k0s(),A.j41(3,"button",25),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.openCreateInvoiceModal())}),A.EFF(4,"Create Invoice"),A.k0s()()}}function oe(n,l){if(1&n&&(A.j41(0,"mat-option",62),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function sA(n,l){1&n&&A.nrm(0,"mat-progress-bar",63)}function S(n,l){1&n&&A.nrm(0,"th",64)}function Y(n,l){if(1&n&&A.nrm(0,"span",69),2&n){const e=A.XpG(3);A.Y8G("ngClass",A.eq3(1,KA,e.screenSize===e.screenSizeEnum.XS))}}function k(n,l){if(1&n&&A.nrm(0,"span",70),2&n){const e=A.XpG(3);A.Y8G("ngClass",A.eq3(1,KA,e.screenSize===e.screenSizeEnum.XS))}}function m(n,l){if(1&n&&A.nrm(0,"span",71),2&n){const e=A.XpG(3);A.Y8G("ngClass",A.eq3(1,KA,e.screenSize===e.screenSizeEnum.XS))}}function E(n,l){if(1&n&&(A.j41(0,"td",65),A.DNE(1,Y,1,3,"span",66)(2,k,1,3,"span",67)(3,m,1,3,"span",68),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf","paid"===(null==e?null:e.status)),A.R7$(),A.Y8G("ngIf","unpaid"===(null==e?null:e.status)),A.R7$(),A.Y8G("ngIf","expired"===(null==e?null:e.status))}}function mA(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Expiry Date"),A.k0s())}function ie(n,l){if(1&n&&(A.j41(0,"td",65),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*(null==e?null:e.expires_at),"dd/MMM/y HH:mm")," ")}}function DA(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Date Settled"),A.k0s())}function Ae(n,l){if(1&n&&(A.j41(0,"td",65),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.paid_at),"dd/MMM/y HH:mm")||"-")}}function pe(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Type"),A.k0s())}function MA(n,l){if(1&n&&(A.j41(0,"td",65),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null!=e&&e.bolt12?"Bolt12":null!=e&&e.bolt11&&e.label.includes("keysend-")?"Keysend":"Bolt11")}}function Pe(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Description"),A.k0s())}function At(n,l){if(1&n&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,bA,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.description)}}function _(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Label"),A.k0s())}function be(n,l){if(1&n&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,bA,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.label)}}function Re(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Payment Hash"),A.k0s())}function SA(n,l){if(1&n&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,bA,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash)}}function we(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Invoice"),A.k0s())}function Fe(n,l){if(1&n&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,bA,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.bolt11)}}function et(n,l){1&n&&(A.j41(0,"th",75),A.EFF(1,"Amount (Sats)"),A.k0s())}function Ke(n,l){if(1&n&&(A.j41(0,"td",65)(1,"span",76),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.amount_msat)/1e3,(null==e?null:e.amount_msat)<1e3?"1.0-4":"1.0-0"))}}function $e(n,l){1&n&&(A.j41(0,"th",75),A.EFF(1,"Amount Settled (Sats)"),A.k0s())}function ht(n,l){if(1&n&&(A.j41(0,"td",65)(1,"span",76),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.amount_received_msat)/1e3,(null==e?null:e.amount_received_msat)<1e3?"1.0-4":"1.0-0"))}}function cn(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",77)(1,"div",78)(2,"mat-select",79),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",80),A.bIt("click",function(){w.eBV(e);const o=A.XpG(2);return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function at(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",81)(1,"div",78)(2,"mat-select",82),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",80),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG(2);return w.Njj(r.onInvoiceClick(o))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",80),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG(2);return w.Njj(r.onRefreshInvoice(o))}),A.EFF(7,"Refresh"),A.k0s()()()()}}function It(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No invoice available."),A.k0s())}function mt(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting invoices..."),A.k0s())}function Tt(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function Lt(n,l){if(1&n&&(A.j41(0,"td",83),A.DNE(1,It,2,0,"p",84)(2,mt,2,0,"p",84)(3,Tt,2,1,"p",84),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function Qn(n,l){if(1&n&&A.nrm(0,"tr",85),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,le,(null==e.invoices?null:e.invoices.data)&&(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)>0))}}function pn(n,l){1&n&&A.nrm(0,"tr",86)}function Gt(n,l){1&n&&A.nrm(0,"tr",87)}function Mt(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",26)(1,"div",27)(2,"div",28),A.nrm(3,"fa-icon",29),A.j41(4,"span",30),A.EFF(5,"Invoices History"),A.k0s()(),A.j41(6,"div",31)(7,"mat-form-field",32)(8,"mat-label"),A.EFF(9,"Filter By"),A.k0s(),A.j41(10,"mat-select",33),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilterBy,o)||(r.selFilterBy=o),w.Njj(o)}),A.bIt("selectionChange",function(){w.eBV(e);const o=A.XpG();return o.selFilter="",w.Njj(o.applyFilter())}),A.j41(11,"perfect-scrollbar"),A.DNE(12,oe,2,2,"mat-option",34),A.k0s()()(),A.j41(13,"mat-form-field",32)(14,"mat-label"),A.EFF(15,"Filter"),A.k0s(),A.j41(16,"input",35),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilter,o)||(r.selFilter=o),w.Njj(o)}),A.bIt("input",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())})("keyup",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())}),A.k0s()()()(),A.j41(17,"div",36),A.DNE(18,sA,1,0,"mat-progress-bar",37),A.j41(19,"table",38,1),A.qex(21,39),A.DNE(22,S,1,0,"th",40)(23,E,4,3,"td",41),A.bVm(),A.qex(24,42),A.DNE(25,mA,2,0,"th",43)(26,ie,3,4,"td",41),A.bVm(),A.qex(27,44),A.DNE(28,DA,2,0,"th",43)(29,Ae,3,4,"td",41),A.bVm(),A.qex(30,45),A.DNE(31,pe,2,0,"th",43)(32,MA,2,1,"td",41),A.bVm(),A.qex(33,46),A.DNE(34,Pe,2,0,"th",43)(35,At,4,4,"td",41),A.bVm(),A.qex(36,47),A.DNE(37,_,2,0,"th",43)(38,be,4,4,"td",41),A.bVm(),A.qex(39,48),A.DNE(40,Re,2,0,"th",43)(41,SA,4,4,"td",41),A.bVm(),A.qex(42,49),A.DNE(43,we,2,0,"th",43)(44,Fe,4,4,"td",41),A.bVm(),A.qex(45,50),A.DNE(46,et,2,0,"th",51)(47,Ke,4,4,"td",41),A.bVm(),A.qex(48,52),A.DNE(49,$e,2,0,"th",51)(50,ht,4,4,"td",41),A.bVm(),A.qex(51,53),A.DNE(52,cn,6,0,"th",54)(53,at,8,0,"td",55),A.bVm(),A.qex(54,56),A.DNE(55,Lt,4,3,"td",57),A.bVm(),A.DNE(56,Qn,1,3,"tr",58)(57,pn,1,0,"tr",59)(58,Gt,1,0,"tr",60),A.k0s()(),A.nrm(59,"mat-paginator",61),A.k0s()}if(2&n){const e=A.XpG();A.R7$(3),A.Y8G("icon",e.faHistory),A.R7$(7),A.R50("ngModel",e.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,D).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter),A.R7$(2),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.invoices)("ngClass",A.eq3(16,X,""!==e.errorMessage)),A.R7$(37),A.Y8G("matFooterRowDef",A.lJ4(18,YA)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns),A.R7$(),A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Ot=(()=>{var n;class l{constructor(i,o,r,iA,ne,re,ln,Qt){this.logger=i,this.store=o,this.decimalPipe=r,this.commonService=iA,this.rtlEffects=ne,this.datePipe=re,this.actions=ln,this.camelCaseWithReplace=Qt,this.calledFrom="transactions",this.faHistory=v.Int,this.nodePageDefs=B.Jd,this.convertedCurrency=null,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:B.md,sortBy:"expires_at",sortOrder:B.oi.DESCENDING},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoices=new z.I6([]),this.invoiceJSONArr=[],this.information={},this.private=!1,this.expiryStep=100,this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(tA.mH).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.Pj).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.invoiceJSONArr=i.listInvoices.invoices||[],this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(i)}),this.actions.pipe((0,I.Q)(this.unSubs[4]),(0,nA.p)(i=>i.type===B.TC.SET_LOOKUP_CLN||i.type===B.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(i=>{i.type===B.TC.SET_LOOKUP_CLN&&this.invoiceJSONArr&&this.sort&&this.paginator&&i.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(i.payload))),this.loadInvoicesTable(this.invoiceJSONArr))})}ngAfterViewInit(){this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr)}openCreateInvoiceModal(){this.store.dispatch((0,C.xO)({payload:{data:{pageSize:this.pageSize,component:IA}}}))}onAddInvoice(i){this.invoiceValue||(this.invoiceValue=0);const o=this.expiry?this.expiry:B.It;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,VA.VK)({payload:{label:this.newlyAddedInvoiceMemo,amount_msat:this.invoiceValue?1e3*this.invoiceValue:"any",description:this.description,expiry:o,exposeprivatechannels:this.private}})),this.resetData()}onDeleteExpiredInvoices(){this.store.dispatch((0,C.I1)({payload:{data:{type:"CONFIRM",titleMessage:"Delete Expired Invoices",noBtnText:"Cancel",yesBtnText:"Delete Invoices"}}})),this.rtlEffects.closeConfirm.pipe((0,I.Q)(this.unSubs[5])).subscribe(i=>{i&&this.store.dispatch((0,VA.a5)({payload:null}))})}onInvoiceClick(i){this.store.dispatch((0,C.xO)({payload:{data:{invoice:{amount_msat:i.amount_msat,label:i.label,expires_at:i.expires_at,paid_at:i.paid_at,bolt11:i.bolt11,payment_hash:i.payment_hash,description:i.description,status:i.status,amount_received_msat:i.amount_received_msat},newlyAdded:!1,component:gA.y}}}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint=""}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.invoices.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=this.datePipe.transform(new Date(1e3*(i.paid_at||0)),"dd/MMM/y HH:mm")?.toLowerCase()+this.datePipe.transform(new Date(1e3*(i.expires_at||0)),"dd/MMM/y HH:mm")?.toLowerCase()+(i.bolt12?"bolt12":i.bolt11?"bolt11":"keysend")+JSON.stringify(i).toLowerCase();break;case"status":r="paid"===i?.status?"paid":"unpaid"===i?.status?"unpaid":"expired";break;case"expires_at":case"paid_at":r=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"type":r=i?.bolt12?"bolt12":i?.bolt11&&i?.label?.includes("keysend-")?"keysend":"bolt11";break;case"msatoshi":r=((i.amount_msat||0)/1e3).toString()||"";break;case"msatoshi_received":r=((i.amount_received_msat||0)/1e3).toString()||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"status"===this.selFilterBy||"type"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,B.BQ.SATS,B.BQ.OTHER,this.selNode?.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,I.Q)(this.unSubs[6])).subscribe({next:i=>{this.convertedCurrency=i,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,B.k.OTHER)+" "+this.convertedCurrency.unit},error:i=>{this.invoiceValueHint="Conversion Error: "+i}}))}onRefreshInvoice(i){this.store.dispatch((0,VA.Yi)({payload:i.label}))}updateInvoicesData(i){this.invoiceJSONArr=this.invoiceJSONArr?.map(o=>o.label===i.label?i:o)}loadInvoicesTable(i){this.invoices=new z.I6(i?[...i]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(o,r)=>{switch(r){case"msatoshi":return o.amount_msat;case"msatoshi_received":return o.amount_received_msat;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.invoices.paginator=this.paginator,this.applyFilter(),this.setFilterPredicate()}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(de.QX),A.rXU(L.h),A.rXU(b.H),A.rXU(de.vh),A.rXU(kA.En),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-lightning-invoices-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Invoices")}])],decls:4,vars:3,consts:[["addInvoiceForm","ngForm"],["table",""],["fxLayout","column","fxFlex","110","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["matInput","","tabindex","2","name","description",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","name","invoiceValue","type","number","tabindex","3",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","9","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","10",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["mat-stroked-button","","color","warn","tabindex","7","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","expires_at"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","paid_at"],["matColumnDef","type"],["matColumnDef","description"],["matColumnDef","label"],["matColumnDef","payment_hash"],["matColumnDef","bolt11"],["matColumnDef","msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi_received"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Paid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Expired","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Paid","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Expired","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){1&o&&(A.j41(0,"div",2),A.DNE(1,ze,22,8,"form",3)(2,Oe,5,0,"div",4)(3,Mt,60,19,"div",5),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf","home"===r.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===r.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===r.calledFrom))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.VZ,hA.vS,hA.cV,P.aY,fA.$z,UA.fg,yA.rl,yA.nJ,yA.MV,yA.yw,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,HA.oV,H.iy,M.ZF,M.Ld,J.V,de.QX,de.vh],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return n(),l})();var bt=We(6697),Dt=We(1534),Ze=We(2765),qe=We(5951);const Et=["sendPaymentForm"],ct=["paymentAmt"],Ht=["offerAmt"],Jt=["paymentReq"],GA=["offerReq"];function zA(n,l){if(1&n&&(A.j41(0,"mat-radio-button",26),A.EFF(1,"Offer"),A.k0s()),2&n){const e=A.XpG();A.Y8G("value",A.mNQ(e.paymentTypes.OFFER))}}function vA(n,l){1&n&&A.eu8(0)}function qA(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.paymentError)}}function ZA(n,l){if(1&n&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",28),A.DNE(2,qA,2,1,"span",29),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.paymentError)}}function jA(n,l){if(1&n&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function ue(n,l){if(1&n&&A.nrm(0,"span",39),2&n){const e=A.XpG(3);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function WA(n,l){if(1&n&&(A.j41(0,"mat-hint",34),A.EFF(1),A.DNE(2,jA,2,1,"span",35)(3,ue,1,1,"span",36),A.EFF(4),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.SpI(" ",e.paymentDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),A.R7$(),A.SpI(" ",e.paymentDecodedHintPost," ")}}function ae(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Payment request is required."),A.k0s())}function ce(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.paymentDecodedHint)}}function ye(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Payment amount is required."),A.k0s())}function ke(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",10)(1,"mat-label"),A.EFF(2,"Amount (Sats)"),A.k0s(),A.j41(3,"input",40,5),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG(2);return A.DH7(r.paymentAmount,o)||(r.paymentAmount=o),w.Njj(o)}),A.bIt("change",function(o){w.eBV(e);const r=A.XpG(2);return w.Njj(r.onAmountChange(o))}),A.k0s(),A.j41(5,"mat-hint"),A.EFF(6,"It is a zero amount invoice, enter amount to be paid."),A.k0s(),A.DNE(7,ye,2,0,"mat-error",29),A.k0s()}if(2&n){const e=A.XpG(2);A.R7$(3),A.R50("ngModel",e.paymentAmount),A.R7$(4),A.Y8G("ngIf",!e.paymentAmount)}}function Je(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",30)(1,"mat-label"),A.EFF(2,"Payment Request"),A.k0s(),A.j41(3,"textarea",31,4),A.bIt("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onPaymentRequestEntry(o))})("matTextareaAutosize",function(){return w.eBV(e),w.Njj(!0)}),A.k0s(),A.DNE(5,WA,5,4,"mat-hint",32)(6,ae,2,0,"mat-error",29)(7,ce,2,1,"mat-error",29),A.k0s(),A.DNE(8,ke,8,2,"mat-form-field",33)}if(2&n){const e=A.sdS(4),i=A.XpG();A.R7$(3),A.Y8G("ngModel",i.paymentRequest),A.R7$(2),A.Y8G("ngIf",i.paymentRequest&&""!==i.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",!i.paymentRequest),A.R7$(),A.Y8G("ngIf",null==e.errors?null:e.errors.decodeError),A.R7$(),A.Y8G("ngIf",i.zeroAmtInvoice)}}function tt(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Pubkey is required."),A.k0s())}function je(n,l){1&n&&(A.j41(0,"span",45),A.EFF(1,"= "),A.k0s())}function Ce(n,l){if(1&n&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function _e(n,l){if(1&n&&A.nrm(0,"span",39),2&n){const e=A.XpG(2);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function st(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Keysend amount is required."),A.k0s())}function lt(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",30)(1,"mat-label"),A.EFF(2,"Pubkey"),A.k0s(),A.j41(3,"input",41),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.pubkey,o)||(r.pubkey=o),w.Njj(o)}),A.k0s(),A.DNE(4,tt,2,0,"mat-error",29),A.k0s(),A.j41(5,"mat-form-field",30)(6,"mat-label"),A.EFF(7,"Amount"),A.k0s(),A.j41(8,"input",42,6),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.keysendAmount,o)||(r.keysendAmount=o),w.Njj(o)}),A.bIt("keyup",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onKeysendAmountChange())}),A.k0s(),A.j41(10,"span",43),A.EFF(11,"Sats "),A.k0s(),A.j41(12,"mat-hint",34),A.DNE(13,je,2,0,"span",44)(14,Ce,2,1,"span",35)(15,_e,1,1,"span",36),A.EFF(16),A.k0s(),A.DNE(17,st,2,0,"mat-error",29),A.k0s()}if(2&n){const e=A.XpG();A.R7$(3),A.R50("ngModel",e.pubkey),A.R7$(),A.Y8G("ngIf",!e.pubkey),A.R7$(4),A.R50("ngModel",e.keysendAmount),A.R7$(5),A.Y8G("ngIf",""!==e.keysendValueHint),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.keysendValueHint),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.keysendValueHint),A.R7$(),A.SpI(" ",e.keysendValueHint," "),A.R7$(),A.Y8G("ngIf",!e.keysendAmount)}}function wt(n,l){if(1&n&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function Bt(n,l){if(1&n&&A.nrm(0,"span",39),2&n){const e=A.XpG(3);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function pt(n,l){if(1&n&&(A.j41(0,"mat-hint",34),A.EFF(1),A.DNE(2,wt,2,1,"span",35)(3,Bt,1,1,"span",36),A.EFF(4),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.SpI(" ",e.offerDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.offerDecodedHintPre),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.offerDecodedHintPre),A.R7$(),A.SpI(" ",e.offerDecodedHintPost," ")}}function ot(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Offer request is required."),A.k0s())}function ut(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.offerDecodedHint)}}function an(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Offer amount is required."),A.k0s())}function Wt(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",10)(1,"mat-label"),A.EFF(2,"Amount (Sats)"),A.k0s(),A.j41(3,"input",51,8),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG(2);return A.DH7(r.offerAmount,o)||(r.offerAmount=o),w.Njj(o)}),A.bIt("change",function(o){w.eBV(e);const r=A.XpG(2);return w.Njj(r.onAmountChange(o))}),A.k0s(),A.j41(5,"mat-hint"),A.EFF(6,"It is a zero amount offer, enter amount to be paid."),A.k0s(),A.DNE(7,an,2,0,"mat-error",29),A.k0s()}if(2&n){const e=A.XpG(2);A.R7$(3),A.R50("ngModel",e.offerAmount),A.R7$(4),A.Y8G("ngIf",!e.offerAmount)}}function _t(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",52)(1,"mat-label"),A.EFF(2,"Title to Save"),A.k0s(),A.j41(3,"input",53),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG(2);return A.DH7(r.offerTitle,o)||(r.offerTitle=o),w.Njj(o)}),A.k0s()()}if(2&n){const e=A.XpG(2);A.R7$(3),A.R50("ngModel",e.offerTitle)}}function Pt(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",30)(1,"mat-label"),A.EFF(2,"Offer Request"),A.k0s(),A.j41(3,"textarea",46,7),A.bIt("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onPaymentRequestEntry(o))})("matTextareaAutosize",function(){return w.eBV(e),w.Njj(!0)}),A.k0s(),A.DNE(5,pt,5,4,"mat-hint",32)(6,ot,2,0,"mat-error",29)(7,ut,2,1,"mat-error",29),A.k0s(),A.DNE(8,Wt,8,2,"mat-form-field",33),A.j41(9,"div",47)(10,"mat-checkbox",48),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.flgSaveToDB,o)||(r.flgSaveToDB=o),w.Njj(o)}),A.EFF(11,"Bookmark Offer"),A.k0s(),A.j41(12,"mat-icon",49),A.EFF(13,"info_outline"),A.k0s()(),A.DNE(14,_t,4,1,"mat-form-field",50)}if(2&n){const e=A.sdS(4),i=A.XpG();A.R7$(3),A.Y8G("ngModel",i.offerRequest),A.R7$(2),A.Y8G("ngIf",i.offerRequest&&""!==i.offerDecodedHintPre),A.R7$(),A.Y8G("ngIf",!i.offerRequest),A.R7$(),A.Y8G("ngIf",null==e.errors?null:e.errors.decodeError),A.R7$(),A.Y8G("ngIf",i.zeroAmtOffer),A.R7$(2),A.R50("ngModel",i.flgSaveToDB),A.R7$(4),A.Y8G("ngIf",i.flgSaveToDB||""!==i.offerTitle)}}let Bn=(()=>{var n;class l{set payReq(i){i&&(this.paymentReq=i)}set offrReq(i){i&&(this.offerReq=i)}constructor(i,o,r,iA,ne,re,ln,Qt){this.dialogRef=i,this.data=o,this.store=r,this.logger=iA,this.commonService=ne,this.decimalPipe=re,this.actions=ln,this.dataService=Qt,this.faExclamationTriangle=v.zpE,this.convertedCurrency=null,this.paymentTypes=B.Y0,this.paymentType=B.Y0.INVOICE,this.offerDecoded={},this.offerRequest="",this.offerDecodedHintPre="",this.offerDecodedHintPost="",this.offerDescription="",this.offerIssuer="",this.offerTitle="",this.zeroAmtOffer=!1,this.offerInvoice=null,this.offerAmount=null,this.flgSaveToDB=!1,this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentAmount=null,this.pubkey="",this.keysendAmount=null,this.keysendValueHint="",this.selActiveChannel={},this.activeChannels={},this.feeLimit=null,this.selFeeLimitType=B.nv[0],this.feeLimitTypes=B.nv,this.paymentError="",this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B]}ngOnInit(){if(this.data&&this.data.paymentType)switch(this.paymentType=this.data.paymentType,this.paymentType){case B.Y0.INVOICE:this.paymentRequest=this.data.invoiceBolt11;break;case B.Y0.KEYSEND:this.pubkey=this.data.pubkeyKeysend;break;case B.Y0.OFFER:this.onPaymentRequestEntry(this.data.bolt12),this.offerTitle=this.data.offerTitle,this.flgSaveToDB=!1}this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(tA.BM).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.activeChannels=i.activeChannels,this.logger.info(i)}),this.actions.pipe((0,I.Q)(this.unSubs[3]),(0,nA.p)(i=>i.type===B.TC.UPDATE_API_CALL_STATUS_CLN||i.type===B.TC.SEND_PAYMENT_STATUS_CLN||i.type===B.TC.SET_OFFER_INVOICE_CLN)).subscribe(i=>{i.type===B.TC.SEND_PAYMENT_STATUS_CLN&&this.dialogRef.close(),i.type===B.TC.SET_OFFER_INVOICE_CLN&&(this.offerInvoice=i.payload,this.sendPayment()),i.type===B.TC.UPDATE_API_CALL_STATUS_CLN&&i.payload.status===B.wn.ERROR&&("SendPayment"===i.payload.action&&(delete this.paymentDecoded.amount_msat,this.paymentError=i.payload.message),"DecodePayment"===i.payload.action&&(this.paymentType===B.Y0.INVOICE&&(this.paymentDecodedHintPre="ERROR: "+i.payload.message,this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})),this.paymentType===B.Y0.OFFER&&(this.offerDecodedHintPre="ERROR: "+i.payload.message,this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})),this.paymentType===B.Y0.KEYSEND&&(this.keysendValueHint="ERROR: "+i.payload.message)),"FetchOfferInvoice"===i.payload.action&&this.paymentType===B.Y0.OFFER&&(this.paymentError=i.payload.message))})}onSendPayment(){switch(this.paymentType){case B.Y0.KEYSEND:if(!this.pubkey||""===this.pubkey.trim()||!this.keysendAmount||this.keysendAmount<=0)return!0;this.keysendPayment();break;case B.Y0.INVOICE:if(!this.paymentRequest||this.zeroAmtInvoice&&(0===this.paymentAmount||!this.paymentAmount))return this.paymentReq.control.markAsTouched(),this.paymentAmt.control.markAsTouched(),!0;this.paymentDecoded.created_at?this.sendPayment():(this.resetInvoiceDetails(),this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,I.Q)(this.unSubs[4])).subscribe(i=>{"bolt12 offer"===i.type&&i.offer_id?(this.paymentDecodedHintPre="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=i,this.setPaymentDecodedDetails())}));break;case B.Y0.OFFER:if(!this.offerRequest||this.zeroAmtOffer&&(0===this.offerAmount||!this.offerAmount))return this.offerReq.control.markAsTouched(),this.offerAmt.control.markAsTouched(),!0;this.offerDecoded.offer_id?this.sendPayment():(this.resetOfferDetails(),this.dataService.decodePayment(this.offerRequest,!0).pipe((0,I.Q)(this.unSubs[5])).subscribe(i=>{"bolt11 invoice"===i.type&&i.payment_hash?(this.offerDecodedHintPre="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=i,this.setOfferDecodedDetails())}))}}keysendPayment(){this.keysendAmount&&this.store.dispatch((0,VA.Fd)({payload:{uiMessage:B.MZ.SEND_KEYSEND,paymentType:B.Y0.KEYSEND,destination:this.pubkey,amount_msat:1e3*this.keysendAmount,fromDialog:!0}}))}sendPayment(){this.paymentError="",this.paymentType===B.Y0.INVOICE?this.store.dispatch((0,VA.Fd)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{uiMessage:B.MZ.SEND_PAYMENT,paymentType:B.Y0.INVOICE,bolt11:this.paymentRequest,amount_msat:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{uiMessage:B.MZ.SEND_PAYMENT,paymentType:B.Y0.INVOICE,bolt11:this.paymentRequest,fromDialog:!0}})):this.paymentType===B.Y0.OFFER&&(this.offerInvoice?this.offerAmount&&this.store.dispatch((0,VA.Fd)({payload:{uiMessage:B.MZ.SEND_PAYMENT,paymentType:B.Y0.OFFER,bolt11:this.offerInvoice.invoice,saveToDB:this.flgSaveToDB,bolt12:this.offerRequest,amount_msat:1e3*this.offerAmount,zeroAmtOffer:this.zeroAmtOffer,title:this.offerTitle,issuer:this.offerIssuer,description:this.offerDescription,fromDialog:!0}})):this.store.dispatch((0,VA.Ew)(this.zeroAmtOffer&&this.offerAmount?{payload:{offer:this.offerRequest,amount_msat:1e3*this.offerAmount}}:{payload:{offer:this.offerRequest}})))}onPaymentRequestEntry(i){this.paymentType===B.Y0.INVOICE?(this.paymentRequest=i,this.resetInvoiceDetails()):this.paymentType===B.Y0.OFFER&&(this.offerRequest=i,this.resetOfferDetails()),i.length>100&&this.dataService.decodePayment(i,!0).pipe((0,I.Q)(this.unSubs[6])).subscribe(o=>{this.paymentType===B.Y0.INVOICE?"bolt12 offer"===o.type&&o.offer_id?(this.paymentDecodedHintPre="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=o,this.setPaymentDecodedDetails()):this.paymentType===B.Y0.OFFER&&("bolt11 invoice"===o.type&&o.payment_hash?(this.offerDecodedHintPre="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=o,this.setOfferDecodedDetails()))})}resetOfferDetails(){this.offerInvoice=null,this.offerAmount=null,this.offerDecodedHintPre="",this.offerDecodedHintPost="",this.zeroAmtOffer=!1,this.paymentError="",this.offerReq&&this.offerReq.control.setErrors(null)}resetInvoiceDetails(){this.paymentAmount=null,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentError="",this.paymentReq&&this.paymentReq.control.setErrors(null)}onAmountChange(i){this.paymentType===B.Y0.INVOICE&&(delete this.paymentDecoded.amount_msat,this.paymentDecoded.amount_msat=+i.target.value),this.paymentType===B.Y0.OFFER&&(delete this.offerDecoded.offer_amount_msat,this.offerDecoded.offer_amount_msat=i.target.value)}onPaymentTypeChange(){this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.offerDecodedHintPre="",this.offerDecodedHintPost="",this.offerInvoice=null}setOfferDecodedDetails(){this.offerDecoded.offer_id&&!this.offerDecoded.offer_amount_msat?(this.offerDecoded.offer_amount_msat=0,this.zeroAmtOffer=!0,this.offerDescription=this.offerDecoded.offer_description||"",this.offerIssuer=this.offerDecoded.offer_issuer?this.offerDecoded.offer_issuer:"",this.offerDecodedHintPre="Zero Amount Offer | Description: "+this.offerDecoded.offer_description,this.offerDecodedHintPost=""):(this.zeroAmtOffer=!1,this.offerAmount=this.offerDecoded.offer_amount_msat?this.offerDecoded.offer_amount_msat/1e3:0,this.offerDescription=this.offerDecoded.offer_description||"",this.offerIssuer=this.offerDecoded.offer_issuer?this.offerDecoded.offer_issuer:"",this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(this.offerAmount,B.BQ.SATS,B.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,I.Q)(this.unSubs[7])).subscribe({next:i=>{this.convertedCurrency=i,this.offerDecodedHintPre="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats (",this.offerDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,B.k.OTHER)+" "+this.convertedCurrency.unit+") | Description: "+this.offerDecoded.offer_description},error:i=>{this.offerDecodedHintPre="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats | Description: "+this.offerDecoded.offer_description+". Unable to convert currency.",this.offerDecodedHintPost=""}}):(this.offerDecodedHintPre="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats | Description: "+this.offerDecoded.offer_description,this.offerDecodedHintPost=""))}setPaymentDecodedDetails(){this.paymentDecoded.created_at&&!this.paymentDecoded.amount_msat?(this.paymentDecoded.amount_msat=0,this.zeroAmtInvoice=!0,this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0,B.BQ.SATS,B.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,I.Q)(this.unSubs[8])).subscribe({next:i=>{this.convertedCurrency=i,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,B.k.OTHER)+" "+this.convertedCurrency.unit+") | Memo: "+this.paymentDecoded.description},error:i=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""))}resetData(){switch(this.paymentType){case B.Y0.KEYSEND:this.pubkey="",this.keysendValueHint="",this.keysendAmount=null;break;case B.Y0.INVOICE:this.paymentRequest="",this.paymentDecoded={},this.selActiveChannel=null,this.feeLimit=null,this.selFeeLimitType=B.nv[0],this.resetInvoiceDetails();break;case B.Y0.OFFER:this.offerRequest="",this.offerDecoded={},this.flgSaveToDB=!1,this.resetOfferDetails()}this.paymentError=""}onKeysendAmountChange(){this.selNode&&this.selNode.settings.fiatConversion&&(this.keysendValueHint="",this.keysendAmount&&this.keysendAmount>99&&this.commonService.convertCurrency(this.keysendAmount,B.BQ.SATS,B.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,I.Q)(this.unSubs[3])).subscribe({next:i=>{this.convertedCurrency=i,this.keysendValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,B.k.OTHER)+" "+this.convertedCurrency.unit},error:i=>{this.keysendValueHint="Conversion Error: "+i}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(AA.il),A.rXU(aA.gP),A.rXU(L.h),A.rXU(de.QX),A.rXU(kA.En),A.rXU(Dt.u))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-lightning-send-payments"]],viewQuery:function(o,r){if(1&o&&(A.GBs(Et,5),A.GBs(ct,5),A.GBs(Ht,5),A.GBs(Jt,5),A.GBs(GA,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.form=iA.first),A.mGM(iA=A.lsd())&&(r.paymentAmt=iA.first),A.mGM(iA=A.lsd())&&(r.offerAmt=iA.first),A.mGM(iA=A.lsd())&&(r.payReq=iA.first),A.mGM(iA=A.lsd())&&(r.offrReq=iA.first)}},standalone:!1,decls:30,vars:9,consts:[["sendPaymentForm","ngForm"],["invoiceBlock",""],["keysendBlock",""],["offerBlock",""],["paymentReq","ngModel"],["paymentAmt","ngModel"],["keysendAmt","ngModel"],["offerReq","ngModel"],["offerAmt","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","12","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["color","primary","name","paymentType","fxFlex","100","fxLayoutAlign","start start",1,"my-1",3,"ngModelChange","change","ngModel"],["fxFlex","20","tabindex","1",3,"value"],["fxFlex","20","tabindex","2",3,"value"],["fxFlex","20","tabindex","3",3,"value",4,"ngIf"],["fxLayoutAlign","space-between stretch","fxLayout","column",3,"submit","reset"],[4,"ngTemplateOutlet"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","9","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],["fxFlex","20","tabindex","3",3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","rows","4","name","paymentRequest","tabindex","4","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["matInput","","name","amount","tabindex","5","required","",3,"ngModelChange","change","ngModel"],["autoFocus","","matInput","","name","pubkey","tabindex","4","required","",3,"ngModelChange","ngModel"],["matInput","","name","keysendAmount","tabindex","5","required","",3,"ngModelChange","keyup","ngModel"],["matSuffix",""],["class","mr-3px",4,"ngIf"],[1,"mr-3px"],["autoFocus","","matInput","","rows","4","name","offerRequest","tabindex","4","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"mt-1"],["fxFlex","none","tabindex","6","color","primary",3,"ngModelChange","ngModel"],["matTooltip","Save offer in database for future payments","matTooltipPosition","below","fxFlex","none",1,"info-icon"],["fxFlex","100","class","mt-1",4,"ngIf"],["matInput","","name","amountoffer","tabindex","5","required","",3,"ngModelChange","change","ngModel"],["fxFlex","100",1,"mt-1"],["matInput","","tabindex","7",3,"ngModelChange","ngModel"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",9)(1,"div",10)(2,"mat-card-header",11)(3,"div",12)(4,"span",13),A.EFF(5,"Send Payment"),A.k0s()(),A.j41(6,"button",14),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",15)(9,"mat-radio-group",16),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.paymentType,re)||(r.paymentType=re),w.Njj(re)}),A.bIt("change",function(){return w.eBV(iA),w.Njj(r.onPaymentTypeChange())}),A.j41(10,"mat-radio-button",17),A.EFF(11,"Invoice"),A.k0s(),A.j41(12,"mat-radio-button",18),A.EFF(13,"Keysend"),A.k0s(),A.DNE(14,zA,2,2,"mat-radio-button",19),A.k0s(),A.j41(15,"form",20,0),A.bIt("submit",function(){return w.eBV(iA),w.Njj(r.onSendPayment())})("reset",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.DNE(17,vA,1,0,"ng-container",21)(18,ZA,3,2,"div",22),A.j41(19,"div",23)(20,"button",24),A.EFF(21,"Clear Fields"),A.k0s(),A.j41(22,"button",25),A.EFF(23,"Send Payment"),A.k0s()()()()()(),A.DNE(24,Je,9,5,"ng-template",null,1,A.C5r)(26,lt,18,8,"ng-template",null,2,A.C5r)(28,Pt,15,7,"ng-template",null,3,A.C5r)}if(2&o){const iA=A.sdS(25),ne=A.sdS(27),re=A.sdS(29);A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(3),A.R50("ngModel",r.paymentType),A.R7$(),A.Y8G("value",A.mNQ(r.paymentTypes.INVOICE)),A.R7$(2),A.Y8G("value",A.mNQ(r.paymentTypes.KEYSEND)),A.R7$(2),A.Y8G("ngIf",r.selNode.settings.enableOffers),A.R7$(3),A.Y8G("ngTemplateOutlet",r.paymentType===r.paymentTypes.KEYSEND?ne:r.paymentType===r.paymentTypes.OFFER?re:iA),A.R7$(),A.Y8G("ngIf",""!==r.paymentError)}},dependencies:[de.bT,de.T3,hA.qT,hA.me,hA.BC,hA.cb,hA.YS,hA.vS,hA.cV,P.aY,wA.tx,fA.$z,QA.m2,QA.MM,Ze.So,oA.An,UA.fg,yA.rl,yA.nJ,yA.MV,yA.TL,yA.yw,qe.VT,qe._g,Q.DJ,Q.sA,Q.UI,HA.oV,cA.N],encapsulation:2}))}return n(),l})();const In=["sendPaymentForm"],Dn=()=>["all"],Cn=n=>({"error-border":n}),Nn=()=>["no_payment"],St=n=>({width:n}),vn=n=>({"display-none":n});function Un(n,l){if(1&n&&(A.j41(0,"span",18),A.nrm(1,"fa-icon",19),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function Ln(n,l){if(1&n&&A.nrm(0,"span",20),2&n){const e=A.XpG(3);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function Fn(n,l){if(1&n&&(A.j41(0,"mat-hint",15),A.EFF(1),A.DNE(2,Un,2,1,"span",16)(3,Ln,1,1,"span",17),A.EFF(4),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.SpI(" ",e.paymentDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),A.R7$(),A.SpI(" ",e.paymentDecodedHintPost," ")}}function On(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Payment request is required."),A.k0s())}function Ei(n,l){if(1&n){const e=A.RV6();A.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),A.EFF(4,"Payment Request"),A.k0s(),A.j41(5,"textarea",9,1),A.bIt("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onPaymentRequestEntry(o))})("matTextareaAutosize",function(){return w.eBV(e),w.Njj(!0)}),A.k0s(),A.DNE(7,Fn,5,4,"mat-hint",10)(8,On,2,0,"mat-error",11),A.k0s(),A.j41(9,"div",12)(10,"button",13),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.resetData())}),A.EFF(11,"Clear Field"),A.k0s(),A.j41(12,"button",14),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onSendPayment())}),A.EFF(13,"Send Payment"),A.k0s()()()}if(2&n){const e=A.XpG();A.R7$(5),A.Y8G("ngModel",e.paymentRequest),A.R7$(2),A.Y8G("ngIf",e.paymentRequest&&""!==e.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",!e.paymentRequest)}}function wi(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",21)(1,"button",14),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.openSendPaymentModal())}),A.EFF(2,"Send Payment"),A.k0s()()}}function Ci(n,l){if(1&n&&(A.j41(0,"mat-option",70),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function di(n,l){1&n&&A.nrm(0,"mat-progress-bar",71)}function ri(n,l){1&n&&A.nrm(0,"th",72)}function xn(n,l){1&n&&A.nrm(0,"span",76)}function ai(n,l){1&n&&A.nrm(0,"span",77)}function Ki(n,l){if(1&n&&(A.j41(0,"td",73),A.DNE(1,xn,1,0,"span",74)(2,ai,1,0,"span",75),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf","complete"===e.status),A.R7$(),A.Y8G("ngIf","complete"!==e.status)}}function Qi(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Created At"),A.k0s())}function Xi(n,l){if(1&n&&(A.j41(0,"td",73),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*(null==e?null:e.created_at),"dd/MMM/y HH:mm")," ")}}function mi(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Type"),A.k0s())}function fn(n,l){if(1&n&&(A.j41(0,"td",73),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null!=e&&e.bolt12?"Bolt12":null!=e&&e.bolt11?"Bolt11":"Keysend")}}function ms(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Payment Hash"),A.k0s())}function Ms(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash)}}function Mi(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Invoice"),A.k0s())}function pi(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.bolt11)}}function Zi(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Label"),A.k0s())}function qi(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.label)}}function $i(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Destination"),A.k0s())}function ps(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.destination)}}function As(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Memo"),A.k0s())}function Is(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.memo)}}function Ui(n,l){1&n&&(A.j41(0,"th",81),A.EFF(1,"Sats Sent"),A.k0s())}function es(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",82),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.amount_sent_msat)/1e3,"1.0-4"))}}function Zn(n,l){1&n&&(A.j41(0,"th",81),A.EFF(1,"Sats Received"),A.k0s())}function Ds(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",82),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.amount_msat)/1e3,"1.0-4"))}}function Fs(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",83)(1,"div",84)(2,"mat-select",85),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",86),A.bIt("click",function(){w.eBV(e);const o=A.XpG(2);return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Li(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",87)(1,"button",88),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG(2);return w.Njj(r.onPaymentClick(o))}),A.EFF(2,"View Info"),A.k0s()()}}function Gi(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No payment available."),A.k0s())}function un(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting payments..."),A.k0s())}function Ii(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function qn(n,l){if(1&n&&(A.j41(0,"td",89),A.DNE(1,Gi,2,0,"p",11)(2,un,2,0,"p",11)(3,Ii,2,1,"p",11),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",!(null!=e.payments&&e.payments.data&&null!=e.payments&&null!=e.payments.data&&e.payments.data.length||(null==e.apiCallStatus?null:e.apiCallStatus.status)!==e.apiCallStatusEnum.COMPLETED)),A.R7$(),A.Y8G("ngIf",!(null!=e.payments&&e.payments.data&&null!=e.payments&&null!=e.payments.data&&e.payments.data.length||(null==e.apiCallStatus?null:e.apiCallStatus.status)!==e.apiCallStatusEnum.INITIATED)),A.R7$(),A.Y8G("ngIf",!(null!=e.payments&&e.payments.data&&null!=e.payments&&null!=e.payments.data&&e.payments.data.length||(null==e.apiCallStatus?null:e.apiCallStatus.status)!==e.apiCallStatusEnum.ERROR))}}function ys(n,l){1&n&&A.nrm(0,"span",76)}function xs(n,l){1&n&&A.nrm(0,"span",77)}function Di(n,l){1&n&&A.nrm(0,"span",76)}function oi(n,l){1&n&&A.nrm(0,"span",77)}function Ys(n,l){if(1&n&&(A.j41(0,"span",90),A.DNE(1,Di,1,0,"span",74)(2,oi,1,0,"span",75),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf","complete"===e.status),A.R7$(),A.Y8G("ngIf","complete"!==e.status)}}function bs(n,l){if(1&n&&(A.qex(0),A.DNE(1,Ys,3,2,"span",91),A.bVm()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function zi(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",90),A.DNE(2,ys,1,0,"span",74)(3,xs,1,0,"span",75),A.k0s(),A.DNE(4,bs,2,1,"ng-container",11),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.Y8G("ngIf","complete"===e.status),A.R7$(),A.Y8G("ngIf","complete"!==e.status),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function vs(n,l){if(1&n&&(A.j41(0,"span",90),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*e.created_at,"dd/MMM/y HH:mm")," ")}}function ts(n,l){if(1&n&&(A.qex(0),A.DNE(1,vs,3,4,"span",91),A.bVm()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function Rs(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",90),A.EFF(2),A.k0s(),A.DNE(3,ts,2,1,"ng-container",11),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" Total Attempts: ",null==e?null:e.total_parts," "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function ns(n,l){1&n&&A.nrm(0,"span",90)}function Ss(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,ns,1,0,"span",91),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function li(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",90),A.EFF(2),A.k0s(),A.DNE(3,Ss,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(null!=e&&e.bolt12?"Bolt12":null!=e&&e.bolt11?"Bolt11":"Keysend"),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Ns(n,l){if(1&n&&(A.j41(0,"span",90),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" Part ID ",e.partid?e.partid:0," ")}}function is(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,Ns,2,1,"span",91),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function Ts(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,is,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Ps(n,l){if(1&n&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&n){const e=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,St,e.screenSize===e.screenSizeEnum.XS?"6rem":e.colWidth))}}function Fi(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,Ps,2,3,"span",93),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function ki(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,Fi,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.bolt11),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Us(n,l){if(1&n&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&n){const e=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,St,e.screenSize===e.screenSizeEnum.XS?"6rem":e.colWidth))}}function zn(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,Us,2,3,"span",93),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function Ls(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,zn,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.label),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function ss(n,l){if(1&n&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&n){const e=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,St,e.screenSize===e.screenSizeEnum.XS?"6rem":e.colWidth))}}function Gs(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,ss,2,3,"span",93),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function yi(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,Gs,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.destination),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Yn(n,l){if(1&n&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&n){const e=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,St,e.screenSize===e.screenSizeEnum.XS?"6rem":e.colWidth))}}function h(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,Yn,2,3,"span",93),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function c(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,h,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.memo),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function y(n,l){if(1&n&&(A.j41(0,"span",95),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,e.amount_sent_msat/1e3,e.amount_sent_msat<1e3?"1.0-4":"1.0-0")," ")}}function p(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,y,3,4,"span",96),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function q(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",95),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.DNE(4,p,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,2,(null==e?null:e.amount_sent_msat)/1e3,(null==e?null:e.amount_sent_msat)<1e3?"1.0-4":"1.0-0")),A.R7$(2),A.Y8G("ngIf",e.is_expanded)}}function CA(n,l){if(1&n&&(A.j41(0,"span",95),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,e.amount_msat/1e3,e.amount_msat<1e3?"1.0-4":"1.0-0")," ")}}function _A(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,CA,3,4,"span",96),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function ee(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",95),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.DNE(4,_A,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,2,(null==e?null:e.amount_msat)/1e3,(null==e?null:e.amount_msat)<1e3?"1.0-4":"1.0-0")),A.R7$(2),A.Y8G("ngIf",e.is_expanded)}}function he(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",100)(1,"button",101),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG(4);return w.Njj(r.onPaymentClick(o))}),A.EFF(2),A.k0s()()}if(2&n){const e=l.$implicit;A.R7$(2),A.SpI("View ",e.partid?e.partid:0)}}function Ie(n,l){if(1&n&&(A.j41(0,"div"),A.DNE(1,he,3,1,"div",99),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function xe(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",73)(1,"span",97)(2,"button",98),A.bIt("click",function(){const o=w.eBV(e).$implicit;return w.Njj(o.is_expanded=!o.is_expanded)}),A.EFF(3),A.k0s()(),A.DNE(4,Ie,2,1,"div",11),A.k0s()}if(2&n){const e=l.$implicit;A.R7$(3),A.JRh(e.is_expanded?"Hide":"Show"),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function $(n,l){1&n&&A.nrm(0,"tr",102)}function s(n,l){if(1&n&&A.nrm(0,"tr",103),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,vn,(null==e.payments?null:e.payments.data)&&(null==e.payments||null==e.payments.data?null:e.payments.data.length)&&(null==e.payments||null==e.payments.data?null:e.payments.data.length)>0))}}function d(n,l){1&n&&A.nrm(0,"tr",104)}function F(n,l){1&n&&A.nrm(0,"tr",102)}function W(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",22)(1,"div",23)(2,"div",24),A.nrm(3,"fa-icon",25),A.j41(4,"span",26),A.EFF(5,"Payments History"),A.k0s()(),A.j41(6,"div",27)(7,"mat-form-field",28)(8,"mat-label"),A.EFF(9,"Filter By"),A.k0s(),A.j41(10,"mat-select",29),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilterBy,o)||(r.selFilterBy=o),w.Njj(o)}),A.bIt("selectionChange",function(){w.eBV(e);const o=A.XpG();return o.selFilter="",w.Njj(o.applyFilter())}),A.j41(11,"perfect-scrollbar"),A.DNE(12,Ci,2,2,"mat-option",30),A.k0s()()(),A.j41(13,"mat-form-field",28)(14,"mat-label"),A.EFF(15,"Filter"),A.k0s(),A.j41(16,"input",31),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilter,o)||(r.selFilter=o),w.Njj(o)}),A.bIt("input",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())})("keyup",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())}),A.k0s()()()(),A.j41(17,"div",32)(18,"div",33),A.DNE(19,di,1,0,"mat-progress-bar",34),A.j41(20,"table",35,2),A.qex(22,36),A.DNE(23,ri,1,0,"th",37)(24,Ki,3,2,"td",38),A.bVm(),A.qex(25,39),A.DNE(26,Qi,2,0,"th",40)(27,Xi,3,4,"td",38),A.bVm(),A.qex(28,41),A.DNE(29,mi,2,0,"th",40)(30,fn,2,1,"td",38),A.bVm(),A.qex(31,42),A.DNE(32,ms,2,0,"th",40)(33,Ms,4,4,"td",38),A.bVm(),A.qex(34,43),A.DNE(35,Mi,2,0,"th",40)(36,pi,4,4,"td",38),A.bVm(),A.qex(37,44),A.DNE(38,Zi,2,0,"th",40)(39,qi,4,4,"td",38),A.bVm(),A.qex(40,45),A.DNE(41,$i,2,0,"th",40)(42,ps,4,4,"td",38),A.bVm(),A.qex(43,46),A.DNE(44,As,2,0,"th",40)(45,Is,4,4,"td",38),A.bVm(),A.qex(46,47),A.DNE(47,Ui,2,0,"th",48)(48,es,4,4,"td",38),A.bVm(),A.qex(49,49),A.DNE(50,Zn,2,0,"th",48)(51,Ds,4,4,"td",38),A.bVm(),A.qex(52,50),A.DNE(53,Fs,6,0,"th",51)(54,Li,3,0,"td",52),A.bVm(),A.qex(55,53),A.DNE(56,qn,4,3,"td",54),A.bVm(),A.qex(57,55),A.DNE(58,zi,5,3,"td",38),A.bVm(),A.qex(59,56),A.DNE(60,Rs,4,2,"td",38),A.bVm(),A.qex(61,57),A.DNE(62,li,4,2,"td",38),A.bVm(),A.qex(63,58),A.DNE(64,Ts,5,5,"td",38),A.bVm(),A.qex(65,59),A.DNE(66,ki,5,5,"td",38),A.bVm(),A.qex(67,60),A.DNE(68,Ls,5,5,"td",38),A.bVm(),A.qex(69,61),A.DNE(70,yi,5,5,"td",38),A.bVm(),A.qex(71,62),A.DNE(72,c,5,5,"td",38),A.bVm(),A.qex(73,63),A.DNE(74,q,5,5,"td",38),A.bVm(),A.qex(75,64),A.DNE(76,ee,5,5,"td",38),A.bVm(),A.qex(77,65),A.DNE(78,xe,5,2,"td",38),A.bVm(),A.DNE(79,$,1,0,"tr",66)(80,s,1,3,"tr",67)(81,d,1,0,"tr",68)(82,F,1,0,"tr",66),A.k0s()()(),A.nrm(83,"mat-paginator",69),A.k0s()}if(2&n){const e=A.XpG();A.R7$(3),A.Y8G("icon",e.faHistory),A.R7$(7),A.R50("ngModel",e.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(18,Dn).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter),A.R7$(3),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.payments)("ngClass",A.eq3(19,Cn,""!==e.errorMessage)),A.R7$(59),A.Y8G("matRowDefColumns",e.mppColumns)("matRowDefWhen",e.is_group),A.R7$(),A.Y8G("matFooterRowDef",A.lJ4(21,Nn)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)("matRowDefWhen",!e.is_group),A.R7$(),A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Z=(()=>{var n;class l{constructor(i,o,r,iA,ne,re,ln,Qt,wn){this.logger=i,this.commonService=o,this.store=r,this.rtlEffects=iA,this.decimalPipe=ne,this.titleCasePipe=re,this.datePipe=ln,this.dataService=Qt,this.camelCaseWithReplace=wn,this.calledFrom="transactions",this.convertedCurrency=null,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:B.md,sortBy:"created_at",sortOrder:B.oi.DESCENDING},this.faHistory=v.Int,this.newlyAddedPayment="",this.information={},this.payments=new z.I6([]),this.paymentJSONArr=[],this.displayedColumns=[],this.mppColumns=[],this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(tA.mH).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.mppColumns=[],this.displayedColumns.map(o=>this.mppColumns.push("group_"+o)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns),this.logger.info(this.mppColumns)}),this.store.select(tA.KT).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=i.payments||[],this.paymentJSONArr.length&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(i)})}ngAfterViewInit(){this.paymentJSONArr.length&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr)}is_group(i,o){return o.is_group||!1}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.created_at?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,I.Q)(this.unSubs[4])).subscribe(i=>{this.paymentDecoded=i,this.paymentDecoded.created_at?(this.paymentDecoded.amount_msat||(this.paymentDecoded.amount_msat=0),this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded?.payment_hash||"",this.paymentDecoded.amount_msat&&0!==this.paymentDecoded.amount_msat?(this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"payee",value:this.paymentDecoded.payee,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"created_at",value:this.paymentDecoded.created_at,title:"Creation Date",width:50,type:B.UN.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.amount_msat/1e3,title:"Amount (Sats)",width:50,type:B.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:B.UN.NUMBER},{key:"min_finaltv_expiry",value:this.paymentDecoded.min_final_cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,bt.s)(1)).subscribe(o=>{o&&(this.store.dispatch((0,VA.Fd)({payload:{uiMessage:B.MZ.SEND_PAYMENT,paymentType:B.Y0.INVOICE,bolt11:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"payee",value:this.paymentDecoded.payee,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"created_at",value:this.paymentDecoded.created_at,title:"Creation Date",width:40,type:B.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:B.UN.NUMBER},{key:"min_finaltv_expiry",value:this.paymentDecoded.min_final_cltv_expiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",getInputs:[{placeholder:"Amount (Sats)",inputType:B.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,bt.s)(1)).subscribe(r=>{r&&(this.paymentDecoded.amount_msat=r[0].inputValue,this.store.dispatch((0,VA.Fd)({payload:{uiMessage:B.MZ.SEND_PAYMENT,paymentType:B.Y0.INVOICE,bolt11:this.paymentRequest,amount_msat:1e3*r[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(i){this.paymentRequest=i,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,I.Q)(this.unSubs[5])).subscribe(o=>{this.paymentDecoded=o,this.paymentDecoded.amount_msat?this.selNode?.settings.fiatConversion?this.commonService.convertCurrency(this.paymentDecoded.amount_msat/1e3||0,B.BQ.SATS,B.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,I.Q)(this.unSubs[6])).subscribe({next:r=>{this.convertedCurrency=r,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,B.k.OTHER)+" "+this.convertedCurrency.unit+") | Memo: "+this.paymentDecoded.description},error:r=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost="")})}openSendPaymentModal(){this.store.dispatch((0,C.xO)({payload:{data:{component:Bn}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}onPaymentClick(i){const o=[[{key:"payment_preimage",value:i.payment_preimage,title:"Payment Preimage",width:100,type:B.UN.STRING}],[{key:"id",value:i.id,title:"ID",width:20,type:B.UN.STRING},{key:"destination",value:i.destination,title:"Destination",width:80,type:B.UN.STRING}],[{key:"created_at",value:i.created_at,title:"Creation Date",width:50,type:B.UN.DATE_TIME},{key:"status",value:this.titleCasePipe.transform(i.status),title:"Status",width:50,type:B.UN.STRING}],[{key:"amount_msat",value:i.amount_msat,title:"Amount (mSats)",width:50,type:B.UN.NUMBER},{key:"amount_sent_msat",value:i.amount_sent_msat,title:"Amount Sent (mSats)",width:50,type:B.UN.NUMBER}]];i.bolt11&&""!==i.bolt11&&o?.unshift([{key:"bolt11",value:i.bolt11,title:"Bolt 11",width:100,type:B.UN.STRING}]),i.bolt12&&""!==i.bolt12&&o?.unshift([{key:"bolt12",value:i.bolt12,title:"Bolt 12",width:100,type:B.UN.STRING}]),i.memo&&""!==i.memo&&o?.splice(2,0,[{key:"memo",value:i.memo,title:"Memo",width:100,type:B.UN.STRING}]),i.hasOwnProperty("partid")?o?.unshift([{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:80,type:B.UN.STRING},{key:"partid",value:i.partid,title:"Part ID",width:20,type:B.UN.STRING}]):o?.unshift([{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:100,type:B.UN.STRING}]),this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"Payment Information",message:o}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.payments.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.created_at?this.datePipe.transform(new Date(1e3*i.created_at),"dd/MMM/y HH:mm")?.toLowerCase():"")+(i.bolt12?"bolt12":i.bolt11?"bolt11":"keysend")+JSON.stringify(i).toLowerCase();break;case"status":r="complete"===i?.status?"completed":"incomplete/failed";break;case"created_at":r=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"msatoshi_sent":r=((i.amount_sent_msat||0)/1e3).toString()||"";break;case"msatoshi":r=((i.amount_msat||0)/1e3).toString()||"";break;case"type":r=i?.bolt12?"bolt12":i?.bolt11?"bolt11":"keysend";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"status"===this.selFilterBy||"type"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadPaymentsTable(i){this.payments=new z.I6(i?[...i]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(o,r)=>{switch(r){case"msatoshi_sent":return o.amount_sent_msat;case"msatoshi":return o.amount_msat;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.payments.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const o=JSON.parse(JSON.stringify(this.payments.data))?.reduce((r,iA)=>iA.mpps?r.concat(iA.mpps):(delete iA.is_group,delete iA.is_expanded,delete iA.total_parts,r.concat(iA)),[]);this.commonService.downloadFile(o,"Payments")}}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(b.H),A.rXU(de.QX),A.rXU(de.PV),A.rXU(de.vh),A.rXU(Dt.u),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-lightning-payments"]],viewQuery:function(o,r){if(1&o&&(A.GBs(In,5),A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.form=iA.first),A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Payments")}])],decls:4,vars:3,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["table",""],["fxLayout","column","fxFlex","110","fxLayoutAlign","space-between stretch",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100"],["matInput","","name","paymentRequest","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","perfectScrollbar","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxLayout","row",1,"mt-3"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","created_at"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","type"],["matColumnDef","payment_hash"],["matColumnDef","bolt11"],["matColumnDef","label"],["matColumnDef","destination"],["matColumnDef","memo"],["matColumnDef","msatoshi_sent"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","group_status"],["matColumnDef","group_created_at"],["matColumnDef","group_type"],["matColumnDef","group_payment_hash"],["matColumnDef","group_bolt11"],["matColumnDef","group_label"],["matColumnDef","group_destination"],["matColumnDef","group_memo"],["matColumnDef","group_msatoshi_sent"],["matColumnDef","group_msatoshi"],["matColumnDef","group_actions"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Completed","matTooltipPosition","right",4,"ngIf"],["class","dot yellow","matTooltip","Incomplete/Failed","matTooltipPosition","right",4,"ngIf"],["matTooltip","Completed","matTooltipPosition","right",1,"dot","green"],["matTooltip","Incomplete/Failed","matTooltipPosition","right",1,"dot","yellow"],["mat-header-cell","","mat-sort-header",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"mpp-row-span"],["fxLayoutAlign","start center","class","mpp-row-span",4,"ngFor","ngForOf"],["fxLayout","row",1,"ellipsis-parent","mpp-row-span",3,"ngStyle"],["fxLayoutAlign","start center","class","ellipsis-parent mpp-row-span",3,"ngStyle",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"ellipsis-parent","mpp-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"mpp-row-span"],["fxLayoutAlign","end center","class","mpp-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"mpp-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-mpp-expand",3,"click"],["class","mpp-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"mpp-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-mpp-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(o,r){1&o&&(A.j41(0,"div",3),A.DNE(1,Ei,14,3,"form",4)(2,wi,3,0,"div",5)(3,W,84,22,"div",6),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf","home"===r.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===r.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===r.calledFrom))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.qT,hA.me,hA.BC,hA.cb,hA.YS,hA.vS,hA.cV,P.aY,fA.$z,UA.fg,yA.rl,yA.nJ,yA.MV,yA.TL,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,HA.oV,H.iy,M.ZF,M.Ld,de.QX,de.vh],styles:[".mat-column-status[_ngcontent-%COMP%], .mat-column-group_status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-group_actions[_ngcontent-%COMP%] .mpp-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .mpp-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-mpp-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-mpp-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_status[_ngcontent-%COMP%] .mpp-row-span[_ngcontent-%COMP%]:not(:first-of-type), .mat-column-group_created_at[_ngcontent-%COMP%] .mpp-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem}.mpp-row-span[_ngcontent-%COMP%]{min-height:3rem}.mpp-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mpp-row-span[_ngcontent-%COMP%] .dot[_ngcontent-%COMP%]{margin-top:-.3rem;position:absolute}.mat-column-group_created_at[_ngcontent-%COMP%]{min-width:11rem}"]}))}return n(),l})();const EA=n=>({backgroundColor:n});function PA(n,l){if(1&n&&A.nrm(0,"span",6),2&n){const e=A.XpG();A.Y8G("ngStyle",A.eq3(1,EA,"#"+(null==e.information?null:e.information.color)))}}function FA(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",1),A.EFF(2,"Color"),A.k0s(),A.j41(3,"div",2),A.nrm(4,"span",7),A.EFF(5),A.nI1(6,"uppercase"),A.k0s()()),2&n){const e=A.XpG();A.R7$(4),A.Y8G("ngStyle",A.eq3(4,EA,"#"+(null==e.information?null:e.information.color))),A.R7$(),A.SpI(" ",A.bMT(6,2,null==e.information?null:e.information.color)," ")}}function te(n,l){if(1&n&&(A.j41(0,"span",2),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(e)}}let ge=(()=>{var n;class l{constructor(i){this.commonService=i,this.chains=[""]}ngOnChanges(){this.information&&this.information.chains&&this.information.chains.length>0&&(this.chains=[""],this.information.chains.forEach(i=>{this.chains.push(this.commonService.titleCase(i.chain||"")+" "+this.commonService.titleCase(i.network||""))}))}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(L.h))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},standalone:!1,features:[A.OA$],decls:17,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-2"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"]],template:function(o,r){1&o&&(A.j41(0,"div",0)(1,"div")(2,"h4",1),A.EFF(3,"Alias"),A.k0s(),A.j41(4,"div",2),A.EFF(5),A.DNE(6,PA,1,3,"span",3),A.k0s()(),A.DNE(7,FA,7,6,"div",4),A.j41(8,"div")(9,"h4",1),A.EFF(10,"Implementation"),A.k0s(),A.j41(11,"div",2),A.EFF(12),A.k0s()(),A.j41(13,"div")(14,"h4",1),A.EFF(15,"Chain"),A.k0s(),A.DNE(16,te,2,1,"span",5),A.k0s()()),2&o&&(A.R7$(5),A.SpI(" ",null==r.information?null:r.information.alias," "),A.R7$(),A.Y8G("ngIf",!r.showColorFieldSeparately),A.R7$(),A.Y8G("ngIf",r.showColorFieldSeparately),A.R7$(5),A.JRh(null!=r.information&&r.information.lnImplementation||null!=r.information&&r.information.version?(null==r.information?null:r.information.lnImplementation)+" "+(null==r.information?null:r.information.version):""),A.R7$(4),A.Y8G("ngForOf",r.chains))},dependencies:[de.Sq,de.bT,de.B3,Q.DJ,Q.sA,Q.UI,dA.eI,de.Pc],encapsulation:2}))}return n(),l})();function Me(n,l){if(1&n&&(A.j41(0,"div",2)(1,"div")(2,"h4",3),A.EFF(3,"Lightning"),A.k0s(),A.j41(4,"div",4),A.EFF(5),A.nI1(6,"number"),A.k0s(),A.nrm(7,"mat-progress-bar",5),A.k0s(),A.j41(8,"div")(9,"h4",3),A.EFF(10,"On-chain"),A.k0s(),A.j41(11,"div",4),A.EFF(12),A.nI1(13,"number"),A.k0s(),A.nrm(14,"mat-progress-bar",5),A.k0s(),A.j41(15,"div")(16,"h4",3),A.EFF(17,"Total"),A.k0s(),A.j41(18,"div",4),A.EFF(19),A.nI1(20,"number"),A.k0s()()()),2&n){const e=A.XpG();A.R7$(5),A.SpI("",A.i5U(6,7,e.balances.lightning,"1.0-0")," Sats"),A.R7$(2),A.Y8G("value",A.mNQ(e.balances.lightning/e.balances.total*100)),A.R7$(5),A.SpI("",A.i5U(13,10,e.balances.onchain,"1.0-0")," Sats"),A.R7$(2),A.Y8G("value",A.mNQ(e.balances.onchain/e.balances.total*100)),A.R7$(5),A.SpI("",A.i5U(20,13,e.balances.total,"1.0-0")," Sats")}}function Qe(n,l){if(1&n&&(A.j41(0,"div",6)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let me=(()=>{var n;class l{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["class","mt-1","fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,Me,21,16,"div",1)(1,Qe,3,1,"ng-template",null,0,A.C5r),2&o){const iA=A.sdS(2);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",iA)}},dependencies:[de.bT,eA.HM,Q.DJ,Q.sA,Q.UI,de.QX],encapsulation:2}))}return n(),l})();const Ye=()=>["../routing"];function Ue(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",4),A.EFF(2,"Transactions"),A.k0s(),A.j41(3,"div",5),A.EFF(4),A.nI1(5,"number"),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(4),A.JRh(A.bMT(5,1,null==e.fees?null:e.fees.totalTxCount))}}function De(n,l){1&n&&(A.j41(0,"div")(1,"h4",4),A.EFF(2,"Transactions"),A.k0s(),A.j41(3,"a",8),A.EFF(4," Go to Routing "),A.k0s()()),2&n&&(A.R7$(3),A.Y8G("routerLink",A.lJ4(1,Ye)))}function Le(n,l){if(1&n&&(A.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A.EFF(4,"Total"),A.k0s(),A.j41(5,"div",5),A.EFF(6),A.nI1(7,"number"),A.k0s()()(),A.j41(8,"div",6),A.DNE(9,Ue,6,3,"div",7)(10,De,5,2,"div",7),A.k0s()()),2&n){const e=A.XpG();A.R7$(6),A.SpI("",A.bMT(7,3,(null==e.fees?null:e.fees.feeCollected)/1e3)," Sats"),A.R7$(3),A.Y8G("ngIf",null==e.fees?null:e.fees.totalTxCount),A.R7$(),A.Y8G("ngIf",!(null!=e.fees&&e.fees.totalTxCount))}}function Se(n,l){if(1&n&&(A.j41(0,"div",9)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let it=(()=>{var n;class l{constructor(){this.totalFees=[{name:"Total",value:0}]}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["class","mt-2","fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",1,"mt-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],[4,"ngIf"],[1,"overflow-wrap","dashboard-info-value",3,"routerLink"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,Le,11,5,"div",1)(1,Se,3,1,"ng-template",null,0,A.C5r),2&o){const iA=A.sdS(2);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",iA)}},dependencies:[de.bT,Q.DJ,Q.sA,Q.UI,Sn.Wk,de.QX],encapsulation:2}))}return n(),l})();function Ve(n,l){if(1&n&&(A.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A.EFF(4,"Active"),A.k0s(),A.j41(5,"div",5),A.nrm(6,"span",6),A.EFF(7),A.nI1(8,"number"),A.k0s()(),A.j41(9,"div")(10,"h4",4),A.EFF(11,"Pending"),A.k0s(),A.j41(12,"div",5),A.nrm(13,"span",7),A.EFF(14),A.nI1(15,"number"),A.k0s()(),A.j41(16,"div")(17,"h4",4),A.EFF(18,"Inactive"),A.k0s(),A.j41(19,"div",5),A.nrm(20,"span",8),A.EFF(21),A.nI1(22,"number"),A.k0s()()(),A.j41(23,"div",3)(24,"div")(25,"h4",4),A.EFF(26,"Capacity"),A.k0s(),A.j41(27,"div",5),A.EFF(28),A.nI1(29,"number"),A.k0s()(),A.j41(30,"div")(31,"h4",4),A.EFF(32,"Capacity"),A.k0s(),A.j41(33,"div",5),A.EFF(34),A.nI1(35,"number"),A.k0s()(),A.j41(36,"div")(37,"h4",4),A.EFF(38,"Capacity"),A.k0s(),A.j41(39,"div",5),A.EFF(40),A.nI1(41,"number"),A.k0s()()()()),2&n){const e=A.XpG();A.R7$(7),A.JRh(A.bMT(8,6,(null==e.channelsStatus||null==e.channelsStatus.active?null:e.channelsStatus.active.channels)||0)),A.R7$(7),A.JRh(A.bMT(15,8,(null==e.channelsStatus||null==e.channelsStatus.pending?null:e.channelsStatus.pending.channels)||0)),A.R7$(7),A.JRh(A.bMT(22,10,(null==e.channelsStatus||null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.channels)||0)),A.R7$(7),A.SpI("",A.i5U(29,12,(null==e.channelsStatus||null==e.channelsStatus.active?null:e.channelsStatus.active.capacity)||0,"1.0-0")," Sats"),A.R7$(6),A.SpI("",A.i5U(35,15,(null==e.channelsStatus||null==e.channelsStatus.pending?null:e.channelsStatus.pending.capacity)||0,"1.0-0")," Sats"),A.R7$(6),A.SpI("",A.i5U(41,18,(null==e.channelsStatus||null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.capacity)||0,"1.0-0")," Sats")}}function vt(n,l){if(1&n&&(A.j41(0,"div",9)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let zt=(()=>{var n;class l{constructor(){this.channelsStatus={active:{},pending:{},inactive:{}}}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["class","mt-2","fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",1,"mt-2"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,Ve,42,21,"div",1)(1,vt,3,1,"ng-template",null,0,A.C5r),2&o){const iA=A.sdS(2);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",iA)}},dependencies:[de.bT,Q.DJ,Q.sA,Q.UI,de.QX],encapsulation:2}))}return n(),l})();var sn=We(1997);const gn=()=>["../connections/channels/open"],Tn=(n,l)=>({filterColumn:n,filterValue:l});function rs(n,l){if(1&n&&(A.j41(0,"div",19)(1,"a",20),A.EFF(2),A.nI1(3,"slice"),A.k0s(),A.j41(4,"div",6)(5,"mat-hint",21)(6,"strong",8),A.EFF(7,"Local:"),A.k0s(),A.EFF(8),A.nI1(9,"number"),A.k0s(),A.j41(10,"mat-hint",22),A.nrm(11,"fa-icon",23),A.EFF(12),A.nI1(13,"number"),A.k0s(),A.j41(14,"mat-hint",24)(15,"strong",8),A.EFF(16,"Remote:"),A.k0s(),A.EFF(17),A.nI1(18,"number"),A.k0s()(),A.nrm(19,"mat-progress-bar",25),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(3);A.R7$(),A.Y8G("matTooltip",A.mNQ(e.alias||e.peer_id))("matTooltipDisabled",A.mNQ((e.alias||e.peer_id).length<26))("routerLink",A.lJ4(26,gn))("state",A.l_i(27,Tn,e.alias?"alias":"peer_id",e.alias||e.peer_id)),A.R7$(),A.Lme(" ",A.brH(3,14,(null==e?null:e.alias)||(null==e?null:e.peer_id)||"",0,24),"",(e.alias||e.peer_id||"").length>25?"...":""," "),A.R7$(6),A.SpI("",A.i5U(9,18,e.to_us_msat/1e3||0,"1.0-0")," Sats"),A.R7$(3),A.Y8G("icon",i.faBalanceScale),A.R7$(),A.SpI(" (",A.bMT(13,21,e.balancedness||0),") "),A.R7$(5),A.SpI("",A.i5U(18,23,e.to_them_msat/1e3||0,"1.0-0")," Sats"),A.R7$(2),A.Y8G("value",A.mNQ(e.to_us_msat&&e.to_us_msat>0?e.to_us_msat/(e.to_us_msat+e.to_them_msat)*100:0))}}function kn(n,l){if(1&n&&(A.j41(0,"div",17),A.DNE(1,rs,20,30,"div",18),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngForOf",e.activeChannels)}}function Jn(n,l){if(1&n&&(A.j41(0,"div",3)(1,"div",4)(2,"span",5),A.EFF(3,"Total Capacity"),A.k0s(),A.j41(4,"div",6)(5,"mat-hint",7)(6,"strong",8),A.EFF(7,"Local:"),A.k0s(),A.EFF(8),A.nI1(9,"number"),A.k0s(),A.j41(10,"mat-hint",9),A.nrm(11,"fa-icon",10),A.EFF(12),A.nI1(13,"number"),A.k0s(),A.j41(14,"mat-hint",11)(15,"strong",8),A.EFF(16,"Remote:"),A.k0s(),A.EFF(17),A.nI1(18,"number"),A.k0s()(),A.nrm(19,"mat-progress-bar",12),A.k0s(),A.j41(20,"div",13),A.nrm(21,"mat-divider",14),A.k0s(),A.j41(22,"div",15),A.DNE(23,kn,2,1,"div",16),A.k0s()()),2&n){const e=A.XpG(),i=A.sdS(2);A.R7$(8),A.SpI("",A.i5U(9,8,(null==e.channelBalances?null:e.channelBalances.localBalance)||0,"1.0-0")," Sats"),A.R7$(3),A.Y8G("icon",e.faBalanceScale),A.R7$(),A.SpI(" (",A.bMT(13,11,(null==e.channelBalances?null:e.channelBalances.balancedness)||0),") "),A.R7$(5),A.SpI("",A.i5U(18,13,(null==e.channelBalances?null:e.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),A.R7$(2),A.Y8G("value",A.mNQ(null!=e.channelBalances&&e.channelBalances.localBalance&&(null==e.channelBalances?null:e.channelBalances.localBalance)>0?+(null==e.channelBalances?null:e.channelBalances.localBalance)/(+(null==e.channelBalances?null:e.channelBalances.localBalance)+ +(null==e.channelBalances?null:e.channelBalances.remoteBalance))*100:0)),A.R7$(4),A.Y8G("ngIf",e.activeChannels&&e.activeChannels.length>0)("ngIfElse",i)}}function Xt(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",26),A.EFF(1," No channels available. "),A.j41(2,"button",27),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.goToChannels())}),A.EFF(3,"Open Channel"),A.k0s()()}}function dn(n,l){if(1&n&&(A.j41(0,"div",28)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let Zt=(()=>{var n;class l{constructor(i){this.router=i,this.faBalanceScale=v.GR4,this.faDumbbell=v.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/cln/connections")}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",activeChannels:"activeChannels",sortBy:"sortBy",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,Jn,24,16,"div",2)(1,Xt,4,0,"ng-template",null,0,A.C5r)(3,dn,3,1,"ng-template",null,1,A.C5r),2&o){const iA=A.sdS(4);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",iA)}},dependencies:[de.Sq,de.bT,P.aY,fA.$z,yA.MV,sn.q,eA.HM,Q.DJ,Q.sA,Q.UI,HA.oV,M.Ld,Sn.Wk,de.P9,de.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]}))}return n(),l})();const _n=(n,l,e)=>({"mb-4":n,"mb-2":l,"mb-1":e}),Yt=()=>["../connections/channels/open"],mn=(n,l)=>({filterColumn:n,filterValue:l});function ci(n,l){if(1&n&&(A.j41(0,"mat-hint",19)(1,"strong",20),A.EFF(2,"Capacity: "),A.k0s(),A.EFF(3),A.nI1(4,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(3),A.SpI("",A.i5U(4,1,e.to_them_msat/1e3||0,"1.0-0")," Sats")}}function $n(n,l){if(1&n&&(A.j41(0,"mat-hint",19)(1,"strong",20),A.EFF(2,"Capacity: "),A.k0s(),A.EFF(3),A.nI1(4,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(3),A.SpI("",A.i5U(4,1,e.to_us_msat/1e3||0,"1.0-0")," Sats")}}function zs(n,l){if(1&n&&A.nrm(0,"mat-progress-bar",21),2&n){const e=A.XpG().$implicit,i=A.XpG(3);A.Y8G("value",A.mNQ(i.totalLiquidity>0?(e.to_them_msat/1e3||0)/i.totalLiquidity*100:0))}}function ks(n,l){if(1&n&&A.nrm(0,"mat-progress-bar",21),2&n){const e=A.XpG().$implicit,i=A.XpG(3);A.Y8G("value",A.mNQ(i.totalLiquidity>0?(e.to_us_msat/1e3||0)/i.totalLiquidity*100:0))}}function qs(n,l){if(1&n&&(A.j41(0,"div",14)(1,"a",15),A.EFF(2),A.nI1(3,"slice"),A.k0s(),A.j41(4,"div",16),A.DNE(5,ci,5,4,"mat-hint",17)(6,$n,5,4,"mat-hint",17),A.k0s(),A.DNE(7,zs,1,2,"mat-progress-bar",18)(8,ks,1,2,"mat-progress-bar",18),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(3);A.R7$(),A.Y8G("matTooltip",A.mNQ(e.alias||e.peer_id))("matTooltipDisabled",A.mNQ((e.alias||e.peer_id).length<26))("routerLink",A.lJ4(16,Yt))("state",A.l_i(17,mn,e.alias?"alias":"peer_id",e.alias||e.peer_id)),A.R7$(),A.Lme(" ",A.brH(3,12,e.alias||e.peer_id||"",0,24),"",(e.alias||e.peer_id||"").length>25?"...":""," "),A.R7$(3),A.Y8G("ngIf","In"===i.direction),A.R7$(),A.Y8G("ngIf","Out"===i.direction),A.R7$(),A.Y8G("ngIf","In"===i.direction),A.R7$(),A.Y8G("ngIf","Out"===i.direction)}}function $s(n,l){if(1&n&&(A.j41(0,"div",12),A.DNE(1,qs,9,20,"div",13),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngForOf",e.activeChannels)}}function as(n,l){if(1&n&&(A.j41(0,"div",3)(1,"div",4)(2,"span",5),A.EFF(3,"Total Capacity"),A.k0s(),A.j41(4,"mat-hint",6),A.EFF(5),A.nI1(6,"number"),A.k0s(),A.nrm(7,"mat-progress-bar",7),A.k0s(),A.j41(8,"div",8),A.nrm(9,"mat-divider",9),A.k0s(),A.j41(10,"div",10),A.DNE(11,$s,2,1,"div",11),A.k0s()()),2&n){const e=A.XpG(),i=A.sdS(2);A.Y8G("ngClass",A.sMw(7,_n,e.screenSize===e.screenSizeEnum.XS||e.screenSize===e.screenSizeEnum.SM,e.screenSize===e.screenSizeEnum.MD,e.screenSize===e.screenSizeEnum.LG||e.screenSize===e.screenSizeEnum.XL)),A.R7$(5),A.SpI("",A.i5U(6,4,e.totalLiquidity,"1.0-0")," Sats"),A.R7$(6),A.Y8G("ngIf",e.activeChannels&&e.activeChannels.length>0)("ngIfElse",i)}}function Ir(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",25),A.bIt("click",function(){w.eBV(e);const o=A.XpG(2);return w.Njj(o.goToChannels())}),A.EFF(1,"Open Channel"),A.k0s()}}function Hn(n,l){if(1&n&&(A.j41(0,"div",22)(1,"div",23)(2,"div"),A.EFF(3,"No channels available."),A.k0s(),A.DNE(4,Ir,2,0,"button",24),A.k0s()()),2&n){const e=A.XpG();A.R7$(4),A.Y8G("ngIf","Out"===e.direction)}}function xi(n,l){if(1&n&&(A.j41(0,"div",26)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let Ar=(()=>{var n;class l{constructor(i,o){this.router=i,this.commonService=o,this.screenSize="",this.screenSizeEnum=B.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/cln/connections")}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(xt.Ix),A.rXU(L.h))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",activeChannels:"activeChannels",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],["fxLayout","column","fxFlex.gt-sm","88","fxFlex","84","fxLayoutAlign","start start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","class","w-100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100",1,"w-100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","100","fxLayoutAlign","start center","class","font-size-90 color-primary",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"w-100","mt-1"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,as,12,11,"div",2)(1,Hn,5,1,"ng-template",null,0,A.C5r)(3,xi,3,1,"ng-template",null,1,A.C5r),2&o){const iA=A.sdS(4);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",iA)}},dependencies:[de.YU,de.Sq,de.bT,fA.$z,yA.MV,sn.q,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,HA.oV,M.Ld,Sn.Wk,de.P9,de.QX],encapsulation:2}))}return n(),l})();const Dr=n=>({"dashboard-card-content":!0,"error-border":n}),Na=n=>({"p-0":n});function Ta(n,l){if(1&n&&(A.j41(0,"button",28)(1,"mat-icon"),A.EFF(2,"more_vert"),A.k0s()()),2&n){A.XpG();const e=A.sdS(11);A.Y8G("matMenuTriggerFor",e)}}function Pa(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const o=w.eBV(e).index,r=A.XpG().$implicit,iA=A.XpG(2);return w.Njj(iA.onNavigateTo(r.links[o]))}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit;A.R7$(),A.JRh(e)}}function Ua(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){w.eBV(e);const o=A.XpG(3);return w.Njj(o.onsortChannelsBy())}),A.EFF(1),A.k0s()}if(2&n){const e=A.XpG(3);A.R7$(),A.SpI("Sort By ","Balance Score"===e.sortField?"Capacity":"Balance Score")}}function La(n,l){1&n&&A.nrm(0,"mat-progress-bar",30)}function Ga(n,l){if(1&n&&A.nrm(0,"rtl-cln-node-info",31),2&n){const e=A.XpG(3);A.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function za(n,l){if(1&n&&A.nrm(0,"rtl-cln-balances-info",32),2&n){const e=A.XpG(3);A.Y8G("balances",e.balances)("errorMessage",e.errorMessages[1])}}function ka(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-capacity-info",33),2&n){const e=A.XpG(3);A.Y8G("sortBy",e.sortField)("channelBalances",e.channelBalances)("activeChannels",e.activeChannelsCapacity)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[1])}}function Ha(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-info",34),2&n){const e=A.XpG(3);A.Y8G("fees",e.fees)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[2]+" "+e.errorMessages[3])}}function ja(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-status-info",35),2&n){const e=A.XpG(3);A.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[1]+" "+e.errorMessages[2])}}function Ct(n,l){1&n&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find information!"),A.k0s())}function er(n,l){if(1&n&&(A.j41(0,"mat-grid-tile",11)(1,"mat-card",12)(2,"mat-card-header")(3,"mat-card-title",13)(4,"div"),A.nrm(5,"fa-icon",14),A.j41(6,"span"),A.EFF(7),A.k0s()(),A.j41(8,"div"),A.DNE(9,Ta,3,1,"button",15),A.j41(10,"mat-menu",16,1),A.DNE(12,Pa,2,1,"button",17)(13,Ua,2,1,"button",18),A.k0s()()()(),A.j41(14,"mat-card-content",19),A.DNE(15,La,1,0,"mat-progress-bar",20),A.j41(16,"div",21),A.DNE(17,Ga,1,2,"rtl-cln-node-info",22)(18,za,1,2,"rtl-cln-balances-info",23)(19,ka,1,4,"rtl-cln-channel-capacity-info",24)(20,Ha,1,2,"rtl-cln-fee-info",25)(21,ja,1,2,"rtl-cln-channel-status-info",26)(22,Ct,2,0,"h3",27),A.k0s()()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("colspan",e.cols)("rowspan",e.rows),A.R7$(5),A.Y8G("icon",e.icon),A.R7$(2),A.JRh(e.title),A.R7$(2),A.Y8G("ngIf",e.links[0]),A.R7$(3),A.Y8G("ngForOf",e.goToOptions),A.R7$(),A.Y8G("ngIf","capacity"===e.id),A.R7$(),A.Y8G("fxFlex",A.mNQ("capacity"===e.id?90:70))("ngClass",A.eq3(17,Dr,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===e.id&&i.apiCallStatusBalances.status===i.apiCallStatusEnum.ERROR||"capacity"===e.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusBalances.status===i.apiCallStatusEnum.ERROR)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.ERROR)||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusBalances.status===i.apiCallStatusEnum.ERROR))),A.R7$(),A.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===e.id&&i.apiCallStatusBalances.status===i.apiCallStatusEnum.INITIATED||"capacity"===e.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusBalances.status===i.apiCallStatusEnum.INITIATED)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.INITIATED)||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusBalances.status===i.apiCallStatusEnum.INITIATED)),A.R7$(),A.Y8G("ngSwitch",e.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","balance"),A.R7$(),A.Y8G("ngSwitchCase","capacity"),A.R7$(),A.Y8G("ngSwitchCase","fee"),A.R7$(),A.Y8G("ngSwitchCase","status")}}function Oa(n,l){if(1&n&&(A.j41(0,"div",5)(1,"div",6),A.nrm(2,"fa-icon",7),A.j41(3,"span",8),A.EFF(4),A.k0s()(),A.j41(5,"mat-grid-list",9),A.DNE(6,er,23,19,"mat-grid-tile",10),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.Y8G("icon",e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.ERROR?e.faFrown:e.faSmile),A.R7$(2),A.JRh(e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.COMPLETED?"Welcome "+e.information.alias+"! Your node is up and running.":e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),A.R7$(),A.Y8G("rowHeight",e.operatorCardHeight),A.R7$(),A.Y8G("ngForOf",e.operatorCards)}}function Fr(n,l){if(1&n&&(A.j41(0,"button",28)(1,"mat-icon"),A.EFF(2,"more_vert"),A.k0s()()),2&n){A.XpG();const e=A.sdS(9);A.Y8G("matMenuTriggerFor",e)}}function Or(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const o=w.eBV(e).index,r=A.XpG(2).$implicit,iA=A.XpG(2);return w.Njj(iA.onNavigateTo(r.links[o]))}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit;A.R7$(),A.JRh(e)}}function tr(n,l){if(1&n&&(A.j41(0,"mat-card-header")(1,"mat-card-title",13)(2,"div"),A.nrm(3,"fa-icon",14),A.j41(4,"span"),A.EFF(5),A.k0s()(),A.j41(6,"div"),A.DNE(7,Fr,3,1,"button",15),A.j41(8,"mat-menu",16,2),A.DNE(10,Or,2,1,"button",17),A.k0s()()()()),2&n){const e=A.XpG().$implicit;A.R7$(3),A.Y8G("icon",e.icon),A.R7$(2),A.JRh(e.title),A.R7$(2),A.Y8G("ngIf",e.links[0]),A.R7$(3),A.Y8G("ngForOf",e.goToOptions)}}function os(n,l){1&n&&A.nrm(0,"mat-progress-bar",30)}function nr(n,l){if(1&n&&A.nrm(0,"rtl-cln-node-info",45),2&n){const e=A.XpG(3);A.Y8G("information",e.information)}}function Jr(n,l){if(1&n&&A.nrm(0,"rtl-cln-balances-info",32),2&n){const e=A.XpG(3);A.Y8G("balances",e.balances)("errorMessage",e.errorMessages[1])}}function Hs(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-liquidity-info",46),2&n){const e=A.XpG(3);A.Y8G("totalLiquidity",e.totalInboundLiquidity)("activeChannels",e.allInboundChannels)("errorMessage",e.errorMessages[2])}}function yr(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-liquidity-info",47),2&n){const e=A.XpG(3);A.Y8G("totalLiquidity",e.totalOutboundLiquidity)("activeChannels",e.allOutboundChannels)("errorMessage",e.errorMessages[2])}}function xr(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const o=w.eBV(e).index,r=A.XpG(2).$implicit,iA=A.XpG(2);return w.Njj(iA.onNavigateTo(r.links[o]))}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit;A.R7$(),A.JRh(e)}}function Ja(n,l){if(1&n&&(A.j41(0,"span",48)(1,"mat-tab-group",49)(2,"mat-tab",50),A.nrm(3,"rtl-cln-lightning-invoices-table",51),A.k0s(),A.j41(4,"mat-tab",52),A.nrm(5,"rtl-cln-lightning-payments",53),A.k0s()(),A.j41(6,"div",54)(7,"button",28)(8,"mat-icon"),A.EFF(9,"more_vert"),A.k0s()(),A.j41(10,"mat-menu",16,3),A.DNE(12,xr,2,1,"button",17),A.k0s()()()),2&n){const e=A.sdS(11),i=A.XpG().$implicit;A.R7$(7),A.Y8G("matMenuTriggerFor",e),A.R7$(5),A.Y8G("ngForOf",i.goToOptions)}}function _a(n,l){1&n&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find information!"),A.k0s())}function Yi(n,l){if(1&n&&(A.j41(0,"mat-grid-tile",11)(1,"mat-card",38),A.DNE(2,tr,11,4,"mat-card-header",39),A.j41(3,"mat-card-content",40),A.DNE(4,os,1,0,"mat-progress-bar",20),A.j41(5,"div",21),A.DNE(6,nr,1,1,"rtl-cln-node-info",41)(7,Jr,1,2,"rtl-cln-balances-info",23)(8,Hs,1,3,"rtl-cln-channel-liquidity-info",42)(9,yr,1,3,"rtl-cln-channel-liquidity-info",43)(10,Ja,13,2,"span",44)(11,_a,2,0,"h3",27),A.k0s()()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("colspan",e.cols)("rowspan",e.rows),A.R7$(),A.Y8G("ngClass",A.eq3(14,Na,"transactions"===e.id)),A.R7$(),A.Y8G("ngIf","transactions"!==e.id),A.R7$(),A.Y8G("fxFlex",A.mNQ("transactions"===e.id?100:"balance"===e.id?70:90))("ngClass",A.eq3(16,Dr,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===e.id&&i.apiCallStatusBalances.status===i.apiCallStatusEnum.ERROR||("inboundLiq"===e.id||"outboundLiq"===e.id)&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===e.id&&i.apiCallStatusBalances.status===i.apiCallStatusEnum.INITIATED||("inboundLiq"===e.id||"outboundLiq"===e.id)&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",e.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","balance"),A.R7$(),A.Y8G("ngSwitchCase","inboundLiq"),A.R7$(),A.Y8G("ngSwitchCase","outboundLiq"),A.R7$(),A.Y8G("ngSwitchCase","transactions")}}function Hi(n,l){if(1&n&&(A.j41(0,"div",36),A.nrm(1,"fa-icon",7),A.j41(2,"span",8),A.EFF(3),A.k0s()(),A.j41(4,"mat-grid-list",37),A.DNE(5,Yi,12,18,"mat-grid-tile",10),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faSmile),A.R7$(2),A.SpI("Welcome ",e.information.alias,"! Your node is up and running."),A.R7$(),A.Y8G("rowHeight",e.merchantCardHeight),A.R7$(),A.Y8G("ngForOf",e.merchantCards)}}let Yr=(()=>{var n;class l{constructor(i,o,r,iA){this.logger=i,this.store=o,this.commonService=r,this.router=iA,this.faSmile=K.Qpm,this.faFrown=K.wB1,this.faAngleDoubleDown=v.WxX,this.faAngleDoubleUp=v.$sC,this.faChartPie=v.W1p,this.faBolt=v.zm_,this.faServer=v.D6w,this.faNetworkWired=v.eGi,this.userPersonaEnum=B.HW,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.information={},this.totalBalance={},this.balances={onchain:-1,lightning:-1,total:0},this.activeChannels=[],this.channelsStatus={active:{},pending:{},inactive:{}},this.activeChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="390px",this.merchantCardHeight="62px",this.sortField="Balance Score",this.errorMessages=["","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusBalances=null,this.apiCallStatusChannels=null,this.apiCallStatusFHistory=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===B.f7.XS?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}]):this.screenSize===B.f7.SM||this.screenSize===B.f7.MD?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}]):(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}])}ngOnInit(){this.store.select(tA.RQ).pipe((0,I.Q)(this.unSubs[0]),(0,N.E)(this.store.select(j._c))).subscribe(([i,o])=>{this.errorMessages[0]="",this.errorMessages[3]="",this.apiCallStatusNodeInfo=i.apisCallStatus[0],this.apiCallStatusFHistory=i.apisCallStatus[1],this.apiCallStatusNodeInfo.status===B.wn.ERROR&&(this.errorMessages[0]=this.apiCallStatusNodeInfo.message?"object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message:""),this.apiCallStatusFHistory.status===B.wn.ERROR&&(this.errorMessages[3]=this.apiCallStatusFHistory.message?"object"==typeof this.apiCallStatusFHistory.message?JSON.stringify(this.apiCallStatusFHistory.message):this.apiCallStatusFHistory.message:""),this.selNode=o,this.information=i.information,this.fees=i.fees}),this.store.select(tA.BM).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessages[2]="",this.apiCallStatusChannels=i.apiCallStatus,this.apiCallStatusChannels.status===B.wn.ERROR&&(this.errorMessages[2]=this.apiCallStatusChannels.message?"object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message:""),this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.activeChannels=i.activeChannels,this.activeChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels,"balancedness")))||[],this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels?.filter(o=>!!o.to_them_msat&&o.to_them_msat>0),"to_them_msat")))||[],this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels?.filter(o=>!!o.to_us_msat&&o.to_us_msat>0),"to_us_msat")))||[],this.activeChannels.forEach(o=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil((o.to_them_msat||0)/1e3),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor((o.to_us_msat||0)/1e3)}),this.channelsStatus.active.channels=i.activeChannels.length||0,this.channelsStatus.pending.channels=i.pendingChannels.length||0,this.channelsStatus.inactive.channels=i.inactiveChannels.length||0,this.logger.info(i)}),this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessages[1]="",this.apiCallStatusBalances=i.apiCallStatus,this.apiCallStatusBalances.status===B.wn.ERROR&&(this.errorMessages[1]=this.apiCallStatusBalances.message?"object"==typeof this.apiCallStatusBalances.message?JSON.stringify(this.apiCallStatusBalances.message):this.apiCallStatusBalances.message:""),this.totalBalance=i.balance,this.balances.onchain=i.balance.totalBalance||0,this.balances.lightning=i.localRemoteBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const o=i.localRemoteBalance.localBalance?+i.localRemoteBalance.localBalance:0,r=i.localRemoteBalance.remoteBalance?+i.localRemoteBalance.remoteBalance:0;this.channelBalances={localBalance:o,remoteBalance:r,balancedness:+(1-Math.abs((o-r)/(o+r))).toFixed(3)},this.channelsStatus.active.capacity=i.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=i.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=i.localRemoteBalance.inactiveBalance||0,this.logger.info(i)})}onNavigateTo(i){this.router.navigateByUrl("/cln/"+i)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.activeChannelsCapacity=this.activeChannels.sort((i,o)=>{const r=(i.to_us_msat?+i.to_us_msat:0)+(i.to_them_msat?+i.to_them_msat:0),iA=(o.to_them_msat?+o.to_them_msat:0)+(o.to_them_msat?+o.to_them_msat:0);return r>iA?-1:r{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(L.h),A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-home"]],standalone:!1,decls:3,vars:2,consts:[["merchantDashboard",""],["menuOperator","matMenu"],["menuMerchant","matMenu"],["menuTransactions","matMenu"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","activeChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","activeChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100","direction","In",3,"totalLiquidity","activeChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100","direction","Out",3,"totalLiquidity","activeChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100","direction","In",3,"totalLiquidity","activeChannels","errorMessage"],["fxFlex","100","direction","Out",3,"totalLiquidity","activeChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],["calledFrom","home",1,"h-100"],["label","Pay"],["calledFrom","home"],[1,"underline"]],template:function(o,r){if(1&o&&A.DNE(0,Oa,7,4,"div",4)(1,Hi,6,4,"ng-template",null,0,A.C5r),2&o){const iA=A.sdS(2);A.Y8G("ngIf",(null==r.selNode?null:r.selNode.settings.userPersona)===r.userPersonaEnum.OPERATOR)("ngIfElse",iA)}},dependencies:[de.YU,de.Sq,de.bT,de.ux,de.e1,de.fG,P.aY,rA.iY,QA.RN,QA.m2,QA.MM,QA.dh,NA.B_,NA.NS,oA.An,uA.kk,uA.fb,uA.Cp,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,RA.mq,RA.T8,Ot,Z,ge,me,it,zt,Zt,Ar],encapsulation:2}))}return n(),l})();var Va=We(4572),Wa=We(2852),js=We(5416),gi=We(9454),ji=We(6013);const _r=["form"],Ka=["formSweepAll"],Xa=["stepper"],bi=(n,l)=>({"mr-6":n,"mr-2":l});function Xe(n,l){if(1&n&&(A.j41(0,"div",16),A.nrm(1,"fa-icon",17),A.j41(2,"span",18)(3,"div"),A.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(5,"span",19)(6,"span"),A.EFF(7),A.k0s(),A.j41(8,"span"),A.EFF(9),A.k0s(),A.j41(10,"span"),A.EFF(11),A.k0s(),A.j41(12,"span"),A.EFF(13),A.k0s(),A.j41(14,"span"),A.EFF(15),A.k0s()()()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faInfoCircle),A.R7$(6),A.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),A.R7$(2),A.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),A.R7$(2),A.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),A.R7$(2),A.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),A.R7$(2),A.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function ir(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Bitcoin address is required."),A.k0s())}function Oi(n,l){1&n&&(A.j41(0,"mat-hint"),A.EFF(1,"Amount replaced by UTXO balance"),A.k0s())}function Za(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.amountError)}}function Vr(n,l){if(1&n&&(A.j41(0,"mat-option",51),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e),A.R7$(),A.JRh(e)}}function qa(n,l){if(1&n&&(A.j41(0,"mat-option",51),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e.feeRateId),A.R7$(),A.SpI(" ",e.feeRateType," ")}}function Os(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function $a(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",52)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.j41(3,"input",53,5),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG(2);return A.DH7(r.customFeeRate,o)||(r.customFeeRate=o),w.Njj(o)}),A.k0s(),A.DNE(5,Os,2,0,"mat-error",23),A.k0s()}if(2&n){const e=A.XpG(2);A.R7$(3),A.Y8G("step",1)("min",0)("required","customperkb"===e.selFeeRate&&!e.flgMinConf),A.R50("ngModel",e.customFeeRate),A.R7$(2),A.Y8G("ngIf","customperkb"===e.selFeeRate&&!e.flgMinConf&&!e.customFeeRate)}}function Mc(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function Wr(n,l){if(1&n&&(A.j41(0,"mat-option",51),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e),A.R7$(),A.SpI("",A.i5U(2,2,e.amount_msat/1e3,"1.0-0")," Sats")}}function Kr(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.sendFundError)}}function Xr(n,l){if(1&n&&(A.j41(0,"div",54),A.nrm(1,"fa-icon",17),A.DNE(2,Kr,2,1,"span",23),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.sendFundError)}}function pc(n,l){if(1&n){const e=A.RV6();A.j41(0,"form",20,1),A.bIt("submit",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onSendFunds())})("reset",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.resetData())}),A.j41(2,"mat-form-field",21)(3,"mat-label"),A.EFF(4,"Bitcoin Address"),A.k0s(),A.j41(5,"input",22,2),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.transaction.destination,o)||(r.transaction.destination=o),w.Njj(o)}),A.k0s(),A.DNE(7,ir,2,0,"mat-error",23),A.k0s(),A.j41(8,"mat-form-field",24)(9,"mat-label"),A.EFF(10,"Amount"),A.k0s(),A.j41(11,"input",25,3),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.transaction.satoshi,o)||(r.transaction.satoshi=o),w.Njj(o)}),A.k0s(),A.DNE(13,Oi,2,0,"mat-hint",23),A.j41(14,"span",26),A.EFF(15),A.k0s(),A.DNE(16,Za,2,1,"mat-error",23),A.k0s(),A.j41(17,"mat-form-field",27)(18,"mat-label"),A.EFF(19,"Amount Unit"),A.k0s(),A.j41(20,"mat-select",28),A.bIt("selectionChange",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onAmountUnitChange(o))}),A.DNE(21,Vr,2,2,"mat-option",29),A.k0s()(),A.j41(22,"div",30)(23,"div",31)(24,"div",32)(25,"mat-form-field",33)(26,"mat-label"),A.EFF(27,"Fee Rate"),A.k0s(),A.j41(28,"mat-select",34),A.mxI("valueChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFeeRate,o)||(r.selFeeRate=o),w.Njj(o)}),A.bIt("selectionChange",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.customFeeRate=null)}),A.DNE(29,qa,2,2,"mat-option",29),A.k0s()(),A.DNE(30,$a,6,5,"mat-form-field",35),A.k0s(),A.j41(31,"div",36)(32,"mat-checkbox",37),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.flgMinConf,o)||(r.flgMinConf=o),w.Njj(o)}),A.bIt("change",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.flgMinConf?o.selFeeRate=null:o.minConfValue=null)}),A.k0s(),A.j41(33,"mat-form-field",38)(34,"mat-label"),A.EFF(35,"Min Confirmation Blocks"),A.k0s(),A.j41(36,"input",39,4),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.minConfValue,o)||(r.minConfValue=o),w.Njj(o)}),A.k0s(),A.DNE(38,Mc,2,0,"mat-error",23),A.k0s()()(),A.j41(39,"mat-expansion-panel",40),A.bIt("closed",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onAdvancedPanelToggle(!0))})("opened",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onAdvancedPanelToggle(!1))}),A.j41(40,"mat-expansion-panel-header")(41,"mat-panel-title")(42,"span"),A.EFF(43),A.k0s()()(),A.j41(44,"div",30)(45,"div",41)(46,"mat-form-field",42)(47,"mat-label"),A.EFF(48,"Coin Selection"),A.k0s(),A.j41(49,"mat-select",43),A.mxI("valueChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selUTXOs,o)||(r.selUTXOs=o),w.Njj(o)}),A.bIt("selectionChange",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onUTXOSelectionChange(o))}),A.j41(50,"mat-select-trigger"),A.EFF(51),A.nI1(52,"number"),A.k0s(),A.DNE(53,Wr,3,5,"mat-option",29),A.k0s()(),A.j41(54,"div",44)(55,"mat-slide-toggle",45),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.flgUseAllBalance,o)||(r.flgUseAllBalance=o),w.Njj(o)}),A.bIt("change",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onUTXOAllBalanceChange())}),A.EFF(56," Use selected UTXOs balance "),A.k0s(),A.j41(57,"mat-icon",46),A.EFF(58,"info_outline"),A.k0s()()()()(),A.nrm(59,"div",30),A.DNE(60,Xr,3,2,"div",47),A.j41(61,"div",48)(62,"button",49),A.EFF(63,"Clear Fields"),A.k0s(),A.j41(64,"button",50),A.EFF(65,"Send Funds"),A.k0s()()()()}if(2&n){const e=A.XpG();A.R7$(5),A.R50("ngModel",e.transaction.destination),A.R7$(2),A.Y8G("ngIf",!e.transaction.destination),A.R7$(4),A.Y8G("type",e.flgUseAllBalance?"text":"number")("step",100)("min",0)("disabled",e.flgUseAllBalance),A.R50("ngModel",e.transaction.satoshi),A.R7$(2),A.Y8G("ngIf",e.flgUseAllBalance),A.R7$(2),A.SpI("",e.selAmountUnit," "),A.R7$(),A.Y8G("ngIf",!e.transaction.satoshi),A.R7$(4),A.Y8G("value",e.selAmountUnit)("disabled",e.flgUseAllBalance),A.R7$(),A.Y8G("ngForOf",e.amountUnits),A.R7$(4),A.Y8G("ngClass","customperkb"!==e.selFeeRate||e.flgMinConf?"flex-100":"flex-48"),A.R7$(3),A.Y8G("disabled",e.flgMinConf),A.R50("value",e.selFeeRate),A.R7$(),A.Y8G("ngForOf",e.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===e.selFeeRate&&!e.flgMinConf),A.R7$(2),A.Y8G("ngClass",A.l_i(36,bi,e.screenSize===e.screenSizeEnum.XS||e.screenSize===e.screenSizeEnum.SM,e.screenSize===e.screenSizeEnum.MD||e.screenSize===e.screenSizeEnum.LG||e.screenSize===e.screenSizeEnum.XL)),A.R50("ngModel",e.flgMinConf),A.R7$(4),A.Y8G("step",1)("min",0)("required",e.flgMinConf)("disabled",!e.flgMinConf),A.R50("ngModel",e.minConfValue),A.R7$(2),A.Y8G("ngIf",e.flgMinConf&&!e.minConfValue),A.R7$(5),A.JRh(e.advancedTitle),A.R7$(6),A.R50("value",e.selUTXOs),A.R7$(2),A.Lme("",A.bMT(52,34,e.totalSelectedUTXOAmount)," Sats (",e.selUTXOs.length>1?e.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.R7$(2),A.Y8G("ngForOf",e.utxos),A.R7$(2),A.Y8G("disabled",e.selUTXOs.length<1),A.R50("ngModel",e.flgUseAllBalance),A.R7$(5),A.Y8G("ngIf",""!==e.sendFundError)}}function Ao(n,l){if(1&n&&A.EFF(0),2&n){const e=A.XpG(3);A.JRh(e.passwordFormLabel)}}function eo(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Password is required."),A.k0s())}function to(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-step",58)(1,"form",76),A.DNE(2,Ao,1,1,"ng-template",70),A.j41(3,"div",7)(4,"mat-form-field",18)(5,"mat-label"),A.EFF(6,"Password"),A.k0s(),A.nrm(7,"input",77),A.DNE(8,eo,2,0,"mat-error",23),A.k0s()(),A.j41(9,"div",78)(10,"button",73),A.bIt("click",function(){w.eBV(e);const o=A.XpG(2);return w.Njj(o.onAuthenticate())}),A.EFF(11,"Confirm"),A.k0s()()()()}if(2&n){const e=A.XpG(2);A.Y8G("stepControl",e.passwordFormGroup)("editable",e.flgEditable),A.R7$(),A.Y8G("formGroup",e.passwordFormGroup),A.R7$(7),A.Y8G("ngIf",null==e.passwordFormGroup.controls.password.errors?null:e.passwordFormGroup.controls.password.errors.required)}}function no(n,l){if(1&n&&A.EFF(0),2&n){const e=A.XpG(2);A.JRh(e.sendFundFormLabel)}}function io(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Bitcoin address is required."),A.k0s())}function Zr(n,l){if(1&n&&(A.j41(0,"mat-option",51),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e.feeRateId),A.R7$(),A.SpI(" ",e.feeRateType," ")}}function so(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function ro(n,l){if(1&n&&(A.j41(0,"mat-form-field",52)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.nrm(3,"input",79),A.DNE(4,so,2,0,"mat-error",23),A.k0s()),2&n){const e=A.XpG(2);A.R7$(3),A.Y8G("step",1)("min",0),A.R7$(),A.Y8G("ngIf","customperkb"===e.sendFundFormGroup.controls.selFeeRate.value&&!e.sendFundFormGroup.controls.flgMinConf.value&&!e.sendFundFormGroup.controls.customFeeRate.value)}}function ao(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function oo(n,l){if(1&n&&A.EFF(0),2&n){const e=A.XpG(2);A.JRh(e.confirmFormLabel)}}function lo(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.sendFundError)}}function Ic(n,l){if(1&n&&(A.j41(0,"div",54),A.nrm(1,"fa-icon",17),A.DNE(2,lo,2,1,"span",23),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.sendFundError)}}function qr(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",55)(1,"mat-vertical-stepper",56,6),A.bIt("selectionChange",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.stepSelectionChanged(o))}),A.DNE(3,to,12,4,"mat-step",57),A.j41(4,"mat-step",58)(5,"form",59),A.DNE(6,no,1,1,"ng-template",60),A.j41(7,"div",30)(8,"mat-form-field",18)(9,"mat-label"),A.EFF(10,"Bitcoin Address"),A.k0s(),A.nrm(11,"input",61),A.DNE(12,io,2,0,"mat-error",23),A.k0s(),A.j41(13,"div",62)(14,"div",32)(15,"mat-form-field",33)(16,"mat-label"),A.EFF(17,"Fee Rate"),A.k0s(),A.j41(18,"mat-select",63),A.DNE(19,Zr,2,2,"mat-option",29),A.k0s()(),A.DNE(20,ro,5,3,"mat-form-field",35),A.k0s(),A.j41(21,"div",36),A.nrm(22,"mat-checkbox",64),A.j41(23,"mat-form-field",38)(24,"mat-label"),A.EFF(25,"Min Confirmation Blocks"),A.k0s(),A.nrm(26,"input",65),A.DNE(27,ao,2,0,"mat-error",23),A.k0s()()()(),A.j41(28,"div",66)(29,"button",67),A.EFF(30,"Next"),A.k0s()()()(),A.j41(31,"mat-step",68)(32,"form",69),A.DNE(33,oo,1,1,"ng-template",70),A.j41(34,"div",55)(35,"div",71),A.nrm(36,"fa-icon",72),A.j41(37,"span"),A.EFF(38,"You are about to sweep all funds from RTL. Are you sure?"),A.k0s()(),A.DNE(39,Ic,3,2,"div",47),A.j41(40,"div",66)(41,"button",73),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onSendFunds())}),A.EFF(42,"Sweep All Funds"),A.k0s()()()()()(),A.j41(43,"div",74)(44,"button",75),A.EFF(45),A.k0s()()()}if(2&n){const e=A.XpG();A.R7$(),A.Y8G("linear",!0),A.R7$(2),A.Y8G("ngIf",!e.appConfig.SSO.rtlSSO),A.R7$(),A.Y8G("stepControl",e.sendFundFormGroup)("editable",e.flgEditable),A.R7$(),A.Y8G("formGroup",e.sendFundFormGroup),A.R7$(7),A.Y8G("ngIf",null==e.sendFundFormGroup.controls.transactionAddress.errors?null:e.sendFundFormGroup.controls.transactionAddress.errors.required),A.R7$(3),A.Y8G("ngClass","customperkb"!==e.sendFundFormGroup.controls.selFeeRate.value||e.sendFundFormGroup.controls.flgMinConf.value?"flex-100":"flex-48"),A.R7$(4),A.Y8G("ngForOf",e.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===e.sendFundFormGroup.controls.selFeeRate.value&&!e.sendFundFormGroup.controls.flgMinConf.value),A.R7$(2),A.Y8G("ngClass",A.l_i(20,bi,e.screenSize===e.screenSizeEnum.XS||e.screenSize===e.screenSizeEnum.SM,e.screenSize===e.screenSizeEnum.MD||e.screenSize===e.screenSizeEnum.LG||e.screenSize===e.screenSizeEnum.XL)),A.R7$(4),A.Y8G("step",1)("min",0)("required",e.sendFundFormGroup.controls.flgMinConf.value),A.R7$(),A.Y8G("ngIf",e.sendFundFormGroup.controls.flgMinConf.value&&!e.sendFundFormGroup.controls.minConfValue.value),A.R7$(4),A.Y8G("stepControl",e.confirmFormGroup),A.R7$(),A.Y8G("formGroup",e.confirmFormGroup),A.R7$(4),A.Y8G("icon",e.faExclamationTriangle),A.R7$(3),A.Y8G("ngIf",""!==e.sendFundError),A.R7$(5),A.Y8G("mat-dialog-close",!1),A.R7$(),A.JRh(e.flgValidated?"Close":"Cancel")}}let co=(()=>{var n;class l{constructor(i,o,r,iA,ne,re,ln,Qt,wn,Ow,Jw){this.dialogRef=i,this.data=o,this.logger=r,this.dataService=iA,this.store=ne,this.commonService=re,this.decimalPipe=ln,this.actions=Qt,this.formBuilder=wn,this.rtlEffects=Ow,this.snackBar=Jw,this.faExclamationTriangle=v.zpE,this.faInfoCircle=v.iW_,this.sweepAll=!1,this.addressTypes=[],this.utxos=[],this.selUTXOs=[],this.flgUseAllBalance=!1,this.totalSelectedUTXOAmount=null,this.selectedAddress=B.Ld[1],this.blockchainBalance={},this.information={},this.newAddress="",this.transaction={},this.feeRateTypes=B.G,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.sendFundError="",this.fiatConversion=!1,this.amountUnits=B.A0,this.selAmountUnit=B.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=B.k,this.advancedTitle="Advanced Options",this.flgValidated=!1,this.flgEditable=!0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds",this.confirmFormLabel="Confirm sweep",this.amountError="Amount is Required.",this.screenSize="",this.screenSizeEnum=B.f7,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.dataService.getRecommendedFeeRates().pipe((0,I.Q)(this.unSubs[0])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}}),this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[hA.k0.required]],password:["",[hA.k0.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",hA.k0.required],selFeeRate:[null],customFeeRate:[null],flgMinConf:[!1],minConfValue:[{value:null,disabled:!0}]}),this.confirmFormGroup=this.formBuilder.group({}),this.sendFundFormGroup.controls.flgMinConf.valueChanges.pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{i?(this.sendFundFormGroup.controls.selFeeRate.disable(),this.sendFundFormGroup.controls.selFeeRate.setValue(null),this.sendFundFormGroup.controls.minConfValue.reset(),this.sendFundFormGroup.controls.minConfValue.enable(),this.sendFundFormGroup.controls.minConfValue.setValidators([hA.k0.required]),this.sendFundFormGroup.controls.minConfValue.setValue(null)):(this.sendFundFormGroup.controls.selFeeRate.enable(),this.sendFundFormGroup.controls.selFeeRate.setValue(null),this.sendFundFormGroup.controls.minConfValue.setValue(null),this.sendFundFormGroup.controls.minConfValue.disable(),this.sendFundFormGroup.controls.minConfValue.setValidators(null),this.sendFundFormGroup.controls.minConfValue.setErrors(null))}),this.sendFundFormGroup.controls.selFeeRate.valueChanges.pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.sendFundFormGroup.controls.customFeeRate.setValue(null),this.sendFundFormGroup.controls.customFeeRate.reset(),this.sendFundFormGroup.controls.customFeeRate.setValidators("customperkb"!==i||this.sendFundFormGroup.controls.flgMinConf.value?null:[hA.k0.required])}),(0,Va.z)([this.store.select(j._c),this.store.select(j.qv)]).pipe((0,I.Q)(this.unSubs[3])).subscribe(([i,o])=>{this.fiatConversion=i.settings.fiatConversion,this.amountUnits=i.settings.currencyUnits,this.appConfig=o}),this.store.select(tA.mH).pipe((0,I.Q)(this.unSubs[4])).subscribe(i=>{this.information=i}),this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[5])).subscribe(i=>{this.utxos=this.commonService.sortAscByKey(i.utxos?.filter(o=>"confirmed"===o.status),"value"),this.logger.info(i)}),this.actions.pipe((0,I.Q)(this.unSubs[6]),(0,nA.p)(i=>i.type===B.TC.UPDATE_API_CALL_STATUS_CLN||i.type===B.TC.SET_CHANNEL_TRANSACTION_RES_CLN)).subscribe(i=>{i.type===B.TC.SET_CHANNEL_TRANSACTION_RES_CLN&&(this.store.dispatch((0,C.UI)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),i.type===B.TC.UPDATE_API_CALL_STATUS_CLN&&i.payload.status===B.wn.ERROR&&"SetChannelTransaction"===i.payload.action&&(this.sendFundError=i.payload.message)})}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,C.oz)({payload:Wa(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,bt.s)(1)).subscribe(i=>{"ERROR"!==i?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onSendFunds(){if(this.sendFundError="",this.flgUseAllBalance&&(this.transaction.satoshi="all"),this.selUTXOs.length&&this.selUTXOs.length>0&&(this.transaction.utxos=[],this.selUTXOs.forEach(i=>this.transaction.utxos?.push(i.txid+":"+i.output))),this.sweepAll){if(!this.sendFundFormGroup.controls.transactionAddress.value||""===this.sendFundFormGroup.controls.transactionAddress.value||this.sendFundFormGroup.controls.flgMinConf.value&&(!this.sendFundFormGroup.controls.minConfValue.value||this.sendFundFormGroup.controls.minConfValue.value<=0)||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate)return!0;this.transaction.satoshi="all",this.transaction.destination=this.sendFundFormGroup.controls.transactionAddress.value,this.sendFundFormGroup.controls.flgMinConf.value?(delete this.transaction.feerate,this.transaction.minconf=this.sendFundFormGroup.controls.flgMinConf.value?this.sendFundFormGroup.controls.minConfValue.value:null):(delete this.transaction.minconf,this.transaction.feerate="customperkb"===this.sendFundFormGroup.controls.selFeeRate.value&&!this.sendFundFormGroup.controls.flgMinConf.value&&this.sendFundFormGroup.controls.customFeeRate.value?1e3*this.sendFundFormGroup.controls.customFeeRate.value+"perkb":this.sendFundFormGroup.controls.selFeeRate.value),delete this.transaction.utxos,this.store.dispatch((0,VA.aB)({payload:this.transaction}))}else{if(this.transaction.minconf=this.flgMinConf?this.minConfValue:null,this.transaction.feerate="customperkb"===this.selFeeRate&&!this.flgMinConf&&this.customFeeRate?1e3*this.customFeeRate+"perkb":""!==this.selFeeRate?this.selFeeRate:null,!this.transaction.destination||""===this.transaction.destination||!this.transaction.satoshi||+this.transaction.satoshi<=0||this.flgMinConf&&(!this.transaction.minconf||this.transaction.minconf<=0)||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate)return!0;this.transaction.satoshi&&"all"!==this.transaction.satoshi&&this.selAmountUnit!==B.BQ.SATS?this.commonService.convertCurrency(+this.transaction.satoshi,this.selAmountUnit===this.amountUnits[2]?B.BQ.OTHER:this.selAmountUnit,B.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,I.Q)(this.unSubs[7])).subscribe({next:i=>{this.transaction.satoshi=i[B.BQ.SATS],this.selAmountUnit=B.BQ.SATS,this.store.dispatch((0,VA.aB)({payload:this.transaction}))},error:i=>{this.transaction.satoshi=null,this.selAmountUnit=B.BQ.SATS,this.amountError="Conversion Error: "+i}}):this.store.dispatch((0,VA.aB)({payload:this.transaction}))}}resetData(){this.sendFundError="",this.transaction={},this.flgMinConf=!1,this.totalSelectedUTXOAmount=null,this.selUTXOs=[],this.flgUseAllBalance=!1,this.selAmountUnit=B.A0[0]}stepSelectionChanged(i){switch(this.sendFundError="",i.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds";break;case 1:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds";break;case 2:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds | Address: "+this.sendFundFormGroup.controls.transactionAddress.value+(this.sendFundFormGroup.controls.flgMinConf.value?" | Min Confirmation Blocks: "+this.sendFundFormGroup.controls.minConfValue.value:this.sendFundFormGroup.controls.selFeeRate.value?" | Fee Rate: "+this.feeRateTypes.find(o=>o.feeRateId===this.sendFundFormGroup.controls.selFeeRate.value)?.feeRateType:"")}i.selectedIndex0?(this.totalSelectedUTXOAmount=this.selUTXOs?.reduce((o,r)=>o+(r.amount_msat||0)/1e3,0),this.flgUseAllBalance&&this.onUTXOAllBalanceChange()):(this.totalSelectedUTXOAmount=null,this.transaction.satoshi=null,this.flgUseAllBalance=!1)}onUTXOAllBalanceChange(){this.flgUseAllBalance?(this.transaction.satoshi=this.totalSelectedUTXOAmount,this.selAmountUnit=B.A0[0]):this.transaction.satoshi=null}onAmountUnitChange(i){const o=this,r=this.selAmountUnit===this.amountUnits[2]?B.BQ.OTHER:this.selAmountUnit;let iA=i.value===this.amountUnits[2]?B.BQ.OTHER:i.value;this.transaction.satoshi&&this.selAmountUnit!==i.value&&this.commonService.convertCurrency(+this.transaction.satoshi,r,iA,this.amountUnits[2],this.fiatConversion).pipe((0,I.Q)(this.unSubs[8])).subscribe({next:ne=>{this.selAmountUnit=i.value,o.transaction.satoshi=o.decimalPipe.transform(ne[iA],o.currencyUnitFormats[iA])?.replace(/,/g,"")},error:ne=>{o.transaction.satoshi=null,this.amountError="Conversion Error: "+ne,this.selAmountUnit=r,iA=r}})}onAdvancedPanelToggle(i){this.advancedTitle=i&&this.selUTXOs.length&&this.selUTXOs.length>0?"Advanced Options | Selected UTXOs: "+this.selUTXOs.length+" | Selected UTXO Amount: "+this.decimalPipe.transform(this.totalSelectedUTXOAmount)+" Sats":"Advanced Options"}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(aA.gP),A.rXU(Dt.u),A.rXU(AA.il),A.rXU(L.h),A.rXU(de.QX),A.rXU(kA.En),A.rXU(hA.ze),A.rXU(b.H),A.rXU(js.UG))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-on-chain-send-modal"]],viewQuery:function(o,r){if(1&o&&(A.GBs(_r,7),A.GBs(Ka,5),A.GBs(Xa,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.form=iA.first),A.mGM(iA=A.lsd())&&(r.formSweepAll=iA.first),A.mGM(iA=A.lsd())&&(r.stepper=iA.first)}},standalone:!1,decls:13,vars:5,consts:[["sweepAllBlock",""],["form","ngForm"],["address","ngModel"],["amount","ngModel"],["blocks","ngModel"],["custFeeRate","ngModel"],["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],["fxLayout","column",1,"padding-gap-x-large"],["fxFlex","100","class","alert alert-info mb-2",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100","class","overflow-x-hidden",3,"submit","reset",4,"ngIf","ngIfElse"],["fxFlex","100",1,"alert","alert-info","mb-2"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["fxLayout","column","fxFlex","55"],["matInput","","autoFocus","","name","address","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","name","amount","required","",3,"ngModelChange","type","step","min","disabled","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex","10","fxLayoutAlign","start end"],["required","","name","amountUnit",3,"selectionChange","value","disabled"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxFlex","48","fxLayoutAlign","space-between start"],["fxLayout","column","fxLayoutAlign","start center",3,"ngClass"],[3,"valueChange","selectionChange","disabled","value"],["fxFlex","48","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","48","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","color","primary","name","flgMinConf","fxLayoutAlign","stretch start",3,"ngModelChange","change","ngClass","ngModel"],["fxLayout","column","fxFlex","93"],["matInput","","type","number","name","blocks",3,"ngModelChange","step","min","required","disabled","ngModel"],["fxLayout","column","fxFlex","100","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","35","fxLayoutAlign","start end"],["multiple","",3,"valueChange","selectionChange","value"],["fxFlex","60","fxLayout","row","fxLayoutAlign","start center"],["color","primary","name","flgUseAllBalance",3,"ngModelChange","change","disabled","ngModel"],["matTooltip","Use selected UTXOs balance as the amount to be sent. Final amount sent will be less the mining fee.","matTooltipPosition","above",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit"],[3,"value"],["fxFlex","48","fxLayoutAlign","end center"],["matInput","","type","number","name","custFeeRate",3,"ngModelChange","step","min","required","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl","editable"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["matInput","","formControlName","transactionAddress","name","address","required",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["formControlName","selFeeRate"],["fxFlex","7","color","primary","formControlName","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass"],["matInput","","formControlName","minConfValue","type","number","name","blocks",3,"step","min","required"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","type","button ","matStepperNext",""],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["fxFlex","100",1,"w-100","alert","alert-warn"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["mat-button","","color","primary","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","type","button","default","",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["autoFocus","","matInput","","type","password","formControlName","password","required",""],["fxLayout","row",1,"mt-2"],["matInput","","formControlName","customFeeRate","type","number","name","custFeeRate",3,"step","min"]],template:function(o,r){if(1&o&&(A.j41(0,"div",7)(1,"div",8)(2,"mat-card-header",9)(3,"div",10)(4,"span",11),A.EFF(5),A.k0s()(),A.j41(6,"button",12),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",13),A.DNE(9,Xe,16,6,"div",14)(10,pc,66,39,"form",15),A.k0s()()(),A.DNE(11,qr,46,23,"ng-template",null,0,A.C5r)),2&o){const iA=A.sdS(12);A.R7$(5),A.JRh(r.sweepAll?"Sweep All Funds":"Send Funds"),A.R7$(),A.Y8G("mat-dialog-close",!1),A.R7$(3),A.Y8G("ngIf",r.recommendedFee.minimumFee),A.R7$(),A.Y8G("ngIf",!r.sweepAll)("ngIfElse",iA)}},dependencies:[de.YU,de.Sq,de.bT,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.YS,hA.VZ,hA.vS,hA.cV,hA.j4,hA.JD,P.aY,wA.tx,fA.$z,QA.m2,QA.MM,Ze.So,gi.GK,gi.Z2,gi.WN,oA.An,UA.fg,yA.rl,yA.nJ,yA.MV,yA.TL,yA.yw,Q.DJ,Q.sA,Q.UI,dA.PW,OA.VO,OA.$2,xA.wT,Ee.sG,HA.oV,ji.V5,ji.Ti,ji.M6,ji.F7,cA.N,J.V,de.QX],encapsulation:2}))}return n(),l})();var $r=We(5837),Aa=We(1975);const go=()=>["all"],Bo=n=>({"error-border":n}),fo=()=>["no_utxo"],br=n=>({width:n}),ea=n=>({"display-none":n});function Pn(n,l){if(1&n&&(A.j41(0,"mat-option",37),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function uo(n,l){1&n&&A.nrm(0,"mat-progress-bar",38)}function ho(n,l){1&n&&A.nrm(0,"th",39)}function Eo(n,l){1&n&&(A.j41(0,"span",42)(1,"mat-icon",43),A.EFF(2,"warning"),A.k0s()())}function wo(n,l){if(1&n&&(A.j41(0,"td",40),A.DNE(1,Eo,3,0,"span",41),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(),o=A.sdS(56);A.R7$(),A.Y8G("ngIf",i.numDustUTXOs>0&&!i.isDustUTXO&&(null==e?null:e.amount_msat)/1e30||0===e.amount_msat),A.R7$(),A.Y8G("ngIf",e.amount_msat<0)}}function kt(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Blockheight"),A.k0s())}function Do(n,l){if(1&n&&(A.j41(0,"td",40)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.bMT(3,1,null==e?null:e.blockheight)," ")}}function Si(n,l){1&n&&(A.j41(0,"th",49),A.EFF(1,"Reserved"),A.k0s())}function Fo(n,l){if(1&n&&(A.j41(0,"td",40)(1,"span"),A.EFF(2),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(e.reserved?"Yes":"No")}}function yo(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",57)(1,"div",58)(2,"mat-select",59),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",60),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function xo(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",61)(1,"button",62),A.bIt("click",function(o){const r=w.eBV(e).$implicit,iA=A.XpG();return w.Njj(iA.onUTXOClick(r,o))}),A.EFF(2,"View Info"),A.k0s()()}}function or(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No utxos available."),A.k0s())}function Kn(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting utxos..."),A.k0s())}function na(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function ls(n,l){if(1&n&&(A.j41(0,"td",63),A.DNE(1,or,2,0,"p",64)(2,Kn,2,0,"p",64)(3,na,2,1,"p",64),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.listUTXOs&&e.listUTXOs.data)||(null==e.listUTXOs||null==e.listUTXOs.data?null:e.listUTXOs.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.listUTXOs&&e.listUTXOs.data)||(null==e.listUTXOs||null==e.listUTXOs.data?null:e.listUTXOs.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.listUTXOs&&e.listUTXOs.data)||(null==e.listUTXOs||null==e.listUTXOs.data?null:e.listUTXOs.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function ia(n,l){if(1&n&&A.nrm(0,"tr",65),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,ea,(null==e.listUTXOs?null:e.listUTXOs.data)&&(null==e.listUTXOs||null==e.listUTXOs.data?null:e.listUTXOs.data.length)>0))}}function Yo(n,l){1&n&&A.nrm(0,"tr",66)}function lr(n,l){1&n&&A.nrm(0,"tr",67)}function cr(n,l){1&n&&A.nrm(0,"mat-icon",68)}let Ni=(()=>{var n;class l{constructor(i,o,r,iA){this.logger=i,this.commonService=o,this.store=r,this.camelCaseWithReplace=iA,this.numDustUTXOs=0,this.isDustUTXO=!1,this.dustAmount=1e3,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"utxos",recordsPerPage:B.md,sortBy:"status",sortOrder:B.oi.DESCENDING},this.displayedColumns=[],this.listUTXOs=new z.I6([]),this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.tableSetting.tableId=this.isDustUTXO?"dust_utxos":"utxos",this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),i.utxos&&i.utxos.length>0&&(this.dustUtxos=i.utxos?.filter(o=>+(o.amount_msat||0)/1e30&&this.loadUTXOsTable(this.dustUtxos):(this.displayedColumns.unshift("is_dust"),this.utxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.utxos))),this.logger.info(i)})}ngAfterViewInit(){setTimeout(()=>{this.isDustUTXO?this.dustUtxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.dustUtxos):this.utxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.utxos)},0)}onUTXOClick(i,o){const r=[[{key:"txid",value:i.txid,title:"Transaction ID",width:100,type:B.UN.STRING,explorerLink:"tx"}],[{key:"output",value:i.output,title:"Output",width:50,type:B.UN.NUMBER},{key:"amount_msat",value:(i.amount_msat||0)/1e3,title:"Value (Sats)",width:50,type:B.UN.NUMBER}],[{key:"status",value:this.commonService.titleCase(i.status||""),title:"Status",width:50,type:B.UN.STRING},{key:"blockheight",value:i.blockheight,title:"Blockheight",width:50,type:B.UN.NUMBER}],[{key:"address",value:i.address,title:"Address",width:100}]];this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"UTXO Information",message:r}}}))}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column||"","_"):"is_dust"===i?"Dust":this.commonService.titleCase(i)}setFilterPredicate(){this.listUTXOs.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=JSON.stringify(i).toLowerCase();break;case"is_dust":r=(i?.amount_msat||0)/1e3"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"is_dust"===this.selFilterBy||"status"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadUTXOsTable(i){this.listUTXOs=new z.I6([...i]),this.listUTXOs.sort=this.sort,this.listUTXOs.sortingDataAccessor=(o,r)=>{switch(r){case"is_dust":return(o.amount_msat||0)/1e30&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-on-chain-utxos"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},inputs:{numDustUTXOs:"numDustUTXOs",isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("UTXOs")}])],decls:57,vars:18,consts:[["table",""],["emptySpace",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","is_dust"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Dust/Nondust",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["matColumnDef","txid"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","address"],["matColumnDef","scriptpubkey"],["matColumnDef","output"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","value"],["matColumnDef","blockheight"],["matColumnDef","reserved"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_utxo"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Dust/Nondust"],["mat-cell",""],["matTooltip","Risk of dust attack","matTooltipPosition","right",4,"ngIf","ngIfElse"],["matTooltip","Risk of dust attack","matTooltipPosition","right"],["fxLayoutAlign","start center","color","warn",1,"small-icon"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["class","dot green","matTooltip","Confirmed","matTooltipPosition","right",4,"ngIf"],["class","dot yellow","matTooltipPosition","right",3,"matTooltip",4,"ngIf"],["matTooltip","Confirmed","matTooltipPosition","right",1,"dot","green"],["matTooltipPosition","right",1,"dot","yellow",3,"matTooltip"],["mat-header-cell","","mat-sort-header",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],["fxLayoutAlign","start center","color","warn",1,"mr-1"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",2)(1,"div",3),A.nrm(2,"div",4),A.j41(3,"div",5)(4,"mat-form-field",6)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",7),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilterBy,re)||(r.selFilterBy=re),w.Njj(re)}),A.bIt("selectionChange",function(){return w.eBV(iA),r.selFilter="",w.Njj(r.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,Pn,2,2,"mat-option",8),A.k0s()()(),A.j41(10,"mat-form-field",6)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",9),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilter,re)||(r.selFilter=re),w.Njj(re)}),A.bIt("input",function(){return w.eBV(iA),w.Njj(r.applyFilter())})("keyup",function(){return w.eBV(iA),w.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(14,"div",10)(15,"div",11),A.DNE(16,uo,1,0,"mat-progress-bar",12),A.j41(17,"table",13,0),A.qex(19,14),A.DNE(20,ho,1,0,"th",15)(21,wo,2,2,"td",16),A.bVm(),A.qex(22,17),A.DNE(23,Co,1,0,"th",18)(24,Dc,3,2,"td",16),A.bVm(),A.qex(25,19),A.DNE(26,Mo,2,0,"th",20)(27,vi,4,4,"td",16),A.bVm(),A.qex(28,21),A.DNE(29,po,2,0,"th",20)(30,ta,4,4,"td",16),A.bVm(),A.qex(31,22),A.DNE(32,vr,2,0,"th",20)(33,qt,4,4,"td",16),A.bVm(),A.qex(34,23),A.DNE(35,Ri,2,0,"th",24)(36,Rr,4,3,"td",16),A.bVm(),A.qex(37,25),A.DNE(38,Io,2,0,"th",24)(39,ar,3,2,"td",16),A.bVm(),A.qex(40,26),A.DNE(41,kt,2,0,"th",24)(42,Do,4,3,"td",16),A.bVm(),A.qex(43,27),A.DNE(44,Si,2,0,"th",20)(45,Fo,3,1,"td",16),A.bVm(),A.qex(46,28),A.DNE(47,yo,6,0,"th",29)(48,xo,3,0,"td",30),A.bVm(),A.qex(49,31),A.DNE(50,ls,4,3,"td",32),A.bVm(),A.DNE(51,ia,1,3,"tr",33)(52,Yo,1,0,"tr",34)(53,lr,1,0,"tr",35),A.k0s(),A.nrm(54,"mat-paginator",36),A.k0s()()(),A.DNE(55,cr,1,0,"ng-template",null,1,A.C5r)}2&o&&(A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,go).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(3),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.listUTXOs)("ngClass",A.eq3(15,Bo,""!==r.errorMessage)),A.R7$(34),A.Y8G("matFooterRowDef",A.lJ4(17,fo)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("showFirstLastButtons",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,fA.$z,oA.An,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,HA.oV,H.iy,M.ZF,M.Ld,de.QX,de.PV],styles:[".mat-column-is_dust[_ngcontent-%COMP%]{max-width:3rem;width:3rem;text-overflow:unset}.mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return n(),l})();function bo(n,l){if(1&n&&(A.j41(0,"span",4),A.EFF(1,"UTXOs"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.numUtxos))}}function gr(n,l){if(1&n&&(A.j41(0,"span",5),A.EFF(1,"Dust UTXOs"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.numDustUtxos))}}let Js=(()=>{var n;class l{constructor(i,o){this.logger=i,this.store=o,this.selectedTableIndex=0,this.selectedTableIndexChange=new A.bkB,this.numUtxos=0,this.numDustUtxos=0,this.DUST_AMOUNT=1e3,this.unSubs=[new g.B,new g.B]}ngOnInit(){this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{i.utxos&&i.utxos.length>0&&(this.numUtxos=i.utxos.length||0,this.numDustUtxos=i.utxos?.filter(o=>+(o.amount_msat||0)/1e3{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-utxo-tables"]],inputs:{selectedTableIndex:"selectedTableIndex"},outputs:{selectedTableIndexChange:"selectedTableIndexChange"},standalone:!1,decls:8,vars:7,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"bordered-box","my-2"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedIndex"],["mat-tab-label",""],["fxLayout","row","fxFlex","100",3,"numDustUTXOs","isDustUTXO","dustAmount"],["matBadgeOverlap","false","matBadgeColor","primary",1,"tab-badge",3,"matBadge"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,r){1&o&&(A.j41(0,"div",0)(1,"mat-tab-group",1),A.bIt("selectedIndexChange",function(ne){return r.onSelectedIndexChanged(ne)}),A.j41(2,"mat-tab"),A.DNE(3,bo,2,2,"ng-template",2),A.nrm(4,"rtl-cln-on-chain-utxos",3),A.k0s(),A.j41(5,"mat-tab"),A.DNE(6,gr,2,2,"ng-template",2),A.nrm(7,"rtl-cln-on-chain-utxos",3),A.k0s()()()),2&o&&(A.R7$(),A.Y8G("selectedIndex",r.selectedTableIndex),A.R7$(3),A.Y8G("numDustUTXOs",r.numDustUtxos)("isDustUTXO",!1)("dustAmount",r.DUST_AMOUNT),A.R7$(3),A.Y8G("numDustUTXOs",r.numDustUtxos)("isDustUTXO",!0)("dustAmount",r.DUST_AMOUNT))},dependencies:[Q.DJ,Q.sA,Q.UI,Aa.k,RA.ES,RA.mq,RA.T8,Ni],encapsulation:2}))}return n(),l})();const vo=(n,l)=>[n,l];function Ro(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",13),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.activeLink=null==o?null:o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("active",i.activeLink===(null==e?null:e.link))("routerLink",A.l_i(3,vo,null==e?null:e.link,null==i.selectedTable?null:i.selectedTable.name)),A.R7$(),A.JRh(null==e?null:e.name)}}let So=(()=>{var n;class l{constructor(i,o,r){this.store=i,this.router=o,this.activatedRoute=r,this.faExchangeAlt=v._qq,this.faChartPie=v.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"},{link:"sweep",name:"Sweep All"}],this.activeLink=this.links[0].link,this.tables=[{id:0,name:"utxos"},{id:1,name:"dustUtxos"}],this.selectedTable=this.tables[0],this.unSubs=[new g.B,new g.B,new g.B,new g.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.selectedTable=this.tables.find(o=>o.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(o=>o instanceof xt.gx)).subscribe({next:o=>{const r=this.links.find(iA=>o.urlAfterRedirects.includes(iA.link));this.activeLink=r?r.link:this.links[0].link,this.selectedTable=this.tables.find(iA=>iA.name===o.urlAfterRedirects.substring(o.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(j._c).pipe((0,I.Q)(this.unSubs[1])).subscribe(o=>{this.selNode=o}),this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[2])).subscribe(o=>{this.balances=[{title:"Total Balance",dataValue:o.balance.totalBalance||0},{title:"Confirmed",dataValue:o.balance.confBalance||0},{title:"Unconfirmed",dataValue:o.balance.unconfBalance||0}]})}openSendFundsModal(i){this.store.dispatch((0,C.xO)({payload:{data:{sweepAll:i,component:co}}}))}onSelectedTableIndexChanged(i){this.selectedTable=this.tables.find(o=>o.id===i)||this.tables[0],this.router.navigate(["./",this.activeLink,this.selectedTable.name],{relativeTo:this.activatedRoute})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(AA.il),A.rXU(xt.Ix),A.rXU(xt.nX))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-on-chain"]],standalone:!1,decls:23,vars:6,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100",3,"selectedTableIndexChange","selectedTableIndex"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"On-chain Balance"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),A.nrm(7,"rtl-currency-unit-converter",6),A.k0s()()(),A.j41(8,"div",1),A.nrm(9,"fa-icon",2),A.j41(10,"span",3),A.EFF(11,"On-chain Transactions"),A.k0s()(),A.j41(12,"div",7)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",8),A.DNE(16,Ro,2,6,"div",9),A.k0s(),A.nrm(17,"mat-tab-nav-panel",null,0),A.j41(19,"div",10),A.nrm(20,"router-outlet"),A.k0s(),A.j41(21,"div",11)(22,"rtl-cln-utxo-tables",12),A.bIt("selectedTableIndexChange",function(re){return w.eBV(iA),w.Njj(r.onSelectedTableIndexChanged(re))}),A.k0s()()()()()}if(2&o){const iA=A.sdS(18);A.R7$(),A.Y8G("icon",r.faChartPie),A.R7$(6),A.Y8G("values",r.balances),A.R7$(2),A.Y8G("icon",r.faExchangeAlt),A.R7$(6),A.Y8G("tabPanel",iA),A.R7$(),A.Y8G("ngForOf",r.links),A.R7$(6),A.Y8G("selectedTableIndex",null==r.selectedTable?null:r.selectedTable.id)}},dependencies:[de.Sq,P.aY,QA.RN,QA.m2,Q.DJ,Q.sA,Q.UI,RA.Bu,RA.hQ,RA.Ql,$r.f,xt.n3,Sn.Wk,Js],encapsulation:2}))}return n(),l})();function sa(n,l){if(1&n&&(A.j41(0,"span",10),A.EFF(1,"Channels"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.activeChannels))}}function No(n,l){if(1&n&&(A.j41(0,"span",10),A.EFF(1,"Peers"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.activePeers))}}let To=(()=>{var n;class l{constructor(i,o,r){this.store=i,this.logger=o,this.router=r,this.activePeers=0,this.activeChannels=0,this.faUsers=v.gdJ,this.faChartPie=v.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new g.B,new g.B,new g.B,new g.B]}ngOnInit(){this.activeLink=this.links.findIndex(i=>i.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(i=>i instanceof xt.gx)).subscribe({next:i=>{this.activeLink=this.links.findIndex(o=>o.link===i.urlAfterRedirects.substring(i.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(tA.BM).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.activeChannels=i.activeChannels.length||0}),this.store.select(tA.os).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.activePeers=i.peers&&i.peers.length?i.peers.length:0,this.logger.info(i)}),this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.balances=[{title:"Total Balance",dataValue:i.balance.totalBalance||0},{title:"Confirmed",dataValue:i.balance.confBalance||0},{title:"Unconfirmed",dataValue:i.balance.unconfBalance||0}]})}onSelectedTabChange(i){this.router.navigateByUrl("/cln/connections/"+this.links[i.index].link)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(AA.il),A.rXU(aA.gP),A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-connections"]],standalone:!1,decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,r){1&o&&(A.j41(0,"div",0),A.nrm(1,"fa-icon",1),A.j41(2,"span",2),A.EFF(3,"On-chain Balance"),A.k0s()(),A.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),A.nrm(7,"rtl-currency-unit-converter",5),A.k0s()()(),A.j41(8,"div",0),A.nrm(9,"fa-icon",1),A.j41(10,"span",2),A.EFF(11,"Connections"),A.k0s()(),A.j41(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),A.mxI("selectedIndexChange",function(ne){return A.DH7(r.activeLink,ne)||(r.activeLink=ne),ne}),A.bIt("selectedTabChange",function(ne){return r.onSelectedTabChange(ne)}),A.j41(16,"mat-tab"),A.DNE(17,sa,2,2,"ng-template",8),A.k0s(),A.j41(18,"mat-tab"),A.DNE(19,No,2,2,"ng-template",8),A.k0s()(),A.j41(20,"div",9),A.nrm(21,"router-outlet"),A.k0s()()()()),2&o&&(A.R7$(),A.Y8G("icon",r.faChartPie),A.R7$(6),A.Y8G("values",r.balances),A.R7$(2),A.Y8G("icon",r.faUsers),A.R7$(6),A.R50("selectedIndex",r.activeLink))},dependencies:[P.aY,QA.RN,QA.m2,Q.DJ,Q.sA,Q.UI,Aa.k,RA.ES,RA.mq,RA.T8,$r.f,xt.n3],encapsulation:2}))}return n(),l})();function Po(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",12),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.activeLink=o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("routerLink",A.mNQ(e.link))("active",i.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let Uo=(()=>{var n;class l{constructor(i,o,r){this.logger=i,this.store=o,this.router=r,this.faExchangeAlt=v._qq,this.faChartPie=v.W1p,this.currencyUnits=[],this.routerUrl="",this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"}],this.activeLink=this.links[0].link,this.unSubs=[new g.B,new g.B,new g.B,new g.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(o=>o instanceof xt.gx)).subscribe({next:o=>{const r=this.links.find(iA=>o.urlAfterRedirects.includes(iA.link));this.activeLink=r?r.link:this.links[0].link,this.routerUrl=o.urlAfterRedirects}}),this.store.select(j._c).pipe((0,I.Q)(this.unSubs[1])).subscribe(o=>{if(this.selNode=o,this.selNode&&this.selNode.settings.enableOffers){this.store.dispatch((0,VA.Eb)()),this.store.dispatch((0,VA.Ml)()),this.links.push({link:"offers",name:"Offers"}),this.links.push({link:"offrBookmarks",name:"Paid Offer Bookmarks"});const r=this.links.find(iA=>this.router.url.includes(iA.link));this.activeLink=r?r.link:this.links[0].link}}),this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[2]),(0,N.E)(this.store.select(j._c))).subscribe(([o,r])=>{this.currencyUnits=r?.settings.currencyUnits||[],this.balances=r&&r.settings.userPersona===B.HW.OPERATOR?[{title:"Local Capacity",dataValue:o.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:o.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:o.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:o.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(o)})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-transactions"]],standalone:!1,decls:21,vars:5,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Lightning Balance"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),A.nrm(7,"rtl-currency-unit-converter",6),A.k0s()()(),A.j41(8,"div",7),A.nrm(9,"fa-icon",2),A.j41(10,"span",3),A.EFF(11,"Lightning Transactions"),A.k0s()(),A.j41(12,"div",8)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",9),A.DNE(16,Po,2,4,"div",10),A.k0s(),A.nrm(17,"mat-tab-nav-panel",null,0),A.j41(19,"div",11),A.nrm(20,"router-outlet"),A.k0s()()()()),2&o){const iA=A.sdS(18);A.R7$(),A.Y8G("icon",r.faChartPie),A.R7$(6),A.Y8G("values",r.balances),A.R7$(2),A.Y8G("icon",r.faExchangeAlt),A.R7$(6),A.Y8G("tabPanel",iA),A.R7$(),A.Y8G("ngForOf",r.links)}},dependencies:[de.Sq,P.aY,QA.RN,QA.m2,Q.DJ,Q.sA,Q.UI,RA.Bu,RA.hQ,RA.Ql,$r.f,xt.n3,Sn.Wk],encapsulation:2}))}return n(),l})();function Lo(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",12),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.activeLink=o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("routerLink",A.mNQ(e.link))("active",i.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let Go=(()=>{var n;class l{constructor(i){this.router=i,this.faMapSigns=v.knH,this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"routingpeers",name:"Routing Peers"},{link:"failedtransactions",name:"Failed Transactions"},{link:"localfail",name:"Local Failed Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new g.B,new g.B,new g.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(o=>o instanceof xt.gx)).subscribe({next:o=>{const r=this.links.find(iA=>o.urlAfterRedirects.includes(iA.link));this.activeLink=r?r.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-routing"]],standalone:!1,decls:15,vars:3,consts:[["tabPanel",""],["fxLayout","column",1,"mb-2"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","1","mat-tab-link","","role","tab","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["tabindex","1","mat-tab-link","","role","tab",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1)(1,"div",2),A.nrm(2,"fa-icon",3),A.j41(3,"span",4),A.EFF(4,"Routing"),A.k0s()(),A.j41(5,"div",5)(6,"mat-card",6)(7,"mat-card-content",7)(8,"div",8)(9,"nav",9),A.DNE(10,Lo,2,4,"div",10),A.k0s(),A.nrm(11,"mat-tab-nav-panel",null,0),A.k0s(),A.j41(13,"div",11),A.nrm(14,"router-outlet"),A.k0s()()()()()),2&o){const iA=A.sdS(12);A.R7$(2),A.Y8G("icon",r.faMapSigns),A.R7$(7),A.Y8G("tabPanel",iA),A.R7$(),A.Y8G("ngForOf",r.links)}},dependencies:[de.Sq,P.aY,QA.RN,QA.m2,Q.DJ,Q.sA,Q.UI,RA.Bu,RA.hQ,RA.Ql,xt.n3,Sn.Wk],encapsulation:2}))}return n(),l})();function zo(n,l){1&n&&(A.j41(0,"h3",9),A.EFF(1,"Node 1"),A.k0s())}function ko(n,l){1&n&&(A.j41(0,"h3",9),A.EFF(1,"Node 1 (Your Node)"),A.k0s())}function Ho(n,l){1&n&&(A.j41(0,"h3",9),A.EFF(1,"Node 2"),A.k0s())}function jo(n,l){1&n&&(A.j41(0,"h3",9),A.EFF(1,"Node 2 (Your Node)"),A.k0s())}function Oo(n,l){if(1&n&&(A.j41(0,"div",1),A.nrm(1,"mat-divider"),A.j41(2,"div",2)(3,"div",3)(4,"div",4),A.DNE(5,zo,2,0,"h3",5)(6,ko,2,0,"h3",5),A.k0s(),A.nrm(7,"mat-divider",6),A.j41(8,"div",4)(9,"h4",7),A.EFF(10,"Short Channel ID"),A.k0s(),A.j41(11,"span",8),A.EFF(12),A.k0s()(),A.nrm(13,"mat-divider",6),A.j41(14,"div",4)(15,"h4",7),A.EFF(16,"Active"),A.k0s(),A.j41(17,"span",8),A.EFF(18),A.k0s()(),A.nrm(19,"mat-divider",6),A.j41(20,"div",4)(21,"h4",7),A.EFF(22,"Last Update"),A.k0s(),A.j41(23,"span",8),A.EFF(24),A.nI1(25,"date"),A.k0s()(),A.nrm(26,"mat-divider",6),A.j41(27,"div",4)(28,"h4",7),A.EFF(29,"Amount (Sats)"),A.k0s(),A.j41(30,"span",8),A.EFF(31),A.nI1(32,"number"),A.k0s()(),A.nrm(33,"mat-divider",6),A.j41(34,"div",4)(35,"h4",7),A.EFF(36,"Base Fee (mSats)"),A.k0s(),A.j41(37,"span",8),A.EFF(38),A.nI1(39,"number"),A.k0s()(),A.nrm(40,"mat-divider",6),A.j41(41,"div",4)(42,"h4",7),A.EFF(43,"Fee/Millionth"),A.k0s(),A.j41(44,"span",8),A.EFF(45),A.nI1(46,"number"),A.k0s()(),A.nrm(47,"mat-divider",6),A.j41(48,"div",4)(49,"h4",7),A.EFF(50,"Channel Flags"),A.k0s(),A.j41(51,"span",8),A.EFF(52),A.nI1(53,"number"),A.k0s()(),A.nrm(54,"mat-divider",6),A.j41(55,"div",4)(56,"h4",7),A.EFF(57,"Delay"),A.k0s(),A.j41(58,"span",8),A.EFF(59),A.nI1(60,"number"),A.k0s()(),A.nrm(61,"mat-divider",6),A.j41(62,"div",4)(63,"h4",7),A.EFF(64,"Max Htlc (mSat)"),A.k0s(),A.j41(65,"span",8),A.EFF(66),A.nI1(67,"number"),A.k0s()(),A.nrm(68,"mat-divider",6),A.j41(69,"div",4)(70,"h4",7),A.EFF(71,"Min Htlc (mSat)"),A.k0s(),A.j41(72,"span",8),A.EFF(73),A.nI1(74,"number"),A.k0s()(),A.nrm(75,"mat-divider",6),A.j41(76,"div",4)(77,"h4",7),A.EFF(78,"Message Flags"),A.k0s(),A.j41(79,"span",8),A.EFF(80),A.nI1(81,"number"),A.k0s()(),A.nrm(82,"mat-divider",6),A.j41(83,"div",4)(84,"h4",7),A.EFF(85,"Public"),A.k0s(),A.j41(86,"span",8),A.EFF(87),A.k0s()(),A.nrm(88,"mat-divider",6),A.j41(89,"div",4)(90,"h4",7),A.EFF(91,"Source"),A.k0s(),A.j41(92,"span",8),A.EFF(93),A.k0s()(),A.nrm(94,"mat-divider",6),A.j41(95,"div",4)(96,"h4",7),A.EFF(97,"Destination"),A.k0s(),A.j41(98,"span",8),A.EFF(99),A.k0s()()(),A.j41(100,"div",3)(101,"div"),A.DNE(102,Ho,2,0,"h3",5)(103,jo,2,0,"h3",5),A.k0s(),A.nrm(104,"mat-divider",6),A.j41(105,"div",4)(106,"h4",7),A.EFF(107,"Short Channel ID"),A.k0s(),A.j41(108,"span",8),A.EFF(109),A.k0s()(),A.nrm(110,"mat-divider",6),A.j41(111,"div",4)(112,"h4",7),A.EFF(113,"Active"),A.k0s(),A.j41(114,"span",8),A.EFF(115),A.k0s()(),A.nrm(116,"mat-divider",6),A.j41(117,"div",4)(118,"h4",7),A.EFF(119,"Last Update"),A.k0s(),A.j41(120,"span",8),A.EFF(121),A.nI1(122,"date"),A.k0s()(),A.nrm(123,"mat-divider",6),A.j41(124,"div",4)(125,"h4",7),A.EFF(126,"Amount (Sats)"),A.k0s(),A.j41(127,"span",8),A.EFF(128),A.nI1(129,"number"),A.k0s()(),A.nrm(130,"mat-divider",6),A.j41(131,"div",4)(132,"h4",7),A.EFF(133,"Base Fee (mSats)"),A.k0s(),A.j41(134,"span",8),A.EFF(135),A.nI1(136,"number"),A.k0s()(),A.nrm(137,"mat-divider",6),A.j41(138,"div",4)(139,"h4",7),A.EFF(140,"Fee/Millionth"),A.k0s(),A.j41(141,"span",8),A.EFF(142),A.nI1(143,"number"),A.k0s()(),A.nrm(144,"mat-divider",6),A.j41(145,"div",4)(146,"h4",7),A.EFF(147,"Channel Flags"),A.k0s(),A.j41(148,"span",8),A.EFF(149),A.nI1(150,"number"),A.k0s()(),A.nrm(151,"mat-divider",6),A.j41(152,"div",4)(153,"h4",7),A.EFF(154,"Delay"),A.k0s(),A.j41(155,"span",8),A.EFF(156),A.nI1(157,"number"),A.k0s()(),A.nrm(158,"mat-divider",6),A.j41(159,"div",4)(160,"h4",7),A.EFF(161,"Max Htlc (mSat)"),A.k0s(),A.j41(162,"span",8),A.EFF(163),A.nI1(164,"number"),A.k0s()(),A.nrm(165,"mat-divider",6),A.j41(166,"div",4)(167,"h4",7),A.EFF(168,"Min Htlc (mSat)"),A.k0s(),A.j41(169,"span",8),A.EFF(170),A.nI1(171,"number"),A.k0s()(),A.nrm(172,"mat-divider",6),A.j41(173,"div",4)(174,"h4",7),A.EFF(175,"Message Flags"),A.k0s(),A.j41(176,"span",8),A.EFF(177),A.nI1(178,"number"),A.k0s()(),A.nrm(179,"mat-divider",6),A.j41(180,"div",4)(181,"h4",7),A.EFF(182,"Public"),A.k0s(),A.j41(183,"span",8),A.EFF(184),A.k0s()(),A.nrm(185,"mat-divider",6),A.j41(186,"div",4)(187,"h4",7),A.EFF(188,"Source"),A.k0s(),A.j41(189,"span",8),A.EFF(190),A.k0s()(),A.nrm(191,"mat-divider",6),A.j41(192,"div",4)(193,"h4",7),A.EFF(194,"Destination"),A.k0s(),A.j41(195,"span",8),A.EFF(196),A.k0s()()()()()),2&n){const e=A.XpG();A.R7$(5),A.Y8G("ngIf",!e.node1_match),A.R7$(),A.Y8G("ngIf",e.node1_match),A.R7$(6),A.JRh(null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].short_channel_id),A.R7$(6),A.JRh(null!=e.lookupResult.channels[0]&&e.lookupResult.channels[0].active?"True":"False"),A.R7$(6),A.JRh(A.i5U(25,32,1e3*(null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].last_update),"dd/MMM/y HH:mm")),A.R7$(7),A.JRh(A.i5U(32,35,(null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].amount_msat)/1e3,"1.0-0")),A.R7$(7),A.JRh(A.bMT(39,38,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].base_fee_millisatoshi)),A.R7$(7),A.JRh(A.bMT(46,40,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].fee_per_millionth)),A.R7$(7),A.JRh(A.bMT(53,42,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].channel_flags)),A.R7$(7),A.JRh(A.bMT(60,44,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].delay)),A.R7$(7),A.JRh(A.bMT(67,46,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].htlc_maximum_msat)),A.R7$(7),A.JRh(A.bMT(74,48,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].htlc_minimum_msat)),A.R7$(7),A.JRh(A.bMT(81,50,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].message_flags)),A.R7$(7),A.JRh(null!=e.lookupResult.channels[0]&&e.lookupResult.channels[0].public?"Yes":"No"),A.R7$(6),A.JRh(null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].source),A.R7$(6),A.JRh(null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].destination),A.R7$(3),A.Y8G("ngIf",!e.node2_match),A.R7$(),A.Y8G("ngIf",e.node2_match),A.R7$(6),A.JRh(null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].short_channel_id),A.R7$(6),A.JRh(null!=e.lookupResult.channels[1]&&e.lookupResult.channels[1].active?"True":"False"),A.R7$(6),A.JRh(A.i5U(122,52,1e3*(null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].last_update),"dd/MMM/y HH:mm")),A.R7$(7),A.JRh(A.i5U(129,55,(null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].amount_msat)/1e3,"1.0-0")),A.R7$(7),A.JRh(A.bMT(136,58,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].base_fee_millisatoshi)),A.R7$(7),A.JRh(A.bMT(143,60,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].fee_per_millionth)),A.R7$(7),A.JRh(A.bMT(150,62,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].channel_flags)),A.R7$(7),A.JRh(A.bMT(157,64,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].delay)),A.R7$(7),A.JRh(A.bMT(164,66,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].htlc_maximum_msat)),A.R7$(7),A.JRh(A.bMT(171,68,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].htlc_minimum_msat)),A.R7$(7),A.JRh(A.bMT(178,70,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].message_flags)),A.R7$(7),A.JRh(null!=e.lookupResult.channels[1]&&e.lookupResult.channels[1].public?"Yes":"No"),A.R7$(6),A.JRh(null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].source),A.R7$(6),A.JRh(null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].destination)}}let Br=(()=>{var n;class l{constructor(i){this.store=i,this.lookupResult={},this.node1_match=!1,this.node2_match=!1,this.unSubs=[new g.B,new g.B,new g.B,new g.B]}ngOnInit(){this.store.select(tA.mH).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.lookupResult.channels&&this.lookupResult.channels.length>0&&this.lookupResult.channels[0].source===i.id&&(this.node1_match=!0),this.lookupResult.channels&&this.lookupResult.channels.length>1&&this.lookupResult.channels[1].source===i.id&&(this.node2_match=!0)})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(AA.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-lookup"]],inputs:{lookupResult:"lookupResult"},standalone:!1,decls:1,vars:1,consts:[["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mt-1","bordered-box","padding-gap-large"],["fxLayout","column"],["class","page-title font-bold-500",4,"ngIf"],[1,"my-1"],[1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"page-title","font-bold-500"]],template:function(o,r){1&o&&A.DNE(0,Oo,197,72,"div",0),2&o&&A.Y8G("ngIf",r.lookupResult)},dependencies:[de.bT,sn.q,Q.DJ,Q.sA,Q.UI,de.QX,de.vh],styles:[".mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%], .mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%]{height:38px!important}"]}))}return n(),l})();const Sr=["peersForm"],fr=["stepper"],ra=(n,l)=>({"mr-6":n,"mr-2":l});function Jo(n,l){if(1&n&&A.EFF(0),2&n){const e=A.XpG();A.JRh(e.peerFormLabel)}}function ur(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Address is required."),A.k0s())}function Gn(n,l){if(1&n&&(A.j41(0,"div",42),A.nrm(1,"fa-icon",43),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(2),A.JRh(e.peerConnectionError)}}function Bi(n,l){if(1&n&&A.EFF(0),2&n){const e=A.XpG();A.JRh(e.channelFormLabel)}}function Nr(n,l){if(1&n&&(A.j41(0,"div",44),A.nrm(1,"fa-icon",43),A.j41(2,"span",13)(3,"div"),A.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(5,"span",45)(6,"span"),A.EFF(7),A.k0s(),A.j41(8,"span"),A.EFF(9),A.k0s(),A.j41(10,"span"),A.EFF(11),A.k0s(),A.j41(12,"span"),A.EFF(13),A.k0s(),A.j41(14,"span"),A.EFF(15),A.k0s()()()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faInfoCircle),A.R7$(6),A.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),A.R7$(2),A.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),A.R7$(2),A.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),A.R7$(2),A.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),A.R7$(2),A.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function Tr(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function Pr(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Amount must be a positive number."),A.k0s())}function _o(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function _s(n,l){if(1&n&&(A.j41(0,"mat-option",46),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e.feeRateId),A.R7$(),A.SpI(" ",e.feeRateType," ")}}function aa(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function Vo(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function Wo(n,l){if(1&n&&(A.j41(0,"mat-form-field",47)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.nrm(3,"input",48),A.j41(4,"mat-hint"),A.EFF(5),A.k0s(),A.DNE(6,aa,2,0,"mat-error",15)(7,Vo,2,1,"mat-error",15),A.k0s()),2&n){const e=A.XpG();A.R7$(3),A.Y8G("step",1)("min",e.recommendedFee.minimumFee||0),A.R7$(2),A.SpI("Mempool Min: ",e.recommendedFee.minimumFee," (Sats/vByte)"),A.R7$(),A.Y8G("ngIf","customperkb"===e.channelFormGroup.controls.selFeeRate.value&&!e.channelFormGroup.controls.flgMinConf.value&&!e.channelFormGroup.controls.customFeeRate.value),A.R7$(),A.Y8G("ngIf",e.channelFormGroup.controls.customFeeRate.value&&(null==e.channelFormGroup.controls.customFeeRate.errors?null:e.channelFormGroup.controls.customFeeRate.errors.minimum))}}function Ko(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function Xo(n,l){if(1&n&&(A.j41(0,"div",42),A.nrm(1,"fa-icon",43),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(2),A.JRh(e.channelConnectionError)}}let Ur=(()=>{var n;class l{constructor(i,o,r,iA,ne,re,ln,Qt){this.dialogRef=i,this.data=o,this.store=r,this.formBuilder=iA,this.actions=ne,this.logger=re,this.commonService=ln,this.dataService=Qt,this.faExclamationTriangle=v.zpE,this.faInfoCircle=v.iW_,this.peerAddress="",this.totalBalance=0,this.feeRateTypes=B.G,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.screenSize="",this.screenSizeEnum=B.f7,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.data.message?(this.totalBalance=this.data.message.balance,this.peerAddress=this.data.message.peer&&this.data.message.peer.id&&this.data.message.peer.netaddr?this.data.message.peer.id+"@"+this.data.message.peer.netaddr:this.data.message.peer&&this.data.message.peer.id&&!this.data.message.peer.netaddr?this.data.message.peer.id:""):(this.totalBalance=0,this.peerAddress=""),this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[hA.k0.required]],peerAddress:[this.peerAddress,[hA.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[hA.k0.required,hA.k0.min(1),hA.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],selFeeRate:[null],customFeeRate:[null],flgMinConf:[!1],minConfValue:[{value:null,disabled:!0}],hiddenAmount:["",[hA.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i,this.channelFormGroup.controls.isPrivate.setValue(!!i?.settings.unannouncedChannels)}),this.channelFormGroup.controls.flgMinConf.valueChanges.pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{i?(this.channelFormGroup.controls.selFeeRate.setValue(null),this.channelFormGroup.controls.selFeeRate.disable(),this.channelFormGroup.controls.customFeeRate.setValue(null),this.channelFormGroup.controls.minConfValue.reset(),this.channelFormGroup.controls.minConfValue.enable(),this.channelFormGroup.controls.minConfValue.setValidators([hA.k0.required])):(this.channelFormGroup.controls.selFeeRate.enable(),this.channelFormGroup.controls.minConfValue.setValue(null),this.channelFormGroup.controls.minConfValue.disable(),this.channelFormGroup.controls.minConfValue.setValidators(null))}),this.channelFormGroup.controls.selFeeRate.valueChanges.pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.channelFormGroup.controls.customFeeRate.setValue(null),this.channelFormGroup.controls.customFeeRate.reset(),this.channelFormGroup.controls.customFeeRate.setValidators("customperkb"!==i||this.channelFormGroup.controls.flgMinConf.value?null:[hA.k0.required])}),this.actions.pipe((0,I.Q)(this.unSubs[3]),(0,nA.p)(i=>i.type===B.TC.NEWLY_ADDED_PEER_CLN||i.type===B.TC.FETCH_CHANNELS_CLN||i.type===B.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(i=>{i.type===B.TC.NEWLY_ADDED_PEER_CLN&&(this.logger.info(i.payload),this.flgEditable=!1,this.newlyAddedPeer=i.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),i.type===B.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close(),i.type===B.TC.UPDATE_API_CALL_STATUS_CLN&&i.payload.status===B.wn.ERROR&&("SaveNewPeer"===i.payload.action?this.peerConnectionError=i.payload.message:"SaveNewChannel"===i.payload.action&&(this.channelConnectionError=i.payload.message))}),this.dataService.getRecommendedFeeRates().pipe((0,I.Q)(this.unSubs[4])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,VA.sq)({payload:{id:this.peerFormGroup.controls.peerAddress.value}}))}onOpenChannel(){return"customperkb"===this.channelFormGroup.controls.selFeeRate.value&&this.recommendedFee.minimumFee>this.channelFormGroup.controls.customFeeRate.value?(this.channelFormGroup.controls.customFeeRate.setErrors({minimum:!0}),!0):!!(!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||this.channelFormGroup.controls.flgMinConf.value&&!this.channelFormGroup.controls.minConfValue.value)||(this.channelConnectionError="",void this.store.dispatch((0,VA.vL)({payload:{peerId:this.newlyAddedPeer?.id,amount:this.channelFormGroup.controls.fundingAmount.value,announce:!this.channelFormGroup.controls.isPrivate.value,feeRate:"customperkb"===this.channelFormGroup.controls.selFeeRate.value&&!this.channelFormGroup.controls.flgMinConf.value&&this.channelFormGroup.controls.customFeeRate.value?1e3*this.channelFormGroup.controls.customFeeRate.value+"perkb":this.channelFormGroup.controls.selFeeRate.value,minconf:this.channelFormGroup.controls.flgMinConf.value?this.channelFormGroup.controls.minConfValue.value:null}})))}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(i){switch(i.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.id):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer?.alias:this.newlyAddedPeer?.id):"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}i.selectedIndex{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(AA.il),A.rXU(hA.ze),A.rXU(kA.En),A.rXU(aA.gP),A.rXU(L.h),A.rXU(Dt.u))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-connect-peer"]],viewQuery:function(o,r){if(1&o&&(A.GBs(Sr,5),A.GBs(fr,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.form=iA.first),A.mGM(iA=A.lsd())&&(r.stepper=iA.first)}},standalone:!1,decls:67,vars:33,consts:[["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"ngSubmit","formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["fxLayout","column","fxFlex","53","fxLayoutAlign","start end"],["matInput","","autoFocus","","formControlName","fundingAmount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxFlex","45","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["fxFlex","53","fxLayoutAlign","space-between end"],["fxLayout","column","fxLayoutAlign","start center",3,"ngClass"],["tabindex","4","formControlName","selFeeRate"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","45","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","tabindex","5","color","primary","formControlName","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass"],["fxLayout","column","fxFlex","93"],["matInput","","formControlName","minConfValue","type","number","name","blocks","tabindex","8",3,"step","min","required"],["mat-button","","color","primary","tabindex","8","type","submit"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end center"],["matInput","","formControlName","customFeeRate","type","number","name","custFeeRate","tabindex","4",3,"step","min"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),A.EFF(5,"Connect to a new peer"),A.k0s()(),A.j41(6,"button",6),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),A.bIt("selectionChange",function(re){return w.eBV(iA),w.Njj(r.stepSelectionChanged(re))}),A.j41(12,"mat-step",10)(13,"form",11),A.DNE(14,Jo,1,1,"ng-template",12),A.j41(15,"mat-form-field",13)(16,"mat-label"),A.EFF(17,"Lightning Address (pubkey OR pubkey@ip:port)"),A.k0s(),A.nrm(18,"input",14),A.DNE(19,ur,2,0,"mat-error",15),A.k0s(),A.DNE(20,Gn,4,2,"div",16),A.j41(21,"div",17)(22,"button",18),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onConnectPeer())}),A.EFF(23),A.k0s()()()(),A.j41(24,"mat-step",10)(25,"form",19),A.bIt("ngSubmit",function(){return w.eBV(iA),w.Njj(r.onOpenChannel())}),A.DNE(26,Bi,1,1,"ng-template",20),A.j41(27,"div",21),A.DNE(28,Nr,16,6,"div",22),A.j41(29,"div",23)(30,"mat-form-field",24)(31,"mat-label"),A.EFF(32,"Amount"),A.k0s(),A.nrm(33,"input",25),A.j41(34,"mat-hint"),A.EFF(35),A.nI1(36,"number"),A.k0s(),A.j41(37,"span",26),A.EFF(38," Sats "),A.k0s(),A.DNE(39,Tr,2,0,"mat-error",15)(40,Pr,2,0,"mat-error",15)(41,_o,2,1,"mat-error",15),A.k0s(),A.j41(42,"div",27)(43,"mat-slide-toggle",28),A.EFF(44,"Private Channel"),A.k0s()()(),A.j41(45,"div",29)(46,"div",30)(47,"mat-form-field",31)(48,"mat-label"),A.EFF(49,"Fee Rate"),A.k0s(),A.j41(50,"mat-select",32),A.DNE(51,_s,2,2,"mat-option",33),A.k0s()(),A.DNE(52,Wo,8,5,"mat-form-field",34),A.k0s(),A.j41(53,"div",35),A.nrm(54,"mat-checkbox",36),A.j41(55,"mat-form-field",37)(56,"mat-label"),A.EFF(57,"Min Confirmation Blocks"),A.k0s(),A.nrm(58,"input",38),A.DNE(59,Ko,2,0,"mat-error",15),A.k0s()()()(),A.DNE(60,Xo,4,2,"div",16),A.j41(61,"div",17)(62,"button",39),A.EFF(63),A.k0s()()()()(),A.j41(64,"div",40)(65,"button",41),A.EFF(66),A.k0s()()()()()()}2&o&&(A.R7$(10),A.Y8G("linear",!0),A.R7$(2),A.Y8G("stepControl",r.peerFormGroup)("editable",r.flgEditable),A.R7$(),A.Y8G("formGroup",r.peerFormGroup),A.R7$(6),A.Y8G("ngIf",null==r.peerFormGroup.controls.peerAddress.errors?null:r.peerFormGroup.controls.peerAddress.errors.required),A.R7$(),A.Y8G("ngIf",""!==r.peerConnectionError),A.R7$(3),A.JRh(""!==r.peerConnectionError?"Retry":"Add Peer"),A.R7$(),A.Y8G("stepControl",r.channelFormGroup)("editable",r.flgEditable),A.R7$(),A.Y8G("formGroup",r.channelFormGroup),A.R7$(3),A.Y8G("ngIf",r.recommendedFee.minimumFee),A.R7$(5),A.Y8G("step",1e3),A.R7$(2),A.SpI("Remaining: ",A.bMT(36,28,r.totalBalance-(r.channelFormGroup.controls.fundingAmount.value?r.channelFormGroup.controls.fundingAmount.value:0))),A.R7$(4),A.Y8G("ngIf",null==r.channelFormGroup.controls.fundingAmount.errors?null:r.channelFormGroup.controls.fundingAmount.errors.required),A.R7$(),A.Y8G("ngIf",null==r.channelFormGroup.controls.fundingAmount.errors?null:r.channelFormGroup.controls.fundingAmount.errors.min),A.R7$(),A.Y8G("ngIf",null==r.channelFormGroup.controls.fundingAmount.errors?null:r.channelFormGroup.controls.fundingAmount.errors.max),A.R7$(6),A.Y8G("ngClass","customperkb"!==r.channelFormGroup.controls.selFeeRate.value||r.channelFormGroup.controls.flgMinConf.value?"flex-100":"flex-25"),A.R7$(4),A.Y8G("ngForOf",r.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===r.channelFormGroup.controls.selFeeRate.value&&!r.channelFormGroup.controls.flgMinConf.value),A.R7$(2),A.Y8G("ngClass",A.l_i(30,ra,r.screenSize===r.screenSizeEnum.XS||r.screenSize===r.screenSizeEnum.SM,r.screenSize===r.screenSizeEnum.MD||r.screenSize===r.screenSizeEnum.LG||r.screenSize===r.screenSizeEnum.XL)),A.R7$(4),A.Y8G("step",1)("min",0)("required",r.channelFormGroup.controls.flgMinConf.value),A.R7$(),A.Y8G("ngIf",r.channelFormGroup.controls.flgMinConf.value&&!r.channelFormGroup.controls.minConfValue.value),A.R7$(),A.Y8G("ngIf",""!==r.channelConnectionError),A.R7$(3),A.JRh(""!==r.channelConnectionError?"Retry":"Open Channel"),A.R7$(2),A.Y8G("mat-dialog-close",!1),A.R7$(),A.JRh(null!=r.newlyAddedPeer&&r.newlyAddedPeer.id?"Do It Later":"Close"))},dependencies:[de.YU,de.Sq,de.bT,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.YS,hA.VZ,hA.j4,hA.JD,P.aY,wA.tx,fA.$z,QA.m2,QA.MM,Ze.So,UA.fg,yA.rl,yA.nJ,yA.MV,yA.TL,yA.yw,Q.DJ,Q.sA,Q.UI,dA.PW,OA.VO,xA.wT,Ee.sG,ji.V5,ji.Ti,ji.M6,cA.N,J.V,de.QX],encapsulation:2}))}return n(),l})();var Ji=We(9157);const Nt=n=>({"background-color":n});function ft(n,l){if(1&n&&(A.j41(0,"span",7),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(e)}}function Zo(n,l){1&n&&(A.j41(0,"th",27),A.EFF(1,"Type"),A.k0s())}function oa(n,l){if(1&n&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.type)}}function Vs(n,l){1&n&&(A.j41(0,"th",27),A.EFF(1,"Address"),A.k0s())}function la(n,l){if(1&n&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.address)}}function qo(n,l){1&n&&(A.j41(0,"th",27),A.EFF(1,"Port"),A.k0s())}function $o(n,l){if(1&n&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.port)}}function ca(n,l){1&n&&(A.j41(0,"th",29)(1,"div",30),A.EFF(2,"Actions"),A.k0s()())}function Al(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",31)(1,"div",32)(2,"mat-select",33),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",34),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG(2);return w.Njj(r.onConnectNode(o))}),A.EFF(5,"Connect"),A.k0s(),A.j41(6,"mat-option",35),A.bIt("copied",function(o){w.eBV(e);const r=A.XpG(2);return w.Njj(r.onCopyNodeURI(o))}),A.EFF(7,"Copy URI"),A.k0s()()()()}if(2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(6),A.Y8G("payload",(null==i.lookupResult?null:i.lookupResult.nodeid)+"@"+e.address+":"+e.port)}}function hn(n,l){1&n&&A.nrm(0,"tr",36)}function Lr(n,l){1&n&&A.nrm(0,"tr",37)}function ga(n,l){if(1&n&&(A.j41(0,"div",2),A.nrm(1,"mat-divider",3),A.j41(2,"div",4)(3,"div",5)(4,"h4",6),A.EFF(5,"Alias"),A.k0s(),A.j41(6,"span",7),A.EFF(7),A.j41(8,"span",8),A.EFF(9),A.k0s()()(),A.j41(10,"div",9)(11,"h4",6),A.EFF(12,"Pub Key"),A.k0s(),A.j41(13,"span",10),A.EFF(14),A.k0s()()(),A.nrm(15,"mat-divider",11),A.j41(16,"div",4)(17,"div",5)(18,"h4",6),A.EFF(19,"Last Update"),A.k0s(),A.j41(20,"span",7),A.EFF(21),A.nI1(22,"date"),A.k0s()(),A.j41(23,"div",9)(24,"h4",6),A.EFF(25,"Features"),A.k0s(),A.DNE(26,ft,2,1,"span",12),A.k0s()(),A.nrm(27,"mat-divider",11),A.j41(28,"div",13)(29,"h4",14),A.EFF(30,"Addresses"),A.k0s(),A.j41(31,"div",15)(32,"table",16,0),A.qex(34,17),A.DNE(35,Zo,2,0,"th",18)(36,oa,2,1,"td",19),A.bVm(),A.qex(37,20),A.DNE(38,Vs,2,0,"th",18)(39,la,2,1,"td",19),A.bVm(),A.qex(40,21),A.DNE(41,qo,2,0,"th",18)(42,$o,2,1,"td",19),A.bVm(),A.qex(43,22),A.DNE(44,ca,3,0,"th",23)(45,Al,8,1,"td",24),A.bVm(),A.DNE(46,hn,1,0,"tr",25)(47,Lr,1,0,"tr",26),A.k0s()()()()),2&n){const e=A.XpG();A.R7$(7),A.JRh(null==e.lookupResult?null:e.lookupResult.alias),A.R7$(),A.Y8G("ngStyle",A.eq3(12,Nt,"#"+(null==e.lookupResult?null:e.lookupResult.color))),A.R7$(),A.JRh(null!=e.lookupResult&&e.lookupResult.color?"#"+(null==e.lookupResult?null:e.lookupResult.color):""),A.R7$(5),A.JRh(null==e.lookupResult?null:e.lookupResult.nodeid),A.R7$(7),A.JRh(A.i5U(22,9,1e3*(null==e.lookupResult?null:e.lookupResult.last_timestamp),"dd/MMM/y HH:mm")),A.R7$(5),A.Y8G("ngForOf",e.featureDescriptions),A.R7$(6),A.Y8G("dataSource",e.addresses),A.R7$(14),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}let hr=(()=>{var n;class l{constructor(i,o,r){this.logger=i,this.snackBar=o,this.store=r,this.featureDescriptions=[],this.addresses=new z.I6([]),this.displayedColumns=["type","address","port","actions"],this.information={},this.availableBalance=0,this.unSubs=[new g.B]}ngOnInit(){if(this.addresses=new z.I6(this.lookupResult&&this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(i,o)=>i[o]&&isNaN(i[o])?i[o].toLocaleLowerCase():i[o]?+i[o]:null,this.lookupResult.features&&""!==this.lookupResult.features.trim()){this.lookupResult.features=this.lookupResult.features.substring(this.lookupResult.features.length-40);const i=parseInt(this.lookupResult.features,16);B.TH.forEach(o=>{i&1<{this.information=i.information,this.availableBalance=i.balance.totalBalance||0})}onConnectNode(i){this.store.dispatch((0,C.xO)({payload:{data:{message:{peer:{id:this.lookupResult.nodeid+"@"+i.address+":"+i.port},information:this.information,balance:this.availableBalance},component:Ur}}}))}onCopyNodeURI(i){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+i)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(js.UG),A.rXU(AA.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-node-lookup"]],viewQuery:function(o,r){if(1&o&&A.GBs(pA.B4,5),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first)}},inputs:{lookupResult:"lookupResult"},standalone:!1,decls:1,vars:1,consts:[["table",""],["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"ml-2",3,"ngStyle"],["fxFlex","70"],[1,"foreground-secondary-text","w-100"],[1,"my-1"],["class","foreground-secondary-text",4,"ngFor","ngForOf"],["fxLayout","column"],["fxFlex","100","fxLayoutAlign","start",1,"font-bold-500","mb-1"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",3,"dataSource"],["matColumnDef","type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","port"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select","btn-action"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"copied","payload"],["mat-header-row",""],["mat-row",""]],template:function(o,r){1&o&&A.DNE(0,ga,48,14,"div",1),2&o&&A.Y8G("ngIf",r.lookupResult)},dependencies:[de.Sq,de.bT,de.B3,sn.q,Q.DJ,Q.sA,Q.UI,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.KS,z.$R,z.YZ,z.NB,M.Ld,Ji.U,de.vh],encapsulation:2}))}return n(),l})();const el=["form"],_i=n=>({"mt-1":!0,"mt-2":n});function Ai(n,l){if(1&n&&(A.j41(0,"mat-radio-button",17),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e.id)("checked",i.selectedFieldId===e.id),A.R7$(),A.SpI(" ",e.name," ")}}function fi(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.SpI("",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder," is required.")}}function ui(n,l){if(1&n&&(A.j41(0,"div"),A.nrm(1,"rtl-cln-node-lookup",26),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.Y8G("lookupResult",e.nodeLookupValue)}}function tl(n,l){if(1&n&&(A.j41(0,"span",24),A.DNE(1,ui,2,1,"div",25),A.k0s()),2&n){const e=A.XpG(2),i=A.sdS(21);A.R7$(),A.Y8G("ngIf",""!==e.nodeLookupValue.nodeid)("ngIfElse",i)}}function nl(n,l){if(1&n&&(A.j41(0,"div"),A.nrm(1,"rtl-cln-channel-lookup",26),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.Y8G("lookupResult",e.channelLookupValue)}}function il(n,l){if(1&n&&(A.j41(0,"span",24),A.DNE(1,nl,2,1,"div",25),A.k0s()),2&n){const e=A.XpG(2),i=A.sdS(21);A.R7$(),A.Y8G("ngIf",e.channelLookupValue.channels&&e.channelLookupValue.channels.length>0)("ngIfElse",i)}}function Er(n,l){1&n&&(A.j41(0,"span"),A.EFF(1,' fxFlex="100"'),A.j41(2,"h3"),A.EFF(3,"Error! Unable to find details!"),A.k0s()())}function sl(n,l){if(1&n&&(A.j41(0,"div",18)(1,"div",19)(2,"span",20),A.EFF(3),A.k0s()(),A.j41(4,"div",21),A.DNE(5,tl,2,2,"span",22)(6,il,2,2,"span",22)(7,Er,4,0,"span",23),A.k0s()()),2&n){const e=A.XpG();A.R7$(3),A.SpI("",e.lookupFields[e.selectedFieldId].name," Details"),A.R7$(),A.Y8G("ngSwitch",e.selectedFieldId),A.R7$(),A.Y8G("ngSwitchCase",0),A.R7$(),A.Y8G("ngSwitchCase",1)}}function Ba(n,l){1&n&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find details!"),A.k0s())}let rl=(()=>{var n;class l{constructor(i,o,r,iA){this.logger=i,this.commonService=o,this.store=r,this.actions=iA,this.lookupKey="",this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Pubkey"},{id:1,name:"Channel",placeholder:"Short Channel ID"}],this.flgLoading=[!0],this.faSearch=v.MjD,this.screenSize="",this.screenSizeEnum=B.f7,this.unSubs=[new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKey=window.history.state.lookupValue||""),this.actions.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(i=>i.type===B.TC.SET_LOOKUP_CLN||i.type===B.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(i=>{if(i.type===B.TC.SET_LOOKUP_CLN){switch(this.flgLoading[0]=!0,this.selectedFieldId){case 0:this.nodeLookupValue="object"!=typeof i.payload[0]?{nodeid:""}:JSON.parse(JSON.stringify(i.payload[0]));break;case 1:this.channelLookupValue=i.payload.channels&&"object"!=typeof i.payload.channels?{channels:[]}:JSON.parse(JSON.stringify(i.payload))}this.flgSetLookupValue=!0,this.logger.info(this.nodeLookupValue),this.logger.info(this.channelLookupValue)}i.type===B.TC.UPDATE_API_CALL_STATUS_CLN&&i.payload.status===B.wn.ERROR&&"Lookup"===i.payload.action&&(this.flgLoading[0]="error")})}onLookup(){if(!this.lookupKey)return!0;switch(this.flgSetLookupValue=!1,this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.selectedFieldId){case 0:this.store.dispatch((0,VA.zU)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,VA.ij)({payload:{uiMessage:B.MZ.SEARCHING_CHANNEL,shortChannelID:this.lookupKey.trim(),showError:!1}}))}}onSelectChange(i){this.resetData(),this.selectedFieldId=i.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.form.resetForm()}clearLookupValue(){this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(kA.En))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-lookups"]],viewQuery:function(o,r){if(1&o&&A.GBs(el,7),2&o){let iA;A.mGM(iA=A.lsd())&&(r.form=iA.first)}},standalone:!1,decls:22,vars:9,consts:[["form","ngForm"],["key",""],["errorBlock",""],["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModelChange","change","ngModel"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxFlex","100"],[4,"ngIf","ngIfElse"],[3,"lookupResult"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",3)(1,"div",4)(2,"mat-card-content",5)(3,"form",6,0)(5,"div",7)(6,"mat-radio-group",8),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selectedFieldId,re)||(r.selectedFieldId=re),w.Njj(re)}),A.bIt("change",function(re){return w.eBV(iA),w.Njj(r.onSelectChange(re))}),A.DNE(7,Ai,2,3,"mat-radio-button",9),A.k0s()(),A.j41(8,"mat-form-field",10)(9,"mat-label"),A.EFF(10),A.k0s(),A.j41(11,"input",11,1),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.lookupKey,re)||(r.lookupKey=re),w.Njj(re)}),A.bIt("change",function(){return w.eBV(iA),w.Njj(r.clearLookupValue())}),A.k0s(),A.DNE(13,fi,2,1,"mat-error",12),A.k0s(),A.j41(14,"div",13)(15,"button",14),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.EFF(16,"Clear"),A.k0s(),A.j41(17,"button",15),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onLookup())}),A.EFF(18,"Lookup"),A.k0s()()(),A.DNE(19,sl,8,4,"div",16),A.k0s()()(),A.DNE(20,Ba,2,0,"ng-template",null,2,A.C5r)}2&o&&(A.R7$(6),A.R50("ngModel",r.selectedFieldId),A.R7$(),A.Y8G("ngForOf",r.lookupFields),A.R7$(),A.Y8G("ngClass",A.eq3(7,_i,r.screenSize===r.screenSizeEnum.XS||r.screenSize===r.screenSizeEnum.SM)),A.R7$(2),A.JRh((null==r.lookupFields[r.selectedFieldId]?null:r.lookupFields[r.selectedFieldId].placeholder)||"Lookup Key"),A.R7$(),A.R50("ngModel",r.lookupKey),A.R7$(2),A.Y8G("ngIf",!r.lookupKey),A.R7$(6),A.Y8G("ngIf",r.flgSetLookupValue))},dependencies:[de.YU,de.Sq,de.bT,de.ux,de.e1,de.fG,hA.qT,hA.me,hA.BC,hA.cb,hA.YS,hA.vS,hA.cV,fA.$z,QA.m2,UA.fg,yA.rl,yA.nJ,yA.TL,qe.VT,qe._g,Q.DJ,Q.sA,Q.UI,dA.PW,Br,hr],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]}))}return n(),l})();var Gr=function(n){return n.KB="KB",n.KW="KW",n}(Gr||{});function Rt(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 2 Blocks "),A.j41(3,"mat-icon",16),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==e.perkbw?null:e.perkbw.estimates[0].smoothed_feerate))}}function fa(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 6 Blocks "),A.j41(3,"mat-icon",17),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==e.perkbw?null:e.perkbw.estimates[1].smoothed_feerate))}}function al(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 12 Blocks "),A.j41(3,"mat-icon",18),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==e.perkbw?null:e.perkbw.estimates[2].smoothed_feerate))}}function ol(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 100 Blocks "),A.j41(3,"mat-icon",19),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==e.perkbw?null:e.perkbw.estimates[3].smoothed_feerate))}}function ua(n,l){if(1&n&&(A.j41(0,"div",2)(1,"div",3)(2,"div",4)(3,"div")(4,"h4",5),A.EFF(5," Opening "),A.j41(6,"mat-icon",6),A.EFF(7,"info_outline"),A.k0s()(),A.j41(8,"div",7),A.EFF(9),A.nI1(10,"number"),A.k0s()(),A.j41(11,"div")(12,"h4",5),A.EFF(13," Mutual Close "),A.j41(14,"mat-icon",8),A.EFF(15,"info_outline"),A.k0s()(),A.j41(16,"div",7),A.EFF(17),A.nI1(18,"number"),A.k0s()(),A.j41(19,"div")(20,"h4",5),A.EFF(21," Unilateral Close "),A.j41(22,"mat-icon",9),A.EFF(23,"info_outline"),A.k0s()(),A.j41(24,"div",7),A.EFF(25),A.nI1(26,"number"),A.k0s()(),A.j41(27,"div")(28,"h4",5),A.EFF(29," Delayed To Us "),A.j41(30,"mat-icon",10),A.EFF(31,"info_outline"),A.k0s()(),A.j41(32,"div",7),A.EFF(33),A.nI1(34,"number"),A.k0s()(),A.j41(35,"div")(36,"h4",5),A.EFF(37," Minimum Acceptable "),A.j41(38,"mat-icon",11),A.EFF(39,"info_outline"),A.k0s()(),A.j41(40,"div",7),A.EFF(41),A.nI1(42,"number"),A.k0s()(),A.j41(43,"div")(44,"h4",5),A.EFF(45," Maximum Acceptable "),A.j41(46,"mat-icon",12),A.EFF(47,"info_outline"),A.k0s()(),A.j41(48,"div",7),A.EFF(49),A.nI1(50,"number"),A.k0s()()(),A.j41(51,"div",4)(52,"div")(53,"h4",5),A.EFF(54," HTLC Resolution "),A.j41(55,"mat-icon",13),A.EFF(56,"info_outline"),A.k0s()(),A.j41(57,"div",7),A.EFF(58),A.nI1(59,"number"),A.k0s()(),A.j41(60,"div")(61,"h4",5),A.EFF(62," Penalty "),A.j41(63,"mat-icon",14),A.EFF(64,"info_outline"),A.k0s()(),A.j41(65,"div",7),A.EFF(66),A.nI1(67,"number"),A.k0s()(),A.DNE(68,Rt,8,3,"div",15)(69,fa,8,3,"div",15)(70,al,8,3,"div",15)(71,ol,8,3,"div",15),A.k0s()()()),2&n){const e=A.XpG();A.R7$(9),A.JRh(A.bMT(10,12,null==e.perkbw?null:e.perkbw.opening)),A.R7$(8),A.JRh(A.bMT(18,14,null==e.perkbw?null:e.perkbw.mutual_close)),A.R7$(8),A.JRh(A.bMT(26,16,null==e.perkbw?null:e.perkbw.unilateral_close)),A.R7$(8),A.JRh(A.bMT(34,18,null==e.perkbw?null:e.perkbw.delayed_to_us)),A.R7$(8),A.JRh(A.bMT(42,20,null==e.perkbw?null:e.perkbw.min_acceptable)),A.R7$(8),A.JRh(A.bMT(50,22,null==e.perkbw?null:e.perkbw.max_acceptable)),A.R7$(9),A.JRh(A.bMT(59,24,null==e.perkbw?null:e.perkbw.htlc_resolution)),A.R7$(8),A.JRh(A.bMT(67,26,null==e.perkbw?null:e.perkbw.penalty)),A.R7$(2),A.Y8G("ngIf",(null==e.perkbw?null:e.perkbw.estimates)&&(null==e.perkbw?null:e.perkbw.estimates.length)&&(null==e.perkbw?null:e.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==e.perkbw?null:e.perkbw.estimates)&&(null==e.perkbw?null:e.perkbw.estimates.length)&&(null==e.perkbw?null:e.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==e.perkbw?null:e.perkbw.estimates)&&(null==e.perkbw?null:e.perkbw.estimates.length)&&(null==e.perkbw?null:e.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==e.perkbw?null:e.perkbw.estimates)&&(null==e.perkbw?null:e.perkbw.estimates.length)&&(null==e.perkbw?null:e.perkbw.estimates.length)>3)}}function ll(n,l){if(1&n&&(A.j41(0,"div",20)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let cl=(()=>{var n;class l{constructor(){this.perkbw={},this.displayedColumns=["blockcount","feerate"]}ngAfterContentChecked(){this.feeRateStyle===Gr.KB?this.perkbw=this.feeRates.perkb||{}:this.feeRateStyle===Gr.KW&&(this.perkbw=this.feeRates.perkw||{})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-fee-rates"]],inputs:{feeRateStyle:"feeRateStyle",feeRates:"feeRates",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch",1,"mt-2"],["fxLayoutAlign","start start",1,"dashboard-info-title"],["matTooltip","Default feerate for fundchannel and withdraw","matTooltipPosition","below",1,"info-icon","info-icon-primary"],[1,"overflow-wrap","dashboard-info-value"],["matTooltip","Feerate to aim for in cooperative shutdown. Note that since mutual close is a negotiation, the actual feerate used in mutual close will be somewhere between this and the corresponding mutual close feerate of the peer","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for commitment transaction in a live channel which we originally funded","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for returning unilateral close funds to our wallet","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","The smallest feerate that you can use, usually the minimum relayed feerate of the backend","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","The largest feerate we will accept from remote negotiations. If a peer attempts to set the feerate higher than this we will unilaterally close the channel (or simply forget it if it's not open yet)","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for returning unilateral close HTLC outputs to our wallet","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate to start at when penalizing a cheat attempt","matTooltipPosition","below",1,"info-icon","info-icon-primary"],[4,"ngIf"],["matTooltip","Fee rate estimate for 2 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 6 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 12 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 100 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,ua,72,28,"div",1)(1,ll,3,1,"ng-template",null,0,A.C5r),2&o){const iA=A.sdS(2);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",iA)}},dependencies:[de.bT,oA.An,Q.DJ,Q.sA,Q.UI,HA.oV,de.QX],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]}))}return n(),l})();function gl(n,l){if(1&n&&(A.j41(0,"div",3)(1,"div",4)(2,"div")(3,"h4",5),A.EFF(4," Opening Channel "),A.j41(5,"mat-icon",6),A.EFF(6,"info_outline"),A.k0s()(),A.j41(7,"div",7),A.EFF(8),A.nI1(9,"number"),A.k0s()(),A.j41(10,"div")(11,"h4",5),A.EFF(12," Mutual Close "),A.j41(13,"mat-icon",8),A.EFF(14,"info_outline"),A.k0s()(),A.j41(15,"div",7),A.EFF(16),A.nI1(17,"number"),A.k0s()(),A.j41(18,"div")(19,"h4",5),A.EFF(20," Unilateral Close "),A.j41(21,"mat-icon",9),A.EFF(22,"info_outline"),A.k0s()(),A.j41(23,"div",7),A.EFF(24),A.nI1(25,"number"),A.k0s()(),A.j41(26,"div",10),A.nrm(27,"h4",5)(28,"div",7),A.k0s()(),A.j41(29,"div",4)(30,"div")(31,"h4",5),A.EFF(32," HTLC Timeout "),A.j41(33,"mat-icon",11),A.EFF(34,"info_outline"),A.k0s()(),A.j41(35,"div",7),A.EFF(36),A.nI1(37,"number"),A.k0s()(),A.j41(38,"div")(39,"h4",5),A.EFF(40," HTLC Success "),A.j41(41,"mat-icon",12),A.EFF(42,"info_outline"),A.k0s()(),A.j41(43,"div",7),A.EFF(44),A.nI1(45,"number"),A.k0s()(),A.j41(46,"div",10),A.nrm(47,"h4",5)(48,"div",7),A.k0s(),A.j41(49,"div",10),A.nrm(50,"h4",5)(51,"div",7),A.k0s()()()),2&n){const e=A.XpG();A.R7$(8),A.JRh(A.bMT(9,5,null==e.feeRates||null==e.feeRates.onchain_fee_estimates?null:e.feeRates.onchain_fee_estimates.opening_channel_satoshis)),A.R7$(8),A.JRh(A.bMT(17,7,null==e.feeRates||null==e.feeRates.onchain_fee_estimates?null:e.feeRates.onchain_fee_estimates.mutual_close_satoshis)),A.R7$(8),A.JRh(A.bMT(25,9,null==e.feeRates||null==e.feeRates.onchain_fee_estimates?null:e.feeRates.onchain_fee_estimates.unilateral_close_satoshis)),A.R7$(12),A.JRh(A.bMT(37,11,null==e.feeRates||null==e.feeRates.onchain_fee_estimates?null:e.feeRates.onchain_fee_estimates.htlc_timeout_satoshis)),A.R7$(8),A.JRh(A.bMT(45,13,null==e.feeRates||null==e.feeRates.onchain_fee_estimates?null:e.feeRates.onchain_fee_estimates.htlc_success_satoshis))}}function ha(n,l){if(1&n&&(A.j41(0,"div",13)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let wr=(()=>{var n;class l{constructor(){}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-onchain-fee-estimates"]],inputs:{feeRates:"feeRates",errorMessage:"errorMessage"},standalone:!1,decls:4,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","62","fxLayoutAlign","stretch stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","62","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch",1,"mt-2"],["fxLayoutAlign","start start",1,"dashboard-info-title"],["matTooltip","Estimated cost of typical channel open","matTooltipPosition","below",1,"info-icon","info-icon-primary"],[1,"overflow-wrap","dashboard-info-value"],["matTooltip","Estimated cost of typical channel close","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Estimated cost of typical unilateral close (without HTLCs)","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxFlex","12"],["matTooltip","Estimated cost of typical HTLC timeout transaction","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Estimated cost of typical HTLC fulfillment transaction","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1),A.DNE(1,gl,52,15,"div",2)(2,ha,3,1,"ng-template",null,0,A.C5r),A.k0s()),2&o){const iA=A.sdS(3);A.R7$(),A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",iA)}},dependencies:[de.bT,oA.An,Q.DJ,Q.sA,Q.UI,HA.oV,de.QX],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]}))}return n(),l})();const zr=n=>({"dashboard-card-content":!0,"error-border":n});function Bl(n,l){1&n&&A.nrm(0,"mat-progress-bar",20)}function fl(n,l){if(1&n&&A.nrm(0,"rtl-cln-node-info",21),2&n){const e=A.XpG(3);A.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function ul(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-status-info",22),2&n){const e=A.XpG(3);A.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[1])}}function hl(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-info",23),2&n){const e=A.XpG(3);A.Y8G("fees",e.fees)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[2]+" "+e.errorMessages[3])}}function El(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-rates",24),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKB)("errorMessage",e.errorMessages[4])}}function wl(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-rates",25),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKW)("errorMessage",e.errorMessages[5])}}function Cl(n,l){if(1&n&&A.nrm(0,"rtl-cln-onchain-fee-estimates",26),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKW)("errorMessage",e.errorMessages[4])}}function cs(n,l){if(1&n&&(A.j41(0,"mat-grid-tile",4)(1,"div",5)(2,"div",6)(3,"div",7),A.nrm(4,"fa-icon",8),A.j41(5,"span"),A.EFF(6),A.k0s()()(),A.j41(7,"div",9)(8,"mat-card",10)(9,"mat-card-content",11),A.DNE(10,Bl,1,0,"mat-progress-bar",12),A.j41(11,"div",13),A.DNE(12,fl,1,2,"rtl-cln-node-info",14)(13,ul,1,2,"rtl-cln-channel-status-info",15)(14,hl,1,2,"rtl-cln-fee-info",16)(15,El,1,2,"rtl-cln-fee-rates",17)(16,wl,1,2,"rtl-cln-fee-rates",18)(17,Cl,1,2,"rtl-cln-onchain-fee-estimates",19),A.k0s()()()()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("colspan",e.cols)("rowspan",e.rows),A.R7$(4),A.Y8G("icon",e.icon),A.R7$(2),A.JRh(e.title),A.R7$(3),A.Y8G("ngClass",A.eq3(13,zr,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusLRBal.status===i.apiCallStatusEnum.ERROR)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.ERROR)||"feeRatesKB"===e.id&&i.apiCallStatusPerKB.status===i.apiCallStatusEnum.ERROR||"feeRatesKW"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusLRBal.status===i.apiCallStatusEnum.INITIATED)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.INITIATED)||"feeRatesKB"===e.id&&i.apiCallStatusPerKB.status===i.apiCallStatusEnum.INITIATED||"feeRatesKW"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",e.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","status"),A.R7$(),A.Y8G("ngSwitchCase","fee"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKB"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKW"),A.R7$(),A.Y8G("ngSwitchCase","onChainFeeEstimates")}}function Ws(n,l){if(1&n&&(A.j41(0,"mat-grid-list",2),A.DNE(1,cs,18,15,"mat-grid-tile",3),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngForOf",e.nodeCardsOperator)}}function ei(n,l){1&n&&A.nrm(0,"mat-progress-bar",20)}function Ea(n,l){if(1&n&&A.nrm(0,"rtl-cln-node-info",21),2&n){const e=A.XpG(3);A.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function dl(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-status-info",22),2&n){const e=A.XpG(3);A.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[1])}}function Ql(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-info",23),2&n){const e=A.XpG(3);A.Y8G("fees",e.fees)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[2]+" "+e.errorMessages[3])}}function ml(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-rates",24),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKB)("errorMessage",e.errorMessages[4])}}function Ml(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-rates",25),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKW)("errorMessage",e.errorMessages[4])}}function pl(n,l){if(1&n&&A.nrm(0,"rtl-cln-onchain-fee-estimates",26),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKW)("errorMessage",e.errorMessages[4])}}function Il(n,l){if(1&n&&(A.j41(0,"mat-grid-tile",4)(1,"div",5)(2,"div",6)(3,"div",27),A.nrm(4,"fa-icon",8),A.j41(5,"span"),A.EFF(6),A.k0s()()(),A.j41(7,"div",9)(8,"mat-card",10)(9,"mat-card-content",11),A.DNE(10,ei,1,0,"mat-progress-bar",12),A.j41(11,"div",13),A.DNE(12,Ea,1,2,"rtl-cln-node-info",14)(13,dl,1,2,"rtl-cln-channel-status-info",15)(14,Ql,1,2,"rtl-cln-fee-info",16)(15,ml,1,2,"rtl-cln-fee-rates",17)(16,Ml,1,2,"rtl-cln-fee-rates",18)(17,pl,1,2,"rtl-cln-onchain-fee-estimates",19),A.k0s()()()()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("colspan",e.cols)("rowspan",e.rows),A.R7$(4),A.Y8G("icon",e.icon),A.R7$(2),A.JRh(e.title),A.R7$(3),A.Y8G("ngClass",A.eq3(13,zr,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusLRBal.status===i.apiCallStatusEnum.ERROR)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.ERROR)||"feeRatesKB"===e.id&&i.apiCallStatusPerKB.status===i.apiCallStatusEnum.ERROR||"feeRatesKW"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusLRBal.status===i.apiCallStatusEnum.INITIATED)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.INITIATED)||"feeRatesKB"===e.id&&i.apiCallStatusPerKB.status===i.apiCallStatusEnum.INITIATED||"feeRatesKW"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",e.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","status"),A.R7$(),A.Y8G("ngSwitchCase","fee"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKB"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKW"),A.R7$(),A.Y8G("ngSwitchCase","onChainFeeEstimates")}}function Dl(n,l){if(1&n&&(A.j41(0,"mat-grid-list",2),A.DNE(1,Il,18,15,"mat-grid-tile",3),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngForOf",e.nodeCardsMerchant)}}let Fc=(()=>{var n;class l{constructor(i,o,r){this.logger=i,this.commonService=o,this.store=r,this.faBolt=v.zm_,this.faServer=v.D6w,this.faNetworkWired=v.eGi,this.faLink=v.CQO,this.information={},this.channelsStatus={active:{},pending:{},inactive:{}},this.feeRatesPerKB={},this.feeRatesPerKW={},this.nodeCardsOperator=[],this.nodeCardsMerchant=[],this.screenSize="",this.screenSizeEnum=B.f7,this.userPersonaEnum=B.HW,this.errorMessages=["","","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusLRBal=null,this.apiCallStatusChannels=null,this.apiCallStatusFHistory=null,this.apiCallStatusPerKB=null,this.apiCallStatusPerKW=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===B.f7.XS?(this.nodeCardsMerchant=[{id:"node",icon:this.faServer,title:"Node Information",cols:6,rows:3},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:6,rows:3},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:6,rows:1},{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:4,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:4,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:4,rows:6}],this.nodeCardsOperator=[{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:4,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:4,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:4,rows:6}]):(this.nodeCardsMerchant=[{id:"node",icon:this.faServer,title:"Node Information",cols:2,rows:3},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:2,rows:3},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:2,rows:3},{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:2,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:2,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:2,rows:6}],this.nodeCardsOperator=[{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:2,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:2,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:2,rows:6}])}ngOnInit(){this.store.select(tA.RQ).pipe((0,I.Q)(this.unSubs[0]),(0,N.E)(this.store.select(j._c))).subscribe(([i,o])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=i.apisCallStatus[0],this.apiCallStatusNodeInfo.status===B.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=o,this.information=i.information,this.fees=i.fees,this.logger.info(i)}),this.store.select(tA.BM).pipe((0,I.Q)(this.unSubs[1]),(0,N.E)(this.store.select(tA.Al))).subscribe(([i,o])=>{this.errorMessages[1]="",this.errorMessages[2]="",this.apiCallStatusLRBal=o.apiCallStatus,this.apiCallStatusChannels=i.apiCallStatus,this.apiCallStatusLRBal.status===B.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusLRBal.message?JSON.stringify(this.apiCallStatusLRBal.message):this.apiCallStatusLRBal.message?this.apiCallStatusLRBal.message:""),this.apiCallStatusChannels.status===B.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:""),this.channelsStatus.active.channels=i.activeChannels.length||0,this.channelsStatus.pending.channels=i.pendingChannels.length||0,this.channelsStatus.inactive.channels=i.inactiveChannels.length||0,this.channelsStatus.active.capacity=o.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=o.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=o.localRemoteBalance.inactiveBalance||0}),this.store.select(tA.Ie).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessages[3]="",this.apiCallStatusFHistory=i.apiCallStatus,this.apiCallStatusFHistory.status===B.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusFHistory.message?JSON.stringify(this.apiCallStatusFHistory.message):this.apiCallStatusFHistory.message?this.apiCallStatusFHistory.message:""),i.forwardingHistory&&i.forwardingHistory.listForwards&&i.forwardingHistory.listForwards.length&&(this.fees.totalTxCount=i.forwardingHistory.listForwards.length)}),this.store.select(tA.kr).pipe((0,I.Q)(this.unSubs[4])).subscribe(i=>{this.errorMessages[4]="",this.apiCallStatusPerKB=i.apiCallStatus,this.apiCallStatusPerKB.status===B.wn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPerKB.message?JSON.stringify(this.apiCallStatusPerKB.message):this.apiCallStatusPerKB.message?this.apiCallStatusPerKB.message:""),this.feeRatesPerKB=i.feeRatesPerKB}),this.store.select(tA.RB).pipe((0,I.Q)(this.unSubs[5])).subscribe(i=>{this.errorMessages[5]="",this.apiCallStatusPerKW=i.apiCallStatus,this.apiCallStatusPerKW.status===B.wn.ERROR&&(this.errorMessages[5]="object"==typeof this.apiCallStatusPerKW.message?JSON.stringify(this.apiCallStatusPerKW.message):this.apiCallStatusPerKW.message?this.apiCallStatusPerKW.message:""),this.feeRatesPerKW=i.feeRatesPerKW})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-network-info"]],standalone:!1,decls:3,vars:2,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch",1,"mb-4"],["cols","6","rowHeight","100px",4,"ngIf"],["cols","6","rowHeight","100px"],["class","node-grid-tile",3,"colspan","rowspan",4,"ngFor","ngForOf"],[1,"node-grid-tile",3,"colspan","rowspan"],["fxLayout","column","fxLayoutAlign","stretch start","fxFlex","100",1,"h-100"],["fxLayout","row","fxLayoutAlign","start start",1,"w-100"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","pl-2"],[1,"mr-1",3,"icon"],["fxLayout","column","fxLayoutAlign","stretch center","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","center stretch",1,"w-100","h-93"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","w-96","h-93"],["fxLayout","column","fxFlex","100",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["class","h-100","feeRateStyle","KB",3,"feeRates","errorMessage",4,"ngSwitchCase"],["class","h-100","feeRateStyle","KW",3,"feeRates","errorMessage",4,"ngSwitchCase"],["class","h-100",3,"feeRates","errorMessage",4,"ngSwitchCase"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["feeRateStyle","KB",1,"h-100",3,"feeRates","errorMessage"],["feeRateStyle","KW",1,"h-100",3,"feeRates","errorMessage"],[1,"h-100",3,"feeRates","errorMessage"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","pl-15px"]],template:function(o,r){1&o&&(A.j41(0,"div",0),A.DNE(1,Ws,2,1,"mat-grid-list",1)(2,Dl,2,1,"mat-grid-list",1),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",r.selNode.settings.userPersona===r.userPersonaEnum.OPERATOR),A.R7$(),A.Y8G("ngIf",r.selNode.settings.userPersona===r.userPersonaEnum.MERCHANT))},dependencies:[de.YU,de.Sq,de.bT,de.ux,de.e1,P.aY,QA.RN,QA.m2,NA.B_,NA.NS,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,ge,it,zt,cl,wr],encapsulation:2}))}return n(),l})();function yc(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",9),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.activeLink=o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("routerLink",A.mNQ(e.link))("active",i.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let Fl=(()=>{var n;class l{constructor(i){this.router=i,this.faUserCheck=v.pCJ,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new g.B,new g.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(o=>o instanceof xt.gx)).subscribe({next:o=>{const r=this.links.find(iA=>o.urlAfterRedirects.includes(iA.link));this.activeLink=r?r.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-sign-verify-message"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","role","tab","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper","mb-2"],["tabindex","1","mat-tab-link","","role","tab",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Sign/Verify Message"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),A.DNE(8,yc,2,4,"div",7),A.k0s(),A.nrm(9,"mat-tab-nav-panel",null,0),A.j41(11,"div",8),A.nrm(12,"router-outlet"),A.k0s()()()()),2&o){const iA=A.sdS(10);A.R7$(),A.Y8G("icon",r.faUserCheck),A.R7$(6),A.Y8G("tabPanel",iA),A.R7$(),A.Y8G("ngForOf",r.links)}},dependencies:[de.Sq,P.aY,QA.RN,QA.m2,Q.DJ,Q.sA,Q.UI,RA.Bu,RA.hQ,RA.Ql,xt.n3,Sn.Wk],encapsulation:2}))}return n(),l})();var wa=We(396),kr=We(283);function yl(n,l){if(1&n&&(A.j41(0,"mat-option",6),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e),A.R7$(),A.SpI(" ",e.addressTp," ")}}let xl=(()=>{var n;class l{constructor(i,o){this.store=i,this.clnEffects=o,this.addressTypes=B.Ld,this.selectedAddressType=B.Ld[2],this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,VA.XT)({payload:this.selectedAddressType})),this.clnEffects.setNewAddressCL.pipe((0,bt.s)(1)).subscribe(i=>{this.newAddress=i,setTimeout(()=>{this.store.dispatch((0,C.xO)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:wa.f}}}))},0)})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(AA.il),A.rXU(kr.i))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-on-chain-receive"]],standalone:!1,decls:10,vars:2,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","space-between center","fxLayoutAlign.gt-sm","start center"],["fxLayout","column","fxFlex","48","fxFlex.gt-md","25","fxLayoutAlign","start end",1,"mr-2"],["name","address_type","tabindex","1",3,"ngModelChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["mat-flat-button","","color","primary","tabindex","2",3,"click"],[3,"value"]],template:function(o,r){1&o&&(A.j41(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"mat-label"),A.EFF(4,"Address Type"),A.k0s(),A.j41(5,"mat-select",3),A.mxI("ngModelChange",function(ne){return A.DH7(r.selectedAddressType,ne)||(r.selectedAddressType=ne),ne}),A.DNE(6,yl,2,2,"mat-option",4),A.k0s()(),A.j41(7,"div")(8,"button",5),A.bIt("click",function(){return r.onGenerateAddress()}),A.EFF(9,"Generate Address"),A.k0s()()()()),2&o&&(A.R7$(5),A.R50("ngModel",r.selectedAddressType),A.R7$(),A.Y8G("ngForOf",r.addressTypes))},dependencies:[de.Sq,hA.BC,hA.vS,fA.$z,yA.rl,yA.nJ,Q.DJ,Q.sA,Q.UI,OA.VO,xA.wT],encapsulation:2}))}return n(),l})(),Yl=(()=>{var n;class l{constructor(i,o){this.store=i,this.activatedRoute=o,this.sweepAll=!1,this.unSubs=[new g.B,new g.B]}ngOnInit(){this.activatedRoute.data.pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.sweepAll=i.sweepAll})}openSendFundsModal(){this.store.dispatch((0,C.xO)({payload:{data:{sweepAll:this.sweepAll,component:co}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(AA.il),A.rXU(xt.nX))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-on-chain-send"]],standalone:!1,decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(o,r){1&o&&(A.j41(0,"div",0)(1,"div",1)(2,"button",2),A.bIt("click",function(){return r.openSendFundsModal()}),A.EFF(3),A.k0s()()()),2&o&&(A.R7$(3),A.JRh(r.sweepAll?"Sweep All":"Send Funds"))},dependencies:[fA.$z,Q.DJ,Q.sA,Q.UI],encapsulation:2}))}return n(),l})();var xc=We(9172),bl=We(6354),vl=We(2628),Vn=We(92);const Rl=["form"],Cr=(n,l)=>({"mr-6":n,"mr-2":l});function Sl(n,l){if(1&n&&(A.j41(0,"mat-option",48),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e),A.R7$(),A.JRh(e.alias?e.alias:e.id?e.id:"")}}function Nl(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Peer alias is required."),A.k0s())}function Tl(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Peer not found in the list."),A.k0s())}function Ca(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",7)(1,"mat-label"),A.EFF(2,"Peer Alias"),A.k0s(),A.j41(3,"input",46),A.bIt("change",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onSelectedPeerChanged())}),A.k0s(),A.j41(4,"mat-autocomplete",47,4),A.bIt("optionSelected",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onSelectedPeerChanged())}),A.DNE(6,Sl,2,2,"mat-option",31),A.nI1(7,"async"),A.k0s(),A.DNE(8,Nl,2,0,"mat-error",21)(9,Tl,2,0,"mat-error",21),A.k0s()}if(2&n){const e=A.sdS(5),i=A.XpG();A.R7$(3),A.Y8G("formControl",i.selectedPeer)("matAutocomplete",e),A.R7$(),A.Y8G("displayWith",i.displayFn),A.R7$(2),A.Y8G("ngForOf",A.bMT(7,6,i.filteredPeers)),A.R7$(2),A.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.required),A.R7$(),A.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.notfound)}}function Pl(n,l){1&n&&A.eu8(0)}function Ul(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function Ll(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function Gl(n,l){if(1&n&&(A.j41(0,"div",49),A.nrm(1,"fa-icon",50),A.j41(2,"span",51)(3,"div"),A.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(5,"span",52)(6,"span"),A.EFF(7),A.k0s(),A.j41(8,"span"),A.EFF(9),A.k0s(),A.j41(10,"span"),A.EFF(11),A.k0s(),A.j41(12,"span"),A.EFF(13),A.k0s(),A.j41(14,"span"),A.EFF(15),A.k0s()()()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faInfoCircle),A.R7$(6),A.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),A.R7$(2),A.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),A.R7$(2),A.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),A.R7$(2),A.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),A.R7$(2),A.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function da(n,l){if(1&n&&(A.j41(0,"mat-option",48),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e.feeRateId),A.R7$(),A.SpI(" ",e.feeRateType," ")}}function zl(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function Qa(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function ma(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",53)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.j41(3,"input",54,5),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.customFeeRate,o)||(r.customFeeRate=o),w.Njj(o)}),A.k0s(),A.j41(5,"mat-hint"),A.EFF(6),A.k0s(),A.DNE(7,zl,2,0,"mat-error",21)(8,Qa,2,1,"mat-error",21),A.k0s()}if(2&n){const e=A.XpG();A.R7$(3),A.Y8G("step",1)("min",e.recommendedFee.minimumFee)("required","customperkb"===e.selFeeRate&&!e.flgMinConf),A.R50("ngModel",e.customFeeRate),A.R7$(3),A.SpI("Mempool Min: ",e.recommendedFee.minimumFee," (Sats/vByte)"),A.R7$(),A.Y8G("ngIf","customperkb"===e.selFeeRate&&!e.flgMinConf&&!e.customFeeRate),A.R7$(),A.Y8G("ngIf","customperkb"===e.selFeeRate&&!e.flgMinConf&&e.customFeeRate&&e.customFeeRate{var n;class l{constructor(i,o,r,iA,ne,re,ln,Qt){this.logger=i,this.dialogRef=o,this.data=r,this.store=iA,this.actions=ne,this.decimalPipe=re,this.commonService=ln,this.dataService=Qt,this.selectedPeer=new hA.hs,this.faExclamationTriangle=v.zpE,this.faInfoCircle=v.iW_,this.utxos=[],this.selUTXOs=[],this.flgUseAllBalance=!1,this.totalSelectedUTXOAmount=0,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.fundingAmount=null,this.selectedPubkey="",this.isPrivate=!1,this.feeRateTypes=B.G,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.screenSize="",this.screenSizeEnum=B.f7,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.data.message?(this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.utxos=this.data.message.utxos,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[]):(this.information={},this.totalBalance=0,this.utxos=[],this.peer=null,this.peers=[]),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(r=>{this.selNode=r,this.isPrivate=!!r?.settings.unannouncedChannels}),this.actions.pipe((0,I.Q)(this.unSubs[1]),(0,nA.p)(r=>r.type===B.TC.UPDATE_API_CALL_STATUS_CLN||r.type===B.TC.FETCH_CHANNELS_CLN)).subscribe(r=>{r.type===B.TC.UPDATE_API_CALL_STATUS_CLN&&r.payload.status===B.wn.ERROR&&"SaveNewChannel"===r.payload.action&&(this.channelConnectionError=r.payload.message),r.type===B.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close()});let i="",o="";this.sortedPeers=this.peers.sort((r,iA)=>(i=r.alias?r.alias.toLowerCase():r.id?r.id.toLowerCase():"",o=iA.alias?iA.alias.toLowerCase():r.id?r.id.toLowerCase():"",io?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,I.Q)(this.unSubs[2]),(0,xc.Z)(""),(0,bl.T)(r=>"string"==typeof r?r:r.alias?r.alias:r.id),(0,bl.T)(r=>r?this.filterPeers(r):this.sortedPeers.slice()))}filterPeers(i){return this.sortedPeers?.filter(o=>0===o.alias?.toLowerCase().indexOf(i?i.toLowerCase():""))}displayFn(i){return i&&i.alias?i.alias:i&&i.id?i.id:""}onSelectedPeerChanged(){if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.id?this.selectedPeer.value.id:null,"string"==typeof this.selectedPeer.value){const i=this.peers?.filter(o=>o.alias?.length===this.selectedPeer.value.length&&0===o.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===i.length&&i[0].id&&(this.selectedPubkey=i[0].id)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){this.flgMinConf=!1,this.selFeeRate="",this.minConfValue=null,this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!!this.selNode?.settings.unannouncedChannels,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onAdvancedPanelToggle(i){i?this.flgMinConf||this.selFeeRate||this.selUTXOs.length&&0!==this.selUTXOs.length?(this.advancedTitle="Advanced Options",this.flgMinConf&&(this.advancedTitle=this.advancedTitle+" | Min Confirmation Blocks: "+this.minConfValue),this.selFeeRate&&(this.advancedTitle=this.advancedTitle+" | Fee Rate: "+(this.customFeeRate?this.customFeeRate+" (Sats/vByte)":this.feeRateTypes.find(o=>o.feeRateId===this.selFeeRate)?.feeRateType)),this.selUTXOs.length&&this.selUTXOs.length>0&&(this.advancedTitle=this.advancedTitle+" | Total Selected: "+this.selUTXOs.length+" | Selected UTXOs: "+this.decimalPipe.transform(this.totalSelectedUTXOAmount)+" Sats")):this.advancedTitle="Advanced Options":(this.advancedTitle="Advanced Options",this.dataService.getRecommendedFeeRates().pipe((0,I.Q)(this.unSubs[3])).subscribe({next:o=>{this.recommendedFee=o},error:o=>{this.logger.error(o)}}))}onUTXOSelectionChange(i){this.selUTXOs.length&&this.selUTXOs.length>0?(this.totalSelectedUTXOAmount=this.selUTXOs?.reduce((o,r)=>o+(r.amount_msat||0)/1e3,0),this.flgUseAllBalance&&this.onUTXOAllBalanceChange()):(this.totalSelectedUTXOAmount=0,this.fundingAmount=null,this.flgUseAllBalance=!1)}onUTXOAllBalanceChange(){this.fundingAmount=this.flgUseAllBalance?this.totalSelectedUTXOAmount:null}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||this.flgMinConf&&!this.minConfValue||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate||"customperkb"===this.selFeeRate&&this.recommendedFee.minimumFee>this.customFeeRate)return!0;const i={peerId:this.peer&&this.peer.id?this.peer.id:this.selectedPubkey,amount:this.flgUseAllBalance?"all":this.fundingAmount.toString(),announce:!this.isPrivate,minconf:this.flgMinConf?this.minConfValue:null};i.feeRate="customperkb"===this.selFeeRate&&!this.flgMinConf&&this.customFeeRate?1e3*this.customFeeRate+"perkb":this.selFeeRate,this.selUTXOs.length&&this.selUTXOs.length>0&&(i.utxos=[],this.selUTXOs.forEach(o=>i.utxos.push(o.txid+":"+o.output))),this.store.dispatch((0,VA.vL)({payload:i}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(AA.il),A.rXU(kA.En),A.rXU(de.QX),A.rXU(L.h),A.rXU(Dt.u))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-open-channel"]],viewQuery:function(o,r){if(1&o&&A.GBs(Rl,7),2&o){let iA;A.mGM(iA=A.lsd())&&(r.form=iA.first)}},standalone:!1,decls:75,vars:42,consts:[["form","ngForm"],["amount","ngModel"],["blocks","ngModel"],["peerDetailsExpansionBlock",""],["auto","matAutocomplete"],["custFeeRate","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","start end"],["matInput","","type","number","required","","name","amount",3,"ngModelChange","step","min","max","disabled","ngModel"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","25","fxLayoutAlign","center start"],["fxLayout","column","fxLayoutAlign","center start","color","primary","name","isPrivate",3,"ngModelChange","ngModel"],["expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxFlex","64","fxLayout","row","fxLayoutAlign","space-between center"],["fxLayout","column","fxLayoutAlign","start center",3,"ngClass"],[3,"valueChange","disabled","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","58","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","32","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","color","primary","name","flgMinConf","fxLayoutAlign","stretch start",3,"ngModelChange","change","ngClass","ngModel"],["fxLayout","column","fxFlex","93"],["matInput","","type","number","name","blocks",3,"ngModelChange","step","min","required","disabled","ngModel"],["fxLayout","column","fxFlex","54","fxLayoutAlign","start end"],["multiple","",3,"valueChange","selectionChange","value"],["fxFlex","41","fxLayout","row","fxLayoutAlign","start center"],["color","primary","name","flgUseAllBalance",3,"ngModelChange","change","disabled","ngModel"],["matTooltip","Use selected UTXOs balance as the amount to be sent. Final amount sent will be less the mining fee.","matTooltipPosition","before",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit"],["type","text","aria-label","Peers","matInput","","required","",3,"change","formControl","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["fxLayout","column","fxFlex","58","fxLayoutAlign","end center"],["matInput","","type","number","name","custFeeRate",3,"ngModelChange","step","min","required","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",6)(1,"div",7)(2,"mat-card-header",8)(3,"div",9)(4,"span",10),A.EFF(5),A.k0s()(),A.j41(6,"button",11),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",12)(9,"form",13,0),A.bIt("submit",function(){return w.eBV(iA),w.Njj(r.onOpenChannel())})("reset",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.j41(11,"div",14),A.DNE(12,Ca,10,8,"mat-form-field",15),A.k0s(),A.DNE(13,Pl,1,0,"ng-container",16),A.j41(14,"div",14)(15,"div",17)(16,"mat-form-field",18)(17,"mat-label"),A.EFF(18,"Amount"),A.k0s(),A.j41(19,"input",19,1),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.fundingAmount,re)||(r.fundingAmount=re),w.Njj(re)}),A.k0s(),A.j41(21,"mat-hint"),A.EFF(22),A.nI1(23,"number"),A.k0s(),A.j41(24,"span",20),A.EFF(25," Sats "),A.k0s(),A.DNE(26,Ul,2,0,"mat-error",21)(27,Ll,2,1,"mat-error",21),A.k0s(),A.j41(28,"div",22)(29,"mat-slide-toggle",23),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.isPrivate,re)||(r.isPrivate=re),w.Njj(re)}),A.EFF(30,"Private Channel"),A.k0s()()(),A.j41(31,"mat-expansion-panel",24),A.bIt("closed",function(){return w.eBV(iA),w.Njj(r.onAdvancedPanelToggle(!0))})("opened",function(){return w.eBV(iA),w.Njj(r.onAdvancedPanelToggle(!1))}),A.j41(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),A.EFF(35),A.k0s()()(),A.j41(36,"div",25),A.DNE(37,Gl,16,6,"div",26),A.j41(38,"div",27)(39,"div",28)(40,"mat-form-field",29)(41,"mat-label"),A.EFF(42,"Fee Rate"),A.k0s(),A.j41(43,"mat-select",30),A.mxI("valueChange",function(re){return w.eBV(iA),A.DH7(r.selFeeRate,re)||(r.selFeeRate=re),w.Njj(re)}),A.DNE(44,da,2,2,"mat-option",31),A.k0s()(),A.DNE(45,ma,9,7,"mat-form-field",32),A.k0s(),A.j41(46,"div",33)(47,"mat-checkbox",34),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.flgMinConf,re)||(r.flgMinConf=re),w.Njj(re)}),A.bIt("change",function(){return w.eBV(iA),w.Njj(r.flgMinConf?r.selFeeRate=null:r.minConfValue=null)}),A.k0s(),A.j41(48,"mat-form-field",35)(49,"mat-label"),A.EFF(50,"Min Confirmation Blocks"),A.k0s(),A.j41(51,"input",36,2),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.minConfValue,re)||(r.minConfValue=re),w.Njj(re)}),A.k0s(),A.DNE(53,Ma,2,0,"mat-error",21),A.k0s()()(),A.j41(54,"mat-form-field",37)(55,"mat-label"),A.EFF(56,"Coin Selection"),A.k0s(),A.j41(57,"mat-select",38),A.mxI("valueChange",function(re){return w.eBV(iA),A.DH7(r.selUTXOs,re)||(r.selUTXOs=re),w.Njj(re)}),A.bIt("selectionChange",function(re){return w.eBV(iA),w.Njj(r.onUTXOSelectionChange(re))}),A.j41(58,"mat-select-trigger"),A.EFF(59),A.nI1(60,"number"),A.k0s(),A.DNE(61,kl,3,5,"mat-option",31),A.k0s()(),A.j41(62,"div",39)(63,"mat-slide-toggle",40),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.flgUseAllBalance,re)||(r.flgUseAllBalance=re),w.Njj(re)}),A.bIt("change",function(){return w.eBV(iA),w.Njj(r.onUTXOAllBalanceChange())}),A.EFF(64," Use selected UTXOs balance "),A.k0s(),A.j41(65,"mat-icon",41),A.EFF(66,"info_outline"),A.k0s()()()()(),A.DNE(67,jl,3,2,"div",42),A.j41(68,"div",43)(69,"button",44),A.EFF(70,"Clear Fields"),A.k0s(),A.j41(71,"button",45),A.EFF(72,"Open Channel"),A.k0s()()()()()(),A.DNE(73,Yc,1,1,"ng-template",null,3,A.C5r)}if(2&o){const iA=A.sdS(20),ne=A.sdS(74);A.R7$(5),A.JRh(r.alertTitle),A.R7$(7),A.Y8G("ngIf",!r.peer&&r.peers&&r.peers.length>0),A.R7$(),A.Y8G("ngTemplateOutlet",ne),A.R7$(6),A.Y8G("step",1e3)("min",1)("max",r.totalBalance)("disabled",r.flgUseAllBalance),A.R50("ngModel",r.fundingAmount),A.R7$(3),A.Lme("Remaining: ",A.bMT(23,35,r.totalBalance-(r.fundingAmount?r.fundingAmount:0)),"",r.flgUseAllBalance?". Amount replaced by UTXO balance":""),A.R7$(4),A.Y8G("ngIf",(null==iA.errors?null:iA.errors.required)||!r.fundingAmount),A.R7$(),A.Y8G("ngIf",null==iA.errors?null:iA.errors.max),A.R7$(2),A.R50("ngModel",r.isPrivate),A.R7$(6),A.JRh(r.advancedTitle),A.R7$(2),A.Y8G("ngIf",r.recommendedFee.minimumFee),A.R7$(3),A.Y8G("ngClass","customperkb"!==r.selFeeRate||r.flgMinConf?"flex-100":"flex-40"),A.R7$(3),A.Y8G("disabled",r.flgMinConf),A.R50("value",r.selFeeRate),A.R7$(),A.Y8G("ngForOf",r.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===r.selFeeRate&&!r.flgMinConf),A.R7$(2),A.Y8G("ngClass",A.l_i(39,Cr,r.screenSize===r.screenSizeEnum.XS||r.screenSize===r.screenSizeEnum.SM,r.screenSize===r.screenSizeEnum.MD||r.screenSize===r.screenSizeEnum.LG||r.screenSize===r.screenSizeEnum.XL)),A.R50("ngModel",r.flgMinConf),A.R7$(4),A.Y8G("step",1)("min",0)("required",r.flgMinConf)("disabled",!r.flgMinConf),A.R50("ngModel",r.minConfValue),A.R7$(2),A.Y8G("ngIf",r.flgMinConf&&!r.minConfValue),A.R7$(4),A.R50("value",r.selUTXOs),A.R7$(2),A.Lme("",A.bMT(60,37,r.totalSelectedUTXOAmount)," Sats (",r.selUTXOs.length>1?r.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.R7$(2),A.Y8G("ngForOf",r.utxos),A.R7$(2),A.Y8G("disabled",r.selUTXOs.length<1),A.R50("ngModel",r.flgUseAllBalance),A.R7$(4),A.Y8G("ngIf",""!==r.channelConnectionError)}},dependencies:[de.YU,de.Sq,de.bT,de.T3,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.YS,hA.VZ,hA.zX,hA.vS,hA.cV,hA.l_,P.aY,fA.$z,QA.m2,QA.MM,Ze.So,gi.GK,gi.Z2,gi.WN,oA.An,UA.fg,yA.rl,yA.nJ,yA.MV,yA.TL,yA.yw,sn.q,Q.DJ,Q.sA,Q.UI,dA.PW,OA.VO,OA.$2,xA.wT,Ee.sG,HA.oV,vl.$3,vl.pN,cA.N,Vn.z,J.V,de.Jj,de.QX],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]}))}return n(),l})();function Jl(n,l){if(1&n&&(A.j41(0,"span",7),A.EFF(1,"Open"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.openChannels))}}function _l(n,l){if(1&n&&(A.j41(0,"span",7),A.EFF(1,"Pending/Inactive"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.pendingChannels))}}function Vl(n,l){if(1&n&&(A.j41(0,"span",7),A.EFF(1,"Active HTLCs"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.activeHTLCs))}}let Wl=(()=>{var n;class l{constructor(i,o,r,iA){this.logger=i,this.store=o,this.commonService=r,this.router=iA,this.openChannels=0,this.pendingChannels=0,this.activeHTLCs=0,this.information={},this.peers=[],this.utxos=[],this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending/Inactive"},{link:"activehtlcs",name:"Active HTLCs"}],this.activeLink=0,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B]}ngOnInit(){this.activeLink=this.links.findIndex(i=>i.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(i=>i instanceof xt.gx)).subscribe({next:i=>{this.activeLink=this.links.findIndex(o=>o.link===i.urlAfterRedirects.substring(i.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(tA.kQ).pipe((0,I.Q)(this.unSubs[1]),(0,N.E)(this.store.select(j._c))).subscribe(([i,o])=>{this.selNode=o,this.information=i.information,this.totalBalance=i.balance.totalBalance||0,this.logger.info(i)}),this.store.select(tA.os).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.peers=i.peers}),this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.utxos=this.commonService.sortAscByKey(i.utxos?.filter(o=>"confirmed"===o.status),"value")}),this.store.select(tA.BM).pipe((0,I.Q)(this.unSubs[4])).subscribe(i=>{this.openChannels=i.activeChannels.length||0,this.pendingChannels=i.pendingChannels.length+i.inactiveChannels.length||0;const o=[...i.activeChannels,...i.pendingChannels,...i.inactiveChannels];this.activeHTLCs=o?.reduce((r,iA)=>r+(iA.htlcs&&iA.htlcs.length>0?iA.htlcs.length:0),0),this.logger.info(i)})}onOpenChannel(){this.store.dispatch((0,C.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance,utxos:this.utxos},component:Hr}}}))}onSelectedTabChange(i){this.router.navigateByUrl("/cln/connections/channels/"+this.links[i.index].link)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(L.h),A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channels-tables"]],standalone:!1,decls:14,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,r){1&o&&(A.j41(0,"div",0)(1,"div",1)(2,"button",2),A.bIt("click",function(){return r.onOpenChannel()}),A.EFF(3,"Open Channel"),A.k0s()(),A.j41(4,"div",3)(5,"mat-tab-group",4),A.mxI("selectedIndexChange",function(ne){return A.DH7(r.activeLink,ne)||(r.activeLink=ne),ne}),A.bIt("selectedTabChange",function(ne){return r.onSelectedTabChange(ne)}),A.j41(6,"mat-tab"),A.DNE(7,Jl,2,2,"ng-template",5),A.k0s(),A.j41(8,"mat-tab"),A.DNE(9,_l,2,2,"ng-template",5),A.k0s(),A.j41(10,"mat-tab"),A.DNE(11,Vl,2,2,"ng-template",5),A.k0s()(),A.j41(12,"div",6),A.nrm(13,"router-outlet"),A.k0s()()()),2&o&&(A.R7$(5),A.R50("selectedIndex",r.activeLink))},dependencies:[fA.$z,Q.DJ,Q.sA,Q.UI,Aa.k,RA.ES,RA.mq,RA.T8,xt.n3],encapsulation:2}))}return n(),l})();const Kl=n=>({"xs-scroll-y":n}),Xl=(n,l)=>({"mt-2":n,"mt-1":l});function pa(n,l){if(1&n){const e=A.RV6();A.j41(0,"fa-icon",27),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onExplorerClicked())}),A.k0s()}if(2&n){const e=A.XpG();A.Y8G("matTooltip",A.mNQ("Link to "+(null==e.selNode||null==e.selNode.settings?null:e.selNode.settings.blockExplorerUrl)))("icon",e.faUpRightFromSquare)}}function Ia(n,l){if(1&n&&(A.j41(0,"div")(1,"div",10)(2,"div",11)(3,"h4",12),A.EFF(4,"Receivable (Sats)"),A.k0s(),A.j41(5,"span",19),A.EFF(6),A.nI1(7,"number"),A.k0s()(),A.j41(8,"div",11)(9,"h4",12),A.EFF(10,"Spendable (Sats)"),A.k0s(),A.j41(11,"span",19),A.EFF(12),A.nI1(13,"number"),A.k0s()()(),A.nrm(14,"mat-divider",15),A.j41(15,"div",10)(16,"div",11)(17,"h4",12),A.EFF(18,"Their Reserve (Sats)"),A.k0s(),A.j41(19,"span",19),A.EFF(20),A.nI1(21,"number"),A.k0s()(),A.j41(22,"div",11)(23,"h4",12),A.EFF(24,"Our Reserve (Sats)"),A.k0s(),A.j41(25,"span",19),A.EFF(26),A.nI1(27,"number"),A.k0s()()(),A.nrm(28,"mat-divider",15),A.k0s()),2&n){const e=A.XpG();A.R7$(6),A.JRh(A.i5U(7,4,e.channel.receivable_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(13,7,e.channel.spendable_msat/1e3,"1.0-0")),A.R7$(8),A.JRh(A.i5U(21,10,e.channel.their_reserve_msat/1e3,"1.0-2")),A.R7$(6),A.JRh(A.i5U(27,13,e.channel.our_reserve_msat/1e3,"1.0-2"))}}function Zl(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Show Advanced"),A.k0s())}function ql(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Hide Advanced"),A.k0s())}function $l(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",28),A.bIt("copied",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onCopyChanID(o))}),A.EFF(1,"Copy Short Channel ID"),A.k0s()}if(2&n){const e=A.XpG();A.Y8G("payload",e.channel.short_channel_id)}}function Rn(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onClose())}),A.EFF(1,"OK"),A.k0s()}}let Da=(()=>{var n;class l{constructor(i,o,r,iA,ne,re){this.dialogRef=i,this.data=o,this.logger=r,this.commonService=iA,this.snackBar=ne,this.router=re,this.faReceipt=v.Mf0,this.faUpRightFromSquare=v.k02,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=B.f7}ngOnInit(){this.channel=this.data.channel,this.showCopy=!!this.data.showCopy,this.selNode=this.data.selNode,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(i){this.snackBar.open("Short channel ID "+i+" copied."),this.logger.info("Copied Text: "+i)}onGoToLink(i,o){this.router.navigateByUrl("/cln/graph/lookups",{state:{lookupType:i,lookupValue:o}}),this.onClose()}onExplorerClicked(){this.selNode?.settings?.blockExplorerUrl&&window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.channel.funding_txid,"_blank")}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(aA.gP),A.rXU(L.h),A.rXU(js.UG),A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-information"]],standalone:!1,decls:91,vars:37,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],["tabindex","4","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"foreground-secondary-text"],[1,"my-1"],["tabindex","5","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],["class","ml-1 fa-icon-primary",3,"matTooltip","icon","click",4,"ngIf"],["fxFlex","33"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","34"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","6",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","7","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","8","type","button",3,"click",4,"ngIf"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["autoFocus","","mat-button","","color","primary","tabindex","7","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","8","type","button",3,"click"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4),A.nrm(4,"fa-icon",5),A.j41(5,"span",6),A.EFF(6,"Channel Information"),A.k0s()(),A.j41(7,"button",7),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onClose())}),A.EFF(8,"X"),A.k0s()(),A.j41(9,"mat-card-content",8)(10,"div",9)(11,"div",10)(12,"div",11)(13,"h4",12),A.EFF(14,"Short Channel ID"),A.k0s(),A.j41(15,"span",13),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onGoToLink("1",r.channel.short_channel_id))}),A.EFF(16),A.k0s()(),A.j41(17,"div",11)(18,"h4",12),A.EFF(19,"Peer Alias"),A.k0s(),A.j41(20,"span",14),A.EFF(21),A.k0s()()(),A.nrm(22,"mat-divider",15),A.j41(23,"div",10)(24,"div",2)(25,"h4",12),A.EFF(26,"Channel ID"),A.k0s(),A.j41(27,"span",14),A.EFF(28),A.k0s()()(),A.nrm(29,"mat-divider",15),A.j41(30,"div",10)(31,"div",2)(32,"h4",12),A.EFF(33,"Peer Public Key"),A.k0s(),A.j41(34,"span",16),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onGoToLink("0",r.channel.peer_id))}),A.EFF(35),A.k0s()()(),A.nrm(36,"mat-divider",15),A.j41(37,"div",10)(38,"div",2)(39,"h4",12),A.EFF(40,"Funding Transaction ID"),A.k0s(),A.j41(41,"span",14),A.EFF(42),A.DNE(43,pa,1,3,"fa-icon",17),A.k0s()()(),A.nrm(44,"mat-divider",15),A.j41(45,"div",10)(46,"div",18)(47,"h4",12),A.EFF(48,"State"),A.k0s(),A.j41(49,"span",19),A.EFF(50),A.nI1(51,"camelcaseWithReplace"),A.k0s()(),A.j41(52,"div",18)(53,"h4",12),A.EFF(54,"Connected"),A.k0s(),A.j41(55,"span",19),A.EFF(56),A.k0s()(),A.j41(57,"div",20)(58,"h4",12),A.EFF(59,"Private"),A.k0s(),A.j41(60,"span",19),A.EFF(61),A.k0s()()(),A.nrm(62,"mat-divider",15),A.j41(63,"div",10)(64,"div",18)(65,"h4",12),A.EFF(66,"Remote Balance (Sats)"),A.k0s(),A.j41(67,"span",19),A.EFF(68),A.nI1(69,"number"),A.k0s()(),A.j41(70,"div",18)(71,"h4",12),A.EFF(72,"Local Balance (Sats)"),A.k0s(),A.j41(73,"span",19),A.EFF(74),A.nI1(75,"number"),A.k0s()(),A.j41(76,"div",20)(77,"h4",12),A.EFF(78,"Total (Sats)"),A.k0s(),A.j41(79,"span",19),A.EFF(80),A.nI1(81,"number"),A.k0s()()(),A.nrm(82,"mat-divider",15),A.DNE(83,Ia,29,16,"div",21),A.j41(84,"div",22)(85,"button",23),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onShowAdvanced())}),A.DNE(86,Zl,2,0,"p",24)(87,ql,2,0,"ng-template",null,0,A.C5r),A.k0s(),A.DNE(89,$l,2,1,"button",25)(90,Rn,2,0,"button",26),A.k0s()()()()()}if(2&o){const iA=A.sdS(88);A.R7$(4),A.Y8G("icon",r.faReceipt),A.R7$(5),A.Y8G("ngClass",A.eq3(32,Kl,r.screenSize===r.screenSizeEnum.XS)),A.R7$(7),A.SpI(" ",r.channel.short_channel_id," "),A.R7$(5),A.JRh(r.channel.alias),A.R7$(7),A.JRh(r.channel.channel_id),A.R7$(7),A.SpI(" ",r.channel.peer_id," "),A.R7$(7),A.SpI(" ",r.channel.funding_txid," "),A.R7$(),A.Y8G("ngIf",null==r.selNode||null==r.selNode.settings?null:r.selNode.settings.blockExplorerUrl),A.R7$(7),A.JRh(A.i5U(51,20,null==r.channel?null:r.channel.state,"_")),A.R7$(6),A.JRh(r.channel.peer_connected?"Yes":"No"),A.R7$(5),A.JRh(r.channel.private?"Yes":"No"),A.R7$(7),A.JRh(A.i5U(69,23,r.channel.to_them_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(75,26,r.channel.to_us_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(81,29,r.channel.total_msat/1e3,"1.0-0")),A.R7$(3),A.Y8G("ngIf",r.showAdvanced),A.R7$(),A.Y8G("ngClass",A.l_i(34,Xl,!r.showAdvanced,r.showAdvanced)),A.R7$(2),A.Y8G("ngIf",!r.showAdvanced)("ngIfElse",iA),A.R7$(3),A.Y8G("ngIf",r.showCopy),A.R7$(),A.Y8G("ngIf",!r.showCopy)}},dependencies:[de.YU,de.bT,P.aY,fA.$z,QA.m2,QA.MM,sn.q,Q.DJ,Q.sA,Q.UI,dA.PW,HA.oV,Ji.U,cA.N,de.QX,R.VD],encapsulation:2}))}return n(),l})();const Fa=()=>["all"],Ac=n=>({"error-border":n}),ec=()=>["no_peer"],Ks=n=>({width:n}),ya=n=>({"display-none":n});function tc(n,l){if(1&n&&(A.j41(0,"mat-option",39),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function nc(n,l){1&n&&A.nrm(0,"mat-progress-bar",40)}function xa(n,l){1&n&&A.nrm(0,"th",41)}function ic(n,l){if(1&n&&(A.j41(0,"span",45),A.nrm(1,"fa-icon",46),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faEyeSlash)}}function sc(n,l){if(1&n&&(A.j41(0,"span",47),A.nrm(1,"fa-icon",46),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faEye)}}function Vi(n,l){if(1&n&&(A.j41(0,"td",42),A.DNE(1,ic,2,1,"span",43)(2,sc,2,1,"span",44),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",e.private),A.R7$(),A.Y8G("ngIf",!e.private)}}function rc(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Short Channel ID"),A.k0s())}function ac(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ks,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.short_channel_id)}}function oc(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Alias"),A.k0s())}function lc(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ks,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.alias)}}function Ya(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"ID"),A.k0s())}function jr(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ks,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.id)}}function ti(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Channel ID"),A.k0s())}function cc(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ks,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.channel_id)}}function gc(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Funding Transaction ID"),A.k0s())}function Bc(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ks,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.funding_txid)}}function fc(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Connected"),A.k0s())}function bc(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null!=e&&e.peer_connected?"Connected":"Disconnected")}}function uc(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Local Reserve (Sats)"),A.k0s())}function hc(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.our_reserve_msat)/1e3,"1.0-0")," ")}}function Ec(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Remote Reserve (Sats)"),A.k0s())}function wc(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.their_reserve_msat)/1e3,"1.0-0")," ")}}function ba(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Total (Sats)"),A.k0s())}function Cc(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.total_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function BA(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Spendable (Sats)"),A.k0s())}function a(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.spendable_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function u(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Local Balance (Sats)"),A.k0s())}function x(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.to_us_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function T(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Remote Balance (Sats)"),A.k0s())}function V(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.to_them_msat)/1e3,(null==e?null:e.to_them_msat)<1e3?"1.0-4":"1.0-0")," ")}}function G(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Balance Score"),A.k0s())}function TA(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",53)(2,"mat-hint",54),A.EFF(3),A.nI1(4,"number"),A.k0s()(),A.nrm(5,"mat-progress-bar",55),A.k0s()),2&n){const e=l.$implicit;A.R7$(3),A.JRh(A.bMT(4,3,e.balancedness||0)),A.R7$(2),A.Y8G("value",A.mNQ(e.to_us_msat&&e.to_us_msat>0?e.to_us_msat/(e.to_us_msat+e.to_them_msat)*100:0))}}function XA(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",56)(1,"div",57)(2,"mat-select",58),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",59),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onChannelUpdate("all"))}),A.EFF(5,"Update Fee Policy"),A.k0s(),A.j41(6,"mat-option",59),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDownloadCSV())}),A.EFF(7,"Download CSV"),A.k0s()()()()}}function se(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",60)(1,"div",57)(2,"mat-select",61),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",59),A.bIt("click",function(o){const r=w.eBV(e).$implicit,iA=A.XpG();return w.Njj(iA.onChannelClick(r,o))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",59),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onViewRemotePolicy(o))}),A.EFF(7,"View Remote Fee"),A.k0s(),A.j41(8,"mat-option",59),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onChannelUpdate(o))}),A.EFF(9,"Update Fee Policy"),A.k0s(),A.j41(10,"mat-option",59),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onChannelClose(o))}),A.EFF(11,"Close Channel"),A.k0s()()()()}}function fe(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No peers connected. Add a peer in order to open a channel."),A.k0s())}function Be(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No channel available."),A.k0s())}function He(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting channels..."),A.k0s())}function nt(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function rt(n,l){if(1&n&&(A.j41(0,"td",62),A.DNE(1,fe,2,0,"p",63)(2,Be,2,0,"p",63)(3,He,2,0,"p",63)(4,nt,2,1,"p",63),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",e.numPeers<1&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",e.numPeers>0&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function Ft(n,l){if(1&n&&A.nrm(0,"tr",64),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,ya,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function rn(n,l){1&n&&A.nrm(0,"tr",65)}function dt(n,l){1&n&&A.nrm(0,"tr",66)}let Ut=(()=>{var n;class l{constructor(i,o,r,iA,ne,re){this.logger=i,this.store=o,this.rtlEffects=r,this.clnEffects=iA,this.commonService=ne,this.camelCaseWithReplace=re,this.faEye=v.pS3,this.faEyeSlash=v.k6j,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open_channels",recordsPerPage:B.md,sortBy:"alias",sortOrder:B.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new z.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=B.G,this.selFilter="",this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(tA.GX).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.information=i.information,this.numPeers=i.numPeers,this.totalBalance=i.balance.totalBalance||0,this.logger.info(i)}),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("private"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.BM).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=i.activeChannels,this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(i)}),this.store.select(j._c).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.selNode=i})}ngAfterViewInit(){this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onViewRemotePolicy(i){this.store.dispatch((0,VA.ij)({payload:{uiMessage:B.MZ.GET_REMOTE_POLICY,shortChannelID:i.short_channel_id||"",showError:!0}})),this.clnEffects.setLookupCL.pipe((0,bt.s)(1)).subscribe(o=>{if(o.channels&&0===o.channels.length)return!1;let r={};r=o.channels[0].source!==this.information.id?o.channels[0]:o.channels[1];const iA=[[{key:"base_fee_millisatoshi",value:r.base_fee_millisatoshi,title:"Base Fees (mSats)",width:34,type:B.UN.NUMBER},{key:"fee_per_millionth",value:r.fee_per_millionth,title:"Fee/Millionth",width:33,type:B.UN.NUMBER},{key:"delay",value:r.delay,title:"Delay",width:33,type:B.UN.NUMBER}]],ne="Remote policy for Channel: "+(i.alias||i.short_channel_id?i.alias&&i.short_channel_id?i.alias+" ("+i.short_channel_id+")":i.alias?i.alias:i.short_channel_id:i.channel_id);setTimeout(()=>{this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:ne,message:iA}}}))},0)})}onChannelUpdate(i){"all"!==i&&"ONCHAIN"===i.state||("all"===i?(this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update All",message:[],titleMessage:"Update fee policy for all channels",flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:B.UN.NUMBER,inputValue:1e3,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:B.UN.NUMBER,inputValue:1,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,I.Q)(this.unSubs[4])).subscribe(o=>{o&&this.store.dispatch((0,VA.fy)({payload:{feebase:o[0].inputValue,feeppm:o[1].inputValue,id:"all"}}))})):(this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:[],titleMessage:"Update fee policy for Channel: "+(i.alias||i.short_channel_id?i.alias&&i.short_channel_id?i.alias+" ("+i.short_channel_id+")":i.alias?i.alias:i.short_channel_id:i.channel_id),flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:B.UN.NUMBER,inputValue:""===i.fee_base_msat?0:i.fee_base_msat,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:B.UN.NUMBER,inputValue:i.fee_proportional_millionths,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,I.Q)(this.unSubs[5])).subscribe(iA=>{iA&&this.store.dispatch((0,VA.fy)({payload:{feebase:iA[0].inputValue,feeppm:iA[1].inputValue,id:i.channel_id}}))})),this.applyFilter())}percentHintFunction(i){return(i/1e4).toString()+"%"}onChannelClose(i){this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Close Channel",titleMessage:"Closing channel: "+(i.alias||i.short_channel_id?i.alias&&i.short_channel_id?i.alias+" ("+i.short_channel_id+")":i.alias?i.alias:i.short_channel_id:i.channel_id),noBtnText:"Cancel",yesBtnText:"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,I.Q)(this.unSubs[6])).subscribe(o=>{o&&this.store.dispatch((0,VA.w0)({payload:{id:i.id||"",channelId:i.channel_id||"",force:!1}}))})}onChannelClick(i,o){this.store.dispatch((0,C.xO)({payload:{data:{channel:i,selNode:this.selNode,showCopy:!0,component:Da}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column||"","_"):this.commonService.titleCase(i)}setFilterPredicate(){this.channels.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.peer_connected?"connected":"disconnected")+(i.channel_id?i.channel_id.toLowerCase():"")+(i.short_channel_id?i.short_channel_id.toLowerCase():"")+(i.id?i.id.toLowerCase():"")+(i.alias?i.alias.toLowerCase():"")+(i.private?"private":"public")+(i.state?i.state.toLowerCase():"")+(i.funding_txid?i.funding_txid.toLowerCase():"")+(i.to_them_msat?i.to_them_msat/1e3:"")+(i.to_us_msat?i.to_us_msat/1e3:"")+(i.total_msat?i.total_msat/1e3:"")+(i.their_reserve_msat?i.their_reserve_msat/1e3:"")+(i.our_reserve_msat?i.our_reserve_msat/1e3:"")+(i.spendable_msat?i.spendable_msat/1e3:"");break;case"private":r=i?.private?"private":"public";break;case"connected":r=i?.peer_connected?"connected":"disconnected";break;case"msatoshi_total":r=((i.total_msat||0)/1e3).toString()||"";break;case"spendable_msatoshi":r=((i.spendable_msat||0)/1e3).toString()||"";break;case"msatoshi_to_us":r=((i.to_us_msat||0)/1e3).toString()||"";break;case"msatoshi_to_them":r=((i.to_them_msat||0)/1e3).toString()||"";break;case"our_channel_reserve_satoshis":r=((i.our_reserve_msat||0)/1e3).toString()||"";break;case"their_channel_reserve_satoshis":r=((i.their_reserve_msat||0)/1e3).toString()||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"connected"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadChannelsTable(i){this.channels=new z.I6([...i]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,r)=>{switch(r){case"msatoshi_total":return o.total_msat;case"spendable_msatoshi":return o.spendable_msat;case"msatoshi_to_us":return o.to_us_msat;case"msatoshi_to_them":return o.to_them_msat;case"our_channel_reserve_satoshis":return o.our_reserve_msat;case"their_channel_reserve_satoshis":return o.their_reserve_msat;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Open-channels")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(b.H),A.rXU(kr.i),A.rXU(L.h),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-open-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Channels")}])],decls:69,vars:18,consts:[["table",""],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"table-container","w-100",3,"perfectScrollbar"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","short_channel_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","alias"],["matColumnDef","id"],["matColumnDef","channel_id"],["matColumnDef","funding_txid"],["matColumnDef","connected"],["matColumnDef","our_channel_reserve_satoshis"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","their_channel_reserve_satoshis"],["matColumnDef","msatoshi_total"],["matColumnDef","spendable_msatoshi"],["matColumnDef","msatoshi_to_us"],["matColumnDef","msatoshi_to_them"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","5",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"div",2),A.nrm(2,"div",3),A.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",6),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilterBy,re)||(r.selFilterBy=re),w.Njj(re)}),A.bIt("selectionChange",function(){return w.eBV(iA),r.selFilter="",w.Njj(r.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,tc,2,2,"mat-option",7),A.k0s()()(),A.j41(10,"mat-form-field",5)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",8),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilter,re)||(r.selFilter=re),w.Njj(re)}),A.bIt("input",function(){return w.eBV(iA),w.Njj(r.applyFilter())})("keyup",function(){return w.eBV(iA),w.Njj(r.applyFilter())}),A.k0s()()()(),A.DNE(14,nc,1,0,"mat-progress-bar",9),A.j41(15,"div",10)(16,"table",11,0),A.qex(18,12),A.DNE(19,xa,1,0,"th",13)(20,Vi,3,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,rc,2,0,"th",16)(23,ac,4,4,"td",14),A.bVm(),A.qex(24,17),A.DNE(25,oc,2,0,"th",16)(26,lc,4,4,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,Ya,2,0,"th",16)(29,jr,4,4,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,ti,2,0,"th",16)(32,cc,4,4,"td",14),A.bVm(),A.qex(33,20),A.DNE(34,gc,2,0,"th",16)(35,Bc,4,4,"td",14),A.bVm(),A.qex(36,21),A.DNE(37,fc,2,0,"th",16)(38,bc,2,1,"td",14),A.bVm(),A.qex(39,22),A.DNE(40,uc,2,0,"th",23)(41,hc,4,4,"td",14),A.bVm(),A.qex(42,24),A.DNE(43,Ec,2,0,"th",23)(44,wc,4,4,"td",14),A.bVm(),A.qex(45,25),A.DNE(46,ba,2,0,"th",23)(47,Cc,4,4,"td",14),A.bVm(),A.qex(48,26),A.DNE(49,BA,2,0,"th",23)(50,a,4,4,"td",14),A.bVm(),A.qex(51,27),A.DNE(52,u,2,0,"th",23)(53,x,4,4,"td",14),A.bVm(),A.qex(54,28),A.DNE(55,T,2,0,"th",23)(56,V,4,4,"td",14),A.bVm(),A.qex(57,29),A.DNE(58,G,2,0,"th",16)(59,TA,6,5,"td",14),A.bVm(),A.qex(60,30),A.DNE(61,XA,8,0,"th",31)(62,se,12,0,"td",32),A.bVm(),A.qex(63,33),A.DNE(64,rt,5,4,"td",34),A.bVm(),A.DNE(65,Ft,1,3,"tr",35)(66,rn,1,0,"tr",36)(67,dt,1,0,"tr",37),A.k0s()(),A.nrm(68,"mat-paginator",38),A.k0s()}2&o&&(A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,Fa).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(),A.Y8G("ngIf",r.apiCallStatus.status===r.apiCallStatusEnum.INITIATED),A.R7$(2),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.channels)("ngClass",A.eq3(15,Ac,""!==r.errorMessage)),A.R7$(49),A.Y8G("matFooterRowDef",A.lJ4(17,ec)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("showFirstLastButtons",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,P.aY,UA.fg,yA.rl,yA.nJ,yA.MV,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,HA.oV,H.iy,M.ZF,M.Ld,de.QX],styles:[".mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]}))}return n(),l})();const Ge=["outputIdx"];function gt(n,l){if(1&n&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",15),A.j41(2,"span"),A.EFF(3,"Change output balance "),A.j41(4,"strong"),A.EFF(5),A.nI1(6,"number"),A.k0s(),A.EFF(7," (Sats) may be insufficient for fee bumping, depending on the prevailing fee rates."),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(4),A.JRh(A.bMT(6,2,e.dustOutputValue))}}function yt(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Output Index required."),A.k0s())}function En(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Invalid index value."),A.k0s())}function bn(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fees is required."),A.k0s())}function Kt(n,l){if(1&n&&(A.j41(0,"div",28),A.nrm(1,"fa-icon",15),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(2),A.JRh(e.bumpFeeError)}}let jn=(()=>{var n;class l{set outputIndx(i){i&&(this.outputIdx=i)}constructor(i,o,r,iA,ne,re){this.actions=i,this.dialogRef=o,this.data=r,this.store=iA,this.logger=ne,this.dataService=re,this.faUpRightFromSquare=v.k02,this.newAddress="",this.fees=null,this.outputIndex=null,this.faCopy=v.jPR,this.faInfoCircle=v.iW_,this.faExclamationTriangle=v.zpE,this.bumpFeeError="",this.flgShowDustWarning=!1,this.dustOutputValue=0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new g.B,new g.B,new g.B,new g.B]}ngOnInit(){this.bumpFeeChannel=this.data.channel,this.logger.info(this.bumpFeeChannel),this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i,this.logger.info(this.selNode)}),this.dataService.getRecommendedFeeRates().pipe((0,I.Q)(this.unSubs[1])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}}),this.dataService.getBlockExplorerTransaction(this.bumpFeeChannel.funding_txid).pipe((0,I.Q)(this.unSubs[2])).subscribe({next:i=>{this.outputIndex=0===i.vout.findIndex(o=>o.value===this.bumpFeeChannel.to_us_msat)?1:0,this.dustOutputValue=i.vout[this.outputIndex].value,this.flgShowDustWarning=this.dustOutputValue<1e3},error:i=>{this.logger.error(i)}})}onBumpFee(){if(!this.outputIndex&&0!==this.outputIndex||!this.fees)return!0;this.bumpFeeError="",this.store.dispatch((0,VA.XT)({payload:B.Ld[0]})),this.actions.pipe((0,nA.p)(i=>i.type===B.TC.SET_NEW_ADDRESS_CLN),(0,bt.s)(1)).subscribe(i=>{this.store.dispatch((0,VA.aB)({payload:{destination:i.payload,satoshi:"all",feerate:(1e3*+(this.fees||0)).toString()+"perkb",utxos:[this.bumpFeeChannel.funding_txid+":"+(this.outputIndex||"").toString()]}}))}),this.actions.pipe((0,nA.p)(i=>i.type===B.TC.SET_CHANNEL_TRANSACTION_RES_CLN),(0,bt.s)(1)).subscribe(i=>{this.store.dispatch((0,C.UI)({payload:"Successfully bumped the fee. Use the block explorer to verify transaction."})),this.dialogRef.close()}),this.actions.pipe((0,nA.p)(i=>i.type===B.TC.UPDATE_API_CALL_STATUS_CLN),(0,I.Q)(this.unSubs[3])).subscribe(i=>{i.payload.status===B.wn.ERROR&&("SetChannelTransaction"===i.payload.action||"GenerateNewAddress"===i.payload.action)&&(this.logger.error(i.payload.message),this.bumpFeeError=i.payload.message)})}onExplorerClicked(i){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+i,"_blank")}resetData(){this.bumpFeeError="",this.fees=null,this.outputIndex=null,this.flgShowDustWarning=!1,this.outputIdx.control.setErrors(null)}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(kA.En),A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(AA.il),A.rXU(aA.gP),A.rXU(Dt.u))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-bump-fee"]],viewQuery:function(o,r){if(1&o&&A.GBs(Ge,5),2&o){let iA;A.mGM(iA=A.lsd())&&(r.outputIndx=iA.first)}},standalone:!1,decls:47,vars:20,consts:[["outputIndx","ngModel"],["fee","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","49"],["autoFocus","","matInput","","type","number","required","","name","outputIndx",3,"ngModelChange","step","min","ngModel"],[4,"ngIf"],["matInput","","type","number","name","fees","required","",3,"ngModelChange","step","min","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit",3,"click"],["fxFlex","100",1,"alert","alert-warn"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",2)(1,"div",3)(2,"mat-card-header",4)(3,"div",5)(4,"span",6),A.EFF(5,"Bump Fee"),A.k0s()(),A.j41(6,"button",7),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",8)(9,"form",9)(10,"div",10)(11,"p",11),A.EFF(12),A.j41(13,"fa-icon",12),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onExplorerClicked(null==r.bumpFeeChannel?null:r.bumpFeeChannel.funding_txid))}),A.k0s()(),A.j41(14,"div",13)(15,"div",14),A.nrm(16,"fa-icon",15),A.j41(17,"span",16)(18,"div"),A.EFF(19,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(20,"div"),A.EFF(21),A.k0s(),A.j41(22,"div"),A.EFF(23),A.k0s(),A.j41(24,"div"),A.EFF(25),A.k0s()()(),A.DNE(26,gt,8,4,"div",17),A.j41(27,"div",18)(28,"mat-form-field",19)(29,"mat-label"),A.EFF(30,"Output Index"),A.k0s(),A.j41(31,"input",20,0),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.outputIndex,re)||(r.outputIndex=re),w.Njj(re)}),A.k0s(),A.DNE(33,yt,2,0,"mat-error",21)(34,En,2,0,"mat-error",21),A.k0s(),A.j41(35,"mat-form-field",19)(36,"mat-label"),A.EFF(37,"Fees (Sats/vByte)"),A.k0s(),A.j41(38,"input",22,1),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.fees,re)||(r.fees=re),w.Njj(re)}),A.k0s(),A.DNE(40,bn,2,0,"mat-error",21),A.k0s()(),A.DNE(41,Kt,4,2,"div",23),A.k0s()(),A.j41(42,"div",24)(43,"button",25),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.EFF(44,"Clear"),A.k0s(),A.j41(45,"button",26),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onBumpFee())}),A.EFF(46),A.k0s()()()()()()}if(2&o){const iA=A.sdS(32);A.R7$(12),A.SpI("Bump fee for transaction id: ",null==r.bumpFeeChannel?null:r.bumpFeeChannel.funding_txid," "),A.R7$(),A.Y8G("matTooltip",A.mNQ("Link to "+r.selNode.settings.blockExplorerUrl))("icon",r.faUpRightFromSquare),A.R7$(3),A.Y8G("icon",r.faInfoCircle),A.R7$(5),A.SpI("- High: ",r.recommendedFee.fastestFee||"Unknown"),A.R7$(2),A.SpI("- Medium: ",r.recommendedFee.halfHourFee||"Unknown"),A.R7$(2),A.SpI("- Low: ",r.recommendedFee.hourFee||"Unknown"),A.R7$(),A.Y8G("ngIf",r.flgShowDustWarning),A.R7$(5),A.Y8G("step",1)("min",0),A.R50("ngModel",r.outputIndex),A.R7$(2),A.Y8G("ngIf",null==iA.errors?null:iA.errors.required),A.R7$(),A.Y8G("ngIf",null==iA.errors?null:iA.errors.pendingChannelOutputIndex),A.R7$(4),A.Y8G("step",1)("min",0),A.R50("ngModel",r.fees),A.R7$(2),A.Y8G("ngIf",!r.fees),A.R7$(),A.Y8G("ngIf",""!==r.bumpFeeError),A.R7$(5),A.JRh(""!==r.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},dependencies:[de.bT,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.YS,hA.VZ,hA.vS,hA.cV,P.aY,fA.$z,QA.m2,QA.MM,UA.fg,yA.rl,yA.nJ,yA.TL,Q.DJ,Q.sA,Q.UI,HA.oV,cA.N,J.V,de.QX],encapsulation:2}))}return n(),l})();const $t=()=>["all"],Xn=n=>({"error-border":n}),ni=()=>["no_peer"],yn=n=>({width:n}),gs=n=>({"display-none":n});function ii(n,l){if(1&n&&(A.j41(0,"mat-option",39),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function Ti(n,l){1&n&&A.nrm(0,"mat-progress-bar",40)}function An(n,l){1&n&&A.nrm(0,"th",41)}function en(n,l){if(1&n&&(A.j41(0,"span",45),A.nrm(1,"fa-icon",46),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faEyeSlash)}}function tn(n,l){if(1&n&&(A.j41(0,"span",47),A.nrm(1,"fa-icon",46),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faEye)}}function nn(n,l){if(1&n&&(A.j41(0,"td",42),A.DNE(1,en,2,1,"span",43)(2,tn,2,1,"span",44),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",e.private),A.R7$(),A.Y8G("ngIf",!e.private)}}function Bs(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Alias"),A.k0s())}function fs(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,yn,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.alias)}}function us(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"ID"),A.k0s())}function hs(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,yn,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.id)}}function Es(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Channel ID"),A.k0s())}function ws(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,yn,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.channel_id)}}function Cs(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Funding Transaction ID"),A.k0s())}function ds(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,yn,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.funding_txid)}}function hi(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Connected"),A.k0s())}function jt(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null!=e&&e.peer_connected?"Connected":"Disconnected")}}function on(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"State"),A.k0s())}function dr(n,l){if(1&n&&(A.j41(0,"td",51),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("ngStyle",A.eq3(2,yn,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(),A.JRh(i.CLNChannelPendingState[null==e?null:e.state])}}function Wn(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Local Reserve (Sats)"),A.k0s())}function Qr(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.our_reserve_msat)/1e3,"1.0-0")," ")}}function Qs(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Remote Reserve (Sats)"),A.k0s())}function mr(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.their_reserve_msat)/1e3,"1.0-0")," ")}}function Xs(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Total (Sats)"),A.k0s())}function Mr(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.total_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Zs(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Spendable (Sats)"),A.k0s())}function va(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.spendable_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Ra(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Local Balance (Sats)"),A.k0s())}function si(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.to_us_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function pr(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Remote Balance (Sats)"),A.k0s())}function Vc(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.to_them_msat)/1e3,(null==e?null:e.to_them_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Wc(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",54)(1,"div",55)(2,"mat-select",56),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",57),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Kc(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",57),A.bIt("click",function(){w.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return w.Njj(r.onChannelClose(o))}),A.EFF(1,"Close Channel"),A.k0s()}}function Xc(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",57),A.bIt("click",function(){w.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return w.Njj(r.onBumpFee(o))}),A.EFF(1,"Bump Fee"),A.k0s()}}function Zc(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",58)(1,"div",55)(2,"mat-select",59),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",57),A.bIt("click",function(o){const r=w.eBV(e).$implicit,iA=A.XpG();return w.Njj(iA.onChannelClick(r,o))}),A.EFF(5,"View Info"),A.k0s(),A.DNE(6,Kc,2,0,"mat-option",60)(7,Xc,2,0,"mat-option",60),A.k0s()()()}if(2&n){const e=l.$implicit;A.R7$(6),A.Y8G("ngIf","CHANNELD_SHUTTING_DOWN"===e.state||"CLOSINGD_SIGEXCHANGE"===e.state||!e.peer_connected&&"CHANNELD_NORMAL"===e.state),A.R7$(),A.Y8G("ngIf","CHANNELD_AWAITING_LOCKIN"===e.state)}}function qc(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No peers connected. Add a peer in order to open a channel."),A.k0s())}function $c(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No pending/inactive channel available."),A.k0s())}function A0(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting pending/inactive channels..."),A.k0s())}function e0(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function t0(n,l){if(1&n&&(A.j41(0,"td",61),A.DNE(1,qc,2,0,"p",62)(2,$c,2,0,"p",62)(3,A0,2,0,"p",62)(4,e0,2,1,"p",62),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",e.numPeers<1&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",e.numPeers>0&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function n0(n,l){if(1&n&&A.nrm(0,"tr",63),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,gs,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function i0(n,l){1&n&&A.nrm(0,"tr",64)}function s0(n,l){1&n&&A.nrm(0,"tr",65)}let r0=(()=>{var n;class l{constructor(i,o,r,iA,ne){this.logger=i,this.store=o,this.rtlEffects=r,this.commonService=iA,this.camelCaseWithReplace=ne,this.faEye=v.pS3,this.faEyeSlash=v.k6j,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"pending_inactive_channels",recordsPerPage:B.md,sortBy:"alias",sortOrder:B.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new z.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=B.G,this.selFilter="",this.CLNChannelPendingState=B.Zb,this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.selNode=null,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(tA.GX).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.information=i.information,this.numPeers=i.numPeers,this.totalBalance=i.balance.totalBalance||0,this.logger.info(i)}),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("private"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.BM).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=[...i.pendingChannels,...i.inactiveChannels],this.channelsData=this.channelsData.sort((o,r)=>this.CLNChannelPendingState[o.state||""]>=this.CLNChannelPendingState[r.state||""]?1:-1),this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(i)}),this.store.select(j._c).pipe((0,I.Q)(this.unSubs[4])).subscribe(i=>{this.selNode=i})}ngAfterViewInit(){this.channelsData&&this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onBumpFee(i){this.store.dispatch((0,C.xO)({payload:{data:{channel:i,component:jn}}}))}onChannelClick(i,o){this.store.dispatch((0,C.xO)({payload:{data:{channel:i,selNode:this.selNode,showCopy:!0,component:Da}}}))}onChannelClose(i){this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Force Close Channel",titleMessage:"Force closing channel: "+(i.alias||i.short_channel_id?i.alias&&i.short_channel_id?i.alias+" ("+i.short_channel_id+")":i.alias?i.alias:i.short_channel_id:i.channel_id),noBtnText:"Cancel",yesBtnText:"Force Close"}}})),this.rtlEffects.closeConfirm.pipe((0,I.Q)(this.unSubs[3])).subscribe(o=>{o&&this.store.dispatch((0,VA.w0)({payload:{id:i.id,channelId:i.channel_id,force:!0}}))})}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column||"","_"):this.commonService.titleCase(i)}setFilterPredicate(){this.channels.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.peer_connected?"connected":"disconnected")+(i.channel_id?i.channel_id.toLowerCase():"")+(i.short_channel_id?i.short_channel_id.toLowerCase():"")+(i.id?i.id.toLowerCase():"")+(i.alias?i.alias.toLowerCase():"")+(i.private?"private":"public")+(i.state&&this.CLNChannelPendingState[i.state]?this.CLNChannelPendingState[i.state].toLowerCase():"")+(i.funding_txid?i.funding_txid.toLowerCase():"")+(i.to_us_msat?i.to_us_msat:"")+(i.to_them_msat?i.to_them_msat/1e3:"")+(i.total_msat?i.total_msat/1e3:"")+(i.their_reserve_msat?i.their_reserve_msat/1e3:"")+(i.our_reserve_msat?i.our_reserve_msat/1e3:"")+(i.spendable_msat?i.spendable_msat/1e3:"");break;case"private":r=i?.private?"private":"public";break;case"connected":r=i?.peer_connected?"connected":"disconnected";break;case"msatoshi_total":r=((i.total_msat||0)/1e3).toString()||"";break;case"spendable_msatoshi":r=((i.spendable_msat||0)/1e3).toString()||"";break;case"msatoshi_to_us":r=((i.to_us_msat||0)/1e3).toString()||"";break;case"msatoshi_to_them":r=((i.to_them_msat||0)/1e3).toString()||"";break;case"our_channel_reserve_satoshis":r=((i.our_reserve_msat||0)/1e3).toString()||"";break;case"their_channel_reserve_satoshis":r=((i.their_reserve_msat||0)/1e3).toString()||"";break;case"state":r=i?.state?this.CLNChannelPendingState[i?.state]:"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"connected"===this.selFilterBy||"state"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadChannelsTable(i){this.channels=new z.I6([...i]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,r)=>{switch(r){case"msatoshi_total":return o.total_msat;case"spendable_msatoshi":return o.spendable_msat;case"msatoshi_to_us":return o.to_us_msat;case"msatoshi_to_them":return o.to_them_msat;case"our_channel_reserve_satoshis":return o.our_reserve_msat;case"their_channel_reserve_satoshis":return o.their_reserve_msat;case"state":return this.CLNChannelPendingState[o.state];default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Pending-inactive-channels")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(b.H),A.rXU(L.h),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-pending-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Channels")}])],decls:66,vars:18,consts:[["table",""],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"table-container","w-100",3,"perfectScrollbar"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","id"],["matColumnDef","channel_id"],["matColumnDef","funding_txid"],["matColumnDef","connected"],["matColumnDef","state"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","our_channel_reserve_satoshis"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","their_channel_reserve_satoshis"],["matColumnDef","msatoshi_total"],["matColumnDef","spendable_msatoshi"],["matColumnDef","msatoshi_to_us"],["matColumnDef","msatoshi_to_them"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","5",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-cell","",3,"ngStyle"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"div",2),A.nrm(2,"div",3),A.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",6),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilterBy,re)||(r.selFilterBy=re),w.Njj(re)}),A.bIt("selectionChange",function(){return w.eBV(iA),r.selFilter="",w.Njj(r.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,ii,2,2,"mat-option",7),A.k0s()()(),A.j41(10,"mat-form-field",5)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",8),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilter,re)||(r.selFilter=re),w.Njj(re)}),A.bIt("input",function(){return w.eBV(iA),w.Njj(r.applyFilter())})("keyup",function(){return w.eBV(iA),w.Njj(r.applyFilter())}),A.k0s()()()(),A.DNE(14,Ti,1,0,"mat-progress-bar",9),A.j41(15,"div",10)(16,"table",11,0),A.qex(18,12),A.DNE(19,An,1,0,"th",13)(20,nn,3,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,Bs,2,0,"th",16)(23,fs,4,4,"td",14),A.bVm(),A.qex(24,17),A.DNE(25,us,2,0,"th",16)(26,hs,4,4,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,Es,2,0,"th",16)(29,ws,4,4,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,Cs,2,0,"th",16)(32,ds,4,4,"td",14),A.bVm(),A.qex(33,20),A.DNE(34,hi,2,0,"th",16)(35,jt,2,1,"td",14),A.bVm(),A.qex(36,21),A.DNE(37,on,2,0,"th",16)(38,dr,2,4,"td",22),A.bVm(),A.qex(39,23),A.DNE(40,Wn,2,0,"th",24)(41,Qr,4,4,"td",14),A.bVm(),A.qex(42,25),A.DNE(43,Qs,2,0,"th",24)(44,mr,4,4,"td",14),A.bVm(),A.qex(45,26),A.DNE(46,Xs,2,0,"th",24)(47,Mr,4,4,"td",14),A.bVm(),A.qex(48,27),A.DNE(49,Zs,2,0,"th",24)(50,va,4,4,"td",14),A.bVm(),A.qex(51,28),A.DNE(52,Ra,2,0,"th",24)(53,si,4,4,"td",14),A.bVm(),A.qex(54,29),A.DNE(55,pr,2,0,"th",24)(56,Vc,4,4,"td",14),A.bVm(),A.qex(57,30),A.DNE(58,Wc,6,0,"th",31)(59,Zc,8,2,"td",32),A.bVm(),A.qex(60,33),A.DNE(61,t0,5,4,"td",34),A.bVm(),A.DNE(62,n0,1,3,"tr",35)(63,i0,1,0,"tr",36)(64,s0,1,0,"tr",37),A.k0s()(),A.nrm(65,"mat-paginator",38),A.k0s()}2&o&&(A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,$t).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(),A.Y8G("ngIf",r.apiCallStatus.status===r.apiCallStatusEnum.INITIATED),A.R7$(2),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.channels)("ngClass",A.eq3(15,Xn,""!==r.errorMessage)),A.R7$(46),A.Y8G("matFooterRowDef",A.lJ4(17,ni)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("showFirstLastButtons",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,P.aY,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,HA.oV,H.iy,M.ZF,M.Ld,de.QX],styles:[".mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return n(),l})();const a0=()=>["all"],o0=n=>({"error-border":n}),l0=()=>["no_peer"],vc=n=>({"mr-0":n}),dc=n=>({width:n}),c0=n=>({"display-none":n});function g0(n,l){if(1&n&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function B0(n,l){1&n&&A.nrm(0,"mat-progress-bar",35)}function f0(n,l){1&n&&A.nrm(0,"th",36)}function u0(n,l){if(1&n&&A.nrm(0,"span",40),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,vc,e.screenSize===e.screenSizeEnum.XS))}}function h0(n,l){if(1&n&&A.nrm(0,"span",41),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,vc,e.screenSize===e.screenSizeEnum.XS))}}function E0(n,l){if(1&n&&(A.j41(0,"td",37),A.DNE(1,u0,1,3,"span",38)(2,h0,1,3,"span",39),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",null==e?null:e.connected),A.R7$(),A.Y8G("ngIf",!(null!=e&&e.connected))}}function w0(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Alias"),A.k0s())}function C0(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,dc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.alias)}}function d0(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"ID"),A.k0s())}function Q0(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,dc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.id)}}function m0(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Network Address"),A.k0s())}function M0(n,l){1&n&&(A.j41(0,"span"),A.EFF(1,","),A.nrm(2,"br"),A.k0s())}function p0(n,l){if(1&n&&(A.j41(0,"span",44),A.EFF(1),A.DNE(2,M0,3,0,"span",46),A.k0s()),2&n){const e=l.$implicit,i=l.last;A.R7$(),A.JRh(e),A.R7$(),A.Y8G("ngIf",!i)}}function I0(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",43),A.DNE(2,p0,3,2,"span",45),A.k0s()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,dc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(),A.Y8G("ngForOf",null==e?null:e.netaddr)}}function D0(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function F0(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",50),A.bIt("click",function(){w.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return w.Njj(r.onPeerDetach(o))}),A.EFF(1,"Disconnect"),A.k0s()}}function y0(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",50),A.bIt("click",function(){w.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return w.Njj(r.onConnectPeer(o))}),A.EFF(1,"Reconnect"),A.k0s()}}function x0(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",51)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(o){const r=w.eBV(e).$implicit,iA=A.XpG();return w.Njj(iA.onPeerClick(r,o))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",50),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onOpenChannel(o))}),A.EFF(7,"Open Channel"),A.k0s(),A.DNE(8,F0,2,0,"mat-option",52)(9,y0,2,0,"mat-option",52),A.k0s()()()}if(2&n){const e=l.$implicit;A.R7$(8),A.Y8G("ngIf",e.connected),A.R7$(),A.Y8G("ngIf",!e.connected)}}function Y0(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No connected peer."),A.k0s())}function b0(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting peers..."),A.k0s())}function v0(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function R0(n,l){if(1&n&&(A.j41(0,"td",53),A.DNE(1,Y0,2,0,"p",46)(2,b0,2,0,"p",46)(3,v0,2,1,"p",46),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function S0(n,l){if(1&n&&A.nrm(0,"tr",54),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,c0,(null==e.peers?null:e.peers.data)&&(null==e.peers||null==e.peers.data?null:e.peers.data.length)>0))}}function N0(n,l){1&n&&A.nrm(0,"tr",55)}function T0(n,l){1&n&&A.nrm(0,"tr",56)}let P0=(()=>{var n;class l{constructor(i,o,r,iA,ne,re){this.logger=i,this.store=o,this.rtlEffects=r,this.actions=iA,this.commonService=ne,this.camelCaseWithReplace=re,this.faUsers=v.gdJ,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:B.md,sortBy:"alias",sortOrder:B.oi.DESCENDING},this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.peers=new z.I6([]),this.utxos=[],this.information={},this.availableBalance=0,this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(tA.kQ).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.information=i.information,this.availableBalance=i.balance.totalBalance||0}),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("connected"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.os).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=i.peers||[],this.peersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPeersTable(this.peersData),this.logger.info(i)}),this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.utxos=this.commonService.sortAscByKey(i.utxos?.filter(o=>"confirmed"===o.status),"value")}),this.actions.pipe((0,I.Q)(this.unSubs[4]),(0,nA.p)(i=>i.type===B.TC.SET_PEERS_CLN)).subscribe(i=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(i,o){this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:i.id,goToName:"Graph lookup",goToLink:"/cln/graph/lookups",showQRName:"Public Key",showQRField:i.id,message:[[{key:"id",value:i.id,title:"Public Key",width:100}],[{key:"netaddr",value:i.netaddr,title:"Address",width:100}],[{key:"alias",value:i.alias,title:"Alias",width:50},{key:"connected",value:i.connected?"True":"False",title:"Connected",width:50}]]}}}))}onConnectPeer(i){this.store.dispatch((0,C.xO)({payload:{data:{message:{peer:i.id?i:null,information:this.information,balance:this.availableBalance},component:Ur}}}))}onOpenChannel(i){this.store.dispatch((0,C.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:i,information:this.information,balance:this.availableBalance,utxos:this.utxos},newlyAdded:!1,component:Hr}}}))}onPeerDetach(i){this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(i.alias?i.alias:i.id),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,I.Q)(this.unSubs[5])).subscribe(r=>{r&&this.store.dispatch((0,VA.ed)({payload:{id:i.id,force:!1}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.peers.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=JSON.stringify(i).toLowerCase();break;case"connected":r=i?.connected?"connected":"disconnected";break;case"netaddr":r=i.netaddr?i.netaddr.reduce((iA,ne)=>iA+ne," "):"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"connected"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadPeersTable(i){this.peers=new z.I6([...i]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(o,r)=>{if("netaddr"===r){if(o.netaddr&&o.netaddr[0]){const iA=o.netaddr[0].toString().split(".");return iA[0]?+iA[0]:o.netaddr[0]}return""}return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null},this.peers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(b.H),A.rXU(kA.En),A.rXU(L.h),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-peers"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Peers")}])],decls:47,vars:19,consts:[["peersForm","ngForm"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-x-hidden","overflow-y-hidden",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","connected"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Connected",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","id"],["matColumnDef","netaddr"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Connected"],["mat-cell",""],["class","dot green","matTooltip","Connected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Disconnected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Connected","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Disconnected","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["class","ellipsis-child",4,"ngFor","ngForOf"],[4,"ngIf"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",2)(1,"form",3,0)(3,"button",4),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onConnectPeer({}))}),A.EFF(4,"Add Peer"),A.k0s()(),A.j41(5,"div",5)(6,"div",6)(7,"div",7),A.nrm(8,"fa-icon",8),A.j41(9,"span",9),A.EFF(10,"Connected Peers"),A.k0s()(),A.j41(11,"div",10)(12,"mat-form-field",11)(13,"mat-label"),A.EFF(14,"Filter By"),A.k0s(),A.j41(15,"mat-select",12),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilterBy,re)||(r.selFilterBy=re),w.Njj(re)}),A.bIt("selectionChange",function(){return w.eBV(iA),r.selFilter="",w.Njj(r.applyFilter())}),A.j41(16,"perfect-scrollbar"),A.DNE(17,g0,2,2,"mat-option",13),A.k0s()()(),A.j41(18,"mat-form-field",11)(19,"mat-label"),A.EFF(20,"Filter"),A.k0s(),A.j41(21,"input",14),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilter,re)||(r.selFilter=re),w.Njj(re)}),A.bIt("input",function(){return w.eBV(iA),w.Njj(r.applyFilter())})("keyup",function(){return w.eBV(iA),w.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(22,"div",15),A.DNE(23,B0,1,0,"mat-progress-bar",16),A.j41(24,"table",17,1),A.qex(26,18),A.DNE(27,f0,1,0,"th",19)(28,E0,3,2,"td",20),A.bVm(),A.qex(29,21),A.DNE(30,w0,2,0,"th",22)(31,C0,4,4,"td",20),A.bVm(),A.qex(32,23),A.DNE(33,d0,2,0,"th",22)(34,Q0,4,4,"td",20),A.bVm(),A.qex(35,24),A.DNE(36,m0,2,0,"th",22)(37,I0,3,4,"td",20),A.bVm(),A.qex(38,25),A.DNE(39,D0,6,0,"th",26)(40,x0,10,2,"td",27),A.bVm(),A.qex(41,28),A.DNE(42,R0,4,3,"td",29),A.bVm(),A.DNE(43,S0,1,3,"tr",30)(44,N0,1,0,"tr",31)(45,T0,1,0,"tr",32),A.k0s()(),A.nrm(46,"mat-paginator",33),A.k0s()()}2&o&&(A.R7$(8),A.Y8G("icon",r.faUsers),A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,a0).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(2),A.Y8G("ngIf",r.apiCallStatus.status===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.peers)("ngClass",A.eq3(16,o0,""!==r.errorMessage)),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(18,l0)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("showFirstLastButtons",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.qT,hA.me,hA.BC,hA.cb,hA.vS,hA.cV,P.aY,fA.$z,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,HA.oV,H.iy,M.ZF,M.Ld],styles:[".mat-column-connected[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return n(),l})();const U0=["queryRoutesForm"],L0=n=>({"overflow-auto error-border":n,"overflow-auto":!0}),Rc=n=>({width:n});function G0(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Destination pubkey is required."),A.k0s())}function z0(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function k0(n,l){1&n&&A.nrm(0,"mat-progress-bar",36)}function H0(n,l){1&n&&(A.j41(0,"th",37),A.EFF(1,"ID"),A.k0s())}function j0(n,l){if(1&n&&(A.j41(0,"td",38)(1,"div",39)(2,"span",40),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Rc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.id)}}function O0(n,l){1&n&&(A.j41(0,"th",37),A.EFF(1,"Alias"),A.k0s())}function J0(n,l){if(1&n&&(A.j41(0,"td",38)(1,"div",39)(2,"span",40),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Rc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.alias)}}function _0(n,l){1&n&&(A.j41(0,"th",37),A.EFF(1,"Channel"),A.k0s())}function V0(n,l){if(1&n&&(A.j41(0,"td",38),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.channel)}}function W0(n,l){1&n&&(A.j41(0,"th",37),A.EFF(1,"Direction"),A.k0s())}function K0(n,l){if(1&n&&(A.j41(0,"td",38),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.direction)}}function X0(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Delay"),A.k0s())}function Z0(n,l){if(1&n&&(A.j41(0,"td",38)(1,"span",42),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI("",A.bMT(3,1,null==e?null:e.delay)," ")}}function q0(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Amount (Sats)"),A.k0s())}function $0(n,l){if(1&n&&(A.j41(0,"td",38)(1,"span",42),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,(null==e?null:e.amount_msat)/1e3))}}function Ag(n,l){1&n&&(A.j41(0,"th",43)(1,"div",44),A.EFF(2,"Actions"),A.k0s()())}function eg(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",45)(1,"button",46),A.bIt("click",function(o){const r=w.eBV(e).$implicit,iA=A.XpG();return w.Njj(iA.onHopClick(r,o))}),A.EFF(2,"View Info"),A.k0s()()}}function tg(n,l){1&n&&A.nrm(0,"tr",47)}function ng(n,l){1&n&&A.nrm(0,"tr",48)}let ig=(()=>{var n;class l{constructor(i,o,r){this.store=i,this.clnEffects=o,this.commonService=r,this.PAGE_ID="graph_lookup",this.tableSetting={tableId:"query_routes",recordsPerPage:B.md,sortBy:"id",sortOrder:B.oi.ASCENDING},this.destinationPubkey="",this.amount=null,this.qrHops=new z.I6([]),this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=v.TBz,this.faExclamationTriangle=v.zpE,this.screenSize="",this.screenSizeEnum=B.f7,this.unSubs=[new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions")}),this.clnEffects.setQueryRoutesCL.pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.qrHops.data=[],i.route&&i.route.length&&i.route.length>0?(this.flgLoading[0]=!1,this.qrHops=new z.I6([...i.route])):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(o,r)=>o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.flgLoading[0]=!0,this.store.dispatch((0,VA.T4)({payload:{destPubkey:this.destinationPubkey,amount:1e3*this.amount}}))}resetData(){this.destinationPubkey="",this.amount=null,this.flgLoading[0]=!1,this.qrHops.data=[],this.form.resetForm()}onHopClick(i,o){this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"id",value:i.id,title:"ID",width:100,type:B.UN.STRING}],[{key:"channel",value:i.channel,title:"Channel",width:50,type:B.UN.STRING},{key:"alias",value:i.alias,title:"Peer Alias",width:50,type:B.UN.STRING}],[{key:"amount_msat",value:i.amount_msat,title:"Amount (mSat)",width:34,type:B.UN.NUMBER},{key:"direction",value:i.direction,title:"Direction",width:33,type:B.UN.STRING},{key:"delay",value:i.delay,title:"Delay",width:33,type:B.UN.NUMBER}]]}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(AA.il),A.rXU(kr.i),A.rXU(L.h))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-query-routes"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(U0,7)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.form=iA.first)}},standalone:!1,decls:55,vars:17,consts:[["queryRoutesForm","ngForm"],["destPubkey","ngModel"],["table",""],["fxLayout","column","fxFlex","100",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","destinationPubkey","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"ngModelChange","step","min","ngModel"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","row","fxLayoutAlign","start center",1,"page-sub-title-container","mt-2","mb-1"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"table-container","mb-6",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","channel"],["matColumnDef","direction"],["matColumnDef","delay"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",3)(1,"form",4,0),A.bIt("ngSubmit",function(){w.eBV(iA);const re=A.sdS(2);return w.Njj(re.form.valid&&r.onQueryRoutes())}),A.j41(3,"div",5),A.nrm(4,"fa-icon",6),A.j41(5,"span"),A.EFF(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),A.k0s()(),A.j41(7,"mat-form-field",7)(8,"mat-label"),A.EFF(9,"Destination Pubkey"),A.k0s(),A.j41(10,"input",8,1),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.destinationPubkey,re)||(r.destinationPubkey=re),w.Njj(re)}),A.k0s(),A.DNE(12,G0,2,0,"mat-error",9),A.k0s(),A.j41(13,"mat-form-field",10)(14,"mat-label"),A.EFF(15,"Amount (Sats)"),A.k0s(),A.j41(16,"input",11),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.amount,re)||(r.amount=re),w.Njj(re)}),A.k0s(),A.DNE(17,z0,2,0,"mat-error",9),A.k0s(),A.j41(18,"div",12)(19,"button",13),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.EFF(20,"Clear"),A.k0s(),A.j41(21,"button",14),A.EFF(22,"Query Route"),A.k0s()()(),A.j41(23,"div",15)(24,"div",16),A.nrm(25,"fa-icon",17),A.j41(26,"span",18),A.EFF(27,"Transaction Route"),A.k0s()()(),A.j41(28,"div",19),A.DNE(29,k0,1,0,"mat-progress-bar",20),A.j41(30,"table",21,2),A.qex(32,22),A.DNE(33,H0,2,0,"th",23)(34,j0,4,4,"td",24),A.bVm(),A.qex(35,25),A.DNE(36,O0,2,0,"th",23)(37,J0,4,4,"td",24),A.bVm(),A.qex(38,26),A.DNE(39,_0,2,0,"th",23)(40,V0,2,1,"td",24),A.bVm(),A.qex(41,27),A.DNE(42,W0,2,0,"th",23)(43,K0,2,1,"td",24),A.bVm(),A.qex(44,28),A.DNE(45,X0,2,0,"th",29)(46,Z0,4,3,"td",24),A.bVm(),A.qex(47,30),A.DNE(48,q0,2,0,"th",29)(49,$0,4,3,"td",24),A.bVm(),A.qex(50,31),A.DNE(51,Ag,3,0,"th",32)(52,eg,3,0,"td",33),A.bVm(),A.DNE(53,tg,1,0,"tr",34)(54,ng,1,0,"tr",35),A.k0s()()()}2&o&&(A.R7$(4),A.Y8G("icon",r.faExclamationTriangle),A.R7$(6),A.R50("ngModel",r.destinationPubkey),A.R7$(2),A.Y8G("ngIf",!r.destinationPubkey),A.R7$(4),A.Y8G("step",1e3)("min",0),A.R50("ngModel",r.amount),A.R7$(),A.Y8G("ngIf",!r.amount),A.R7$(8),A.Y8G("icon",r.faRoute),A.R7$(4),A.Y8G("ngIf",!0===r.flgLoading[0]),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.qrHops)("ngClass",A.eq3(15,L0,"error"===r.flgLoading[0])),A.R7$(23),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns))},dependencies:[de.YU,de.bT,de.B3,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.YS,hA.VZ,hA.vS,hA.cV,P.aY,fA.$z,UA.fg,yA.rl,yA.nJ,yA.TL,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.KS,z.$R,z.YZ,z.NB,M.Ld,J.V,de.QX],encapsulation:2}))}return n(),l})();function sg(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Message is required."),A.k0s())}let rg=(()=>{var n;class l{constructor(i,o,r){this.dataService=i,this.snackBar=o,this.logger=r,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new g.B,new g.B]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.signedMessage=this.message,this.signature=i.zbase})}onMessageChange(){this.signedMessage!==this.message&&(this.signature="")}onCopyField(i){this.snackBar.open("Signature copied."),this.logger.info("Copied Text: "+i)}resetData(){this.message="",this.signature="",this.signedMessage=""}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(Dt.u),A.rXU(js.UG),A.rXU(aA.gP))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-sign"]],standalone:!1,decls:22,vars:4,consts:[["form","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],[1,"my-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","row","fxLayoutAlign","start center",1,"signature-box","bordered-box","read-only"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","4","rtlClipboard","","type","button",3,"copied","payload"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"form",2,0)(3,"mat-form-field",3)(4,"mat-label"),A.EFF(5,"Message to sign"),A.k0s(),A.j41(6,"textarea",4),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.message,re)||(r.message=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.onMessageChange())}),A.k0s(),A.DNE(7,sg,2,0,"mat-error",5),A.k0s(),A.j41(8,"div",6)(9,"button",7),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.EFF(10,"Clear Field"),A.k0s(),A.j41(11,"button",8),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onSign())}),A.EFF(12,"Sign"),A.k0s()(),A.nrm(13,"mat-divider",9),A.j41(14,"div",10)(15,"p"),A.EFF(16,"Generated Signature"),A.k0s()(),A.j41(17,"div",11),A.EFF(18),A.k0s(),A.j41(19,"div",12)(20,"button",13),A.bIt("copied",function(re){return w.eBV(iA),w.Njj(r.onCopyField(re))}),A.EFF(21,"Copy Signature"),A.k0s()()()()}2&o&&(A.R7$(6),A.R50("ngModel",r.message),A.R7$(),A.Y8G("ngIf",!r.message),A.R7$(11),A.JRh(r.signature),A.R7$(2),A.Y8G("payload",r.signature))},dependencies:[de.bT,hA.qT,hA.me,hA.BC,hA.cb,hA.YS,hA.vS,hA.cV,fA.$z,UA.fg,yA.rl,yA.nJ,yA.TL,sn.q,Q.DJ,Q.sA,Q.UI,Ji.U,cA.N],styles:[".signature-box[_ngcontent-%COMP%]{padding:1rem}"]}))}return n(),l})();function ag(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Message is required."),A.k0s())}function og(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Signature is required."),A.k0s())}function lg(n,l){1&n&&(A.j41(0,"p",13)(1,"mat-icon",14),A.EFF(2,"close"),A.k0s(),A.EFF(3,"Verification failed, please check message and signature"),A.k0s())}function cg(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Pubkey Used"),A.k0s())}function gg(n,l){if(1&n&&(A.j41(0,"div",20)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(2),A.JRh(null==e.verifyRes?null:e.verifyRes.pubkey)}}function Bg(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",21)(1,"button",22),A.bIt("copied",function(o){w.eBV(e);const r=A.XpG(2);return w.Njj(r.onCopyField(o))}),A.EFF(2,"Copy Pubkey"),A.k0s()()}if(2&n){const e=A.XpG(2);A.R7$(),A.Y8G("payload",null==e.verifyRes?null:e.verifyRes.pubkey)}}function fg(n,l){if(1&n&&(A.j41(0,"div",15),A.nrm(1,"mat-divider",16),A.j41(2,"div",17),A.DNE(3,cg,2,0,"p",6),A.k0s(),A.DNE(4,gg,3,1,"div",18)(5,Bg,3,1,"div",19),A.k0s()),2&n){const e=A.XpG();A.R7$(3),A.Y8G("ngIf",e.verifyRes.verified),A.R7$(),A.Y8G("ngIf",e.verifyRes.verified),A.R7$(),A.Y8G("ngIf",e.verifyRes.verified)}}let ug=(()=>{var n;class l{constructor(i,o,r){this.dataService=i,this.snackBar=o,this.logger=r,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",verified:null},this.unSubs=[new g.B,new g.B]}onVerify(){if(!this.message||""===this.message||!this.signature||""===this.signature)return!0;this.dataService.verifyMessage(this.message,this.signature).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.verifyRes=i,this.showVerifyStatus=!0,this.verifiedMessage=this.message,this.verifiedSignature=this.signature})}onChange(){(this.verifiedMessage!==this.message||this.verifiedSignature!==this.signature)&&(this.showVerifyStatus=!1,this.verifyRes={pubkey:"",verified:null})}resetData(){this.message="",this.signature="",this.verifyRes=null,this.showVerifyStatus=!1}onCopyField(i){this.snackBar.open("Pubkey copied."),this.logger.info("Copied Text: "+i)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(Dt.u),A.rXU(js.UG),A.rXU(aA.gP))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-verify"]],standalone:!1,decls:21,vars:6,consts:[["form","ngForm"],["sign","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["matInput","","name","signature","tabindex","2","required","",3,"ngModelChange","keyup","ngModel"],["fxFlex","100","class","color-warn","fxLayoutAlign","start center",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],[1,"my-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start","class","bordered-box read-only padding-gap",4,"ngIf"],["fxLayout","row","class","mt-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"bordered-box","read-only","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","5","rtlClipboard","","type","button",3,"copied","payload"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",2)(1,"form",3,0)(3,"mat-form-field",4)(4,"mat-label"),A.EFF(5,"Message to verify"),A.k0s(),A.j41(6,"textarea",5),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.message,re)||(r.message=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.onChange())}),A.k0s(),A.DNE(7,ag,2,0,"mat-error",6),A.k0s(),A.j41(8,"mat-form-field",4)(9,"mat-label"),A.EFF(10,"Signature provided"),A.k0s(),A.j41(11,"input",7,1),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.signature,re)||(r.signature=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.onChange())}),A.k0s(),A.DNE(13,og,2,0,"mat-error",6),A.k0s(),A.DNE(14,lg,4,0,"p",8),A.j41(15,"div",9)(16,"button",10),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.EFF(17,"Clear Fields"),A.k0s(),A.j41(18,"button",11),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onVerify())}),A.EFF(19,"Verify"),A.k0s()(),A.DNE(20,fg,6,3,"div",12),A.k0s()()}2&o&&(A.R7$(6),A.R50("ngModel",r.message),A.R7$(),A.Y8G("ngIf",!r.message),A.R7$(4),A.R50("ngModel",r.signature),A.R7$(2),A.Y8G("ngIf",!r.signature),A.R7$(),A.Y8G("ngIf",r.showVerifyStatus&&!r.verifyRes.verified),A.R7$(6),A.Y8G("ngIf",r.showVerifyStatus&&r.verifyRes.verified))},dependencies:[de.bT,hA.qT,hA.me,hA.BC,hA.cb,hA.YS,hA.vS,hA.cV,fA.$z,oA.An,UA.fg,yA.rl,yA.nJ,yA.TL,sn.q,Q.DJ,Q.sA,Q.UI,Ji.U,cA.N],encapsulation:2}))}return n(),l})();const hg=()=>["all"],Eg=()=>["no_event"],Qc=n=>({width:n}),wg=n=>({"display-none":n});function Cg(n,l){if(1&n&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function dg(n,l){if(1&n&&(A.j41(0,"mat-option",14),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function Qg(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",7),A.nrm(1,"div",8),A.j41(2,"div",9)(3,"mat-form-field",10)(4,"mat-label"),A.EFF(5,"Filter By"),A.k0s(),A.j41(6,"mat-select",11),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilterBy,o)||(r.selFilterBy=o),w.Njj(o)}),A.bIt("selectionChange",function(){w.eBV(e);const o=A.XpG();return o.selFilter="",w.Njj(o.applyFilter())}),A.j41(7,"perfect-scrollbar"),A.DNE(8,dg,2,2,"mat-option",12),A.k0s()()(),A.j41(9,"mat-form-field",10)(10,"mat-label"),A.EFF(11,"Filter"),A.k0s(),A.j41(12,"input",13),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilter,o)||(r.selFilter=o),w.Njj(o)}),A.bIt("input",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())})("keyup",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())}),A.k0s()()()()}if(2&n){const e=A.XpG();A.R7$(6),A.R50("ngModel",e.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(3,hg).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter)}}function mg(n,l){1&n&&A.nrm(0,"mat-progress-bar",39)}function Mg(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Received Time"),A.k0s())}function pg(n,l){if(1&n&&(A.j41(0,"td",41),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.received_time),"dd/MMM/y HH:mm"))}}function Ig(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Resolved Time"),A.k0s())}function Dg(n,l){if(1&n&&(A.j41(0,"td",41),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.resolved_time),"dd/MMM/y HH:mm"))}}function Fg(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"In Channel ID"),A.k0s())}function yg(n,l){if(1&n&&(A.j41(0,"td",41),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.in_channel)}}function xg(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"In Channel"),A.k0s())}function Yg(n,l){if(1&n&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Qc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.in_channel_alias)}}function bg(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Out Channel ID"),A.k0s())}function vg(n,l){if(1&n&&(A.j41(0,"td",41),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.out_channel)}}function Rg(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Out Channel"),A.k0s())}function Sg(n,l){if(1&n&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Qc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.out_channel_alias)}}function Ng(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Payment Hash"),A.k0s())}function Tg(n,l){if(1&n&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Qc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash)}}function Pg(n,l){1&n&&(A.j41(0,"th",44),A.EFF(1,"Amount In (Sats)"),A.k0s())}function Ug(n,l){if(1&n&&(A.j41(0,"td",41)(1,"span",45),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.in_msat)/1e3,(null==e?null:e.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Lg(n,l){1&n&&(A.j41(0,"th",44),A.EFF(1,"Amount Out (Sats)"),A.k0s())}function Gg(n,l){if(1&n&&(A.j41(0,"td",41)(1,"span",45),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.out_msat)/1e3,(null==e?null:e.out_msat)<1e3?"1.0-4":"1.0-0")," ")}}function zg(n,l){1&n&&(A.j41(0,"th",44),A.EFF(1,"Fee (mSat)"),A.k0s())}function kg(n,l){if(1&n&&(A.j41(0,"span",45),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==e?null:e.fee)," ")}}function Hg(n,l){if(1&n&&(A.j41(0,"span",45),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==e?null:e.fee_msat)," ")}}function jg(n,l){if(1&n&&(A.j41(0,"td",41),A.DNE(1,kg,3,3,"span",46)(2,Hg,3,3,"span",46),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",null==e?null:e.fee),A.R7$(),A.Y8G("ngIf",!(null!=e&&e.fee)&&(null==e?null:e.fee_msat))}}function Og(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(){w.eBV(e);const o=A.XpG(2);return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Jg(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",51)(1,"button",52),A.bIt("click",function(o){const r=w.eBV(e).$implicit,iA=A.XpG(2);return w.Njj(iA.onForwardingEventClick(r,o))}),A.EFF(2,"View Info"),A.k0s()()}}function _g(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No forwarding history available."),A.k0s())}function Vg(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting forwarding history..."),A.k0s())}function Wg(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function Kg(n,l){if(1&n&&(A.j41(0,"td",53),A.DNE(1,_g,2,0,"p",54)(2,Vg,2,0,"p",54)(3,Wg,2,1,"p",54),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function Xg(n,l){if(1&n&&A.nrm(0,"tr",55),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,wg,(null==e.forwardingHistoryEvents?null:e.forwardingHistoryEvents.data)&&(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)>0))}}function Zg(n,l){1&n&&A.nrm(0,"tr",56)}function qg(n,l){1&n&&A.nrm(0,"tr",57)}function $g(n,l){if(1&n&&(A.j41(0,"div",15),A.DNE(1,mg,1,0,"mat-progress-bar",16),A.j41(2,"table",17,0),A.qex(4,18),A.DNE(5,Mg,2,0,"th",19)(6,pg,3,4,"td",20),A.bVm(),A.qex(7,21),A.DNE(8,Ig,2,0,"th",19)(9,Dg,3,4,"td",20),A.bVm(),A.qex(10,22),A.DNE(11,Fg,2,0,"th",19)(12,yg,2,1,"td",20),A.bVm(),A.qex(13,23),A.DNE(14,xg,2,0,"th",19)(15,Yg,4,4,"td",20),A.bVm(),A.qex(16,24),A.DNE(17,bg,2,0,"th",19)(18,vg,2,1,"td",20),A.bVm(),A.qex(19,25),A.DNE(20,Rg,2,0,"th",19)(21,Sg,4,4,"td",20),A.bVm(),A.qex(22,26),A.DNE(23,Ng,2,0,"th",19)(24,Tg,4,4,"td",20),A.bVm(),A.qex(25,27),A.DNE(26,Pg,2,0,"th",28)(27,Ug,4,4,"td",20),A.bVm(),A.qex(28,29),A.DNE(29,Lg,2,0,"th",28)(30,Gg,4,4,"td",20),A.bVm(),A.qex(31,30),A.DNE(32,zg,2,0,"th",28)(33,jg,3,2,"td",20),A.bVm(),A.qex(34,31),A.DNE(35,Og,6,0,"th",32)(36,Jg,3,0,"td",33),A.bVm(),A.qex(37,34),A.DNE(38,Kg,4,3,"td",35),A.bVm(),A.DNE(39,Xg,1,3,"tr",36)(40,Zg,1,0,"tr",37)(41,qg,1,0,"tr",38),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.forwardingHistoryEvents),A.R7$(37),A.Y8G("matFooterRowDef",A.lJ4(7,Eg)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}function AB(n,l){if(1&n&&A.nrm(0,"mat-paginator",58),2&n){const e=A.XpG();A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Sc=(()=>{var n;class l{constructor(i,o,r,iA,ne){this.logger=i,this.commonService=o,this.store=r,this.datePipe=iA,this.camelCaseWithReplace=ne,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:B.md,sortBy:"received_time",sortOrder:B.oi.DESCENDING},this.successfulEvents=[],this.displayedColumns=[],this.forwardingHistoryEvents=new z.I6([]),this.totalForwardedTransactions=0,this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(i){i.eventsData&&(this.apiCallStatus={status:B.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=i.eventsData.currentValue,this.successfulEvents=this.eventsData,this.totalForwardedTransactions=this.eventsData.length,this.paginator&&this.paginator.firstPage(),i.eventsData.firstChange||this.loadForwardingEventsTable(this.successfulEvents)),i.selFilter&&!i.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=i.pageSettings.find(o=>o.pageId===this.pageId)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.pageId)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.pipe((0,bt.s)(1)).subscribe(i=>{i.cln.apisCallStatus.FetchForwardingHistoryS.status===B.wn.UN_INITIATED&&!i.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,VA.uK)({payload:{status:B.xk.SETTLED}}))}),this.store.select(tA.Ie).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.eventsData.length<=0&&i.forwardingHistory.listForwards&&(this.totalForwardedTransactions=i.forwardingHistory.totalForwards||0,this.successfulEvents=i.forwardingHistory.listForwards||[],this.successfulEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.successfulEvents),this.logger.info(i))})}ngAfterViewInit(){setTimeout(()=>{this.successfulEvents.length>0&&this.loadForwardingEventsTable(this.successfulEvents)},0)}onForwardingEventClick(i,o){const r=[[{key:"status",value:"Settled",title:"Status",width:50,type:B.UN.STRING},{key:"fee",value:i.fee_msat,title:"Fee (mSats)",width:50,type:B.UN.NUMBER}],[{key:"received_time",value:i.received_time,title:"Received Time",width:50,type:B.UN.DATE_TIME},{key:"resolved_time",value:i.resolved_time,title:"Resolved Time",width:50,type:B.UN.DATE_TIME}],[{key:"in_channel",value:i.in_channel_alias,title:"Inbound Channel",width:50,type:B.UN.STRING},{key:"out_channel",value:i.out_channel_alias,title:"Outbound Channel",width:50,type:B.UN.STRING}],[{key:"in_msatoshi",value:i.in_msat,title:"In (mSats)",width:50,type:B.UN.NUMBER},{key:"out_msatoshi",value:i.out_msat,title:"Out (mSats)",width:50,type:B.UN.NUMBER}]];i.payment_hash&&r.unshift([{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:100,type:B.UN.STRING}]),this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"Event Information",message:r}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(i){const o=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.received_time?this.datePipe.transform(new Date(1e3*i.received_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(i.resolved_time?this.datePipe.transform(new Date(1e3*i.resolved_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(i.in_channel?i.in_channel.toLowerCase()+" ":"")+(i.out_channel?i.out_channel.toLowerCase()+" ":"")+(i.in_channel_alias?i.in_channel_alias.toLowerCase()+" ":"")+(i.out_channel_alias?i.out_channel_alias.toLowerCase()+" ":"")+(i.in_msat?+i.in_msat/1e3+" ":"")+(i.out_msat?+i.out_msat/1e3+" ":"")+(i.fee_msat?i.fee_msat+" ":"");break;case"received_time":case"resolved_time":r=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":r=(+(i.fee_msat||0)).toString()||"";break;case"in_msatoshi":r=(+(i.in_msat||0)/1e3).toString()||"";break;case"out_msatoshi":r=(+(i.out_msat||0)/1e3).toString()||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return r.includes(o)}}loadForwardingEventsTable(i){this.forwardingHistoryEvents=new z.I6([...i]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(o,r)=>{switch(r){case"in_msatoshi":return o.in_msat;case"out_msatoshi":return o.out_msat;case"fee":return o.fee_msat;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.forwardingHistoryEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(de.vh),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-forwarding-history"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Events")}]),A.OA$],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","received_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","resolved_time"],["matColumnDef","in_channel"],["matColumnDef","in_channel_alias"],["matColumnDef","out_channel"],["matColumnDef","out_channel_alias"],["matColumnDef","payment_hash"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","out_msatoshi"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",4,"ngIf"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(o,r){1&o&&(A.j41(0,"div",1),A.DNE(1,Cg,2,1,"div",2)(2,Qg,13,4,"div",3)(3,$g,42,8,"div",4)(4,AB,1,3,"mat-paginator",5),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",""!==r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,fA.$z,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,H.iy,M.ZF,M.Ld,de.QX,de.vh],encapsulation:2}))}return n(),l})();const eB=()=>["all"],tB=()=>["no_event"],Nc=n=>({width:n}),nB=n=>({"display-none":n});function iB(n,l){if(1&n&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function sB(n,l){if(1&n&&(A.j41(0,"mat-option",17),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function rB(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",7)(1,"div",8),A.nrm(2,"fa-icon",9),A.j41(3,"span"),A.EFF(4,"Maximum 1,000 failed transactions only."),A.k0s()(),A.j41(5,"div",10),A.nrm(6,"div",11),A.j41(7,"div",12)(8,"mat-form-field",13)(9,"mat-label"),A.EFF(10,"Filter By"),A.k0s(),A.j41(11,"mat-select",14),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilterBy,o)||(r.selFilterBy=o),w.Njj(o)}),A.bIt("selectionChange",function(){w.eBV(e);const o=A.XpG();return o.selFilter="",w.Njj(o.applyFilter())}),A.j41(12,"perfect-scrollbar"),A.DNE(13,sB,2,2,"mat-option",15),A.k0s()()(),A.j41(14,"mat-form-field",13)(15,"mat-label"),A.EFF(16,"Filter"),A.k0s(),A.j41(17,"input",16),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilter,o)||(r.selFilter=o),w.Njj(o)}),A.bIt("input",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())})("keyup",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())}),A.k0s()()()()()}if(2&n){const e=A.XpG();A.R7$(2),A.Y8G("icon",e.faExclamationTriangle),A.R7$(9),A.R50("ngModel",e.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(4,eB).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter)}}function aB(n,l){1&n&&A.nrm(0,"mat-progress-bar",41)}function oB(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Received Time"),A.k0s())}function lB(n,l){if(1&n&&(A.j41(0,"td",43),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.received_time),"dd/MMM/y HH:mm"))}}function cB(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Resolved Time"),A.k0s())}function gB(n,l){if(1&n&&(A.j41(0,"td",43),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.resolved_time),"dd/MMM/y HH:mm"))}}function BB(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"In Channel ID"),A.k0s())}function fB(n,l){if(1&n&&(A.j41(0,"td",43),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.in_channel)}}function uB(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"In Channel"),A.k0s())}function hB(n,l){if(1&n&&(A.j41(0,"td",43)(1,"span",44)(2,"span",45),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Nc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.in_channel_alias)}}function EB(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Out Channel ID"),A.k0s())}function wB(n,l){if(1&n&&(A.j41(0,"td",43),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.out_channel)}}function CB(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Out Channel"),A.k0s())}function dB(n,l){if(1&n&&(A.j41(0,"td",43)(1,"span",44)(2,"span",45),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Nc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.out_channel_alias)}}function QB(n,l){1&n&&(A.j41(0,"th",46),A.EFF(1,"Amount In (Sats)"),A.k0s())}function mB(n,l){if(1&n&&(A.j41(0,"td",43)(1,"span",47),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.in_msat)/1e3,(null==e?null:e.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function MB(n,l){1&n&&(A.j41(0,"th",46),A.EFF(1,"Amount Out (Sats)"),A.k0s())}function pB(n,l){if(1&n&&(A.j41(0,"td",43)(1,"span",47),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.out_msat)/1e3,(null==e?null:e.out_msat)<1e3?"1.0-4":"1.0-0")," ")}}function IB(n,l){1&n&&(A.j41(0,"th",46),A.EFF(1,"Fee (mSat)"),A.k0s())}function DB(n,l){if(1&n&&(A.j41(0,"span",47),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==e?null:e.fee,"1.0-0")," ")}}function FB(n,l){if(1&n&&(A.j41(0,"span",47),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==e?null:e.fee_msat,"1.0-0")," ")}}function yB(n,l){if(1&n&&(A.j41(0,"td",43),A.DNE(1,DB,3,4,"span",48)(2,FB,3,4,"span",48),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",null==e?null:e.fee),A.R7$(),A.Y8G("ngIf",!(null!=e&&e.fee)&&(null==e?null:e.fee_msat))}}function xB(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",49)(1,"div",50)(2,"mat-select",51),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",52),A.bIt("click",function(){w.eBV(e);const o=A.XpG(2);return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function YB(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",53)(1,"button",54),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG(2);return w.Njj(r.onFailedEventClick(o))}),A.EFF(2,"View Info"),A.k0s()()}}function bB(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No failed transaction available."),A.k0s())}function vB(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting failed transactions..."),A.k0s())}function RB(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function SB(n,l){if(1&n&&(A.j41(0,"td",55),A.DNE(1,bB,2,0,"p",56)(2,vB,2,0,"p",56)(3,RB,2,1,"p",56),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.failedForwardingEvents&&e.failedForwardingEvents.data)||(null==e.failedForwardingEvents||null==e.failedForwardingEvents.data?null:e.failedForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.failedForwardingEvents&&e.failedForwardingEvents.data)||(null==e.failedForwardingEvents||null==e.failedForwardingEvents.data?null:e.failedForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.failedForwardingEvents&&e.failedForwardingEvents.data)||(null==e.failedForwardingEvents||null==e.failedForwardingEvents.data?null:e.failedForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function NB(n,l){if(1&n&&A.nrm(0,"tr",57),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,nB,(null==e.failedForwardingEvents?null:e.failedForwardingEvents.data)&&(null==e.failedForwardingEvents||null==e.failedForwardingEvents.data?null:e.failedForwardingEvents.data.length)>0))}}function TB(n,l){1&n&&A.nrm(0,"tr",58)}function PB(n,l){1&n&&A.nrm(0,"tr",59)}function UB(n,l){if(1&n&&(A.j41(0,"div",18),A.DNE(1,aB,1,0,"mat-progress-bar",19),A.j41(2,"table",20,0),A.qex(4,21),A.DNE(5,oB,2,0,"th",22)(6,lB,3,4,"td",23),A.bVm(),A.qex(7,24),A.DNE(8,cB,2,0,"th",22)(9,gB,3,4,"td",23),A.bVm(),A.qex(10,25),A.DNE(11,BB,2,0,"th",22)(12,fB,2,1,"td",23),A.bVm(),A.qex(13,26),A.DNE(14,uB,2,0,"th",22)(15,hB,4,4,"td",23),A.bVm(),A.qex(16,27),A.DNE(17,EB,2,0,"th",22)(18,wB,2,1,"td",23),A.bVm(),A.qex(19,28),A.DNE(20,CB,2,0,"th",22)(21,dB,4,4,"td",23),A.bVm(),A.qex(22,29),A.DNE(23,QB,2,0,"th",30)(24,mB,4,4,"td",23),A.bVm(),A.qex(25,31),A.DNE(26,MB,2,0,"th",30)(27,pB,4,4,"td",23),A.bVm(),A.qex(28,32),A.DNE(29,IB,2,0,"th",30)(30,yB,3,2,"td",23),A.bVm(),A.qex(31,33),A.DNE(32,xB,6,0,"th",34)(33,YB,3,0,"td",35),A.bVm(),A.qex(34,36),A.DNE(35,SB,4,3,"td",37),A.bVm(),A.DNE(36,NB,1,3,"tr",38)(37,TB,1,0,"tr",39)(38,PB,1,0,"tr",40),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.failedForwardingEvents),A.R7$(34),A.Y8G("matFooterRowDef",A.lJ4(7,tB)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}function LB(n,l){if(1&n&&A.nrm(0,"mat-paginator",60),2&n){const e=A.XpG();A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let GB=(()=>{var n;class l{constructor(i,o,r,iA,ne){this.logger=i,this.commonService=o,this.store=r,this.datePipe=iA,this.camelCaseWithReplace=ne,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"failed",recordsPerPage:B.md,sortBy:"received_time",sortOrder:B.oi.DESCENDING},this.faExclamationTriangle=v.zpE,this.failedEvents=[],this.errorMessage="",this.displayedColumns=[],this.failedForwardingEvents=new z.I6([]),this.selFilter="",this.totalFailedTransactions=0,this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,VA.uK)({payload:{status:B.xk.FAILED}})),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.Dv).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalFailedTransactions=i.failedForwardingHistory.totalForwards||0,this.failedEvents=i.failedForwardingHistory.listForwards||[],this.failedEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadFailedEventsTable(this.failedEvents),this.logger.info(i)})}ngAfterViewInit(){this.failedEvents.length>0&&this.loadFailedEventsTable(this.failedEvents)}onFailedEventClick(i){const o=[[{key:"received_time",value:i.received_time,title:"Received Time",width:50,type:B.UN.DATE_TIME},{key:"resolved_time",value:i.resolved_time,title:"Resolved Time",width:50,type:B.UN.DATE_TIME}],[{key:"in_channel_alias",value:i.in_channel_alias,title:"Inbound Channel",width:50,type:B.UN.STRING},{key:"out_channel_alias",value:i.out_channel_alias,title:"Outbound Channel",width:50,type:B.UN.STRING}],[{key:"in_msatoshi",value:i.in_msat,title:"Amount In (mSats)",width:33,type:B.UN.NUMBER},{key:"out_msatoshi",value:i.out_msat,title:"Amount Out (mSats)",width:33,type:B.UN.NUMBER},{key:"fee",value:i.fee_msat,title:"Fee (mSats)",width:34,type:B.UN.NUMBER}]];i.payment_hash&&o?.unshift([{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:100,type:B.UN.STRING}]),this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"Failed Event Information",message:o}}}))}applyFilter(){this.failedForwardingEvents.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.failedForwardingEvents.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.received_time?this.datePipe.transform(new Date(1e3*i.received_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(i.resolved_time?this.datePipe.transform(new Date(1e3*i.resolved_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(i.in_channel?i.in_channel.toLowerCase()+" ":"")+(i.out_channel?i.out_channel.toLowerCase()+" ":"")+(i.in_channel_alias?i.in_channel_alias.toLowerCase()+" ":"")+(i.out_channel_alias?i.out_channel_alias.toLowerCase()+" ":"")+(i.fee_msat?i.fee_msat+" ":"")+(i.in_msat?+i.in_msat/1e3+" ":"")+(i.out_msat?+i.out_msat/1e3+" ":"")+(i.fee_msat?i.fee_msat+" ":"");break;case"received_time":case"resolved_time":r=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":r=(i.fee_msat||0)?.toString()||"";break;case"in_msatoshi":r=(+(i.in_msat||0)/1e3).toString()||"";break;case"out_msatoshi":r=(+(i.out_msat||0)/1e3).toString()||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return r.includes(o)}}loadFailedEventsTable(i){this.failedForwardingEvents=new z.I6([...i]),this.failedForwardingEvents.sort=this.sort,this.failedForwardingEvents.sortingDataAccessor=(o,r)=>{switch(r){case"in_msatoshi":return o.in_msat;case"out_msatoshi":return o.out_msat;case"fee":return o.fee_msat;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.failedForwardingEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.failedForwardingEvents)}onDownloadCSV(){this.failedForwardingEvents&&this.failedForwardingEvents.data&&this.failedForwardingEvents.data.length>0&&this.commonService.downloadFile(this.failedForwardingEvents.data,"Failed-transactions")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(de.vh),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-failed-history"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Failed events")}])],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-warn","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","received_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","resolved_time"],["matColumnDef","in_channel"],["matColumnDef","in_channel_alias"],["matColumnDef","out_channel"],["matColumnDef","out_channel_alias"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","out_msatoshi"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",4,"ngIf"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(o,r){1&o&&(A.j41(0,"div",1),A.DNE(1,iB,2,1,"div",2)(2,rB,18,5,"div",3)(3,UB,39,8,"div",4)(4,LB,1,3,"mat-paginator",5),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",""!==r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,P.aY,fA.$z,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,H.iy,M.ZF,M.Ld,de.QX,de.vh],encapsulation:2}))}return n(),l})();const zB=["tableIn"],kB=["tableOut"],HB=["paginatorIn"],jB=["paginatorOut"],OB=(n,l)=>({"mt-2":n,"mt-1":l}),JB=()=>["no_incoming_event"],_B=n=>({"mt-2":n}),VB=()=>["no_outgoing_event"],Sa=n=>({width:n}),Tc=n=>({"display-none":n});function WB(n,l){if(1&n&&(A.j41(0,"div",7),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function KB(n,l){1&n&&A.nrm(0,"mat-progress-bar",34)}function XB(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Channel ID"),A.k0s())}function ZB(n,l){if(1&n&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Sa,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.channel_id)}}function qB(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Peer Alias"),A.k0s())}function $B(n,l){if(1&n&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Sa,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.alias)}}function Af(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Events"),A.k0s())}function ef(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,e.events))}}function tf(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Amount (Sats)"),A.k0s())}function nf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.total_amount)/1e3,(null==e?null:e.total_amount)<1e3?"1.0-4":"1.0-0"))}}function sf(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Fee (Sats)"),A.k0s())}function rf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.total_fee)/1e3,(null==e?null:e.total_fee)<1e3?"1.0-4":"1.0-0"))}}function af(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No incoming routing peer available."),A.k0s())}function of(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting incoming routing peers..."),A.k0s())}function lf(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function cf(n,l){if(1&n&&(A.j41(0,"td",41),A.DNE(1,af,2,0,"p",42)(2,of,2,0,"p",42)(3,lf,2,1,"p",42),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function gf(n,l){if(1&n&&A.nrm(0,"tr",43),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Tc,(null==e.routingPeersIncoming?null:e.routingPeersIncoming.data)&&(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)>0))}}function Bf(n,l){1&n&&A.nrm(0,"tr",44)}function ff(n,l){1&n&&A.nrm(0,"tr",45)}function uf(n,l){1&n&&A.nrm(0,"mat-progress-bar",34)}function hf(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Channel ID"),A.k0s())}function Ef(n,l){if(1&n&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Sa,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.channel_id)}}function wf(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Peer Alias"),A.k0s())}function Cf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Sa,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.alias)}}function df(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Events"),A.k0s())}function Qf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,e.events))}}function mf(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Amount (Sats)"),A.k0s())}function Mf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.total_amount)/1e3,(null==e?null:e.total_amount)<1e3?"1.0-4":"1.0-0"))}}function pf(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Fee (Sats)"),A.k0s())}function If(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.total_fee)/1e3,(null==e?null:e.total_fee)<1e3?"1.0-4":"1.0-0"))}}function Df(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No outgoing routing peer available."),A.k0s())}function Ff(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting outgoing routing peers..."),A.k0s())}function yf(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function xf(n,l){if(1&n&&(A.j41(0,"td",41),A.DNE(1,Df,2,0,"p",42)(2,Ff,2,0,"p",42)(3,yf,2,1,"p",42),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function Yf(n,l){if(1&n&&A.nrm(0,"tr",43),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Tc,(null==e.routingPeersOutgoing?null:e.routingPeersOutgoing.data)&&(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)>0))}}function bf(n,l){1&n&&A.nrm(0,"tr",44)}function vf(n,l){1&n&&A.nrm(0,"tr",45)}function Rf(n,l){if(1&n&&(A.j41(0,"div",8)(1,"div",9)(2,"div",10)(3,"div",11),A.EFF(4,"Incoming"),A.k0s(),A.nrm(5,"div",12),A.k0s(),A.j41(6,"div",13),A.DNE(7,KB,1,0,"mat-progress-bar",14),A.j41(8,"table",15,0),A.qex(10,16),A.DNE(11,XB,2,0,"th",17)(12,ZB,4,4,"td",18),A.bVm(),A.qex(13,19),A.DNE(14,qB,2,0,"th",17)(15,$B,4,4,"td",18),A.bVm(),A.qex(16,20),A.DNE(17,Af,2,0,"th",21)(18,ef,4,3,"td",18),A.bVm(),A.qex(19,22),A.DNE(20,tf,2,0,"th",21)(21,nf,4,4,"td",18),A.bVm(),A.qex(22,23),A.DNE(23,sf,2,0,"th",21)(24,rf,4,4,"td",18),A.bVm(),A.qex(25,24),A.DNE(26,cf,4,3,"td",25),A.bVm(),A.DNE(27,gf,1,3,"tr",26)(28,Bf,1,0,"tr",27)(29,ff,1,0,"tr",28),A.k0s()(),A.nrm(30,"mat-paginator",29,1),A.k0s(),A.j41(32,"div",30)(33,"div",10)(34,"div",11),A.EFF(35,"Outgoing"),A.k0s(),A.nrm(36,"div",12),A.k0s(),A.j41(37,"div",31),A.DNE(38,uf,1,0,"mat-progress-bar",14),A.j41(39,"table",32,2),A.qex(41,16),A.DNE(42,hf,2,0,"th",17)(43,Ef,4,4,"td",18),A.bVm(),A.qex(44,19),A.DNE(45,wf,2,0,"th",17)(46,Cf,4,4,"td",18),A.bVm(),A.qex(47,20),A.DNE(48,df,2,0,"th",21)(49,Qf,4,3,"td",18),A.bVm(),A.qex(50,22),A.DNE(51,mf,2,0,"th",21)(52,Mf,4,4,"td",18),A.bVm(),A.qex(53,23),A.DNE(54,pf,2,0,"th",21)(55,If,4,4,"td",18),A.bVm(),A.qex(56,33),A.DNE(57,xf,4,3,"td",25),A.bVm(),A.DNE(58,Yf,1,3,"tr",26)(59,bf,1,0,"tr",27)(60,vf,1,0,"tr",28),A.k0s(),A.nrm(61,"mat-paginator",29,3),A.k0s()()()),2&n){const e=A.XpG();A.R7$(2),A.Y8G("ngClass",A.l_i(22,OB,e.screenSize===e.screenSizeEnum.XS,e.screenSize===e.screenSizeEnum.SM)),A.R7$(5),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersIncoming),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(25,JB)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns),A.R7$(),A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS),A.R7$(3),A.Y8G("ngClass",A.eq3(26,_B,e.screenSize!==e.screenSizeEnum.LG)),A.R7$(5),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersOutgoing),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(28,VB)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns),A.R7$(),A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Sf=(()=>{var n;class l{constructor(i,o,r,iA){this.logger=i,this.commonService=o,this.store=r,this.camelCaseWithReplace=iA,this.eventsData=[],this.selFilter="",this.nodePageDefs=B.Jd,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:B.md,sortBy:"total_fee",sortOrder:B.oi.DESCENDING},this.successfulEvents=[],this.displayedColumns=[],this.routingPeersIncoming=new z.I6([]),this.routingPeersOutgoing=new z.I6([]),this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(i){i.eventsData&&(this.apiCallStatus={status:B.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=i.eventsData.currentValue,this.successfulEvents=this.eventsData,i.eventsData.firstChange||this.loadRoutingPeersTable(this.successfulEvents))}ngOnInit(){this.store.pipe((0,bt.s)(1)).subscribe(i=>{i.cln.apisCallStatus.FetchForwardingHistoryS.status===B.wn.UN_INITIATED&&!i.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,VA.uK)({payload:{status:B.xk.SETTLED}}))}),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.Ie).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.successfulEvents=i.forwardingHistory.listForwards||[],this.successfulEvents.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.successfulEvents),this.logger.info(i))})}ngAfterViewInit(){this.successfulEvents.length>0&&this.loadRoutingPeersTable(this.successfulEvents)}applyIncomingFilter(){this.routingPeersIncoming.filter=this.filterIn.toLowerCase()}applyOutgoingFilter(){this.routingPeersOutgoing.filter=this.filterOut.toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):"all"}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(i,o)=>JSON.stringify(i).toLowerCase().includes(o),this.routingPeersOutgoing.filterPredicate=(i,o)=>JSON.stringify(i).toLowerCase().includes(o)}loadRoutingPeersTable(i){if(i.length>0){const o=this.groupRoutingPeers(i);this.routingPeersIncoming=new z.I6(o[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new z.I6(o[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new z.I6([]),this.routingPeersOutgoing=new z.I6([]);this.setFilterPredicate(),this.applyIncomingFilter(),this.applyOutgoingFilter(),this.logger.info(this.routingPeersIncoming),this.logger.info(this.routingPeersOutgoing)}groupRoutingPeers(i){const o=[],r=[];return i.forEach(iA=>{const ne=o?.find(ln=>ln.channel_id===iA.in_channel),re=r?.find(ln=>ln.channel_id===iA.out_channel);ne?(ne.events++,ne.total_amount=+ne.total_amount+ +(iA.in_msat||0),ne.total_fee=+(iA.in_msat||0)-+(iA.out_msat||0)+ +ne.total_fee):o.push({channel_id:iA.in_channel,alias:iA.in_channel_alias,events:1,total_amount:+(iA.in_msat||0),total_fee:+(iA.in_msat||0)-+(iA.out_msat||0)}),re?(re.events++,re.total_amount=+re.total_amount+ +(iA.out_msat||0),re.total_fee=+(iA.in_msat||0)-+(iA.out_msat||0)+ +re.total_fee):r.push({channel_id:iA.out_channel,alias:iA.out_channel_alias,events:1,total_amount:+(iA.out_msat||0),total_fee:+(iA.in_msat||0)-+(iA.out_msat||0)})}),[this.commonService.sortDescByKey(o,"total_fee"),this.commonService.sortDescByKey(r,"total_fee")]}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-routing-peers"]],viewQuery:function(o,r){if(1&o&&(A.GBs(zB,5,pA.B4),A.GBs(kB,5,pA.B4),A.GBs(HB,5),A.GBs(jB,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sortIn=iA.first),A.mGM(iA=A.lsd())&&(r.sortOut=iA.first),A.mGM(iA=A.lsd())&&(r.paginatorIn=iA.first),A.mGM(iA=A.lsd())&&(r.paginatorOut=iA.first)}},inputs:{eventsData:"eventsData",selFilter:"selFilter"},standalone:!1,features:[A.Jv_([{provide:H.xX,useValue:(0,B.on)("Peers")}]),A.OA$],decls:3,vars:2,consts:[["tableIn",""],["paginatorIn",""],["tableOut",""],["paginatorOut",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch","class","page-sub-title-container mt-2",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"page-sub-title-container","mt-2"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","channel_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","total_amount"],["matColumnDef","total_fee"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["fxLayout","column","fxFlex","49","fxLayoutAlign","end stretch"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","no_outgoing_event"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){1&o&&(A.j41(0,"div",4),A.DNE(1,WB,2,1,"div",5)(2,Rf,63,29,"div",6),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",""!==r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage))},dependencies:[de.YU,de.bT,de.B3,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,H.iy,M.Ld,de.QX],encapsulation:2}))}return n(),l})();const Nf=()=>["all"],Tf=n=>({"error-border":n}),Pf=()=>["no_channel"],Pc=n=>({width:n}),Uf=n=>({"display-none":n});function Lf(n,l){if(1&n&&(A.j41(0,"mat-option",33),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function Gf(n,l){1&n&&A.nrm(0,"mat-progress-bar",34)}function zf(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Amount (Sats)"),A.k0s())}function kf(n,l){if(1&n&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,(null==e?null:e.amount_msat)/1e3,"1.0-2")," ")}}function Hf(n,l){if(1&n&&(A.qex(0),A.DNE(1,kf,3,4,"span",39),A.bVm()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function jf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",37),A.EFF(2),A.k0s(),A.DNE(3,Hf,2,1,"ng-container",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" Active HTLCs: ",null==e||null==e.htlcs?null:e.htlcs.length," "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Of(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Alias/Direction"),A.k0s())}function Jf(n,l){if(1&n&&(A.j41(0,"span",37),A.EFF(1),A.nI1(2,"titlecase"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==e?null:e.direction)," ")}}function _f(n,l){if(1&n&&(A.qex(0),A.DNE(1,Jf,3,3,"span",41),A.bVm()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function Vf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",37),A.EFF(2),A.k0s(),A.DNE(3,_f,2,1,"ng-container",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(null==e?null:e.alias),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Wf(n,l){1&n&&(A.j41(0,"th",42)(1,"span",40),A.EFF(2,"HTLC ID"),A.k0s()())}function Kf(n,l){if(1&n&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==e?null:e.id)," ")}}function Xf(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,Kf,3,3,"span",39),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function Zf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,Xf,2,1,"span",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(null==e?null:e.id),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function qf(n,l){1&n&&(A.j41(0,"th",42)(1,"span",40),A.EFF(2,"Expiry"),A.k0s()())}function $f(n,l){if(1&n&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==e?null:e.expiry,"1.0-0")," ")}}function Au(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,$f,3,4,"span",39),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function eu(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,Au,2,1,"span",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function tu(n,l){1&n&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"State"),A.k0s()())}function nu(n,l){if(1&n&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"camelcaseWithReplace"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==e?null:e.state,"_")," ")}}function iu(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,nu,3,4,"span",39),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function su(n,l){if(1&n&&(A.j41(0,"td",44)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,iu,2,1,"span",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function ru(n,l){1&n&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"Local Trimmed"),A.k0s()())}function au(n,l){if(1&n&&(A.j41(0,"span",40),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",null!=e&&e.local_trimmed?"Yes":"No"," ")}}function ou(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,au,2,1,"span",39),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function lu(n,l){if(1&n&&(A.j41(0,"td",44)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,ou,2,1,"span",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function cu(n,l){1&n&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"Payment Hash"),A.k0s()())}function gu(n,l){if(1&n&&(A.j41(0,"span",48)(1,"span",49),A.EFF(2),A.k0s()()),2&n){const e=l.$implicit,i=A.XpG(3);A.Y8G("ngStyle",A.eq3(2,Pc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash)}}function Bu(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,gu,3,4,"span",47),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function fu(n,l){if(1&n&&(A.j41(0,"td",44)(1,"span",45)(2,"span",46),A.EFF(3),A.k0s()(),A.DNE(4,Bu,2,1,"span",38),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(3,Pc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function uu(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",50)(1,"div",51)(2,"mat-select",52),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",53),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function hu(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",58)(1,"button",59),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG(2).$implicit,iA=A.XpG();return w.Njj(iA.onHTLCClick(o,r))}),A.EFF(2),A.k0s()()}if(2&n){const e=l.index;A.R7$(2),A.SpI("View ",e+1)}}function Eu(n,l){if(1&n&&(A.j41(0,"div"),A.DNE(1,hu,3,1,"div",57),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function wu(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",54)(1,"span",55)(2,"button",56),A.bIt("click",function(){const o=w.eBV(e).$implicit;return w.Njj(o.is_expanded=!o.is_expanded)}),A.EFF(3),A.k0s()(),A.DNE(4,Eu,2,1,"div",38),A.k0s()}if(2&n){const e=l.$implicit;A.R7$(3),A.JRh(e.is_expanded?"Hide":"Show"),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Cu(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No active htlc available."),A.k0s())}function du(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting active htlcs..."),A.k0s())}function Qu(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function mu(n,l){if(1&n&&(A.j41(0,"td",60),A.DNE(1,Cu,2,0,"p",38)(2,du,2,0,"p",38)(3,Qu,2,1,"p",38),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function Mu(n,l){if(1&n&&A.nrm(0,"tr",61),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,Uf,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function pu(n,l){1&n&&A.nrm(0,"tr",62)}function Iu(n,l){1&n&&A.nrm(0,"tr",63)}let Du=(()=>{var n;class l{constructor(i,o,r,iA){this.logger=i,this.commonService=o,this.store=r,this.camelCaseWithReplace=iA,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"active_HTLCs",recordsPerPage:B.md,sortBy:"expiry",sortOrder:B.oi.DESCENDING},this.channels=new z.I6([]),this.channelsJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.BM).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:"");const o=[...i.activeChannels,...i.pendingChannels,...i.inactiveChannels];this.channelsJSONArr=o?.filter(r=>r.htlcs&&r.htlcs.length>0)||[],this.channelsJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(i)})}ngAfterViewInit(){this.channelsJSONArr.length>0&&this.loadHTLCsTable(this.channelsJSONArr)}onHTLCClick(i,o){const r=[[{key:"alias",value:o.alias,title:"Alias",width:100,type:B.UN.STRING}],[{key:"amount_msat",value:(i.amount_msat||0)/1e3,title:"Amount (Sats)",width:50,type:B.UN.NUMBER},{key:"direction",value:this.commonService.titleCase(i.direction||""),title:"Direction",width:50,type:B.UN.STRING}],[{key:"expiry",value:i.expiry,title:"Expiry",width:50,type:B.UN.NUMBER},{key:"state",value:this.camelCaseWithReplace.transform(i.state||"","_"),title:"State",width:50,type:B.UN.STRING}],[{key:"id",value:i.id,title:"HTLC ID",width:50,type:B.UN.STRING},{key:"local_trimmed",value:i.local_trimmed,title:"Local Trimmed",width:50,type:B.UN.BOOLEAN}],[{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:100,type:B.UN.STRING}]];this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"HTLC Information",message:r}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column||"","_"):this.commonService.titleCase(i)}setFilterPredicate(){this.channels.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.alias?i.alias.toLowerCase():"")+i.htlcs?.map(iA=>JSON.stringify(iA).toLowerCase()+(iA.local_trimmed?" yes ":" no "));break;case"direction":r=i.htlcs?.map(iA=>iA.direction+" ").toString()||"";break;case"id":r=i.htlcs?.map(iA=>iA.id+" ").toString()||"";break;case"expiry":r=i.htlcs?.map(iA=>iA.expiry+" ").toString()||"";break;case"state":r=i.htlcs?.map(iA=>this.camelCaseWithReplace.transform(iA.state||"","_").toLowerCase()+" ").toString()||"";break;case"payment_hash":r=i.htlcs?.map(iA=>iA.payment_hash+" ").toString()||"";break;case"local_trimmed":r=i.htlcs?.map(iA=>iA.local_trimmed?" yes ":" no ").toString()||"";break;case"amount_msat":r=i.htlcs?.map(iA=>(iA.amount_msat||0)/1e3)?.toString()||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return r.includes(o)}}loadHTLCsTable(i){this.channels=new z.I6(i?[...i]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,r)=>{switch(r){case"amount_msat":return this.commonService.sortByKey(o.htlcs,r,"number",this.sort?.direction),o.htlcs&&o.htlcs.length?o.htlcs.length:null;case"id":case"payment_hash":case"state":return this.commonService.sortByKey(o.htlcs,r,"string",this.sort?.direction),o;case"direction":return this.commonService.sortByKey(o.htlcs,r,"string",this.sort?.direction),o.alias?o.alias:o.id?o.id:null;case"expiry":return this.commonService.sortByKey(o.htlcs,r,"number",this.sort?.direction),o;case"local_trimmed":return this.commonService.sortByKey(o.htlcs,r,"boolean",this.sort?.direction),o;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.flattenHTLCs(),"ActiveHTLCs")}flattenHTLCs(){return JSON.parse(JSON.stringify(this.channels.data))?.reduce((r,iA)=>r.concat(iA.htlcs?iA.htlcs:iA),[])}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-active-htlcs-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("HTLCs")}])],decls:48,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","amount_msat"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","direction"],["matColumnDef","id"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","expiry"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","pl-3 htlc-row-span",4,"matHeaderCellDef"],["mat-cell","","class","pl-3",4,"matCellDef"],["matColumnDef","local_trimmed"],["matColumnDef","payment_hash"],["matColumnDef","actions"],["mat-header-cell","","class","px-2",4,"matHeaderCellDef"],["mat-cell","","class","px-2","fxLayout","column","fxLayoutAlign","center end",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayoutAlign","start center",1,"htlc-row-span"],[4,"ngIf"],["fxLayoutAlign","end center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-row-span"],["fxLayoutAlign","start center","class","htlc-row-span",4,"ngFor","ngForOf"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"pl-3","htlc-row-span"],["mat-cell","",1,"pl-3"],["fxLayout","row",1,"ellipsis-parent","htlc-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"ellipsis-child"],["fxLayoutAlign","start center","class","ellipsis-parent htlc-row-span",3,"ngStyle",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"ellipsis-parent","htlc-row-span",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","",1,"px-2"],["fxLayoutAlign","end center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayout","column","fxLayoutAlign","center end",1,"px-2"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-htlc-info",3,"click"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"div",2),A.nrm(2,"div",3),A.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",6),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilterBy,re)||(r.selFilterBy=re),w.Njj(re)}),A.bIt("selectionChange",function(){return w.eBV(iA),r.selFilter="",w.Njj(r.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,Lf,2,2,"mat-option",7),A.k0s()()(),A.j41(10,"mat-form-field",5)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",8),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilter,re)||(r.selFilter=re),w.Njj(re)}),A.bIt("input",function(){return w.eBV(iA),w.Njj(r.applyFilter())})("keyup",function(){return w.eBV(iA),w.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(14,"div",9),A.DNE(15,Gf,1,0,"mat-progress-bar",10),A.j41(16,"table",11,0),A.qex(18,12),A.DNE(19,zf,2,0,"th",13)(20,jf,4,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,Of,2,0,"th",13)(23,Vf,4,2,"td",14),A.bVm(),A.qex(24,16),A.DNE(25,Wf,3,0,"th",17)(26,Zf,4,2,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,qf,3,0,"th",17)(29,eu,4,2,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,tu,3,0,"th",20)(32,su,4,2,"td",21),A.bVm(),A.qex(33,22),A.DNE(34,ru,3,0,"th",20)(35,lu,4,2,"td",21),A.bVm(),A.qex(36,23),A.DNE(37,cu,3,0,"th",20)(38,fu,5,5,"td",21),A.bVm(),A.qex(39,24),A.DNE(40,uu,6,0,"th",25)(41,wu,5,2,"td",26),A.bVm(),A.qex(42,27),A.DNE(43,mu,4,3,"td",28),A.bVm(),A.DNE(44,Mu,1,3,"tr",29)(45,pu,1,0,"tr",30)(46,Iu,1,0,"tr",31),A.k0s()(),A.nrm(47,"mat-paginator",32),A.k0s()}2&o&&(A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,Nf).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(2),A.Y8G("ngIf",r.apiCallStatus.status===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.channels)("ngClass",A.eq3(15,Tf,""!==r.errorMessage)),A.R7$(28),A.Y8G("matFooterRowDef",A.lJ4(17,Pf)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("showFirstLastButtons",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,fA.$z,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,H.iy,M.ZF,M.Ld,de.QX,de.PV,R.VD],styles:[".mat-column-amount_msat[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem;padding-right:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mat-column-actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}"]}))}return n(),l})();function Fu(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",8),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.activeLink=o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("routerLink",A.mNQ(e.link))("active",i.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let yu=(()=>{var n;class l{constructor(i){this.router=i,this.faChartBar=v.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new g.B,new g.B,new g.B,new g.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(o=>o instanceof xt.gx)).subscribe({next:o=>{const r=this.links.find(iA=>o.urlAfterRedirects.includes(iA.link));this.activeLink=r?r.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-reports"]],standalone:!1,decls:12,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Reports"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),A.DNE(8,Fu,2,4,"div",7),A.k0s(),A.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),A.k0s()()()),2&o){const iA=A.sdS(10);A.R7$(),A.Y8G("icon",r.faChartBar),A.R7$(6),A.Y8G("tabPanel",iA),A.R7$(),A.Y8G("ngForOf",r.links)}},dependencies:[de.Sq,P.aY,QA.RN,QA.m2,Q.DJ,Q.sA,RA.Bu,RA.hQ,RA.Ql,xt.n3,Sn.Wk],encapsulation:2}))}return n(),l})();var Uc=We(1001),Lc=We(1993),Gc=We(4655);function xu(n,l){1&n&&(A.j41(0,"div",15),A.nrm(1,"mat-progress-bar",16),A.j41(2,"p"),A.EFF(3,"Getting Forwarding History..."),A.k0s()())}function Yu(n,l){if(1&n&&(A.j41(0,"div",17),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function bu(n,l){if(1&n&&(A.j41(0,"div",18),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=A.XpG();A.Y8G("@fadeIn",e.totalFeeMsat),A.R7$(),A.Lme("",A.i5U(2,3,e.totalFeeMsat/1e3||0,"1.0-2")," Sats/",A.bMT(3,6,e.filteredEventsBySelectedPeriod.length||0)," Events")}}function vu(n,l){1&n&&(A.j41(0,"div",15),A.EFF(1,"No routing report for the selected period"),A.k0s())}function Ru(n,l){if(1&n&&(A.j41(0,"span")(1,"span",20),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.j41(4,"span",20),A.EFF(5),A.nI1(6,"number"),A.k0s()()),2&n){const e=l.model,i=A.XpG(2);A.R7$(2),A.SpI("Events: ",A.bMT(3,2,(i.selReportBy===i.reportBy.EVENTS?e.value:e.extra.totalEvents)||0)),A.R7$(3),A.SpI("Fee: ",A.i5U(6,4,(i.selReportBy===i.reportBy.EVENTS?e.extra.totalFees:e.value)||0,"1.0-2"))}}function Su(n,l){if(1&n){const e=A.RV6();A.j41(0,"ngx-charts-bar-vertical",19),A.bIt("select",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onChartBarSelected(o))})("mouseup",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onChartMouseUp(o))}),A.DNE(1,Ru,7,7,"ng-template",null,0,A.C5r),A.k0s()}if(2&n){const e=A.XpG();A.Y8G("view",e.view)("results",e.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function Nu(n,l){if(1&n&&A.nrm(0,"rtl-cln-forwarding-history",21),2&n){const e=A.XpG();A.Y8G("eventsData",e.filteredEventsBySelectedPeriod)("selFilter",e.eventFilterValue)}}let Tu=(()=>{var n;class l{constructor(i,o,r,iA){this.logger=i,this.commonService=o,this.store=r,this.dataService=iA,this.reportPeriod=B.rs[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=B.aR,this.selReportBy=B.aR.FEES,this.totalFeeMsat=null,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===B.f7.XS||this.screenSize===B.f7.SM),this.store.pipe((0,bt.s)(1)).subscribe(i=>{i.cln.apisCallStatus.FetchForwardingHistoryS.status===B.wn.UN_INITIATED&&!i.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,VA.uK)({payload:{status:B.xk.SETTLED}}))}),this.store.select(tA.Ie).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{i.forwardingHistory.status===B.xk.SETTLED&&(this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR?this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:"":this.apiCallStatus.status===B.wn.COMPLETED&&(this.events=i.forwardingHistory.listForwards||[],this.filterForwardingEvents(this.startDate,this.endDate)),this.logger.info(i))}),this.commonService.containerSizeUpdated.pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{switch(this.screenSize){case B.f7.MD:this.screenPaddingX=i.width/10;break;case B.f7.LG:this.screenPaddingX=i.width/16;break;default:this.screenPaddingX=i.width/20}this.view=[i.width-this.screenPaddingX,i.height/2.2],this.logger.info("Container Size: "+JSON.stringify(i)),this.logger.info("View: "+JSON.stringify(this.view))})}filterForwardingEvents(i,o){const r=Math.round(i.getTime()/1e3),iA=Math.round(o.getTime()/1e3);this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeMsat=null,this.events&&this.events.length>0&&(this.events.forEach(ne=>{ne.received_time&&ne.received_time>=r&&ne.received_time0&&"ngx-charts"===i.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(i){this.eventFilterValue=this.reportPeriod===B.rs[1]?i.name+"/"+this.startDate.getFullYear():i.name.toString().padStart(2,"0")+"/"+B.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(i){const o=Math.round(i.getTime()/1e3),r=[];if(this.totalFeeMsat=0,this.reportPeriod===B.rs[1]){for(let iA=0;iA<12;iA++)r.push({name:B.KR[iA].name,value:0,extra:{totalEvents:0}});this.filteredEventsBySelectedPeriod?.map(iA=>{const ne=iA.received_time?new Date(1e3*+iA.received_time).getMonth():12;return r[ne].extra.totalEvents=r[ne].extra.totalEvents+1,r[ne].value=r[ne].value+ +(iA.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(iA.fee_msat||0),this.filteredEventsBySelectedPeriod})}else{for(let iA=0;iA{const ne=iA.received_time?Math.floor((+iA.received_time-o)/this.secondsInADay):0;return r[ne].extra.totalEvents=r[ne].extra.totalEvents+1,r[ne].value=r[ne].value+ +(iA.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(iA.fee_msat||0),this.filteredEventsBySelectedPeriod})}return r}prepareEventsReport(i){const o=Math.round(i.getTime()/1e3),r=[];if(this.totalFeeMsat=0,this.reportPeriod===B.rs[1]){for(let iA=0;iA<12;iA++)r.push({name:B.KR[iA].name,value:0,extra:{totalFees:0}});this.filteredEventsBySelectedPeriod?.map(iA=>{const ne=iA.received_time?new Date(1e3*+iA.received_time).getMonth():12;return r[ne].value=r[ne].value+1,r[ne].extra.totalFees=r[ne].extra.totalFees+ +(iA.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(iA.fee_msat||0),this.filteredEventsBySelectedPeriod})}else{for(let iA=0;iA{const ne=iA.received_time?Math.floor((+iA.received_time-o)/this.secondsInADay):0;return r[ne].value=r[ne].value+1,r[ne].extra.totalFees=r[ne].extra.totalFees+ +(iA.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(iA.fee_msat||0),this.filteredEventsBySelectedPeriod})}return r}onSelectionChange(i){const o=i.selDate.getMonth(),r=i.selDate.getFullYear();this.reportPeriod=i.selScrollRange,this.reportPeriod===B.rs[1]?(this.startDate=new Date(r,0,1,0,0,0),this.endDate=new Date(r,11,31,23,59,59)):(this.startDate=new Date(r,o,1,0,0,0),this.endDate=new Date(r,o,this.getMonthDays(o,r),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(i,o){return 1===i&&o%4==0?B.KR[i].days+1:B.KR[i].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(Dt.u))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-routing-report"]],hostBindings:function(o,r){1&o&&A.bIt("mouseup",function(ne){return r.onChartMouseUp(ne)})},standalone:!1,decls:19,vars:11,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start center",1,"my-1",3,"ngModelChange","change","ngModel"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1 error-border",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],["pageId","reports","tableId","routing",3,"eventsData","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["mode","indeterminate"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1","error-border"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],[1,"one-color",3,"select","mouseup","view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel"],[1,"tooltip-label"],["pageId","reports","tableId","routing",3,"eventsData","selFilter"]],template:function(o,r){1&o&&(A.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),A.bIt("stepChanged",function(ne){return r.onSelectionChange(ne)}),A.k0s(),A.j41(2,"div",3)(3,"mat-radio-group",4),A.mxI("ngModelChange",function(ne){return A.DH7(r.selReportBy,ne)||(r.selReportBy=ne),ne}),A.bIt("change",function(){return r.onSelReportByChange()}),A.j41(4,"span",5),A.EFF(5,"Report By: "),A.k0s(),A.j41(6,"mat-radio-button",6),A.EFF(7,"Fees"),A.k0s(),A.j41(8,"mat-radio-button",7),A.EFF(9,"Events"),A.k0s()()(),A.j41(10,"div",8),A.DNE(11,xu,4,0,"div",9)(12,Yu,2,1,"div",10)(13,bu,4,8,"div",11)(14,vu,2,0,"div",9),A.j41(15,"div",12),A.DNE(16,Su,3,11,"ngx-charts-bar-vertical",13),A.k0s(),A.j41(17,"div",12),A.DNE(18,Nu,1,2,"rtl-cln-forwarding-history",14),A.k0s()()()),2&o&&(A.R7$(3),A.R50("ngModel",r.selReportBy),A.R7$(3),A.Y8G("value",A.mNQ(r.reportBy.FEES)),A.R7$(2),A.Y8G("value",A.mNQ(r.reportBy.EVENTS)),A.R7$(3),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.ERROR),A.R7$(),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.COMPLETED&&r.routingReportData.length>0&&r.filteredEventsBySelectedPeriod.length>0),A.R7$(),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.COMPLETED&&(r.routingReportData.length<=0||r.filteredEventsBySelectedPeriod.length<=0)),A.R7$(2),A.Y8G("ngIf",r.routingReportData.length>0&&r.filteredEventsBySelectedPeriod.length>0),A.R7$(2),A.Y8G("ngIf",r.filteredEventsBySelectedPeriod&&r.filteredEventsBySelectedPeriod.length>0))},dependencies:[de.bT,hA.BC,hA.vS,eA.HM,qe.VT,qe._g,Q.DJ,Q.sA,Q.UI,Lc.L8,Gc.m,Sc,de.QX],encapsulation:2,data:{animation:[Uc.q]}}))}return n(),l})();var Pu=We(5085);function Uu(n,l){if(1&n&&(A.j41(0,"div",11),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Lme(" Paid ",A.i5U(2,2,e.transactionsReportSummary.amountPaidSelectedPeriod/1e3||0,"1.0-2")," Sats/",A.bMT(3,5,e.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function Lu(n,l){if(1&n&&(A.j41(0,"div",11),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Lme(" Received ",A.i5U(2,2,e.transactionsReportSummary.amountReceivedSelectedPeriod/1e3||0,"1.0-2")," Sats/",A.bMT(3,5,e.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function Gu(n,l){if(1&n&&(A.j41(0,"div",9),A.DNE(1,Uu,4,7,"div",10)(2,Lu,4,7,"div",10),A.k0s()),2&n){const e=A.XpG();A.Y8G("@fadeIn",e.transactionsReportSummary),A.R7$(),A.Y8G("ngIf",e.transactionsReportSummary.paymentsSelectedPeriod),A.R7$(),A.Y8G("ngIf",e.transactionsReportSummary.invoicesSelectedPeriod)}}function zu(n,l){1&n&&(A.j41(0,"div",12),A.EFF(1,"No transactions report for the selected period"),A.k0s())}function ku(n,l){if(1&n&&(A.j41(0,"span",14),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=l.model;A.R7$(),A.LHq("",e.name,": ",A.i5U(2,4,e.value||0,"1.0-2"),"/# ","Paid"===e.name?"Payments":"Invoices",": ",A.bMT(3,7,(null==e.extra?null:e.extra.total)||0))}}function Hu(n,l){if(1&n){const e=A.RV6();A.j41(0,"ngx-charts-bar-vertical-2d",13),A.bIt("select",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onChartBarSelected(o))})("mouseup",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onChartMouseUp(o))}),A.DNE(1,ku,4,9,"ng-template",null,0,A.C5r),A.k0s()}if(2&n){const e=A.XpG();A.Y8G("view",e.view)("results",e.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",e.reportPeriod===e.scrollRanges[0]?2:4)}}function ju(n,l){if(1&n&&A.nrm(0,"rtl-transactions-report-table",15),2&n){const e=A.XpG();A.Y8G("displayedColumns",e.displayedColumns)("tableSetting",e.tableSetting)("dataList",e.transactionsNonZeroReportData)("dataRange",e.reportPeriod)("selFilter",e.transactionFilterValue)}}let Ou=(()=>{var n;class l{constructor(i,o,r){this.logger=i,this.commonService=o,this.store=r,this.scrollRanges=B.rs,this.reportPeriod=B.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:B.md,sortBy:"date",sortOrder:B.oi.DESCENDING},this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[],this.transactionsNonZeroReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=B.f7,this.unSubs=[new g.B,new g.B,new g.B,new g.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===B.f7.XS||this.screenSize===B.f7.SM),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.KT).pipe((0,I.Q)(this.unSubs[1]),(0,N.E)(this.store.select(tA.Pj))).subscribe(([i,o])=>{this.payments=i.payments,this.invoices=o.listInvoices.invoices||[],this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData()}),this.commonService.containerSizeUpdated.pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{switch(this.screenSize){case B.f7.MD:this.screenPaddingX=i.width/10;break;case B.f7.LG:this.screenPaddingX=i.width/16;break;default:this.screenPaddingX=i.width/20}this.view=[i.width-this.screenPaddingX,i.height/2.2],this.logger.info("Container Size: "+JSON.stringify(i)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(i){"svg"===i.srcElement.tagName&&i.srcElement.classList.length>0&&"ngx-charts"===i.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(i){this.transactionFilterValue=this.reportPeriod===B.rs[1]?i.series+"/"+this.startDate.getFullYear():i.series.toString().padStart(2,"0")+"/"+B.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(i,o){const r=Math.round(i.getTime()/1e3),iA=Math.round(o.getTime()/1e3),ne=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const re=this.payments?.filter(Qt=>"complete"===Qt.status&&Qt.created_at&&Qt.created_at>=r&&Qt.created_at"paid"===Qt.status&&Qt.paid_at&&Qt.paid_at>=r&&Qt.paid_at{const wn=new Date(1e3*(Qt.created_at||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(Qt.amount_sent_msat||0),ne[wn].series[0].value=ne[wn].series[0].value+(Qt.amount_sent_msat||0)/1e3,ne[wn].series[0].extra.total=ne[wn].series[0].extra.total+1,this.transactionsReportSummary}),ln?.map(Qt=>{const wn=new Date(1e3*+(Qt.paid_at||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(Qt.amount_received_msat||0),ne[wn].series[1].value=ne[wn].series[1].value+(Qt.amount_received_msat||0)/1e3,ne[wn].series[1].extra.total=ne[wn].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let Qt=0;Qt{const wn=Math.floor((+(Qt.created_at||0)-r)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(Qt.amount_sent_msat||0),ne[wn].series[0].value=ne[wn].series[0].value+(Qt.amount_sent_msat||0)/1e3,ne[wn].series[0].extra.total=ne[wn].series[0].extra.total+1,this.transactionsReportSummary}),ln?.map(Qt=>{const wn=Math.floor((+(Qt.paid_at||0)-r)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(Qt.amount_received_msat||0),ne[wn].series[1].value=ne[wn].series[1].value+(Qt.amount_received_msat||0)/1e3,ne[wn].series[1].extra.total=ne[wn].series[1].extra.total+1,this.transactionsReportSummary})}return ne}prepareTableData(){return this.transactionsReportData?.reduce((i,o)=>o.series[0].extra.total>0||o.series[1].extra.total>0?i.concat({date:o.date,amount_paid:o.series[0].value,num_payments:o.series[0].extra.total,amount_received:o.series[1].value,num_invoices:o.series[1].extra.total}):i,[])}onSelectionChange(i){const o=i.selDate.getMonth(),r=i.selDate.getFullYear();this.reportPeriod=i.selScrollRange,this.reportPeriod===B.rs[1]?(this.startDate=new Date(r,0,1,0,0,0),this.endDate=new Date(r,11,31,23,59,59)):(this.startDate=new Date(r,o,1,0,0,0),this.endDate=new Date(r,o,this.getMonthDays(o,r),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(i,o){return 1===i&&o%4==0?B.KR[i].days+1:B.KR[i].days}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-transactions-report"]],hostBindings:function(o,r){1&o&&A.bIt("mouseup",function(ne){return r.onChartMouseUp(ne)})},standalone:!1,decls:9,vars:4,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"two-color",3,"select","mouseup","view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding"],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(o,r){1&o&&(A.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),A.bIt("stepChanged",function(ne){return r.onSelectionChange(ne)}),A.k0s(),A.j41(2,"div",3),A.DNE(3,Gu,3,3,"div",4)(4,zu,2,0,"div",5),A.j41(5,"div",6),A.DNE(6,Hu,3,13,"ngx-charts-bar-vertical-2d",7),A.k0s(),A.j41(7,"div",6),A.DNE(8,ju,1,5,"rtl-transactions-report-table",8),A.k0s()()()),2&o&&(A.R7$(3),A.Y8G("ngIf",r.transactionsNonZeroReportData.length>0),A.R7$(),A.Y8G("ngIf",r.transactionsNonZeroReportData.length<=0),A.R7$(2),A.Y8G("ngIf",r.transactionsNonZeroReportData.length>0),A.R7$(2),A.Y8G("ngIf",r.transactionsNonZeroReportData.length>0))},dependencies:[de.bT,Q.DJ,Q.sA,Q.UI,Lc.Dl,Gc.m,Pu.T,de.QX],encapsulation:2,data:{animation:[Uc.q]}}))}return n(),l})();var Vt=We(7186),Ju=We(13);function _u(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",9),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.activeLink=o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("routerLink",A.mNQ(e.link))("active",i.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let Vu=(()=>{var n;class l{constructor(i){this.router=i,this.faSearch=v.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new g.B,new g.B,new g.B,new g.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(o=>o instanceof xt.gx)).subscribe({next:o=>{const r=this.links.find(iA=>o.urlAfterRedirects.includes(iA.link));this.activeLink=r?r.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-graph"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Graph Lookups"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),A.DNE(8,_u,2,4,"div",7),A.k0s(),A.nrm(9,"mat-tab-nav-panel",null,0),A.j41(11,"div",8),A.nrm(12,"router-outlet"),A.k0s()()()()),2&o){const iA=A.sdS(10);A.R7$(),A.Y8G("icon",r.faSearch),A.R7$(6),A.Y8G("tabPanel",iA),A.R7$(),A.Y8G("ngForOf",r.links)}},dependencies:[de.Sq,P.aY,QA.RN,QA.m2,Q.DJ,Q.sA,Q.UI,RA.Bu,RA.hQ,RA.Ql,xt.n3,Sn.Wk],encapsulation:2}))}return n(),l})();var Wu=We(2643),Ku=We(7235);function Xu(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.offerError)}}function Zu(n,l){if(1&n&&(A.j41(0,"div",21),A.nrm(1,"fa-icon",22),A.DNE(2,Xu,2,1,"span",23),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.offerError)}}let qu=(()=>{var n;class l{constructor(i,o,r,iA,ne,re){this.dialogRef=i,this.data=o,this.store=r,this.decimalPipe=iA,this.commonService=ne,this.actions=re,this.faExclamationTriangle=v.zpE,this.description="",this.issuer="",this.offerValueHint="",this.information={},this.pageSize=B.md,this.offerError="",this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(tA.mH).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.information=i,this.issuer=this.information.alias}),this.actions.pipe((0,I.Q)(this.unSubs[2]),(0,nA.p)(i=>i.type===B.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(i=>{i.type===B.TC.UPDATE_API_CALL_STATUS_CLN&&"SaveNewOffer"===i.payload.action&&(i.payload.status===B.wn.ERROR&&(this.offerError=i.payload.message),i.payload.status===B.wn.COMPLETED&&this.dialogRef.close())})}onAddOffer(){this.offerError="";const i=this.offerValue?(1e3*this.offerValue).toString():"any";this.store.dispatch((0,VA.y0)({payload:{amount:i,description:this.description,issuer:this.issuer}}))}resetData(){this.description="",this.issuer=this.information.alias,this.offerValue=null,this.offerValueHint="",this.offerError=""}onOfferValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.offerValue&&this.offerValue>99&&(this.offerValueHint="",this.commonService.convertCurrency(this.offerValue,B.BQ.SATS,B.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,I.Q)(this.unSubs[3])).subscribe({next:i=>{this.offerValueHint="= "+this.decimalPipe.transform(i.OTHER,B.k.OTHER)+" "+i.unit},error:i=>{this.offerValueHint="Conversion Error: "+i}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(AA.il),A.rXU(de.QX),A.rXU(L.h),A.rXU(kA.En))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-create-offer"]],standalone:!1,decls:34,vars:8,consts:[["addOfferForm","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","6","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","tabindex","1","name","description",3,"ngModelChange","ngModel"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","tabindex","2","name","offerValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex","58","fxLayoutAlign","start end"],["matInput","","tabindex","3","name","issuer",3,"ngModelChange","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","4","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","5",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),A.EFF(5,"Create Offer"),A.k0s()(),A.j41(6,"button",6),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),A.EFF(13,"Description"),A.k0s(),A.j41(14,"input",10),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.description,re)||(r.description=re),w.Njj(re)}),A.k0s()(),A.j41(15,"div",11)(16,"mat-form-field",12)(17,"mat-label"),A.EFF(18,"Amount"),A.k0s(),A.j41(19,"input",13),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.offerValue,re)||(r.offerValue=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.onOfferValueChange())}),A.k0s(),A.j41(20,"span",14),A.EFF(21,"Sats "),A.k0s(),A.j41(22,"mat-hint"),A.EFF(23),A.k0s()(),A.j41(24,"mat-form-field",15)(25,"mat-label"),A.EFF(26,"Issuer"),A.k0s(),A.j41(27,"input",16),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.issuer,re)||(r.issuer=re),w.Njj(re)}),A.k0s()()(),A.DNE(28,Zu,3,2,"div",17),A.j41(29,"div",18)(30,"button",19),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.EFF(31,"Clear Field"),A.k0s(),A.j41(32,"button",20),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onAddOffer())}),A.EFF(33,"Create Offer"),A.k0s()()()()()()}2&o&&(A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(8),A.R50("ngModel",r.description),A.R7$(5),A.Y8G("step",100)("min",1),A.R50("ngModel",r.offerValue),A.R7$(4),A.JRh(r.offerValueHint),A.R7$(4),A.R50("ngModel",r.issuer),A.R7$(),A.Y8G("ngIf",""!==r.offerError))},dependencies:[de.bT,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.VZ,hA.vS,hA.cV,P.aY,wA.tx,fA.$z,QA.m2,QA.MM,UA.fg,yA.rl,yA.nJ,yA.MV,yA.yw,Q.DJ,Q.sA,Q.UI,cA.N,J.V],encapsulation:2}))}return n(),l})();var zc=We(2142);const $u=()=>["all"],Ah=n=>({"error-border":n}),eh=()=>["no_offer"],kc=n=>({"mr-0":n}),Hc=n=>({width:n}),th=n=>({"display-none":n});function nh(n,l){if(1&n&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function ih(n,l){1&n&&A.nrm(0,"mat-progress-bar",35)}function sh(n,l){1&n&&A.nrm(0,"th",36)}function rh(n,l){if(1&n&&A.nrm(0,"span",40),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,kc,e.screenSize===e.screenSizeEnum.XS))}}function ah(n,l){if(1&n&&A.nrm(0,"span",41),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,kc,e.screenSize===e.screenSizeEnum.XS))}}function oh(n,l){if(1&n&&(A.j41(0,"td",37),A.DNE(1,rh,1,3,"span",38)(2,ah,1,3,"span",39),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",e.active),A.R7$(),A.Y8G("ngIf",!e.active)}}function lh(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Offer ID"),A.k0s())}function ch(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Hc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.SpI(" ",e.offer_id," ")}}function gh(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Single Use"),A.k0s())}function Bh(n,l){if(1&n&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(e.single_use?"Yes":"No")}}function fh(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Used"),A.k0s())}function uh(n,l){if(1&n&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",e.used?"Yes":"No"," ")}}function hh(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Invoice"),A.k0s())}function Eh(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Hc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.SpI(" ",e.bolt12," ")}}function wh(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",48),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Ch(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",48),A.bIt("click",function(){w.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return w.Njj(r.onDisableOffer(o))}),A.EFF(1,"Disable Offer"),A.k0s()}}function dh(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",48),A.bIt("click",function(){w.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return w.Njj(r.onPrintOffer(o))}),A.EFF(1,"Export QR code"),A.k0s()}}function Qh(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",49)(1,"div",46)(2,"mat-select",50),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",48),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onOfferClick(o))}),A.EFF(5,"View Info"),A.k0s(),A.DNE(6,Ch,2,0,"mat-option",51)(7,dh,2,0,"mat-option",51),A.k0s()()()}if(2&n){const e=l.$implicit;A.R7$(6),A.Y8G("ngIf",e.active),A.R7$(),A.Y8G("ngIf",e.active)}}function mh(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No offer available."),A.k0s())}function Mh(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting offers..."),A.k0s())}function ph(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function Ih(n,l){if(1&n&&(A.j41(0,"td",52),A.DNE(1,mh,2,0,"p",53)(2,Mh,2,0,"p",53)(3,ph,2,1,"p",53),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.offers&&e.offers.data)||(null==e.offers||null==e.offers.data?null:e.offers.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.offers&&e.offers.data)||(null==e.offers||null==e.offers.data?null:e.offers.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.offers&&e.offers.data)||(null==e.offers||null==e.offers.data?null:e.offers.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function Dh(n,l){if(1&n&&A.nrm(0,"tr",54),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,th,(null==e.offers?null:e.offers.data)&&(null==e.offers||null==e.offers.data?null:e.offers.data.length)>0))}}function Fh(n,l){1&n&&A.nrm(0,"tr",55)}function yh(n,l){1&n&&A.nrm(0,"tr",56)}let xh=(()=>{var n;class l{constructor(i,o,r,iA,ne,re,ln){this.logger=i,this.store=o,this.commonService=r,this.rtlEffects=iA,this.dataService=ne,this.decimalPipe=re,this.camelCaseWithReplace=ln,this.faHistory=v.Int,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"offers",recordsPerPage:B.md,sortBy:"offer_id",sortOrder:B.oi.DESCENDING},this.newlyAddedOfferMemo="",this.newlyAddedOfferValue=0,this.description="",this.offerValue=null,this.offerValueHint="",this.displayedColumns=[],this.offerPaymentReq="",this.offerJSONArr=[],this.information={},this.private=!1,this.expiryStep=100,this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(tA.mH).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("active"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.O5).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.offerJSONArr=i.offers||[],this.offerJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr),this.logger.info(i)})}ngAfterViewInit(){this.offerJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr)}openCreateOfferModal(){this.store.dispatch((0,C.xO)({payload:{data:{pageSize:this.pageSize,component:qu}}}))}onOfferClick(i){this.store.dispatch((0,C.xO)({payload:{data:{offer:{used:i.used,single_use:i.single_use,active:i.active,offer_id:i.offer_id,bolt12:i.bolt12,created:i.created,label:i.label},newlyAdded:!1,component:zc.f}}}))}onDisableOffer(i){this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Disable Offer",titleMessage:"Disabling Offer: "+(i.offer_id||i.bolt12),noBtnText:"Cancel",yesBtnText:"Disable"}}})),this.rtlEffects.closeConfirm.pipe((0,I.Q)(this.unSubs[4])).subscribe(o=>{o&&this.store.dispatch((0,VA.jQ)({payload:{offer_id:i.offer_id}}))})}onPrintOffer(i){this.dataService.decodePayment(i.bolt12,!1).pipe((0,bt.s)(1)).subscribe(o=>{o.offer_id&&!o.offer_amount_msat&&(o.offer_amount_msat=0);const r={pageSize:"A5",pageOrientation:"portrait",pageMargins:[10,50,10,50],background:{svg:'\n \n \n \n \n \n ',width:249,height:333,absolutePosition:{x:84,y:160}},header:{text:o.offer_issuer||"",alignment:"center",fontSize:25,color:"#272727",margin:[0,20,0,0]},content:[{svg:'',width:249,height:40,alignment:"center"},{text:o.offer_description?o.offer_description.substring(0,160):"",alignment:"center",fontSize:16,color:"#5C5C5C"},{qr:i.bolt12,eccLevel:"M",fit:"227",alignment:"center",absolutePosition:{x:7,y:205}},{text:o?.offer_amount_msat&&0!==o?.offer_amount_msat?this.decimalPipe.transform((o.offer_amount_msat||0)/1e3)+" SATS":"Open amount",fontSize:20,bold:!1,color:"white",alignment:"center",absolutePosition:{x:0,y:430}},{text:"SCAN TO PAY",fontSize:22,bold:!0,color:"white",alignment:"center",absolutePosition:{x:0,y:455}}],footer:{svg:'\n \n \n \n \n ',alignment:"center"}};Wu.createPdf(r,null,null,Ku.pdfMake.vfs).download("Offer-"+(o&&o.offer_description?o.offer_description:i.bolt12))})}applyFilter(){this.offers.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.offers.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.active?" active":" inactive")+(i.used?" yes":" no")+(i.single_use?" single":" multiple")+JSON.stringify(i).toLowerCase(),("active"===o||"inactive"===o||"single"===o||"multiple"===o)&&(o=" "+o);break;case"active":r=i?.active?"active":"inactive";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"active"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadOffersTable(i){this.offers=new z.I6(i?[...i]:[]),this.offers.sort=this.sort,this.offers.sortingDataAccessor=(o,r)=>o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null,this.offers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.offers.data&&this.offers.data.length>0&&this.commonService.downloadFile(this.offers.data,"Offers")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(L.h),A.rXU(b.H),A.rXU(Dt.u),A.rXU(de.QX),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-offers-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Offers")}])],decls:49,vars:19,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","active"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","offer_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","single_use"],["matColumnDef","used"],["matColumnDef","bolt12"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_offer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active"],["mat-cell",""],["class","dot green","matTooltip","Active","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Inactive","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Active","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Inactive","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"button",3),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.openCreateOfferModal())}),A.EFF(3,"Create Offer"),A.k0s()(),A.j41(4,"div",4)(5,"div",5)(6,"div",6),A.nrm(7,"fa-icon",7),A.j41(8,"span",8),A.EFF(9,"Offers History"),A.k0s()(),A.j41(10,"div",9)(11,"mat-form-field",10)(12,"mat-label"),A.EFF(13,"Filter By"),A.k0s(),A.j41(14,"mat-select",11),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilterBy,re)||(r.selFilterBy=re),w.Njj(re)}),A.bIt("selectionChange",function(){return w.eBV(iA),r.selFilter="",w.Njj(r.applyFilter())}),A.j41(15,"perfect-scrollbar"),A.DNE(16,nh,2,2,"mat-option",12),A.k0s()()(),A.j41(17,"mat-form-field",10)(18,"mat-label"),A.EFF(19,"Filter"),A.k0s(),A.j41(20,"input",13),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilter,re)||(r.selFilter=re),w.Njj(re)}),A.bIt("input",function(){return w.eBV(iA),w.Njj(r.applyFilter())})("keyup",function(){return w.eBV(iA),w.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(21,"div",14),A.DNE(22,ih,1,0,"mat-progress-bar",15),A.j41(23,"table",16,0),A.qex(25,17),A.DNE(26,sh,1,0,"th",18)(27,oh,3,2,"td",19),A.bVm(),A.qex(28,20),A.DNE(29,lh,2,0,"th",21)(30,ch,4,4,"td",19),A.bVm(),A.qex(31,22),A.DNE(32,gh,2,0,"th",21)(33,Bh,2,1,"td",19),A.bVm(),A.qex(34,23),A.DNE(35,fh,2,0,"th",21)(36,uh,2,1,"td",19),A.bVm(),A.qex(37,24),A.DNE(38,hh,2,0,"th",21)(39,Eh,4,4,"td",19),A.bVm(),A.qex(40,25),A.DNE(41,wh,6,0,"th",26)(42,Qh,8,2,"td",27),A.bVm(),A.qex(43,28),A.DNE(44,Ih,4,3,"td",29),A.bVm(),A.DNE(45,Dh,1,3,"tr",30)(46,Fh,1,0,"tr",31)(47,yh,1,0,"tr",32),A.k0s()(),A.nrm(48,"mat-paginator",33),A.k0s()()}2&o&&(A.R7$(7),A.Y8G("icon",r.faHistory),A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,$u).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(2),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.offers)("ngClass",A.eq3(16,Ah,""!==r.errorMessage)),A.R7$(22),A.Y8G("matFooterRowDef",A.lJ4(18,eh)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("showFirstLastButtons",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,P.aY,fA.$z,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,HA.oV,H.iy,M.ZF,M.Ld],styles:[".mat-column-active[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return n(),l})();const Yh=()=>["all"],bh=n=>({"error-border":n}),vh=()=>["no_offer"],mc=n=>({width:n}),Rh=n=>({"display-none":n});function Sh(n,l){if(1&n&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function Nh(n,l){1&n&&A.nrm(0,"mat-progress-bar",35)}function Th(n,l){1&n&&(A.j41(0,"th",36),A.EFF(1,"Updated At"),A.k0s())}function Ph(n,l){if(1&n&&(A.j41(0,"td",37),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,e.lastUpdatedAt,"dd/MMM/y HH:mm"))}}function Uh(n,l){1&n&&(A.j41(0,"th",36),A.EFF(1,"Title"),A.k0s())}function Lh(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,mc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.title)}}function Gh(n,l){1&n&&(A.j41(0,"th",36),A.EFF(1,"Description"),A.k0s())}function zh(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,mc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.description)}}function kh(n,l){1&n&&(A.j41(0,"th",36),A.EFF(1,"Issuer"),A.k0s())}function Hh(n,l){if(1&n&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(e.issuer)}}function jh(n,l){1&n&&(A.j41(0,"th",36),A.EFF(1,"Invoice"),A.k0s())}function Oh(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,mc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.bolt12)}}function Jh(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Amount (Sats)"),A.k0s())}function _h(n,l){if(1&n&&(A.j41(0,"td",37)(1,"span",41),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(0===e.amountMSat?"Open":A.bMT(3,1,e.amountMSat/1e3))}}function Vh(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",42)(1,"div",43)(2,"mat-select",44),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",45),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Wh(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",46)(1,"div",43)(2,"mat-select",47),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",45),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onOfferBookmarkClick(o))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",45),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onRePayOffer(o))}),A.EFF(7,"Pay Again"),A.k0s(),A.j41(8,"mat-option",45),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onDeleteBookmark(o))}),A.EFF(9,"Delete Bookmark"),A.k0s()()()()}}function Kh(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No offer bookmarked."),A.k0s())}function Xh(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting offer bookmarks..."),A.k0s())}function Zh(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function qh(n,l){if(1&n&&(A.j41(0,"td",48),A.DNE(1,Kh,2,0,"p",49)(2,Xh,2,0,"p",49)(3,Zh,2,1,"p",49),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.offersBookmarks&&e.offersBookmarks.data)||(null==e.offersBookmarks||null==e.offersBookmarks.data?null:e.offersBookmarks.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.offersBookmarks&&e.offersBookmarks.data)||(null==e.offersBookmarks||null==e.offersBookmarks.data?null:e.offersBookmarks.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.offersBookmarks&&e.offersBookmarks.data)||(null==e.offersBookmarks||null==e.offersBookmarks.data?null:e.offersBookmarks.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function $h(n,l){if(1&n&&A.nrm(0,"tr",50),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,Rh,(null==e.offersBookmarks?null:e.offersBookmarks.data)&&(null==e.offersBookmarks||null==e.offersBookmarks.data?null:e.offersBookmarks.data.length)>0))}}function AE(n,l){1&n&&A.nrm(0,"tr",51)}function eE(n,l){1&n&&A.nrm(0,"tr",52)}let tE=(()=>{var n;class l{constructor(i,o,r,iA,ne,re){this.logger=i,this.store=o,this.commonService=r,this.rtlEffects=iA,this.datePipe=ne,this.camelCaseWithReplace=re,this.faHistory=v.Int,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"offer_bookmarks",recordsPerPage:B.md,sortBy:"lastUpdatedAt",sortOrder:B.oi.DESCENDING},this.displayedColumns=[],this.offersBookmarks=new z.I6([]),this.offersBookmarksJSONArr=[],this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.selFilter="",this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.ip).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.offersBookmarksJSONArr=i.offersBookmarks||[],this.offersBookmarksJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offersBookmarksJSONArr),this.logger.info(i)})}ngAfterViewInit(){this.offersBookmarksJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offersBookmarksJSONArr)}onOfferBookmarkClick(i){this.store.dispatch((0,C.xO)({payload:{data:{offer:{bolt12:i.bolt12},newlyAdded:!1,component:zc.f}}}))}onDeleteBookmark(i){this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Delete Bookmark",titleMessage:"Deleting Bookmark: "+(i.title||i.description),noBtnText:"Cancel",yesBtnText:"Delete"}}})),this.rtlEffects.closeConfirm.pipe((0,I.Q)(this.unSubs[2])).subscribe(o=>{o&&this.store.dispatch((0,VA.ED)({payload:{bolt12:i.bolt12}}))})}onRePayOffer(i){this.store.dispatch((0,C.xO)({payload:{data:{paymentType:B.Y0.OFFER,bolt12:i.bolt12,offerTitle:i.title,component:Bn}}}))}applyFilter(){this.offersBookmarks.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.offersBookmarks.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=JSON.stringify(i).toLowerCase();break;case"lastUpdatedAt":r=this.datePipe.transform(new Date(i.lastUpdatedAt||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"amountMSat":r=(i.amountMSat&&0!==i.amountMSat?(i.amountMSat/1e3).toString():"Open")||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return r.includes(o)}}loadOffersTable(i){this.offersBookmarks=new z.I6(i?[...i]:[]),this.offersBookmarks.sort=this.sort,this.offersBookmarks.sortingDataAccessor=(o,r)=>o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null,this.offersBookmarks.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.offersBookmarks.data&&this.offersBookmarks.data.length>0&&this.commonService.downloadFile(this.offersBookmarks.data,"OfferBookmarks")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(L.h),A.rXU(b.H),A.rXU(de.vh),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-offer-bookmarks-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Offer Bookmarks")}])],decls:50,vars:19,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","lastUpdatedAt"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","title"],["matColumnDef","description"],["matColumnDef","issuer"],["matColumnDef","bolt12"],["matColumnDef","amountMSat"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_offer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1),A.nrm(1,"div",2),A.j41(2,"div",3)(3,"div",4)(4,"div",5),A.nrm(5,"fa-icon",6),A.j41(6,"span",7),A.EFF(7,"Offer Bookmarks"),A.k0s()(),A.j41(8,"div",8)(9,"mat-form-field",9)(10,"mat-label"),A.EFF(11,"Filter By"),A.k0s(),A.j41(12,"mat-select",10),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilterBy,re)||(r.selFilterBy=re),w.Njj(re)}),A.bIt("selectionChange",function(){return w.eBV(iA),r.selFilter="",w.Njj(r.applyFilter())}),A.j41(13,"perfect-scrollbar"),A.DNE(14,Sh,2,2,"mat-option",11),A.k0s()()(),A.j41(15,"mat-form-field",9)(16,"mat-label"),A.EFF(17,"Filter"),A.k0s(),A.j41(18,"input",12),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilter,re)||(r.selFilter=re),w.Njj(re)}),A.bIt("input",function(){return w.eBV(iA),w.Njj(r.applyFilter())})("keyup",function(){return w.eBV(iA),w.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(19,"div",13),A.DNE(20,Nh,1,0,"mat-progress-bar",14),A.j41(21,"table",15,0),A.qex(23,16),A.DNE(24,Th,2,0,"th",17)(25,Ph,3,4,"td",18),A.bVm(),A.qex(26,19),A.DNE(27,Uh,2,0,"th",17)(28,Lh,4,4,"td",18),A.bVm(),A.qex(29,20),A.DNE(30,Gh,2,0,"th",17)(31,zh,4,4,"td",18),A.bVm(),A.qex(32,21),A.DNE(33,kh,2,0,"th",17)(34,Hh,2,1,"td",18),A.bVm(),A.qex(35,22),A.DNE(36,jh,2,0,"th",17)(37,Oh,4,4,"td",18),A.bVm(),A.qex(38,23),A.DNE(39,Jh,2,0,"th",24)(40,_h,4,3,"td",18),A.bVm(),A.qex(41,25),A.DNE(42,Vh,6,0,"th",26)(43,Wh,10,0,"td",27),A.bVm(),A.qex(44,28),A.DNE(45,qh,4,3,"td",29),A.bVm(),A.DNE(46,$h,1,3,"tr",30)(47,AE,1,0,"tr",31)(48,eE,1,0,"tr",32),A.k0s()(),A.nrm(49,"mat-paginator",33),A.k0s()()}2&o&&(A.R7$(5),A.Y8G("icon",r.faHistory),A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,Yh).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(2),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.offersBookmarks)("ngClass",A.eq3(16,bh,""!==r.errorMessage)),A.R7$(25),A.Y8G("matFooterRowDef",A.lJ4(18,vh)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("showFirstLastButtons",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,P.aY,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,H.iy,M.ZF,M.Ld,de.QX,de.vh],encapsulation:2}))}return n(),l})();const nE=()=>["all"],iE=()=>["no_event"],jc=n=>({width:n}),sE=n=>({"display-none":n});function rE(n,l){if(1&n&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function aE(n,l){if(1&n&&(A.j41(0,"mat-option",17),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function oE(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",7)(1,"div",8),A.nrm(2,"fa-icon",9),A.j41(3,"span"),A.EFF(4,"Maximum 1,000 local failed transactions only."),A.k0s()(),A.j41(5,"div",10),A.nrm(6,"div",11),A.j41(7,"div",12)(8,"mat-form-field",13)(9,"mat-label"),A.EFF(10,"Filter By"),A.k0s(),A.j41(11,"mat-select",14),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilterBy,o)||(r.selFilterBy=o),w.Njj(o)}),A.bIt("selectionChange",function(){w.eBV(e);const o=A.XpG();return o.selFilter="",w.Njj(o.applyFilter())}),A.j41(12,"perfect-scrollbar"),A.DNE(13,aE,2,2,"mat-option",15),A.k0s()()(),A.j41(14,"mat-form-field",13)(15,"mat-label"),A.EFF(16,"Filter"),A.k0s(),A.j41(17,"input",16),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilter,o)||(r.selFilter=o),w.Njj(o)}),A.bIt("input",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())})("keyup",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())}),A.k0s()()()()()}if(2&n){const e=A.XpG();A.R7$(2),A.Y8G("icon",e.faExclamationTriangle),A.R7$(9),A.R50("ngModel",e.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(4,nE).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter)}}function lE(n,l){1&n&&A.nrm(0,"mat-progress-bar",40)}function cE(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Received Time"),A.k0s())}function gE(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.received_time),"dd/MMM/y HH:mm"))}}function BE(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"In Channel ID"),A.k0s())}function fE(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.in_channel)}}function uE(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"In Channel"),A.k0s())}function hE(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,jc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.in_channel_alias)}}function EE(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Out Channel ID"),A.k0s())}function wE(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.out_channel)}}function CE(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Out Channel"),A.k0s())}function dE(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,jc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.out_channel_alias)}}function QE(n,l){1&n&&(A.j41(0,"th",45),A.EFF(1,"Amount In (Sats)"),A.k0s())}function mE(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",46),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.in_msat)/1e3,(null==e?null:e.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function ME(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Style"),A.k0s())}function pE(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.style)}}function IE(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Fail Reason"),A.k0s())}function DE(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.JRh(i.CLNFailReason[null==e?null:e.failreason])}}function FE(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(){w.eBV(e);const o=A.XpG(2);return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function yE(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",51)(1,"button",52),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG(2);return w.Njj(r.onFailedLocalEventClick(o))}),A.EFF(2,"View Info"),A.k0s()()}}function xE(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No failed transaction available."),A.k0s())}function YE(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting failed transactions..."),A.k0s())}function bE(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function vE(n,l){if(1&n&&(A.j41(0,"td",53),A.DNE(1,xE,2,0,"p",54)(2,YE,2,0,"p",54)(3,bE,2,1,"p",54),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.failedLocalForwardingEvents&&e.failedLocalForwardingEvents.data)||(null==e.failedLocalForwardingEvents||null==e.failedLocalForwardingEvents.data?null:e.failedLocalForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.failedLocalForwardingEvents&&e.failedLocalForwardingEvents.data)||(null==e.failedLocalForwardingEvents||null==e.failedLocalForwardingEvents.data?null:e.failedLocalForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.failedLocalForwardingEvents&&e.failedLocalForwardingEvents.data)||(null==e.failedLocalForwardingEvents||null==e.failedLocalForwardingEvents.data?null:e.failedLocalForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function RE(n,l){if(1&n&&A.nrm(0,"tr",55),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,sE,(null==e.failedLocalForwardingEvents?null:e.failedLocalForwardingEvents.data)&&(null==e.failedLocalForwardingEvents||null==e.failedLocalForwardingEvents.data?null:e.failedLocalForwardingEvents.data.length)>0))}}function SE(n,l){1&n&&A.nrm(0,"tr",56)}function NE(n,l){1&n&&A.nrm(0,"tr",57)}function TE(n,l){if(1&n&&(A.j41(0,"div",18),A.DNE(1,lE,1,0,"mat-progress-bar",19),A.j41(2,"table",20,0),A.qex(4,21),A.DNE(5,cE,2,0,"th",22)(6,gE,3,4,"td",23),A.bVm(),A.qex(7,24),A.DNE(8,BE,2,0,"th",22)(9,fE,2,1,"td",23),A.bVm(),A.qex(10,25),A.DNE(11,uE,2,0,"th",22)(12,hE,4,4,"td",23),A.bVm(),A.qex(13,26),A.DNE(14,EE,2,0,"th",22)(15,wE,2,1,"td",23),A.bVm(),A.qex(16,27),A.DNE(17,CE,2,0,"th",22)(18,dE,4,4,"td",23),A.bVm(),A.qex(19,28),A.DNE(20,QE,2,0,"th",29)(21,mE,4,4,"td",23),A.bVm(),A.qex(22,30),A.DNE(23,ME,2,0,"th",22)(24,pE,2,1,"td",23),A.bVm(),A.qex(25,31),A.DNE(26,IE,2,0,"th",22)(27,DE,2,1,"td",23),A.bVm(),A.qex(28,32),A.DNE(29,FE,6,0,"th",33)(30,yE,3,0,"td",34),A.bVm(),A.qex(31,35),A.DNE(32,vE,4,3,"td",36),A.bVm(),A.DNE(33,RE,1,3,"tr",37)(34,SE,1,0,"tr",38)(35,NE,1,0,"tr",39),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.failedLocalForwardingEvents),A.R7$(31),A.Y8G("matFooterRowDef",A.lJ4(7,iE)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}function PE(n,l){if(1&n&&A.nrm(0,"mat-paginator",58),2&n){const e=A.XpG();A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let UE=(()=>{var n;class l{constructor(i,o,r,iA,ne){this.logger=i,this.commonService=o,this.store=r,this.datePipe=iA,this.camelCaseWithReplace=ne,this.faExclamationTriangle=v.zpE,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"local_failed",recordsPerPage:B.md,sortBy:"received_time",sortOrder:B.oi.DESCENDING},this.CLNFailReason=B.iI,this.failedLocalEvents=[],this.errorMessage="",this.displayedColumns=[],this.failedLocalForwardingEvents=new z.I6([]),this.selFilter="",this.totalLocalFailedTransactions=0,this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,VA.uK)({payload:{status:B.xk.LOCAL_FAILED}})),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.aJ).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalLocalFailedTransactions=i.localFailedForwardingHistory.totalForwards||0,this.failedLocalEvents=i.localFailedForwardingHistory.listForwards||[],this.failedLocalEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadLocalfailedLocalEventsTable(this.failedLocalEvents),this.logger.info(i)})}ngAfterViewInit(){this.failedLocalEvents.length>0&&this.loadLocalfailedLocalEventsTable(this.failedLocalEvents)}onFailedLocalEventClick(i){this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"Local Failed Event Information",message:[[{key:"received_time",value:i.received_time,title:"Received Time",width:50,type:B.UN.DATE_TIME},{key:"in_channel_alias",value:i.in_channel_alias,title:"Inbound Channel",width:50,type:B.UN.STRING}],[{key:"in_msatoshi",value:i.in_msat,title:"Amount In (mSats)",width:100,type:B.UN.NUMBER}],[{key:"failreason",value:i.failreason?this.CLNFailReason[i.failreason]:"",title:"Reason for Failure",width:100,type:B.UN.STRING}]]}}}))}applyFilter(){this.failedLocalForwardingEvents.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.failedLocalForwardingEvents.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.received_time?this.datePipe.transform(new Date(1e3*i.received_time),"dd/MMM/y HH:mm")?.toLowerCase():"")+(i.in_channel_alias?i.in_channel_alias.toLowerCase():"")+(i.failreason&&this.CLNFailReason[i.failreason]?this.CLNFailReason[i.failreason].toLowerCase():"")+(i.in_msat?i.in_msat:"");break;case"received_time":r=this.datePipe.transform(new Date(1e3*(i.received_time||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"in_msatoshi":r=(+(i.in_msat||0)/1e3).toString()||"";break;case"failreason":r=i?.failreason?this.CLNFailReason[i?.failreason]:"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"failreason"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadLocalfailedLocalEventsTable(i){this.failedLocalForwardingEvents=new z.I6([...i]),this.failedLocalForwardingEvents.sort=this.sort,this.failedLocalForwardingEvents.sortingDataAccessor=(o,r)=>{switch(r){case"in_msatoshi":return o.in_msat;case"failreason":return o.failreason?this.CLNFailReason[o.failreason]:"";default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.failedLocalForwardingEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.failedLocalForwardingEvents)}onDownloadCSV(){this.failedLocalForwardingEvents&&this.failedLocalForwardingEvents.data&&this.failedLocalForwardingEvents.data.length>0&&this.commonService.downloadFile(this.failedLocalForwardingEvents.data,"Local-failed-transactions")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(de.vh),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-local-failed-history"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Local failed events")}])],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-warn","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","received_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","in_channel"],["matColumnDef","in_channel_alias"],["matColumnDef","out_channel"],["matColumnDef","out_channel_alias"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","style"],["matColumnDef","failreason"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(o,r){1&o&&(A.j41(0,"div",1),A.DNE(1,rE,2,1,"div",2)(2,oE,18,5,"div",3)(3,TE,36,8,"div",4)(4,PE,1,3,"mat-paginator",5),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",""!==r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,P.aY,fA.$z,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,H.iy,M.ZF,M.Ld,de.QX,de.vh],encapsulation:2}))}return n(),l})();const LE=["form"];function GE(n,l){1&n&&A.eu8(0)}function zE(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Requested amount is required."),A.k0s())}function kE(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fee rate is required."),A.k0s())}function HE(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Local amount is required."),A.k0s())}function jE(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Local amount must be greater than or equal to 20,000 Sats. It's required to cover the channel force close fee, if needed."),A.k0s())}function OE(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.SpI("Local amount must be less than or equal to ",e.totalBalance,".")}}function JE(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.channelConnectionError)}}function _E(n,l){if(1&n&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",28),A.DNE(2,JE,2,1,"span",19),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.channelConnectionError)}}function VE(n,l){1&n&&(A.j41(0,"th",47),A.EFF(1,"Type"),A.k0s())}function WE(n,l){if(1&n&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.type)}}function KE(n,l){1&n&&(A.j41(0,"th",47),A.EFF(1,"Address"),A.k0s())}function XE(n,l){if(1&n&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.address)}}function ZE(n,l){1&n&&(A.j41(0,"th",47),A.EFF(1,"Port"),A.k0s())}function qE(n,l){if(1&n&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.port)}}function $E(n,l){1&n&&A.nrm(0,"tr",49)}function Aw(n,l){1&n&&A.nrm(0,"tr",50)}function ew(n,l){if(1&n&&(A.j41(0,"mat-expansion-panel",30)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),A.EFF(4,"Node: \xa0"),A.k0s(),A.j41(5,"strong",31),A.EFF(6),A.k0s()()(),A.j41(7,"div",13)(8,"div",6)(9,"div",7)(10,"h4",32),A.EFF(11,"Pubkey"),A.k0s(),A.j41(12,"span",33),A.EFF(13),A.k0s()()(),A.nrm(14,"mat-divider",34),A.j41(15,"div",6)(16,"div",7)(17,"h4",32),A.EFF(18,"Last Timestamp"),A.k0s(),A.j41(19,"span",35),A.EFF(20),A.nI1(21,"date"),A.k0s()()(),A.nrm(22,"mat-divider",34),A.j41(23,"div",36)(24,"h4",37),A.EFF(25,"Addresses"),A.k0s(),A.j41(26,"div",38)(27,"table",39,5),A.qex(29,40),A.DNE(30,VE,2,0,"th",41)(31,WE,2,1,"td",42),A.bVm(),A.qex(32,43),A.DNE(33,KE,2,0,"th",41)(34,XE,2,1,"td",42),A.bVm(),A.qex(35,44),A.DNE(36,ZE,2,0,"th",41)(37,qE,2,1,"td",42),A.bVm(),A.DNE(38,$E,1,0,"tr",45)(39,Aw,1,0,"tr",46),A.k0s()()()()()),2&n){const e=A.XpG(2);A.R7$(6),A.JRh((null==e.node?null:e.node.alias)||(null==e.node?null:e.node.nodeid)),A.R7$(7),A.JRh(e.node.nodeid),A.R7$(7),A.JRh(A.i5U(21,6,1e3*e.node.last_timestamp,"dd/MMM/y HH:mm")),A.R7$(7),A.Y8G("dataSource",e.node.addresses),A.R7$(11),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}function tw(n,l){if(1&n&&A.DNE(0,ew,40,9,"mat-expansion-panel",29),2&n){const e=A.XpG();A.Y8G("ngIf",e.node)}}let nw=(()=>{var n;class l{constructor(i,o,r,iA){this.dialogRef=i,this.data=o,this.actions=r,this.store=iA,this.faExclamationTriangle=v.zpE,this.totalBalance=0,this.node={},this.requestedAmount=0,this.feeRate=0,this.localAmount=0,this.channelConnectionError="",this.displayedColumns=["type","address","port"],this.unSubs=[new g.B,new g.B]}ngOnInit(){this.alertTitle=this.data.alertTitle||"",this.totalBalance=this.data.message?.balance||0,this.node=this.data.message?.node||{},this.requestedAmount=this.data.message?.requestedAmount||0,this.feeRate=this.data.message?.feeRate||0,this.localAmount=this.data.message?.localAmount||0,this.actions.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(i=>i.type===B.TC.UPDATE_API_CALL_STATUS_CLN||i.type===B.TC.FETCH_CHANNELS_CLN)).subscribe(i=>{i.type===B.TC.UPDATE_API_CALL_STATUS_CLN&&i.payload.status===B.wn.ERROR&&"SaveNewChannel"===i.payload.action&&(this.channelConnectionError=i.payload.message),i.type===B.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close()})}onClose(){this.dialogRef.close(!1)}resetData(){this.form.resetForm(),this.form.controls.ramount.setValue(this.data.message?.requestedAmount),this.form.controls.feerate.setValue(this.data.message?.feeRate),this.form.controls.lamount.setValue(this.data.message?.localAmount),this.calculateFee(),this.channelConnectionError=""}calculateFee(){this.node.channel_opening_fee=+(this.node.option_will_fund?.lease_fee_base_msat||0)/1e3+this.requestedAmount*+(this.node.option_will_fund?.lease_fee_basis||0)/1e4+ +(this.node.option_will_fund?.funding_weight||0)/4*this.feeRate}onOpenChannel(){if(!this.node||!this.node.option_will_fund||!this.requestedAmount||!this.feeRate||!this.localAmount||this.localAmount<2e4)return!0;const i={peerId:this.node.nodeid||"",amount:this.localAmount.toString(),feeRate:this.feeRate+"perkb",requestAmount:this.requestedAmount.toString(),compactLease:this.node.option_will_fund.compact_lease,announce:!0};this.store.dispatch((0,VA.vL)({payload:i}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(kA.En),A.rXU(AA.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-open-liquidity-channel"]],viewQuery:function(o,r){if(1&o&&A.GBs(LE,7),2&o){let iA;A.mGM(iA=A.lsd())&&(r.form=iA.first)}},standalone:!1,decls:54,vars:24,consts:[["form","ngForm"],["ramount","ngModel"],["feeRt","ngModel"],["lamount","ngModel"],["nodeDetailsExpansionBlock",""],["table",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","6","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[4,"ngTemplateOutlet"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","30","fxLayoutAlign","start end"],["autoFocus","","matInput","","type","number","tabindex","1","required","","name","ramount",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],[4,"ngIf"],["matInput","","type","number","tabindex","2","required","","name","feerate",3,"ngModelChange","keyup","step","min","ngModel"],["matInput","","type","number","tabindex","3","required","","name","lamount",3,"ngModelChange","step","min","max","ngModel"],["fxFlex","100",1,"alert","alert-info","mt-4"],["fxFlex","100","class","alert alert-danger mt-2",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","4",1,"mr-1",3,"click"],["autoFocus","","mat-button","","color","primary","tabindex","5",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-2"],[1,"mr-1","alert-icon",3,"icon"],["class","flat-expansion-panel mt-1 mb-2","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","mt-1","mb-2"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],[1,"overflow-wrap","foreground-secondary-text"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxFlex","100",1,"font-bold-500","mb-1"],[1,"table-container"],["mat-table","","matSort","",1,"overflow-auto",3,"dataSource"],["matColumnDef","type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","port"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",6)(1,"div",7)(2,"mat-card-header",8)(3,"div",9)(4,"span",10),A.EFF(5),A.k0s()(),A.j41(6,"button",11),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",12)(9,"form",13,0),A.DNE(11,GE,1,0,"ng-container",14),A.j41(12,"div",15)(13,"mat-form-field",16)(14,"mat-label"),A.EFF(15,"Requested Amount"),A.k0s(),A.j41(16,"input",17,1),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.requestedAmount,re)||(r.requestedAmount=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.calculateFee())}),A.k0s(),A.j41(18,"span",18),A.EFF(19," Sats "),A.k0s(),A.DNE(20,zE,2,0,"mat-error",19),A.k0s(),A.j41(21,"mat-form-field",16)(22,"mat-label"),A.EFF(23,"Fee Rate"),A.k0s(),A.j41(24,"input",20,2),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.feeRate,re)||(r.feeRate=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.calculateFee())}),A.k0s(),A.j41(26,"span",18),A.EFF(27," Sats/vByte "),A.k0s(),A.DNE(28,kE,2,0,"mat-error",19),A.k0s(),A.j41(29,"mat-form-field",16)(30,"mat-label"),A.EFF(31,"Local Amount"),A.k0s(),A.j41(32,"input",21,3),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.localAmount,re)||(r.localAmount=re),w.Njj(re)}),A.k0s(),A.j41(34,"mat-hint"),A.EFF(35),A.nI1(36,"number"),A.k0s(),A.j41(37,"span",18),A.EFF(38," Sats "),A.k0s(),A.DNE(39,HE,2,0,"mat-error",19)(40,jE,2,0,"mat-error",19)(41,OE,2,1,"mat-error",19),A.k0s()(),A.j41(42,"div",22)(43,"span"),A.EFF(44),A.nI1(45,"number"),A.k0s()(),A.DNE(46,_E,3,2,"div",23),A.j41(47,"div",24)(48,"button",25),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.EFF(49,"Clear"),A.k0s(),A.j41(50,"button",26),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onOpenChannel())}),A.EFF(51,"Execute"),A.k0s()()()()()(),A.DNE(52,tw,1,1,"ng-template",null,4,A.C5r)}if(2&o){const iA=A.sdS(17),ne=A.sdS(25),re=A.sdS(33),ln=A.sdS(53);A.R7$(5),A.JRh(r.alertTitle),A.R7$(6),A.Y8G("ngTemplateOutlet",ln),A.R7$(5),A.Y8G("step",1e4)("min",0),A.R50("ngModel",r.requestedAmount),A.R7$(4),A.Y8G("ngIf",null==iA.errors?null:iA.errors.required),A.R7$(4),A.Y8G("step",10)("min",0),A.R50("ngModel",r.feeRate),A.R7$(4),A.Y8G("ngIf",null==ne.errors?null:ne.errors.required),A.R7$(4),A.Y8G("step",1e4)("min",2e4)("max",r.totalBalance),A.R50("ngModel",r.localAmount),A.R7$(3),A.SpI("Remaining: ",A.bMT(36,20,r.totalBalance-(r.localAmount?r.localAmount:0))),A.R7$(4),A.Y8G("ngIf",null==re.errors?null:re.errors.required),A.R7$(),A.Y8G("ngIf",null==re.errors?null:re.errors.min),A.R7$(),A.Y8G("ngIf",null==re.errors?null:re.errors.max),A.R7$(3),A.SpI("Total cost to lease ",A.bMT(45,22,r.node.channel_opening_fee)," (Sats)"),A.R7$(2),A.Y8G("ngIf",""!==r.channelConnectionError)}},dependencies:[de.bT,de.T3,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.YS,hA.VZ,hA.zX,hA.vS,hA.cV,P.aY,fA.$z,QA.m2,QA.MM,gi.GK,gi.Z2,gi.WN,UA.fg,yA.rl,yA.nJ,yA.MV,yA.TL,yA.yw,sn.q,Q.DJ,Q.sA,Q.UI,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.KS,z.$R,z.YZ,z.NB,cA.N,Vn.z,J.V,de.QX,de.vh],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]}))}return n(),l})();var iw=We(6471);const sw=()=>["all"],rw=n=>({"error-border":n}),aw=()=>["no_lqNode"],Oc=n=>({width:n}),ow=n=>({"display-none":n});function lw(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Channel amount is required."),A.k0s())}function cw(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Channel opening fee rate is required."),A.k0s())}function gw(n,l){if(1&n&&(A.j41(0,"mat-option",49),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function Bw(n,l){1&n&&A.nrm(0,"mat-progress-bar",50)}function fw(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Alias"),A.k0s())}function uw(n,l){if(1&n&&(A.j41(0,"mat-chip",57),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ","tor"===e?"Tor":"ipv"===e?"Clearnet":e," ")}}function hw(n,l){if(1&n&&(A.j41(0,"td",52)(1,"div",53)(2,"span",54),A.EFF(3),A.j41(4,"mat-chip-list",55),A.DNE(5,uw,2,1,"mat-chip",56),A.k0s()()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(3,Oc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.SpI(" ",null==e?null:e.alias," "),A.R7$(2),A.Y8G("ngForOf",e.address_types)}}function Ew(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Node ID"),A.k0s())}function ww(n,l){if(1&n&&(A.j41(0,"td",52)(1,"div",53)(2,"span",58),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Oc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.nodeid)}}function Cw(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Last Announcement At"),A.k0s())}function dw(n,l){if(1&n&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.last_timestamp),"dd/MMM/y HH:mm")||"-")}}function Qw(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Compact Lease"),A.k0s())}function mw(n,l){if(1&n&&(A.j41(0,"td",52),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e||null==e.option_will_fund?null:e.option_will_fund.compact_lease)}}function Mw(n,l){1&n&&(A.j41(0,"th",59),A.EFF(1," Lease Fee"),A.k0s())}function pw(n,l){if(1&n&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Lme(" ",A.i5U(2,2,(null==e||null==e.option_will_fund?null:e.option_will_fund.lease_fee_base_msat)/1e3,"1.0-0")," Sats + ",A.i5U(3,5,(null==e||null==e.option_will_fund?null:e.option_will_fund.lease_fee_basis)/100,"1.2-2"),"% ")}}function Iw(n,l){1&n&&(A.j41(0,"th",59),A.EFF(1," Routing Fee"),A.k0s())}function Dw(n,l){if(1&n&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Lme(" ",A.i5U(2,2,(null==e||null==e.option_will_fund?null:e.option_will_fund.channel_fee_max_base_msat)/1e3,"1.0-0")," Sats + ",A.i5U(3,5,1e3*(null==e||null==e.option_will_fund?null:e.option_will_fund.channel_fee_max_proportional_thousandths),"1.0-0")," ppm ")}}function Fw(n,l){1&n&&(A.j41(0,"th",60),A.EFF(1,"Channel Opening Fee (Sats)"),A.k0s())}function yw(n,l){if(1&n&&(A.j41(0,"td",52)(1,"span",61),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,e.channel_opening_fee,"1.0-0")," ")}}function xw(n,l){1&n&&(A.j41(0,"th",60),A.EFF(1,"Funding Weight"),A.k0s())}function Yw(n,l){if(1&n&&(A.j41(0,"td",52)(1,"span",61),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,null==e||null==e.option_will_fund?null:e.option_will_fund.funding_weight,"1.0-0")," ")}}function bw(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",59)(1,"div",62)(2,"mat-select",63),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",64),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function vw(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",65)(1,"div",62)(2,"mat-select",63),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",64),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onViewLeaseInfo(o))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",64),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onOpenChannel(o))}),A.EFF(7,"Open Channel"),A.k0s(),A.j41(8,"mat-option",64),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.viewLeaseOn(o,"LN"))}),A.EFF(9,"View on Lnrouter"),A.k0s(),A.j41(10,"mat-option",64),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.viewLeaseOn(o,"AM"))}),A.EFF(11,"View on Amboss"),A.k0s()()()()}}function Rw(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No node with liquidity."),A.k0s())}function Sw(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting nodes with liquidity..."),A.k0s())}function Nw(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function Tw(n,l){if(1&n&&(A.j41(0,"td",66),A.DNE(1,Rw,2,0,"p",17)(2,Sw,2,0,"p",17)(3,Nw,2,1,"p",17),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.liquidityNodes&&e.liquidityNodes.data)||(null==e.liquidityNodes||null==e.liquidityNodes.data?null:e.liquidityNodes.data.length)<1)&&e.listNodesCallStatus===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.liquidityNodes&&e.liquidityNodes.data)||(null==e.liquidityNodes||null==e.liquidityNodes.data?null:e.liquidityNodes.data.length)<1)&&e.listNodesCallStatus===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.liquidityNodes&&e.liquidityNodes.data)||(null==e.liquidityNodes||null==e.liquidityNodes.data?null:e.liquidityNodes.data.length)<1)&&e.listNodesCallStatus===e.apiCallStatusEnum.ERROR)}}function Pw(n,l){if(1&n&&A.nrm(0,"tr",67),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,ow,(null==e.liquidityNodes?null:e.liquidityNodes.data)&&(null==e.liquidityNodes||null==e.liquidityNodes.data?null:e.liquidityNodes.data.length)>0))}}function Uw(n,l){1&n&&A.nrm(0,"tr",68)}function Lw(n,l){1&n&&A.nrm(0,"tr",69)}let Gw=(()=>{var n;class l{constructor(i,o,r,iA,ne,re,ln){this.logger=i,this.store=o,this.dataService=r,this.commonService=iA,this.rtlEffects=ne,this.datePipe=re,this.camelCaseWithReplace=ln,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="liquidity_ads",this.tableSetting={tableId:"liquidity_ads",recordsPerPage:B.md,sortBy:"channel_opening_fee",sortOrder:B.oi.ASCENDING},this.askTooltipMsg="",this.nodesTooltipMsg="",this.displayedColumns=[],this.faBullhorn=v.e4L,this.faExclamationTriangle=v.zpE,this.faUsers=v.gdJ,this.totalBalance=0,this.channelAmount=1e5,this.channel_opening_feeRate=10,this.node_capacity=5e5,this.channel_count=5,this.liquidityNodesData=[],this.liquidityNodes=new z.I6([]),this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.selFilter="",this.listNodesCallStatus=B.wn.INITIATED,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.askTooltipMsg="Specify the liquidity requirements for your node: \n 1. Channel Amount - Amount in Sats you need on the channel opened to your node \n 2. Channel opening fee rate - Rate in Sats/vByte that you are willing to pay to open the channel to you",this.nodesTooltipMsg="These nodes are advertising their liquidity offering on the network.\nYou should pay attention to the following aspects to evaluate each node offer: \n- The total bitcoin deployed on the node, the more the better\n",this.nodesTooltipMsg=this.nodesTooltipMsg+"- The number of channels open on the node, the more the better\n- The channel open fee which the node will charge from you\n- The routing fee which the node will charge on the payments, the lesser the better\n- The reliability of the node, ideally uptime. Refer to the information being provided by the node explorers",this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",i.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=i.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),(0,Va.z)([this.store.select(tA.kQ),this.dataService.listNetworkNodes({liquidity_ads:!0})]).pipe((0,I.Q)(this.unSubs[1])).subscribe({next:([i,o])=>{this.information=i.information,this.totalBalance=i.balance.totalBalance||0,this.logger.info(i),o&&!o.length&&(o=[]),this.logger.info("Received Liquidity Ads Enabled Nodes: "+JSON.stringify(o)),this.listNodesCallStatus=B.wn.COMPLETED,o.forEach(r=>{r.address_types=Array.from(new Set(r.addresses?.reduce((ne,re)=>((re.type?.includes("ipv")||re.type?.includes("tor"))&&ne.push(re.type?.substring(0,3)),ne),[])))}),this.liquidityNodesData=o.filter(r=>r.nodeid!==this.information.id),this.onCalculateOpeningFee(),this.loadLiqNodesTable(this.liquidityNodesData)},error:i=>{this.logger.error("Liquidity Ads Nodes Error: "+JSON.stringify(i)),this.listNodesCallStatus=B.wn.ERROR,this.errorMessage=JSON.stringify(i)}})}onCalculateOpeningFee(){this.liquidityNodesData.forEach(i=>{i.option_will_fund&&(i.channel_opening_fee=+(i.option_will_fund.lease_fee_base_msat||0)/1e3+this.channelAmount*+(i.option_will_fund.lease_fee_basis||0)/1e4+ +(i.option_will_fund.funding_weight||0)/4*this.channel_opening_feeRate)}),this.paginator&&this.paginator.firstPage()}onFilter(){}applyFilter(){this.liquidityNodes.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column||"","_"):this.commonService.titleCase(i)}setFilterPredicate(){this.liquidityNodes.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.alias?i.alias.toLocaleLowerCase():"")+(i.channel_opening_fee?i.channel_opening_fee+" Sats":"")+(i.option_will_fund?.lease_fee_base_msat?i.option_will_fund?.lease_fee_base_msat/1e3+" Sats":"")+(i.option_will_fund?.lease_fee_basis?i.option_will_fund?.lease_fee_basis/100+"%":"")+(i.option_will_fund?.channel_fee_max_base_msat?i.option_will_fund?.channel_fee_max_base_msat/1e3+" Sats":"")+(i.option_will_fund?.channel_fee_max_proportional_thousandths?1e3*i.option_will_fund?.channel_fee_max_proportional_thousandths+" ppm":"")+(i.address_types?i.address_types.reduce((iA,ne)=>iA+("tor"===ne?" tor":"ipv"===ne?" clearnet":" "+ne.toLowerCase()),""):"");break;case"alias":r=(i?.alias?.toLowerCase()||" ")+i?.address_types?.reduce((iA,ne)=>iA+(ne?"ipv"===ne?"clearnet":ne:"")," ")||"";break;case"last_timestamp":r=this.datePipe.transform(new Date(1e3*(i.last_timestamp||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"compact_lease":r=i?.option_will_fund?.compact_lease?.toLowerCase()||"";break;case"lease_fee":r=((i.option_will_fund?.lease_fee_base_msat||0)/1e3+" sats "||0)+((i.option_will_fund?.lease_fee_basis||0)/100+"%")||0;break;case"routing_fee":r=((i.option_will_fund?.channel_fee_max_base_msat||0)/1e3+" sats "||0)+(1e3*(i.option_will_fund?.channel_fee_max_proportional_thousandths||0)+" ppm")||0;break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return r.includes(o)}}loadLiqNodesTable(i){this.liquidityNodes=new z.I6([...i]),this.liquidityNodes.sort=this.sort,this.liquidityNodes.sortingDataAccessor=(o,r)=>o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null,this.setFilterPredicate(),this.applyFilter(),this.liquidityNodes.paginator=this.paginator}viewLeaseOn(i,o){"LN"===o?window.open("https://lnrouter.app/node/"+i.nodeid,"_blank"):"AM"===o&&window.open("https://amboss.space/node/"+i.nodeid,"_blank")}onOpenChannel(i){this.store.dispatch((0,C.xO)({payload:{data:{alertTitle:"Open Channel",message:{node:i,balance:this.totalBalance,requestedAmount:this.channelAmount,feeRate:this.channel_opening_feeRate,localAmount:2e4},component:nw}}}))}onViewLeaseInfo(i){const o=i.addresses?.reduce((ne,re)=>(re.address&&re.address.length>40&&(re.address=re.address.substring(0,39)+"..."),ne.concat(JSON.stringify(re).replace("{","").replace("}","").replace(/:/g,": ").replace(/,/g,"        ").replace(/"/g,""))),[]),r=[];if(i.features&&""!==i.features.trim()){const ne=parseInt(i.features,16);B.TH.forEach(re=>{ne&1<{ne&&this.onOpenChannel(i)})}onDownloadCSV(){this.liquidityNodes.data&&this.liquidityNodes.data.length>0&&this.commonService.downloadFile(this.liquidityNodes.data,"LiquidityNodes")}onFilterReset(){this.node_capacity=0,this.channel_count=0}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(Dt.u),A.rXU(L.h),A.rXU(b.H),A.rXU(de.vh),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-liquidity-ads-list"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Liquidity Ads")}])],decls:83,vars:26,consts:[["formAsk","ngForm"],["table",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],[1,"padding-gap-large"],["fxLayout","column","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex.gt-xs","100","fxLayout","row",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-1"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","30"],[1,"page-text"],["matTooltipPosition","above","matTooltipClass","pre-wrap",1,"info-icon","info-icon-primary",3,"matTooltip"],["fxLayout","column","fxFlex","34"],["autoFocus","","matInput","","name","channelAmount","tabindex","1","type","number","step","10000","required","",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["matInput","","name","channel_opening_feeRate","type","number","step","10","tabindex","2","required","",3,"ngModelChange","keyup","ngModel"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-2"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","nodeid"],["matColumnDef","last_timestamp"],["matColumnDef","compact_lease"],["matColumnDef","lease_fee"],["mat-header-cell","",4,"matHeaderCellDef"],["matColumnDef","routing_fee"],["matColumnDef","channel_opening_fee"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","funding_weight"],["matColumnDef","actions"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_lqNode"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],["fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center",1,"ellipsis-child"],["aria-label","Address Types",1,"ml-half"],["color","primary","selected","",4,"ngFor","ngForOf"],["color","primary","selected",""],[1,"ellipsis-child"],["mat-header-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",2),A.nrm(1,"fa-icon",3),A.j41(2,"span",4),A.EFF(3,"Liquidity Ads"),A.k0s()(),A.j41(4,"div",5)(5,"mat-card")(6,"mat-card-content",6)(7,"div",7)(8,"form",8,0)(10,"div",9),A.nrm(11,"fa-icon",10),A.j41(12,"span"),A.EFF(13,"Ads should be supplemented with additional research of the node, before buying liquidity."),A.k0s()(),A.j41(14,"div",11)(15,"div",12)(16,"span",13),A.EFF(17,"Liquidity Ask"),A.k0s(),A.j41(18,"mat-icon",14),A.EFF(19,"info_outline"),A.k0s()(),A.j41(20,"mat-form-field",15)(21,"mat-label"),A.EFF(22,"Channel Amount (Sats)"),A.k0s(),A.j41(23,"input",16),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.channelAmount,re)||(r.channelAmount=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.onCalculateOpeningFee())}),A.k0s(),A.DNE(24,lw,2,0,"mat-error",17),A.k0s(),A.j41(25,"mat-form-field",15)(26,"mat-label"),A.EFF(27,"Channel Opening Fee Rate (Sats/vByte)"),A.k0s(),A.j41(28,"input",18),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.channel_opening_feeRate,re)||(r.channel_opening_feeRate=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.onCalculateOpeningFee())}),A.k0s(),A.DNE(29,cw,2,0,"mat-error",17),A.k0s()()(),A.j41(30,"div",19)(31,"div",20),A.nrm(32,"fa-icon",3),A.j41(33,"span",4),A.EFF(34,"Liquidity Providing Peers"),A.k0s()(),A.j41(35,"div",21)(36,"mat-form-field",22)(37,"mat-label"),A.EFF(38,"Filter By"),A.k0s(),A.j41(39,"mat-select",23),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilterBy,re)||(r.selFilterBy=re),w.Njj(re)}),A.bIt("selectionChange",function(){return w.eBV(iA),r.selFilter="",w.Njj(r.applyFilter())}),A.j41(40,"perfect-scrollbar"),A.DNE(41,gw,2,2,"mat-option",24),A.k0s()()(),A.j41(42,"mat-form-field",22)(43,"mat-label"),A.EFF(44,"Filter"),A.k0s(),A.j41(45,"input",25),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilter,re)||(r.selFilter=re),w.Njj(re)}),A.bIt("input",function(){return w.eBV(iA),w.Njj(r.applyFilter())})("keyup",function(){return w.eBV(iA),w.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(46,"div",26),A.DNE(47,Bw,1,0,"mat-progress-bar",27),A.j41(48,"table",28,1),A.qex(50,29),A.DNE(51,fw,2,0,"th",30)(52,hw,6,5,"td",31),A.bVm(),A.qex(53,32),A.DNE(54,Ew,2,0,"th",30)(55,ww,4,4,"td",31),A.bVm(),A.qex(56,33),A.DNE(57,Cw,2,0,"th",30)(58,dw,3,4,"td",31),A.bVm(),A.qex(59,34),A.DNE(60,Qw,2,0,"th",30)(61,mw,2,1,"td",31),A.bVm(),A.qex(62,35),A.DNE(63,Mw,2,0,"th",36)(64,pw,4,8,"td",31),A.bVm(),A.qex(65,37),A.DNE(66,Iw,2,0,"th",36)(67,Dw,4,8,"td",31),A.bVm(),A.qex(68,38),A.DNE(69,Fw,2,0,"th",39)(70,yw,4,4,"td",31),A.bVm(),A.qex(71,40),A.DNE(72,xw,2,0,"th",39)(73,Yw,4,4,"td",31),A.bVm(),A.qex(74,41),A.DNE(75,bw,6,0,"th",36)(76,vw,12,0,"td",42),A.bVm(),A.qex(77,43),A.DNE(78,Tw,4,3,"td",44),A.bVm(),A.DNE(79,Pw,1,3,"tr",45)(80,Uw,1,0,"tr",46)(81,Lw,1,0,"tr",47),A.k0s()(),A.nrm(82,"mat-paginator",48),A.k0s()()()()}2&o&&(A.R7$(),A.Y8G("icon",r.faBullhorn),A.R7$(10),A.Y8G("icon",r.faExclamationTriangle),A.R7$(7),A.Y8G("matTooltip",r.askTooltipMsg),A.R7$(5),A.R50("ngModel",r.channelAmount),A.R7$(),A.Y8G("ngIf",!r.channelAmount),A.R7$(4),A.R50("ngModel",r.channel_opening_feeRate),A.R7$(),A.Y8G("ngIf",!r.channel_opening_feeRate),A.R7$(3),A.Y8G("icon",r.faUsers),A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(22,sw).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(2),A.Y8G("ngIf",r.listNodesCallStatus===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.liquidityNodes)("ngClass",A.eq3(23,rw,""!==r.errorMessage)),A.R7$(31),A.Y8G("matFooterRowDef",A.lJ4(25,aw)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("showFirstLastButtons",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.YS,hA.vS,hA.cV,P.aY,QA.RN,QA.m2,oA.An,UA.fg,yA.rl,yA.nJ,yA.TL,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,iw.Jl,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,HA.oV,H.iy,M.ZF,M.Ld,cA.N,de.QX,de.vh],encapsulation:2}))}return n(),l})();const zw=[{path:"",component:t,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Yr,canActivate:[(0,Vt.Wz)()]},{path:"onchain",component:So,canActivate:[(0,Vt.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:xl,canActivate:[(0,Vt.Wz)()]},{path:"send/:selTab",component:Yl,data:{sweepAll:!1},canActivate:[(0,Vt.Wz)()]},{path:"sweep/:selTab",component:Yl,data:{sweepAll:!0},canActivate:[(0,Vt.Wz)()]}]},{path:"connections",component:To,canActivate:[(0,Vt.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:Wl,canActivate:[(0,Vt.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:Ut,canActivate:[(0,Vt.Wz)()]},{path:"pending",component:r0,canActivate:[(0,Vt.Wz)()]},{path:"activehtlcs",component:Du,canActivate:[(0,Vt.Wz)()]}]},{path:"peers",component:P0,data:{sweepAll:!1},canActivate:[(0,Vt.Wz)()]}]},{path:"liquidityads",component:Gw,canActivate:[(0,Vt.Wz)()]},{path:"transactions",component:Uo,canActivate:[(0,Vt.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Z,canActivate:[(0,Vt.Wz)()]},{path:"invoices",component:Ot,canActivate:[(0,Vt.Wz)()]},{path:"offers",component:xh,canActivate:[(0,Vt.Wz)()]},{path:"offrBookmarks",component:tE,canActivate:[(0,Vt.Wz)()]}]},{path:"messages",component:Fl,canActivate:[(0,Vt.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:rg,canActivate:[(0,Vt.Wz)()]},{path:"verify",component:ug,canActivate:[(0,Vt.Wz)()]}]},{path:"routing",component:Go,canActivate:[(0,Vt.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:Sc,canActivate:[(0,Vt.Wz)()]},{path:"failedtransactions",component:GB,canActivate:[(0,Vt.Wz)()]},{path:"localfail",component:UE,canActivate:[(0,Vt.Wz)()]},{path:"routingpeers",component:Sf,canActivate:[(0,Vt.Wz)()]}]},{path:"reports",component:yu,canActivate:[(0,Vt.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:Tu,canActivate:[(0,Vt.Wz)()]},{path:"transactions",component:Ou,canActivate:[(0,Vt.Wz)()]}]},{path:"graph",component:Vu,canActivate:[(0,Vt.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:rl,canActivate:[(0,Vt.Wz)()]},{path:"queryroutes",component:ig,canActivate:[(0,Vt.Wz)()]}]},{path:"rates",component:Fc,canActivate:[(0,Vt.Wz)()]},{path:"**",component:Ju.X},{path:"network",redirectTo:"rates"},{path:"wallet",redirectTo:"home"},{path:"backup",redirectTo:"home"}]}],kw=Sn.iI.forChild(zw);var Hw=We(9029);let jw=(()=>{var n;class l{static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275mod=A.$C({type:l,bootstrap:[t]}),this.\u0275inj=w.G2t({imports:[de.MD,Hw.G,kw]}))}return n(),l})()},2643(Pi,Wi,We){var Mn,de=We(9293).default;Object(typeof self<"u"?self:this),Mn=()=>(()=>{var Sn={7133(eA,Q,f){"use strict";f.d(Q,{default:()=>xe}),f(187);var g=f(1771);function I($){return"string"==typeof $||$ instanceof String}function N($){return("number"==typeof $||$ instanceof Number)&&!Number.isNaN($)}function K($){return!(!N($)||!Number.isInteger($)||$<=0)}function v($){return null!==$&&!Array.isArray($)&&!I($)&&!N($)&&"object"==typeof $}function B($){return v($)&&0===Object.keys($).length}function j($){return null!=$}var tA=f(783).Buffer;const AA=class aA extends g.A{constructor(s,d,F,W,Z,EA,PA){void 0===s&&(s={}),void 0===d&&(d={}),void 0===F&&(F={}),void 0===W&&(W={}),void 0===Z&&(Z={}),void 0===EA&&(EA=null),void 0===PA&&(PA=void 0),super(Z),this.fonts={},this.fontCache={};for(let FA in s)if(s.hasOwnProperty(FA)){let te=s[FA];this.fonts[FA]={normal:te.normal,bold:te.bold,italics:te.italics,bolditalics:te.bolditalics}}this.patterns={};for(let FA in F)if(F.hasOwnProperty(FA)){let te=F[FA];this.patterns[FA]=this.pattern(te.boundingBox,te.xStep,te.yStep,te.pattern,te.colored)}this.images=d,this.attachments=W,this.virtualfs=EA,this.localAccessPolicy=PA}getFontType(s,d){return(($,s)=>{let d="normal";return $&&s?d="bolditalics":$?d="bold":s&&(d="italics"),d})(s,d)}getFontFile(s,d,F){let W=this.getFontType(d,F);return this.fonts[s]&&this.fonts[s][W]?this.fonts[s][W]:null}provideFont(s,d,F){let W=this.getFontType(d,F);if(null===this.getFontFile(s,d,F))throw new Error(`Font '${s}' in style '${W}' is not defined in the font section of the document definition.`);if(this.fontCache[s]=this.fontCache[s]||{},!this.fontCache[s][W]){let Z=this.fonts[s][W];Array.isArray(Z)||(Z=[Z]),this.virtualfs&&this.virtualfs.existsSync(Z[0])?Z[0]=this.virtualfs.readFileSync(Z[0]):this.validateLocalFile(Z[0]),this.fontCache[s][W]=this.font(...Z)._font}return this.fontCache[s][W]}provideImage(s){if(this._imageRegistry[s])return this._imageRegistry[s];let F,W=(Z=>{let EA=this.images[Z];if(!EA)return Z;if(this.virtualfs&&this.virtualfs.existsSync(EA))return this.virtualfs.readFileSync(EA);let PA=EA.indexOf("base64,");return PA<0?this.images[Z]:tA.from(EA.substring(PA+7),"base64")})(s);this.validateLocalFile(W);try{if(F=this.openImage(W),!F)throw new Error("No image")}catch(Z){throw new Error(`Invalid image: ${Z.toString()}\nImages dictionary should contain dataURL entries (or local file paths in node.js)`,{cause:Z})}return F.embed(this),this._imageRegistry[s]=F,F}providePattern(s){return Array.isArray(s)&&2===s.length?[this.patterns[s[0]],s[1]]:null}provideAttachment(s){const d=W=>{if(!W)throw new Error("No attachment");if(!W.src)throw new Error('The "src" key is required for attachments');return W};if("object"==typeof s)return d(s);let F=d(this.attachments[s]);return this.virtualfs&&this.virtualfs.existsSync(F.src)?this.virtualfs.readFileSync(F.src):(this.validateLocalFile(F.src),F)}resolveColor(s,d){return s=s||d,"function"==typeof this._normalizeColor&&I(s)&&null===this._normalizeColor(s)?d:s}setOpenActionAsPrint(){let s=this.ref({Type:"Action",S:"Named",N:"Print"});this._root.data.OpenAction=s,s.end()}file(s,d){return void 0===d&&(d={}),this.validateLocalFile(s),super.file(s,d)}validateLocalFile(s){if(!(typeof this.localAccessPolicy>"u")&&I(s)&&!/^data:/.test(s)&&!0!==this.localAccessPolicy(s))throw new Error(`Access to local file denied by resource access policy: ${s}`)}};function L($,s){return"font"===$?"font":s}function P($){return JSON.stringify($,L)}function rA($){if($.id)return $.id;if(Array.isArray($.text))for(let s of $.text){let d=rA(s);if(d)return d}return null}var NA=f(783).Buffer;const oA=$=>I($)?$.replace(/\t/g," "):N($)||"boolean"==typeof $?$.toString():!j($)||B($)?"":$,dA=class uA{preprocessDocument(s){return this.parentNode=null,this.tocs=[],this.nodeReferences=[],this.preprocessNode(s,!0)}preprocessBlock(s){return this.parentNode=null,this.tocs=[],this.nodeReferences=[],this.preprocessNode(s)}preprocessNode(s,d){if(void 0===d&&(d=!1),Array.isArray(s)?s={stack:s}:I(s)||N(s)||"boolean"==typeof s||!j(s)||B(s)?s={text:oA(s)}:"text"in s&&(s.text=oA(s.text)),s.section){if(!d)throw new Error(`Incorrect document structure, section node is only allowed at the root level of document structure: ${P(s)}`);return this.preprocessSection(s)}if(s.columns)return this.preprocessColumns(s);if(s.stack)return this.preprocessVerticalContainer(s,d);if(s.ul)return this.preprocessList(s);if(s.ol)return this.preprocessList(s);if(s.table)return this.preprocessTable(s);if(void 0!==s.text)return this.preprocessText(s);if(s.toc)return this.preprocessToc(s);if(s.image)return this.preprocessImage(s);if(s.svg)return this.preprocessSVG(s);if(s.canvas)return this.preprocessCanvas(s);if(s.qr)return this.preprocessQr(s);if(s.attachment)return this.preprocessAttachment(s);if(s.pageReference||s.textReference)return this.preprocessText(s);throw new Error(`Unrecognized document structure: ${P(s)}`)}preprocessSection(s){return s.section=this.preprocessNode(s.section),s}preprocessColumns(s){let d=s.columns;for(let F=0,W=d.length;F{s.styleOverrides.push(d)}),s}push(s){this.styleOverrides.push(s)}pop(s){for(void 0===s&&(s=1);s-- >0;)this.styleOverrides.pop()}autopush(s){if(I(s)||typeof s.section<"u")return 0;let d=[];s.style&&(d=Array.isArray(s.style)?s.style:[s.style]);for(let F=0,W=d.length;F0&&this.pop(F),W}getProperty(s){var d=this;const F=function(W,Z,EA){if(void 0===EA&&(EA=new Set),EA.has(W))return;EA.add(W);const PA=d.styleDictionary[W];if(PA){if(j(PA[Z]))return PA[Z];if(PA.extends){let FA=Array.isArray(PA.extends)?PA.extends:[PA.extends];for(let te=FA.length-1;te>=0;te--){let ge=F(FA[te],Z,EA);if(j(ge))return ge}}}};if(this.styleOverrides)for(let W=this.styleOverrides.length-1;W>=0;W--){let Z=this.styleOverrides[W];if(I(Z)){let EA=F(Z,s);if(j(EA))return EA}else if(j(Z[s]))return Z[s]}return this.defaultStyle&&this.defaultStyle[s]}static getStyleProperty(s,d,F,W){let Z;return j(s[F])?s[F]:d?(d.auto(s,()=>{Z=d.getProperty(F)}),j(Z)?Z:W):W}static copyStyle(s,d){void 0===s&&(s={}),void 0===d&&(d={});for(let F in s)"text"!=F&&s.hasOwnProperty(F)&&(d[F]=s[F]);return d}}const SA=Re,we=function($,s,d){void 0===d&&(d=!1);let F=[];if($=null==$?"":String($),s)return F.push({text:$}),F;if(d)return $.split("").map(PA=>PA.match(/^\n$|^\r$/)?{text:"",lineEnd:!0}:{text:PA});if(0===$.length)return F.push({text:""}),F;let EA,W=new H($),Z=0;for(;EA=W.nextBreak();){let PA=$.slice(Z,EA.position);EA.required||PA.match(/\r?\n$|\r$/)?(PA=PA.replace(/\r?\n$|\r$/,""),F.push({text:PA,lineEnd:!0})):F.push({text:PA}),Z=EA.position}return F},Fe=($,s)=>{let d=$[0];if(void 0===d)return null;if(s){let F=we(d.text,!1);if(void 0===F[0])return null;d=F[0]}return d.text},et=($,s)=>{let d=$[$.length-1];if(void 0===d||d.lineEnd)return null;if(s){let F=we(d.text,!1);if(void 0===F[F.length-1])return null;d=F[F.length-1]}return d.text},$e=class Ke{getBreaks(s,d){let F=[];Array.isArray(s)||(s=[s]);let W=null;for(let Z=0,EA=s.length;ZMath.max(0,Me.width-Me.leadingCut-Me.trailingCut);let EA,W=0,Z=0,PA=($=s,Array.isArray($)||($=[$]),$=function s(d){return d.reduce((F,W)=>{let Z=Array.isArray(W.text)?s(W.text):W,EA=[].concat(Z).some(Array.isArray);return F.concat(EA?s(Z):Z)},[])}($),$),te=(new $e).getBreaks(PA,d),ge=this.measure(te,d);var $;return ge.forEach(Me=>{W=Math.max(W,F(Me)),EA||(EA={width:0,leadingCut:Me.leadingCut,trailingCut:0}),EA.width+=Me.width,EA.trailingCut=Me.trailingCut,Z=Math.max(Z,F(EA)),Me.lineEnd&&(EA=null)}),SA.getStyleProperty({},d,"noWrap",!1)&&(W=Z),{items:ge,minWidth:W,maxWidth:Z}}measure(s,d){if(s.length){let F=SA.getStyleProperty(s[0],d,"leadingIndent",0);F&&(s[0].leadingCut=-F,s[0].leadingIndent=F)}return s.forEach(F=>{let W=SA.getStyleProperty(F,d,"font","Roboto"),Z=SA.getStyleProperty(F,d,"bold",!1),EA=SA.getStyleProperty(F,d,"italics",!1);F.font=this.pdfDocument.provideFont(W,Z,EA),F.alignment=SA.getStyleProperty(F,d,"alignment","left"),F.fontSize=SA.getStyleProperty(F,d,"fontSize",12),F.fontFeatures=SA.getStyleProperty(F,d,"fontFeatures",null),F.characterSpacing=SA.getStyleProperty(F,d,"characterSpacing",0),F.color=SA.getStyleProperty(F,d,"color","black"),F.decoration=SA.getStyleProperty(F,d,"decoration",null),F.decorationColor=SA.getStyleProperty(F,d,"decorationColor",null),F.decorationStyle=SA.getStyleProperty(F,d,"decorationStyle",null),F.decorationThickness=SA.getStyleProperty(F,d,"decorationThickness",null),F.background=SA.getStyleProperty(F,d,"background",null),F.link=SA.getStyleProperty(F,d,"link",null),F.linkToPage=SA.getStyleProperty(F,d,"linkToPage",null),F.linkToDestination=SA.getStyleProperty(F,d,"linkToDestination",null),F.noWrap=SA.getStyleProperty(F,d,"noWrap",null),F.opacity=SA.getStyleProperty(F,d,"opacity",1),F.sup=SA.getStyleProperty(F,d,"sup",!1),F.sub=SA.getStyleProperty(F,d,"sub",!1),(F.sup||F.sub)&&(F.fontSize*=.58);let PA=SA.getStyleProperty(F,d,"lineHeight",1);if(F.width=this.widthOfText(F.text,F),F.height=F.font.lineHeight(F.fontSize)*PA,F.leadingCut||(F.leadingCut=0),!SA.getStyleProperty(F,d,"preserveLeadingSpaces",!1)){let ge=F.text.match(ht);ge&&(F.leadingCut+=this.widthOfText(ge[0],F))}if(F.trailingCut=0,!SA.getStyleProperty(F,d,"preserveTrailingSpaces",!1)){let ge=F.text.match(cn);ge&&(F.trailingCut=this.widthOfText(ge[0],F))}},this),s}widthOfText(s,d){return d.font.widthOfString(s,d.fontSize,d.fontFeatures)+(d.characterSpacing||0)*(s.length-1)}sizeOfText(s,d){let F=SA.getStyleProperty({},d,"font","Roboto"),W=SA.getStyleProperty({},d,"fontSize",12),Z=SA.getStyleProperty({},d,"fontFeatures",null),EA=SA.getStyleProperty({},d,"bold",!1),PA=SA.getStyleProperty({},d,"italics",!1),FA=SA.getStyleProperty({},d,"lineHeight",1),te=SA.getStyleProperty({},d,"characterSpacing",0),ge=this.pdfDocument.provideFont(F,EA,PA);return{width:this.widthOfText(s,{font:ge,fontSize:W,characterSpacing:te,fontFeatures:Z}),height:ge.lineHeight(W)*FA,fontSize:W,lineHeight:FA,ascender:ge.ascender/1e3*W,descender:ge.descender/1e3*W}}sizeOfRotatedText(s,d,F){let W=d*Math.PI/-180,Z=this.sizeOfText(s,F);return{width:Math.abs(Z.height*Math.sin(W))+Math.abs(Z.width*Math.cos(W)),height:Math.abs(Z.width*Math.sin(W))+Math.abs(Z.height*Math.cos(W))}}};function Lt($){return"auto"===$.width}function Qn($){return null==$.width||"*"===$.width||"star"===$.width}const Gt_buildColumnWidths=function Tt($,s,d,F){void 0===d&&(d=0);let W=[],Z=0,EA=0,PA=[],FA=0,te=0,ge=[],Me=s;$.forEach(Ye=>{Lt(Ye)?(W.push(Ye),Z+=Ye._minWidth,EA+=Ye._maxWidth):Qn(Ye)?(PA.push(Ye),FA=Math.max(FA,Ye._minWidth),te=Math.max(te,Ye._maxWidth)):ge.push(Ye)}),ge.forEach((Ye,Ue)=>{if(I(Ye.width)&&/\d+%/.test(Ye.width)){let De=0;if(F){const Se=F._layout.paddingLeft(Ue,F),it=F._layout.paddingRight(Ue,F),Ve=F._layout.vLineWidth(Ue,F),vt=F._layout.vLineWidth(Ue+1,F);De=0===Ue?Se+it+Ve+vt/2:Ue===ge.length-1?Se+it+Ve/2+vt:Se+it+Ve/2+vt/2}const Le=Me+d;Ye.width=parseFloat(Ye.width)*Le/100-De}Ye._calcWidth=Ye.width=s)W.forEach(Ye=>{Ye._calcWidth=Ye._minWidth}),PA.forEach(Ye=>{Ye._calcWidth=FA});else{if(me{Ye._calcWidth=Ye._maxWidth,s-=Ye._calcWidth});else{let Ye=s-Qe,Ue=me-Qe;W.forEach(De=>{De._calcWidth=De._minWidth+(De._maxWidth-De._minWidth)*Ye/Ue,s-=De._calcWidth})}if(PA.length>0){let Ye=s/PA.length;PA.forEach(Ue=>{Ue._calcWidth=Ye})}}},Gt_measureMinMax=function pn($){let s={min:0,max:0},d={min:0,max:0},F=0;for(let W=0,Z=$.length;W0,vLineWidth:$=>0,paddingLeft:$=>$?4:0,paddingRight:($,s)=>$0===$||$===s.table.body.length?0:$===s.table.headerRows?2:0,vLineWidth:$=>0,paddingLeft:$=>0===$?0:8,paddingRight:($,s)=>$===s.table.widths.length-1?0:8},lightHorizontalLines:{hLineWidth:($,s)=>0===$||$===s.table.body.length?0:$===s.table.headerRows?2:1,vLineWidth:$=>0,hLineColor:$=>1===$?"black":"#aaa",paddingLeft:$=>0===$?0:8,paddingRight:($,s)=>$===s.table.widths.length-1?0:8}},Ot={hLineWidth:($,s)=>1,vLineWidth:($,s)=>1,hLineColor:($,s)=>"black",vLineColor:($,s)=>"black",hLineStyle:($,s)=>null,vLineStyle:($,s)=>null,paddingLeft:($,s)=>4,paddingRight:($,s)=>4,paddingTop:($,s)=>2,paddingBottom:($,s)=>2,fillColor:($,s)=>null,fillOpacity:($,s)=>1,defaultBorder:!0};function bt(){let $={};for(let s=0,d=arguments.length;sJSON.parse(JSON.stringify($))}for(var qe=[null,[[10,7,17,13],[1,1,1,1],[]],[[16,10,28,22],[1,1,1,1],[4,16]],[[26,15,22,18],[1,1,2,2],[4,20]],[[18,20,16,26],[2,1,4,2],[4,24]],[[24,26,22,18],[2,1,4,4],[4,28]],[[16,18,28,24],[4,2,4,4],[4,32]],[[18,20,26,18],[4,2,5,6],[4,20,36]],[[22,24,26,22],[4,2,6,6],[4,22,40]],[[22,30,24,20],[5,2,8,8],[4,24,44]],[[26,18,28,24],[5,4,8,8],[4,26,48]],[[30,20,24,28],[5,4,11,8],[4,28,52]],[[22,24,28,26],[8,4,11,10],[4,30,56]],[[22,26,22,24],[9,4,16,12],[4,32,60]],[[24,30,24,20],[9,4,16,16],[4,24,44,64]],[[24,22,24,30],[10,6,18,12],[4,24,46,68]],[[28,24,30,24],[10,6,16,17],[4,24,48,72]],[[28,28,28,28],[11,6,19,16],[4,28,52,76]],[[26,30,28,28],[13,6,21,18],[4,28,54,80]],[[26,28,26,26],[14,7,25,21],[4,28,56,84]],[[26,28,28,30],[16,8,25,20],[4,32,60,88]],[[26,28,30,28],[17,8,25,23],[4,26,48,70,92]],[[28,28,24,30],[17,9,34,23],[4,24,48,72,96]],[[28,30,30,30],[18,9,30,25],[4,28,52,76,100]],[[28,30,30,30],[20,10,32,27],[4,26,52,78,104]],[[28,26,30,30],[21,12,35,29],[4,30,56,82,108]],[[28,28,30,28],[23,12,37,34],[4,28,56,84,112]],[[28,30,30,30],[25,12,40,34],[4,32,60,88,116]],[[28,30,30,30],[26,13,42,35],[4,24,48,72,96,120]],[[28,30,30,30],[28,14,45,38],[4,28,52,76,100,124]],[[28,30,30,30],[29,15,48,40],[4,24,50,76,102,128]],[[28,30,30,30],[31,16,51,43],[4,28,54,80,106,132]],[[28,30,30,30],[33,17,54,45],[4,32,58,84,110,136]],[[28,30,30,30],[35,18,57,48],[4,28,56,84,112,140]],[[28,30,30,30],[37,19,60,51],[4,32,60,88,116,144]],[[28,30,30,30],[38,19,63,53],[4,28,52,76,100,124,148]],[[28,30,30,30],[40,20,66,56],[4,22,48,74,100,126,152]],[[28,30,30,30],[43,21,70,59],[4,26,52,78,104,130,156]],[[28,30,30,30],[45,22,74,62],[4,30,56,82,108,134,160]],[[28,30,30,30],[47,24,77,65],[4,24,52,80,108,136,164]],[[28,30,30,30],[49,25,81,68],[4,28,56,84,112,140,168]]],zA=/^\d*$/,vA=/^[A-Za-z0-9 $%*+\-./:]*$/,qA=/^[A-Z0-9 $%*+\-./:]*$/,ae=[],ce=[-1],ye=0,ke=1;ye<255;++ye)ae.push(ke),ce[ke]=ye,ke=2*ke^(ke>=128?285:0);var Je=[[]];for(ye=0;ye<30;++ye){for(var tt=Je[ye],je=[],Ce=0;Ce<=ye;++Ce)je.push(ce[(Ce6},ut=function($,s){var d=-8&function($){var s=qe[$],d=16*$*$+128*$+64;return Bt($)&&(d-=36),s[2].length&&(d-=25*s[2].length*s[2].length-10*s[2].length-55),d}($),F=qe[$];return d-8*F[0][s]*F[1][s]},an=function($,s){switch(s){case 1:return $<10?10:$<27?12:14;case 2:return $<10?9:$<27?11:13;case 4:return $<10?8:16;case 8:return $<10?8:$<27?10:12}},Wt=function($,s,d){var F=ut($,d)-4-an($,s);switch(s){case 1:return 3*(F/10|0)+(F%10<4?0:F%10<7?1:2);case 2:return 2*(F/11|0)+(F%11<6?0:1);case 4:return F/8|0;case 8:return F/13|0}},Bn=function($,s){for(var d=$.slice(0),F=$.length,W=s.length,Z=0;Z=0)for(var PA=0;PA=0;--Z)W>>F+Z&1&&(W^=d<>EA&1;return $},Un=function($){for(var Z=function(De){for(var Le=0,Se=0;Se=5&&(Le+=De[Se]-5+3);for(Se=5;Se=4*it||De[Se+1]>=4*it)&&(Le+=40)}return Le},EA=$.length,PA=0,FA=0,te=0;te>6,128|63&W):W<65536?d.push(224|W>>12,128|W>>6&63,128|63&W):d.push(240|W>>18,128|W>>12&63,128|W>>6&63,128|63&W)}return d}return s}}(EA,$),null===$)throw"invalid data format";if(Z<0||Z>3)throw"invalid ECC level";if(W<0){for(W=1;W<=40&&!($.length<=Wt(W,EA,Z));++W);if(W>40)throw"too large data for the Qr format"}else if(W<1||W>40)throw"invalid Qr version! should be between 1 and 40";if(-1!=PA&&(PA<0||PA>8))throw"invalid mask";return function($,s,d,F,W){var Z=qe[s],EA=function($,s,d,F){var W=[],Z=0,EA=8,PA=d.length,FA=function(Me,Qe){if(Qe>=EA){for(W.push(Z|Me>>(Qe-=EA));Qe>=8;)W.push(Me>>(Qe-=8)&255);Z=0,EA=8}Qe>0&&(Z|=(Me&(1<>3);EA=function($,s,d){for(var F=[],W=$.length/s|0,Z=0,EA=s-$.length%s,PA=0;PA>Ve&1,W[Ye+it][Ue+Ve]=1};for(EA(0,0,9,9,[127,65,93,93,93,65,383,0,64]),EA(d-8,0,8,9,[256,127,65,93,93,93,65,127]),EA(0,d-8,9,8,[254,130,186,186,186,130,254,0,0]),Z=9;Z>me++&1,W[Z][d-11+Me]=W[d-11+Me][Z]=1}return{matrix:F,reserved:W}}(s),FA=PA.matrix,te=PA.reserved;if(function($,s,d){for(var F=$.length,W=0,Z=-1,EA=F-1;EA>=0;EA-=2){6==EA&&--EA;for(var PA=Z<0?F-1:0,FA=0;FAEA-2;--te)s[PA][te]||($[PA][te]=d[W>>3]>>(7&~W)&1,++W);PA+=Z}Z=-Z}}(FA,te,EA),W<0){St(FA,te,0),vn(FA,0,F,0);var ge=0,Me=Un(FA);for(St(FA,te,0),W=1;W<8;++W){St(FA,te,W),vn(FA,0,F,W);var Qe=Un(FA);Me>Qe&&(Me=Qe,ge=W),St(FA,te,W)}W=ge}return St(FA,te,W),vn(FA,0,F,W),FA}($,W,EA,Z,PA)}const wi_measure=function Ei($){var s=function On($,s){var d=[],F=s.background||"#fff",W=s.foreground||"#000",Z=s.padding||0,EA=Fn($,s),PA=EA.length,FA=Math.floor(s.fit?s.fit/PA:5),te=PA*FA+FA*Z*2,ge=FA*Z;d.push({type:"rect",x:0,y:0,w:te,h:te,lineWidth:0,color:F});for(var Me=0;Me{if(s._margin=function QA($,s){function d(EA,PA,FA){return void 0===FA&&(FA=0),void 0!==EA.marginLeft||void 0!==EA.marginTop||void 0!==EA.marginRight||void 0!==EA.marginBottom?[EA.marginLeft??PA[0]??FA,EA.marginTop??PA[1]??FA,EA.marginRight??PA[2]??FA,EA.marginBottom??PA[3]??FA]:PA}function W(EA){return N(EA)?EA=[EA,EA,EA,EA]:Array.isArray(EA)&&2===EA.length&&(EA=[EA[0],EA[1],EA[0],EA[1]]),EA}let Z=[void 0,void 0,void 0,void 0];if($.style){let PA=function F(EA,PA,FA){if(void 0===FA&&(FA=new Set),!(EA=Array.isArray(EA)?EA:[EA]).every(ge=>I(ge)))return{};let te={};for(let ge=0;ges.fit[0]/s.fit[1]?s.fit[0]/d.width:s.fit[1]/d.height;s._width=s._minWidth=s._maxWidth=d.width*F,s._height=d.height*F}else if(s.cover)s._width=s._minWidth=s._maxWidth=s.cover.width,s._height=s._minHeight=s._maxHeight=s.cover.height;else{let F=N(s.width)?s.width:void 0,W=N(s.height)?s.height:void 0,Z=d.width/d.height;s._width=s._minWidth=s._maxWidth=F||(W?W*Z:d.width),s._height=W||(F?F/Z:d.height),N(s.maxWidth)&&s.maxWidths._width&&(s._width=s._minWidth=s._maxWidth=s.minWidth,s._height=s._width*d.height/d.width),N(s.minHeight)&&s.minHeight>s._height&&(s._height=s.minHeight,s._width=s._minWidth=s._maxWidth=s._height*d.width/d.height)}s._alignment=this.styleStack.getProperty("alignment")}convertIfBase64Image(s){if(/^data:image\/(jpeg|jpg|png);base64,/.test(s.image)){let d="$$pdfmake$$"+this.autoImageIndex++;this.pdfDocument.images[d]=s.image,s.image=d}}measureImage(s){this.convertIfBase64Image(s);let d=this.pdfDocument.provideImage(s.image),F={width:d.width,height:d.height};return d.orientation>4&&(F={width:d.height,height:d.width}),this.measureImageWithDimensions(s,F),s}measureSVG(s){let d=this.svgMeasure.measureSVG(s.svg);if(this.measureImageWithDimensions(s,d),s.font=this.styleStack.getProperty("font"),!N(s._width)&&!N(s._height))throw new Error("SVG is missing defined width and height.");if(!N(s._width))throw new Error("SVG is missing defined width.");if(!N(s._height))throw new Error("SVG is missing defined height.");return s.svg=this.svgMeasure.writeDimensions(s.svg,{width:s._width,height:s._height}),s}measureLeaf(s){s._textRef&&s._textRef._textNodeRef.text&&(s.text=s._textRef._textNodeRef.text);let d=this.styleStack.clone();d.push(s);let F=this.textInlines.buildInlines(s.text,d);return s._inlines=F.items,s._minWidth=F.minWidth,s._maxWidth=F.maxWidth,s}measureToc(s){if(s.toc.title&&(s.toc.title=this.measureNode(s.toc.title)),s.toc._items.length>0){let d=[],F=s.toc.textStyle||{},W=s.toc.numberStyle||F,Z=s.toc.textMargin||[0,0,0,0];"title"===s.toc.sortBy&&s.toc._items.sort((EA,PA)=>EA._textNodeRef.text.localeCompare(PA._textNodeRef.text,s.toc.sortLocale));for(let EA=0,PA=s.toc._items.length;EA=26?me((Ye/26|0)-1):"")+"abcdefghijklmnopqrstuvwxyz"[Ye%26|0]}(Qe-1)}function PA(Qe){if(Qe<1||Qe>4999)return Qe.toString();let me=Qe,Ye={M:1e3,CM:900,D:500,CD:400,C:100,XC:90,L:50,XL:40,X:10,IX:9,V:5,IV:4,I:1},Ue="";for(let De in Ye)for(;me>=Ye[De];)Ue+=De,me-=Ye[De];return Ue}let te;switch(W){case"none":te=null;break;case"upper-alpha":te=EA(d).toUpperCase();break;case"lower-alpha":te=EA(d);break;case"upper-roman":te=PA(d);break;case"lower-roman":te=PA(d).toLowerCase();break;default:te=function FA(Qe){return Qe.toString()}(d)}if(null===te)return{};Z&&(Array.isArray(Z)?(Z[0]&&(te=Z[0]+te),Z[1]&&(te+=Z[1]),te+=" "):te+=`${Z} `);let ge=SA.getStyleProperty(s,F,"markerColor",void 0)||F.getProperty("color")||"black";return{_inlines:this.textInlines.buildInlines({text:te,color:ge},F).items}}measureUnorderedList(s){let d=this.styleStack.clone(),F=s.ul;s.type=s.type||"disc",s._gapSize=this.gapSizeForList(),s._minWidth=0,s._maxWidth=0;for(let W=0,Z=F.length;W0?d.length-1:0;return s._minWidth=F.min+s._gap*W,s._maxWidth=F.max+s._gap*W,s}measureTable(s){(function Ue(De){if(De.table.widths||(De.table.widths="auto"),I(De.table.widths))for(De.table.widths=[De.table.widths];De.table.widths.length1?(me(Le,F,Se.colSpan),d.push({col:F,span:Se.colSpan,minWidth:Se._minWidth,maxWidth:Se._maxWidth})):(De._minWidth=Math.max(De._minWidth,Se._minWidth),De._maxWidth=Math.max(De._maxWidth,Se._maxWidth))),Se.rowSpan&&Se.rowSpan>1&&Ye(s.table,W,F,Se.rowSpan)}}!function Me(){let De,Le;for(let Se=0,it=d.length;Se0)for(De=zt/Ve.span,Le=0;Le0)for(De=sn/Ve.span,Le=0;Le(v(Le)&&(Le.fillColor=De.styleStack.getProperty("fillColor"),Le.fillOpacity=De.styleStack.getProperty("fillOpacity")),De.measureNode(Le))}function Qe(De,Le,Se){let it={minWidth:0,maxWidth:0};for(let Ve=0;Ves.page?$:s.page>$.page?s:$.y>s.y?$:s,{page:d.page,x:d.x,y:d.y,availableHeight:d.availableHeight,availableWidth:d.availableWidth}}const Xi=class xn extends ri.EventEmitter{constructor(){super(),this.pages=[],this.pageMargins=void 0,this.x=void 0,this.availableWidth=void 0,this.availableHeight=void 0,this.page=-1,this.snapshots=[],this.backgroundLength=[]}beginColumnGroup(s,d,F,W,Z){void 0===d&&(d={}),void 0===F&&(F=!1),void 0===W&&(W=0),void 0===Z&&(Z=null),this.snapshots.push({x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,page:this.page,bottomByPage:d||{},bottomMost:{x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,page:this.page},lastColumnWidth:this.lastColumnWidth,snakingColumns:F,gap:W,columnWidths:Z}),this.lastColumnWidth=0,s&&(this.marginXTopParent=s)}updateBottomByPage(){const s=this.snapshots[this.snapshots.length-1];if(!s)return;const d=this.page;let F=-Number.MIN_VALUE;s.bottomByPage&&s.bottomByPage[d]&&(F=s.bottomByPage[d]),s.bottomByPage&&(s.bottomByPage[d]=Math.max(F,this.y))}resetMarginXTopParent(){this.marginXTopParent=null}getSnakingSnapshot(){for(let s=this.snapshots.length-1;s>=0;s--)if(this.snapshots[s].snakingColumns)return this.snapshots[s];return null}inSnakingColumns(){return!!this.getSnakingSnapshot()}isInNestedNonSnakingGroup(){for(let s=this.snapshots.length-1;s>=0;s--){let d=this.snapshots[s];if(d.snakingColumns)return!1;if(!d.overflowed)return!0}return!1}beginColumn(s,d,F){let W=this.snapshots[this.snapshots.length-1];if(W&&W.overflowed)for(let Z=this.snapshots.length-1;Z>=0;Z--)if(!this.snapshots[Z].overflowed){W=this.snapshots[Z];break}this.calculateBottomMost(W,F),this.page=W.page,this.x=this.x+this.lastColumnWidth+(d||0),this.y=W.y,this.availableWidth=s,this.availableHeight=W.availableHeight,this.lastColumnWidth=s}calculateBottomMost(s,d){d?this.saveContextInEndingCell(d):s.bottomMost=Qi(this,s.bottomMost)}markEnding(s,d,F){this.page=s._columnEndingContext.page,this.x=s._columnEndingContext.x+d,this.y=s._columnEndingContext.y-F,this.availableWidth=s._columnEndingContext.availableWidth,this.availableHeight=s._columnEndingContext.availableHeight,this.lastColumnWidth=s._columnEndingContext.lastColumnWidth}saveContextInEndingCell(s){s._columnEndingContext={page:this.page,x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,lastColumnWidth:this.lastColumnWidth}}completeColumnGroup(s,d){let F=this.snapshots.pop(),W=this.y,Z=this.page,EA=this.availableHeight,PA=F.overflowed;for(;F&&F.overflowed;){let te=Qi({page:Z,y:W,availableHeight:EA},F.bottomMost||{});Z=te.page,W=te.y,EA=te.availableHeight,F=this.snapshots.pop()}if(!F)return{};PA&&(Z>F.bottomMost.page||Z===F.bottomMost.page&&W>F.bottomMost.y)&&(F.bottomMost={x:F.x,y:W,page:Z,availableHeight:EA,availableWidth:F.availableWidth}),this.calculateBottomMost(F,d),this.x=F.x;let FA=F.bottomMost.y;return s&&(F.page===F.bottomMost.page?F.y+s>FA&&(FA=F.y+s):FA+=s),this.y=FA,this.page=F.bottomMost.page,this.availableWidth=F.availableWidth,this.availableHeight=F.bottomMost.availableHeight,s&&(this.availableHeight-=FA-F.bottomMost.y),this.height=s&&F.bottomMost.y-F.y=0&&this.snapshots[FA].overflowed;FA--)F++;let W=d.columnWidths&&d.columnWidths[F]||this.lastColumnWidth||this.availableWidth,Z=d.columnWidths&&d.columnWidths[F+1]||W;this.lastColumnWidth=Z;let EA=this.x+(W||0)+(d.gap||0),PA=d.y;this.snapshots.push({x:EA,y:PA,availableHeight:d.availableHeight,availableWidth:Z,page:this.page,overflowed:!0,bottomMost:{x:EA,y:PA,availableHeight:d.availableHeight,availableWidth:Z,page:this.page},lastColumnWidth:Z,snakingColumns:!0,gap:d.gap,columnWidths:d.columnWidths}),this.x=EA,this.y=PA,this.availableHeight=d.availableHeight,this.availableWidth=Z;for(let FA=this.snapshots.length-2;FA>=0;FA--){let te=this.snapshots[FA];if(te.overflowed||te.snakingColumns)break;te.x=EA,te.y=PA,te.page=this.page,te.availableHeight=d.availableHeight,te.bottomMost&&(te.bottomMost.x=EA,te.bottomMost.y=PA,te.bottomMost.page=this.page,te.bottomMost.availableHeight=d.availableHeight)}return{prevY:s,y:this.y}}resetSnakingColumnsForNewPage(){let s=this.getSnakingSnapshot();if(!s)return;let d=this.pageMargins.top,F=this.getCurrentPage().pageSize.height-this.pageMargins.top-this.pageMargins.bottom,W=s.columnWidths?s.columnWidths[0]:this.lastColumnWidth||this.availableWidth;for(;this.snapshots.length>1&&this.snapshots[this.snapshots.length-1].overflowed;)this.snapshots.pop();this.x=this.marginXTopParent?this.pageMargins.left+this.marginXTopParent[0]:this.pageMargins.left,this.availableWidth=W,this.lastColumnWidth=W;for(let Z=0;Z0}initializePage(){this.y=this.pageMargins.top,this.availableHeight=this.getCurrentPage().pageSize.height-this.pageMargins.top-this.pageMargins.bottom;const s=this.pageSnapshot(),d=s.pageCtx,F=s.isSnapshot;d.availableWidth=this.getCurrentPage().pageSize.width-this.pageMargins.left-this.pageMargins.right,F&&this.marginXTopParent&&(d.availableWidth-=this.marginXTopParent[0],d.availableWidth-=this.marginXTopParent[1])}pageSnapshot(){return this.snapshots[0]?{pageCtx:this.snapshots[0],isSnapshot:!0}:{pageCtx:this,isSnapshot:!1}}moveTo(s,d){null!=s&&(this.x=s,this.availableWidth=this.getCurrentPage().pageSize.width-this.x-this.pageMargins.right),null!=d&&(this.y=d,this.availableHeight=this.getCurrentPage().pageSize.height-this.y-this.pageMargins.bottom)}moveToRelative(s,d){null!=s&&(this.x=this.x+s),null!=d&&(this.y=this.y+d)}beginDetachedBlock(){this.snapshots.push({x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,page:this.page,lastColumnWidth:this.lastColumnWidth})}endDetachedBlock(){let s=this.snapshots.pop();this.x=s.x,this.y=s.y,this.availableWidth=s.availableWidth,this.availableHeight=s.availableHeight,this.page=s.page,this.lastColumnWidth=s.lastColumnWidth}moveToNextPage(s){let d=this.page+1,F=this.page,W=this.y;if(this.snapshots.length>0){let EA=this.snapshots[this.snapshots.length-1];EA.bottomMost&&EA.bottomMost.y&&(W=Math.max(this.y,EA.bottomMost.y))}let Z=d>=this.pages.length;if(Z){let EA=this.availableWidth,PA=this.getCurrentPage().pageSize.orientation,FA=(($,s)=>(s=function ai($,s){return void 0===$?s:I($)&&"landscape"===$.toLowerCase()?"landscape":"portrait"}(s,$.pageSize.orientation),s!==$.pageSize.orientation?{orientation:s,width:$.pageSize.height,height:$.pageSize.width}:{orientation:$.pageSize.orientation,width:$.pageSize.width,height:$.pageSize.height}))(this.getCurrentPage(),s);this.addPage(FA,null,this.getCurrentPage().customProperties),PA===FA.orientation&&(this.availableWidth=EA)}else this.page=d,this.initializePage();return{newPageCreated:Z,prevPage:F,prevY:W,y:this.y}}addPage(s,d,F){void 0===d&&(d=null),void 0===F&&(F={}),null!==d&&(this.pageMargins=d,this.x=d.left,this.availableWidth=s.width-d.left-d.right);let W={items:[],pageSize:s,pageMargins:this.pageMargins,customProperties:F};return this.pages.push(W),this.backgroundLength.push(0),this.page=this.pages.length-1,this.initializePage(),this.emit("pageAdded",W),W}getCurrentPage(){return this.page<0||this.page>=this.pages.length?null:this.pages[this.page]}getCurrentPosition(){let s=this.getCurrentPage().pageSize,d=s.height-this.pageMargins.top-this.pageMargins.bottom,F=s.width-this.pageMargins.left-this.pageMargins.right;return{pageNumber:this.page+1,pageOrientation:s.orientation,pageInnerHeight:d,pageInnerWidth:F,left:this.x,top:this.y,verticalRatio:(this.y-this.pageMargins.top)/d,horizontalRatio:(this.x-this.pageMargins.left)/F}}};function fn($,s,d){null==d||d<0||d>$.items.length?$.items.push(s):$.items.splice(d,0,s)}const ms=class mi extends ri.EventEmitter{constructor(s){super(),this._context=s,this.contextStack=[]}context(){return this._context}addLine(s,d,F){let W=s.getHeight(),Z=this.context(),EA=Z.getCurrentPage(),PA=this.getCurrentPositionOnPage();return!(Z.availableHeight0&&s.inlines[0].alignment,Z=0;switch(W){case"right":Z=d-F;break;case"center":Z=(d-F)/2}if(Z&&(s.x=(s.x||0)+Z),"justify"===W&&!s.newLineForced&&!s.lastLineInParagraph&&s.inlines.length>1){let EA=(d-F)/(s.inlines.length-1);for(let PA=1,FA=s.inlines.length;PA0)&&(void 0===s._x&&(s._x=s.x||0),s.x=F.x+s._x,s.y=F.y,this.alignImage(s),fn(W,{type:"image",item:s},d),F.moveDown(s._height),Z)}addCanvas(s,d){let F=this.context(),W=F.getCurrentPage(),Z=[],EA=s._minHeight;return!(!W||void 0===s.absolutePosition&&F.availableHeight0)&&(void 0===s._x&&(s._x=s.x||0),s.x=F.x+s._x,s.y=F.y,this.alignImage(s),fn(W,{type:"svg",item:s},d),F.moveDown(s._height),Z)}addQr(s,d){let F=this.context(),W=F.getCurrentPage(),Z=this.getCurrentPositionOnPage();if(!W||void 0===s.absolutePosition&&F.availableHeight0)&&(void 0===s._x&&(s._x=s.x||0),s.x=F.x+s._x,s.y=F.y,fn(W,{type:"attachment",item:s},d),F.moveDown(s._height),Z)}alignImage(s){let d=this.context().availableWidth,F=s._minWidth,W=0;switch(s._alignment){case"right":W=d-F;break;case"center":W=(d-F)/2}W&&(s.x=(s.x||0)+W)}alignCanvas(s){let d=this.context().availableWidth,F=s._minWidth,W=0;switch(s._alignment){case"right":W=d-F;break;case"center":W=(d-F)/2}W&&s.canvas.forEach(Z=>{Dt(Z,W,0)})}addVector(s,d,F,W,Z){let EA=this.context(),PA=EA.getCurrentPage();N(Z)&&(PA=EA.pages[Z]);let FA=this.getCurrentPositionOnPage();if(PA)return Dt(s,d?0:EA.x,F?0:EA.y),fn(PA,{type:"vector",item:s},W),FA}beginClip(s,d){let F=this.context();return F.getCurrentPage().items.push({type:"beginClip",item:{x:F.x,y:F.y,width:s,height:d}}),!0}endClip(){return this.context().getCurrentPage().items.push({type:"endClip"}),!0}beginVerticalAlignment(s){let F={type:"beginVerticalAlignment",item:{verticalAlignment:s}};return this.context().getCurrentPage().items.push(F),F}endVerticalAlignment(s){let F={type:"endVerticalAlignment",item:{verticalAlignment:s}};return this.context().getCurrentPage().items.push(F),F}addFragment(s,d,F,W){let Z=this.context(),EA=Z.getCurrentPage();return!(!d&&s.height>Z.availableHeight||(s.items.forEach(PA=>{switch(PA.type){case"line":var FA=PA.item.clone();FA._node&&(FA._node.positions[0].pageNumber=Z.page+1),FA.x=(FA.x||0)+(d?s.xOffset||0:Z.x),FA.y=(FA.y||0)+(F?s.yOffset||0:Z.y),EA.items.push({type:"line",item:FA});break;case"vector":var te=bt(PA.item);Dt(te,d?s.xOffset||0:Z.x,F?s.yOffset||0:Z.y),te._isFillColorFromUnbreakable?(delete te._isFillColorFromUnbreakable,EA.items.splice(Z.backgroundLength[Z.page],0,{type:"vector",item:te})):EA.items.push({type:"vector",item:te});break;case"image":case"svg":case"beginClip":case"endClip":case"beginVerticalAlignment":case"endVerticalAlignment":var ge=bt(PA.item);ge.x=(ge.x||0)+(d?s.xOffset||0:Z.x),ge.y=(ge.y||0)+(F?s.yOffset||0:Z.y),EA.items.push({type:PA.type,item:ge})}}),W||Z.moveDown(s.height),0))}pushContext(s,d){if(void 0===s&&(d=this.context().getCurrentPage().height-this.context().pageMargins.top-this.context().pageMargins.bottom,s=this.context().availableWidth),N(s)){let F=s;(s=new Xi).addPage({width:F,height:d},{left:0,right:0,top:0,bottom:0})}this.contextStack.push(this.context()),this._context=s}popContext(){this._context=this.contextStack.pop()}getCurrentPositionOnPage(){return(this.contextStack[0]||this.context()).getCurrentPosition()}},Ms={"4A0":[4767.87,6740.79],"2A0":[3370.39,4767.87],A0:[2383.94,3370.39],A1:[1683.78,2383.94],A2:[1190.55,1683.78],A3:[841.89,1190.55],A4:[595.28,841.89],A5:[419.53,595.28],A6:[297.64,419.53],A7:[209.76,297.64],A8:[147.4,209.76],A9:[104.88,147.4],A10:[73.7,104.88],B0:[2834.65,4008.19],B1:[2004.09,2834.65],B2:[1417.32,2004.09],B3:[1000.63,1417.32],B4:[708.66,1000.63],B5:[498.9,708.66],B6:[354.33,498.9],B7:[249.45,354.33],B8:[175.75,249.45],B9:[124.72,175.75],B10:[87.87,124.72],C0:[2599.37,3676.54],C1:[1836.85,2599.37],C2:[1298.27,1836.85],C3:[918.43,1298.27],C4:[649.13,918.43],C5:[459.21,649.13],C6:[323.15,459.21],C7:[229.61,323.15],C8:[161.57,229.61],C9:[113.39,161.57],C10:[79.37,113.39],RA0:[2437.8,3458.27],RA1:[1729.13,2437.8],RA2:[1218.9,1729.13],RA3:[864.57,1218.9],RA4:[609.45,864.57],SRA0:[2551.18,3628.35],SRA1:[1814.17,2551.18],SRA2:[1275.59,1814.17],SRA3:[907.09,1275.59],SRA4:[637.8,907.09],EXECUTIVE:[521.86,756],FOLIO:[612,936],LEGAL:[612,1008],LETTER:[612,792],TABLOID:[792,1224]};function Mi($,s){$&&"auto"===$.height&&($.height=1/0);let W=function F(Z){if(I(Z)){let EA=Ms[Z.toUpperCase()];if(!EA)throw new Error(`Page size ${Z} not recognized`);return{width:EA[0],height:EA[1]}}return Z}($||"A4");return function d(Z){return!!I(Z)&&("portrait"===(Z=Z.toLowerCase())&&W.width>W.height||"landscape"===Z&&W.widthW.height?"landscape":"portrait",W}function pi($){if(N($))$={left:$,right:$,top:$,bottom:$};else if(Array.isArray($))if(2===$.length)$={left:$[0],top:$[1],right:$[0],bottom:$[1]};else{if(4!==$.length)throw new Error("Invalid pageMargins definition");$={left:$[0],top:$[1],right:$[2],bottom:$[3]}}return $}const qi=class Zi extends ms{constructor(s){super(s),this.transactionLevel=0,this.repeatables=[]}addLine(s,d,F){return this._fitOnPage(()=>super.addLine(s,d,F))}addImage(s,d){return this._fitOnPage(()=>super.addImage(s,d))}addCanvas(s,d){return this._fitOnPage(()=>super.addCanvas(s,d))}addSVG(s,d){return this._fitOnPage(()=>super.addSVG(s,d))}addQr(s,d){return this._fitOnPage(()=>super.addQr(s,d))}addAttachment(s,d){return this._fitOnPage(()=>super.addAttachment(s,d))}addVector(s,d,F,W,Z){return super.addVector(s,d,F,W,Z)}beginClip(s,d){return super.beginClip(s,d)}endClip(){return super.endClip()}beginVerticalAlignment(s){return super.beginVerticalAlignment(s)}endVerticalAlignment(s){return super.endVerticalAlignment(s)}addFragment(s,d,F,W){return this._fitOnPage(()=>super.addFragment(s,d,F,W))}moveToNextPage(s){let d=this.context().moveToNextPage(s);this.repeatables.forEach(function(F){void 0===F.insertedOnPages[this.context().page]?(F.insertedOnPages[this.context().page]=!0,this.addFragment(F,!0)):this.context().moveDown(F.height)},this),this.emit("pageChanged",{prevPage:d.prevPage,prevY:d.prevY,y:this.context().y})}addPage(s,d,F,W){void 0===W&&(W={});let Z=this.page,EA=this.y;this.context().addPage(Mi(s,d),pi(F),W),this.emit("pageChanged",{prevPage:Z,prevY:EA,y:this.context().y})}beginUnbreakableBlock(s,d){0===this.transactionLevel++&&(this.originalX=this.context().x,this.pushContext(s,d))}commitUnbreakableBlock(s,d){if(0===--this.transactionLevel){let F=this.context();this.popContext();let W=F.pages.length;if(W>0){let Z=F.pages[0];if(Z.xOffset=s,Z.yOffset=d,W>1)if(void 0!==s||void 0!==d)Z.height=F.getCurrentPage().pageSize.height-F.pageMargins.top-F.pageMargins.bottom;else{Z.height=this.context().getCurrentPage().pageSize.height-this.context().pageMargins.top-this.context().pageMargins.bottom;for(let EA=0,PA=this.repeatables.length;EA{d.items.push(F)}),d.xOffset=this.originalX,d.height=s.y,d.insertedOnPages=[],d}pushToRepeatables(s){this.repeatables.push(s)}popFromRepeatables(){this.repeatables.pop()}moveToNextColumn(){let s=this.context().moveToNextColumn();this.repeatables.forEach(function(d){this.addFragment(d,!1)},this),this.emit("columnChanged",{prevY:s.prevY,y:this.context().y})}canMoveToNextColumn(){let s=this.context(),d=s.getSnakingSnapshot();if(d){for(let Qe=s.snapshots.length-1;Qe>=0;Qe--){let me=s.snapshots[Qe];if(me.snakingColumns)break;if(!me.overflowed)return!1}let F=0;for(let Qe=s.snapshots.length-1;Qe>=0&&s.snapshots[Qe].overflowed;Qe--)F++;if(d.columnWidths&&F>=d.columnWidths.length-1)return!1;let W=s.availableWidth||s.lastColumnWidth||0,Z=d.columnWidths?d.columnWidths[F+1]:W,EA=s.x+W+(d.gap||0),PA=s.getCurrentPage();return EA+Z<=PA.pageSize.width-(PA.pageMargins?PA.pageMargins.right:0)-(s.marginXTopParent?s.marginXTopParent[1]:0)+1}return!1}_fitOnPage(s){let d=s();if(!d&&(this.canMoveToNextColumn()&&(this.moveToNextColumn(),d=s()),!d)){let F=this.context();if(F.getSnakingSnapshot()){if(F.isInNestedNonSnakingGroup())this.moveToNextPage();else{this.moveToNextPage();let Z=F.lastColumnWidth;F.resetSnakingColumnsForNewPage(),F.lastColumnWidth=Z}d=s()}else{for(;F.snapshots.length>0&&F.snapshots[F.snapshots.length-1].overflowed;){let Z=F.snapshots.pop(),EA=F.snapshots[F.snapshots.length-1];EA&&(F.x=EA.x,F.y=EA.y,F.availableHeight=EA.availableHeight,F.availableWidth=Z.availableWidth,F.lastColumnWidth=EA.lastColumnWidth)}this.moveToNextPage(),d=s()}}return d}},$i=new Set(["before","beforeOdd","beforeEven","after","afterOdd","afterEven"]),ps=$=>!(!$||"object"!=typeof $)&&$i.has($.pageBreak),Is=class As{constructor(s){this.tableNode=s,this._isCurrentRowUnbreakable=!1}beginTable(s){let Z,EA;Z=this.tableNode,this.offsets=Z._offsets,this.layout=Z._layout,EA=s.context().availableWidth-this.offsets.total,Gt_buildColumnWidths(Z.table.widths,EA,this.offsets.total,Z),this.tableWidth=Z._offsets.total+(()=>{let FA=0;return Z.table.widths.forEach(te=>{FA+=te._calcWidth}),FA})(),this.rowSpanData=(()=>{let ge,FA=[],te=0;FA.push({left:0,rowSpan:0});for(let Me=0,Qe=this.tableNode.table.body[0].length;MeZ.table.body.length)throw new Error(`Too few rows in the table. Property headerRows requires at least ${this.headerRows}, contains only ${Z.table.body.length}`);this.rowsWithoutPageBreak=this.headerRows;const FA=Z.table.keepWithHeaderRows;K(FA)&&(this.rowsWithoutPageBreak+=FA)}this.dontBreakRows=Z.table.dontBreakRows||!1,(this.rowsWithoutPageBreak||this.dontBreakRows)&&(s.beginUnbreakableBlock(),this.drawHorizontalLine(0,s),this.rowsWithoutPageBreak&&this.dontBreakRows&&s.beginUnbreakableBlock()),(FA=>{for(let ge=0;ge0&&te(ge+De,Qe,0,me.border[0]),void 0!==me.border[2]&&te(ge+De,Qe+Ue-1,2,me.border[2]);for(let De=0;De0&&te(ge,Qe+De,1,me.border[1]),void 0!==me.border[3]&&te(ge+Ye-1,Qe+De,3,me.border[3])}}}function te(ge,Me,Qe,me){let Ye=FA[ge][Me];Ye.border=Ye.border||{},Ye.border[Qe]=me}})(this.tableNode.table.body)}onRowBreak(s,d){return()=>{let F=this.rowPaddingTop+(this.headerRows?0:this.topLineWidth);d.context().availableHeight-=this.reservedAtBottom,d.context().moveDown(F)}}beginRow(s,d){this.topLineWidth=this.layout.hLineWidth(s,this.tableNode),this.rowPaddingTop=this.layout.paddingTop(s,this.tableNode),this.bottomLineWidth=this.layout.hLineWidth(s+1,this.tableNode),this.rowPaddingBottom=this.layout.paddingBottom(s,this.tableNode),this.rowCallback=this.onRowBreak(s,d),d.addListener("pageChanged",this.rowCallback),0==s&&!this.dontBreakRows&&!this.rowsWithoutPageBreak&&(this._tableTopBorderY=d.context().y,d.context().moveDown(this.topLineWidth)),this.rowTopPageY=d.context().y+this.rowPaddingTop;const W=(this.tableNode.table.body[s]||[]).some(ps);this._isCurrentRowUnbreakable=this.dontBreakRows&&s>0&&!W,this._isCurrentRowUnbreakable&&d.beginUnbreakableBlock(),this.rowTopY=d.context().y,this.reservedAtBottom=this.bottomLineWidth+this.rowPaddingBottom,d.context().availableHeight-=this.reservedAtBottom,d.context().moveDown(this.rowPaddingTop)}drawHorizontalLine(s,d,F,W,Z){void 0===W&&(W=!0);let EA=this.layout.hLineWidth(s,this.tableNode);if(EA){let Me,ge=this.layout.hLineStyle(s,this.tableNode);ge&&ge.dash&&(Me=ge.dash);let Ue,De,Le,Qe=EA/2,me=null,Ye=this.tableNode.table.body;for(let Se=0,it=this.rowSpanData.length;Se0&&(Ue=Ye[s-1][Se],(FA=Ue.border?Ue.border[3]:this.layout.defaultBorder)&&Ue.borderColor&&(zt=Ue.borderColor[3])),sgn;)me.width+=this.rowSpanData[Se+gn++].width||0;Se+=gn-1}else if(Ue&&Ue.colSpan&&FA){for(;Ue.colSpan>gn;)me.width+=this.rowSpanData[Se+gn++].width||0;Se+=gn-1}else if(De&&De.colSpan&&PA){for(;De.colSpan>gn;)me.width+=this.rowSpanData[Se+gn++].width||0;Se+=gn-1}else me.width+=this.rowSpanData[Se].width||0}let sn=(F||0)+Qe;vt&&me&&me.width&&(d.addVector({type:"line",x1:me.left,x2:me.left+me.width,y1:sn,y2:sn,lineWidth:EA,dash:Me,lineColor:zt},!1,N(F),null,Z),me=null,Ue=null,De=null,Le=null)}W&&d.context().moveDown(EA)}}drawVerticalLine(s,d,F,W,Z,EA,PA){let FA=this.layout.vLineWidth(W,this.tableNode);if(0===FA)return;let ge,te=this.layout.vLineStyle(W,this.tableNode);te&&te.dash&&(ge=te.dash);let Qe,me,Ye,Me=this.tableNode.table.body;if(W>0&&(Qe=Me[EA][PA],Qe&&Qe.borderColor&&(Qe.border?Qe.border[2]:this.layout.defaultBorder)&&(Ye=Qe.borderColor[2])),null==Ye&&W{let Se=[],it=0;for(let Ve=0,vt=this.tableNode.table.body[s].length;Ve0&&it--}return Se.push({x:this.rowSpanData[this.rowSpanData.length-1].left,index:this.rowSpanData.length-1}),Se})(),FA=[],te=F&&F.length>0,ge=this.tableNode.table.body;if(FA.push({y0:this.rowTopY,page:te?F[0].prevPage:Z}),te)for(let Se=0,it=F.length;Se0&&(Se=F[0].prevPage),this.drawHorizontalLine(0,d,this._tableTopBorderY,!1,Se)}for(let Se=Me?1:0,it=FA.length;Se0&&!this.headerRows,zt=vt?0:this.topLineWidth,sn=FA[Se].y0,gn=FA[Se].y1;Ve&&(gn+=this.rowPaddingBottom),d.context().page!=FA[Se].page&&(d.context().page=FA[Se].page,this.reservedAtBottom=0),Ve&&!1!==this.layout.hLineWhenBroken&&this.drawHorizontalLine(s+1,d,gn),vt&&!1!==this.layout.hLineWhenBroken&&this.drawHorizontalLine(s,d,sn);for(let Tn=0,rs=PA.length;Tn0&&!kn){let dn=ge[s][Xt-1];kn=dn.border?dn.border[2]:this.layout.defaultBorder}if(Xt+11)for(let Ve=1;Ve1)for(let Ve=1;Ve0&&this.rowSpanData[Se].rowSpan--}if(this.drawHorizontalLine(s+1,d),this.headerRows&&s===this.headerRows-1&&(this.headerRepeatable=d.currentBlockToRepeatable()),this.dontBreakRows&&(0===s||this._isCurrentRowUnbreakable)){const Se=()=>{s>0&&!this.headerRows&&!1!==this.layout.hLineWhenBroken&&this.drawHorizontalLine(s,d)};d.addListener("pageChanged",Se),d.commitUnbreakableBlock(),d.removeListener("pageChanged",Se)}this._isCurrentRowUnbreakable=!1,this.headerRepeatable&&(s===this.rowsWithoutPageBreak-1||s===this.tableNode.table.body.length-1)&&(d.commitUnbreakableBlock(),d.pushToRepeatables(this.headerRepeatable),this.cleanUpRepeatables=!0,this.headerRepeatable=null)}};class Ui{constructor(s){this.maxWidth=s,this.leadingCut=0,this.trailingCut=0,this.inlineWidths=0,this.inlines=[]}addInline(s){0===this.inlines.length&&(this.leadingCut=s.leadingCut||0),this.trailingCut=s.trailingCut||0,s.x=this.inlineWidths-this.leadingCut,this.inlines.push(s),this.inlineWidths+=s.width,s.lineEnd&&(this.newLineForced=!0)}getHeight(){let s=0;return this.inlines.forEach(d=>{s=Math.max(s,d.height||0)}),s}getAscenderHeight(){let s=0;return this.inlines.forEach(d=>{s=Math.max(s,d.font.ascender/1e3*d.fontSize)}),s}getWidth(){return this.inlineWidths-this.leadingCut-this.trailingCut}getAvailableWidth(){return this.maxWidth-this.getWidth()}hasEnoughSpaceForInline(s,d){if(void 0===d&&(d=[]),0===this.inlines.length)return!0;if(this.newLineForced)return!1;let F=s.width,W=s.trailingCut||0;if(s.noNewLine)for(let Z=0,EA=d.length;Z{$.push(d)})}const Li=class Ds{constructor(s,d,F){this.pageSize=s,this.pageMargins=d,this.svgMeasure=F,this.tableLayouts={},this.nestedLevel=0,this.verticalAlignmentItemStack=[]}registerTableLayouts(s){this.tableLayouts=bt(this.tableLayouts,s)}layoutDocument(s,d,F,W,Z,EA,PA,FA,te){function ge(me,Ye){if("function"!=typeof te)return!1;(me=me.filter(De=>!(!De||0===De.positions.length||""===De.text&&!De.listMarker))).forEach(De=>{let Le={};["id","text","ul","ol","table","image","qr","canvas","svg","columns","headlineLevel","style","pageBreak","pageOrientation","width","height"].forEach(Se=>{void 0!==De[Se]&&(Le[Se]=De[Se])}),Le.startPosition=De.positions[0],Le.pageNumbers=Array.from(new Set(De.positions.map(Se=>Se.pageNumber))),Le.pages=Ye.length,Le.stack=Array.isArray(De.stack),De.nodeInfo=Le});for(let De=0;De{let it=[];for(let Ve=De+1,vt=me.length;Ve-1&&it.push(me[Ve].nodeInfo);return it},getNodesOnNextPage:()=>{let it=[];for(let Ve=De+1,vt=me.length;Ve-1&&it.push(me[Ve].nodeInfo);return it},getPreviousNodesOnPage:()=>{let it=[];for(let Ve=0;Ve-1&&it.push(me[Ve].nodeInfo);return it}}))return Le.pageBreak="before",!0}}return!1}function Me(me){me.linearNodeList.forEach(Ye=>{Ye.resetXY()})}this.docPreprocessor=new dA,this.docMeasure=new di(d,F,W,this.svgMeasure,this.tableLayouts);let Qe=this.tryLayoutDocument(s,d,F,W,Z,EA,PA,FA);for(;ge(Qe.linearNodeList,Qe.pages);)Me(Qe),Qe=this.tryLayoutDocument(s,d,F,W,Z,EA,PA,FA);return Qe.pages}tryLayoutDocument(s,d,F,W,Z,EA,PA,FA){return this.linearNodeList=[],s=this.docPreprocessor.preprocessDocument(s),s=this.docMeasure.measureDocument(s),this.writer=new qi(new Xi),this.writer.context().addListener("pageAdded",ge=>{let Me=Z;(ge.customProperties.background||null===ge.customProperties.background)&&(Me=ge.customProperties.background),this.addBackground(Me)}),!((ge=s).stack&&ge.stack.length>0&&ge.stack[0].section||ge.section)&&this.writer.addPage(this.pageSize,null,this.pageMargins),this.processNode(s),this.addHeadersAndFooters(EA,PA),this.addWatermark(FA,d,W),{pages:this.writer.context().pages,linearNodeList:this.linearNodeList};var ge}addBackground(s){let d="function"==typeof s?s:()=>s,F=this.writer.context(),W=F.getCurrentPage().pageSize,Z=d(F.page+1,W);Z&&(this.writer.beginUnbreakableBlock(W.width,W.height),Z=this.docPreprocessor.preprocessBlock(Z),this.processNode(this.docMeasure.measureBlock(Z)),this.writer.commitUnbreakableBlock(0,0),F.backgroundLength[F.page]+=Z.positions.length)}addDynamicRepeatable(s,d,F){for(let Z=0,EA=this.writer.context().pages.length;Z"u"||null===FA)continue;let te=FA(Z+1,EA,this.writer.context().pages[Z].pageSize);if(te){let ge=d(this.writer.context().getCurrentPage().pageSize,this.writer.context().getCurrentPage().pageMargins);this.writer.beginUnbreakableBlock(ge.width,ge.height),te=this.docPreprocessor.preprocessBlock(te),this.processNode(this.docMeasure.measureBlock(te)),this.writer.commitUnbreakableBlock(ge.x,ge.y)}}}addHeadersAndFooters(s,d){this.addDynamicRepeatable(s,(Z,EA)=>({x:0,y:0,width:Z.width,height:EA.top}),"header"),this.addDynamicRepeatable(d,(Z,EA)=>({x:0,y:Z.height-EA.bottom,width:Z.width,height:EA.bottom}),"footer")}addWatermark(s,d,F){let W=this.writer.context().pages;for(let FA=0,te=W.length;FA1;)Qe.push({fontSize:De}),me=Me.sizeOfRotatedText(te.text,te.angle,Qe),me.width>FA.width?(Ue=De,De=(Ye+Ue)/2):me.widthFA.height?(Ue=De,De=(Ye+Ue)/2):(Ye=De,De=(Ye+Ue)/2)),Qe.pop();return De}(te,FA,ge));let Qe={text:FA.text,font:ge.provideFont(FA.font,FA.bold,FA.italics),fontSize:FA.fontSize,color:FA.color,opacity:FA.opacity,angle:FA.angle};return Qe._size=function EA(FA,te){let ge=new mt(te),Me=new SA(null,{font:FA.font,bold:FA.bold,italics:FA.italics});return Me.push({fontSize:FA.fontSize}),{size:ge.sizeOfText(FA.text,Me),rotatedSize:ge.sizeOfRotatedText(FA.text,FA.angle,Me)}}(FA,ge),Qe}}processNode(s,d){if(void 0===d&&(d=!1),this.linearNodeList.push(s),function Fs($){let s=$.x,d=$.y;$.positions=[],Array.isArray($.canvas)&&$.canvas.forEach(F=>{let W=F.x,Z=F.y,EA=F.x1,PA=F.y1,FA=F.x2,te=F.y2;F.resetXY=()=>{F.x=W,F.y=Z,F.x1=EA,F.y1=PA,F.x2=FA,F.y2=te}}),$.resetXY=()=>{$.x=s,$.y=d,Array.isArray($.canvas)&&$.canvas.forEach(F=>{F.resetXY()})}}(s),null!==this.writer.context().getCurrentPage())var W=this.writer.context().getCurrentPosition().top;(Z=>{let EA=s._margin;"before"===s.pageBreak?this.writer.moveToNextPage(s.pageOrientation):"beforeOdd"===s.pageBreak?(this.writer.moveToNextPage(s.pageOrientation),(this.writer.context().page+1)%2==1&&this.writer.moveToNextPage(s.pageOrientation)):"beforeEven"===s.pageBreak&&(this.writer.moveToNextPage(s.pageOrientation),(this.writer.context().page+1)%2==0&&this.writer.moveToNextPage(s.pageOrientation));const PA=s.relativePosition||s.absolutePosition;if(EA&&!PA){const FA=this.writer.context().availableHeight;FA-EA[1]<0?(this.writer.context().moveDown(FA),this.writer.context().inSnakingColumns()&&!this.writer.context().isInNestedNonSnakingGroup()?this.snakingAwarePageBreak(s.pageOrientation):this.writer.moveToNextPage(s.pageOrientation)):this.writer.context().moveDown(EA[1]),this.writer.context().addMargin(EA[0],EA[2])}if(Z(),EA&&!PA){const FA=this.writer.context().availableHeight;FA-EA[3]<0?(this.writer.context().moveDown(FA),this.writer.context().inSnakingColumns()&&!this.writer.context().isInNestedNonSnakingGroup()?this.snakingAwarePageBreak(s.pageOrientation):this.writer.moveToNextPage(s.pageOrientation)):this.writer.context().moveDown(EA[3]),this.writer.context().addMargin(-EA[0],-EA[2])}"after"===s.pageBreak?this.writer.moveToNextPage(s.pageOrientation):"afterOdd"===s.pageBreak?(this.writer.moveToNextPage(s.pageOrientation),(this.writer.context().page+1)%2==1&&this.writer.moveToNextPage(s.pageOrientation)):"afterEven"===s.pageBreak&&(this.writer.moveToNextPage(s.pageOrientation),(this.writer.context().page+1)%2==0&&this.writer.moveToNextPage(s.pageOrientation))})(()=>{let Z=s.verticalAlignment;if(d&&Z)var EA=this.writer.beginVerticalAlignment(Z);let PA=s.unbreakable;PA&&this.writer.beginUnbreakableBlock();let FA=s.absolutePosition;FA&&(this.writer.context().beginDetachedBlock(),this.writer.context().moveTo(FA.x||0,FA.y||0));let te=s.relativePosition;if(te&&(this.writer.context().beginDetachedBlock(),this.writer.context().moveToRelative(te.x||0,te.y||0)),s.stack)this.processVerticalContainer(s);else if(s.section)this.processSection(s);else if(s.columns)this.processColumns(s);else if(s.ul)this.processList(!1,s);else if(s.ol)this.processList(!0,s);else if(s.table)this.processTable(s);else if(void 0!==s.text)this.processLeaf(s);else if(s.toc)this.processToc(s);else if(s.image)this.processImage(s);else if(s.svg)this.processSVG(s);else if(s.canvas)this.processCanvas(s);else if(s.qr)this.processQr(s);else if(s.attachment)this.processAttachment(s);else if(!s._span)throw new Error(`Unrecognized document structure: ${P(s)}`);(FA||te)&&this.writer.context().endDetachedBlock(),PA&&this.writer.commitUnbreakableBlock(),d&&Z&&this.verticalAlignmentItemStack.push({begin:EA,end:this.writer.endVerticalAlignment(Z)})}),void 0!==W&&(s.__height=this.writer.context().getCurrentPosition().top-W)}snakingAwarePageBreak(s){let d=this.writer.context();if(!d.getSnakingSnapshot())return;if(this.writer.canMoveToNextColumn())return void this.writer.moveToNextColumn();this.writer.moveToNextPage(s);let W=d.lastColumnWidth;d.resetSnakingColumnsForNewPage(),d.lastColumnWidth=W}processVerticalContainer(s){s.stack.forEach(d=>{this.processNode(d),Zn(s.positions,d.positions)},this)}processSection(s){let d=this.writer.context().getCurrentPage();if(!d||d&&d.items.length){"inherit"===s.pageSize&&(s.pageSize=d?{width:d.pageSize.width,height:d.pageSize.height}:void 0),"inherit"===s.pageOrientation&&(s.pageOrientation=d?d.pageSize.orientation:void 0),"inherit"===s.pageMargins&&(s.pageMargins=d?d.pageMargins:void 0),"inherit"===s.header&&(s.header=d?d.customProperties.header:void 0),"inherit"===s.footer&&(s.footer=d?d.customProperties.footer:void 0),"inherit"===s.background&&(s.background=d?d.customProperties.background:void 0),"inherit"===s.watermark&&(s.watermark=d?d.customProperties.watermark:void 0),s.header&&"function"!=typeof s.header&&null!==s.header&&(s.header=Ze(s.header)),s.footer&&"function"!=typeof s.footer&&null!==s.footer&&(s.footer=Ze(s.footer));let F={};typeof s.header<"u"&&(F.header=s.header),typeof s.footer<"u"&&(F.footer=s.footer),typeof s.background<"u"&&(F.background=s.background),typeof s.watermark<"u"&&(F.watermark=s.watermark),this.writer.addPage(s.pageSize||this.pageSize,s.pageOrientation,s.pageMargins||this.pageMargins,F)}this.processNode(s.section)}processColumns(s){this.nestedLevel++;let d=s.columns,F=this.writer.context().availableWidth,W=function EA(PA){if(!PA)return null;let FA=[];FA.push(0);for(let te=d.length-1;te>0;te--)FA.push(PA);return FA}(s._gap);W&&(F-=(W.length-1)*s._gap),Gt_buildColumnWidths(d,F);let Z=this.processRow({marginX:s._margin?[s._margin[0],s._margin[2]]:[0,0],cells:d,widths:d,gaps:W,snakingColumns:s.snakingColumns});Zn(s.positions,Z.positions),this.nestedLevel--,0===this.nestedLevel&&this.writer.context().resetMarginXTopParent()}_findStartingRowSpanCell(s,d){let F=1;for(let W=d-1;W>=0;W--){if(!s[W]._span)return s[W].rowSpan>1&&(s[W].colSpan||1)===F?s[W]:null;F++}return null}_getPageBreak(s,d){return s.find(F=>F.prevPage===d)}_getPageBreakListBySpan(s,d,F){if(!s||!s._breaksBySpan)return null;const W=s._breaksBySpan.filter(PA=>PA.prevPage===d&&F<=PA.rowIndexOfSpanEnd);let Z=Number.MAX_VALUE,EA=Number.MIN_VALUE;return W.forEach(PA=>{EA=Math.max(PA.prevY,EA),Z=Math.min(PA.y,Z)}),{prevPage:d,prevY:EA,y:Z}}_findSameRowPageBreakByRowSpanData(s,d,F){return s?s.find(W=>W.prevPage===d&&F===W.rowIndexOfSpanEnd):null}_updatePageBreaksData(s,d,F){Object.keys(d._bottomByPage).forEach(W=>{const Z=Number(W),EA=this._getPageBreak(s,Z);if(EA&&(EA.prevY=Math.max(EA.prevY,d._bottomByPage[Z])),d._breaksBySpan&&d._breaksBySpan.length>0){const PA=d._breaksBySpan.filter(FA=>FA.prevPage===Z&&F<=FA.rowIndexOfSpanEnd);PA&&PA.length>0&&PA.forEach(FA=>{FA.prevY=Math.max(FA.prevY,d._bottomByPage[Z])})}})}_resolveBreakY(s,d,F){F.prevY=Math.max(s.prevY,d.prevY),F.y=Math.min(s.y,d.y)}_storePageBreakData(s,d,F,W){if(d){let EA=this._findSameRowPageBreakByRowSpanData(W&&W._breaksBySpan||null,s.prevPage,s.rowIndex);EA||(EA={...s,rowIndexOfSpanEnd:s.rowIndex+s.rowSpan-1},W._breaksBySpan||(W._breaksBySpan=[]),W._breaksBySpan.push(EA)),EA.prevY=Math.max(EA.prevY,s.prevY),EA.y=Math.min(EA.y,s.y);let PA=this._getPageBreak(F,s.prevPage);PA&&this._resolveBreakY(PA,EA,PA)}else{let Z=this._getPageBreak(F,s.prevPage),EA=this._getPageBreakListBySpan(W,s.prevPage,s.rowIndex);Z||(Z={...s},F.push(Z)),EA&&this._resolveBreakY(Z,EA,Z),this._resolveBreakY(Z,s,Z)}}_colLeftOffset(s,d){return d&&d.length>s?d[s]:0}_getRowSpanEndingCell(s,d,F,W){if(F.rowSpan&&F.rowSpan>1){let Z=d+F.rowSpan-1;if(Z>=s.length)throw new Error(`Row span for column ${W} (with indexes starting from 0) exceeded row count`);return s[Z][W]}return null}processRow(s){let d=s.marginX,F=void 0===d?[0,0]:d,W=s.dontBreakRows,Z=void 0!==W&&W,EA=s.rowsWithoutPageBreak,FA=s.cells,te=s.widths,ge=s.gaps,Me=s.tableNode,Qe=s.tableBody,me=s.rowIndex,Ye=s.height,Ue=s.snakingColumns,De=void 0!==Ue&&Ue;const Le=Z||me<=(void 0===EA?0:EA)-1;let Se=[],Ve=[],vt=!1,zt={};te=te||FA,!Le&&Ye>this.writer.context().availableHeight&&(vt=!0);const sn=1===this.nestedLevel?F:null,gn=Me?Me._bottomByPage:null,Tn=ge&&ge.length>1?ge[1]:0,rs=te.map(Zt=>Zt._calcWidth);this.writer.context().beginColumnGroup(sn,gn,De,Tn,rs);for(let Zt=0,_n=FA.length;Zt<_n;Zt++){let Yt=FA[Zt],mn=Zt;const ci=Hn=>{const xi=Yt.rowSpan&&Yt.rowSpan>1;xi&&(Hn.rowSpan=Yt.rowSpan),Hn.rowIndex=me,this._storePageBreakData(Hn,xi,Se,Me)};this.writer.addListener("pageChanged",ci);let $n=te[Zt]._calcWidth,zs=this._colLeftOffset(Zt,ge),ks=this._findStartingRowSpanCell(FA,Zt);if(Yt.colSpan&&Yt.colSpan>1)for(let Hn=1;Hn0&&(as._isUnbreakableContext=!0,as._originalXOffset=this.writer.originalX)),this.writer.context().beginColumn($n,zs,as),Yt._span||De&&Zt>0){if(Yt._columnEndingContext){let Hn=0;if(Z){const Ar=this.writer.contextStack[this.writer.contextStack.length-1];"number"==typeof Yt._startingRowSpanPage&&Yt._startingRowSpanPage===Ar.page&&"number"==typeof Yt._startingRowSpanY&&(Hn=Ar.y-Yt._startingRowSpanY),Hn=Math.max(0,Hn)}let xi=0;Yt._isUnbreakableContext&&!this.writer.transactionLevel&&(xi=Yt._originalXOffset),this.writer.context().markEnding(Yt,xi,Hn)}}else this.processNode(Yt,!0),this.writer.context().updateBottomByPage(),Yt.verticalAlignment&&(zt[mn]=this.verticalAlignmentItemStack.length-1),Zn(Ve,Yt.positions);this.writer.removeListener("pageChanged",ci)}let kn=null;const Jn=FA.length>0?FA[FA.length-1]:null;if(Jn)if(Jn._endingCell)kn=Jn._endingCell;else if(!0===Jn._span){const Zt=this._findStartingRowSpanCell(FA,FA.length);Zt&&(kn=Zt._endingCell,this.writer.transactionLevel>0&&(kn._isUnbreakableContext=!0,kn._originalXOffset=this.writer.originalX))}vt&&!Le&&0===Se.length&&(this.writer.context().moveDown(this.writer.context().availableHeight),De?this.snakingAwarePageBreak():this.writer.moveToNextPage());const Xt=this.writer.context().completeColumnGroup(Ye,kn);Me&&(Me._bottomByPage=Xt,this._updatePageBreaksData(Se,Me,me));let dn=this.writer.context().height;for(let Zt=0,_n=FA.length;Zt<_n;Zt++){let Yt=FA[Zt];if(!Yt._span&&Yt.verticalAlignment){let mn=this.verticalAlignmentItemStack[zt[Zt]].begin.item;mn.viewHeight=dn,mn.nodeHeight=Yt.__height,mn.cell=Yt,mn.bottomY=this.writer.context().y,mn.isCellContentMultiPage=!mn.cell.positions.every($n=>$n.pageNumber===mn.cell.positions[0].pageNumber),mn.getViewHeight=function(){return this.cell._willBreak?this.cell._bottomY-this.cell._rowTopPageY:this.cell.rowSpan&&this.cell.rowSpan>1?Z?this.cell._leftEndingCell._rowTopPageY-(this.cell._leftEndingCell._startingRowSpanY+this.cell._leftEndingCell._rowTopPageYPadding)+this.cell._leftEndingCell._bottomY:this.cell.positions[0].pageNumber!==this.cell._leftEndingCell._lastPageNumber?this.bottomY-this.cell._leftEndingCell._bottomY:this.viewHeight+this.cell._leftEndingCell._bottomY-this.bottomY:this.viewHeight},mn.getNodeHeight=function(){return this.nodeHeight},this.verticalAlignmentItemStack[zt[Zt]].end.item.isCellContentMultiPage=mn.isCellContentMultiPage}}return{pageBreaksBySpan:[],pageBreaks:Se,positions:Ve}}processList(s,d){const F=PA=>{if(EA){let FA=EA;if(EA=null,FA.canvas){let te=FA.canvas[0];Dt(te,-FA._minWidth,0),this.writer.addVector(te)}else if(FA._inlines){let te=new es(this.pageSize.width);te.addInline(FA._inlines[0]),te.x=-FA._minWidth,te.y=PA.getAscenderHeight()-te.getAscenderHeight(),this.writer.addLine(te,!0)}}};let EA,W=s?d.ol:d.ul,Z=d._gapSize;this.writer.context().addMargin(Z.width),this.writer.addListener("lineAdded",F),W.forEach(PA=>{EA=PA.listMarker,this.processNode(PA),Zn(d.positions,PA.positions)}),this.writer.removeListener("lineAdded",F),this.writer.context().addMargin(-Z.width)}processTable(s){this.nestedLevel++;let d=new Is(s);d.beginTable(this.writer);let F=s.table.heights,W=0;for(let Z=0,EA=s.table.body.length;Z0&&this.writer.context().inSnakingColumns()){let Qe=W>0?W:d.rowPaddingTop+14+d.rowPaddingBottom+d.bottomLineWidth+d.topLineWidth;this.writer.context().availableHeight{Qe.rowSpan&&Qe.rowSpan>1&&(Qe._startingRowSpanY=this.writer.context().y,Qe._startingRowSpanPage=this.writer.context().page)}),d.beginRow(Z,this.writer),FA="function"==typeof F?F(Z):Array.isArray(F)?F[Z]:F,"auto"===FA&&(FA=void 0);const te=this.writer.context().page;let ge=this.processRow({marginX:s._margin?[s._margin[0],s._margin[2]]:[0,0],dontBreakRows:d.dontBreakRows,rowsWithoutPageBreak:d.rowsWithoutPageBreak,cells:s.table.body[Z],widths:s.table.widths,gaps:s._offsets.offsets,tableBody:s.table.body,tableNode:s,rowIndex:Z,height:FA});if(Zn(s.positions,ge.positions),!ge.pageBreaks||0===ge.pageBreaks.length){const me=this._findSameRowPageBreakByRowSpanData(s&&s._breaksBySpan||null,te,Z);if(me){const Ye=this._getPageBreakListBySpan(s,me.prevPage,Z);ge.pageBreaks.push(Ye)}}d.endRow(Z,this.writer,ge.pageBreaks);let Me=this.writer.context().y;this.writer.context().page===te&&(W=Me-PA)}d.endTable(this.writer),this.nestedLevel--,0===this.nestedLevel&&this.writer.context().resetMarginXTopParent()}processLeaf(s){let d=this.buildNextLine(s);d&&(s.tocItem||s.id)&&(d._node=s);let F=d?d.getHeight():0,W=s.maxHeight||-1;if(d){let Z=rA(s);Z&&(d.id=Z)}if(s.outline)d._outline={id:s.id,parentId:s.outlineParentId,text:s.outlineText||s.text,expanded:s.outlineExpanded||!1};else if(Array.isArray(s.text))for(let Z=0,EA=s.text.length;Zthis.writer.context().availableHeight&&this.writer.context().y>this.writer.context().pageMargins.top){if(this.writer.context().inSnakingColumns()&&!this.writer.context().isInNestedNonSnakingGroup()){this.snakingAwarePageBreak(s.pageOrientation),d.inlines&&d.inlines.length>0&&s._inlines.unshift(...d.inlines),d=this.buildNextLine(s);continue}this.writer.moveToNextPage(s.pageOrientation)}let Z=this.writer.addLine(d);s.positions.push(Z),d=this.buildNextLine(s),d&&(F+=d.getHeight())}}processToc(s){!s.toc._table&&!0===s.toc.hideEmpty||(s.toc.title&&this.processNode(s.toc.title),s.toc._table&&this.processNode(s.toc._table))}buildNextLine(s){function d(PA){let FA=PA.constructor();for(let te in PA)FA[te]=PA[te];return FA}function F(PA,FA,te){let ge=1,Me=PA.length,Qe=1;for(;ge<=Me;){const me=Math.floor((ge+Me)/2);te(PA.substring(0,me))<=FA?(Qe=me,ge=me+1):Me=me-1}return Qe}if(!s._inlines||0===s._inlines.length)return null;let W=new es(this.writer.context().availableWidth);const Z=new mt(null);let EA=!1;for(;s._inlines&&s._inlines.length>0&&(W.hasEnoughSpaceForInline(s._inlines[0],s._inlines.slice(1))||EA);){let PA=!1,FA=s._inlines.shift();if(!FA.noWrap&&FA.text.length>1&&FA.width>W.getAvailableWidth()){let te=F(FA.text,W.getAvailableWidth(),ge=>Z.widthOfText(ge,FA));if(te{let s=parseFloat($);if("number"==typeof s&&!isNaN(s))return s},Ii=$=>{let s;try{s=new Gi.XmlDocument($)}catch(d){throw new Error("Invalid svg document ("+d+")",{cause:d})}if("svg"!==s.name)throw new Error("Invalid svg document (expected )");return s},ys=class qn{constructor(){}measureSVG(s){let d,F,W;if(I(s)){let PA=Ii(s);d=PA.attr.width,F=PA.attr.height,W=PA.attr.viewBox}else{if(!(typeof SVGElement<"u"&&s instanceof SVGElement&&"function"==typeof getComputedStyle))throw new Error("Invalid SVG document");d=s.getAttribute("width"),F=s.getAttribute("height"),W=s.getAttribute("viewBox")}let Z=un(d),EA=un(F);if((void 0===Z||void 0===EA)&&"string"==typeof W){let PA=W.split(/[,\s]+/);if(4!==PA.length)throw new Error("Unexpected svg viewBox format, should have 4 entries but found: '"+W+"'");void 0===Z&&(Z=un(PA[2])),void 0===EA&&(EA=un(PA[3]))}return{width:Z,height:EA}}writeDimensions(s,d){if(I(s)){let F=Ii(s);return"string"!=typeof F.attr.viewBox&&(F.attr.viewBox=`0 0 ${un(F.attr.width)} ${un(F.attr.height)}`),F.attr.width=""+d.width,F.attr.height=""+d.height,F.toString()}return s.hasAttribute("viewBox")||s.setAttribute("viewBox",`0 0 ${un(s.getAttribute("width"))} ${un(s.getAttribute("height"))}`),s.setAttribute("width",""+d.width),s.setAttribute("height",""+d.height),s}},oi=class Di{constructor(s){this.pdfDocument=s}drawBackground(s,d,F){let W=s.getHeight();for(let Z=0,EA=s.inlines.length;Z{let d=[],F=null;for(let W=0,Z=$.inlines.length;W{let Ye=0;for(let Ue=0,De=s.inlines.length;UeYe?Ue:Ye;return s.inlines[Ye]})(),FA=(()=>{let Ye=0;for(let Ue=0,De=s.inlines.length;Ue{let d=$;return s.sup&&(d-=.75*s.fontSize),s.sub&&(d+=.35*s.fontSize),d},ts=class vs{constructor(s,d){this.pdfDocument=s,this.progressCallback=d,this.outlineMap=[]}renderPages(s){this.pdfDocument._pdfMakePages=s;let d=0;this.progressCallback&&s.forEach(W=>{d+=W.items.length});let F=0;for(let W=0;W1){let EA=s.points[0],PA=s.points[s.points.length-1];(s.closePath||EA.x===PA.x&&EA.y===PA.y)&&this.pdfDocument.closePath()}break;case"path":this.pdfDocument.path(s.d)}if(s.linearGradient&&d){let EA=1/(s.linearGradient.length-1);for(let PA=0;PA{let EA=F.split(",").map(te=>te.trim().replace(/('|")/g,"")),PA=(($,s,d)=>{for(let F=0;F-1&&(PA=PA.slice(0,FA)),PA.forEach(ge=>{ge.pageSize.height===1/0&&(ge.pageSize.height=function li($,s){let W=pi(s||40),Z=W.top;return $.items.forEach(EA=>{let PA=function F(EA){return(EA.item.y||0)+function d(EA){return"function"==typeof EA.item.getHeight?EA.item.getHeight():EA.item._height?EA.item._height:"vector"===EA.type?typeof EA.item.y1<"u"?EA.item.y1>EA.item.y2?EA.item.y1:EA.item.y2:EA.item.h:0}(EA)}(EA);PA>Z&&(Z=PA)}),Z+=W.bottom,Z}(ge,ge.pageMargins))}),new ts(F.pdfKitDoc,d.progressCallback).renderPages(PA),F.pdfKitDoc})()}resolveUrls(s){var d=this;return de(function*(){const F=W=>"object"==typeof W?{url:W.url,headers:W.headers}:{url:W,headers:{}};for(let W in d.fontDescriptors)if(d.fontDescriptors.hasOwnProperty(W)){if(d.fontDescriptors[W].normal)if(Array.isArray(d.fontDescriptors[W].normal)){let Z=F(d.fontDescriptors[W].normal[0]);d.urlResolver.resolve(Z.url,Z.headers),d.fontDescriptors[W].normal[0]=Z.url}else{let Z=F(d.fontDescriptors[W].normal);d.urlResolver.resolve(Z.url,Z.headers),d.fontDescriptors[W].normal=Z.url}if(d.fontDescriptors[W].bold)if(Array.isArray(d.fontDescriptors[W].bold)){let Z=F(d.fontDescriptors[W].bold[0]);d.urlResolver.resolve(Z.url,Z.headers),d.fontDescriptors[W].bold[0]=Z.url}else{let Z=F(d.fontDescriptors[W].bold);d.urlResolver.resolve(Z.url,Z.headers),d.fontDescriptors[W].bold=Z.url}if(d.fontDescriptors[W].italics)if(Array.isArray(d.fontDescriptors[W].italics)){let Z=F(d.fontDescriptors[W].italics[0]);d.urlResolver.resolve(Z.url,Z.headers),d.fontDescriptors[W].italics[0]=Z.url}else{let Z=F(d.fontDescriptors[W].italics);d.urlResolver.resolve(Z.url,Z.headers),d.fontDescriptors[W].italics=Z.url}if(d.fontDescriptors[W].bolditalics)if(Array.isArray(d.fontDescriptors[W].bolditalics)){let Z=F(d.fontDescriptors[W].bolditalics[0]);d.urlResolver.resolve(Z.url,Z.headers),d.fontDescriptors[W].bolditalics[0]=Z.url}else{let Z=F(d.fontDescriptors[W].bolditalics);d.urlResolver.resolve(Z.url,Z.headers),d.fontDescriptors[W].bolditalics=Z.url}}if(s.images)for(let W in s.images)if(s.images.hasOwnProperty(W)){let Z=F(s.images[W]);d.urlResolver.resolve(Z.url,Z.headers),s.images[W]=Z.url}if(s.attachments)for(let W in s.attachments)if(s.attachments.hasOwnProperty(W)&&s.attachments[W].src){let Z=F(s.attachments[W].src);d.urlResolver.resolve(Z.url,Z.headers),s.attachments[W].src=Z.url}if(s.files)for(let W in s.files)if(s.files.hasOwnProperty(W)&&s.files[W].src){let Z=F(s.files[W].src);d.urlResolver.resolve(Z.url,Z.headers),s.files[W].src=Z.url}yield d.urlResolver.resolved()})()}};var is=f(6811);function Fi(){return(Fi=de(function*($,s,d){void 0===s&&(s={});for(let F=0;F<=30;F++){if(typeof d<"u"&&!0!==d($))throw new Error(`Access to URL denied by resource access policy: ${$}`);try{let W=yield fetch($,{headers:s,redirect:"manual"});if(W.status>=300&&W.status<400){let Z=W.headers.get("location");if(!Z)throw new Error("Redirect response missing Location header");$=new URL(Z,$).href;continue}if("opaqueredirect"===W.type&&(W=yield fetch($,{headers:s})),!W.ok)throw new Error(`Failed to fetch (status code: ${W.status})`);return W}catch(W){throw new Error(`Network request failed (url: "${$}", error: ${W.message})`,{cause:W})}}throw new Error(`Network request failed (url: "${$}", error: Too many redirects)`)})).apply(this,arguments)}const Us=class ki{constructor(s){this.fs=s,this.resolving={},this.urlAccessPolicy=void 0}setUrlAccessPolicy(s){this.urlAccessPolicy=s}resolve(s,d){var F=this;void 0===d&&(d={});const W=function(){var Z=de(function*(){if(s.toLowerCase().startsWith("https://")||s.toLowerCase().startsWith("http://")){if(F.fs.existsSync(s))return;const EA=yield function Ps($,s,d){return Fi.apply(this,arguments)}(s,d,F.urlAccessPolicy);if(EA.redirected&&typeof F.urlAccessPolicy<"u"&&!0!==F.urlAccessPolicy(EA.url))throw new Error(`Access to URL denied by resource access policy: ${EA.url}`);const PA=yield EA.arrayBuffer();F.fs.writeFileSync(s,PA)}});return function(){return Z.apply(this,arguments)}}();return this.resolving[s]||(this.resolving[s]=W()),this.resolving[s]}resolved(){return Promise.all(Object.values(this.resolving))}};var zn=f(9964);const ss=class Ls{constructor(){this.virtualfs=is.default,this.urlAccessPolicy=void 0,this.localAccessPolicy=void 0}createPdf(s,d){if(void 0===d&&(d={}),!v(s))throw new Error("Parameter 'docDefinition' has an invalid type. Object expected.");if(!v(d))throw new Error("Parameter 'options' has an invalid type. Object expected.");d.progressCallback=this.progressCallback,d.tableLayouts=this.tableLayouts;const F=typeof zn<"u"&&zn?.versions?.node;typeof this.urlAccessPolicy>"u"&&F&&console.warn("No URL access policy defined. Consider using setUrlAccessPolicy() to restrict external resource downloads."),typeof this.localAccessPolicy>"u"&&F&&console.warn("No local access policy defined. Consider using setLocalAccessPolicy() to restrict local file system access.");let W=new Us(this.virtualfs);W.setUrlAccessPolicy(this.urlAccessPolicy);const EA=new Ns(this.fonts,this.virtualfs,W,this.localAccessPolicy).createPdfKitDocument(s,d);return this._transformToDocument(EA)}setUrlAccessPolicy(s){if(void 0!==s&&"function"!=typeof s)throw new Error("Parameter 'callback' has an invalid type. Function or undefined expected.");this.urlAccessPolicy=s}setProgressCallback(s){this.progressCallback=s}addTableLayouts(s){this.tableLayouts=bt(this.tableLayouts,s)}setTableLayouts(s){this.tableLayouts=s}clearTableLayouts(){this.tableLayouts={}}addFonts(s){this.fonts=bt(this.fonts,s)}setFonts(s){this.fonts=s}clearFonts(){this.fonts={}}_transformToDocument(s){return s}};var Gs=f(783).Buffer;const Yn=class yi{constructor(s){this.bufferSize=1073741824,this.pdfDocumentPromise=s,this.bufferPromise=null}getStream(){return this.pdfDocumentPromise}getBuffer(){var s=this;const d=function(){var F=de(function*(){const W=yield s.getStream();return new Promise(Z=>{let EA=[];W.on("readable",()=>{let PA;for(;null!==(PA=W.read(s.bufferSize));)EA.push(PA)}),W.on("end",()=>{Z(Gs.concat(EA))}),W.end()})});return function(){return F.apply(this,arguments)}}();return null===this.bufferPromise&&(this.bufferPromise=d()),this.bufferPromise}getBase64(){var s=this;return de(function*(){return(yield s.getBuffer()).toString("base64")})()}getDataUrl(){var s=this;return de(function*(){return"data:application/pdf;base64,"+(yield s.getBase64())})()}};var h=f(5127);const p=class y extends Yn{getBlob(){var s=this;return de(function*(){const d=yield s.getBuffer();return new Blob([d],{type:"application/pdf"})})()}download(s){var d=this;return de(function*(){void 0===s&&(s="file.pdf");const F=yield d.getBlob();(0,h.saveAs)(F,s)})()}open(s){var d=this;return de(function*(){void 0===s&&(s=null),s||(s=(()=>{let $=window.open("","_blank");if(null===$)throw new Error("Open PDF in new window blocked by browser");return $})());const F=yield d.getBlob();try{let Z=(window.URL||window.webkitURL).createObjectURL(F);s.location.href=Z}catch(W){throw s.close(),W}})()}print(s){var d=this;return de(function*(){void 0===s&&(s=null),(yield d.getStream()).setOpenActionAsPrint(),yield d.open(s)})()}};var q=f(2416),CA=f.n(q),_A=f(890);f.n(_A)()({useNative:["Promise"]});let he={Roboto:{normal:"Roboto-Regular.ttf",bold:"Roboto-Medium.ttf",italics:"Roboto-Italic.ttf",bolditalics:"Roboto-MediumItalic.ttf"}};const xe=new class Ie extends ss{constructor(){super(),this.fonts=he}addFontContainer(s){this.addVirtualFileSystem(s.vfs),this.addFonts(s.fonts)}addVirtualFileSystem(s){for(let d in s)if(s.hasOwnProperty(d)){let F,W;"object"==typeof s[d]?(F=s[d].data,W=s[d].encoding||"base64"):(F=s[d],W="base64"),CA().writeFileSync(d,F,W)}}_transformToDocument(s){return new p(s)}}},2736(eA,Q,f){eA.exports=f(7133).default},2416(eA,Q,f){eA.exports=f(6811).default},6811(eA,Q,f){"use strict";f.d(Q,{default:()=>K});var g=f(783).Buffer;const I=v=>(0===v.indexOf("/")&&(v=v.substring(1)),0===v.indexOf("/")&&(v=v.substring(1)),v),K=new class N{constructor(){this.storage={}}existsSync(B){const j=I(B);return typeof this.storage[j]<"u"}readFileSync(B,j){const tA=I(B),w="object"==typeof j?j.encoding:j;if(!this.existsSync(tA))throw new Error(`File '${tA}' not found in virtual file system`);const aA=this.storage[tA];return w?aA.toString(w):aA}writeFileSync(B,j,tA){const w=I(B),aA="object"==typeof tA?tA.encoding:tA;if(!j&&!tA)throw new Error("No content");this.storage[w]=aA||"string"==typeof j?new g(j,aA):j}}},6582(eA,Q,f){"use strict";Q.A=void 0;var g=function I(K){return K&&K.__esModule?K:{default:K}}(f(7696));Q.A=g.default},7696(eA,Q,f){"use strict";(eA=f.nmd(eA))&&typeof eA.exports<"u"&&(eA.exports=function(g,I,N,K,v){const B={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],grey:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgrey:[211,211,211],lightgreen:[144,238,144],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0]},j={black:[B.black,1],white:[B.white,1],transparent:[B.black,0]},tA={quot:34,amp:38,lt:60,gt:62,apos:39,OElig:338,oelig:339,Scaron:352,scaron:353,Yuml:376,circ:710,tilde:732,ensp:8194,emsp:8195,thinsp:8201,zwnj:8204,zwj:8205,lrm:8206,rlm:8207,ndash:8211,mdash:8212,lsquo:8216,rsquo:8217,sbquo:8218,ldquo:8220,rdquo:8221,bdquo:8222,dagger:8224,Dagger:8225,permil:8240,lsaquo:8249,rsaquo:8250,euro:8364,nbsp:160,iexcl:161,cent:162,pound:163,curren:164,yen:165,brvbar:166,sect:167,uml:168,copy:169,ordf:170,laquo:171,not:172,shy:173,reg:174,macr:175,deg:176,plusmn:177,sup2:178,sup3:179,acute:180,micro:181,para:182,middot:183,cedil:184,sup1:185,ordm:186,raquo:187,frac14:188,frac12:189,frac34:190,iquest:191,Agrave:192,Aacute:193,Acirc:194,Atilde:195,Auml:196,Aring:197,AElig:198,Ccedil:199,Egrave:200,Eacute:201,Ecirc:202,Euml:203,Igrave:204,Iacute:205,Icirc:206,Iuml:207,ETH:208,Ntilde:209,Ograve:210,Oacute:211,Ocirc:212,Otilde:213,Ouml:214,times:215,Oslash:216,Ugrave:217,Uacute:218,Ucirc:219,Uuml:220,Yacute:221,THORN:222,szlig:223,agrave:224,aacute:225,acirc:226,atilde:227,auml:228,aring:229,aelig:230,ccedil:231,egrave:232,eacute:233,ecirc:234,euml:235,igrave:236,iacute:237,icirc:238,iuml:239,eth:240,ntilde:241,ograve:242,oacute:243,ocirc:244,otilde:245,ouml:246,divide:247,oslash:248,ugrave:249,uacute:250,ucirc:251,uuml:252,yacute:253,thorn:254,yuml:255,fnof:402,Alpha:913,Beta:914,Gamma:915,Delta:916,Epsilon:917,Zeta:918,Eta:919,Theta:920,Iota:921,Kappa:922,Lambda:923,Mu:924,Nu:925,Xi:926,Omicron:927,Pi:928,Rho:929,Sigma:931,Tau:932,Upsilon:933,Phi:934,Chi:935,Psi:936,Omega:937,alpha:945,beta:946,gamma:947,delta:948,epsilon:949,zeta:950,eta:951,theta:952,iota:953,kappa:954,lambda:955,mu:956,nu:957,xi:958,omicron:959,pi:960,rho:961,sigmaf:962,sigma:963,tau:964,upsilon:965,phi:966,chi:967,psi:968,omega:969,thetasym:977,upsih:978,piv:982,bull:8226,hellip:8230,prime:8242,Prime:8243,oline:8254,frasl:8260,weierp:8472,image:8465,real:8476,trade:8482,alefsym:8501,larr:8592,uarr:8593,rarr:8594,darr:8595,harr:8596,crarr:8629,lArr:8656,uArr:8657,rArr:8658,dArr:8659,hArr:8660,forall:8704,part:8706,exist:8707,empty:8709,nabla:8711,isin:8712,notin:8713,ni:8715,prod:8719,sum:8721,minus:8722,lowast:8727,radic:8730,prop:8733,infin:8734,ang:8736,and:8743,or:8744,cap:8745,cup:8746,int:8747,there4:8756,sim:8764,cong:8773,asymp:8776,ne:8800,equiv:8801,le:8804,ge:8805,sub:8834,sup:8835,nsub:8836,sube:8838,supe:8839,oplus:8853,otimes:8855,perp:8869,sdot:8901,lceil:8968,rceil:8969,lfloor:8970,rfloor:8971,lang:9001,rang:9002,loz:9674,spades:9824,clubs:9827,hearts:9829,diams:9830},w={A:7,a:7,C:6,c:6,H:1,h:1,L:2,l:2,M:2,m:2,Q:4,q:4,S:4,s:4,T:2,t:2,V:1,v:1,Z:0,z:0},aA={A3:!0,A4:!0,a3:!0,a4:!0},AA={color:{inherit:!0,initial:void 0},visibility:{inherit:!0,initial:"visible",values:{hidden:"hidden",collapse:"hidden",visible:"visible"}},fill:{inherit:!0,initial:j.black},stroke:{inherit:!0,initial:"none"},"stop-color":{inherit:!1,initial:j.black},"fill-opacity":{inherit:!0,initial:1},"stroke-opacity":{inherit:!0,initial:1},"stop-opacity":{inherit:!1,initial:1},"fill-rule":{inherit:!0,initial:"nonzero",values:{nonzero:"nonzero",evenodd:"evenodd"}},"clip-rule":{inherit:!0,initial:"nonzero",values:{nonzero:"nonzero",evenodd:"evenodd"}},"stroke-width":{inherit:!0,initial:1},"stroke-dasharray":{inherit:!0,initial:[]},"stroke-dashoffset":{inherit:!0,initial:0},"stroke-miterlimit":{inherit:!0,initial:4},"stroke-linejoin":{inherit:!0,initial:"miter",values:{miter:"miter",round:"round",bevel:"bevel"}},"stroke-linecap":{inherit:!0,initial:"butt",values:{butt:"butt",round:"round",square:"square"}},"font-size":{inherit:!0,initial:16,values:{"xx-small":9,"x-small":10,small:13,medium:16,large:18,"x-large":24,"xx-large":32}},"font-family":{inherit:!0,initial:"sans-serif"},"font-weight":{inherit:!0,initial:"normal",values:{600:"bold",700:"bold",800:"bold",900:"bold",bold:"bold",bolder:"bold",500:"normal",400:"normal",300:"normal",200:"normal",100:"normal",normal:"normal",lighter:"normal"}},"font-style":{inherit:!0,initial:"normal",values:{italic:"italic",oblique:"italic",normal:"normal"}},"text-anchor":{inherit:!0,initial:"start",values:{start:"start",middle:"middle",end:"end"}},direction:{inherit:!0,initial:"ltr",values:{ltr:"ltr",rtl:"rtl"}},"dominant-baseline":{inherit:!0,initial:"baseline",values:{auto:"baseline",baseline:"baseline","before-edge":"before-edge","text-before-edge":"before-edge",middle:"middle",central:"central","after-edge":"after-edge","text-after-edge":"after-edge",ideographic:"ideographic",alphabetic:"alphabetic",hanging:"hanging",mathematical:"mathematical"}},"alignment-baseline":{inherit:!1,initial:void 0,values:{auto:"baseline",baseline:"baseline","before-edge":"before-edge","text-before-edge":"before-edge",middle:"middle",central:"central","after-edge":"after-edge","text-after-edge":"after-edge",ideographic:"ideographic",alphabetic:"alphabetic",hanging:"hanging",mathematical:"mathematical"}},"baseline-shift":{inherit:!0,initial:"baseline",values:{baseline:"baseline",sub:"sub",super:"super"}},"word-spacing":{inherit:!0,initial:0,values:{normal:0}},"letter-spacing":{inherit:!0,initial:0,values:{normal:0}},"text-decoration":{inherit:!1,initial:"none",values:{none:"none",underline:"underline",overline:"overline","line-through":"line-through"}},"xml:space":{inherit:!0,initial:"default",css:"white-space",values:{preserve:"preserve",default:"default",pre:"preserve","pre-line":"preserve","pre-wrap":"preserve",nowrap:"default"}},"marker-start":{inherit:!0,initial:"none"},"marker-mid":{inherit:!0,initial:"none"},"marker-end":{inherit:!0,initial:"none"},opacity:{inherit:!1,initial:1},transform:{inherit:!1,initial:[1,0,0,1,0,0]},display:{inherit:!1,initial:"inline",values:{none:"none",inline:"inline",block:"inline"}},"clip-path":{inherit:!1,initial:"none"},mask:{inherit:!1,initial:"none"},overflow:{inherit:!1,initial:"hidden",values:{hidden:"hidden",scroll:"hidden",visible:"visible"}},"vector-effect":{inherit:!0,initial:"none",values:{none:"none","non-scaling-stroke":"non-scaling-stroke"}}};function L(GA){let zA=new function(){};return zA.name="G"+(g._groupCount=(g._groupCount||0)+1),zA.resources=g.ref(),zA.xobj=g.ref({Type:"XObject",Subtype:"Form",FormType:1,BBox:GA,Group:{S:"Transparency",CS:"DeviceRGB",I:!0,K:!1},Resources:zA.resources}),zA.xobj.write(""),zA.savedMatrix=g._ctm,zA.savedPage=g.page,Et.push(zA),g._ctm=[1,0,0,1,0,0],g.page={width:g.page.width,height:g.page.height,write:function(vA){zA.xobj.write(vA)},fonts:{},xobjects:{},ext_gstates:{},patterns:{}},zA}function P(GA){if(GA!==Et.pop())throw"Group not matching";Object.keys(g.page.fonts).length&&(GA.resources.data.Font=g.page.fonts),Object.keys(g.page.xobjects).length&&(GA.resources.data.XObject=g.page.xobjects),Object.keys(g.page.ext_gstates).length&&(GA.resources.data.ExtGState=g.page.ext_gstates),Object.keys(g.page.patterns).length&&(GA.resources.data.Pattern=g.page.patterns),GA.resources.end(),GA.xobj.end(),g._ctm=GA.savedMatrix,g.page=GA.savedPage}function rA(GA){g.page.xobjects[GA.name]=GA.xobj,g.addContent("/"+GA.name+" Do")}function QA(GA,zA){let vA="M"+(g._maskCount=(g._maskCount||0)+1),qA=g.ref({Type:"ExtGState",CA:1,ca:1,BM:"Normal",SMask:{S:"Luminosity",G:GA.xobj,BC:zA?[0,0,0]:[1,1,1]}});qA.end(),g.page.ext_gstates[vA]=qA,g.addContent("/"+vA+" gs")}function NA(GA,zA,vA,qA){return{type:"PDFPattern",group:GA,dx:zA,dy:vA,matrix:qA||[1,0,0,1,0,0]}}function oA(GA,zA){let vA="P"+(g._patternCount=(g._patternCount||0)+1),qA=g.ref({Type:"Pattern",PatternType:1,PaintType:1,TilingType:2,BBox:[0,0,GA.dx,GA.dy],XStep:GA.dx,YStep:GA.dy,Matrix:UA(g._ctm,GA.matrix),Resources:{ProcSet:["PDF","Text","ImageB","ImageC","ImageI"],XObject:function(){let ZA={};return ZA[GA.group.name]=GA.group.xobj,ZA}()}});qA.write("/"+GA.group.name+" Do"),qA.end(),g.page.patterns[vA]=qA,zA?(g.addContent("/Pattern CS"),g.addContent("/"+vA+" SCN")):(g.addContent("/Pattern cs"),g.addContent("/"+vA+" scn"))}function uA(GA,zA){g.page.fonts[GA.id]||(g.page.fonts[GA.id]=GA.ref()),g.addContent("BT").addContent("/"+GA.id+" "+zA+" Tf")}function dA(GA,zA,vA,qA,ZA,jA){g.addContent(JA(GA)+" "+JA(zA)+" "+JA(-vA)+" "+JA(-qA)+" "+JA(ZA)+" "+JA(jA)+" Tm")}function RA(GA,zA){g.addContent((GA&&zA?2:zA?1:GA?0:3)+" Tr")}function nA(GA,zA){let vA=[],qA="";const ZA=zA.fauxItalic?-.25:0;function jA(WA){qA+=WA.glyph,0!==WA.kern&&(vA.push(`<${qA}> ${JA(WA.kern)}`),qA="")}function ue(){qA.length&&(vA.push(`<${qA}> 0`),qA=""),vA.length&&(g.addContent(`[${vA.join(" ")}] TJ`),vA=[])}for(let WA=0;WA0)for(;zA<0;)zA+=qA;g.dash(GA,{phase:zA})}function VA(GA){let zA=function(WA,ae,ce,ye){this.error=ye,this.nodeName=WA,this.nodeValue=ce,this.nodeType=ae,this.attributes=Object.create(null),this.childNodes=[],this.parentNode=null,this.id="",this.textContent="",this.classList=[]};zA.prototype.getAttribute=function(WA){return null!=this.attributes[WA]?this.attributes[WA]:null},zA.prototype.getElementById=function(WA){let ae=null;return function ce(ye){if(!ae&&1===ye.nodeType){ye.id===WA&&(ae=ye);for(let ke=0;ke/)){for(;ae=ue();)ce.childNodes.push(ae),ae.parentNode=ce,ce.textContent+=3===ae.nodeType||4===ae.nodeType?ae.nodeValue:ae.textContent;return(WA=vA.match(/^<\/([\w:.-]+)\s*>/,!0))?(WA[1]===ce.nodeName||(Mt('parseXml: tag not matching, opening "'+ce.nodeName+'" & closing "'+WA[1]+'"'),jA=!0),ce):(Mt('parseXml: tag not matching, opening "'+ce.nodeName+'" & not closing'),jA=!0,ce)}if(vA.match(/^\/>/))return ce;Mt('parseXml: tag could not be parsed "'+ce.nodeName+'"'),jA=!0}else{if(WA=vA.match(/^/))return new zA(null,8,WA,jA);if(WA=vA.match(/^<\?[\s\S]*?\?>/))return new zA(null,7,WA,jA);if(WA=vA.match(/^/))return new zA(null,10,WA,jA);if(WA=vA.match(/^/,!0))return new zA("#cdata-section",4,WA[1],jA);if(WA=vA.match(/^([^<]+)/,!0))return new zA("#text",3,kA(WA[1]),jA)}};for(;ZA=ue();)1!==ZA.nodeType||qA?(1===ZA.nodeType||3===ZA.nodeType&&""!==ZA.nodeValue.trim())&&Mt("parseXml: data after document end has been discarded"):qA=ZA;return vA.matchAll()&&Mt("parseXml: parsing error"),qA}function kA(GA){return GA.replace(/&(?:#([0-9]+)|#[xX]([0-9A-Fa-f]+)|([0-9A-Za-z]+));/g,function(zA,vA,qA,ZA){return vA?String.fromCharCode(parseInt(vA,10)):qA?String.fromCharCode(parseInt(qA,16)):ZA&&tA[ZA]?String.fromCharCode(tA[ZA]):zA})}function hA(GA){let zA,vA;return GA=(GA||"").trim(),(zA=B[GA])?vA=[zA.slice(),1]:(zA=GA.match(/^cmyk\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9.]+)\s*\)$/i))?(zA[1]=parseInt(zA[1]),zA[2]=parseInt(zA[2]),zA[3]=parseInt(zA[3]),zA[4]=parseFloat(zA[4]),zA[1]<=100&&zA[2]<=100&&zA[3]<=100&&zA[4]<=100&&(vA=[zA.slice(1,5),1])):(zA=GA.match(/^rgba\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9.]+)\s*\)$/i))?(zA[1]=parseInt(zA[1]),zA[2]=parseInt(zA[2]),zA[3]=parseInt(zA[3]),zA[4]=parseFloat(zA[4]),zA[1]<256&&zA[2]<256&&zA[3]<256&&zA[4]<=1&&(vA=[zA.slice(1,4),zA[4]])):(zA=GA.match(/^rgb\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*\)$/i))?(zA[1]=parseInt(zA[1]),zA[2]=parseInt(zA[2]),zA[3]=parseInt(zA[3]),zA[1]<256&&zA[2]<256&&zA[3]<256&&(vA=[zA.slice(1,4),1])):(zA=GA.match(/^rgb\(\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*\)$/i))?(zA[1]=2.55*parseFloat(zA[1]),zA[2]=2.55*parseFloat(zA[2]),zA[3]=2.55*parseFloat(zA[3]),zA[1]<256&&zA[2]<256&&zA[3]<256&&(vA=[zA.slice(1,4),1])):(zA=GA.match(/^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i))?vA=[[parseInt(zA[1],16),parseInt(zA[2],16),parseInt(zA[3],16)],1]:(zA=GA.match(/^#([0-9a-f])([0-9a-f])([0-9a-f])$/i))&&(vA=[[17*parseInt(zA[1],16),17*parseInt(zA[2],16),17*parseInt(zA[3],16)],1]),Dt?Dt(vA,GA):vA}function fA(GA,zA,vA){let qA=GA[0].slice(),ZA=GA[1]*zA;if(vA){for(let jA=0;jA=0;zA--)GA=UA(Et[zA].savedMatrix,GA);return GA}function Ee(){return(new oe).M(0,0).L(g.page.width,0).L(g.page.width,g.page.height).L(0,g.page.height).transform(cA(xA())).getBoundingBox()}function cA(GA){let zA=GA[0]*GA[3]-GA[1]*GA[2];return[GA[3]/zA,-GA[1]/zA,-GA[2]/zA,GA[0]/zA,(GA[2]*GA[5]-GA[3]*GA[4])/zA,(GA[1]*GA[4]-GA[0]*GA[5])/zA]}function J(GA){let zA=JA(GA[0]),vA=JA(GA[1]),qA=JA(GA[2]),ZA=JA(GA[3]),jA=JA(GA[4]),ue=JA(GA[5]);if(LA(zA*ZA-vA*qA,0))return[zA,vA,qA,ZA,jA,ue]}function U(GA){let zA=GA[2]||0,vA=GA[1]||0,qA=GA[0]||0;if(lA(zA,0)&&lA(vA,0))return[];if(lA(zA,0))return[-qA/vA];{let ZA=vA*vA-4*zA*qA;return LA(ZA,0)&&ZA>0?[(-vA+Math.sqrt(ZA))/(2*zA),(-vA-Math.sqrt(ZA))/(2*zA)]:lA(ZA,0)?[-vA/(2*zA)]:[]}}function O(GA,zA){return(zA[0]||0)+(zA[1]||0)*GA+(zA[2]||0)*GA*GA+(zA[3]||0)*GA*GA*GA}function lA(GA,zA){return Math.abs(GA-zA)<1e-10}function LA(GA,zA){return Math.abs(GA-zA)>=1e-10}function JA(GA){return GA>-1e21&&GA<1e21?Math.round(1e6*GA)/1e6:0}function IA(GA){let qA,zA=new Te((GA||"").trim()),vA=[1,0,0,1,0,0];for(;qA=zA.match(/^([A-Za-z]+)\s*[(]([^(]+)[)]/,!0);){let WA,ZA=qA[1],jA=[],ue=new Te(qA[2].trim());for(;WA=ue.matchNumber();)jA.push(Number(WA)),ue.matchSeparator();if("matrix"===ZA&&6===jA.length)vA=UA(vA,[jA[0],jA[1],jA[2],jA[3],jA[4],jA[5]]);else if("translate"===ZA&&2===jA.length)vA=UA(vA,[1,0,0,1,jA[0],jA[1]]);else if("translate"===ZA&&1===jA.length)vA=UA(vA,[1,0,0,1,jA[0],0]);else if("scale"===ZA&&2===jA.length)vA=UA(vA,[jA[0],0,0,jA[1],0,0]);else if("scale"===ZA&&1===jA.length)vA=UA(vA,[jA[0],0,0,jA[0],0,0]);else if("rotate"===ZA&&3===jA.length){let ae=jA[0]*Math.PI/180;vA=UA(vA,[1,0,0,1,jA[1],jA[2]],[Math.cos(ae),Math.sin(ae),-Math.sin(ae),Math.cos(ae),0,0],[1,0,0,1,-jA[1],-jA[2]])}else if("rotate"===ZA&&1===jA.length){let ae=jA[0]*Math.PI/180;vA=UA(vA,[Math.cos(ae),Math.sin(ae),-Math.sin(ae),Math.cos(ae),0,0])}else if("skewX"===ZA&&1===jA.length){let ae=jA[0]*Math.PI/180;vA=UA(vA,[1,0,Math.tan(ae),1,0,0])}else{if("skewY"!==ZA||1!==jA.length)return;{let ae=jA[0]*Math.PI/180;vA=UA(vA,[1,Math.tan(ae),0,1,0,0])}}zA.matchSeparator()}if(!zA.matchAll())return vA}function gA(GA,zA,vA,qA,ZA,jA){let ue=(GA||"").trim().match(/^(none)$|^x(Min|Mid|Max)Y(Min|Mid|Max)(?:\s+(meet|slice))?$/)||[],WA=ue[1]||ue[4]||"meet",ye=zA/qA,ke=vA/ZA,Je={Min:0,Mid:.5,Max:1}[ue[2]||"Mid"]-(jA||0),tt={Min:0,Mid:.5,Max:1}[ue[3]||"Mid"]-(jA||0);return"slice"===WA?ke=ye=Math.max(ye,ke):"meet"===WA&&(ke=ye=Math.min(ye,ke)),[ye,0,0,ke,Je*(zA-qA*ye),tt*(vA-ZA*ke)]}function C(GA){let zA=Object.create(null);GA=(GA||"").trim().split(/;/);for(let vA=0;vAst&&(je=st,st=Ce,Ce=je),_e>lt&&(je=lt,lt=_e,_e=je);let wt=U(ke);for(let pt=0;pt=0&&wt[pt]<=1){let ot=O(wt[pt],ce);otst&&(st=ot)}let Bt=U(Je);for(let pt=0;pt=0&&Bt[pt]<=1){let ot=O(Bt[pt],ye);ot<_e&&(_e=ot),ot>lt&&(lt=ot)}return[Ce,_e,st,lt]},this.getPointAtLength=function(je){if(lA(je,0))return this.startPoint;if(lA(je,this.totalLength))return this.endPoint;if(!(je<0||je>this.totalLength))for(let Ce=1;Ce<=ae;Ce++){let _e=tt[Ce-1],st=tt[Ce];if(_e<=je&&je<=st){let lt=(Ce-(st-je)/(st-_e))/ae,wt=O(lt,ce),Bt=O(lt,ye),pt=O(lt,ke),ot=O(lt,Je);return[wt,Bt,Math.atan2(ot,pt)]}}}},Oe=function(GA,zA,vA,qA){this.totalLength=Math.sqrt((vA-GA)*(vA-GA)+(qA-zA)*(qA-zA)),this.startPoint=[GA,zA,Math.atan2(qA-zA,vA-GA)],this.endPoint=[vA,qA,Math.atan2(qA-zA,vA-GA)],this.getBoundingBox=function(){return[Math.min(this.startPoint[0],this.endPoint[0]),Math.min(this.startPoint[1],this.endPoint[1]),Math.max(this.startPoint[0],this.endPoint[0]),Math.max(this.startPoint[1],this.endPoint[1])]},this.getPointAtLength=function(ZA){if(ZA>=0&&ZA<=this.totalLength){let jA=ZA/this.totalLength||0;return[this.startPoint[0]+jA*(this.endPoint[0]-this.startPoint[0]),this.startPoint[1]+jA*(this.endPoint[1]-this.startPoint[1]),this.startPoint[2]]}}},oe=function(){this.pathCommands=[],this.pathSegments=[],this.startPoint=null,this.endPoint=null,this.totalLength=0;let ZA,jA,ue,GA=0,zA=0,vA=0,qA=0;this.move=function(WA,ae){return GA=vA=WA,zA=qA=ae,null},this.line=function(WA,ae){let ce=new Oe(vA,qA,WA,ae);return vA=WA,qA=ae,ce},this.curve=function(WA,ae,ce,ye,ke,Je){let tt=new ze(vA,qA,WA,ae,ce,ye,ke,Je);return vA=ke,qA=Je,tt},this.close=function(){let WA=new Oe(vA,qA,GA,zA);return vA=GA,qA=zA,WA},this.addCommand=function(WA){this.pathCommands.push(WA);let ae=this[WA[0]].apply(this,WA.slice(3));ae&&(ae.hasStart=WA[1],ae.hasEnd=WA[2],this.startPoint=this.startPoint||ae.startPoint,this.endPoint=ae.endPoint,this.pathSegments.push(ae),this.totalLength+=ae.totalLength)},this.M=function(WA,ae){return this.addCommand(["move",!0,!0,WA,ae]),ZA="M",this},this.m=function(WA,ae){return this.M(vA+WA,qA+ae)},this.Z=this.z=function(){return this.addCommand(["close",!0,!0]),ZA="Z",this},this.L=function(WA,ae){return this.addCommand(["line",!0,!0,WA,ae]),ZA="L",this},this.l=function(WA,ae){return this.L(vA+WA,qA+ae)},this.H=function(WA){return this.L(WA,qA)},this.h=function(WA){return this.L(vA+WA,qA)},this.V=function(WA){return this.L(vA,WA)},this.v=function(WA){return this.L(vA,qA+WA)},this.C=function(WA,ae,ce,ye,ke,Je){return this.addCommand(["curve",!0,!0,WA,ae,ce,ye,ke,Je]),ZA="C",jA=ce,ue=ye,this},this.c=function(WA,ae,ce,ye,ke,Je){return this.C(vA+WA,qA+ae,vA+ce,qA+ye,vA+ke,qA+Je)},this.S=function(WA,ae,ce,ye){return this.C(vA+("C"===ZA?vA-jA:0),qA+("C"===ZA?qA-ue:0),WA,ae,ce,ye)},this.s=function(WA,ae,ce,ye){return this.C(vA+("C"===ZA?vA-jA:0),qA+("C"===ZA?qA-ue:0),vA+WA,qA+ae,vA+ce,qA+ye)},this.Q=function(WA,ae,ce,ye){return this.addCommand(["curve",!0,!0,vA+.6666666666666666*(WA-vA),qA+2/3*(ae-qA),ce+2/3*(WA-ce),ye+2/3*(ae-ye),ce,ye]),ZA="Q",jA=WA,ue=ae,this},this.q=function(WA,ae,ce,ye){return this.Q(vA+WA,qA+ae,vA+ce,qA+ye)},this.T=function(WA,ae){return this.Q(vA+("Q"===ZA?vA-jA:0),qA+("Q"===ZA?qA-ue:0),WA,ae)},this.t=function(WA,ae){return this.Q(vA+("Q"===ZA?vA-jA:0),qA+("Q"===ZA?qA-ue:0),vA+WA,qA+ae)},this.A=function(WA,ae,ce,ye,ke,Je,tt){if(lA(WA,0)||lA(ae,0))this.addCommand(["line",!0,!0,Je,tt]);else{ce*=Math.PI/180,WA=Math.abs(WA),ae=Math.abs(ae),ye=1*!!ye,ke=1*!!ke;let je=Math.cos(ce)*(vA-Je)/2+Math.sin(ce)*(qA-tt)/2,Ce=Math.cos(ce)*(qA-tt)/2-Math.sin(ce)*(vA-Je)/2,_e=je*je/(WA*WA)+Ce*Ce/(ae*ae);_e>1&&(WA*=Math.sqrt(_e),ae*=Math.sqrt(_e));let st=Math.sqrt(Math.max(0,WA*WA*ae*ae-WA*WA*Ce*Ce-ae*ae*je*je)/(WA*WA*Ce*Ce+ae*ae*je*je)),lt=(ye===ke?-1:1)*st*WA*Ce/ae,wt=(ye===ke?1:-1)*st*ae*je/WA,Bt=Math.cos(ce)*lt-Math.sin(ce)*wt+(vA+Je)/2,pt=Math.sin(ce)*lt+Math.cos(ce)*wt+(qA+tt)/2,ot=Math.atan2((Ce-wt)/ae,(je-lt)/WA),ut=Math.atan2((-Ce-wt)/ae,(-je-lt)/WA);0===ke&&ut-ot>0?ut-=2*Math.PI:1===ke&&ut-ot<0&&(ut+=2*Math.PI);let an=Math.ceil(Math.abs(ut-ot)/(Math.PI/qe));for(let Wt=0;WtWA[2]&&(WA[2]=ce[2]),ce[1]WA[3]&&(WA[3]=ce[3])}for(let ce=0;ce=0&&WA<=this.totalLength){let ae;for(let ce=0;ceZA.selector.specificity||(zA[jA]=ZA.css[jA],vA[jA]=ZA.selector.specificity)}return zA}(GA),this.allowedChildren=[],this.attr=function(ZA){if("function"==typeof GA.getAttribute)return GA.getAttribute(ZA)},this.resolveUrl=function(ZA){let jA=(ZA||"").match(/^\s*(?:url\("(.*)#(.*)"\)|url\('(.*)#(.*)'\)|url\((.*)#(.*)\)|(.*)#(.*))\s*$/)||[],ue=jA[1]||jA[3]||jA[5]||jA[7],WA=jA[2]||jA[4]||jA[6]||jA[8];if(WA){if(!ue){let ae=I.getElementById(WA);if(ae)return-1===this.stack.indexOf(ae)?ae:void Mt('SVGtoPDF: loop of circular references for id "'+WA+'"')}if(Ze){let ae=ct[ue];if(!ae){ae=Ze(ue),function $A(GA){return"object"==typeof GA&&null!==GA&&"number"==typeof GA.length}(ae)||(ae=[ae]);for(let ce=0;ce=0&&ue[3]>=0?ue:jA},this.getPercent=function(ZA,jA){let ue=this.attr(ZA),WA=new Te((ue||"").trim()),ye=WA.matchNumber();return!ye||(WA.match("%")&&(ye*=.01),WA.matchAll())?jA:Math.max(0,Math.min(1,ye))},this.chooseValue=function(ZA){for(let jA=0;jA=0&&(WA=ce);break;case"stroke-miterlimit":ce=parseFloat(ue),null!=ce&&ce>=1&&(WA=ce);break;case"word-spacing":case"letter-spacing":case"stroke-dashoffset":WA=this.computeLength(ue,this.getViewport())}if(null!=WA)return vA[ZA]=WA}}return vA[ZA]=jA.inherit&&this.inherits?this.inherits.get(ZA):jA.initial},this.getChildren=function(){if(null!=qA)return qA;let ZA=[];for(let jA=0;jA0?jA:this.ref?this.ref.getChildren():[]},this.getPaint=function(jA,ue,WA,ae){let ce="userSpaceOnUse"!==this.attr("patternUnits"),ye="objectBoundingBox"===this.attr("patternContentUnits"),ke=this.getLength("x",ce?1:this.getParentVWidth(),0),Je=this.getLength("y",ce?1:this.getParentVHeight(),0),tt=this.getLength("width",ce?1:this.getParentVWidth(),0),je=this.getLength("height",ce?1:this.getParentVHeight(),0);ye&&!ce?(ke=(ke-jA[0])/(jA[2]-jA[0])||0,Je=(Je-jA[1])/(jA[3]-jA[1])||0,tt=tt/(jA[2]-jA[0])||0,je=je/(jA[3]-jA[1])||0):!ye&&ce&&(ke=jA[0]+ke*(jA[2]-jA[0]),Je=jA[1]+Je*(jA[3]-jA[1]),tt*=jA[2]-jA[0],je*=jA[3]-jA[1]);let Ce=this.getViewbox("viewBox",[0,0,tt,je]),st=UA(gA((this.attr("preserveAspectRatio")||"").trim(),tt,je,Ce[2],Ce[3],0),[1,0,0,1,-Ce[0],-Ce[1]]),lt=IA(this.attr("patternTransform"));if(ye&&(lt=UA([jA[2]-jA[0],0,0,jA[3]-jA[1],jA[0],jA[1]],lt)),lt=UA(lt,[1,0,0,1,ke,Je]),(lt=J(lt))&&(st=J(st))&&(tt=JA(tt))&&(je=JA(je))){let wt=L([0,0,tt,je]);return g.transform.apply(g,st),this.drawChildren(WA,ae),P(wt),[NA(wt,tt,je,lt),ue]}return vA?[vA[0],vA[1]*ue]:void 0},this.getVWidth=function(){let jA="userSpaceOnUse"!==this.attr("patternUnits"),ue=this.getLength("width",jA?1:this.getParentVWidth(),0);return this.getViewbox("viewBox",[0,0,ue,0])[2]},this.getVHeight=function(){let jA="userSpaceOnUse"!==this.attr("patternUnits"),ue=this.getLength("height",jA?1:this.getParentVHeight(),0);return this.getViewbox("viewBox",[0,0,0,ue])[3]}},MA=function(GA,zA,vA){sA.call(this,GA,zA),this.allowedChildren=["stop"],this.ref=function(){let jA=this.getUrl("href")||this.getUrl("xlink:href");if(jA&&jA.nodeName===GA.nodeName)return new MA(jA,zA,vA)}.call(this);let qA=this.attr;this.attr=function(jA){let ue=qA.call(this,jA);return null!=ue||"href"===jA||"xlink:href"===jA?ue:this.ref?this.ref.attr(jA):null};let ZA=this.getChildren;this.getChildren=function(){let jA=ZA.call(this);return jA.length>0?jA:this.ref?this.ref.getChildren():[]},this.getPaint=function(jA,ue,WA,ae){let ce=this.getChildren();if(0===ce.length)return;if(1===ce.length){let ot=ce[0],ut=ot.get("stop-color");return"none"===ut?void 0:fA(ut,ot.get("stop-opacity")*ue,ae)}let tt,je,Ce,_e,st,lt,ye="userSpaceOnUse"!==this.attr("gradientUnits"),ke=IA(this.attr("gradientTransform")),Je=this.attr("spreadMethod"),wt=0,Bt=0,pt=1;if(ye&&(ke=UA([jA[2]-jA[0],0,0,jA[3]-jA[1],jA[0],jA[1]],ke)),ke=J(ke)){if("linearGradient"===this.name)je=this.getLength("x1",ye?1:this.getVWidth(),0),Ce=this.getLength("x2",ye?1:this.getVWidth(),ye?1:this.getVWidth()),_e=this.getLength("y1",ye?1:this.getVHeight(),0),st=this.getLength("y2",ye?1:this.getVHeight(),0);else{Ce=this.getLength("cx",ye?1:this.getVWidth(),ye?.5:.5*this.getVWidth()),st=this.getLength("cy",ye?1:this.getVHeight(),ye?.5:.5*this.getVHeight()),lt=this.getLength("r",ye?1:this.getViewport(),ye?.5:.5*this.getViewport()),je=this.getLength("fx",ye?1:this.getVWidth(),Ce),_e=this.getLength("fy",ye?1:this.getVHeight(),st),lt<0&&Mt("SvgElemGradient: negative r value");let ot=Math.sqrt(Math.pow(Ce-je,2)+Math.pow(st-_e,2)),ut=1;ot>lt&&(ut=lt/ot,je=Ce+(je-Ce)*ut,_e=st+(_e-st)*ut),lt=Math.max(lt,ot*ut*1.000001)}if("reflect"===Je||"repeat"===Je){let ot=cA(ke),ut=yA([jA[0],jA[1]],ot),an=yA([jA[2],jA[1]],ot),Wt=yA([jA[2],jA[3]],ot),_t=yA([jA[0],jA[3]],ot);"linearGradient"===this.name?(wt=Math.max((ut[0]-Ce)*(Ce-je)+(ut[1]-st)*(st-_e),(an[0]-Ce)*(Ce-je)+(an[1]-st)*(st-_e),(Wt[0]-Ce)*(Ce-je)+(Wt[1]-st)*(st-_e),(_t[0]-Ce)*(Ce-je)+(_t[1]-st)*(st-_e))/(Math.pow(Ce-je,2)+Math.pow(st-_e,2)),Bt=Math.max((ut[0]-je)*(je-Ce)+(ut[1]-_e)*(_e-st),(an[0]-je)*(je-Ce)+(an[1]-_e)*(_e-st),(Wt[0]-je)*(je-Ce)+(Wt[1]-_e)*(_e-st),(_t[0]-je)*(je-Ce)+(_t[1]-_e)*(_e-st))/(Math.pow(Ce-je,2)+Math.pow(st-_e,2))):wt=Math.sqrt(Math.max(Math.pow(ut[0]-Ce,2)+Math.pow(ut[1]-st,2),Math.pow(an[0]-Ce,2)+Math.pow(an[1]-st,2),Math.pow(Wt[0]-Ce,2)+Math.pow(Wt[1]-st,2),Math.pow(_t[0]-Ce,2)+Math.pow(_t[1]-st,2)))/lt-1,wt=Math.ceil(wt+.5),Bt=Math.ceil(Bt+.5),pt=Bt+1+wt}tt="linearGradient"===this.name?g.linearGradient(je-Bt*(Ce-je),_e-Bt*(st-_e),Ce+wt*(Ce-je),st+wt*(st-_e)):g.radialGradient(je,_e,0,Ce,st,lt+wt*lt);for(let ot=0;ot0&&tt.stop((ot+0)/pt,Pt[0],Pt[1]),tt.stop((ot+ut)/(wt+Bt+1),Pt[0],Pt[1]),Wt===ce.length-1&&ut<1&&tt.stop((ot+1)/pt,Pt[0],Pt[1])}}return tt.setTransform.apply(tt,ke),[tt,1]}return vA?[vA[0],vA[1]*ue]:void 0}},Pe=function(GA,zA){S.call(this,GA,zA),this.dashScale=1,this.getBoundingShape=function(){return this.shape},this.getTransformation=function(){return this.get("transform")},this.drawInDocument=function(vA,qA){if("hidden"!==this.get("visibility")&&this.shape){if(g.save(),"non-scaling-stroke"===this.get("vector-effect")?this.shape.transform(this.getTransformation()):this.transform(),this.clip(),vA)this.shape.insertInDocument(),pA(j.white),g.fill(this.get("clip-rule"));else{let jA;this.mask()&&(jA=L(Ee()));let ue=this.shape.getSubPaths(),WA=this.getFill(vA,qA),ae=this.getStroke(vA,qA),ce=this.get("stroke-width"),ye=this.get("stroke-linecap");if("non-scaling-stroke"===this.get("vector-effect")&&(ce/=function HA(){const GA=Ee();return g.page.width/GA[2]}()),WA||ae){if(WA&&pA(WA),ae){for(let _e=0;_e0&&ue[_e].startPoint&&ue[_e].startPoint.length>1){let st=ue[_e].startPoint[0],lt=ue[_e].startPoint[1];pA(ae),"square"===ye?g.rect(st-.5*ce,lt-.5*ce,ce,ce):"round"===ye&&g.circle(st,lt,.5*ce),g.fill()}let je=this.get("stroke-dasharray"),Ce=this.get("stroke-dashoffset");if(LA(this.dashScale,1)){for(let _e=0;_e0&&ue[je].insertInDocument();WA&&ae?g.fillAndStroke(this.get("fill-rule")):WA?g.fill(this.get("fill-rule")):ae&&g.stroke()}let ke=this.get("marker-start"),Je=this.get("marker-mid"),tt=this.get("marker-end");if("none"!==ke||"none"!==Je||"none"!==tt){let je=this.shape.getMarkers();if("none"!==ke&&je.length>0&&new et(ke,null).drawMarker(!1,qA,je[0],ce),"none"!==Je)for(let Ce=1;Ce0&&new et(tt,null).drawMarker(!1,qA,je[je.length-1],ce)}jA&&(P(jA),rA(jA))}g.restore()}}},At=function(GA,zA){Pe.call(this,GA,zA);let vA=this.getLength("x",this.getVWidth(),0),qA=this.getLength("y",this.getVHeight(),0),ZA=this.getLength("width",this.getVWidth(),0),jA=this.getLength("height",this.getVHeight(),0),ue=this.getLength("rx",this.getVWidth()),WA=this.getLength("ry",this.getVHeight());void 0===ue&&void 0===WA?ue=WA=0:void 0===ue&&void 0!==WA?ue=WA:void 0!==ue&&void 0===WA&&(WA=ue),ZA>0&&jA>0?ue&&WA?(ue=Math.min(ue,.5*ZA),WA=Math.min(WA,.5*jA),this.shape=(new oe).M(vA+ue,qA).L(vA+ZA-ue,qA).A(ue,WA,0,0,1,vA+ZA,qA+WA).L(vA+ZA,qA+jA-WA).A(ue,WA,0,0,1,vA+ZA-ue,qA+jA).L(vA+ue,qA+jA).A(ue,WA,0,0,1,vA,qA+jA-WA).L(vA,qA+WA).A(ue,WA,0,0,1,vA+ue,qA).Z()):this.shape=(new oe).M(vA,qA).L(vA+ZA,qA).L(vA+ZA,qA+jA).L(vA,qA+jA).Z():this.shape=new oe},_=function(GA,zA){Pe.call(this,GA,zA);let vA=this.getLength("cx",this.getVWidth(),0),qA=this.getLength("cy",this.getVHeight(),0),ZA=this.getLength("r",this.getViewport(),0);this.shape=ZA>0?(new oe).M(vA+ZA,qA).A(ZA,ZA,0,0,1,vA-ZA,qA).A(ZA,ZA,0,0,1,vA+ZA,qA).Z():new oe},be=function(GA,zA){Pe.call(this,GA,zA);let vA=this.getLength("cx",this.getVWidth(),0),qA=this.getLength("cy",this.getVHeight(),0),ZA=this.getLength("rx",this.getVWidth(),0),jA=this.getLength("ry",this.getVHeight(),0);this.shape=ZA>0&&jA>0?(new oe).M(vA+ZA,qA).A(ZA,jA,0,0,1,vA-ZA,qA).A(ZA,jA,0,0,1,vA+ZA,qA).Z():new oe},Re=function(GA,zA){Pe.call(this,GA,zA);let vA=this.getLength("x1",this.getVWidth(),0),qA=this.getLength("y1",this.getVHeight(),0),ZA=this.getLength("x2",this.getVWidth(),0),jA=this.getLength("y2",this.getVHeight(),0);this.shape=(new oe).M(vA,qA).L(ZA,jA)},SA=function(GA,zA){Pe.call(this,GA,zA);let vA=this.getNumberList("points");this.shape=new oe;for(let qA=0;qA0?vA:void 0,this.dashScale=void 0!==this.pathLength?this.shape.totalLength/this.pathLength:1},et=function(GA,zA){Y.call(this,GA,zA);let vA=this.getLength("markerWidth",this.getParentVWidth(),3),qA=this.getLength("markerHeight",this.getParentVHeight(),3),ZA=this.getViewbox("viewBox",[0,0,vA,qA]);this.getVWidth=function(){return ZA[2]},this.getVHeight=function(){return ZA[3]},this.drawMarker=function(jA,ue,WA,ae){g.save();let ce=this.attr("orient"),ye=this.attr("markerUnits"),ke="auto"===ce?WA[2]:(parseFloat(ce)||0)*Math.PI/180,Je="userSpaceOnUse"===ye?1:ae;g.transform(Math.cos(ke)*Je,Math.sin(ke)*Je,-Math.sin(ke)*Je,Math.cos(ke)*Je,WA[0],WA[1]);let _e,tt=this.getLength("refX",this.getVWidth(),0),je=this.getLength("refY",this.getVHeight(),0),Ce=gA(this.attr("preserveAspectRatio"),vA,qA,ZA[2],ZA[3],.5);"hidden"===this.get("overflow")&&g.rect(Ce[0]*(ZA[0]+ZA[2]/2-tt)-vA/2,Ce[3]*(ZA[1]+ZA[3]/2-je)-qA/2,vA,qA).clip(),g.transform.apply(g,Ce),g.translate(-tt,-je),this.get("opacity")<1&&!jA&&(_e=L(Ee())),this.drawChildren(jA,ue),_e&&(P(_e),g.fillOpacity(this.get("opacity")),rA(_e)),g.restore()}},Ke=function(GA,zA){Y.call(this,GA,zA),this.useMask=function(vA){let qA=L(Ee());g.save(),g.transform.apply(g,this.get("transform")),"objectBoundingBox"===this.attr("clipPathUnits")&&g.transform(vA[2]-vA[0],0,0,vA[3]-vA[1],vA[0],vA[1]),this.clip(),this.drawChildren(!0,!1),g.restore(),P(qA),QA(qA,!0)}},$e=function(GA,zA){Y.call(this,GA,zA),this.useMask=function(vA){let ZA,jA,ue,WA,qA=L(Ee());g.save(),"userSpaceOnUse"===this.attr("maskUnits")?(ZA=this.getLength("x",this.getVWidth(),-.1*(vA[2]-vA[0])+vA[0]),jA=this.getLength("y",this.getVHeight(),-.1*(vA[3]-vA[1])+vA[1]),ue=this.getLength("width",this.getVWidth(),1.2*(vA[2]-vA[0])),WA=this.getLength("height",this.getVHeight(),1.2*(vA[3]-vA[1]))):(ZA=this.getLength("x",this.getVWidth(),-.1)*(vA[2]-vA[0])+vA[0],jA=this.getLength("y",this.getVHeight(),-.1)*(vA[3]-vA[1])+vA[1],ue=this.getLength("width",this.getVWidth(),1.2)*(vA[2]-vA[0]),WA=this.getLength("height",this.getVHeight(),1.2)*(vA[3]-vA[1])),"objectBoundingBox"===this.attr("maskContentUnits")&&g.transform(vA[2]-vA[0],0,0,vA[3]-vA[1],vA[0],vA[1]),this.clip(),this.drawChildren(!1,!0),g.restore(),P(qA),QA(qA,!0)}},ht=function(GA,zA){S.call(this,GA,zA),this.allowedChildren=["tspan","#text","#cdata-section","a"],this.isText=!0,this.getBoundingShape=function(){let vA=new oe;for(let qA=0;qA0?jA:this.pathObject.totalLength,this.pathScale=this.pathObject.totalLength/this.pathLength}else if((ZA=this.getUrl("href")||this.getUrl("xlink:href"))&&"path"===ZA.nodeName){let jA=new Fe(ZA,this);this.pathObject=jA.shape.clone().transform(jA.get("transform")),this.pathLength=this.chooseValue(jA.pathLength,this.pathObject.totalLength),this.pathScale=this.pathObject.totalLength/this.pathLength}},mt=function(GA,zA){ht.call(this,GA,zA),this.allowedChildren=["textPath","tspan","#text","#cdata-section","a"],function(vA){let WA,ae,qA="",ZA=GA.textContent,jA=[],ue=[],ce=0,ye=0;function ke(){if(ue.length){let Ce=ue[ue.length-1],lt={startltr:0,middleltr:.5,endltr:1,startrtl:1,middlertl:.5,endrtl:0}[WA+ae]*(Ce.x+Ce.width-ue[0].x)||0;for(let wt=0;wtst||pt<0)Ce._pos[Bt].hidden=!0;else{let ot=_e.getPointAtLength(pt*lt);LA(lt,1)&&(Ce._pos[Bt].scale*=lt,Ce._pos[Bt].width*=lt),Ce._pos[Bt].x=ot[0]-.5*Ce._pos[Bt].width*Math.cos(ot[2])-Ce._pos[Bt].y*Math.sin(ot[2]),Ce._pos[Bt].y=ot[1]-.5*Ce._pos[Bt].width*Math.sin(ot[2])+Ce._pos[Bt].y*Math.cos(ot[2]),Ce._pos[Bt].rotate=ot[2]+Ce._pos[Bt].rotate,Ce._pos[Bt].continuous=!1}}}else for(let wt=0;wt0&&ot<1/0)for(let ut=0;ut=2){let ot=(_e-(pt-Bt))/(Ce.length-1);for(let ut=0;utN)throw new RangeError('The value "'+sA+'" is invalid for option "size"');const S=new Uint8Array(sA);return Object.setPrototypeOf(S,B.prototype),S}function B(sA,S,Y){if("number"==typeof sA){if("string"==typeof S)throw new TypeError('The "string" argument must be of type string. Received type number');return aA(sA)}return j(sA,S,Y)}function j(sA,S,Y){if("string"==typeof sA)return function AA(sA,S){if(("string"!=typeof S||""===S)&&(S="utf8"),!B.isEncoding(S))throw new TypeError("Unknown encoding: "+S);const Y=0|uA(sA,S);let k=v(Y);const m=k.write(sA,S);return m!==Y&&(k=k.slice(0,m)),k}(sA,S);if(ArrayBuffer.isView(sA))return function P(sA){if(Ne(sA,Uint8Array)){const S=new Uint8Array(sA);return rA(S.buffer,S.byteOffset,S.byteLength)}return L(sA)}(sA);if(null==sA)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof sA);if(Ne(sA,ArrayBuffer)||sA&&Ne(sA.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(Ne(sA,SharedArrayBuffer)||sA&&Ne(sA.buffer,SharedArrayBuffer)))return rA(sA,S,Y);if("number"==typeof sA)throw new TypeError('The "value" argument must not be of type number. Received type number');const k=sA.valueOf&&sA.valueOf();if(null!=k&&k!==sA)return B.from(k,S,Y);const m=function QA(sA){if(B.isBuffer(sA)){const S=0|NA(sA.length),Y=v(S);return 0===Y.length||sA.copy(Y,0,0,S),Y}return void 0!==sA.length?"number"!=typeof sA.length||Te(sA.length)?v(0):L(sA):"Buffer"===sA.type&&Array.isArray(sA.data)?L(sA.data):void 0}(sA);if(m)return m;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof sA[Symbol.toPrimitive])return B.from(sA[Symbol.toPrimitive]("string"),S,Y);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof sA)}function tA(sA){if("number"!=typeof sA)throw new TypeError('"size" argument must be of type number');if(sA<0)throw new RangeError('The value "'+sA+'" is invalid for option "size"')}function aA(sA){return tA(sA),v(sA<0?0:0|NA(sA))}function L(sA){const S=sA.length<0?0:0|NA(sA.length),Y=v(S);for(let k=0;k=N)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+N.toString(16)+" bytes");return 0|sA}function uA(sA,S){if(B.isBuffer(sA))return sA.length;if(ArrayBuffer.isView(sA)||Ne(sA,ArrayBuffer))return sA.byteLength;if("string"!=typeof sA)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof sA);const Y=sA.length,k=arguments.length>2&&!0===arguments[2];if(!k&&0===Y)return 0;let m=!1;for(;;)switch(S){case"ascii":case"latin1":case"binary":return Y;case"utf8":case"utf-8":return YA(sA).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*Y;case"hex":return Y>>>1;case"base64":return le(sA).length;default:if(m)return k?-1:YA(sA).length;S=(""+S).toLowerCase(),m=!0}}function dA(sA,S,Y){let k=!1;if((void 0===S||S<0)&&(S=0),S>this.length||((void 0===Y||Y>this.length)&&(Y=this.length),Y<=0)||(Y>>>=0)<=(S>>>=0))return"";for(sA||(sA="utf8");;)switch(sA){case"hex":return Ee(this,S,Y);case"utf8":case"utf-8":return hA(this,S,Y);case"ascii":return yA(this,S,Y);case"latin1":case"binary":return xA(this,S,Y);case"base64":return kA(this,S,Y);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return HA(this,S,Y);default:if(k)throw new TypeError("Unknown encoding: "+sA);sA=(sA+"").toLowerCase(),k=!0}}function RA(sA,S,Y){const k=sA[S];sA[S]=sA[Y],sA[Y]=k}function nA(sA,S,Y,k,m){if(0===sA.length)return-1;if("string"==typeof Y?(k=Y,Y=0):Y>2147483647?Y=2147483647:Y<-2147483648&&(Y=-2147483648),Te(Y=+Y)&&(Y=m?0:sA.length-1),Y<0&&(Y=sA.length+Y),Y>=sA.length){if(m)return-1;Y=sA.length-1}else if(Y<0){if(!m)return-1;Y=0}if("string"==typeof S&&(S=B.from(S,k)),B.isBuffer(S))return 0===S.length?-1:H(sA,S,Y,k,m);if("number"==typeof S)return S&=255,"function"==typeof Uint8Array.prototype.indexOf?m?Uint8Array.prototype.indexOf.call(sA,S,Y):Uint8Array.prototype.lastIndexOf.call(sA,S,Y):H(sA,[S],Y,k,m);throw new TypeError("val must be string, number or Buffer")}function H(sA,S,Y,k,m){let Ae,E=1,mA=sA.length,ie=S.length;if(void 0!==k&&("ucs2"===(k=String(k).toLowerCase())||"ucs-2"===k||"utf16le"===k||"utf-16le"===k)){if(sA.length<2||S.length<2)return-1;E=2,mA/=2,ie/=2,Y/=2}function DA(pe,MA){return 1===E?pe[MA]:pe.readUInt16BE(MA*E)}if(m){let pe=-1;for(Ae=Y;AemA&&(Y=mA-ie),Ae=Y;Ae>=0;Ae--){let pe=!0;for(let MA=0;MAm&&(k=m):k=m;const E=S.length;let mA;for(k>E/2&&(k=E/2),mA=0;mA>8,m=Y%256,E.push(m),E.push(k);return E}(S,sA.length-Y),sA,Y,k)}function kA(sA,S,Y){return t.fromByteArray(0===S&&Y===sA.length?sA:sA.slice(S,Y))}function hA(sA,S,Y){Y=Math.min(sA.length,Y);const k=[];let m=S;for(;m239?4:E>223?3:E>191?2:1;if(m+ie<=Y){let DA,Ae,pe,MA;switch(ie){case 1:E<128&&(mA=E);break;case 2:DA=sA[m+1],128==(192&DA)&&(MA=(31&E)<<6|63&DA,MA>127&&(mA=MA));break;case 3:DA=sA[m+1],Ae=sA[m+2],128==(192&DA)&&128==(192&Ae)&&(MA=(15&E)<<12|(63&DA)<<6|63&Ae,MA>2047&&(MA<55296||MA>57343)&&(mA=MA));break;case 4:DA=sA[m+1],Ae=sA[m+2],pe=sA[m+3],128==(192&DA)&&128==(192&Ae)&&128==(192&pe)&&(MA=(15&E)<<18|(63&DA)<<12|(63&Ae)<<6|63&pe,MA>65535&&MA<1114112&&(mA=MA))}}null===mA?(mA=65533,ie=1):mA>65535&&(mA-=65536,k.push(mA>>>10&1023|55296),mA=56320|1023&mA),k.push(mA),m+=ie}return function UA(sA){const S=sA.length;if(S<=4096)return String.fromCharCode.apply(String,sA);let Y="",k=0;for(;kk)&&(Y=k);let m="";for(let E=S;EY)throw new RangeError("Trying to access beyond buffer length")}function J(sA,S,Y,k,m,E){if(!B.isBuffer(sA))throw new TypeError('"buffer" argument must be a Buffer instance');if(S>m||SsA.length)throw new RangeError("Index out of range")}function U(sA,S,Y,k,m){b(S,k,m,sA,Y,7);let E=Number(S&BigInt(4294967295));sA[Y++]=E,E>>=8,sA[Y++]=E,E>>=8,sA[Y++]=E,E>>=8,sA[Y++]=E;let mA=Number(S>>BigInt(32)&BigInt(4294967295));return sA[Y++]=mA,mA>>=8,sA[Y++]=mA,mA>>=8,sA[Y++]=mA,mA>>=8,sA[Y++]=mA,Y}function O(sA,S,Y,k,m){b(S,k,m,sA,Y,7);let E=Number(S&BigInt(4294967295));sA[Y+7]=E,E>>=8,sA[Y+6]=E,E>>=8,sA[Y+5]=E,E>>=8,sA[Y+4]=E;let mA=Number(S>>BigInt(32)&BigInt(4294967295));return sA[Y+3]=mA,mA>>=8,sA[Y+2]=mA,mA>>=8,sA[Y+1]=mA,mA>>=8,sA[Y]=mA,Y+8}function lA(sA,S,Y,k,m,E){if(Y+k>sA.length)throw new RangeError("Index out of range");if(Y<0)throw new RangeError("Index out of range")}function LA(sA,S,Y,k,m){return S=+S,Y>>>=0,m||lA(sA,0,Y,4),g.write(sA,S,Y,k,23,4),Y+4}function JA(sA,S,Y,k,m){return S=+S,Y>>>=0,m||lA(sA,0,Y,8),g.write(sA,S,Y,k,52,8),Y+8}Q.kMaxLength=N,!(B.TYPED_ARRAY_SUPPORT=function K(){try{const sA=new Uint8Array(1),S={foo:function(){return 42}};return Object.setPrototypeOf(S,Uint8Array.prototype),Object.setPrototypeOf(sA,S),42===sA.foo()}catch{return!1}}())&&typeof console<"u"&&"function"==typeof console.error&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(B.prototype,"parent",{enumerable:!0,get:function(){if(B.isBuffer(this))return this.buffer}}),Object.defineProperty(B.prototype,"offset",{enumerable:!0,get:function(){if(B.isBuffer(this))return this.byteOffset}}),B.poolSize=8192,B.from=function(sA,S,Y){return j(sA,S,Y)},Object.setPrototypeOf(B.prototype,Uint8Array.prototype),Object.setPrototypeOf(B,Uint8Array),B.alloc=function(sA,S,Y){return function w(sA,S,Y){return tA(sA),sA<=0?v(sA):void 0!==S?"string"==typeof Y?v(sA).fill(S,Y):v(sA).fill(S):v(sA)}(sA,S,Y)},B.allocUnsafe=function(sA){return aA(sA)},B.allocUnsafeSlow=function(sA){return aA(sA)},B.isBuffer=function(S){return null!=S&&!0===S._isBuffer&&S!==B.prototype},B.compare=function(S,Y){if(Ne(S,Uint8Array)&&(S=B.from(S,S.offset,S.byteLength)),Ne(Y,Uint8Array)&&(Y=B.from(Y,Y.offset,Y.byteLength)),!B.isBuffer(S)||!B.isBuffer(Y))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(S===Y)return 0;let k=S.length,m=Y.length;for(let E=0,mA=Math.min(k,m);Em.length?(B.isBuffer(mA)||(mA=B.from(mA)),mA.copy(m,E)):Uint8Array.prototype.set.call(m,mA,E);else{if(!B.isBuffer(mA))throw new TypeError('"list" argument must be an Array of Buffers');mA.copy(m,E)}E+=mA.length}return m},B.byteLength=uA,B.prototype._isBuffer=!0,B.prototype.swap16=function(){const S=this.length;if(S%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let Y=0;YY&&(S+=" ... "),""},I&&(B.prototype[I]=B.prototype.inspect),B.prototype.compare=function(S,Y,k,m,E){if(Ne(S,Uint8Array)&&(S=B.from(S,S.offset,S.byteLength)),!B.isBuffer(S))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof S);if(void 0===Y&&(Y=0),void 0===k&&(k=S?S.length:0),void 0===m&&(m=0),void 0===E&&(E=this.length),Y<0||k>S.length||m<0||E>this.length)throw new RangeError("out of range index");if(m>=E&&Y>=k)return 0;if(m>=E)return-1;if(Y>=k)return 1;if(this===S)return 0;let mA=(E>>>=0)-(m>>>=0),ie=(k>>>=0)-(Y>>>=0);const DA=Math.min(mA,ie),Ae=this.slice(m,E),pe=S.slice(Y,k);for(let MA=0;MA>>=0,isFinite(k)?(k>>>=0,void 0===m&&(m="utf8")):(m=k,k=void 0)}const E=this.length-Y;if((void 0===k||k>E)&&(k=E),S.length>0&&(k<0||Y<0)||Y>this.length)throw new RangeError("Attempt to write outside buffer bounds");m||(m="utf8");let mA=!1;for(;;)switch(m){case"hex":return pA(this,S,Y,k);case"utf8":case"utf-8":return z(this,S,Y,k);case"ascii":case"latin1":case"binary":return OA(this,S,Y,k);case"base64":return wA(this,S,Y,k);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return VA(this,S,Y,k);default:if(mA)throw new TypeError("Unknown encoding: "+m);m=(""+m).toLowerCase(),mA=!0}},B.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},B.prototype.slice=function(S,Y){const k=this.length;(S=~~S)<0?(S+=k)<0&&(S=0):S>k&&(S=k),(Y=void 0===Y?k:~~Y)<0?(Y+=k)<0&&(Y=0):Y>k&&(Y=k),Y>>=0,Y>>>=0,k||cA(S,Y,this.length);let m=this[S],E=1,mA=0;for(;++mA>>=0,Y>>>=0,k||cA(S,Y,this.length);let m=this[S+--Y],E=1;for(;Y>0&&(E*=256);)m+=this[S+--Y]*E;return m},B.prototype.readUint8=B.prototype.readUInt8=function(S,Y){return S>>>=0,Y||cA(S,1,this.length),this[S]},B.prototype.readUint16LE=B.prototype.readUInt16LE=function(S,Y){return S>>>=0,Y||cA(S,2,this.length),this[S]|this[S+1]<<8},B.prototype.readUint16BE=B.prototype.readUInt16BE=function(S,Y){return S>>>=0,Y||cA(S,2,this.length),this[S]<<8|this[S+1]},B.prototype.readUint32LE=B.prototype.readUInt32LE=function(S,Y){return S>>>=0,Y||cA(S,4,this.length),(this[S]|this[S+1]<<8|this[S+2]<<16)+16777216*this[S+3]},B.prototype.readUint32BE=B.prototype.readUInt32BE=function(S,Y){return S>>>=0,Y||cA(S,4,this.length),16777216*this[S]+(this[S+1]<<16|this[S+2]<<8|this[S+3])},B.prototype.readBigUInt64LE=Oe(function(S){R(S>>>=0,"offset");const Y=this[S],k=this[S+7];(void 0===Y||void 0===k)&&M(S,this.length-8);const m=Y+256*this[++S]+65536*this[++S]+this[++S]*2**24,E=this[++S]+256*this[++S]+65536*this[++S]+k*2**24;return BigInt(m)+(BigInt(E)<>>=0,"offset");const Y=this[S],k=this[S+7];(void 0===Y||void 0===k)&&M(S,this.length-8);const m=Y*2**24+65536*this[++S]+256*this[++S]+this[++S],E=this[++S]*2**24+65536*this[++S]+256*this[++S]+k;return(BigInt(m)<>>=0,Y>>>=0,k||cA(S,Y,this.length);let m=this[S],E=1,mA=0;for(;++mA=E&&(m-=Math.pow(2,8*Y)),m},B.prototype.readIntBE=function(S,Y,k){S>>>=0,Y>>>=0,k||cA(S,Y,this.length);let m=Y,E=1,mA=this[S+--m];for(;m>0&&(E*=256);)mA+=this[S+--m]*E;return E*=128,mA>=E&&(mA-=Math.pow(2,8*Y)),mA},B.prototype.readInt8=function(S,Y){return S>>>=0,Y||cA(S,1,this.length),128&this[S]?-1*(255-this[S]+1):this[S]},B.prototype.readInt16LE=function(S,Y){S>>>=0,Y||cA(S,2,this.length);const k=this[S]|this[S+1]<<8;return 32768&k?4294901760|k:k},B.prototype.readInt16BE=function(S,Y){S>>>=0,Y||cA(S,2,this.length);const k=this[S+1]|this[S]<<8;return 32768&k?4294901760|k:k},B.prototype.readInt32LE=function(S,Y){return S>>>=0,Y||cA(S,4,this.length),this[S]|this[S+1]<<8|this[S+2]<<16|this[S+3]<<24},B.prototype.readInt32BE=function(S,Y){return S>>>=0,Y||cA(S,4,this.length),this[S]<<24|this[S+1]<<16|this[S+2]<<8|this[S+3]},B.prototype.readBigInt64LE=Oe(function(S){R(S>>>=0,"offset");const Y=this[S],k=this[S+7];return(void 0===Y||void 0===k)&&M(S,this.length-8),(BigInt(this[S+4]+256*this[S+5]+65536*this[S+6]+(k<<24))<>>=0,"offset");const Y=this[S],k=this[S+7];(void 0===Y||void 0===k)&&M(S,this.length-8);const m=(Y<<24)+65536*this[++S]+256*this[++S]+this[++S];return(BigInt(m)<>>=0,Y||cA(S,4,this.length),g.read(this,S,!0,23,4)},B.prototype.readFloatBE=function(S,Y){return S>>>=0,Y||cA(S,4,this.length),g.read(this,S,!1,23,4)},B.prototype.readDoubleLE=function(S,Y){return S>>>=0,Y||cA(S,8,this.length),g.read(this,S,!0,52,8)},B.prototype.readDoubleBE=function(S,Y){return S>>>=0,Y||cA(S,8,this.length),g.read(this,S,!1,52,8)},B.prototype.writeUintLE=B.prototype.writeUIntLE=function(S,Y,k,m){S=+S,Y>>>=0,k>>>=0,m||J(this,S,Y,k,Math.pow(2,8*k)-1,0);let E=1,mA=0;for(this[Y]=255&S;++mA>>=0,k>>>=0,m||J(this,S,Y,k,Math.pow(2,8*k)-1,0);let E=k-1,mA=1;for(this[Y+E]=255&S;--E>=0&&(mA*=256);)this[Y+E]=S/mA&255;return Y+k},B.prototype.writeUint8=B.prototype.writeUInt8=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,1,255,0),this[Y]=255&S,Y+1},B.prototype.writeUint16LE=B.prototype.writeUInt16LE=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,2,65535,0),this[Y]=255&S,this[Y+1]=S>>>8,Y+2},B.prototype.writeUint16BE=B.prototype.writeUInt16BE=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,2,65535,0),this[Y]=S>>>8,this[Y+1]=255&S,Y+2},B.prototype.writeUint32LE=B.prototype.writeUInt32LE=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,4,4294967295,0),this[Y+3]=S>>>24,this[Y+2]=S>>>16,this[Y+1]=S>>>8,this[Y]=255&S,Y+4},B.prototype.writeUint32BE=B.prototype.writeUInt32BE=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,4,4294967295,0),this[Y]=S>>>24,this[Y+1]=S>>>16,this[Y+2]=S>>>8,this[Y+3]=255&S,Y+4},B.prototype.writeBigUInt64LE=Oe(function(S,Y){return void 0===Y&&(Y=0),U(this,S,Y,BigInt(0),BigInt("0xffffffffffffffff"))}),B.prototype.writeBigUInt64BE=Oe(function(S,Y){return void 0===Y&&(Y=0),O(this,S,Y,BigInt(0),BigInt("0xffffffffffffffff"))}),B.prototype.writeIntLE=function(S,Y,k,m){if(S=+S,Y>>>=0,!m){const DA=Math.pow(2,8*k-1);J(this,S,Y,k,DA-1,-DA)}let E=0,mA=1,ie=0;for(this[Y]=255&S;++E>>=0,!m){const DA=Math.pow(2,8*k-1);J(this,S,Y,k,DA-1,-DA)}let E=k-1,mA=1,ie=0;for(this[Y+E]=255&S;--E>=0&&(mA*=256);)S<0&&0===ie&&0!==this[Y+E+1]&&(ie=1),this[Y+E]=(S/mA|0)-ie&255;return Y+k},B.prototype.writeInt8=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,1,127,-128),S<0&&(S=255+S+1),this[Y]=255&S,Y+1},B.prototype.writeInt16LE=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,2,32767,-32768),this[Y]=255&S,this[Y+1]=S>>>8,Y+2},B.prototype.writeInt16BE=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,2,32767,-32768),this[Y]=S>>>8,this[Y+1]=255&S,Y+2},B.prototype.writeInt32LE=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,4,2147483647,-2147483648),this[Y]=255&S,this[Y+1]=S>>>8,this[Y+2]=S>>>16,this[Y+3]=S>>>24,Y+4},B.prototype.writeInt32BE=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,4,2147483647,-2147483648),S<0&&(S=4294967295+S+1),this[Y]=S>>>24,this[Y+1]=S>>>16,this[Y+2]=S>>>8,this[Y+3]=255&S,Y+4},B.prototype.writeBigInt64LE=Oe(function(S,Y){return void 0===Y&&(Y=0),U(this,S,Y,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),B.prototype.writeBigInt64BE=Oe(function(S,Y){return void 0===Y&&(Y=0),O(this,S,Y,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),B.prototype.writeFloatLE=function(S,Y,k){return LA(this,S,Y,!0,k)},B.prototype.writeFloatBE=function(S,Y,k){return LA(this,S,Y,!1,k)},B.prototype.writeDoubleLE=function(S,Y,k){return JA(this,S,Y,!0,k)},B.prototype.writeDoubleBE=function(S,Y,k){return JA(this,S,Y,!1,k)},B.prototype.copy=function(S,Y,k,m){if(!B.isBuffer(S))throw new TypeError("argument should be a Buffer");if(k||(k=0),!m&&0!==m&&(m=this.length),Y>=S.length&&(Y=S.length),Y||(Y=0),m>0&&m=this.length)throw new RangeError("Index out of range");if(m<0)throw new RangeError("sourceEnd out of bounds");m>this.length&&(m=this.length),S.length-Y>>=0,k=void 0===k?this.length:k>>>0,S||(S=0),"number"==typeof S)for(E=Y;E=k+4;Y-=3)S=`_${sA.slice(Y-3,Y)}${S}`;return`${sA.slice(0,Y)}${S}`}function b(sA,S,Y,k,m,E){if(sA>Y||sA3?0===S||S===BigInt(0)?`>= 0${mA} and < 2${mA} ** ${8*(E+1)}${mA}`:`>= -(2${mA} ** ${8*(E+1)-1}${mA}) and < 2 ** ${8*(E+1)-1}${mA}`:`>= ${S}${mA} and <= ${Y}${mA}`,new $A.ERR_OUT_OF_RANGE("value",ie,sA)}!function C(sA,S,Y){R(S,"offset"),(void 0===sA[S]||void 0===sA[S+Y])&&M(S,sA.length-(Y+1))}(k,m,E)}function R(sA,S){if("number"!=typeof sA)throw new $A.ERR_INVALID_ARG_TYPE(S,"number",sA)}function M(sA,S,Y){throw Math.floor(sA)!==sA?(R(sA,Y),new $A.ERR_OUT_OF_RANGE(Y||"offset","an integer",sA)):S<0?new $A.ERR_BUFFER_OUT_OF_BOUNDS:new $A.ERR_OUT_OF_RANGE(Y||"offset",`>= ${Y?1:0} and <= ${S}`,sA)}IA("ERR_BUFFER_OUT_OF_BOUNDS",function(sA){return sA?`${sA} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),IA("ERR_INVALID_ARG_TYPE",function(sA,S){return`The "${sA}" argument must be of type number. Received type ${typeof S}`},TypeError),IA("ERR_OUT_OF_RANGE",function(sA,S,Y){let k=`The value of "${sA}" is out of range.`,m=Y;return Number.isInteger(Y)&&Math.abs(Y)>4294967296?m=gA(String(Y)):"bigint"==typeof Y&&(m=String(Y),(Y>BigInt(2)**BigInt(32)||Y<-(BigInt(2)**BigInt(32)))&&(m=gA(m)),m+="n"),k+=` It must be ${S}. Received ${m}`,k},RangeError);const D=/[^+/0-9A-Za-z-_]/g;function YA(sA,S){let Y;S=S||1/0;const k=sA.length;let m=null;const E=[];for(let mA=0;mA55295&&Y<57344){if(!m){if(Y>56319){(S-=3)>-1&&E.push(239,191,189);continue}if(mA+1===k){(S-=3)>-1&&E.push(239,191,189);continue}m=Y;continue}if(Y<56320){(S-=3)>-1&&E.push(239,191,189),m=Y;continue}Y=65536+(m-55296<<10|Y-56320)}else m&&(S-=3)>-1&&E.push(239,191,189);if(m=null,Y<128){if((S-=1)<0)break;E.push(Y)}else if(Y<2048){if((S-=2)<0)break;E.push(Y>>6|192,63&Y|128)}else if(Y<65536){if((S-=3)<0)break;E.push(Y>>12|224,Y>>6&63|128,63&Y|128)}else{if(!(Y<1114112))throw new Error("Invalid code point");if((S-=4)<0)break;E.push(Y>>18|240,Y>>12&63|128,Y>>6&63|128,63&Y|128)}}return E}function le(sA){return t.toByteArray(function X(sA){if((sA=(sA=sA.split("=")[0]).trim().replace(D,"")).length<2)return"";for(;sA.length%4!=0;)sA+="=";return sA}(sA))}function ve(sA,S,Y,k){let m;for(m=0;m=S.length||m>=sA.length);++m)S[m+Y]=sA[m];return m}function Ne(sA,S){return sA instanceof S||null!=sA&&null!=sA.constructor&&null!=sA.constructor.name&&sA.constructor.name===S.name}function Te(sA){return sA!=sA}const ze=function(){const sA="0123456789abcdef",S=new Array(256);for(let Y=0;Y<16;++Y){const k=16*Y;for(let m=0;m<16;++m)S[k+m]=sA[Y]+sA[m]}return S}();function Oe(sA){return typeof BigInt>"u"?oe:sA}function oe(){throw new Error("BigInt not supported")}},4406(eA){"use strict";eA.exports=class t{constructor(I){this.stateTable=I.stateTable,this.accepting=I.accepting,this.tags=I.tags}match(I){var N=this;return{*[Symbol.iterator](){for(var K=1,v=null,B=null,j=null,tA=0;tA=v&&(yield[v,B,N.tags[j]]),K=N.stateTable[1][w],v=null),0!==K&&null==v&&(v=tA),N.accepting[K]&&(B=tA),0===K&&(K=1)}null!=v&&null!=B&&B>=v&&(yield[v,B,N.tags[K]])}}}apply(I,N){for(var K of this.match(I)){var v=K[0],B=K[1],j=K[2];for(var tA of j)"function"==typeof N[tA]&&N[tA](v,B,I.slice(v,B+1))}}}},3915(eA,Q,f){"use strict";f(8376),f(6401),f(2017),function(g){var I=typeof Uint8Array<"u"?Uint8Array:Array;function aA(P){var rA=P.charCodeAt(0);return 43===rA||45===rA?62:47===rA||95===rA?63:rA<48?-1:rA<58?rA-48+26+26:rA<91?rA-65:rA<123?rA-97+26:void 0}g.toByteArray=function AA(P){var rA,QA,NA,oA,uA,dA;if(P.length%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var RA=P.length;uA="="===P.charAt(RA-2)?2:"="===P.charAt(RA-1)?1:0,dA=new I(3*P.length/4-uA),NA=uA>0?P.length-4:P.length;var nA=0;function H(pA){dA[nA++]=pA}for(rA=0,QA=0;rA>16),H((65280&oA)>>8),H(255&oA);return 2===uA?H(255&(oA=aA(P.charAt(rA))<<2|aA(P.charAt(rA+1))>>4)):1===uA&&(H((oA=aA(P.charAt(rA))<<10|aA(P.charAt(rA+1))<<4|aA(P.charAt(rA+2))>>2)>>8&255),H(255&oA)),dA},g.fromByteArray=function L(P){var rA,oA,uA,QA=P.length%3,NA="";function dA(nA){return"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(nA)}function RA(nA){return dA(nA>>18&63)+dA(nA>>12&63)+dA(nA>>6&63)+dA(63&nA)}for(rA=0,uA=P.length-QA;rA>2),NA+=dA(oA<<4&63),NA+="==";break;case 2:NA+=dA((oA=(P[P.length-2]<<8)+P[P.length-1])>>10),NA+=dA(oA>>4&63),NA+=dA(oA<<2&63),NA+="="}return NA}}(Q)},182(eA,Q,f){"use strict";function t(rA,QA){var NA=Object.keys(rA);if(Object.getOwnPropertySymbols){var oA=Object.getOwnPropertySymbols(rA);QA&&(oA=oA.filter(function(uA){return Object.getOwnPropertyDescriptor(rA,uA).enumerable})),NA.push.apply(NA,oA)}return NA}function g(rA){for(var QA=1;QA0?this.tail.next=oA:this.head=oA,this.tail=oA,++this.length}},{key:"unshift",value:function(NA){var oA={data:NA,next:this.head};0===this.length&&(this.tail=oA),this.head=oA,++this.length}},{key:"shift",value:function(){if(0!==this.length){var NA=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,NA}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(NA){if(0===this.length)return"";for(var oA=this.head,uA=""+oA.data;oA=oA.next;)uA+=NA+oA.data;return uA}},{key:"concat",value:function(NA){if(0===this.length)return w.alloc(0);for(var oA=w.allocUnsafe(NA>>>0),uA=this.head,dA=0;uA;)P(uA.data,oA,dA),dA+=uA.data.length,uA=uA.next;return oA}},{key:"consume",value:function(NA,oA){var uA;return NARA.length?RA.length:NA;if(dA+=nA===RA.length?RA:RA.slice(0,NA),0===(NA-=nA)){nA===RA.length?(++uA,this.head=oA.next?oA.next:this.tail=null):(this.head=oA,oA.data=RA.slice(nA));break}++uA}return this.length-=uA,dA}},{key:"_getBuffer",value:function(NA){var oA=w.allocUnsafe(NA),uA=this.head,dA=1;for(uA.data.copy(oA),NA-=uA.data.length;uA=uA.next;){var RA=uA.data,nA=NA>RA.length?RA.length:NA;if(RA.copy(oA,oA.length-NA,0,nA),0===(NA-=nA)){nA===RA.length?(++dA,this.head=uA.next?uA.next:this.tail=null):(this.head=uA,uA.data=RA.slice(nA));break}++dA}return this.length-=dA,oA}},{key:L,value:function(NA,oA){return AA(this,g(g({},oA),{},{depth:0,customInspect:!1}))}}]),rA}()},5691(eA,Q,f){"use strict";var t=f(783),g=t.Buffer;function I(K,v){for(var B in K)v[B]=K[B]}function N(K,v,B){return g(K,v,B)}g.from&&g.alloc&&g.allocUnsafe&&g.allocUnsafeSlow?eA.exports=t:(I(t,Q),Q.Buffer=N),I(g,N),N.from=function(K,v,B){if("number"==typeof K)throw new TypeError("Argument must not be a number");return g(K,v,B)},N.alloc=function(K,v,B){if("number"!=typeof K)throw new TypeError("Argument must be a number");var j=g(K);return void 0!==v?"string"==typeof B?j.fill(v,B):j.fill(v):j.fill(0),j},N.allocUnsafe=function(K){if("number"!=typeof K)throw new TypeError("Argument must be a number");return g(K)},N.allocUnsafeSlow=function(K){if("number"!=typeof K)throw new TypeError("Argument must be a number");return t.SlowBuffer(K)}},7571(eA,Q,f){"use strict";f(8376),f(6401),f(2017);const t=f(3483),I=f(6016).swap32LE;eA.exports=class dA{constructor(nA){const H="function"==typeof nA.readUInt32BE&&"function"==typeof nA.slice;if(H||nA instanceof Uint8Array){let z;if(H)this.highStart=nA.readUInt32LE(0),this.errorValue=nA.readUInt32LE(4),z=nA.readUInt32LE(8),nA=nA.slice(12);else{const OA=new DataView(nA.buffer);this.highStart=OA.getUint32(0,!0),this.errorValue=OA.getUint32(4,!0),z=OA.getUint32(8,!0),nA=nA.subarray(12)}nA=t(nA,new Uint8Array(z)),nA=t(nA,new Uint8Array(z)),I(nA),this.data=new Uint32Array(nA.buffer)}else{var pA=nA;this.data=pA.data,this.highStart=pA.highStart,this.errorValue=pA.errorValue}}get(nA){let H;return nA<0||nA>1114111?this.errorValue:nA<55296||nA>56319&&nA<=65535?(H=(this.data[nA>>5]<<2)+(31&nA),this.data[H]):nA<=65535?(H=(this.data[2048+(nA-55296>>5)]<<2)+(31&nA),this.data[H]):nA>11)],H=this.data[H+(nA>>5&63)],H=(H<<2)+(31&nA),this.data[H]):this.data[this.data.length-4]}}},6016(eA,Q,f){"use strict";f(8376),f(6401),f(2017);const t=18===new Uint8Array(new Uint32Array([305419896]).buffer)[0],g=(K,v,B)=>{let j=K[v];K[v]=K[B],K[B]=j};eA.exports={swap32LE:K=>{t&&(K=>{const v=K.length;for(let B=0;Bthis._compareKeys(p,q)),y=["<<"];if(this.limits&&c.length>1){const q=c[c.length-1];y.push(` /Limits ${pA.convert([this._dataForKey(c[0]),this._dataForKey(q)])}`)}y.push(` /${this._keysName()} [`);for(let p of c)y.push(` ${pA.convert(this._dataForKey(p))} ${pA.convert(this._items[p])}`);return y.push("]"),y.push(">>"),y.join("\n")}_compareKeys(){throw new Error("Must be implemented by subclasses")}_keysName(){throw new Error("Must be implemented by subclasses")}_dataForKey(){throw new Error("Must be implemented by subclasses")}}class NA{constructor(c,y,p,q,CA,_A){this.id="CS"+Object.keys(c.spotColors).length,this.name=y,this.values=[p,q,CA,_A],this.ref=c.ref(["Separation",nA(this.name),"DeviceCMYK",{Range:[0,1,0,1,0,1,0,1],C0:[0,0,0,0],C1:this.values.map(ee=>ee/100),FunctionType:2,Domain:[0,1],N:1}]),this.ref.end()}toString(){return`${this.ref.id} 0 R`}}const oA=(h,c)=>(Array(c+1).join("0")+h).slice(-c),uA=h=>h>127||h>32&&127!==h&&35!==h&&37!==h&&40!==h&&41!==h&&47!==h&&60!==h&&62!==h&&91!==h&&93!==h&&123!==h&&125!==h,dA=/[\n\r\t\b\f()\\]/g,RA={"\n":"\\n","\r":"\\r","\t":"\\t","\b":"\\b","\f":"\\f","\\":"\\\\","(":"\\(",")":"\\)"},nA=function(h){let c="";for(const y of h){const p=y.charCodeAt(0);uA(p)?c+=y:c+=`#${p.toString(16).toUpperCase().padStart(2,"0")}`}return c};class pA{static convert(c,y){if(void 0===y&&(y=null),"string"==typeof c)return`/${c}`;if(c instanceof String){let CA,p=c,q=!1;for(let _A=0,ee=p.length;_A127){q=!0;break}return CA=q?function(h){const c=h.length;if(1&c)throw new Error("Buffer length must be even");for(let y=0,p=c-1;yRA[_A]),`(${p})`}if(I.isBuffer(c))return`<${c.toString("hex")}>`;if(c instanceof rA||c instanceof QA||c instanceof NA)return c.toString();if(c instanceof Date){let p=`D:${oA(c.getUTCFullYear(),4)}`+oA(c.getUTCMonth()+1,2)+oA(c.getUTCDate(),2)+oA(c.getUTCHours(),2)+oA(c.getUTCMinutes(),2)+oA(c.getUTCSeconds(),2)+"Z";return y&&(p=y(I.from(p,"ascii")).toString("binary"),p=p.replace(dA,q=>RA[q])),`(${p})`}if(Array.isArray(c))return`[${c.map(q=>pA.convert(q,y)).join(" ")}]`;if("[object Object]"==={}.toString.call(c)){const p=["<<"];for(let q in c)p.push(`/${q} ${pA.convert(c[q],y)}`);return p.push(">>"),p.join("\n")}return"number"==typeof c?pA.number(c):`${c}`}static number(c){if(c>-1e21&&c<1e21)return Math.round(1e6*c)/1e6;throw new Error(`unsupported number: ${c}`)}}class z extends rA{constructor(c,y,p){void 0===p&&(p={}),super(),this.document=c,this.id=y,this.data=p,this.gen=0,this.compress=this.document.compress&&!this.data.Filter,this.uncompressedLength=0,this.buffer=[]}write(c){c instanceof Uint8Array||(c=I.from(c+"\n","binary")),this.uncompressedLength+=c.length,null==this.data.Length&&(this.data.Length=0),this.buffer.push(c),this.data.Length+=c.length,this.compress&&(this.data.Filter="FlateDecode")}end(c){c&&this.write(c),this.finalize()}finalize(){this.offset=this.document._offset;const c=this.document._security?this.document._security.getEncryptFn(this.id,this.gen):null;this.buffer.length&&(this.buffer=I.concat(this.buffer),this.compress&&(this.buffer=K.default.deflateSync(this.buffer)),c&&(this.buffer=c(this.buffer)),this.data.Length=this.buffer.length),this.document._write(`${this.id} ${this.gen} obj`),this.document._write(pA.convert(this.data,c)),this.buffer.length&&(this.document._write("stream"),this.document._write(this.buffer),this.buffer=[],this.document._write("\nendstream")),this.document._write("endobj"),this.document._refEnd(this)}toString(){return`${this.id} ${this.gen} R`}}const OA=new Float32Array(1),wA=new Uint32Array(OA.buffer);function VA(h){const c=Math.fround(h);return c<=h?c:(OA[0]=h,h<=0?wA[0]+=1:wA[0]-=1,OA[0])}function kA(h,c,y){return void 0===c&&(c=void 0),void 0===y&&(y=p=>p),(null==h||"object"==typeof h&&0===Object.keys(h).length)&&(h=c),null==h||"object"!=typeof h?h={top:h,right:h,bottom:h,left:h}:Array.isArray(h)&&(h=2===h.length?{vertical:h[0],horizontal:h[1]}:{top:h[0],right:h[1],bottom:h[2],left:h[3]}),("vertical"in h||"horizontal"in h)&&(h={top:h.vertical,right:h.horizontal,bottom:h.vertical,left:h.horizontal}),{top:y(h.top),right:y(h.right),bottom:y(h.bottom),left:y(h.left)}}const fA=1/2.54;function Ee(h){return 0===h?1:90===h?0:180===h?-1:270===h?0:Math.cos(h*Math.PI/180)}function HA(h){return 0===h?0:90===h?1:180===h?0:270===h?-1:Math.sin(h*Math.PI/180)}const cA={top:72,left:72,bottom:72,right:72},J={"4A0":[4767.87,6740.79],"2A0":[3370.39,4767.87],A0:[2383.94,3370.39],A1:[1683.78,2383.94],A2:[1190.55,1683.78],A3:[841.89,1190.55],A4:[595.28,841.89],A5:[419.53,595.28],A6:[297.64,419.53],A7:[209.76,297.64],A8:[147.4,209.76],A9:[104.88,147.4],A10:[73.7,104.88],B0:[2834.65,4008.19],B1:[2004.09,2834.65],B2:[1417.32,2004.09],B3:[1000.63,1417.32],B4:[708.66,1000.63],B5:[498.9,708.66],B6:[354.33,498.9],B7:[249.45,354.33],B8:[175.75,249.45],B9:[124.72,175.75],B10:[87.87,124.72],C0:[2599.37,3676.54],C1:[1836.85,2599.37],C2:[1298.27,1836.85],C3:[918.43,1298.27],C4:[649.13,918.43],C5:[459.21,649.13],C6:[323.15,459.21],C7:[229.61,323.15],C8:[161.57,229.61],C9:[113.39,161.57],C10:[79.37,113.39],RA0:[2437.8,3458.27],RA1:[1729.13,2437.8],RA2:[1218.9,1729.13],RA3:[864.57,1218.9],RA4:[609.45,864.57],SRA0:[2551.18,3628.35],SRA1:[1814.17,2551.18],SRA2:[1275.59,1814.17],SRA3:[907.09,1275.59],SRA4:[637.8,907.09],EXECUTIVE:[521.86,756],FOLIO:[612,936],LEGAL:[612,1008],LETTER:[612,792],TABLOID:[792,1224]};class U{constructor(c,y){void 0===y&&(y={}),this.document=c,this._options=y,this.size=y.size||"letter",this.layout=y.layout||"portrait",this.userUnit=y.userUnit||1;const p=Array.isArray(this.size)?this.size:J[this.size.toUpperCase()];this.width=p["portrait"===this.layout?0:1],this.height=p["portrait"===this.layout?1:0],this.content=this.document.ref(),y.font&&c.font(y.font,y.fontFamily),y.fontSize&&c.fontSize(y.fontSize),this.margins=kA(y.margin??y.margins,cA,q=>c.sizeToPoint(q,0,this)),this.resources=this.document.ref({ProcSet:["PDF","Text","ImageB","ImageC","ImageI"]}),this.dictionary=this.document.ref({Type:"Page",Parent:this.document._root.data.Pages,MediaBox:[0,0,this.width,this.height],Contents:this.content,Resources:this.resources,UserUnit:this.userUnit}),this.markings=[]}get fonts(){const c=this.resources.data;return null!=c.Font?c.Font:c.Font={}}get xobjects(){const c=this.resources.data;return null!=c.XObject?c.XObject:c.XObject={}}get ext_gstates(){const c=this.resources.data;return null!=c.ExtGState?c.ExtGState:c.ExtGState={}}get patterns(){const c=this.resources.data;return null!=c.Pattern?c.Pattern:c.Pattern={}}get colorSpaces(){const c=this.resources.data;return c.ColorSpace||(c.ColorSpace={})}get annotations(){const c=this.dictionary.data;return null!=c.Annots?c.Annots:c.Annots=[]}get structParentTreeKey(){const c=this.dictionary.data;return null!=c.StructParents?c.StructParents:c.StructParents=this.document.createStructParentTreeNextKey()}get contentWidth(){return this.width-this.margins.left-this.margins.right}get contentHeight(){return this.height-this.margins.top-this.margins.bottom}maxY(){return this.height-this.margins.bottom}write(c){return this.content.write(c)}_setTabOrder(){!this.dictionary.Tabs&&this.document.hasMarkInfoDictionary()&&(this.dictionary.data.Tabs="S")}end(){this._setTabOrder(),this.dictionary.end(),this.resources.data.ColorSpace=this.resources.data.ColorSpace||{};for(let c of Object.values(this.document.spotColors))this.resources.data.ColorSpace[c.id]=c;return this.resources.end(),this.content.end()}}class O extends QA{_compareKeys(c,y){return c.localeCompare(y)}_keysName(){return"Names"}_dataForKey(c){return new String(c)}}function lA(h){return new Uint8Array(B.default.arrayBuffer(h))}function JA(h){return(0,j.sha256)(h)}function $A(h,c,y,p){return void 0===p&&(p=!0),(0,tA.cbc)(c,y,{disablePadding:!p}).encrypt(h)}function gA(h,c){const y=new Uint8Array(256);for(let ee=0;ee<256;ee++)y[ee]=ee;let p=0;for(let ee=0;ee<256;ee++){p=p+y[ee]+c[ee%c.length]&255;var q=[y[p],y[ee]];y[ee]=q[0],y[p]=q[1]}const CA=new Uint8Array(h.length);for(let ee=0,he=0,Ie=0;Ie=c[CA]&&h<=c[CA+1])return!0;h>c[CA+1]?y=q+1:p=q-1}return!1}const R=[545,545,564,591,686,687,751,767,848,863,880,883,886,889,891,893,895,899,907,907,909,909,930,930,975,975,1015,1023,1159,1159,1231,1231,1270,1271,1274,1279,1296,1328,1367,1368,1376,1376,1416,1416,1419,1424,1442,1442,1466,1466,1477,1487,1515,1519,1525,1547,1549,1562,1564,1566,1568,1568,1595,1599,1622,1631,1774,1775,1791,1791,1806,1806,1837,1839,1867,1919,1970,2304,2308,2308,2362,2363,2382,2383,2389,2391,2417,2432,2436,2436,2445,2446,2449,2450,2473,2473,2481,2481,2483,2485,2490,2491,2493,2493,2501,2502,2505,2506,2510,2518,2520,2523,2526,2526,2532,2533,2555,2561,2563,2564,2571,2574,2577,2578,2601,2601,2609,2609,2612,2612,2615,2615,2618,2619,2621,2621,2627,2630,2633,2634,2638,2648,2653,2653,2655,2661,2677,2688,2692,2692,2700,2700,2702,2702,2706,2706,2729,2729,2737,2737,2740,2740,2746,2747,2758,2758,2762,2762,2766,2767,2769,2783,2785,2789,2800,2816,2820,2820,2829,2830,2833,2834,2857,2857,2865,2865,2868,2869,2874,2875,2884,2886,2889,2890,2894,2901,2904,2907,2910,2910,2914,2917,2929,2945,2948,2948,2955,2957,2961,2961,2966,2968,2971,2971,2973,2973,2976,2978,2981,2983,2987,2989,2998,2998,3002,3005,3011,3013,3017,3017,3022,3030,3032,3046,3059,3072,3076,3076,3085,3085,3089,3089,3113,3113,3124,3124,3130,3133,3141,3141,3145,3145,3150,3156,3159,3167,3170,3173,3184,3201,3204,3204,3213,3213,3217,3217,3241,3241,3252,3252,3258,3261,3269,3269,3273,3273,3278,3284,3287,3293,3295,3295,3298,3301,3312,3329,3332,3332,3341,3341,3345,3345,3369,3369,3386,3389,3396,3397,3401,3401,3406,3414,3416,3423,3426,3429,3440,3457,3460,3460,3479,3481,3506,3506,3516,3516,3518,3519,3527,3529,3531,3534,3541,3541,3543,3543,3552,3569,3573,3584,3643,3646,3676,3712,3715,3715,3717,3718,3721,3721,3723,3724,3726,3731,3736,3736,3744,3744,3748,3748,3750,3750,3752,3753,3756,3756,3770,3770,3774,3775,3781,3781,3783,3783,3790,3791,3802,3803,3806,3839,3912,3912,3947,3952,3980,3983,3992,3992,4029,4029,4045,4046,4048,4095,4130,4130,4136,4136,4139,4139,4147,4149,4154,4159,4186,4255,4294,4303,4345,4346,4348,4351,4442,4446,4515,4519,4602,4607,4615,4615,4679,4679,4681,4681,4686,4687,4695,4695,4697,4697,4702,4703,4743,4743,4745,4745,4750,4751,4783,4783,4785,4785,4790,4791,4799,4799,4801,4801,4806,4807,4815,4815,4823,4823,4847,4847,4879,4879,4881,4881,4886,4887,4895,4895,4935,4935,4955,4960,4989,5023,5109,5120,5751,5759,5789,5791,5873,5887,5901,5901,5909,5919,5943,5951,5972,5983,5997,5997,6001,6001,6004,6015,6109,6111,6122,6143,6159,6159,6170,6175,6264,6271,6314,7679,7836,7839,7930,7935,7958,7959,7966,7967,8006,8007,8014,8015,8024,8024,8026,8026,8028,8028,8030,8030,8062,8063,8117,8117,8133,8133,8148,8149,8156,8156,8176,8177,8181,8181,8191,8191,8275,8278,8280,8286,8292,8297,8306,8307,8335,8351,8370,8399,8427,8447,8507,8508,8524,8530,8580,8591,9167,9215,9255,9279,9291,9311,9471,9471,9748,9749,9752,9752,9854,9855,9866,9984,9989,9989,9994,9995,10024,10024,10060,10060,10062,10062,10067,10069,10071,10071,10079,10080,10133,10135,10160,10160,10175,10191,10220,10223,11008,11903,11930,11930,12020,12031,12246,12271,12284,12287,12352,12352,12439,12440,12544,12548,12589,12592,12687,12687,12728,12783,12829,12831,12868,12880,12924,12926,13004,13007,13055,13055,13175,13178,13278,13279,13311,13311,19894,19967,40870,40959,42125,42127,42183,44031,55204,55295,64046,64047,64107,64255,64263,64274,64280,64284,64311,64311,64317,64317,64319,64319,64322,64322,64325,64325,64434,64466,64832,64847,64912,64913,64968,64975,65021,65023,65040,65055,65060,65071,65095,65096,65107,65107,65127,65127,65132,65135,65141,65141,65277,65278,65280,65280,65471,65473,65480,65481,65488,65489,65496,65497,65501,65503,65511,65511,65519,65528,65536,66303,66335,66335,66340,66351,66379,66559,66598,66599,66638,118783,119030,119039,119079,119081,119262,119807,119893,119893,119965,119965,119968,119969,119971,119972,119975,119976,119981,119981,119994,119994,119996,119996,120001,120001,120004,120004,120070,120070,120075,120076,120085,120085,120093,120093,120122,120122,120127,120127,120133,120133,120135,120137,120145,120145,120484,120487,120778,120781,120832,131069,173783,194559,195102,196605,196608,262141,262144,327677,327680,393213,393216,458749,458752,524285,524288,589821,589824,655357,655360,720893,720896,786429,786432,851965,851968,917501,917504,917504,917506,917535,917632,983037],M=h=>b(h,R),D=[173,173,847,847,6150,6150,6155,6155,6156,6156,6157,6157,8203,8203,8204,8204,8205,8205,8288,8288,65024,65024,65025,65025,65026,65026,65027,65027,65028,65028,65029,65029,65030,65030,65031,65031,65032,65032,65033,65033,65034,65034,65035,65035,65036,65036,65037,65037,65038,65038,65039,65039,65279,65279],YA=[160,160,5760,5760,8192,8192,8193,8193,8194,8194,8195,8195,8196,8196,8197,8197,8198,8198,8199,8199,8200,8200,8201,8201,8202,8202,8203,8203,8239,8239,8287,8287,12288,12288],bA=[128,159,1757,1757,1807,1807,6158,6158,8204,8204,8205,8205,8232,8232,8233,8233,8288,8288,8289,8289,8290,8290,8291,8291,8298,8303,65279,65279,65529,65532,119155,119162],le=[64976,65007,65534,65535,131070,131071,196606,196607,262142,262143,327678,327679,393214,393215,458750,458751,524286,524287,589822,589823,655358,655359,720894,720895,786430,786431,851966,851967,917502,917503,983038,983039,1114110,1114111],ve=[0,31,127,127,832,832,833,833,8206,8206,8207,8207,8234,8234,8235,8235,8236,8236,8237,8237,8238,8238,8298,8298,8299,8299,8300,8300,8301,8301,8302,8302,8303,8303,12272,12283,55296,57343,57344,63743,65529,65529,65530,65530,65531,65531,65532,65532,65533,65533,917505,917505,917536,917631,983040,1048573,1048576,1114109],Ne=h=>b(h,YA)||b(h,ve)||b(h,bA)||b(h,le),Te=[1470,1470,1472,1472,1475,1475,1488,1514,1520,1524,1563,1563,1567,1567,1569,1594,1600,1610,1645,1647,1649,1749,1757,1757,1765,1766,1786,1790,1792,1805,1808,1808,1810,1836,1920,1957,1969,1969,8207,8207,64285,64285,64287,64296,64298,64310,64312,64316,64318,64318,64320,64321,64323,64324,64326,64433,64467,64829,64848,64911,64914,64967,65008,65020,65136,65140,65142,65276],ze=h=>b(h,Te),Oe=[65,90,97,122,170,170,181,181,186,186,192,214,216,246,248,544,546,563,592,685,688,696,699,705,720,721,736,740,750,750,890,890,902,902,904,906,908,908,910,929,931,974,976,1013,1024,1154,1162,1230,1232,1269,1272,1273,1280,1295,1329,1366,1369,1375,1377,1415,1417,1417,2307,2307,2309,2361,2365,2368,2377,2380,2384,2384,2392,2401,2404,2416,2434,2435,2437,2444,2447,2448,2451,2472,2474,2480,2482,2482,2486,2489,2494,2496,2503,2504,2507,2508,2519,2519,2524,2525,2527,2529,2534,2545,2548,2554,2565,2570,2575,2576,2579,2600,2602,2608,2610,2611,2613,2614,2616,2617,2622,2624,2649,2652,2654,2654,2662,2671,2674,2676,2691,2691,2693,2699,2701,2701,2703,2705,2707,2728,2730,2736,2738,2739,2741,2745,2749,2752,2761,2761,2763,2764,2768,2768,2784,2784,2790,2799,2818,2819,2821,2828,2831,2832,2835,2856,2858,2864,2866,2867,2870,2873,2877,2878,2880,2880,2887,2888,2891,2892,2903,2903,2908,2909,2911,2913,2918,2928,2947,2947,2949,2954,2958,2960,2962,2965,2969,2970,2972,2972,2974,2975,2979,2980,2984,2986,2990,2997,2999,3001,3006,3007,3009,3010,3014,3016,3018,3020,3031,3031,3047,3058,3073,3075,3077,3084,3086,3088,3090,3112,3114,3123,3125,3129,3137,3140,3168,3169,3174,3183,3202,3203,3205,3212,3214,3216,3218,3240,3242,3251,3253,3257,3262,3262,3264,3268,3271,3272,3274,3275,3285,3286,3294,3294,3296,3297,3302,3311,3330,3331,3333,3340,3342,3344,3346,3368,3370,3385,3390,3392,3398,3400,3402,3404,3415,3415,3424,3425,3430,3439,3458,3459,3461,3478,3482,3505,3507,3515,3517,3517,3520,3526,3535,3537,3544,3551,3570,3572,3585,3632,3634,3635,3648,3654,3663,3675,3713,3714,3716,3716,3719,3720,3722,3722,3725,3725,3732,3735,3737,3743,3745,3747,3749,3749,3751,3751,3754,3755,3757,3760,3762,3763,3773,3773,3776,3780,3782,3782,3792,3801,3804,3805,3840,3863,3866,3892,3894,3894,3896,3896,3902,3911,3913,3946,3967,3967,3973,3973,3976,3979,4030,4037,4039,4044,4047,4047,4096,4129,4131,4135,4137,4138,4140,4140,4145,4145,4152,4152,4160,4183,4256,4293,4304,4344,4347,4347,4352,4441,4447,4514,4520,4601,4608,4614,4616,4678,4680,4680,4682,4685,4688,4694,4696,4696,4698,4701,4704,4742,4744,4744,4746,4749,4752,4782,4784,4784,4786,4789,4792,4798,4800,4800,4802,4805,4808,4814,4816,4822,4824,4846,4848,4878,4880,4880,4882,4885,4888,4894,4896,4934,4936,4954,4961,4988,5024,5108,5121,5750,5761,5786,5792,5872,5888,5900,5902,5905,5920,5937,5941,5942,5952,5969,5984,5996,5998,6e3,6016,6070,6078,6085,6087,6088,6100,6106,6108,6108,6112,6121,6160,6169,6176,6263,6272,6312,7680,7835,7840,7929,7936,7957,7960,7965,7968,8005,8008,8013,8016,8023,8025,8025,8027,8027,8029,8029,8031,8061,8064,8116,8118,8124,8126,8126,8130,8132,8134,8140,8144,8147,8150,8155,8160,8172,8178,8180,8182,8188,8206,8206,8305,8305,8319,8319,8450,8450,8455,8455,8458,8467,8469,8469,8473,8477,8484,8484,8486,8486,8488,8488,8490,8493,8495,8497,8499,8505,8509,8511,8517,8521,8544,8579,9014,9082,9109,9109,9372,9449,12293,12295,12321,12329,12337,12341,12344,12348,12353,12438,12445,12447,12449,12538,12540,12543,12549,12588,12593,12686,12688,12727,12784,12828,12832,12867,12896,12923,12927,12976,12992,13003,13008,13054,13056,13174,13179,13277,13280,13310,13312,19893,19968,40869,40960,42124,44032,55203,55296,64045,64048,64106,64256,64262,64275,64279,65313,65338,65345,65370,65382,65470,65474,65479,65482,65487,65490,65495,65498,65500,66304,66334,66336,66339,66352,66378,66560,66597,66600,66637,118784,119029,119040,119078,119082,119142,119146,119154,119171,119172,119180,119209,119214,119261,119808,119892,119894,119964,119966,119967,119970,119970,119973,119974,119977,119980,119982,119993,119995,119995,119997,12e4,120002,120003,120005,120069,120071,120074,120077,120084,120086,120092,120094,120121,120123,120126,120128,120132,120134,120134,120138,120144,120146,120483,120488,120777,131072,173782,194560,195101,983040,1048573,1048576,1114109],oe=h=>b(h,Oe),Y=h=>h.codePointAt(0);function E(h){const c=[],y=h.length;for(let p=0;p=55296&&q<=56319&&y>p+1){const CA=h.charCodeAt(p+1);if(CA>=56320&&CA<=57343){c.push(1024*(q-55296)+CA-56320+65536),p+=1;continue}}c.push(q)}return c}class ie{static generateFileID(c){void 0===c&&(c={});let y=`${c.CreationDate.getTime()}\n`;for(let p in c)c.hasOwnProperty(p)&&(y+=`${p}: ${c[p].valueOf()}\n`);return I.from(lA(y))}static generateRandomWordArray(c){return function C(h){const c=new Uint8Array(h);return globalThis.crypto.getRandomValues(c),c}(c)}static create(c,y){return void 0===y&&(y={}),y.ownerPassword||y.userPassword?new ie(c,y):null}constructor(c,y){if(void 0===y&&(y={}),!y.ownerPassword&&!y.userPassword)throw new Error("None of owner password and user password is defined.");this.document=c,this._setupEncryption(y)}_setupEncryption(c){switch(c.pdfVersion){case"1.4":case"1.5":this.version=2;break;case"1.6":case"1.7":this.version=4;break;case"1.7ext3":this.version=5;break;default:this.version=1}const y={Filter:"Standard"};switch(this.version){case 1:case 2:case 4:this._setupEncryptionV1V2V4(this.version,y,c);break;case 5:this._setupEncryptionV5(y,c)}this.dictionary=this.document.ref(y)}_setupEncryptionV1V2V4(c,y,p){let q,CA;switch(c){case 1:q=2,this.keyBits=40,CA=function DA(h){void 0===h&&(h={});let c=-64;return h.printing&&(c|=4),h.modifying&&(c|=8),h.copying&&(c|=16),h.annotating&&(c|=32),c}(p.permissions);break;case 2:q=3,this.keyBits=128,CA=Ae(p.permissions);break;case 4:q=4,this.keyBits=128,CA=Ae(p.permissions)}const _A=et(p.userPassword),ee=p.ownerPassword?et(p.ownerPassword):_A,he=function Pe(h,c,y,p){let q=p,CA=h>=3?51:1;for(let Ie=0;Ie=3?20:1;for(let Ie=0;Ie>8&255,CA>>16&255,CA>>24&255]);let ee=(0,v.concatBytes)(p,q,_A,new Uint8Array(y));const he=h>=3?51:1,Ie=c/8;for(let xe=0;xe=2&&(y.Length=this.keyBits),4===c&&(y.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV2",Length:this.keyBits/8}},y.StmF="StdCF",y.StrF="StdCF"),y.R=q,y.O=I.from(he),y.U=I.from(Ie),y.P=CA}_setupEncryptionV5(c,y){this.keyBits=256;const p=Ae(y.permissions),q=Ke(y.userPassword),CA=y.ownerPassword?Ke(y.ownerPassword):q;this.encryptionKey=function we(h){return h(32)}(ie.generateRandomWordArray);const _A=function _(h,c){const y=c(8),p=c(8),q=JA((0,v.concatBytes)(h,y));return(0,v.concatBytes)(q,y,p)}(q,ie.generateRandomWordArray),he=function be(h,c,y){return $A(y,JA((0,v.concatBytes)(h,c)),new Uint8Array(16),!1)}(q,_A.slice(40,48),this.encryptionKey),Ie=function Re(h,c,y){const p=y(8),q=y(8),CA=JA((0,v.concatBytes)(h,p,c));return(0,v.concatBytes)(CA,p,q)}(CA,_A,ie.generateRandomWordArray),$=function SA(h,c,y,p){return $A(p,JA((0,v.concatBytes)(h,c,y)),new Uint8Array(16),!1)}(CA,Ie.slice(40,48),_A,this.encryptionKey),s=function Fe(h,c,y){const p=new Uint8Array(16);p[0]=255&h,p[1]=h>>8&255,p[2]=h>>16&255,p[3]=h>>24&255,p[4]=255,p[5]=255,p[6]=255,p[7]=255,p[8]=84,p[9]=97,p[10]=100,p[11]=98;const q=y(4);return p.set(q,12),function IA(h,c){return(0,tA.ecb)(c,{disablePadding:!0}).encrypt(h)}(p,c)}(p,this.encryptionKey,ie.generateRandomWordArray);c.V=5,c.Length=this.keyBits,c.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV3",Length:this.keyBits/8}},c.StmF="StdCF",c.StrF="StdCF",c.R=5,c.O=I.from(Ie),c.OE=I.from($),c.U=I.from(_A),c.UE=I.from(he),c.P=p,c.Perms=I.from(s)}getEncryptFn(c,y){let p,q;if(this.version<5){const _A=new Uint8Array([255&c,c>>8&255,c>>16&255,255&y,y>>8&255]);p=(0,v.concatBytes)(this.encryptionKey,_A)}if(1===this.version||2===this.version){let _A=lA(p);const ee=Math.min(16,this.keyBits/8+5);return _A=_A.slice(0,ee),he=>I.from(gA(new Uint8Array(he),_A))}if(4===this.version){const _A=new Uint8Array([115,65,108,84]);q=lA((0,v.concatBytes)(p,_A))}else q=this.encryptionKey;const CA=ie.generateRandomWordArray(16);return _A=>{const ee=$A(new Uint8Array(_A),q,CA,!0);return I.from((0,v.concatBytes)(CA,ee))}}end(){this.dictionary.end()}}function Ae(h){void 0===h&&(h={});let c=-3904;return"lowResolution"===h.printing&&(c|=4),"highResolution"===h.printing&&(c|=2052),h.modifying&&(c|=8),h.copying&&(c|=16),h.annotating&&(c|=32),h.fillingForms&&(c|=256),h.contentAccessibility&&(c|=512),h.documentAssembly&&(c|=1024),c}function et(h){void 0===h&&(h="");const c=new Uint8Array(32),y=h.length;let p=0;for(;p255)throw new Error("Password contains one or more invalid characters.");c[p]=q,p++}for(;p<32;)c[p]=$e[p-y],p++;return c}function Ke(h){void 0===h&&(h=""),h=unescape(encodeURIComponent(function mA(h,c){if(void 0===c&&(c={}),"string"!=typeof h)throw new TypeError("Expected string.");if(0===h.length)return"";const y=E(h).map(xe=>(h=>b(h,YA))(xe)?32:xe).filter(xe=>!(h=>b(h,D))(xe)),p=String.fromCodePoint.apply(null,y).normalize("NFKC"),q=E(p);if(q.some(Ne))throw new Error("Prohibited character, see https://tools.ietf.org/html/rfc4013#section-2.3");if(!0!==c.allowUnassigned&&q.some(M))throw new Error("Unassigned code point, see https://tools.ietf.org/html/rfc4013#section-2.5");const _A=q.some(ze),ee=q.some(oe);if(_A&&ee)throw new Error("String must not contain RandALCat and LCat at the same time, see https://tools.ietf.org/html/rfc3454#section-6");const he=ze(Y((h=>h[0])(p))),Ie=ze(Y((h=>h[h.length-1])(p)));if(_A&&(!he||!Ie))throw new Error("Bidirectional RandALCat character must be the first and the last character of the string, see https://tools.ietf.org/html/rfc3454#section-6");return p}(h)));const c=Math.min(127,h.length),y=new Uint8Array(c);for(let p=0;pxe[2]<1)){let xe=this.opacityGradient();xe._colorSpace="DeviceGray";for(let W of this.stops)xe.stop(W[0],[W[2]]);xe=xe.embed(this.matrix);const $=[0,0,this.doc.page.width,this.doc.page.height],s=this.doc.ref({Type:"XObject",Subtype:"Form",FormType:1,BBox:$,Group:{Type:"Group",S:"Transparency",CS:"DeviceGray"},Resources:{ProcSet:["PDF","Text","ImageB","ImageC","ImageI"],Pattern:{Sh1:xe}}});s.write("/Pattern cs /Sh1 scn"),s.end(`${$.join(" ")} re f`);const d=this.doc.ref({Type:"ExtGState",SMask:{Type:"Mask",S:"Luminosity",G:s}});d.end();const F=this.doc.ref({Type:"Pattern",PatternType:1,PaintType:1,TilingType:2,BBox:$,XStep:$[2],YStep:$[3],Resources:{ProcSet:["PDF","Text","ImageB","ImageC","ImageI"],Pattern:{Sh1:Ie},ExtGState:{Gs1:d}}});F.write("/Gs1 gs /Pattern cs /Sh1 scn"),F.end(`${$.join(" ")} re f`),this.doc.page.patterns[this.id]=F}else this.doc.page.patterns[this.id]=Ie;return Ie}apply(c){const y=this.doc._ctm,p=y[0],q=y[1],CA=y[2],_A=y[3],Ie=this.transform,xe=Ie[0],$=Ie[1],s=Ie[2],d=Ie[3],F=Ie[4],W=Ie[5],Z=[p*xe+CA*$,q*xe+_A*$,p*s+CA*d,q*s+_A*d,p*F+CA*W+y[4],q*F+_A*W+y[5]];return(!this.embedded||Z.join(" ")!==this.matrix.join(" "))&&this.embed(Z),this.doc._setColorSpace("Pattern",c),this.doc.addContent(`/${this.id} ${c?"SCN":"scn"}`)}};const Tt=["DeviceCMYK","DeviceRGB"],pn=cn,Gt=class Jc extends cn{constructor(c,y,p,q,CA){super(c),this.x1=y,this.y1=p,this.x2=q,this.y2=CA}shader(c){return this.doc.ref({ShadingType:2,ColorSpace:this._colorSpace,Coords:[this.x1,this.y1,this.x2,this.y2],Function:c,Extend:[!0,!0]})}opacityGradient(){return new Jc(this.doc,this.x1,this.y1,this.x2,this.y2)}},Mt=class _c extends cn{constructor(c,y,p,q,CA,_A,ee){super(c),this.doc=c,this.x1=y,this.y1=p,this.r1=q,this.x2=CA,this.y2=_A,this.r2=ee}shader(c){return this.doc.ref({ShadingType:3,ColorSpace:this._colorSpace,Coords:[this.x1,this.y1,this.r1,this.x2,this.y2,this.r2],Function:c,Extend:[!0,!0]})}opacityGradient(){return new _c(this.doc,this.x1,this.y1,this.r1,this.x2,this.y2,this.r2)}},Ot=class{constructor(c,y,p,q,CA){this.doc=c,this.bBox=y,this.xStep=p,this.yStep=q,this.stream=CA}createPattern(){const c=this.doc.ref();c.end();const y=this.doc._ctm,p=y[0],q=y[1],CA=y[2],_A=y[3],Z=this.doc.ref({Type:"Pattern",PatternType:1,PaintType:2,TilingType:2,BBox:this.bBox,XStep:this.xStep,YStep:this.yStep,Matrix:[1*p+0*CA,1*q+0*_A,0*p+1*CA,0*q+1*_A,0*p+0*CA+y[4],0*q+0*_A+y[5]].map(EA=>+EA.toFixed(5)),Resources:c});return Z.end(this.stream),Z}embedPatternColorSpaces(){Tt.forEach(c=>{const y=this.getPatternColorSpaceId(c);if(this.doc.page.colorSpaces[y])return;const p=this.doc.ref(["Pattern",c]);p.end(),this.doc.page.colorSpaces[y]=p})}getPatternColorSpaceId(c){return`CsP${c}`}embed(){this.id||(this.doc._patternCount=this.doc._patternCount+1,this.id="P"+this.doc._patternCount,this.pattern=this.createPattern()),this.doc.page.patterns[this.id]||(this.doc.page.patterns[this.id]=this.pattern)}apply(c,y){this.embedPatternColorSpaces(),this.embed();const p=this.doc._normalizeColor(y);if(!p)throw Error(`invalid pattern color. (value: ${y})`);const q=this.getPatternColorSpaceId(this.doc._getColorSpace(p));this.doc._setColorSpace(q,c);const CA=c?"SCN":"scn";return this.doc.addContent(`${p.join(" ")} /${this.id} ${CA}`)}};var bt={initColor(){this.spotColors={},this._opacityRegistry={},this._opacityCount=0,this._patternCount=0,this._gradCount=0},_normalizeColor(h){if("string"==typeof h)if("#"===h.charAt(0)){4===h.length&&(h=h.replace(/#([0-9A-F])([0-9A-F])([0-9A-F])/i,"#$1$1$2$2$3$3"));const c=parseInt(h.slice(1),16);h=[c>>16,c>>8&255,255&c]}else if(Dt[h])h=Dt[h];else if(this.spotColors[h])return this.spotColors[h];return Array.isArray(h)?(3===h.length?h=h.map(c=>c/255):4===h.length&&(h=h.map(c=>c/100)),h):null},_setColor(h,c){return h instanceof pn?(h.apply(c),!0):Array.isArray(h)&&h[0]instanceof Ot?(h[0].apply(c,h[1]),!0):this._setColorCore(h,c)},_setColorCore(h,c){if(!(h=this._normalizeColor(h)))return!1;const y=c?"SCN":"scn",p=this._getColorSpace(h);return this._setColorSpace(p,c),h instanceof NA?(this.page.colorSpaces[h.id]=h.ref,this.addContent(`1 ${y}`)):this.addContent(`${h.join(" ")} ${y}`),!0},_setColorSpace(h,c){return this.addContent(`/${h} ${c?"CS":"cs"}`)},_getColorSpace:h=>h instanceof NA?h.id:4===h.length?"DeviceCMYK":"DeviceRGB",fillColor(h,c){return this._setColor(h,!1)&&this.fillOpacity(c),this._fillColor=[h,c],this},strokeColor(h,c){return this._setColor(h,!0)&&this.strokeOpacity(c),this},opacity(h){return this._doOpacity(h,h),this},fillOpacity(h){return this._doOpacity(h,null),this},strokeOpacity(h){return this._doOpacity(null,h),this},_doOpacity(h,c){let y,p;if(null==h&&null==c)return;null!=h&&(h=Math.max(0,Math.min(1,h))),null!=c&&(c=Math.max(0,Math.min(1,c)));const q=`${h}_${c}`;if(this._opacityRegistry[q]){var CA=this._opacityRegistry[q];y=CA[0],p=CA[1]}else y={Type:"ExtGState"},null!=h&&(y.ca=h),null!=c&&(y.CA=c),y=this.ref(y),y.end(),p="Gs"+ ++this._opacityCount,this._opacityRegistry[q]=[y,p];return this.page.ext_gstates[p]=y,this.addContent(`/${p} gs`)},linearGradient(h,c,y,p){return new Gt(this,h,c,y,p)},radialGradient(h,c,y,p,q,CA){return new Mt(this,h,c,y,p,q,CA)},pattern(h,c,y,p){return new Ot(this,h,c,y,p)},addSpotColor(h,c,y,p,q){const CA=new NA(this,h,c,y,p,q);return this.spotColors[h]=CA,this}},Dt={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],grey:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]};let Ze,qe,Et,ct,Ht,Jt;Ze=qe=Et=ct=Ht=Jt=0;const GA={A:7,a:7,C:6,c:6,H:1,h:1,L:2,l:2,M:2,m:2,Q:4,q:4,S:4,s:4,T:2,t:2,V:1,v:1,Z:0,z:0},zA=function(h){return h in GA},vA=function(h){const c=h.codePointAt(0);return 32===c||9===c||13===c||10===c},qA=function(h){const c=h.codePointAt(0);return null!=c&&48<=c&&c<=57},ZA=function(h,c){let y=c,p="",q="none";for(;y(Ze=c[0],qe=c[1],Et=ct=null,Ht=Ze,Jt=qe,h.moveTo(Ze,qe)),m:(h,c)=>(Ze+=c[0],qe+=c[1],Et=ct=null,Ht=Ze,Jt=qe,h.moveTo(Ze,qe)),C:(h,c)=>(Ze=c[4],qe=c[5],Et=c[2],ct=c[3],h.bezierCurveTo(...c)),c:(h,c)=>(h.bezierCurveTo(c[0]+Ze,c[1]+qe,c[2]+Ze,c[3]+qe,c[4]+Ze,c[5]+qe),Et=Ze+c[2],ct=qe+c[3],Ze+=c[4],qe+=c[5]),S:(h,c)=>(null===Et&&(Et=Ze,ct=qe),h.bezierCurveTo(Ze-(Et-Ze),qe-(ct-qe),c[0],c[1],c[2],c[3]),Et=c[0],ct=c[1],Ze=c[2],qe=c[3]),s:(h,c)=>(null===Et&&(Et=Ze,ct=qe),h.bezierCurveTo(Ze-(Et-Ze),qe-(ct-qe),Ze+c[0],qe+c[1],Ze+c[2],qe+c[3]),Et=Ze+c[0],ct=qe+c[1],Ze+=c[2],qe+=c[3]),Q:(h,c)=>(Et=c[0],ct=c[1],Ze=c[2],qe=c[3],h.quadraticCurveTo(c[0],c[1],Ze,qe)),q:(h,c)=>(h.quadraticCurveTo(c[0]+Ze,c[1]+qe,c[2]+Ze,c[3]+qe),Et=Ze+c[0],ct=qe+c[1],Ze+=c[2],qe+=c[3]),T:(h,c)=>(null===Et?(Et=Ze,ct=qe):(Et=Ze-(Et-Ze),ct=qe-(ct-qe)),h.quadraticCurveTo(Et,ct,c[0],c[1]),Et=Ze-(Et-Ze),ct=qe-(ct-qe),Ze=c[0],qe=c[1]),t:(h,c)=>(null===Et?(Et=Ze,ct=qe):(Et=Ze-(Et-Ze),ct=qe-(ct-qe)),h.quadraticCurveTo(Et,ct,Ze+c[0],qe+c[1]),Ze+=c[0],qe+=c[1]),A:(h,c)=>(ae(h,Ze,qe,c),Ze=c[5],qe=c[6]),a:(h,c)=>(c[5]+=Ze,c[6]+=qe,ae(h,Ze,qe,c),Ze=c[5],qe=c[6]),L:(h,c)=>(Ze=c[0],qe=c[1],Et=ct=null,h.lineTo(Ze,qe)),l:(h,c)=>(Ze+=c[0],qe+=c[1],Et=ct=null,h.lineTo(Ze,qe)),H:(h,c)=>(Ze=c[0],Et=ct=null,h.lineTo(Ze,qe)),h:(h,c)=>(Ze+=c[0],Et=ct=null,h.lineTo(Ze,qe)),V:(h,c)=>(qe=c[0],Et=ct=null,h.lineTo(Ze,qe)),v:(h,c)=>(qe+=c[0],Et=ct=null,h.lineTo(Ze,qe)),Z:h=>(h.closePath(),Ze=Ht,qe=Jt),z:h=>(h.closePath(),Ze=Ht,qe=Jt)},ae=function(h,c,y,p){const $=ce(p[5],p[6],p[0],p[1],p[3],p[4],p[2],c,y);for(let s of $){const d=ye(...s);h.bezierCurveTo(...d)}},ce=function(h,c,y,p,q,CA,_A,ee,he){const Ie=_A*(Math.PI/180),xe=Math.sin(Ie),$=Math.cos(Ie);y=Math.abs(y),p=Math.abs(p),Et=$*(ee-h)*.5+xe*(he-c)*.5,ct=$*(he-c)*.5-xe*(ee-h)*.5;let s=Et*Et/(y*y)+ct*ct/(p*p);s>1&&(s=Math.sqrt(s),y*=s,p*=s);const d=$/y,F=xe/y,W=-xe/p,Z=$/p,EA=d*ee+F*he,PA=W*ee+Z*he,FA=d*h+F*c,te=W*h+Z*c;let Me=1/((FA-EA)*(FA-EA)+(te-PA)*(te-PA))-.25;Me<0&&(Me=0);let Qe=Math.sqrt(Me);CA===q&&(Qe=-Qe);const me=.5*(EA+FA)-Qe*(te-PA),Ye=.5*(PA+te)+Qe*(FA-EA),Ue=Math.atan2(PA-Ye,EA-me);let Le=Math.atan2(te-Ye,FA-me)-Ue;Le<0&&1===CA?Le+=2*Math.PI:Le>0&&0===CA&&(Le-=2*Math.PI);const Se=Math.ceil(Math.abs(Le/(.5*Math.PI+.001))),it=[];for(let Ve=0;VeNumber.isFinite(q)&&q>0))throw new Error(`dash(${JSON.stringify(y)}, ${JSON.stringify(c)}) invalid, lengths must be numeric and greater than zero`);return h=h.map(Je).join(" "),this.addContent(`[${h}] ${Je(c.phase||0)} d`)},undash(){return this.addContent("[] 0 d")},moveTo(h,c){return this.addContent(`${Je(h)} ${Je(c)} m`)},lineTo(h,c){return this.addContent(`${Je(h)} ${Je(c)} l`)},bezierCurveTo(h,c,y,p,q,CA){return this.addContent(`${Je(h)} ${Je(c)} ${Je(y)} ${Je(p)} ${Je(q)} ${Je(CA)} c`)},quadraticCurveTo(h,c,y,p){return this.addContent(`${Je(h)} ${Je(c)} ${Je(y)} ${Je(p)} v`)},rect(h,c,y,p){return this.addContent(`${Je(h)} ${Je(c)} ${Je(y)} ${Je(p)} re`)},roundedRect(h,c,y,p,q){let CA;null==q&&(q=0),CA=Array.isArray(q)?q.slice(0,4):[q,q,q,q];const _A=Math.min(.5*y,.5*p),ee=Math.max(0,Math.min(CA[0]||0,_A)),he=Math.max(0,Math.min(CA[1]||0,_A)),Ie=Math.max(0,Math.min(CA[2]||0,_A)),xe=Math.max(0,Math.min(CA[3]||0,_A)),$=he*(1-tt),s=Ie*(1-tt),d=xe*(1-tt),F=ee*(1-tt);return this.moveTo(h+ee,c),this.lineTo(h+y-he,c),he>0&&this.bezierCurveTo(h+y-$,c,h+y,c+$,h+y,c+he),this.lineTo(h+y,c+p-Ie),Ie>0&&this.bezierCurveTo(h+y,c+p-s,h+y-s,c+p,h+y-Ie,c+p),this.lineTo(h+xe,c+p),xe>0&&this.bezierCurveTo(h+d,c+p,h,c+p-d,h,c+p-xe),this.lineTo(h,c+ee),ee>0&&this.bezierCurveTo(h,c+F,h+F,c,h+ee,c),this.closePath()},ellipse(h,c,y,p){null==p&&(p=y);const q=y*tt,CA=p*tt,_A=(h-=y)+2*y,ee=(c-=p)+2*p,he=h+y,Ie=c+p;return this.moveTo(h,Ie),this.bezierCurveTo(h,Ie-CA,he-q,c,he,c),this.bezierCurveTo(he+q,c,_A,Ie-CA,_A,Ie),this.bezierCurveTo(_A,Ie+CA,he+q,ee,he,ee),this.bezierCurveTo(he-q,ee,h,Ie+CA,h,Ie),this.closePath()},circle(h,c,y){return this.ellipse(h,c,y)},arc(h,c,y,p,q,CA){null==CA&&(CA=!1);const _A=2*Math.PI,ee=.5*Math.PI;let he=q-p;Math.abs(he)>_A?he=_A:0!==he&&CA!==he<0&&(he=(CA?-1:1)*_A+he);const Ie=Math.ceil(Math.abs(he)/ee),xe=he/Ie,$=xe/ee*tt*y;let s=p,d=-Math.sin(s)*$,F=Math.cos(s)*$,W=h+Math.cos(s)*y,Z=c+Math.sin(s)*y;this.moveTo(W,Z);for(let EA=0;EA/even-?odd/.test(h)?"*":"",fill(h,c){return/(even-?odd)|(non-?zero)/.test(h)&&(c=h,h=null),h&&this.fillColor(h),this.addContent(`f${this._windingRule(c)}`)},stroke(h){return h&&this.strokeColor(h),this.addContent("S")},fillAndStroke(h,c,y){null==c&&(c=h);const p=/(even-?odd)|(non-?zero)/;return p.test(h)&&(y=h,h=null),p.test(c)&&(y=c,c=h),h&&(this.fillColor(h),this.strokeColor(c)),this.addContent(`B${this._windingRule(y)}`)},clip(h){return this.addContent(`W${this._windingRule(h)} n`)},transform(h,c,y,p,q,CA){if(1===h&&0===c&&0===y&&1===p&&0===q&&0===CA)return this;const _A=this._ctm,ee=_A[0],he=_A[1],Ie=_A[2],xe=_A[3],$=_A[4],s=_A[5];_A[0]=ee*h+Ie*c,_A[1]=he*h+xe*c,_A[2]=ee*y+Ie*p,_A[3]=he*y+xe*p,_A[4]=ee*q+Ie*CA+$,_A[5]=he*q+xe*CA+s;const d=[h,c,y,p,q,CA].map(F=>Je(F)).join(" ");return this.addContent(`${d} cm`)},translate(h,c){return this.transform(1,0,0,1,h,c)},rotate(h,c){let y;void 0===c&&(c={});const p=h*Math.PI/180,q=Math.cos(p),CA=Math.sin(p);let _A=y=0;if(null!=c.origin){var ee=c.origin;_A=ee[0],y=ee[1];const Ie=_A*CA+y*q;_A-=_A*q-y*CA,y-=Ie}return this.transform(q,CA,-CA,q,_A,y)},scale(h,c,y){let p;void 0===y&&(y={}),null==c&&(c=h),"object"==typeof c&&(y=c,c=h);let q=p=0;if(null!=y.origin){var CA=y.origin;q=CA[0],p=CA[1],q-=h*q,p-=c*p}return this.transform(h,0,0,c,q,p)}};const Ce={402:131,8211:150,8212:151,8216:145,8217:146,8218:130,8220:147,8221:148,8222:132,8224:134,8225:135,8226:149,8230:133,8364:128,8240:137,8249:139,8250:155,710:136,8482:153,338:140,339:156,732:152,352:138,353:154,376:159,381:142,382:158},_e=".notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n \nspace exclam quotedbl numbersign\ndollar percent ampersand quotesingle\nparenleft parenright asterisk plus\ncomma hyphen period slash\nzero one two three\nfour five six seven\neight nine colon semicolon\nless equal greater question\n \nat A B C\nD E F G\nH I J K\nL M N O\nP Q R S\nT U V W\nX Y Z bracketleft\nbackslash bracketright asciicircum underscore\n \ngrave a b c\nd e f g\nh i j k\nl m n o\np q r s\nt u v w\nx y z braceleft\nbar braceright asciitilde .notdef\n \nEuro .notdef quotesinglbase florin\nquotedblbase ellipsis dagger daggerdbl\ncircumflex perthousand Scaron guilsinglleft\nOE .notdef Zcaron .notdef\n.notdef quoteleft quoteright quotedblleft\nquotedblright bullet endash emdash\ntilde trademark scaron guilsinglright\noe .notdef zcaron ydieresis\n \nspace exclamdown cent sterling\ncurrency yen brokenbar section\ndieresis copyright ordfeminine guillemotleft\nlogicalnot hyphen registered macron\ndegree plusminus twosuperior threesuperior\nacute mu paragraph periodcentered\ncedilla onesuperior ordmasculine guillemotright\nonequarter onehalf threequarters questiondown\n \nAgrave Aacute Acircumflex Atilde\nAdieresis Aring AE Ccedilla\nEgrave Eacute Ecircumflex Edieresis\nIgrave Iacute Icircumflex Idieresis\nEth Ntilde Ograve Oacute\nOcircumflex Otilde Odieresis multiply\nOslash Ugrave Uacute Ucircumflex\nUdieresis Yacute Thorn germandbls\n \nagrave aacute acircumflex atilde\nadieresis aring ae ccedilla\negrave eacute ecircumflex edieresis\nigrave iacute icircumflex idieresis\neth ntilde ograve oacute\nocircumflex otilde odieresis divide\noslash ugrave uacute ucircumflex\nudieresis yacute thorn ydieresis".split(/\s+/);class st{constructor(c){this.attributes={},this.glyphWidths={},this.boundingBoxes={},this.kernPairs={},this.parse(c),this.bbox=this.attributes.FontBBox.split(/\s+/).map(y=>+y),this.ascender=+(this.attributes.Ascender||0),this.descender=+(this.attributes.Descender||0),this.xHeight=+(this.attributes.XHeight||0),this.capHeight=+(this.attributes.CapHeight||0),this.lineGap=this.bbox[3]-this.bbox[1]-(this.ascender-this.descender)}parse(c){let y="";for(let he of c.split("\n")){var p,q;if(p=he.match(/^Start(\w+)/))y=p[1];else if(he.match(/^End(\w+)/))y="";else switch(y){case"FontMetrics":var CA=(p=he.match(/(^\w+)\s+(.*)/))[1],_A=p[2];(q=this.attributes[CA])?(Array.isArray(q)||(q=this.attributes[CA]=[q]),q.push(_A)):this.attributes[CA]=_A;break;case"CharMetrics":if(!/^CH?\s/.test(he))continue;var ee=he.match(/\bN\s+(\.?\w+)\s*;/)[1];this.glyphWidths[ee]=+he.match(/\bWX\s+(\d+)\s*;/)[1];break;case"KernPairs":(p=he.match(/^KPX\s+(\.?\w+)\s+(\.?\w+)\s+(-?\d+)/))&&(this.kernPairs[p[1]+"\0"+p[2]]=parseInt(p[3]))}}}encodeText(c){const y=[];for(let p=0,q=c.length;pP.readFileSync("//data/Courier.afm","utf8"),"Courier-Bold":()=>P.readFileSync("//data/Courier-Bold.afm","utf8"),"Courier-Oblique":()=>P.readFileSync("//data/Courier-Oblique.afm","utf8"),"Courier-BoldOblique":()=>P.readFileSync("//data/Courier-BoldOblique.afm","utf8"),Helvetica:()=>P.readFileSync("//data/Helvetica.afm","utf8"),"Helvetica-Bold":()=>P.readFileSync("//data/Helvetica-Bold.afm","utf8"),"Helvetica-Oblique":()=>P.readFileSync("//data/Helvetica-Oblique.afm","utf8"),"Helvetica-BoldOblique":()=>P.readFileSync("//data/Helvetica-BoldOblique.afm","utf8"),"Times-Roman":()=>P.readFileSync("//data/Times-Roman.afm","utf8"),"Times-Bold":()=>P.readFileSync("//data/Times-Bold.afm","utf8"),"Times-Italic":()=>P.readFileSync("//data/Times-Italic.afm","utf8"),"Times-BoldItalic":()=>P.readFileSync("//data/Times-BoldItalic.afm","utf8"),Symbol:()=>P.readFileSync("//data/Symbol.afm","utf8"),ZapfDingbats:()=>P.readFileSync("//data/ZapfDingbats.afm","utf8")};class Bt extends lt{constructor(c,y,p){super(),this.document=c,this.name=y,this.id=p,this.font=new st(wt[this.name]());var q=this.font;this.ascender=q.ascender,this.descender=q.descender,this.bbox=q.bbox,this.lineGap=q.lineGap,this.xHeight=q.xHeight,this.capHeight=q.capHeight}embed(){return this.dictionary.data={Type:"Font",BaseFont:this.name,Subtype:"Type1",Encoding:"WinAnsiEncoding"},this.dictionary.end()}encode(c){const y=this.font.encodeText(c),p=this.font.glyphsForString(`${c}`),q=this.font.advancesForGlyphs(p),CA=[];for(let _A=0;_A>8;let q=0;this.font.post.isFixedPitch&&(q|=1),1<=p&&p<=7&&(q|=2),q|=4,10===p&&(q|=8),this.font.head.macStyle.italic&&(q|=64);const _A=[1,2,3,4,5,6].map($=>String.fromCharCode((this.id.charCodeAt($)||73)+17)).join("")+"+"+this.font.postscriptName?.replaceAll(" ","_"),ee=this.font.bbox,he=this.document.ref({Type:"FontDescriptor",FontName:_A,Flags:q,FontBBox:[ee.minX*this.scale,ee.minY*this.scale,ee.maxX*this.scale,ee.maxY*this.scale],ItalicAngle:this.font.italicAngle,Ascent:this.ascender,Descent:this.descender,CapHeight:(this.font.capHeight||this.font.ascent)*this.scale,XHeight:(this.font.xHeight||0)*this.scale,StemV:0});if(c?he.data.FontFile3=y:he.data.FontFile2=y,this.document.subset&&1===this.document.subset){const $=this.widths.length-1,s=I.alloc(Math.ceil(($+1)/8),0);for(let F=0;F<=$;F++)null!=this.widths[F]&&(s[Math.floor(F/8)]|=128>>F%8);const d=this.document.ref();d.write(s),d.end(),he.data.CIDSet=d}he.end();const Ie={Type:"Font",Subtype:"CIDFontType0",BaseFont:_A,CIDSystemInfo:{Registry:new String("Adobe"),Ordering:new String("Identity"),Supplement:0},FontDescriptor:he,W:[0,this.widths]};c||(Ie.Subtype="CIDFontType2",Ie.CIDToGIDMap="Identity");const xe=this.document.ref(Ie);return xe.end(),this.dictionary.data={Type:"Font",Subtype:"Type0",BaseFont:_A,Encoding:"Identity-H",DescendantFonts:[xe],ToUnicode:this.toUnicodeCmap()},this.dictionary.end()}toUnicodeCmap(){const c=this.document.ref(),y=[];for(let _A of this.unicode){const ee=[];for(let he of _A)he>65535&&(he-=65536,ee.push(pt(he>>>10&1023|55296)),he=56320|1023&he),ee.push(pt(he));y.push(`<${ee.join(" ")}>`)}const q=Math.ceil(y.length/256),CA=[];for(let _A=0;_A <${pt(he-1)}> [${y.slice(ee,he).join(" ")}]`)}return c.end(`/CIDInit /ProcSet findresource begin\n12 dict begin\nbegincmap\n/CIDSystemInfo <<\n /Registry (Adobe)\n /Ordering (UCS)\n /Supplement 0\n>> def\n/CMapName /Adobe-Identity-UCS def\n/CMapType 2 def\n1 begincodespacerange\n<0000>\nendcodespacerange\n${CA.length} beginbfrange\n${CA.join("\n")}\nendbfrange\nendcmap\nCMapName currentdict /CMap defineresource pop\nend\nend`),c}}class ut{static open(c,y,p,q){let CA;if("string"==typeof y){if(Bt.isStandardFont(y))return new Bt(c,y,q);y=P.readFileSync(y)}if(y instanceof Uint8Array?CA=(0,w.create)(y,p):y instanceof ArrayBuffer&&(CA=(0,w.create)(new Uint8Array(y),p)),null==CA)throw new Error("Not a supported font format or standard PDF font.");return new ot(c,CA,q)}}var Wt={initFonts(h,c,y){void 0===h&&(h="Helvetica"),void 0===c&&(c=null),void 0===y&&(y=12),this._fontFamilies={},this._fontCount=0,this._fontSource=h,this._fontFamily=c,this._fontSize=y,this._font=null,this._remSize=y,this._registeredFonts={},h&&this.font(h,c)},font(h,c,y){let p,q;if("number"==typeof c&&(y=c,c=null),"string"==typeof h&&this._registeredFonts[h]){p=h;var CA=this._registeredFonts[h];h=CA.src,c=CA.family}else p=c||h,"string"!=typeof p&&(p=null);if(this._fontSource=h,this._fontFamily=c,null!=y&&this.fontSize(y),q=this._fontFamilies[p])return this._font=q,this;const _A="F"+ ++this._fontCount;return this._font=ut.open(this,h,c,_A),(q=this._fontFamilies[this._font.name])&&((h,c)=>!(h.font._tables?.head?.checkSumAdjustment!==c.font._tables?.head?.checkSumAdjustment||JSON.stringify(h.font._tables?.name?.records)!==JSON.stringify(c.font._tables?.name?.records)))(this._font,q)?(this._font=q,this):(p&&(this._fontFamilies[p]=this._font),this._font.name&&!this._fontFamilies[this._font.name]&&(this._fontFamilies[this._font.name]=this._font),!p&&(!this._font.name||this._fontFamilies[this._font.name]!==this._font)&&(this._fontFamilies[this._font.id]=this._font),this)},fontSize(h){return this._fontSize=this.sizeToPoint(h),this},currentLineHeight(h){return this._font.lineHeight(this._fontSize,h)},registerFont(h,c,y){return this._registeredFonts[h]={src:c,family:y},this},sizeToPoint(h,c,y,p){if(void 0===c&&(c=0),void 0===y&&(y=this.page),void 0===p&&(p=void 0),p||(p=this._fontSize),"number"!=typeof c&&(c=this.sizeToPoint(c)),void 0===h)return c;if("number"==typeof h)return h;if("boolean"==typeof h)return Number(h);const q=String(h).match(/((\d+)?(\.\d+)?)(em|in|px|cm|mm|pc|ex|ch|rem|vw|vh|vmin|vmax|%|pt)?/);if(!q)throw new Error(`Unsupported size '${h}'`);let CA;switch(q[4]){case"em":CA=this._fontSize;break;case"in":CA=72;break;case"px":CA=.75;break;case"cm":CA=72*fA;break;case"mm":CA=.1*fA*72;break;case"pc":CA=12;break;case"ex":CA=this.currentLineHeight();break;case"ch":CA=this.widthOfString("0");break;case"rem":CA=this._remSize;break;case"vw":CA=y.width/100;break;case"vh":CA=y.height/100;break;case"vmin":CA=Math.min(y.width,y.height)/100;break;case"vmax":CA=Math.max(y.width,y.height)/100;break;case"%":CA=p/100;break;default:CA=1}return CA*Number(q[1])}};class Bn{constructor(c,y){this._listeners=Object.create(null),this.document=c,this.horizontalScaling=y.horizontalScaling||100,this.indent=(y.indent||0)*this.horizontalScaling/100,this.indentAllLines=y.indentAllLines||!1,this.characterSpacing=(y.characterSpacing||0)*this.horizontalScaling/100,this.wordSpacing=(0===y.wordSpacing)*this.horizontalScaling/100,this.columns=y.columns||1,this.columnGap=(null!=y.columnGap?y.columnGap:18)*this.horizontalScaling/100,this.lineWidth=(y.width*this.horizontalScaling/100-this.columnGap*(this.columns-1))/this.columns,this.spaceLeft=this.lineWidth,this.startX=this.document.x,this.startY=this.document.y,this.column=1,this.ellipsis=y.ellipsis,this.continuedX=0,this.features=y.features,null!=y.height?(this.height=y.height,this.maxY=VA(this.startY+y.height)):this.maxY=VA(this.document.page.maxY()),this.on("firstLine",p=>{const q=this.continuedX||this.indent;this.document.x+=q,this.lineWidth-=q,!p.indentAllLines&&this.once("line",()=>{this.document.x-=q,this.lineWidth+=q,p.continued&&!this.continuedX&&(this.continuedX=this.indent),p.continued||(this.continuedX=0)})}),this.on("lastLine",p=>{const q=p.align;"justify"===q&&(p.align="left"),this.lastLine=!0,this.once("line",()=>(this.document.y+=p.paragraphGap||0,p.align=q,this.lastLine=!1))})}on(c,y){(this._listeners[c]||(this._listeners[c]=[])).push(y)}once(c,y){var p=this;const q=function(){const CA=p._listeners[c];CA.splice(CA.indexOf(q),1),y(...arguments)};this.on(c,q)}emit(c){const y=this._listeners[c];if(y){for(var p=arguments.length,q=new Array(p>1?p-1:0),CA=1;CAthis.lineWidth+this.continuedX){let s=CA;const d={};for(;xe.length;){var he,Ie;$>this.spaceLeft?(he=Math.ceil(this.spaceLeft/($/xe.length)),$=this.wordWidth(xe.slice(0,he)),Ie=$<=this.spaceLeft&&hethis.spaceLeft&&he>0;for(;F||Ie;)F?($=this.wordWidth(xe.slice(0,--he)),F=$>this.spaceLeft&&he>0):($=this.wordWidth(xe.slice(0,++he)),F=$>this.spaceLeft&&he>0,Ie=$<=this.spaceLeft&&hethis.maxY||q>this.maxY)&&this.nextSection();let CA="",_A=0,ee=0,he=0,Ie=p.y;const xe=()=>(y.textWidth=_A+this.wordSpacing*(ee-1),y.wordCount=ee,y.lineWidth=this.lineWidth,Ie=p.y,this.emit("line",CA,y,this),he++);this.emit("sectionStart",y,this),this.eachWord(c,($,s,d,F)=>{if((null==F||F.required)&&(this.emit("firstLine",y,this),this.spaceLeft=this.lineWidth),this.canFit($,s)&&(CA+=$,_A+=s,ee++),d.required||!this.canFit($,s)){const W=p.currentLineHeight(!0);if(null!=this.height&&this.ellipsis&&VA(p.y+2*W)>this.maxY&&this.column>=this.columns){for(!0===this.ellipsis&&(this.ellipsis="\u2026"),CA=CA.replace(/\s+$/,""),_A=this.wordWidth(CA+this.ellipsis);CA&&_A>this.lineWidth;)CA=CA.slice(0,-1).replace(/\s+$/,""),_A=this.wordWidth(CA+this.ellipsis);_A<=this.lineWidth&&(CA+=this.ellipsis),_A=this.wordWidth(CA)}if(d.required&&(s>this.spaceLeft&&(xe(),CA=$,_A=s,ee=1),this.emit("lastLine",y,this)),"\xad"==CA[CA.length-1]&&(CA=CA.slice(0,-1)+"-",this.spaceLeft-=this.wordWidth("-")),xe(),VA(p.y+W)>this.maxY){if(this.emit("sectionEnd",y,this),!this.nextSection())return ee=0,CA="",!1;this.emit("sectionStart",y,this)}return d.required?(this.spaceLeft=this.lineWidth,CA="",_A=0,ee=0):(this.spaceLeft=this.lineWidth-s,CA=$,_A=s,ee=1)}return this.spaceLeft-=s}),ee>0&&(this.emit("lastLine",y,this),xe()),this.emit("sectionEnd",y,this),!0===y.continued?(he>1&&(this.continuedX=0),this.continuedX+=y.textWidth||0,p.y=Ie):p.x=this.startX}nextSection(c){if(++this.column>this.columns){if(null!=this.height)return!1;if(this.document.continueOnNewPage(),this.column=1,this.startY=this.document.page.margins.top,this.maxY=this.document.page.maxY(),this.indentAllLines){const y=this.continuedX||this.indent;this.document.x+=y,this.lineWidth-=y}else this.document.x=this.startX;this.document._fillColor&&this.document.fillColor(...this.document._fillColor),this.emit("pageBreak",c,this)}else this.document.x+=this.lineWidth+this.columnGap,this.document.y=this.startY,this.emit("columnBreak",c,this);return!0}}const In=pA.number;var Cn={initText(){this._line=this._line.bind(this),this.x=0,this.y=0,this._lineGap=0},lineGap(h){return this._lineGap=h,this},moveDown(h){return null==h&&(h=1),this.y+=this.currentLineHeight(!0)*h+this._lineGap,this},moveUp(h){return null==h&&(h=1),this.y-=this.currentLineHeight(!0)*h+this._lineGap,this},_text(h,c,y,p,q){h=null==h?"":`${h}`,(p=this._initOptions(c,y,p)).wordSpacing&&(h=h.replace(/\s{2,}/g," "));const CA=()=>{p.structParent&&p.structParent.add(this.struct(p.structType||"P",[this.markStructureContent(p.structType||"P")]))};if(0!==p.rotation&&(this.save(),this.rotate(-p.rotation,{origin:[this.x,this.y]})),p.width){let _A=this._wrapper;_A||(_A=new Bn(this,p),_A.on("line",q),_A.on("firstLine",CA)),this._wrapper=p.continued?_A:null,this._textOptions=p.continued?p:null,_A.wrap(h,p)}else for(let _A of h.split("\n"))CA(),q(_A,p);return 0!==p.rotation&&this.restore(),this},text(h,c,y,p){return this._text(h,c,y,p,this._line)},widthOfString(h,c){void 0===c&&(c={});const y=c.horizontalScaling||100;return(this._font.widthOfString(h,this._fontSize,c.features)+(c.characterSpacing||0)*(h.length-1))*y/100},boundsOfString(h,c,y,p){p=this._initOptions(c,y,p),c=this.x,y=this.y;const q=p.lineGap??this._lineGap??0,CA=this.currentLineHeight(!0)+q;let _A=0;if(h=String(h??""),p.wordSpacing&&(h=h.replace(/\s{2,}/g," ")),p.width){let Me=new Bn(this,p);Me.on("line",(Qe,me)=>{if(this.y+=CA,(Qe=Qe.replace(/\n/g,"")).length){let Ye=me.wordSpacing??0;const Ue=me.characterSpacing??0;if(me.width&&"justify"===me.align){const De=Qe.trim().split(/\s+/),Le=this.widthOfString(Qe.replace(/\s+/g,""),me),Se=this.widthOfString(" ")+Ue;Ye=Math.max(0,(me.lineWidth-Le)/Math.max(1,De.length-1)-Se)}_A=Math.max(_A,me.textWidth+Ye*(me.wordCount-1)+Ue*(Qe.length-1))}}),Me.wrap(h,p)}else for(let Me of h.split("\n")){const Qe=this.widthOfString(Me,p);this.y+=CA,_A=Math.max(_A,Qe)}let ee=this.y-y;if(p.height&&(ee=Math.min(ee,p.height)),this.x=c,this.y=y,0===p.rotation)return{x:c,y,width:_A,height:ee};if(90===p.rotation)return{x:c,y:y-_A,width:ee,height:_A};if(180===p.rotation)return{x:c-_A,y:y-ee,width:_A,height:ee};if(270===p.rotation)return{x:c-ee,y,width:ee,height:_A};const he=Ee(p.rotation),Ie=HA(p.rotation),xe=c,$=y,s=c+_A*he,d=y-_A*Ie,F=c+_A*he+ee*Ie,W=y-_A*Ie+ee*he,Z=c+ee*Ie,EA=y+ee*he,PA=Math.min(xe,s,F,Z),FA=Math.max(xe,s,F,Z),te=Math.min($,d,W,EA);return{x:PA,y:te,width:FA-PA,height:Math.max($,d,W,EA)-te}},heightOfString(h,c){const y=this.x,p=this.y;(c=this._initOptions(c)).height=1/0;const q=c.lineGap||this._lineGap||0;this._text(h,this.x,this.y,c,()=>{this.y+=this.currentLineHeight(!0)+q});const CA=this.y-p;return this.x=y,this.y=p,CA},list(h,c,y,p){const q=(p=this._initOptions(c,y,p)).listType||"bullet",CA=Math.round(this._font.ascender/1e3*this._fontSize),_A=CA/2,ee=p.bulletRadius||CA/3,he=p.textIndent||("bullet"===q?5*ee:2*CA),Ie=p.bulletIndent||("bullet"===q?8*ee:2*CA);let xe=1;const $=[],s=[],d=[];var F=function(Z){let EA=1;for(let PA=0;PA{let FA,te,ge,Me,me;if(p.structParent)if(p.structTypes){var Qe=p.structTypes;te=Qe[0],ge=Qe[1],Me=Qe[2]}else te="LI",ge="Lbl",Me="LBody";if(te?(FA=this.struct(te),p.structParent.add(FA)):p.structParent&&(FA=p.structParent),(me=s[EA++])!==xe){const Ue=Ie*(me-xe);this.x+=Ue,PA.lineWidth-=Ue,xe=me}switch(FA&&(ge||Me)&&FA.add(this.struct(ge||Me,[this.markStructureContent(ge||Me)])),q){case"bullet":this.circle(this.x-he+ee,this.y+_A,ee),this.fill();break;case"numbered":case"lettered":var Ye=function Dn(h,c){if("numbered"===c)return`${h}.`;var y=String.fromCharCode((h-1)%26+65),p=Math.floor((h-1)/26+1);return`${Array(p+1).join(y)}.`}(d[EA-1],q);this._fragment(Ye,this.x-he,this.y,p)}FA&&ge&&Me&&FA.add(this.struct(Me,[this.markStructureContent(Me)])),FA&&FA!==p.structParent&&FA.end()}),PA.on("sectionStart",()=>{const FA=he+Ie*(xe-1);this.x+=FA,PA.lineWidth-=FA}),PA.on("sectionEnd",()=>{const FA=he+Ie*(xe-1);this.x-=FA,PA.lineWidth+=FA}),PA.wrap(Z,p)};for(let Z=0;Z<$.length;Z++)W.call(this,$[Z],Z);return this},_initOptions(h,c,y){void 0===h&&(h={}),void 0===y&&(y={}),h&&"object"==typeof h&&(y=h,h=null);const p=Object.assign({},y);if(this._textOptions)for(let q in this._textOptions)"continued"!==q&&void 0===p[q]&&(p[q]=this._textOptions[q]);return null!=h&&(this.x=h),null!=c&&(this.y=c),!1!==p.lineBreak&&(null==p.width&&(p.width=this.page.width-this.x-this.page.margins.right),p.width=Math.max(p.width,0)),p.columns||(p.columns=0),null==p.columnGap&&(p.columnGap=18),p.rotation=Number(p.rotation??0)%360,p.rotation<0&&(p.rotation+=360),p},_line(h,c,y){if(void 0===c&&(c={}),this._fragment(h,this.x,this.y,c),y){const p=c.lineGap||this._lineGap||0;this.y+=this.currentLineHeight(!0)+p}else this.x+=this.widthOfString(h,c)},_fragment(h,c,y,p){let q,CA,_A,ee,he,Ie;if(0===(h=`${h}`.replace(/\n/g,"")).length)return;let $=p.wordSpacing||0;const s=p.characterSpacing||0,d=p.horizontalScaling||100;if(p.width)switch(p.align||"left"){case"right":he=this.widthOfString(h.replace(/\s+$/,""),p),c+=p.lineWidth-he;break;case"center":c+=p.lineWidth/2-p.textWidth/2;break;case"justify":Ie=h.trim().split(/\s+/),he=this.widthOfString(h.replace(/\s+/g,""),p);var F=this.widthOfString(" ")+s;$=Math.max(0,(p.lineWidth-he)/Math.max(1,Ie.length-1)-F)}if("number"==typeof p.baseline)q=-p.baseline;else{switch(p.baseline){case"svg-middle":q=.5*this._font.xHeight;break;case"middle":case"svg-central":q=.5*(this._font.descender+this._font.ascender);break;case"bottom":case"ideographic":q=this._font.descender;break;case"alphabetic":q=0;break;case"mathematical":q=.5*this._font.ascender;break;case"hanging":q=.8*this._font.ascender;break;default:q=this._font.ascender}q=q/1e3*this._fontSize}const W=p.textWidth+$*(p.wordCount-1)+s*(h.length-1);if(null!=p.link){const me={};this._currentStructureElement&&"Link"===this._currentStructureElement.dictionary.data.S&&(me.structParent=this._currentStructureElement),this.link(c,y,W,this.currentLineHeight(),p.link,me)}if(null!=p.goTo&&this.goTo(c,y,W,this.currentLineHeight(),p.goTo),null!=p.destination&&this.addNamedDestination(p.destination,"XYZ",c,y,null),p.underline){this.save(),p.stroke||this.strokeColor(...this._fillColor||[]);const me=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(me);let Ye=y+this.currentLineHeight()-me;this.moveTo(c,Ye),this.lineTo(c+W,Ye),this.stroke(),this.restore()}if(p.strike){this.save(),p.stroke||this.strokeColor(...this._fillColor||[]);const me=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(me);let Ye=y+this.currentLineHeight()/2;this.moveTo(c,Ye),this.lineTo(c+W,Ye),this.stroke(),this.restore()}if(this.save(),p.oblique){let me;me="number"==typeof p.oblique?-Math.tan(p.oblique*Math.PI/180):-.25,this.transform(1,0,0,1,c,y),this.transform(1,0,me,1,-me*q,0),this.transform(1,0,0,1,-c,-y)}this.transform(1,0,0,-1,0,this.page.height),y=this.page.height-y-q,null==this.page.fonts[this._font.id]&&(this.page.fonts[this._font.id]=this._font.ref()),this.addContent("BT"),this.addContent(`1 0 0 1 ${In(c)} ${In(y)} Tm`),this.addContent(`/${this._font.id} ${In(this._fontSize)} Tf`);const Z=p.fill&&p.stroke?2:p.stroke?1:0;if(Z&&this.addContent(`${Z} Tr`),s&&this.addContent(`${In(s)} Tc`),100!==d&&this.addContent(`${d} Tz`),$){Ie=h.trim().split(/\s+/),$+=this.widthOfString(" ")+s,$*=1e3/this._fontSize,CA=[],ee=[];for(let me of Ie){const Ye=this._font.encode(me,p.features),De=Ye[1];CA=CA.concat(Ye[0]),ee=ee.concat(De);const Le={},Se=ee[ee.length-1];for(let it in Se)Le[it]=Se[it];Le.xAdvance+=$,ee[ee.length-1]=Le}}else{var EA=this._font.encode(h,p.features);CA=EA[0],ee=EA[1]}const PA=this._fontSize/1e3,FA=[];let te=0,ge=!1;const Me=me=>{if(te ${In(-(ee[me-1].xAdvance-ee[me-1].advanceWidth))}`)}te=me},Qe=me=>{Me(me),FA.length>0&&(this.addContent(`[${FA.join(" ")}] TJ`),FA.length=0)};for(_A=0;_A{let y="";for(let p=0;p>>0},vn=function(h,c){return void 0===c&&(c=0),(h[c+1]<<8|h[c])>>>0},Un=function(h,c){return void 0===c&&(c=0),16777216*h[c]+(h[c+1]<<16|h[c+2]<<8|h[c+3])>>>0},Ln=function(h,c){return void 0===c&&(c=0),(h[c]|h[c+1]<<8|h[c+2]<<16)+16777216*h[c+3]>>>0},On=[65472,65473,65474,65475,65477,65478,65479,65480,65481,65482,65483,65484,65485,65486,65487],Ei={1:"DeviceGray",3:"DeviceRGB",4:"DeviceCMYK"};class wi{constructor(c,y){let p;if(this.data=c,this.label=y,65496!==this.data.readUInt16BE(0))throw"SOI not found in JPEG";this.orientation=(h=>{if(!h||h.length<20)return null;let c=2;for(;c=h.length-4)return null;const y=St(h,c);if(c+=2,65498===y)return null;if(y>=65488&&y<=65497||65281===y)continue;if(c+2>h.length)return null;const p=St(h,c);if(65505===y&&c+8<=h.length&&"Exif\0\0"===Nn(h.subarray(c+2,c+8))){const CA=c+8;if(CA+8>h.length)return null;const _A=Nn(h.subarray(CA,CA+2)),ee="II"===_A;if(!ee&&"MM"!==_A)return null;const he=ee?s=>vn(h,s):s=>St(h,s),Ie=ee?s=>Ln(h,s):s=>Un(h,s);if(42!==he(CA+2))return null;const xe=CA+Ie(CA+4);if(xe+2>h.length)return null;const $=he(xe);for(let s=0;s<$;s++){const d=xe+2+12*s;if(d+12>h.length)return null;if(274===he(d)){const F=he(d+8);return F>=1&&F<=8?F:null}}return null}c+=p}return null})(this.data)||1;let q=2;for(;q=this.data.length||(p=this.data.readUInt16BE(q),q+=2,On.includes(p)))break;q+=this.data.readUInt16BE(q)}if(!On.includes(p))throw"Invalid JPEG.";q+=2,this.bits=this.data[q++],this.height=this.data.readUInt16BE(q),q+=2,this.width=this.data.readUInt16BE(q),q+=2,this.colorSpace=Ei[this.data[q]],this.obj=null}embed(c){if(!this.obj)return this.obj=c.ref({Type:"XObject",Subtype:"Image",BitsPerComponent:this.bits,Width:this.width,Height:this.height,ColorSpace:this.colorSpace,Filter:"DCTDecode"}),"DeviceCMYK"===this.colorSpace&&(this.obj.data.Decode=[1,0,1,0,1,0,1,0]),this.obj.end(this.data),this.data=null}}class Ci{constructor(c,y){this.label=y,this.image=new AA.default(c),this.width=this.image.width,this.height=this.image.height,this.imgData=this.image.imgData,this.obj=null}embed(c){if(this.document=c,this.obj)return;const y=this.image,q=this.width,CA=y.hasAlphaChannel,_A=1===y.interlaceMethod,ee=this.obj=c.ref({Type:"XObject",Subtype:"Image",BitsPerComponent:CA?8:y.bits,Width:q,Height:this.height,Filter:"FlateDecode"});if(!CA){const he=c.ref({Predictor:_A?1:15,Colors:y.colors,BitsPerComponent:y.bits,Columns:q});ee.data.DecodeParms=he,he.end()}if(0===y.palette.length)ee.data.ColorSpace=y.colorSpace;else{const he=c.ref();he.end(I.from(y.palette)),ee.data.ColorSpace=["Indexed","DeviceRGB",y.palette.length/3-1,he]}if(null!=y.transparency.grayscale){const he=y.transparency.grayscale;ee.data.Mask=[he,he]}else if(y.transparency.rgb){const he=y.transparency.rgb,Ie=[];for(let xe of he)Ie.push(xe,xe);ee.data.Mask=Ie}else{if(y.transparency.indexed)return this.loadIndexedAlphaChannel();if(CA)return this.splitAlphaChannel()}if(_A)return this.decodeData();this.finalize()}finalize(){if(this.alphaChannel){const c=this.document.ref({Type:"XObject",Subtype:"Image",Height:this.height,Width:this.width,BitsPerComponent:8,Filter:"FlateDecode",ColorSpace:"DeviceGray",Decode:[0,1]});c.end(this.alphaChannel),this.obj.data.SMask=c}return this.obj.end(this.imgData),this.image=null,this.imgData=null}splitAlphaChannel(){return this.image.decodePixels(c=>{let y,p;const q=this.image.colors,CA=this.width*this.height,_A=I.alloc(CA*q),ee=I.alloc(CA);let he=p=y=0;const Ie=c.length,xe=16===this.image.bits?1:0;for(;he{const q=I.alloc(this.width*this.height);let CA=0;for(let _A=0,ee=p.length;_A{this.imgData=K.default.deflateSync(c),this.finalize()})}}class di{static open(c,y){let p;if(I.isBuffer(c))p=c;else if(c instanceof ArrayBuffer)p=I.from(new Uint8Array(c));else{const q=/^data:.+?;base64,(.*)$/.exec(c);if(q)p=I.from(q[1],"base64");else if(p=P.readFileSync(c),!p)return}if(255===p[0]&&216===p[1])return new wi(p,y);if(137===p[0]&&80===p[1]&&78===p[2]&&71===p[3])return new Ci(p,y);throw new Error("Unknown image format.")}}var ri={initImages(){this._imageRegistry={},this._imageCount=0},image(h,c,y,p){let q,CA,_A,ee,he,Ie,xe,$,s;void 0===p&&(p={}),"object"==typeof c&&(p=c,c=null);const d=p.ignoreOrientation||!1!==p.ignoreOrientation&&this.options.ignoreOrientation,F="number"!=typeof y;c=null!=(Ie=c??p.x)?Ie:this.x,y=null!=(xe=y??p.y)?xe:this.y,"string"==typeof h&&(ee=this._imageRegistry[h]),ee||(ee=h.width&&h.height?h:this.openImage(h)),ee.obj||ee.embed(this),null==this.page.xobjects[ee.label]&&(this.page.xobjects[ee.label]=ee.obj);let Z=ee.width,EA=ee.height;if(!d&&ee.orientation>4){var PA=[EA,Z];Z=PA[0],EA=PA[1]}let FA=p.width||Z,te=p.height||EA;if(p.width&&!p.height){const Le=FA/Z;FA=Z*Le,te=EA*Le}else if(p.height&&!p.width){const Le=te/EA;FA=Z*Le,te=EA*Le}else if(p.scale)FA=Z*p.scale,te=EA*p.scale;else if(p.fit){var ge=p.fit;_A=ge[0],q=ge[1],CA=_A/q,he=Z/EA,he>CA?(FA=_A,te=_A/he):(te=q,FA=q*he)}else if(p.cover){var Me=p.cover;_A=Me[0],q=Me[1],CA=_A/q,he=Z/EA,he>CA?(te=q,FA=q*he):(FA=_A,te=_A/he)}(p.fit||p.cover)&&("center"===p.align?c=c+_A/2-FA/2:"right"===p.align&&(c=c+_A-FA),"center"===p.valign?y=y+q/2-te/2:"bottom"===p.valign&&(y=y+q-te));let Qe=0,me=c,Ye=y,Ue=te,De=FA;if(d)Ue=-te,Ye+=te;else switch(ee.orientation){default:case 1:Ue=-te,Ye+=te;break;case 2:De=-FA,Ue=-te,me+=FA,Ye+=te;break;case 3:$=c,s=y,Ue=-te,me-=FA,Qe=180;break;case 4:break;case 5:$=c,s=y,De=te,Ue=FA,Ye-=Ue,Qe=90;break;case 6:$=c,s=y,De=te,Ue=-FA,Qe=90;break;case 7:$=c,s=y,Ue=-FA,De=-te,me+=te,Qe=90;break;case 8:$=c,s=y,De=te,Ue=-FA,me-=te,Ye+=FA,Qe=-90}return null!=p.link&&this.link(c,y,FA,te,p.link),null!=p.goTo&&this.goTo(c,y,FA,te,p.goTo),null!=p.destination&&this.addNamedDestination(p.destination,"XYZ",c,y,null),F&&(this.y+=te),this.save(),null!=p.opacity&&this._doOpacity(p.opacity,null),Qe&&this.rotate(Qe,{origin:[$,s]}),this.transform(De,0,0,Ue,me,Ye),this.addContent(`/${ee.label} Do`),this.restore(),this},openImage(h){let c;return"string"==typeof h&&(c=this._imageRegistry[h]),c||(c=di.open(h,"I"+ ++this._imageCount),"string"==typeof h&&(this._imageRegistry[h]=c)),c}};class xn{constructor(c){this.annotationRef=c}}var ai={annotate(h,c,y,p,q){q.Type="Annot",q.Rect=this._convertRect(h,c,y,p),q.Border=[0,0,0],"Link"===q.Subtype&&typeof q.F>"u"&&(q.F=4),"Link"!==q.Subtype&&null==q.C&&(q.C=this._normalizeColor(q.color||[0,0,0])),delete q.color,"string"==typeof q.Dest&&(q.Dest=new String(q.Dest));const CA=q.structParent;delete q.structParent;for(let ee in q){const he=q[ee];q[ee[0].toUpperCase()+ee.slice(1)]=he}const _A=this.ref(q);if(this.page.annotations.push(_A),CA&&"function"==typeof CA.add){const ee=new xn(_A);CA.add(ee)}return _A.end(),this},note(h,c,y,p,q,CA){return void 0===CA&&(CA={}),CA.Subtype="Text",CA.Contents=new String(q),null==CA.Name&&(CA.Name="Comment"),null==CA.color&&(CA.color=[243,223,92]),this.annotate(h,c,y,p,CA)},goTo(h,c,y,p,q,CA){return void 0===CA&&(CA={}),CA.Subtype="Link",CA.A=this.ref({S:"GoTo",D:new String(q)}),CA.A.end(),this.annotate(h,c,y,p,CA)},link(h,c,y,p,q,CA){if(void 0===CA&&(CA={}),CA.Subtype="Link","number"==typeof q){const _A=this._root.data.Pages.data;if(!(q>=0&&q<_A.Kids.length))throw new Error(`The document has no page ${q}`);CA.A=this.ref({S:"GoTo",D:[_A.Kids[q],"XYZ",null,null,null]}),CA.A.end()}else CA.A=this.ref({S:"URI",URI:new String(q)}),CA.A.end();return CA.structParent&&!CA.Contents&&(CA.Contents=new String("")),this.annotate(h,c,y,p,CA)},_markup(h,c,y,p,q){void 0===q&&(q={});const CA=this._convertRect(h,c,y,p),_A=CA[0],ee=CA[1],he=CA[2],Ie=CA[3];return q.QuadPoints=[_A,Ie,he,Ie,_A,ee,he,ee],q.Contents=new String,this.annotate(h,c,y,p,q)},highlight(h,c,y,p,q){return void 0===q&&(q={}),q.Subtype="Highlight",null==q.color&&(q.color=[241,238,148]),this._markup(h,c,y,p,q)},underline(h,c,y,p,q){return void 0===q&&(q={}),q.Subtype="Underline",this._markup(h,c,y,p,q)},strike(h,c,y,p,q){return void 0===q&&(q={}),q.Subtype="StrikeOut",this._markup(h,c,y,p,q)},lineAnnotation(h,c,y,p,q){return void 0===q&&(q={}),q.Subtype="Line",q.Contents=new String,q.L=[h,this.page.height-c,y,this.page.height-p],this.annotate(h,c,y,p,q)},rectAnnotation(h,c,y,p,q){return void 0===q&&(q={}),q.Subtype="Square",q.Contents=new String,this.annotate(h,c,y,p,q)},ellipseAnnotation(h,c,y,p,q){return void 0===q&&(q={}),q.Subtype="Circle",q.Contents=new String,this.annotate(h,c,y,p,q)},textAnnotation(h,c,y,p,q,CA){return void 0===CA&&(CA={}),CA.Subtype="FreeText",CA.Contents=new String(q),CA.DA=new String,this.annotate(h,c,y,p,CA)},fileAnnotation(h,c,y,p,q,CA){void 0===q&&(q={}),void 0===CA&&(CA={});const _A=this.file(q.src,Object.assign({hidden:!0},q));return CA.Subtype="FileAttachment",CA.FS=_A,CA.Contents?CA.Contents=new String(CA.Contents):_A.data.Desc&&(CA.Contents=_A.data.Desc),this.annotate(h,c,y,p,CA)},_convertRect(h,c,y,p){let q=c,CA=h+y;const _A=this._ctm,ee=_A[0],he=_A[1],Ie=_A[2],xe=_A[3],$=_A[4],s=_A[5];return CA=ee*CA+Ie*q+$,q=he*CA+xe*q+s,[h=ee*h+Ie*(c+=p)+$,c=he*h+xe*c+s,CA,q]}};const Ki={top:0,left:0,zoom:0,fit:!0,pageNumber:null,expanded:!1};class Qi{constructor(c,y,p,q,CA){void 0===CA&&(CA=Ki),this.document=c,this.options=CA,this.outlineData={},null!==q&&(this.outlineData.Dest=CA.fit?[q,"Fit"]:[q,"XYZ",q.data.MediaBox[2]-(CA.left||0),q.data.MediaBox[3]-(CA.top||0),CA.zoom||0]),null!==y&&(this.outlineData.Parent=y),null!==p&&(this.outlineData.Title=new String(p)),this.dictionary=this.document.ref(this.outlineData),this.children=[]}addItem(c,y){void 0===y&&(y=Ki);const CA=new Qi(this.document,this.dictionary,c,null!=y.pageNumber?this.document._root.data.Pages.data.Kids[y.pageNumber]:this.document.page.dictionary,y);return this.children.push(CA),CA}endOutline(){if(this.children.length>0){this.options.expanded&&(this.outlineData.Count=this.children.length);const y=this.children[this.children.length-1];this.outlineData.First=this.children[0].dictionary,this.outlineData.Last=y.dictionary;for(let p=0,q=this.children.length;p0&&(CA.outlineData.Prev=this.children[p-1].dictionary),p0)return this._root.data.Outlines=this.outline.dictionary,this._root.data.PageMode=this._root.data.PageMode||"UseOutlines"}};class mi{constructor(c,y){this.refs=[{pageRef:c,mcid:y}]}push(c){c.refs.forEach(y=>this.refs.push(y))}}class fn{constructor(c,y,p,q){void 0===p&&(p={}),void 0===q&&(q=null),this.document=c,this._attached=!1,this._ended=!1,this._flushed=!1,this.dictionary=c.ref({S:y});const CA=this.dictionary.data;(Array.isArray(p)||this._isValidChild(p))&&(q=p,p={}),p.title&&(CA.T=new String(p.title)),p.lang&&(CA.Lang=new String(p.lang)),p.alt&&(CA.Alt=new String(p.alt)),p.expanded&&(CA.E=new String(p.expanded)),p.actual&&(CA.ActualText=new String(p.actual));const _A=Array.isArray(p.bbox)&&4===p.bbox.length,ee="string"==typeof p.placement;if(_A||ee){const he={O:"Layout"};if(he.Placement=ee?p.placement:"Block",_A){const Ie=c.page.height;he.BBox=[p.bbox[0],Ie-p.bbox[3],p.bbox[2],Ie-p.bbox[1]]}CA.A=he}p.scope&&(CA.A={...CA.A||{},O:"Table",Scope:p.scope}),this._children=[],q&&(Array.isArray(q)||(q=[q]),q.forEach(he=>this.add(he)),this.end())}add(c){if(this._ended)throw new Error("Cannot add child to already-ended structure element");if(!this._isValidChild(c))throw new Error("Invalid structure element child");return c instanceof fn&&(c.setParent(this.dictionary),this._attached&&c.setAttached()),c instanceof mi&&this._addContentToParentTree(c),c instanceof xn&&this._addAnnotationToParentTree(c.annotationRef),"function"==typeof c&&this._attached&&(c=this._contentForClosure(c)),this._children.push(c),this}_addContentToParentTree(c){c.refs.forEach(y=>{let p=y.pageRef,q=y.mcid;this.document.getStructParentTree().get(p.data.StructParents)[q]=this.dictionary})}_addAnnotationToParentTree(c){const y=this.document.createStructParentTreeNextKey();c.data.StructParent=y,this.document.getStructParentTree().add(y,this.dictionary)}setParent(c){if(this.dictionary.data.P)throw new Error("Structure element added to more than one parent");this.dictionary.data.P=c,this._flush()}setAttached(){this._attached||(this._children.forEach((c,y)=>{c instanceof fn&&c.setAttached(),"function"==typeof c&&(this._children[y]=this._contentForClosure(c))}),this._attached=!0,this._flush())}end(){this._ended||(this._children.filter(c=>c instanceof fn).forEach(c=>c.end()),this._ended=!0,this._flush())}_isValidChild(c){return c instanceof fn||c instanceof mi||c instanceof xn||"function"==typeof c}_contentForClosure(c){const y=this.document.markStructureContent(this.dictionary.data.S),p=this.document._currentStructureElement;this.document._currentStructureElement=this;const q=this._ended;return this._ended=!1,c(),this._ended=q,this.document._currentStructureElement=p,this.document.endMarkedContent(),this._addContentToParentTree(y),y}_isFlushable(){return!(!this.dictionary.data.P||!this._ended)&&this._children.every(c=>"function"!=typeof c&&(!(c instanceof fn)||c._isFlushable()))}_flush(){this._flushed||!this._isFlushable()||(this.dictionary.data.K=[],this._children.forEach(c=>this._flushChild(c)),this.dictionary.end(),this._children=[],this.dictionary.data.K=null,this._flushed=!0)}_flushChild(c){c instanceof fn&&this.dictionary.data.K.push(c.dictionary),c instanceof mi&&c.refs.forEach(y=>{let p=y.pageRef,q=y.mcid;this.dictionary.data.Pg||(this.dictionary.data.Pg=p),this.dictionary.data.K.push(this.dictionary.data.Pg===p?q:{Type:"MCR",Pg:p,MCID:q})}),c instanceof xn&&this.dictionary.data.K.push({Type:"OBJR",Obj:c.annotationRef,Pg:this.document.page.dictionary})}}class ms extends QA{_compareKeys(c,y){return parseInt(c)-parseInt(y)}_keysName(){return"Nums"}_dataForKey(c){return parseInt(c)}}var Ms={initMarkings(h){this.structChildren=[],h.tagged&&(this.getMarkInfoDictionary().data.Marked=!0,this.getStructTreeRoot())},markContent(h,c){if(void 0===c&&(c=null),"Artifact"===h||c&&c.mcid){let p=0;for(this.page.markings.forEach(q=>{(p||q.structContent||"Artifact"===q.tag)&&p++});p--;)this.endMarkedContent()}if(!c)return this.page.markings.push({tag:h}),this.addContent(`/${h} BMC`),this;this.page.markings.push({tag:h,options:c});const y={};return typeof c.mcid<"u"&&(y.MCID=c.mcid),"Artifact"===h&&("string"==typeof c.type&&(y.Type=c.type),Array.isArray(c.bbox)&&(y.BBox=[c.bbox[0],this.page.height-c.bbox[3],c.bbox[2],this.page.height-c.bbox[1]]),Array.isArray(c.attached)&&c.attached.every(p=>"string"==typeof p)&&(y.Attached=c.attached)),"Span"===h&&(c.lang&&(y.Lang=new String(c.lang)),c.alt&&(y.Alt=new String(c.alt)),c.expanded&&(y.E=new String(c.expanded)),c.actual&&(y.ActualText=new String(c.actual))),this.addContent(`/${h} ${pA.convert(y)} BDC`),this},markStructureContent(h,c){void 0===c&&(c={});const y=this.getStructParentTree().get(this.page.structParentTreeKey),p=y.length;y.push(null),this.markContent(h,{...c,mcid:p});const q=new mi(this.page.dictionary,p);return this.page.markings.slice(-1)[0].structContent=q,q},endMarkedContent(){return this.page.markings.pop(),this.addContent("EMC"),this._textOptions&&(delete this._textOptions.link,delete this._textOptions.goTo,delete this._textOptions.destination,delete this._textOptions.underline,delete this._textOptions.strike),this},struct(h,c,y){return void 0===c&&(c={}),void 0===y&&(y=null),new fn(this,h,c,y)},addStructure(h){const c=this.getStructTreeRoot();return h.setParent(c),h.setAttached(),this.structChildren.push(h),c.data.K||(c.data.K=[]),c.data.K.push(h.dictionary),this},initPageMarkings(h){h.forEach(c=>{if(c.structContent){const y=c.structContent,p=this.markStructureContent(c.tag,c.options);y.push(p),this.page.markings.slice(-1)[0].structContent=y}else this.markContent(c.tag,c.options)})},endPageMarkings(h){const c=h.markings;return c.forEach(()=>h.write("EMC")),h.markings=[],c},getMarkInfoDictionary(){return this._root.data.MarkInfo||(this._root.data.MarkInfo=this.ref({})),this._root.data.MarkInfo},hasMarkInfoDictionary(){return!!this._root.data.MarkInfo},getStructTreeRoot(){return this._root.data.StructTreeRoot||(this._root.data.StructTreeRoot=this.ref({Type:"StructTreeRoot",ParentTree:new ms,ParentTreeNextKey:0})),this._root.data.StructTreeRoot},getStructParentTree(){return this.getStructTreeRoot().data.ParentTree},createStructParentTreeNextKey(){this.getMarkInfoDictionary();const h=this.getStructTreeRoot(),c=h.data.ParentTreeNextKey++;return h.data.ParentTree.add(c,[]),c},endMarkings(){const h=this._root.data.StructTreeRoot;h&&(h.end(),this.structChildren.forEach(c=>c.end())),this._root.data.MarkInfo&&this._root.data.MarkInfo.end()}};const Mi={readOnly:1,required:2,noExport:4,multiline:4096,password:8192,toggleToOffButton:16384,radioButton:32768,pushButton:65536,combo:131072,edit:262144,sort:524288,multiSelect:2097152,noSpell:4194304},pi={left:0,center:1,right:2},Zi={value:"V",defaultValue:"DV"},qi={zip:"0",zipPlus4:"1",zip4:"1",phone:"2",ssn:"3"},$i_number={nDec:0,sepComma:!1,negStyle:"MinusBlack",currency:"",currencyPrepend:!0},$i_percent={nDec:0,sepComma:!1};var ps={initForm(){if(!this._font)throw new Error("Must set a font before calling initForm method");this._acroform={fonts:{},defaultFont:this._font.name},this._acroform.fonts[this._font.id]=this._font.ref();let h={Fields:[],NeedAppearances:!0,DA:new String(`/${this._font.id} 0 Tf 0 g`),DR:{Font:{}}};h.DR.Font[this._font.id]=this._font.ref();const c=this.ref(h);return this._root.data.AcroForm=c,this},endAcroForm(){if(this._root.data.AcroForm){if(!Object.keys(this._acroform.fonts).length&&!this._acroform.defaultFont)throw new Error("No fonts specified for PDF form");let h=this._root.data.AcroForm.data.DR.Font;Object.keys(this._acroform.fonts).forEach(c=>{h[c]=this._acroform.fonts[c]}),this._root.data.AcroForm.data.Fields.forEach(c=>{this._endChild(c)}),this._root.data.AcroForm.end()}return this},_endChild(h){return Array.isArray(h.data.Kids)&&(h.data.Kids.forEach(c=>{this._endChild(c)}),h.end()),this},formField(h,c){void 0===c&&(c={});let y=this._fieldDict(h,null,c),p=this.ref(y);return this._addToParent(p),p},formAnnotation(h,c,y,p,q,CA,_A){void 0===_A&&(_A={});let ee=this._fieldDict(h,c,_A);return ee.Subtype="Widget",void 0===ee.F&&(ee.F=4),this.annotate(y,p,q,CA,ee),this._addToParent(this.page.annotations[this.page.annotations.length-1])},formText(h,c,y,p,q,CA){return void 0===CA&&(CA={}),this.formAnnotation(h,"text",c,y,p,q,CA)},formPushButton(h,c,y,p,q,CA){return void 0===CA&&(CA={}),this.formAnnotation(h,"pushButton",c,y,p,q,CA)},formCombo(h,c,y,p,q,CA){return void 0===CA&&(CA={}),this.formAnnotation(h,"combo",c,y,p,q,CA)},formList(h,c,y,p,q,CA){return void 0===CA&&(CA={}),this.formAnnotation(h,"list",c,y,p,q,CA)},formRadioButton(h,c,y,p,q,CA){return void 0===CA&&(CA={}),this.formAnnotation(h,"radioButton",c,y,p,q,CA)},formCheckbox(h,c,y,p,q,CA){return void 0===CA&&(CA={}),this.formAnnotation(h,"checkbox",c,y,p,q,CA)},_addToParent(h){let c=h.data.Parent;return c?(c.data.Kids||(c.data.Kids=[]),c.data.Kids.push(h)):this._root.data.AcroForm.data.Fields.push(h),this},_fieldDict(h,c,y){if(void 0===y&&(y={}),!this._acroform)throw new Error("Call document.initForm() method before adding form elements to document");let p=Object.assign({},y);return null!==c&&(p=this._resolveType(c,y)),p=this._resolveFlags(p),p=this._resolveJustify(p),p=this._resolveFont(p),p=this._resolveStrings(p),p=this._resolveColors(p),p=this._resolveFormat(p),p.T=new String(h),p.parent&&(p.Parent=p.parent,delete p.parent),p},_resolveType(h,c){if("text"===h)c.FT="Tx";else if("pushButton"===h)c.FT="Btn",c.pushButton=!0;else if("radioButton"===h)c.FT="Btn",c.radioButton=!0;else if("checkbox"===h)c.FT="Btn";else if("combo"===h)c.FT="Ch",c.combo=!0;else{if("list"!==h)throw new Error(`Invalid form annotation type '${h}'`);c.FT="Ch"}return c},_resolveFormat(h){const c=h.format;if(c&&c.type){let y,p,q="";if(void 0!==qi[c.type])y="AFSpecial_Keystroke",p="AFSpecial_Format",q=qi[c.type];else{let CA=c.type.charAt(0).toUpperCase()+c.type.slice(1);if(y=`AF${CA}_Keystroke`,p=`AF${CA}_Format`,"date"===c.type)y+="Ex",q=String(c.param);else if("time"===c.type)q=String(c.param);else if("number"===c.type){let _A=Object.assign({},$i_number,c);q=String([String(_A.nDec),_A.sepComma?"0":"1",'"'+_A.negStyle+'"',"null",'"'+_A.currency+'"',String(_A.currencyPrepend)].join(","))}else if("percent"===c.type){let _A=Object.assign({},$i_percent,c);q=String([String(_A.nDec),_A.sepComma?"0":"1"].join(","))}}h.AA=h.AA?h.AA:{},h.AA.K={S:"JavaScript",JS:new String(`${y}(${q});`)},h.AA.F={S:"JavaScript",JS:new String(`${p}(${q});`)}}return delete h.format,h},_resolveColors(h){let c=this._normalizeColor(h.backgroundColor);return c&&(h.MK||(h.MK={}),h.MK.BG=c),c=this._normalizeColor(h.borderColor),c&&(h.MK||(h.MK={}),h.MK.BC=c),delete h.backgroundColor,delete h.borderColor,h},_resolveFlags(h){let c=0;return Object.keys(h).forEach(y=>{Mi[y]&&(h[y]&&(c|=Mi[y]),delete h[y])}),0!==c&&(h.Ff=h.Ff?h.Ff:0,h.Ff|=c),h},_resolveJustify(h){let c=0;return void 0!==h.align&&("number"==typeof pi[h.align]&&(c=pi[h.align]),delete h.align),0!==c&&(h.Q=c),h},_resolveFont(h){if(null==this._acroform.fonts[this._font.id]&&(this._acroform.fonts[this._font.id]=this._font.ref()),this._acroform.defaultFont!==this._font.name){h.DR={Font:{}};const c=h.fontSize||0;h.DR.Font[this._font.id]=this._font.ref(),h.DA=new String(`/${this._font.id} ${c} Tf 0 g`)}return h},_resolveStrings(h){let c=[];function y(p){if(Array.isArray(p))for(let q=0;q{void 0!==h[p]&&(h[Zi[p]]=h[p],delete h[p])}),["V","DV"].forEach(p=>{"string"==typeof h[p]&&(h[p]=new String(h[p]))}),h.MK&&h.MK.CA&&(h.MK.CA=new String(h.MK.CA)),h.label&&(h.MK=h.MK?h.MK:{},h.MK.CA=new String(h.label),delete h.label),h}},As={file(h,c){void 0===c&&(c={}),c.name=c.name||h,c.relationship=c.relationship||"Unspecified";const y={Type:"EmbeddedFile",Params:{}};let p;if(!h)throw new Error("No src specified");if(I.isBuffer(h))p=h;else if(h instanceof ArrayBuffer)p=I.from(new Uint8Array(h));else{const Ie=/^data:(.*?);base64,(.*)$/.exec(h);if(Ie)Ie[1]&&(y.Subtype=nA(Ie[1])),p=I.from(Ie[2],"base64");else{if(p=P.readFileSync(h),!p)throw new Error(`Could not read contents of file at filepath ${h}`);const xe=P.statSync(h),s=xe.ctime;y.Params.CreationDate=xe.birthtime,y.Params.ModDate=s}}c.creationDate instanceof Date&&(y.Params.CreationDate=c.creationDate),c.modifiedDate instanceof Date&&(y.Params.ModDate=c.modifiedDate),c.type&&(y.Subtype=nA(c.type));const q=function LA(h){return(0,B.default)(h)}(new Uint8Array(p));let CA;y.Params.CheckSum=new String(q),y.Params.Size=p.byteLength,this._fileRegistry||(this._fileRegistry={});let _A=this._fileRegistry[c.name];_A&&function Is(h,c){return h.Subtype===c.Subtype&&h.Params.CheckSum.toString()===c.Params.CheckSum.toString()&&h.Params.Size===c.Params.Size&&h.Params.CreationDate.getTime()===c.Params.CreationDate.getTime()&&(void 0===h.Params.ModDate&&void 0===c.Params.ModDate||h.Params.ModDate.getTime()===c.Params.ModDate.getTime())}(y,_A)?CA=_A.ref:(CA=this.ref(y),CA.end(p),this._fileRegistry[c.name]={...y,ref:CA});const ee={Type:"Filespec",AFRelationship:c.relationship,F:new String(c.name),EF:{F:CA},UF:new String(c.name)};c.description&&(ee.Desc=new String(c.description));const he=this.ref(ee);return he.end(),c.hidden||this.addNamedEmbeddedFile(c.name,he),this._root.data.AF?this._root.data.AF.push(he):this._root.data.AF=[he],he}},Ui={initPDFA(h){"-"===h.charAt(h.length-3)?(this.subset_conformance=h.charAt(h.length-1).toUpperCase(),this.subset=parseInt(h.charAt(h.length-2))):(this.subset_conformance="B",this.subset=parseInt(h.charAt(h.length-1)))},endSubset(){this._addPdfaMetadata(),this._addColorOutputIntent()},_addColorOutputIntent(){const h=I("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","base64"),c=this.ref({Length:h.length,N:3});c.write(h),c.end();const y=this.ref({Type:"OutputIntent",S:"GTS_PDFA1",Info:new String("sRGB IEC61966-2.1"),OutputConditionIdentifier:new String("sRGB IEC61966-2.1"),DestOutputProfile:c});y.end(),this._root.data.OutputIntents=[y]},_getPdfaid(){return`\n \n ${this.subset}\n ${this.subset_conformance}\n \n `},_addPdfaMetadata(){this.appendXML(this._getPdfaid())}},es={initPDFUA(){this.subset=1},endSubset(){this._addPdfuaMetadata()},_addPdfuaMetadata(){this.appendXML(this._getPdfuaid())},_getPdfuaid(){return`\n \n ${this.subset}\n \n `}},Zn={_importSubset(h){Object.assign(this,h)},initSubset(h){switch(h.subset){case"PDF/A-1":case"PDF/A-1a":case"PDF/A-1b":case"PDF/A-2":case"PDF/A-2a":case"PDF/A-2b":case"PDF/A-3":case"PDF/A-3a":case"PDF/A-3b":this._importSubset(Ui),this.initPDFA(h.subset);break;case"PDF/UA":this._importSubset(es),this.initPDFUA()}}};const Ds=["height","minHeight","maxHeight"],Fs=["width","minWidth","maxWidth"];function Li(h,c){const y=new Map;return function(){const p=arguments.length<=0?void 0:arguments[0];return y.has(p)||(y.set(p,h(...arguments)),y.size>c&&y.delete(y.keys().next())),y.get(p)}}function Gi(h){return h&&"object"==typeof h&&!Array.isArray(h)}function un(h){if(!Gi(h))return h;h=Ii(h);for(var c=arguments.length,y=new Array(c>1?c-1:0),p=1;pDs.includes(q[0]))),p=Object.fromEntries(Object.entries(c).filter(q=>Fs.includes(q[0])));return c.padding=kA(c.padding),c.border=kA(c.border),c.borderColor=kA(c.borderColor),c.align=Di(c.align),{defaultStyle:c,defaultRowStyle:y,defaultColStyle:p}}(c.defaultStyle),CA=p.defaultColStyle,_A=p.defaultRowStyle;let ee,he;this._defaultStyle=p.defaultStyle,c.columnStyles&&(Array.isArray(c.columnStyles)?ee=Ie=>c.columnStyles[Ie]:"function"==typeof c.columnStyles?ee=Li(Ie=>c.columnStyles(Ie),1/0):"object"==typeof c.columnStyles&&(ee=()=>c.columnStyles)),ee||(ee=()=>({})),this._colStyle=xs.bind(this,CA,ee),c.rowStyles&&(Array.isArray(c.rowStyles)?he=Ie=>c.rowStyles[Ie]:"function"==typeof c.rowStyles?he=Li(Ie=>c.rowStyles(Ie),10):"object"==typeof c.rowStyles&&(he=()=>c.rowStyles)),he||(he=()=>({})),this._rowStyle=ys.bind(this,_A,he)}function bs(h,c,y){const p=this._colStyle(y);let q=this._rowStyle(c);const CA=un({},p.font,q.font,h.font),_A=Object.values(CA).filter(s=>null!=s).length>0,ee=this.document,he=ee._fontSource,Ie=ee._fontSize,xe=ee._fontFamily;_A&&(CA.src&&ee.font(CA.src,CA.family),CA.size&&ee.fontSize(CA.size),q=this._rowStyle(c)),h.padding=kA(h.padding),h.border=kA(h.border),h.borderColor=kA(h.borderColor);const $=un(this._defaultStyle,p,q,h);return $.rowIndex=c,$.colIndex=y,$.font=CA??{},$.customFont=_A,$.text=function Ys(h){return null!=h&&(h=`${h}`),h}($.text),$.rowSpan=$.rowSpan??1,$.colSpan=$.colSpan??1,$.padding=kA($.padding,"0.25em",s=>ee.sizeToPoint(s,"0.25em")),$.border=kA($.border,1,s=>ee.sizeToPoint(s,1)),$.borderColor=kA($.borderColor,"black",s=>s??"black"),$.align=Di($.align),$.align.x=$.align.x??"left",$.align.y=$.align.y??"top",$.textStroke=ee.sizeToPoint($.textStroke,0),$.textStrokeColor=$.textStrokeColor??"black",$.textColor=$.textColor??"black",$.textOptions=$.textOptions??{},$.id=new String($.id??`${this._id}-${c}-${y}`),$.type="TH"===$.type?.toUpperCase()?"TH":"TD",$.scope&&($.scope=$.scope.toLowerCase(),"row"===$.scope?$.scope="Row":"both"===$.scope?$.scope="Both":"column"===$.scope&&($.scope="Column")),"boolean"==typeof this.opts.debug&&($.debug=this.opts.debug),_A&&ee.font(he,xe,Ie),$}function zi(h,c){this._cellClaim||(this._cellClaim=new Set);let y=0;return h.map(p=>{for((null==p||"object"!=typeof p)&&(p={text:p});this._cellClaim.has(`${c},${y}`);)y++;p=bs.call(this,p,c,y);for(let q=0;qc+y.colSpan,0)),this._rowHeights=[],this._rowYPos=[this._position.y],this._rowBuffer=new Set}function ts(h){let c=[],y=0,p=this._maxWidth;for(let _A=0;_A_A+1,0);y>=p?c.forEach((_A,ee)=>{this._columnWidths[ee]=_A.minWidth}):q>0&&c.forEach((_A,ee)=>{this._columnWidths[ee]=Math.max(p/q,_A.minWidth),_A.maxWidth>0&&(this._columnWidths[ee]=Math.min(this._columnWidths[ee],_A.maxWidth)),p-=this._columnWidths[ee],q--});let CA=this._position.x;this._columnXPos=Array.from(this._columnWidths,_A=>{const ee=CA;return CA+=_A,ee})}function Rs(h,c){h.forEach(_A=>this._rowBuffer.add(_A)),c>0&&(this._rowYPos[c]=this._rowYPos[c-1]+this._rowHeights[c-1]);const y=this._rowStyle(c);let p=[];this._rowBuffer.forEach(_A=>{_A.rowIndex+_A.rowSpan-1===c&&(p.push(ns.call(this,_A,y.height)),this._rowBuffer.delete(_A))});let q=y.height;"auto"===q&&(q=p.reduce((_A,ee)=>{let he=ee.textBounds.height+ee.padding.top+ee.padding.bottom;for(let Ie=0;Ie0&&(q=Math.min(q,y.maxHeight)),this._rowHeights[c]=q;let CA=!1;return q>this.document.page.contentHeight?(console.warn(new Error(`Row ${c} requested more than the safe page height, row has been clamped`).stack.slice(7)),this._rowHeights[c]=this.document.page.maxY()-this._rowYPos[c]):this._rowYPos[c]+q>=this.document.page.maxY()&&(this._rowYPos[c]=this.document.page.margins.top,CA=!0),{newPage:CA,toRender:p.map(_A=>ns.call(this,_A,q))}}function ns(h,c){let y=0;for(let s=0;s180&&h<270?(p=c/(2*CA),q=c/(2*_A)):(q=c/(2*CA),p=c/(2*_A));if(_A*p+CA*q>y){const Ie=CA*CA-_A*_A;0===h||180===h?(p=c,q=y):90===h||270===h?(p=y,q=c):h<90||h>180&&h<270?(p=(c*CA-y*_A)/Ie,q=(y*CA-c*_A)/Ie):(q=(c*CA-y*_A)/Ie,p=(y*CA-c*_A)/Ie)}return{width:Math.abs(p),height:Math.abs(q)}}(_A,q,CA),xe={align:h.align.x,ellipsis:!0,stroke:h.textStroke>0,fill:!0,width:ee.width,height:ee.height,rotation:_A,...h.textOptions};let $={x:0,y:0,width:0,height:0};if(h.text){const s=this.document._fontSource,d=this.document._fontSize,F=this.document._fontFamily;h.font?.src&&this.document.font(h.font.src,h.font?.family),h.font?.size&&this.document.fontSize(h.font.size);const W=this.document.boundsOfString(h.text,0,0,{...xe,rotation:0});xe.width=W.width,xe.height=W.height,$=this.document.boundsOfString(h.text,0,0,xe),this.document.font(s,F,d)}return{...h,textOptions:xe,x:this._columnXPos[h.colIndex],y:this._rowYPos[h.rowIndex],textX:this._columnXPos[h.colIndex]+h.padding.left,textY:this._rowYPos[h.rowIndex]+h.padding.top,width:y,height:p,textAllocatedHeight:CA,textAllocatedWidth:q,textBounds:$}}function li(){const h=this.opts.structParent;h&&(this._tableStruct=this.document.struct("Table"),this._tableStruct.dictionary.data.ID=this._id,h instanceof fn?h.add(this._tableStruct):h instanceof yi&&h.addStructure(this._tableStruct),this._headerRowLookup={},this._headerColumnLookup={})}function Ns(){this._tableStruct&&this._tableStruct.end()}function is(h,c,y){const p=this.document.struct("TR");p.dictionary.data.ID=new String(`${this._id}-${c}`),this._tableStruct.add(p),h.forEach(q=>y(q,p)),p.end()}function Ts(h,c,y){const p=this.document,q=p.struct(h.type,{title:h.title});q.dictionary.data.ID=h.id,c.add(q);const CA=h.padding,_A=h.border,ee={O:"Table",Width:h.width,Height:h.height,Padding:[CA.top,CA.bottom,CA.left,CA.right],RowSpan:h.rowSpan>1?h.rowSpan:void 0,ColSpan:h.colSpan>1?h.colSpan:void 0,BorderThickness:[_A.top,_A.bottom,_A.left,_A.right]};if("TH"===h.type){if("Row"===h.scope||"Both"===h.scope){for(let $=0;$this._headerColumnLookup[h.colIndex+s]).flat(),...Array.from({length:h.rowSpan},($,s)=>this._headerRowLookup[h.rowIndex+s]).flat()].filter(Boolean));he.size&&(ee.Headers=Array.from(he));const Ie=p._normalizeColor;null!=h.backgroundColor&&(ee.BackgroundColor=Ie(h.backgroundColor));const xe=[_A.top,_A.bottom,_A.left,_A.right];if(xe.some($=>$)){const $=h.borderColor;ee.BorderColor=[xe[0]?Ie($.top):null,xe[1]?Ie($.bottom):null,xe[2]?Ie($.left):null,xe[3]?Ie($.right):null]}Object.keys(ee).forEach($=>void 0===ee[$]&&delete ee[$]),q.dictionary.data.A=p.ref(ee),q.add(y),q.end(),q.dictionary.data.A.end()}function Ps(h,c){return this._tableStruct?is.call(this,h,c,Fi.bind(this)):h.forEach(y=>Fi.call(this,y)),this._rowYPos[c]+this._rowHeights[c]}function Fi(h,c){const y=()=>{null!=h.backgroundColor&&this.document.save().fillColor(h.backgroundColor).rect(h.x,h.y,h.width,h.height).fill().restore(),Us.call(this,h.border,h.borderColor,h.x,h.y,h.width,h.height),h.debug&&(this.document.save(),this.document.dash(1,{space:1}).lineWidth(1).strokeOpacity(.3),this.document.rect(h.x,h.y,h.width,h.height).stroke("green"),this.document.restore()),h.text&&ki.call(this,h)};c?Ts.call(this,h,c,y):y()}function ki(h){const c=this.document,y=c._fontSource,p=c._fontSize,q=c._fontFamily;h.customFont&&(h.font.src&&c.font(h.font.src,h.font.family),h.font.size&&c.fontSize(h.font.size));const CA=h.textX,_A=h.textY,ee=h.textAllocatedHeight,he=h.textAllocatedWidth,Ie=h.textBounds.width,xe=h.textBounds.height,F=(he-Ie)*("right"===h.align.x?1:"center"===h.align.x?.5:0),Z=(ee-xe)*("bottom"===h.align.y?1:"center"===h.align.y?.5:0),EA=F+-h.textBounds.x,PA=Z+-h.textBounds.y;h.debug&&(c.save(),c.dash(1,{space:1}).lineWidth(1).strokeOpacity(.3),h.text&&c.moveTo(CA+F,_A).lineTo(CA+F,_A+ee).moveTo(CA+F+Ie,_A).lineTo(CA+F+Ie,_A+ee).stroke("blue").moveTo(CA,_A+Z).lineTo(CA+he,_A+Z).moveTo(CA,_A+Z+xe).lineTo(CA+he,_A+Z+xe).stroke("green"),c.rect(CA,_A,he,ee).stroke("orange"),c.restore()),c.save().rect(CA,_A,he,ee).clip(),c.fillColor(h.textColor).strokeColor(h.textStrokeColor),h.textStroke>0&&c.lineWidth(h.textStroke),c.text(h.text,CA+EA,_A+PA,h.textOptions),c.restore(),h.font&&c.font(y,q,p)}function Us(h,c,y,p,q,CA,_A){h=Object.fromEntries(Object.entries(h).map(he=>{let Ie=he[0];return[Ie,_A&&!_A[Ie]?0:he[1]]}));const ee=this.document;[h.right,h.bottom,h.left].every(he=>he===h.top)?h.top>0&&ee.save().lineWidth(h.top).strokeColor(c.top).rect(y,p,q,CA).stroke().restore():(h.top>0&&ee.save().lineWidth(h.top).moveTo(y,p).strokeColor(c.top).lineTo(y+q,p).stroke().restore(),h.right>0&&ee.save().lineWidth(h.right).moveTo(y+q,p).strokeColor(c.right).lineTo(y+q,p+CA).stroke().restore(),h.bottom>0&&ee.save().lineWidth(h.bottom).moveTo(y+q,p+CA).strokeColor(c.bottom).lineTo(y,p+CA).stroke().restore(),h.left>0&&ee.save().lineWidth(h.left).moveTo(y,p+CA).strokeColor(c.left).lineTo(y,p).stroke().restore())}class zn{constructor(c,y){if(void 0===y&&(y={}),this.document=c,this.opts=Object.freeze(y),oi.call(this),li.call(this),this._currRowIndex=0,this._ended=!1,y.data){for(const p of y.data)this.row(p);return this.end()}}row(c,y){if(void 0===y&&(y=!1),this._ended)throw new Error(`Table was marked as ended on row ${this._currRowIndex}`);c=Array.from(c),c=zi.call(this,c,this._currRowIndex),0===this._currRowIndex&&vs.call(this,c);const p=Rs.call(this,c,this._currRowIndex),CA=p.toRender;p.newPage&&this.document.continueOnNewPage();const _A=Ps.call(this,CA,this._currRowIndex);return this.document.x=this._position.x,this.document.y=_A,y?this.end():(this._currRowIndex++,this)}end(){for(;this._rowBuffer?.size;)this.row([]);return this._ended=!0,Ns.call(this),this.document}}var Ls={initTables(){this._tableIndex=0},table(h){return new zn(this,h)}};class ss{constructor(){this._metadata='\n \n \n \n '}_closeTags(){this._metadata=this._metadata.concat('\n \n \n \n ')}append(c,y){void 0===y&&(y=!0),this._metadata=this._metadata.concat(c),y&&(this._metadata=this._metadata.concat("\n"))}getXML(){return this._metadata}getLength(){return this._metadata.length}end(){this._closeTags(),this._metadata=this._metadata.trim()}}var Gs={initMetadata(){this.metadata=new ss},appendXML(h,c){void 0===c&&(c=!0),this.metadata.append(h,c)},_addInfo(){this.appendXML(`\n \n ${this.info.CreationDate.toISOString().split(".")[0]+"Z"}\n ${this.info.Creator}\n \n `),(this.info.Title||this.info.Author||this.info.Subject)&&(this.appendXML('\n \n '),this.info.Title&&this.appendXML(`\n \n \n ${this.info.Title}\n \n \n `),this.info.Author&&this.appendXML(`\n \n \n ${this.info.Author}\n \n \n `),this.info.Subject&&this.appendXML(`\n \n \n ${this.info.Subject}\n \n \n `),this.appendXML("\n \n ")),this.appendXML(`\n \n ${this.info.Producer}`,!1),this.info.Keywords&&this.appendXML(`\n ${this.info.Keywords}`,!1),this.appendXML("\n \n ")},endMetadata(){this._addInfo(),this.metadata.end(),1.3!=this.version&&(this.metadataRef=this.ref({length:this.metadata.getLength(),Type:"Metadata",Subtype:"XML"}),this.metadataRef.compress=!1,this.metadataRef.write(I.from(this.metadata.getXML(),"utf-8")),this.metadataRef.end(),this._root.data.Metadata=this.metadataRef)}};class yi extends N.default.Readable{constructor(c){switch(void 0===c&&(c={}),super(c),this.options=c,c.pdfVersion){case"1.4":this.version=1.4;break;case"1.5":this.version=1.5;break;case"1.6":this.version=1.6;break;case"1.7":case"1.7ext3":this.version=1.7;break;default:this.version=1.3}this.compress=null==this.options.compress||this.options.compress,this._pageBuffer=[],this._pageBufferStart=0,this._offsets=[],this._waiting=0,this._ended=!1,this._offset=0;const y=this.ref({Type:"Pages",Count:0,Kids:[]}),p=this.ref({Dests:new O});if(this._root=this.ref({Type:"Catalog",Pages:y,Names:p}),this.options.lang&&(this._root.data.Lang=new String(this.options.lang)),this.options.pageLayout){const q=this.options.pageLayout;this._root.data.PageLayout=q.charAt(0).toUpperCase()+q.slice(1)}if(this.page=null,this.initMetadata(),this.initColor(),this.initVector(),this.initFonts(c.font),this.initText(),this.initImages(),this.initOutline(),this.initMarkings(c),this.initTables(),this.initSubset(c),this.info={Producer:"PDFKit",Creator:"PDFKit",CreationDate:new Date},this.options.info)for(let q in this.options.info)this.info[q]=this.options.info[q];this.options.displayTitle&&(this._root.data.ViewerPreferences=this.ref({DisplayDocTitle:!0})),this._id=ie.generateFileID(this.info),this._security=ie.create(this,c),this._write(`%PDF-${this.version}`),this._write("%\xff\xff\xff\xff"),!1!==this.options.autoFirstPage&&this.addPage()}addPage(c){null==c&&(c=this.options),this.options.bufferPages||this.flushPages(),this.page=new U(this,c),this._pageBuffer.push(this.page);const y=this._root.data.Pages.data;return y.Kids.push(this.page.dictionary),y.Count++,this.x=this.page.margins.left,this.y=this.page.margins.top,this._ctm=[1,0,0,1,0,0],this.transform(1,0,0,-1,0,this.page.height),this.emit("pageAdded"),this}continueOnNewPage(c){const y=this.endPageMarkings(this.page);return this.addPage(c??this.page._options),this.initPageMarkings(y),this}bufferedPageRange(){return{start:this._pageBufferStart,count:this._pageBuffer.length}}switchToPage(c){let y;if(!(y=this._pageBuffer[c-this._pageBufferStart]))throw new Error(`switchToPage(${c}) out of bounds, current buffer covers pages ${this._pageBufferStart} to ${this._pageBufferStart+this._pageBuffer.length-1}`);return this.page=y}flushPages(){const c=this._pageBuffer;this._pageBuffer=[],this._pageBufferStart+=c.length;for(let y of c)this.endPageMarkings(y),y.end()}addNamedDestination(c){for(var y=arguments.length,p=new Array(y>1?y-1:0),q=1;q{Object.assign(yi.prototype,h)};Yn(Gs),Yn(bt),Yn(je),Yn(Wt),Yn(Cn),Yn(ri),Yn(ai),Yn(Xi),Yn(Ms),Yn(ps),Yn(As),Yn(Zn),Yn(Ls),yi.LineWrapper=Bn},6092(eA,Q,f){var t=f(2736),g=f(2022);typeof g.pdfMake>"u"&&(g.pdfMake=t),eA.exports=t},656(eA,Q,f){"use strict";Q.polyval=Q.ghash=void 0;const g=f(5181),I=16,N=new Uint8Array(16),K=(0,g.u32)(N),B=(P,rA,QA,NA)=>({s3:QA<<31|NA>>>1,s2:rA<<31|QA>>>1,s1:P<<31|rA>>>1,s0:P>>>1^225<<24&-(1&NA)}),j=P=>(P>>>0&255)<<24|(P>>>8&255)<<16|(P>>>16&255)<<8|P>>>24&255;class aA{constructor(rA,QA){this.blockLen=I,this.outputLen=I,this.s0=0,this.s1=0,this.s2=0,this.s3=0,this.finished=!1,rA=(0,g.toBytes)(rA),(0,g.abytes)(rA,16);const NA=(0,g.createView)(rA);let oA=NA.getUint32(0,!1),uA=NA.getUint32(4,!1),dA=NA.getUint32(8,!1),RA=NA.getUint32(12,!1);const nA=[];for(let VA=0;VA<128;VA++)nA.push({s0:j(oA),s1:j(uA),s2:j(dA),s3:j(RA)}),({s0:oA,s1:uA,s2:dA,s3:RA}=B(oA,uA,dA,RA));const H=(P=QA||1024)>65536?8:P>1024?4:2;var P;if(![1,2,4,8].includes(H))throw new Error("ghash: invalid window size, expected 2, 4 or 8");this.W=H;const z=128/H,OA=this.windowSize=2**H,wA=[];for(let VA=0;VA>>H-xA-1&1))continue;const{s0:HA,s1:cA,s2:J,s3:U}=nA[H*VA+xA];hA^=HA,fA^=cA,UA^=J,yA^=U}wA.push({s0:hA,s1:fA,s2:UA,s3:yA})}this.t=wA}_updateBlock(rA,QA,NA,oA){rA^=this.s0,QA^=this.s1,NA^=this.s2,oA^=this.s3;const{W:uA,t:dA,windowSize:RA}=this;let nA=0,H=0,pA=0,z=0;const OA=(1<>>8*kA&255;for(let fA=8/uA-1;fA>=0;fA--){const UA=hA>>>uA*fA&OA,{s0:yA,s1:xA,s2:Ee,s3:HA}=dA[wA*RA+UA];nA^=yA,H^=xA,pA^=Ee,z^=HA,wA+=1}}this.s0=nA,this.s1=H,this.s2=pA,this.s3=z}update(rA){(0,g.aexists)(this),rA=(0,g.toBytes)(rA),(0,g.abytes)(rA);const QA=(0,g.u32)(rA),NA=Math.floor(rA.length/I),oA=rA.length%I;for(let uA=0;uA>>1|QA,QA=(1&oA)<<7}return P[0]^=225&-rA,P}((0,g.copyBytes)(rA));super(NA,QA),(0,g.clean)(NA)}update(rA){rA=(0,g.toBytes)(rA),(0,g.aexists)(this);const QA=(0,g.u32)(rA),NA=rA.length%I,oA=Math.floor(rA.length/I);for(let uA=0;uAP(oA,NA.length).update((0,g.toBytes)(NA)).digest(),QA=P(new Uint8Array(16),0);return rA.outputLen=QA.outputLen,rA.blockLen=QA.blockLen,rA.create=(NA,oA)=>P(NA,oA),rA}Q.ghash=L((P,rA)=>new aA(P,rA)),Q.polyval=L((P,rA)=>new AA(P,rA))},2651(eA,Q,f){"use strict";Object.defineProperty(Q,"__esModule",{value:!0}),Q.unsafe=Q.aeskwp=Q.aeskw=Q.siv=Q.gcmsiv=Q.gcm=Q.cfb=Q.cbc=Q.ecb=Q.ctr=void 0;const t=f(656),g=f(5181),I=16,K=new Uint8Array(I);function B(J){return J<<1^283&-(J>>7)}function j(J,U){let O=0;for(;U>0;U>>=1)O^=J&-(1&U),J=B(J);return O}const tA=(()=>{const J=new Uint8Array(256);for(let O=0,lA=1;O<256;O++,lA^=B(lA))J[O]=lA;const U=new Uint8Array(256);U[0]=99;for(let O=0;O<255;O++){let lA=J[255-O];lA|=lA<<8,U[J[O]]=255&(lA^lA>>4^lA>>5^lA>>6^lA>>7^99)}return(0,g.clean)(J),U})(),w=tA.map((J,U)=>tA.indexOf(U)),aA=J=>J<<24|J>>>8,AA=J=>J<<8|J>>>24,L=J=>J<<24&4278190080|J<<8&16711680|J>>>8&65280|J>>>24&255;function P(J,U){if(256!==J.length)throw new Error("Wrong sbox length");const O=new Uint32Array(256).map((C,b)=>U(J[b])),lA=O.map(AA),LA=lA.map(AA),JA=LA.map(AA),$A=new Uint32Array(65536),IA=new Uint32Array(65536),gA=new Uint16Array(65536);for(let C=0;C<256;C++)for(let b=0;b<256;b++){const R=256*C+b;$A[R]=O[C]^lA[b],IA[R]=LA[C]^JA[b],gA[R]=J[C]<<8|J[b]}return{sbox:J,sbox2:gA,T0:O,T1:lA,T2:LA,T3:JA,T01:$A,T23:IA}}const rA=P(tA,J=>j(J,3)<<24|J<<16|J<<8|j(J,2)),QA=P(w,J=>j(J,11)<<24|j(J,13)<<16|j(J,9)<<8|j(J,14)),NA=(()=>{const J=new Uint8Array(16);for(let U=0,O=1;U<16;U++,O=B(O))J[U]=O;return J})();function oA(J){(0,g.abytes)(J);const U=J.length;if(![16,24,32].includes(U))throw new Error("aes: invalid key size, should be 16, 24 or 32, got "+U);const{sbox2:O}=rA,lA=[];(0,g.isAligned32)(J)||lA.push(J=(0,g.copyBytes)(J));const LA=(0,g.u32)(J),JA=LA.length,$A=gA=>RA(O,gA,gA,gA,gA),IA=new Uint32Array(U+28);IA.set(LA);for(let gA=JA;gA6&&gA%JA===4&&(C=$A(C)),IA[gA]=IA[gA-JA]^C}return(0,g.clean)(...lA),IA}function uA(J){const U=oA(J),O=U.slice(),lA=U.length,{sbox2:LA}=rA,{T0:JA,T1:$A,T2:IA,T3:gA}=QA;for(let C=0;C>>8&255]^IA[R>>>16&255]^gA[R>>>24]}return O}function dA(J,U,O,lA,LA,JA){return J[O<<8&65280|lA>>>8&255]^U[LA>>>8&65280|JA>>>24&255]}function RA(J,U,O,lA,LA){return J[255&U|65280&O]|J[lA>>>16&255|LA>>>16&65280]<<16}function nA(J,U,O,lA,LA){const{sbox2:JA,T01:$A,T23:IA}=rA;let gA=0;U^=J[gA++],O^=J[gA++],lA^=J[gA++],LA^=J[gA++];const C=J.length/4-2;for(let X=0;X=0;KA--)YA=YA+(255&JA[KA])|0,JA[KA]=255&YA,YA>>>=8;({s0:IA,s1:gA,s2:C,s3:b}=nA(J,$A[0],$A[1],$A[2],$A[3]))}const D=I*Math.floor(R.length/4);if(D>>0,IA.setUint32(b,M,U),({s0:D,s1:X,s2:YA,s3:KA}=nA(J,$A[0],$A[1],$A[2],$A[3]));const bA=I*Math.floor(gA.length/4);if(bA16)throw new Error("aes/pcks5: wrong padding");const LA=J.subarray(0,-lA);for(let JA=0;JAlA(LA,JA),decrypt:(LA,JA)=>lA(LA,JA)}}),Q.ecb=(0,g.wrapCipher)({blockSize:16},function(U,O={}){const lA=!O.disablePadding;return{encrypt(LA,JA){const{b:$A,o:IA,out:gA}=wA(LA,lA,JA),C=oA(U);let b=0;for(;b+4<=$A.length;){const{s0:R,s1:M,s2:D,s3:X}=nA(C,$A[b+0],$A[b+1],$A[b+2],$A[b+3]);IA[b++]=R,IA[b++]=M,IA[b++]=D,IA[b++]=X}if(lA){const R=kA(LA.subarray(4*b)),{s0:M,s1:D,s2:X,s3:YA}=nA(C,R[0],R[1],R[2],R[3]);IA[b++]=M,IA[b++]=D,IA[b++]=X,IA[b++]=YA}return(0,g.clean)(C),gA},decrypt(LA,JA){OA(LA);const $A=uA(U);JA=(0,g.getOutput)(LA.length,JA);const IA=[$A];(0,g.isAligned32)(LA)||IA.push(LA=(0,g.copyBytes)(LA)),(0,g.complexOverlapBytes)(LA,JA);const gA=(0,g.u32)(LA),C=(0,g.u32)(JA);for(let b=0;b+4<=gA.length;){const{s0:R,s1:M,s2:D,s3:X}=H($A,gA[b+0],gA[b+1],gA[b+2],gA[b+3]);C[b++]=R,C[b++]=M,C[b++]=D,C[b++]=X}return(0,g.clean)(...IA),VA(JA,lA)}}}),Q.cbc=(0,g.wrapCipher)({blockSize:16,nonceLength:16},function(U,O,lA={}){const LA=!lA.disablePadding;return{encrypt(JA,$A){const IA=oA(U),{b:gA,o:C,out:b}=wA(JA,LA,$A);let R=O;const M=[IA];(0,g.isAligned32)(R)||M.push(R=(0,g.copyBytes)(R));const D=(0,g.u32)(R);let X=D[0],YA=D[1],KA=D[2],bA=D[3],le=0;for(;le+4<=gA.length;)X^=gA[le+0],YA^=gA[le+1],KA^=gA[le+2],bA^=gA[le+3],({s0:X,s1:YA,s2:KA,s3:bA}=nA(IA,X,YA,KA,bA)),C[le++]=X,C[le++]=YA,C[le++]=KA,C[le++]=bA;if(LA){const ve=kA(JA.subarray(4*le));X^=ve[0],YA^=ve[1],KA^=ve[2],bA^=ve[3],({s0:X,s1:YA,s2:KA,s3:bA}=nA(IA,X,YA,KA,bA)),C[le++]=X,C[le++]=YA,C[le++]=KA,C[le++]=bA}return(0,g.clean)(...M),b},decrypt(JA,$A){OA(JA);const IA=uA(U);let gA=O;const C=[IA];(0,g.isAligned32)(gA)||C.push(gA=(0,g.copyBytes)(gA));const b=(0,g.u32)(gA);$A=(0,g.getOutput)(JA.length,$A),(0,g.isAligned32)(JA)||C.push(JA=(0,g.copyBytes)(JA)),(0,g.complexOverlapBytes)(JA,$A);const R=(0,g.u32)(JA),M=(0,g.u32)($A);let D=b[0],X=b[1],YA=b[2],KA=b[3];for(let bA=0;bA+4<=R.length;){const le=D,ve=X,Ne=YA,Te=KA;D=R[bA+0],X=R[bA+1],YA=R[bA+2],KA=R[bA+3];const{s0:ze,s1:Oe,s2:oe,s3:sA}=H(IA,D,X,YA,KA);M[bA++]=ze^le,M[bA++]=Oe^ve,M[bA++]=oe^Ne,M[bA++]=sA^Te}return(0,g.clean)(...C),VA($A,LA)}}}),Q.cfb=(0,g.wrapCipher)({blockSize:16,nonceLength:16},function(U,O){function lA(LA,JA,$A){(0,g.abytes)(LA);const IA=LA.length;if($A=(0,g.getOutput)(IA,$A),(0,g.overlapBytes)(LA,$A))throw new Error("overlapping src and dst not supported.");const gA=oA(U);let C=O;const b=[gA];(0,g.isAligned32)(C)||b.push(C=(0,g.copyBytes)(C)),(0,g.isAligned32)(LA)||b.push(LA=(0,g.copyBytes)(LA));const R=(0,g.u32)(LA),M=(0,g.u32)($A),D=JA?M:R,X=(0,g.u32)(C);let YA=X[0],KA=X[1],bA=X[2],le=X[3];for(let Ne=0;Ne+4<=R.length;){const{s0:Te,s1:ze,s2:Oe,s3:oe}=nA(gA,YA,KA,bA,le);M[Ne+0]=R[Ne+0]^Te,M[Ne+1]=R[Ne+1]^ze,M[Ne+2]=R[Ne+2]^Oe,M[Ne+3]=R[Ne+3]^oe,YA=D[Ne++],KA=D[Ne++],bA=D[Ne++],le=D[Ne++]}const ve=I*Math.floor(R.length/4);if(velA(LA,!0,JA),decrypt:(LA,JA)=>lA(LA,!1,JA)}}),Q.gcm=(0,g.wrapCipher)({blockSize:16,nonceLength:12,tagLength:16,varSizeNonce:!0},function(U,O,lA){if(O.length<8)throw new Error("aes/gcm: invalid nonce length");function JA(IA,gA,C){const b=hA(t.ghash,!1,IA,C,lA);for(let R=0;RlA=>{if(!Number.isSafeInteger(lA)||U>lA||lA>O)throw new Error(J+": expected value in range ["+U+".."+O+"], got "+lA)};function UA(J){return J instanceof Uint32Array||ArrayBuffer.isView(J)&&"Uint32Array"===J.constructor.name}function yA(J,U){if((0,g.abytes)(U,16),!UA(J))throw new Error("_encryptBlock accepts result of expandKeyLE");const O=(0,g.u32)(U);let{s0:lA,s1:LA,s2:JA,s3:$A}=nA(J,O[0],O[1],O[2],O[3]);return O[0]=lA,O[1]=LA,O[2]=JA,O[3]=$A,U}function xA(J,U){if((0,g.abytes)(U,16),!UA(J))throw new Error("_decryptBlock accepts result of expandKeyLE");const O=(0,g.u32)(U);let{s0:lA,s1:LA,s2:JA,s3:$A}=H(J,O[0],O[1],O[2],O[3]);return O[0]=lA,O[1]=LA,O[2]=JA,O[3]=$A,U}Q.gcmsiv=(0,g.wrapCipher)({blockSize:16,nonceLength:12,tagLength:16,varSizeNonce:!0},function(U,O,lA){const JA=fA("AAD",0,68719476736),$A=fA("plaintext",0,2**36),IA=fA("nonce",12,12),gA=fA("ciphertext",16,2**36+16);function C(){const M=oA(U),D=new Uint8Array(U.length),X=new Uint8Array(16),YA=[M,D];let KA=O;(0,g.isAligned32)(KA)||YA.push(KA=(0,g.copyBytes)(KA));const bA=(0,g.u32)(KA);let le=0,ve=bA[0],Ne=bA[1],Te=bA[2],ze=0;for(const oe of[X,D].map(g.u32)){const sA=(0,g.u32)(oe);for(let S=0;S=2**32)throw new Error("plaintext should be less than 4gb");const O=oA(J);if(16===U.length)yA(O,U);else{const lA=(0,g.u32)(U);let LA=lA[0],JA=lA[1];for(let $A=0,IA=1;$A<6;$A++)for(let gA=2;gA=2**32)throw new Error("ciphertext should be less than 4gb");const O=uA(J),lA=U.length/8-1;if(1===lA)xA(O,U);else{const LA=(0,g.u32)(U);let JA=LA[0],$A=LA[1];for(let IA=0,gA=6*lA;IA<6;IA++)for(let C=2*lA;C>=1;C-=2,gA--){$A^=L(gA);const{s0:b,s1:R,s2:M,s3:D}=H(O,JA,$A,LA[C],LA[C+1]);JA=b,$A=R,LA[C]=M,LA[C+1]=D}LA[0]=JA,LA[1]=$A}O.fill(0)}},HA=new Uint8Array(8).fill(166);Q.aeskw=(0,g.wrapCipher)({blockSize:8},J=>({encrypt(U){if(!U.length||U.length%8!=0)throw new Error("invalid plaintext length");if(8===U.length)throw new Error("8-byte keys not allowed in AESKW, use AESKWP instead");const O=(0,g.concatBytes)(HA,U);return Ee.encrypt(J,O),O},decrypt(U){if(U.length%8!=0||U.length<24)throw new Error("invalid ciphertext length");const O=(0,g.copyBytes)(U);if(Ee.decrypt(J,O),!(0,g.equalBytes)(O.subarray(0,8),HA))throw new Error("integrity check failed");return O.subarray(0,8).fill(0),O.subarray(8)}}));const cA=2790873510;Q.aeskwp=(0,g.wrapCipher)({blockSize:8},J=>({encrypt(U){if(!U.length)throw new Error("invalid plaintext length");const O=8*Math.ceil(U.length/8),lA=new Uint8Array(8+O);lA.set(U,8);const LA=(0,g.u32)(lA);return LA[0]=cA,LA[1]=L(U.length),Ee.encrypt(J,lA),lA},decrypt(U){if(U.length<16)throw new Error("invalid ciphertext length");const O=(0,g.copyBytes)(U),lA=(0,g.u32)(O);Ee.decrypt(J,O);const LA=L(lA[1])>>>0,JA=8*Math.ceil(LA/8);if(lA[0]!==cA||O.length-8!==JA)throw new Error("integrity check failed");for(let $A=LA;$A0&&!J.includes(cA.length))throw new Error("Uint8Array expected of length "+J+", got length="+cA.length)}function aA(cA){return new DataView(cA.buffer,cA.byteOffset,cA.byteLength)}function z(cA,J){return cA.buffer===J.buffer&&cA.byteOffset>lA&LA),$A=Number(U&LA),gA=O?0:4;cA.setUint32(J+(O?4:0),JA,O),cA.setUint32(J+gA,$A,O)}function Ee(cA){return cA.byteOffset%4==0}function HA(cA){return Uint8Array.from(cA)}Q.wrapCipher=Q.qv=void 0,Q.abytes=N,Q.aexists=function v(cA,J=!0){if(cA.destroyed)throw new Error("Hash instance has been destroyed");if(J&&cA.finished)throw new Error("Hash#digest() has already been called")},Q.aoutput=function B(cA,J){N(cA);const U=J.outputLen;if(cA.length{function U(O,...lA){if(N(O),!Q.qv)throw new Error("Non little-endian hardware is not yet supported");if(void 0!==cA.nonceLength){const C=lA[0];if(!C)throw new Error("nonce / iv required");cA.varSizeNonce?N(C):N(C,cA.nonceLength)}const LA=cA.tagLength;LA&&void 0!==lA[1]&&N(lA[1]);const JA=J(O,...lA),$A=(C,b)=>{if(void 0!==b){if(2!==C)throw new Error("cipher output not supported");N(b)}};let IA=!1;return{encrypt(C,b){if(IA)throw new Error("cannot encrypt() twice with same key + nonce");return IA=!0,N(C),$A(JA.encrypt.length,b),JA.encrypt(C,b)},decrypt(C,b){if(N(C),LA&&C.lengthaA-L&&(this.process(w,0),L=0);for(let oA=L;oA>aA&AA),P=Number(tA&AA),QA=w?0:4;B.setUint32(j+(w?4:0),L,w),B.setUint32(j+QA,P,w)})(w,aA-8,BigInt(8*this.length),AA),this.process(w,0);const P=(0,g.createView)(j),rA=this.outputLen;if(rA%4)throw new Error("_sha2: outputLen should be aligned to 32bit");const QA=rA/4,NA=this.get();if(QA>NA.length)throw new Error("_sha2: outputLen bigger than state");for(let oA=0;oA>>0)+(kA>>>0);return{h:OA+VA+(hA/4294967296|0)|0,l:0|hA}},Q.split=function N(OA,wA=!1){const VA=OA.length;let kA=new Uint32Array(VA),hA=new Uint32Array(VA);for(let fA=0;fA>g&t)}:{h:0|Number(OA>>g&t),l:0|Number(OA&t)}}Q.shrSH=(OA,wA,VA)=>OA>>>VA;Q.shrSL=(OA,wA,VA)=>OA<<32-VA|wA>>>VA;Q.rotrSH=(OA,wA,VA)=>OA>>>VA|wA<<32-VA;Q.rotrSL=(OA,wA,VA)=>OA<<32-VA|wA>>>VA;Q.rotrBH=(OA,wA,VA)=>OA<<64-VA|wA>>>VA-32;Q.rotrBL=(OA,wA,VA)=>OA>>>VA-32|wA<<64-VA;Q.add3L=(OA,wA,VA)=>(OA>>>0)+(wA>>>0)+(VA>>>0);Q.add3H=(OA,wA,VA,kA)=>wA+VA+kA+(OA/2**32|0)|0;Q.add4L=(OA,wA,VA,kA)=>(OA>>>0)+(wA>>>0)+(VA>>>0)+(kA>>>0);Q.add4H=(OA,wA,VA,kA,hA)=>wA+VA+kA+hA+(OA/2**32|0)|0;Q.add5L=(OA,wA,VA,kA,hA)=>(OA>>>0)+(wA>>>0)+(VA>>>0)+(kA>>>0)+(hA>>>0);Q.add5H=(OA,wA,VA,kA,hA,fA)=>wA+VA+kA+hA+fA+(OA/2**32|0)|0},2491(eA,Q){"use strict";Q.crypto=void 0,Q.crypto="object"==typeof globalThis&&"crypto"in globalThis?globalThis.crypto:void 0},2650(eA,Q,f){"use strict";Object.defineProperty(Q,"__esModule",{value:!0}),Q.sha512_224=Q.sha512_256=Q.sha384=Q.sha512=Q.sha224=Q.sha256=Q.SHA512_256=Q.SHA512_224=Q.SHA384=Q.SHA512=Q.SHA224=Q.SHA256=void 0;const t=f(6784),g=f(4996),I=f(3973),N=Uint32Array.from([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),K=new Uint32Array(64);class v extends t.HashMD{constructor(dA=32){super(64,dA,8,!1),this.A=0|t.SHA256_IV[0],this.B=0|t.SHA256_IV[1],this.C=0|t.SHA256_IV[2],this.D=0|t.SHA256_IV[3],this.E=0|t.SHA256_IV[4],this.F=0|t.SHA256_IV[5],this.G=0|t.SHA256_IV[6],this.H=0|t.SHA256_IV[7]}get(){const{A:dA,B:RA,C:nA,D:H,E:pA,F:z,G:OA,H:wA}=this;return[dA,RA,nA,H,pA,z,OA,wA]}set(dA,RA,nA,H,pA,z,OA,wA){this.A=0|dA,this.B=0|RA,this.C=0|nA,this.D=0|H,this.E=0|pA,this.F=0|z,this.G=0|OA,this.H=0|wA}process(dA,RA){for(let hA=0;hA<16;hA++,RA+=4)K[hA]=dA.getUint32(RA,!1);for(let hA=16;hA<64;hA++){const fA=K[hA-15],UA=K[hA-2],yA=(0,I.rotr)(fA,7)^(0,I.rotr)(fA,18)^fA>>>3,xA=(0,I.rotr)(UA,17)^(0,I.rotr)(UA,19)^UA>>>10;K[hA]=xA+K[hA-7]+yA+K[hA-16]|0}let{A:nA,B:H,C:pA,D:z,E:OA,F:wA,G:VA,H:kA}=this;for(let hA=0;hA<64;hA++){const UA=kA+((0,I.rotr)(OA,6)^(0,I.rotr)(OA,11)^(0,I.rotr)(OA,25))+(0,t.Chi)(OA,wA,VA)+N[hA]+K[hA]|0,xA=((0,I.rotr)(nA,2)^(0,I.rotr)(nA,13)^(0,I.rotr)(nA,22))+(0,t.Maj)(nA,H,pA)|0;kA=VA,VA=wA,wA=OA,OA=z+UA|0,z=pA,pA=H,H=nA,nA=UA+xA|0}nA=nA+this.A|0,H=H+this.B|0,pA=pA+this.C|0,z=z+this.D|0,OA=OA+this.E|0,wA=wA+this.F|0,VA=VA+this.G|0,kA=kA+this.H|0,this.set(nA,H,pA,z,OA,wA,VA,kA)}roundClean(){(0,I.clean)(K)}destroy(){this.set(0,0,0,0,0,0,0,0),(0,I.clean)(this.buffer)}}Q.SHA256=v;class B extends v{constructor(){super(28),this.A=0|t.SHA224_IV[0],this.B=0|t.SHA224_IV[1],this.C=0|t.SHA224_IV[2],this.D=0|t.SHA224_IV[3],this.E=0|t.SHA224_IV[4],this.F=0|t.SHA224_IV[5],this.G=0|t.SHA224_IV[6],this.H=0|t.SHA224_IV[7]}}Q.SHA224=B;const j=g.split(["0x428a2f98d728ae22","0x7137449123ef65cd","0xb5c0fbcfec4d3b2f","0xe9b5dba58189dbbc","0x3956c25bf348b538","0x59f111f1b605d019","0x923f82a4af194f9b","0xab1c5ed5da6d8118","0xd807aa98a3030242","0x12835b0145706fbe","0x243185be4ee4b28c","0x550c7dc3d5ffb4e2","0x72be5d74f27b896f","0x80deb1fe3b1696b1","0x9bdc06a725c71235","0xc19bf174cf692694","0xe49b69c19ef14ad2","0xefbe4786384f25e3","0x0fc19dc68b8cd5b5","0x240ca1cc77ac9c65","0x2de92c6f592b0275","0x4a7484aa6ea6e483","0x5cb0a9dcbd41fbd4","0x76f988da831153b5","0x983e5152ee66dfab","0xa831c66d2db43210","0xb00327c898fb213f","0xbf597fc7beef0ee4","0xc6e00bf33da88fc2","0xd5a79147930aa725","0x06ca6351e003826f","0x142929670a0e6e70","0x27b70a8546d22ffc","0x2e1b21385c26c926","0x4d2c6dfc5ac42aed","0x53380d139d95b3df","0x650a73548baf63de","0x766a0abb3c77b2a8","0x81c2c92e47edaee6","0x92722c851482353b","0xa2bfe8a14cf10364","0xa81a664bbc423001","0xc24b8b70d0f89791","0xc76c51a30654be30","0xd192e819d6ef5218","0xd69906245565a910","0xf40e35855771202a","0x106aa07032bbd1b8","0x19a4c116b8d2d0c8","0x1e376c085141ab53","0x2748774cdf8eeb99","0x34b0bcb5e19b48a8","0x391c0cb3c5c95a63","0x4ed8aa4ae3418acb","0x5b9cca4f7763e373","0x682e6ff3d6b2b8a3","0x748f82ee5defb2fc","0x78a5636f43172f60","0x84c87814a1f0ab72","0x8cc702081a6439ec","0x90befffa23631e28","0xa4506cebde82bde9","0xbef9a3f7b2c67915","0xc67178f2e372532b","0xca273eceea26619c","0xd186b8c721c0c207","0xeada7dd6cde0eb1e","0xf57d4f7fee6ed178","0x06f067aa72176fba","0x0a637dc5a2c898a6","0x113f9804bef90dae","0x1b710b35131c471b","0x28db77f523047d84","0x32caab7b40c72493","0x3c9ebe0a15c9bebc","0x431d67c49c100d4c","0x4cc5d4becb3e42b6","0x597f299cfc657e2a","0x5fcb6fab3ad6faec","0x6c44198c4a475817"].map(uA=>BigInt(uA))),tA=j[0],w=j[1],aA=new Uint32Array(80),AA=new Uint32Array(80);class L extends t.HashMD{constructor(dA=64){super(128,dA,16,!1),this.Ah=0|t.SHA512_IV[0],this.Al=0|t.SHA512_IV[1],this.Bh=0|t.SHA512_IV[2],this.Bl=0|t.SHA512_IV[3],this.Ch=0|t.SHA512_IV[4],this.Cl=0|t.SHA512_IV[5],this.Dh=0|t.SHA512_IV[6],this.Dl=0|t.SHA512_IV[7],this.Eh=0|t.SHA512_IV[8],this.El=0|t.SHA512_IV[9],this.Fh=0|t.SHA512_IV[10],this.Fl=0|t.SHA512_IV[11],this.Gh=0|t.SHA512_IV[12],this.Gl=0|t.SHA512_IV[13],this.Hh=0|t.SHA512_IV[14],this.Hl=0|t.SHA512_IV[15]}get(){const{Ah:dA,Al:RA,Bh:nA,Bl:H,Ch:pA,Cl:z,Dh:OA,Dl:wA,Eh:VA,El:kA,Fh:hA,Fl:fA,Gh:UA,Gl:yA,Hh:xA,Hl:Ee}=this;return[dA,RA,nA,H,pA,z,OA,wA,VA,kA,hA,fA,UA,yA,xA,Ee]}set(dA,RA,nA,H,pA,z,OA,wA,VA,kA,hA,fA,UA,yA,xA,Ee){this.Ah=0|dA,this.Al=0|RA,this.Bh=0|nA,this.Bl=0|H,this.Ch=0|pA,this.Cl=0|z,this.Dh=0|OA,this.Dl=0|wA,this.Eh=0|VA,this.El=0|kA,this.Fh=0|hA,this.Fl=0|fA,this.Gh=0|UA,this.Gl=0|yA,this.Hh=0|xA,this.Hl=0|Ee}process(dA,RA){for(let J=0;J<16;J++,RA+=4)aA[J]=dA.getUint32(RA),AA[J]=dA.getUint32(RA+=4);for(let J=16;J<80;J++){const U=0|aA[J-15],O=0|AA[J-15],lA=g.rotrSH(U,O,1)^g.rotrSH(U,O,8)^g.shrSH(U,O,7),LA=g.rotrSL(U,O,1)^g.rotrSL(U,O,8)^g.shrSL(U,O,7),JA=0|aA[J-2],$A=0|AA[J-2],IA=g.rotrSH(JA,$A,19)^g.rotrBH(JA,$A,61)^g.shrSH(JA,$A,6),gA=g.rotrSL(JA,$A,19)^g.rotrBL(JA,$A,61)^g.shrSL(JA,$A,6),C=g.add4L(LA,gA,AA[J-7],AA[J-16]),b=g.add4H(C,lA,IA,aA[J-7],aA[J-16]);aA[J]=0|b,AA[J]=0|C}let{Ah:nA,Al:H,Bh:pA,Bl:z,Ch:OA,Cl:wA,Dh:VA,Dl:kA,Eh:hA,El:fA,Fh:UA,Fl:yA,Gh:xA,Gl:Ee,Hh:HA,Hl:cA}=this;for(let J=0;J<80;J++){const U=g.rotrSH(hA,fA,14)^g.rotrSH(hA,fA,18)^g.rotrBH(hA,fA,41),O=g.rotrSL(hA,fA,14)^g.rotrSL(hA,fA,18)^g.rotrBL(hA,fA,41),lA=hA&UA^~hA&xA,JA=g.add5L(cA,O,fA&yA^~fA&Ee,w[J],AA[J]),$A=g.add5H(JA,HA,U,lA,tA[J],aA[J]),IA=0|JA,gA=g.rotrSH(nA,H,28)^g.rotrBH(nA,H,34)^g.rotrBH(nA,H,39),C=g.rotrSL(nA,H,28)^g.rotrBL(nA,H,34)^g.rotrBL(nA,H,39),b=nA&pA^nA&OA^pA&OA,R=H&z^H&wA^z&wA;HA=0|xA,cA=0|Ee,xA=0|UA,Ee=0|yA,UA=0|hA,yA=0|fA,({h:hA,l:fA}=g.add(0|VA,0|kA,0|$A,0|IA)),VA=0|OA,kA=0|wA,OA=0|pA,wA=0|z,pA=0|nA,z=0|H;const M=g.add3L(IA,C,R);nA=g.add3H(M,$A,gA,b),H=0|M}({h:nA,l:H}=g.add(0|this.Ah,0|this.Al,0|nA,0|H)),({h:pA,l:z}=g.add(0|this.Bh,0|this.Bl,0|pA,0|z)),({h:OA,l:wA}=g.add(0|this.Ch,0|this.Cl,0|OA,0|wA)),({h:VA,l:kA}=g.add(0|this.Dh,0|this.Dl,0|VA,0|kA)),({h:hA,l:fA}=g.add(0|this.Eh,0|this.El,0|hA,0|fA)),({h:UA,l:yA}=g.add(0|this.Fh,0|this.Fl,0|UA,0|yA)),({h:xA,l:Ee}=g.add(0|this.Gh,0|this.Gl,0|xA,0|Ee)),({h:HA,l:cA}=g.add(0|this.Hh,0|this.Hl,0|HA,0|cA)),this.set(nA,H,pA,z,OA,wA,VA,kA,hA,fA,UA,yA,xA,Ee,HA,cA)}roundClean(){(0,I.clean)(aA,AA)}destroy(){(0,I.clean)(this.buffer),this.set(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)}}Q.SHA512=L;class P extends L{constructor(){super(48),this.Ah=0|t.SHA384_IV[0],this.Al=0|t.SHA384_IV[1],this.Bh=0|t.SHA384_IV[2],this.Bl=0|t.SHA384_IV[3],this.Ch=0|t.SHA384_IV[4],this.Cl=0|t.SHA384_IV[5],this.Dh=0|t.SHA384_IV[6],this.Dl=0|t.SHA384_IV[7],this.Eh=0|t.SHA384_IV[8],this.El=0|t.SHA384_IV[9],this.Fh=0|t.SHA384_IV[10],this.Fl=0|t.SHA384_IV[11],this.Gh=0|t.SHA384_IV[12],this.Gl=0|t.SHA384_IV[13],this.Hh=0|t.SHA384_IV[14],this.Hl=0|t.SHA384_IV[15]}}Q.SHA384=P;const rA=Uint32Array.from([2352822216,424955298,1944164710,2312950998,502970286,855612546,1738396948,1479516111,258812777,2077511080,2011393907,79989058,1067287976,1780299464,286451373,2446758561]),QA=Uint32Array.from([573645204,4230739756,2673172387,3360449730,596883563,1867755857,2520282905,1497426621,2519219938,2827943907,3193839141,1401305490,721525244,746961066,246885852,2177182882]);class NA extends L{constructor(){super(28),this.Ah=0|rA[0],this.Al=0|rA[1],this.Bh=0|rA[2],this.Bl=0|rA[3],this.Ch=0|rA[4],this.Cl=0|rA[5],this.Dh=0|rA[6],this.Dl=0|rA[7],this.Eh=0|rA[8],this.El=0|rA[9],this.Fh=0|rA[10],this.Fl=0|rA[11],this.Gh=0|rA[12],this.Gl=0|rA[13],this.Hh=0|rA[14],this.Hl=0|rA[15]}}Q.SHA512_224=NA;class oA extends L{constructor(){super(32),this.Ah=0|QA[0],this.Al=0|QA[1],this.Bh=0|QA[2],this.Bl=0|QA[3],this.Ch=0|QA[4],this.Cl=0|QA[5],this.Dh=0|QA[6],this.Dl=0|QA[7],this.Eh=0|QA[8],this.El=0|QA[9],this.Fh=0|QA[10],this.Fl=0|QA[11],this.Gh=0|QA[12],this.Gl=0|QA[13],this.Hh=0|QA[14],this.Hl=0|QA[15]}}Q.SHA512_256=oA,Q.sha256=(0,I.createHasher)(()=>new v),Q.sha224=(0,I.createHasher)(()=>new B),Q.sha512=(0,I.createHasher)(()=>new L),Q.sha384=(0,I.createHasher)(()=>new P),Q.sha512_256=(0,I.createHasher)(()=>new oA),Q.sha512_224=(0,I.createHasher)(()=>new NA)},3973(eA,Q,f){"use strict";Object.defineProperty(Q,"__esModule",{value:!0}),Q.wrapXOFConstructorWithOpts=Q.wrapConstructorWithOpts=Q.wrapConstructor=Q.Hash=Q.nextTick=Q.swap32IfBE=Q.byteSwapIfBE=Q.swap8IfBE=Q.isLE=void 0,Q.isBytes=g,Q.anumber=I,Q.abytes=N,Q.ahash=function K(HA){if("function"!=typeof HA||"function"!=typeof HA.create)throw new Error("Hash should be wrapped by utils.createHasher");I(HA.outputLen),I(HA.blockLen)},Q.aexists=function v(HA,cA=!0){if(HA.destroyed)throw new Error("Hash instance has been destroyed");if(cA&&HA.finished)throw new Error("Hash#digest() has already been called")},Q.aoutput=function B(HA,cA){N(HA);const J=cA.outputLen;if(HA.length>>cA},Q.rotl=function L(HA,cA){return HA<>>32-cA>>>0},Q.byteSwap=P,Q.byteSwap32=rA,Q.bytesToHex=function oA(HA){if(N(HA),QA)return HA.toHex();let cA="";for(let J=0;J0&&!cA.includes(HA.length))throw new Error("Uint8Array expected of length "+cA+", got length="+HA.length)}function P(HA){return HA<<24&4278190080|HA<<8&16711680|HA>>>8&65280|HA>>>24&255}function rA(HA){for(let cA=0;cAHA:HA=>P(HA),Q.byteSwapIfBE=Q.swap8IfBE,Q.swap32IfBE=Q.isLE?HA=>HA:rA;const QA="function"==typeof Uint8Array.from([]).toHex&&"function"==typeof Uint8Array.fromHex,NA=Array.from({length:256},(HA,cA)=>cA.toString(16).padStart(2,"0"));function dA(HA){return HA>=48&&HA<=57?HA-48:HA>=65&&HA<=70?HA-55:HA>=97&&HA<=102?HA-87:void 0}const nA=function(){var HA=de(function*(){});return function(){return HA.apply(this,arguments)}}();function pA(){return(pA=de(function*(HA,cA,J){let U=Date.now();for(let O=0;O=0&&lAHA().update(wA(U)).digest(),J=HA();return cA.outputLen=J.outputLen,cA.blockLen=J.blockLen,cA.create=()=>HA(),cA}function yA(HA){const cA=(U,O)=>HA(O).update(wA(U)).digest(),J=HA({});return cA.outputLen=J.outputLen,cA.blockLen=J.blockLen,cA.create=U=>HA(U),cA}function xA(HA){const cA=(U,O)=>HA(O).update(wA(U)).digest(),J=HA({});return cA.outputLen=J.outputLen,cA.blockLen=J.blockLen,cA.create=U=>HA(U),cA}Q.nextTick=nA,Q.Hash=class fA{},Q.wrapConstructor=UA,Q.wrapConstructorWithOpts=yA,Q.wrapXOFConstructorWithOpts=xA},7801(eA,Q,f){"use strict";var t=f(9964);function g(X){return(g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(YA){return typeof YA}:function(YA){return YA&&"function"==typeof Symbol&&YA.constructor===Symbol&&YA!==Symbol.prototype?"symbol":typeof YA})(X)}function I(X,YA){for(var KA=0;KA1?KA-1:0),le=1;le1?KA-1:0),le=1;le1?KA-1:0),le=1;le1?KA-1:0),le=1;le"u"||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function oA(cA,J){return(oA=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(O,lA){return O.__proto__=lA,O})(cA,J)}function uA(cA){return(uA=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(U){return U.__proto__||Object.getPrototypeOf(U)})(cA)}function dA(cA){return(dA="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(J){return typeof J}:function(J){return J&&"function"==typeof Symbol&&J.constructor===Symbol&&J!==Symbol.prototype?"symbol":typeof J})(cA)}var nA=f(7187).inspect,pA=f(5403).codes.ERR_INVALID_ARG_TYPE;function z(cA,J,U){return(void 0===U||U>cA.length)&&(U=cA.length),cA.substring(U-J.length,U)===J}var wA="",VA="",kA="",hA="",fA={deepStrictEqual:"Expected values to be strictly deep-equal:",strictEqual:"Expected values to be strictly equal:",strictEqualObject:'Expected "actual" to be reference-equal to "expected":',deepEqual:"Expected values to be loosely deep-equal:",equal:"Expected values to be loosely equal:",notDeepStrictEqual:'Expected "actual" not to be strictly deep-equal to:',notStrictEqual:'Expected "actual" to be strictly unequal to:',notStrictEqualObject:'Expected "actual" not to be reference-equal to "expected":',notDeepEqual:'Expected "actual" not to be loosely deep-equal to:',notEqual:'Expected "actual" to be loosely unequal to:',notIdentical:"Values identical but not reference-equal:"};function yA(cA){var J=Object.keys(cA),U=Object.create(Object.getPrototypeOf(cA));return J.forEach(function(O){U[O]=cA[O]}),Object.defineProperty(U,"message",{value:cA.message}),U}function xA(cA){return nA(cA,{compact:!1,customInspect:!1,depth:1e3,maxArrayLength:1/0,showHidden:!1,breakLength:1/0,showProxy:!1,sorted:!0,getters:!0})}var HA=function(cA,J){!function w(cA,J){if("function"!=typeof J&&null!==J)throw new TypeError("Super expression must either be null or a function");cA.prototype=Object.create(J&&J.prototype,{constructor:{value:cA,writable:!0,configurable:!0}}),Object.defineProperty(cA,"prototype",{writable:!1}),J&&oA(cA,J)}(O,cA);var U=function aA(cA){var J=QA();return function(){var lA,O=uA(cA);if(J){var LA=uA(this).constructor;lA=Reflect.construct(O,arguments,LA)}else lA=O.apply(this,arguments);return AA(this,lA)}}(O);function O(lA){var LA;if(function K(cA,J){if(!(cA instanceof J))throw new TypeError("Cannot call a class as a function")}(this,O),"object"!==dA(lA)||null===lA)throw new pA("options","Object",lA);var JA=lA.message,$A=lA.operator,IA=lA.stackStartFn,gA=lA.actual,C=lA.expected,b=Error.stackTraceLimit;if(Error.stackTraceLimit=0,null!=JA)LA=U.call(this,String(JA));else if(t.stderr&&t.stderr.isTTY&&(t.stderr&&t.stderr.getColorDepth&&1!==t.stderr.getColorDepth()?(wA="\x1b[34m",VA="\x1b[32m",hA="\x1b[39m",kA="\x1b[31m"):(wA="",VA="",hA="",kA="")),"object"===dA(gA)&&null!==gA&&"object"===dA(C)&&null!==C&&"stack"in gA&&gA instanceof Error&&"stack"in C&&C instanceof Error&&(gA=yA(gA),C=yA(C)),"deepStrictEqual"===$A||"strictEqual"===$A)LA=U.call(this,function Ee(cA,J,U){var O="",lA="",LA=0,JA="",$A=!1,IA=xA(cA),gA=IA.split("\n"),C=xA(J).split("\n"),b=0,R="";if("strictEqual"===U&&"object"===dA(cA)&&"object"===dA(J)&&null!==cA&&null!==J&&(U="strictEqualObject"),1===gA.length&&1===C.length&&gA[0]!==C[0]){var M=gA[0].length+C[0].length;if(M<=10){if(!("object"===dA(cA)&&null!==cA||"object"===dA(J)&&null!==J||0===cA&&0===J))return"".concat(fA[U],"\n\n")+"".concat(gA[0]," !== ").concat(C[0],"\n")}else if("strictEqualObject"!==U&&M<(t.stderr&&t.stderr.isTTY?t.stderr.columns:80)){for(;gA[0][b]===C[0][b];)b++;b>2&&(R="\n ".concat(function OA(cA,J){if(J=Math.floor(J),0==cA.length||0==J)return"";var U=cA.length*J;for(J=Math.floor(Math.log(J)/Math.log(2));J;)cA+=cA,J--;return cA+cA.substring(0,U-cA.length)}(" ",b),"^"),b=0)}}for(var X=gA[gA.length-1],YA=C[C.length-1];X===YA&&(b++<2?JA="\n ".concat(X).concat(JA):O=X,gA.pop(),C.pop(),0!==gA.length&&0!==C.length);)X=gA[gA.length-1],YA=C[C.length-1];var KA=Math.max(gA.length,C.length);if(0===KA){var bA=IA.split("\n");if(bA.length>30)for(bA[26]="".concat(wA,"...").concat(hA);bA.length>27;)bA.pop();return"".concat(fA.notIdentical,"\n\n").concat(bA.join("\n"),"\n")}b>3&&(JA="\n".concat(wA,"...").concat(hA).concat(JA),$A=!0),""!==O&&(JA="\n ".concat(O).concat(JA),O="");var le=0,ve=fA[U]+"\n".concat(VA,"+ actual").concat(hA," ").concat(kA,"- expected").concat(hA),Ne=" ".concat(wA,"...").concat(hA," Lines skipped");for(b=0;b1&&b>2&&(Te>4?(lA+="\n".concat(wA,"...").concat(hA),$A=!0):Te>3&&(lA+="\n ".concat(C[b-2]),le++),lA+="\n ".concat(C[b-1]),le++),LA=b,O+="\n".concat(kA,"-").concat(hA," ").concat(C[b]),le++;else if(C.length1&&b>2&&(Te>4?(lA+="\n".concat(wA,"...").concat(hA),$A=!0):Te>3&&(lA+="\n ".concat(gA[b-2]),le++),lA+="\n ".concat(gA[b-1]),le++),LA=b,lA+="\n".concat(VA,"+").concat(hA," ").concat(gA[b]),le++;else{var ze=C[b],Oe=gA[b],oe=Oe!==ze&&(!z(Oe,",")||Oe.slice(0,-1)!==ze);oe&&z(ze,",")&&ze.slice(0,-1)===Oe&&(oe=!1,Oe+=","),oe?(Te>1&&b>2&&(Te>4?(lA+="\n".concat(wA,"...").concat(hA),$A=!0):Te>3&&(lA+="\n ".concat(gA[b-2]),le++),lA+="\n ".concat(gA[b-1]),le++),LA=b,lA+="\n".concat(VA,"+").concat(hA," ").concat(Oe),O+="\n".concat(kA,"-").concat(hA," ").concat(ze),le+=2):(lA+=O,O="",(1===Te||0===b)&&(lA+="\n ".concat(Oe),le++))}if(le>20&&b30)for(M[26]="".concat(wA,"...").concat(hA);M.length>27;)M.pop();LA=U.call(this,1===M.length?"".concat(R," ").concat(M[0]):"".concat(R,"\n\n").concat(M.join("\n"),"\n"))}else{var D=xA(gA),X="",YA=fA[$A];"notDeepEqual"===$A||"notEqual"===$A?(D="".concat(fA[$A],"\n\n").concat(D)).length>1024&&(D="".concat(D.slice(0,1021),"...")):(X="".concat(xA(C)),D.length>512&&(D="".concat(D.slice(0,509),"...")),X.length>512&&(X="".concat(X.slice(0,509),"...")),"deepEqual"===$A||"equal"===$A?D="".concat(YA,"\n\n").concat(D,"\n\nshould equal\n\n"):X=" ".concat($A," ").concat(X)),LA=U.call(this,"".concat(D).concat(X))}return Error.stackTraceLimit=b,LA.generatedMessage=!JA,Object.defineProperty(L(LA),"name",{value:"AssertionError [ERR_ASSERTION]",enumerable:!1,writable:!0,configurable:!0}),LA.code="ERR_ASSERTION",LA.actual=gA,LA.expected=C,LA.operator=$A,Error.captureStackTrace&&Error.captureStackTrace(L(LA),IA),LA.name="AssertionError",AA(LA)}return function B(cA,J,U){J&&v(cA.prototype,J),U&&v(cA,U),Object.defineProperty(cA,"prototype",{writable:!1})}(O,[{key:"toString",value:function(){return"".concat(this.name," [").concat(this.code,"]: ").concat(this.message)}},{key:J,value:function(LA,JA){return nA(this,I(I({},JA),{},{customInspect:!1,depth:0}))}}]),O}(P(Error),nA.custom);eA.exports=HA},5403(eA,Q,f){"use strict";function t(nA){return(t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(H){return typeof H}:function(H){return H&&"function"==typeof Symbol&&H.constructor===Symbol&&H!==Symbol.prototype?"symbol":typeof H})(nA)}function g(nA,H){for(var pA=0;pA"u"||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var OA,z=L(nA);if(H){var wA=L(this).constructor;OA=Reflect.construct(z,arguments,wA)}else OA=z.apply(this,arguments);return function w(nA,H){if(H&&("object"===t(H)||"function"==typeof H))return H;if(void 0!==H)throw new TypeError("Derived constructors may only return object or undefined");return function aA(nA){if(void 0===nA)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return nA}(nA)}(this,OA)}}(kA);function kA(hA,fA,UA){var yA;return function v(nA,H){if(!(nA instanceof H))throw new TypeError("Cannot call a class as a function")}(this,kA),yA=VA.call(this,function z(wA,VA,kA){return"string"==typeof H?H:H(wA,VA,kA)}(hA,fA,UA)),yA.code=nA,yA}return function I(nA,H,pA){return H&&g(nA.prototype,H),pA&&g(nA,pA),Object.defineProperty(nA,"prototype",{writable:!1}),nA}(kA)}(pA);P[nA]=OA}function oA(nA,H){if(Array.isArray(nA)){var pA=nA.length;return nA=nA.map(function(z){return String(z)}),pA>2?"one of ".concat(H," ").concat(nA.slice(0,pA-1).join(", "),", or ")+nA[pA-1]:2===pA?"one of ".concat(H," ").concat(nA[0]," or ").concat(nA[1]):"of ".concat(H," ").concat(nA[0])}return"of ".concat(H," ").concat(String(nA))}NA("ERR_AMBIGUOUS_ARGUMENT",'The "%s" argument is ambiguous. %s',TypeError),NA("ERR_INVALID_ARG_TYPE",function(nA,H,pA){var z,OA;if(void 0===rA&&(rA=f(7801)),rA("string"==typeof nA,"'name' must be a string"),"string"==typeof H&&function uA(nA,H,pA){return nA.substr(!pA||pA<0?0:+pA,H.length)===H}(H,"not ")?(z="must not be",H=H.replace(/^not /,"")):z="must be",function dA(nA,H,pA){return(void 0===pA||pA>nA.length)&&(pA=nA.length),nA.substring(pA-H.length,pA)===H}(nA," argument"))OA="The ".concat(nA," ").concat(z," ").concat(oA(H,"type"));else{var wA=function RA(nA,H,pA){return"number"!=typeof pA&&(pA=0),!(pA+H.length>nA.length)&&-1!==nA.indexOf(H,pA)}(nA,".")?"property":"argument";OA='The "'.concat(nA,'" ').concat(wA," ").concat(z," ").concat(oA(H,"type"))}return OA+". Received type ".concat(t(pA))},TypeError),NA("ERR_INVALID_ARG_VALUE",function(nA,H){var pA=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"is invalid";void 0===QA&&(QA=f(7187));var z=QA.inspect(H);return z.length>128&&(z="".concat(z.slice(0,128),"...")),"The argument '".concat(nA,"' ").concat(pA,". Received ").concat(z)},TypeError,RangeError),NA("ERR_INVALID_RETURN_VALUE",function(nA,H,pA){var z;return z=pA&&pA.constructor&&pA.constructor.name?"instance of ".concat(pA.constructor.name):"type ".concat(t(pA)),"Expected ".concat(nA,' to be returned from the "').concat(H,'"')+" function but got ".concat(z,".")},TypeError),NA("ERR_MISSING_ARGS",function(){for(var nA=arguments.length,H=new Array(nA),pA=0;pA0,"At least one arg needs to be specified");var z="The ",OA=H.length;switch(H=H.map(function(wA){return'"'.concat(wA,'"')}),OA){case 1:z+="".concat(H[0]," argument");break;case 2:z+="".concat(H[0]," and ").concat(H[1]," arguments");break;default:z+=H.slice(0,OA-1).join(", "),z+=", and ".concat(H[OA-1]," arguments")}return"".concat(z," must be specified")},TypeError),eA.exports.codes=P},6781(eA,Q,f){"use strict";function t(oe,sA){return function v(oe){if(Array.isArray(oe))return oe}(oe)||function K(oe,sA){var S=null==oe?null:typeof Symbol<"u"&&oe[Symbol.iterator]||oe["@@iterator"];if(null!=S){var Y,k,m,E,mA=[],ie=!0,DA=!1;try{if(m=(S=S.call(oe)).next,0===sA){if(Object(S)!==S)return;ie=!1}else for(;!(ie=(Y=m.call(S)).done)&&(mA.push(Y.value),mA.length!==sA);ie=!0);}catch(Ae){DA=!0,k=Ae}finally{try{if(!ie&&null!=S.return&&(E=S.return(),Object(E)!==E))return}finally{if(DA)throw k}}return mA}}(oe,sA)||function I(oe,sA){if(oe){if("string"==typeof oe)return N(oe,sA);var S=Object.prototype.toString.call(oe).slice(8,-1);if("Object"===S&&oe.constructor&&(S=oe.constructor.name),"Map"===S||"Set"===S)return Array.from(oe);if("Arguments"===S||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(S))return N(oe,sA)}}(oe,sA)||function g(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function N(oe,sA){(null==sA||sA>oe.length)&&(sA=oe.length);for(var S=0,Y=new Array(sA);S10)return!0;for(var sA=0;sA57)return!0}return 10===oe.length&&oe>=Math.pow(2,32)}function Ee(oe){return Object.keys(oe).filter(xA).concat(AA(oe).filter(Object.prototype.propertyIsEnumerable.bind(oe)))}function HA(oe,sA){if(oe===sA)return 0;for(var S=oe.length,Y=sA.length,k=0,m=Math.min(S,Y);k0?QA-4:QA;for(RA=0;RA>16&255,oA[uA++]=P>>8&255,oA[uA++]=255&P;return 2===NA&&(P=t[L.charCodeAt(RA)]<<2|t[L.charCodeAt(RA+1)]>>4,oA[uA++]=255&P),1===NA&&(P=t[L.charCodeAt(RA)]<<10|t[L.charCodeAt(RA+1)]<<4|t[L.charCodeAt(RA+2)]>>2,oA[uA++]=P>>8&255,oA[uA++]=255&P),oA},Q.fromByteArray=function AA(L){for(var P,rA=L.length,QA=rA%3,NA=[],uA=0,dA=rA-QA;uAdA?dA:uA+16383));return 1===QA?NA.push(f[(P=L[rA-1])>>2]+f[P<<4&63]+"=="):2===QA&&NA.push(f[(P=(L[rA-2]<<8)+L[rA-1])>>10]+f[P>>4&63]+f[P<<2&63]+"="),NA.join("")};for(var f=[],t=[],g=typeof Uint8Array<"u"?Uint8Array:Array,I="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",N=0;N<64;++N)f[N]=I[N],t[I.charCodeAt(N)]=N;function v(L){var P=L.length;if(P%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var rA=L.indexOf("=");return-1===rA&&(rA=P),[rA,rA===P?0:4-rA%4]}function w(L){return f[L>>18&63]+f[L>>12&63]+f[L>>6&63]+f[63&L]}function aA(L,P,rA){for(var NA=[],oA=P;oA0},I.prototype.readMoreInput=function(){if(!(this.bit_end_pos_>256))if(this.eos_){if(this.bit_pos_>this.bit_end_pos_)throw new Error("Unexpected end of input "+this.bit_pos_+" "+this.bit_end_pos_)}else{var N=this.buf_ptr_,K=this.input_.read(this.buf_,N,Q);if(K<0)throw new Error("Unexpected end of input");if(K=8;)this.val_>>>=8,this.val_|=this.buf_[8191&this.pos_]<<24,++this.pos_,this.bit_pos_=this.bit_pos_-8>>>0,this.bit_end_pos_=this.bit_end_pos_-8>>>0},I.prototype.readBits=function(N){32-this.bit_pos_>>this.bit_pos_&g[N];return this.bit_pos_+=N,K},eA.exports=I},7043(eA,Q){Q.lookup=new Uint8Array([0,0,0,0,0,0,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,16,12,12,20,12,16,24,28,12,12,32,12,36,12,44,44,44,44,44,44,44,44,44,44,32,32,24,40,28,12,12,48,52,52,52,48,52,52,52,48,52,52,52,52,52,48,52,52,52,52,52,48,52,52,52,52,52,24,12,28,12,12,12,56,60,60,60,56,60,60,60,56,60,60,60,60,60,56,60,60,60,60,60,56,60,60,60,60,60,24,12,28,12,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,56,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]),Q.lookupOffsets=new Uint16Array([1024,1536,1280,1536,0,256,768,512])},980(eA,Q,f){var g=f(8197).z,I=f(8197).y,N=f(4097),K=f(614),v=f(1561).z,B=f(1561).u,j=f(7043),tA=f(2210),w=f(7984),dA=1080,nA=new Uint8Array([1,2,3,4,0,5,17,6,16,7,8,9,10,11,12,13,14,15]),pA=new Uint8Array([3,2,1,0,3,3,3,3,3,3,2,2,2,2,2,2]),z=new Int8Array([0,0,0,0,-1,1,-2,2,-3,3,-1,1,-2,2,-3,3]),OA=new Uint16Array([256,402,436,468,500,534,566,598,630,662,694,726,758,790,822,854,886,920,952,984,1016,1048,1080]);function wA(gA){var C;return 0===gA.readBits(1)?16:(C=gA.readBits(3))>0?17+C:(C=gA.readBits(3))>0?8+C:17}function VA(gA){if(gA.readBits(1)){var C=gA.readBits(3);return 0===C?1:gA.readBits(C)+(1<1&&0===D)throw new Error("Invalid size byte");C.meta_block_length|=D<<8*M}}else for(M=0;M4&&0===X)throw new Error("Invalid size nibble");C.meta_block_length|=X<<4*M}return++C.meta_block_length,!C.input_end&&!C.is_metadata&&(C.is_uncompressed=gA.readBits(1)),C}function fA(gA,C,b){var M;return b.fillBitWindow(),(M=gA[C+=b.val_>>>b.bit_pos_&255].bits-8)>0&&(b.bit_pos_+=8,C+=gA[C].value,C+=b.val_>>>b.bit_pos_&(1<>=1,++bA;for(YA=0;YA0;++YA){var S,oe=nA[YA],sA=0;R.fillBitWindow(),R.bit_pos_+=Oe[sA+=R.val_>>>R.bit_pos_&15].bits,Ne[oe]=S=Oe[sA].value,0!==S&&(Te-=32>>S,++ze)}if(1!==ze&&0!==Te)throw new Error("[ReadHuffmanCode] invalid num_codes or space");!function UA(gA,C,b,R){for(var M=0,D=8,X=0,YA=0,KA=32768,bA=[],le=0;le<32;le++)bA.push(new v(0,0));for(B(bA,0,5,gA,18);M0;){var Ne,ve=0;if(R.readMoreInput(),R.fillBitWindow(),R.bit_pos_+=bA[ve+=R.val_>>>R.bit_pos_&31].bits,(Ne=255&bA[ve].value)<16)X=0,b[M++]=Ne,0!==Ne&&(D=Ne,KA-=32768>>Ne);else{var ze,Oe,Te=Ne-14,oe=0;if(16===Ne&&(oe=D),YA!==oe&&(X=0,YA=oe),ze=X,X>0&&(X-=2,X<<=Te),M+(Oe=(X+=R.readBits(Te)+3)-ze)>C)throw new Error("[ReadHuffmanCodeLengths] symbol + repeat_delta > num_symbols");for(var sA=0;sA>>5]),this.htrees=new Uint32Array(C)}function U(gA,C){var D,X,b={num_htrees:null,context_map:null},M=0;C.readMoreInput();var YA=b.num_htrees=VA(C)+1,KA=b.context_map=new Uint8Array(gA);if(YA<=1)return b;for(C.readBits(1)&&(M=C.readBits(4)+1),D=[],X=0;X=gA)throw new Error("[DecodeContextMap] i >= context_map_size");KA[X]=0,++X}else KA[X]=bA-M,++X}return C.readBits(1)&&function cA(gA,C){var R,b=new Uint8Array(256);for(R=0;R<256;++R)b[R]=R;for(R=0;R=gA&&(le-=gA),R[b]=le,M[YA+(1&D[KA])]=le,++D[KA]}function lA(gA,C,b,R,M,D){var bA,X=M+1,YA=b&M,KA=D.pos_&N.IBUF_MASK;if(C<8||D.bit_pos_+(C<<3)0;)D.readMoreInput(),R[YA++]=D.readBits(8),YA===X&&(gA.write(R,X),YA=0);else{if(D.bit_end_pos_<32)throw new Error("[CopyUncompressedBlockToOutput] br.bit_end_pos_ < 32");for(;D.bit_pos_<32;)R[YA]=D.val_>>>D.bit_pos_,D.bit_pos_+=8,++YA,--C;if(KA+(bA=D.bit_end_pos_-D.bit_pos_>>3)>N.IBUF_MASK){for(var le=N.IBUF_MASK+1-KA,ve=0;ve=X)for(gA.write(R,X),YA-=X,ve=0;ve=X;){if(D.input_.read(R,YA,bA=X-YA)C.buffer.length){var Gt=new Uint8Array(R+E);Gt.set(C.buffer),C.buffer=Gt}if(M=pn.input_end,mA=pn.is_uncompressed,pn.is_metadata)for(LA(Y);E>0;--E)Y.readMoreInput(),Y.readBits(8);else if(0!==E){if(mA){Y.bit_pos_=Y.bit_pos_+7&-8,lA(C,E,R,le,bA,Y),R+=E;continue}for(b=0;b<3;++b)Ae[b]=VA(Y)+1,Ae[b]>=2&&(yA(Ae[b]+2,sA,b*dA,Y),yA(26,S,b*dA,Y),ie[b]=xA(S,b*dA,Y),MA[b]=1);for(Y.readMoreInput(),_=(1<<(Pe=Y.readBits(2)))-1,be=(At=16+(Y.readBits(4)<0;){var bt,Dt,Ze,qe,Et,ct,Ht,Jt,zA,vA,qA,ZA;for(Y.readMoreInput(),0===ie[1]&&(O(Ae[1],sA,1,DA,pe,MA,Y),ie[1]=xA(S,dA,Y),Qn=oe[1].htrees[DA[1]]),--ie[1],(Dt=(bt=fA(oe[1].codes,Qn,Y))>>6)>=2?(Dt-=2,Ht=-1):Ht=0,qe=tA.kCopyRangeLut[Dt]+(7&bt),Et=tA.kInsertLengthPrefixCode[Ze=tA.kInsertRangeLut[Dt]+(bt>>3&7)].offset+Y.readBits(tA.kInsertLengthPrefixCode[Ze].nbits),ct=tA.kCopyLengthPrefixCode[qe].offset+Y.readBits(tA.kCopyLengthPrefixCode[qe].nbits),ze=le[R-1&bA],Oe=le[R-2&bA],zA=0;zA4?3:ct-2))]],Y))>=At&&(ZA=(Ht-=At)&_,Ht=At+((jA=(2+(1&(Ht>>=Pe))<<(qA=1+(Ht>>1)))-4)+Y.readBits(qA)<(YA=R=K.minDictionaryWordLength&&ct<=K.maxDictionaryWordLength))throw new Error("Invalid backward reference. pos: "+R+" distance: "+Jt+" len: "+ct+" bytes left: "+E);var jA=K.offsetsByLength[ct],ue=Jt-YA-1,WA=K.sizeBitsByLength[ct],ye=ue>>WA;if(jA+=(ue&(1<=ve){C.write(le,KA);for(var Je=0;Je0&&(Ne[3&Te]=Jt,++Te),ct>E)throw new Error("Invalid backward reference. pos: "+R+" distance: "+Jt+" len: "+ct+" bytes left: "+E);for(zA=0;zA>=1;return(K&B-1)+B}function I(K,v,B,j,tA){do{K[v+(j-=B)]=new f(tA.bits,tA.value)}while(j>0)}function N(K,v,B){for(var j=1<0;--nA[AA])I(K,v+P,rA,uA,new f(255&AA,65535&RA[L++])),P=g(P,AA);for(NA=dA-1,QA=-1,AA=B+1,rA=2;AA<=15;++AA,rA<<=1)for(;nA[AA]>0;--nA[AA])(P&NA)!==QA&&(v+=uA,dA+=uA=1<<(oA=N(nA,AA,B)),K[w+(QA=P&NA)]=new f(oA+B&255,v-w-QA&65535)),I(K,v+(P>>B),rA,uA,new f(AA-B&255,65535&RA[L++])),P=g(P,AA);return dA}},2210(eA,Q){function f(t,g){this.offset=t,this.nbits=g}Q.kBlockLengthPrefixCode=[new f(1,2),new f(5,2),new f(9,2),new f(13,2),new f(17,3),new f(25,3),new f(33,3),new f(41,3),new f(49,4),new f(65,4),new f(81,4),new f(97,4),new f(113,5),new f(145,5),new f(177,5),new f(209,5),new f(241,6),new f(305,6),new f(369,7),new f(497,8),new f(753,9),new f(1265,10),new f(2289,11),new f(4337,12),new f(8433,13),new f(16625,24)],Q.kInsertLengthPrefixCode=[new f(0,0),new f(1,0),new f(2,0),new f(3,0),new f(4,0),new f(5,0),new f(6,1),new f(8,1),new f(10,2),new f(14,2),new f(18,3),new f(26,3),new f(34,4),new f(50,4),new f(66,5),new f(98,5),new f(130,6),new f(194,7),new f(322,8),new f(578,9),new f(1090,10),new f(2114,12),new f(6210,14),new f(22594,24)],Q.kCopyLengthPrefixCode=[new f(2,0),new f(3,0),new f(4,0),new f(5,0),new f(6,0),new f(7,0),new f(8,0),new f(9,0),new f(10,1),new f(12,1),new f(14,2),new f(18,2),new f(22,3),new f(30,3),new f(38,4),new f(54,4),new f(70,5),new f(102,5),new f(134,6),new f(198,7),new f(326,8),new f(582,9),new f(1094,10),new f(2118,24)],Q.kInsertRangeLut=[0,0,8,8,0,16,8,16,16],Q.kCopyRangeLut=[0,8,0,8,16,0,16,8,16]},8197(eA,Q){function f(g){this.buffer=g,this.pos=0}function t(g){this.buffer=g,this.pos=0}f.prototype.read=function(g,I,N){this.pos+N>this.buffer.length&&(N=this.buffer.length-this.pos);for(var K=0;Kthis.buffer.length)throw new Error("Output buffer is not large enough");return this.buffer.set(g.subarray(0,I),this.pos),this.pos+=I,I},Q.y=t},7984(eA,Q,f){var t=f(614),L=11;function H(OA,wA,VA){this.prefix=new Uint8Array(OA.length),this.transform=wA,this.suffix=new Uint8Array(VA.length);for(var kA=0;kA'),new H("",0,"\n"),new H("",3,""),new H("",0,"]"),new H("",0," for "),new H("",14,""),new H("",2,""),new H("",0," a "),new H("",0," that "),new H(" ",10,""),new H("",0,". "),new H(".",0,""),new H(" ",0,", "),new H("",15,""),new H("",0," with "),new H("",0,"'"),new H("",0," from "),new H("",0," by "),new H("",16,""),new H("",17,""),new H(" the ",0,""),new H("",4,""),new H("",0,". The "),new H("",L,""),new H("",0," on "),new H("",0," as "),new H("",0," is "),new H("",7,""),new H("",1,"ing "),new H("",0,"\n\t"),new H("",0,":"),new H(" ",0,". "),new H("",0,"ed "),new H("",20,""),new H("",18,""),new H("",6,""),new H("",0,"("),new H("",10,", "),new H("",8,""),new H("",0," at "),new H("",0,"ly "),new H(" the ",0," of "),new H("",5,""),new H("",9,""),new H(" ",10,", "),new H("",10,'"'),new H(".",0,"("),new H("",L," "),new H("",10,'">'),new H("",0,'="'),new H(" ",0,"."),new H(".com/",0,""),new H(" the ",0," of the "),new H("",10,"'"),new H("",0,". This "),new H("",0,","),new H(".",0," "),new H("",10,"("),new H("",10,"."),new H("",0," not "),new H(" ",0,'="'),new H("",0,"er "),new H(" ",L," "),new H("",0,"al "),new H(" ",L,""),new H("",0,"='"),new H("",L,'"'),new H("",10,". "),new H(" ",0,"("),new H("",0,"ful "),new H(" ",10,". "),new H("",0,"ive "),new H("",0,"less "),new H("",L,"'"),new H("",0,"est "),new H(" ",10,"."),new H("",L,'">'),new H(" ",0,"='"),new H("",10,","),new H("",0,"ize "),new H("",L,"."),new H("\xc2\xa0",0,""),new H(" ",0,","),new H("",10,'="'),new H("",L,'="'),new H("",0,"ous "),new H("",L,", "),new H("",10,"='"),new H(" ",10,","),new H(" ",L,'="'),new H(" ",L,", "),new H("",L,","),new H("",L,"("),new H("",L,". "),new H(" ",L,"."),new H("",L,"='"),new H(" ",L,". "),new H(" ",10,'="'),new H(" ",L,"='"),new H(" ",10,"='")];function z(OA,wA){return OA[wA]<192?(OA[wA]>=97&&OA[wA]<=122&&(OA[wA]^=32),1):OA[wA]<224?(OA[wA+1]^=32,2):(OA[wA+2]^=5,3)}Q.kTransforms=pA,Q.kNumTransforms=pA.length,Q.transformDictionaryWord=function(OA,wA,VA,kA,hA){var cA,fA=pA[hA].prefix,UA=pA[hA].suffix,yA=pA[hA].transform,xA=yA<12?0:yA-11,Ee=0,HA=wA;xA>kA&&(xA=kA);for(var J=0;J0;){var U=z(OA,cA);cA+=U,kA-=U}for(var O=0;OQ.UNZIP)throw new TypeError("Bad argument");this.dictionary=null,this.err=0,this.flush=0,this.init_done=!1,this.level=0,this.memLevel=0,this.mode=AA,this.strategy=0,this.windowBits=0,this.write_in_progress=!1,this.pending_close=!1,this.gzip_id_bytes_read=0}Q.NONE=0,Q.DEFLATE=1,Q.INFLATE=2,Q.GZIP=3,Q.GUNZIP=4,Q.DEFLATERAW=5,Q.INFLATERAW=6,Q.UNZIP=7,aA.prototype.close=function(){this.write_in_progress?this.pending_close=!0:(this.pending_close=!1,I(this.init_done,"close before init"),I(this.mode<=Q.UNZIP),this.mode===Q.DEFLATE||this.mode===Q.GZIP||this.mode===Q.DEFLATERAW?K.deflateEnd(this.strm):(this.mode===Q.INFLATE||this.mode===Q.GUNZIP||this.mode===Q.INFLATERAW||this.mode===Q.UNZIP)&&v.inflateEnd(this.strm),this.mode=Q.NONE,this.dictionary=null)},aA.prototype.write=function(AA,L,P,rA,QA,NA,oA){return this._write(!0,AA,L,P,rA,QA,NA,oA)},aA.prototype.writeSync=function(AA,L,P,rA,QA,NA,oA){return this._write(!1,AA,L,P,rA,QA,NA,oA)},aA.prototype._write=function(AA,L,P,rA,QA,NA,oA,uA){if(I.equal(arguments.length,8),I(this.init_done,"write before init"),I(this.mode!==Q.NONE,"already finalized"),I.equal(!1,this.write_in_progress,"write already in progress"),I.equal(!1,this.pending_close,"close is pending"),this.write_in_progress=!0,I.equal(!1,void 0===L,"must provide flush value"),this.write_in_progress=!0,L!==Q.Z_NO_FLUSH&&L!==Q.Z_PARTIAL_FLUSH&&L!==Q.Z_SYNC_FLUSH&&L!==Q.Z_FULL_FLUSH&&L!==Q.Z_FINISH&&L!==Q.Z_BLOCK)throw new Error("Invalid flush value");if(null==P&&(P=t.alloc(0),QA=0,rA=0),this.strm.avail_in=QA,this.strm.input=P,this.strm.next_in=rA,this.strm.avail_out=uA,this.strm.output=NA,this.strm.next_out=oA,this.flush=L,!AA)return this._process(),this._checkError()?this._afterSync():void 0;var dA=this;return g.nextTick(function(){dA._process(),dA._after()}),this},aA.prototype._afterSync=function(){var AA=this.strm.avail_out,L=this.strm.avail_in;return this.write_in_progress=!1,[L,AA]},aA.prototype._process=function(){var AA=null;switch(this.mode){case Q.DEFLATE:case Q.GZIP:case Q.DEFLATERAW:this.err=K.deflate(this.strm,this.flush);break;case Q.UNZIP:switch(this.strm.avail_in>0&&(AA=this.strm.next_in),this.gzip_id_bytes_read){case 0:if(null===AA)break;if(31!==this.strm.input[AA]){this.mode=Q.INFLATE;break}if(this.gzip_id_bytes_read=1,AA++,1===this.strm.avail_in)break;case 1:if(null===AA)break;139===this.strm.input[AA]?(this.gzip_id_bytes_read=2,this.mode=Q.GUNZIP):this.mode=Q.INFLATE;break;default:throw new Error("invalid number of gzip magic number bytes read")}case Q.INFLATE:case Q.GUNZIP:case Q.INFLATERAW:for(this.err=v.inflate(this.strm,this.flush),this.err===Q.Z_NEED_DICT&&this.dictionary&&(this.err=v.inflateSetDictionary(this.strm,this.dictionary),this.err===Q.Z_OK?this.err=v.inflate(this.strm,this.flush):this.err===Q.Z_DATA_ERROR&&(this.err=Q.Z_NEED_DICT));this.strm.avail_in>0&&this.mode===Q.GUNZIP&&this.err===Q.Z_STREAM_END&&0!==this.strm.next_in[0];)this.reset(),this.err=v.inflate(this.strm,this.flush);break;default:throw new Error("Unknown mode "+this.mode)}},aA.prototype._checkError=function(){switch(this.err){case Q.Z_OK:case Q.Z_BUF_ERROR:if(0!==this.strm.avail_out&&this.flush===Q.Z_FINISH)return this._error("unexpected end of file"),!1;break;case Q.Z_STREAM_END:break;case Q.Z_NEED_DICT:return this._error(null==this.dictionary?"Missing dictionary":"Bad dictionary"),!1;default:return this._error("Zlib error"),!1}return!0},aA.prototype._after=function(){if(this._checkError()){var AA=this.strm.avail_out,L=this.strm.avail_in;this.write_in_progress=!1,this.callback(L,AA),this.pending_close&&this.close()}},aA.prototype._error=function(AA){this.strm.msg&&(AA=this.strm.msg),this.onerror(AA,this.err),this.write_in_progress=!1,this.pending_close&&this.close()},aA.prototype.init=function(AA,L,P,rA,QA){I(4===arguments.length||5===arguments.length,"init(windowBits, level, memLevel, strategy, [dictionary])"),I(AA>=8&&AA<=15,"invalid windowBits"),I(L>=-1&&L<=9,"invalid compression level"),I(P>=1&&P<=9,"invalid memlevel"),I(rA===Q.Z_FILTERED||rA===Q.Z_HUFFMAN_ONLY||rA===Q.Z_RLE||rA===Q.Z_FIXED||rA===Q.Z_DEFAULT_STRATEGY,"invalid strategy"),this._init(L,AA,P,rA,QA),this._setDictionary()},aA.prototype.params=function(){throw new Error("deflateParams Not supported")},aA.prototype.reset=function(){this._reset(),this._setDictionary()},aA.prototype._init=function(AA,L,P,rA,QA){switch(this.level=AA,this.windowBits=L,this.memLevel=P,this.strategy=rA,this.flush=Q.Z_NO_FLUSH,this.err=Q.Z_OK,(this.mode===Q.GZIP||this.mode===Q.GUNZIP)&&(this.windowBits+=16),this.mode===Q.UNZIP&&(this.windowBits+=32),(this.mode===Q.DEFLATERAW||this.mode===Q.INFLATERAW)&&(this.windowBits=-1*this.windowBits),this.strm=new N,this.mode){case Q.DEFLATE:case Q.GZIP:case Q.DEFLATERAW:this.err=K.deflateInit2(this.strm,this.level,Q.Z_DEFLATED,this.windowBits,this.memLevel,this.strategy);break;case Q.INFLATE:case Q.GUNZIP:case Q.INFLATERAW:case Q.UNZIP:this.err=v.inflateInit2(this.strm,this.windowBits);break;default:throw new Error("Unknown mode "+this.mode)}this.err!==Q.Z_OK&&this._error("Init error"),this.dictionary=QA,this.write_in_progress=!1,this.init_done=!0},aA.prototype._setDictionary=function(){if(null!=this.dictionary){switch(this.err=Q.Z_OK,this.mode){case Q.DEFLATE:case Q.DEFLATERAW:this.err=K.deflateSetDictionary(this.strm,this.dictionary)}this.err!==Q.Z_OK&&this._error("Failed to set dictionary")}},aA.prototype._reset=function(){switch(this.err=Q.Z_OK,this.mode){case Q.DEFLATE:case Q.DEFLATERAW:case Q.GZIP:this.err=K.deflateReset(this.strm);break;case Q.INFLATE:case Q.INFLATERAW:case Q.GUNZIP:this.err=v.inflateReset(this.strm)}this.err!==Q.Z_OK&&this._error("Failed to reset stream")},Q.Zlib=aA},6729(eA,Q,f){"use strict";var t=f(9964),g=f(783).Buffer,I=f(9760).Transform,N=f(2908),K=f(7187),v=f(7801).ok,B=f(783).kMaxLength,j="Cannot create final Buffer. It would be larger than 0x"+B.toString(16)+" bytes";N.Z_MIN_WINDOWBITS=8,N.Z_MAX_WINDOWBITS=15,N.Z_DEFAULT_WINDOWBITS=15,N.Z_MIN_CHUNK=64,N.Z_MAX_CHUNK=1/0,N.Z_DEFAULT_CHUNK=16384,N.Z_MIN_MEMLEVEL=1,N.Z_MAX_MEMLEVEL=9,N.Z_DEFAULT_MEMLEVEL=8,N.Z_MIN_LEVEL=-1,N.Z_MAX_LEVEL=9,N.Z_DEFAULT_LEVEL=N.Z_DEFAULT_COMPRESSION;for(var tA=Object.keys(N),w=0;w=B?J=new RangeError(j):cA=g.concat(UA,yA),UA=[],kA.close(),fA(J,cA)}kA.on("error",function Ee(cA){kA.removeListener("end",HA),kA.removeListener("readable",xA),fA(cA)}),kA.on("end",HA),kA.end(hA),xA()}function NA(kA,hA){if("string"==typeof hA&&(hA=g.from(hA)),!g.isBuffer(hA))throw new TypeError("Not a string or buffer");return kA._processChunk(hA,kA._finishFlushFlag)}function oA(kA){if(!(this instanceof oA))return new oA(kA);OA.call(this,kA,N.DEFLATE)}function uA(kA){if(!(this instanceof uA))return new uA(kA);OA.call(this,kA,N.INFLATE)}function dA(kA){if(!(this instanceof dA))return new dA(kA);OA.call(this,kA,N.GZIP)}function RA(kA){if(!(this instanceof RA))return new RA(kA);OA.call(this,kA,N.GUNZIP)}function nA(kA){if(!(this instanceof nA))return new nA(kA);OA.call(this,kA,N.DEFLATERAW)}function H(kA){if(!(this instanceof H))return new H(kA);OA.call(this,kA,N.INFLATERAW)}function pA(kA){if(!(this instanceof pA))return new pA(kA);OA.call(this,kA,N.UNZIP)}function z(kA){return kA===N.Z_NO_FLUSH||kA===N.Z_PARTIAL_FLUSH||kA===N.Z_SYNC_FLUSH||kA===N.Z_FULL_FLUSH||kA===N.Z_FINISH||kA===N.Z_BLOCK}function OA(kA,hA){var fA=this;if(this._opts=kA=kA||{},this._chunkSize=kA.chunkSize||Q.Z_DEFAULT_CHUNK,I.call(this,kA),kA.flush&&!z(kA.flush))throw new Error("Invalid flush flag: "+kA.flush);if(kA.finishFlush&&!z(kA.finishFlush))throw new Error("Invalid flush flag: "+kA.finishFlush);if(this._flushFlag=kA.flush||N.Z_NO_FLUSH,this._finishFlushFlag=typeof kA.finishFlush<"u"?kA.finishFlush:N.Z_FINISH,kA.chunkSize&&(kA.chunkSizeQ.Z_MAX_CHUNK))throw new Error("Invalid chunk size: "+kA.chunkSize);if(kA.windowBits&&(kA.windowBitsQ.Z_MAX_WINDOWBITS))throw new Error("Invalid windowBits: "+kA.windowBits);if(kA.level&&(kA.levelQ.Z_MAX_LEVEL))throw new Error("Invalid compression level: "+kA.level);if(kA.memLevel&&(kA.memLevelQ.Z_MAX_MEMLEVEL))throw new Error("Invalid memLevel: "+kA.memLevel);if(kA.strategy&&kA.strategy!=Q.Z_FILTERED&&kA.strategy!=Q.Z_HUFFMAN_ONLY&&kA.strategy!=Q.Z_RLE&&kA.strategy!=Q.Z_FIXED&&kA.strategy!=Q.Z_DEFAULT_STRATEGY)throw new Error("Invalid strategy: "+kA.strategy);if(kA.dictionary&&!g.isBuffer(kA.dictionary))throw new Error("Invalid dictionary: it should be a Buffer instance");this._handle=new N.Zlib(hA);var UA=this;this._hadError=!1,this._handle.onerror=function(Ee,HA){wA(UA),UA._hadError=!0;var cA=new Error(Ee);cA.errno=HA,cA.code=Q.codes[HA],UA.emit("error",cA)};var yA=Q.Z_DEFAULT_COMPRESSION;"number"==typeof kA.level&&(yA=kA.level);var xA=Q.Z_DEFAULT_STRATEGY;"number"==typeof kA.strategy&&(xA=kA.strategy),this._handle.init(kA.windowBits||Q.Z_DEFAULT_WINDOWBITS,yA,kA.memLevel||Q.Z_DEFAULT_MEMLEVEL,xA,kA.dictionary),this._buffer=g.allocUnsafe(this._chunkSize),this._offset=0,this._level=yA,this._strategy=xA,this.once("end",this.close),Object.defineProperty(this,"_closed",{get:function(){return!fA._handle},configurable:!0,enumerable:!0})}function wA(kA,hA){hA&&t.nextTick(hA),kA._handle&&(kA._handle.close(),kA._handle=null)}function VA(kA){kA.emit("close")}Object.defineProperty(Q,"codes",{enumerable:!0,value:Object.freeze(AA),writable:!1}),Q.Deflate=oA,Q.Inflate=uA,Q.Gzip=dA,Q.Gunzip=RA,Q.DeflateRaw=nA,Q.InflateRaw=H,Q.Unzip=pA,Q.createDeflate=function(kA){return new oA(kA)},Q.createInflate=function(kA){return new uA(kA)},Q.createDeflateRaw=function(kA){return new nA(kA)},Q.createInflateRaw=function(kA){return new H(kA)},Q.createGzip=function(kA){return new dA(kA)},Q.createGunzip=function(kA){return new RA(kA)},Q.createUnzip=function(kA){return new pA(kA)},Q.deflate=function(kA,hA,fA){return"function"==typeof hA&&(fA=hA,hA={}),QA(new oA(hA),kA,fA)},Q.deflateSync=function(kA,hA){return NA(new oA(hA),kA)},Q.gzip=function(kA,hA,fA){return"function"==typeof hA&&(fA=hA,hA={}),QA(new dA(hA),kA,fA)},Q.gzipSync=function(kA,hA){return NA(new dA(hA),kA)},Q.deflateRaw=function(kA,hA,fA){return"function"==typeof hA&&(fA=hA,hA={}),QA(new nA(hA),kA,fA)},Q.deflateRawSync=function(kA,hA){return NA(new nA(hA),kA)},Q.unzip=function(kA,hA,fA){return"function"==typeof hA&&(fA=hA,hA={}),QA(new pA(hA),kA,fA)},Q.unzipSync=function(kA,hA){return NA(new pA(hA),kA)},Q.inflate=function(kA,hA,fA){return"function"==typeof hA&&(fA=hA,hA={}),QA(new uA(hA),kA,fA)},Q.inflateSync=function(kA,hA){return NA(new uA(hA),kA)},Q.gunzip=function(kA,hA,fA){return"function"==typeof hA&&(fA=hA,hA={}),QA(new RA(hA),kA,fA)},Q.gunzipSync=function(kA,hA){return NA(new RA(hA),kA)},Q.inflateRaw=function(kA,hA,fA){return"function"==typeof hA&&(fA=hA,hA={}),QA(new H(hA),kA,fA)},Q.inflateRawSync=function(kA,hA){return NA(new H(hA),kA)},K.inherits(OA,I),OA.prototype.params=function(kA,hA,fA){if(kAQ.Z_MAX_LEVEL)throw new RangeError("Invalid compression level: "+kA);if(hA!=Q.Z_FILTERED&&hA!=Q.Z_HUFFMAN_ONLY&&hA!=Q.Z_RLE&&hA!=Q.Z_FIXED&&hA!=Q.Z_DEFAULT_STRATEGY)throw new TypeError("Invalid strategy: "+hA);if(this._level!==kA||this._strategy!==hA){var UA=this;this.flush(N.Z_SYNC_FLUSH,function(){v(UA._handle,"zlib binding closed"),UA._handle.params(kA,hA),UA._hadError||(UA._level=kA,UA._strategy=hA,fA&&fA())})}else t.nextTick(fA)},OA.prototype.reset=function(){return v(this._handle,"zlib binding closed"),this._handle.reset()},OA.prototype._flush=function(kA){this._transform(g.alloc(0),"",kA)},OA.prototype.flush=function(kA,hA){var fA=this,UA=this._writableState;("function"==typeof kA||void 0===kA&&!hA)&&(hA=kA,kA=N.Z_FULL_FLUSH),UA.ended?hA&&t.nextTick(hA):UA.ending?hA&&this.once("end",hA):UA.needDrain?hA&&this.once("drain",function(){return fA.flush(kA,hA)}):(this._flushFlag=kA,this.write(g.alloc(0),"",hA))},OA.prototype.close=function(kA){wA(this,kA),t.nextTick(VA,this)},OA.prototype._transform=function(kA,hA,fA){var UA,yA=this._writableState,Ee=(yA.ending||yA.ended)&&(!kA||yA.length===kA.length);return null===kA||g.isBuffer(kA)?this._handle?(Ee?UA=this._finishFlushFlag:(UA=this._flushFlag,kA.length>=yA.length&&(this._flushFlag=this._opts.flush||N.Z_NO_FLUSH)),void this._processChunk(kA,UA,fA)):fA(new Error("zlib binding closed")):fA(new Error("invalid input"))},OA.prototype._processChunk=function(kA,hA,fA){var UA=kA&&kA.length,yA=this._chunkSize-this._offset,xA=0,Ee=this,HA="function"==typeof fA;if(!HA){var U,cA=[],J=0;this.on("error",function($A){U=$A}),v(this._handle,"zlib binding closed");do{var O=this._handle.writeSync(hA,kA,xA,UA,this._buffer,this._offset,yA)}while(!this._hadError&&JA(O[0],O[1]));if(this._hadError)throw U;if(J>=B)throw wA(this),new RangeError(j);var lA=g.concat(cA,J);return wA(this),lA}v(this._handle,"zlib binding closed");var LA=this._handle.write(hA,kA,xA,UA,this._buffer,this._offset,yA);function JA($A,IA){if(this&&(this.buffer=null,this.callback=null),!Ee._hadError){var gA=yA-IA;if(v(gA>=0,"have should not go down"),gA>0){var C=Ee._buffer.slice(Ee._offset,Ee._offset+gA);Ee._offset+=gA,HA?Ee.push(C):(cA.push(C),J+=C.length)}if((0===IA||Ee._offset>=Ee._chunkSize)&&(yA=Ee._chunkSize,Ee._offset=0,Ee._buffer=g.allocUnsafe(Ee._chunkSize)),0===IA){if(xA+=UA-$A,UA=$A,!HA)return!0;var b=Ee._handle.write(hA,kA,xA,UA,Ee._buffer,Ee._offset,Ee._chunkSize);return b.callback=JA,void(b.buffer=kA)}if(!HA)return!1;fA()}}LA.buffer=kA,LA.callback=JA},K.inherits(oA,OA),K.inherits(uA,OA),K.inherits(dA,OA),K.inherits(RA,OA),K.inherits(nA,OA),K.inherits(H,OA),K.inherits(pA,OA)},7802(eA,Q,f){"use strict";var t=f(5049),g=f(3036),I=f(78),N=f(1909);eA.exports=N||t.call(I,g)},8619(eA,Q,f){"use strict";var t=f(5049),g=f(3036),I=f(7802);eA.exports=function(){return I(t,g,arguments)}},3036(eA){"use strict";eA.exports=Function.prototype.apply},78(eA){"use strict";eA.exports=Function.prototype.call},6688(eA,Q,f){"use strict";var t=f(5049),g=f(6785),I=f(78),N=f(7802);eA.exports=function(v){if(v.length<1||"function"!=typeof v[0])throw new g("a function is required");return N(t,I,v)}},1909(eA){"use strict";eA.exports=typeof Reflect<"u"&&Reflect&&Reflect.apply},7913(eA,Q,f){"use strict";var t=f(8651),g=f(6601),I=g(t("String.prototype.indexOf"));eA.exports=function(K,v){var B=t(K,!!v);return"function"==typeof B&&I(K,".prototype.")>-1?g(B):B}},6601(eA,Q,f){"use strict";var t=f(6255),g=f(6649),I=f(6688),N=f(8619);eA.exports=function(v){var B=I(arguments),j=1+v.length-(arguments.length-1);return t(B,j>0?j:0,!0)},g?g(eA.exports,"apply",{value:N}):eA.exports.apply=N},2774(eA,Q,f){"use strict";var t=f(8651),g=f(6688),I=g([t("%String.prototype.indexOf%")]);eA.exports=function(K,v){var B=t(K,!!v);return"function"==typeof B&&I(K,".prototype.")>-1?g([B]):B}},1613(eA,Q,f){var t=f(783).Buffer,g=function(){"use strict";function I(L,P){return null!=P&&L instanceof P}var N,K,v;try{N=Map}catch{N=function(){}}try{K=Set}catch{K=function(){}}try{v=Promise}catch{v=function(){}}function B(L,P,rA,QA,NA){"object"==typeof P&&(rA=P.depth,QA=P.prototype,NA=P.includeNonEnumerable,P=P.circular);var oA=[],uA=[],dA=typeof t<"u";return typeof P>"u"&&(P=!0),typeof rA>"u"&&(rA=1/0),function RA(nA,H){if(null===nA)return null;if(0===H)return nA;var pA,z;if("object"!=typeof nA)return nA;if(I(nA,N))pA=new N;else if(I(nA,K))pA=new K;else if(I(nA,v))pA=new v(function(xA,Ee){nA.then(function(HA){xA(RA(HA,H-1))},function(HA){Ee(RA(HA,H-1))})});else if(B.__isArray(nA))pA=[];else if(B.__isRegExp(nA))pA=new RegExp(nA.source,AA(nA)),nA.lastIndex&&(pA.lastIndex=nA.lastIndex);else if(B.__isDate(nA))pA=new Date(nA.getTime());else{if(dA&&t.isBuffer(nA))return pA=t.allocUnsafe?t.allocUnsafe(nA.length):new t(nA.length),nA.copy(pA),pA;I(nA,Error)?pA=Object.create(nA):typeof QA>"u"?(z=Object.getPrototypeOf(nA),pA=Object.create(z)):(pA=Object.create(QA),z=QA)}if(P){var OA=oA.indexOf(nA);if(-1!=OA)return uA[OA];oA.push(nA),uA.push(pA)}for(var wA in I(nA,N)&&nA.forEach(function(xA,Ee){var HA=RA(Ee,H-1),cA=RA(xA,H-1);pA.set(HA,cA)}),I(nA,K)&&nA.forEach(function(xA){var Ee=RA(xA,H-1);pA.add(Ee)}),nA){var VA;z&&(VA=Object.getOwnPropertyDescriptor(z,wA)),(!VA||null!=VA.set)&&(pA[wA]=RA(nA[wA],H-1))}if(Object.getOwnPropertySymbols){var kA=Object.getOwnPropertySymbols(nA);for(wA=0;wA3&&"boolean"!=typeof arguments[3]&&null!==arguments[3])throw new I("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!=typeof arguments[4]&&null!==arguments[4])throw new I("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!=typeof arguments[5]&&null!==arguments[5])throw new I("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!=typeof arguments[6])throw new I("`loose`, if provided, must be a boolean");var tA=arguments.length>3?arguments[3]:null,w=arguments.length>4?arguments[4]:null,aA=arguments.length>5?arguments[5]:null,AA=arguments.length>6&&arguments[6],L=!!N&&N(v,B);if(t)t(v,B,{configurable:null===aA&&L?L.configurable:!aA,enumerable:null===tA&&L?L.enumerable:!tA,value:j,writable:null===w&&L?L.writable:!w});else{if(!AA&&(tA||w||aA))throw new g("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");v[B]=j}}},5421(eA,Q,f){"use strict";var t=f(5643),g="function"==typeof Symbol&&"symbol"==typeof Symbol("foo"),I=Object.prototype.toString,N=Array.prototype.concat,K=f(9295),B=f(8890)(),j=function(w,aA,AA,L){if(aA in w)if(!0===L){if(w[aA]===AA)return}else if(!function(w){return"function"==typeof w&&"[object Function]"===I.call(w)}(L)||!L())return;B?K(w,aA,AA,!0):K(w,aA,AA)},tA=function(w,aA){var AA=arguments.length>2?arguments[2]:{},L=t(aA);g&&(L=N.call(L,Object.getOwnPropertySymbols(aA)));for(var P=0;P0&&z.length>H&&!z.warned){z.warned=!0;var OA=new Error("Possible EventEmitter memory leak detected. "+z.length+" "+String(dA)+" listeners added. Use emitter.setMaxListeners() to increase limit");OA.name="MaxListenersExceededWarning",OA.emitter=uA,OA.type=dA,OA.count=z.length,function g(uA){console&&console.warn&&console.warn(uA)}(OA)}return uA}function tA(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function w(uA,dA,RA){var nA={fired:!1,wrapFn:void 0,target:uA,type:dA,listener:RA},H=tA.bind(nA);return H.listener=RA,nA.wrapFn=H,H}function aA(uA,dA,RA){var nA=uA._events;if(void 0===nA)return[];var H=nA[dA];return void 0===H?[]:"function"==typeof H?RA?[H.listener||H]:[H]:RA?function rA(uA){for(var dA=new Array(uA.length),RA=0;RA0&&(z=RA[0]),z instanceof Error)throw z;var OA=new Error("Unhandled error."+(z?" ("+z.message+")":""));throw OA.context=z,OA}var wA=pA[dA];if(void 0===wA)return!1;if("function"==typeof wA)f(wA,this,RA);else{var VA=wA.length,kA=L(wA,VA);for(nA=0;nA=0;z--)if(nA[z]===RA||nA[z].listener===RA){OA=nA[z].listener,pA=z;break}if(pA<0)return this;0===pA?nA.shift():function P(uA,dA){for(;dA+1=0;H--)this.removeListener(dA,RA[H]);return this},N.prototype.listeners=function(dA){return aA(this,dA,!0)},N.prototype.rawListeners=function(dA){return aA(this,dA,!1)},N.listenerCount=function(uA,dA){return"function"==typeof uA.listenerCount?uA.listenerCount(dA):AA.call(uA,dA)},N.prototype.listenerCount=AA,N.prototype.eventNames=function(){return this._eventsCount>0?t(this._events):[]}},2022(eA,Q,f){"use strict";eA.exports=function(){if("object"==typeof globalThis)return globalThis;var t;try{t=this||new Function("return this")()}catch{if("object"==typeof window)return window;if("object"==typeof self)return self;if(typeof f.g<"u")return f.g}return t}()},453(eA){"use strict";eA.exports=function Q(f,t){if(f===t)return!0;if(f&&t&&"object"==typeof f&&"object"==typeof t){if(f.constructor!==t.constructor)return!1;var g,I,N;if(Array.isArray(f)){if((g=f.length)!=t.length)return!1;for(I=g;0!==I--;)if(!Q(f[I],t[I]))return!1;return!0}if(f.constructor===RegExp)return f.source===t.source&&f.flags===t.flags;if(f.valueOf!==Object.prototype.valueOf)return f.valueOf()===t.valueOf();if(f.toString!==Object.prototype.toString)return f.toString()===t.toString();if((g=(N=Object.keys(f)).length)!==Object.keys(t).length)return!1;for(I=g;0!==I--;)if(!Object.prototype.hasOwnProperty.call(t,N[I]))return!1;for(I=g;0!==I--;){var K=N[I];if(!Q(f[K],t[K]))return!1}return!0}return f!=f&&t!=t}},8404(eA,Q,f){"use strict";var t=f(3746),g=Object.prototype.toString,I=Object.prototype.hasOwnProperty;eA.exports=function(tA,w,aA){if(!t(w))throw new TypeError("iterator must be a function");var AA;arguments.length>=3&&(AA=aA),function B(j){return"[object Array]"===g.call(j)}(tA)?function(tA,w,aA){for(var AA=0,L=tA.length;AAQ},8651(eA,Q,f){"use strict";var t,g=f(5846),I=f(5293),N=f(9055),K=f(8888),v=f(7900),B=f(7770),j=f(6785),tA=f(4055),w=f(716),aA=f(7450),AA=f(3774),L=f(7552),P=f(5874),rA=f(9292),QA=f(6071),NA=Function,oA=function(gA){try{return NA('"use strict"; return ('+gA+").constructor;")()}catch{}},uA=f(8109),dA=f(6649),RA=function(){throw new j},nA=uA?function(){try{return RA}catch{try{return uA(arguments,"callee").get}catch{return RA}}}():RA,H=f(3257)(),pA=f(7106),z=f(3766),OA=f(6822),wA=f(3036),VA=f(78),kA={},hA=typeof Uint8Array>"u"||!pA?t:pA(Uint8Array),fA={__proto__:null,"%AggregateError%":typeof AggregateError>"u"?t:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?t:ArrayBuffer,"%ArrayIteratorPrototype%":H&&pA?pA([][Symbol.iterator]()):t,"%AsyncFromSyncIteratorPrototype%":t,"%AsyncFunction%":kA,"%AsyncGenerator%":kA,"%AsyncGeneratorFunction%":kA,"%AsyncIteratorPrototype%":kA,"%Atomics%":typeof Atomics>"u"?t:Atomics,"%BigInt%":typeof BigInt>"u"?t:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?t:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?t:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?t:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":I,"%eval%":eval,"%EvalError%":N,"%Float16Array%":typeof Float16Array>"u"?t:Float16Array,"%Float32Array%":typeof Float32Array>"u"?t:Float32Array,"%Float64Array%":typeof Float64Array>"u"?t:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?t:FinalizationRegistry,"%Function%":NA,"%GeneratorFunction%":kA,"%Int8Array%":typeof Int8Array>"u"?t:Int8Array,"%Int16Array%":typeof Int16Array>"u"?t:Int16Array,"%Int32Array%":typeof Int32Array>"u"?t:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":H&&pA?pA(pA([][Symbol.iterator]())):t,"%JSON%":"object"==typeof JSON?JSON:t,"%Map%":typeof Map>"u"?t:Map,"%MapIteratorPrototype%":typeof Map>"u"||!H||!pA?t:pA((new Map)[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":g,"%Object.getOwnPropertyDescriptor%":uA,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?t:Promise,"%Proxy%":typeof Proxy>"u"?t:Proxy,"%RangeError%":K,"%ReferenceError%":v,"%Reflect%":typeof Reflect>"u"?t:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?t:Set,"%SetIteratorPrototype%":typeof Set>"u"||!H||!pA?t:pA((new Set)[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?t:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":H&&pA?pA(""[Symbol.iterator]()):t,"%Symbol%":H?Symbol:t,"%SyntaxError%":B,"%ThrowTypeError%":nA,"%TypedArray%":hA,"%TypeError%":j,"%Uint8Array%":typeof Uint8Array>"u"?t:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?t:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?t:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?t:Uint32Array,"%URIError%":tA,"%WeakMap%":typeof WeakMap>"u"?t:WeakMap,"%WeakRef%":typeof WeakRef>"u"?t:WeakRef,"%WeakSet%":typeof WeakSet>"u"?t:WeakSet,"%Function.prototype.call%":VA,"%Function.prototype.apply%":wA,"%Object.defineProperty%":dA,"%Object.getPrototypeOf%":z,"%Math.abs%":w,"%Math.floor%":aA,"%Math.max%":AA,"%Math.min%":L,"%Math.pow%":P,"%Math.round%":rA,"%Math.sign%":QA,"%Reflect.getPrototypeOf%":OA};if(pA)try{null.error}catch(gA){var UA=pA(pA(gA));fA["%Error.prototype%"]=UA}var yA=function gA(C){var b;if("%AsyncFunction%"===C)b=oA("async function () {}");else if("%GeneratorFunction%"===C)b=oA("function* () {}");else if("%AsyncGeneratorFunction%"===C)b=oA("async function* () {}");else if("%AsyncGenerator%"===C){var R=gA("%AsyncGeneratorFunction%");R&&(b=R.prototype)}else if("%AsyncIteratorPrototype%"===C){var M=gA("%AsyncGenerator%");M&&pA&&(b=pA(M.prototype))}return fA[C]=b,b},xA={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},Ee=f(5049),HA=f(5215),cA=Ee.call(VA,Array.prototype.concat),J=Ee.call(wA,Array.prototype.splice),U=Ee.call(VA,String.prototype.replace),O=Ee.call(VA,String.prototype.slice),lA=Ee.call(VA,RegExp.prototype.exec),LA=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,JA=/\\(\\)?/g,IA=function(C,b){var M,R=C;if(HA(xA,R)&&(R="%"+(M=xA[R])[0]+"%"),HA(fA,R)){var D=fA[R];if(D===kA&&(D=yA(R)),typeof D>"u"&&!b)throw new j("intrinsic "+C+" exists, but is not available. Please file an issue!");return{alias:M,name:R,value:D}}throw new B("intrinsic "+C+" does not exist!")};eA.exports=function(C,b){if("string"!=typeof C||0===C.length)throw new j("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof b)throw new j('"allowMissing" argument must be a boolean');if(null===lA(/^%?[^%]*%?$/,C))throw new B("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var R=function(C){var b=O(C,0,1),R=O(C,-1);if("%"===b&&"%"!==R)throw new B("invalid intrinsic syntax, expected closing `%`");if("%"===R&&"%"!==b)throw new B("invalid intrinsic syntax, expected opening `%`");var M=[];return U(C,LA,function(D,X,YA,KA){M[M.length]=YA?U(KA,JA,"$1"):X||D}),M}(C),M=R.length>0?R[0]:"",D=IA("%"+M+"%",b),X=D.name,YA=D.value,KA=!1,bA=D.alias;bA&&(M=bA[0],J(R,cA([0,1],bA)));for(var le=1,ve=!0;le=R.length){var Oe=uA(YA,Ne);YA=(ve=!!Oe)&&"get"in Oe&&!("originalValue"in Oe.get)?Oe.get:YA[Ne]}else ve=HA(YA,Ne),YA=YA[Ne];ve&&!KA&&(fA[X]=YA)}}return YA}},3766(eA,Q,f){"use strict";var t=f(5846);eA.exports=t.getPrototypeOf||null},6822(eA){"use strict";eA.exports=typeof Reflect<"u"&&Reflect.getPrototypeOf||null},7106(eA,Q,f){"use strict";var t=f(6822),g=f(3766),I=f(9302);eA.exports=t?function(K){return t(K)}:g?function(K){if(!K||"object"!=typeof K&&"function"!=typeof K)throw new TypeError("getProto: not an object");return g(K)}:I?function(K){return I(K)}:null},5567(eA){"use strict";eA.exports=Object.getOwnPropertyDescriptor},8109(eA,Q,f){"use strict";var t=f(5567);if(t)try{t([],"length")}catch{t=null}eA.exports=t},8890(eA,Q,f){"use strict";var t=f(6649),g=function(){return!!t};g.hasArrayLengthDefineBug=function(){if(!t)return null;try{return 1!==t([],"length",{value:1}).length}catch{return!0}},eA.exports=g},3257(eA,Q,f){"use strict";var t=typeof Symbol<"u"&&Symbol,g=f(2843);eA.exports=function(){return"function"==typeof t&&"function"==typeof Symbol&&"symbol"==typeof t("foo")&&"symbol"==typeof Symbol("bar")&&g()}},2843(eA){"use strict";eA.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var f={},t=Symbol("test"),g=Object(t);if("string"==typeof t||"[object Symbol]"!==Object.prototype.toString.call(t)||"[object Symbol]"!==Object.prototype.toString.call(g))return!1;for(var N in f[t]=42,f)return!1;if("function"==typeof Object.keys&&0!==Object.keys(f).length||"function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(f).length)return!1;var K=Object.getOwnPropertySymbols(f);if(1!==K.length||K[0]!==t||!Object.prototype.propertyIsEnumerable.call(f,t))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var v=Object.getOwnPropertyDescriptor(f,t);if(42!==v.value||!0!==v.enumerable)return!1}return!0}},6626(eA,Q,f){"use strict";var t=f(2843);eA.exports=function(){return t()&&!!Symbol.toStringTag}},5215(eA,Q,f){"use strict";var t=Function.prototype.call,g=Object.prototype.hasOwnProperty,I=f(5049);eA.exports=I.call(t,g)},9029(eA,Q){Q.read=function(f,t,g,I,N){var K,v,B=8*N-I-1,j=(1<>1,w=-7,aA=g?N-1:0,AA=g?-1:1,L=f[t+aA];for(aA+=AA,K=L&(1<<-w)-1,L>>=-w,w+=B;w>0;K=256*K+f[t+aA],aA+=AA,w-=8);for(v=K&(1<<-w)-1,K>>=-w,w+=I;w>0;v=256*v+f[t+aA],aA+=AA,w-=8);if(0===K)K=1-tA;else{if(K===j)return v?NaN:1/0*(L?-1:1);v+=Math.pow(2,I),K-=tA}return(L?-1:1)*v*Math.pow(2,K-I)},Q.write=function(f,t,g,I,N,K){var v,B,j,tA=8*K-N-1,w=(1<>1,AA=23===N?Math.pow(2,-24)-Math.pow(2,-77):0,L=I?0:K-1,P=I?1:-1,rA=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(B=isNaN(t)?1:0,v=w):(v=Math.floor(Math.log(t)/Math.LN2),t*(j=Math.pow(2,-v))<1&&(v--,j*=2),(t+=v+aA>=1?AA/j:AA*Math.pow(2,1-aA))*j>=2&&(v++,j/=2),v+aA>=w?(B=0,v=w):v+aA>=1?(B=(t*j-1)*Math.pow(2,N),v+=aA):(B=t*Math.pow(2,aA-1)*Math.pow(2,N),v=0));N>=8;f[g+L]=255&B,L+=P,B/=256,N-=8);for(v=v<0;f[g+L]=255&v,L+=P,v/=256,tA-=8);f[g+L-P]|=128*rA}},9784(eA){eA.exports="function"==typeof Object.create?function(f,t){t&&(f.super_=t,f.prototype=Object.create(t.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}))}:function(f,t){if(t){f.super_=t;var g=function(){};g.prototype=t.prototype,f.prototype=new g,f.prototype.constructor=f}}},7906(eA,Q,f){"use strict";var t=f(6626)(),I=f(2774)("Object.prototype.toString"),N=function(j){return!(t&&j&&"object"==typeof j&&Symbol.toStringTag in j)&&"[object Arguments]"===I(j)},K=function(j){return!!N(j)||null!==j&&"object"==typeof j&&"length"in j&&"number"==typeof j.length&&j.length>=0&&"[object Array]"!==I(j)&&"callee"in j&&"[object Function]"===I(j.callee)},v=function(){return N(arguments)}();N.isLegacyArguments=K,eA.exports=v?N:K},3746(eA){"use strict";var t,g,Q=Function.prototype.toString,f="object"==typeof Reflect&&null!==Reflect&&Reflect.apply;if("function"==typeof f&&"function"==typeof Object.defineProperty)try{t=Object.defineProperty({},"length",{get:function(){throw g}}),g={},f(function(){throw 42},null,t)}catch(NA){NA!==g&&(f=null)}else f=null;var I=/^\s*class\b/,N=function(oA){try{var uA=Q.call(oA);return I.test(uA)}catch{return!1}},K=function(oA){try{return!N(oA)&&(Q.call(oA),!0)}catch{return!1}},v=Object.prototype.toString,L="function"==typeof Symbol&&!!Symbol.toStringTag,P=!(0 in[,]),rA=function(){return!1};if("object"==typeof document){var QA=document.all;v.call(QA)===v.call(document.all)&&(rA=function(oA){if((P||!oA)&&(typeof oA>"u"||"object"==typeof oA))try{var uA=v.call(oA);return("[object HTMLAllCollection]"===uA||"[object HTML document.all class]"===uA||"[object HTMLCollection]"===uA||"[object Object]"===uA)&&null==oA("")}catch{}return!1})}eA.exports=f?function(oA){if(rA(oA))return!0;if(!oA||"function"!=typeof oA&&"object"!=typeof oA)return!1;try{f(oA,null,t)}catch(uA){if(uA!==g)return!1}return!N(oA)&&K(oA)}:function(oA){if(rA(oA))return!0;if(!oA||"function"!=typeof oA&&"object"!=typeof oA)return!1;if(L)return K(oA);if(N(oA))return!1;var uA=v.call(oA);return!("[object Function]"!==uA&&"[object GeneratorFunction]"!==uA&&!/^\[object HTML/.test(uA))&&K(oA)}},4610(eA,Q,f){"use strict";var t=f(2774),I=f(8843)(/^\s*(?:function)?\*/),N=f(6626)(),K=f(7106),v=t("Object.prototype.toString"),B=t("Function.prototype.toString"),j=f(9294).c;eA.exports=function(w){if("function"!=typeof w)return!1;if(I(B(w)))return!0;if(!N)return"[object GeneratorFunction]"===v(w);if(!K)return!1;var AA=j();return AA&&K(w)===AA.prototype}},2621(eA){"use strict";eA.exports=function(f){return f!=f}},7051(eA,Q,f){"use strict";var t=f(6601),g=f(5421),I=f(2621),N=f(1320),K=f(5074),v=t(N(),Number);g(v,{getPolyfill:N,implementation:I,shim:K}),eA.exports=v},1320(eA,Q,f){"use strict";var t=f(2621);eA.exports=function(){return Number.isNaN&&Number.isNaN(NaN)&&!Number.isNaN("a")?Number.isNaN:t}},5074(eA,Q,f){"use strict";var t=f(5421),g=f(1320);eA.exports=function(){var N=g();return t(Number,{isNaN:N},{isNaN:function(){return Number.isNaN!==N}}),N}},1689(eA,Q,f){"use strict";var K,t=f(2774),g=f(6626)(),I=f(5215),N=f(8109);if(g){var v=t("RegExp.prototype.exec"),B={},j=function(){throw B},tA={toString:j,valueOf:j};"symbol"==typeof Symbol.toPrimitive&&(tA[Symbol.toPrimitive]=j),K=function(L){if(!L||"object"!=typeof L)return!1;var P=N(L,"lastIndex");if(!P||!I(P,"value"))return!1;try{v(L,tA)}catch(QA){return QA===B}}}else{var w=t("Object.prototype.toString");K=function(L){return!(!L||"object"!=typeof L&&"function"!=typeof L)&&"[object RegExp]"===w(L)}}eA.exports=K},6094(eA,Q,f){"use strict";var t=f(3381);eA.exports=function(I){return!!t(I)}},1632(eA,Q,f){var g,t=f(9964);!function(){"use strict";var I="input is invalid type",K="object"==typeof window,v=K?window:{};v.JS_MD5_NO_WINDOW&&(K=!1);var B=!K&&"object"==typeof self,j=!v.JS_MD5_NO_NODE_JS&&"object"==typeof t&&t.versions&&t.versions.node;j?v=f.g:B&&(v=self);var oA,tA=!v.JS_MD5_NO_COMMON_JS&&eA.exports,w=f.amdO,aA=!v.JS_MD5_NO_ARRAY_BUFFER&&typeof ArrayBuffer<"u",AA="0123456789abcdef".split(""),L=[128,32768,8388608,-2147483648],P=[0,8,16,24],rA=["hex","array","digest","buffer","arrayBuffer","base64"],QA="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split(""),NA=[];if(aA){var uA=new ArrayBuffer(68);oA=new Uint8Array(uA),NA=new Uint32Array(uA)}var dA=Array.isArray;(v.JS_MD5_NO_NODE_JS||!dA)&&(dA=function(fA){return"[object Array]"===Object.prototype.toString.call(fA)});var RA=ArrayBuffer.isView;aA&&(v.JS_MD5_NO_ARRAY_BUFFER_IS_VIEW||!RA)&&(RA=function(fA){return"object"==typeof fA&&fA.buffer&&fA.buffer.constructor===ArrayBuffer});var nA=function(fA){var UA=typeof fA;if("string"===UA)return[fA,!0];if("object"!==UA||null===fA)throw new Error(I);if(aA&&fA.constructor===ArrayBuffer)return[new Uint8Array(fA),!1];if(!dA(fA)&&!RA(fA))throw new Error(I);return[fA,!1]},H=function(fA){return function(UA){return new VA(!0).update(UA)[fA]()}},OA=function(fA){return function(UA,yA){return new kA(UA,!0).update(yA)[fA]()}};function VA(fA){if(fA)NA[0]=NA[16]=NA[1]=NA[2]=NA[3]=NA[4]=NA[5]=NA[6]=NA[7]=NA[8]=NA[9]=NA[10]=NA[11]=NA[12]=NA[13]=NA[14]=NA[15]=0,this.blocks=NA,this.buffer8=oA;else if(aA){var UA=new ArrayBuffer(68);this.buffer8=new Uint8Array(UA),this.blocks=new Uint32Array(UA)}else this.blocks=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];this.h0=this.h1=this.h2=this.h3=this.start=this.bytes=this.hBytes=0,this.finalized=this.hashed=!1,this.first=!0}function kA(fA,UA){var yA,xA=nA(fA);if(fA=xA[0],xA[1]){var J,Ee=[],HA=fA.length,cA=0;for(yA=0;yA>>6,Ee[cA++]=128|63&J):J<55296||J>=57344?(Ee[cA++]=224|J>>>12,Ee[cA++]=128|J>>>6&63,Ee[cA++]=128|63&J):(J=65536+((1023&J)<<10|1023&fA.charCodeAt(++yA)),Ee[cA++]=240|J>>>18,Ee[cA++]=128|J>>>12&63,Ee[cA++]=128|J>>>6&63,Ee[cA++]=128|63&J);fA=Ee}fA.length>64&&(fA=new VA(!0).update(fA).array());var U=[],O=[];for(yA=0;yA<64;++yA){var lA=fA[yA]||0;U[yA]=92^lA,O[yA]=54^lA}VA.call(this,UA),this.update(O),this.oKeyPad=U,this.inner=!0,this.sharedMemory=UA}VA.prototype.update=function(fA){if(this.finalized)throw new Error("finalize already called");for(var xA,HA,UA=nA(fA),yA=UA[1],Ee=0,cA=(fA=UA[0]).length,J=this.blocks,U=this.buffer8;Ee>>6,U[HA++]=128|63&xA):xA<55296||xA>=57344?(U[HA++]=224|xA>>>12,U[HA++]=128|xA>>>6&63,U[HA++]=128|63&xA):(xA=65536+((1023&xA)<<10|1023&fA.charCodeAt(++Ee)),U[HA++]=240|xA>>>18,U[HA++]=128|xA>>>12&63,U[HA++]=128|xA>>>6&63,U[HA++]=128|63&xA);else for(HA=this.start;Ee>>2]|=xA<>>2]|=(192|xA>>>6)<>>2]|=(128|63&xA)<=57344?(J[HA>>>2]|=(224|xA>>>12)<>>2]|=(128|xA>>>6&63)<>>2]|=(128|63&xA)<>>2]|=(240|xA>>>18)<>>2]|=(128|xA>>>12&63)<>>2]|=(128|xA>>>6&63)<>>2]|=(128|63&xA)<>>2]|=fA[Ee]<=64?(this.start=HA-64,this.hash(),this.hashed=!0):this.start=HA}return this.bytes>4294967295&&(this.hBytes+=this.bytes/4294967296|0,this.bytes=this.bytes%4294967296),this},VA.prototype.finalize=function(){if(!this.finalized){this.finalized=!0;var fA=this.blocks,UA=this.lastByteIndex;fA[UA>>>2]|=L[3&UA],UA>=56&&(this.hashed||this.hash(),fA[0]=fA[16],fA[16]=fA[1]=fA[2]=fA[3]=fA[4]=fA[5]=fA[6]=fA[7]=fA[8]=fA[9]=fA[10]=fA[11]=fA[12]=fA[13]=fA[14]=fA[15]=0),fA[14]=this.bytes<<3,fA[15]=this.hBytes<<3|this.bytes>>>29,this.hash()}},VA.prototype.hash=function(){var fA,UA,yA,xA,Ee,HA,cA=this.blocks;this.first?UA=((UA=((fA=((fA=cA[0]-680876937)<<7|fA>>>25)-271733879|0)^(yA=((yA=(-271733879^(xA=((xA=(-1732584194^2004318071&fA)+cA[1]-117830708)<<12|xA>>>20)+fA|0)&(-271733879^fA))+cA[2]-1126478375)<<17|yA>>>15)+xA|0)&(xA^fA))+cA[3]-1316259209)<<22|UA>>>10)+yA|0:(fA=this.h0,UA=this.h1,UA=((UA+=((fA=((fA+=((xA=this.h3)^UA&((yA=this.h2)^xA))+cA[0]-680876936)<<7|fA>>>25)+UA|0)^(yA=((yA+=(UA^(xA=((xA+=(yA^fA&(UA^yA))+cA[1]-389564586)<<12|xA>>>20)+fA|0)&(fA^UA))+cA[2]+606105819)<<17|yA>>>15)+xA|0)&(xA^fA))+cA[3]-1044525330)<<22|UA>>>10)+yA|0),UA=((UA+=((fA=((fA+=(xA^UA&(yA^xA))+cA[4]-176418897)<<7|fA>>>25)+UA|0)^(yA=((yA+=(UA^(xA=((xA+=(yA^fA&(UA^yA))+cA[5]+1200080426)<<12|xA>>>20)+fA|0)&(fA^UA))+cA[6]-1473231341)<<17|yA>>>15)+xA|0)&(xA^fA))+cA[7]-45705983)<<22|UA>>>10)+yA|0,UA=((UA+=((fA=((fA+=(xA^UA&(yA^xA))+cA[8]+1770035416)<<7|fA>>>25)+UA|0)^(yA=((yA+=(UA^(xA=((xA+=(yA^fA&(UA^yA))+cA[9]-1958414417)<<12|xA>>>20)+fA|0)&(fA^UA))+cA[10]-42063)<<17|yA>>>15)+xA|0)&(xA^fA))+cA[11]-1990404162)<<22|UA>>>10)+yA|0,UA=((UA+=((fA=((fA+=(xA^UA&(yA^xA))+cA[12]+1804603682)<<7|fA>>>25)+UA|0)^(yA=((yA+=(UA^(xA=((xA+=(yA^fA&(UA^yA))+cA[13]-40341101)<<12|xA>>>20)+fA|0)&(fA^UA))+cA[14]-1502002290)<<17|yA>>>15)+xA|0)&(xA^fA))+cA[15]+1236535329)<<22|UA>>>10)+yA|0,UA=((UA+=((xA=((xA+=(UA^yA&((fA=((fA+=(yA^xA&(UA^yA))+cA[1]-165796510)<<5|fA>>>27)+UA|0)^UA))+cA[6]-1069501632)<<9|xA>>>23)+fA|0)^fA&((yA=((yA+=(fA^UA&(xA^fA))+cA[11]+643717713)<<14|yA>>>18)+xA|0)^xA))+cA[0]-373897302)<<20|UA>>>12)+yA|0,UA=((UA+=((xA=((xA+=(UA^yA&((fA=((fA+=(yA^xA&(UA^yA))+cA[5]-701558691)<<5|fA>>>27)+UA|0)^UA))+cA[10]+38016083)<<9|xA>>>23)+fA|0)^fA&((yA=((yA+=(fA^UA&(xA^fA))+cA[15]-660478335)<<14|yA>>>18)+xA|0)^xA))+cA[4]-405537848)<<20|UA>>>12)+yA|0,UA=((UA+=((xA=((xA+=(UA^yA&((fA=((fA+=(yA^xA&(UA^yA))+cA[9]+568446438)<<5|fA>>>27)+UA|0)^UA))+cA[14]-1019803690)<<9|xA>>>23)+fA|0)^fA&((yA=((yA+=(fA^UA&(xA^fA))+cA[3]-187363961)<<14|yA>>>18)+xA|0)^xA))+cA[8]+1163531501)<<20|UA>>>12)+yA|0,UA=((UA+=((xA=((xA+=(UA^yA&((fA=((fA+=(yA^xA&(UA^yA))+cA[13]-1444681467)<<5|fA>>>27)+UA|0)^UA))+cA[2]-51403784)<<9|xA>>>23)+fA|0)^fA&((yA=((yA+=(fA^UA&(xA^fA))+cA[7]+1735328473)<<14|yA>>>18)+xA|0)^xA))+cA[12]-1926607734)<<20|UA>>>12)+yA|0,UA=((UA+=((HA=(xA=((xA+=((Ee=UA^yA)^(fA=((fA+=(Ee^xA)+cA[5]-378558)<<4|fA>>>28)+UA|0))+cA[8]-2022574463)<<11|xA>>>21)+fA|0)^fA)^(yA=((yA+=(HA^UA)+cA[11]+1839030562)<<16|yA>>>16)+xA|0))+cA[14]-35309556)<<23|UA>>>9)+yA|0,UA=((UA+=((HA=(xA=((xA+=((Ee=UA^yA)^(fA=((fA+=(Ee^xA)+cA[1]-1530992060)<<4|fA>>>28)+UA|0))+cA[4]+1272893353)<<11|xA>>>21)+fA|0)^fA)^(yA=((yA+=(HA^UA)+cA[7]-155497632)<<16|yA>>>16)+xA|0))+cA[10]-1094730640)<<23|UA>>>9)+yA|0,UA=((UA+=((HA=(xA=((xA+=((Ee=UA^yA)^(fA=((fA+=(Ee^xA)+cA[13]+681279174)<<4|fA>>>28)+UA|0))+cA[0]-358537222)<<11|xA>>>21)+fA|0)^fA)^(yA=((yA+=(HA^UA)+cA[3]-722521979)<<16|yA>>>16)+xA|0))+cA[6]+76029189)<<23|UA>>>9)+yA|0,UA=((UA+=((HA=(xA=((xA+=((Ee=UA^yA)^(fA=((fA+=(Ee^xA)+cA[9]-640364487)<<4|fA>>>28)+UA|0))+cA[12]-421815835)<<11|xA>>>21)+fA|0)^fA)^(yA=((yA+=(HA^UA)+cA[15]+530742520)<<16|yA>>>16)+xA|0))+cA[2]-995338651)<<23|UA>>>9)+yA|0,UA=((UA+=((xA=((xA+=(UA^((fA=((fA+=(yA^(UA|~xA))+cA[0]-198630844)<<6|fA>>>26)+UA|0)|~yA))+cA[7]+1126891415)<<10|xA>>>22)+fA|0)^((yA=((yA+=(fA^(xA|~UA))+cA[14]-1416354905)<<15|yA>>>17)+xA|0)|~fA))+cA[5]-57434055)<<21|UA>>>11)+yA|0,UA=((UA+=((xA=((xA+=(UA^((fA=((fA+=(yA^(UA|~xA))+cA[12]+1700485571)<<6|fA>>>26)+UA|0)|~yA))+cA[3]-1894986606)<<10|xA>>>22)+fA|0)^((yA=((yA+=(fA^(xA|~UA))+cA[10]-1051523)<<15|yA>>>17)+xA|0)|~fA))+cA[1]-2054922799)<<21|UA>>>11)+yA|0,UA=((UA+=((xA=((xA+=(UA^((fA=((fA+=(yA^(UA|~xA))+cA[8]+1873313359)<<6|fA>>>26)+UA|0)|~yA))+cA[15]-30611744)<<10|xA>>>22)+fA|0)^((yA=((yA+=(fA^(xA|~UA))+cA[6]-1560198380)<<15|yA>>>17)+xA|0)|~fA))+cA[13]+1309151649)<<21|UA>>>11)+yA|0,UA=((UA+=((xA=((xA+=(UA^((fA=((fA+=(yA^(UA|~xA))+cA[4]-145523070)<<6|fA>>>26)+UA|0)|~yA))+cA[11]-1120210379)<<10|xA>>>22)+fA|0)^((yA=((yA+=(fA^(xA|~UA))+cA[2]+718787259)<<15|yA>>>17)+xA|0)|~fA))+cA[9]-343485551)<<21|UA>>>11)+yA|0,this.first?(this.h0=fA+1732584193|0,this.h1=UA-271733879|0,this.h2=yA-1732584194|0,this.h3=xA+271733878|0,this.first=!1):(this.h0=this.h0+fA|0,this.h1=this.h1+UA|0,this.h2=this.h2+yA|0,this.h3=this.h3+xA|0)},VA.prototype.toString=VA.prototype.hex=function(){this.finalize();var fA=this.h0,UA=this.h1,yA=this.h2,xA=this.h3;return AA[fA>>>4&15]+AA[15&fA]+AA[fA>>>12&15]+AA[fA>>>8&15]+AA[fA>>>20&15]+AA[fA>>>16&15]+AA[fA>>>28&15]+AA[fA>>>24&15]+AA[UA>>>4&15]+AA[15&UA]+AA[UA>>>12&15]+AA[UA>>>8&15]+AA[UA>>>20&15]+AA[UA>>>16&15]+AA[UA>>>28&15]+AA[UA>>>24&15]+AA[yA>>>4&15]+AA[15&yA]+AA[yA>>>12&15]+AA[yA>>>8&15]+AA[yA>>>20&15]+AA[yA>>>16&15]+AA[yA>>>28&15]+AA[yA>>>24&15]+AA[xA>>>4&15]+AA[15&xA]+AA[xA>>>12&15]+AA[xA>>>8&15]+AA[xA>>>20&15]+AA[xA>>>16&15]+AA[xA>>>28&15]+AA[xA>>>24&15]},VA.prototype.array=VA.prototype.digest=function(){this.finalize();var fA=this.h0,UA=this.h1,yA=this.h2,xA=this.h3;return[255&fA,fA>>>8&255,fA>>>16&255,fA>>>24&255,255&UA,UA>>>8&255,UA>>>16&255,UA>>>24&255,255&yA,yA>>>8&255,yA>>>16&255,yA>>>24&255,255&xA,xA>>>8&255,xA>>>16&255,xA>>>24&255]},VA.prototype.buffer=VA.prototype.arrayBuffer=function(){this.finalize();var fA=new ArrayBuffer(16),UA=new Uint32Array(fA);return UA[0]=this.h0,UA[1]=this.h1,UA[2]=this.h2,UA[3]=this.h3,fA},VA.prototype.base64=function(){for(var fA,UA,yA,xA="",Ee=this.array(),HA=0;HA<15;)fA=Ee[HA++],UA=Ee[HA++],yA=Ee[HA++],xA+=QA[fA>>>2]+QA[63&(fA<<4|UA>>>4)]+QA[63&(UA<<2|yA>>>6)]+QA[63&yA];return xA+(QA[(fA=Ee[HA])>>>2]+QA[fA<<4&63]+"==")},(kA.prototype=new VA).finalize=function(){if(VA.prototype.finalize.call(this),this.inner){this.inner=!1;var fA=this.array();VA.call(this,this.sharedMemory),this.update(this.oKeyPad),this.update(fA),VA.prototype.finalize.call(this)}};var hA=function(){var fA=H("hex");j&&(fA=function(fA){var xA,UA=f(8535),yA=f(6274).Buffer;return xA=yA.from&&!v.JS_MD5_NO_BUFFER_FROM?yA.from:function(HA){return new yA(HA)},function(HA){if("string"==typeof HA)return UA.createHash("md5").update(HA,"utf8").digest("hex");if(null==HA)throw new Error(I);return HA.constructor===ArrayBuffer&&(HA=new Uint8Array(HA)),dA(HA)||RA(HA)||HA.constructor===yA?UA.createHash("md5").update(xA(HA)).digest("hex"):fA(HA)}}(fA)),fA.create=function(){return new VA},fA.update=function(xA){return fA.create().update(xA)};for(var UA=0;UA"u")return!1;for(var L in window)try{if(!w["$"+L]&&g.call(window,L)&&null!==window[L]&&"object"==typeof window[L])try{tA(window[L])}catch{return!0}}catch{return!0}return!1}();t=function(P){var rA=null!==P&&"object"==typeof P,QA="[object Function]"===I.call(P),NA=N(P),oA=rA&&"[object String]"===I.call(P),uA=[];if(!rA&&!QA&&!NA)throw new TypeError("Object.keys called on a non-object");var dA=B&&QA;if(oA&&P.length>0&&!g.call(P,0))for(var RA=0;RA0)for(var nA=0;nA"u"||!aA)return tA(L);try{return tA(L)}catch{return!1}}(P),z=0;z=0&&"[object Function]"===Q.call(t.callee)),I}},6521(eA,Q,f){"use strict";var t=f(5643),g=f(2843)(),I=f(2774),N=f(5846),K=I("Array.prototype.push"),v=I("Object.prototype.propertyIsEnumerable"),B=g?N.getOwnPropertySymbols:null;eA.exports=function(tA,w){if(null==tA)throw new TypeError("target must be an object");var aA=N(tA);if(1===arguments.length)return aA;for(var AA=1;AA>>16&65535,v=0;0!==g;){g-=v=g>2e3?2e3:g;do{K=K+(N=N+t[I++]|0)|0}while(--v);N%=65521,K%=65521}return N|K<<16}},1607(eA){"use strict";eA.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},9049(eA){"use strict";var f=function Q(){for(var g,I=[],N=0;N<256;N++){g=N;for(var K=0;K<8;K++)g=1&g?3988292384^g>>>1:g>>>1;I[N]=g}return I}();eA.exports=function t(g,I,N,K){var v=f,B=K+N;g^=-1;for(var j=K;j>>8^v[255&(g^I[j])];return-1^g}},2925(eA,Q,f){"use strict";var k,t=f(2519),g=f(2367),I=f(6911),N=f(9049),K=f(6228),L=-2,HA=262;function M(_,be){return _.msg=K[be],be}function D(_){return(_<<1)-(_>4?9:0)}function X(_){for(var be=_.length;--be>=0;)_[be]=0}function YA(_){var be=_.state,Re=be.pending;Re>_.avail_out&&(Re=_.avail_out),0!==Re&&(t.arraySet(_.output,be.pending_buf,be.pending_out,Re,_.next_out),_.next_out+=Re,be.pending_out+=Re,_.total_out+=Re,_.avail_out-=Re,be.pending-=Re,0===be.pending&&(be.pending_out=0))}function KA(_,be){g._tr_flush_block(_,_.block_start>=0?_.block_start:-1,_.strstart-_.block_start,be),_.block_start=_.strstart,YA(_.strm)}function bA(_,be){_.pending_buf[_.pending++]=be}function le(_,be){_.pending_buf[_.pending++]=be>>>8&255,_.pending_buf[_.pending++]=255&be}function ve(_,be,Re,SA){var we=_.avail_in;return we>SA&&(we=SA),0===we?0:(_.avail_in-=we,t.arraySet(be,_.input,_.next_in,we,Re),1===_.state.wrap?_.adler=I(_.adler,be,we,Re):2===_.state.wrap&&(_.adler=N(_.adler,be,we,Re)),_.next_in+=we,_.total_in+=we,we)}function Ne(_,be){var we,Fe,Re=_.max_chain_length,SA=_.strstart,et=_.prev_length,Ke=_.nice_match,$e=_.strstart>_.w_size-HA?_.strstart-(_.w_size-HA):0,ht=_.window,cn=_.w_mask,at=_.prev,It=_.strstart+258,mt=ht[SA+et-1],Tt=ht[SA+et];_.prev_length>=_.good_match&&(Re>>=2),Ke>_.lookahead&&(Ke=_.lookahead);do{if(ht[(we=be)+et]===Tt&&ht[we+et-1]===mt&&ht[we]===ht[SA]&&ht[++we]===ht[SA+1]){SA+=2,we++;do{}while(ht[++SA]===ht[++we]&&ht[++SA]===ht[++we]&&ht[++SA]===ht[++we]&&ht[++SA]===ht[++we]&&ht[++SA]===ht[++we]&&ht[++SA]===ht[++we]&&ht[++SA]===ht[++we]&&ht[++SA]===ht[++we]&&SAet){if(_.match_start=be,et=Fe,Fe>=Ke)break;mt=ht[SA+et-1],Tt=ht[SA+et]}}}while((be=at[be&cn])>$e&&0!==--Re);return et<=_.lookahead?et:_.lookahead}function Te(_){var Re,SA,we,Fe,et,be=_.w_size;do{if(Fe=_.window_size-_.lookahead-_.strstart,_.strstart>=be+(be-HA)){t.arraySet(_.window,_.window,be,be,0),_.match_start-=be,_.strstart-=be,_.block_start-=be,Re=SA=_.hash_size;do{we=_.head[--Re],_.head[Re]=we>=be?we-be:0}while(--SA);Re=SA=be;do{we=_.prev[--Re],_.prev[Re]=we>=be?we-be:0}while(--SA);Fe+=be}if(0===_.strm.avail_in)break;if(SA=ve(_.strm,_.window,_.strstart+_.lookahead,Fe),_.lookahead+=SA,_.lookahead+_.insert>=3)for(_.ins_h=_.window[et=_.strstart-_.insert],_.ins_h=(_.ins_h<<_.hash_shift^_.window[et+1])&_.hash_mask;_.insert&&(_.ins_h=(_.ins_h<<_.hash_shift^_.window[et+3-1])&_.hash_mask,_.prev[et&_.w_mask]=_.head[_.ins_h],_.head[_.ins_h]=et,et++,_.insert--,!(_.lookahead+_.insert<3)););}while(_.lookahead=3&&(_.ins_h=(_.ins_h<<_.hash_shift^_.window[_.strstart+3-1])&_.hash_mask,Re=_.prev[_.strstart&_.w_mask]=_.head[_.ins_h],_.head[_.ins_h]=_.strstart),0!==Re&&_.strstart-Re<=_.w_size-HA&&(_.match_length=Ne(_,Re)),_.match_length>=3)if(SA=g._tr_tally(_,_.strstart-_.match_start,_.match_length-3),_.lookahead-=_.match_length,_.match_length<=_.max_lazy_match&&_.lookahead>=3){_.match_length--;do{_.strstart++,_.ins_h=(_.ins_h<<_.hash_shift^_.window[_.strstart+3-1])&_.hash_mask,Re=_.prev[_.strstart&_.w_mask]=_.head[_.ins_h],_.head[_.ins_h]=_.strstart}while(0!==--_.match_length);_.strstart++}else _.strstart+=_.match_length,_.match_length=0,_.ins_h=_.window[_.strstart],_.ins_h=(_.ins_h<<_.hash_shift^_.window[_.strstart+1])&_.hash_mask;else SA=g._tr_tally(_,0,_.window[_.strstart]),_.lookahead--,_.strstart++;if(SA&&(KA(_,!1),0===_.strm.avail_out))return 1}return _.insert=_.strstart<2?_.strstart:2,4===be?(KA(_,!0),0===_.strm.avail_out?3:4):_.last_lit&&(KA(_,!1),0===_.strm.avail_out)?1:2}function oe(_,be){for(var Re,SA,we;;){if(_.lookahead=3&&(_.ins_h=(_.ins_h<<_.hash_shift^_.window[_.strstart+3-1])&_.hash_mask,Re=_.prev[_.strstart&_.w_mask]=_.head[_.ins_h],_.head[_.ins_h]=_.strstart),_.prev_length=_.match_length,_.prev_match=_.match_start,_.match_length=2,0!==Re&&_.prev_length<_.max_lazy_match&&_.strstart-Re<=_.w_size-HA&&(_.match_length=Ne(_,Re),_.match_length<=5&&(1===_.strategy||3===_.match_length&&_.strstart-_.match_start>4096)&&(_.match_length=2)),_.prev_length>=3&&_.match_length<=_.prev_length){we=_.strstart+_.lookahead-3,SA=g._tr_tally(_,_.strstart-1-_.prev_match,_.prev_length-3),_.lookahead-=_.prev_length-1,_.prev_length-=2;do{++_.strstart<=we&&(_.ins_h=(_.ins_h<<_.hash_shift^_.window[_.strstart+3-1])&_.hash_mask,Re=_.prev[_.strstart&_.w_mask]=_.head[_.ins_h],_.head[_.ins_h]=_.strstart)}while(0!==--_.prev_length);if(_.match_available=0,_.match_length=2,_.strstart++,SA&&(KA(_,!1),0===_.strm.avail_out))return 1}else if(_.match_available){if((SA=g._tr_tally(_,0,_.window[_.strstart-1]))&&KA(_,!1),_.strstart++,_.lookahead--,0===_.strm.avail_out)return 1}else _.match_available=1,_.strstart++,_.lookahead--}return _.match_available&&(SA=g._tr_tally(_,0,_.window[_.strstart-1]),_.match_available=0),_.insert=_.strstart<2?_.strstart:2,4===be?(KA(_,!0),0===_.strm.avail_out?3:4):_.last_lit&&(KA(_,!1),0===_.strm.avail_out)?1:2}function Y(_,be,Re,SA,we){this.good_length=_,this.max_lazy=be,this.nice_length=Re,this.max_chain=SA,this.func=we}function E(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=8,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new t.Buf16(1146),this.dyn_dtree=new t.Buf16(122),this.bl_tree=new t.Buf16(78),X(this.dyn_ltree),X(this.dyn_dtree),X(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new t.Buf16(16),this.heap=new t.Buf16(573),X(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new t.Buf16(573),X(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function mA(_){var be;return _&&_.state?(_.total_in=_.total_out=0,_.data_type=2,(be=_.state).pending=0,be.pending_out=0,be.wrap<0&&(be.wrap=-be.wrap),be.status=be.wrap?42:113,_.adler=2===be.wrap?0:1,be.last_flush=0,g._tr_init(be),0):M(_,L)}function ie(_){var be=mA(_);return 0===be&&function m(_){_.window_size=2*_.w_size,X(_.head),_.max_lazy_match=k[_.level].max_lazy,_.good_match=k[_.level].good_length,_.nice_match=k[_.level].nice_length,_.max_chain_length=k[_.level].max_chain,_.strstart=0,_.block_start=0,_.lookahead=0,_.insert=0,_.match_length=_.prev_length=2,_.match_available=0,_.ins_h=0}(_.state),be}function Ae(_,be,Re,SA,we,Fe){if(!_)return L;var et=1;if(-1===be&&(be=6),SA<0?(et=0,SA=-SA):SA>15&&(et=2,SA-=16),we<1||we>9||8!==Re||SA<8||SA>15||be<0||be>9||Fe<0||Fe>4)return M(_,L);8===SA&&(SA=9);var Ke=new E;return _.state=Ke,Ke.strm=_,Ke.wrap=et,Ke.gzhead=null,Ke.w_bits=SA,Ke.w_size=1<_.pending_buf_size-5&&(Re=_.pending_buf_size-5);;){if(_.lookahead<=1){if(Te(_),0===_.lookahead&&0===be)return 1;if(0===_.lookahead)break}_.strstart+=_.lookahead,_.lookahead=0;var SA=_.block_start+Re;if((0===_.strstart||_.strstart>=SA)&&(_.lookahead=_.strstart-SA,_.strstart=SA,KA(_,!1),0===_.strm.avail_out)||_.strstart-_.block_start>=_.w_size-HA&&(KA(_,!1),0===_.strm.avail_out))return 1}return _.insert=0,4===be?(KA(_,!0),0===_.strm.avail_out?3:4):(_.strstart>_.block_start&&KA(_,!1),1)}),new Y(4,4,8,4,Oe),new Y(4,5,16,8,Oe),new Y(4,6,32,32,Oe),new Y(4,4,16,16,oe),new Y(8,16,32,32,oe),new Y(8,16,128,128,oe),new Y(8,32,128,256,oe),new Y(32,128,258,1024,oe),new Y(32,258,258,4096,oe)],Q.deflateInit=function pe(_,be){return Ae(_,be,8,15,8,0)},Q.deflateInit2=Ae,Q.deflateReset=ie,Q.deflateResetKeep=mA,Q.deflateSetHeader=function DA(_,be){return _&&_.state&&2===_.state.wrap?(_.state.gzhead=be,0):L},Q.deflate=function MA(_,be){var Re,SA,we,Fe;if(!_||!_.state||be>5||be<0)return _?M(_,L):L;if(SA=_.state,!_.output||!_.input&&0!==_.avail_in||666===SA.status&&4!==be)return M(_,0===_.avail_out?-5:L);if(SA.strm=_,Re=SA.last_flush,SA.last_flush=be,42===SA.status)if(2===SA.wrap)_.adler=0,bA(SA,31),bA(SA,139),bA(SA,8),SA.gzhead?(bA(SA,(SA.gzhead.text?1:0)+(SA.gzhead.hcrc?2:0)+(SA.gzhead.extra?4:0)+(SA.gzhead.name?8:0)+(SA.gzhead.comment?16:0)),bA(SA,255&SA.gzhead.time),bA(SA,SA.gzhead.time>>8&255),bA(SA,SA.gzhead.time>>16&255),bA(SA,SA.gzhead.time>>24&255),bA(SA,9===SA.level?2:SA.strategy>=2||SA.level<2?4:0),bA(SA,255&SA.gzhead.os),SA.gzhead.extra&&SA.gzhead.extra.length&&(bA(SA,255&SA.gzhead.extra.length),bA(SA,SA.gzhead.extra.length>>8&255)),SA.gzhead.hcrc&&(_.adler=N(_.adler,SA.pending_buf,SA.pending,0)),SA.gzindex=0,SA.status=69):(bA(SA,0),bA(SA,0),bA(SA,0),bA(SA,0),bA(SA,0),bA(SA,9===SA.level?2:SA.strategy>=2||SA.level<2?4:0),bA(SA,3),SA.status=113);else{var et=8+(SA.w_bits-8<<4)<<8;et|=(SA.strategy>=2||SA.level<2?0:SA.level<6?1:6===SA.level?2:3)<<6,0!==SA.strstart&&(et|=32),et+=31-et%31,SA.status=113,le(SA,et),0!==SA.strstart&&(le(SA,_.adler>>>16),le(SA,65535&_.adler)),_.adler=1}if(69===SA.status)if(SA.gzhead.extra){for(we=SA.pending;SA.gzindex<(65535&SA.gzhead.extra.length)&&(SA.pending!==SA.pending_buf_size||(SA.gzhead.hcrc&&SA.pending>we&&(_.adler=N(_.adler,SA.pending_buf,SA.pending-we,we)),YA(_),we=SA.pending,SA.pending!==SA.pending_buf_size));)bA(SA,255&SA.gzhead.extra[SA.gzindex]),SA.gzindex++;SA.gzhead.hcrc&&SA.pending>we&&(_.adler=N(_.adler,SA.pending_buf,SA.pending-we,we)),SA.gzindex===SA.gzhead.extra.length&&(SA.gzindex=0,SA.status=73)}else SA.status=73;if(73===SA.status)if(SA.gzhead.name){we=SA.pending;do{if(SA.pending===SA.pending_buf_size&&(SA.gzhead.hcrc&&SA.pending>we&&(_.adler=N(_.adler,SA.pending_buf,SA.pending-we,we)),YA(_),we=SA.pending,SA.pending===SA.pending_buf_size)){Fe=1;break}Fe=SA.gzindexwe&&(_.adler=N(_.adler,SA.pending_buf,SA.pending-we,we)),0===Fe&&(SA.gzindex=0,SA.status=91)}else SA.status=91;if(91===SA.status)if(SA.gzhead.comment){we=SA.pending;do{if(SA.pending===SA.pending_buf_size&&(SA.gzhead.hcrc&&SA.pending>we&&(_.adler=N(_.adler,SA.pending_buf,SA.pending-we,we)),YA(_),we=SA.pending,SA.pending===SA.pending_buf_size)){Fe=1;break}Fe=SA.gzindexwe&&(_.adler=N(_.adler,SA.pending_buf,SA.pending-we,we)),0===Fe&&(SA.status=103)}else SA.status=103;if(103===SA.status&&(SA.gzhead.hcrc?(SA.pending+2>SA.pending_buf_size&&YA(_),SA.pending+2<=SA.pending_buf_size&&(bA(SA,255&_.adler),bA(SA,_.adler>>8&255),_.adler=0,SA.status=113)):SA.status=113),0!==SA.pending){if(YA(_),0===_.avail_out)return SA.last_flush=-1,0}else if(0===_.avail_in&&D(be)<=D(Re)&&4!==be)return M(_,-5);if(666===SA.status&&0!==_.avail_in)return M(_,-5);if(0!==_.avail_in||0!==SA.lookahead||0!==be&&666!==SA.status){var $e=2===SA.strategy?function S(_,be){for(var Re;;){if(0===_.lookahead&&(Te(_),0===_.lookahead)){if(0===be)return 1;break}if(_.match_length=0,Re=g._tr_tally(_,0,_.window[_.strstart]),_.lookahead--,_.strstart++,Re&&(KA(_,!1),0===_.strm.avail_out))return 1}return _.insert=0,4===be?(KA(_,!0),0===_.strm.avail_out?3:4):_.last_lit&&(KA(_,!1),0===_.strm.avail_out)?1:2}(SA,be):3===SA.strategy?function sA(_,be){for(var Re,SA,we,Fe,et=_.window;;){if(_.lookahead<=258){if(Te(_),_.lookahead<=258&&0===be)return 1;if(0===_.lookahead)break}if(_.match_length=0,_.lookahead>=3&&_.strstart>0&&(SA=et[we=_.strstart-1])===et[++we]&&SA===et[++we]&&SA===et[++we]){Fe=_.strstart+258;do{}while(SA===et[++we]&&SA===et[++we]&&SA===et[++we]&&SA===et[++we]&&SA===et[++we]&&SA===et[++we]&&SA===et[++we]&&SA===et[++we]&&we_.lookahead&&(_.match_length=_.lookahead)}if(_.match_length>=3?(Re=g._tr_tally(_,1,_.match_length-3),_.lookahead-=_.match_length,_.strstart+=_.match_length,_.match_length=0):(Re=g._tr_tally(_,0,_.window[_.strstart]),_.lookahead--,_.strstart++),Re&&(KA(_,!1),0===_.strm.avail_out))return 1}return _.insert=0,4===be?(KA(_,!0),0===_.strm.avail_out?3:4):_.last_lit&&(KA(_,!1),0===_.strm.avail_out)?1:2}(SA,be):k[SA.level].func(SA,be);if((3===$e||4===$e)&&(SA.status=666),1===$e||3===$e)return 0===_.avail_out&&(SA.last_flush=-1),0;if(2===$e&&(1===be?g._tr_align(SA):5!==be&&(g._tr_stored_block(SA,0,0,!1),3===be&&(X(SA.head),0===SA.lookahead&&(SA.strstart=0,SA.block_start=0,SA.insert=0))),YA(_),0===_.avail_out))return SA.last_flush=-1,0}return 4!==be?0:SA.wrap<=0?1:(2===SA.wrap?(bA(SA,255&_.adler),bA(SA,_.adler>>8&255),bA(SA,_.adler>>16&255),bA(SA,_.adler>>24&255),bA(SA,255&_.total_in),bA(SA,_.total_in>>8&255),bA(SA,_.total_in>>16&255),bA(SA,_.total_in>>24&255)):(le(SA,_.adler>>>16),le(SA,65535&_.adler)),YA(_),SA.wrap>0&&(SA.wrap=-SA.wrap),0!==SA.pending?0:1)},Q.deflateEnd=function Pe(_){var be;return _&&_.state?42!==(be=_.state.status)&&69!==be&&73!==be&&91!==be&&103!==be&&113!==be&&666!==be?M(_,L):(_.state=null,113===be?M(_,-3):0):L},Q.deflateSetDictionary=function At(_,be){var SA,we,Fe,et,Ke,$e,ht,cn,Re=be.length;if(!_||!_.state||2===(et=(SA=_.state).wrap)||1===et&&42!==SA.status||SA.lookahead)return L;for(1===et&&(_.adler=I(_.adler,be,Re,0)),SA.wrap=0,Re>=SA.w_size&&(0===et&&(X(SA.head),SA.strstart=0,SA.block_start=0,SA.insert=0),cn=new t.Buf8(SA.w_size),t.arraySet(cn,be,Re-SA.w_size,SA.w_size,0),be=cn,Re=SA.w_size),Ke=_.avail_in,$e=_.next_in,ht=_.input,_.avail_in=Re,_.next_in=0,_.input=be,Te(SA);SA.lookahead>=3;){we=SA.strstart,Fe=SA.lookahead-2;do{SA.ins_h=(SA.ins_h<>>=nA=RA>>>24,QA-=nA,0==(nA=RA>>>16&255))VA[B++]=65535&RA;else{if(!(16&nA)){if(64&nA){if(32&nA){N.mode=12;break A}g.msg="invalid literal/length code",N.mode=30;break A}RA=NA[(65535&RA)+(rA&(1<>>=nA,QA-=nA),QA<15&&(rA+=wA[K++]<>>=nA=RA>>>24,QA-=nA,16&(nA=RA>>>16&255)){if(pA=65535&RA,QA<(nA&=15)&&(rA+=wA[K++]<w){g.msg="invalid distance too far back",N.mode=30;break A}if(rA>>>=nA,QA-=nA,pA>(nA=B-j)){if((nA=pA-nA)>AA&&N.sane){g.msg="invalid distance too far back",N.mode=30;break A}if(z=0,OA=P,0===L){if(z+=aA-nA,nA2;)VA[B++]=OA[z++],VA[B++]=OA[z++],VA[B++]=OA[z++],H-=3;H&&(VA[B++]=OA[z++],H>1&&(VA[B++]=OA[z++]))}else{z=B-pA;do{VA[B++]=VA[z++],VA[B++]=VA[z++],VA[B++]=VA[z++],H-=3}while(H>2);H&&(VA[B++]=VA[z++],H>1&&(VA[B++]=VA[z++]))}break}if(64&nA){g.msg="invalid distance code",N.mode=30;break A}RA=oA[(65535&RA)+(rA&(1<>3)<<3))-1,g.next_in=K-=H,g.next_out=B,g.avail_in=K>>24&255)+(Ae>>>8&65280)+((65280&Ae)<<8)+((255&Ae)<<24)}function ve(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new t.Buf16(320),this.work=new t.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function Ne(Ae){var pe;return Ae&&Ae.state?(Ae.total_in=Ae.total_out=(pe=Ae.state).total=0,Ae.msg="",pe.wrap&&(Ae.adler=1&pe.wrap),pe.mode=1,pe.last=0,pe.havedict=0,pe.dmax=32768,pe.head=null,pe.hold=0,pe.bits=0,pe.lencode=pe.lendyn=new t.Buf32(852),pe.distcode=pe.distdyn=new t.Buf32(592),pe.sane=1,pe.back=-1,0):-2}function Te(Ae){var pe;return Ae&&Ae.state?((pe=Ae.state).wsize=0,pe.whave=0,pe.wnext=0,Ne(Ae)):-2}function ze(Ae,pe){var MA,Pe;return!Ae||!Ae.state||(Pe=Ae.state,pe<0?(MA=0,pe=-pe):(MA=1+(pe>>4),pe<48&&(pe&=15)),pe&&(pe<8||pe>15))?-2:(null!==Pe.window&&Pe.wbits!==pe&&(Pe.window=null),Pe.wrap=MA,Pe.wbits=pe,Te(Ae))}function Oe(Ae,pe){var MA,Pe;return Ae?(Pe=new ve,Ae.state=Pe,Pe.window=null,0!==(MA=ze(Ae,pe))&&(Ae.state=null),MA):-2}var S,Y,sA=!0;function k(Ae){if(sA){var pe;for(S=new t.Buf32(512),Y=new t.Buf32(32),pe=0;pe<144;)Ae.lens[pe++]=8;for(;pe<256;)Ae.lens[pe++]=9;for(;pe<280;)Ae.lens[pe++]=7;for(;pe<288;)Ae.lens[pe++]=8;for(K(1,Ae.lens,0,288,S,0,Ae.work,{bits:9}),pe=0;pe<32;)Ae.lens[pe++]=5;K(2,Ae.lens,0,32,Y,0,Ae.work,{bits:5}),sA=!1}Ae.lencode=S,Ae.lenbits=9,Ae.distcode=Y,Ae.distbits=5}function m(Ae,pe,MA,Pe){var At,_=Ae.state;return null===_.window&&(_.wsize=1<<_.wbits,_.wnext=0,_.whave=0,_.window=new t.Buf8(_.wsize)),Pe>=_.wsize?(t.arraySet(_.window,pe,MA-_.wsize,_.wsize,0),_.wnext=0,_.whave=_.wsize):((At=_.wsize-_.wnext)>Pe&&(At=Pe),t.arraySet(_.window,pe,MA-Pe,At,_.wnext),(Pe-=At)?(t.arraySet(_.window,pe,MA-Pe,Pe,0),_.wnext=Pe,_.whave=_.wsize):(_.wnext+=At,_.wnext===_.wsize&&(_.wnext=0),_.whave<_.wsize&&(_.whave+=At))),0}Q.inflateReset=Te,Q.inflateReset2=ze,Q.inflateResetKeep=Ne,Q.inflateInit=function oe(Ae){return Oe(Ae,15)},Q.inflateInit2=Oe,Q.inflate=function E(Ae,pe){var MA,Pe,At,_,be,Re,SA,we,Fe,et,Ke,$e,ht,cn,It,mt,Tt,Lt,Qn,pn,Gt,Mt,bt,Dt,at=0,Ot=new t.Buf8(4),Ze=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!Ae||!Ae.state||!Ae.output||!Ae.input&&0!==Ae.avail_in)return-2;12===(MA=Ae.state).mode&&(MA.mode=13),be=Ae.next_out,At=Ae.output,_=Ae.next_in,Pe=Ae.input,we=MA.hold,Fe=MA.bits,et=Re=Ae.avail_in,Ke=SA=Ae.avail_out,Mt=0;A:for(;;)switch(MA.mode){case 1:if(0===MA.wrap){MA.mode=13;break}for(;Fe<16;){if(0===Re)break A;Re--,we+=Pe[_++]<>>8&255,MA.check=I(MA.check,Ot,2,0),we=0,Fe=0,MA.mode=2;break}if(MA.flags=0,MA.head&&(MA.head.done=!1),!(1&MA.wrap)||(((255&we)<<8)+(we>>8))%31){Ae.msg="incorrect header check",MA.mode=R;break}if(8!=(15&we)){Ae.msg="unknown compression method",MA.mode=R;break}if(Fe-=4,Gt=8+(15&(we>>>=4)),0===MA.wbits)MA.wbits=Gt;else if(Gt>MA.wbits){Ae.msg="invalid window size",MA.mode=R;break}MA.dmax=1<>8&1),512&MA.flags&&(Ot[0]=255&we,Ot[1]=we>>>8&255,MA.check=I(MA.check,Ot,2,0)),we=0,Fe=0,MA.mode=3;case 3:for(;Fe<32;){if(0===Re)break A;Re--,we+=Pe[_++]<>>8&255,Ot[2]=we>>>16&255,Ot[3]=we>>>24&255,MA.check=I(MA.check,Ot,4,0)),we=0,Fe=0,MA.mode=4;case 4:for(;Fe<16;){if(0===Re)break A;Re--,we+=Pe[_++]<>8),512&MA.flags&&(Ot[0]=255&we,Ot[1]=we>>>8&255,MA.check=I(MA.check,Ot,2,0)),we=0,Fe=0,MA.mode=5;case 5:if(1024&MA.flags){for(;Fe<16;){if(0===Re)break A;Re--,we+=Pe[_++]<>>8&255,MA.check=I(MA.check,Ot,2,0)),we=0,Fe=0}else MA.head&&(MA.head.extra=null);MA.mode=6;case 6:if(1024&MA.flags&&(($e=MA.length)>Re&&($e=Re),$e&&(MA.head&&(Gt=MA.head.extra_len-MA.length,MA.head.extra||(MA.head.extra=new Array(MA.head.extra_len)),t.arraySet(MA.head.extra,Pe,_,$e,Gt)),512&MA.flags&&(MA.check=I(MA.check,Pe,$e,_)),Re-=$e,_+=$e,MA.length-=$e),MA.length))break A;MA.length=0,MA.mode=7;case 7:if(2048&MA.flags){if(0===Re)break A;$e=0;do{Gt=Pe[_+$e++],MA.head&&Gt&&MA.length<65536&&(MA.head.name+=String.fromCharCode(Gt))}while(Gt&&$e>9&1,MA.head.done=!0),Ae.adler=MA.check=0,MA.mode=12;break;case 10:for(;Fe<32;){if(0===Re)break A;Re--,we+=Pe[_++]<>>=7&Fe,Fe-=7&Fe,MA.mode=27;break}for(;Fe<3;){if(0===Re)break A;Re--,we+=Pe[_++]<>>=1)){case 0:MA.mode=14;break;case 1:if(k(MA),MA.mode=20,6===pe){we>>>=2,Fe-=2;break A}break;case 2:MA.mode=17;break;case 3:Ae.msg="invalid block type",MA.mode=R}we>>>=2,Fe-=2;break;case 14:for(we>>>=7&Fe,Fe-=7&Fe;Fe<32;){if(0===Re)break A;Re--,we+=Pe[_++]<>>16^65535)){Ae.msg="invalid stored block lengths",MA.mode=R;break}if(MA.length=65535&we,we=0,Fe=0,MA.mode=15,6===pe)break A;case 15:MA.mode=16;case 16:if($e=MA.length){if($e>Re&&($e=Re),$e>SA&&($e=SA),0===$e)break A;t.arraySet(At,Pe,_,$e,be),Re-=$e,_+=$e,SA-=$e,be+=$e,MA.length-=$e;break}MA.mode=12;break;case 17:for(;Fe<14;){if(0===Re)break A;Re--,we+=Pe[_++]<>>=5)),Fe-=5,MA.ncode=4+(15&(we>>>=5)),we>>>=4,Fe-=4,MA.nlen>286||MA.ndist>30){Ae.msg="too many length or distance symbols",MA.mode=R;break}MA.have=0,MA.mode=18;case 18:for(;MA.have>>=3,Fe-=3}for(;MA.have<19;)MA.lens[Ze[MA.have++]]=0;if(MA.lencode=MA.lendyn,MA.lenbits=7,Mt=K(0,MA.lens,0,19,MA.lencode,0,MA.work,bt={bits:MA.lenbits}),MA.lenbits=bt.bits,Mt){Ae.msg="invalid code lengths set",MA.mode=R;break}MA.have=0,MA.mode=19;case 19:for(;MA.have>>16&255,Tt=65535&at,!((It=at>>>24)<=Fe);){if(0===Re)break A;Re--,we+=Pe[_++]<>>=It,Fe-=It,MA.lens[MA.have++]=Tt;else{if(16===Tt){for(Dt=It+2;Fe>>=It,Fe-=It,0===MA.have){Ae.msg="invalid bit length repeat",MA.mode=R;break}Gt=MA.lens[MA.have-1],$e=3+(3&we),we>>>=2,Fe-=2}else if(17===Tt){for(Dt=It+3;Fe>>=It)),we>>>=3,Fe-=3}else{for(Dt=It+7;Fe>>=It)),we>>>=7,Fe-=7}if(MA.have+$e>MA.nlen+MA.ndist){Ae.msg="invalid bit length repeat",MA.mode=R;break}for(;$e--;)MA.lens[MA.have++]=Gt}}if(MA.mode===R)break;if(0===MA.lens[256]){Ae.msg="invalid code -- missing end-of-block",MA.mode=R;break}if(MA.lenbits=9,Mt=K(1,MA.lens,0,MA.nlen,MA.lencode,0,MA.work,bt={bits:MA.lenbits}),MA.lenbits=bt.bits,Mt){Ae.msg="invalid literal/lengths set",MA.mode=R;break}if(MA.distbits=6,MA.distcode=MA.distdyn,Mt=K(2,MA.lens,MA.nlen,MA.ndist,MA.distcode,0,MA.work,bt={bits:MA.distbits}),MA.distbits=bt.bits,Mt){Ae.msg="invalid distances set",MA.mode=R;break}if(MA.mode=20,6===pe)break A;case 20:MA.mode=21;case 21:if(Re>=6&&SA>=258){Ae.next_out=be,Ae.avail_out=SA,Ae.next_in=_,Ae.avail_in=Re,MA.hold=we,MA.bits=Fe,N(Ae,Ke),be=Ae.next_out,At=Ae.output,SA=Ae.avail_out,_=Ae.next_in,Pe=Ae.input,Re=Ae.avail_in,we=MA.hold,Fe=MA.bits,12===MA.mode&&(MA.back=-1);break}for(MA.back=0;mt=(at=MA.lencode[we&(1<>>16&255,Tt=65535&at,!((It=at>>>24)<=Fe);){if(0===Re)break A;Re--,we+=Pe[_++]<>Lt)])>>>16&255,Tt=65535&at,!(Lt+(It=at>>>24)<=Fe);){if(0===Re)break A;Re--,we+=Pe[_++]<>>=Lt,Fe-=Lt,MA.back+=Lt}if(we>>>=It,Fe-=It,MA.back+=It,MA.length=Tt,0===mt){MA.mode=26;break}if(32&mt){MA.back=-1,MA.mode=12;break}if(64&mt){Ae.msg="invalid literal/length code",MA.mode=R;break}MA.extra=15&mt,MA.mode=22;case 22:if(MA.extra){for(Dt=MA.extra;Fe>>=MA.extra,Fe-=MA.extra,MA.back+=MA.extra}MA.was=MA.length,MA.mode=23;case 23:for(;mt=(at=MA.distcode[we&(1<>>16&255,Tt=65535&at,!((It=at>>>24)<=Fe);){if(0===Re)break A;Re--,we+=Pe[_++]<>Lt)])>>>16&255,Tt=65535&at,!(Lt+(It=at>>>24)<=Fe);){if(0===Re)break A;Re--,we+=Pe[_++]<>>=Lt,Fe-=Lt,MA.back+=Lt}if(we>>>=It,Fe-=It,MA.back+=It,64&mt){Ae.msg="invalid distance code",MA.mode=R;break}MA.offset=Tt,MA.extra=15&mt,MA.mode=24;case 24:if(MA.extra){for(Dt=MA.extra;Fe>>=MA.extra,Fe-=MA.extra,MA.back+=MA.extra}if(MA.offset>MA.dmax){Ae.msg="invalid distance too far back",MA.mode=R;break}MA.mode=25;case 25:if(0===SA)break A;if(MA.offset>($e=Ke-SA)){if(($e=MA.offset-$e)>MA.whave&&MA.sane){Ae.msg="invalid distance too far back",MA.mode=R;break}ht=$e>MA.wnext?MA.wsize-($e-=MA.wnext):MA.wnext-$e,$e>MA.length&&($e=MA.length),cn=MA.window}else cn=At,ht=be-MA.offset,$e=MA.length;$e>SA&&($e=SA),SA-=$e,MA.length-=$e;do{At[be++]=cn[ht++]}while(--$e);0===MA.length&&(MA.mode=21);break;case 26:if(0===SA)break A;At[be++]=MA.length,SA--,MA.mode=21;break;case 27:if(MA.wrap){for(;Fe<32;){if(0===Re)break A;Re--,we|=Pe[_++]<=1&&0===O[z];z--);if(OA>z&&(OA=z),0===z)return NA[oA++]=20971520,NA[oA++]=20971520,dA.bits=1,0;for(pA=1;pA0&&(0===L||1!==z))return-1;for(lA[1]=0,nA=1;nA<15;nA++)lA[nA+1]=lA[nA]+O[nA];for(H=0;H852||2===L&&hA>592)return 1;for(;;){$A=nA-VA,uA[H]U?(IA=LA[JA+uA[H]],gA=cA[J+uA[H]]):(IA=96,gA=0),UA=1<>VA)+(yA-=UA)]=$A<<24|IA<<16|gA}while(0!==yA);for(UA=1<>=1;if(0!==UA?(fA&=UA-1,fA+=UA):fA=0,H++,0===--O[nA]){if(nA===z)break;nA=P[rA+uA[H]]}if(nA>OA&&(fA&Ee)!==xA){for(0===VA&&(VA=OA),HA+=pA,kA=1<<(wA=nA-VA);wA+VA852||2===L&&hA>592)return 1;NA[xA=fA&Ee]=OA<<24|wA<<16|HA-oA}}return 0!==fA&&(NA[HA+fA]=4194304|nA-VA<<24),dA.bits=OA,0}},6228(eA){"use strict";eA.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},2367(eA,Q,f){"use strict";var t=f(2519);function v(E){for(var mA=E.length;--mA>=0;)E[mA]=0}var z=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],OA=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],wA=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],VA=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],hA=new Array(576);v(hA);var fA=new Array(60);v(fA);var UA=new Array(512);v(UA);var yA=new Array(256);v(yA);var xA=new Array(29);v(xA);var cA,J,U,Ee=new Array(30);function HA(E,mA,ie,DA,Ae){this.static_tree=E,this.extra_bits=mA,this.extra_base=ie,this.elems=DA,this.max_length=Ae,this.has_stree=E&&E.length}function O(E,mA){this.dyn_tree=E,this.max_code=0,this.stat_desc=mA}function lA(E){return E<256?UA[E]:UA[256+(E>>>7)]}function LA(E,mA){E.pending_buf[E.pending++]=255&mA,E.pending_buf[E.pending++]=mA>>>8&255}function JA(E,mA,ie){E.bi_valid>16-ie?(E.bi_buf|=mA<>16-E.bi_valid,E.bi_valid+=ie-16):(E.bi_buf|=mA<>>=1,ie<<=1}while(--mA>0);return ie>>>1}function b(E,mA,ie){var pe,MA,DA=new Array(16),Ae=0;for(pe=1;pe<=15;pe++)DA[pe]=Ae=Ae+ie[pe-1]<<1;for(MA=0;MA<=mA;MA++){var Pe=E[2*MA+1];0!==Pe&&(E[2*MA]=IA(DA[Pe]++,Pe))}}function M(E){var mA;for(mA=0;mA<286;mA++)E.dyn_ltree[2*mA]=0;for(mA=0;mA<30;mA++)E.dyn_dtree[2*mA]=0;for(mA=0;mA<19;mA++)E.bl_tree[2*mA]=0;E.dyn_ltree[512]=1,E.opt_len=E.static_len=0,E.last_lit=E.matches=0}function D(E){E.bi_valid>8?LA(E,E.bi_buf):E.bi_valid>0&&(E.pending_buf[E.pending++]=E.bi_buf),E.bi_buf=0,E.bi_valid=0}function YA(E,mA,ie,DA){var Ae=2*mA,pe=2*ie;return E[Ae]>1;MA>=1;MA--)KA(E,ie,MA);_=pe;do{MA=E.heap[1],E.heap[1]=E.heap[E.heap_len--],KA(E,ie,1),Pe=E.heap[1],E.heap[--E.heap_max]=MA,E.heap[--E.heap_max]=Pe,ie[2*_]=ie[2*MA]+ie[2*Pe],E.depth[_]=(E.depth[MA]>=E.depth[Pe]?E.depth[MA]:E.depth[Pe])+1,ie[2*MA+1]=ie[2*Pe+1]=_,E.heap[1]=_++,KA(E,ie,1)}while(E.heap_len>=2);E.heap[--E.heap_max]=E.heap[1],function C(E,mA){var _,be,Re,SA,we,Fe,ie=mA.dyn_tree,DA=mA.max_code,Ae=mA.stat_desc.static_tree,pe=mA.stat_desc.has_stree,MA=mA.stat_desc.extra_bits,Pe=mA.stat_desc.extra_base,At=mA.stat_desc.max_length,et=0;for(SA=0;SA<=15;SA++)E.bl_count[SA]=0;for(ie[2*E.heap[E.heap_max]+1]=0,_=E.heap_max+1;_<573;_++)(SA=ie[2*ie[2*(be=E.heap[_])+1]+1]+1)>At&&(SA=At,et++),ie[2*be+1]=SA,!(be>DA)&&(E.bl_count[SA]++,we=0,be>=Pe&&(we=MA[be-Pe]),E.opt_len+=(Fe=ie[2*be])*(SA+we),pe&&(E.static_len+=Fe*(Ae[2*be+1]+we)));if(0!==et){do{for(SA=At-1;0===E.bl_count[SA];)SA--;E.bl_count[SA]--,E.bl_count[SA+1]+=2,E.bl_count[At]--,et-=2}while(et>0);for(SA=At;0!==SA;SA--)for(be=E.bl_count[SA];0!==be;)!((Re=E.heap[--_])>DA)&&(ie[2*Re+1]!==SA&&(E.opt_len+=(SA-ie[2*Re+1])*ie[2*Re],ie[2*Re+1]=SA),be--)}}(E,mA),b(ie,At,E.bl_count)}function ve(E,mA,ie){var DA,pe,Ae=-1,MA=mA[1],Pe=0,At=7,_=4;for(0===MA&&(At=138,_=3),mA[2*(ie+1)+1]=65535,DA=0;DA<=ie;DA++)pe=MA,MA=mA[2*(DA+1)+1],!(++Pe>=7;DA<30;DA++)for(Ee[DA]=Ae<<7,E=0;E<1<0?(2===E.strm.data_type&&(E.strm.data_type=function Oe(E){var ie,mA=4093624447;for(ie=0;ie<=31;ie++,mA>>>=1)if(1&mA&&0!==E.dyn_ltree[2*ie])return 0;if(0!==E.dyn_ltree[18]||0!==E.dyn_ltree[20]||0!==E.dyn_ltree[26])return 1;for(ie=32;ie<256;ie++)if(0!==E.dyn_ltree[2*ie])return 1;return 0}(E)),le(E,E.l_desc),le(E,E.d_desc),MA=function Te(E){var mA;for(ve(E,E.dyn_ltree,E.l_desc.max_code),ve(E,E.dyn_dtree,E.d_desc.max_code),le(E,E.bl_desc),mA=18;mA>=3&&0===E.bl_tree[2*VA[mA]+1];mA--);return E.opt_len+=3*(mA+1)+5+5+4,mA}(E),(pe=E.static_len+3+7>>>3)<=(Ae=E.opt_len+3+7>>>3)&&(Ae=pe)):Ae=pe=ie+5,ie+4<=Ae&&-1!==mA?S(E,mA,ie,DA):4===E.strategy||pe===Ae?(JA(E,2+(DA?1:0),3),bA(E,hA,fA)):(JA(E,4+(DA?1:0),3),function ze(E,mA,ie,DA){var Ae;for(JA(E,mA-257,5),JA(E,ie-1,5),JA(E,DA-4,4),Ae=0;Ae>>8&255,E.pending_buf[E.d_buf+2*E.last_lit+1]=255&mA,E.pending_buf[E.l_buf+E.last_lit]=255&ie,E.last_lit++,0===mA?E.dyn_ltree[2*ie]++:(E.matches++,mA--,E.dyn_ltree[2*(yA[ie]+256+1)]++,E.dyn_dtree[2*lA(mA)]++),E.last_lit===E.lit_bufsize-1},Q._tr_align=function Y(E){JA(E,2,3),$A(E,256,hA),function gA(E){16===E.bi_valid?(LA(E,E.bi_buf),E.bi_buf=0,E.bi_valid=0):E.bi_valid>=8&&(E.pending_buf[E.pending++]=255&E.bi_buf,E.bi_buf>>=8,E.bi_valid-=8)}(E)}},7468(eA){"use strict";eA.exports=function Q(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}},884(eA){"use strict";eA.exports=["Float16Array","Float32Array","Float64Array","Int8Array","Int16Array","Int32Array","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array"]},9964(eA){var f,t,Q=eA.exports={};function g(){throw new Error("setTimeout has not been defined")}function I(){throw new Error("clearTimeout has not been defined")}function N(P){if(f===setTimeout)return setTimeout(P,0);if((f===g||!f)&&setTimeout)return f=setTimeout,setTimeout(P,0);try{return f(P,0)}catch{try{return f.call(null,P,0)}catch{return f.call(this,P,0)}}}!function(){try{f="function"==typeof setTimeout?setTimeout:g}catch{f=g}try{t="function"==typeof clearTimeout?clearTimeout:I}catch{t=I}}();var j,v=[],B=!1,tA=-1;function w(){!B||!j||(B=!1,j.length?v=j.concat(v):tA=-1,v.length&&aA())}function aA(){if(!B){var P=N(w);B=!0;for(var rA=v.length;rA;){for(j=v,v=[];++tA1)for(var QA=1;QA"===X?(xA(M,"onsgmldeclaration",M.sgmlDecl),M.sgmlDecl="",M.state=wA.TEXT):(H(X)&&(M.state=wA.SGML_DECL_QUOTED),M.sgmlDecl+=X);continue;case wA.SGML_DECL_QUOTED:X===M.q&&(M.state=wA.SGML_DECL,M.q=""),M.sgmlDecl+=X;continue;case wA.DOCTYPE:">"===X?(M.state=wA.TEXT,xA(M,"ondoctype",M.doctype),M.doctype=!0):(M.doctype+=X,"["===X?M.state=wA.DOCTYPE_DTD:H(X)&&(M.state=wA.DOCTYPE_QUOTED,M.q=X));continue;case wA.DOCTYPE_QUOTED:M.doctype+=X,X===M.q&&(M.q="",M.state=wA.DOCTYPE);continue;case wA.DOCTYPE_DTD:"]"===X?(M.doctype+=X,M.state=wA.DOCTYPE):"<"===X?(M.state=wA.OPEN_WAKA,M.startTagPosition=M.position):H(X)?(M.doctype+=X,M.state=wA.DOCTYPE_DTD_QUOTED,M.q=X):M.doctype+=X;continue;case wA.DOCTYPE_DTD_QUOTED:M.doctype+=X,X===M.q&&(M.state=wA.DOCTYPE_DTD,M.q="");continue;case wA.COMMENT:"-"===X?M.state=wA.COMMENT_ENDING:M.comment+=X;continue;case wA.COMMENT_ENDING:"-"===X?(M.state=wA.COMMENT_ENDED,M.comment=HA(M.opt,M.comment),M.comment&&xA(M,"oncomment",M.comment),M.comment=""):(M.comment+="-"+X,M.state=wA.COMMENT);continue;case wA.COMMENT_ENDED:">"!==X?(U(M,"Malformed comment"),M.comment+="--"+X,M.state=wA.COMMENT):M.state=M.doctype&&!0!==M.doctype?wA.DOCTYPE_DTD:wA.TEXT;continue;case wA.CDATA:for(KA=D-1;X&&"]"!==X;)(X=C(R,D++))&&M.trackPosition&&(M.position++,"\n"===X?(M.line++,M.column=0):M.column++);M.cdata+=R.substring(KA,D-1),"]"===X&&(M.state=wA.CDATA_ENDING);continue;case wA.CDATA_ENDING:"]"===X?M.state=wA.CDATA_ENDING_2:(M.cdata+="]"+X,M.state=wA.CDATA);continue;case wA.CDATA_ENDING_2:">"===X?(M.cdata&&xA(M,"oncdata",M.cdata),xA(M,"onclosecdata"),M.cdata="",M.state=wA.TEXT):"]"===X?M.cdata+="]":(M.cdata+="]]"+X,M.state=wA.CDATA);continue;case wA.PROC_INST:"?"===X?M.state=wA.PROC_INST_ENDING:nA(X)?M.state=wA.PROC_INST_BODY:M.procInstName+=X;continue;case wA.PROC_INST_BODY:if(!M.procInstBody&&nA(X))continue;"?"===X?M.state=wA.PROC_INST_ENDING:M.procInstBody+=X;continue;case wA.PROC_INST_ENDING:if(">"===X){const Ne={name:M.procInstName,body:M.procInstBody};yA(M,Ne),xA(M,"onprocessinginstruction",Ne),M.procInstName=M.procInstBody="",M.state=wA.TEXT}else M.procInstBody+="?"+X,M.state=wA.PROC_INST_BODY;continue;case wA.OPEN_TAG:z(uA,X)?M.tagName+=X:(O(M),">"===X?JA(M):"/"===X?M.state=wA.OPEN_TAG_SLASH:(nA(X)||U(M,"Invalid character in tag name"),M.state=wA.ATTRIB));continue;case wA.OPEN_TAG_SLASH:">"===X?(JA(M,!0),$A(M)):(U(M,"Forward-slash in opening tag not followed by >"),M.state=wA.ATTRIB);continue;case wA.ATTRIB:if(nA(X))continue;">"===X?JA(M):"/"===X?M.state=wA.OPEN_TAG_SLASH:z(oA,X)?(M.attribName=X,M.attribValue="",M.state=wA.ATTRIB_NAME):U(M,"Invalid attribute name");continue;case wA.ATTRIB_NAME:"="===X?M.state=wA.ATTRIB_VALUE:">"===X?(U(M,"Attribute without value"),M.attribValue=M.attribName,LA(M),JA(M)):nA(X)?M.state=wA.ATTRIB_NAME_SAW_WHITE:z(uA,X)?M.attribName+=X:U(M,"Invalid attribute name");continue;case wA.ATTRIB_NAME_SAW_WHITE:if("="===X)M.state=wA.ATTRIB_VALUE;else{if(nA(X))continue;U(M,"Attribute without value"),M.tag.attributes[M.attribName]="",M.attribValue="",xA(M,"onattribute",{name:M.attribName,value:""}),M.attribName="",">"===X?JA(M):z(oA,X)?(M.attribName=X,M.state=wA.ATTRIB_NAME):(U(M,"Invalid attribute name"),M.state=wA.ATTRIB)}continue;case wA.ATTRIB_VALUE:if(nA(X))continue;H(X)?(M.q=X,M.state=wA.ATTRIB_VALUE_QUOTED):(M.opt.unquotedAttributeValues||cA(M,"Unquoted attribute value"),M.state=wA.ATTRIB_VALUE_UNQUOTED,M.attribValue=X);continue;case wA.ATTRIB_VALUE_QUOTED:if(X!==M.q){"&"===X?M.state=wA.ATTRIB_VALUE_ENTITY_Q:M.attribValue+=X;continue}LA(M),M.q="",M.state=wA.ATTRIB_VALUE_CLOSED;continue;case wA.ATTRIB_VALUE_CLOSED:nA(X)?M.state=wA.ATTRIB:">"===X?JA(M):"/"===X?M.state=wA.OPEN_TAG_SLASH:z(oA,X)?(U(M,"No whitespace between attributes"),M.attribName=X,M.attribValue="",M.state=wA.ATTRIB_NAME):U(M,"Invalid attribute name");continue;case wA.ATTRIB_VALUE_UNQUOTED:if(!pA(X)){"&"===X?M.state=wA.ATTRIB_VALUE_ENTITY_U:M.attribValue+=X;continue}LA(M),">"===X?JA(M):M.state=wA.ATTRIB;continue;case wA.CLOSE_TAG:if(M.tagName)">"===X?$A(M):z(uA,X)?M.tagName+=X:M.script?(M.script+=""===X?$A(M):U(M,"Invalid characters in closing tag");continue;case wA.TEXT_ENTITY:case wA.ATTRIB_VALUE_ENTITY_Q:case wA.ATTRIB_VALUE_ENTITY_U:var bA,le;switch(M.state){case wA.TEXT_ENTITY:bA=wA.TEXT,le="textNode";break;case wA.ATTRIB_VALUE_ENTITY_Q:bA=wA.ATTRIB_VALUE_QUOTED,le="attribValue";break;case wA.ATTRIB_VALUE_ENTITY_U:bA=wA.ATTRIB_VALUE_UNQUOTED,le="attribValue"}if(";"===X){var ve=IA(M);M.opt.unparsedEntities&&!Object.values(g.XML_ENTITIES).includes(ve)?((M.entityCount+=1)>M.opt.maxEntityCount&&cA(M,"Parsed entity count exceeds max entity count"),(M.entityDepth+=1)>M.opt.maxEntityDepth&&cA(M,"Parsed entity depth exceeds max entity depth"),M.entity="",M.state=bA,M.write(ve),M.entityDepth-=1):(M[le]+=ve,M.entity="",M.state=bA)}else z(M.entity.length?RA:dA,X)?M.entity+=X:(U(M,"Invalid character in entity name"),M[le]+="&"+M.entity+X,M.entity="",M.state=bA);continue;default:throw new Error(M,"Unknown state: "+M.state)}return M.position>=M.bufferCheckPosition&&function K(R){for(var M=Math.max(g.MAX_BUFFER_LENGTH,10),D=0,X=0,YA=I.length;XM)switch(I[X]){case"textNode":Ee(R);break;case"cdata":xA(R,"oncdata",R.cdata),R.cdata="";break;case"script":xA(R,"onscript",R.script),R.script="";break;default:cA(R,"Max buffer length exceeded: "+I[X])}D=Math.max(D,KA)}R.bufferCheckPosition=g.MAX_BUFFER_LENGTH-D+R.position}(M),M},resume:function(){return this.error=null,this},close:function(){return this.write(null)},flush:function(){!function B(R){Ee(R),""!==R.cdata&&(xA(R,"oncdata",R.cdata),R.cdata=""),""!==R.script&&(xA(R,"onscript",R.script),R.script="")}(this)}};try{j=f(9760).Stream}catch{j=function(){}}j||(j=function(){});var tA=g.EVENTS.filter(function(R){return"error"!==R&&"end"!==R});function AA(R,M){if(!(this instanceof AA))return new AA(R,M);j.apply(this),this._parser=new N(R,M),this.writable=!0,this.readable=!0;var D=this;this._parser.onend=function(){D.emit("end")},this._parser.onerror=function(X){D.emit("error",X),D._parser.error=null},this._decoder=null,this._decoderBuffer=null,tA.forEach(function(X){Object.defineProperty(D,"on"+X,{get:function(){return D._parser["on"+X]},set:function(YA){if(!YA)return D.removeAllListeners(X),D._parser["on"+X]=YA,YA;D.on(X,YA)},enumerable:!0,configurable:!1})})}(AA.prototype=Object.create(j.prototype,{constructor:{value:AA}}))._decodeBuffer=function(R,M){if(this._decoderBuffer&&(R=t.concat([this._decoderBuffer,R]),this._decoderBuffer=null),!this._decoder){var D=function aA(R,M){if(R.length>=2){if(255===R[0]&&254===R[1])return"utf-16le";if(254===R[0]&&255===R[1])return"utf-16be"}return R.length>=3&&239===R[0]&&187===R[1]&&191===R[2]?"utf8":R.length>=4?60===R[0]&&0===R[1]&&63===R[2]&&0===R[3]?"utf-16le":0===R[0]&&60===R[1]&&0===R[2]&&63===R[3]?"utf-16be":"utf8":M?"utf8":null}(R,M);if(!D)return this._decoderBuffer=R,"";this._parser.encoding=D,this._decoder=new TextDecoder(D)}return this._decoder.decode(R,{stream:!M})},AA.prototype.write=function(R){if("function"==typeof t&&"function"==typeof t.isBuffer&&t.isBuffer(R))R=this._decodeBuffer(R,!1);else if(this._decoderBuffer){var M=this._decodeBuffer(t.alloc(0),!0);M&&(this._parser.write(M),this.emit("data",M))}return this._parser.write(R.toString()),this.emit("data",R),!0},AA.prototype.end=function(R){if(R&&R.length&&this.write(R),this._decoderBuffer){var M=this._decodeBuffer(t.alloc(0),!0);M&&(this._parser.write(M),this.emit("data",M))}else if(this._decoder){var D=this._decoder.decode();D&&(this._parser.write(D),this.emit("data",D))}return this._parser.end(),!0},AA.prototype.on=function(R,M){var D=this;return!D._parser["on"+R]&&-1!==tA.indexOf(R)&&(D._parser["on"+R]=function(){var X=1===arguments.length?[arguments[0]]:Array.apply(null,arguments);X.splice(0,0,R),D.emit.apply(D,X)}),j.prototype.on.call(D,R,M)};var L="[CDATA[",P="DOCTYPE",rA="http://www.w3.org/XML/1998/namespace",QA="http://www.w3.org/2000/xmlns/",NA={xml:rA,xmlns:QA},oA=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,uA=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/,dA=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,RA=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/;function nA(R){return" "===R||"\n"===R||"\r"===R||"\t"===R}function H(R){return'"'===R||"'"===R}function pA(R){return">"===R||nA(R)}function z(R,M){return R.test(M)}function OA(R,M){return!z(R,M)}var R,M,D,wA=0;for(var VA in g.STATE={BEGIN:wA++,BEGIN_WHITESPACE:wA++,TEXT:wA++,TEXT_ENTITY:wA++,OPEN_WAKA:wA++,SGML_DECL:wA++,SGML_DECL_QUOTED:wA++,DOCTYPE:wA++,DOCTYPE_QUOTED:wA++,DOCTYPE_DTD:wA++,DOCTYPE_DTD_QUOTED:wA++,COMMENT_STARTING:wA++,COMMENT:wA++,COMMENT_ENDING:wA++,COMMENT_ENDED:wA++,CDATA:wA++,CDATA_ENDING:wA++,CDATA_ENDING_2:wA++,PROC_INST:wA++,PROC_INST_BODY:wA++,PROC_INST_ENDING:wA++,OPEN_TAG:wA++,OPEN_TAG_SLASH:wA++,ATTRIB:wA++,ATTRIB_NAME:wA++,ATTRIB_NAME_SAW_WHITE:wA++,ATTRIB_VALUE:wA++,ATTRIB_VALUE_QUOTED:wA++,ATTRIB_VALUE_CLOSED:wA++,ATTRIB_VALUE_UNQUOTED:wA++,ATTRIB_VALUE_ENTITY_Q:wA++,ATTRIB_VALUE_ENTITY_U:wA++,CLOSE_TAG:wA++,CLOSE_TAG_SAW_WHITE:wA++,SCRIPT:wA++,SCRIPT_ENDING:wA++},g.XML_ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},g.ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'",AElig:198,Aacute:193,Acirc:194,Agrave:192,Aring:197,Atilde:195,Auml:196,Ccedil:199,ETH:208,Eacute:201,Ecirc:202,Egrave:200,Euml:203,Iacute:205,Icirc:206,Igrave:204,Iuml:207,Ntilde:209,Oacute:211,Ocirc:212,Ograve:210,Oslash:216,Otilde:213,Ouml:214,THORN:222,Uacute:218,Ucirc:219,Ugrave:217,Uuml:220,Yacute:221,aacute:225,acirc:226,aelig:230,agrave:224,aring:229,atilde:227,auml:228,ccedil:231,eacute:233,ecirc:234,egrave:232,eth:240,euml:235,iacute:237,icirc:238,igrave:236,iuml:239,ntilde:241,oacute:243,ocirc:244,ograve:242,oslash:248,otilde:245,ouml:246,szlig:223,thorn:254,uacute:250,ucirc:251,ugrave:249,uuml:252,yacute:253,yuml:255,copy:169,reg:174,nbsp:160,iexcl:161,cent:162,pound:163,curren:164,yen:165,brvbar:166,sect:167,uml:168,ordf:170,laquo:171,not:172,shy:173,macr:175,deg:176,plusmn:177,sup1:185,sup2:178,sup3:179,acute:180,micro:181,para:182,middot:183,cedil:184,ordm:186,raquo:187,frac14:188,frac12:189,frac34:190,iquest:191,times:215,divide:247,OElig:338,oelig:339,Scaron:352,scaron:353,Yuml:376,fnof:402,circ:710,tilde:732,Alpha:913,Beta:914,Gamma:915,Delta:916,Epsilon:917,Zeta:918,Eta:919,Theta:920,Iota:921,Kappa:922,Lambda:923,Mu:924,Nu:925,Xi:926,Omicron:927,Pi:928,Rho:929,Sigma:931,Tau:932,Upsilon:933,Phi:934,Chi:935,Psi:936,Omega:937,alpha:945,beta:946,gamma:947,delta:948,epsilon:949,zeta:950,eta:951,theta:952,iota:953,kappa:954,lambda:955,mu:956,nu:957,xi:958,omicron:959,pi:960,rho:961,sigmaf:962,sigma:963,tau:964,upsilon:965,phi:966,chi:967,psi:968,omega:969,thetasym:977,upsih:978,piv:982,ensp:8194,emsp:8195,thinsp:8201,zwnj:8204,zwj:8205,lrm:8206,rlm:8207,ndash:8211,mdash:8212,lsquo:8216,rsquo:8217,sbquo:8218,ldquo:8220,rdquo:8221,bdquo:8222,dagger:8224,Dagger:8225,bull:8226,hellip:8230,permil:8240,prime:8242,Prime:8243,lsaquo:8249,rsaquo:8250,oline:8254,frasl:8260,euro:8364,image:8465,weierp:8472,real:8476,trade:8482,alefsym:8501,larr:8592,uarr:8593,rarr:8594,darr:8595,harr:8596,crarr:8629,lArr:8656,uArr:8657,rArr:8658,dArr:8659,hArr:8660,forall:8704,part:8706,exist:8707,empty:8709,nabla:8711,isin:8712,notin:8713,ni:8715,prod:8719,sum:8721,minus:8722,lowast:8727,radic:8730,prop:8733,infin:8734,ang:8736,and:8743,or:8744,cap:8745,cup:8746,int:8747,there4:8756,sim:8764,cong:8773,asymp:8776,ne:8800,equiv:8801,le:8804,ge:8805,sub:8834,sup:8835,nsub:8836,sube:8838,supe:8839,oplus:8853,otimes:8855,perp:8869,sdot:8901,lceil:8968,rceil:8969,lfloor:8970,rfloor:8971,lang:9001,rang:9002,loz:9674,spades:9824,clubs:9827,hearts:9829,diams:9830},Object.keys(g.ENTITIES).forEach(function(R){var M=g.ENTITIES[R],D="number"==typeof M?String.fromCharCode(M):M;g.ENTITIES[R]=D}),g.STATE)g.STATE[g.STATE[VA]]=VA;function kA(R,M,D){R[M]&&R[M](D)}function fA(R){return R?R.toLowerCase().replace(/[^a-z0-9]/g,""):null}function yA(R,M){if(R.strict&&R.encoding&&M&&"xml"===M.name){var D=function hA(R){var M=R&&R.match(/(?:^|\s)encoding\s*=\s*(['"])([^'"]+)\1/i);return M?M[2]:null}(M.body);D&&!function UA(R,M){const D=fA(R),X=fA(M);return!D||!X||("utf16"===X?"utf16le"===D||"utf16be"===D:D===X)}(R.encoding,D)&&U(R,"XML declaration encoding "+D+" does not match detected stream encoding "+R.encoding.toUpperCase())}}function xA(R,M,D){R.textNode&&Ee(R),kA(R,M,D)}function Ee(R){R.textNode=HA(R.opt,R.textNode),R.textNode&&kA(R,"ontext",R.textNode),R.textNode=""}function HA(R,M){return R.trim&&(M=M.trim()),R.normalize&&(M=M.replace(/\s+/g," ")),M}function cA(R,M){return Ee(R),R.trackPosition&&(M+="\nLine: "+R.line+"\nColumn: "+R.column+"\nChar: "+R.c),M=new Error(M),R.error=M,kA(R,"onerror",M),R}function J(R){return R.sawRoot&&!R.closedRoot&&U(R,"Unclosed root tag"),R.state!==wA.BEGIN&&R.state!==wA.BEGIN_WHITESPACE&&R.state!==wA.TEXT&&cA(R,"Unexpected end"),Ee(R),R.c="",R.closed=!0,kA(R,"onend"),N.call(R,R.strict,R.opt),R}function U(R,M){if("object"!=typeof R||!(R instanceof N))throw new Error("bad call to strictFail");R.strict&&cA(R,M)}function O(R){R.strict||(R.tagName=R.tagName[R.looseCase]());var M=R.tags[R.tags.length-1]||R,D=R.tag={name:R.tagName,attributes:{}};R.opt.xmlns&&(D.ns=M.ns),R.attribList.length=0,xA(R,"onopentagstart",D)}function lA(R,M){var X=R.indexOf(":")<0?["",R]:R.split(":"),YA=X[0],KA=X[1];return M&&"xmlns"===R&&(YA="xmlns",KA=""),{prefix:YA,local:KA}}function LA(R){if(R.strict||(R.attribName=R.attribName[R.looseCase]()),-1!==R.attribList.indexOf(R.attribName)||R.tag.attributes.hasOwnProperty(R.attribName))R.attribName=R.attribValue="";else{if(R.opt.xmlns){var M=lA(R.attribName,!0),X=M.local;if("xmlns"===M.prefix)if("xml"===X&&R.attribValue!==rA)U(R,"xml: prefix must be bound to "+rA+"\nActual: "+R.attribValue);else if("xmlns"===X&&R.attribValue!==QA)U(R,"xmlns: prefix must be bound to "+QA+"\nActual: "+R.attribValue);else{var YA=R.tag,KA=R.tags[R.tags.length-1]||R;YA.ns===KA.ns&&(YA.ns=Object.create(KA.ns)),YA.ns[X]=R.attribValue}R.attribList.push([R.attribName,R.attribValue])}else R.tag.attributes[R.attribName]=R.attribValue,xA(R,"onattribute",{name:R.attribName,value:R.attribValue});R.attribName=R.attribValue=""}}function JA(R,M){if(R.opt.xmlns){var D=R.tag,X=lA(R.tagName);D.prefix=X.prefix,D.local=X.local,D.uri=D.ns[X.prefix]||"",D.prefix&&!D.uri&&(U(R,"Unbound namespace prefix: "+JSON.stringify(R.tagName)),D.uri=X.prefix),D.ns&&(R.tags[R.tags.length-1]||R).ns!==D.ns&&Object.keys(D.ns).forEach(function(S){xA(R,"onopennamespace",{prefix:S,uri:D.ns[S]})});for(var KA=0,bA=R.attribList.length;KA",R.tagName="",void(R.state=wA.SCRIPT);xA(R,"onscript",R.script),R.script=""}var M=R.tags.length,D=R.tagName;R.strict||(D=D[R.looseCase]());for(var X=D;M--&&R.tags[M].name!==X;)U(R,"Unexpected close tag");if(M<0)return U(R,"Unmatched closing tag: "+R.tagName),R.textNode+="",void(R.state=wA.TEXT);R.tagName=D;for(var KA=R.tags.length;KA-- >M;){var bA=R.tag=R.tags.pop();R.tagName=R.tag.name,xA(R,"onclosetag",R.tagName);var le={};for(var ve in bA.ns)le[ve]=bA.ns[ve];R.opt.xmlns&&bA.ns!==(R.tags[R.tags.length-1]||R).ns&&Object.keys(bA.ns).forEach(function(Te){xA(R,"onclosenamespace",{prefix:Te,uri:bA.ns[Te]})})}0===M&&(R.closedRoot=!0),R.tagName=R.attribValue=R.attribName="",R.attribList.length=0,R.state=wA.TEXT}function IA(R){var X,M=R.entity,D=M.toLowerCase(),YA="";return R.ENTITIES[M]?R.ENTITIES[M]:R.ENTITIES[D]?R.ENTITIES[D]:("#"===(M=D).charAt(0)&&("x"===M.charAt(1)?(M=M.slice(2),YA=(X=parseInt(M,16)).toString(16)):(M=M.slice(1),YA=(X=parseInt(M,10)).toString(10))),M=M.replace(/^0+/,""),isNaN(X)||YA.toLowerCase()!==M||X<0||X>1114111?(U(R,"Invalid character entity"),"&"+R.entity+";"):String.fromCodePoint(X))}function gA(R,M){"<"===M?(R.state=wA.OPEN_WAKA,R.startTagPosition=R.position):nA(M)||(U(R,"Non-whitespace before first tag."),R.textNode=M,R.state=wA.TEXT)}function C(R,M){var D="";return M1114111||M(Te)!==Te)throw RangeError("Invalid code point: "+Te);Te<=65535?YA.push(Te):YA.push(55296+((Te-=65536)>>10),Te%1024+56320),(le+1===ve||YA.length>16384)&&(Ne+=R.apply(null,YA),YA.length=0)}return Ne},Object.defineProperty?Object.defineProperty(String,"fromCodePoint",{value:D,configurable:!0,writable:!0}):String.fromCodePoint=D)}(Q)},6255(eA,Q,f){"use strict";var t=f(8651),g=f(9295),I=f(8890)(),N=f(8109),K=f(6785),v=t("%Math.floor%");eA.exports=function(j,tA){if("function"!=typeof j)throw new K("`fn` is not a function");if("number"!=typeof tA||tA<0||tA>4294967295||v(tA)!==tA)throw new K("`length` must be a positive 32-bit integer");var w=arguments.length>2&&!!arguments[2],aA=!0,AA=!0;if("length"in j&&N){var L=N(j,"length");L&&!L.configurable&&(aA=!1),L&&!L.writable&&(AA=!1)}return(aA||AA||!w)&&(I?g(j,"length",tA,!0,!0):g(j,"length",tA)),j}},9760(eA,Q,f){eA.exports=I;var t=f(4785).EventEmitter;function I(){t.call(this)}f(9784)(I,t),I.Readable=f(8261),I.Writable=f(9781),I.Duplex=f(4903),I.Transform=f(8569),I.PassThrough=f(7723),I.finished=f(2167),I.pipeline=f(3765),I.Stream=I,I.prototype.pipe=function(N,K){var v=this;function B(P){N.writable&&!1===N.write(P)&&v.pause&&v.pause()}function j(){v.readable&&v.resume&&v.resume()}v.on("data",B),N.on("drain",j),!N._isStdio&&(!K||!1!==K.end)&&(v.on("end",w),v.on("close",aA));var tA=!1;function w(){tA||(tA=!0,N.end())}function aA(){tA||(tA=!0,"function"==typeof N.destroy&&N.destroy())}function AA(P){if(L(),0===t.listenerCount(this,"error"))throw P}function L(){v.removeListener("data",B),N.removeListener("drain",j),v.removeListener("end",w),v.removeListener("close",aA),v.removeListener("error",AA),N.removeListener("error",AA),v.removeListener("end",L),v.removeListener("close",L),N.removeListener("close",L)}return v.on("error",AA),N.on("error",AA),v.on("end",L),v.on("close",L),N.on("close",L),N.emit("pipe",v),N}},3797(eA){"use strict";var f={};function t(v,B,j){j||(j=Error);var w=function(aA){function AA(L,P,rA){return aA.call(this,function tA(aA,AA,L){return"string"==typeof B?B:B(aA,AA,L)}(L,P,rA))||this}return function Q(v,B){v.prototype=Object.create(B.prototype),v.prototype.constructor=v,v.__proto__=B}(AA,aA),AA}(j);w.prototype.name=j.name,w.prototype.code=v,f[v]=w}function g(v,B){if(Array.isArray(v)){var j=v.length;return v=v.map(function(tA){return String(tA)}),j>2?"one of ".concat(B," ").concat(v.slice(0,j-1).join(", "),", or ")+v[j-1]:2===j?"one of ".concat(B," ").concat(v[0]," or ").concat(v[1]):"of ".concat(B," ").concat(v[0])}return"of ".concat(B," ").concat(String(v))}t("ERR_INVALID_OPT_VALUE",function(v,B){return'The value "'+B+'" is invalid for option "'+v+'"'},TypeError),t("ERR_INVALID_ARG_TYPE",function(v,B,j){var tA,w;if("string"==typeof B&&function I(v,B,j){return v.substr(!j||j<0?0:+j,B.length)===B}(B,"not ")?(tA="must not be",B=B.replace(/^not /,"")):tA="must be",function N(v,B,j){return(void 0===j||j>v.length)&&(j=v.length),v.substring(j-B.length,j)===B}(v," argument"))w="The ".concat(v," ").concat(tA," ").concat(g(B,"type"));else{var aA=function K(v,B,j){return"number"!=typeof j&&(j=0),!(j+B.length>v.length)&&-1!==v.indexOf(B,j)}(v,".")?"property":"argument";w='The "'.concat(v,'" ').concat(aA," ").concat(tA," ").concat(g(B,"type"))}return w+". Received type ".concat(typeof j)},TypeError),t("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),t("ERR_METHOD_NOT_IMPLEMENTED",function(v){return"The "+v+" method is not implemented"}),t("ERR_STREAM_PREMATURE_CLOSE","Premature close"),t("ERR_STREAM_DESTROYED",function(v){return"Cannot call "+v+" after a stream was destroyed"}),t("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),t("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),t("ERR_STREAM_WRITE_AFTER_END","write after end"),t("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),t("ERR_UNKNOWN_ENCODING",function(v){return"Unknown encoding: "+v},TypeError),t("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),eA.exports.F=f},4903(eA,Q,f){"use strict";var t=f(9964),g=Object.keys||function(aA){var AA=[];for(var L in aA)AA.push(L);return AA};eA.exports=j;var I=f(8261),N=f(9781);f(9784)(j,I);for(var K=g(N.prototype),v=0;v0)if("string"!=typeof D&&!bA.objectMode&&Object.getPrototypeOf(D)!==v.prototype&&(D=function j(M){return v.from(M)}(D)),YA)bA.endEmitted?pA(M,new dA):hA(M,bA,D,!0);else if(bA.ended)pA(M,new oA);else{if(bA.destroyed)return!1;bA.reading=!1,bA.decoder&&!X?(D=bA.decoder.write(D),bA.objectMode||0!==D.length?hA(M,bA,D,!1):J(M,bA)):hA(M,bA,D,!1)}else YA||(bA.reading=!1,J(M,bA));return!bA.ended&&(bA.lengthD.highWaterMark&&(D.highWaterMark=function yA(M){return M>=UA?M=UA:(M--,M|=M>>>1,M|=M>>>2,M|=M>>>4,M|=M>>>8,M|=M>>>16,M++),M}(M)),M<=D.length?M:D.ended?D.length:(D.needReadable=!0,0))}function HA(M){var D=M._readableState;aA("emitReadable",D.needReadable,D.emittedReadable),D.needReadable=!1,D.emittedReadable||(aA("emitReadable",D.flowing),D.emittedReadable=!0,t.nextTick(cA,M))}function cA(M){var D=M._readableState;aA("emitReadable_",D.destroyed,D.length,D.ended),!D.destroyed&&(D.length||D.ended)&&(M.emit("readable"),D.emittedReadable=!1),D.needReadable=!D.flowing&&!D.ended&&D.length<=D.highWaterMark,IA(M)}function J(M,D){D.readingMore||(D.readingMore=!0,t.nextTick(U,M,D))}function U(M,D){for(;!D.reading&&!D.ended&&(D.length0,D.resumeScheduled&&!D.paused?D.flowing=!0:M.listenerCount("data")>0&&M.resume()}function LA(M){aA("readable nexttick read 0"),M.read(0)}function $A(M,D){aA("resume",D.reading),D.reading||M.read(0),D.resumeScheduled=!1,M.emit("resume"),IA(M),D.flowing&&!D.reading&&M.read(0)}function IA(M){var D=M._readableState;for(aA("flow",D.flowing);D.flowing&&null!==M.read(););}function gA(M,D){return 0===D.length?null:(D.objectMode?X=D.buffer.shift():!M||M>=D.length?(X=D.decoder?D.buffer.join(""):1===D.buffer.length?D.buffer.first():D.buffer.concat(D.length),D.buffer.clear()):X=D.buffer.consume(M,D.decoder),X);var X}function C(M){var D=M._readableState;aA("endReadable",D.endEmitted),D.endEmitted||(D.ended=!0,t.nextTick(b,D,M))}function b(M,D){if(aA("endReadableNT",M.endEmitted,M.length),!M.endEmitted&&0===M.length&&(M.endEmitted=!0,D.readable=!1,D.emit("end"),M.autoDestroy)){var X=D._writableState;(!X||X.autoDestroy&&X.finished)&&D.destroy()}}function R(M,D){for(var X=0,YA=M.length;X=D.highWaterMark:D.length>0)||D.ended))return aA("read: emitReadable",D.length,D.ended),0===D.length&&D.ended?C(this):HA(this),null;if(0===(M=xA(M,D))&&D.ended)return 0===D.length&&C(this),null;var KA,YA=D.needReadable;return aA("need readable",YA),(0===D.length||D.length-M0?gA(M,D):null)?(D.needReadable=D.length<=D.highWaterMark,M=0):(D.length-=M,D.awaitDrain=0),0===D.length&&(D.ended||(D.needReadable=!0),X!==M&&D.ended&&C(this)),null!==KA&&this.emit("data",KA),KA},VA.prototype._read=function(M){pA(this,new uA("_read()"))},VA.prototype.pipe=function(M,D){var X=this,YA=this._readableState;switch(YA.pipesCount){case 0:YA.pipes=M;break;case 1:YA.pipes=[YA.pipes,M];break;default:YA.pipes.push(M)}YA.pipesCount+=1,aA("pipe count=%d opts=%j",YA.pipesCount,D);var bA=D&&!1===D.end||M===t.stdout||M===t.stderr?Y:ve;function ve(){aA("onend"),M.end()}YA.endEmitted?t.nextTick(bA):X.once("end",bA),M.on("unpipe",function le(k,m){aA("onunpipe"),k===X&&m&&!1===m.hasUnpiped&&(m.hasUnpiped=!0,function ze(){aA("cleanup"),M.removeListener("close",sA),M.removeListener("finish",S),M.removeListener("drain",Ne),M.removeListener("error",oe),M.removeListener("unpipe",le),X.removeListener("end",ve),X.removeListener("end",Y),X.removeListener("data",Oe),Te=!0,YA.awaitDrain&&(!M._writableState||M._writableState.needDrain)&&Ne()}())});var Ne=function O(M){return function(){var X=M._readableState;aA("pipeOnDrain",X.awaitDrain),X.awaitDrain&&X.awaitDrain--,0===X.awaitDrain&&N(M,"data")&&(X.flowing=!0,IA(M))}}(X);M.on("drain",Ne);var Te=!1;function Oe(k){aA("ondata");var m=M.write(k);aA("dest.write",m),!1===m&&((1===YA.pipesCount&&YA.pipes===M||YA.pipesCount>1&&-1!==R(YA.pipes,M))&&!Te&&(aA("false write response, pause",YA.awaitDrain),YA.awaitDrain++),X.pause())}function oe(k){aA("onerror",k),Y(),M.removeListener("error",oe),0===N(M,"error")&&pA(M,k)}function sA(){M.removeListener("finish",S),Y()}function S(){aA("onfinish"),M.removeListener("close",sA),Y()}function Y(){aA("unpipe"),X.unpipe(M)}return X.on("data",Oe),function OA(M,D,X){if("function"==typeof M.prependListener)return M.prependListener(D,X);M._events&&M._events[D]?Array.isArray(M._events[D])?M._events[D].unshift(X):M._events[D]=[X,M._events[D]]:M.on(D,X)}(M,"error",oe),M.once("close",sA),M.once("finish",S),M.emit("pipe",X),YA.flowing||(aA("pipe resume"),X.resume()),M},VA.prototype.unpipe=function(M){var D=this._readableState,X={hasUnpiped:!1};if(0===D.pipesCount)return this;if(1===D.pipesCount)return M&&M!==D.pipes||(M||(M=D.pipes),D.pipes=null,D.pipesCount=0,D.flowing=!1,M&&M.emit("unpipe",this,X)),this;if(!M){var YA=D.pipes,KA=D.pipesCount;D.pipes=null,D.pipesCount=0,D.flowing=!1;for(var bA=0;bA0,!1!==YA.flowing&&this.resume()):"readable"===M&&!YA.endEmitted&&!YA.readableListening&&(YA.readableListening=YA.needReadable=!0,YA.flowing=!1,YA.emittedReadable=!1,aA("on readable",YA.length,YA.reading),YA.length?HA(this):YA.reading||t.nextTick(LA,this)),X},VA.prototype.removeListener=function(M,D){var X=K.prototype.removeListener.call(this,M,D);return"readable"===M&&t.nextTick(lA,this),X},VA.prototype.removeAllListeners=function(M){var D=K.prototype.removeAllListeners.apply(this,arguments);return("readable"===M||void 0===M)&&t.nextTick(lA,this),D},VA.prototype.resume=function(){var M=this._readableState;return M.flowing||(aA("resume"),M.flowing=!M.readableListening,function JA(M,D){D.resumeScheduled||(D.resumeScheduled=!0,t.nextTick($A,M,D))}(this,M)),M.paused=!1,this},VA.prototype.pause=function(){return aA("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(aA("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},VA.prototype.wrap=function(M){var D=this,X=this._readableState,YA=!1;for(var KA in M.on("end",function(){if(aA("wrapped end"),X.decoder&&!X.ended){var le=X.decoder.end();le&&le.length&&D.push(le)}D.push(null)}),M.on("data",function(le){aA("wrapped data"),X.decoder&&(le=X.decoder.write(le)),X.objectMode&&null==le||!(X.objectMode||le&&le.length)||D.push(le)||(YA=!0,M.pause())}),M)void 0===this[KA]&&"function"==typeof M[KA]&&(this[KA]=function(ve){return function(){return M[ve].apply(M,arguments)}}(KA));for(var bA=0;bA-1))throw new nA(gA);return this._writableState.defaultEncoding=gA,this},Object.defineProperty(wA.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(wA.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),wA.prototype._write=function(IA,gA,C){C(new QA("_write()"))},wA.prototype._writev=null,wA.prototype.end=function(IA,gA,C){var b=this._writableState;return"function"==typeof IA?(C=IA,IA=null,gA=null):"function"==typeof gA&&(C=gA,gA=null),null!=IA&&this.write(IA,gA),b.corked&&(b.corked=1,this.uncork()),b.ending||function JA(IA,gA,C){gA.ending=!0,LA(IA,gA),C&&(gA.finished?t.nextTick(C):IA.once("finish",C)),gA.ended=!0,IA.writable=!1}(this,b,C),this},Object.defineProperty(wA.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(wA.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(gA){this._writableState&&(this._writableState.destroyed=gA)}}),wA.prototype.destroy=aA.destroy,wA.prototype._undestroy=aA.undestroy,wA.prototype._destroy=function(IA,gA){gA(IA)}},9676(eA,Q,f){"use strict";var g,t=f(9964);function I(RA,nA,H){return nA=function N(RA){var nA=function K(RA,nA){if("object"!=typeof RA||null===RA)return RA;var H=RA[Symbol.toPrimitive];if(void 0!==H){var pA=H.call(RA,nA||"default");if("object"!=typeof pA)return pA;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===nA?String:Number)(RA)}(RA,"string");return"symbol"==typeof nA?nA:String(nA)}(nA),nA in RA?Object.defineProperty(RA,nA,{value:H,enumerable:!0,configurable:!0,writable:!0}):RA[nA]=H,RA}var v=f(2167),B=Symbol("lastResolve"),j=Symbol("lastReject"),tA=Symbol("error"),w=Symbol("ended"),aA=Symbol("lastPromise"),AA=Symbol("handlePromise"),L=Symbol("stream");function P(RA,nA){return{value:RA,done:nA}}function rA(RA){var nA=RA[B];if(null!==nA){var H=RA[L].read();null!==H&&(RA[aA]=null,RA[B]=null,RA[j]=null,nA(P(H,!1)))}}function QA(RA){t.nextTick(rA,RA)}var oA=Object.getPrototypeOf(function(){}),uA=Object.setPrototypeOf((I(g={get stream(){return this[L]},next:function(){var nA=this,H=this[tA];if(null!==H)return Promise.reject(H);if(this[w])return Promise.resolve(P(void 0,!0));if(this[L].destroyed)return new Promise(function(wA,VA){t.nextTick(function(){nA[tA]?VA(nA[tA]):wA(P(void 0,!0))})});var z,pA=this[aA];if(pA)z=new Promise(function NA(RA,nA){return function(H,pA){RA.then(function(){nA[w]?H(P(void 0,!0)):nA[AA](H,pA)},pA)}}(pA,this));else{var OA=this[L].read();if(null!==OA)return Promise.resolve(P(OA,!1));z=new Promise(this[AA])}return this[aA]=z,z}},Symbol.asyncIterator,function(){return this}),I(g,"return",function(){var nA=this;return new Promise(function(H,pA){nA[L].destroy(null,function(z){z?pA(z):H(P(void 0,!0))})})}),g),oA);eA.exports=function(nA){var H,pA=Object.create(uA,(I(H={},L,{value:nA,writable:!0}),I(H,B,{value:null,writable:!0}),I(H,j,{value:null,writable:!0}),I(H,tA,{value:null,writable:!0}),I(H,w,{value:nA._readableState.endEmitted,writable:!0}),I(H,AA,{value:function(OA,wA){var VA=pA[L].read();VA?(pA[aA]=null,pA[B]=null,pA[j]=null,OA(P(VA,!1))):(pA[B]=OA,pA[j]=wA)},writable:!0}),H));return pA[aA]=null,v(nA,function(z){if(z&&"ERR_STREAM_PREMATURE_CLOSE"!==z.code){var OA=pA[j];return null!==OA&&(pA[aA]=null,pA[B]=null,pA[j]=null,OA(z)),void(pA[tA]=z)}var wA=pA[B];null!==wA&&(pA[aA]=null,pA[B]=null,pA[j]=null,wA(P(void 0,!0))),pA[w]=!0}),nA.on("readable",QA.bind(null,pA)),pA}},7385(eA,Q,f){"use strict";var t=f(9964);function I(j,tA){v(j,tA),N(j)}function N(j){j._writableState&&!j._writableState.emitClose||j._readableState&&!j._readableState.emitClose||j.emit("close")}function v(j,tA){j.emit("error",tA)}eA.exports={destroy:function g(j,tA){var w=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(tA?tA(j):j&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,t.nextTick(v,this,j)):t.nextTick(v,this,j)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(j||null,function(L){!tA&&L?w._writableState?w._writableState.errorEmitted?t.nextTick(N,w):(w._writableState.errorEmitted=!0,t.nextTick(I,w,L)):t.nextTick(I,w,L):tA?(t.nextTick(N,w),tA(L)):t.nextTick(N,w)}),this)},undestroy:function K(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},errorOrDestroy:function B(j,tA){var w=j._readableState,aA=j._writableState;w&&w.autoDestroy||aA&&aA.autoDestroy?j.destroy(tA):j.emit("error",tA)}}},2167(eA,Q,f){"use strict";var t=f(3797).F.ERR_STREAM_PREMATURE_CLOSE;function I(){}eA.exports=function K(v,B,j){if("function"==typeof B)return K(v,null,B);B||(B={}),j=function g(v){var B=!1;return function(){if(!B){B=!0;for(var j=arguments.length,tA=new Array(j),w=0;w0,function(H){NA||(NA=H),H&&oA.forEach(tA),!RA&&(oA.forEach(tA),QA(NA))})});return P.reduce(w)}},8130(eA,Q,f){"use strict";var t=f(3797).F.ERR_INVALID_OPT_VALUE;eA.exports={getHighWaterMark:function I(N,K,v,B){var j=function g(N,K,v){return null!=N.highWaterMark?N.highWaterMark:K?N[v]:null}(K,B,v);if(null!=j){if(!isFinite(j)||Math.floor(j)!==j||j<0)throw new t(B?v:"highWaterMark",j);return Math.floor(j)}return N.objectMode?16:16384}}},9018(eA,Q,f){eA.exports=f(4785).EventEmitter},3143(eA,Q,f){"use strict";var t=f(5691).Buffer,g=t.isEncoding||function(oA){switch((oA=""+oA)&&oA.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function K(oA){var uA;switch(this.encoding=function N(oA){var uA=function I(oA){if(!oA)return"utf8";for(var uA;;)switch(oA){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return oA;default:if(uA)return;oA=(""+oA).toLowerCase(),uA=!0}}(oA);if("string"!=typeof uA&&(t.isEncoding===g||!g(oA)))throw new Error("Unknown encoding: "+oA);return uA||oA}(oA),this.encoding){case"utf16le":this.text=AA,this.end=L,uA=4;break;case"utf8":this.fillLast=tA,uA=4;break;case"base64":this.text=P,this.end=rA,uA=3;break;default:return this.write=QA,void(this.end=NA)}this.lastNeed=0,this.lastTotal=0,this.lastChar=t.allocUnsafe(uA)}function v(oA){return oA<=127?0:oA>>5==6?2:oA>>4==14?3:oA>>3==30?4:oA>>6==2?-1:-2}function tA(oA){var uA=this.lastTotal-this.lastNeed,dA=function j(oA,uA){if(128!=(192&uA[0]))return oA.lastNeed=0,"\ufffd";if(oA.lastNeed>1&&uA.length>1){if(128!=(192&uA[1]))return oA.lastNeed=1,"\ufffd";if(oA.lastNeed>2&&uA.length>2&&128!=(192&uA[2]))return oA.lastNeed=2,"\ufffd"}}(this,oA);return void 0!==dA?dA:this.lastNeed<=oA.length?(oA.copy(this.lastChar,uA,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(oA.copy(this.lastChar,uA,0,oA.length),void(this.lastNeed-=oA.length))}function AA(oA,uA){if((oA.length-uA)%2==0){var dA=oA.toString("utf16le",uA);if(dA){var RA=dA.charCodeAt(dA.length-1);if(RA>=55296&&RA<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=oA[oA.length-2],this.lastChar[1]=oA[oA.length-1],dA.slice(0,-1)}return dA}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=oA[oA.length-1],oA.toString("utf16le",uA,oA.length-1)}function L(oA){var uA=oA&&oA.length?this.write(oA):"";return this.lastNeed?uA+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):uA}function P(oA,uA){var dA=(oA.length-uA)%3;return 0===dA?oA.toString("base64",uA):(this.lastNeed=3-dA,this.lastTotal=3,1===dA?this.lastChar[0]=oA[oA.length-1]:(this.lastChar[0]=oA[oA.length-2],this.lastChar[1]=oA[oA.length-1]),oA.toString("base64",uA,oA.length-dA))}function rA(oA){var uA=oA&&oA.length?this.write(oA):"";return this.lastNeed?uA+this.lastChar.toString("base64",0,3-this.lastNeed):uA}function QA(oA){return oA.toString(this.encoding)}function NA(oA){return oA&&oA.length?this.write(oA):""}Q.I=K,K.prototype.write=function(oA){if(0===oA.length)return"";var uA,dA;if(this.lastNeed){if(void 0===(uA=this.fillLast(oA)))return"";dA=this.lastNeed,this.lastNeed=0}else dA=0;return dA=0?(nA>0&&(oA.lastNeed=nA-1),nA):--RA=0?(nA>0&&(oA.lastNeed=nA-2),nA):--RA=0?(nA>0&&(2===nA?nA=0:oA.lastNeed=nA-3),nA):0}(this,oA,uA);if(!this.lastNeed)return oA.toString("utf8",uA);this.lastTotal=dA;var RA=oA.length-(dA-this.lastNeed);return oA.copy(this.lastChar,0,RA),oA.toString("utf8",uA,RA)},K.prototype.fillLast=function(oA){if(this.lastNeed<=oA.length)return oA.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);oA.copy(this.lastChar,this.lastTotal-this.lastNeed,0,oA.length),this.lastNeed-=oA.length}},3483(eA){function t(){this.table=new Uint16Array(16),this.trans=new Uint16Array(288)}function g(H,pA){this.source=H,this.sourceIndex=0,this.tag=0,this.bitcount=0,this.dest=pA,this.destLen=0,this.ltree=new t,this.dtree=new t}var I=new t,N=new t,K=new Uint8Array(30),v=new Uint16Array(30),B=new Uint8Array(30),j=new Uint16Array(30),tA=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),w=new t,aA=new Uint8Array(320);function AA(H,pA,z,OA){var wA,VA;for(wA=0;wA>>=1,pA}function NA(H,pA,z){if(!pA)return z;for(;H.bitcount<24;)H.tag|=H.source[H.sourceIndex++]<>>16-pA;return H.tag>>>=pA,H.bitcount-=pA,OA+z}function oA(H,pA){for(;H.bitcount<24;)H.tag|=H.source[H.sourceIndex++]<>>=1,++wA,z+=pA.table[wA],OA-=pA.table[wA]}while(OA>=0);return H.tag=VA,H.bitcount-=wA,pA.trans[z+OA]}function uA(H,pA,z){var OA,wA,VA,kA,hA,fA;for(OA=NA(H,5,257),wA=NA(H,5,1),VA=NA(H,4,4),kA=0;kA<19;++kA)aA[kA]=0;for(kA=0;kA8;)H.sourceIndex--,H.bitcount-=8;if((pA=256*(pA=H.source[H.sourceIndex+1])+H.source[H.sourceIndex])!==(65535&~(256*H.source[H.sourceIndex+3]+H.source[H.sourceIndex+2])))return-3;for(H.sourceIndex+=4,OA=pA;OA;--OA)H.dest[H.destLen++]=H.source[H.sourceIndex++];return H.bitcount=0,0}(function L(H,pA){var z;for(z=0;z<7;++z)H.table[z]=0;for(H.table[7]=24,H.table[8]=152,H.table[9]=112,z=0;z<24;++z)H.trans[z]=256+z;for(z=0;z<144;++z)H.trans[24+z]=z;for(z=0;z<8;++z)H.trans[168+z]=280+z;for(z=0;z<112;++z)H.trans[176+z]=144+z;for(z=0;z<5;++z)pA.table[z]=0;for(pA.table[5]=32,z=0;z<32;++z)pA.trans[z]=z})(I,N),AA(K,v,4,3),AA(B,j,2,1),K[28]=0,v[28]=258,eA.exports=function nA(H,pA){var OA,VA,z=new g(H,pA);do{switch(OA=QA(z),NA(z,2,0)){case 0:VA=RA(z);break;case 1:VA=dA(z,I,N);break;case 2:uA(z,z.ltree,z.dtree),VA=dA(z,z.ltree,z.dtree);break;default:VA=-3}if(0!==VA)throw new Error("Data error")}while(!OA);return z.destLen"u")&&(HA.working?HA(bA):bA instanceof ArrayBuffer)}function J(bA){return"[object DataView]"===j(bA)}function U(bA){return!(typeof DataView>"u")&&(J.working?J(bA):bA instanceof DataView)}Q.isArgumentsObject=t,Q.isGeneratorFunction=g,Q.isTypedArray=N,Q.isPromise=function rA(bA){return typeof Promise<"u"&&bA instanceof Promise||null!==bA&&"object"==typeof bA&&"function"==typeof bA.then&&"function"==typeof bA.catch},Q.isArrayBufferView=function QA(bA){return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?ArrayBuffer.isView(bA):N(bA)||U(bA)},Q.isUint8Array=function NA(bA){return"Uint8Array"===I(bA)},Q.isUint8ClampedArray=function oA(bA){return"Uint8ClampedArray"===I(bA)},Q.isUint16Array=function uA(bA){return"Uint16Array"===I(bA)},Q.isUint32Array=function dA(bA){return"Uint32Array"===I(bA)},Q.isInt8Array=function RA(bA){return"Int8Array"===I(bA)},Q.isInt16Array=function nA(bA){return"Int16Array"===I(bA)},Q.isInt32Array=function H(bA){return"Int32Array"===I(bA)},Q.isFloat32Array=function pA(bA){return"Float32Array"===I(bA)},Q.isFloat64Array=function z(bA){return"Float64Array"===I(bA)},Q.isBigInt64Array=function OA(bA){return"BigInt64Array"===I(bA)},Q.isBigUint64Array=function wA(bA){return"BigUint64Array"===I(bA)},VA.working=typeof Map<"u"&&VA(new Map),Q.isMap=function kA(bA){return!(typeof Map>"u")&&(VA.working?VA(bA):bA instanceof Map)},hA.working=typeof Set<"u"&&hA(new Set),Q.isSet=function fA(bA){return!(typeof Set>"u")&&(hA.working?hA(bA):bA instanceof Set)},UA.working=typeof WeakMap<"u"&&UA(new WeakMap),Q.isWeakMap=function yA(bA){return!(typeof WeakMap>"u")&&(UA.working?UA(bA):bA instanceof WeakMap)},xA.working=typeof WeakSet<"u"&&xA(new WeakSet),Q.isWeakSet=function Ee(bA){return xA(bA)},HA.working=typeof ArrayBuffer<"u"&&HA(new ArrayBuffer),Q.isArrayBuffer=cA,J.working=typeof ArrayBuffer<"u"&&typeof DataView<"u"&&J(new DataView(new ArrayBuffer(1),0,1)),Q.isDataView=U;var O=typeof SharedArrayBuffer<"u"?SharedArrayBuffer:void 0;function lA(bA){return"[object SharedArrayBuffer]"===j(bA)}function LA(bA){return!(typeof O>"u")&&(typeof lA.working>"u"&&(lA.working=lA(new O)),lA.working?lA(bA):bA instanceof O)}function b(bA){return P(bA,tA)}function R(bA){return P(bA,w)}function M(bA){return P(bA,aA)}function D(bA){return v&&P(bA,AA)}function X(bA){return B&&P(bA,L)}Q.isSharedArrayBuffer=LA,Q.isAsyncFunction=function JA(bA){return"[object AsyncFunction]"===j(bA)},Q.isMapIterator=function $A(bA){return"[object Map Iterator]"===j(bA)},Q.isSetIterator=function IA(bA){return"[object Set Iterator]"===j(bA)},Q.isGeneratorObject=function gA(bA){return"[object Generator]"===j(bA)},Q.isWebAssemblyCompiledModule=function C(bA){return"[object WebAssembly.Module]"===j(bA)},Q.isNumberObject=b,Q.isStringObject=R,Q.isBooleanObject=M,Q.isBigIntObject=D,Q.isSymbolObject=X,Q.isBoxedPrimitive=function YA(bA){return b(bA)||R(bA)||M(bA)||D(bA)||X(bA)},Q.isAnyArrayBuffer=function KA(bA){return typeof Uint8Array<"u"&&(cA(bA)||LA(bA))},["isProxy","isExternal","isModuleNamespaceObject"].forEach(function(bA){Object.defineProperty(Q,bA,{enumerable:!1,value:function(){throw new Error(bA+" is not supported in userland")}})})},7187(eA,Q,f){var t=f(9964),g=Object.getOwnPropertyDescriptors||function(O){for(var lA=Object.keys(O),LA={},JA=0;JA=JA)return gA;switch(gA){case"%s":return String(LA[lA++]);case"%d":return Number(LA[lA++]);case"%j":try{return JSON.stringify(LA[lA++])}catch{return"[Circular]"}default:return gA}}),IA=LA[lA];lA"u")return function(){return Q.deprecate(U,O).apply(this,arguments)};var lA=!1;return function LA(){if(!lA){if(t.throwDeprecation)throw new Error(O);t.traceDeprecation?console.trace(O):console.error(O),lA=!0}return U.apply(this,arguments)}};var N={},K=/^$/;if(t.env.NODE_DEBUG){var v=t.env.NODE_DEBUG;v=v.replace(/[|\\{}()[\]^$+?.]/g,"\\$&").replace(/\*/g,".*").replace(/,/g,"$|^").toUpperCase(),K=new RegExp("^"+v+"$","i")}function B(U,O){var lA={seen:[],stylize:tA};return arguments.length>=3&&(lA.depth=arguments[2]),arguments.length>=4&&(lA.colors=arguments[3]),oA(O)?lA.showHidden=O:O&&Q._extend(lA,O),pA(lA.showHidden)&&(lA.showHidden=!1),pA(lA.depth)&&(lA.depth=2),pA(lA.colors)&&(lA.colors=!1),pA(lA.customInspect)&&(lA.customInspect=!0),lA.colors&&(lA.stylize=j),aA(lA,U,lA.depth)}function j(U,O){var lA=B.styles[O];return lA?"\x1b["+B.colors[lA][0]+"m"+U+"\x1b["+B.colors[lA][1]+"m":U}function tA(U,O){return U}function aA(U,O,lA){if(U.customInspect&&O&&kA(O.inspect)&&O.inspect!==Q.inspect&&(!O.constructor||O.constructor.prototype!==O)){var LA=O.inspect(lA,U);return nA(LA)||(LA=aA(U,LA,lA)),LA}var JA=function AA(U,O){if(pA(O))return U.stylize("undefined","undefined");if(nA(O)){var lA="'"+JSON.stringify(O).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return U.stylize(lA,"string")}return RA(O)?U.stylize(""+O,"number"):oA(O)?U.stylize(""+O,"boolean"):uA(O)?U.stylize("null","null"):void 0}(U,O);if(JA)return JA;var $A=Object.keys(O),IA=function w(U){var O={};return U.forEach(function(lA,LA){O[lA]=!0}),O}($A);if(U.showHidden&&($A=Object.getOwnPropertyNames(O)),VA(O)&&($A.indexOf("message")>=0||$A.indexOf("description")>=0))return L(O);if(0===$A.length){if(kA(O))return U.stylize("[Function"+(O.name?": "+O.name:"")+"]","special");if(z(O))return U.stylize(RegExp.prototype.toString.call(O),"regexp");if(wA(O))return U.stylize(Date.prototype.toString.call(O),"date");if(VA(O))return L(O)}var D,C="",b=!1,R=["{","}"];return NA(O)&&(b=!0,R=["[","]"]),kA(O)&&(C=" [Function"+(O.name?": "+O.name:"")+"]"),z(O)&&(C=" "+RegExp.prototype.toString.call(O)),wA(O)&&(C=" "+Date.prototype.toUTCString.call(O)),VA(O)&&(C=" "+L(O)),0!==$A.length||b&&0!=O.length?lA<0?z(O)?U.stylize(RegExp.prototype.toString.call(O),"regexp"):U.stylize("[Object]","special"):(U.seen.push(O),D=b?function P(U,O,lA,LA,JA){for(var $A=[],IA=0,gA=O.length;IA60?lA[0]+(""===O?"":O+"\n ")+" "+U.join(",\n ")+" "+lA[1]:lA[0]+O+" "+U.join(", ")+" "+lA[1]}(D,C,R)):R[0]+C+R[1]}function L(U){return"["+Error.prototype.toString.call(U)+"]"}function rA(U,O,lA,LA,JA,$A){var IA,gA,C;if((C=Object.getOwnPropertyDescriptor(O,JA)||{value:O[JA]}).get?gA=U.stylize(C.set?"[Getter/Setter]":"[Getter]","special"):C.set&&(gA=U.stylize("[Setter]","special")),Ee(LA,JA)||(IA="["+JA+"]"),gA||(U.seen.indexOf(C.value)<0?(gA=uA(lA)?aA(U,C.value,null):aA(U,C.value,lA-1)).indexOf("\n")>-1&&(gA=$A?gA.split("\n").map(function(b){return" "+b}).join("\n").slice(2):"\n"+gA.split("\n").map(function(b){return" "+b}).join("\n")):gA=U.stylize("[Circular]","special")),pA(IA)){if($A&&JA.match(/^\d+$/))return gA;(IA=JSON.stringify(""+JA)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(IA=IA.slice(1,-1),IA=U.stylize(IA,"name")):(IA=IA.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),IA=U.stylize(IA,"string"))}return IA+": "+gA}function NA(U){return Array.isArray(U)}function oA(U){return"boolean"==typeof U}function uA(U){return null===U}function RA(U){return"number"==typeof U}function nA(U){return"string"==typeof U}function pA(U){return void 0===U}function z(U){return OA(U)&&"[object RegExp]"===fA(U)}function OA(U){return"object"==typeof U&&null!==U}function wA(U){return OA(U)&&"[object Date]"===fA(U)}function VA(U){return OA(U)&&("[object Error]"===fA(U)||U instanceof Error)}function kA(U){return"function"==typeof U}function fA(U){return Object.prototype.toString.call(U)}function UA(U){return U<10?"0"+U.toString(10):U.toString(10)}Q.debuglog=function(U){if(U=U.toUpperCase(),!N[U])if(K.test(U)){var O=t.pid;N[U]=function(){var lA=Q.format.apply(Q,arguments);console.error("%s %d: %s",U,O,lA)}}else N[U]=function(){};return N[U]},Q.inspect=B,B.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},B.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},Q.types=f(9490),Q.isArray=NA,Q.isBoolean=oA,Q.isNull=uA,Q.isNullOrUndefined=function dA(U){return null==U},Q.isNumber=RA,Q.isString=nA,Q.isSymbol=function H(U){return"symbol"==typeof U},Q.isUndefined=pA,Q.isRegExp=z,Q.types.isRegExp=z,Q.isObject=OA,Q.isDate=wA,Q.types.isDate=wA,Q.isError=VA,Q.types.isNativeError=VA,Q.isFunction=kA,Q.isPrimitive=function hA(U){return null===U||"boolean"==typeof U||"number"==typeof U||"string"==typeof U||"symbol"==typeof U||typeof U>"u"},Q.isBuffer=f(1201);var yA=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function Ee(U,O){return Object.prototype.hasOwnProperty.call(U,O)}Q.log=function(){console.log("%s - %s",function xA(){var U=new Date,O=[UA(U.getHours()),UA(U.getMinutes()),UA(U.getSeconds())].join(":");return[U.getDate(),yA[U.getMonth()],O].join(" ")}(),Q.format.apply(Q,arguments))},Q.inherits=f(9784),Q._extend=function(U,O){if(!O||!OA(O))return U;for(var lA=Object.keys(O),LA=lA.length;LA--;)U[lA[LA]]=O[lA[LA]];return U};var HA=typeof Symbol<"u"?Symbol("util.promisify.custom"):void 0;function cA(U,O){if(!U){var lA=new Error("Promise was rejected with a falsy value");lA.reason=U,U=lA}return O(U)}Q.promisify=function(O){if("function"!=typeof O)throw new TypeError('The "original" argument must be of type Function');if(HA&&O[HA]){var lA;if("function"!=typeof(lA=O[HA]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(lA,HA,{value:lA,enumerable:!1,writable:!1,configurable:!0}),lA}function lA(){for(var LA,JA,$A=new Promise(function(C,b){LA=C,JA=b}),IA=[],gA=0;gA"u"?f.g:globalThis,w=g(),aA=N("String.prototype.slice"),AA=N("Array.prototype.indexOf",!0)||function(oA,uA){for(var dA=0;dA-1}(uA)?uA:"Object"===uA&&function rA(NA){var oA=!1;return t(L,function(uA,dA){if(!oA)try{uA(NA),oA=aA(dA,1)}catch{}}),oA}(oA)}return K?function P(NA){var oA=!1;return t(L,function(uA,dA){if(!oA)try{"$"+uA(NA)===dA&&(oA=aA(dA,1))}catch{}}),oA}(oA):null}},5127(eA,Q,f){var t,I;void 0!==(I="function"==typeof(t=function(){"use strict";function K(aA,AA,L){var P=new XMLHttpRequest;P.open("GET",aA),P.responseType="blob",P.onload=function(){w(P.response,AA,L)},P.onerror=function(){console.error("could not download file")},P.send()}function v(aA){var AA=new XMLHttpRequest;AA.open("HEAD",aA,!1);try{AA.send()}catch{}return 200<=AA.status&&299>=AA.status}function B(aA){try{aA.dispatchEvent(new MouseEvent("click"))}catch{var AA=document.createEvent("MouseEvents");AA.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),aA.dispatchEvent(AA)}}var j="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof f.g&&f.g.global===f.g?f.g:void 0,tA=j.navigator&&/Macintosh/.test(navigator.userAgent)&&/AppleWebKit/.test(navigator.userAgent)&&!/Safari/.test(navigator.userAgent),w=j.saveAs||("object"!=typeof window||window!==j?function(){}:typeof HTMLAnchorElement<"u"&&"download"in HTMLAnchorElement.prototype&&!tA?function(aA,AA,L){var P=j.URL||j.webkitURL,rA=document.createElement("a");rA.download=AA=AA||aA.name||"download",rA.rel="noopener","string"==typeof aA?(rA.href=aA,rA.origin===location.origin?B(rA):v(rA.href)?K(aA,AA,L):B(rA,rA.target="_blank")):(rA.href=P.createObjectURL(aA),setTimeout(function(){P.revokeObjectURL(rA.href)},4e4),setTimeout(function(){B(rA)},0))}:"msSaveOrOpenBlob"in navigator?function(aA,AA,L){if(AA=AA||aA.name||"download","string"!=typeof aA)navigator.msSaveOrOpenBlob(function N(aA,AA){return typeof AA>"u"?AA={autoBom:!1}:"object"!=typeof AA&&(console.warn("Deprecated: Expected third argument to be a object"),AA={autoBom:!AA}),AA.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(aA.type)?new Blob(["\ufeff",aA],{type:aA.type}):aA}(aA,L),AA);else if(v(aA))K(aA,AA,L);else{var P=document.createElement("a");P.href=aA,P.target="_blank",setTimeout(function(){B(P)})}}:function(aA,AA,L,P){if((P=P||open("","_blank"))&&(P.document.title=P.document.body.innerText="downloading..."),"string"==typeof aA)return K(aA,AA,L);var rA="application/octet-stream"===aA.type,QA=/constructor/i.test(j.HTMLElement)||j.safari,NA=/CriOS\/[\d]+/.test(navigator.userAgent);if((NA||rA&&QA||tA)&&typeof FileReader<"u"){var oA=new FileReader;oA.onloadend=function(){var RA=oA.result;RA=NA?RA:RA.replace(/^data:[^;]*;/,"data:attachment/file;"),P?P.location.href=RA:location=RA,P=null},oA.readAsDataURL(aA)}else{var uA=j.URL||j.webkitURL,dA=uA.createObjectURL(aA);P?P.location=dA:location.href=dA,P=null,setTimeout(function(){uA.revokeObjectURL(dA)},4e4)}});j.saveAs=w.saveAs=w,eA.exports=w})?t.apply(Q,[]):t)&&(eA.exports=I)},6274(){},8535(){},3779(){},7199(){},5117(eA){"use strict";eA.exports=typeof ArrayBuffer<"u"&&typeof DataView<"u"},4074(eA,Q,f){"use strict";var yA,xA,Ee,t=f(5117),g=f(5144),I=f(7756),N=f(8681),K=f(3598),v=f(6341),B=f(9391),j=f(8819),tA=f(5719),w=f(4092),aA=f(1182),AA=f(9877),L=f(8607),P=f(443),rA=f(8663),QA=f(6044),NA=f(6921),oA=NA.enforce,uA=NA.get,dA=I.Int8Array,RA=dA&&dA.prototype,nA=I.Uint8ClampedArray,H=nA&&nA.prototype,pA=dA&&L(dA),z=RA&&L(RA),OA=Object.prototype,wA=I.TypeError,VA=rA("toStringTag"),kA=QA("TYPED_ARRAY_TAG"),hA="TypedArrayConstructor",fA=t&&!!P&&"Opera"!==B(I.opera),UA=!1,HA={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},cA={BigInt64Array:8,BigUint64Array:8},U=function(IA){var gA=L(IA);if(K(gA)){var C=uA(gA);return C&&v(C,hA)?C[hA]:U(gA)}},O=function(IA){if(!K(IA))return!1;var gA=B(IA);return v(HA,gA)||v(cA,gA)};for(yA in HA)(Ee=(xA=I[yA])&&xA.prototype)?oA(Ee)[hA]=xA:fA=!1;for(yA in cA)(Ee=(xA=I[yA])&&xA.prototype)&&(oA(Ee)[hA]=xA);if((!fA||!N(pA)||pA===Function.prototype)&&(pA=function(){throw new wA("Incorrect invocation")},fA))for(yA in HA)I[yA]&&P(I[yA],pA);if((!fA||!z||z===OA)&&(z=pA.prototype,fA))for(yA in HA)I[yA]&&P(I[yA].prototype,z);if(fA&&L(H)!==z&&P(H,z),g&&!v(z,VA))for(yA in UA=!0,aA(z,VA,{configurable:!0,get:function(){return K(this)?this[kA]:void 0}}),HA)I[yA]&&tA(I[yA].prototype,kA,yA);eA.exports={NATIVE_ARRAY_BUFFER_VIEWS:fA,TYPED_ARRAY_TAG:UA&&kA,aTypedArray:function(IA){if(O(IA))return IA;throw new wA("Target is not a typed array")},aTypedArrayConstructor:function(IA){if(N(IA)&&(!P||AA(pA,IA)))return IA;throw new wA(j(IA)+" is not a typed array constructor")},exportTypedArrayMethod:function(IA,gA,C,b){if(g){if(C)for(var R in HA){var M=I[R];if(M&&v(M.prototype,IA))try{delete M.prototype[IA]}catch{try{M.prototype[IA]=gA}catch{}}}(!z[IA]||C)&&w(z,IA,C?gA:fA&&RA[IA]||gA,b)}},exportTypedArrayStaticMethod:function(IA,gA,C){var b,R;if(g){if(P){if(C)for(b in HA)if((R=I[b])&&v(R,IA))try{delete R[IA]}catch{}if(pA[IA]&&!C)return;try{return w(pA,IA,C?gA:fA&&pA[IA]||gA)}catch{}}for(b in HA)(R=I[b])&&(!R[IA]||C)&&w(R,IA,gA)}},getTypedArrayConstructor:U,isView:function(gA){if(!K(gA))return!1;var C=B(gA);return"DataView"===C||v(HA,C)||v(cA,C)},isTypedArray:O,TypedArray:pA,TypedArrayPrototype:z}},4415(eA,Q){"use strict";Q._=function f(t,g,I){return g in t?Object.defineProperty(t,g,{value:I,enumerable:!0,configurable:!0,writable:!0}):t[g]=I,t}},8395(eA,Q,f){"use strict";Q._=f(1635).__decorate},821(eA,Q,f){"use strict";var t=f(884),g=typeof globalThis>"u"?f.g:globalThis;eA.exports=function(){for(var N=[],K=0;K1?arguments[1]:void 0,B),w=j>2?arguments[2]:void 0,aA=void 0===w?B:g(w,B);aA>tA;)v[tA++]=K;return v}},789(eA,Q,f){"use strict";var t=f(5137),g=f(4918),I=f(4730),N=function(K){return function(v,B,j){var tA=t(v),w=I(tA);if(0===w)return!K&&-1;var AA,aA=g(j,w);if(K&&B!=B){for(;w>aA;)if((AA=tA[aA++])!=AA)return!0}else for(;w>aA;aA++)if((K||aA in tA)&&tA[aA]===B)return K||aA||0;return!K&&-1}};eA.exports={includes:N(!0),indexOf:N(!1)}},2740(eA,Q,f){"use strict";var t=f(1212);eA.exports=t([].slice)},644(eA,Q,f){"use strict";var t=f(2740),g=Math.floor,I=function(N,K){var v=N.length;if(v<8)for(var j,tA,B=1;B0;)N[tA]=N[--tA];tA!==B++&&(N[tA]=j)}else for(var w=g(v/2),aA=I(t(N,0,w),K),AA=I(t(N,w),K),L=aA.length,P=AA.length,rA=0,QA=0;rA0&&B[0]<4?1:+(B[0]+B[1])),!j&&g&&(!(B=g.match(/Edge\/(\d+)/))||B[1]>=74)&&(B=g.match(/Chrome\/(\d+)/))&&(j=+B[1]),eA.exports=j},4507(eA,Q,f){"use strict";var g=f(8115).match(/AppleWebKit\/(\d+)\./);eA.exports=!!g&&+g[1]},3762(eA,Q,f){"use strict";var t=f(7756),g=f(423).f,I=f(5719),N=f(4092),K=f(7309),v=f(8032),B=f(5888);eA.exports=function(j,tA){var P,rA,QA,NA,oA,w=j.target,aA=j.global,AA=j.stat;if(P=aA?t:AA?t[w]||K(w,{}):t[w]&&t[w].prototype)for(rA in tA){if(NA=tA[rA],QA=j.dontCallGetSet?(oA=g(P,rA))&&oA.value:P[rA],!B(aA?rA:w+(AA?".":"#")+rA,j.forced)&&void 0!==QA){if(typeof NA==typeof QA)continue;v(NA,QA)}(j.sham||QA&&QA.sham)&&I(NA,"sham",!0),N(P,rA,NA,j)}}},299(eA){"use strict";eA.exports=function(Q){try{return!!Q()}catch{return!0}}},1676(eA,Q,f){"use strict";var t=f(299);eA.exports=!t(function(){var g=function(){}.bind();return"function"!=typeof g||g.hasOwnProperty("prototype")})},8993(eA,Q,f){"use strict";var t=f(1676),g=Function.prototype.call;eA.exports=t?g.bind(g):function(){return g.apply(g,arguments)}},4378(eA,Q,f){"use strict";var t=f(5144),g=f(6341),I=Function.prototype,N=t&&Object.getOwnPropertyDescriptor,K=g(I,"name"),v=K&&"something"===function(){}.name,B=K&&(!t||t&&N(I,"name").configurable);eA.exports={EXISTS:K,PROPER:v,CONFIGURABLE:B}},4494(eA,Q,f){"use strict";var t=f(1212),g=f(1078);eA.exports=function(I,N,K){try{return t(g(Object.getOwnPropertyDescriptor(I,N)[K]))}catch{}}},5336(eA,Q,f){"use strict";var t=f(8420),g=f(1212);eA.exports=function(I){if("Function"===t(I))return g(I)}},1212(eA,Q,f){"use strict";var t=f(1676),g=Function.prototype,I=g.call,N=t&&g.bind.bind(I,I);eA.exports=t?N:function(K){return function(){return I.apply(K,arguments)}}},7139(eA,Q,f){"use strict";var t=f(7756),g=f(8681);eA.exports=function(N,K){return arguments.length<2?function(N){return g(N)?N:void 0}(t[N]):t[N]&&t[N][K]}},9738(eA,Q,f){"use strict";var t=f(1078),g=f(6297);eA.exports=function(I,N){var K=I[N];return g(K)?void 0:t(K)}},7756(eA,Q,f){"use strict";var t=function(g){return g&&g.Math===Math&&g};eA.exports=t("object"==typeof globalThis&&globalThis)||t("object"==typeof window&&window)||t("object"==typeof self&&self)||t("object"==typeof f.g&&f.g)||t("object"==typeof this&&this)||function(){return this}()||Function("return this")()},6341(eA,Q,f){"use strict";var t=f(1212),g=f(3297),I=t({}.hasOwnProperty);eA.exports=Object.hasOwn||function(K,v){return I(g(K),v)}},2993(eA){"use strict";eA.exports={}},4329(eA,Q,f){"use strict";var t=f(7139);eA.exports=t("document","documentElement")},7657(eA,Q,f){"use strict";var t=f(5144),g=f(299),I=f(2283);eA.exports=!t&&!g(function(){return 7!==Object.defineProperty(I("div"),"a",{get:function(){return 7}}).a})},2203(eA,Q,f){"use strict";var t=f(1212),g=f(299),I=f(8420),N=Object,K=t("".split);eA.exports=g(function(){return!N("z").propertyIsEnumerable(0)})?function(v){return"String"===I(v)?K(v,""):N(v)}:N},4550(eA,Q,f){"use strict";var t=f(1212),g=f(8681),I=f(3793),N=t(Function.toString);g(I.inspectSource)||(I.inspectSource=function(K){return N(K)}),eA.exports=I.inspectSource},6921(eA,Q,f){"use strict";var AA,L,P,t=f(1194),g=f(7756),I=f(3598),N=f(5719),K=f(6341),v=f(3793),B=f(7099),j=f(2993),tA="Object already initialized",w=g.TypeError;if(t||v.state){var NA=v.state||(v.state=new(0,g.WeakMap));NA.get=NA.get,NA.has=NA.has,NA.set=NA.set,AA=function(uA,dA){if(NA.has(uA))throw new w(tA);return dA.facade=uA,NA.set(uA,dA),dA},L=function(uA){return NA.get(uA)||{}},P=function(uA){return NA.has(uA)}}else{var oA=B("state");j[oA]=!0,AA=function(uA,dA){if(K(uA,oA))throw new w(tA);return dA.facade=uA,N(uA,oA,dA),dA},L=function(uA){return K(uA,oA)?uA[oA]:{}},P=function(uA){return K(uA,oA)}}eA.exports={set:AA,get:L,has:P,enforce:function(uA){return P(uA)?L(uA):AA(uA,{})},getterFor:function(uA){return function(dA){var RA;if(!I(dA)||(RA=L(dA)).type!==uA)throw new w("Incompatible receiver, "+uA+" required");return RA}}}},8468(eA,Q,f){"use strict";var t=f(8420);eA.exports=Array.isArray||function(I){return"Array"===t(I)}},8681(eA){"use strict";var Q="object"==typeof document&&document.all;eA.exports=typeof Q>"u"&&void 0!==Q?function(f){return"function"==typeof f||f===Q}:function(f){return"function"==typeof f}},5888(eA,Q,f){"use strict";var t=f(299),g=f(8681),I=/#|\.prototype\./,N=function(tA,w){var aA=v[K(tA)];return aA===j||aA!==B&&(g(w)?t(w):!!w)},K=N.normalize=function(tA){return String(tA).replace(I,".").toLowerCase()},v=N.data={},B=N.NATIVE="N",j=N.POLYFILL="P";eA.exports=N},6297(eA){"use strict";eA.exports=function(Q){return null==Q}},3598(eA,Q,f){"use strict";var t=f(8681);eA.exports=function(g){return"object"==typeof g?null!==g:t(g)}},2657(eA,Q,f){"use strict";var t=f(3598);eA.exports=function(g){return t(g)||null===g}},7695(eA){"use strict";eA.exports=!1},5985(eA,Q,f){"use strict";var t=f(7139),g=f(8681),I=f(9877),N=f(8300),K=Object;eA.exports=N?function(v){return"symbol"==typeof v}:function(v){var B=t("Symbol");return g(B)&&I(B.prototype,K(v))}},4730(eA,Q,f){"use strict";var t=f(8266);eA.exports=function(g){return t(g.length)}},3383(eA,Q,f){"use strict";var t=f(1212),g=f(299),I=f(8681),N=f(6341),K=f(5144),v=f(4378).CONFIGURABLE,B=f(4550),j=f(6921),tA=j.enforce,w=j.get,aA=String,AA=Object.defineProperty,L=t("".slice),P=t("".replace),rA=t([].join),QA=K&&!g(function(){return 8!==AA(function(){},"length",{value:8}).length}),NA=String(String).split("String"),oA=eA.exports=function(uA,dA,RA){"Symbol("===L(aA(dA),0,7)&&(dA="["+P(aA(dA),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),RA&&RA.getter&&(dA="get "+dA),RA&&RA.setter&&(dA="set "+dA),(!N(uA,"name")||v&&uA.name!==dA)&&(K?AA(uA,"name",{value:dA,configurable:!0}):uA.name=dA),QA&&RA&&N(RA,"arity")&&uA.length!==RA.arity&&AA(uA,"length",{value:RA.arity});try{RA&&N(RA,"constructor")&&RA.constructor?K&&AA(uA,"prototype",{writable:!1}):uA.prototype&&(uA.prototype=void 0)}catch{}var nA=tA(uA);return N(nA,"source")||(nA.source=rA(NA,"string"==typeof dA?dA:"")),uA};Function.prototype.toString=oA(function(){return I(this)&&w(this).source||B(this)},"toString")},2537(eA){"use strict";var Q=Math.ceil,f=Math.floor;eA.exports=Math.trunc||function(g){var I=+g;return(I>0?f:Q)(I)}},4860(eA,Q,f){"use strict";var NA,t=f(2091),g=f(2197),I=f(2555),N=f(2993),K=f(4329),v=f(2283),B=f(7099),w="prototype",AA=B("IE_PROTO"),L=function(){},P=function(uA){return" - + - + diff --git a/frontend/main.87c60b2108713046.js b/frontend/main.87c60b2108713046.js new file mode 100644 index 00000000..7fac260c --- /dev/null +++ b/frontend/main.87c60b2108713046.js @@ -0,0 +1 @@ +(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[792],{8430(Zt,pe,l){"use strict";l.d(pe,{$6:()=>F,$J:()=>Le,$Q:()=>ne,Aw:()=>f,C2:()=>C,CK:()=>re,Db:()=>Sn,Do:()=>P,Dq:()=>$,ED:()=>Qn,EM:()=>nt,Eb:()=>Ye,Ew:()=>ht,Fd:()=>Ee,GZ:()=>oe,Gy:()=>Pe,Gz:()=>rt,Hm:()=>be,Jx:()=>H,Ml:()=>cn,N4:()=>V,NS:()=>e,NU:()=>h,Qj:()=>le,Qv:()=>Ft,Sn:()=>O,T4:()=>ce,Uj:()=>xe,VK:()=>ve,We:()=>j,XT:()=>B,Yi:()=>lt,Zi:()=>G,a5:()=>Ke,aB:()=>Vt,cR:()=>_e,dv:()=>J,ed:()=>W,fy:()=>De,g6:()=>ot,gf:()=>T,ij:()=>Dt,jQ:()=>Gt,kQ:()=>gt,kX:()=>L,kv:()=>ie,lg:()=>w,no:()=>v,qw:()=>fe,sq:()=>Ce,uK:()=>te,vL:()=>Re,w0:()=>Xe,x1:()=>u,y0:()=>Qe,zU:()=>he});var i=l(9640),d=l(4416);const v=(0,i.VP)(d.TC.UPDATE_API_CALL_STATUS_CLN,(0,i.xk)()),T=(0,i.VP)(d.TC.RESET_CLN_STORE),w=(0,i.VP)(d.TC.FETCH_PAGE_SETTINGS_CLN),e=(0,i.VP)(d.TC.SET_PAGE_SETTINGS_CLN,(0,i.xk)()),O=(0,i.VP)(d.TC.SAVE_PAGE_SETTINGS_CLN,(0,i.xk)()),f=(0,i.VP)(d.TC.FETCH_INFO_CLN,(0,i.xk)()),u=(0,i.VP)(d.TC.SET_INFO_CLN,(0,i.xk)()),L=(0,i.VP)(d.TC.FETCH_FEE_RATES_CLN,(0,i.xk)()),C=(0,i.VP)(d.TC.SET_FEE_RATES_CLN,(0,i.xk)()),B=(0,i.VP)(d.TC.GET_NEW_ADDRESS_CLN,(0,i.xk)()),Pe=((0,i.VP)(d.TC.SET_NEW_ADDRESS_CLN,(0,i.xk)()),(0,i.VP)(d.TC.FETCH_PEERS_CLN)),le=(0,i.VP)(d.TC.SET_PEERS_CLN,(0,i.xk)()),Ce=(0,i.VP)(d.TC.SAVE_NEW_PEER_CLN,(0,i.xk)()),j=((0,i.VP)(d.TC.NEWLY_ADDED_PEER_CLN,(0,i.xk)()),(0,i.VP)(d.TC.ADD_PEER_CLN,(0,i.xk)())),W=(0,i.VP)(d.TC.DETACH_PEER_CLN,(0,i.xk)()),G=(0,i.VP)(d.TC.REMOVE_PEER_CLN,(0,i.xk)()),re=(0,i.VP)(d.TC.FETCH_PAYMENTS_CLN),xe=(0,i.VP)(d.TC.SET_PAYMENTS_CLN,(0,i.xk)()),Ee=(0,i.VP)(d.TC.SEND_PAYMENT_CLN,(0,i.xk)()),V=(0,i.VP)(d.TC.SEND_PAYMENT_STATUS_CLN,(0,i.xk)()),ce=(0,i.VP)(d.TC.GET_QUERY_ROUTES_CLN,(0,i.xk)()),be=(0,i.VP)(d.TC.SET_QUERY_ROUTES_CLN,(0,i.xk)()),ne=(0,i.VP)(d.TC.FETCH_CHANNELS_CLN),J=(0,i.VP)(d.TC.SET_CHANNELS_CLN,(0,i.xk)()),De=(0,i.VP)(d.TC.UPDATE_CHANNEL_CLN,(0,i.xk)()),Re=(0,i.VP)(d.TC.SAVE_NEW_CHANNEL_CLN,(0,i.xk)()),Xe=(0,i.VP)(d.TC.CLOSE_CHANNEL_CLN,(0,i.xk)()),_e=(0,i.VP)(d.TC.REMOVE_CHANNEL_CLN,(0,i.xk)()),he=(0,i.VP)(d.TC.PEER_LOOKUP_CLN,(0,i.xk)()),Dt=(0,i.VP)(d.TC.CHANNEL_LOOKUP_CLN,(0,i.xk)()),lt=(0,i.VP)(d.TC.INVOICE_LOOKUP_CLN,(0,i.xk)()),Le=(0,i.VP)(d.TC.SET_LOOKUP_CLN,(0,i.xk)()),te=(0,i.VP)(d.TC.GET_FORWARDING_HISTORY_CLN,(0,i.xk)()),ie=(0,i.VP)(d.TC.SET_FORWARDING_HISTORY_CLN,(0,i.xk)()),P=(0,i.VP)(d.TC.FETCH_INVOICES_CLN),F=(0,i.VP)(d.TC.SET_INVOICES_CLN,(0,i.xk)()),ve=(0,i.VP)(d.TC.SAVE_NEW_INVOICE_CLN,(0,i.xk)()),H=(0,i.VP)(d.TC.ADD_INVOICE_CLN,(0,i.xk)()),$=(0,i.VP)(d.TC.UPDATE_INVOICE_CLN,(0,i.xk)()),Ke=(0,i.VP)(d.TC.DELETE_EXPIRED_INVOICE_CLN,(0,i.xk)()),Vt=(0,i.VP)(d.TC.SET_CHANNEL_TRANSACTION_CLN,(0,i.xk)()),ot=((0,i.VP)(d.TC.SET_CHANNEL_TRANSACTION_RES_CLN,(0,i.xk)()),(0,i.VP)(d.TC.FETCH_UTXO_BALANCES_CLN)),nt=(0,i.VP)(d.TC.SET_UTXO_BALANCES_CLN,(0,i.xk)()),ht=(0,i.VP)(d.TC.FETCH_OFFER_INVOICE_CLN,(0,i.xk)()),oe=(0,i.VP)(d.TC.SET_OFFER_INVOICE_CLN,(0,i.xk)()),Ye=(0,i.VP)(d.TC.FETCH_OFFERS_CLN),fe=(0,i.VP)(d.TC.SET_OFFERS_CLN,(0,i.xk)()),Qe=(0,i.VP)(d.TC.SAVE_NEW_OFFER_CLN,(0,i.xk)()),gt=(0,i.VP)(d.TC.ADD_OFFER_CLN,(0,i.xk)()),Gt=(0,i.VP)(d.TC.DISABLE_OFFER_CLN,(0,i.xk)()),rt=(0,i.VP)(d.TC.UPDATE_OFFER_CLN,(0,i.xk)()),cn=(0,i.VP)(d.TC.FETCH_OFFER_BOOKMARKS_CLN),Ft=(0,i.VP)(d.TC.SET_OFFER_BOOKMARKS_CLN,(0,i.xk)()),Sn=(0,i.VP)(d.TC.ADD_UPDATE_OFFER_BOOKMARK_CLN,(0,i.xk)()),Qn=(0,i.VP)(d.TC.DELETE_OFFER_BOOKMARK_CLN,(0,i.xk)()),h=(0,i.VP)(d.TC.REMOVE_OFFER_BOOKMARK_CLN,(0,i.xk)())},283(Zt,pe,l){"use strict";l.d(pe,{i:()=>V});var i=l(1747),d=l(1413),v=l(7673),T=l(9437),w=l(6354),e=l(1397),O=l(6977),f=l(2462),u=l(8321),L=l(4416),C=l(1771),B=l(8430),A=l(9584),Pe=l(2142),le=l(2615),Ce=l(9330),Ae=l(9640),j=l(3202),W=l(2571),G=l(8570),re=l(3694),xe=l(7879),Ee=l(7303);let V=(()=>{var ce;class be{constructor(J,De,Re,Xe,_e,he,Dt,lt,Le){this.actions=J,this.httpClient=De,this.store=Re,this.sessionService=Xe,this.commonService=_e,this.logger=he,this.router=Dt,this.wsService=lt,this.location=Le,this.CHILD_API_URL=L.H$+"/cln",this.CLN_VERISON="",this.flgInitialized=!1,this.unSubs=[new d.B,new d.B,new d.B],this.infoFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_INFO_CLN),(0,e.Z)(te=>(this.flgInitialized=!1,this.store.dispatch((0,C.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,B.no)({payload:{action:"FetchInfo",status:L.wn.INITIATED}})),this.store.dispatch((0,C.mt)({payload:L.MZ.GET_NODE_INFO})),this.httpClient.get(this.CHILD_API_URL+L.rl.GETINFO_API).pipe((0,O.Q)(this.actions.pipe((0,i.gp)(L.aU.SET_SELECTED_NODE))),(0,w.T)(ie=>(this.logger.info(ie),this.CLN_VERISON=ie.version||"",ie.chains&&ie.chains.length&&ie.chains[0]&&"object"==typeof ie.chains[0]&&ie.chains[0].hasOwnProperty("chain")&&ie?.chains[0].chain&&ie?.chains[0].chain.toLowerCase().indexOf("bitcoin")<0&&ie?.chains[0].chain.toLowerCase().indexOf("liquid")<0?(this.store.dispatch((0,B.no)({payload:{action:"FetchInfo",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.GET_NODE_INFO})),this.store.dispatch((0,C.Jh)()),setTimeout(()=>{this.store.dispatch((0,C.xO)({payload:{data:{type:L.A$.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}}))},500),{type:L.aU.LOGOUT,payload:"Sorry Not Sorry, RTL is Bitcoin Only!"}):(this.initializeRemainingData(ie,te.payload.loadPage),this.store.dispatch((0,B.no)({payload:{action:"FetchInfo",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.GET_NODE_INFO})),{type:L.TC.SET_INFO_CLN,payload:ie||{}}))),(0,T.W)(ie=>{const P=this.commonService.extractErrorCode(ie),F=503===P?"Unable to Connect to Core Lightning Server.":this.commonService.extractErrorMessage(ie);return this.router.navigate(["/error"],{state:{errorCode:P,errorMessage:F}}),this.handleErrorWithoutAlert("FetchInfo",L.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:P,error:F}),(0,v.of)({type:L.aU.VOID})})))))),this.fetchFeeRatesCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_FEE_RATES_CLN),(0,e.Z)(te=>(this.store.dispatch((0,B.no)({payload:{action:"FetchFeeRates"+te.payload,status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.NETWORK_API+"/feeRates",{style:te.payload}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"FetchFeeRates"+te.payload,status:L.wn.COMPLETED}})),{type:L.TC.SET_FEE_RATES_CLN,payload:ie||{}})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("FetchFeeRates"+te.payload,L.MZ.NO_SPINNER,"Fetching Fee Rates Failed.",ie),(0,v.of)({type:L.aU.VOID})))))))),this.getNewAddressCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.GET_NEW_ADDRESS_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.post(this.CHILD_API_URL+L.rl.ON_CHAIN_API+"/newaddr",{addresstype:te.payload.addressCode}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,C.y0)({payload:L.MZ.GENERATE_NEW_ADDRESS})),{type:L.TC.SET_NEW_ADDRESS_CLN,payload:ie&&ie[te.payload.addressCode]?ie[te.payload.addressCode]:{}})),(0,T.W)(ie=>(this.handleErrorWithAlert("GenerateNewAddress",L.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+L.rl.ON_CHAIN_API,ie),(0,v.of)({type:L.aU.VOID})))))))),this.setNewAddressCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SET_NEW_ADDRESS_CLN),(0,w.T)(te=>(this.logger.info(te.payload),te.payload))),{dispatch:!1}),this.peersFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_PEERS_CLN),(0,e.Z)(()=>(this.store.dispatch((0,B.no)({payload:{action:"FetchPeers",status:L.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+L.rl.PEERS_API).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.no)({payload:{action:"FetchPeers",status:L.wn.COMPLETED}})),{type:L.TC.SET_PEERS_CLN,payload:te||[]})),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchPeers",L.MZ.NO_SPINNER,"Fetching Peers Failed.",te),(0,v.of)({type:L.aU.VOID})))))))),this.saveNewPeerCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SAVE_NEW_PEER_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.CONNECT_PEER})),this.store.dispatch((0,B.no)({payload:{action:"SaveNewPeer",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.PEERS_API,{id:te.payload.id}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"SaveNewPeer",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.CONNECT_PEER})),this.store.dispatch((0,B.Qj)({payload:ie||[]})),{type:L.TC.NEWLY_ADDED_PEER_CLN,payload:{peer:ie.find(P=>0===te.payload.id.indexOf(P.id?P.id:""))}})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("SaveNewPeer",L.MZ.CONNECT_PEER,"Peer Connection Failed.",ie),(0,v.of)({type:L.aU.VOID})))))))),this.detachPeerCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.DETACH_PEER_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.DISCONNECT_PEER})),this.httpClient.post(this.CHILD_API_URL+L.rl.PEERS_API+"/disconnect",{id:te.payload.id,force:te.payload.force}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,C.y0)({payload:L.MZ.DISCONNECT_PEER})),this.store.dispatch((0,C.UI)({payload:"Peer Disconnected Successfully!"})),{type:L.TC.REMOVE_PEER_CLN,payload:{id:te.payload.id}})),(0,T.W)(ie=>(this.handleErrorWithAlert("PeerDisconnect",L.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+L.rl.PEERS_API+"/"+te.payload.id,ie),(0,v.of)({type:L.aU.VOID})))))))),this.channelsFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_CHANNELS_CLN),(0,e.Z)(()=>(this.store.dispatch((0,B.no)({payload:{action:"FetchChannels",status:L.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+L.rl.CHANNELS_API+"/listPeerChannels"))),(0,w.T)(te=>{this.logger.info(te),this.store.dispatch((0,B.no)({payload:{action:"FetchChannels",status:L.wn.COMPLETED}}));const ie={activeChannels:[],pendingChannels:[],inactiveChannels:[]};return te.forEach(P=>{"CHANNELD_NORMAL"===P.state?P.peer_connected?ie.activeChannels.push(P):ie.inactiveChannels.push(P):ie.pendingChannels.push(P)}),{type:L.TC.SET_CHANNELS_CLN,payload:ie}}),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchChannels",L.MZ.NO_SPINNER,"Fetching Channels Failed.",te),(0,v.of)({type:L.aU.VOID}))))),this.openNewChannelCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SAVE_NEW_CHANNEL_CLN),(0,e.Z)(te=>{this.store.dispatch((0,C.mt)({payload:L.MZ.OPEN_CHANNEL})),this.store.dispatch((0,B.no)({payload:{action:"SaveNewChannel",status:L.wn.INITIATED}}));const ie={id:te.payload.peerId,amount:te.payload.amount,feerate:te.payload.feeRate,announce:te.payload.announce};return te.payload.minconf&&(ie.minconf=te.payload.minconf),te.payload.utxos&&(ie.utxos=te.payload.utxos),te.payload.requestAmount&&(ie.request_amt=te.payload.requestAmount),te.payload.compactLease&&(ie.compact_lease=te.payload.compactLease),this.httpClient.post(this.CHILD_API_URL+L.rl.CHANNELS_API,ie).pipe((0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,B.no)({payload:{action:"SaveNewChannel",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.OPEN_CHANNEL})),this.store.dispatch((0,C.UI)({payload:"Channel Added Successfully!"})),this.store.dispatch((0,B.g6)()),{type:L.TC.FETCH_CHANNELS_CLN})),(0,T.W)(P=>(this.handleErrorWithoutAlert("SaveNewChannel",L.MZ.OPEN_CHANNEL,"Opening Channel Failed.",P),(0,v.of)({type:L.aU.VOID}))))}))),this.updateChannelCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.UPDATE_CHANNEL_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+L.rl.CHANNELS_API+"/setChannelFee",te.payload).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,C.y0)({payload:L.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,C.UI)("all"===te.payload.id?{payload:{message:"All Channels Updated Successfully. Fee policy updates may take some time to reflect on the channel.",duration:5e3}}:{payload:{message:"Channel Updated Successfully. Fee policy updates may take some time to reflect on the channel.",duration:5e3}})),{type:L.TC.FETCH_CHANNELS_CLN})),(0,T.W)(ie=>(this.handleErrorWithAlert("UpdateChannel",L.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+L.rl.CHANNELS_API,ie),(0,v.of)({type:L.aU.VOID})))))))),this.closeChannelCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.CLOSE_CHANNEL_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:te.payload.force?L.MZ.FORCE_CLOSE_CHANNEL:L.MZ.CLOSE_CHANNEL})),this.httpClient.post(this.CHILD_API_URL+L.rl.CHANNELS_API+"/close",{id:te.payload.channelId,unilateraltimeout:te.payload.force?1:null}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,C.y0)({payload:te.payload.force?L.MZ.FORCE_CLOSE_CHANNEL:L.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,B.$Q)()),this.store.dispatch((0,B.g6)()),this.store.dispatch((0,C.UI)({payload:"Channel Closed Successfully!"})),{type:L.TC.REMOVE_CHANNEL_CLN,payload:te.payload})),(0,T.W)(ie=>(this.handleErrorWithAlert("CloseChannel",te.payload.force?L.MZ.FORCE_CLOSE_CHANNEL:L.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+L.rl.CHANNELS_API,ie),(0,v.of)({type:L.aU.VOID})))))))),this.paymentsFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_PAYMENTS_CLN),(0,e.Z)(()=>(this.store.dispatch((0,B.no)({payload:{action:"FetchPayments",status:L.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+L.rl.PAYMENTS_API))),(0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.no)({payload:{action:"FetchPayments",status:L.wn.COMPLETED}})),{type:L.TC.SET_PAYMENTS_CLN,payload:te||[]})),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchPayments",L.MZ.NO_SPINNER,"Fetching Payments Failed.",te),(0,v.of)({type:L.aU.VOID}))))),this.fetchOfferInvoiceCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_OFFER_INVOICE_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.FETCH_INVOICE})),this.store.dispatch((0,B.no)({payload:{action:"FetchOfferInvoice",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.OFFERS_API+"/fetchOfferInvoice",te.payload).pipe((0,w.T)(ie=>{this.logger.info(ie),setTimeout(()=>{this.store.dispatch((0,B.no)({payload:{action:"FetchOfferInvoice",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.FETCH_INVOICE})),this.store.dispatch((0,B.GZ)({payload:ie||{}}))},500)}),(0,T.W)(ie=>(this.handleErrorWithoutAlert("FetchOfferInvoice",L.MZ.FETCH_INVOICE,"Offer Invoice Fetch Failed",ie),(0,v.of)({type:L.aU.VOID}))))))),{dispatch:!1}),this.setOfferInvoiceCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SET_OFFER_INVOICE_CLN),(0,w.T)(te=>(this.logger.info(te.payload),te.payload))),{dispatch:!1}),this.sendPaymentCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SEND_PAYMENT_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:te.payload.uiMessage})),this.store.dispatch((0,B.no)({payload:{action:"SendPayment",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.PAYMENTS_API,te.payload).pipe((0,w.T)(ie=>{this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"SendPayment",status:L.wn.COMPLETED}}));let P="Payment Sent Successfully!";ie.saveToDBError&&(P="Payment Sent Successfully but Offer Saving to Database Failed."),ie.saveToDBResponse&&"NA"!==ie.saveToDBResponse&&(this.store.dispatch((0,B.Db)({payload:ie.saveToDBResponse})),P="Payment Sent Successfully and Offer Saved to Database."),setTimeout(()=>{this.store.dispatch((0,B.$Q)()),this.store.dispatch((0,B.g6)()),this.store.dispatch((0,B.CK)()),this.store.dispatch((0,C.y0)({payload:te.payload.uiMessage})),this.store.dispatch((0,C.UI)({payload:P})),this.store.dispatch((0,B.N4)({payload:ie.paymentResponse}))},1e3)}),(0,T.W)(ie=>(this.logger.error("Error: "+JSON.stringify(ie)),te.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",te.payload.uiMessage,"Send Payment Failed.",ie):this.handleErrorWithAlert("SendPayment",te.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+L.rl.PAYMENTS_API,ie),(0,v.of)({type:L.aU.VOID}))))))),{dispatch:!1}),this.queryRoutesFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.GET_QUERY_ROUTES_CLN),(0,e.Z)(te=>(this.store.dispatch((0,B.no)({payload:{action:"GetQueryRoutes",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.NETWORK_API+"/getRoute",{id:te.payload.destPubkey,amount_msat:te.payload.amount,riskfactor:0}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"GetQueryRoutes",status:L.wn.COMPLETED}})),{type:L.TC.SET_QUERY_ROUTES_CLN,payload:ie})),(0,T.W)(ie=>(this.store.dispatch((0,B.Hm)({payload:{route:[]}})),this.handleErrorWithAlert("GetQueryRoutes",L.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+L.rl.NETWORK_API+"/getRoute",ie),(0,v.of)({type:L.aU.VOID})))))))),this.setQueryRoutesCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SET_QUERY_ROUTES_CLN),(0,w.T)(te=>te.payload)),{dispatch:!1}),this.peerLookupCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.PEER_LOOKUP_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.SEARCHING_NODE})),this.store.dispatch((0,B.no)({payload:{action:"Lookup",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.NETWORK_API+"/listNodes",{id:te.payload}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"Lookup",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.SEARCHING_NODE})),{type:L.TC.SET_LOOKUP_CLN,payload:ie})),(0,T.W)(ie=>(this.handleErrorWithAlert("Lookup",L.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+L.rl.NETWORK_API+"/listNodes/"+te.payload,ie),(0,v.of)({type:L.aU.VOID})))))))),this.channelLookupCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.CHANNEL_LOOKUP_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:te.payload.uiMessage})),this.store.dispatch((0,B.no)({payload:{action:"Lookup",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.NETWORK_API+"/listChannels",{short_channel_id:te.payload.shortChannelID}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"Lookup",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:te.payload.uiMessage})),{type:L.TC.SET_LOOKUP_CLN,payload:ie})),(0,T.W)(ie=>(te.payload.showError?this.handleErrorWithAlert("Lookup",te.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+L.rl.NETWORK_API+"/listChannels/"+te.payload.shortChannelID,ie):this.store.dispatch((0,C.y0)({payload:te.payload.uiMessage})),this.store.dispatch((0,B.$J)({payload:[]})),(0,v.of)({type:L.aU.VOID})))))))),this.invoiceLookupCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.INVOICE_LOOKUP_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,B.no)({payload:{action:"Lookup",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.INVOICES_API+"/lookup",{label:te.payload}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"Lookup",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.SEARCHING_INVOICE})),ie.invoices&&ie.invoices.length&&ie.invoices.length>0&&this.store.dispatch((0,B.Dq)({payload:ie.invoices[0]})),{type:L.TC.SET_LOOKUP_CLN,payload:ie.invoices&&ie.invoices.length&&ie.invoices.length>0?ie.invoices[0]:ie})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("Lookup",L.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",ie),this.store.dispatch((0,C.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,v.of)({type:L.aU.VOID})))))))),this.setLookupCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SET_LOOKUP_CLN),(0,w.T)(te=>(this.logger.info(te.payload),te.payload))),{dispatch:!1}),this.fetchForwardingHistoryCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.GET_FORWARDING_HISTORY_CLN),(0,e.Z)(te=>{const ie=te.payload.status.charAt(0).toUpperCase();return this.store.dispatch((0,B.no)({payload:{action:"FetchForwardingHistory"+ie,status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.CHANNELS_API+"/listForwards",te.payload).pipe((0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,B.no)({payload:{action:"FetchForwardingHistory"+ie,status:L.wn.COMPLETED}})),te.payload.status===L.xk.FAILED?this.store.dispatch((0,B.kv)({payload:{status:L.xk.FAILED,totalForwards:P.length,listForwards:P}})):te.payload.status===L.xk.LOCAL_FAILED?this.store.dispatch((0,B.kv)({payload:{status:L.xk.LOCAL_FAILED,totalForwards:P.length,listForwards:P}})):te.payload.status===L.xk.SETTLED&&this.store.dispatch((0,B.kv)({payload:{status:L.xk.SETTLED,totalForwards:P.length,listForwards:P}})),{type:L.aU.VOID})),(0,T.W)(P=>(this.handleErrorWithAlert("FetchForwardingHistory"+ie,L.MZ.NO_SPINNER,"Get "+te.payload.status+" Forwarding History Failed",this.CHILD_API_URL+L.rl.CHANNELS_API+"/listForwards",P),(0,v.of)({type:L.aU.VOID}))))}))),this.deleteExpiredInvoiceCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.DELETE_EXPIRED_INVOICE_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.DELETE_INVOICE})),this.httpClient.post(this.CHILD_API_URL+L.rl.INVOICES_API+"/delete",{subsystem:"expiredinvoices",age:L.NG}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,C.y0)({payload:L.MZ.DELETE_INVOICE})),this.store.dispatch((0,C.UI)({payload:ie.status})),{type:L.TC.FETCH_INVOICES_CLN})),(0,T.W)(ie=>(this.handleErrorWithAlert("DeleteInvoices",L.MZ.DELETE_INVOICE,"Delete Invoice Failed",this.CHILD_API_URL+L.rl.INVOICES_API,ie),(0,v.of)({type:L.aU.VOID})))))))),this.saveNewInvoiceCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SAVE_NEW_INVOICE_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.ADD_INVOICE})),this.store.dispatch((0,B.no)({payload:{action:"SaveNewInvoice",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.INVOICES_API,te.payload).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"SaveNewInvoice",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.ADD_INVOICE})),ie.amount_msat=te.payload.amount_msat,ie.label=te.payload.label,ie.expires_at=Math.round((new Date).getTime()/1e3+te.payload.expiry),ie.description=te.payload.description,ie.status="unpaid",setTimeout(()=>{this.store.dispatch((0,C.xO)({payload:{data:{invoice:ie,newlyAdded:!0,component:u.y}}}))},200),{type:L.TC.ADD_INVOICE_CLN,payload:ie})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("SaveNewInvoice",L.MZ.ADD_INVOICE,"Add Invoice Failed.",ie),(0,v.of)({type:L.aU.VOID})))))))),this.saveNewOfferCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SAVE_NEW_OFFER_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.CREATE_OFFER})),this.store.dispatch((0,B.no)({payload:{action:"SaveNewOffer",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.OFFERS_API,te.payload).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"SaveNewOffer",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.CREATE_OFFER})),setTimeout(()=>{this.store.dispatch((0,C.xO)({payload:{data:{offer:ie,newlyAdded:!0,component:Pe.f}}}))},100),{type:L.TC.ADD_OFFER_CLN,payload:ie})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("SaveNewOffer",L.MZ.CREATE_OFFER,"Create Offer Failed.",ie),(0,v.of)({type:L.aU.VOID})))))))),this.invoicesFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_INVOICES_CLN),(0,e.Z)(()=>(this.store.dispatch((0,B.no)({payload:{action:"FetchInvoices",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.INVOICES_API+"/lookup",null))),(0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.no)({payload:{action:"FetchInvoices",status:L.wn.COMPLETED}})),{type:L.TC.SET_INVOICES_CLN,payload:te})),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchInvoices",L.MZ.NO_SPINNER,"Fetching Invoices Failed.",te),(0,v.of)({type:L.aU.VOID}))))),this.offersFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_OFFERS_CLN),(0,e.Z)(te=>(this.store.dispatch((0,B.no)({payload:{action:"FetchOffers",status:L.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+L.rl.OFFERS_API).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"FetchOffers",status:L.wn.COMPLETED}})),{type:L.TC.SET_OFFERS_CLN,payload:ie.offers?ie.offers:[]})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("FetchOffers",L.MZ.NO_SPINNER,"Fetching Offers Failed.",ie),(0,v.of)({type:L.aU.VOID})))))))),this.offersDisableCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.DISABLE_OFFER_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.DISABLE_OFFER})),this.store.dispatch((0,B.no)({payload:{action:"DisableOffer",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.OFFERS_API+"/disableOffer",{offer_id:te.payload.offer_id}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"DisableOffer",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.DISABLE_OFFER})),this.store.dispatch((0,C.UI)({payload:"Offer Disabled Successfully!"})),{type:L.TC.UPDATE_OFFER_CLN,payload:{offer:ie}})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("DisableOffer",L.MZ.DISABLE_OFFER,"Disabling Offer Failed.",ie),(0,v.of)({type:L.aU.VOID})))))))),this.offerBookmarksFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_OFFER_BOOKMARKS_CLN),(0,e.Z)(te=>(this.store.dispatch((0,B.no)({payload:{action:"FetchOfferBookmarks",status:L.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+L.rl.OFFERS_API+"/offerbookmarks").pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"FetchOfferBookmarks",status:L.wn.COMPLETED}})),{type:L.TC.SET_OFFER_BOOKMARKS_CLN,payload:ie||[]})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("FetchOfferBookmarks",L.MZ.NO_SPINNER,"Fetching Offer Bookmarks Failed.",ie),(0,v.of)({type:L.aU.VOID})))))))),this.peidOffersDeleteCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.DELETE_OFFER_BOOKMARK_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,B.no)({payload:{action:"DeleteOfferBookmark",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.OFFERS_API+"/offerbookmark/delete",{offer_str:te.payload.bolt12}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"DeleteOfferBookmark",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,C.UI)({payload:"Offer Bookmark Deleted Successfully!"})),{type:L.TC.REMOVE_OFFER_BOOKMARK_CLN,payload:{bolt12:te.payload.bolt12}})),(0,T.W)(ie=>(this.handleErrorWithAlert("DeleteOfferBookmark",L.MZ.DELETE_OFFER_BOOKMARK,"Deleting Offer Bookmark Failed.",this.CHILD_API_URL+L.rl.OFFERS_API+"/offerbookmark/"+te.payload.bolt12,ie),(0,v.of)({type:L.aU.VOID})))))))),this.SetChannelTransactionCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SET_CHANNEL_TRANSACTION_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.SEND_FUNDS})),this.store.dispatch((0,B.no)({payload:{action:"SetChannelTransaction",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.ON_CHAIN_API,te.payload).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"SetChannelTransaction",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.SEND_FUNDS})),this.store.dispatch((0,B.g6)()),{type:L.TC.SET_CHANNEL_TRANSACTION_RES_CLN,payload:ie})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("SetChannelTransaction",L.MZ.SEND_FUNDS,"Sending Fund Failed.",ie),(0,v.of)({type:L.aU.VOID})))))))),this.utxoBalancesFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_UTXO_BALANCES_CLN),(0,e.Z)(()=>(this.store.dispatch((0,B.no)({payload:{action:"FetchUTXOBalances",status:L.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+L.rl.ON_CHAIN_API+"/utxos"))),(0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.no)({payload:{action:"FetchUTXOBalances",status:L.wn.COMPLETED}})),{type:L.TC.SET_UTXO_BALANCES_CLN,payload:te})),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchUTXOBalances",L.MZ.NO_SPINNER,"Fetching UTXO and Balances Failed.",te),(0,v.of)({type:L.aU.VOID}))))),this.pageSettingsFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_PAGE_SETTINGS_CLN),(0,e.Z)(()=>(this.store.dispatch((0,B.no)({payload:{action:"FetchPageSettings",status:L.wn.INITIATED}})),this.httpClient.get(L.rl.PAGE_SETTINGS_API).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.no)({payload:{action:"FetchPageSettings",status:L.wn.COMPLETED}})),{type:L.TC.SET_PAGE_SETTINGS_CLN,payload:te||[]})),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchPageSettings",L.MZ.NO_SPINNER,"Fetching Page Settings Failed.",te),(0,v.of)({type:L.aU.VOID})))))))),this.savePageSettingsCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SAVE_PAGE_SETTINGS_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,B.no)({payload:{action:"SavePageSettings",status:L.wn.INITIATED}})),this.httpClient.post(L.rl.PAGE_SETTINGS_API,te.payload).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"SavePageSettings",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,C.UI)({payload:"Page Layout Updated Successfully!"})),{type:L.TC.SET_PAGE_SETTINGS_CLN,payload:ie||[]})),(0,T.W)(ie=>(this.handleErrorWithAlert("SavePageSettings",L.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",L.rl.PAGE_SETTINGS_API,ie),(0,v.of)({type:L.aU.VOID})))))))),this.store.select(A.ru).pipe((0,O.Q)(this.unSubs[0])).subscribe(te=>{te.FetchInfo.status!==L.wn.COMPLETED&&te.FetchInfo.status!==L.wn.ERROR||te.FetchChannels.status!==L.wn.COMPLETED&&te.FetchChannels.status!==L.wn.ERROR||te.FetchUTXOBalances.status!==L.wn.COMPLETED&&te.FetchUTXOBalances.status!==L.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,C.y0)({payload:L.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.clWSMessages.pipe((0,O.Q)(this.unSubs[1])).subscribe(te=>{this.logger.info("Received new message from the service: "+JSON.stringify(te)),te&&te.data&&te.data[L.Jr.INVOICE_PAYMENT]&&te.data[L.Jr.INVOICE_PAYMENT].label&&this.store.dispatch((0,B.Dq)({payload:te.data[L.Jr.INVOICE_PAYMENT]}))})}initializeRemainingData(J,De){this.sessionService.setItem("clnUnlocked","true");const Re={identity_pubkey:J.id,alias:J.alias,testnet:"testnet"===J.network.toLowerCase(),chains:J.chains,uris:J.uris,version:J.version,api_version:J.api_version,numberOfPendingChannels:J.num_pending_channels};this.store.dispatch((0,C.mt)({payload:L.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,C.Fl)({payload:Re}));let Xe=this.location.path();Xe.includes("/lnd/")?Xe=Xe?.replace("/lnd/","/cln/"):Xe.includes("/ecl/")&&(Xe=Xe?.replace("/ecl/","/cln/")),(Xe.includes("/login")||Xe.includes("/error")||""===Xe||"HOME"===De||Xe.includes("?access-key="))&&(Xe="/cln/home"),this.router.navigate([Xe]),this.store.dispatch((0,B.Do)()),this.store.dispatch((0,B.$Q)()),this.store.dispatch((0,B.g6)()),this.store.dispatch((0,B.kX)({payload:"perkw"})),this.store.dispatch((0,B.kX)({payload:"perkb"})),this.store.dispatch((0,B.Gy)()),this.store.dispatch((0,B.CK)())}handleErrorWithoutAlert(J,De,Re,Xe){if(this.logger.error("ERROR IN: "+J+"\n"+JSON.stringify(Xe)),401===Xe.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,C.Jh)()),this.store.dispatch((0,C.ri)({payload:"Authentication Failed: "+JSON.stringify(Xe.error)}));else{this.store.dispatch((0,C.y0)({payload:De}));const _e=this.commonService.extractErrorMessage(Xe,Re);this.store.dispatch((0,B.no)({payload:{action:J,status:L.wn.ERROR,statusCode:Xe.status.toString(),message:_e}}))}}handleErrorWithAlert(J,De,Re,Xe,_e){if(this.logger.error(_e),401===_e.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,C.Jh)()),this.store.dispatch((0,C.ri)({payload:"Authentication Failed: "+JSON.stringify(_e.error)})),this.store.dispatch((0,C.UI)({payload:"Authentication Failed: "+_e.error}));else{this.store.dispatch((0,C.y0)({payload:De}));const he=this.commonService.extractErrorMessage(_e);this.store.dispatch((0,C.xO)({payload:{data:{type:"ERROR",alertTitle:Re,message:{code:_e.status,message:he,URL:Xe},component:f.f}}})),this.store.dispatch((0,B.no)({payload:{action:J,status:L.wn.ERROR,statusCode:_e.status.toString(),message:he,URL:Xe}}))}}ngOnDestroy(){this.unSubs.forEach(J=>{J.next(null),J.complete()})}static#e=ce=()=>(this.\u0275fac=function(De){return new(De||be)(le.KVO(i.En),le.KVO(Ce.Qq),le.KVO(Ae.il),le.KVO(j.Q),le.KVO(W.h),le.KVO(G.gP),le.KVO(re.Ix),le.KVO(xe.I),le.KVO(Ee.aZ))},this.\u0275prov=le.jDH({token:be,factory:be.\u0275fac}))}return ce(),be})()},9584(Zt,pe,l){"use strict";l.d(pe,{Al:()=>A,BM:()=>Pe,Dv:()=>Ce,GX:()=>j,Ie:()=>le,KT:()=>f,O5:()=>re,Pj:()=>B,RB:()=>C,RQ:()=>G,aJ:()=>Ae,av:()=>T,ip:()=>xe,kQ:()=>W,kr:()=>L,mH:()=>w,os:()=>u,ru:()=>O});var d=l(9640);const v=(0,d.UX)("cln"),T=(0,d.Mz)(v,V=>({pageSettings:V.pageSettings,apiCallStatus:V.apisCallStatus.FetchPageSettings})),w=(0,d.Mz)(v,V=>V.information),O=((0,d.Mz)(v,V=>V.apisCallStatus.FetchInfo),(0,d.Mz)(v,V=>V.apisCallStatus)),f=(0,d.Mz)(v,V=>({payments:V.payments,apiCallStatus:V.apisCallStatus.FetchPayments})),u=(0,d.Mz)(v,V=>({peers:V.peers,apiCallStatus:V.apisCallStatus.FetchPeers})),L=(0,d.Mz)(v,V=>({feeRatesPerKB:V.feeRatesPerKB,apiCallStatus:V.apisCallStatus.FetchFeeRatesperkb})),C=(0,d.Mz)(v,V=>({feeRatesPerKW:V.feeRatesPerKW,apiCallStatus:V.apisCallStatus.FetchFeeRatesperkw})),B=(0,d.Mz)(v,V=>({listInvoices:V.invoices,apiCallStatus:V.apisCallStatus.FetchInvoices})),A=(0,d.Mz)(v,V=>({utxos:V.utxos,balance:V.balance,localRemoteBalance:V.localRemoteBalance,apiCallStatus:V.apisCallStatus.FetchUTXOBalances})),Pe=(0,d.Mz)(v,V=>({activeChannels:V.activeChannels,pendingChannels:V.pendingChannels,inactiveChannels:V.inactiveChannels,apiCallStatus:V.apisCallStatus.FetchChannels})),le=(0,d.Mz)(v,V=>({forwardingHistory:V.forwardingHistory,apiCallStatus:V.apisCallStatus.FetchForwardingHistoryS})),Ce=(0,d.Mz)(v,V=>({failedForwardingHistory:V.failedForwardingHistory,apiCallStatus:V.apisCallStatus.FetchForwardingHistoryF})),Ae=(0,d.Mz)(v,V=>({localFailedForwardingHistory:V.localFailedForwardingHistory,apiCallStatus:V.apisCallStatus.FetchForwardingHistoryL})),j=(0,d.Mz)(v,V=>({information:V.information,balance:V.balance,numPeers:V.peers.length})),W=(0,d.Mz)(v,V=>({information:V.information,balance:V.balance})),G=(0,d.Mz)(v,V=>({information:V.information,fees:V.fees,apisCallStatus:[V.apisCallStatus.FetchInfo,V.apisCallStatus.FetchForwardingHistoryS]})),re=(0,d.Mz)(v,V=>({offers:V.offers,apiCallStatus:V.apisCallStatus.FetchOffers})),xe=(0,d.Mz)(v,V=>({offersBookmarks:V.offersBookmarks,apiCallStatus:V.apisCallStatus.FetchOfferBookmarks}))},8321(Zt,pe,l){"use strict";l.d(pe,{y:()=>fe});var i=l(1585),d=l(5383),v=l(1413),T=l(6977),w=l(4416),e=l(9584),O=l(2615),f=l(3664),u=l(8570),L=l(2571),C=l(5416),B=l(9640),A=l(2200),Pe=l(60),le=l(8834),Ce=l(5596),Ae=l(1997),j=l(9183),W=l(2920),G=l(6038),re=l(455),xe=l(8288),Ee=l(9157),V=l(9587);const ce=Qe=>({"display-none":Qe}),be=Qe=>({"xs-scroll-y":Qe}),ne=(Qe,gt)=>({"mt-2":Qe,"mt-1":gt}),J=Qe=>({"mr-0":Qe}),De=()=>[];function Re(Qe,gt){if(1&Qe&&f.nrm(0,"qr-code",33),2&Qe){const Gt=f.XpG();f.Y8G("value",(null==Gt.invoice?null:Gt.invoice.bolt11)||(null==Gt.invoice?null:Gt.invoice.bolt12))("size",Gt.qrWidth)}}function Xe(Qe,gt){1&Qe&&(f.j41(0,"span",34),f.EFF(1,"N/A"),f.k0s())}function _e(Qe,gt){if(1&Qe&&f.nrm(0,"span",35),2&Qe){const Gt=f.XpG();f.Y8G("ngClass",f.eq3(1,J,Gt.screenSize===Gt.screenSizeEnum.XS))}}function he(Qe,gt){if(1&Qe&&f.nrm(0,"span",36),2&Qe){const Gt=f.XpG();f.Y8G("ngClass",f.eq3(1,J,Gt.screenSize===Gt.screenSizeEnum.XS))}}function Dt(Qe,gt){if(1&Qe&&f.nrm(0,"span",37),2&Qe){const Gt=f.XpG();f.Y8G("ngClass",f.eq3(1,J,Gt.screenSize===Gt.screenSizeEnum.XS))}}function lt(Qe,gt){if(1&Qe&&f.nrm(0,"qr-code",33),2&Qe){const Gt=f.XpG();f.Y8G("value",(null==Gt.invoice?null:Gt.invoice.bolt11)||(null==Gt.invoice?null:Gt.invoice.bolt12))("size",Gt.qrWidth)}}function Le(Qe,gt){1&Qe&&(f.j41(0,"span",38),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function te(Qe,gt){1&Qe&&f.nrm(0,"mat-divider",39)}function ie(Qe,gt){if(1&Qe&&(f.j41(0,"div",20)(1,"div",40),f.nrm(2,"fa-icon",41),f.j41(3,"span"),f.EFF(4),f.k0s()()()),2&Qe){const Gt=f.XpG();f.R7$(2),f.Y8G("icon",Gt.faExclamationTriangle),f.R7$(2),f.JRh(null==Gt.invoice?null:Gt.invoice.warning_capacity)}}function P(Qe,gt){1&Qe&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function F(Qe,gt){1&Qe&&f.nrm(0,"span",47)}function ve(Qe,gt){if(1&Qe&&(f.j41(0,"div",43)(1,"div",44)(2,"span",45),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,F,1,0,"span",46),f.k0s()()),2&Qe){const Gt=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,(null==Gt.invoice?null:Gt.invoice.amount_received_msat)/1e3)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,De).constructor(35))}}function H(Qe,gt){if(1&Qe&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&Qe){const Gt=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,(null==Gt.invoice?null:Gt.invoice.amount_received_msat)/1e3)," Sats")}}function $(Qe,gt){if(1&Qe&&(f.qex(0),f.DNE(1,ve,6,5,"div",42)(2,H,3,3,"div",24),f.bVm()),2&Qe){const Gt=f.XpG();f.R7$(),f.Y8G("ngIf",Gt.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!Gt.flgInvoicePaid)}}function Ke(Qe,gt){1&Qe&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function Vt(Qe,gt){1&Qe&&f.nrm(0,"mat-spinner",49),2&Qe&&f.Y8G("diameter",20)}function St(Qe,gt){if(1&Qe&&(f.qex(0),f.DNE(1,Ke,2,0,"span",24)(2,Vt,1,1,"mat-spinner",48),f.bVm()),2&Qe){const Gt=f.XpG();f.R7$(),f.Y8G("ngIf","unpaid"!==(null==Gt.invoice?null:Gt.invoice.status)),f.R7$(),f.Y8G("ngIf","unpaid"===(null==Gt.invoice?null:Gt.invoice.status))}}function ot(Qe,gt){if(1&Qe&&(f.j41(0,"div"),f.nrm(1,"mat-divider",26),f.j41(2,"div",20)(3,"div",27)(4,"h4",22),f.EFF(5,"Payment Hash"),f.k0s(),f.j41(6,"span",25),f.EFF(7),f.k0s()()(),f.nrm(8,"mat-divider",26),f.j41(9,"div",20)(10,"div",27)(11,"h4",22),f.EFF(12,"Label"),f.k0s(),f.j41(13,"span",25),f.EFF(14),f.k0s()()(),f.nrm(15,"mat-divider",26),f.k0s()),2&Qe){const Gt=f.XpG();f.R7$(7),f.JRh(null==Gt.invoice?null:Gt.invoice.payment_hash),f.R7$(7),f.JRh(null==Gt.invoice?null:Gt.invoice.label)}}function nt(Qe,gt){1&Qe&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function ht(Qe,gt){1&Qe&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function oe(Qe,gt){if(1&Qe){const Gt=f.RV6();f.j41(0,"button",50),f.bIt("copied",function(cn){O.eBV(Gt);const Ft=f.XpG();return O.Njj(Ft.onCopyPayment(cn))}),f.EFF(1,"Copy Invoice"),f.k0s()}if(2&Qe){const Gt=f.XpG();f.Y8G("payload",(null==Gt.invoice?null:Gt.invoice.bolt11)||(null==Gt.invoice?null:Gt.invoice.bolt12))}}function Ye(Qe,gt){if(1&Qe){const Gt=f.RV6();f.j41(0,"button",51),f.bIt("click",function(){O.eBV(Gt);const cn=f.XpG();return O.Njj(cn.onClose())}),f.EFF(1,"OK"),f.k0s()}}let fe=(()=>{var Qe;class gt{constructor(rt,cn,Ft,Sn,Qn,h){this.dialogRef=rt,this.data=cn,this.logger=Ft,this.commonService=Sn,this.snackBar=Qn,this.store=h,this.faReceipt=d.Mf0,this.faExclamationTriangle=d.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.invoiceStatus="",this.qrWidth=240,this.screenSize="",this.screenSizeEnum=w.f7,this.flgInvoicePaid=!1,this.unSubs=[new v.B,new v.B,new v.B,new v.B,new v.B]}ngOnInit(){this.invoice=this.data.invoice,this.invoiceStatus=this.invoice.status,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===w.f7.XS&&(this.qrWidth=220),this.store.select(e.Pj).pipe((0,T.Q)(this.unSubs[1])).subscribe(rt=>{const Ft=(rt.listInvoices.invoices||[])?.find(Sn=>Sn.payment_hash===this.invoice.payment_hash)||null;Ft&&(this.invoice=Ft),this.invoiceStatus!==this.invoice.status&&"paid"===this.invoice.status&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(this.invoice),this.logger.info(this.invoiceStatus),this.logger.info(Ft),this.logger.info(rt)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(rt){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+rt)}ngOnDestroy(){this.unSubs.forEach(rt=>{rt.next(null),rt.complete()})}static#e=Qe=()=>(this.\u0275fac=function(cn){return new(cn||gt)(f.rXU(i.CP),f.rXU(i.Vh),f.rXU(u.gP),f.rXU(L.h),f.rXU(C.UG),f.rXU(B.il))},this.\u0275cmp=f.VBU({type:gt,selectors:[["rtl-cln-invoice-information"]],standalone:!1,decls:72,vars:49,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["class","dot green ml-1","matTooltip","Paid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow ml-1","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red ml-1","matTooltip","Expired","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"overflow-wrap","foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"font-size-300"],["matTooltip","Paid","matTooltipPosition","right",1,"dot","green","ml-1",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow","ml-1",3,"ngClass"],["matTooltip","Expired","matTooltipPosition","right",1,"dot","red","ml-1",3,"ngClass"],[1,"font-size-120"],[1,"my-1"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(cn,Ft){if(1&cn){const Sn=f.RV6();f.j41(0,"div",1)(1,"div",2),f.DNE(2,Re,1,2,"qr-code",3)(3,Xe,2,0,"span",4),f.k0s(),f.j41(4,"div",5)(5,"mat-card-header",6)(6,"div",7),f.nrm(7,"fa-icon",8),f.j41(8,"span",9),f.EFF(9),f.DNE(10,_e,1,3,"span",10)(11,he,1,3,"span",11)(12,Dt,1,3,"span",12),f.k0s()(),f.j41(13,"button",13),f.bIt("click",function(){return O.eBV(Sn),O.Njj(Ft.onClose())}),f.EFF(14,"X"),f.k0s()(),f.j41(15,"mat-card-content",14)(16,"div",15)(17,"div",16),f.DNE(18,lt,1,2,"qr-code",3)(19,Le,2,0,"span",17),f.k0s(),f.DNE(20,te,1,0,"mat-divider",18)(21,ie,5,2,"div",19),f.j41(22,"div",20)(23,"div",21)(24,"h4",22),f.EFF(25),f.k0s(),f.j41(26,"span",23),f.EFF(27),f.nI1(28,"number"),f.DNE(29,P,2,0,"ng-container",24),f.k0s()(),f.j41(30,"div",21)(31,"h4",22),f.EFF(32,"Amount Received"),f.k0s(),f.j41(33,"span",25),f.DNE(34,$,3,2,"ng-container",24)(35,St,3,2,"ng-container",24),f.k0s()()(),f.nrm(36,"mat-divider",26),f.j41(37,"div",20)(38,"div",21)(39,"h4",22),f.EFF(40,"Date Expiry"),f.k0s(),f.j41(41,"span",23),f.EFF(42),f.nI1(43,"date"),f.k0s()(),f.j41(44,"div",21)(45,"h4",22),f.EFF(46,"Date Settled"),f.k0s(),f.j41(47,"span",23),f.EFF(48),f.nI1(49,"date"),f.k0s()()(),f.nrm(50,"mat-divider",26),f.j41(51,"div",20)(52,"div",27)(53,"h4",22),f.EFF(54,"Description"),f.k0s(),f.j41(55,"span",23),f.EFF(56),f.k0s()()(),f.nrm(57,"mat-divider",26),f.j41(58,"div",20)(59,"div",27)(60,"h4",22),f.EFF(61),f.k0s(),f.j41(62,"span",25),f.EFF(63),f.k0s()()(),f.DNE(64,ot,16,2,"div",24),f.j41(65,"div",28)(66,"button",29),f.bIt("click",function(){return O.eBV(Sn),O.Njj(Ft.onShowAdvanced())}),f.DNE(67,nt,2,0,"p",30)(68,ht,2,0,"ng-template",null,0,f.C5r),f.k0s(),f.DNE(70,oe,2,1,"button",31)(71,Ye,2,0,"button",32),f.k0s()()()()()}if(2&cn){const Sn=f.sdS(69);f.R7$(),f.Y8G("fxLayoutAlign",null!=Ft.invoice&&Ft.invoice.bolt11&&""!==(null==Ft.invoice?null:Ft.invoice.bolt11)||null!=Ft.invoice&&Ft.invoice.bolt12&&""!==(null==Ft.invoice?null:Ft.invoice.bolt12)?"center start":"center center")("ngClass",f.eq3(40,ce,Ft.screenSize===Ft.screenSizeEnum.XS||Ft.screenSize===Ft.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Ft.invoice?null:Ft.invoice.bolt11)&&""!==(null==Ft.invoice?null:Ft.invoice.bolt11)||(null==Ft.invoice?null:Ft.invoice.bolt12)&&""!==(null==Ft.invoice?null:Ft.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=Ft.invoice&&Ft.invoice.bolt11||null!=Ft.invoice&&Ft.invoice.bolt12)),f.R7$(4),f.Y8G("icon",Ft.faReceipt),f.R7$(2),f.SpI(" ",Ft.screenSize===Ft.screenSizeEnum.XS?Ft.newlyAdded?"Created":"Invoice":Ft.newlyAdded?"Invoice Created":"Invoice Information"," "),f.R7$(),f.Y8G("ngIf","paid"===(null==Ft.invoice?null:Ft.invoice.status)),f.R7$(),f.Y8G("ngIf","unpaid"===(null==Ft.invoice?null:Ft.invoice.status)),f.R7$(),f.Y8G("ngIf","expired"===(null==Ft.invoice?null:Ft.invoice.status)),f.R7$(3),f.Y8G("ngClass",f.eq3(42,be,Ft.screenSize===Ft.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=Ft.invoice&&Ft.invoice.bolt11&&""!==(null==Ft.invoice?null:Ft.invoice.bolt11)||null!=Ft.invoice&&Ft.invoice.bolt12&&""!==(null==Ft.invoice?null:Ft.invoice.bolt12)?"center start":"center center")("ngClass",f.eq3(44,ce,Ft.screenSize!==Ft.screenSizeEnum.XS&&Ft.screenSize!==Ft.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Ft.invoice?null:Ft.invoice.bolt11)&&""!==(null==Ft.invoice?null:Ft.invoice.bolt11)||(null==Ft.invoice?null:Ft.invoice.bolt12)&&""!==(null==Ft.invoice?null:Ft.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=Ft.invoice&&Ft.invoice.bolt11||null!=Ft.invoice&&Ft.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",Ft.screenSize===Ft.screenSizeEnum.XS||Ft.screenSize===Ft.screenSizeEnum.SM),f.R7$(),f.Y8G("ngIf",null==Ft.invoice?null:Ft.invoice.warning_capacity),f.R7$(4),f.JRh(Ft.screenSize===Ft.screenSizeEnum.XS?"Amount":"Amount Requested"),f.R7$(2),f.SpI(" ",f.bMT(28,32,(null==Ft.invoice?null:Ft.invoice.amount_msat)/1e3||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=Ft.invoice&&Ft.invoice.amount_msat)||"0"===(null==Ft.invoice?null:Ft.invoice.amount_msat)||"any"===(null==Ft.invoice?null:Ft.invoice.amount_msat)),f.R7$(5),f.Y8G("ngIf","paid"===(null==Ft.invoice?null:Ft.invoice.status)),f.R7$(),f.Y8G("ngIf","paid"!==(null==Ft.invoice?null:Ft.invoice.status)),f.R7$(7),f.JRh(f.i5U(43,34,1e3*(null==Ft.invoice?null:Ft.invoice.expires_at),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.i5U(49,37,1e3*(null==Ft.invoice?null:Ft.invoice.paid_at),"dd/MMM/y HH:mm")||"-"),f.R7$(8),f.JRh((null==Ft.invoice?null:Ft.invoice.description)||"-"),f.R7$(5),f.SpI("",null!=Ft.invoice&&Ft.invoice.bolt12?"Bolt12":null!=Ft.invoice&&Ft.invoice.bolt11&&!Ft.invoice.label.includes("keysend-")?"Bolt11":"Keysend"," Invoice"),f.R7$(2),f.JRh((null==Ft.invoice?null:Ft.invoice.bolt11)||(null==Ft.invoice?null:Ft.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",Ft.showAdvanced),f.R7$(),f.Y8G("ngClass",f.l_i(46,ne,!Ft.showAdvanced,Ft.showAdvanced)),f.R7$(2),f.Y8G("ngIf",!Ft.showAdvanced)("ngIfElse",Sn),f.R7$(3),f.Y8G("ngIf",(null==Ft.invoice?null:Ft.invoice.bolt11)&&""!==(null==Ft.invoice?null:Ft.invoice.bolt11)||(null==Ft.invoice?null:Ft.invoice.bolt12)&&""!==(null==Ft.invoice?null:Ft.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=Ft.invoice&&Ft.invoice.bolt11||null!=Ft.invoice&&Ft.invoice.bolt12))}},dependencies:[A.YU,A.Sq,A.bT,Pe.aY,le.$z,Ce.m2,Ce.MM,Ae.q,j.LG,W.DJ,W.sA,W.UI,G.PW,re.oV,xe.Um,Ee.U,V.N,A.QX,A.vh],encapsulation:2}))}return Qe(),gt})()},2142(Zt,pe,l){"use strict";l.d(pe,{f:()=>ve});var i=l(1585),d=l(5383),v=l(1413),T=l(6977),w=l(4416),e=l(2615),O=l(3664),f=l(8570),u=l(2571),L=l(5416),C=l(1534),B=l(2200),A=l(60),Pe=l(8834),le=l(5596),Ce=l(1997),Ae=l(2920),j=l(6038),W=l(8288),G=l(9157),re=l(9587);const xe=H=>({"display-none":H}),Ee=H=>({"xs-scroll-y":H}),V=(H,$)=>({"mt-2":H,"mt-1":$});function ce(H,$){if(1&H&&O.nrm(0,"qr-code",28),2&H){const Ke=O.XpG();O.Y8G("value",null==Ke.offer?null:Ke.offer.bolt12)("size",Ke.qrWidth)}}function be(H,$){1&H&&(O.j41(0,"span",29),O.EFF(1,"N/A"),O.k0s())}function ne(H,$){if(1&H&&O.nrm(0,"qr-code",28),2&H){const Ke=O.XpG();O.Y8G("value",null==Ke.offer?null:Ke.offer.bolt12)("size",Ke.qrWidth)}}function J(H,$){1&H&&(O.j41(0,"span",30),O.EFF(1,"QR Code Not Applicable"),O.k0s())}function De(H,$){1&H&&O.nrm(0,"mat-divider",31),2&H&&O.Y8G("inset",!0)}function Re(H,$){1&H&&O.nrm(0,"mat-divider",20)}function Xe(H,$){if(1&H&&(O.j41(0,"div",16)(1,"div",17)(2,"h4",18),O.EFF(3,"Used"),O.k0s(),O.j41(4,"span",19),O.EFF(5),O.k0s()(),O.j41(6,"div",17)(7,"h4",18),O.EFF(8,"Single Use"),O.k0s(),O.j41(9,"span",19),O.EFF(10),O.k0s()()()),2&H){const Ke=O.XpG(2);O.R7$(5),O.SpI(" ",null!=Ke.offer&&Ke.offer.used?null!=Ke.offer&&Ke.offer.used?"Yes":"No":"N/K"," "),O.R7$(5),O.SpI(" ",null!=Ke.offer&&Ke.offer.single_use?null!=Ke.offer&&Ke.offer.single_use?"Yes":"No":"N/K"," ")}}function _e(H,$){1&H&&O.nrm(0,"mat-divider",20)}function he(H,$){if(1&H&&(O.j41(0,"div",16)(1,"div",21)(2,"h4",18),O.EFF(3,"Issuer"),O.k0s(),O.j41(4,"span",34),O.EFF(5),O.k0s()()()),2&H){const Ke=O.XpG(2);O.R7$(5),O.JRh(null==Ke.offerDecoded?null:Ke.offerDecoded.offer_issuer)}}function Dt(H,$){1&H&&O.nrm(0,"mat-divider",20)}function lt(H,$){if(1&H&&(O.j41(0,"div",16)(1,"div",21)(2,"h4",18),O.EFF(3,"Label"),O.k0s(),O.j41(4,"span",19),O.EFF(5),O.k0s()()()),2&H){const Ke=O.XpG(2);O.R7$(5),O.JRh(Ke.offer.label)}}function Le(H,$){if(1&H&&(O.j41(0,"div"),O.DNE(1,Re,1,0,"mat-divider",32)(2,Xe,11,2,"div",33)(3,_e,1,0,"mat-divider",32)(4,he,6,1,"div",33)(5,Dt,1,0,"mat-divider",32)(6,lt,6,1,"div",33),O.nrm(7,"mat-divider",20),O.j41(8,"div",16)(9,"div",21)(10,"h4",18),O.EFF(11,"Offer ID"),O.k0s(),O.j41(12,"span",19),O.EFF(13),O.k0s()()(),O.nrm(14,"mat-divider",20),O.j41(15,"div",16)(16,"div",21)(17,"h4",18),O.EFF(18,"Offer Node ID"),O.k0s(),O.j41(19,"span",19),O.EFF(20),O.k0s()()(),O.nrm(21,"mat-divider",20),O.k0s()),2&H){const Ke=O.XpG();O.R7$(),O.Y8G("ngIf",(null==Ke.offer?null:Ke.offer.used)||(null==Ke.offer?null:Ke.offer.single_use)),O.R7$(),O.Y8G("ngIf",(null==Ke.offer?null:Ke.offer.used)||(null==Ke.offer?null:Ke.offer.single_use)),O.R7$(),O.Y8G("ngIf",null==Ke.offerDecoded?null:Ke.offerDecoded.issuer),O.R7$(),O.Y8G("ngIf",null==Ke.offerDecoded?null:Ke.offerDecoded.issuer),O.R7$(),O.Y8G("ngIf",Ke.offer.label),O.R7$(),O.Y8G("ngIf",Ke.offer.label),O.R7$(7),O.JRh(Ke.offerDecoded.offer_id),O.R7$(7),O.JRh(null==Ke.offerDecoded?null:Ke.offerDecoded.offer_node_id)}}function te(H,$){1&H&&(O.j41(0,"p"),O.EFF(1,"Show Advanced"),O.k0s())}function ie(H,$){1&H&&(O.j41(0,"p"),O.EFF(1,"Hide Advanced"),O.k0s())}function P(H,$){if(1&H){const Ke=O.RV6();O.j41(0,"button",35),O.bIt("copied",function(St){e.eBV(Ke);const ot=O.XpG();return e.Njj(ot.onCopyOffer(St))}),O.EFF(1,"Copy Offer"),O.k0s()}if(2&H){const Ke=O.XpG();O.Y8G("payload",null==Ke.offer?null:Ke.offer.bolt12)}}function F(H,$){if(1&H){const Ke=O.RV6();O.j41(0,"button",36),O.bIt("click",function(){e.eBV(Ke);const St=O.XpG();return e.Njj(St.onClose())}),O.EFF(1,"OK"),O.k0s()}}let ve=(()=>{var H;class ${constructor(Vt,St,ot,nt,ht,oe){this.dialogRef=Vt,this.data=St,this.logger=ot,this.commonService=nt,this.snackBar=ht,this.dataService=oe,this.faReceipt=d.Mf0,this.faExclamationTriangle=d.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.offerDecoded={},this.qrWidth=240,this.screenSize="",this.screenSizeEnum=w.f7,this.flgOfferPaid=!1,this.unSubs=[new v.B,new v.B,new v.B,new v.B,new v.B]}ngOnInit(){this.offer=this.data.offer,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===w.f7.XS&&(this.qrWidth=220),this.dataService.decodePayment(this.offer.bolt12,!0).pipe((0,T.Q)(this.unSubs[1])).subscribe(Vt=>{this.offerDecoded=Vt,this.offerDecoded.offer_id&&!this.offerDecoded.offer_amount_msat&&(this.offerDecoded.offer_amount_msat=0)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyOffer(Vt){this.snackBar.open("Offer copied."),this.logger.info("Copied Text: "+Vt)}ngOnDestroy(){this.unSubs.forEach(Vt=>{Vt.next(null),Vt.complete()})}static#e=H=()=>(this.\u0275fac=function(St){return new(St||$)(O.rXU(i.CP),O.rXU(i.Vh),O.rXU(f.gP),O.rXU(u.h),O.rXU(L.UG),O.rXU(C.u))},this.\u0275cmp=O.VBU({type:$,selectors:[["rtl-cln-offer-information"]],standalone:!1,decls:52,vars:33,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","100"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"font-size-300"],[1,"font-size-120"],[1,"my-1",3,"inset"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row",4,"ngIf"],[1,"overflow-wrap","foreground-secondary-text"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(St,ot){if(1&St){const nt=O.RV6();O.j41(0,"div",1)(1,"div",2),O.DNE(2,ce,1,2,"qr-code",3)(3,be,2,0,"span",4),O.k0s(),O.j41(4,"div",5)(5,"mat-card-header",6)(6,"div",7),O.nrm(7,"fa-icon",8),O.j41(8,"span",9),O.EFF(9),O.k0s()(),O.j41(10,"button",10),O.bIt("click",function(){return e.eBV(nt),e.Njj(ot.onClose())}),O.EFF(11,"X"),O.k0s()(),O.j41(12,"mat-card-content",11)(13,"div",12)(14,"div",13),O.DNE(15,ne,1,2,"qr-code",3)(16,J,2,0,"span",14),O.k0s(),O.DNE(17,De,1,1,"mat-divider",15),O.j41(18,"div",16)(19,"div",17)(20,"h4",18),O.EFF(21,"Amount Requested (Sats)"),O.k0s(),O.j41(22,"span",19),O.EFF(23),O.nI1(24,"number"),O.k0s()(),O.j41(25,"div",17)(26,"h4",18),O.EFF(27,"Valid"),O.k0s(),O.j41(28,"span",19),O.EFF(29),O.k0s()()(),O.nrm(30,"mat-divider",20),O.j41(31,"div",16)(32,"div",21)(33,"h4",18),O.EFF(34,"Description"),O.k0s(),O.j41(35,"span",19),O.EFF(36),O.k0s()()(),O.nrm(37,"mat-divider",20),O.j41(38,"div",16)(39,"div",21)(40,"h4",18),O.EFF(41,"Offer"),O.k0s(),O.j41(42,"span",19),O.EFF(43),O.k0s()()(),O.DNE(44,Le,22,8,"div",22),O.j41(45,"div",23)(46,"button",24),O.bIt("click",function(){return e.eBV(nt),e.Njj(ot.onShowAdvanced())}),O.DNE(47,te,2,0,"p",25)(48,ie,2,0,"ng-template",null,0,O.C5r),O.k0s(),O.DNE(50,P,2,1,"button",26)(51,F,2,0,"button",27),O.k0s()()()()()}if(2&St){const nt=O.sdS(49);O.R7$(),O.Y8G("fxLayoutAlign",null!=ot.offer&&ot.offer.bolt12&&""!==(null==ot.offer?null:ot.offer.bolt12)?"center start":"center center")("ngClass",O.eq3(24,xe,ot.screenSize===ot.screenSizeEnum.XS||ot.screenSize===ot.screenSizeEnum.SM)),O.R7$(),O.Y8G("ngIf",(null==ot.offer?null:ot.offer.bolt12)&&""!==(null==ot.offer?null:ot.offer.bolt12)),O.R7$(),O.Y8G("ngIf",!(null!=ot.offer&&ot.offer.bolt12)||""===(null==ot.offer?null:ot.offer.bolt12)),O.R7$(4),O.Y8G("icon",ot.faReceipt),O.R7$(2),O.JRh(ot.screenSize===ot.screenSizeEnum.XS?ot.newlyAdded?"Created":"Offer":ot.newlyAdded?"Offer Created":"Offer Information"),O.R7$(3),O.Y8G("ngClass",O.eq3(26,Ee,ot.screenSize===ot.screenSizeEnum.XS)),O.R7$(2),O.Y8G("fxLayoutAlign",null!=ot.offer&&ot.offer.bolt12&&""!==(null==ot.offer?null:ot.offer.bolt12)?"center start":"center center")("ngClass",O.eq3(28,xe,ot.screenSize!==ot.screenSizeEnum.XS&&ot.screenSize!==ot.screenSizeEnum.SM)),O.R7$(),O.Y8G("ngIf",(null==ot.offer?null:ot.offer.bolt12)&&""!==(null==ot.offer?null:ot.offer.bolt12)),O.R7$(),O.Y8G("ngIf",!(null!=ot.offer&&ot.offer.bolt12)||""===(null==ot.offer?null:ot.offer.bolt12)),O.R7$(),O.Y8G("ngIf",ot.screenSize===ot.screenSizeEnum.XS||ot.screenSize===ot.screenSizeEnum.SM),O.R7$(6),O.SpI(" ",null!=ot.offerDecoded&&ot.offerDecoded.offer_amount_msat&&0!==(null==ot.offerDecoded?null:ot.offerDecoded.offer_amount_msat)?O.bMT(24,22,(null==ot.offerDecoded?null:ot.offerDecoded.offer_amount_msat)/1e3):"Open Offer"," "),O.R7$(6),O.SpI(" ",null!=ot.offerDecoded&&ot.offerDecoded.valid?null!=ot.offerDecoded&&ot.offerDecoded.valid?"Yes":"No":"N/K"," "),O.R7$(7),O.SpI(" ",null==ot.offerDecoded?null:ot.offerDecoded.offer_description," "),O.R7$(7),O.JRh(null==ot.offer?null:ot.offer.bolt12),O.R7$(),O.Y8G("ngIf",ot.showAdvanced),O.R7$(),O.Y8G("ngClass",O.l_i(30,V,!ot.showAdvanced,ot.showAdvanced)),O.R7$(2),O.Y8G("ngIf",!ot.showAdvanced)("ngIfElse",nt),O.R7$(3),O.Y8G("ngIf",(null==ot.offer?null:ot.offer.bolt12)&&""!==(null==ot.offer?null:ot.offer.bolt12)),O.R7$(),O.Y8G("ngIf",!(null!=ot.offer&&ot.offer.bolt12)||""===(null==ot.offer?null:ot.offer.bolt12))}},dependencies:[B.YU,B.bT,A.aY,Pe.$z,le.m2,le.MM,Ce.q,Ae.DJ,Ae.sA,Ae.UI,j.PW,W.Um,G.U,re.N,B.QX],encapsulation:2}))}return H(),$})()},5428(Zt,pe,l){"use strict";l.d(pe,{$6:()=>Ke,$Q:()=>B,As:()=>F,CK:()=>he,Do:()=>$,Dq:()=>ot,Fd:()=>te,Gy:()=>G,Hh:()=>T,Hm:()=>Le,I6:()=>le,Jx:()=>St,Lc:()=>ce,Lz:()=>ve,N4:()=>ie,N8:()=>j,NS:()=>e,Qj:()=>re,Sn:()=>O,T4:()=>lt,Tp:()=>A,Uj:()=>Dt,Uo:()=>C,XT:()=>ne,Xx:()=>Ae,Yi:()=>ht,ZE:()=>W,Zi:()=>be,cR:()=>_e,cU:()=>Pe,fy:()=>Re,gZ:()=>Ye,iO:()=>Vt,jJ:()=>Ce,lg:()=>w,mh:()=>P,sq:()=>xe,uL:()=>v,vL:()=>De,w0:()=>Xe,x1:()=>u,yn:()=>fe,yp:()=>L,zR:()=>f,zU:()=>nt});var i=l(9640),d=l(4416);const v=(0,i.VP)(d.Uu.UPDATE_API_CALL_STATUS_ECL,(0,i.xk)()),T=(0,i.VP)(d.Uu.RESET_ECL_STORE),w=(0,i.VP)(d.Uu.FETCH_PAGE_SETTINGS_ECL),e=(0,i.VP)(d.Uu.SET_PAGE_SETTINGS_ECL,(0,i.xk)()),O=(0,i.VP)(d.Uu.SAVE_PAGE_SETTINGS_ECL,(0,i.xk)()),f=(0,i.VP)(d.Uu.FETCH_INFO_ECL,(0,i.xk)()),u=(0,i.VP)(d.Uu.SET_INFO_ECL,(0,i.xk)()),L=(0,i.VP)(d.Uu.FETCH_FEES_ECL),C=(0,i.VP)(d.Uu.SET_FEES_ECL,(0,i.xk)()),B=(0,i.VP)(d.Uu.FETCH_CHANNELS_ECL),A=(0,i.VP)(d.Uu.SET_ACTIVE_CHANNELS_ECL,(0,i.xk)()),Pe=(0,i.VP)(d.Uu.SET_PENDING_CHANNELS_ECL,(0,i.xk)()),le=(0,i.VP)(d.Uu.SET_INACTIVE_CHANNELS_ECL,(0,i.xk)()),Ce=(0,i.VP)(d.Uu.FETCH_ONCHAIN_BALANCE_ECL),Ae=(0,i.VP)(d.Uu.SET_ONCHAIN_BALANCE_ECL,(0,i.xk)()),j=(0,i.VP)(d.Uu.SET_LIGHTNING_BALANCE_ECL,(0,i.xk)()),W=(0,i.VP)(d.Uu.SET_CHANNELS_STATUS_ECL,(0,i.xk)()),G=(0,i.VP)(d.Uu.FETCH_PEERS_ECL),re=(0,i.VP)(d.Uu.SET_PEERS_ECL,(0,i.xk)()),xe=(0,i.VP)(d.Uu.SAVE_NEW_PEER_ECL,(0,i.xk)()),ce=((0,i.VP)(d.Uu.NEWLY_ADDED_PEER_ECL,(0,i.xk)()),(0,i.VP)(d.Uu.ADD_PEER_ECL,(0,i.xk)()),(0,i.VP)(d.Uu.DETACH_PEER_ECL,(0,i.xk)())),be=(0,i.VP)(d.Uu.REMOVE_PEER_ECL,(0,i.xk)()),ne=(0,i.VP)(d.Uu.GET_NEW_ADDRESS_ECL),De=((0,i.VP)(d.Uu.SET_NEW_ADDRESS_ECL,(0,i.xk)()),(0,i.VP)(d.Uu.SAVE_NEW_CHANNEL_ECL,(0,i.xk)())),Re=(0,i.VP)(d.Uu.UPDATE_CHANNEL_ECL,(0,i.xk)()),Xe=(0,i.VP)(d.Uu.CLOSE_CHANNEL_ECL,(0,i.xk)()),_e=(0,i.VP)(d.Uu.REMOVE_CHANNEL_ECL,(0,i.xk)()),he=(0,i.VP)(d.Uu.FETCH_PAYMENTS_ECL,(0,i.xk)()),Dt=(0,i.VP)(d.Uu.SET_PAYMENTS_ECL,(0,i.xk)()),lt=(0,i.VP)(d.Uu.GET_QUERY_ROUTES_ECL,(0,i.xk)()),Le=(0,i.VP)(d.Uu.SET_QUERY_ROUTES_ECL,(0,i.xk)()),te=(0,i.VP)(d.Uu.SEND_PAYMENT_ECL,(0,i.xk)()),ie=(0,i.VP)(d.Uu.SEND_PAYMENT_STATUS_ECL,(0,i.xk)()),P=(0,i.VP)(d.Uu.FETCH_TRANSACTIONS_ECL,(0,i.xk)()),F=(0,i.VP)(d.Uu.SET_TRANSACTIONS_ECL,(0,i.xk)()),ve=(0,i.VP)(d.Uu.SEND_ONCHAIN_FUNDS_ECL,(0,i.xk)()),$=((0,i.VP)(d.Uu.SEND_ONCHAIN_FUNDS_RES_ECL,(0,i.xk)()),(0,i.VP)(d.Uu.FETCH_INVOICES_ECL,(0,i.xk)())),Ke=(0,i.VP)(d.Uu.SET_INVOICES_ECL,(0,i.xk)()),Vt=(0,i.VP)(d.Uu.CREATE_INVOICE_ECL,(0,i.xk)()),St=(0,i.VP)(d.Uu.ADD_INVOICE_ECL,(0,i.xk)()),ot=(0,i.VP)(d.Uu.UPDATE_INVOICE_ECL,(0,i.xk)()),nt=(0,i.VP)(d.Uu.PEER_LOOKUP_ECL,(0,i.xk)()),ht=(0,i.VP)(d.Uu.INVOICE_LOOKUP_ECL,(0,i.xk)()),Ye=((0,i.VP)(d.Uu.SET_LOOKUP_ECL,(0,i.xk)()),(0,i.VP)(d.Uu.UPDATE_CHANNEL_STATE_ECL,(0,i.xk)())),fe=(0,i.VP)(d.Uu.UPDATE_RELAYED_PAYMENT_ECL,(0,i.xk)())},3017(Zt,pe,l){"use strict";l.d(pe,{B:()=>Ee});var i=l(1747),d=l(1413),v=l(7673),T=l(9437),w=l(6354),e=l(1397),O=l(6977),f=l(2462),u=l(4416),L=l(1771),C=l(6439),B=l(5428),A=l(2730),Pe=l(2615),le=l(9330),Ce=l(9640),Ae=l(3202),j=l(2571),W=l(8570),G=l(3694),re=l(7879),xe=l(7303);let Ee=(()=>{var V;class ce{constructor(ne,J,De,Re,Xe,_e,he,Dt,lt){this.actions=ne,this.httpClient=J,this.store=De,this.sessionService=Re,this.commonService=Xe,this.logger=_e,this.router=he,this.wsService=Dt,this.location=lt,this.CHILD_API_URL=u.H$+"/ecl",this.invoicesPageSettings=u.X8.find(Le=>"transactions"===Le.pageId)?.tables.find(Le=>"invoices"===Le.tableId),this.paymentsPageSettings=u.X8.find(Le=>"transactions"===Le.pageId)?.tables.find(Le=>"payments"===Le.tableId),this.flgInitialized=!1,this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.rawChannelsList=[],this.unSubs=[new d.B,new d.B,new d.B],this.infoFetchECL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_INFO_ECL),(0,e.Z)(Le=>(this.flgInitialized=!1,this.store.dispatch((0,L.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,L.mt)({payload:u.MZ.GET_NODE_INFO})),this.store.dispatch((0,B.uL)({payload:{action:"FetchInfo",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.GETINFO_API).pipe((0,O.Q)(this.actions.pipe((0,i.gp)(u.aU.SET_SELECTED_NODE))),(0,w.T)(te=>(this.logger.info(te),this.initializeRemainingData(te,Le.payload.loadPage),this.store.dispatch((0,B.uL)({payload:{action:"FetchInfo",status:u.wn.COMPLETED}})),this.store.dispatch((0,L.y0)({payload:u.MZ.GET_NODE_INFO})),{type:u.Uu.SET_INFO_ECL,payload:te||{}})),(0,T.W)(te=>{const ie=this.commonService.extractErrorCode(te),P=503===ie?"Unable to Connect to Eclair Server.":this.commonService.extractErrorMessage(te);return this.router.navigate(["/error"],{state:{errorCode:ie,errorMessage:P}}),this.handleErrorWithoutAlert("FetchInfo",u.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:ie,error:P}),(0,v.of)({type:u.aU.VOID})})))))),this.fetchFees=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_FEES_ECL),(0,e.Z)(()=>(this.store.dispatch((0,B.uL)({payload:{action:"FetchFees",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.FEES_API+"/fees").pipe((0,w.T)(Le=>(this.logger.info(Le),this.store.dispatch((0,B.uL)({payload:{action:"FetchFees",status:u.wn.COMPLETED}})),{type:u.Uu.SET_FEES_ECL,payload:Le||{}})),(0,T.W)(Le=>(this.handleErrorWithoutAlert("FetchFees",u.MZ.NO_SPINNER,"Fetching Fees Failed.",Le),(0,v.of)({type:u.aU.VOID})))))))),this.fetchPayments=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_PAYMENTS_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,B.uL)({payload:{action:"FetchPayments",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.FEES_API+"/payments?count="+Le.payload.count+"&skip="+Le.payload.skip).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.uL)({payload:{action:"FetchPayments",status:u.wn.COMPLETED}})),{type:u.Uu.SET_PAYMENTS_ECL,payload:te||{}})),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchPayments",u.MZ.NO_SPINNER,"Fetching Payments Failed.",te),(0,v.of)({type:u.aU.VOID})))))))),this.channelsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_CHANNELS_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,B.uL)({payload:{action:"FetchChannels",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.CHANNELS_API).pipe((0,w.T)(te=>(this.logger.info(te),this.rawChannelsList=te,this.setChannelsAndStatusAndBalances(),this.store.dispatch((0,B.uL)({payload:{action:"FetchChannels",status:u.wn.COMPLETED}})),{type:u.aU.VOID})),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchChannels",u.MZ.NO_SPINNER,"Fetching Channels Failed.",te),(0,v.of)({type:u.aU.VOID})))))))),this.fetchOnchainBalance=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_ONCHAIN_BALANCE_ECL),(0,e.Z)(()=>(this.store.dispatch((0,B.uL)({payload:{action:"FetchOnchainBalance",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.ON_CHAIN_API+"/balance"))),(0,w.T)(Le=>(this.logger.info(Le),this.store.dispatch((0,B.uL)({payload:{action:"FetchOnchainBalance",status:u.wn.COMPLETED}})),{type:u.Uu.SET_ONCHAIN_BALANCE_ECL,payload:Le||{}})),(0,T.W)(Le=>(this.handleErrorWithoutAlert("FetchOnchainBalance",u.MZ.NO_SPINNER,"Fetching Onchain Balances Failed.",Le),(0,v.of)({type:u.aU.VOID}))))),this.peersFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_PEERS_ECL),(0,e.Z)(()=>(this.store.dispatch((0,B.uL)({payload:{action:"FetchPeers",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.PEERS_API).pipe((0,w.T)(Le=>(this.logger.info(Le),this.store.dispatch((0,B.uL)({payload:{action:"FetchPeers",status:u.wn.COMPLETED}})),{type:u.Uu.SET_PEERS_ECL,payload:Le||[]})),(0,T.W)(Le=>(this.handleErrorWithoutAlert("FetchPeers",u.MZ.NO_SPINNER,"Fetching Peers Failed.",Le),(0,v.of)({type:u.aU.VOID})))))))),this.getNewAddress=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.GET_NEW_ADDRESS_ECL),(0,e.Z)(()=>(this.store.dispatch((0,L.mt)({payload:u.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+u.rl.ON_CHAIN_API).pipe((0,w.T)(Le=>(this.logger.info(Le),this.store.dispatch((0,L.y0)({payload:u.MZ.GENERATE_NEW_ADDRESS})),{type:u.Uu.SET_NEW_ADDRESS_ECL,payload:Le})),(0,T.W)(Le=>(this.handleErrorWithAlert("GetNewAddress",u.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+u.rl.ON_CHAIN_API,Le),(0,v.of)({type:u.aU.VOID})))))))),this.setNewAddress=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.SET_NEW_ADDRESS_ECL),(0,w.T)(Le=>(this.logger.info(Le.payload),Le.payload))),{dispatch:!1}),this.saveNewPeer=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.SAVE_NEW_PEER_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,L.mt)({payload:u.MZ.CONNECT_PEER})),this.store.dispatch((0,B.uL)({payload:{action:"SaveNewPeer",status:u.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+u.rl.PEERS_API+(Le.payload.id.includes("@")?"?uri=":"?nodeId=")+Le.payload.id,{}).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.uL)({payload:{action:"SaveNewPeer",status:u.wn.COMPLETED}})),te=te||[],this.store.dispatch((0,L.y0)({payload:u.MZ.CONNECT_PEER})),this.store.dispatch((0,B.Qj)({payload:te})),{type:u.Uu.NEWLY_ADDED_PEER_ECL,payload:{peer:te.find(ie=>ie.nodeId===(Le.payload.id.includes("@")?Le.payload.id.substring(0,Le.payload.id.indexOf("@")):Le.payload.id))}})),(0,T.W)(te=>(this.handleErrorWithoutAlert("SaveNewPeer",u.MZ.CONNECT_PEER,"Peer Connection Failed.",te),(0,v.of)({type:u.aU.VOID})))))))),this.detachPeer=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.DETACH_PEER_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,L.mt)({payload:u.MZ.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+u.rl.PEERS_API+"/"+Le.payload.nodeId).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,L.y0)({payload:u.MZ.DISCONNECT_PEER})),this.store.dispatch((0,L.UI)({payload:"Disconnecting Peer!"})),{type:u.Uu.REMOVE_PEER_ECL,payload:{nodeId:Le.payload.nodeId}})),(0,T.W)(te=>(this.handleErrorWithAlert("DisconnectPeer",u.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+u.rl.PEERS_API+"/"+Le.payload.nodeId,te),(0,v.of)({type:u.aU.VOID})))))))),this.openNewChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.SAVE_NEW_CHANNEL_ECL),(0,e.Z)(Le=>{this.store.dispatch((0,L.mt)({payload:u.MZ.OPEN_CHANNEL})),this.store.dispatch((0,B.uL)({payload:{action:"SaveNewChannel",status:u.wn.INITIATED}}));const te={nodeId:Le.payload.nodeId,fundingSatoshis:Le.payload.amount,announceChannel:!Le.payload.private};return Le.payload.feeRate&&Le.payload.feeRate>0&&(te.fundingFeerateSatByte=Le.payload.feeRate),this.httpClient.post(this.CHILD_API_URL+u.rl.CHANNELS_API,te).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.uL)({payload:{action:"SaveNewChannel",status:u.wn.COMPLETED}})),this.store.dispatch((0,B.Gy)()),this.store.dispatch((0,B.jJ)()),this.store.dispatch((0,L.y0)({payload:u.MZ.OPEN_CHANNEL})),this.store.dispatch((0,L.UI)({payload:"Channel Added Successfully!"})),{type:u.Uu.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("SaveNewChannel",u.MZ.OPEN_CHANNEL,"Opening Channel Failed.",ie),(0,v.of)({type:u.aU.VOID}))))}))),this.updateChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.UPDATE_CHANNEL_ECL),(0,e.Z)(Le=>{this.store.dispatch((0,L.mt)({payload:u.MZ.UPDATE_CHAN_POLICY}));let te="?feeBaseMsat="+Le.payload.baseFeeMsat+"&feeProportionalMillionths="+Le.payload.feeRate;return te=Le.payload.nodeIds?te+"&nodeIds="+Le.payload.nodeIds:Le.payload.nodeId?te+"&nodeId="+Le.payload.nodeId:Le.payload.channelIds?te+"&channelIds="+Le.payload.channelIds:te+"&channelId="+Le.payload.channelId,this.httpClient.post(this.CHILD_API_URL+u.rl.CHANNELS_API+"/updateRelayFee"+te,{}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,L.y0)({payload:u.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,L.UI)(Le.payload.nodeIds||Le.payload.channelIds?{payload:"Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:u.Uu.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,T.W)(ie=>(this.handleErrorWithAlert("UpdateChannels",u.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+u.rl.CHANNELS_API,ie),(0,v.of)({type:u.aU.VOID}))))}))),this.closeChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.CLOSE_CHANNEL_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,L.mt)({payload:Le.payload.force?u.MZ.FORCE_CLOSE_CHANNEL:u.MZ.CLOSE_CHANNEL})),this.httpClient.delete(this.CHILD_API_URL+u.rl.CHANNELS_API+"?channelId="+Le.payload.channelId+"&force="+Le.payload.force).pipe((0,w.T)(te=>(this.logger.info(te),setTimeout(()=>{this.store.dispatch((0,L.y0)({payload:Le.payload.force?u.MZ.FORCE_CLOSE_CHANNEL:u.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,L.UI)({payload:Le.payload.force?"Channel Force Closed Successfully!":"Channel Closed Successfully!"}))},2e3),{type:u.aU.VOID})),(0,T.W)(te=>(this.handleErrorWithAlert("CloseChannel",Le.payload.force?u.MZ.FORCE_CLOSE_CHANNEL:u.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+u.rl.CHANNELS_API,te),(0,v.of)({type:u.aU.VOID})))))))),this.queryRoutesFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.GET_QUERY_ROUTES_ECL),(0,e.Z)(Le=>this.httpClient.get(this.CHILD_API_URL+u.rl.PAYMENTS_API+"/route?nodeId="+Le.payload.nodeId+"&amountMsat="+Le.payload.amount).pipe((0,w.T)(te=>(this.logger.info(te),{type:u.Uu.SET_QUERY_ROUTES_ECL,payload:te})),(0,T.W)(te=>(this.store.dispatch((0,B.Hm)({payload:[]})),this.handleErrorWithAlert("GetQueryRoutes",u.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+u.rl.PAYMENTS_API+"/route?nodeId="+Le.payload.nodeId+"&amountMsat="+Le.payload.amount,te),(0,v.of)({type:u.aU.VOID}))))))),this.setQueryRoutes=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.SET_QUERY_ROUTES_ECL),(0,w.T)(Le=>Le.payload)),{dispatch:!1}),this.sendPayment=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.SEND_PAYMENT_ECL),(0,e.Z)(Le=>(this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.store.dispatch((0,L.mt)({payload:u.MZ.SEND_PAYMENT})),this.store.dispatch((0,B.uL)({payload:{action:"SendPayment",status:u.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+u.rl.PAYMENTS_API,Le.payload).pipe((0,w.T)(te=>(this.logger.info(te),this.latestPaymentRes=te,setTimeout(()=>{this.flgReceivedPaymentUpdateFromWS||this.handleSendPaymentStatus("Payment Submitted!")},3e3),{type:u.aU.VOID})),(0,T.W)(te=>(this.logger.error("Error: "+JSON.stringify(te)),Le.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",u.MZ.SEND_PAYMENT,"Send Payment Failed.",te):this.handleErrorWithAlert("SendPayment",u.MZ.SEND_PAYMENT,"Send Payment Failed",this.CHILD_API_URL+u.rl.PAYMENTS_API,te),(0,v.of)({type:u.aU.VOID})))))))),this.transactionsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_TRANSACTIONS_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,B.uL)({payload:{action:"FetchTransactions",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.ON_CHAIN_API+"/transactions?count="+Le.payload.count+"&skip="+Le.payload.skip))),(0,w.T)(Le=>(this.logger.info(Le),this.store.dispatch((0,B.uL)({payload:{action:"FetchTransactions",status:u.wn.COMPLETED}})),{type:u.Uu.SET_TRANSACTIONS_ECL,payload:Le||[]})),(0,T.W)(Le=>(this.handleErrorWithoutAlert("FetchTransactions",u.MZ.NO_SPINNER,"Fetching Transactions Failed.",Le),(0,v.of)({type:u.aU.VOID}))))),this.SendOnchainFunds=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.SEND_ONCHAIN_FUNDS_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,L.mt)({payload:u.MZ.SEND_FUNDS})),this.store.dispatch((0,B.uL)({payload:{action:"SendOnchainFunds",status:u.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+u.rl.ON_CHAIN_API,Le.payload).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.uL)({payload:{action:"SendOnchainFunds",status:u.wn.COMPLETED}})),this.store.dispatch((0,L.y0)({payload:u.MZ.SEND_FUNDS})),this.store.dispatch((0,B.jJ)()),{type:u.Uu.SEND_ONCHAIN_FUNDS_RES_ECL,payload:te})),(0,T.W)(te=>(this.handleErrorWithoutAlert("SendOnchainFunds",u.MZ.SEND_FUNDS,"Sending Fund Failed.",te),(0,v.of)({type:u.aU.VOID})))))))),this.createInvoice=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.CREATE_INVOICE_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,L.mt)({payload:u.MZ.CREATE_INVOICE})),this.store.dispatch((0,B.uL)({payload:{action:"CreateInvoice",status:u.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+u.rl.INVOICES_API,Le.payload).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.uL)({payload:{action:"CreateInvoice",status:u.wn.COMPLETED}})),this.store.dispatch((0,L.y0)({payload:u.MZ.CREATE_INVOICE})),te.timestamp=Math.round((new Date).getTime()/1e3),te.expiresAt=Math.round(te.timestamp+Le.payload.expireIn),te.description=Le.payload.description,te.status="unpaid",setTimeout(()=>{this.store.dispatch((0,L.xO)({payload:{data:{invoice:te,newlyAdded:!0,component:C.Z}}}))},200),{type:u.Uu.ADD_INVOICE_ECL,payload:te})),(0,T.W)(te=>(this.handleErrorWithoutAlert("CreateInvoice",u.MZ.CREATE_INVOICE,"Create Invoice Failed.",te),(0,v.of)({type:u.aU.VOID})))))))),this.invoicesFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_INVOICES_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,B.uL)({payload:{action:"FetchInvoices",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.INVOICES_API+"?count="+Le.payload.count+"&skip="+Le.payload.skip).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.uL)({payload:{action:"FetchInvoices",status:u.wn.COMPLETED}})),{type:u.Uu.SET_INVOICES_ECL,payload:te})),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchInvoices",u.MZ.NO_SPINNER,"Fetching Invoices Failed.",te),(0,v.of)({type:u.aU.VOID})))))))),this.peerLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.PEER_LOOKUP_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,L.mt)({payload:u.MZ.SEARCHING_NODE})),this.store.dispatch((0,B.uL)({payload:{action:"Lookup",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.NETWORK_API+"/nodes/"+Le.payload).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.uL)({payload:{action:"Lookup",status:u.wn.COMPLETED}})),this.store.dispatch((0,L.y0)({payload:u.MZ.SEARCHING_NODE})),{type:u.Uu.SET_LOOKUP_ECL,payload:te})),(0,T.W)(te=>(this.handleErrorWithAlert("Lookup",u.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+u.rl.NETWORK_API+"/nodes/"+Le.payload,te),(0,v.of)({type:u.aU.VOID})))))))),this.invoiceLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.INVOICE_LOOKUP_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,L.mt)({payload:u.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,B.uL)({payload:{action:"Lookup",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.INVOICES_API+"/"+Le.payload).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.uL)({payload:{action:"Lookup",status:u.wn.COMPLETED}})),this.store.dispatch((0,L.y0)({payload:u.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,B.Dq)({payload:te})),{type:u.Uu.SET_LOOKUP_ECL,payload:te})),(0,T.W)(te=>(this.handleErrorWithoutAlert("Lookup",u.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",te),this.store.dispatch((0,L.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,v.of)({type:u.aU.VOID})))))))),this.setLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.SET_LOOKUP_ECL),(0,w.T)(Le=>(this.logger.info(Le.payload),Le.payload))),{dispatch:!1}),this.pageSettingsFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_PAGE_SETTINGS_ECL),(0,e.Z)(()=>(this.store.dispatch((0,B.uL)({payload:{action:"FetchPageSettings",status:u.wn.INITIATED}})),this.httpClient.get(u.rl.PAGE_SETTINGS_API).pipe((0,w.T)(Le=>(this.logger.info(Le),this.store.dispatch((0,B.uL)({payload:{action:"FetchPageSettings",status:u.wn.COMPLETED}})),this.invoicesPageSettings=Le&&Object.keys(Le).length>0?Le.find(te=>"transactions"===te.pageId)?.tables.find(te=>"invoices"===te.tableId):u.X8.find(te=>"transactions"===te.pageId)?.tables.find(te=>"invoices"===te.tableId),this.paymentsPageSettings=Le&&Object.keys(Le).length>0?Le.find(te=>"transactions"===te.pageId)?.tables.find(te=>"payments"===te.tableId):u.X8.find(te=>"transactions"===te.pageId)?.tables.find(te=>"payments"===te.tableId),{type:u.Uu.SET_PAGE_SETTINGS_ECL,payload:Le||[]})),(0,T.W)(Le=>(this.handleErrorWithoutAlert("FetchPageSettings",u.MZ.NO_SPINNER,"Fetching Page Settings Failed.",Le),(0,v.of)({type:u.aU.VOID})))))))),this.savePageSettingsCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.SAVE_PAGE_SETTINGS_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,L.mt)({payload:u.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,B.uL)({payload:{action:"SavePageSettings",status:u.wn.INITIATED}})),this.httpClient.post(u.rl.PAGE_SETTINGS_API,Le.payload).pipe((0,w.T)(te=>{this.logger.info(te),this.store.dispatch((0,B.uL)({payload:{action:"SavePageSettings",status:u.wn.COMPLETED}})),this.store.dispatch((0,L.y0)({payload:u.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,L.UI)({payload:"Page Layout Updated Successfully!"}));const ie=(te.find(F=>"transactions"===F.pageId)?.tables.find(F=>"invoices"===F.tableId)||u.X8.find(F=>"transactions"===F.pageId)?.tables.find(F=>"invoices"===F.tableId))?.recordsPerPage,P=(te.find(F=>"transactions"===F.pageId)?.tables.find(F=>"payments"===F.tableId)||u.X8.find(F=>"transactions"===F.pageId)?.tables.find(F=>"payments"===F.tableId))?.recordsPerPage;return this.invoicesPageSettings&&ie!==this.invoicesPageSettings?.recordsPerPage&&(this.invoicesPageSettings.recordsPerPage=ie),this.paymentsPageSettings&&P!==this.paymentsPageSettings?.recordsPerPage&&(this.paymentsPageSettings.recordsPerPage=P),{type:u.Uu.SET_PAGE_SETTINGS_ECL,payload:te||[]}}),(0,T.W)(te=>(this.handleErrorWithAlert("SavePageSettings",u.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",u.rl.PAGE_SETTINGS_API,te),(0,v.of)({type:u.aU.VOID})))))))),this.handleSendPaymentStatus=Le=>{this.store.dispatch((0,B.uL)({payload:{action:"SendPayment",status:u.wn.COMPLETED}})),this.store.dispatch((0,L.y0)({payload:u.MZ.SEND_PAYMENT})),this.store.dispatch((0,B.N4)({payload:this.latestPaymentRes})),this.store.dispatch((0,L.UI)({payload:Le}))},this.store.select(A.ru).pipe((0,O.Q)(this.unSubs[0])).subscribe(Le=>{Le.FetchInfo.status!==u.wn.COMPLETED&&Le.FetchInfo.status!==u.wn.ERROR||Le.FetchFees.status!==u.wn.COMPLETED&&Le.FetchFees.status!==u.wn.ERROR||Le.FetchOnchainBalance.status!==u.wn.COMPLETED&&Le.FetchOnchainBalance.status!==u.wn.ERROR||Le.FetchChannels.status!==u.wn.COMPLETED&&Le.FetchChannels.status!==u.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,L.y0)({payload:u.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.eclWSMessages.pipe((0,O.Q)(this.unSubs[1])).subscribe(Le=>{this.logger.info("Received new message from the service: "+JSON.stringify(Le));let te="";if(Le)switch(Le.type){case u.ck.PAYMENT_SENT:Le&&Le.id&&this.latestPaymentRes===Le.id&&(this.flgReceivedPaymentUpdateFromWS=!0,te="Payment Sent: "+(Le.paymentHash?"with payment hash "+Le.paymentHash:JSON.stringify(Le)),this.handleSendPaymentStatus(te));break;case u.ck.PAYMENT_FAILED:Le&&Le.id&&this.latestPaymentRes===Le.id&&(this.flgReceivedPaymentUpdateFromWS=!0,te="Payment Failed: "+(Le.failures&&Le.failures.length&&Le.failures.length>0&&Le.failures[0].t?Le.failures[0].t:Le.failures&&Le.failures.length&&Le.failures.length>0&&Le.failures[0].e&&Le.failures[0].e.failureMessage?Le.failures[0].e.failureMessage:JSON.stringify(Le)),this.handleSendPaymentStatus(te));break;case u.ck.PAYMENT_RECEIVED:this.store.dispatch((0,B.Dq)({payload:Le}));break;case u.ck.PAYMENT_RELAYED:delete Le.source,Le.amountIn=Math.round((Le.amountIn||0)/1e3),Le.amountOut=Math.round((Le.amountOut||0)/1e3),Le.timestamp.unix&&(Le.timestamp=1e3*Le.timestamp.unix),this.store.dispatch((0,B.yn)({payload:Le}));break;case u.ck.CHANNEL_STATE_CHANGED:"NORMAL"===Le.currentState||"CLOSED"===Le.currentState?(this.rawChannelsList=this.rawChannelsList?.map(ie=>(ie.channelId===Le.channelId&&ie.nodeId===Le.remoteNodeId&&(ie.state=Le.currentState),ie)),this.setChannelsAndStatusAndBalances()):this.store.dispatch((0,B.gZ)({payload:Le}));break;default:this.logger.info("Received Event from WS: "+JSON.stringify(Le))}})}setChannelsAndStatusAndBalances(){let ne=0,J=0,De=0,Re={localBalance:0,remoteBalance:0},Xe=[];const _e=[],he=[],Dt={active:{channels:0,capacity:0},inactive:{channels:0,capacity:0},pending:{channels:0,capacity:0}};this.rawChannelsList.forEach((lt,Le)=>{lt&&("NORMAL"===lt.state?(ne=(lt.toLocal||0)+(lt.toRemote||0),J+=lt.toLocal||0,De+=lt.toRemote||0,lt.balancedness=0===ne?1:+(1-Math.abs(((lt.toLocal||0)-(lt.toRemote||0))/ne)).toFixed(3),Xe.push(lt),Dt.active.channels=Dt.active.channels+1,Dt.active.capacity=Dt.active.capacity+(lt.toLocal||0)):lt.state?.includes("WAIT")||lt.state?.includes("CLOSING")||lt.state?.includes("SYNCING")?(lt.state=lt.state?.replace(/_/g," "),_e.push(lt),Dt.pending.channels=Dt.pending.channels+1,Dt.pending.capacity=Dt.pending.capacity+(lt.toLocal||0)):(lt.state=lt.state?.replace(/_/g," "),he.push(lt),Dt.inactive.channels=Dt.inactive.channels+1,Dt.inactive.capacity=Dt.inactive.capacity+(lt.toLocal||0)))}),Re={localBalance:J,remoteBalance:De},Xe=this.commonService.sortDescByKey(Xe,"balancedness"),this.logger.info("Active Channels: "+JSON.stringify(Xe)),this.logger.info("Pending Channels: "+JSON.stringify(_e)),this.logger.info("Inactive Channels: "+JSON.stringify(he)),this.logger.info("Lightning Balances: "+JSON.stringify(Re)),this.logger.info("Channels Status: "+JSON.stringify(Dt)),this.logger.info("Channel, status and balances: "+JSON.stringify({active:Xe,pending:_e,inactive:he,balances:Re,status:Dt})),this.store.dispatch((0,B.Tp)({payload:Xe})),this.store.dispatch((0,B.cU)({payload:_e})),this.store.dispatch((0,B.I6)({payload:he})),this.store.dispatch((0,B.N8)({payload:Re})),this.store.dispatch((0,B.ZE)({payload:Dt}))}initializeRemainingData(ne,J){this.sessionService.setItem("eclUnlocked","true");const De={identity_pubkey:ne.nodeId,alias:ne.alias,testnet:"testnet"===ne.network,chains:ne.publicAddresses,uris:ne.uris,version:ne.version,numberOfPendingChannels:0};this.store.dispatch((0,L.mt)({payload:u.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,L.Fl)({payload:De}));let Re=this.location.path();Re.includes("/lnd/")?Re=Re?.replace("/lnd/","/ecl/"):Re.includes("/cln/")&&(Re=Re?.replace("/cln/","/ecl/")),(Re.includes("/login")||Re.includes("/error")||""===Re||"HOME"===J||Re.includes("?access-key="))&&(Re="/ecl/home"),this.router.navigate([Re]),this.store.dispatch((0,B.$Q)()),this.store.dispatch((0,B.yp)()),this.store.dispatch((0,B.jJ)()),this.store.dispatch((0,B.Gy)())}handleErrorWithoutAlert(ne,J,De,Re){this.logger.error("ERROR IN: "+ne+"\n"+JSON.stringify(Re)),401===Re.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,L.Jh)()),this.store.dispatch((0,L.ri)({payload:"Authentication Failed: "+JSON.stringify(Re.error)}))):(this.store.dispatch((0,L.y0)({payload:J})),this.store.dispatch((0,B.uL)({payload:{action:ne,status:u.wn.ERROR,statusCode:Re.status.toString(),message:this.commonService.extractErrorMessage(Re,De)}})))}handleErrorWithAlert(ne,J,De,Re,Xe){if(this.logger.error(Xe),401===Xe.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,L.Jh)()),this.store.dispatch((0,L.ri)({payload:"Authentication Failed: "+JSON.stringify(Xe.error)}));else{this.store.dispatch((0,L.y0)({payload:J}));const _e=this.commonService.extractErrorMessage(Xe);this.store.dispatch((0,L.xO)({payload:{data:{type:"ERROR",alertTitle:De,message:{code:Xe.status,message:_e,URL:Re},component:f.f}}})),this.store.dispatch((0,B.uL)({payload:{action:ne,status:u.wn.ERROR,statusCode:Xe.status.toString(),message:_e,URL:Re}}))}}ngOnDestroy(){this.unSubs.forEach(ne=>{ne.next(null),ne.complete()})}static#e=V=()=>(this.\u0275fac=function(J){return new(J||ce)(Pe.KVO(i.En),Pe.KVO(le.Qq),Pe.KVO(Ce.il),Pe.KVO(Ae.Q),Pe.KVO(j.h),Pe.KVO(W.gP),Pe.KVO(G.Ix),Pe.KVO(re.I),Pe.KVO(xe.aZ))},this.\u0275prov=Pe.jDH({token:ce,factory:ce.\u0275fac}))}return V(),ce})()},2730(Zt,pe,l){"use strict";l.d(pe,{DW:()=>Ae,KT:()=>f,Ou:()=>A,b_:()=>w,gN:()=>Pe,jZ:()=>v,oR:()=>u,os:()=>Ce,p3:()=>T,rN:()=>le,ru:()=>O});var i=l(9640);const d=(0,i.UX)("ecl"),v=(0,i.Mz)(d,j=>({pageSettings:j.pageSettings,apiCallStatus:j.apisCallStatus.FetchPageSettings})),T=(0,i.Mz)(d,j=>j.information),w=(0,i.Mz)(d,j=>({information:j.information,apiCallStatus:j.apisCallStatus.FetchInfo})),O=((0,i.Mz)(d,j=>j.apisCallStatus.FetchInfo),(0,i.Mz)(d,j=>j.apisCallStatus)),f=(0,i.Mz)(d,j=>({payments:j.payments,apiCallStatus:j.apisCallStatus.FetchPayments})),u=(0,i.Mz)(d,j=>({fees:j.fees,apiCallStatus:j.apisCallStatus.FetchFees})),A=((0,i.Mz)(d,j=>({activeChannels:j.activeChannels,apiCallStatus:j.apisCallStatus.FetchChannels})),(0,i.Mz)(d,j=>({pendingChannels:j.pendingChannels,apiCallStatus:j.apisCallStatus.FetchChannels})),(0,i.Mz)(d,j=>({inactiveChannels:j.inactiveChannels,apiCallStatus:j.apisCallStatus.FetchChannels})),(0,i.Mz)(d,j=>({activeChannels:j.activeChannels,pendingChannels:j.pendingChannels,inactiveChannels:j.inactiveChannels,lightningBalance:j.lightningBalance,channelsStatus:j.channelsStatus,apiCallStatus:j.apisCallStatus.FetchChannels}))),Pe=(0,i.Mz)(d,j=>({transactions:j.transactions,apiCallStatus:j.apisCallStatus.FetchTransactions})),le=(0,i.Mz)(d,j=>({invoices:j.invoices,apiCallStatus:j.apisCallStatus.FetchInvoices})),Ce=(0,i.Mz)(d,j=>({peers:j.peers,apiCallStatus:j.apisCallStatus.FetchPeers})),Ae=(0,i.Mz)(d,j=>({onchainBalance:j.onchainBalance,apiCallStatus:j.apisCallStatus.FetchOnchainBalance}))},6439(Zt,pe,l){"use strict";l.d(pe,{Z:()=>St});var i=l(1585),d=l(5383),v=l(1413),T=l(6977),w=l(4416),e=l(2730),O=l(2615),f=l(3664),u=l(8570),L=l(2571),C=l(5416),B=l(9640),A=l(2200),Pe=l(60),le=l(8834),Ce=l(5596),Ae=l(1997),j=l(9183),W=l(2920),G=l(6038),re=l(8288),xe=l(9157),Ee=l(9587);const V=ot=>({"display-none":ot}),ce=ot=>({"xs-scroll-y":ot}),be=(ot,nt)=>({"mt-2":ot,"mt-1":nt}),ne=()=>[];function J(ot,nt){if(1&ot&&f.nrm(0,"qr-code",29),2&ot){const ht=f.XpG();f.Y8G("value",null==ht.invoice?null:ht.invoice.serialized)("size",ht.qrWidth)}}function De(ot,nt){1&ot&&(f.j41(0,"span",30),f.EFF(1,"N/A"),f.k0s())}function Re(ot,nt){if(1&ot&&f.nrm(0,"qr-code",29),2&ot){const ht=f.XpG();f.Y8G("value",null==ht.invoice?null:ht.invoice.serialized)("size",ht.qrWidth)}}function Xe(ot,nt){1&ot&&(f.j41(0,"span",31),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function _e(ot,nt){1&ot&&f.nrm(0,"mat-divider",32),2&ot&&f.Y8G("inset",!0)}function he(ot,nt){1&ot&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function Dt(ot,nt){1&ot&&f.nrm(0,"span",38)}function lt(ot,nt){if(1&ot&&(f.j41(0,"div",34)(1,"div",35)(2,"span",36),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,Dt,1,0,"span",37),f.k0s()()),2&ot){const ht=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,null==ht.invoice?null:ht.invoice.amountSettled)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,ne).constructor(35))}}function Le(ot,nt){if(1&ot&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&ot){const ht=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,null==ht.invoice?null:ht.invoice.amountSettled)," Sats")}}function te(ot,nt){if(1&ot&&(f.qex(0),f.DNE(1,lt,6,5,"div",33)(2,Le,3,3,"div",20),f.bVm()),2&ot){const ht=f.XpG();f.R7$(),f.Y8G("ngIf",ht.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!ht.flgInvoicePaid)}}function ie(ot,nt){1&ot&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function P(ot,nt){1&ot&&f.nrm(0,"mat-spinner",40),2&ot&&f.Y8G("diameter",20)}function F(ot,nt){if(1&ot&&(f.qex(0),f.DNE(1,ie,2,0,"span",20)(2,P,1,1,"mat-spinner",39),f.bVm()),2&ot){const ht=f.XpG();f.R7$(),f.Y8G("ngIf","unpaid"!==(null==ht.invoice?null:ht.invoice.status)||!ht.flgVersionCompatible),f.R7$(),f.Y8G("ngIf","unpaid"===(null==ht.invoice?null:ht.invoice.status)&&ht.flgVersionCompatible)}}function ve(ot,nt){if(1&ot&&(f.j41(0,"div"),f.nrm(1,"mat-divider",21),f.j41(2,"div",16)(3,"div",41)(4,"h4",18),f.EFF(5,"Date Expiry"),f.k0s(),f.j41(6,"span",19),f.EFF(7),f.nI1(8,"date"),f.k0s()(),f.j41(9,"div",42)(10,"h4",18),f.EFF(11,"Date Settled"),f.k0s(),f.j41(12,"span",22),f.EFF(13),f.nI1(14,"date"),f.k0s()()(),f.nrm(15,"mat-divider",21),f.j41(16,"div",16)(17,"div",23)(18,"h4",18),f.EFF(19,"Payment Hash"),f.k0s(),f.j41(20,"span",22),f.EFF(21),f.k0s()()(),f.nrm(22,"mat-divider",21),f.j41(23,"div",16)(24,"div",23)(25,"h4",18),f.EFF(26,"Node ID"),f.k0s(),f.j41(27,"span",22),f.EFF(28),f.k0s()()(),f.nrm(29,"mat-divider",21),f.k0s()),2&ot){const ht=f.XpG();f.R7$(7),f.JRh(f.i5U(8,4,1e3*(null==ht.invoice?null:ht.invoice.expiresAt),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.i5U(14,7,1e3*(null==ht.invoice?null:ht.invoice.receivedAt),"dd/MMM/y HH:mm")),f.R7$(8),f.JRh(null==ht.invoice?null:ht.invoice.paymentHash),f.R7$(7),f.JRh(null==ht.invoice?null:ht.invoice.nodeId)}}function H(ot,nt){1&ot&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function $(ot,nt){1&ot&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function Ke(ot,nt){if(1&ot){const ht=f.RV6();f.j41(0,"button",43),f.bIt("copied",function(Ye){O.eBV(ht);const fe=f.XpG();return O.Njj(fe.onCopyPayment(Ye))}),f.EFF(1,"Copy Invoice"),f.k0s()}if(2&ot){const ht=f.XpG();f.Y8G("payload",null==ht.invoice?null:ht.invoice.serialized)}}function Vt(ot,nt){if(1&ot){const ht=f.RV6();f.j41(0,"button",44),f.bIt("click",function(){O.eBV(ht);const Ye=f.XpG();return O.Njj(Ye.onClose())}),f.EFF(1,"OK"),f.k0s()}}let St=(()=>{var ot;class nt{constructor(oe,Ye,fe,Qe,gt,Gt){this.dialogRef=oe,this.data=Ye,this.logger=fe,this.commonService=Qe,this.snackBar=gt,this.store=Gt,this.faReceipt=d.Mf0,this.faExclamationTriangle=d.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=w.f7,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new v.B,new v.B,new v.B,new v.B,new v.B]}ngOnInit(){this.invoice=this.data.invoice,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===w.f7.XS&&(this.qrWidth=220),this.store.select(e.p3).pipe((0,T.Q)(this.unSubs[0])).subscribe(oe=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(oe.version,"0.5.0")}),this.store.select(e.rN).pipe((0,T.Q)(this.unSubs[1])).subscribe(oe=>{const Ye=this.invoice.status,Qe=(oe.invoices&&oe.invoices.length>0?oe.invoices:[])?.find(gt=>gt.paymentHash===this.invoice.paymentHash)||null;Qe&&(this.invoice=Qe),Ye!==this.invoice.status&&"received"===this.invoice.status&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(oe)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(oe){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+oe)}ngOnDestroy(){this.unSubs.forEach(oe=>{oe.next(null),oe.complete()})}static#e=ot=()=>(this.\u0275fac=function(Ye){return new(Ye||nt)(f.rXU(i.CP),f.rXU(i.Vh),f.rXU(u.gP),f.rXU(L.h),f.rXU(C.UG),f.rXU(B.il))},this.\u0275cmp=f.VBU({type:nt,selectors:[["rtl-ecl-invoice-information"]],standalone:!1,decls:68,vars:42,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"w-100","my-1"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"font-size-300"],[1,"font-size-120"],[1,"my-1",3,"inset"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],["fxFlex","40"],["fxFlex","60"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(Ye,fe){if(1&Ye){const Qe=f.RV6();f.j41(0,"div",1)(1,"div",2),f.DNE(2,J,1,2,"qr-code",3)(3,De,2,0,"span",4),f.k0s(),f.j41(4,"div",5)(5,"mat-card-header",6)(6,"div",7),f.nrm(7,"fa-icon",8),f.j41(8,"span",9),f.EFF(9),f.k0s()(),f.j41(10,"button",10),f.bIt("click",function(){return O.eBV(Qe),O.Njj(fe.onClose())}),f.EFF(11,"X"),f.k0s()(),f.j41(12,"mat-card-content",11)(13,"div",12)(14,"div",13),f.DNE(15,Re,1,2,"qr-code",3)(16,Xe,2,0,"span",14),f.k0s(),f.DNE(17,_e,1,1,"mat-divider",15),f.j41(18,"div",16)(19,"div",17)(20,"h4",18),f.EFF(21,"Amount Requested"),f.k0s(),f.j41(22,"span",19),f.EFF(23),f.nI1(24,"number"),f.DNE(25,he,2,0,"ng-container",20),f.k0s()(),f.j41(26,"div",17)(27,"h4",18),f.EFF(28,"Amount Settled"),f.k0s(),f.j41(29,"span",19),f.DNE(30,te,3,2,"ng-container",20)(31,F,3,2,"ng-container",20),f.k0s()()(),f.nrm(32,"mat-divider",21),f.j41(33,"div",16)(34,"div",17)(35,"h4",18),f.EFF(36,"Date Created"),f.k0s(),f.j41(37,"span",22),f.EFF(38),f.nI1(39,"date"),f.k0s()(),f.j41(40,"div",17)(41,"h4",18),f.EFF(42,"Status"),f.k0s(),f.j41(43,"span",22),f.EFF(44),f.nI1(45,"titlecase"),f.k0s()()(),f.nrm(46,"mat-divider",21),f.j41(47,"div",16)(48,"div",23)(49,"h4",18),f.EFF(50,"Description"),f.k0s(),f.j41(51,"span",19),f.EFF(52),f.k0s()()(),f.nrm(53,"mat-divider",21),f.j41(54,"div",16)(55,"div",23)(56,"h4",18),f.EFF(57,"Invoice"),f.k0s(),f.j41(58,"span",22),f.EFF(59),f.k0s()()(),f.DNE(60,ve,30,10,"div",20),f.j41(61,"div",24)(62,"button",25),f.bIt("click",function(){return O.eBV(Qe),O.Njj(fe.onShowAdvanced())}),f.DNE(63,H,2,0,"p",26)(64,$,2,0,"ng-template",null,0,f.C5r),f.k0s(),f.DNE(66,Ke,2,1,"button",27)(67,Vt,2,0,"button",28),f.k0s()()()()()}if(2&Ye){const Qe=f.sdS(65);f.R7$(),f.Y8G("fxLayoutAlign",null!=fe.invoice&&fe.invoice.serialized&&""!==(null==fe.invoice?null:fe.invoice.serialized)?"center start":"center center")("ngClass",f.eq3(33,V,fe.screenSize===fe.screenSizeEnum.XS||fe.screenSize===fe.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==fe.invoice?null:fe.invoice.serialized)&&""!==(null==fe.invoice?null:fe.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=fe.invoice&&fe.invoice.serialized)||""===(null==fe.invoice?null:fe.invoice.serialized)),f.R7$(4),f.Y8G("icon",fe.faReceipt),f.R7$(2),f.JRh(fe.screenSize===fe.screenSizeEnum.XS?fe.newlyAdded?"Created":"Invoice":fe.newlyAdded?"Invoice Created":"Invoice Information"),f.R7$(3),f.Y8G("ngClass",f.eq3(35,ce,fe.screenSize===fe.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=fe.invoice&&fe.invoice.serialized&&""!==(null==fe.invoice?null:fe.invoice.serialized)?"center start":"center center")("ngClass",f.eq3(37,V,fe.screenSize!==fe.screenSizeEnum.XS&&fe.screenSize!==fe.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==fe.invoice?null:fe.invoice.serialized)&&""!==(null==fe.invoice?null:fe.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=fe.invoice&&fe.invoice.serialized)||""===(null==fe.invoice?null:fe.invoice.serialized)),f.R7$(),f.Y8G("ngIf",fe.screenSize===fe.screenSizeEnum.XS||fe.screenSize===fe.screenSizeEnum.SM),f.R7$(6),f.SpI("",f.bMT(24,26,(null==fe.invoice?null:fe.invoice.amount)||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=fe.invoice&&fe.invoice.amount)||"0"===(null==fe.invoice?null:fe.invoice.amount)),f.R7$(5),f.Y8G("ngIf",null==fe.invoice?null:fe.invoice.amountSettled),f.R7$(),f.Y8G("ngIf",!(null!=fe.invoice&&fe.invoice.amountSettled)),f.R7$(7),f.JRh(f.i5U(39,28,1e3*(null==fe.invoice?null:fe.invoice.timestamp),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.bMT(45,31,null==fe.invoice?null:fe.invoice.status)),f.R7$(8),f.JRh((null==fe.invoice?null:fe.invoice.description)||"-"),f.R7$(7),f.JRh((null==fe.invoice?null:fe.invoice.serialized)||"N/A"),f.R7$(),f.Y8G("ngIf",fe.showAdvanced),f.R7$(),f.Y8G("ngClass",f.l_i(39,be,!fe.showAdvanced,fe.showAdvanced)),f.R7$(2),f.Y8G("ngIf",!fe.showAdvanced)("ngIfElse",Qe),f.R7$(3),f.Y8G("ngIf",(null==fe.invoice?null:fe.invoice.serialized)&&""!==(null==fe.invoice?null:fe.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=fe.invoice&&fe.invoice.serialized)||""===(null==fe.invoice?null:fe.invoice.serialized))}},dependencies:[A.YU,A.Sq,A.bT,Pe.aY,le.$z,Ce.m2,Ce.MM,Ae.q,j.LG,W.DJ,W.sA,W.UI,G.PW,re.Um,xe.U,Ee.N,A.QX,A.PV,A.vh],encapsulation:2}))}return ot(),nt})()},190(Zt,pe,l){"use strict";l.d(pe,{$6:()=>Vt,$J:()=>F,$Q:()=>be,As:()=>ht,Br:()=>u,CK:()=>fe,DI:()=>Ee,DY:()=>xe,Do:()=>Ke,Dq:()=>St,Fd:()=>gt,GZ:()=>wt,Gy:()=>C,H2:()=>Le,Hm:()=>ye,J9:()=>ce,Jx:()=>W,L:()=>te,Lf:()=>H,NS:()=>O,O8:()=>Ye,Qj:()=>B,SM:()=>oe,Sn:()=>f,T4:()=>ee,Uj:()=>Qe,Uo:()=>re,VK:()=>Ae,WE:()=>Pt,X9:()=>e,XT:()=>Ft,Yi:()=>vi,Zi:()=>Ce,_$:()=>ot,aB:()=>Qn,ar:()=>J,b1:()=>Se,cR:()=>lt,cU:()=>De,dv:()=>ne,e8:()=>v,ed:()=>le,fy:()=>_e,ij:()=>ei,jk:()=>Ni,kv:()=>vt,lg:()=>w,mh:()=>nt,oX:()=>jt,p1:()=>T,pL:()=>Re,sq:()=>A,t0:()=>rt,t5:()=>ve,tG:()=>ke,tf:()=>V,uK:()=>Ri,vL:()=>he,w0:()=>Dt,x1:()=>L,yp:()=>G,z2:()=>Xe,zU:()=>gn});var i=l(9640),d=l(4416);const v=(0,i.VP)(d.QP.UPDATE_API_CALL_STATUS_LND,(0,i.xk)()),T=(0,i.VP)(d.QP.RESET_LND_STORE),w=(0,i.VP)(d.QP.FETCH_PAGE_SETTINGS_LND),e=(0,i.VP)(d.QP.UPDATE_SELECTED_NODE_OPTIONS),O=(0,i.VP)(d.QP.SET_PAGE_SETTINGS_LND,(0,i.xk)()),f=(0,i.VP)(d.QP.SAVE_PAGE_SETTINGS_LND,(0,i.xk)()),u=(0,i.VP)(d.QP.FETCH_INFO_LND,(0,i.xk)()),L=(0,i.VP)(d.QP.SET_INFO_LND,(0,i.xk)()),C=(0,i.VP)(d.QP.FETCH_PEERS_LND),B=(0,i.VP)(d.QP.SET_PEERS_LND,(0,i.xk)()),A=(0,i.VP)(d.QP.SAVE_NEW_PEER_LND,(0,i.xk)()),le=((0,i.VP)(d.QP.NEWLY_ADDED_PEER_LND,(0,i.xk)()),(0,i.VP)(d.QP.DETACH_PEER_LND,(0,i.xk)())),Ce=(0,i.VP)(d.QP.REMOVE_PEER_LND,(0,i.xk)()),Ae=(0,i.VP)(d.QP.SAVE_NEW_INVOICE_LND,(0,i.xk)()),W=((0,i.VP)(d.QP.NEWLY_SAVED_INVOICE_LND,(0,i.xk)()),(0,i.VP)(d.QP.ADD_INVOICE_LND,(0,i.xk)())),G=(0,i.VP)(d.QP.FETCH_FEES_LND),re=(0,i.VP)(d.QP.SET_FEES_LND,(0,i.xk)()),xe=(0,i.VP)(d.QP.FETCH_BLOCKCHAIN_BALANCE_LND),Ee=(0,i.VP)(d.QP.SET_BLOCKCHAIN_BALANCE_LND,(0,i.xk)()),V=(0,i.VP)(d.QP.FETCH_NETWORK_LND),ce=(0,i.VP)(d.QP.SET_NETWORK_LND,(0,i.xk)()),be=(0,i.VP)(d.QP.FETCH_CHANNELS_LND),ne=(0,i.VP)(d.QP.SET_CHANNELS_LND,(0,i.xk)()),J=(0,i.VP)(d.QP.FETCH_PENDING_CHANNELS_LND),De=(0,i.VP)(d.QP.SET_PENDING_CHANNELS_LND,(0,i.xk)()),Re=(0,i.VP)(d.QP.FETCH_CLOSED_CHANNELS_LND),Xe=(0,i.VP)(d.QP.SET_CLOSED_CHANNELS_LND,(0,i.xk)()),_e=(0,i.VP)(d.QP.UPDATE_CHANNEL_LND,(0,i.xk)()),he=(0,i.VP)(d.QP.SAVE_NEW_CHANNEL_LND,(0,i.xk)()),Dt=(0,i.VP)(d.QP.CLOSE_CHANNEL_LND,(0,i.xk)()),lt=(0,i.VP)(d.QP.REMOVE_CHANNEL_LND,(0,i.xk)()),Le=(0,i.VP)(d.QP.BACKUP_CHANNELS_LND,(0,i.xk)()),te=(0,i.VP)(d.QP.VERIFY_CHANNEL_LND,(0,i.xk)()),F=((0,i.VP)(d.QP.BACKUP_CHANNELS_RES_LND,(0,i.xk)()),(0,i.VP)(d.QP.VERIFY_CHANNEL_RES_LND,(0,i.xk)()),(0,i.VP)(d.QP.RESTORE_CHANNELS_LIST_LND)),ve=(0,i.VP)(d.QP.SET_RESTORE_CHANNELS_LIST_LND,(0,i.xk)()),H=(0,i.VP)(d.QP.RESTORE_CHANNELS_LND,(0,i.xk)()),Ke=((0,i.VP)(d.QP.RESTORE_CHANNELS_RES_LND,(0,i.xk)()),(0,i.VP)(d.QP.FETCH_INVOICES_LND,(0,i.xk)())),Vt=(0,i.VP)(d.QP.SET_INVOICES_LND,(0,i.xk)()),St=(0,i.VP)(d.QP.UPDATE_INVOICE_LND,(0,i.xk)()),ot=(0,i.VP)(d.QP.UPDATE_PAYMENT_LND,(0,i.xk)()),nt=(0,i.VP)(d.QP.FETCH_TRANSACTIONS_LND),ht=(0,i.VP)(d.QP.SET_TRANSACTIONS_LND,(0,i.xk)()),oe=(0,i.VP)(d.QP.FETCH_UTXOS_LND),Ye=(0,i.VP)(d.QP.SET_UTXOS_LND,(0,i.xk)()),fe=(0,i.VP)(d.QP.FETCH_PAYMENTS_LND,(0,i.xk)()),Qe=(0,i.VP)(d.QP.SET_PAYMENTS_LND,(0,i.xk)()),gt=(0,i.VP)(d.QP.SEND_PAYMENT_LND,(0,i.xk)()),rt=((0,i.VP)(d.QP.SEND_PAYMENT_STATUS_LND,(0,i.xk)()),(0,i.VP)(d.QP.FETCH_GRAPH_NODE_LND,(0,i.xk)())),Ft=((0,i.VP)(d.QP.SET_GRAPH_NODE_LND,(0,i.xk)()),(0,i.VP)(d.QP.GET_NEW_ADDRESS_LND,(0,i.xk)())),Qn=((0,i.VP)(d.QP.SET_NEW_ADDRESS_LND,(0,i.xk)()),(0,i.VP)(d.QP.SET_CHANNEL_TRANSACTION_LND,(0,i.xk)())),jt=((0,i.VP)(d.QP.SET_CHANNEL_TRANSACTION_RES_LND,(0,i.xk)()),(0,i.VP)(d.QP.GEN_SEED_LND,(0,i.xk)())),wt=((0,i.VP)(d.QP.GEN_SEED_RESPONSE_LND,(0,i.xk)()),(0,i.VP)(d.QP.INIT_WALLET_LND,(0,i.xk)())),Pt=((0,i.VP)(d.QP.INIT_WALLET_RESPONSE_LND,(0,i.xk)()),(0,i.VP)(d.QP.UNLOCK_WALLET_LND,(0,i.xk)())),gn=(0,i.VP)(d.QP.PEER_LOOKUP_LND,(0,i.xk)()),ei=(0,i.VP)(d.QP.CHANNEL_LOOKUP_LND,(0,i.xk)()),vi=(0,i.VP)(d.QP.INVOICE_LOOKUP_LND,(0,i.xk)()),Ni=(0,i.VP)(d.QP.PAYMENT_LOOKUP_LND,(0,i.xk)()),Ri=((0,i.VP)(d.QP.SET_LOOKUP_LND,(0,i.xk)()),(0,i.VP)(d.QP.GET_FORWARDING_HISTORY_LND,(0,i.xk)())),vt=(0,i.VP)(d.QP.SET_FORWARDING_HISTORY_LND,(0,i.xk)()),ee=(0,i.VP)(d.QP.GET_QUERY_ROUTES_LND,(0,i.xk)()),ye=(0,i.VP)(d.QP.SET_QUERY_ROUTES_LND,(0,i.xk)()),ke=(0,i.VP)(d.QP.GET_ALL_LIGHTNING_TRANSATIONS_LND),Se=(0,i.VP)(d.QP.SET_ALL_LIGHTNING_TRANSATIONS_LND,(0,i.xk)())},9579(Zt,pe,l){"use strict";l.d(pe,{L:()=>ce});var i=l(1747),d=l(1413),v=l(7673),T=l(9437),w=l(6354),e=l(1397),O=l(6977),f=l(3993),u=l(6391),L=l(2462),C=l(4416),B=l(1771),A=l(190),Pe=l(3536),le=l(2615),Ce=l(9330),Ae=l(9640),j=l(8570),W=l(2571),G=l(3202),re=l(1585),xe=l(3694),Ee=l(7879),V=l(7303);let ce=(()=>{var be;class ne{constructor(De,Re,Xe,_e,he,Dt,lt,Le,te,ie){this.actions=De,this.httpClient=Re,this.store=Xe,this.logger=_e,this.commonService=he,this.sessionService=Dt,this.dialog=lt,this.router=Le,this.wsService=te,this.location=ie,this.CHILD_API_URL=C.H$+"/lnd",this.invoicesPageSettings=C.ZC.find(P=>"transactions"===P.pageId)?.tables.find(P=>"invoices"===P.tableId),this.paymentsPageSettings=C.ZC.find(P=>"transactions"===P.pageId)?.tables.find(P=>"payments"===P.tableId),this.flgInitialized=!1,this.unSubs=[new d.B,new d.B],this.infoFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_INFO_LND),(0,e.Z)(P=>(this.flgInitialized=!1,this.store.dispatch((0,B.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,B.Jh)()),this.store.dispatch((0,B.mt)({payload:C.MZ.GET_NODE_INFO})),this.store.dispatch((0,A.e8)({payload:{action:"FetchInfo",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.GETINFO_API).pipe((0,O.Q)(this.actions.pipe((0,i.gp)(C.aU.SET_SELECTED_NODE))),(0,w.T)(F=>(this.logger.info(F),F.chains&&F.chains.length&&F.chains[0]&&("string"==typeof F.chains[0]&&F.chains[0].toLowerCase().indexOf("bitcoin")<0||"object"==typeof F.chains[0]&&F.chains[0].hasOwnProperty("chain")&&F.chains[0].chain&&F.chains[0].chain.toLowerCase().indexOf("bitcoin")<0)?(this.store.dispatch((0,A.e8)({payload:{action:"FetchInfo",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.Jh)()),this.store.dispatch((0,B.xO)({payload:{data:{type:C.A$.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}})),{type:C.aU.LOGOUT}):F.identity_pubkey?(F.lnImplementation="LND",this.initializeRemainingData(F,P.payload.loadPage),this.store.dispatch((0,A.e8)({payload:{action:"FetchInfo",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.Jh)()),{type:C.QP.SET_INFO_LND,payload:F||{}}):(this.store.dispatch((0,A.e8)({payload:{action:"FetchInfo",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.Jh)()),this.sessionService.removeItem("lndUnlocked"),this.logger.info("Redirecting to Unlock"),this.router.navigate(["/lnd/wallet"]),{type:C.QP.SET_INFO_LND,payload:{}}))),(0,T.W)(F=>{if("string"==typeof F.error.error&&F.error.error.includes("Not Found")||"string"==typeof F.error.error&&F.error.error.includes("wallet locked")||502===F.status&&!F.error.message.includes("Bad or Missing Macaroon"))this.sessionService.removeItem("lndUnlocked"),this.logger.info("Redirecting to Unlock"),this.router.navigate(["/lnd/wallet"]),this.handleErrorWithoutAlert("FetchInfo",C.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",F);else if("string"==typeof F.error.error&&F.error.error.includes("starting up")&&500===F.status)setTimeout(()=>{this.store.dispatch((0,A.Br)({payload:{loadPage:"HOME"}}))},2e3);else{const ve=this.commonService.extractErrorCode(F),H=503===ve?"Unable to Connect to LND Server.":this.commonService.extractErrorMessage(F);this.router.navigate(["/error"],{state:{errorCode:ve,errorMessage:H}}),this.handleErrorWithoutAlert("FetchInfo",C.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:ve,error:H})}return(0,v.of)({type:C.aU.VOID})})))))),this.peersFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_PEERS_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchPeers",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.PEERS_API).pipe((0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchPeers",status:C.wn.COMPLETED}})),{type:C.QP.SET_PEERS_LND,payload:P||[]})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchPeers",C.MZ.NO_SPINNER,"Fetching Peers Failed.",P),(0,v.of)({type:C.aU.VOID})))))))),this.saveNewPeer=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SAVE_NEW_PEER_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.CONNECT_PEER})),this.store.dispatch((0,A.e8)({payload:{action:"SaveNewPeer",status:C.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+C.rl.PEERS_API,{pubkey:P.payload.pubkey,host:P.payload.host,perm:P.payload.perm}).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,A.e8)({payload:{action:"SaveNewPeer",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.y0)({payload:C.MZ.CONNECT_PEER})),this.store.dispatch((0,A.Qj)({payload:F||[]})),{type:C.QP.NEWLY_ADDED_PEER_LND,payload:{peer:F[0]}})),(0,T.W)(F=>(this.handleErrorWithoutAlert("SaveNewPeer",C.MZ.CONNECT_PEER,"Peer Connection Failed.",F),(0,v.of)({type:C.aU.VOID})))))))),this.detachPeer=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.DETACH_PEER_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+C.rl.PEERS_API+"/"+P.payload.pubkey).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,B.y0)({payload:C.MZ.DISCONNECT_PEER})),this.store.dispatch((0,B.UI)({payload:"Peer Disconnected Successfully."})),{type:C.QP.REMOVE_PEER_LND,payload:{pubkey:P.payload.pubkey}})),(0,T.W)(F=>(this.handleErrorWithAlert("DetachPeer",C.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+C.rl.PEERS_API+"/"+P.payload.pubkey,F),(0,v.of)({type:C.aU.VOID})))))))),this.saveNewInvoice=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SAVE_NEW_INVOICE_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:P.payload.uiMessage})),this.store.dispatch((0,A.e8)({payload:{action:"SaveNewInvoice",status:C.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+C.rl.INVOICES_API,{memo:P.payload.memo,value:P.payload.value,private:P.payload.private,expiry:P.payload.expiry,is_amp:P.payload.is_amp}).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,A.e8)({payload:{action:"SaveNewInvoice",status:C.wn.COMPLETED}})),this.store.dispatch((0,A.Do)({payload:{num_max_invoices:P.payload.pageSize,reversed:!0}})),P.payload.openModal?(F.memo=P.payload.memo,F.value=P.payload.value,F.expiry=P.payload.expiry,F.private=P.payload.private,F.is_amp=P.payload.is_amp,F.cltv_expiry="144",F.creation_date=Math.round((new Date).getTime()/1e3).toString(),setTimeout(()=>{this.store.dispatch((0,B.xO)({payload:{data:{invoice:F,newlyAdded:!0,component:u.H}}}))},200),{type:C.aU.CLOSE_SPINNER,payload:P.payload.uiMessage}):{type:C.QP.NEWLY_SAVED_INVOICE_LND,payload:{paymentRequest:F.payment_request}})),(0,T.W)(F=>(this.handleErrorWithoutAlert("SaveNewInvoice",P.payload.uiMessage,"Add Invoice Failed.",F),(0,v.of)({type:C.aU.VOID})))))))),this.openNewChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SAVE_NEW_CHANNEL_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.OPEN_CHANNEL})),this.store.dispatch((0,A.e8)({payload:{action:"SaveNewChannel",status:C.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+C.rl.CHANNELS_API,{node_pubkey:P.payload.selectedPeerPubkey,local_funding_amount:P.payload.fundingAmount,private:P.payload.private,trans_type:P.payload.transType,trans_type_value:P.payload.transTypeValue,spend_unconfirmed:P.payload.spendUnconfirmed,commitment_type:P.payload.commitmentType}).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,A.e8)({payload:{action:"SaveNewChannel",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.y0)({payload:C.MZ.OPEN_CHANNEL})),this.store.dispatch((0,A.DY)()),this.store.dispatch((0,A.$Q)()),this.store.dispatch((0,A.H2)({payload:{uiMessage:C.MZ.NO_SPINNER,channelPoint:"ALL",showMessage:"Channel Added Successfully!"}})),{type:C.QP.FETCH_PENDING_CHANNELS_LND})),(0,T.W)(F=>(this.handleErrorWithoutAlert("SaveNewChannel",C.MZ.OPEN_CHANNEL,"Opening Channel Failed.",F),(0,v.of)({type:C.aU.VOID})))))))),this.updateChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.UPDATE_CHANNEL_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+C.rl.CHANNELS_API+"/chanPolicy",{baseFeeMsat:P.payload.baseFeeMsat,feeRate:P.payload.feeRate,timeLockDelta:P.payload.timeLockDelta,max_htlc_msat:P.payload.maxHtlcMsat,min_htlc_msat:P.payload.minHtlcMsat,chanPoint:P.payload.chanPoint}).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,B.y0)({payload:C.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,B.UI)("all"===P.payload.chanPoint?{payload:"All Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:C.QP.FETCH_CHANNELS_LND})),(0,T.W)(F=>(this.handleErrorWithAlert("UpdateChannels",C.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+C.rl.CHANNELS_API+"/chanPolicy",F),(0,v.of)({type:C.aU.VOID})))))))),this.closeChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.CLOSE_CHANNEL_LND),(0,e.Z)(P=>{this.store.dispatch((0,B.mt)({payload:P.payload.forcibly?C.MZ.FORCE_CLOSE_CHANNEL:C.MZ.CLOSE_CHANNEL}));let F=this.CHILD_API_URL+C.rl.CHANNELS_API+"/"+P.payload.channelPoint+"?force="+P.payload.forcibly;return P.payload.targetConf&&(F=F+"&target_conf="+P.payload.targetConf),P.payload.satPerVByte&&(F=F+"&sat_per_vbyte="+P.payload.satPerVByte),this.httpClient.delete(F).pipe((0,w.T)(ve=>(this.logger.info(ve),this.store.dispatch((0,B.y0)({payload:P.payload.forcibly?C.MZ.FORCE_CLOSE_CHANNEL:C.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,A.$Q)()),this.store.dispatch((0,A.ar)()),this.store.dispatch((0,A.H2)({payload:{uiMessage:C.MZ.NO_SPINNER,channelPoint:"ALL",showMessage:ve.message}})),{type:C.aU.VOID})),(0,T.W)(ve=>(this.handleErrorWithAlert("CloseChannel",P.payload.forcibly?C.MZ.FORCE_CLOSE_CHANNEL:C.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+C.rl.CHANNELS_API+"/"+P.payload.channelPoint+"?force="+P.payload.forcibly,ve),(0,v.of)({type:C.aU.VOID}))))}))),this.backupChannels=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.BACKUP_CHANNELS_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:P.payload.uiMessage})),this.store.dispatch((0,A.e8)({payload:{action:"BackupChannels",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.CHANNELS_BACKUP_API+"/"+P.payload.channelPoint).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,A.e8)({payload:{action:"BackupChannels",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.y0)({payload:P.payload.uiMessage})),this.store.dispatch((0,B.UI)({payload:P.payload.showMessage+" "+F.message})),{type:C.QP.BACKUP_CHANNELS_RES_LND,payload:F.message})),(0,T.W)(F=>(this.handleErrorWithAlert("BackupChannels",P.payload.uiMessage,P.payload.showMessage+" Unable to Backup Channel. Try again later.",this.CHILD_API_URL+C.rl.CHANNELS_BACKUP_API+"/"+P.payload.channelPoint,F),(0,v.of)({type:C.aU.VOID})))))))),this.verifyChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.VERIFY_CHANNEL_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.VERIFY_CHANNEL})),this.store.dispatch((0,A.e8)({payload:{action:"VerifyChannel",status:C.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+C.rl.CHANNELS_BACKUP_API+"/verify/"+P.payload.channelPoint,{}).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,A.e8)({payload:{action:"VerifyChannel",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.y0)({payload:C.MZ.VERIFY_CHANNEL})),this.store.dispatch((0,B.UI)({payload:F.message})),{type:C.QP.VERIFY_CHANNEL_RES_LND,payload:F.message})),(0,T.W)(F=>(this.handleErrorWithAlert("VerifyChannel",C.MZ.VERIFY_CHANNEL,"Unable to Verify Channel. Try again later.",this.CHILD_API_URL+C.rl.CHANNELS_BACKUP_API+"/verify/"+P.payload.channelPoint,F),(0,v.of)({type:C.aU.VOID})))))))),this.restoreChannels=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.RESTORE_CHANNELS_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.RESTORE_CHANNEL})),this.store.dispatch((0,A.e8)({payload:{action:"RestoreChannels",status:C.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+C.rl.CHANNELS_BACKUP_API+"/restore/"+P.payload.channelPoint,{}).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,A.e8)({payload:{action:"RestoreChannels",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.y0)({payload:C.MZ.RESTORE_CHANNEL})),this.store.dispatch((0,B.UI)({payload:F.message})),this.store.dispatch((0,A.t5)({payload:F.list})),{type:C.QP.RESTORE_CHANNELS_RES_LND,payload:F.message})),(0,T.W)(F=>(this.handleErrorWithAlert("RestoreChannels",C.MZ.RESTORE_CHANNEL,"Unable to Restore Channel. Try again later.",this.CHILD_API_URL+C.rl.CHANNELS_BACKUP_API+"/restore/"+P.payload.channelPoint,F),(0,v.of)({type:C.aU.VOID})))))))),this.fetchFees=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_FEES_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchFees",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.FEES_API))),(0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchFees",status:C.wn.COMPLETED}})),P.forwarding_events_history&&(this.store.dispatch((0,A.kv)({payload:P.forwarding_events_history})),delete P.forwarding_events_history),{type:C.QP.SET_FEES_LND,payload:P||{}})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchFees",C.MZ.NO_SPINNER,"Fetching Fees Failed.",P),(0,v.of)({type:C.aU.VOID}))))),this.balanceBlockchainFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_BLOCKCHAIN_BALANCE_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchBalance",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.BALANCE_API))),(0,w.T)(P=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchBalance",status:C.wn.COMPLETED}})),this.logger.info(P),{type:C.QP.SET_BLOCKCHAIN_BALANCE_LND,payload:P||{total_balance:""}})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchBalance",C.MZ.NO_SPINNER,"Fetching Blockchain Balance Failed.",P),(0,v.of)({type:C.aU.VOID}))))),this.networkInfoFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_NETWORK_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchNetwork",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.NETWORK_API+"/info"))),(0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchNetwork",status:C.wn.COMPLETED}})),{type:C.QP.SET_NETWORK_LND,payload:P||{}})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchNetwork",C.MZ.NO_SPINNER,"Fetching Network Failed.",P),(0,v.of)({type:C.aU.VOID}))))),this.channelsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_CHANNELS_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchChannels",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.CHANNELS_API).pipe((0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchChannels",status:C.wn.COMPLETED}})),{type:C.QP.SET_CHANNELS_LND,payload:P.channels||[]})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchChannels",C.MZ.NO_SPINNER,"Fetching Channels Failed.",P),(0,v.of)({type:C.aU.VOID})))))))),this.channelsPendingFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_PENDING_CHANNELS_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchPendingChannels",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.CHANNELS_API+"/pending").pipe((0,w.T)(P=>{this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchPendingChannels",status:C.wn.COMPLETED}}));const F={open:{num_channels:0,limbo_balance:0},closing:{num_channels:0,limbo_balance:0},force_closing:{num_channels:0,limbo_balance:0},waiting_close:{num_channels:0,limbo_balance:0},total_channels:0,total_limbo_balance:0};return P&&(F.total_limbo_balance=P.total_limbo_balance,P.pending_closing_channels&&(F.closing.num_channels=P.pending_closing_channels.length,F.total_channels=F.total_channels+P.pending_closing_channels.length,P.pending_closing_channels.forEach(ve=>{F.closing.limbo_balance=+F.closing.limbo_balance+(ve.channel.local_balance?+ve.channel.local_balance:0)})),P.pending_force_closing_channels&&(F.force_closing.num_channels=P.pending_force_closing_channels.length,F.total_channels=F.total_channels+P.pending_force_closing_channels.length,P.pending_force_closing_channels.forEach(ve=>{F.force_closing.limbo_balance=+F.force_closing.limbo_balance+(ve.channel.local_balance?+ve.channel.local_balance:0)})),P.pending_open_channels&&(F.open.num_channels=P.pending_open_channels.length,F.total_channels=F.total_channels+P.pending_open_channels.length,P.pending_open_channels.forEach(ve=>{F.open.limbo_balance=+F.open.limbo_balance+(ve.channel.local_balance?+ve.channel.local_balance:0)})),P.waiting_close_channels&&(F.waiting_close.num_channels=P.waiting_close_channels.length,F.total_channels=F.total_channels+P.waiting_close_channels.length,P.waiting_close_channels.forEach(ve=>{F.waiting_close.limbo_balance=+F.waiting_close.limbo_balance+(ve.channel.local_balance?+ve.channel.local_balance:0)}))),{type:C.QP.SET_PENDING_CHANNELS_LND,payload:P?{pendingChannels:P,pendingChannelsSummary:F}:{pendingChannels:{},pendingChannelsSummary:F}}}),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchPendingChannels",C.MZ.NO_SPINNER,"Fetching Pending Channels Failed.",P),(0,v.of)({type:C.aU.VOID})))))))),this.channelsClosedFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_CLOSED_CHANNELS_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchClosedChannels",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.CHANNELS_API+"/closed").pipe((0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchClosedChannels",status:C.wn.COMPLETED}})),{type:C.QP.SET_CLOSED_CHANNELS_LND,payload:P.channels||[]})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchClosedChannels",C.MZ.NO_SPINNER,"Fetching Closed Channels Failed.",P),(0,v.of)({type:C.aU.VOID})))))))),this.invoicesFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_INVOICES_LND),(0,e.Z)(P=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchInvoices",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.INVOICES_API+"?num_max_invoices="+(P.payload.num_max_invoices?P.payload.num_max_invoices:100)+"&index_offset="+(P.payload.index_offset?P.payload.index_offset:0)+"&reversed="+(!!P.payload.reversed&&P.payload.reversed)).pipe((0,w.T)($=>(this.logger.info($),this.store.dispatch((0,A.e8)({payload:{action:"FetchInvoices",status:C.wn.COMPLETED}})),P.payload.reversed&&!P.payload.index_offset&&($.total_invoices=+($.last_index_offset||0)),{type:C.QP.SET_INVOICES_LND,payload:$})),(0,T.W)($=>(this.handleErrorWithoutAlert("FetchInvoices",C.MZ.NO_SPINNER,"Fetching Invoices Failed.",$),(0,v.of)({type:C.aU.VOID})))))))),this.transactionsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_TRANSACTIONS_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchTransactions",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.TRANSACTIONS_API))),(0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchTransactions",status:C.wn.COMPLETED}})),{type:C.QP.SET_TRANSACTIONS_LND,payload:P||[]})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchTransactions",C.MZ.NO_SPINNER,"Fetching Transactions Failed.",P),(0,v.of)({type:C.aU.VOID}))))),this.utxosFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_UTXOS_LND),(0,f.E)(this.store.select(Pe.pI)),(0,e.Z)(([P,F])=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchUTXOs",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.WALLET_API+"/getUTXOs?max_confs="+(F&&F.block_height?F.block_height:1e9)))),(0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchUTXOs",status:C.wn.COMPLETED}})),{type:C.QP.SET_UTXOS_LND,payload:P||[]})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchUTXOs",C.MZ.NO_SPINNER,"Fetching UTXOs Failed.",P),(0,v.of)({type:C.aU.VOID}))))),this.paymentsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_PAYMENTS_LND),(0,e.Z)(P=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchPayments",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.PAYMENTS_API+"?max_payments="+(P.payload.max_payments?P.payload.max_payments:100)+"&index_offset="+(P.payload.index_offset?P.payload.index_offset:0)+"&reversed="+(!!P.payload.reversed&&P.payload.reversed)).pipe((0,w.T)($=>(this.logger.info($),this.store.dispatch((0,A.e8)({payload:{action:"FetchPayments",status:C.wn.COMPLETED}})),this.commonService.sortByKey($.payments||[],this.paymentsPageSettings?.sortBy||"creation_date","number",this.paymentsPageSettings?.sortOrder),{type:C.QP.SET_PAYMENTS_LND,payload:$})),(0,T.W)($=>(this.handleErrorWithoutAlert("FetchPayments",C.MZ.NO_SPINNER,"Fetching Payments Failed.",$),(0,v.of)({type:C.QP.SET_PAYMENTS_LND,payload:{payments:[]}})))))))),this.sendPayment=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SEND_PAYMENT_LND),(0,e.Z)(P=>{this.store.dispatch((0,B.mt)({payload:P.payload.uiMessage})),this.store.dispatch((0,A.e8)({payload:{action:"SendPayment",status:C.wn.INITIATED}}));const F=JSON.parse(JSON.stringify(P.payload));return delete F.uiMessage,delete F.fromDialog,this.httpClient.post(this.CHILD_API_URL+C.rl.PAYMENTS_API+"/send",F).pipe((0,w.T)(ve=>{if(this.logger.info(ve),this.store.dispatch((0,B.y0)({payload:P.payload.uiMessage})),this.store.dispatch((0,A.e8)({payload:{action:"SendPayment",status:C.wn.COMPLETED}})),ve.payment_error)return P.payload.allow_self_payment?(this.store.dispatch((0,A.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}})),{type:C.QP.SEND_PAYMENT_STATUS_LND,payload:ve}):(P.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",P.payload.uiMessage,"Send Payment Failed.",ve.payment_error):this.handleErrorWithAlert("SendPayment",P.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+C.rl.CHANNELS_API+"/transactions",ve.payment_error),{type:C.aU.VOID});if(this.store.dispatch((0,B.y0)({payload:P.payload.uiMessage})),this.store.dispatch((0,A.e8)({payload:{action:"SendPayment",status:C.wn.COMPLETED}})),this.store.dispatch((0,A.$Q)()),this.store.dispatch((0,A.CK)({payload:{max_payments:this.paymentsPageSettings?.recordsPerPage,reversed:!0}})),P.payload.allow_self_payment)this.store.dispatch((0,A.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}));else{let H="Payment Sent Successfully.";ve.payment_route&&ve.payment_route.total_fees_msat&&(H="Payment sent successfully with the total fee "+ve.payment_route.total_fees_msat+" (mSats)."),this.store.dispatch((0,B.UI)({payload:H}))}return{type:C.QP.SEND_PAYMENT_STATUS_LND,payload:ve}}),(0,T.W)(ve=>(this.logger.error("Error: "+JSON.stringify(ve)),P.payload.allow_self_payment?(this.handleErrorWithoutAlert("SendPayment",P.payload.uiMessage,"Send Payment Failed.",ve),this.store.dispatch((0,A.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}})),(0,v.of)({type:C.QP.SEND_PAYMENT_STATUS_LND,payload:{error:this.commonService.extractErrorMessage(ve)}})):(P.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",P.payload.uiMessage,"Send Payment Failed.",ve):this.handleErrorWithAlert("SendPayment",P.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+C.rl.CHANNELS_API+"/transactions",ve),(0,v.of)({type:C.aU.VOID})))))}))),this.graphNodeFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_GRAPH_NODE_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.GET_NODE_ADDRESS})),this.store.dispatch((0,A.e8)({payload:{action:"FetchGraphNode",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.NETWORK_API+"/node/"+P.payload.pubkey).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,B.y0)({payload:C.MZ.GET_NODE_ADDRESS})),this.store.dispatch((0,A.e8)({payload:{action:"FetchGraphNode",status:C.wn.COMPLETED}})),{type:C.QP.SET_GRAPH_NODE_LND,payload:F&&F.node?{node:F.node}:{node:null}})),(0,T.W)(F=>(this.handleErrorWithoutAlert("FetchGraphNode",C.MZ.GET_NODE_ADDRESS,"Fetching Graph Node Failed.",F),(0,v.of)({type:C.aU.VOID})))))))),this.setGraphNode=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SET_GRAPH_NODE_LND),(0,w.T)(P=>(this.logger.info(P.payload),P.payload))),{dispatch:!1}),this.getNewAddress=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.GET_NEW_ADDRESS_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+C.rl.NEW_ADDRESS_API+"?type="+P.payload.addressId).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,B.y0)({payload:C.MZ.GENERATE_NEW_ADDRESS})),{type:C.QP.SET_NEW_ADDRESS_LND,payload:F&&F.address?F.address:{}})),(0,T.W)(F=>(this.handleErrorWithAlert("GetNewAddress",C.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+C.rl.NEW_ADDRESS_API+"?type="+P.payload.addressId,F),(0,v.of)({type:C.aU.VOID})))))))),this.setNewAddress=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SET_NEW_ADDRESS_LND),(0,w.T)(P=>(this.logger.info(P.payload),P.payload))),{dispatch:!1}),this.SetChannelTransaction=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SET_CHANNEL_TRANSACTION_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.SEND_FUNDS})),this.store.dispatch((0,A.e8)({payload:{action:"SetChannelTransaction",status:C.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+C.rl.TRANSACTIONS_API,{amount:P.payload.amount,address:P.payload.address,sendAll:P.payload.sendAll,fees:P.payload.fees,blocks:P.payload.blocks}).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,A.e8)({payload:{action:"SetChannelTransaction",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.y0)({payload:C.MZ.SEND_FUNDS})),this.store.dispatch((0,A.mh)()),this.store.dispatch((0,A.DY)()),this.store.dispatch((0,A.$Q)()),{type:C.QP.SET_CHANNEL_TRANSACTION_RES_LND,payload:F})),(0,T.W)(F=>(this.handleErrorWithoutAlert("SetChannelTransaction",C.MZ.SEND_FUNDS,"Sending Fund Failed.",F),(0,v.of)({type:C.aU.VOID})))))))),this.fetchForwardingHistory=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.GET_FORWARDING_HISTORY_LND),(0,e.Z)(P=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchForwardingHistory",status:C.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+C.rl.SWITCH_API,{num_max_events:P.payload.num_max_events,index_offset:P.payload.index_offset,end_time:P.payload.end_time,start_time:P.payload.start_time}).pipe((0,w.T)(ve=>(this.logger.info(ve),this.store.dispatch((0,A.e8)({payload:{action:"FetchForwardingHistory",status:C.wn.COMPLETED}})),{type:C.QP.SET_FORWARDING_HISTORY_LND,payload:ve})),(0,T.W)(ve=>(this.handleErrorWithAlert("FetchForwardingHistory",C.MZ.NO_SPINNER,"Get Forwarding History Failed",this.CHILD_API_URL+C.rl.SWITCH_API,ve),(0,v.of)({type:C.aU.VOID})))))))),this.queryRoutesFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.GET_QUERY_ROUTES_LND),(0,e.Z)(P=>this.httpClient.get(this.CHILD_API_URL+C.rl.NETWORK_API+"/routes/"+P.payload.destPubkey+"/"+P.payload.amount).pipe((0,w.T)(ve=>(this.logger.info(ve),{type:C.QP.SET_QUERY_ROUTES_LND,payload:ve})),(0,T.W)(ve=>(this.store.dispatch((0,A.Hm)({payload:{routes:[]}})),this.handleErrorWithAlert("GetQueryRoutes",C.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+C.rl.NETWORK_API,ve),(0,v.of)({type:C.aU.VOID}))))))),this.setQueryRoutes=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SET_QUERY_ROUTES_LND),(0,w.T)(P=>P.payload)),{dispatch:!1}),this.genSeed=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.GEN_SEED_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.GEN_SEED})),this.httpClient.get(this.CHILD_API_URL+C.rl.WALLET_API+"/genseed/"+P.payload).pipe((0,w.T)(F=>(this.logger.info("Generated GenSeed!"),this.logger.info(F),this.store.dispatch((0,B.y0)({payload:C.MZ.GEN_SEED})),{type:C.QP.GEN_SEED_RESPONSE_LND,payload:F.cipher_seed_mnemonic})),(0,T.W)(F=>(this.handleErrorWithAlert("GenSeed",C.MZ.GEN_SEED,"Genseed Generation Failed",this.CHILD_API_URL+C.rl.WALLET_API+"/genseed/"+P.payload,F),(0,v.of)({type:C.aU.VOID})))))))),this.updateSelNodeOptions=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.UPDATE_SELECTED_NODE_OPTIONS),(0,e.Z)(()=>this.httpClient.get(this.CHILD_API_URL+C.rl.WALLET_API+"/updateSelNodeOptions").pipe((0,w.T)(P=>(this.logger.info("Update Sel Node Successfull"),this.logger.info(P),{type:C.aU.VOID})),(0,T.W)(P=>(this.handleErrorWithAlert("UpdateSelectedNodeOptions",C.MZ.NO_SPINNER,"Update macaroon for newly initialized node failed! Please check the macaroon path and restart the server!","Update Macaroon",P),(0,v.of)({type:C.aU.VOID}))))))),this.genSeedResponse=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.GEN_SEED_RESPONSE_LND),(0,w.T)(P=>P.payload)),{dispatch:!1}),this.initWalletRes=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.INIT_WALLET_RESPONSE_LND),(0,w.T)(P=>P.payload)),{dispatch:!1}),this.initWallet=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.INIT_WALLET_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.INITIALIZE_WALLET})),this.httpClient.post(this.CHILD_API_URL+C.rl.WALLET_API+"/wallet/initwallet",{wallet_password:P.payload.pwd,cipher_seed_mnemonic:P.payload.cipher?P.payload.cipher:"",aezeed_passphrase:P.payload.passphrase?P.payload.passphrase:""}).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,B.y0)({payload:C.MZ.INITIALIZE_WALLET})),{type:C.QP.INIT_WALLET_RESPONSE_LND,payload:F})),(0,T.W)(F=>(this.handleErrorWithAlert("InitWallet",C.MZ.INITIALIZE_WALLET,"Wallet Initialization Failed",this.CHILD_API_URL+C.rl.WALLET_API+"/initwallet",F),(0,v.of)({type:C.aU.VOID})))))))),this.unlockWallet=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.UNLOCK_WALLET_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.UNLOCK_WALLET})),this.httpClient.post(this.CHILD_API_URL+C.rl.WALLET_API+"/wallet/unlockwallet",{wallet_password:P.payload.pwd}).pipe((0,w.T)(F=>(this.logger.info(F),this.logger.info("Successfully Unlocked!"),this.sessionService.setItem("lndUnlocked","true"),this.store.dispatch((0,B.y0)({payload:C.MZ.UNLOCK_WALLET})),this.store.dispatch((0,B.mt)({payload:C.MZ.WAIT_SYNC_NODE})),setTimeout(()=>{this.store.dispatch((0,B.y0)({payload:C.MZ.WAIT_SYNC_NODE})),this.store.dispatch((0,A.Br)({payload:{loadPage:"HOME"}}))},5e3),{type:C.aU.VOID})),(0,T.W)(F=>(this.handleErrorWithAlert("UnlockWallet",C.MZ.UNLOCK_WALLET,"Unlock Wallet Failed",this.CHILD_API_URL+C.rl.WALLET_API+"/unlockwallet",F),(0,v.of)({type:C.aU.VOID}))))))),{dispatch:!1}),this.peerLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.PEER_LOOKUP_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.SEARCHING_NODE})),this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.NETWORK_API+"/node/"+P.payload).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,B.y0)({payload:C.MZ.SEARCHING_NODE})),this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.COMPLETED}})),{type:C.QP.SET_LOOKUP_LND,payload:F})),(0,T.W)(F=>(this.handleErrorWithAlert("Lookup",C.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+C.rl.NETWORK_API+"/node/"+P.payload,F),(0,v.of)({type:C.aU.VOID})))))))),this.channelLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.CHANNEL_LOOKUP_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:P.payload.uiMessage})),this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.NETWORK_API+"/edge/"+P.payload.channelID).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,B.y0)({payload:P.payload.uiMessage})),this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.COMPLETED}})),{type:C.QP.SET_LOOKUP_LND,payload:F})),(0,T.W)(F=>(this.handleErrorWithAlert("Lookup",P.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+C.rl.NETWORK_API+"/edge/"+P.payload.channelID,F),(0,v.of)({type:C.aU.VOID})))))))),this.invoiceLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.INVOICE_LOOKUP_LND),(0,e.Z)(P=>{this.store.dispatch((0,B.mt)({payload:C.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.INITIATED}}));let F=this.CHILD_API_URL+C.rl.INVOICES_API+"/lookup";return F=P.payload.paymentAddress&&""!==P.payload.paymentAddress?F+"?payment_addr="+P.payload.paymentAddress:F+"?payment_hash="+P.payload.paymentHash,this.httpClient.get(F).pipe((0,w.T)(ve=>(this.logger.info(ve),this.store.dispatch((0,B.y0)({payload:C.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.COMPLETED}})),this.store.dispatch((0,A.Dq)({payload:ve})),{type:C.QP.SET_LOOKUP_LND,payload:ve})),(0,T.W)(ve=>(this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.ERROR}})),this.handleErrorWithoutAlert("Lookup",C.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",ve),P.payload.openSnackBar&&this.store.dispatch((0,B.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,v.of)({type:C.QP.SET_LOOKUP_LND,payload:{error:ve}}))))}))),this.paymentLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.PAYMENT_LOOKUP_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.SEARCHING_PAYMENT})),this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.PAYMENTS_API+"/lookup/"+P.payload).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,B.y0)({payload:C.MZ.SEARCHING_PAYMENT})),this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.COMPLETED}})),this.store.dispatch((0,A._$)({payload:F})),{type:C.QP.SET_LOOKUP_LND,payload:F})),(0,T.W)(F=>(this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.ERROR}})),this.handleErrorWithoutAlert("Lookup",C.MZ.SEARCHING_PAYMENT,"Payment Lookup Failed",F),(0,v.of)({type:C.QP.SET_LOOKUP_LND,payload:{error:F}})))))))),this.setLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SET_LOOKUP_LND),(0,w.T)(P=>(this.logger.info(P.payload),P.payload))),{dispatch:!1}),this.getRestoreChannelList=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.RESTORE_CHANNELS_LIST_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"RestoreChannelsList",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.CHANNELS_BACKUP_API+"/restore/list").pipe((0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"RestoreChannelsList",status:C.wn.COMPLETED}})),{type:C.QP.SET_RESTORE_CHANNELS_LIST_LND,payload:P||{all_restore_exists:!1,files:[]}})),(0,T.W)(P=>(this.handleErrorWithAlert("RestoreChannelsList",C.MZ.NO_SPINNER,"Restore Channels List Failed",this.CHILD_API_URL+C.rl.CHANNELS_BACKUP_API,P),(0,v.of)({type:C.aU.VOID})))))))),this.setRestoreChannelList=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SET_RESTORE_CHANNELS_LIST_LND),(0,w.T)(P=>(this.logger.info(P.payload),P.payload))),{dispatch:!1}),this.allLightningTransactionsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.GET_ALL_LIGHTNING_TRANSATIONS_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchLightningTransactions",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.PAYMENTS_API+"/alltransactions").pipe((0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchLightningTransactions",status:C.wn.COMPLETED}})),{type:C.QP.SET_ALL_LIGHTNING_TRANSATIONS_LND,payload:P})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchLightningTransactions",C.MZ.NO_SPINNER,"Fetching All Lightning Transaction Failed.",P),(0,v.of)({type:C.aU.VOID})))))))),this.pageSettingsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_PAGE_SETTINGS_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchPageSettings",status:C.wn.INITIATED}})),this.httpClient.get(C.rl.PAGE_SETTINGS_API).pipe((0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchPageSettings",status:C.wn.COMPLETED}})),this.invoicesPageSettings=P&&Object.keys(P).length>0?P.find(F=>"transactions"===F.pageId)?.tables.find(F=>"invoices"===F.tableId):C.ZC.find(F=>"transactions"===F.pageId)?.tables.find(F=>"invoices"===F.tableId),this.paymentsPageSettings=P&&Object.keys(P).length>0?P.find(F=>"transactions"===F.pageId)?.tables.find(F=>"payments"===F.tableId):C.ZC.find(F=>"transactions"===F.pageId)?.tables.find(F=>"payments"===F.tableId),{type:C.QP.SET_PAGE_SETTINGS_LND,payload:P||[]})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchPageSettings",C.MZ.NO_SPINNER,"Fetching Page Settings Failed.",P),(0,v.of)({type:C.aU.VOID})))))))),this.savePageSettings=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SAVE_PAGE_SETTINGS_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,A.e8)({payload:{action:"SavePageSettings",status:C.wn.INITIATED}})),this.httpClient.post(C.rl.PAGE_SETTINGS_API,P.payload).pipe((0,w.T)(F=>{this.logger.info(F),this.store.dispatch((0,A.e8)({payload:{action:"SavePageSettings",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.y0)({payload:C.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,B.UI)({payload:"Page Layout Updated Successfully!"}));const ve=(F.find($=>"transactions"===$.pageId)?.tables.find($=>"invoices"===$.tableId)||C.ZC.find($=>"transactions"===$.pageId)?.tables.find($=>"invoices"===$.tableId)).recordsPerPage,H=(F.find($=>"transactions"===$.pageId)?.tables.find($=>"payments"===$.tableId)||C.ZC.find($=>"transactions"===$.pageId)?.tables.find($=>"payments"===$.tableId)).recordsPerPage;return this.invoicesPageSettings&&ve!==this.invoicesPageSettings?.recordsPerPage&&(this.invoicesPageSettings.recordsPerPage=ve,this.store.dispatch((0,A.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}))),this.paymentsPageSettings&&H!==this.paymentsPageSettings?.recordsPerPage&&(this.paymentsPageSettings.recordsPerPage=H),{type:C.QP.SET_PAGE_SETTINGS_LND,payload:F||[]}}),(0,T.W)(F=>(this.handleErrorWithAlert("SavePageSettings",C.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",C.rl.PAGE_SETTINGS_API,F),(0,v.of)({type:C.aU.VOID})))))))),this.store.select(Pe.ru).pipe((0,O.Q)(this.unSubs[0])).subscribe(P=>{P.FetchInfo.status!==C.wn.COMPLETED&&P.FetchInfo.status!==C.wn.ERROR||P.FetchFees.status!==C.wn.COMPLETED&&P.FetchFees.status!==C.wn.ERROR||P.FetchBalanceBlockchain.status!==C.wn.COMPLETED&&P.FetchBalanceBlockchain.status!==C.wn.ERROR||P.FetchAllChannels.status!==C.wn.COMPLETED&&P.FetchAllChannels.status!==C.wn.ERROR||P.FetchPendingChannels.status!==C.wn.COMPLETED&&P.FetchPendingChannels.status!==C.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,B.y0)({payload:C.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.lndWSMessages.pipe((0,O.Q)(this.unSubs[1])).subscribe(P=>{this.logger.info("Received new message from the service: "+JSON.stringify(P)),P&&(P.type===C.o1.INVOICE?(this.logger.info(P),P&&P.result&&P.result.payment_request&&this.store.dispatch((0,A.Dq)({payload:P.result}))):this.logger.info("Received Event from WS: "+JSON.stringify(P)))})}initializeRemainingData(De,Re){this.sessionService.setItem("lndUnlocked","true");const Xe={identity_pubkey:De.identity_pubkey,alias:De.alias,testnet:De.testnet,chains:De.chains,uris:De.uris,version:De.version?De.version.split(" ")[0]:""};this.store.dispatch((0,B.mt)({payload:C.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,B.Fl)({payload:Xe}));let _e=this.location.path();_e.includes("/cln/")?_e=_e?.replace("/cln/","/lnd/"):_e.includes("/ecl/")&&(_e=_e?.replace("/ecl/","/lnd/")),(_e.includes("/unlock")||_e.includes("/login")||_e.includes("/error")||""===_e||"HOME"===Re||_e.includes("?access-key="))&&(_e="/lnd/home"),this.router.navigate([_e]),this.store.dispatch((0,A.DY)()),this.store.dispatch((0,A.$Q)()),this.store.dispatch((0,A.ar)()),this.store.dispatch((0,A.pL)()),this.store.dispatch((0,A.Gy)()),this.store.dispatch((0,A.tf)()),this.store.dispatch((0,A.yp)()),this.store.dispatch((0,A.CK)({payload:{max_payments:1e5,reversed:!0}})),this.store.dispatch((0,A.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}))}handleErrorWithoutAlert(De,Re,Xe,_e){this.logger.error("ERROR IN: "+De+"\n"+JSON.stringify(_e)),401===_e.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,B.Jh)()),this.store.dispatch((0,B.ri)({payload:"Authentication Failed: "+JSON.stringify(_e.error)}))):(this.store.dispatch((0,B.y0)({payload:Re})),this.store.dispatch((0,A.e8)({payload:{action:De,status:C.wn.ERROR,statusCode:_e.status.toString(),message:this.commonService.extractErrorMessage(_e,Xe)}})))}handleErrorWithAlert(De,Re,Xe,_e,he){if(this.logger.error(he),401===he.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,B.Jh)()),this.store.dispatch((0,B.ri)({payload:"Authentication Failed: "+JSON.stringify(he.error)}));else{this.store.dispatch((0,B.y0)({payload:Re}));const Dt=this.commonService.extractErrorMessage(he);this.store.dispatch((0,B.xO)({payload:{data:{type:"ERROR",alertTitle:Xe,message:{code:he.status,message:Dt,URL:_e},component:L.f}}})),this.store.dispatch((0,A.e8)({payload:{action:De,status:C.wn.ERROR,statusCode:he.status.toString(),message:Dt,URL:_e}}))}}ngOnDestroy(){this.unSubs.forEach(De=>{De.next(null),De.complete()})}static#e=be=()=>(this.\u0275fac=function(Re){return new(Re||ne)(le.KVO(i.En),le.KVO(Ce.Qq),le.KVO(Ae.il),le.KVO(j.gP),le.KVO(W.h),le.KVO(G.Q),le.KVO(re.bZ),le.KVO(xe.Ix),le.KVO(Ee.I),le.KVO(V.aZ))},this.\u0275prov=le.jDH({token:ne,factory:ne.\u0275fac}))}return be(),ne})()},3536(Zt,pe,l){"use strict";l.d(pe,{$7:()=>Ae,$G:()=>v,BM:()=>A,Bw:()=>Ce,Ie:()=>O,KT:()=>f,Uv:()=>le,ah:()=>W,eO:()=>xe,gN:()=>C,gj:()=>Ee,n_:()=>re,oR:()=>u,os:()=>L,pI:()=>T,rN:()=>B,ru:()=>e,tA:()=>G});var i=l(9640);const d=(0,i.UX)("lnd"),v=(0,i.Mz)(d,V=>({pageSettings:V.pageSettings,apiCallStatus:V.apisCallStatus.FetchPageSettings})),T=(0,i.Mz)(d,V=>V.information),e=((0,i.Mz)(d,V=>({information:V.information,apiCallStatus:V.apisCallStatus.FetchInfo})),(0,i.Mz)(d,V=>V.apisCallStatus)),O=(0,i.Mz)(d,V=>({forwardingHistory:V.forwardingHistory,apiCallStatus:V.apisCallStatus.FetchForwardingHistory})),f=(0,i.Mz)(d,V=>({listPayments:V.listPayments,apiCallStatus:V.apisCallStatus.FetchPayments})),u=(0,i.Mz)(d,V=>({fees:V.fees,apiCallStatus:V.apisCallStatus.FetchFees})),L=(0,i.Mz)(d,V=>({peers:V.peers,apiCallStatus:V.apisCallStatus.FetchPeers})),C=(0,i.Mz)(d,V=>({transactions:V.transactions,apiCallStatus:V.apisCallStatus.FetchTransactions})),B=(0,i.Mz)(d,V=>({listInvoices:V.listInvoices,apiCallStatus:V.apisCallStatus.FetchInvoices})),A=(0,i.Mz)(d,V=>({channels:V.channels,channelsSummary:V.channelsSummary,lightningBalance:V.lightningBalance,apiCallStatus:V.apisCallStatus.FetchAllChannels})),le=((0,i.Mz)(d,V=>({channelsSummary:V.channelsSummary,pendingChannels:V.pendingChannels,closedChannels:V.closedChannels,apiCallStatus:V.apisCallStatus.FetchAllChannels})),(0,i.Mz)(d,V=>({pendingChannels:V.pendingChannels,pendingChannelsSummary:V.pendingChannelsSummary,apiCallStatus:V.apisCallStatus.FetchPendingChannels}))),Ce=(0,i.Mz)(d,V=>({closedChannels:V.closedChannels,apiCallStatus:V.apisCallStatus.FetchClosedChannels})),Ae=(0,i.Mz)(d,V=>({blockchainBalance:V.blockchainBalance,apiCallStatus:V.apisCallStatus.FetchBalanceBlockchain})),W=((0,i.Mz)(d,V=>({lightningBalance:V.lightningBalance,apiCallStatus:V.apisCallStatus.FetchAllChannels})),(0,i.Mz)(d,V=>({utxos:V.utxos,apiCallStatus:V.apisCallStatus.FetchUTXOs}))),G=(0,i.Mz)(d,V=>({networkInfo:V.networkInfo,apiCallStatus:V.apisCallStatus.FetchNetwork})),re=(0,i.Mz)(d,V=>({allLightningTransactions:V.allLightningTransactions,apiCallStatus:V.apisCallStatus.FetchLightningTransactions})),xe=(0,i.Mz)(d,V=>({channels:V.channels,pendingChannels:V.pendingChannels,closedChannels:V.closedChannels})),Ee=(0,i.Mz)(d,V=>({information:V.information,apiCallStatus:V.apisCallStatus.FetchInfo}))},6391(Zt,pe,l){"use strict";l.d(pe,{H:()=>Qn});var i=l(1585),d=l(5383),v=l(1413),T=l(6977),w=l(4416),e=l(3536),O=l(2615),f=l(3664),u=l(8570),L=l(2571),C=l(5416),B=l(9640),A=l(2200),Pe=l(60),le=l(8834),Ce=l(5596),Ae=l(9454),j=l(2629),W=l(1997),G=l(9183),re=l(2920),xe=l(6038),Ee=l(455),V=l(8288),ce=l(9157),be=l(9587);const ne=["scrollContainer"],J=h=>({"display-none":h}),De=h=>({"xs-scroll-y":h}),Re=h=>({"h-50":h}),Xe=()=>[],_e=h=>({"mr-0":h});function he(h,jt){if(1&h&&f.nrm(0,"qr-code",33),2&h){const Ue=f.XpG();f.Y8G("value",null==Ue.invoice?null:Ue.invoice.payment_request)("size",Ue.qrWidth)}}function Dt(h,jt){1&h&&(f.j41(0,"span",34),f.EFF(1,"N/A"),f.k0s())}function lt(h,jt){if(1&h&&f.nrm(0,"qr-code",33),2&h){const Ue=f.XpG();f.Y8G("value",null==Ue.invoice?null:Ue.invoice.payment_request)("size",Ue.qrWidth)}}function Le(h,jt){1&h&&(f.j41(0,"span",35),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function te(h,jt){1&h&&f.nrm(0,"mat-divider",24),2&h&&f.Y8G("inset",!0)}function ie(h,jt){1&h&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function P(h,jt){1&h&&f.nrm(0,"span",41)}function F(h,jt){if(1&h&&(f.j41(0,"div",37)(1,"div",38)(2,"span",39),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,P,1,0,"span",40),f.k0s()()),2&h){const Ue=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,null==Ue.invoice?null:Ue.invoice.amt_paid_sat)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,Xe).constructor(35))}}function ve(h,jt){if(1&h&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&h){const Ue=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,null==Ue.invoice?null:Ue.invoice.amt_paid_sat)," Sats")}}function H(h,jt){if(1&h&&(f.qex(0),f.DNE(1,F,6,5,"div",36)(2,ve,3,3,"div",23),f.bVm()),2&h){const Ue=f.XpG();f.R7$(),f.Y8G("ngIf",Ue.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!Ue.flgInvoicePaid)}}function $(h,jt){1&h&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function Ke(h,jt){1&h&&f.nrm(0,"mat-spinner",43),2&h&&f.Y8G("diameter",20)}function Vt(h,jt){if(1&h&&(f.qex(0),f.DNE(1,$,2,0,"span",23)(2,Ke,1,1,"mat-spinner",42),f.bVm()),2&h){const Ue=f.XpG();f.R7$(),f.Y8G("ngIf","OPEN"!==(null==Ue.invoice?null:Ue.invoice.state)||!Ue.flgVersionCompatible),f.R7$(),f.Y8G("ngIf","OPEN"===(null==Ue.invoice?null:Ue.invoice.state)&&Ue.flgVersionCompatible)}}function St(h,jt){1&h&&f.eu8(0)}function ot(h,jt){if(1&h&&(f.j41(0,"div"),f.DNE(1,St,1,0,"ng-container",44),f.k0s()),2&h){f.XpG();const Ue=f.sdS(79);f.R7$(),f.Y8G("ngTemplateOutlet",Ue)}}function nt(h,jt){if(1&h){const Ue=f.RV6();f.j41(0,"div",45)(1,"button",46),f.bIt("click",function(){O.eBV(Ue);const pt=f.XpG();return O.Njj(pt.onScrollDown())}),f.j41(2,"mat-icon",47),f.EFF(3,"arrow_downward"),f.k0s()()()}}function ht(h,jt){1&h&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function oe(h,jt){1&h&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function Ye(h,jt){if(1&h){const Ue=f.RV6();f.j41(0,"button",48),f.bIt("copied",function(pt){O.eBV(Ue);const Pt=f.XpG();return O.Njj(Pt.onCopyPayment(pt))}),f.EFF(1),f.k0s()}if(2&h){const Ue=f.XpG();f.Y8G("payload",null==Ue.invoice?null:Ue.invoice.payment_request),f.R7$(),f.JRh(Ue.screenSize===Ue.screenSizeEnum.XS?"Copy Payment":"Copy Payment Request")}}function fe(h,jt){if(1&h){const Ue=f.RV6();f.j41(0,"button",49),f.bIt("click",function(){O.eBV(Ue);const pt=f.XpG();return O.Njj(pt.onClose())}),f.EFF(1,"OK"),f.k0s()}}function Qe(h,jt){if(1&h&&f.nrm(0,"span",64),2&h){const Ue=f.XpG(4);f.Y8G("ngClass",f.eq3(1,_e,Ue.screenSize===Ue.screenSizeEnum.XS))}}function gt(h,jt){if(1&h&&f.nrm(0,"span",65),2&h){const Ue=f.XpG(4);f.Y8G("ngClass",f.eq3(1,_e,Ue.screenSize===Ue.screenSizeEnum.XS))}}function Gt(h,jt){if(1&h&&f.nrm(0,"span",66),2&h){const Ue=f.XpG(4);f.Y8G("ngClass",f.eq3(1,_e,Ue.screenSize===Ue.screenSizeEnum.XS))}}function rt(h,jt){if(1&h&&(f.j41(0,"div",53)(1,"div",58)(2,"span",59),f.DNE(3,Qe,1,3,"span",60)(4,gt,1,3,"span",61)(5,Gt,1,3,"span",62),f.EFF(6),f.k0s(),f.j41(7,"span",63),f.EFF(8),f.nI1(9,"number"),f.k0s()(),f.nrm(10,"mat-divider",24),f.k0s()),2&h){const Ue=jt.$implicit,wt=f.XpG(3);f.R7$(3),f.Y8G("ngIf","SETTLED"===Ue.state),f.R7$(),f.Y8G("ngIf","ACCEPTED"===Ue.state),f.R7$(),f.Y8G("ngIf","CANCELED"===Ue.state),f.R7$(),f.SpI(" ",Ue.chan_id," "),f.R7$(2),f.JRh(f.i5U(9,6,+Ue.amt_msat/1e3||0,wt.getDecimalFormat(Ue))),f.R7$(2),f.Y8G("inset",!0)}}function cn(h,jt){if(1&h){const Ue=f.RV6();f.j41(0,"div",19)(1,"mat-expansion-panel",51),f.bIt("opened",function(){O.eBV(Ue);const pt=f.XpG(2);return O.Njj(pt.flgOpened=!0)})("closed",function(){O.eBV(Ue);const pt=f.XpG(2);return O.Njj(pt.onExpansionClosed())}),f.j41(2,"mat-expansion-panel-header")(3,"mat-panel-title")(4,"h4",52),f.EFF(5,"HTLCs"),f.k0s()()(),f.j41(6,"div",53)(7,"div",54)(8,"span",55),f.EFF(9,"Channel ID"),f.k0s(),f.j41(10,"span",56),f.EFF(11,"Amount (Sats)"),f.k0s()(),f.nrm(12,"mat-divider",24),f.DNE(13,rt,11,9,"div",57),f.k0s()()()}if(2&h){const Ue=f.XpG(2);f.R7$(12),f.Y8G("inset",!0),f.R7$(),f.Y8G("ngForOf",null==Ue.invoice?null:Ue.invoice.htlcs)}}function Ft(h,jt){1&h&&f.nrm(0,"mat-divider",24),2&h&&f.Y8G("inset",!0)}function Sn(h,jt){if(1&h&&(f.nrm(0,"mat-divider",24),f.j41(1,"div",19)(2,"div",25)(3,"h4",21),f.EFF(4,"Preimage"),f.k0s(),f.j41(5,"span",26),f.EFF(6),f.k0s()()(),f.nrm(7,"mat-divider",24),f.j41(8,"div",19)(9,"div",20)(10,"h4",21),f.EFF(11,"State"),f.k0s(),f.j41(12,"span",26),f.EFF(13),f.k0s()(),f.j41(14,"div",20)(15,"h4",21),f.EFF(16,"Expiry"),f.k0s(),f.j41(17,"span",26),f.EFF(18),f.nI1(19,"date"),f.k0s()()(),f.nrm(20,"mat-divider",24),f.j41(21,"div",19)(22,"div",20)(23,"h4",21),f.EFF(24,"Private Routing Hints"),f.k0s(),f.j41(25,"span",26),f.EFF(26),f.k0s()(),f.j41(27,"div",20)(28,"h4",21),f.EFF(29,"AMP Invoice"),f.k0s(),f.j41(30,"span",26),f.EFF(31),f.k0s()()(),f.nrm(32,"mat-divider",24),f.DNE(33,cn,14,2,"div",50)(34,Ft,1,1,"mat-divider",17)),2&h){const Ue=f.XpG();f.Y8G("inset",!0),f.R7$(6),f.JRh((null==Ue.invoice?null:Ue.invoice.r_preimage)||"-"),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh(null==Ue.invoice?null:Ue.invoice.state),f.R7$(5),f.JRh(f.i5U(19,11,1e3*(+(null==Ue.invoice?null:Ue.invoice.creation_date)+ +(null==Ue.invoice?null:Ue.invoice.expiry)),"dd/MMM/y HH:mm")),f.R7$(2),f.Y8G("inset",!0),f.R7$(6),f.JRh(null!=Ue.invoice&&Ue.invoice.private?"Yes":"No"),f.R7$(5),f.JRh(null!=Ue.invoice&&Ue.invoice.is_amp?"Yes":"No"),f.R7$(),f.Y8G("inset",!0),f.R7$(),f.Y8G("ngIf",(null==Ue.invoice?null:Ue.invoice.htlcs)&&(null==Ue.invoice?null:Ue.invoice.htlcs.length)>0),f.R7$(),f.Y8G("ngIf",(null==Ue.invoice?null:Ue.invoice.htlcs)&&(null==Ue.invoice?null:Ue.invoice.htlcs.length)>0)}}let Qn=(()=>{var h;class jt{set container(wt){wt&&(this.scrollContainer=wt)}constructor(wt,pt,Pt,gn,ei,vi){this.dialogRef=wt,this.data=pt,this.logger=Pt,this.commonService=gn,this.snackBar=ei,this.store=vi,this.faReceipt=d.Mf0,this.showAdvanced=!1,this.newlyAdded=!1,this.invoice=null,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=w.f7,this.flgOpened=!1,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new v.B,new v.B,new v.B,new v.B,new v.B]}ngOnInit(){this.invoice=JSON.parse(JSON.stringify(this.data.invoice)),this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===w.f7.XS&&(this.qrWidth=220),this.store.select(e.pI).pipe((0,T.Q)(this.unSubs[0])).subscribe(pt=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(pt.version,"0.11.0")});const wt=JSON.parse(JSON.stringify(this.invoice));this.store.select(e.rN).pipe((0,T.Q)(this.unSubs[1])).subscribe(pt=>{const Pt=this.invoice?.state,ei=(pt.listInvoices.invoices||[]).find(vi=>vi.r_hash===wt.r_hash)||null;ei&&(this.invoice=ei),Pt!==this.invoice?.state&&"SETTLED"===this.invoice?.state&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(pt)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced,this.flgOpened=!1}onScrollDown(){this.scrollContainer.nativeElement.scrollTop=this.scrollContainer.nativeElement.scrollTop+60}onExpansionClosed(){this.flgOpened=!1,this.scrollContainer.nativeElement.scrollTop=0}onCopyPayment(wt){this.snackBar.open("Payment request copied."),this.logger.info("Copied Text: "+wt)}getDecimalFormat(wt){return wt.amt_msat<1e3?"1.0-4":"1.0-0"}ngOnDestroy(){this.unSubs.forEach(wt=>{wt.next(null),wt.complete()})}static#e=h=()=>(this.\u0275fac=function(pt){return new(pt||jt)(f.rXU(i.CP),f.rXU(i.Vh),f.rXU(u.gP),f.rXU(L.h),f.rXU(C.UG),f.rXU(B.il))},this.\u0275cmp=f.VBU({type:jt,selectors:[["rtl-invoice-information"]],viewQuery:function(pt,Pt){if(1&pt&&f.GBs(ne,5),2&pt){let gn;f.mGM(gn=f.lsd())&&(Pt.container=gn.first)}},standalone:!1,decls:80,vars:49,consts:[["scrollContainer",""],["hideAdvancedText",""],["advancedBlock",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxLayout","column","fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],[3,"ngClass"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"my-1",3,"inset"],["fxFlex","100"],[1,"overflow-wrap","foreground-secondary-text"],["fxLayout","row","fxLayoutAlign","start end","class","btn-sticky-container padding-gap-x-large",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"font-size-300"],[1,"font-size-120"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],[4,"ngTemplateOutlet"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll Down","fxLayoutAlign","center center",3,"click"],["fxLayoutAlign","center center"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"flat-expansion-panel",3,"opened","closed"],["fxLayoutAlign","start center","fxFlex","100",1,"font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100",1,"mt-minus-1"],["fxFlex","60",1,"foreground-secondary-text","font-bold-500"],["fxFlex","40",1,"foreground-secondary-text","font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100"],["fxFlex","60",1,"foreground-secondary-text"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Cancelled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["fxFlex","40",1,"foreground-secondary-text"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Cancelled","matTooltipPosition","right",1,"dot","red",3,"ngClass"]],template:function(pt,Pt){if(1&pt){const gn=f.RV6();f.j41(0,"div",3)(1,"div",4),f.DNE(2,he,1,2,"qr-code",5)(3,Dt,2,0,"span",6),f.k0s(),f.j41(4,"div",7)(5,"mat-card-header",8)(6,"div",9),f.nrm(7,"fa-icon",10),f.j41(8,"span",11),f.EFF(9),f.k0s()(),f.j41(10,"button",12),f.bIt("click",function(){return O.eBV(gn),O.Njj(Pt.onClose())}),f.EFF(11,"X"),f.k0s()(),f.j41(12,"mat-card-content",13)(13,"div",14)(14,"div",15),f.DNE(15,lt,1,2,"qr-code",5)(16,Le,2,0,"span",16),f.k0s(),f.DNE(17,te,1,1,"mat-divider",17),f.j41(18,"div",18,0)(20,"div",19)(21,"div",20)(22,"h4",21),f.EFF(23),f.k0s(),f.j41(24,"span",22),f.EFF(25),f.nI1(26,"number"),f.DNE(27,ie,2,0,"ng-container",23),f.k0s()(),f.j41(28,"div",20)(29,"h4",21),f.EFF(30,"Amount Settled"),f.k0s(),f.j41(31,"span",22),f.DNE(32,H,3,2,"ng-container",23)(33,Vt,3,2,"ng-container",23),f.k0s()()(),f.nrm(34,"mat-divider",24),f.j41(35,"div",19)(36,"div",20)(37,"h4",21),f.EFF(38,"Date Created"),f.k0s(),f.j41(39,"span",22),f.EFF(40),f.nI1(41,"date"),f.k0s()(),f.j41(42,"div",20)(43,"h4",21),f.EFF(44,"Date Settled"),f.k0s(),f.j41(45,"span",22),f.EFF(46),f.nI1(47,"date"),f.k0s()()(),f.nrm(48,"mat-divider",24),f.j41(49,"div",19)(50,"div",25)(51,"h4",21),f.EFF(52,"Memo"),f.k0s(),f.j41(53,"span",22),f.EFF(54),f.k0s()()(),f.nrm(55,"mat-divider",24),f.j41(56,"div",19)(57,"div",25)(58,"h4",21),f.EFF(59,"Payment Request"),f.k0s(),f.j41(60,"span",26),f.EFF(61),f.k0s()()(),f.nrm(62,"mat-divider",24),f.j41(63,"div",19)(64,"div",25)(65,"h4",21),f.EFF(66,"Payment Hash"),f.k0s(),f.j41(67,"span",26),f.EFF(68),f.k0s()()(),f.DNE(69,ot,2,1,"div",23),f.k0s()()(),f.DNE(70,nt,4,0,"div",27),f.j41(71,"div",28)(72,"button",29),f.bIt("click",function(){return O.eBV(gn),O.Njj(Pt.onShowAdvanced())}),f.DNE(73,ht,2,0,"p",30)(74,oe,2,0,"ng-template",null,1,f.C5r),f.k0s(),f.DNE(76,Ye,2,2,"button",31)(77,fe,2,0,"button",32),f.k0s()()(),f.DNE(78,Sn,35,14,"ng-template",null,2,f.C5r)}if(2&pt){const gn=f.sdS(75);f.R7$(),f.Y8G("fxLayoutAlign",null!=Pt.invoice&&Pt.invoice.payment_request&&""!==(null==Pt.invoice?null:Pt.invoice.payment_request)?"center start":"center center")("ngClass",f.eq3(41,J,Pt.screenSize===Pt.screenSizeEnum.XS||Pt.screenSize===Pt.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Pt.invoice?null:Pt.invoice.payment_request)&&""!==(null==Pt.invoice?null:Pt.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=Pt.invoice&&Pt.invoice.payment_request)||""===(null==Pt.invoice?null:Pt.invoice.payment_request)),f.R7$(4),f.Y8G("icon",Pt.faReceipt),f.R7$(2),f.JRh(Pt.screenSize===Pt.screenSizeEnum.XS?Pt.newlyAdded?"Created":"Invoice":Pt.newlyAdded?"Invoice Created":"Invoice Information"),f.R7$(3),f.Y8G("ngClass",f.eq3(43,De,Pt.screenSize===Pt.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=Pt.invoice&&Pt.invoice.payment_request&&""!==(null==Pt.invoice?null:Pt.invoice.payment_request)?"center start":"center center")("ngClass",f.eq3(45,J,Pt.screenSize!==Pt.screenSizeEnum.XS&&Pt.screenSize!==Pt.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Pt.invoice?null:Pt.invoice.payment_request)&&""!==(null==Pt.invoice?null:Pt.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=Pt.invoice&&Pt.invoice.payment_request)||""===(null==Pt.invoice?null:Pt.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",Pt.screenSize===Pt.screenSizeEnum.XS||Pt.screenSize===Pt.screenSizeEnum.SM),f.R7$(),f.Y8G("ngClass",f.eq3(47,Re,(null==Pt.invoice?null:Pt.invoice.htlcs)&&(null==Pt.invoice?null:Pt.invoice.htlcs.length)>0&&Pt.showAdvanced)),f.R7$(5),f.JRh(Pt.screenSize===Pt.screenSizeEnum.XS?"Amount":"Amount Requested"),f.R7$(2),f.SpI("",f.bMT(26,33,(null==Pt.invoice?null:Pt.invoice.value)||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=Pt.invoice&&Pt.invoice.value)||"0"===(null==Pt.invoice?null:Pt.invoice.value)),f.R7$(5),f.Y8G("ngIf",(null==Pt.invoice?null:Pt.invoice.amt_paid_sat)&&"OPEN"!==(null==Pt.invoice?null:Pt.invoice.state)),f.R7$(),f.Y8G("ngIf",!(null!=Pt.invoice&&Pt.invoice.amt_paid_sat)||"0"===(null==Pt.invoice?null:Pt.invoice.amt_paid_sat)),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh(f.i5U(41,35,1e3*(null==Pt.invoice?null:Pt.invoice.creation_date),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(0!=+(null==Pt.invoice?null:Pt.invoice.settle_date)?f.i5U(47,38,1e3*+(null==Pt.invoice?null:Pt.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),f.R7$(2),f.Y8G("inset",!0),f.R7$(6),f.JRh(null==Pt.invoice?null:Pt.invoice.memo),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh((null==Pt.invoice?null:Pt.invoice.payment_request)||"N/A"),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh((null==Pt.invoice?null:Pt.invoice.r_hash)||""),f.R7$(),f.Y8G("ngIf",Pt.showAdvanced),f.R7$(),f.Y8G("ngIf",(null==Pt.invoice?null:Pt.invoice.htlcs)&&(null==Pt.invoice?null:Pt.invoice.htlcs.length)>0&&Pt.showAdvanced&&Pt.flgOpened),f.R7$(3),f.Y8G("ngIf",!Pt.showAdvanced)("ngIfElse",gn),f.R7$(3),f.Y8G("ngIf",(null==Pt.invoice?null:Pt.invoice.payment_request)&&""!==(null==Pt.invoice?null:Pt.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=Pt.invoice&&Pt.invoice.payment_request)||""===(null==Pt.invoice?null:Pt.invoice.payment_request))}},dependencies:[A.YU,A.Sq,A.bT,A.T3,Pe.aY,le.$z,le.$0,Ce.m2,Ce.MM,Ae.GK,Ae.Z2,Ae.WN,j.An,W.q,G.LG,re.DJ,re.sA,re.UI,xe.PW,Ee.oV,V.Um,ce.U,be.N,A.QX,A.vh],encapsulation:2}))}return h(),jt})()},1001(Zt,pe,l){"use strict";l.d(pe,{C:()=>d,q:()=>v});var i=l(1514);const d=[(0,i.hZ)("opacityAnimation",[(0,i.kY)(":enter",[(0,i.iF)({opacity:0}),(0,i.i0)("1000ms ease-in",(0,i.iF)({opacity:1}))]),(0,i.kY)(":leave",[(0,i.i0)("0ms",(0,i.iF)({opacity:0}))])])],v=[(0,i.hZ)("fadeIn",[(0,i.kY)("void => *",[]),(0,i.kY)("* => void",[]),(0,i.kY)("* => *",[(0,i.i0)(800,(0,i.i7)([(0,i.iF)({opacity:0,transform:"translateY(100%)"}),(0,i.iF)({opacity:1,transform:"translateY(0%)"})]))])])]},9881(Zt,pe,l){"use strict";l.d(pe,{E:()=>d});var i=l(1514);const d=(0,i.hZ)("routeAnimation",[(0,i.kY)("* => *",[(0,i.P)(":enter, :leave",(0,i.iF)({position:"fixed",width:"100%"}),{optional:!0}),(0,i.Os)([(0,i.P)(":enter",[(0,i.iF)({transform:"translateX(100%)"}),(0,i.i0)("1000ms ease-in-out",(0,i.iF)({transform:"translateX(0%)"}))],{optional:!0}),(0,i.P)(":leave",[(0,i.iF)({transform:"translateX(0%)"}),(0,i.i0)("1000ms ease-in-out",(0,i.iF)({transform:"translateX(-100%)"}))],{optional:!0})])])])},6949(Zt,pe,l){"use strict";l.d(pe,{k:()=>d});var i=l(1514);const d=[(0,i.hZ)("sliderAnimation",[(0,i.wk)("*",(0,i.iF)({transform:"translateX(0)"})),(0,i.kY)("void => backward",[(0,i.iF)({transform:"translateX(-100%"}),(0,i.i0)("800ms")]),(0,i.kY)("backward => void",[(0,i.i0)("0ms",(0,i.iF)({transform:"translateX(100%)"}))]),(0,i.kY)("void => forward",[(0,i.iF)({transform:"translateX(100%"}),(0,i.i0)("800ms")]),(0,i.kY)("forward => void",[(0,i.i0)("0ms",(0,i.iF)({transform:"translateX(-100%)"}))])])]},2462(Zt,pe,l){"use strict";l.d(pe,{f:()=>C});var i=l(1585),d=l(3664),v=l(8570),T=l(2200),w=l(8834),e=l(5596),O=l(1997),f=l(2920),u=l(9587);function L(B,A){if(1&B&&(d.j41(0,"p",14),d.EFF(1),d.k0s()),2&B){const Pe=d.XpG();d.R7$(),d.JRh(Pe.data.titleMessage)}}let C=(()=>{var B;class A{constructor(le,Ce,Ae){this.dialogRef=le,this.data=Ce,this.logger=Ae,this.errorMessage=""}ngOnInit(){this.errorMessage=this.data.message&&this.data.message.message&&"object"==typeof this.data.message.message?JSON.stringify(this.data.message.message):this.data.message&&this.data.message.message?this.data.message.message:"",!this.data.message&&!this.data.titleMessage&&!this.data.message&&(this.data.titleMessage="Please Check Server Connection"),this.logger.info(this.data.message)}onClose(){this.dialogRef.close(!1)}static#e=B=()=>(this.\u0275fac=function(Ce){return new(Ce||A)(d.rXU(i.CP),d.rXU(i.Vh),d.rXU(v.gP))},this.\u0275cmp=d.VBU({type:A,selectors:[["rtl-error-message"]],standalone:!1,decls:29,vars:6,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large","error-alert-block"],["fxLayout","column"],["fxLayoutAlign","start center","class","pb-1",4,"ngIf"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],[1,"word-break"],["fxLayout","row","fxLayoutAlign","end center"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close"],["fxLayoutAlign","start center",1,"pb-1"]],template:function(Ce,Ae){1&Ce&&(d.j41(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),d.EFF(5),d.k0s()(),d.j41(6,"button",5),d.bIt("click",function(){return Ae.onClose()}),d.EFF(7,"X"),d.k0s()(),d.j41(8,"mat-card-content",6)(9,"div",7),d.DNE(10,L,2,1,"p",8),d.j41(11,"h4",9),d.EFF(12,"Error Code"),d.k0s(),d.j41(13,"span"),d.EFF(14),d.k0s(),d.nrm(15,"mat-divider",10),d.j41(16,"h4",9),d.EFF(17,"Error Message"),d.k0s(),d.j41(18,"span",11),d.EFF(19),d.k0s(),d.nrm(20,"mat-divider",10),d.j41(21,"h4",9),d.EFF(22,"API URL"),d.k0s(),d.j41(23,"span",11),d.EFF(24),d.k0s(),d.nrm(25,"mat-divider",10),d.j41(26,"div",12)(27,"button",13),d.EFF(28,"OK"),d.k0s()()()()()()),2&Ce&&(d.R7$(5),d.JRh(Ae.data.alertTitle||"ERROR"),d.R7$(5),d.Y8G("ngIf",Ae.data.titleMessage),d.R7$(4),d.JRh(Ae.data.message.code),d.R7$(5),d.JRh(Ae.errorMessage),d.R7$(5),d.JRh(Ae.data.message.URL),d.R7$(3),d.Y8G("mat-dialog-close",!1))},dependencies:[T.bT,i.tx,w.$z,e.m2,e.MM,O.q,f.DJ,f.sA,f.UI,u.N],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]}))}return B(),A})()},1092(Zt,pe,l){"use strict";l.d(pe,{D:()=>Tt});var i=l(9417),d=l(1413),v=l(6977),T=l(1585),w=l(5383),e=l(1001),O=l(4416),f=l(3536),u=l(3664),L=l(2615),C=l(9640),B=l(4104),A=l(2200),Pe=l(8570),le=l(3694),Ce=l(2571),Ae=l(8834),j=l(5596),W=l(9454),G=l(2629),re=l(3746),xe=l(9588),Ee=l(7575),V=l(5951),ce=l(2920),be=l(6038),ne=l(450),J=l(455),De=l(6013),Re=l(9587),Xe=l(1997);const _e=At=>({"h-5":At});function he(At,we){1&At&&u.eu8(0)}function Dt(At,we){1&At&&u.eu8(0)}function lt(At,we){if(1&At&&(u.j41(0,"mat-expansion-panel",3)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",4),u.EFF(4),u.nI1(5,"number"),u.k0s()()(),u.DNE(6,Dt,1,0,"ng-container",2),u.k0s()),2&At){const ae=u.XpG(),Lt=u.sdS(4);u.Y8G("expanded",ae.panelExpanded)("ngClass",u.eq3(7,_e,!ae.flgShowPanel)),u.R7$(4),u.Lme("Quote for ",ae.termCaption," amount (",u.bMT(5,5,ae.quote.amount)," Sats)"),u.R7$(2),u.Y8G("ngTemplateOutlet",Lt)}}function Le(At,we){if(1&At&&(u.j41(0,"div",19)(1,"h4",8),u.EFF(2," Prepay Amount (Sats) "),u.j41(3,"mat-icon",20),u.EFF(4,"info_outline"),u.k0s()(),u.j41(5,"span",10),u.EFF(6),u.nI1(7,"number"),u.k0s()()),2&At){const ae=u.XpG(2);u.R7$(6),u.JRh(u.bMT(7,1,null==ae.quote?null:ae.quote.prepay_amt_sat))}}function te(At,we){1&At&&u.nrm(0,"mat-divider",13)}function ie(At,we){if(1&At&&(u.j41(0,"div",6)(1,"div",21)(2,"h4",8),u.EFF(3," Swap Server Node Pubkey "),u.j41(4,"mat-icon",22),u.EFF(5,"info_outline"),u.k0s()(),u.j41(6,"span",10),u.EFF(7),u.k0s()()()),2&At){const ae=u.XpG(2);u.R7$(7),u.JRh(null==ae.quote?null:ae.quote.swap_payment_dest)}}function P(At,we){if(1&At&&(u.j41(0,"div",5)(1,"div",6)(2,"div",7)(3,"h4",8),u.EFF(4," Swap Fee (Sats) "),u.j41(5,"mat-icon",9),u.EFF(6,"info_outline"),u.k0s()(),u.j41(7,"span",10),u.EFF(8),u.nI1(9,"number"),u.k0s()(),u.j41(10,"div",7)(11,"h4",8),u.EFF(12),u.j41(13,"mat-icon",11),u.EFF(14,"info_outline"),u.k0s()(),u.j41(15,"span",10),u.EFF(16),u.nI1(17,"number"),u.k0s()(),u.DNE(18,Le,8,3,"div",12),u.k0s(),u.nrm(19,"mat-divider",13),u.j41(20,"div",6)(21,"div",14)(22,"h4",8),u.EFF(23," Max Off-chain Swap Routing Fee (Sats) "),u.j41(24,"mat-icon",15),u.EFF(25,"info_outline"),u.k0s()(),u.j41(26,"span",10),u.EFF(27),u.nI1(28,"number"),u.k0s()(),u.j41(29,"div",14)(30,"h4",8),u.EFF(31," Max Off-chain Prepay Routing Fee (Sats) "),u.j41(32,"mat-icon",16),u.EFF(33,"info_outline"),u.k0s()(),u.j41(34,"span",10),u.EFF(35,"36"),u.k0s()()(),u.DNE(36,te,1,0,"mat-divider",17)(37,ie,8,1,"div",18),u.k0s()),2&At){const ae=u.XpG();u.R7$(2),u.Y8G("ngClass",null!=ae.quote&&ae.quote.prepay_amt_sat?"flex-30":"flex-50"),u.R7$(6),u.JRh(u.bMT(9,9,null==ae.quote?null:ae.quote.swap_fee_sat)),u.R7$(2),u.Y8G("ngClass",null!=ae.quote&&ae.quote.prepay_amt_sat?"flex-35":"flex-50"),u.R7$(2),u.SpI(" ",null!=ae.quote&&ae.quote.htlc_sweep_fee_sat?"HTLC Sweep Fee (Sats)":null!=ae.quote&&ae.quote.htlc_publish_fee_sat?"HTLC Publish Fee (Sats)":""," "),u.R7$(4),u.JRh(u.bMT(17,11,null!=ae.quote&&ae.quote.htlc_sweep_fee_sat?ae.quote.htlc_sweep_fee_sat:null!=ae.quote&&ae.quote.htlc_publish_fee_sat?ae.quote.htlc_publish_fee_sat:0)),u.R7$(2),u.Y8G("ngIf",null==ae.quote?null:ae.quote.prepay_amt_sat),u.R7$(9),u.JRh(u.bMT(28,13,(null==ae.quote?null:ae.quote.amount)*((null!=ae.quote&&ae.quote.off_chain_swap_routing_fee_percentage?null==ae.quote?null:ae.quote.off_chain_swap_routing_fee_percentage:2)/100))),u.R7$(9),u.Y8G("ngIf",""!==(null==ae.quote?null:ae.quote.swap_payment_dest)),u.R7$(),u.Y8G("ngIf",""!==(null==ae.quote?null:ae.quote.swap_payment_dest))}}let F=(()=>{var At;class we{constructor(){this.quote={},this.termCaption="",this.showPanel=!0,this.panelExpanded=!1,this.flgShowPanel=!1}ngOnInit(){setTimeout(()=>{this.flgShowPanel=!0},1200)}static#e=At=()=>(this.\u0275fac=function(Ht){return new(Ht||we)},this.\u0275cmp=u.VBU({type:we,selectors:[["rtl-loop-quote"]],inputs:{quote:"quote",termCaption:"termCaption",showPanel:"showPanel",panelExpanded:"panelExpanded"},standalone:!1,decls:5,vars:1,consts:[["informationBlock",""],["quoteDetailsBlock",""],[4,"ngTemplateOutlet"],["fxFlex","100",1,"flat-expansion-panel","mb-1",3,"expanded","ngClass"],["fxLayoutAlign","start center","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],[3,"ngClass"],["fxLayoutAlign","start center",1,"font-bold-500"],["matTooltip","Estimated fee charged by the loop server for the swap",1,"info-icon","info-icon-text"],[1,"foreground-secondary-text"],["matTooltip","An estimate of the on-chain fee that needs to be paid to sweep the HTLC",1,"info-icon","info-icon-text"],["fxFlex","35",4,"ngIf"],[1,"w-100","my-1"],["fxFlex","50"],["matTooltip","Maximum off-chain fee that may be paid for routing the payment amount to the server",1,"info-icon","info-icon-text"],["matTooltip","Maximum off-chain fee that may be paid for routing the pre-payment amount to the server","matTooltipPosition","before",1,"info-icon","info-icon-text"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxFlex","35"],["matTooltip","The part of the swap fee that is requested as a prepayment","matTooltipPosition","before",1,"info-icon","info-icon-text"],["fxFlex","100"],["matTooltip","The node pubkey, where the swap payments will be sent",1,"info-icon","info-icon-text"]],template:function(Ht,_n){if(1&Ht&&u.DNE(0,he,1,0,"ng-container",2)(1,lt,7,9,"ng-template",null,0,u.C5r)(3,P,38,15,"ng-template",null,1,u.C5r),2&Ht){const fi=u.sdS(2),bi=u.sdS(4);u.Y8G("ngTemplateOutlet",_n.showPanel?fi:bi)}},dependencies:[A.YU,A.bT,A.T3,W.GK,W.Z2,W.WN,G.An,Xe.q,ce.DJ,ce.sA,ce.UI,be.PW,J.oV,A.QX],encapsulation:2}))}return At(),we})();function ve(At,we){1&At&&u.eu8(0)}function H(At,we){if(1&At&&(u.j41(0,"div",3)(1,"span",4),u.EFF(2),u.k0s()()),2&At){const ae=u.XpG();u.R7$(2),u.JRh(null!=ae.loopStatus&&ae.loopStatus.error?null==ae.loopStatus?null:ae.loopStatus.error:"Unknown Error.")}}function $(At,we){if(1&At&&(u.j41(0,"div",3)(1,"div",5)(2,"div",6)(3,"h4",7),u.EFF(4,"ID"),u.k0s(),u.j41(5,"span",4),u.EFF(6),u.k0s()()(),u.nrm(7,"mat-divider",8),u.j41(8,"div",5)(9,"div",6)(10,"h4",7),u.EFF(11,"HTLC Address"),u.k0s(),u.j41(12,"span",4),u.EFF(13),u.k0s()()()()),2&At){const ae=u.XpG();u.R7$(6),u.JRh(null==ae.loopStatus?null:ae.loopStatus.id_bytes),u.R7$(7),u.JRh(null==ae.loopStatus?null:ae.loopStatus.htlc_address)}}let Ke=(()=>{var At;class we{constructor(){}static#e=At=()=>(this.\u0275fac=function(Ht){return new(Ht||we)},this.\u0275cmp=u.VBU({type:we,selectors:[["rtl-loop-status"]],inputs:{loopStatus:"loopStatus"},standalone:!1,decls:5,vars:1,consts:[["loopFailedBlock",""],["loopSuccessfulBlock",""],[4,"ngTemplateOutlet"],["fxLayout","column"],[1,"foreground-secondary-text"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"]],template:function(Ht,_n){if(1&Ht&&u.DNE(0,ve,1,0,"ng-container",2)(1,H,3,1,"ng-template",null,0,u.C5r)(3,$,14,2,"ng-template",null,1,u.C5r),2&Ht){const fi=u.sdS(2),bi=u.sdS(4);u.Y8G("ngTemplateOutlet",null!=_n.loopStatus&&_n.loopStatus.error?fi:bi)}},dependencies:[A.T3,Xe.q,ce.DJ,ce.sA,ce.UI],encapsulation:2}))}return At(),we})();var Vt=l(6949);const St=(At,we)=>({"small-svg":At,"large-svg":we});function ot(At,we){1&At&&u.eu8(0)}function nt(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",7)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),u.nrm(8,"circle",12)(9,"path",13),u.k0s(),u.j41(10,"g",14),u.nrm(11,"ellipse",15)(12,"ellipse",16)(13,"rect",17)(14,"rect",18)(15,"rect",19)(16,"rect",20)(17,"rect",21)(18,"rect",22)(19,"rect",23)(20,"rect",24)(21,"rect",25)(22,"rect",26)(23,"rect",27)(24,"rect",28)(25,"rect",29),u.k0s()()()()(),L.joV(),u.j41(26,"div",30)(27,"mat-card-title"),u.EFF(28,"Loop In explained."),u.k0s()(),u.j41(29,"div",31)(30,"mat-card-subtitle",32),u.EFF(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,St,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}function ht(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",33)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"defs")(5,"linearGradient",34),u.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),u.k0s()(),u.j41(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40),u.nrm(13,"rect",41)(14,"rect",42)(15,"rect",43)(16,"circle",44)(17,"rect",45)(18,"rect",46)(19,"circle",47)(20,"rect",48)(21,"rect",49)(22,"rect",50)(23,"rect",51)(24,"rect",52)(25,"circle",53)(26,"circle",54)(27,"circle",55),u.k0s(),u.j41(28,"g",56)(29,"g",57)(30,"g",58),u.nrm(31,"path",59)(32,"rect",60)(33,"polygon",61),u.j41(34,"g",62),u.nrm(35,"path",63),u.k0s(),u.nrm(36,"rect",64)(37,"rect",65)(38,"rect",66)(39,"rect",67)(40,"rect",68)(41,"rect",69)(42,"rect",70)(43,"path",71)(44,"path",72),u.k0s(),u.j41(45,"g",73),u.nrm(46,"path",74)(47,"path",75)(48,"path",76)(49,"path",77)(50,"path",78)(51,"path",79)(52,"path",80)(53,"path",81)(54,"path",82)(55,"path",83)(56,"path",84)(57,"circle",85)(58,"circle",86),u.k0s(),u.nrm(59,"path",87),u.k0s()()()()()(),L.joV(),u.j41(60,"div",30)(61,"mat-card-title"),u.EFF(62,"Step 1: Deciding to Loop In"),u.k0s()(),u.j41(63,"div",31)(64,"mat-card-subtitle",32),u.EFF(65," Your outgoing capacity is depleted and you want to regain it without opening new channels. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,St,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}function oe(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",88)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"defs")(5,"linearGradient",89),u.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),u.k0s()(),u.j41(9,"g",90)(10,"g",91)(11,"g",92)(12,"g",93)(13,"g",94),u.nrm(14,"circle",95)(15,"path",96),u.j41(16,"g",97),u.nrm(17,"polygon",98)(18,"polygon",99)(19,"path",100),u.k0s(),u.j41(20,"g",101),u.nrm(21,"polygon",102)(22,"path",103)(23,"rect",104)(24,"path",105)(25,"rect",106)(26,"rect",107)(27,"rect",108)(28,"rect",109)(29,"circle",110)(30,"path",111),u.j41(31,"g",112)(32,"g",113),u.nrm(33,"g",114),u.k0s(),u.nrm(34,"g",115),u.k0s()()(),u.j41(35,"g",116)(36,"g",40),u.nrm(37,"rect",117)(38,"rect",42)(39,"rect",43)(40,"circle",118)(41,"rect",45)(42,"rect",46)(43,"circle",119)(44,"rect",48)(45,"rect",49)(46,"rect",50)(47,"rect",51)(48,"rect",52)(49,"circle",120)(50,"circle",54)(51,"circle",55)(52,"circle",121),u.k0s(),u.j41(53,"g",56)(54,"g",57)(55,"g",58),u.nrm(56,"path",59)(57,"rect",60)(58,"polygon",61),u.j41(59,"g",122),u.nrm(60,"path",63),u.k0s(),u.nrm(61,"rect",123)(62,"rect",124)(63,"rect",125)(64,"rect",126)(65,"rect",127)(66,"rect",128)(67,"rect",129)(68,"path",130)(69,"path",72),u.k0s(),u.j41(70,"g",73),u.nrm(71,"path",131)(72,"path",132)(73,"path",133)(74,"path",134)(75,"path",135)(76,"path",136)(77,"path",80)(78,"path",81)(79,"path",137)(80,"path",83)(81,"path",138)(82,"circle",85)(83,"circle",86),u.k0s(),u.nrm(84,"path",139),u.k0s()()()(),u.nrm(85,"path",140)(86,"path",141),u.k0s()()()(),L.joV(),u.j41(87,"div",30)(88,"mat-card-title"),u.EFF(89,"Step 2: Send payment out"),u.k0s()(),u.j41(90,"div",31)(91,"mat-card-subtitle",32),u.EFF(92," Your node sends funds on-chain to loop server to be swapped with off-chain liquidity. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,St,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}function Ye(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",142)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"g",90)(5,"g",143)(6,"g",144)(7,"g")(8,"g",145)(9,"g",146),u.nrm(10,"circle",12)(11,"path",147),u.k0s(),u.j41(12,"g",14),u.nrm(13,"ellipse",148)(14,"ellipse",16)(15,"rect",17)(16,"rect",18)(17,"rect",19)(18,"rect",20)(19,"rect",21)(20,"rect",22)(21,"rect",23)(22,"rect",24)(23,"rect",25)(24,"rect",26)(25,"rect",27)(26,"rect",28)(27,"rect",29),u.k0s()(),u.j41(28,"g",149),u.nrm(29,"polygon",150)(30,"polygon",99)(31,"path",151),u.k0s(),u.j41(32,"g",152),u.nrm(33,"polygon",102)(34,"path",103)(35,"rect",104)(36,"path",105)(37,"rect",106)(38,"rect",107)(39,"rect",108)(40,"rect",109)(41,"circle",110)(42,"path",111),u.j41(43,"g",112)(44,"g",113),u.nrm(45,"g",114),u.k0s(),u.nrm(46,"g",115),u.k0s()()(),u.nrm(47,"path",153),u.k0s()()()(),L.joV(),u.j41(48,"div",30)(49,"mat-card-title"),u.EFF(50,"Step 3: Recieve Funds Off-chain"),u.k0s()(),u.j41(51,"div",31)(52,"mat-card-subtitle",32),u.EFF(53," Loop server sends equivalent funds off-chain to your node by making a lightning payment to you. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,St,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}function fe(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",154)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"defs")(5,"linearGradient",34),u.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),u.k0s()(),u.j41(9,"g",90)(10,"g",155)(11,"g",156)(12,"g",157)(13,"g",158)(14,"g",40),u.nrm(15,"rect",159)(16,"rect",160)(17,"rect",161)(18,"circle",162)(19,"rect",163)(20,"rect",164)(21,"circle",165)(22,"rect",166)(23,"rect",167)(24,"rect",168)(25,"rect",169)(26,"circle",170)(27,"circle",171),u.k0s(),u.j41(28,"g",172),u.nrm(29,"path",173)(30,"rect",174)(31,"polygon",175)(32,"circle",176)(33,"path",177)(34,"rect",178)(35,"rect",179)(36,"rect",180)(37,"rect",181)(38,"rect",182)(39,"rect",183)(40,"rect",184)(41,"path",185)(42,"path",186),u.k0s(),u.nrm(43,"path",187),u.k0s()(),u.nrm(44,"circle",188),u.k0s()()()(),L.joV(),u.j41(45,"div",30)(46,"mat-card-title"),u.EFF(47,"Done!"),u.k0s()(),u.j41(48,"div",31)(49,"mat-card-subtitle",32),u.EFF(50," You send the payment on-chain from your wallet and also move remote balance to the local side of the node, gaining outgoing capacity. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,St,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}let Qe=(()=>{var At;class we{constructor(Lt){this.commonService=Lt,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new u.bkB,this.screenSize="",this.screenSizeEnum=O.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(Lt){2===Lt.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===Lt.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=At=()=>(this.\u0275fac=function(Ht){return new(Ht||we)(u.rXU(Ce.h))},this.\u0275cmp=u.VBU({type:we,selectors:[["rtl-loop-in-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["loopStepBlock1",""],["loopStepBlock2",""],["loopStepBlock3",""],["loopStepBlock4",""],["loopStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 108 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","Loopv0.2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopIn_Step01","transform","translate(-594.000000, -215.000000)","fill-rule","nonzero"],["id","Loop_Step01","transform","translate(594.000000, 215.000000)"],["id","Group-16","transform","translate(23.000000, 0.000000)"],["id","Oval","cx","42.4877419","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M56.0827415,28.5000036 C60.4468211,28.5000036 63.9999285,25.1343958 63.9999285,21.0000215 C63.9999285,16.8656472 60.4468211,13.5000393 56.0827415,13.5000393 C52.9843297,13.5000393 50.5608889,15.4359631 48.9999642,17.1843872 C47.4390396,15.4359631 45.0155987,13.5000393 41.9171869,13.5000393 C37.5531074,13.5000393 34,16.8656472 34,21.0000215 C34,25.1343958 37.5531074,28.5000036 41.9171869,28.5000036 C45.0155987,28.5000036 47.4390396,26.5640798 48.9999642,24.8156557 C50.5608889,26.5640798 52.9843297,28.5000036 56.0827415,28.5000036 Z M41.9171869,24.0000143 C40.0328073,24.0000143 38.4999893,22.6546959 38.4999893,21.0000286 C38.4999893,19.3453471 40.0328073,18.0000286 41.9171869,18.0000286 C43.707771,18.0000286 45.3577763,19.6921938 46.3234264,21.0000286 C45.3671604,22.2937501 43.7031019,24.0000143 41.9171869,24.0000143 Z M56.0827415,24.0000143 C54.2921574,24.0000143 52.6421522,22.3078492 51.676502,21.0000286 C52.6327681,19.7062929 54.2968266,18.0000286 56.0827415,18.0000286 C57.9671212,18.0000286 59.4999392,19.3453471 59.4999392,21.0000286 C59.4999392,22.6546959 57.9671212,24.0000143 56.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Group-21","transform","translate(0.000000, 36.000000)"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-7"],["id","Oval","opacity","0.1","cx","48.644129","cy","75.1589677","rx","40.8402581","ry","5.55600756",1,"fill-color-27"],["id","Rectangle","x","25.2325161","y","6.09470968","width","54.1068387","height","62.9512258",1,"fill-color-26"],["id","Rectangle","x","20","y","1.24344979e-14","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","20","y","26","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","19.7698065","y","52.9179355","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","67.6335484","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","viewBox","0 0 200 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","0%","id","linearGradient-1"],["stop-color","#808080","stop-opacity","0.25","offset","0%"],["stop-color","#808080","stop-opacity","0.12","offset","54%"],["stop-color","#808080","stop-opacity","0.1","offset","100%"],["id","LoopIn_Step02","transform","translate(-542.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step02","transform","translate(542.000000, 210.000000)"],["id","Group-2"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-11"],["id","Rectangle","x","1.34483737","y","60.660286","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","67.352783","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","31.345208","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","38.0377051","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","2.03013005","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","8.72460769","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Rectangle","x","7.80560248","y","67.352783","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","38.0377051","width","33.2298507","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","8.72460769","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.93434243",1,"fill-color-31"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","45.3719212","r","7.93434243"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","74.6850186","r","7.93434243"],["id","Group-16","transform","translate(55.804478, 34.674627)"],["id","Group-29","transform","translate(0.310627, 0.751284)"],["id","Group"],["d","M132.777455,1.04124409 L82.2582659,1.04124409 L82.2582659,0 L59.3509036,0 L59.3509036,1.04124409 L8.62346042,1.04124409 C7.71715136,1.04124358 6.84796221,1.40127322 6.20710493,2.0421305 C5.56624765,2.68298778 5.20621852,3.55217693 5.20621852,4.45848599 L5.20621852,73.6347918 C5.20621852,74.5411031 5.56624437,75.4102953 6.2071016,76.0511558 C6.84795882,76.6920163 7.71714912,77.0520512 8.62346042,77.0520512 L132.777455,77.0520512 C134.664749,77.0520512 136.194697,75.522091 136.194697,73.6347977 L136.194697,4.45848599 C136.194697,3.55217693 135.834668,2.68298778 135.193811,2.0421305 C134.552953,1.40127322 133.683764,1.04124358 132.777455,1.04124409 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.78769098","y","7.08045867","width","121.825532","height","68.7220946",1,"fill-color-7"],["id","Path","opacity","0.306775484","points","96.7732181 75.8025901 9.78772787 75.8025901 9.78772787 7.08050333",1,"fill-color-27"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary-darker"],["d","M14.5668332,29.1332406 C8.67527117,29.1332406 3.36383033,25.5842492 1.10922733,20.1411555 C-1.14537566,14.6980619 0.100864684,8.43279022 4.26682842,4.26682704 C8.43279215,0.100863866 14.698064,-1.14537564 20.1411573,1.10922807 C25.5842507,3.36383179 29.1332406,8.67527311 29.1332406,14.5668351 C29.124133,22.607864 22.6078621,29.1241341 14.5668332,29.1332406 L14.5668332,29.1332406 Z M14.5668332,0.190838576 C6.62718953,0.190838576 0.190836635,6.62719147 0.190836635,14.5668351 C0.190836635,22.5064788 6.62718953,28.9428317 14.5668332,28.9428317 C22.5064768,28.9428317 28.9428297,22.5064788 28.9428297,14.5668351 C28.9338602,6.63090975 22.5027586,0.199808125 14.5668332,0.190838576 L14.5668332,0.190838576 Z","id","Shape"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-5"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-19"],["d","M139.615294,74.5530572 L127.725913,74.5530572 L127.725913,73.6964356 C127.725915,73.6513884 127.708021,73.6081857 127.676168,73.5763323 C127.644315,73.544479 127.601113,73.5265862 127.556065,73.5265862 L123.479706,73.5265862 C123.434659,73.5265862 123.391457,73.5444797 123.359604,73.5763329 C123.327751,73.6081861 123.309857,73.6513886 123.309859,73.6964356 L123.309859,74.5530572 L120.762134,74.5530572 L120.762134,73.6964356 C120.762135,73.6513886 120.744241,73.6081861 120.712388,73.5763329 C120.680536,73.5444797 120.637333,73.5265862 120.592286,73.5265862 L116.515927,73.5265862 C116.47088,73.5265862 116.427677,73.5444789 116.395824,73.5763322 C116.36397,73.6081855 116.346076,73.6513882 116.346078,73.6964356 L116.346078,74.5530572 L113.798355,74.5530572 L113.798355,73.6964356 C113.798356,73.6513882 113.780462,73.6081855 113.748609,73.5763322 C113.716755,73.5444789 113.673553,73.5265862 113.628505,73.5265862 L109.552146,73.5265862 C109.507099,73.5265862 109.463897,73.5444797 109.432044,73.5763329 C109.400191,73.6081861 109.382297,73.6513886 109.382299,73.6964356 L109.382299,74.5530572 L106.834574,74.5530572 L106.834574,73.6964356 C106.834575,73.6513886 106.816681,73.6081861 106.784828,73.5763329 C106.752975,73.5444797 106.709773,73.5265862 106.664726,73.5265862 L102.588363,73.5265862 C102.543316,73.5265862 102.500113,73.544479 102.46826,73.5763323 C102.436407,73.6081857 102.418513,73.6513884 102.418516,73.6964356 L102.418516,74.5530572 L99.8707946,74.5530572 L99.8707946,73.6964356 C99.8707961,73.6513882 99.8529018,73.6081855 99.8210486,73.5763322 C99.7891953,73.5444789 99.7459925,73.5265862 99.7009452,73.5265862 L95.6245878,73.5265862 C95.5795404,73.5265862 95.5363377,73.5444789 95.5044844,73.5763322 C95.4726311,73.6081855 95.4547369,73.6513882 95.4547384,73.6964356 L95.4547384,74.5530572 L92.9070135,74.5530572 L92.9070135,73.6964356 C92.9070151,73.6513886 92.889121,73.6081861 92.8572682,73.5763329 C92.8254153,73.5444797 92.7822131,73.5265862 92.7371661,73.5265862 L88.6608067,73.5265862 C88.6157597,73.5265862 88.5725575,73.5444797 88.5407046,73.5763329 C88.5088518,73.6081861 88.4909577,73.6513886 88.4909593,73.6964356 L88.4909593,74.5530572 L85.9432383,74.5530572 L85.9432383,73.6964356 C85.9432399,73.6513886 85.9253458,73.6081861 85.893493,73.5763329 C85.8616401,73.5444797 85.8184379,73.5265862 85.7733909,73.5265862 L53.8419073,73.5265862 C53.7968603,73.5265862 53.7536581,73.5444797 53.7218052,73.5763329 C53.6899524,73.6081861 53.6720584,73.6513886 53.6720599,73.6964356 L53.6720599,74.5530572 L51.124335,74.5530572 L51.124335,73.6964356 C51.1243366,73.6513882 51.1064423,73.6081855 51.074589,73.5763322 C51.0427358,73.5444789 50.999533,73.5265862 50.9544857,73.5265862 L46.8781379,73.5265862 C46.8330906,73.5265862 46.7898879,73.5444789 46.7580346,73.5763322 C46.7261813,73.6081855 46.708287,73.6513882 46.7082886,73.6964356 L46.7082886,74.5530572 L44.160554,74.5530572 L44.160554,73.6964356 C44.1605561,73.6513884 44.1426622,73.6081857 44.1108092,73.5763323 C44.0789563,73.544479 44.0357537,73.5265862 43.9907066,73.5265862 L39.9143472,73.5265862 C39.8693002,73.5265862 39.8260979,73.5444797 39.7942451,73.5763329 C39.7623922,73.6081861 39.7444982,73.6513886 39.7444998,73.6964356 L39.7444998,74.5530572 L37.1967749,74.5530572 L37.1967749,73.6964356 C37.1967764,73.6513886 37.1788824,73.6081861 37.1470296,73.5763329 C37.1151767,73.5444797 37.0719745,73.5265862 37.0269275,73.5265862 L32.9505681,73.5265862 C32.9055208,73.5265862 32.862318,73.5444789 32.8304647,73.5763322 C32.7986115,73.6081855 32.7807172,73.6513882 32.7807187,73.6964356 L32.7807187,74.5530572 L30.2329958,74.5530572 L30.2329958,73.6964356 C30.2329973,73.6513882 30.215103,73.6081855 30.1832498,73.5763322 C30.1513965,73.5444789 30.1081938,73.5265862 30.0631464,73.5265862 L25.986787,73.5265862 C25.94174,73.5265862 25.8985378,73.5444797 25.866685,73.5763329 C25.8348321,73.6081861 25.8169381,73.6513886 25.8169396,73.6964356 L25.8169396,74.5530572 L23.2692109,74.5530572 L23.2692109,73.6964356 C23.2692124,73.6513886 23.2513184,73.6081861 23.2194655,73.5763329 C23.1876127,73.5444797 23.1444104,73.5265862 23.0993634,73.5265862 L19.0230079,73.5265862 C18.9779608,73.5265862 18.9347582,73.544479 18.9029053,73.5763323 C18.8710523,73.6081857 18.8531585,73.6513884 18.8531605,73.6964356 L18.8531605,74.5530572 L16.3054357,74.5530572 L16.3054357,73.6964356 C16.3054372,73.6513882 16.2875429,73.6081855 16.2556896,73.5763322 C16.2238364,73.5444789 16.1806336,73.5265862 16.1355863,73.5265862 L12.0592288,73.5265862 C12.0141815,73.5265862 11.9709788,73.5444789 11.9391255,73.5763322 C11.9072722,73.6081855 11.8893779,73.6513882 11.8893795,73.6964356 L11.8893795,74.5530572 L4.07635746,74.5530572 C1.82504753,74.5530594 0,76.3781067 0,78.6294166 L0,80.4726504 C0,82.7239563 1.82505163,84.5489982 4.07635746,84.5489982 L139.615294,84.5489982 C141.8666,84.5489982 143.691654,82.7239566 143.691654,80.4726504 L143.691654,78.6294166 C143.691654,76.3781064 141.866605,74.5530594 139.615294,74.5530572 Z","id","Path",1,"fill-color-20"],["id","Group","transform","translate(14.563343, 25.890388)"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary-darker"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M54.316416,4.55250111 L54.316416,3.34665629 C54.316416,1.49819202 52.8172532,0 50.9687888,0 L3.34762718,0 C1.49916283,0 0,1.49819202 0,3.34665629 L0,5.56999336 L54.316416,4.55250111 Z","id","Path",1,"fill-color-16"],["d","M55.6018738,5.73601547 L55.6018738,39.231705 C55.6018738,39.9999836 55.2966099,40.7367813 54.7532639,41.2799452 C54.2099179,41.8231092 53.4730179,42.1278687 52.7047393,42.1278687 L2.89810531,42.1278687 C1.29897753,42.1273325 0.00291266866,40.8308329 0.00291266866,39.231705 L0.00291266866,2.35926161 C1.43012031,2.88936731 1.43012031,2.88936731 2.89810531,2.84470639 L52.7047393,2.84470639 C54.3025103,2.84470316 55.5986611,4.13824772 55.6018738,5.73601547 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-19"],["d","M55.4601239,18.5459322 L55.4601239,29.2577567 L45.0716057,29.2577567 C42.141738,29.2183086 39.7873207,26.8319777 39.7873207,23.9018444 C39.7873207,20.9717112 42.141738,18.5853803 45.0716057,18.5459322 L55.4601239,18.5459322 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-17"],["id","Oval","opacity","0.1","cx","45.7114219","cy","23.9023299","r","2.08838343",1,"fill-color-27"],["id","Oval","cx","45.8531718","cy","23.6188301","r","2.08838343",1,"fill-color-28"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-30"],["fxFlex","30","viewBox","0 0 364 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","8.86848147e-15%","id","linearGradient-1"],["id","Loopv0.3","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopIn_Step03","transform","translate(-1127.000000, -164.000000)"],["id","LoopIn_Step03","transform","translate(1127.000000, 164.000000)"],["id","Group-21"],["id","Group-35","transform","translate(107.000000, 10.000000)"],["id","Oval","fill-rule","nonzero","cx","214.487742","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M232.082742,28.5000036 C236.446821,28.5000036 239.999928,25.1343958 239.999928,21.0000215 C239.999928,16.8656472 236.446821,13.5000393 232.082742,13.5000393 C228.98433,13.5000393 226.560889,15.4359631 224.999964,17.1843872 C223.43904,15.4359631 221.015599,13.5000393 217.917187,13.5000393 C213.553107,13.5000393 210,16.8656472 210,21.0000215 C210,25.1343958 213.553107,28.5000036 217.917187,28.5000036 C221.015599,28.5000036 223.43904,26.5640798 224.999964,24.8156557 C226.560889,26.5640798 228.98433,28.5000036 232.082742,28.5000036 Z M217.917187,24.0000143 C216.032807,24.0000143 214.499989,22.6546959 214.499989,21.0000286 C214.499989,19.3453471 216.032807,18.0000286 217.917187,18.0000286 C219.707771,18.0000286 221.357776,19.6921938 222.323426,21.0000286 C221.36716,22.2937501 219.703102,24.0000143 217.917187,24.0000143 Z M232.082742,24.0000143 C230.292157,24.0000143 228.642152,22.3078492 227.676502,21.0000286 C228.632768,19.7062929 230.296827,18.0000286 232.082742,18.0000286 C233.967121,18.0000286 235.499939,19.3453471 235.499939,21.0000286 C235.499939,22.6546959 233.967121,24.0000143 232.082742,24.0000143 Z","id","i","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-44","transform","translate(0.000000, 64.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-20"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-23"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-20"],["id","Group-43","transform","translate(152.000000, 35.000000)"],["id","Path","fill-rule","nonzero","points","-9.84073267e-14 7.36243469 92.3919279 7.36243469 92.3919279 70.3073253 -1.13686838e-13 70.3073253",1,"fill-color-23"],["d","M97.5448374,1.70530257e-13 L6.62592538,1.70530257e-13 C6.01615907,0.000922175294 5.52114394,0.495001701 5.52114394,1.104768 L5.52114394,62.57664 C5.52114394,62.8696481 5.63752746,63.150658 5.84471672,63.3578447 C6.05190598,63.5650315 6.3329173,63.681408 6.62592538,63.681408 L97.5448374,63.681408 C97.8378436,63.681408 98.1188523,63.5650282 98.3260389,63.3578415 C98.5332256,63.1506549 98.6496054,62.8696462 98.6496054,62.57664 L98.6496054,1.104768 C98.6496054,0.495005713 98.1545997,0.000926622272 97.5448374,1.70530257e-13 L97.5448374,1.70530257e-13 Z M97.9130952,62.57664 C97.9130952,62.6744022 97.8747043,62.7682496 97.8055756,62.8373783 C97.736447,62.9065069 97.6425996,62.9448978 97.5448374,62.9448978 L6.62592538,62.9448978 C6.52816341,62.9448978 6.4343164,62.906506 6.3651879,62.8373775 C6.29605941,62.768249 6.25766754,62.674402 6.25766754,62.57664 L6.25766754,1.104768 C6.25766754,0.901512883 6.42267026,0.736512 6.62592538,0.736512 L97.5448374,0.736512 C97.7480931,0.736512 97.9130952,0.901512271 97.9130952,1.104768 L97.9130952,62.57664 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","10.3066764","y","43.4358624","width","41.5947948","height","4.78524211","rx","0.5376",1,"fill-color-19"],["d","M89.8141359,39.3872559 L76.5649839,39.3872559 C76.2719769,39.3872559 75.9909677,39.5036372 75.7837792,39.7108232 C75.5765907,39.9180091 75.4602025,40.1990169 75.4602025,40.4920239 L75.4602025,50.7978159 C75.4602025,51.090824 75.576586,51.3718339 75.7837753,51.5790207 C75.9909645,51.7862074 76.2719759,51.9025839 76.5649839,51.9025839 L89.8141359,51.9025839 C90.107143,51.9025839 90.3881533,51.7862079 90.5953406,51.5790206 C90.8025279,51.3718333 90.9189039,51.090823 90.9189039,50.7978159 L90.9189039,40.4920239 C90.9189039,40.199018 90.8025232,39.9180097 90.5953367,39.7108232 C90.3881502,39.5036367 90.1071419,39.3872559 89.8141359,39.3872559 Z M90.1823938,50.7978159 C90.182087,51.0010717 90.0173917,51.165767 89.8141359,51.1660719 L76.5649839,51.1660719 C76.3617256,51.165767 76.1970256,51.0010743 76.19671,50.7978159 L76.19671,40.4920239 C76.1964064,40.3942603 76.2351088,40.3004129 76.30424,40.2312847 C76.3733712,40.1621565 76.4672203,40.1234582 76.5649839,40.1237661 L89.8141359,40.1237661 C89.9118981,40.1234582 90.0057456,40.162157 90.0748742,40.2312857 C90.1440029,40.3004143 90.1827017,40.3942617 90.1823938,40.4920239 L90.1823938,50.7978159 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","41.7652758","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","44.7100416","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","47.6548047","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","11.4109632","y","4.41773875","width","19.1409684","height","8.09810266","rx","0.5376",1,"fill-color-19"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-4"],["d","M50.1798649,51.9764517 C43.6553251,51.9764517 37.7732336,48.0461636 35.2764005,42.0182748 C32.7795674,35.990386 34.1597014,29.0519859 38.773248,24.4384399 C43.3867946,19.824894 50.3251948,18.4447609 56.3530833,20.9415948 C62.3809718,23.4384287 66.3112582,29.3205207 66.3112582,35.8450605 C66.3011721,44.7500015 59.0848059,51.9663668 50.1798649,51.9764517 L50.1798649,51.9764517 Z M50.1798649,19.9245354 C41.3872016,19.9245354 34.2593397,27.0523972 34.2593397,35.8450605 C34.2593397,44.6377237 41.3872016,51.7655856 50.1798649,51.7655856 C58.9725281,51.7655856 66.10039,44.6377237 66.10039,35.8450605 C66.0904567,27.056515 58.9684103,19.9344686 50.1798649,19.9245354 L50.1798649,19.9245354 Z","id","Shape","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-23","transform","translate(5.000000, 0.001193)"],["id","Group-22"],["id","Group","transform","translate(0.378134, 0.000000)"],["id","Group-24","transform","translate(29.048000, 19.712000)"],["id","LoopIn_Step03","fill-rule","nonzero"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-10"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","15.8607624","r","7.93434243"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.35996418",1,"fill-color-31"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-4"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-20"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-20"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-16"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-9"],["d","M93.2292414,91.9116485 L93.2292414,89.7922708 C93.647506,89.8022089 94.0558324,89.8022089 94.4442517,89.8022089 L94.4442517,91.9116485 L95.9779294,91.9116485 L95.9779294,89.7623948 C98.5473303,89.6229527 100.264986,88.975618 100.494057,86.5555973 C100.673282,84.6136241 99.757032,83.7471573 98.3030443,83.3986138 C99.1794183,82.9504733 99.7371558,82.1537275 99.6076827,80.8291821 C99.4383337,79.0166511 97.9497787,78.4091306 95.9778985,78.2398742 L95.9778985,75.7301945 L94.4442208,75.7301945 L94.4442208,78.1701531 C94.0458325,78.1701531 93.6375061,78.1800912 93.2292106,78.1900602 L93.2292106,75.7301945 L91.695502,75.7301945 L91.695502,78.2398742 C91.1316227,78.2569109 90.4748746,78.2485777 88.6181777,78.2398742 L88.6181777,79.8731181 C89.8290831,79.8516987 90.4644118,79.7738914 90.6099957,80.5502979 L90.6099957,87.4220333 C90.517559,88.0380413 90.0245427,87.9493391 88.926907,87.9299259 L88.6181777,89.7524258 L89.5798445,89.7528809 C91.4824304,89.7548325 91.6955329,89.7623948 91.6955329,89.7623948 L91.6955329,91.9116485 L93.2292414,91.9116485 Z M93.2591175,83.0400705 L93.2591175,79.9826533 C94.1255534,79.9826533 96.8343964,79.7137998 96.8343964,81.5163618 C96.8343964,83.2392647 94.1255843,83.0400705 93.2591175,83.0400705 Z M93.2591175,87.9398948 L93.2591175,84.5737791 C94.2948407,84.5737791 97.4665153,84.2849568 97.4665153,86.2568678 C97.4665153,88.1589961 94.2948407,87.9398948 93.2591175,87.9398948 Z","id","b","fill-rule","nonzero","transform","translate(94.567271, 83.820921) rotate(14.000000) translate(-94.567271, -83.820921) ",1,"fill-color-9"],["d","M305.611064,96.181454 L305.611064,94.0620763 C306.029328,94.0720144 306.437655,94.0720144 306.826074,94.0720144 L306.826074,96.181454 L308.359752,96.181454 L308.359752,94.0322003 C310.929153,93.8927582 312.646809,93.2454235 312.875879,90.8254028 C313.055104,88.8834296 312.138854,88.0169628 310.684867,87.6684193 C311.561241,87.2202788 312.118978,86.423533 311.989505,85.0989876 C311.820156,83.2864566 310.331601,82.678936 308.359721,82.5096797 L308.359721,80 L306.826043,80 L306.826043,82.4399586 C306.427655,82.4399586 306.019328,82.4498967 305.611033,82.4598657 L305.611033,80 L304.077324,80 L304.077324,82.5096797 C303.513445,82.5267164 302.856697,82.5183832 301,82.5096797 L301,84.1429236 C302.210905,84.1215042 302.846234,84.0436969 302.991818,84.8201034 L302.991818,91.6918387 C302.899381,92.3078468 302.406365,92.2191446 301.308729,92.1997314 L301,94.0222313 L301.961667,94.0226864 C303.864253,94.024638 304.077355,94.0322003 304.077355,94.0322003 L304.077355,96.181454 L305.611064,96.181454 Z M305.64094,87.309876 L305.64094,84.2524587 C306.507376,84.2524587 309.216219,83.9836053 309.216219,85.7861673 C309.216219,87.5090702 306.507407,87.309876 305.64094,87.309876 Z M305.64094,92.2097003 L305.64094,88.8435846 C306.676663,88.8435846 309.848338,88.5547623 309.848338,90.5266733 C309.848338,92.4288016 306.676663,92.2097003 305.64094,92.2097003 Z","id","b","fill-rule","nonzero","transform","translate(306.949093, 88.090727) rotate(14.000000) translate(-306.949093, -88.090727) ",1,"fill-color-26"],["fxFlex","30","viewBox","0 0 278 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopIn_Step04","transform","translate(-1799.000000, -756.000000)"],["id","LoopIn_Step04","transform","translate(1799.000000, 756.000000)"],["id","Loop","fill-rule","nonzero"],["id","Group-16","transform","translate(24.000000, 0.000000)"],["d","M55.0827415,28.5000036 C59.4468211,28.5000036 62.9999285,25.1343958 62.9999285,21.0000215 C62.9999285,16.8656472 59.4468211,13.5000393 55.0827415,13.5000393 C51.9843297,13.5000393 49.5608889,15.4359631 47.9999642,17.1843872 C46.4390396,15.4359631 44.0155987,13.5000393 40.9171869,13.5000393 C36.5531074,13.5000393 33,16.8656472 33,21.0000215 C33,25.1343958 36.5531074,28.5000036 40.9171869,28.5000036 C44.0155987,28.5000036 46.4390396,26.5640798 47.9999642,24.8156557 C49.5608889,26.5640798 51.9843297,28.5000036 55.0827415,28.5000036 Z M40.9171869,24.0000143 C39.0328073,24.0000143 37.4999893,22.6546959 37.4999893,21.0000286 C37.4999893,19.3453471 39.0328073,18.0000286 40.9171869,18.0000286 C42.707771,18.0000286 44.3577763,19.6921938 45.3234264,21.0000286 C44.3671604,22.2937501 42.7031019,24.0000143 40.9171869,24.0000143 Z M55.0827415,24.0000143 C53.2921574,24.0000143 51.6421522,22.3078492 50.676502,21.0000286 C51.6327681,19.7062929 53.2968266,18.0000286 55.0827415,18.0000286 C56.9671212,18.0000286 58.4999392,19.3453471 58.4999392,21.0000286 C58.4999392,22.6546959 56.9671212,24.0000143 55.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-2"],["id","Group-44","transform","translate(27.000000, 69.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-19"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-19"],["id","Group-43","transform","translate(179.000000, 40.000000)"],["d","M225.805162,92.2474279 C226.071703,92.2474279 226.325569,92.1077892 226.465207,91.8666288 L232.050261,82.2197185 C232.345374,81.7151473 231.980441,81.0773212 231.393376,81.0773212 L227.731346,81.0773212 L229.083201,76.9583506 C229.210134,76.4759989 228.845202,76 228.346983,76 L223.777394,76 C223.396595,76 223.07291,76.2824384 223.022149,76.6600456 L222.006685,84.2760274 C221.946379,84.7329987 222.301798,85.1391782 222.76193,85.1391782 L226.528674,85.1391782 L225.065752,91.3112968 C224.951525,91.7936485 225.319618,92.2474279 225.805162,92.2474279 Z","id","b","fill-rule","nonzero","transform","translate(227.077378, 84.123714) rotate(14.000000) translate(-227.077378, -84.123714) ",1,"fill-color-12"],["fxFlex","30","viewBox","0 0 205 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopIn_Step05","transform","translate(-2386.000000, -764.000000)","fill-rule","nonzero"],["id","LoopIn_Step05","transform","translate(2386.000000, 764.000000)"],["id","Illustration_Step02"],["id","Group-31"],["id","Rectangle","x","0","y","0","width","90.1490688","height","100.616012",1,"fill-color-10"],["id","Rectangle","x","1.48932403","y","67.1775068","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","82.4918815","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","34.712875","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","42.1244006","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","50.0294431","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","2.2482432","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","24","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","42.1244006","width","36.8","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","9.66196224","width","51.2","height","16.0118784",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","50.2465905","r","8.78679245"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","82.7090289","r","8.78679245"],["id","Group","transform","translate(60.115627, 35.744427)"],["d","M133.318807,1.04548939 L82.5936439,1.04548939 L82.5936439,0 L59.5928852,0 L59.5928852,1.04548939 L8.65861943,1.04548939 C7.74861523,1.04548887 6.87588228,1.4069864 6.23241214,2.05045654 C5.58894199,2.69392669 5.22744498,3.56665964 5.22744498,4.47666384 L5.22744498,73.9350108 C5.22744498,74.8450173 5.5889387,75.7177532 6.23240879,76.3612266 C6.87587888,77.0047 7.74861298,77.3662028 8.65861943,77.3662028 L133.318807,77.3662028 C135.213795,77.3662028 136.749981,75.8300048 136.749981,73.9350167 L136.749981,4.47666384 C136.749981,3.56665964 136.388484,2.69392669 135.745014,2.05045654 C135.101544,1.4069864 134.228811,1.04548887 133.318807,1.04548939 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-25"],["id","Path","opacity","0.257273065","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-24"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-25"],["d","M31.5848237,68.0274261 C25.669241,68.0274261 20.3361447,64.4639649 18.0723494,58.9986791 C15.808554,53.5333932 17.0598755,47.2425772 21.2428244,43.0596288 C25.4257733,38.8766804 31.7165895,37.6253598 37.1818751,39.8891559 C42.6471607,42.1529519 46.2106203,47.4860487 46.2106203,53.4016314 C46.2014756,61.4754447 39.6586369,68.0182825 31.5848237,68.0274261 L31.5848237,68.0274261 Z M31.5848237,38.967022 C23.612809,38.967022 17.1502143,45.4296168 17.1502143,53.4016314 C17.1502143,61.3736461 23.612809,67.8362409 31.5848237,67.8362409 C39.5568383,67.8362409 46.0194331,61.3736461 46.0194331,53.4016314 C46.010427,45.4333502 39.5531049,38.9760281 31.5848237,38.967022 L31.5848237,38.967022 Z","id","Shape",1,"fill-color-primary"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","119.89017","y","8.50924347","width","4.7751428","height","4.7751428",1,"fill-color-6"],["d","M126.882344,15.5014148 L121.083948,15.5014148 L121.083948,9.70301894 L126.882344,9.70301894 L126.882344,15.5014148 Z M121.336061,15.2493191 L126.63024,15.2493191 L126.63024,9.95513218 L121.336061,9.95513218 L121.336061,15.2493191 Z","id","Shape",1,"fill-color-19"],["d","M140.184525,74.8570201 L128.246669,74.8570201 L128.246669,73.9969059 C128.246671,73.9516751 128.228704,73.9082962 128.196721,73.876313 C128.164738,73.8443298 128.12136,73.826364 128.076129,73.826364 L123.98315,73.826364 C123.937919,73.826364 123.89454,73.8443305 123.862558,73.8763135 C123.830575,73.9082966 123.812608,73.9516752 123.81261,73.9969059 L123.81261,74.8570201 L121.254497,74.8570201 L121.254497,73.9969059 C121.254499,73.9516752 121.236532,73.9082966 121.204549,73.8763135 C121.172566,73.8443305 121.129188,73.826364 121.083957,73.826364 L116.990978,73.826364 C116.945747,73.826364 116.902368,73.8443297 116.870385,73.8763129 C116.838402,73.908296 116.820435,73.9516749 116.820436,73.9969059 L116.820436,74.8570201 L114.262326,74.8570201 L114.262326,73.9969059 C114.262328,73.9516749 114.24436,73.908296 114.212377,73.8763129 C114.180394,73.8443297 114.137015,73.826364 114.091784,73.826364 L109.998805,73.826364 C109.953574,73.826364 109.910196,73.8443305 109.878213,73.8763135 C109.84623,73.9082966 109.828263,73.9516752 109.828265,73.9969059 L109.828265,74.8570201 L107.270153,74.8570201 L107.270153,73.9969059 C107.270154,73.9516752 107.252187,73.9082966 107.220204,73.8763135 C107.188222,73.8443305 107.144843,73.826364 107.099613,73.826364 L103.00663,73.826364 C102.961399,73.826364 102.91802,73.8443298 102.886037,73.876313 C102.854054,73.9082962 102.836088,73.9516751 102.83609,73.9969059 L102.83609,74.8570201 L100.277981,74.8570201 L100.277981,73.9969059 C100.277983,73.9516749 100.260016,73.908296 100.228032,73.8763129 C100.196049,73.8443297 100.15267,73.826364 100.107439,73.826364 L96.0144621,73.826364 C95.9692311,73.826364 95.9258522,73.8443297 95.8938691,73.8763129 C95.861886,73.908296 95.8439187,73.9516749 95.8439202,73.9969059 L95.8439202,74.8570201 L93.285808,74.8570201 L93.285808,73.9969059 C93.2858095,73.9516752 93.2678425,73.9082966 93.2358598,73.8763135 C93.2038771,73.8443305 93.1604987,73.826364 93.1152681,73.826364 L89.0222888,73.826364 C88.9770581,73.826364 88.9336797,73.8443305 88.901697,73.8763135 C88.8697143,73.9082966 88.8517473,73.9516752 88.8517489,73.9969059 L88.8517489,74.8570201 L86.2936405,74.8570201 L86.2936405,73.9969059 C86.293642,73.9516752 86.2756751,73.9082966 86.2436923,73.8763135 C86.2117096,73.8443305 86.1683312,73.826364 86.1231006,73.826364 L54.061428,73.826364 C54.0161974,73.826364 53.972819,73.8443305 53.9408363,73.8763135 C53.9088536,73.9082966 53.8908866,73.9516752 53.8908881,73.9969059 L53.8908881,74.8570201 L51.3327759,74.8570201 L51.3327759,73.9969059 C51.3327774,73.9516749 51.3148102,73.908296 51.282827,73.8763129 C51.2508439,73.8443297 51.207465,73.826364 51.162234,73.826364 L47.0692664,73.826364 C47.0240354,73.826364 46.9806565,73.8443297 46.9486734,73.8763129 C46.9166903,73.908296 46.898723,73.9516749 46.8987246,73.9969059 L46.8987246,74.8570201 L44.3406025,74.8570201 L44.3406025,73.9969059 C44.3406046,73.9516751 44.3226378,73.9082962 44.290655,73.876313 C44.2586721,73.8443298 44.2152934,73.826364 44.1700626,73.826364 L40.0770834,73.826364 C40.0318527,73.826364 39.9884743,73.8443305 39.9564916,73.8763135 C39.9245089,73.9082966 39.9065419,73.9516752 39.9065435,73.9969059 L39.9065435,74.8570201 L37.3484312,74.8570201 L37.3484312,73.9969059 C37.3484327,73.9516752 37.3304657,73.9082966 37.298483,73.8763135 C37.2665003,73.8443305 37.2231219,73.826364 37.1778913,73.826364 L33.084912,73.826364 C33.039681,73.826364 32.9963021,73.8443297 32.964319,73.8763129 C32.9323358,73.908296 32.9143686,73.9516749 32.9143701,73.9969059 L32.9143701,74.8570201 L30.3562598,74.8570201 L30.3562598,73.9969059 C30.3562614,73.9516749 30.3382941,73.908296 30.306311,73.8763129 C30.2743278,73.8443297 30.2309489,73.826364 30.1857179,73.826364 L26.0927387,73.826364 C26.047508,73.826364 26.0041296,73.8443305 25.9721469,73.8763135 C25.9401642,73.9082966 25.9221972,73.9516752 25.9221988,73.9969059 L25.9221988,74.8570201 L23.3640826,74.8570201 L23.3640826,73.9969059 C23.3640841,73.9516752 23.3461171,73.9082966 23.3141344,73.8763135 C23.2821517,73.8443305 23.2387733,73.826364 23.1935427,73.826364 L19.1005673,73.826364 C19.0553365,73.826364 19.0119578,73.8443298 18.979975,73.876313 C18.9479921,73.9082962 18.9300253,73.9516751 18.9300274,73.9969059 L18.9300274,74.8570201 L16.3719151,74.8570201 L16.3719151,73.9969059 C16.3719167,73.9516749 16.3539494,73.908296 16.3219663,73.8763129 C16.2899831,73.8443297 16.2466042,73.826364 16.2013733,73.826364 L12.1083959,73.826364 C12.0631649,73.826364 12.0197861,73.8443297 11.9878029,73.8763129 C11.9558198,73.908296 11.9378525,73.9516749 11.9378541,73.9969059 L11.9378541,74.8570201 L4.09297732,74.8570201 C1.83248849,74.8570223 0,76.6895106 0,78.9499994 L0,80.8007483 C0,83.061233 1.83249262,84.8937159 4.09297732,84.8937159 L140.184525,84.8937159 C142.44501,84.8937159 144.277504,83.0612333 144.277504,80.8007483 L144.277504,78.9499994 C144.277504,76.6895102 142.445014,74.8570223 140.184525,74.8570201 Z","id","Path",1,"fill-color-20"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-21"],["id","Oval","cx","74.1507041","cy","17.5648113","r","8.15070413",1,"fill-color-primary"]],template:function(Ht,_n){if(1&Ht&&u.DNE(0,ot,1,0,"ng-container",5)(1,nt,32,5,"ng-template",null,0,u.C5r)(3,ht,66,5,"ng-template",null,1,u.C5r)(5,oe,93,5,"ng-template",null,2,u.C5r)(7,Ye,54,5,"ng-template",null,3,u.C5r)(9,fe,51,5,"ng-template",null,4,u.C5r),2&Ht){const fi=u.sdS(2),bi=u.sdS(4),Qi=u.sdS(6),zi=u.sdS(8),It=u.sdS(10);u.Y8G("ngTemplateOutlet",1===_n.stepNumber?fi:2===_n.stepNumber?bi:3===_n.stepNumber?Qi:4===_n.stepNumber?zi:It)}},dependencies:[A.YU,A.T3,j.Lc,j.dh,ce.DJ,ce.sA,ce.UI,be.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Vt.k]}}))}return At(),we})();const gt=(At,we)=>({"small-svg":At,"large-svg":we});function Gt(At,we){1&At&&u.eu8(0)}function rt(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",7)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),u.nrm(8,"circle",12)(9,"path",13),u.k0s(),u.j41(10,"g",14),u.nrm(11,"ellipse",15)(12,"ellipse",16)(13,"rect",17)(14,"rect",18)(15,"rect",19)(16,"rect",20)(17,"rect",21)(18,"rect",22)(19,"rect",23)(20,"rect",24)(21,"rect",25)(22,"rect",26)(23,"rect",27)(24,"rect",28)(25,"rect",29),u.k0s()()()()(),L.joV(),u.j41(26,"div",30)(27,"mat-card-title"),u.EFF(28,"Loop Out explained."),u.k0s()(),u.j41(29,"div",31)(30,"mat-card-subtitle",32),u.EFF(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,gt,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}function cn(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",33)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"defs")(5,"linearGradient",34),u.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),u.k0s()(),u.j41(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40)(13,"g",41)(14,"g",42),u.nrm(15,"rect",43)(16,"rect",44)(17,"rect",45)(18,"circle",46)(19,"rect",47)(20,"rect",48)(21,"circle",49)(22,"rect",50)(23,"rect",51)(24,"rect",52)(25,"rect",53)(26,"circle",54)(27,"circle",55),u.k0s(),u.j41(28,"g",56),u.nrm(29,"path",57)(30,"rect",58)(31,"polygon",59)(32,"circle",60)(33,"path",61)(34,"rect",62)(35,"rect",63)(36,"rect",64)(37,"rect",65)(38,"rect",66)(39,"rect",67)(40,"rect",68)(41,"path",69)(42,"path",70),u.k0s(),u.nrm(43,"path",71),u.k0s()(),u.nrm(44,"circle",72),u.k0s()()()(),L.joV(),u.j41(45,"div",30)(46,"mat-card-title"),u.EFF(47,"Step 1: Deciding to Loop Out"),u.k0s()(),u.j41(48,"div",31)(49,"mat-card-subtitle",32),u.EFF(50," You have a channel with a local balance amount and you want to gain inbound liquidity. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,gt,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}function Ft(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",73)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"defs")(5,"linearGradient",74),u.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),u.k0s()(),u.j41(9,"g",8)(10,"g",75)(11,"g",76),u.nrm(12,"circle",77)(13,"path",78),u.j41(14,"g",79),u.nrm(15,"polygon",80)(16,"polygon",81)(17,"path",82),u.k0s(),u.j41(18,"g",83),u.nrm(19,"polygon",84)(20,"path",85)(21,"rect",86)(22,"path",87)(23,"rect",88)(24,"rect",89)(25,"rect",90)(26,"rect",91)(27,"circle",92)(28,"path",93),u.j41(29,"g",94)(30,"g",95),u.nrm(31,"g",96),u.k0s(),u.nrm(32,"g",97),u.k0s(),u.nrm(33,"path",98),u.k0s(),u.j41(34,"g",99)(35,"g",41)(36,"g",42),u.nrm(37,"rect",43)(38,"rect",44)(39,"rect",45)(40,"circle",46)(41,"rect",47)(42,"rect",48)(43,"circle",49)(44,"rect",50)(45,"rect",51)(46,"rect",52)(47,"rect",53)(48,"circle",100)(49,"circle",54)(50,"circle",55)(51,"circle",101),u.k0s(),u.j41(52,"g",56),u.nrm(53,"path",57)(54,"rect",102)(55,"polygon",103)(56,"circle",104)(57,"path",61)(58,"rect",105)(59,"rect",106)(60,"rect",107)(61,"rect",108)(62,"rect",109)(63,"rect",110)(64,"rect",68)(65,"path",69)(66,"path",70),u.k0s(),u.nrm(67,"path",111),u.k0s()()()()()(),L.joV(),u.j41(68,"div",30)(69,"mat-card-title"),u.EFF(70,"Step 2: Send lightning payment"),u.k0s()(),u.j41(71,"div",31)(72,"mat-card-subtitle",32),u.EFF(73," Your node pays a lightning invoice for the amount requested via the loop service. This moves the local balance, for the amount paid, to the remote side of the channel. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,gt,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}function Sn(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",112)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"g",8)(5,"g",113)(6,"g",114)(7,"g",115)(8,"g",116),u.nrm(9,"circle",12)(10,"path",117),u.k0s(),u.j41(11,"g",14),u.nrm(12,"ellipse",118)(13,"ellipse",16)(14,"rect",17)(15,"rect",18)(16,"rect",19)(17,"rect",20)(18,"rect",21)(19,"rect",22)(20,"rect",23)(21,"rect",24)(22,"rect",25)(23,"rect",26)(24,"rect",27)(25,"rect",28)(26,"rect",29),u.k0s()(),u.j41(27,"g",119),u.nrm(28,"polygon",80)(29,"polygon",120)(30,"path",82),u.k0s(),u.j41(31,"g",121),u.nrm(32,"polygon",84)(33,"path",85)(34,"rect",86)(35,"path",87)(36,"rect",88)(37,"rect",89)(38,"rect",90)(39,"rect",91)(40,"circle",122)(41,"path",93),u.j41(42,"g",94)(43,"g",95),u.nrm(44,"g",96),u.k0s(),u.nrm(45,"g",97),u.k0s(),u.nrm(46,"path",123),u.k0s()()()()(),L.joV(),u.j41(47,"div",30)(48,"mat-card-title"),u.EFF(49,"Step 3: Receive funds back"),u.k0s()(),u.j41(50,"div",31)(51,"mat-card-subtitle",32),u.EFF(52," Loop service then sends you a payment on-chain for the amount same as the lightning payment minus the fee. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,gt,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}function Qn(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",124)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"defs")(5,"linearGradient",34),u.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),u.k0s()(),u.j41(9,"g",8)(10,"g",125)(11,"g",126)(12,"g",42),u.nrm(13,"rect",127)(14,"rect",128)(15,"rect",129)(16,"circle",130)(17,"rect",131)(18,"rect",132)(19,"circle",133)(20,"rect",134)(21,"rect",135)(22,"rect",136)(23,"rect",137)(24,"rect",138)(25,"circle",139)(26,"circle",140)(27,"circle",141),u.k0s(),u.j41(28,"g",142)(29,"g",143)(30,"g",144),u.nrm(31,"path",145)(32,"rect",146)(33,"polygon",147),u.j41(34,"g",148),u.nrm(35,"path",149),u.k0s(),u.nrm(36,"rect",150)(37,"rect",151)(38,"rect",152)(39,"rect",153)(40,"rect",154)(41,"rect",155)(42,"rect",156)(43,"path",157)(44,"path",158),u.k0s(),u.j41(45,"g",159),u.nrm(46,"path",160)(47,"path",161)(48,"path",162)(49,"path",163)(50,"path",164)(51,"path",165)(52,"path",166)(53,"path",167)(54,"path",168)(55,"path",169)(56,"path",170)(57,"circle",171)(58,"circle",172),u.k0s(),u.nrm(59,"path",173),u.k0s()()()()()(),L.joV(),u.j41(60,"div",30)(61,"mat-card-title"),u.EFF(62,"Done!"),u.k0s()(),u.j41(63,"div",31)(64,"mat-card-subtitle",32),u.EFF(65," Final settlement occurs when your node sweeps the on-chain payment and the loop server settles the lightning invoice. You receive the payment on-chain in your wallet and also move local balance to the remote side of the channel, gaining inbound capacity. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,gt,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}let h=(()=>{var At;class we{constructor(Lt){this.commonService=Lt,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new u.bkB,this.screenSize="",this.screenSizeEnum=O.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(Lt){2===Lt.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===Lt.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=At=()=>(this.\u0275fac=function(Ht){return new(Ht||we)(u.rXU(Ce.h))},this.\u0275cmp=u.VBU({type:we,selectors:[["rtl-loop-out-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["loopStepBlock1",""],["loopStepBlock2",""],["loopStepBlock3",""],["loopStepBlock4",""],["loopStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 108 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","Loopv0.2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopOut_Step01","transform","translate(-594.000000, -215.000000)","fill-rule","nonzero"],["id","Loop_Step01","transform","translate(594.000000, 215.000000)"],["id","Group-16","transform","translate(23.000000, 0.000000)"],["id","Oval","cx","42.4877419","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M56.0827415,28.5000036 C60.4468211,28.5000036 63.9999285,25.1343958 63.9999285,21.0000215 C63.9999285,16.8656472 60.4468211,13.5000393 56.0827415,13.5000393 C52.9843297,13.5000393 50.5608889,15.4359631 48.9999642,17.1843872 C47.4390396,15.4359631 45.0155987,13.5000393 41.9171869,13.5000393 C37.5531074,13.5000393 34,16.8656472 34,21.0000215 C34,25.1343958 37.5531074,28.5000036 41.9171869,28.5000036 C45.0155987,28.5000036 47.4390396,26.5640798 48.9999642,24.8156557 C50.5608889,26.5640798 52.9843297,28.5000036 56.0827415,28.5000036 Z M41.9171869,24.0000143 C40.0328073,24.0000143 38.4999893,22.6546959 38.4999893,21.0000286 C38.4999893,19.3453471 40.0328073,18.0000286 41.9171869,18.0000286 C43.707771,18.0000286 45.3577763,19.6921938 46.3234264,21.0000286 C45.3671604,22.2937501 43.7031019,24.0000143 41.9171869,24.0000143 Z M56.0827415,24.0000143 C54.2921574,24.0000143 52.6421522,22.3078492 51.676502,21.0000286 C52.6327681,19.7062929 54.2968266,18.0000286 56.0827415,18.0000286 C57.9671212,18.0000286 59.4999392,19.3453471 59.4999392,21.0000286 C59.4999392,22.6546959 57.9671212,24.0000143 56.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Group-21","transform","translate(0.000000, 36.000000)"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-7"],["id","Oval","opacity","0.1","cx","48.644129","cy","75.1589677","rx","40.8402581","ry","5.55600756",1,"fill-color-27"],["id","Rectangle","x","25.2325161","y","6.09470968","width","54.1068387","height","62.9512258",1,"fill-color-26"],["id","Rectangle","x","20","y","1.24344979e-14","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","20","y","26","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","19.7698065","y","52.9179355","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","67.6335484","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","viewBox","0 0 205 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","0%","id","linearGradient-1"],["stop-color","#808080","stop-opacity","0.25","offset","0%"],["stop-color","#808080","stop-opacity","0.12","offset","54%"],["stop-color","#808080","stop-opacity","0.1","offset","100%"],["id","LoopOut_Step02","transform","translate(-540.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step02","transform","translate(540.000000, 210.000000)"],["id","Illustration_Step02"],["id","Group-31"],["id","Group-2"],["id","Rectangle","x","0","y","0","width","90.1490688","height","100.616012",1,"fill-color-10"],["id","Rectangle","x","1.48932403","y","67.1775068","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","82.4918815","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","34.712875","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","42.1244006","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","50.0294431","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","2.2482432","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","24","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","42.1244006","width","36.8","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","9.66196224","width","51.2","height","16.0118784",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","50.2465905","r","8.78679245"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","82.7090289","r","8.78679245"],["id","Group","transform","translate(60.115627, 35.744427)"],["d","M133.318807,1.04548939 L82.5936439,1.04548939 L82.5936439,0 L59.5928852,0 L59.5928852,1.04548939 L8.65861943,1.04548939 C7.74861523,1.04548887 6.87588228,1.4069864 6.23241214,2.05045654 C5.58894199,2.69392669 5.22744498,3.56665964 5.22744498,4.47666384 L5.22744498,73.9350108 C5.22744498,74.8450173 5.5889387,75.7177532 6.23240879,76.3612266 C6.87587888,77.0047 7.74861298,77.3662028 8.65861943,77.3662028 L133.318807,77.3662028 C135.213795,77.3662028 136.749981,75.8300048 136.749981,73.9350167 L136.749981,4.47666384 C136.749981,3.56665964 136.388484,2.69392669 135.745014,2.05045654 C135.101544,1.4069864 134.228811,1.04548887 133.318807,1.04548939 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-25"],["id","Path","opacity","0.257273065","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-24"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-25"],["d","M31.5848237,68.0274261 C25.669241,68.0274261 20.3361447,64.4639649 18.0723494,58.9986791 C15.808554,53.5333932 17.0598755,47.2425772 21.2428244,43.0596288 C25.4257733,38.8766804 31.7165895,37.6253598 37.1818751,39.8891559 C42.6471607,42.1529519 46.2106203,47.4860487 46.2106203,53.4016314 C46.2014756,61.4754447 39.6586369,68.0182825 31.5848237,68.0274261 L31.5848237,68.0274261 Z M31.5848237,38.967022 C23.612809,38.967022 17.1502143,45.4296168 17.1502143,53.4016314 C17.1502143,61.3736461 23.612809,67.8362409 31.5848237,67.8362409 C39.5568383,67.8362409 46.0194331,61.3736461 46.0194331,53.4016314 C46.010427,45.4333502 39.5531049,38.9760281 31.5848237,38.967022 L31.5848237,38.967022 Z","id","Shape",1,"fill-color-primary"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","119.89017","y","8.50924347","width","4.7751428","height","4.7751428",1,"fill-color-6"],["d","M126.882344,15.5014148 L121.083948,15.5014148 L121.083948,9.70301894 L126.882344,9.70301894 L126.882344,15.5014148 Z M121.336061,15.2493191 L126.63024,15.2493191 L126.63024,9.95513218 L121.336061,9.95513218 L121.336061,15.2493191 Z","id","Shape",1,"fill-color-19"],["d","M140.184525,74.8570201 L128.246669,74.8570201 L128.246669,73.9969059 C128.246671,73.9516751 128.228704,73.9082962 128.196721,73.876313 C128.164738,73.8443298 128.12136,73.826364 128.076129,73.826364 L123.98315,73.826364 C123.937919,73.826364 123.89454,73.8443305 123.862558,73.8763135 C123.830575,73.9082966 123.812608,73.9516752 123.81261,73.9969059 L123.81261,74.8570201 L121.254497,74.8570201 L121.254497,73.9969059 C121.254499,73.9516752 121.236532,73.9082966 121.204549,73.8763135 C121.172566,73.8443305 121.129188,73.826364 121.083957,73.826364 L116.990978,73.826364 C116.945747,73.826364 116.902368,73.8443297 116.870385,73.8763129 C116.838402,73.908296 116.820435,73.9516749 116.820436,73.9969059 L116.820436,74.8570201 L114.262326,74.8570201 L114.262326,73.9969059 C114.262328,73.9516749 114.24436,73.908296 114.212377,73.8763129 C114.180394,73.8443297 114.137015,73.826364 114.091784,73.826364 L109.998805,73.826364 C109.953574,73.826364 109.910196,73.8443305 109.878213,73.8763135 C109.84623,73.9082966 109.828263,73.9516752 109.828265,73.9969059 L109.828265,74.8570201 L107.270153,74.8570201 L107.270153,73.9969059 C107.270154,73.9516752 107.252187,73.9082966 107.220204,73.8763135 C107.188222,73.8443305 107.144843,73.826364 107.099613,73.826364 L103.00663,73.826364 C102.961399,73.826364 102.91802,73.8443298 102.886037,73.876313 C102.854054,73.9082962 102.836088,73.9516751 102.83609,73.9969059 L102.83609,74.8570201 L100.277981,74.8570201 L100.277981,73.9969059 C100.277983,73.9516749 100.260016,73.908296 100.228032,73.8763129 C100.196049,73.8443297 100.15267,73.826364 100.107439,73.826364 L96.0144621,73.826364 C95.9692311,73.826364 95.9258522,73.8443297 95.8938691,73.8763129 C95.861886,73.908296 95.8439187,73.9516749 95.8439202,73.9969059 L95.8439202,74.8570201 L93.285808,74.8570201 L93.285808,73.9969059 C93.2858095,73.9516752 93.2678425,73.9082966 93.2358598,73.8763135 C93.2038771,73.8443305 93.1604987,73.826364 93.1152681,73.826364 L89.0222888,73.826364 C88.9770581,73.826364 88.9336797,73.8443305 88.901697,73.8763135 C88.8697143,73.9082966 88.8517473,73.9516752 88.8517489,73.9969059 L88.8517489,74.8570201 L86.2936405,74.8570201 L86.2936405,73.9969059 C86.293642,73.9516752 86.2756751,73.9082966 86.2436923,73.8763135 C86.2117096,73.8443305 86.1683312,73.826364 86.1231006,73.826364 L54.061428,73.826364 C54.0161974,73.826364 53.972819,73.8443305 53.9408363,73.8763135 C53.9088536,73.9082966 53.8908866,73.9516752 53.8908881,73.9969059 L53.8908881,74.8570201 L51.3327759,74.8570201 L51.3327759,73.9969059 C51.3327774,73.9516749 51.3148102,73.908296 51.282827,73.8763129 C51.2508439,73.8443297 51.207465,73.826364 51.162234,73.826364 L47.0692664,73.826364 C47.0240354,73.826364 46.9806565,73.8443297 46.9486734,73.8763129 C46.9166903,73.908296 46.898723,73.9516749 46.8987246,73.9969059 L46.8987246,74.8570201 L44.3406025,74.8570201 L44.3406025,73.9969059 C44.3406046,73.9516751 44.3226378,73.9082962 44.290655,73.876313 C44.2586721,73.8443298 44.2152934,73.826364 44.1700626,73.826364 L40.0770834,73.826364 C40.0318527,73.826364 39.9884743,73.8443305 39.9564916,73.8763135 C39.9245089,73.9082966 39.9065419,73.9516752 39.9065435,73.9969059 L39.9065435,74.8570201 L37.3484312,74.8570201 L37.3484312,73.9969059 C37.3484327,73.9516752 37.3304657,73.9082966 37.298483,73.8763135 C37.2665003,73.8443305 37.2231219,73.826364 37.1778913,73.826364 L33.084912,73.826364 C33.039681,73.826364 32.9963021,73.8443297 32.964319,73.8763129 C32.9323358,73.908296 32.9143686,73.9516749 32.9143701,73.9969059 L32.9143701,74.8570201 L30.3562598,74.8570201 L30.3562598,73.9969059 C30.3562614,73.9516749 30.3382941,73.908296 30.306311,73.8763129 C30.2743278,73.8443297 30.2309489,73.826364 30.1857179,73.826364 L26.0927387,73.826364 C26.047508,73.826364 26.0041296,73.8443305 25.9721469,73.8763135 C25.9401642,73.9082966 25.9221972,73.9516752 25.9221988,73.9969059 L25.9221988,74.8570201 L23.3640826,74.8570201 L23.3640826,73.9969059 C23.3640841,73.9516752 23.3461171,73.9082966 23.3141344,73.8763135 C23.2821517,73.8443305 23.2387733,73.826364 23.1935427,73.826364 L19.1005673,73.826364 C19.0553365,73.826364 19.0119578,73.8443298 18.979975,73.876313 C18.9479921,73.9082962 18.9300253,73.9516751 18.9300274,73.9969059 L18.9300274,74.8570201 L16.3719151,74.8570201 L16.3719151,73.9969059 C16.3719167,73.9516749 16.3539494,73.908296 16.3219663,73.8763129 C16.2899831,73.8443297 16.2466042,73.826364 16.2013733,73.826364 L12.1083959,73.826364 C12.0631649,73.826364 12.0197861,73.8443297 11.9878029,73.8763129 C11.9558198,73.908296 11.9378525,73.9516749 11.9378541,73.9969059 L11.9378541,74.8570201 L4.09297732,74.8570201 C1.83248849,74.8570223 0,76.6895106 0,78.9499994 L0,80.8007483 C0,83.061233 1.83249262,84.8937159 4.09297732,84.8937159 L140.184525,84.8937159 C142.44501,84.8937159 144.277504,83.0612333 144.277504,80.8007483 L144.277504,78.9499994 C144.277504,76.6895102 142.445014,74.8570223 140.184525,74.8570201 Z","id","Path",1,"fill-color-20"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-21"],["id","Oval","cx","74.1507041","cy","17.5648113","r","8.15070413",1,"fill-color-primary"],["fxFlex","30","viewBox","0 0 373 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","8.86848147e-15%","id","linearGradient-1"],["id","LoopOut_Step03","transform","translate(-460.000000, -210.000000)"],["id","Loop_Step03","transform","translate(460.000000, 210.000000)"],["id","Oval","fill-rule","nonzero","cx","330.487742","cy","57.4877419","r","42.4877419",1,"fill-color-2"],["d","M345.082742,43.5000036 C349.446821,43.5000036 352.999928,40.1343958 352.999928,36.0000215 C352.999928,31.8656472 349.446821,28.5000393 345.082742,28.5000393 C341.98433,28.5000393 339.560889,30.4359631 337.999964,32.1843872 C336.43904,30.4359631 334.015599,28.5000393 330.917187,28.5000393 C326.553107,28.5000393 323,31.8656472 323,36.0000215 C323,40.1343958 326.553107,43.5000036 330.917187,43.5000036 C334.015599,43.5000036 336.43904,41.5640798 337.999964,39.8156557 C339.560889,41.5640798 341.98433,43.5000036 345.082742,43.5000036 Z M330.917187,39.0000143 C329.032807,39.0000143 327.499989,37.6546959 327.499989,36.0000286 C327.499989,34.3453471 329.032807,33.0000286 330.917187,33.0000286 C332.707771,33.0000286 334.357776,34.6921938 335.323426,36.0000286 C334.36716,37.2937501 332.703102,39.0000143 330.917187,39.0000143 Z M345.082742,39.0000143 C343.292157,39.0000143 341.642152,37.3078492 340.676502,36.0000286 C341.632768,34.7062929 343.296827,33.0000286 345.082742,33.0000286 C346.967121,33.0000286 348.499939,34.3453471 348.499939,36.0000286 C348.499939,37.6546959 346.967121,39.0000143 345.082742,39.0000143 Z","id","i","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-44","transform","translate(113.000000, 79.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-19"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-22"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-19"],["id","Group-43","transform","translate(265.000000, 50.000000)"],["id","Path","fill-rule","nonzero","points","-9.84073267e-14 7.36243469 92.3919279 7.36243469 92.3919279 70.3073253 -1.13686838e-13 70.3073253",1,"fill-color-23"],["d","M97.5448374,1.70530257e-13 L6.62592538,1.70530257e-13 C6.01615907,0.000922175294 5.52114394,0.495001701 5.52114394,1.104768 L5.52114394,62.57664 C5.52114394,62.8696481 5.63752746,63.150658 5.84471672,63.3578447 C6.05190598,63.5650315 6.3329173,63.681408 6.62592538,63.681408 L97.5448374,63.681408 C97.8378436,63.681408 98.1188523,63.5650282 98.3260389,63.3578415 C98.5332256,63.1506549 98.6496054,62.8696462 98.6496054,62.57664 L98.6496054,1.104768 C98.6496054,0.495005713 98.1545997,0.000926622272 97.5448374,1.70530257e-13 L97.5448374,1.70530257e-13 Z M97.9130952,62.57664 C97.9130952,62.6744022 97.8747043,62.7682496 97.8055756,62.8373783 C97.736447,62.9065069 97.6425996,62.9448978 97.5448374,62.9448978 L6.62592538,62.9448978 C6.52816341,62.9448978 6.4343164,62.906506 6.3651879,62.8373775 C6.29605941,62.768249 6.25766754,62.674402 6.25766754,62.57664 L6.25766754,1.104768 C6.25766754,0.901512883 6.42267026,0.736512 6.62592538,0.736512 L97.5448374,0.736512 C97.7480931,0.736512 97.9130952,0.901512271 97.9130952,1.104768 L97.9130952,62.57664 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","10.3066764","y","43.4358624","width","41.5947948","height","4.78524211","rx","0.5376",1,"fill-color-19"],["d","M89.8141359,39.3872559 L76.5649839,39.3872559 C76.2719769,39.3872559 75.9909677,39.5036372 75.7837792,39.7108232 C75.5765907,39.9180091 75.4602025,40.1990169 75.4602025,40.4920239 L75.4602025,50.7978159 C75.4602025,51.090824 75.576586,51.3718339 75.7837753,51.5790207 C75.9909645,51.7862074 76.2719759,51.9025839 76.5649839,51.9025839 L89.8141359,51.9025839 C90.107143,51.9025839 90.3881533,51.7862079 90.5953406,51.5790206 C90.8025279,51.3718333 90.9189039,51.090823 90.9189039,50.7978159 L90.9189039,40.4920239 C90.9189039,40.199018 90.8025232,39.9180097 90.5953367,39.7108232 C90.3881502,39.5036367 90.1071419,39.3872559 89.8141359,39.3872559 Z M90.1823938,50.7978159 C90.182087,51.0010717 90.0173917,51.165767 89.8141359,51.1660719 L76.5649839,51.1660719 C76.3617256,51.165767 76.1970256,51.0010743 76.19671,50.7978159 L76.19671,40.4920239 C76.1964064,40.3942603 76.2351088,40.3004129 76.30424,40.2312847 C76.3733712,40.1621565 76.4672203,40.1234582 76.5649839,40.1237661 L89.8141359,40.1237661 C89.9118981,40.1234582 90.0057456,40.162157 90.0748742,40.2312857 C90.1440029,40.3004143 90.1827017,40.3942617 90.1823938,40.4920239 L90.1823938,50.7978159 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","41.7652758","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","44.7100416","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","47.6548047","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","11.4109632","y","4.41773875","width","19.1409684","height","8.09810266","rx","0.5376",1,"fill-color-19"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-3"],["d","M50.1798649,51.9764517 C43.6553251,51.9764517 37.7732336,48.0461636 35.2764005,42.0182748 C32.7795674,35.990386 34.1597014,29.0519859 38.773248,24.4384399 C43.3867946,19.824894 50.3251948,18.4447609 56.3530833,20.9415948 C62.3809718,23.4384287 66.3112582,29.3205207 66.3112582,35.8450605 C66.3011721,44.7500015 59.0848059,51.9663668 50.1798649,51.9764517 L50.1798649,51.9764517 Z M50.1798649,19.9245354 C41.3872016,19.9245354 34.2593397,27.0523972 34.2593397,35.8450605 C34.2593397,44.6377237 41.3872016,51.7655856 50.1798649,51.7655856 C58.9725281,51.7655856 66.10039,44.6377237 66.10039,35.8450605 C66.0904567,27.056515 58.9684103,19.9344686 50.1798649,19.9245354 L50.1798649,19.9245354 Z","id","Shape","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-23","transform","translate(5.000000, 0.001193)"],["id","Group-22"],["id","Group","transform","translate(0.378134, 0.000000)"],["id","Group-24","transform","translate(29.048000, 19.712000)"],["d","M46.60483,51.432122 C46.8713708,51.432122 47.1252368,51.2924832 47.2648756,51.0513229 L52.8499289,41.4044125 C53.145042,40.8998413 52.7801095,40.2620153 52.1930443,40.2620153 L48.5310139,40.2620153 L49.8828693,36.1430446 C50.0098023,35.6606929 49.6448699,35.184694 49.1466515,35.184694 L44.5770624,35.184694 C44.1962633,35.184694 43.8725779,35.4671324 43.8218171,35.8447396 L42.8063528,43.4607214 C42.7460473,43.9176927 43.1014659,44.3238722 43.5615982,44.3238722 L47.3283421,44.3238722 L45.8654203,50.4959909 C45.751193,50.9783426 46.1192864,51.432122 46.60483,51.432122 Z","id","b","fill-rule","nonzero","transform","translate(47.877046, 43.308408) rotate(14.000000) translate(-47.877046, -43.308408) ",1,"fill-color-12"],["id","Group-34","fill-rule","nonzero"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","17.5648113","r","8.78679245"],["id","Oval","cx","76.317438","cy","17.5648113","r","8.15070413",1,"fill-color-primary"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-8"],["id","Path","opacity","0.222721354","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-18"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-8"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-14"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-12"],["fxFlex","30","viewBox","0 0 278 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopOut_Step04","transform","translate(-503.000000, -212.000000)"],["id","Loop_Step04","transform","translate(503.000000, 212.000000)"],["id","Loop","fill-rule","nonzero"],["id","Group-16","transform","translate(24.000000, 0.000000)"],["d","M55.0827415,28.5000036 C59.4468211,28.5000036 62.9999285,25.1343958 62.9999285,21.0000215 C62.9999285,16.8656472 59.4468211,13.5000393 55.0827415,13.5000393 C51.9843297,13.5000393 49.5608889,15.4359631 47.9999642,17.1843872 C46.4390396,15.4359631 44.0155987,13.5000393 40.9171869,13.5000393 C36.5531074,13.5000393 33,16.8656472 33,21.0000215 C33,25.1343958 36.5531074,28.5000036 40.9171869,28.5000036 C44.0155987,28.5000036 46.4390396,26.5640798 47.9999642,24.8156557 C49.5608889,26.5640798 51.9843297,28.5000036 55.0827415,28.5000036 Z M40.9171869,24.0000143 C39.0328073,24.0000143 37.4999893,22.6546959 37.4999893,21.0000286 C37.4999893,19.3453471 39.0328073,18.0000286 40.9171869,18.0000286 C42.707771,18.0000286 44.3577763,19.6921938 45.3234264,21.0000286 C44.3671604,22.2937501 42.7031019,24.0000143 40.9171869,24.0000143 Z M55.0827415,24.0000143 C53.2921574,24.0000143 51.6421522,22.3078492 50.676502,21.0000286 C51.6327681,19.7062929 53.2968266,18.0000286 55.0827415,18.0000286 C56.9671212,18.0000286 58.4999392,19.3453471 58.4999392,21.0000286 C58.4999392,22.6546959 56.9671212,24.0000143 55.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-2"],["id","Group-44","transform","translate(27.000000, 69.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-23"],["id","Group-43","transform","translate(179.000000, 40.000000)"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-4"],["d","M46.519593,50.6740439 L46.519593,48.5460252 C46.9395628,48.5560039 47.349554,48.5560039 47.739557,48.5560039 L47.739557,50.6740439 L49.2794877,50.6740439 L49.2794877,48.5160274 C51.8593644,48.3760168 53.5840235,47.7260428 53.8140277,45.2961554 C53.9939838,43.3462645 53.0739982,42.476265 51.6140824,42.1263004 C52.4940295,41.6763328 53.054041,40.8763386 52.92404,39.5463928 C52.7540005,37.7264719 51.2593765,37.1164744 49.2794567,36.9465279 L49.2794567,34.4266159 L47.739526,34.4266159 L47.739526,36.8765226 C47.3395134,36.8765226 46.9295222,36.8865012 46.519562,36.8965108 L46.519562,34.4266159 L44.9796003,34.4266159 L44.9796003,36.9465279 C44.413422,36.9636341 43.7539962,36.9552669 41.8897293,36.9465279 L41.8897293,38.5864308 C43.1055717,38.564924 43.7434908,38.4867995 43.8896683,39.2663716 L43.8896683,46.1661239 C43.7968547,46.7846435 43.3018283,46.6955796 42.1997174,46.6760872 L41.8897293,48.5060178 C44.6975648,48.5060178 44.9796313,48.5160274 44.9796313,48.5160274 L44.9796313,50.6740439 L46.519593,50.6740439 Z M46.5495908,41.7662953 L46.5495908,38.6964125 C47.4195593,38.6964125 50.1394466,38.4264629 50.1394466,40.2363742 C50.1394466,41.9663016 47.4195903,41.7662953 46.5495908,41.7662953 Z M46.5495908,46.6860969 L46.5495908,43.306257 C47.5895368,43.306257 50.7741427,43.0162572 50.7741427,44.9962079 C50.7741427,46.9060914 47.5895368,46.6860969 46.5495908,46.6860969 Z","id","B","fill-rule","nonzero","transform","translate(47.863077, 42.550330) rotate(14.000000) translate(-47.863077, -42.550330) ",1,"fill-color-29"],["fxFlex","30","viewBox","0 0 200 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopOut_Step05","transform","translate(-542.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step05","transform","translate(542.000000, 210.000000)"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-11"],["id","Rectangle","x","1.34483737","y","60.660286","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","67.352783","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","31.345208","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","38.0377051","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","2.03013005","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","8.72460769","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Rectangle","x","7.80560248","y","67.352783","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","38.0377051","width","33.2298507","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","8.72460769","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.93434243",1,"fill-color-31"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","45.3719212","r","7.93434243"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","74.6850186","r","7.93434243"],["id","Group-16","transform","translate(55.804478, 34.674627)"],["id","Group-29","transform","translate(0.310627, 0.751284)"],["id","Group"],["d","M132.777455,1.04124409 L82.2582659,1.04124409 L82.2582659,0 L59.3509036,0 L59.3509036,1.04124409 L8.62346042,1.04124409 C7.71715136,1.04124358 6.84796221,1.40127322 6.20710493,2.0421305 C5.56624765,2.68298778 5.20621852,3.55217693 5.20621852,4.45848599 L5.20621852,73.6347918 C5.20621852,74.5411031 5.56624437,75.4102953 6.2071016,76.0511558 C6.84795882,76.6920163 7.71714912,77.0520512 8.62346042,77.0520512 L132.777455,77.0520512 C134.664749,77.0520512 136.194697,75.522091 136.194697,73.6347977 L136.194697,4.45848599 C136.194697,3.55217693 135.834668,2.68298778 135.193811,2.0421305 C134.552953,1.40127322 133.683764,1.04124358 132.777455,1.04124409 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.78769098","y","7.08045867","width","121.825532","height","68.7220946",1,"fill-color-7"],["id","Path","opacity","0.306775484","points","96.7732181 75.8025901 9.78772787 75.8025901 9.78772787 7.08050333",1,"fill-color-27"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary-darker"],["d","M14.5668332,29.1332406 C8.67527117,29.1332406 3.36383033,25.5842492 1.10922733,20.1411555 C-1.14537566,14.6980619 0.100864684,8.43279022 4.26682842,4.26682704 C8.43279215,0.100863866 14.698064,-1.14537564 20.1411573,1.10922807 C25.5842507,3.36383179 29.1332406,8.67527311 29.1332406,14.5668351 C29.124133,22.607864 22.6078621,29.1241341 14.5668332,29.1332406 L14.5668332,29.1332406 Z M14.5668332,0.190838576 C6.62718953,0.190838576 0.190836635,6.62719147 0.190836635,14.5668351 C0.190836635,22.5064788 6.62718953,28.9428317 14.5668332,28.9428317 C22.5064768,28.9428317 28.9428297,22.5064788 28.9428297,14.5668351 C28.9338602,6.63090975 22.5027586,0.199808125 14.5668332,0.190838576 L14.5668332,0.190838576 Z","id","Shape"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-5"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-19"],["d","M139.615294,74.5530572 L127.725913,74.5530572 L127.725913,73.6964356 C127.725915,73.6513884 127.708021,73.6081857 127.676168,73.5763323 C127.644315,73.544479 127.601113,73.5265862 127.556065,73.5265862 L123.479706,73.5265862 C123.434659,73.5265862 123.391457,73.5444797 123.359604,73.5763329 C123.327751,73.6081861 123.309857,73.6513886 123.309859,73.6964356 L123.309859,74.5530572 L120.762134,74.5530572 L120.762134,73.6964356 C120.762135,73.6513886 120.744241,73.6081861 120.712388,73.5763329 C120.680536,73.5444797 120.637333,73.5265862 120.592286,73.5265862 L116.515927,73.5265862 C116.47088,73.5265862 116.427677,73.5444789 116.395824,73.5763322 C116.36397,73.6081855 116.346076,73.6513882 116.346078,73.6964356 L116.346078,74.5530572 L113.798355,74.5530572 L113.798355,73.6964356 C113.798356,73.6513882 113.780462,73.6081855 113.748609,73.5763322 C113.716755,73.5444789 113.673553,73.5265862 113.628505,73.5265862 L109.552146,73.5265862 C109.507099,73.5265862 109.463897,73.5444797 109.432044,73.5763329 C109.400191,73.6081861 109.382297,73.6513886 109.382299,73.6964356 L109.382299,74.5530572 L106.834574,74.5530572 L106.834574,73.6964356 C106.834575,73.6513886 106.816681,73.6081861 106.784828,73.5763329 C106.752975,73.5444797 106.709773,73.5265862 106.664726,73.5265862 L102.588363,73.5265862 C102.543316,73.5265862 102.500113,73.544479 102.46826,73.5763323 C102.436407,73.6081857 102.418513,73.6513884 102.418516,73.6964356 L102.418516,74.5530572 L99.8707946,74.5530572 L99.8707946,73.6964356 C99.8707961,73.6513882 99.8529018,73.6081855 99.8210486,73.5763322 C99.7891953,73.5444789 99.7459925,73.5265862 99.7009452,73.5265862 L95.6245878,73.5265862 C95.5795404,73.5265862 95.5363377,73.5444789 95.5044844,73.5763322 C95.4726311,73.6081855 95.4547369,73.6513882 95.4547384,73.6964356 L95.4547384,74.5530572 L92.9070135,74.5530572 L92.9070135,73.6964356 C92.9070151,73.6513886 92.889121,73.6081861 92.8572682,73.5763329 C92.8254153,73.5444797 92.7822131,73.5265862 92.7371661,73.5265862 L88.6608067,73.5265862 C88.6157597,73.5265862 88.5725575,73.5444797 88.5407046,73.5763329 C88.5088518,73.6081861 88.4909577,73.6513886 88.4909593,73.6964356 L88.4909593,74.5530572 L85.9432383,74.5530572 L85.9432383,73.6964356 C85.9432399,73.6513886 85.9253458,73.6081861 85.893493,73.5763329 C85.8616401,73.5444797 85.8184379,73.5265862 85.7733909,73.5265862 L53.8419073,73.5265862 C53.7968603,73.5265862 53.7536581,73.5444797 53.7218052,73.5763329 C53.6899524,73.6081861 53.6720584,73.6513886 53.6720599,73.6964356 L53.6720599,74.5530572 L51.124335,74.5530572 L51.124335,73.6964356 C51.1243366,73.6513882 51.1064423,73.6081855 51.074589,73.5763322 C51.0427358,73.5444789 50.999533,73.5265862 50.9544857,73.5265862 L46.8781379,73.5265862 C46.8330906,73.5265862 46.7898879,73.5444789 46.7580346,73.5763322 C46.7261813,73.6081855 46.708287,73.6513882 46.7082886,73.6964356 L46.7082886,74.5530572 L44.160554,74.5530572 L44.160554,73.6964356 C44.1605561,73.6513884 44.1426622,73.6081857 44.1108092,73.5763323 C44.0789563,73.544479 44.0357537,73.5265862 43.9907066,73.5265862 L39.9143472,73.5265862 C39.8693002,73.5265862 39.8260979,73.5444797 39.7942451,73.5763329 C39.7623922,73.6081861 39.7444982,73.6513886 39.7444998,73.6964356 L39.7444998,74.5530572 L37.1967749,74.5530572 L37.1967749,73.6964356 C37.1967764,73.6513886 37.1788824,73.6081861 37.1470296,73.5763329 C37.1151767,73.5444797 37.0719745,73.5265862 37.0269275,73.5265862 L32.9505681,73.5265862 C32.9055208,73.5265862 32.862318,73.5444789 32.8304647,73.5763322 C32.7986115,73.6081855 32.7807172,73.6513882 32.7807187,73.6964356 L32.7807187,74.5530572 L30.2329958,74.5530572 L30.2329958,73.6964356 C30.2329973,73.6513882 30.215103,73.6081855 30.1832498,73.5763322 C30.1513965,73.5444789 30.1081938,73.5265862 30.0631464,73.5265862 L25.986787,73.5265862 C25.94174,73.5265862 25.8985378,73.5444797 25.866685,73.5763329 C25.8348321,73.6081861 25.8169381,73.6513886 25.8169396,73.6964356 L25.8169396,74.5530572 L23.2692109,74.5530572 L23.2692109,73.6964356 C23.2692124,73.6513886 23.2513184,73.6081861 23.2194655,73.5763329 C23.1876127,73.5444797 23.1444104,73.5265862 23.0993634,73.5265862 L19.0230079,73.5265862 C18.9779608,73.5265862 18.9347582,73.544479 18.9029053,73.5763323 C18.8710523,73.6081857 18.8531585,73.6513884 18.8531605,73.6964356 L18.8531605,74.5530572 L16.3054357,74.5530572 L16.3054357,73.6964356 C16.3054372,73.6513882 16.2875429,73.6081855 16.2556896,73.5763322 C16.2238364,73.5444789 16.1806336,73.5265862 16.1355863,73.5265862 L12.0592288,73.5265862 C12.0141815,73.5265862 11.9709788,73.5444789 11.9391255,73.5763322 C11.9072722,73.6081855 11.8893779,73.6513882 11.8893795,73.6964356 L11.8893795,74.5530572 L4.07635746,74.5530572 C1.82504753,74.5530594 0,76.3781067 0,78.6294166 L0,80.4726504 C0,82.7239563 1.82505163,84.5489982 4.07635746,84.5489982 L139.615294,84.5489982 C141.8666,84.5489982 143.691654,82.7239566 143.691654,80.4726504 L143.691654,78.6294166 C143.691654,76.3781064 141.866605,74.5530594 139.615294,74.5530572 Z","id","Path",1,"fill-color-20"],["id","Group","transform","translate(14.563343, 25.890388)"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary-darker"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M54.316416,4.55250111 L54.316416,3.34665629 C54.316416,1.49819202 52.8172532,0 50.9687888,0 L3.34762718,0 C1.49916283,0 0,1.49819202 0,3.34665629 L0,5.56999336 L54.316416,4.55250111 Z","id","Path",1,"fill-color-16"],["d","M55.6018738,5.73601547 L55.6018738,39.231705 C55.6018738,39.9999836 55.2966099,40.7367813 54.7532639,41.2799452 C54.2099179,41.8231092 53.4730179,42.1278687 52.7047393,42.1278687 L2.89810531,42.1278687 C1.29897753,42.1273325 0.00291266866,40.8308329 0.00291266866,39.231705 L0.00291266866,2.35926161 C1.43012031,2.88936731 1.43012031,2.88936731 2.89810531,2.84470639 L52.7047393,2.84470639 C54.3025103,2.84470316 55.5986611,4.13824772 55.6018738,5.73601547 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-19"],["d","M55.4601239,18.5459322 L55.4601239,29.2577567 L45.0716057,29.2577567 C42.141738,29.2183086 39.7873207,26.8319777 39.7873207,23.9018444 C39.7873207,20.9717112 42.141738,18.5853803 45.0716057,18.5459322 L55.4601239,18.5459322 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-17"],["id","Oval","opacity","0.1","cx","45.7114219","cy","23.9023299","r","2.08838343",1,"fill-color-27"],["id","Oval","cx","45.8531718","cy","23.6188301","r","2.08838343",1,"fill-color-28"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-30"]],template:function(Ht,_n){if(1&Ht&&u.DNE(0,Gt,1,0,"ng-container",5)(1,rt,32,5,"ng-template",null,0,u.C5r)(3,cn,51,5,"ng-template",null,1,u.C5r)(5,Ft,74,5,"ng-template",null,2,u.C5r)(7,Sn,53,5,"ng-template",null,3,u.C5r)(9,Qn,66,5,"ng-template",null,4,u.C5r),2&Ht){const fi=u.sdS(2),bi=u.sdS(4),Qi=u.sdS(6),zi=u.sdS(8),It=u.sdS(10);u.Y8G("ngTemplateOutlet",1===_n.stepNumber?fi:2===_n.stepNumber?bi:3===_n.stepNumber?Qi:4===_n.stepNumber?zi:It)}},dependencies:[A.YU,A.T3,j.Lc,j.dh,ce.DJ,ce.sA,ce.UI,be.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Vt.k]}}))}return At(),we})();const jt=["stepper"],Ue=()=>[1,2,3,4,5],wt=(At,we)=>({"dot-primary":At,"dot-primary-lighter":we});function pt(At,we){if(1&At&&(u.j41(0,"div",49)(1,"p",50)(2,"strong"),u.EFF(3,"Channel Peer:\xa0"),u.k0s(),u.EFF(4),u.nI1(5,"titlecase"),u.k0s(),u.j41(6,"p",51)(7,"strong"),u.EFF(8,"Channel ID:\xa0"),u.k0s(),u.EFF(9),u.k0s(),u.nrm(10,"p",51),u.k0s()),2&At){const ae=u.XpG(2);u.R7$(4),u.JRh(u.bMT(5,2,ae.channel.remote_alias)),u.R7$(5),u.JRh(ae.channel.chan_id)}}function Pt(At,we){if(1&At&&u.EFF(0),2&At){const ae=u.XpG(2);u.JRh(ae.inputFormLabel)}}function gn(At,we){1&At&&(u.j41(0,"mat-error"),u.EFF(1,"Amount is required."),u.k0s())}function ei(At,we){if(1&At&&(u.j41(0,"mat-error"),u.EFF(1),u.nI1(2,"number"),u.k0s()),2&At){const ae=u.XpG(2);u.R7$(),u.SpI("Amount must be greater than or equal to ",u.bMT(2,1,ae.minQuote.amount),".")}}function vi(At,we){if(1&At&&(u.j41(0,"mat-error"),u.EFF(1),u.nI1(2,"number"),u.k0s()),2&At){const ae=u.XpG(2);u.R7$(),u.SpI("Amount must be less than or equal to ",u.bMT(2,1,ae.maxQuote.amount),".")}}function Ni(At,we){1&At&&(u.j41(0,"mat-error"),u.EFF(1,"Confirmation target is required."),u.k0s())}function kn(At,we){1&At&&(u.j41(0,"mat-error"),u.EFF(1,"Confirmation target must be a positive number."),u.k0s())}function Ri(At,we){1&At&&(u.j41(0,"mat-error"),u.EFF(1,"Percentage is required."),u.k0s())}function vt(At,we){1&At&&(u.j41(0,"mat-error"),u.EFF(1,"Percentage must be a positive number."),u.k0s())}function ee(At,we){if(1&At&&(u.j41(0,"mat-form-field",51)(1,"mat-label"),u.EFF(2,"Max Off-chain Routing Fee (%)"),u.k0s(),u.nrm(3,"input",52),u.DNE(4,Ri,2,0,"mat-error",26)(5,vt,2,0,"mat-error",26),u.k0s()),2&At){const ae=u.XpG(2);u.R7$(3),u.Y8G("step",1),u.R7$(),u.Y8G("ngIf",null==ae.inputFormGroup.controls.routingFeePercent.errors?null:ae.inputFormGroup.controls.routingFeePercent.errors.required),u.R7$(),u.Y8G("ngIf",null==ae.inputFormGroup.controls.routingFeePercent.errors?null:ae.inputFormGroup.controls.routingFeePercent.errors.min)}}function ye(At,we){1&At&&(u.j41(0,"div",53)(1,"mat-slide-toggle",54),u.EFF(2,"Fast"),u.k0s(),u.j41(3,"mat-icon",55),u.EFF(4,"info_outline"),u.k0s()())}function ke(At,we){if(1&At&&u.EFF(0),2&At){const ae=u.XpG(2);u.JRh(ae.quoteFormLabel)}}function Se(At,we){1&At&&(u.j41(0,"p",56)(1,"mat-icon",57),u.EFF(2,"close"),u.k0s(),u.EFF(3,"Local balance amount is insufficient for swap."),u.k0s())}function ge(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",58),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.onValidateAmount())}),u.EFF(1,"Next"),u.k0s()}}function N(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",59),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.onLoop())}),u.EFF(1),u.k0s()}if(2&At){const ae=u.XpG(2);u.R7$(),u.SpI("Initiate ",ae.loopDirectionCaption)}}function Z(At,we){if(1&At&&u.EFF(0),2&At){const ae=u.XpG(3);u.JRh(ae.addressFormLabel)}}function Me(At,we){1&At&&(u.j41(0,"mat-error"),u.EFF(1,"Address is required."),u.k0s())}function at(At,we){if(1&At){const ae=u.RV6();u.j41(0,"mat-step",16)(1,"form",17),u.DNE(2,Z,1,1,"ng-template",18),u.j41(3,"div",60)(4,"mat-radio-group",61),u.bIt("change",function(Ht){L.eBV(ae);const _n=u.XpG(2);return L.Njj(_n.onAddressTypeChange(Ht))}),u.j41(5,"mat-radio-button",62),u.EFF(6,"Node Local Address"),u.k0s(),u.j41(7,"mat-radio-button",63),u.EFF(8,"External Address"),u.k0s()(),u.j41(9,"mat-form-field",64)(10,"mat-label"),u.EFF(11,"Address"),u.k0s(),u.nrm(12,"input",65),u.DNE(13,Me,2,0,"mat-error",26),u.k0s()(),u.j41(14,"div",30)(15,"button",66),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.onLoop())}),u.EFF(16),u.k0s()()()()}if(2&At){const ae=u.XpG(2);u.Y8G("stepControl",ae.addressFormGroup)("editable",ae.flgEditable),u.R7$(),u.Y8G("formGroup",ae.addressFormGroup),u.R7$(11),u.Y8G("required","external"===ae.addressFormGroup.controls.addressType.value),u.R7$(),u.Y8G("ngIf",null==ae.addressFormGroup.controls.address.errors?null:ae.addressFormGroup.controls.address.errors.required),u.R7$(3),u.SpI("Initiate ",ae.loopDirectionCaption)}}function qe(At,we){if(1&At&&u.EFF(0),2&At){const ae=u.XpG(2);u.SpI("",ae.loopDirectionCaption," Status")}}function pn(At,we){if(1&At&&(u.j41(0,"mat-icon",67),u.EFF(1),u.k0s()),2&At){const ae=u.XpG(2);u.R7$(),u.JRh(ae.loopStatus&&null!=ae.loopStatus&&ae.loopStatus.id_bytes?"check":"close")}}function Je(At,we){1&At&&u.nrm(0,"div")}function Be(At,we){1&At&&u.nrm(0,"mat-progress-bar",68)}function ut(At,we){if(1&At&&(u.j41(0,"h4",69),u.EFF(1),u.k0s()),2&At){const ae=u.XpG(2);u.R7$(),u.JRh(ae.loopStatus&&ae.loopStatus.error?ae.loopDirectionCaption+" failed.":ae.loopStatus&&ae.loopStatus.id_bytes&&ae.channel?ae.loopDirectionCaption+" request placed successfully. You can check the status of the request on the 'Loop' menu.":ae.loopDirectionCaption+" request placed successfully.")}}function Ge(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",70),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.goToLoop())}),u.EFF(1,"Check Status"),u.k0s()}}function Ot(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",71),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.onRestart())}),u.EFF(1,"Start Again"),u.k0s()}}function se(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),u.EFF(5),u.k0s()(),u.j41(6,"div",9)(7,"button",10),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG();return L.Njj(Ht.showInfo())}),u.EFF(8,"?"),u.k0s(),u.j41(9,"button",11),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG();return L.Njj(Ht.onClose())}),u.EFF(10,"X"),u.k0s()()(),u.j41(11,"mat-card-content",12)(12,"div",13),u.DNE(13,pt,11,4,"div",14),u.j41(14,"mat-vertical-stepper",15,1),u.bIt("selectionChange",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.stepSelectionChanged(Ht))}),u.j41(16,"mat-step",16)(17,"form",17),u.DNE(18,Pt,1,1,"ng-template",18),u.j41(19,"div",19),u.nrm(20,"rtl-loop-quote",20)(21,"rtl-loop-quote",21),u.k0s(),u.j41(22,"div",22)(23,"mat-form-field",23)(24,"mat-label"),u.EFF(25,"Amount"),u.k0s(),u.nrm(26,"input",24),u.j41(27,"mat-hint"),u.EFF(28),u.nI1(29,"number"),u.nI1(30,"number"),u.k0s(),u.j41(31,"span",25),u.EFF(32,"Sats"),u.k0s(),u.DNE(33,gn,2,0,"mat-error",26)(34,ei,3,3,"mat-error",26)(35,vi,3,3,"mat-error",26),u.k0s(),u.j41(36,"mat-form-field",23)(37,"mat-label"),u.EFF(38,"Sweep Confirmation Target"),u.k0s(),u.nrm(39,"input",27),u.DNE(40,Ni,2,0,"mat-error",26)(41,kn,2,0,"mat-error",26),u.k0s(),u.DNE(42,ee,6,3,"mat-form-field",28),u.k0s(),u.DNE(43,ye,5,0,"div",29),u.j41(44,"div",30)(45,"button",31),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG();return L.Njj(Ht.onEstimateQuote())}),u.EFF(46,"Estimate Quote"),u.k0s()()()(),u.j41(47,"mat-step",16)(48,"form",17),u.DNE(49,ke,1,1,"ng-template",18),u.nrm(50,"rtl-loop-quote",32),u.DNE(51,Se,4,0,"p",33),u.j41(52,"div",30),u.DNE(53,ge,2,0,"button",34)(54,N,2,1,"button",35),u.k0s()()(),u.DNE(55,at,17,6,"mat-step",36),u.j41(56,"mat-step",37)(57,"form",17),u.DNE(58,qe,1,1,"ng-template",18),u.j41(59,"div",38)(60,"mat-expansion-panel",39)(61,"mat-expansion-panel-header")(62,"mat-panel-title")(63,"span",40),u.EFF(64),u.DNE(65,pn,2,1,"mat-icon",41),u.k0s()()(),u.DNE(66,Je,1,0,"div",42),u.k0s(),u.DNE(67,Be,1,0,"mat-progress-bar",43),u.k0s(),u.DNE(68,ut,2,1,"h4",44),u.j41(69,"div",30),u.DNE(70,Ge,2,0,"button",45)(71,Ot,2,0,"button",46),u.k0s()()()(),u.j41(72,"div",47)(73,"button",48),u.EFF(74,"Close"),u.k0s()()()()()()}if(2&At){const ae=u.XpG(),Lt=u.sdS(2);u.Y8G("@opacityAnimation",void 0),u.R7$(3),u.Y8G("ngClass",ae.screenSize===ae.screenSizeEnum.XS||ae.screenSize===ae.screenSizeEnum.SM?"flex-83":"flex-91"),u.R7$(2),u.JRh(ae.channel?"Channel "+ae.loopDirectionCaption:ae.loopDirectionCaption),u.R7$(),u.Y8G("ngClass",ae.screenSize===ae.screenSizeEnum.XS||ae.screenSize===ae.screenSizeEnum.SM?"flex-17":"flex-9"),u.R7$(7),u.Y8G("ngIf",ae.channel),u.R7$(),u.Y8G("linear",!0),u.R7$(2),u.Y8G("stepControl",ae.inputFormGroup)("editable",ae.flgEditable),u.R7$(),u.Y8G("formGroup",ae.inputFormGroup),u.R7$(3),u.Y8G("quote",ae.minQuote)("panelExpanded",!1)("showPanel",!0),u.R7$(),u.Y8G("quote",ae.maxQuote)("panelExpanded",!1)("showPanel",!0),u.R7$(2),u.Y8G("ngClass",ae.direction===ae.LoopTypeEnum.LOOP_OUT?"flex-35":"flex-48"),u.R7$(3),u.Y8G("step",1e3),u.R7$(2),u.Lme("Range: ",u.bMT(29,49,ae.minQuote.amount),"-",u.bMT(30,51,ae.maxQuote.amount)),u.R7$(5),u.Y8G("ngIf",null==ae.inputFormGroup.controls.amount.errors?null:ae.inputFormGroup.controls.amount.errors.required),u.R7$(),u.Y8G("ngIf",null==ae.inputFormGroup.controls.amount.errors?null:ae.inputFormGroup.controls.amount.errors.min),u.R7$(),u.Y8G("ngIf",null==ae.inputFormGroup.controls.amount.errors?null:ae.inputFormGroup.controls.amount.errors.max),u.R7$(),u.Y8G("ngClass",ae.direction===ae.LoopTypeEnum.LOOP_OUT?"flex-30":"flex-48"),u.R7$(3),u.Y8G("step",1),u.R7$(),u.Y8G("ngIf",null==ae.inputFormGroup.controls.sweepConfTarget.errors?null:ae.inputFormGroup.controls.sweepConfTarget.errors.required),u.R7$(),u.Y8G("ngIf",null==ae.inputFormGroup.controls.sweepConfTarget.errors?null:ae.inputFormGroup.controls.sweepConfTarget.errors.min),u.R7$(),u.Y8G("ngIf",ae.direction===ae.LoopTypeEnum.LOOP_OUT),u.R7$(),u.Y8G("ngIf",ae.direction===ae.LoopTypeEnum.LOOP_OUT),u.R7$(4),u.Y8G("stepControl",ae.quoteFormGroup)("editable",ae.flgEditable),u.R7$(),u.Y8G("formGroup",ae.quoteFormGroup),u.R7$(2),u.Y8G("quote",ae.quote)("showPanel",!1),u.R7$(),u.Y8G("ngIf",ae.inputFormGroup.controls.amount.value>ae.localBalanceToCompare),u.R7$(2),u.Y8G("ngIf",ae.direction===ae.LoopTypeEnum.LOOP_OUT),u.R7$(),u.Y8G("ngIf",ae.direction===ae.LoopTypeEnum.LOOP_IN),u.R7$(),u.Y8G("ngIf",ae.direction===ae.LoopTypeEnum.LOOP_OUT),u.R7$(),u.Y8G("stepControl",ae.statusFormGroup),u.R7$(),u.Y8G("formGroup",ae.statusFormGroup),u.R7$(3),u.Y8G("expanded",!!ae.loopStatus),u.R7$(4),u.JRh(ae.loopStatus?ae.loopStatus.id_bytes?ae.loopDirectionCaption+" request details":ae.loopDirectionCaption+" error details":"Waiting for "+ae.loopDirectionCaption+" request..."),u.R7$(),u.Y8G("ngIf",ae.loopStatus),u.R7$(),u.Y8G("ngIf",!ae.loopStatus)("ngIfElse",Lt),u.R7$(),u.Y8G("ngIf",!ae.loopStatus),u.R7$(),u.Y8G("ngIf",ae.loopStatus),u.R7$(2),u.Y8G("ngIf",ae.loopStatus&&ae.loopStatus.id_bytes&&ae.channel),u.R7$(),u.Y8G("ngIf",ae.loopStatus&&(ae.loopStatus.error||!ae.loopStatus.id_bytes)),u.R7$(2),u.Y8G("mat-dialog-close",!1)}}function We(At,we){if(1&At&&u.nrm(0,"rtl-loop-status",72),2&At){const ae=u.XpG();u.Y8G("loopStatus",ae.loopStatus)}}function bt(At,we){if(1&At){const ae=u.RV6();u.j41(0,"rtl-loop-out-info-graphics",88),u.mxI("stepNumberChange",function(Ht){L.eBV(ae);const _n=u.XpG(2);return u.DH7(_n.stepNumber,Ht)||(_n.stepNumber=Ht),L.Njj(Ht)}),u.k0s()}if(2&At){const ae=u.XpG(2);u.Y8G("animationDirection",ae.animationDirection),u.R50("stepNumber",ae.stepNumber)}}function tn(At,we){if(1&At){const ae=u.RV6();u.j41(0,"rtl-loop-in-info-graphics",88),u.mxI("stepNumberChange",function(Ht){L.eBV(ae);const _n=u.XpG(2);return u.DH7(_n.stepNumber,Ht)||(_n.stepNumber=Ht),L.Njj(Ht)}),u.k0s()}if(2&At){const ae=u.XpG(2);u.Y8G("animationDirection",ae.animationDirection),u.R50("stepNumber",ae.stepNumber)}}function on(At,we){if(1&At){const ae=u.RV6();u.j41(0,"span",89),u.bIt("click",function(){const Ht=L.eBV(ae).$implicit,_n=u.XpG(2);return L.Njj(_n.onStepChanged(Ht))}),u.nrm(1,"p",90),u.k0s()}if(2&At){const ae=we.$implicit,Lt=u.XpG(2);u.R7$(),u.Y8G("ngClass",u.l_i(1,wt,Lt.stepNumber===ae,Lt.stepNumber!==ae))}}function un(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",91),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.onReadMore())}),u.EFF(1,"Read More"),u.k0s()}}function Nt(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",92),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.onStepChanged(4))}),u.EFF(1,"Back"),u.k0s()}}function dn(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",93),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return Ht.flgShowInfo=!1,L.Njj(Ht.stepNumber=1)}),u.EFF(1,"Close"),u.k0s()}}function xn(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",94),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return Ht.flgShowInfo=!1,L.Njj(Ht.stepNumber=1)}),u.EFF(1,"Close"),u.k0s()}}function Jn(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",95),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.onStepChanged(Ht.stepNumber-1))}),u.EFF(1,"Back"),u.k0s()}}function xi(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",96),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.onStepChanged(Ht.stepNumber+1))}),u.EFF(1,"Next"),u.k0s()}}function Yi(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",73)(1,"div",19)(2,"mat-card-header",74)(3,"div",75),u.nrm(4,"span",8),u.k0s(),u.j41(5,"div",76)(6,"button",11),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG();return Ht.flgShowInfo=!1,L.Njj(Ht.stepNumber=1)}),u.EFF(7,"X"),u.k0s()()(),u.j41(8,"mat-card-content",77),u.DNE(9,bt,1,2,"rtl-loop-out-info-graphics",78)(10,tn,1,2,"rtl-loop-in-info-graphics",78),u.k0s(),u.j41(11,"div",79),u.DNE(12,on,2,4,"span",80),u.k0s(),u.j41(13,"div",81),u.DNE(14,un,2,0,"button",82)(15,Nt,2,0,"button",83)(16,dn,2,0,"button",84)(17,xn,2,0,"button",85)(18,Jn,2,0,"button",86)(19,xi,2,0,"button",87),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@opacityAnimation",void 0),u.R7$(9),u.Y8G("ngIf",ae.direction===ae.LoopTypeEnum.LOOP_OUT),u.R7$(),u.Y8G("ngIf",ae.direction===ae.LoopTypeEnum.LOOP_IN),u.R7$(2),u.Y8G("ngForOf",u.lJ4(10,Ue)),u.R7$(2),u.Y8G("ngIf",5===ae.stepNumber),u.R7$(),u.Y8G("ngIf",5===ae.stepNumber),u.R7$(),u.Y8G("ngIf",5===ae.stepNumber),u.R7$(),u.Y8G("ngIf",ae.stepNumber<5),u.R7$(),u.Y8G("ngIf",ae.stepNumber>1&&ae.stepNumber<5),u.R7$(),u.Y8G("ngIf",ae.stepNumber<5)}}let Tt=(()=>{var At;class we{constructor(Lt,Ht,_n,fi,bi,Qi,zi,It,an){this.dialogRef=Lt,this.data=Ht,this.store=_n,this.loopService=fi,this.formBuilder=bi,this.decimalPipe=Qi,this.logger=zi,this.router=It,this.commonService=an,this.faInfoCircle=w.iW_,this.LoopTypeEnum=O.C7,this.direction=O.C7.LOOP_OUT,this.loopDirectionCaption="Loop out",this.loopStatus=null,this.inputFormLabel="Amount to loop out",this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address",this.prepayRoutingFee=36,this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=O.f7,this.animationDirection="forward",this.flgEditable=!0,this.localBalanceToCompare=null,this.unSubs=[new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.channel=this.data.channel,this.minQuote=this.data.minQuote?this.data.minQuote:{},this.maxQuote=this.data.maxQuote?this.data.maxQuote:{},this.direction=this.data.direction||O.C7.LOOP_OUT,this.loopDirectionCaption=this.direction===O.C7.LOOP_IN?"Loop in":"Loop out",this.inputFormLabel="Amount to "+this.loopDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.minQuote.amount,[i.k0.required,i.k0.min(this.minQuote.amount||0),i.k0.max(this.maxQuote.amount||0)]],sweepConfTarget:[6,[i.k0.required,i.k0.min(1)]],routingFeePercent:[2,[i.k0.required,i.k0.min(0)]],fast:[!1,[i.k0.required]]}),this.inputFormGroup.setErrors({Invalid:!0}),this.quoteFormGroup=this.formBuilder.group({}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[i.k0.required]],address:[{value:"",disabled:!0}]}),this.direction===O.C7.LOOP_OUT&&this.addressFormGroup.setErrors({Invalid:!0}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges(),this.store.select(f.BM).pipe((0,v.Q)(this.unSubs[6])).subscribe(Lt=>{this.localBalanceToCompare=this.channel&&this.channel.local_balance?+this.channel.local_balance:Lt.lightningBalance&&Lt.lightningBalance.local?+Lt.lightningBalance.local:null})}onFormValueChanges(){this.inputFormGroup.valueChanges.pipe((0,v.Q)(this.unSubs[4])).subscribe(Lt=>{this.inputFormGroup.setErrors({Invalid:!0})}),this.direction===O.C7.LOOP_OUT&&this.addressFormGroup.valueChanges.pipe((0,v.Q)(this.unSubs[5])).subscribe(Lt=>{this.addressFormGroup.setErrors({Invalid:!0})})}onAddressTypeChange(Lt){"external"===Lt.value?(this.addressFormGroup.controls.address.setValidators([i.k0.required]),this.addressFormGroup.controls.address.markAsTouched(),this.addressFormGroup.controls.address.enable()):(this.addressFormGroup.controls.address.setValidators(null),this.addressFormGroup.controls.address.markAsPristine(),this.addressFormGroup.controls.address.disable(),this.addressFormGroup.controls.address.setValue("")),this.addressFormGroup.setErrors({Invalid:!0})}onValidateAmount(){this.localBalanceToCompare&&this.inputFormGroup.controls.amount.value<=this.localBalanceToCompare&&this.stepper.next()}onLoop(){if(!this.inputFormGroup.controls.amount.value||this.minQuote.amount&&this.inputFormGroup.controls.amount.valuethis.maxQuote.amount||!this.inputFormGroup.controls.sweepConfTarget.value||this.inputFormGroup.controls.sweepConfTarget.value<2||this.direction===O.C7.LOOP_OUT&&(!this.inputFormGroup.controls.routingFeePercent.value||this.inputFormGroup.controls.routingFeePercent.value<0)||this.direction===O.C7.LOOP_OUT&&"external"===this.addressFormGroup.controls.addressType.value&&(!this.addressFormGroup.controls.address.value||""===this.addressFormGroup.controls.address.value.trim()))return!0;if(this.flgEditable=!1,this.stepper.selected?.stepControl.setErrors(null),this.stepper.next(),this.direction===O.C7.LOOP_IN)this.loopService.loopIn(this.inputFormGroup.controls.amount.value,+(this.quote.swap_fee_sat||0),+(this.quote.htlc_publish_fee_sat||0),"",!0).pipe((0,v.Q)(this.unSubs[0])).subscribe({next:Lt=>{this.loopStatus=Lt,this.loopService.listSwaps(),this.flgEditable=!0},error:Lt=>{this.loopStatus={error:Lt},this.flgEditable=!0,this.logger.error(Lt)}});else{const Lt=Math.ceil(this.inputFormGroup.controls.amount.value*(this.inputFormGroup.controls.routingFeePercent.value/100)),Ht="external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"",_n=this.inputFormGroup.controls.fast.value?0:(new Date).getTime()+18e5;this.loopService.loopOut(this.inputFormGroup.controls.amount.value,this.channel&&this.channel.chan_id?this.channel.chan_id:"",this.inputFormGroup.controls.sweepConfTarget.value,Lt,+(this.quote.htlc_sweep_fee_sat||0),this.prepayRoutingFee,+(this.quote.prepay_amt_sat||0),+(this.quote.swap_fee_sat||0),_n,Ht).pipe((0,v.Q)(this.unSubs[1])).subscribe({next:fi=>{this.loopStatus=fi,this.loopService.listSwaps(),this.flgEditable=!0},error:fi=>{this.loopStatus={error:fi},this.flgEditable=!0,this.logger.error(fi)}})}}onEstimateQuote(){if(!this.inputFormGroup.controls.amount.value||this.minQuote.amount&&this.inputFormGroup.controls.amount.valuethis.maxQuote.amount||!this.inputFormGroup.controls.sweepConfTarget.value||this.inputFormGroup.controls.sweepConfTarget.value<2)return!0;const Lt=this.inputFormGroup.controls.fast.value?0:(new Date).getTime()+18e5;this.direction===O.C7.LOOP_IN?this.loopService.getLoopInQuote(this.inputFormGroup.controls.amount.value,this.inputFormGroup.controls.sweepConfTarget.value,Lt).pipe((0,v.Q)(this.unSubs[2])).subscribe(Ht=>{this.quote=Ht,this.quote.off_chain_swap_routing_fee_percentage=this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:2}):this.loopService.getLoopOutQuote(this.inputFormGroup.controls.amount.value,this.inputFormGroup.controls.sweepConfTarget.value,Lt).pipe((0,v.Q)(this.unSubs[3])).subscribe(Ht=>{this.quote=Ht,this.quote.off_chain_swap_routing_fee_percentage=this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:2}),this.stepper.selected?.stepControl.setErrors(null),this.stepper.next()}stepSelectionChanged(Lt){switch(Lt.selectedIndex){case 0:default:this.inputFormLabel="Amount to "+this.loopDirectionCaption,this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.amount.value||this.inputFormGroup.controls.sweepConfTarget.value?this.direction===O.C7.LOOP_IN?this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6):this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6)+" | Percentage: "+(this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:"2")+" | Fast: "+(this.inputFormGroup.controls.fast.value?"Enabled":"Disabled"):"Amount to "+this.loopDirectionCaption,this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address";break;case 2:this.inputFormLabel=this.inputFormGroup.controls.amount.value||this.inputFormGroup.controls.sweepConfTarget.value?this.direction===O.C7.LOOP_IN?this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6):this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6)+" | Fast: "+(this.inputFormGroup.controls.fast.value?"Enabled":"Disabled"):"Amount to "+this.loopDirectionCaption,this.quoteFormLabel=this.quote&&this.quote.swap_fee_sat&&(this.quote.htlc_sweep_fee_sat||this.quote.htlc_publish_fee_sat)&&this.quote.prepay_amt_sat?"Quote confirmed | Estimated Fees: "+this.decimalPipe.transform(+this.quote.swap_fee_sat+ +(this.quote.htlc_sweep_fee_sat?this.quote.htlc_sweep_fee_sat:this.quote.htlc_publish_fee_sat?this.quote.htlc_publish_fee_sat:0))+" Sats":"Quote confirmed",this.addressFormLabel=this.addressFormGroup.controls.addressType.value?"Withdrawal Address | Type: "+this.addressFormGroup.controls.addressType.value:"Withdrawal Address"}(this.direction===O.C7.LOOP_OUT&&1!==Lt.selectedIndex&&Lt.selectedIndex{Lt.next(null),Lt.complete()})}static#e=At=()=>(this.\u0275fac=function(Ht){return new(Ht||we)(u.rXU(T.CP),u.rXU(T.Vh),u.rXU(C.il),u.rXU(B.Q),u.rXU(i.ze),u.rXU(A.QX),u.rXU(Pe.gP),u.rXU(le.Ix),u.rXU(Ce.h))},this.\u0275cmp=u.VBU({type:we,selectors:[["rtl-loop-modal"]],viewQuery:function(Ht,_n){if(1&Ht&&u.GBs(jt,5),2&Ht){let fi;u.mGM(fi=u.lsd())&&(_n.stepper=fi.first)}},standalone:!1,decls:4,vars:2,consts:[["loopStatusBlock",""],["stepper",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxLayoutAlign","start start",3,"ngClass"],[1,"page-title"],["fxLayoutAlign","space-between end",3,"ngClass"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["class","padding-gap-large","fxLayout","row wrap","fxLayoutAlign","space-between stretch",4,"ngIf"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["termCaption","min",3,"quote","panelExpanded","showPanel"],["termCaption","max",3,"quote","panelExpanded","showPanel"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],[3,"ngClass"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","amount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["matInput","","type","number","tabindex","2","formControlName","sweepConfTarget","required","",3,"step"],["fxFlex","30",4,"ngIf"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center","class","mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","5","type","button",3,"click"],[3,"quote","showPanel"],["fxFlex","100","class","color-warn mt-2","fxLayoutAlign","start center",4,"ngIf"],["mat-button","","color","primary","tabindex","6","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","7","type","button",3,"click",4,"ngIf"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[4,"ngIf","ngIfElse"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxLayoutAlign","start","class","font-bold-500 mt-2",4,"ngIf"],["mat-button","","color","primary","tabindex","12","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","13","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end end"],["mat-button","","color","primary","tabindex","14","type","button","default","",3,"mat-dialog-close"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch",1,"padding-gap-large"],["fxFlex","40"],["fxFlex","30"],["matInput","","type","number","tabindex","3","formControlName","routingFeePercent","required","",3,"step"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center",1,"mt-1"],["tabindex","4","color","primary","formControlName","fast","fxFlex","none"],["matTooltip","Swap immediately (Might end up paying a higher on-chain fee)","matTooltipPosition","above","fxFlex","none",1,"info-icon"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn","mt-2"],[1,"mr-1","icon-small"],["mat-button","","color","primary","tabindex","6","type","button",3,"click"],["mat-button","","color","primary","tabindex","7","type","button",3,"click"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["color","primary","name","addressType","formControlName","addressType","fxFlex","100","fxLayoutAlign","space-between stretch",3,"change"],["fxFlex","48","tabindex","8","value","local"],["fxFlex","48","tabindex","9","value","external"],["fxLayout","column","fxFlex","100",1,"mt-1"],["matInput","","tabindex","10","formControlName","address",3,"required"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-2"],["mat-button","","color","primary","tabindex","12","type","button",3,"click"],["mat-button","","color","primary","tabindex","13","type","button",3,"click"],["fxLayout","column",3,"loopStatus"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"animationDirection","stepNumber","stepNumberChange",4,"ngIf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","15","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["tabindex","21","fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","15","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(Ht,_n){1&Ht&&u.DNE(0,se,75,53,"div",2)(1,We,1,1,"ng-template",null,0,u.C5r)(3,Yi,20,11,"div",3),2&Ht&&(u.Y8G("ngIf",!_n.flgShowInfo),u.R7$(3),u.Y8G("ngIf",_n.flgShowInfo))},dependencies:[A.YU,A.Sq,A.bT,i.qT,i.me,i.Q0,i.BC,i.cb,i.YS,i.j4,i.JD,T.tx,Ae.$z,j.m2,j.MM,W.GK,W.Z2,W.WN,G.An,re.fg,xe.rl,xe.nJ,xe.MV,xe.TL,xe.yw,Ee.HM,V.VT,V._g,ce.DJ,ce.sA,ce.UI,be.PW,ne.sG,J.oV,De.V5,De.Ti,De.M6,Re.N,F,Ke,Qe,h,A.QX,A.PV],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[e.C]}}))}return At(),we})()},13(Zt,pe,l){"use strict";l.d(pe,{X:()=>f});var i=l(5383),d=l(3664),v=l(3694),T=l(60),w=l(8834),e=l(5596),O=l(2920);let f=(()=>{var u;class L{constructor(B){this.router=B,this.faTimes=i.GRI}goToHelp(){this.router.navigate(["/help"])}static#e=u=()=>(this.\u0275fac=function(A){return new(A||L)(d.rXU(v.Ix))},this.\u0275cmp=d.VBU({type:L,selectors:[["rtl-not-found"]],standalone:!1,decls:13,vars:1,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column",1,"padding-gap-large"],["fxLayout","column","fxLayoutAlign","start start"],[1,"box-text"],["fxLayout","row","fxLayoutAlign","center","fxFlex","80"],["mat-flat-button","","color","primary","type","button",1,"mt-2",3,"click"]],template:function(A,Pe){1&A&&(d.j41(0,"div",0),d.nrm(1,"fa-icon",1),d.j41(2,"span",2),d.EFF(3,"Page Not Found"),d.k0s()(),d.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"div",5)(8,"div",6),d.EFF(9,"This page does not exist!"),d.k0s(),d.j41(10,"span",7)(11,"button",8),d.bIt("click",function(){return Pe.goToHelp()}),d.EFF(12,"Go To Help"),d.k0s()()()()()()),2&A&&(d.R7$(),d.Y8G("icon",Pe.faTimes))},dependencies:[T.aY,w.$z,e.RN,e.m2,O.DJ,O.sA,O.UI],encapsulation:2}))}return u(),L})()},9587(Zt,pe,l){"use strict";l.d(pe,{N:()=>d});var i=l(3664);let d=(()=>{var v;class T{constructor(e){this.el=e}ngAfterContentInit(){setTimeout(()=>{this.el.nativeElement.focus()},500)}static#e=v=()=>(this.\u0275fac=function(O){return new(O||T)(i.rXU(i.aKT))},this.\u0275dir=i.FsC({type:T,selectors:[["","autoFocus",""]],inputs:{appAutoFocus:"appAutoFocus"},standalone:!1}))}return v(),T})()},9157(Zt,pe,l){"use strict";l.d(pe,{U:()=>d});var i=l(3664);let d=(()=>{var v;class T{constructor(){this.copied=new i.bkB}onClick(e){e.preventDefault(),this.payload&&(navigator.clipboard?this.copyUsingClipboardAPI():this.copyUsingFallbackMethod())}copyUsingFallbackMethod(){const e=document.createElement("textarea");e.value=this.payload,document.body.appendChild(e),e.select();try{document.execCommand("copy")?this.copied.emit(this.payload.toString()):this.copied.emit("Error could not copy text.")}finally{document.body.removeChild(e)}}copyUsingClipboardAPI(){navigator.clipboard.writeText(this.payload.toString()).then(()=>{this.copied.emit(this.payload.toString())}).catch(e=>{this.copied.emit("Error could not copy text: "+JSON.stringify(e))})}static#e=v=()=>(this.\u0275fac=function(O){return new(O||T)},this.\u0275dir=i.FsC({type:T,selectors:[["","rtlClipboard",""]],hostBindings:function(O,f){1&O&&i.bIt("click",function(L){return f.onClick(L)})},inputs:{payload:"payload"},outputs:{copied:"copied"},standalone:!1}))}return v(),T})()},92(Zt,pe,l){"use strict";l.d(pe,{z:()=>v});var i=l(9417),d=l(3664);let v=(()=>{var T;class w{validate(O){return this.max?i.k0.max(+this.max)(O):null}static#e=T=()=>(this.\u0275fac=function(f){return new(f||w)},this.\u0275dir=d.FsC({type:w,selectors:[["input","max",""]],inputs:{max:"max"},standalone:!1,features:[d.Jv_([{provide:i.cz,useExisting:w,multi:!0}])]}))}return T(),w})()},6114(Zt,pe,l){"use strict";l.d(pe,{V:()=>v});var i=l(9417),d=l(3664);let v=(()=>{var T;class w{validate(O){return this.min?i.k0.min(+this.min)(O):null}static#e=T=()=>(this.\u0275fac=function(f){return new(f||w)},this.\u0275dir=d.FsC({type:w,selectors:[["input","min",""]],inputs:{min:"min"},standalone:!1,features:[d.Jv_([{provide:i.cz,useExisting:w,multi:!0}])]}))}return T(),w})()},2929(Zt,pe,l){"use strict";l.d(pe,{Qu:()=>T,VD:()=>w,ZE:()=>v,gZ:()=>d});var i=l(3664);let d=(()=>{var e;class O{transform(u,L){return u?.replace(/^[0]+/g,"")}static#e=e=()=>(this.\u0275fac=function(L){return new(L||O)},this.\u0275pipe=i.EJ8({name:"removeleadingzeros",type:O,pure:!0,standalone:!1}))}return e(),O})(),v=(()=>{var e;class O{transform(u,L){return u?.replace(/(?:^\w|[A-Z]|\b\w)/g,(C,B)=>C.toUpperCase())?.replace(/\s+/g,"")?.replace(/-/g," ")}static#e=e=()=>(this.\u0275fac=function(L){return new(L||O)},this.\u0275pipe=i.EJ8({name:"camelcase",type:O,pure:!0,standalone:!1}))}return e(),O})(),T=(()=>{var e;class O{transform(u,L,C){return u.replace(/(?:^\w|[A-Z]|\b\w)/g,(B,A)=>" "+B.toUpperCase())}static#e=e=()=>(this.\u0275fac=function(L){return new(L||O)},this.\u0275pipe=i.EJ8({name:"camelCaseWithSpaces",type:O,pure:!0,standalone:!1}))}return e(),O})(),w=(()=>{var e;class O{transform(u,L,C){return u=u?u.toLowerCase().replace(/\s+/g,"")?.replace(/-/g," "):"",L&&(u=u.replace(new RegExp(L,"g")," ")),C&&(u=u.replace(new RegExp(C,"g")," ")),u.replace(/(?:^\w|[A-Z]|\b\w)/g,(B,A)=>B.toUpperCase())}static#e=e=()=>(this.\u0275fac=function(L){return new(L||O)},this.\u0275pipe=i.EJ8({name:"camelcaseWithReplace",type:O,pure:!0,standalone:!1}))}return e(),O})()},7186(Zt,pe,l){"use strict";l.d(pe,{Wz:()=>O,fe:()=>f,jn:()=>e,q_:()=>w});var i=l(2615),d=l(3694),v=l(3202),T=l(6354);function w(){return()=>{const u=(0,i.WQX)(d.Ix),L=(0,i.WQX)(d.nX),C=(0,i.WQX)(v.Q);return!(!C.getItem("token")||L.snapshot.url&&L.snapshot.url.length&&"settings"!==L.snapshot.url[0].path&&"auth"!==L.snapshot.url[0].path&&"true"===C.getItem("defaultPassword")&&(u.navigate(["/settings/auth"]),1))}}function e(){return()=>!!(0,i.WQX)(v.Q).watchSession().pipe((0,T.T)(L=>L.lndUnlocked))}function O(){return()=>!!(0,i.WQX)(v.Q).watchSession().pipe((0,T.T)(L=>L.clnUnlocked))}function f(){return()=>!!(0,i.WQX)(v.Q).watchSession().pipe((0,T.T)(L=>L.eclUnlocked))}},2571(Zt,pe,l){"use strict";l.d(pe,{h:()=>Pe});var i=l(1413),d=l(4412),v=l(7673),T=l(8810),w=l(9437),e=l(5558),O=l(6977),f=l(4416),u=l(2615),L=l(1534),C=l(8570),B=l(2200),A=l(345);let Pe=(()=>{var le;class Ce{constructor(j,W,G,re){this.dataService=j,this.logger=W,this.datePipe=G,this.sanitizer=re,this.currencyUnits=[],this.CurrencyUnitEnum=f.BQ,this.conversionData={data:null,last_fetched:null},this.ratesAPIStatus=f.wn.UN_INITIATED,this.screenSize=f.f7.MD,this.containerSize={width:0,height:0},this.containerSizeUpdated=new d.t(this.containerSize),this.unSubs=[new i.B,new i.B,new i.B]}getScreenSize(){return this.screenSize}setScreenSize(j){this.screenSize=j}getContainerSize(){return this.containerSize}setContainerSize(j,W){this.containerSize={width:j,height:W},this.logger.info("Container Size: "+JSON.stringify(this.containerSize)),this.containerSizeUpdated.next(this.containerSize)}sortByKey(j,W,G,re="asc"){return j.sort("number"===G?"desc"===re?(xe,Ee)=>+xe[W]>+Ee[W]?-1:1:(xe,Ee)=>+xe[W]>+Ee[W]?1:-1:"desc"===re?(xe,Ee)=>xe[W]>Ee[W]?-1:1:(xe,Ee)=>xe[W]>Ee[W]?1:-1)}sortDescByKey(j,W){return j.sort((G,re)=>{const xe=+G[W],Ee=+re[W];return xe>Ee?-1:xe{const xe=+G[W],Ee=+re[W];return xeEe?1:0})}camelCase(j){return j?.replace(/(?:^\w|[A-Z]|\b\w)/g,(W,G)=>W.toUpperCase())?.replace(/\s+/g,"")?.replace(/-/g," ")}titleCase(j,W,G){return W&&G&&""!==W&&""!==G&&(j=j?.replace(new RegExp(W,"g"),G)),j.indexOf("!\n")>0||j.indexOf(".\n")>0?j.split("\n")?.reduce((re,xe)=>re+xe.charAt(0).toUpperCase()+xe.substring(1).toLowerCase()+"\n",""):j.indexOf(" ")>0?j.split(" ")?.reduce((re,xe)=>re+xe.charAt(0).toUpperCase()+xe.substring(1).toLowerCase()+" ",""):j.charAt(0).toUpperCase()+j.substring(1).toLowerCase()}convertCurrency(j,W,G,re,xe){const Ee=(new Date).valueOf();try{return xe&&re&&(W===f.BQ.OTHER||G===f.BQ.OTHER)?this.ratesAPIStatus!==f.wn.INITIATED?this.conversionData.data&&this.conversionData.last_fetched&&Ee(this.ratesAPIStatus=f.wn.COMPLETED,this.conversionData.data=V&&"object"==typeof V?V:V&&"string"==typeof V?JSON.parse(V):{},this.conversionData.last_fetched=Ee,(0,v.of)(this.convertWithFiat(j,W,re)))),(0,w.W)(V=>(this.ratesAPIStatus=f.wn.ERROR,(0,T.$)(()=>"Currency Conversion Error."))))):(0,v.of)(this.conversionData.data&&this.conversionData.last_fetched&&Ee"Currency Conversion Error.")}}convertWithoutFiat(j,W){const G={};switch(G[f.BQ.SATS]=0,G[f.BQ.BTC]=0,W){case f.BQ.SATS:G[f.BQ.SATS]=j,G[f.BQ.BTC]=1e-8*j;break;case f.BQ.BTC:G[f.BQ.SATS]=1e8*j,G[f.BQ.BTC]=j}return G}convertWithFiat(j,W,G){const re={unit:G,iconType:"FA",symbol:null};if(G){const xe=(0,f.Zo)(this.conversionData.data[G].symbol);re.iconType=xe.iconType,re.symbol=xe&&"SVG"===xe.iconType&&xe.symbol&&"string"==typeof xe.symbol?this.sanitizer.bypassSecurityTrustHtml(xe.symbol):xe.symbol}switch(re[f.BQ.SATS]=0,re[f.BQ.BTC]=0,re[f.BQ.OTHER]=0,W){case f.BQ.SATS:re[f.BQ.SATS]=j,re[f.BQ.BTC]=1e-8*j,re[f.BQ.OTHER]=1e-8*j*this.conversionData.data[G].last;break;case f.BQ.BTC:re[f.BQ.SATS]=1e8*j,re[f.BQ.BTC]=j,re[f.BQ.OTHER]=j*this.conversionData.data[G].last;break;case f.BQ.OTHER:re[f.BQ.SATS]=j/this.conversionData.data[G].last*1e8,re[f.BQ.BTC]=j/this.conversionData.data[G].last,re[f.BQ.OTHER]=j}return re}convertTime(j,W,G){switch(W){case f.F7.SECS:switch(G){case f.F7.MINS:j/=60;break;case f.F7.HOURS:j/=f.bz;break;case f.F7.DAYS:j/=24*f.bz}break;case f.F7.MINS:switch(G){case f.F7.SECS:j*=60;break;case f.F7.HOURS:j/=60;break;case f.F7.DAYS:j/=1440}break;case f.F7.HOURS:switch(G){case f.F7.SECS:j*=f.bz;break;case f.F7.MINS:j*=60;break;case f.F7.DAYS:j/=24}break;case f.F7.DAYS:switch(G){case f.F7.SECS:j=j*f.bz*24;break;case f.F7.MINS:j=60*j*24;break;case f.F7.HOURS:j*=24}}return j}downloadFile(j,W,G=".json",re=".csv"){let xe=new Blob;xe=".json"===G?new Blob(["\ufeff"+this.convertToCSV(j)],{type:"text/csv;charset=utf-8;"}):new Blob([j.toString()],{type:"text/plain;charset=utf-8"});const Ee=document.createElement("a"),V=URL.createObjectURL(xe);-1!==navigator.userAgent.indexOf("Safari")&&-1===navigator.userAgent.indexOf("Chrome")&&Ee.setAttribute("target","_blank"),Ee.setAttribute("href",V),Ee.setAttribute("download",W+re),Ee.style.visibility="hidden",document.body.appendChild(Ee),Ee.click(),document.body.removeChild(Ee)}convertToCSV(j){const W=[];let G="",re="",xe="";return"object"!=typeof j&&(j=JSON.parse(j)),j.forEach((V,ce)=>{for(const be in V)W.findIndex(ne=>ne===be)<0&&W.push(be)}),xe=W.join(",")+"\r\n",j.forEach(V=>{G="",W.forEach(ce=>{if(V.hasOwnProperty(ce))if(Array.isArray(V[ce]))re="",V[ce].forEach((be,ne)=>{re+="object"==typeof be?"("+JSON.stringify(be)?.replace(/\,/g,";")+")":"("+be+")"}),G+=re+",";else if("object"==typeof V[ce])G+=JSON.stringify(V[ce])?.replace(/\,/g,";")+",";else if(ce.includes("timestamp")||ce.includes("date"))try{switch(V[ce].toString().length){case 10:G+=this.datePipe.transform(new Date(1e3*V[ce]),"dd/MMM/y HH:mm")+",";break;case 13:G+=this.datePipe.transform(new Date(V[ce]),"dd/MMM/y HH:mm")+",";break;default:G+=V[ce]+","}}catch{G+=V[ce]+","}else G+=V[ce]+",";else G+=","}),xe+=G.slice(0,-1)+"\r\n"}),xe}isVersionCompatible(j,W){if(j){const G=j.match(/v?(?\d+(?:\.\d+)*)/);if(G&&G.groups&&G.groups.version){this.logger.info("Current Version: "+G.groups.version),this.logger.info("Checking Compatiblility with Version: "+W);const re=G.groups.version.split(".")||[],xe=W.split(".");return+re[0]>+xe[0]||+re[0]==+xe[0]&&+re[1]>+xe[1]||+re[0]==+xe[0]&&+re[1]==+xe[1]&&+re[2]>=+xe[2]}return this.logger.error("Invalid Version String: "+j),!1}return!1}extractErrorMessage(j,W="Unknown Error."){const G=this.titleCase(j.error&&j.error.text&&"string"==typeof j.error.text&&j.error.text.includes('')?"API Route Does Not Exist.":j.error&&j.error.error&&j.error.error.error&&j.error.error.error.error&&j.error.error.error.error.error&&"string"==typeof j.error.error.error.error.error?j.error.error.error.error.error:j.error&&j.error.error&&j.error.error.error&&j.error.error.error.error&&"string"==typeof j.error.error.error.error?j.error.error.error.error:j.error&&j.error.error&&j.error.error.error&&"string"==typeof j.error.error.error?j.error.error.error:j.error&&j.error.error&&"string"==typeof j.error.error?j.error.error:j.error&&"string"==typeof j.error?j.error:j.error&&j.error.error&&j.error.error.error&&j.error.error.error.error&&j.error.error.error.error.message&&"string"==typeof j.error.error.error.error.message?j.error.error.error.error.message:j.error&&j.error.error&&j.error.error.error&&j.error.error.error.message&&"string"==typeof j.error.error.error.message?j.error.error.error.message:j.error&&j.error.error&&j.error.error.message&&"string"==typeof j.error.error.message?j.error.error.message:j.error&&j.error.message&&"string"==typeof j.error.message?j.error.message:j.message&&"string"==typeof j.message?j.message:W);return this.logger.info("Error Message: "+G),G}extractErrorCode(j,W=500){const G=j.error&&j.error.error&&j.error.error.message&&j.error.error.message.code?j.error.error.message.code:j.error&&j.error.error&&j.error.error.code?j.error.error.code:j.error&&j.error.code?j.error.code:j.code?j.code:j.status?j.status:W;return this.logger.info("Error Code: "+G),G}extractErrorNumber(j,W=500){const G=j.error&&j.error.error&&j.error.error.errno?j.error.error.errno:j.error&&j.error.errno?j.error.errno:j.errno?j.errno:j.status?j.status:W;return this.logger.info("Error Number: "+G),G}ngOnDestroy(){this.containerSizeUpdated.next(null),this.containerSizeUpdated.complete()}static#e=le=()=>(this.\u0275fac=function(W){return new(W||Ce)(u.KVO(L.u),u.KVO(C.gP),u.KVO(B.vh),u.KVO(A.up))},this.\u0275prov=u.jDH({token:Ce,factory:Ce.\u0275fac}))}return le(),Ce})()},4416(Zt,pe,l){"use strict";l.d(pe,{A$:()=>be,A0:()=>C,Ah:()=>Ke,BQ:()=>Re,Bd:()=>P,Bv:()=>re,C6:()=>vt,C7:()=>ie,F7:()=>J,G:()=>G,H$:()=>u,HW:()=>ce,Hx:()=>te,It:()=>O,Jd:()=>pt,Jr:()=>Ee,KR:()=>ve,Ld:()=>Ae,MZ:()=>St,NG:()=>e,QP:()=>oe,SY:()=>A,TC:()=>Ye,TH:()=>Qe,U1:()=>ne,UN:()=>Xe,Uq:()=>gt,Uu:()=>fe,WW:()=>vi,X8:()=>ei,XG:()=>j,Y0:()=>ot,ZC:()=>Pt,Zb:()=>Le,Zi:()=>kn,Zo:()=>Ri,_1:()=>gn,_U:()=>Gt,aG:()=>Dt,aR:()=>nt,aU:()=>ht,bz:()=>w,ck:()=>xe,f7:()=>_e,iI:()=>lt,jG:()=>Ue,k:()=>B,md:()=>le,mu:()=>wt,nv:()=>W,o1:()=>V,oi:()=>jt,on:()=>T,q9:()=>F,rl:()=>L,rs:()=>H,tj:()=>he,ul:()=>rt,wn:()=>Vt,xk:()=>cn,xp:()=>Ce,xv:()=>f});var i=l(7705),d=l(6695),v=l(5383);function T(ee){const ye=new d.xX;return ye.itemsPerPageLabel=ee+" per page:",ye}const w=3600,e=31536e3,O=24*w*7,f="0.15.10-beta",u=(0,i.naY)()?"http://localhost:3000/rtl/api":"./api",L={AUTHENTICATE_API:u+"/authenticate",CONF_API:u+"/conf",PAGE_SETTINGS_API:u+"/pagesettings",BALANCE_API:"/balance",FEES_API:"/fees",PEERS_API:"/peers",CHANNELS_API:"/channels",CHANNELS_BACKUP_API:"/channels/backup",GETINFO_API:"/getinfo",WALLET_API:"/wallet",NETWORK_API:"/network",NEW_ADDRESS_API:"/newaddress",TRANSACTIONS_API:"/transactions",PAYMENTS_API:"/payments",INVOICES_API:"/invoices",SWITCH_API:"/switch",ON_CHAIN_API:"/onchain",MESSAGE_API:"/message",OFFERS_API:"/offers",UTILITY_API:"/utility",LOOP_API:"/loop",BOLTZ_API:"/boltz",Web_SOCKET_API:"/ws"},C=["Sats","BTC"],B={Sats:"1.0-0",BTC:"1.6-6",OTHER:"1.2-2"},A=["SECS","MINS","HOURS","DAYS"],le=10,Ce=[5,10,25,100],Ae=[{addressId:"0",addressCode:"bech32",addressTp:"Bech32 (P2WKH)",addressDetails:"Pay to witness key hash"},{addressId:"1",addressCode:"p2sh-segwit",addressTp:"P2SH (NP2WKH)",addressDetails:"Pay to nested witness key hash (default)"},{addressId:"4",addressCode:"p2tr",addressTp:"Taproot (P2TR)",addressDetails:"Pay to taproot pubkey"}],j=[{id:"0",name:"Priority (Default)"},{id:"1",name:"Target Confirmation Blocks"},{id:"2",name:"Fee"}],W=[{id:"none",name:"No Fee Limit",placeholder:"No Limit"},{id:"fixed",name:"Fixed Limit (Sats)",placeholder:"Fixed Limit in Sats"},{id:"percent",name:"Percentage of Amount",placeholder:"Percentage Limit"}],G=[{feeRateId:"urgent",feeRateType:"Urgent"},{feeRateId:"normal",feeRateType:"Normal"},{feeRateId:"slow",feeRateType:"Slow"},{feeRateId:"customperkb",feeRateType:"Custom"}],re={themes:[{id:"PURPLE",name:"Diogo"},{id:"TEAL",name:"My2Sats"},{id:"INDIGO",name:"RTL"},{id:"PINK",name:"BK"},{id:"YELLOW",name:"Gold"}],modes:[{id:"DAY",name:"Day"},{id:"NIGHT",name:"Night"}]};var xe=function(ee){return ee.PAYMENT_RECEIVED="payment-received",ee.PAYMENT_RELAYED="payment-relayed",ee.PAYMENT_SENT="payment-sent",ee.PAYMENT_SETTLING_ONCHAIN="payment-settling-onchain",ee.PAYMENT_FAILED="payment-failed",ee.CHANNEL_OPENED="channel-opened",ee.CHANNEL_STATE_CHANGED="channel-state-changed",ee.CHANNEL_CLOSED="channel-closed",ee}(xe||{}),Ee=function(ee){return ee.CONNECT="connect",ee.DISCONNECT="disconnect",ee.WARNING="warning",ee.INVOICE_PAYMENT="invoice_payment",ee.INVOICE_CREATION="invoice_creation",ee.CHANNEL_OPENED="channel_opened",ee.CHANNEL_STATE_CHANGED="channel_state_changed",ee.SENDPAY_SUCCESS="sendpay_success",ee.SENDPAY_FAILURE="sendpay_failure",ee.COIN_MOVEMENT="coin_movement",ee.BALANCE_SNAPSHOT="balance_snapshot",ee.BLOCK_ADDED="block_added",ee.OPENCHANNEL_PEER_SIGS="openchannel_peer_sigs",ee.CHANNEL_OPEN_FAILED="channel_open_failed",ee}(Ee||{}),V=function(ee){return ee.INVOICE="invoice",ee}(V||{}),ce=function(ee){return ee.OPERATOR="OPERATOR",ee.MERCHANT="MERCHANT",ee.ALL="ALL",ee}(ce||{}),be=function(ee){return ee.INFORMATION="Information",ee.WARNING="Warning",ee.ERROR="Error",ee.SUCCESS="Success",ee.CONFIRM="Confirm",ee}(be||{}),ne=function(ee){return ee.NOAUTH="NOAUTH",ee.JWT="JWT",ee.PASSWORD="PASSWORD",ee}(ne||{}),J=function(ee){return ee.SECS="SECS",ee.MINS="MINS",ee.HOURS="HOURS",ee.DAYS="DAYS",ee}(J||{}),Re=function(ee){return ee.SATS="Sats",ee.BTC="BTC",ee.OTHER="OTHER",ee}(Re||{}),Xe=function(ee){return ee.ARRAY="ARRAY",ee.NUMBER="NUMBER",ee.STRING="STRING",ee.BOOLEAN="BOOLEAN",ee.PASSWORD="PASSWORD",ee.DATE="DATE",ee.DATE_TIME="DATE_TIME",ee}(Xe||{}),_e=function(ee){return ee.XS="XS",ee.SM="SM",ee.MD="MD",ee.LG="LG",ee.XL="XL",ee}(_e||{});const he={COOPERATIVE_CLOSE:{name:"Co-operative Close",tooltip:"Channel closed cooperatively"},LOCAL_FORCE_CLOSE:{name:"Local Force Close",tooltip:"Channel force-closed by the local node"},REMOTE_FORCE_CLOSE:{name:"Remote Force Close",tooltip:"Channel force-closed by the remote node"},BREACH_CLOSE:{name:"Breach Close",tooltip:"Remote node attempted to broadcast a prior revoked channel state"},FUNDING_CANCELED:{name:"Funding Canceled",tooltip:"Channel never fully opened"},ABANDONED:{name:"Abandoned",tooltip:"Channel abandoned by the local node"}},Dt={WITNESS_PUBKEY_HASH:{name:"Witness Pubkey Hash",tooltip:""},NESTED_PUBKEY_HASH:{name:"Nested Pubkey Hash",tooltip:""},UNUSED_WITNESS_PUBKEY_HASH:{name:"Unused Witness Pubkey Hash",tooltip:""},UNUSED_NESTED_PUBKEY_HASH:{name:"Unused Nested Pubkey Hash",tooltip:""},TAPROOT_PUBKEY:{name:"Taproot Pubkey Hash",tooltip:""}};var lt=function(ee){return ee.WIRE_INVALID_ONION_VERSION="Invalid Onion Version",ee.WIRE_INVALID_ONION_HMAC="Invalid Onion HMAC",ee.WIRE_INVALID_ONION_KEY="Invalid Onion Key",ee.WIRE_TEMPORARY_CHANNEL_FAILURE="Temporary Channel Failure",ee.WIRE_PERMANENT_CHANNEL_FAILURE="Permanent Channel Failure",ee.WIRE_REQUIRED_CHANNEL_FEATURE_MISSING="Missing Required Channel Feature",ee.WIRE_UNKNOWN_NEXT_PEER="Unknown Next Peer",ee.WIRE_AMOUNT_BELOW_MINIMUM="Amount Below Minimum",ee.WIRE_FEE_INSUFFICIENT="Insufficient Fee",ee.WIRE_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",ee.WIRE_EXPIRY_TOO_FAR="Expiry Too Far",ee.WIRE_EXPIRY_TOO_SOON="Expiry Too Soon",ee.WIRE_CHANNEL_DISABLED="Channel Disabled",ee.WIRE_INVALID_ONION_PAYLOAD="Invalid Onion Payload",ee.WIRE_INVALID_REALM="Invalid Realm",ee.WIRE_PERMANENT_NODE_FAILURE="Permanent Node Failure",ee.WIRE_TEMPORARY_NODE_FAILURE="Temporary Node Failure",ee.WIRE_REQUIRED_NODE_FEATURE_MISSING="Missing Required Node Feature",ee.WIRE_INVALID_ONION_BLINDING="Invalid Onion Binding",ee.WIRE_INCORRECT_OR_UNKNOWN_PAYMENT_DETAILS="Incorrect or Unknow Payment Details",ee.WIRE_MPP_TIMEOUT="MPP Timeout",ee.WIRE_FINAL_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",ee.WIRE_FINAL_INCORRECT_HTLC_AMOUNT="Incorrect HTLC Amount",ee}(lt||{}),Le=function(ee){return ee.CHANNELD_NORMAL="Active",ee.OPENINGD="Opening",ee.CHANNELD_AWAITING_LOCKIN="Pending Open",ee.CHANNELD_SHUTTING_DOWN="Shutting Down",ee.CLOSINGD_SIGEXCHANGE="Closing: Sig Exchange",ee.CLOSINGD_COMPLETE="Closed",ee.AWAITING_UNILATERAL="Awaiting Unilateral Close",ee.FUNDING_SPEND_SEEN="Funding Spend Seen",ee.ONCHAIN="Onchain",ee.DUALOPEND_OPEN_INIT="Dual Open Initialized",ee.DUALOPEND_AWAITING_LOCKIN="Dual Pending Open",ee}(Le||{}),te=function(ee){return ee.INITIATED="Initiated",ee.PREIMAGE_REVEALED="Preimage Revealed",ee.HTLC_PUBLISHED="HTLC Published",ee.SUCCESS="Successful",ee.FAILED="Failed",ee.INVOICE_SETTLED="Invoice Settled",ee}(te||{}),ie=function(ee){return ee.LOOP_OUT="LOOP_OUT",ee.LOOP_IN="LOOP_IN",ee}(ie||{}),P=function(ee){return ee.SWAP_OUT="SWAP_OUT",ee.SWAP_IN="SWAP_IN",ee}(P||{}),F=function(ee){return ee["swap.created"]="Swap Created",ee["swap.expired"]="Swap Expired",ee["invoice.set"]="Invoice Set",ee["invoice.paid"]="Invoice Paid",ee["invoice.pending"]="Invoice Pending",ee["invoice.settled"]="Invoice Settled",ee["invoice.failedToPay"]="Invoice Failed To Pay",ee["channel.created"]="Channel Created",ee["transaction.failed"]="Transaction Failed",ee["transaction.mempool"]="Transaction Mempool",ee["transaction.claimed"]="Transaction Claimed",ee["transaction.refunded"]="Transaction Refunded",ee["transaction.confirmed"]="Transaction Confirmed",ee["transaction.lockupFailed"]="Lockup Transaction Failed",ee["swap.refunded"]="Swap Refunded",ee["swap.abandoned"]="Swap Abandoned",ee}(F||{});const ve=[{name:"Jan",days:31},{name:"Feb",days:28},{name:"Mar",days:31},{name:"Apr",days:30},{name:"May",days:31},{name:"Jun",days:30},{name:"Jul",days:31},{name:"Aug",days:31},{name:"Sep",days:30},{name:"Oct",days:31},{name:"Nov",days:30},{name:"Dec",days:31}],H=["MONTHLY","YEARLY"],Ke=["password","changeme","moneyprintergobrrr"];var Vt=function(ee){return ee.UN_INITIATED="UN_INITIATED",ee.INITIATED="INITIATED",ee.COMPLETED="COMPLETED",ee.ERROR="ERROR",ee}(Vt||{});const St={NO_SPINNER:"No Spinner...",GET_NODE_INFO:"Getting Node Information...",INITALIZE_NODE_DATA:"Initializing Node Data...",GENERATE_NEW_ADDRESS:"Getting New Address...",SEND_FUNDS:"Sending Funds...",UPDATE_CHAN_POLICY:"Updating Channel Policy...",GET_CHAN_POLICY:"Fetching Channel Policy...",GET_REMOTE_POLICY:"Fetching Remote Policy...",CLOSE_CHANNEL:"Closing Channel...",FORCE_CLOSE_CHANNEL:"Force Closing Channel...",OPEN_CHANNEL:"Opening Channel...",CONNECT_PEER:"Connecting Peer...",DISCONNECT_PEER:"Disconnecting Peer...",ADD_INVOICE:"Adding Invoice...",CREATE_INVOICE:"Creating Invoice...",DELETE_INVOICE:"Deleting Invoices...",DECODE_PAYMENT:"Decoding Payment...",DECODE_OFFER:"Decoding Offer...",DECODE_PAYMENTS:"Decoding Payments...",FETCH_INVOICE:"Fetching Invoice...",GET_SENT_PAYMENTS:"Getting Sent Payments...",SEND_PAYMENT:"Sending Payment...",SEND_KEYSEND:"Sending Keysend Payment...",SEARCHING_NODE:"Searching Node...",SEARCHING_CHANNEL:"Searching Channel...",SEARCHING_INVOICE:"Searching Invoice...",SEARCHING_PAYMENT:"Searching Payment...",BACKUP_CHANNEL:"Backup Channels...",VERIFY_CHANNEL:"Verify Channel...",DOWNLOAD_BACKUP_FILE:"Downloading Backup File...",RESTORE_CHANNEL:"Restoring Channels...",GET_TERMS_QUOTES:"Getting Terms and Quotes...",LABEL_UTXO:"Labelling UTXO...",GET_NODE_ADDRESS:"Getting Node Address...",GEN_SEED:"Generating Seed...",INITIALIZE_WALLET:"Initializing Wallet...",UNLOCK_WALLET:"Unlocking Wallet...",WAIT_SYNC_NODE:"Waiting for Node Sync...",UPDATE_BOLTZ_SETTINGS:"Updating Boltz Service Settings...",UPDATE_LOOP_SETTINGS:"Updating Loop Service Settings...",UPDATE_PEERSWAP_SETTINGS:"Updating Peerswap Service Settings...",UPDATE_SETTING:"Updating Setting...",UPDATE_APPLICATION_SETTINGS:"Updating Application Settings...",UPDATE_NODE_SETTINGS:"Updating Node Settings...",UPDATE_SELECTED_NODE:"Updating Selected Node...",OPEN_CONFIG_FILE:"Opening Config File...",GET_BOLTZ_INFO:"Getting Boltz Info...",GET_SERVICE_INFO:"Getting Service Info...",GET_QUOTE:"Getting Quotes...",UPDATE_DEFAULT_NODE_SETTING:"Updating Defaule Node Settings...",GET_BOLTZ_SWAPS:"Getting Boltz Swaps...",SIGN_MESSAGE:"Signing Message...",VERIFY_MESSAGE:"Verifying Message...",BUMP_FEE:"Bumping Fee...",LEASE_UTXO:"Leasing UTXO...",GET_LOOP_INFO:"Getting Loop Info...",GET_LOOP_SWAPS:"Getting List Swaps...",GET_FORWARDING_HISTORY:"Getting Forwarding History...",GET_LOOKUP_DETAILS:"Getting Lookup Details...",GET_RTL_CONFIG:"Getting RTL Config...",VERIFY_TOKEN:"Verify Token...",DISABLE_OFFER:"Disabling Offer...",CREATE_OFFER:"Creating Offer...",DELETE_OFFER_BOOKMARK:"Deleting Bookmark...",GET_FUNDER_POLICY:"Getting Or Updating Funder Policy...",GET_LIST_CONFIGS:"Getting Configurations List...",LIST_NETWORK_NODES:"Getting Network Nodes List...",GET_PAGE_SETTINGS:"Getting Page Settings...",SET_PAGE_SETTINGS:"Setting Page Settings...",UPDATE_PAGE_SETTINGS:"Updating Page Layout...",REBALANCE_CHANNEL:"Rebalancing Channel...",LOG_OUT:"Logging Out..."};var ot=function(ee){return ee.INVOICE="INVOICE",ee.OFFER="OFFER",ee.KEYSEND="KEYSEND",ee}(ot||{}),nt=function(ee){return ee.FEES="FEES",ee.EVENTS="EVENTS",ee}(nt||{}),ht=function(ee){return ee.VOID="VOID",ee.SET_API_URL_ECL="SET_API_URL_ECL",ee.UPDATE_API_CALL_STATUS_ROOT="UPDATE_API_CALL_STATUS_ROOT",ee.RESET_ROOT_STORE="RESET_ROOT_STORE",ee.CLOSE_ALL_DIALOGS="CLOSE_ALL_DIALOGS",ee.OPEN_SNACK_BAR="OPEN_SNACKBAR",ee.OPEN_SPINNER="OPEN_SPINNER",ee.CLOSE_SPINNER="CLOSE_SPINNER",ee.OPEN_ALERT="OPEN_ALERT",ee.CLOSE_ALERT="CLOSE_ALERT",ee.OPEN_CONFIRMATION="OPEN_CONFIRMATION",ee.CLOSE_CONFIRMATION="CLOSE_CONFIRMATION",ee.SHOW_PUBKEY="SHOW_PUBKEY",ee.FETCH_CONFIG="FETCH_CONFIG",ee.SHOW_CONFIG="SHOW_CONFIG",ee.FETCH_STORE="FETCH_STORE",ee.SET_STORE="SET_STORE",ee.FETCH_APPLICATION_SETTINGS="FETCH_APPLICATION_SETTINGS",ee.SET_APPLICATION_SETTINGS="SET_APPLICATION_SETTINGS",ee.SAVE_SETTINGS="SAVE_SETTINGS",ee.SET_SELECTED_NODE="SET_SELECTED_NODE",ee.UPDATE_ROOT_NODE_SETTINGS="UPDATE_ROOT_NODE_SETTINGS",ee.UPDATE_APPLICATION_SETTINGS="UPDATE_APPLICATION_SETTINGS",ee.UPDATE_NODE_SETTINGS="UPDATE_NODE_SETTINGS",ee.SET_SELECTED_NODE_SETTINGS="SET_SELECTED_NODE_SETTINGS",ee.SET_NODE_DATA="SET_NODE_DATA",ee.IS_AUTHORIZED="IS_AUTHORIZED",ee.IS_AUTHORIZED_RES="IS_AUTHORIZED_RES",ee.LOGIN="LOGIN",ee.VERIFY_TWO_FA="VERIFY_TWO_FA",ee.LOGOUT="LOGOUT",ee.RESET_PASSWORD="RESET_PASSWORD",ee.RESET_PASSWORD_RES="RESET_PASSWORD_RES",ee.FETCH_FILE="FETCH_FILE",ee.SHOW_FILE="SHOW_FILE",ee}(ht||{}),oe=function(ee){return ee.RESET_LND_STORE="RESET_LND_STORE",ee.UPDATE_API_CALL_STATUS_LND="UPDATE_API_CALL_STATUS_LND",ee.SET_CHILD_NODE_SETTINGS_LND="SET_CHILD_NODE_SETTINGS_LND",ee.UPDATE_SELECTED_NODE_OPTIONS="UPDATE_SELECTED_NODE_OPTIONS",ee.FETCH_PAGE_SETTINGS_LND="FETCH_PAGE_SETTINGS_LND",ee.SET_PAGE_SETTINGS_LND="SET_PAGE_SETTINGS_LND",ee.SAVE_PAGE_SETTINGS_LND="SAVE_PAGE_SETTINGS_LND",ee.FETCH_INFO_LND="FETCH_INFO_LND",ee.SET_INFO_LND="SET_INFO_LND",ee.FETCH_PEERS_LND="FETCH_PEERS_LND",ee.SET_PEERS_LND="SET_PEERS_LND",ee.SAVE_NEW_PEER_LND="SAVE_NEW_PEER_LND",ee.NEWLY_ADDED_PEER_LND="NEWLY_ADDED_PEER_LND",ee.DETACH_PEER_LND="DETACH_PEER_LND",ee.REMOVE_PEER_LND="REMOVE_PEER_LND",ee.SAVE_NEW_INVOICE_LND="SAVE_NEW_INVOICE_LND",ee.NEWLY_SAVED_INVOICE_LND="NEWLY_SAVED_INVOICE_LND",ee.ADD_INVOICE_LND="ADD_INVOICE_LND",ee.FETCH_FEES_LND="FETCH_FEES_LND",ee.SET_FEES_LND="SET_FEES_LND",ee.FETCH_BLOCKCHAIN_BALANCE_LND="FETCH_BLOCKCHAIN_BALANCE_LND",ee.SET_BLOCKCHAIN_BALANCE_LND="SET_BLOCKCHAIN_BALANCE_LND",ee.FETCH_NETWORK_LND="FETCH_NETWORK_LND",ee.SET_NETWORK_LND="SET_NETWORK_LND",ee.FETCH_CHANNELS_LND="FETCH_CHANNELS_LND",ee.FETCH_PENDING_CHANNELS_LND="FETCH_PENDING_CHANNELS_LND",ee.FETCH_CLOSED_CHANNELS_LND="FETCH_CLOSED_CHANNELS_LND",ee.SET_CHANNELS_LND="SET_CHANNELS_LND",ee.SET_PENDING_CHANNELS_LND="SET_PENDING_CHANNELS_LND",ee.SET_CLOSED_CHANNELS_LND="SET_CLOSED_CHANNELS_LND",ee.UPDATE_CHANNEL_LND="UPDATE_CHANNEL_LND",ee.SAVE_NEW_CHANNEL_LND="SAVE_NEW_CHANNEL_LND",ee.CLOSE_CHANNEL_LND="CLOSE_CHANNEL_LND",ee.REMOVE_CHANNEL_LND="REMOVE_CHANNEL_LND",ee.BACKUP_CHANNELS_LND="BACKUP_CHANNELS_LND",ee.VERIFY_CHANNEL_LND="VERIFY_CHANNEL_LND",ee.BACKUP_CHANNELS_RES_LND="BACKUP_CHANNELS_RES_LND",ee.VERIFY_CHANNEL_RES_LND="VERIFY_CHANNEL_RES_LND",ee.RESTORE_CHANNELS_LIST_LND="RESTORE_CHANNELS_LIST_LND",ee.SET_RESTORE_CHANNELS_LIST_LND="SET_RESTORE_CHANNELS_LIST_LND",ee.RESTORE_CHANNELS_LND="RESTORE_CHANNELS_LND",ee.RESTORE_CHANNELS_RES_LND="RESTORE_CHANNELS_RES_LND",ee.FETCH_INVOICES_LND="FETCH_INVOICES_LND",ee.SET_INVOICES_LND="SET_INVOICES_LND",ee.UPDATE_INVOICE_LND="UPDATE_INVOICE_LND",ee.UPDATE_PAYMENT_LND="UPDATE_PAYMENT_LND",ee.SET_TOTAL_INVOICES_LND="SET_TOTAL_INVOICES_LND",ee.FETCH_TRANSACTIONS_LND="FETCH_TRANSACTIONS_LND",ee.SET_TRANSACTIONS_LND="SET_TRANSACTIONS_LND",ee.FETCH_UTXOS_LND="FETCH_UTXOS_LND",ee.SET_UTXOS_LND="SET_UTXOS_LND",ee.FETCH_PAYMENTS_LND="FETCH_PAYMENTS_LND",ee.SET_PAYMENTS_LND="SET_PAYMENTS_LND",ee.SEND_PAYMENT_LND="SEND_PAYMENT_LND",ee.SEND_PAYMENT_STATUS_LND="SEND_PAYMENT_STATUS_LND",ee.FETCH_GRAPH_NODE_LND="FETCH_GRAPH_NODE_LND",ee.SET_GRAPH_NODE_LND="SET_GRAPH_NODE_LND",ee.GET_NEW_ADDRESS_LND="GET_NEW_ADDRESS_LND",ee.SET_NEW_ADDRESS_LND="SET_NEW_ADDRESS_LND",ee.SET_CHANNEL_TRANSACTION_LND="SET_CHANNEL_TRANSACTION_LND",ee.SET_CHANNEL_TRANSACTION_RES_LND="SET_CHANNEL_TRANSACTION_RES_LND",ee.GEN_SEED_LND="GEN_SEED_LND",ee.GEN_SEED_RESPONSE_LND="GEN_SEED_RESPONSE_LND",ee.INIT_WALLET_LND="INIT_WALLET_LND",ee.INIT_WALLET_RESPONSE_LND="INIT_WALLET_RESPONSE_LND",ee.UNLOCK_WALLET_LND="UNLOCK_WALLET_LND",ee.PEER_LOOKUP_LND="PEER_LOOKUP_LND",ee.CHANNEL_LOOKUP_LND="CHANNEL_LOOKUP_LND",ee.INVOICE_LOOKUP_LND="INVOICE_LOOKUP_LND",ee.PAYMENT_LOOKUP_LND="PAYMENT_LOOKUP_LND",ee.SET_LOOKUP_LND="SET_LOOKUP_LND",ee.GET_FORWARDING_HISTORY_LND="GET_FORWARDING_HISTORY_LND",ee.SET_FORWARDING_HISTORY_LND="SET_FORWARDING_HISTORY_LND",ee.GET_QUERY_ROUTES_LND="GET_QUERY_ROUTES_LND",ee.SET_QUERY_ROUTES_LND="SET_QUERY_ROUTES_LND",ee.GET_ALL_LIGHTNING_TRANSATIONS_LND="GET_ALL_LIGHTNING_TRANSATIONS_LND",ee.SET_ALL_LIGHTNING_TRANSATIONS_LND="SET_ALL_LIGHTNING_TRANSATIONS_LND",ee}(oe||{}),Ye=function(ee){return ee.RESET_CLN_STORE="RESET_CLN_STORE",ee.UPDATE_API_CALL_STATUS_CLN="UPDATE_API_CALL_STATUS_CLN",ee.SET_CHILD_NODE_SETTINGS_CLN="SET_CHILD_NODE_SETTINGS_CLN",ee.FETCH_PAGE_SETTINGS_CLN="FETCH_PAGE_SETTINGS_CLN",ee.SET_PAGE_SETTINGS_CLN="SET_PAGE_SETTINGS_CLN",ee.SAVE_PAGE_SETTINGS_CLN="SAVE_PAGE_SETTINGS_CLN",ee.FETCH_INFO_CLN="FETCH_INFO_CL_CLN",ee.SET_INFO_CLN="SET_INFO_CLN",ee.FETCH_FEES_CLN="FETCH_FEES_CLN",ee.SET_FEES_CLN="SET_FEES_CLN",ee.FETCH_FEE_RATES_CLN="FETCH_FEE_RATES_CLN",ee.SET_FEE_RATES_CLN="SET_FEE_RATES_CLN",ee.GET_NEW_ADDRESS_CLN="GET_NEW_ADDRESS_CLN",ee.SET_NEW_ADDRESS_CLN="SET_NEW_ADDRESS_CLN",ee.FETCH_UTXO_BALANCES_CLN="FETCH_UTXO_BALANCES_CLN",ee.SET_UTXO_BALANCES_CLN="SET_UTXO_BALANCES_CLN",ee.FETCH_PEERS_CLN="FETCH_PEERS_CLN",ee.SET_PEERS_CLN="SET_PEERS_CLN",ee.SAVE_NEW_PEER_CLN="SAVE_NEW_PEER_CLN",ee.NEWLY_ADDED_PEER_CLN="NEWLY_ADDED_PEER_CLN",ee.ADD_PEER_CLN="ADD_PEER_CLN",ee.DETACH_PEER_CLN="DETACH_PEER_CLN",ee.REMOVE_PEER_CLN="REMOVE_PEER_CLN",ee.FETCH_CHANNELS_CLN="FETCH_CHANNELS_CLN",ee.SET_CHANNELS_CLN="SET_CHANNELS_CLN",ee.UPDATE_CHANNEL_CLN="UPDATE_CHANNEL_CLN",ee.SAVE_NEW_CHANNEL_CLN="SAVE_NEW_CHANNEL_CLN",ee.CLOSE_CHANNEL_CLN="CLOSE_CHANNEL_CLN",ee.REMOVE_CHANNEL_CLN="REMOVE_CHANNEL_CLN",ee.FETCH_PAYMENTS_CLN="FETCH_PAYMENTS_CLN",ee.SET_PAYMENTS_CLN="SET_PAYMENTS_CLN",ee.SEND_PAYMENT_CLN="SEND_PAYMENT_CLN",ee.SEND_PAYMENT_STATUS_CLN="SEND_PAYMENT_STATUS_CLN",ee.GET_QUERY_ROUTES_CLN="GET_QUERY_ROUTES_CLN",ee.SET_QUERY_ROUTES_CLN="SET_QUERY_ROUTES_CLN",ee.PEER_LOOKUP_CLN="PEER_LOOKUP_CLN",ee.CHANNEL_LOOKUP_CLN="CHANNEL_LOOKUP_CLN",ee.INVOICE_LOOKUP_CLN="INVOICE_LOOKUP_CLN",ee.SET_LOOKUP_CLN="SET_LOOKUP_CLN",ee.GET_FORWARDING_HISTORY_CLN="GET_FORWARDING_HISTORY_CLN",ee.SET_FORWARDING_HISTORY_CLN="SET_FORWARDING_HISTORY_CLN",ee.GET_FAILED_FORWARDING_HISTORY_CLN="GET_FAILED_FORWARDING_HISTORY_CLN",ee.SET_FAILED_FORWARDING_HISTORY_CLN="SET_FAILED_FORWARDING_HISTORY_CLN",ee.GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",ee.SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",ee.FETCH_INVOICES_CLN="FETCH_INVOICES_CLN",ee.SET_INVOICES_CLN="SET_INVOICES_CLN",ee.SAVE_NEW_INVOICE_CLN="SAVE_NEW_INVOICE_CLN",ee.ADD_INVOICE_CLN="ADD_INVOICE_CLN",ee.UPDATE_INVOICE_CLN="UPDATE_INVOICE_CLN",ee.DELETE_EXPIRED_INVOICE_CLN="DELETE_EXPIRED_INVOICE_CLN",ee.SET_CHANNEL_TRANSACTION_CLN="SET_CHANNEL_TRANSACTION_CLN",ee.SET_CHANNEL_TRANSACTION_RES_CLN="SET_CHANNEL_TRANSACTION_RES_CLN",ee.FETCH_OFFER_INVOICE_CLN="FETCH_OFFER_INVOICE_CLN",ee.SET_OFFER_INVOICE_CLN="SET_OFFER_INVOICE_CLN",ee.FETCH_OFFERS_CLN="FETCH_OFFERS_CLN",ee.SET_OFFERS_CLN="SET_OFFERS_CLN",ee.SAVE_NEW_OFFER_CLN="SAVE_NEW_OFFER_CLN",ee.ADD_OFFER_CLN="ADD_OFFER_CLN",ee.DISABLE_OFFER_CLN="DISABLE_OFFER_CLN",ee.UPDATE_OFFER_CLN="UPDATE_OFFER_CLN",ee.FETCH_OFFER_BOOKMARKS_CLN="FETCH_OFFER_BOOKMARKS_CLN",ee.SET_OFFER_BOOKMARKS_CLN="SET_OFFER_BOOKMARKS_CLN",ee.ADD_UPDATE_OFFER_BOOKMARK_CLN="ADD_UPDATE_OFFER_BOOKMARK_CLN",ee.DELETE_OFFER_BOOKMARK_CLN="DELETE_OFFER_BOOKMARK_CLN",ee.REMOVE_OFFER_BOOKMARK_CLN="REMOVE_OFFER_BOOKMARK_CL",ee}(Ye||{}),fe=function(ee){return ee.RESET_ECL_STORE="RESET_ECL_STORE",ee.UPDATE_API_CALL_STATUS_ECL="UPDATE_API_CALL_STATUS_ECL",ee.SET_CHILD_NODE_SETTINGS_ECL="SET_CHILD_NODE_SETTINGS_ECL",ee.FETCH_PAGE_SETTINGS_ECL="FETCH_PAGE_SETTINGS_ECL",ee.SET_PAGE_SETTINGS_ECL="SET_PAGE_SETTINGS_ECL",ee.SAVE_PAGE_SETTINGS_ECL="SAVE_PAGE_SETTINGS_ECL",ee.FETCH_INFO_ECL="FETCH_INFO_ECL",ee.SET_INFO_ECL="SET_INFO_ECL",ee.FETCH_FEES_ECL="FETCH_FEES_ECL",ee.SET_FEES_ECL="SET_FEES_ECL",ee.FETCH_CHANNELS_ECL="FETCH_CHANNELS_ECL",ee.SET_ACTIVE_CHANNELS_ECL="SET_ACTIVE_CHANNELS_ECL",ee.SET_PENDING_CHANNELS_ECL="SET_PENDING_CHANNELS_ECL",ee.SET_INACTIVE_CHANNELS_ECL="SET_INACTIVE_CHANNELS_ECL",ee.FETCH_ONCHAIN_BALANCE_ECL="FETCH_ONCHAIN_BALANCE_ECL",ee.SET_ONCHAIN_BALANCE_ECL="SET_ONCHAIN_BALANCE_ECL",ee.FETCH_LIGHTNING_BALANCE_ECL="FETCH_LIGHTNING_BALANCE_ECL",ee.SET_LIGHTNING_BALANCE_ECL="SET_LIGHTNING_BALANCE_ECL",ee.SET_CHANNELS_STATUS_ECL="SET_CHANNELS_STATUS_ECL",ee.FETCH_PEERS_ECL="FETCH_PEERS_ECL",ee.SET_PEERS_ECL="SET_PEERS_ECL",ee.SAVE_NEW_PEER_ECL="SAVE_NEW_PEER_ECL",ee.NEWLY_ADDED_PEER_ECL="NEWLY_ADDED_PEER_ECL",ee.ADD_PEER_ECL="ADD_PEER_ECL",ee.DETACH_PEER_ECL="DETACH_PEER_ECL",ee.REMOVE_PEER_ECL="REMOVE_PEER_ECL",ee.GET_NEW_ADDRESS_ECL="GET_NEW_ADDRESS_ECL",ee.SET_NEW_ADDRESS_ECL="SET_NEW_ADDRESS_ECL",ee.SAVE_NEW_CHANNEL_ECL="SAVE_NEW_CHANNEL_ECL",ee.UPDATE_CHANNEL_ECL="UPDATE_CHANNEL_ECL",ee.CLOSE_CHANNEL_ECL="CLOSE_CHANNEL_ECL",ee.REMOVE_CHANNEL_ECL="REMOVE_CHANNEL_ECL",ee.FETCH_PAYMENTS_ECL="FETCH_PAYMENTS_ECL",ee.SET_PAYMENTS_ECL="SET_PAYMENTS_ECL",ee.GET_QUERY_ROUTES_ECL="GET_QUERY_ROUTES_ECL",ee.SET_QUERY_ROUTES_ECL="SET_QUERY_ROUTES_ECL",ee.SEND_PAYMENT_ECL="SEND_PAYMENT_ECL",ee.SEND_PAYMENT_STATUS_ECL="SEND_PAYMENT_STATUS_ECL",ee.FETCH_TRANSACTIONS_ECL="FETCH_TRANSACTIONS_ECL",ee.SET_TRANSACTIONS_ECL="SET_TRANSACTIONS_ECL",ee.SEND_ONCHAIN_FUNDS_ECL="SEND_ONCHAIN_FUNDS_ECL",ee.SEND_ONCHAIN_FUNDS_RES_ECL="SEND_ONCHAIN_FUNDS_RES_ECL",ee.FETCH_INVOICES_ECL="FETCH_INVOICES_ECL",ee.SET_INVOICES_ECL="SET_INVOICES_ECL",ee.SET_TOTAL_INVOICES_ECL="SET_TOTAL_INVOICES_ECL",ee.CREATE_INVOICE_ECL="CREATE_INVOICE_ECL",ee.ADD_INVOICE_ECL="ADD_INVOICE_ECL",ee.UPDATE_INVOICE_ECL="UPDATE_INVOICE_ECL",ee.PEER_LOOKUP_ECL="PEER_LOOKUP_ECL",ee.INVOICE_LOOKUP_ECL="INVOICE_LOOKUP_ECL",ee.SET_LOOKUP_ECL="SET_LOOKUP_ECL",ee.UPDATE_CHANNEL_STATE_ECL="UPDATE_CHANNEL_STATE_ECL",ee.UPDATE_RELAYED_PAYMENT_ECL="UPDATE_RELAYED_PAYMENT_ECL",ee}(fe||{});const Qe=[{range:{min:0,max:1},description:"Requires or supports extra channel re-establish fields"},{range:{min:4,max:5},description:"Commits to a shutdown script pubkey when opening channel"},{range:{min:6,max:7},description:"More sophisticated gossip control"},{range:{min:8,max:9},description:"Requires/supports variable-length routing onion payloads"},{range:{min:10,max:11},description:"Gossip queries can include additional information"},{range:{min:12,max:13},description:"Static key for remote output"},{range:{min:14,max:15},description:"Node supports payment secret field"},{range:{min:16,max:17},description:"Node can receive basic multi-part payments"},{range:{min:18,max:19},description:"Node can create large channels"},{range:{min:20,max:21},description:"Anchor outputs"},{range:{min:22,max:23},description:"Anchor commitment type with zero fee HTLC transactions"},{range:{min:26,max:27},description:"Future segwit versions allowed in shutdown"},{range:{min:30,max:31},description:"AMP support"},{range:{min:44,max:45},description:"Explicit commitment type"}];var gt=function(ee){return ee.gossip_queries_ex="Gossip queries including additional information",ee.option_anchor_outputs="Anchor outputs",ee.option_data_loss_protect="Extra channel re-establish fields",ee.var_onion_optin="Variable-length routing onion payloads",ee.option_static_remotekey="Static key for remote output",ee.option_support_large_channel="Create large channels",ee.option_anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",ee.payment_secret="Payment secret field",ee.option_shutdown_anysegwit="Future segwit versions allowed in shutdown",ee.basic_mpp="Basic multi-part payments",ee.gossip_queries="More sophisticated gossip control",ee.option_upfront_shutdown_script="Shutdown script pubkey when opening channel",ee.anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",ee.amp="AMP",ee}(gt||{}),Gt=function(ee){return ee["data-loss-protect"]="Extra channel re-establish fields",ee["upfront-shutdown-script"]="Shutdown script pubkey when opening channel",ee["gossip-queries"]="More sophisticated gossip control",ee["tlv-onion"]="Variable-length routing onion payloads",ee["ext-gossip-queries"]="Gossip queries can include additional information",ee["static-remote-key"]="Static key for remote output",ee["payment-addr"]="Payment secret field",ee["multi-path-payments"]="Basic multi-part payments",ee["wumbo-channels"]="Wumbo Channels",ee.anchors="Anchor outputs",ee["anchors-zero-fee-htlc-tx"]="Anchor commitment type with zero fee HTLC transactions",ee.amp="AMP",ee}(Gt||{});const rt=[{id:"match",placeholder:"Policy Match (%age)",min:0,max:200},{id:"available",placeholder:"Policy Available (%age)",min:0,max:100},{id:"fixed",placeholder:"Fixed Policy (Sats)",min:0,max:100}];var cn=function(ee){return ee.OFFERED="offered",ee.SETTLED="settled",ee.FAILED="failed",ee.LOCAL_FAILED="local_failed",ee}(cn||{}),jt=function(ee){return ee.ASCENDING="asc",ee.DESCENDING="desc",ee}(jt||{});const Ue=["asc","desc"],wt=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:le,sortBy:"blockheight",sortOrder:jt.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]},{tableId:"dust_utxos",recordsPerPage:le,sortBy:"blockheight",sortOrder:jt.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:le,sortBy:"msatoshi_to_us",sortOrder:jt.DESCENDING,columnSelectionSM:["alias","msatoshi_to_us","msatoshi_to_them"],columnSelection:["short_channel_id","alias","msatoshi_to_us","msatoshi_to_them","balancedness"]},{tableId:"pending_inactive_channels",recordsPerPage:le,sortBy:"state",sortOrder:jt.DESCENDING,columnSelectionSM:["alias","state"],columnSelection:["alias","connected","state","msatoshi_total"]},{tableId:"peers",recordsPerPage:le,sortBy:"alias",sortOrder:jt.ASCENDING,columnSelectionSM:["alias","id"],columnSelection:["alias","id","netaddr"]},{tableId:"active_HTLCs",recordsPerPage:le,sortBy:"expiry",sortOrder:jt.DESCENDING,columnSelectionSM:["amount_msat","direction","expiry"],columnSelection:["amount_msat","direction","expiry","state"]}]},{pageId:"liquidity_ads",tables:[{tableId:"liquidity_ads",recordsPerPage:le,sortBy:"channel_opening_fee",sortOrder:jt.ASCENDING,columnSelectionSM:["alias","channel_opening_fee"],columnSelection:["alias","last_timestamp","lease_fee","routing_fee","channel_opening_fee"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:le,sortBy:"created_at",sortOrder:jt.DESCENDING,columnSelectionSM:["created_at","msatoshi"],columnSelection:["created_at","type","payment_hash","msatoshi_sent","msatoshi"]},{tableId:"invoices",recordsPerPage:le,sortBy:"expires_at",sortOrder:jt.DESCENDING,columnSelectionSM:["expires_at","msatoshi"],columnSelection:["expires_at","paid_at","type","description","msatoshi","msatoshi_received"]},{tableId:"offers",recordsPerPage:le,sortBy:"offer_id",sortOrder:jt.DESCENDING,columnSelectionSM:["offer_id","single_use"],columnSelection:["offer_id","single_use","used"]},{tableId:"offer_bookmarks",recordsPerPage:le,sortBy:"lastUpdatedAt",sortOrder:jt.DESCENDING,columnSelectionSM:["lastUpdatedAt","amountMSat"],columnSelection:["lastUpdatedAt","title","description","amountMSat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:le,sortBy:"received_time",sortOrder:jt.DESCENDING,columnSelectionSM:["received_time","in_msatoshi","out_msatoshi"],columnSelection:["received_time","resolved_time","in_channel_alias","out_channel_alias","in_msatoshi","out_msatoshi","fee"]},{tableId:"routing_peers",recordsPerPage:le,sortBy:"total_fee",sortOrder:jt.DESCENDING,columnSelectionSM:["alias","events","total_fee"],columnSelection:["channel_id","alias","events","total_amount","total_fee"]},{tableId:"failed",recordsPerPage:le,sortBy:"received_time",sortOrder:jt.DESCENDING,columnSelectionSM:["received_time","in_channel_alias","in_msatoshi"],columnSelection:["received_time","resolved_time","in_channel_alias","out_channel_alias","in_msatoshi","out_msatoshi","fee"]},{tableId:"local_failed",recordsPerPage:le,sortBy:"received_time",sortOrder:jt.DESCENDING,columnSelectionSM:["received_time","in_channel_alias","in_msatoshi"],columnSelection:["received_time","in_channel_alias","in_msatoshi","style","failreason"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:le,sortBy:"received_time",sortOrder:jt.DESCENDING,columnSelectionSM:["received_time","in_msatoshi","out_msatoshi"],columnSelection:["received_time","resolved_time","in_channel_alias","out_channel_alias","in_msatoshi","out_msatoshi","fee"]},{tableId:"transactions",recordsPerPage:le,sortBy:"date",sortOrder:jt.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]},{pageId:"graph_lookup",tables:[{tableId:"query_routes",recordsPerPage:le,sortBy:"msatoshi",sortOrder:jt.DESCENDING,columnSelectionSM:["alias","direction","msatoshi"],columnSelection:["alias","channel","direction","delay","msatoshi"]}]}],pt={on_chain:{utxos:{maxColumns:7,allowedColumns:[{column:"txid",label:"Transaction ID"},{column:"address"},{column:"scriptpubkey",label:"Script Pubkey"},{column:"output"},{column:"value"},{column:"blockheight"},{column:"reserved"}]},dust_utxos:{maxColumns:7,allowedColumns:[{column:"txid",label:"Transaction ID"},{column:"address"},{column:"scriptpubkey",label:"Script Pubkey"},{column:"output"},{column:"value"},{column:"blockheight"},{column:"reserved"}]}},peers_channels:{open_channels:{maxColumns:8,allowedColumns:[{column:"short_channel_id"},{column:"alias"},{column:"id"},{column:"channel_id"},{column:"funding_txid",label:"Funding Transaction ID"},{column:"connected"},{column:"our_channel_reserve_satoshis",label:"Local Reserve"},{column:"their_channel_reserve_satoshis",label:"Remote Reserve"},{column:"msatoshi_total",label:"Total"},{column:"spendable_msatoshi",label:"Spendable"},{column:"msatoshi_to_us",label:"Local Balance"},{column:"msatoshi_to_them",label:"Remote Balance"},{column:"balancedness",label:"Balance Score"}]},pending_inactive_channels:{maxColumns:8,allowedColumns:[{column:"alias"},{column:"id"},{column:"channel_id"},{column:"funding_txid",label:"Funding Transaction ID"},{column:"connected"},{column:"state"},{column:"our_channel_reserve_satoshis",label:"Local Reserve"},{column:"their_channel_reserve_satoshis",label:"Remote Reserve"},{column:"msatoshi_total",label:"Total"},{column:"spendable_msatoshi",label:"Spendable"},{column:"msatoshi_to_us",label:"Local Balance"},{column:"msatoshi_to_them",label:"Remote Balance"}]},peers:{maxColumns:3,allowedColumns:[{column:"alias"},{column:"id"},{column:"netaddr",label:"Network Address"}]},active_HTLCs:{maxColumns:7,allowedColumns:[{column:"amount_msat",label:"Amount (Sats)"},{column:"direction"},{column:"id",label:"HTLC ID"},{column:"state"},{column:"expiry"},{column:"payment_hash"},{column:"local_trimmed"}]}},liquidity_ads:{liquidity_ads:{maxColumns:8,allowedColumns:[{column:"alias"},{column:"nodeid",label:"Node ID"},{column:"last_timestamp",label:"Last Announcement At"},{column:"compact_lease"},{column:"lease_fee"},{column:"routing_fee"},{column:"channel_opening_fee"},{column:"funding_weight"}]}},transactions:{payments:{maxColumns:7,allowedColumns:[{column:"created_at",label:"Created At"},{column:"type"},{column:"payment_hash"},{column:"bolt11",label:"Invoice"},{column:"destination"},{column:"memo"},{column:"label"},{column:"msatoshi_sent",label:"Sats Sent"},{column:"msatoshi",label:"Sats Received"}]},invoices:{maxColumns:7,allowedColumns:[{column:"expires_at",label:"Expiry Date"},{column:"paid_at",label:"Date Settled"},{column:"type"},{column:"description"},{column:"label"},{column:"payment_hash"},{column:"bolt11",label:"Invoice"},{column:"msatoshi",label:"Amount"},{column:"msatoshi_received",label:"Amount Settled"}]},offers:{maxColumns:4,allowedColumns:[{column:"offer_id",label:"Offer ID"},{column:"single_use"},{column:"used"},{column:"bolt12",label:"Invoice"}]},offer_bookmarks:{maxColumns:6,allowedColumns:[{column:"lastUpdatedAt",label:"Updated At"},{column:"title"},{column:"description"},{column:"issuer"},{column:"bolt12",label:"Invoice"},{column:"amountMSat",label:"Amount"}]}},routing:{forwarding_history:{maxColumns:8,allowedColumns:[{column:"received_time"},{column:"resolved_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"payment_hash"},{column:"in_msatoshi",label:"Amount In"},{column:"out_msatoshi",label:"Amount Out"},{column:"fee"}]},routing_peers:{maxColumns:5,allowedColumns:[{column:"channel_id"},{column:"alias",label:"Peer Alias"},{column:"events"},{column:"total_amount",label:"Amount"},{column:"total_fee",label:"Fee"}]},failed:{maxColumns:7,allowedColumns:[{column:"received_time"},{column:"resolved_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"in_msatoshi",label:"Amount In"},{column:"out_msatoshi",label:"Amount Out"},{column:"fee"}]},local_failed:{maxColumns:6,allowedColumns:[{column:"received_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"in_msatoshi",label:"Amount In"},{column:"style"},{column:"failreason",label:"Fail Reason"}]}},reports:{routing:{maxColumns:8,allowedColumns:[{column:"received_time"},{column:"resolved_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"payment_hash"},{column:"in_msatoshi",label:"Amount In"},{column:"out_msatoshi",label:"Amount Out"},{column:"fee"}]},transactions:{maxColumns:5,allowedColumns:[{column:"date"},{column:"amount_paid"},{column:"num_payments",label:"# Payments"},{column:"amount_received"},{column:"num_invoices",label:"# Invoices"}]}},graph_lookup:{query_routes:{maxColumns:6,allowedColumns:[{column:"id"},{column:"alias"},{column:"channel"},{column:"direction"},{column:"delay"},{column:"msatoshi",label:"Amount"}]}}},Pt=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:le,sortBy:"tx_id",sortOrder:jt.DESCENDING,columnSelectionSM:["output","amount_sat"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]},{tableId:"transactions",recordsPerPage:le,sortBy:"time_stamp",sortOrder:jt.DESCENDING,columnSelectionSM:["time_stamp","amount","num_confirmations"],columnSelection:["time_stamp","label","amount","total_fees","block_height","num_confirmations"]},{tableId:"dust_utxos",recordsPerPage:le,sortBy:"tx_id",sortOrder:jt.DESCENDING,columnSelectionSM:["output","amount_sat"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open",recordsPerPage:le,sortBy:"balancedness",sortOrder:jt.DESCENDING,columnSelectionSM:["remote_alias","local_balance"],columnSelection:["remote_alias","uptime_str","total_satoshis_sent","total_satoshis_received","local_balance","remote_balance","balancedness"]},{tableId:"pending_open",sortBy:"capacity",sortOrder:jt.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","commit_fee","commit_weight","capacity"]},{tableId:"pending_force_closing",sortBy:"limbo_balance",sortOrder:jt.DESCENDING,columnSelectionSM:["remote_alias","blocks_til_maturity","limbo_balance"],columnSelection:["remote_alias","blocks_til_maturity","recovered_balance","limbo_balance","capacity"]},{tableId:"pending_closing",sortBy:"capacity",sortOrder:jt.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","local_balance","remote_balance","capacity"]},{tableId:"pending_waiting_close",sortBy:"limbo_balance",sortOrder:jt.DESCENDING,columnSelectionSM:["remote_alias","limbo_balance"],columnSelection:["remote_alias","limbo_balance","local_balance","remote_balance"]},{tableId:"closed",recordsPerPage:le,sortBy:"close_type",sortOrder:jt.DESCENDING,columnSelectionSM:["remote_alias","settled_balance"],columnSelection:["close_type","remote_alias","capacity","close_height","settled_balance"]},{tableId:"active_HTLCs",recordsPerPage:le,sortBy:"incoming",sortOrder:jt.ASCENDING,columnSelectionSM:["amount","incoming","expiration_height"],columnSelection:["amount","incoming","expiration_height","hash_lock"]},{tableId:"peers",recordsPerPage:le,sortBy:"alias",sortOrder:jt.DESCENDING,columnSelectionSM:["alias","sat_sent","sat_recv"],columnSelection:["alias","pub_key","sat_sent","sat_recv","ping_time"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:le,sortBy:"creation_date",sortOrder:jt.DESCENDING,columnSelectionSM:["creation_date","fee","value"],columnSelection:["creation_date","payment_hash","fee","value","hops"]},{tableId:"invoices",recordsPerPage:le,sortBy:"creation_date",sortOrder:jt.DESCENDING,columnSelectionSM:["creation_date","settle_date","value"],columnSelection:["creation_date","settle_date","memo","value","amt_paid_sat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:le,sortBy:"timestamp",sortOrder:jt.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"routing_peers",recordsPerPage:le,sortBy:"total_amount",sortOrder:jt.DESCENDING,columnSelectionSM:["alias","events","total_amount"],columnSelection:["chan_id","alias","events","total_amount"]},{tableId:"non_routing_peers",recordsPerPage:le,sortBy:"remote_alias",sortOrder:jt.DESCENDING,columnSelectionSM:["remote_alias","local_balance","remote_balance"],columnSelection:["chan_id","remote_alias","total_satoshis_received","total_satoshis_sent","local_balance","remote_balance"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:le,sortBy:"timestamp",sortOrder:jt.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"transactions",recordsPerPage:le,sortBy:"date",sortOrder:jt.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]},{pageId:"graph_lookup",tables:[{tableId:"query_routes",recordsPerPage:le,sortBy:"hop_sequence",sortOrder:jt.ASCENDING,columnSelectionSM:["hop_sequence","pubkey_alias","fee_msat"],columnSelection:["hop_sequence","pubkey_alias","chan_capacity","amt_to_forward_msat","fee_msat"]}]},{pageId:"loop",tables:[{tableId:"loop",recordsPerPage:le,sortBy:"initiation_time",sortOrder:jt.DESCENDING,columnSelectionSM:["state","amt"],columnSelection:["state","initiation_time","amt","cost_server","cost_offchain","cost_onchain"]}]},{pageId:"boltz",tables:[{tableId:"swap_out",recordsPerPage:le,sortBy:"status",sortOrder:jt.DESCENDING,columnSelectionSM:["status","id","onchainAmount"],columnSelection:["status","id","claimAddress","onchainAmount","timeoutBlockHeight"]},{tableId:"swap_in",recordsPerPage:le,sortBy:"status",sortOrder:jt.DESCENDING,columnSelectionSM:["status","id","expectedAmount"],columnSelection:["status","id","lockupAddress","expectedAmount","timeoutBlockHeight"]}]}],gn={on_chain:{utxos:{maxColumns:7,allowedColumns:[{column:"tx_id",label:"Transaction ID"},{column:"output"},{column:"label"},{column:"address_type"},{column:"address"},{column:"amount_sat",label:"Amount"},{column:"confirmations"}]},transactions:{maxColumns:7,allowedColumns:[{column:"time_stamp",label:"Date/Time"},{column:"label"},{column:"block_hash"},{column:"tx_hash",label:"Transaction Hash"},{column:"amount"},{column:"total_fees",label:"Fees"},{column:"block_height"},{column:"num_confirmations",label:"Confirmations"}]},dust_utxos:{maxColumns:7,allowedColumns:[{column:"tx_id",label:"Transaction ID"},{column:"output"},{column:"label"},{column:"address_type"},{column:"address"},{column:"amount_sat"},{column:"confirmations"}]}},peers_channels:{open:{maxColumns:8,allowedColumns:[{column:"remote_alias",label:"Peer"},{column:"remote_pubkey",label:"Pubkey"},{column:"channel_point"},{column:"chan_id",label:"Channel ID"},{column:"initiator"},{column:"static_remote_key"},{column:"uptime_str",label:"Uptime"},{column:"lifetime_str",label:"Lifetime"},{column:"commit_fee"},{column:"commit_weight"},{column:"fee_per_kw",label:"Fee/KW"},{column:"num_updates",label:"Updates"},{column:"unsettled_balance"},{column:"capacity"},{column:"local_chan_reserve_sat",label:"Local Reserve"},{column:"remote_chan_reserve_sat",label:"Remote Reserve"},{column:"total_satoshis_sent",label:"Sats Sent"},{column:"total_satoshis_received",label:"Sats Received"},{column:"local_balance"},{column:"remote_balance"},{column:"balancedness",label:"Balance Score"}]},pending_open:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"confirmation_height"},{column:"commit_fee"},{column:"commit_weight"},{column:"fee_per_kw",label:"Fee/KW"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},pending_force_closing:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"closing_txid",label:"Closing Tx ID"},{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"limbo_balance"},{column:"maturity_height"},{column:"blocks_til_maturity",label:"Blocks till Maturity"},{column:"recovered_balance"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},pending_closing:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"closing_txid",label:"Closing Tx ID"},{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},pending_waiting_close:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"closing_txid",label:"Closing Tx ID"},{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"limbo_balance"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},closed:{maxColumns:7,allowedColumns:[{column:"close_type"},{column:"remote_alias",label:"Peer"},{column:"remote_pubkey",label:"Pubkey"},{column:"channel_point"},{column:"chan_id",label:"Channel ID"},{column:"closing_tx_hash",label:"Closing Tx Hash"},{column:"chain_hash"},{column:"open_initiator"},{column:"close_initiator"},{column:"time_locked_balance",label:"Timelocked Balance"},{column:"capacity"},{column:"close_height"},{column:"settled_balance"}]},active_HTLCs:{maxColumns:7,allowedColumns:[{column:"amount"},{column:"incoming"},{column:"forwarding_channel"},{column:"htlc_index"},{column:"forwarding_htlc_index"},{column:"expiration_height"},{column:"hash_lock"}]},peers:{maxColumns:8,allowedColumns:[{column:"alias"},{column:"pub_key",label:"Public Key"},{column:"address"},{column:"sync_type"},{column:"inbound"},{column:"bytes_sent"},{column:"bytes_recv",label:"Bytes Received"},{column:"sat_sent",label:"Sats Sent"},{column:"sat_recv",label:"Sats Received"},{column:"ping_time"}]}},transactions:{payments:{maxColumns:8,allowedColumns:[{column:"creation_date"},{column:"payment_hash"},{column:"payment_request"},{column:"payment_preimage"},{column:"description"},{column:"description_hash"},{column:"failure_reason"},{column:"payment_index"},{column:"fee"},{column:"value"},{column:"hops"}]},invoices:{maxColumns:9,allowedColumns:[{column:"private"},{column:"is_keysend",label:"Keysend"},{column:"is_amp",label:"AMP"},{column:"creation_date",label:"Date Created"},{column:"settle_date",label:"Date Settled"},{column:"memo"},{column:"r_preimage",label:"Preimage"},{column:"r_hash",label:"Preimage Hash"},{column:"payment_addr",label:"Payment Address"},{column:"payment_request"},{column:"description_hash"},{column:"expiry"},{column:"cltv_expiry"},{column:"add_index"},{column:"settle_index"},{column:"value",label:"Amount"},{column:"amt_paid_sat",label:"Amount Settled"}]}},routing:{forwarding_history:{maxColumns:6,allowedColumns:[{column:"timestamp"},{column:"alias_in",label:"Inbound Alias"},{column:"chan_id_in",label:"Inbound Channel"},{column:"alias_out",label:"Outbound Alias"},{column:"chan_id_out",label:"Outbound Channel"},{column:"amt_in",label:"Inbound Amount"},{column:"amt_out",label:"Outbound Amount"},{column:"fee_msat",label:"Fee"}]},routing_peers:{maxColumns:4,allowedColumns:[{column:"chan_id",label:"Channel ID"},{column:"alias",label:"Peer Alias"},{column:"events"},{column:"total_amount"}]},non_routing_peers:{maxColumns:8,allowedColumns:[{column:"chan_id",label:"Channel ID"},{column:"remote_alias",label:"Peer Alias"},{column:"remote_pubkey",label:"Peer Pubkey"},{column:"channel_point"},{column:"uptime_str",label:"Uptime"},{column:"lifetime_str",label:"Lifetime"},{column:"commit_fee"},{column:"commit_weight"},{column:"fee_per_kw",label:"Fee/KW"},{column:"num_updates",label:"Updates"},{column:"unsettled_balance"},{column:"capacity"},{column:"local_chan_reserve_sat",label:"Local Reserve"},{column:"remote_chan_reserve_sat",label:"Remote Reserve"},{column:"total_satoshis_sent",label:"Sats Sent"},{column:"total_satoshis_received",label:"Sats Received"},{column:"local_balance"},{column:"remote_balance"}]}},reports:{routing:{maxColumns:6,allowedColumns:[{column:"timestamp"},{column:"alias_in",label:"Inbound Alias"},{column:"chan_id_in",label:"Inbound Channel"},{column:"alias_out",label:"Outbound Alias"},{column:"chan_id_out",label:"Outbound Channel"},{column:"amt_in",label:"Inbound Amount"},{column:"amt_out",label:"Outbound Amount"},{column:"fee_msat",label:"Fee"}]},transactions:{maxColumns:5,allowedColumns:[{column:"date"},{column:"amount_paid"},{column:"num_payments",label:"# Payments"},{column:"amount_received"},{column:"num_invoices",label:"# Invoices"}]}},graph_lookup:{query_routes:{maxColumns:8,disablePageSize:!0,allowedColumns:[{column:"hop_sequence",label:"Hop"},{column:"pubkey_alias",label:"Peer"},{column:"pub_key",label:"Peer Pubkey"},{column:"chan_id",label:"Channel ID"},{column:"tlv_payload"},{column:"expiry"},{column:"chan_capacity",label:"Capacity"},{column:"amt_to_forward_msat",label:"Amount To Fwd"},{column:"fee_msat",label:"Fee"}]}},loop:{loop:{maxColumns:8,allowedColumns:[{column:"state"},{column:"initiation_time"},{column:"last_update_time"},{column:"amt",label:"Amount"},{column:"cost_server"},{column:"cost_offchain"},{column:"cost_onchain"},{column:"htlc_address"},{column:"id"},{column:"id_bytes",label:"ID (Bytes)"}]}},boltz:{swap_out:{maxColumns:7,allowedColumns:[{column:"status"},{column:"id",label:"Swap ID"},{column:"claimAddress",label:"Claim Address"},{column:"onchainAmount",label:"Onchain Amount"},{column:"error"},{column:"privateKey",label:"Private Key"},{column:"preimage"},{column:"redeemScript",label:"Redeem Script"},{column:"invoice"},{column:"timeoutBlockHeight",label:"Timeout Block Height"},{column:"lockupTransactionId",label:"Lockup Tx ID"},{column:"claimTransactionId",label:"Claim Tx ID"}]},swap_in:{maxColumns:7,allowedColumns:[{column:"status"},{column:"id",label:"Swap ID"},{column:"lockupAddress",label:"Lockup Address"},{column:"expectedAmount",label:"Expected Amount"},{column:"error"},{column:"privateKey",label:"Private Key"},{column:"preimage"},{column:"redeemScript",label:"Redeem Script"},{column:"invoice"},{column:"timeoutBlockHeight",label:"Timeout Block Height"},{column:"lockupTransactionId",label:"Lockup Tx ID"},{column:"refundTransactionId",label:"Refund Tx ID"}]}}},ei=[{pageId:"on_chain",tables:[{tableId:"transaction",recordsPerPage:le,sortBy:"timestamp",sortOrder:jt.DESCENDING,columnSelectionSM:["timestamp","amount"],columnSelection:["timestamp","address","amount","fees","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:le,sortBy:"alias",sortOrder:jt.DESCENDING,columnSelectionSM:["alias","toLocal","toRemote"],columnSelection:["shortChannelId","alias","feeBaseMsat","feeProportionalMillionths","toLocal","toRemote","balancedness"]},{tableId:"pending_channels",recordsPerPage:le,sortBy:"alias",sortOrder:jt.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","alias","toLocal","toRemote"]},{tableId:"inactive_channels",recordsPerPage:le,sortBy:"alias",sortOrder:jt.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","shortChannelId","alias","toLocal","toRemote","balancedness"]},{tableId:"peers",recordsPerPage:le,sortBy:"alias",sortOrder:jt.ASCENDING,columnSelectionSM:["alias","nodeId"],columnSelection:["alias","nodeId","address","channels"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:le,sortBy:"firstPartTimestamp",sortOrder:jt.DESCENDING,columnSelectionSM:["firstPartTimestamp","recipientAmount"],columnSelection:["firstPartTimestamp","id","recipientNodeAlias","recipientAmount"]},{tableId:"invoices",recordsPerPage:le,sortBy:"receivedAt",sortOrder:jt.DESCENDING,columnSelectionSM:["timestamp","amount","amountSettled"],columnSelection:["timestamp","receivedAt","description","amount","amountSettled"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:le,sortBy:"timestamp",sortOrder:jt.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"routing_peers",recordsPerPage:le,sortBy:"totalFee",sortOrder:jt.DESCENDING,columnSelectionSM:["alias","events","totalFee"],columnSelection:["channelId","alias","events","totalAmount","totalFee"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:le,sortBy:"timestamp",sortOrder:jt.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"transactions",recordsPerPage:le,sortBy:"date",sortOrder:jt.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]}],vi={on_chain:{transaction:{maxColumns:6,allowedColumns:[{column:"timestamp",label:"Date/Time"},{column:"address"},{column:"blockHash"},{column:"txid",label:"Transaction ID"},{column:"amount"},{column:"fees"},{column:"confirmations"}]}},peers_channels:{open_channels:{maxColumns:8,allowedColumns:[{column:"shortChannelId"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isInitiator",label:"Initiator"},{column:"feeBaseMsat",label:"Base Fee"},{column:"feeProportionalMillionths",label:"Fee Rate"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"},{column:"balancedness",label:"Balance Score"}]},pending_channels:{maxColumns:7,allowedColumns:[{column:"state"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isInitiator",label:"Initiator"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"}]},inactive_channels:{maxColumns:8,allowedColumns:[{column:"state"},{column:"shortChannelId"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isInitiator",label:"Initiator"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"},{column:"balancedness",label:"Balance Score"}]},peers:{maxColumns:4,allowedColumns:[{column:"alias"},{column:"nodeId"},{column:"address",label:"Netwrok Address"},{column:"channels"}]}},transactions:{payments:{maxColumns:7,allowedColumns:[{column:"firstPartTimestamp",label:"Date/Time"},{column:"id"},{column:"recipientNodeId",label:"Destination Node ID"},{column:"recipientNodeAlias",label:"Destination"},{column:"description"},{column:"paymentHash"},{column:"paymentPreimage",label:"Preimage"},{column:"recipientAmount",label:"Amount"}]},invoices:{maxColumns:7,allowedColumns:[{column:"timestamp",label:"Date Created"},{column:"expiresAt",label:"Date Expiry"},{column:"receivedAt",label:"Date Settled"},{column:"nodeId",label:"Node ID"},{column:"description"},{column:"paymentHash"},{column:"amount"},{column:"amountSettled",label:"Amount Settled"}]}},routing:{forwarding_history:{maxColumns:7,allowedColumns:[{column:"timestamp",label:"Date/Time"},{column:"fromChannelId",label:"In Channel ID"},{column:"fromShortChannelId",label:"In Channel Short ID"},{column:"fromChannelAlias",label:"In Channel"},{column:"toChannelId",label:"Out Channel ID"},{column:"toShortChannelId",label:"Out Channel Short ID"},{column:"toChannelAlias",label:"Out Channel"},{column:"paymentHash"},{column:"amountIn"},{column:"amountOut"},{column:"fee",label:"Fee Earned"}]},routing_peers:{maxColumns:5,allowedColumns:[{column:"channelId"},{column:"alias",label:"Peer Alias"},{column:"events"},{column:"totalAmount",label:"Amount"},{column:"totalFee",label:"Fee"}]}},reports:{routing:{maxColumns:7,allowedColumns:[{column:"timestamp",label:"Date/Time"},{column:"fromChannelId",label:"In Channel ID"},{column:"fromShortChannelId",label:"In Channel Short ID"},{column:"fromChannelAlias",label:"In Channel"},{column:"toChannelId",label:"Out Channel ID"},{column:"toShortChannelId",label:"Out Channel Short ID"},{column:"toChannelAlias",label:"Out Channel"},{column:"paymentHash"},{column:"amountIn"},{column:"amountOut"},{column:"fee",label:"Fee Earned"}]},transactions:{maxColumns:5,allowedColumns:[{column:"date"},{column:"amount_paid"},{column:"num_payments",label:"# Payments"},{column:"amount_received"},{column:"num_invoices",label:"# Invoices"}]}}},Ni_DKK="\n \n \n \n ",kn=[{id:"USD",name:"United States Dollar",iconType:"FA",symbol:v.Vpi},{id:"ARS",name:"Argentina Peso",iconType:"FA",symbol:v.Vpi},{id:"AUD",name:"Australia Dollar",iconType:"FA",symbol:v.Vpi},{id:"BRL",name:"Brazil Real",iconType:"FA",symbol:v.Tq9},{id:"CAD",name:"Canada Dollar",iconType:"FA",symbol:v.Vpi},{id:"CHF",name:"Switzerland Franc",iconType:"FA",symbol:v.zjW},{id:"CLP",name:"Chile Peso",iconType:"FA",symbol:v.Vpi},{id:"CNY",name:"China Yuan Renminbi",iconType:"FA",symbol:v.zPk},{id:"CZK",name:"Czech Republic Koruna",iconType:"SVG",symbol:"\n \n \n \n \n \n \n \n ",class:"currency-icon-x-large"},{id:"DKK",name:"Denmark Krone",iconType:"SVG",symbol:Ni_DKK,class:"currency-icon-medium"},{id:"EUR",name:"Euro Member Countries",iconType:"FA",symbol:v.s5m},{id:"GBP",name:"United Kingdom Pound",iconType:"FA",symbol:v.vfE},{id:"HKD",name:"Hong Kong Dollar",iconType:"FA",symbol:v.Vpi},{id:"HRK",name:"Croatia Kuna",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/15766/croatia-kuna-currency-symbol --\x3e\n \n \n \n \n \n ',class:"currency-icon-medium"},{id:"HUF",name:"Hungary Forint",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/183602/forint-business-and-finance --\x3e\n \n \n \n \n \n \n ',class:"currency-icon-small"},{id:"INR",name:"India Rupee",iconType:"FA",symbol:v.FYJ},{id:"ISK",name:"Iceland Krona",iconType:"SVG",symbol:Ni_DKK,class:"currency-icon-medium"},{id:"JPY",name:"Japan Yen",iconType:"FA",symbol:v.zPk},{id:"KRW",name:"Korea (South) Won",iconType:"FA",symbol:v.JKM},{id:"NZD",name:"New Zealand Dollar",iconType:"FA",symbol:v.Vpi},{id:"PLN",name:"Poland Zloty",iconType:"SVG",symbol:"\n \n \n \n \n \n \n ",class:"currency-icon-large"},{id:"RON",name:"Romania Leu",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/64526/romania-lei-currency --\x3e\n \n \n \n \n \n ',class:"currency-icon-medium"},{id:"RUB",name:"Russia Ruble",iconType:"FA",symbol:v.f6_},{id:"SEK",name:"Sweden Krona",iconType:"SVG",symbol:Ni_DKK,class:"currency-icon-medium"},{id:"SGD",name:"Singapore Dollar",iconType:"FA",symbol:v.Vpi},{id:"THB",name:"Thailand Baht",iconType:"FA",symbol:v.Kcb},{id:"TRY",name:"Turkey Lira",iconType:"FA",symbol:v.hb3},{id:"TWD",name:"Taiwan New Dollar",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/142061/new-taiwan-dollar --\x3e\n \n \n \n \n \n \n ',class:"currency-icon-small"}];function Ri(ee){const ye=kn.find(ke=>ke.id===ee);return"SVG"===ye.iconType&&"string"==typeof ye.symbol&&(ye.symbol=ye.symbol.replace('Ee});var i=l(9330),d=l(1413),v=l(4412),T=l(7673),w=l(8810),e=l(9437),O=l(1594),f=l(6354),u=l(1397),L=l(6977),C=l(3993),B=l(4416),A=l(2462),Pe=l(1771),le=l(190),Ce=l(3536),Ae=l(9584),j=l(2615),W=l(9640),G=l(8570),re=l(5416),xe=l(2200);let Ee=(()=>{var V;class ce{constructor(ne,J,De,Re,Xe){this.httpClient=ne,this.store=J,this.logger=De,this.snackBar=Re,this.titleCasePipe=Xe,this.APIUrl=B.H$,this.lnImplementation="",this.lnImplementationUpdated=new v.t(null),this.unSubs=[new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B],this.mapAliases=(_e,he)=>(_e&&_e.length>0?_e.forEach((Dt,lt)=>{if(he&&he.length>0)for(let Le=0;Le{let Re;return this.store.dispatch((0,Pe.mt)({payload:B.MZ.DECODE_PAYMENT})),Re="cln"===De?this.httpClient.post(this.APIUrl+"/"+De+B.rl.UTILITY_API+"/decode",{string:ne},{headers:{"Content-Type":"application/json"}}):this.httpClient.get(this.APIUrl+"/"+De+B.rl.PAYMENTS_API+"/decode/"+ne),Re.pipe((0,L.Q)(this.unSubs[0]),(0,f.T)(Xe=>(this.store.dispatch((0,Pe.y0)({payload:B.MZ.DECODE_PAYMENT})),Xe)),(0,e.W)(Xe=>(J?this.handleErrorWithoutAlert("Decode Payment",B.MZ.DECODE_PAYMENT,Xe):this.handleErrorWithAlert("decodePaymentData",B.MZ.DECODE_PAYMENT,"Decode Payment Failed",this.APIUrl+"/"+De+("cln"===De?B.rl.UTILITY_API+"/decode":B.rl.PAYMENTS_API+"/decode/"+ne),Xe),(0,w.$)(()=>new Error(this.extractErrorMessage(Xe))))))}))}decodePayments(ne){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(J=>{let De="",Re="",Xe=null;return"ecl"===J?(De=this.APIUrl+"/"+J+B.rl.PAYMENTS_API+"/getsentinfos",Xe={payments:ne},Re=B.MZ.GET_SENT_PAYMENTS):"cln"===J?(De=this.APIUrl+"/"+J+B.rl.UTILITY_API+"/decode",Xe={string:ne},Re=B.MZ.DECODE_PAYMENTS):(De=this.APIUrl+"/"+J+B.rl.PAYMENTS_API,Xe={payments:ne},Re=B.MZ.DECODE_PAYMENTS),this.store.dispatch((0,Pe.mt)({payload:Re})),this.httpClient.post(De,Xe).pipe((0,L.Q)(this.unSubs[1]),(0,f.T)(_e=>(this.store.dispatch((0,Pe.y0)({payload:Re})),_e)),(0,e.W)(_e=>(this.handleErrorWithAlert("decodePaymentsData",Re,Re+" Failed",De,_e),(0,w.$)(()=>new Error(this.extractErrorMessage(_e))))))}))}getAliasesFromPubkeys(ne,J){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(De=>{if(J){const Re=(new i.Nl).set("pubkeys",ne);return this.httpClient.get(this.APIUrl+"/"+De+B.rl.NETWORK_API+"/nodes",{params:Re})}return this.httpClient.get(this.APIUrl+"/"+De+B.rl.NETWORK_API+"/node/"+ne)}))}signMessage(ne){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(J=>{let De=this.APIUrl+"/"+J+B.rl.MESSAGE_API+"/sign";return"cln"===J&&(De=this.APIUrl+"/"+J+B.rl.UTILITY_API+"/sign"),this.store.dispatch((0,Pe.mt)({payload:B.MZ.SIGN_MESSAGE})),this.httpClient.post(De,{message:ne}).pipe((0,L.Q)(this.unSubs[2]),(0,f.T)(Re=>(this.store.dispatch((0,Pe.y0)({payload:B.MZ.SIGN_MESSAGE})),Re)),(0,e.W)(Re=>(this.handleErrorWithAlert("signMessageData",B.MZ.SIGN_MESSAGE,"Sign Message Failed",De,Re),(0,w.$)(()=>new Error(this.extractErrorMessage(Re))))))}))}verifyMessage(ne,J){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(De=>{let Re="",Xe=null;return"cln"===De?(Re=this.APIUrl+"/"+De+B.rl.UTILITY_API+"/verify",Xe={message:ne,zbase:J}):(Re=this.APIUrl+"/"+De+B.rl.MESSAGE_API+"/verify",Xe={message:ne,signature:J}),this.store.dispatch((0,Pe.mt)({payload:B.MZ.VERIFY_MESSAGE})),this.httpClient.post(Re,Xe).pipe((0,L.Q)(this.unSubs[3]),(0,f.T)(_e=>(this.store.dispatch((0,Pe.y0)({payload:B.MZ.VERIFY_MESSAGE})),_e)),(0,e.W)(_e=>(this.handleErrorWithAlert("verifyMessageData",B.MZ.VERIFY_MESSAGE,"Verify Message Failed",Re,_e),(0,w.$)(()=>new Error(this.extractErrorMessage(_e))))))}))}bumpFee(ne,J,De,Re){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(Xe=>{const _e={txid:ne,outputIndex:J};return De&&(_e.targetConf=De),Re&&(_e.satPerVByte=Re),this.store.dispatch((0,Pe.mt)({payload:B.MZ.BUMP_FEE})),this.httpClient.post(this.APIUrl+"/"+Xe+B.rl.WALLET_API+"/bumpfee",_e).pipe((0,L.Q)(this.unSubs[4]),(0,f.T)(he=>(this.store.dispatch((0,Pe.y0)({payload:B.MZ.BUMP_FEE})),this.snackBar.open("Successfully bumped the fee. Use the block explorer to verify transaction."),he)),(0,e.W)(he=>(this.handleErrorWithoutAlert("Bump Fee",B.MZ.BUMP_FEE,he),(0,w.$)(()=>new Error(this.extractErrorMessage(he))))))}))}labelUTXO(ne,J,De=!0){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(Re=>{const Xe={txid:ne,label:J,overwrite:De};return this.store.dispatch((0,Pe.mt)({payload:B.MZ.LABEL_UTXO})),this.httpClient.post(this.APIUrl+"/"+Re+B.rl.WALLET_API+"/label",Xe).pipe((0,L.Q)(this.unSubs[5]),(0,f.T)(_e=>(this.store.dispatch((0,Pe.y0)({payload:B.MZ.LABEL_UTXO})),_e)),(0,e.W)(_e=>(this.handleErrorWithoutAlert("Label UTXO",B.MZ.LABEL_UTXO,_e),(0,w.$)(()=>new Error(this.extractErrorMessage(_e))))))}))}leaseUTXO(ne,J){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(De=>{const Re={txid:ne,outputIndex:J};return this.store.dispatch((0,Pe.mt)({payload:B.MZ.LEASE_UTXO})),this.httpClient.post(this.APIUrl+"/"+De+B.rl.WALLET_API+"/lease",Re).pipe((0,L.Q)(this.unSubs[6]),(0,f.T)(Xe=>{this.store.dispatch((0,Pe.y0)({payload:B.MZ.LEASE_UTXO})),this.store.dispatch((0,le.mh)()),this.store.dispatch((0,le.SM)());const _e=new Date(1e3*Xe.expiration);return Math.round(_e.getTime())-60*_e.getTimezoneOffset()}),(0,e.W)(Xe=>(this.handleErrorWithoutAlert("Lease UTXO",B.MZ.LEASE_UTXO,Xe),(0,w.$)(()=>new Error(this.extractErrorMessage(Xe))))))}))}getForwardingHistory(ne,J,De,Re){if("LND"===ne){const Xe={end_time:De,start_time:J};return this.store.dispatch((0,Pe.mt)({payload:B.MZ.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/lnd"+B.rl.SWITCH_API,Xe).pipe((0,L.Q)(this.unSubs[7]),(0,C.E)(this.store.select(Ce.eO)),(0,u.Z)(([_e,he])=>{if(_e.forwarding_events){const Dt=[...he.channels,...he.closedChannels];_e.forwarding_events.forEach(lt=>{if(Dt&&Dt.length>0)for(let Le=0;Le(this.handleErrorWithAlert("getForwardingHistoryData",B.MZ.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/lnd"+B.rl.SWITCH_API,_e),(0,w.$)(()=>new Error(this.extractErrorMessage(_e))))))}return"CLN"===ne?(this.store.dispatch((0,Pe.mt)({payload:B.MZ.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/cln"+B.rl.CHANNELS_API+"/listForwards",{status:Re||"settled"}).pipe((0,L.Q)(this.unSubs[8]),(0,C.E)(this.store.select(Ae.BM)),(0,u.Z)(([Xe,_e])=>{const he=this.mapAliases(Xe,[..._e.activeChannels,..._e.pendingChannels,..._e.inactiveChannels]);return this.store.dispatch((0,Pe.y0)({payload:B.MZ.GET_FORWARDING_HISTORY})),(0,T.of)(he)}),(0,e.W)(Xe=>(this.handleErrorWithAlert("getForwardingHistoryData",B.MZ.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/cln"+B.rl.CHANNELS_API+"/listForwards",Xe),(0,w.$)(()=>new Error(this.extractErrorMessage(Xe))))))):(0,T.of)({})}listNetworkNodes(ne){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(J=>(this.store.dispatch((0,Pe.mt)({payload:B.MZ.LIST_NETWORK_NODES})),this.httpClient.post(this.APIUrl+"/"+J+B.rl.NETWORK_API+"/listNodes",ne).pipe((0,L.Q)(this.unSubs[9]),(0,u.Z)(De=>(this.store.dispatch((0,Pe.y0)({payload:B.MZ.LIST_NETWORK_NODES})),(0,T.of)(De))),(0,e.W)(De=>(this.handleErrorWithoutAlert("List Network Nodes",B.MZ.LIST_NETWORK_NODES,De),(0,w.$)(()=>this.extractErrorMessage(De))))))))}listConfigs(){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(ne=>(this.store.dispatch((0,Pe.mt)({payload:B.MZ.GET_LIST_CONFIGS})),this.httpClient.get(this.APIUrl+"/"+ne+B.rl.UTILITY_API+"/listConfigs").pipe((0,L.Q)(this.unSubs[10]),(0,u.Z)(J=>(this.store.dispatch((0,Pe.y0)({payload:B.MZ.GET_LIST_CONFIGS})),(0,T.of)(J))),(0,e.W)(J=>(this.handleErrorWithoutAlert("List Configurations",B.MZ.GET_LIST_CONFIGS,J),(0,w.$)(()=>this.extractErrorMessage(J))))))))}getOrUpdateFunderPolicy(ne,J,De,Re,Xe,_e){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(he=>{const Dt=ne?{policy:ne,policy_mod:J,lease_fee_base_msat:De,lease_fee_basis:Re,channel_fee_max_base_msat:Xe,channel_fee_max_proportional_thousandths:_e}:null;return this.store.dispatch((0,Pe.mt)({payload:B.MZ.GET_FUNDER_POLICY})),this.httpClient.post(this.APIUrl+"/"+he+B.rl.CHANNELS_API+"/funderUpdate",Dt).pipe((0,L.Q)(this.unSubs[11]),(0,f.T)(lt=>(this.store.dispatch((0,Pe.y0)({payload:B.MZ.GET_FUNDER_POLICY})),Dt&&this.store.dispatch((0,Pe.UI)({payload:"Funder Policy Updated Successfully with Compact Lease: "+lt.compact_lease+"!"})),lt)),(0,e.W)(lt=>(this.handleErrorWithoutAlert("Funder Policy",B.MZ.GET_FUNDER_POLICY,lt),(0,w.$)(()=>new Error(this.extractErrorMessage(lt))))))}))}circularRebalance(ne,J="",De="",Re="",Xe="",_e=[],he="shortChannelId"){return this.httpClient.post(this.APIUrl+"/"+this.lnImplementation+B.rl.CHANNELS_API+"/circularRebalance",{amountMsat:ne,sourceShortChannelId:J,sourceNodeId:De,targetShortChannelId:Re,targetNodeId:Xe,ignoreNodeIds:_e,format:he}).pipe((0,L.Q)(this.unSubs[12]),(0,f.T)(Le=>Le),(0,e.W)(Le=>(this.handleErrorWithoutAlert("Rebalance Channel",B.MZ.REBALANCE_CHANNEL,Le),(0,w.$)(()=>Le.error))))}extractErrorMessage(ne,J="Unknown Error."){return this.titleCasePipe.transform(ne.error.text&&"string"==typeof ne.error.text&&ne.error.text.includes('')?"API Route Does Not Exist.":ne.error&&ne.error.error&&ne.error.error.error&&ne.error.error.error.error&&ne.error.error.error.error.error&&"string"==typeof ne.error.error.error.error.error?ne.error.error.error.error.error:ne.error&&ne.error.error&&ne.error.error.error&&ne.error.error.error.error&&"string"==typeof ne.error.error.error.error?ne.error.error.error.error:ne.error&&ne.error.error&&ne.error.error.error&&"string"==typeof ne.error.error.error?ne.error.error.error:ne.error&&ne.error.error&&"string"==typeof ne.error.error?ne.error.error:ne.error&&"string"==typeof ne.error?ne.error:ne.error&&ne.error.error&&ne.error.error.error&&ne.error.error.error.error&&ne.error.error.error.error.message&&"string"==typeof ne.error.error.error.error.message?ne.error.error.error.error.message:ne.error&&ne.error.error&&ne.error.error.error&&ne.error.error.error.message&&"string"==typeof ne.error.error.error.message?ne.error.error.error.message:ne.error&&ne.error.error&&ne.error.error.message&&"string"==typeof ne.error.error.message?ne.error.error.message:ne.error&&ne.error.message&&"string"==typeof ne.error.message?ne.error.message:ne.message&&"string"==typeof ne.message?ne.message:J)}handleErrorWithoutAlert(ne,J,De){De.error.text&&"string"==typeof De.error.text&&De.error.text.includes('')&&(De={status:403,error:{message:"API Route Does Not Exist."}}),this.logger.error("ERROR IN: "+ne+"\n"+JSON.stringify(De)),401===De.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,Pe.Jh)()),this.store.dispatch((0,Pe.ri)({payload:"Authentication Failed: "+JSON.stringify(De.error)}))):(this.store.dispatch((0,Pe.y0)({payload:J})),this.store.dispatch((0,Pe.Gd)({payload:{action:ne,status:B.wn.ERROR,statusCode:De.status.toString(),message:this.extractErrorMessage(De)}})))}handleErrorWithAlert(ne,J,De,Re,Xe){if(this.logger.error(Xe),401===Xe.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,Pe.Jh)()),this.store.dispatch((0,Pe.ri)({payload:"Authentication Failed: "+JSON.stringify(Xe.error)}));else{this.store.dispatch((0,Pe.y0)({payload:J}));const _e=this.extractErrorMessage(Xe);this.store.dispatch((0,Pe.xO)({payload:{data:{type:"ERROR",alertTitle:De,message:{code:Xe.status?Xe.status:"Unknown Error",message:_e,URL:Re},component:A.f}}})),this.store.dispatch((0,Pe.Gd)({payload:{action:ne,status:B.wn.ERROR,statusCode:Xe.status.toString(),message:_e,URL:Re}}))}}ngOnDestroy(){this.unSubs.forEach(ne=>{ne.next(null),ne.complete()})}static#e=V=()=>(this.\u0275fac=function(J){return new(J||ce)(j.KVO(i.Qq),j.KVO(W.il),j.KVO(G.gP),j.KVO(re.UG),j.KVO(xe.PV))},this.\u0275prov=j.jDH({token:ce,factory:ce.\u0275fac}))}return V(),ce})()},8570(Zt,pe,l){"use strict";l.d(pe,{gP:()=>e,tU:()=>O});var i=l(7705),d=l(2615);const v=(0,i.naY)(),T=()=>null;let e=(()=>{var f;class u{invokeConsoleMethod(C,B){}static#e=f=()=>(this.\u0275fac=function(B){return new(B||u)},this.\u0275prov=d.jDH({token:u,factory:u.\u0275fac}))}return f(),u})(),O=(()=>{var f;class u{get info(){return v?console.log.bind(console):T}get warn(){return v?console.warn.bind(console):T}get error(){return v?console.error.bind(console):T}invokeConsoleMethod(C,B){(console[C]||console.log||T).apply(console,[B])}static#e=f=()=>(this.\u0275fac=function(B){return new(B||u)},this.\u0275prov=d.jDH({token:u,factory:u.\u0275fac}))}return f(),u})()},4104(Zt,pe,l){"use strict";l.d(pe,{Q:()=>Ce});var i=l(9330),d=l(1413),v=l(4412),T=l(7673),w=l(8810),e=l(9437),O=l(6354),f=l(6977),u=l(4416),L=l(2462),C=l(1771),B=l(2615),A=l(8570),Pe=l(9640),le=l(2571);let Ce=(()=>{var Ae;class j{constructor(G,re,xe,Ee){this.httpClient=G,this.logger=re,this.store=xe,this.commonService=Ee,this.loopUrl="",this.swaps=[],this.swapsChanged=new v.t([]),this.unSubs=[new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B]}getLoopInfo(){return this.loopUrl=u.H$+u.rl.LOOP_API+"/info",this.httpClient.get(this.loopUrl)}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,C.mt)({payload:u.MZ.GET_LOOP_SWAPS})),this.loopUrl=u.H$+u.rl.LOOP_API+"/swaps",this.httpClient.get(this.loopUrl).pipe((0,f.Q)(this.unSubs[0])).subscribe({next:G=>{this.store.dispatch((0,C.y0)({payload:u.MZ.GET_LOOP_SWAPS})),this.swaps=G,this.swapsChanged.next(this.swaps)},error:G=>this.swapsChanged.error(this.handleErrorWithAlert(u.MZ.GET_LOOP_SWAPS,this.loopUrl,G))})}loopOut(G,re,xe,Ee,V,ce,be,ne,J,De){const Re={amount:G,targetConf:xe,swapRoutingFee:Ee,minerFee:V,prepayRoutingFee:ce,prepayAmt:be,swapFee:ne,swapPublicationDeadline:J,destAddress:De};return""!==re&&(Re.chanId=re),this.loopUrl=u.H$+u.rl.LOOP_API+"/out",this.httpClient.post(this.loopUrl,Re).pipe((0,e.W)(Xe=>this.handleErrorWithoutAlert("Loop Out for Channel: "+re,u.MZ.NO_SPINNER,Xe)))}getLoopOutTerms(){return this.loopUrl=u.H$+u.rl.LOOP_API+"/out/terms",this.httpClient.get(this.loopUrl).pipe((0,e.W)(G=>this.handleErrorWithoutAlert("Loop Out Terms",u.MZ.NO_SPINNER,G)))}getLoopOutQuote(G,re,xe){let Ee=new i.Nl;return Ee=Ee.append("targetConf",re.toString()),Ee=Ee.append("swapPublicationDeadline",xe.toString()),this.loopUrl=u.H$+u.rl.LOOP_API+"/out/quote/"+G,this.store.dispatch((0,C.mt)({payload:u.MZ.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:Ee}).pipe((0,f.Q)(this.unSubs[1]),(0,O.T)(V=>(this.store.dispatch((0,C.y0)({payload:u.MZ.GET_QUOTE})),V)),(0,e.W)(V=>this.handleErrorWithoutAlert("Loop Out Quote",u.MZ.GET_QUOTE,V)))}getLoopOutTermsAndQuotes(G){let re=new i.Nl;return re=re.append("targetConf",G.toString()),re=re.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=u.H$+u.rl.LOOP_API+"/out/termsAndQuotes",this.store.dispatch((0,C.mt)({payload:u.MZ.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:re}).pipe((0,f.Q)(this.unSubs[2]),(0,O.T)(xe=>(this.store.dispatch((0,C.y0)({payload:u.MZ.GET_TERMS_QUOTES})),xe)),(0,e.W)(xe=>(0,T.of)(this.handleErrorWithAlert(u.MZ.GET_TERMS_QUOTES,this.loopUrl,xe))))}loopIn(G,re,xe,Ee,V){const ce={amount:G,swapFee:re,minerFee:xe,lastHop:Ee,externalHtlc:V};return this.loopUrl=u.H$+u.rl.LOOP_API+"/in",this.httpClient.post(this.loopUrl,ce).pipe((0,e.W)(be=>this.handleErrorWithoutAlert("Loop In",u.MZ.NO_SPINNER,be)))}getLoopInTerms(){return this.loopUrl=u.H$+u.rl.LOOP_API+"/in/terms",this.httpClient.get(this.loopUrl).pipe((0,e.W)(G=>this.handleErrorWithoutAlert("Loop In Terms",u.MZ.NO_SPINNER,G)))}getLoopInQuote(G,re,xe){let Ee=new i.Nl;return Ee=Ee.append("targetConf",re.toString()),Ee=Ee.append("swapPublicationDeadline",xe.toString()),this.loopUrl=u.H$+u.rl.LOOP_API+"/in/quote/"+G,this.store.dispatch((0,C.mt)({payload:u.MZ.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:Ee}).pipe((0,f.Q)(this.unSubs[3]),(0,O.T)(V=>(this.store.dispatch((0,C.y0)({payload:u.MZ.GET_QUOTE})),V)),(0,e.W)(V=>this.handleErrorWithoutAlert("Loop In Qoute",u.MZ.GET_QUOTE,V)))}getLoopInTermsAndQuotes(G){let re=new i.Nl;return re=re.append("targetConf",G.toString()),re=re.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=u.H$+u.rl.LOOP_API+"/in/termsAndQuotes",this.store.dispatch((0,C.mt)({payload:u.MZ.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:re}).pipe((0,f.Q)(this.unSubs[4]),(0,O.T)(xe=>(this.store.dispatch((0,C.y0)({payload:u.MZ.GET_TERMS_QUOTES})),xe)),(0,e.W)(xe=>(0,T.of)(this.handleErrorWithAlert(u.MZ.GET_TERMS_QUOTES,this.loopUrl,xe))))}getSwap(G){return this.loopUrl=u.H$+u.rl.LOOP_API+"/swap/"+G,this.httpClient.get(this.loopUrl).pipe((0,e.W)(re=>this.handleErrorWithoutAlert("Loop Get Swap for ID: "+G,u.MZ.NO_SPINNER,re)))}handleErrorWithoutAlert(G,re,xe){let Ee="";return this.logger.error("ERROR IN: "+G+"\n"+JSON.stringify(xe)),this.store.dispatch((0,C.y0)({payload:re})),401===xe.status?(Ee="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,C.ri)({payload:Ee}))):503===xe.status?(Ee="Unable to Connect to Loop Server.",this.store.dispatch((0,C.xO)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:xe.status,message:"Unable to Connect to Loop Server",URL:G},component:L.f}}}))):Ee=this.commonService.extractErrorMessage(xe),(0,w.$)(()=>new Error(Ee))}handleErrorWithAlert(G,re,xe){let Ee="";if(this.logger.error(xe),this.store.dispatch((0,C.y0)({payload:G})),401===xe.status)Ee="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,C.ri)({payload:Ee}));else if(503===xe.status)Ee="Unable to Connect to Loop Server.",setTimeout(()=>{this.store.dispatch((0,C.xO)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:xe.status,message:"Unable to Connect to Loop Server",URL:re},component:L.f}}}))},100);else{Ee=this.commonService.extractErrorMessage(xe);const V=xe.error&&xe.error.error&&xe.error.error.code?xe.error.error.code:xe.error&&xe.error.code?xe.error.code:xe.code?xe.code:xe.status;setTimeout(()=>{this.store.dispatch((0,C.xO)({payload:{data:{type:u.A$.ERROR,alertTitle:"ERROR",message:{code:V,message:Ee,URL:re},component:L.f}}}))},100)}return{message:Ee}}ngOnDestroy(){this.unSubs.forEach(G=>{G.next(null),G.complete()})}static#e=Ae=()=>(this.\u0275fac=function(re){return new(re||j)(B.KVO(i.Qq),B.KVO(A.gP),B.KVO(Pe.il),B.KVO(le.h))},this.\u0275prov=B.jDH({token:j,factory:j.\u0275fac}))}return Ae(),j})()},3202(Zt,pe,l){"use strict";l.d(pe,{Q:()=>v});var i=l(1413),d=l(2615);let v=(()=>{var T;class w{constructor(){this.sessionSub=new i.B}watchSession(){return this.sessionSub.asObservable()}getItem(O){return sessionStorage.getItem(O)}getAllItems(){return sessionStorage}setItem(O,f){sessionStorage.setItem(O,f),this.sessionSub.next(sessionStorage)}removeItem(O){sessionStorage.removeItem(O),this.sessionSub.next(sessionStorage)}clearAll(){sessionStorage.clear(),this.sessionSub.next(sessionStorage)}static#e=T=()=>(this.\u0275fac=function(f){return new(f||w)},this.\u0275prov=d.jDH({token:w,factory:w.\u0275fac}))}return T(),w})()},7879(Zt,pe,l){"use strict";l.d(pe,{I:()=>Pe});var i=l(4412),d=l(1413),v=l(6977),T=l(7707),w=l(1985),e=l(8359),O=l(2771);const f={url:"",deserializer:le=>JSON.parse(le.data),serializer:le=>JSON.stringify(le)};class L extends d.k{constructor(Ce,Ae){if(super(),this._socket=null,Ce instanceof w.c)this.destination=Ae,this.source=Ce;else{const j=this._config=Object.assign({},f);if(this._output=new d.B,"string"==typeof Ce)j.url=Ce;else for(const W in Ce)Ce.hasOwnProperty(W)&&(j[W]=Ce[W]);if(!j.WebSocketCtor&&WebSocket)j.WebSocketCtor=WebSocket;else if(!j.WebSocketCtor)throw new Error("no WebSocket constructor can be found");this.destination=new O.m}}lift(Ce){const Ae=new L(this._config,this.destination);return Ae.operator=Ce,Ae.source=this,Ae}_resetState(){this._socket=null,this.source||(this.destination=new O.m),this._output=new d.B}multiplex(Ce,Ae,j){const W=this;return new w.c(G=>{try{W.next(Ce())}catch(xe){G.error(xe)}const re=W.subscribe({next:xe=>{try{j(xe)&&G.next(xe)}catch(Ee){G.error(Ee)}},error:xe=>G.error(xe),complete:()=>G.complete()});return()=>{try{W.next(Ae())}catch(xe){G.error(xe)}re.unsubscribe()}})}_connectSocket(){const{WebSocketCtor:Ce,protocol:Ae,url:j,binaryType:W}=this._config,G=this._output;let re=null;try{re=Ae?new Ce(j,Ae):new Ce(j),this._socket=re,W&&(this._socket.binaryType=W)}catch(Ee){return void G.error(Ee)}const xe=new e.yU(()=>{this._socket=null,re&&1===re.readyState&&re.close()});re.onopen=Ee=>{const{_socket:V}=this;if(!V)return re.close(),void this._resetState();const{openObserver:ce}=this._config;ce&&ce.next(Ee);const be=this.destination;this.destination=T.vU.create(ne=>{if(1===re.readyState)try{const{serializer:J}=this._config;re.send(J(ne))}catch(J){this.destination.error(J)}},ne=>{const{closingObserver:J}=this._config;J&&J.next(void 0),ne&&ne.code?re.close(ne.code,ne.reason):G.error(new TypeError("WebSocketSubject.error must be called with an object with an error code, and an optional reason: { code: number, reason: string }")),this._resetState()},()=>{const{closingObserver:ne}=this._config;ne&&ne.next(void 0),re.close(),this._resetState()}),be&&be instanceof O.m&&xe.add(be.subscribe(this.destination))},re.onerror=Ee=>{this._resetState(),G.error(Ee)},re.onclose=Ee=>{re===this._socket&&this._resetState();const{closeObserver:V}=this._config;V&&V.next(Ee),Ee.wasClean?G.complete():G.error(Ee)},re.onmessage=Ee=>{try{const{deserializer:V}=this._config;G.next(V(Ee))}catch(V){G.error(V)}}}_subscribe(Ce){const{source:Ae}=this;return Ae?Ae.subscribe(Ce):(this._socket||this._connectSocket(),this._output.subscribe(Ce),Ce.add(()=>{const{_socket:j}=this;0===this._output.observers.length&&(j&&(1===j.readyState||0===j.readyState)&&j.close(),this._resetState())}),Ce)}unsubscribe(){const{_socket:Ce}=this;Ce&&(1===Ce.readyState||0===Ce.readyState)&&Ce.close(),this._resetState(),super.unsubscribe()}}var C=l(2615),B=l(8570),A=l(3202);let Pe=(()=>{var le;class Ce{constructor(j,W){this.logger=j,this.sessionService=W,this.clWSMessages=new i.t(null),this.eclWSMessages=new i.t(null),this.lndWSMessages=new i.t(null),this.wsUrl="",this.nodeIndex="",this.RETRY_SECONDS=5,this.RECONNECT_TIMEOUT=null,this.unSubs=[new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B]}connectWebSocket(j,W){(!this.socket||this.socket.closed)&&(this.wsUrl=j,this.nodeIndex=W,this.logger.info("Websocket Url: "+this.wsUrl),this.socket=new L({url:j,protocol:[this.sessionService.getItem("token")||"",W]}),this.subscribeToMessages())}reconnectOnError(){this.RECONNECT_TIMEOUT||this.socket&&!this.socket.closed||(this.RETRY_SECONDS=this.RETRY_SECONDS>=160?160:2*this.RETRY_SECONDS,this.RECONNECT_TIMEOUT=setTimeout(()=>{this.logger.info("Reconnecting Web Socket."),this.connectWebSocket(this.wsUrl,this.nodeIndex),this.RECONNECT_TIMEOUT=null},1e3*this.RETRY_SECONDS))}closeConnection(){this.socket&&(this.socket.complete(),this.socket=null)}subscribeToMessages(){this.socket?.pipe((0,v.Q)(this.unSubs[1])).subscribe({next:j=>{if((j="string"==typeof j?JSON.parse(j):j).error)this.handleError(j.error);else switch(this.logger.info("Next Message from WS:"+JSON.stringify(j)),j.source){case"LND":this.lndWSMessages.next(j);break;case"CLN":this.clWSMessages.next(j);break;case"ECL":this.eclWSMessages.next(j)}},error:j=>this.handleError(j),complete:()=>{this.logger.info("Web Socket Closed")}})}handleError(j){this.logger.error(j),this.clWSMessages.error(j),this.eclWSMessages.error(j),this.lndWSMessages.error(j),this.reconnectOnError()}ngOnDestroy(){this.closeConnection(),this.clWSMessages.next(null),this.clWSMessages.complete(),this.eclWSMessages.next(null),this.eclWSMessages.complete(),this.lndWSMessages.next(null),this.lndWSMessages.complete()}static#e=le=()=>(this.\u0275fac=function(W){return new(W||Ce)(C.KVO(B.gP),C.KVO(A.Q))},this.\u0275prov=C.jDH({token:Ce,factory:Ce.\u0275fac}))}return le(),Ce})()},9029(Zt,pe,l){"use strict";l.d(pe,{G:()=>Es});var i=l(2200),d=l(8132),v=l(9417),T=l(60),w=l(9327),e=l(3),O=l(9945),f=l(1585),u=l(2628),L=l(1975),C=l(8834),B=l(9726),A=l(6838),j=(l(1577),l(3869),l(7336),l(438),l(8968)),W=l(3664),G=l(2615),re=l(7705),xe=l(2496),Ee=l(3386),V=l(1804),ce=l(2046),be=l(2466),ne=l(6881);const J=["button"],De=["*"];function Re(kt,On){if(1&kt&&(W.j41(0,"div",2),W.nrm(1,"mat-pseudo-checkbox",6),W.k0s()),2&kt){const $e=W.XpG();W.R7$(),W.Y8G("disabled",$e.disabled)}}const Xe=new G.nKC("MAT_BUTTON_TOGGLE_DEFAULT_OPTIONS",{providedIn:"root",factory:function _e(){return{hideSingleSelectionIndicator:!1,hideMultipleSelectionIndicator:!1,disabledInteractive:!1}}}),he=new G.nKC("MatButtonToggleGroup");class lt{source;value;constructor(On,$e){this.source=On,this.value=$e}}let te=(()=>{class kt{_changeDetectorRef=(0,G.WQX)(re.gRc);_elementRef=(0,G.WQX)(W.aKT);_focusMonitor=(0,G.WQX)(A.FN);_idGenerator=(0,G.WQX)(B.g);_animationDisabled=(0,V.Rc)();_checked=!1;ariaLabel;ariaLabelledby=null;_buttonElement;buttonToggleGroup;get buttonId(){return`${this.id}-button`}id;name;value;get tabIndex(){return this._tabIndex()}set tabIndex($e){this._tabIndex.set($e)}_tabIndex;disableRipple;get appearance(){return this.buttonToggleGroup?this.buttonToggleGroup.appearance:this._appearance}set appearance($e){this._appearance=$e}_appearance;get checked(){return this.buttonToggleGroup?this.buttonToggleGroup._isSelected(this):this._checked}set checked($e){$e!==this._checked&&(this._checked=$e,this.buttonToggleGroup&&this.buttonToggleGroup._syncButtonToggle(this,this._checked),this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled||this.buttonToggleGroup&&this.buttonToggleGroup.disabled}set disabled($e){this._disabled=$e}_disabled=!1;get disabledInteractive(){return this._disabledInteractive||null!==this.buttonToggleGroup&&this.buttonToggleGroup.disabledInteractive}set disabledInteractive($e){this._disabledInteractive=$e}_disabledInteractive;change=new W.bkB;constructor(){(0,G.WQX)(j.l).load(ce.A);const $e=(0,G.WQX)(he,{optional:!0}),mn=(0,G.WQX)(new re.ES_("tabindex"),{optional:!0})||"",Ln=(0,G.WQX)(Xe,{optional:!0});this._tabIndex=(0,G.vPA)(parseInt(mn)||0),this.buttonToggleGroup=$e,this.appearance=Ln&&Ln.appearance?Ln.appearance:"standard",this.disabledInteractive=Ln?.disabledInteractive??!1}ngOnInit(){const $e=this.buttonToggleGroup;this.id=this.id||this._idGenerator.getId("mat-button-toggle-"),$e&&($e._isPrechecked(this)?this.checked=!0:$e._isSelected(this)!==this._checked&&$e._syncButtonToggle(this,this._checked))}ngAfterViewInit(){this._animationDisabled||this._elementRef.nativeElement.classList.add("mat-button-toggle-animations-enabled"),this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){const $e=this.buttonToggleGroup;this._focusMonitor.stopMonitoring(this._elementRef),$e&&$e._isSelected(this)&&$e._syncButtonToggle(this,!1,!1,!0)}focus($e){this._buttonElement.nativeElement.focus($e)}_onButtonClick(){if(this.disabled)return;const $e=!!this.isSingleSelector()||!this._checked;if($e!==this._checked&&(this._checked=$e,this.buttonToggleGroup&&(this.buttonToggleGroup._syncButtonToggle(this,this._checked,!0),this.buttonToggleGroup._onTouched())),this.isSingleSelector()){const mn=this.buttonToggleGroup._buttonToggles.find(Ln=>0===Ln.tabIndex);mn&&(mn.tabIndex=-1),this.tabIndex=0}this.change.emit(new lt(this,this.value))}_markForCheck(){this._changeDetectorRef.markForCheck()}_getButtonName(){return this.isSingleSelector()?this.buttonToggleGroup.name:this.name||null}isSingleSelector(){return this.buttonToggleGroup&&!this.buttonToggleGroup.multiple}static \u0275fac=function(mn){return new(mn||kt)};static \u0275cmp=W.VBU({type:kt,selectors:[["mat-button-toggle"]],viewQuery:function(mn,Ln){if(1&mn&&W.GBs(J,5),2&mn){let Ei;W.mGM(Ei=W.lsd())&&(Ln._buttonElement=Ei.first)}},hostAttrs:["role","presentation",1,"mat-button-toggle"],hostVars:14,hostBindings:function(mn,Ln){1&mn&&W.bIt("focus",function(){return Ln.focus()}),2&mn&&(W.BMQ("aria-label",null)("aria-labelledby",null)("id",Ln.id)("name",null),W.AVh("mat-button-toggle-standalone",!Ln.buttonToggleGroup)("mat-button-toggle-checked",Ln.checked)("mat-button-toggle-disabled",Ln.disabled)("mat-button-toggle-disabled-interactive",Ln.disabledInteractive)("mat-button-toggle-appearance-standard","standard"===Ln.appearance))},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],id:"id",name:"name",value:"value",tabIndex:"tabIndex",disableRipple:[2,"disableRipple","disableRipple",re.L39],appearance:"appearance",checked:[2,"checked","checked",re.L39],disabled:[2,"disabled","disabled",re.L39],disabledInteractive:[2,"disabledInteractive","disabledInteractive",re.L39]},outputs:{change:"change"},exportAs:["matButtonToggle"],ngContentSelectors:De,decls:7,vars:13,consts:[["button",""],["type","button",1,"mat-button-toggle-button","mat-focus-indicator",3,"click","id","disabled"],[1,"mat-button-toggle-checkbox-wrapper"],[1,"mat-button-toggle-label-content"],[1,"mat-button-toggle-focus-overlay"],["matRipple","",1,"mat-button-toggle-ripple",3,"matRippleTrigger","matRippleDisabled"],["state","checked","aria-hidden","true","appearance","minimal",3,"disabled"]],template:function(mn,Ln){if(1&mn){const Ei=W.RV6();W.NAR(),W.j41(0,"button",1,0),W.bIt("click",function(){return G.eBV(Ei),G.Njj(Ln._onButtonClick())}),W.nVh(2,Re,2,1,"div",2),W.j41(3,"span",3),W.SdG(4),W.k0s()(),W.nrm(5,"span",4)(6,"span",5)}if(2&mn){const Ei=W.sdS(1);W.Y8G("id",Ln.buttonId)("disabled",Ln.disabled&&!Ln.disabledInteractive||null),W.BMQ("role",Ln.isSingleSelector()?"radio":"button")("tabindex",Ln.disabled&&!Ln.disabledInteractive?-1:Ln.tabIndex)("aria-pressed",Ln.isSingleSelector()?null:Ln.checked)("aria-checked",Ln.isSingleSelector()?Ln.checked:null)("name",Ln._getButtonName())("aria-label",Ln.ariaLabel)("aria-labelledby",Ln.ariaLabelledby)("aria-disabled",Ln.disabled&&Ln.disabledInteractive?"true":null),W.R7$(2),W.vxM(Ln.buttonToggleGroup&&(!Ln.buttonToggleGroup.multiple&&!Ln.buttonToggleGroup.hideSingleSelectionIndicator||Ln.buttonToggleGroup.multiple&&!Ln.buttonToggleGroup.hideMultipleSelectionIndicator)?2:-1),W.R7$(4),W.Y8G("matRippleTrigger",Ei)("matRippleDisabled",Ln.disableRipple||Ln.disabled)}},dependencies:[xe.r6,Ee.w],styles:[".mat-button-toggle-standalone,.mat-button-toggle-group{position:relative;display:inline-flex;flex-direction:row;white-space:nowrap;overflow:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0);border-radius:var(--mat-button-toggle-legacy-shape);transform:translateZ(0)}.mat-button-toggle-standalone:not([class*=mat-elevation-z]),.mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12)}@media(forced-colors: active){.mat-button-toggle-standalone,.mat-button-toggle-group{outline:solid 1px}}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.mat-button-toggle-group-appearance-standard{border-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large));border:solid 1px var(--mat-button-toggle-divider-color, var(--mat-sys-outline))}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard .mat-pseudo-checkbox,.mat-button-toggle-group-appearance-standard .mat-pseudo-checkbox{--mat-pseudo-checkbox-minimal-selected-checkmark-color: var(--mat-button-toggle-selected-state-text-color, var(--mat-sys-on-secondary-container))}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}@media(forced-colors: active){.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.mat-button-toggle-group-appearance-standard{outline:0}}.mat-button-toggle-vertical{flex-direction:column}.mat-button-toggle-vertical .mat-button-toggle-label-content{display:block}.mat-button-toggle{white-space:nowrap;position:relative;color:var(--mat-button-toggle-legacy-text-color);font-family:var(--mat-button-toggle-legacy-label-text-font);font-size:var(--mat-button-toggle-legacy-label-text-size);line-height:var(--mat-button-toggle-legacy-label-text-line-height);font-weight:var(--mat-button-toggle-legacy-label-text-weight);letter-spacing:var(--mat-button-toggle-legacy-label-text-tracking);--mat-pseudo-checkbox-minimal-selected-checkmark-color: var(--mat-button-toggle-legacy-selected-state-text-color)}.mat-button-toggle.cdk-keyboard-focused .mat-button-toggle-focus-overlay{opacity:var(--mat-button-toggle-legacy-focus-state-layer-opacity)}.mat-button-toggle .mat-icon svg{vertical-align:top}.mat-button-toggle-checkbox-wrapper{display:inline-block;justify-content:flex-start;align-items:center;width:0;height:18px;line-height:18px;overflow:hidden;box-sizing:border-box;position:absolute;top:50%;left:16px;transform:translate3d(0, -50%, 0)}[dir=rtl] .mat-button-toggle-checkbox-wrapper{left:auto;right:16px}.mat-button-toggle-appearance-standard .mat-button-toggle-checkbox-wrapper{left:12px}[dir=rtl] .mat-button-toggle-appearance-standard .mat-button-toggle-checkbox-wrapper{left:auto;right:12px}.mat-button-toggle-checked .mat-button-toggle-checkbox-wrapper{width:18px}.mat-button-toggle-animations-enabled .mat-button-toggle-checkbox-wrapper{transition:width 150ms 45ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-button-toggle-vertical .mat-button-toggle-checkbox-wrapper{transition:none}.mat-button-toggle-checked{color:var(--mat-button-toggle-legacy-selected-state-text-color);background-color:var(--mat-button-toggle-legacy-selected-state-background-color)}.mat-button-toggle-disabled{pointer-events:none;color:var(--mat-button-toggle-legacy-disabled-state-text-color);background-color:var(--mat-button-toggle-legacy-disabled-state-background-color);--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: var(--mat-button-toggle-legacy-disabled-state-text-color)}.mat-button-toggle-disabled.mat-button-toggle-checked{background-color:var(--mat-button-toggle-legacy-disabled-selected-state-background-color)}.mat-button-toggle-disabled-interactive{pointer-events:auto}.mat-button-toggle-appearance-standard{color:var(--mat-button-toggle-text-color, var(--mat-sys-on-surface));background-color:var(--mat-button-toggle-background-color, transparent);font-family:var(--mat-button-toggle-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-toggle-label-text-size, var(--mat-sys-label-large-size));line-height:var(--mat-button-toggle-label-text-line-height, var(--mat-sys-label-large-line-height));font-weight:var(--mat-button-toggle-label-text-weight, var(--mat-sys-label-large-weight));letter-spacing:var(--mat-button-toggle-label-text-tracking, var(--mat-sys-label-large-tracking))}.mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard+.mat-button-toggle-appearance-standard{border-left:solid 1px var(--mat-button-toggle-divider-color, var(--mat-sys-outline))}[dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard+.mat-button-toggle-appearance-standard{border-left:none;border-right:solid 1px var(--mat-button-toggle-divider-color, var(--mat-sys-outline))}.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle-appearance-standard+.mat-button-toggle-appearance-standard{border-left:none;border-right:none;border-top:solid 1px var(--mat-button-toggle-divider-color, var(--mat-sys-outline))}.mat-button-toggle-appearance-standard.mat-button-toggle-checked{color:var(--mat-button-toggle-selected-state-text-color, var(--mat-sys-on-secondary-container));background-color:var(--mat-button-toggle-selected-state-background-color, var(--mat-sys-secondary-container))}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled{color:var(--mat-button-toggle-disabled-state-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-button-toggle-disabled-state-background-color, transparent)}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled .mat-pseudo-checkbox{--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: var(--mat-button-toggle-disabled-selected-state-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled.mat-button-toggle-checked{color:var(--mat-button-toggle-disabled-selected-state-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-button-toggle-disabled-selected-state-background-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:var(--mat-button-toggle-state-layer-color, var(--mat-sys-on-surface))}.mat-button-toggle-appearance-standard:hover .mat-button-toggle-focus-overlay{opacity:var(--mat-button-toggle-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-button-toggle-appearance-standard.cdk-keyboard-focused .mat-button-toggle-focus-overlay{opacity:var(--mat-button-toggle-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}@media(hover: none){.mat-button-toggle-appearance-standard:hover .mat-button-toggle-focus-overlay{display:none}}.mat-button-toggle-label-content{-webkit-user-select:none;user-select:none;display:inline-block;padding:0 16px;line-height:var(--mat-button-toggle-legacy-height);position:relative}.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{padding:0 12px;line-height:var(--mat-button-toggle-height, 40px)}.mat-button-toggle-label-content>*{vertical-align:middle}.mat-button-toggle-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:inherit;pointer-events:none;opacity:0;background-color:var(--mat-button-toggle-legacy-state-layer-color)}@media(forced-colors: active){.mat-button-toggle-checked .mat-button-toggle-focus-overlay{border-bottom:solid 500px;opacity:.5;height:0}.mat-button-toggle-checked:hover .mat-button-toggle-focus-overlay{opacity:.6}.mat-button-toggle-checked.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{border-bottom:solid 500px}}.mat-button-toggle .mat-button-toggle-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-button-toggle-button{border:0;background:none;color:inherit;padding:0;margin:0;font:inherit;outline:none;width:100%;cursor:pointer}.mat-button-toggle-animations-enabled .mat-button-toggle-button{transition:padding 150ms 45ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-button-toggle-vertical .mat-button-toggle-button{transition:none}.mat-button-toggle-disabled .mat-button-toggle-button{cursor:default}.mat-button-toggle-button::-moz-focus-inner{border:0}.mat-button-toggle-checked .mat-button-toggle-button:has(.mat-button-toggle-checkbox-wrapper){padding-left:30px}[dir=rtl] .mat-button-toggle-checked .mat-button-toggle-button:has(.mat-button-toggle-checkbox-wrapper){padding-left:0;padding-right:30px}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard{--mat-focus-indicator-border-radius: var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large))}.mat-button-toggle-group-appearance-standard:not(.mat-button-toggle-vertical) .mat-button-toggle:last-of-type .mat-button-toggle-button::before{border-top-right-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large));border-bottom-right-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large))}.mat-button-toggle-group-appearance-standard:not(.mat-button-toggle-vertical) .mat-button-toggle:first-of-type .mat-button-toggle-button::before{border-top-left-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large));border-bottom-left-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large))}.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle:last-of-type .mat-button-toggle-button::before{border-bottom-right-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large));border-bottom-left-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large))}.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle:first-of-type .mat-button-toggle-button::before{border-top-right-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large));border-top-left-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large))}\n"],encapsulation:2,changeDetection:0})}return kt})(),ie=(()=>{class kt{static \u0275fac=function(mn){return new(mn||kt)};static \u0275mod=W.$C({type:kt});static \u0275inj=G.G2t({imports:[be.y,ne.p,te,be.y]})}return kt})();var P=l(5596),F=l(2765),ve=l(5084),H=l(9454),$=l(2885),Ke=l(2629),Vt=l(3746),St=l(3902),ot=l(9115),nt=l(6695),ht=l(7575),oe=l(9183),Ye=l(5951),fe=l(6183),Qe=l(882),gt=l(450),Gt=l(9842);l(1413);let dn=(()=>{class kt{static \u0275fac=function(mn){return new(mn||kt)};static \u0275mod=W.$C({type:kt});static \u0275inj=G.G2t({imports:[be.y,ne.p]})}return kt})();var xn=l(5416),Jn=l(2042),xi=l(6013),Yi=l(1676),Tt=l(6850),At=l(5911),we=l(6156),ae=l(7358),Lt=l(6471),Ht=l(9340),_n=l(6038),fi=l(2920);l(4085);let wa=(()=>{class kt{}return kt.\u0275fac=function($e){return new($e||kt)},kt.\u0275mod=W.$C({type:kt}),kt.\u0275inj=G.G2t({imports:[Ht.Ui]}),kt})();var ja=l(177);let Or=(()=>{class kt{constructor($e,mn){(0,ja.Vy)(mn)&&!$e&&console.warn("Warning: Flex Layout loaded on the server without FlexLayoutServerModule")}static withConfig($e,mn=[]){return{ngModule:kt,providers:$e.serverLoaded?[{provide:Ht.EA,useValue:{...Ht.PV,...$e}},{provide:Ht.SL,useValue:mn,multi:!0},{provide:Ht.Ce,useValue:!0}]:[{provide:Ht.EA,useValue:{...Ht.PV,...$e}},{provide:Ht.SL,useValue:mn,multi:!0}]}}}return kt.\u0275fac=function($e){return new($e||kt)(G.KVO(Ht.Ce),G.KVO(W.Agw))},kt.\u0275mod=W.$C({type:kt}),kt.\u0275inj=G.G2t({imports:[fi.w2,_n.Cc,wa,fi.w2,_n.Cc,wa]}),kt})();var Rr=l(1993),Fs=l(8288),Hr=l(497),Ks=l(9338);let Sr=(()=>{var kt;class On extends Ks.Sf{constructor(mn,Ln){super(mn,Ln)}_createContainer(){super._createContainer(),this._containerElement&&(document.querySelector("#rtl-container")||document.body).appendChild(this._containerElement)}ngOnDestroy(){super.ngOnDestroy()}static#e=kt=()=>(this.\u0275fac=function(Ln){return new(Ln||On)(W.rXU(G.qQL),W.rXU(Gt.O))},this.\u0275dir=W.FsC({type:On,features:[W.Vt3]}))}return kt(),On})();var Ne=l(8570),He=l(4416),q=l(2929),mt=l(9330);const ln={suppressScrollX:!1,suppressScrollY:!1};let Oi=(()=>{var kt;class On extends e.xW{constructor(mn){super(mn)}format(mn,Ln){if("input"===Ln){let Ei=mn.getDate().toString();return Ei=+Ei<10?"0"+Ei:Ei,Ei+"/"+He.KR[mn.getMonth()].name.toUpperCase()+"/"+mn.getFullYear()}return He.KR[mn.getMonth()].name.toUpperCase()+" "+mn.getFullYear()}static#e=kt=()=>(this.\u0275fac=function(Ln){return new(Ln||On)(G.KVO(O.Ju,8))},this.\u0275prov=G.jDH({token:On,factory:On.\u0275fac}))}return kt(),On})();const ua={parse:{dateInput:{day:"numeric",month:"short",year:"numeric"}},display:{dateInput:"input",monthYearLabel:{month:"short",year:"numeric"},dateA11yLabel:{day:"numeric",month:"short",year:"numeric"},monthYearA11yLabel:{month:"short",year:"numeric"}}};let Es=(()=>{var kt;class On{static#e=kt=()=>(this.\u0275fac=function(Ln){return new(Ln||On)},this.\u0275mod=W.$C({type:On}),this.\u0275inj=G.G2t({providers:[{provide:Ne.gP,useClass:Ne.tU},{provide:Hr.kU,useValue:ln},{provide:xn.x6,useValue:{duration:2e3,verticalPosition:"bottom",panelClass:"rtl-snack-bar"}},{provide:f.di,useValue:{hasBackdrop:!0,autoFocus:!0,disableClose:!0,role:"dialog"}},{provide:O.MJ,useClass:Oi},{provide:O.de,useValue:ua},{provide:Ks.Sf,useClass:Sr},i.QX,i.PV,i.vh,q.gZ,q.ZE,q.VD,q.Qu],imports:[i.MD,mt.q1,v.YN,v.X1,T.dX,w.RH,f.hM,C.Hl,ie,P.Hu,F.g7,H.MY,$.Fe,ve.X6,e.WX,Ke.m_,Vt.fS,St.Fg,ot.Cn,ht.PO,oe.D6,Ye.Wk,ae.jH,Or,Lt.YN,fe.Ve,Qe.vg,gt.mV,Jn.NQ,Yi.tP,At.s5,we.u,L.Y,nt.Ou,xi.aP,dn,Tt.RI,xn._T,u.jL,Rr.dV,Fs.XK,d.iI,Hr.U$,v.YN,v.X1,T.dX,w.RH,f.hM,C.Hl,ie,P.Hu,F.g7,H.MY,$.Fe,ve.X6,e.WX,Ke.m_,Vt.fS,St.Fg,ot.Cn,ht.PO,oe.D6,Ye.Wk,ae.jH,Or,Lt.YN,fe.Ve,Qe.vg,gt.mV,Jn.NQ,Yi.tP,At.s5,we.u,L.Y,nt.Ou,xi.aP,dn,Tt.RI,xn._T,u.jL,Rr.dV,Fs.XK,Hr.U$]}))}return kt(),On})()},1771(Zt,pe,l){"use strict";l.d(pe,{Dz:()=>le,Fl:()=>V,Gd:()=>w,I1:()=>B,IK:()=>W,Jh:()=>e,My:()=>T,NU:()=>j,Np:()=>xe,OP:()=>Pe,Qi:()=>G,R$:()=>C,T$:()=>re,Tn:()=>Ae,UI:()=>O,iD:()=>Re,mt:()=>f,oz:()=>J,rc:()=>Ee,ri:()=>ce,t2:()=>_e,uP:()=>A,xO:()=>L,xw:()=>be,y0:()=>u});var i=l(9640),d=l(4416);(0,i.VP)(d.aU.VOID);const T=(0,i.VP)(d.aU.SET_API_URL_ECL,(0,i.xk)()),w=(0,i.VP)(d.aU.UPDATE_API_CALL_STATUS_ROOT,(0,i.xk)()),e=(0,i.VP)(d.aU.CLOSE_ALL_DIALOGS),O=(0,i.VP)(d.aU.OPEN_SNACK_BAR,(0,i.xk)()),f=(0,i.VP)(d.aU.OPEN_SPINNER,(0,i.xk)()),u=(0,i.VP)(d.aU.CLOSE_SPINNER,(0,i.xk)()),L=(0,i.VP)(d.aU.OPEN_ALERT,(0,i.xk)()),C=(0,i.VP)(d.aU.CLOSE_ALERT,(0,i.xk)()),B=(0,i.VP)(d.aU.OPEN_CONFIRMATION,(0,i.xk)()),A=(0,i.VP)(d.aU.CLOSE_CONFIRMATION,(0,i.xk)()),Pe=(0,i.VP)(d.aU.SHOW_PUBKEY),le=(0,i.VP)(d.aU.FETCH_CONFIG,(0,i.xk)()),Ae=((0,i.VP)(d.aU.SHOW_CONFIG,(0,i.xk)()),(0,i.VP)(d.aU.RESET_ROOT_STORE,(0,i.xk)())),j=(0,i.VP)(d.aU.FETCH_APPLICATION_SETTINGS),W=(0,i.VP)(d.aU.SET_APPLICATION_SETTINGS,(0,i.xk)()),G=(0,i.VP)(d.aU.SET_SELECTED_NODE,(0,i.xk)()),re=(0,i.VP)(d.aU.UPDATE_NODE_SETTINGS,(0,i.xk)()),xe=(0,i.VP)(d.aU.SET_SELECTED_NODE_SETTINGS,(0,i.xk)()),Ee=(0,i.VP)(d.aU.UPDATE_APPLICATION_SETTINGS,(0,i.xk)()),V=(0,i.VP)(d.aU.SET_NODE_DATA,(0,i.xk)()),ce=(0,i.VP)(d.aU.LOGOUT,(0,i.xk)()),be=(0,i.VP)(d.aU.RESET_PASSWORD,(0,i.xk)()),J=((0,i.VP)(d.aU.RESET_PASSWORD_RES,(0,i.xk)()),(0,i.VP)(d.aU.IS_AUTHORIZED,(0,i.xk)())),Re=((0,i.VP)(d.aU.IS_AUTHORIZED_RES,(0,i.xk)()),(0,i.VP)(d.aU.LOGIN,(0,i.xk)())),_e=((0,i.VP)(d.aU.VERIFY_TWO_FA,(0,i.xk)()),(0,i.VP)(d.aU.FETCH_FILE,(0,i.xk)()));(0,i.VP)(d.aU.SHOW_FILE,(0,i.xk)())},7541(Zt,pe,l){"use strict";l.d(pe,{H:()=>ci});var i=l(7705),d=l(1747),v=l(1413),T=l(7673),w=l(6354),e=l(6697),O=l(3993),f=l(1397),u=l(9437),L=l(6977),C=l(4416),B=l(1585),A=l(3664),Pe=l(9183),le=l(2920);let Ce=(()=>{var rn;class In{constructor(Vn,ii){this.dialogRef=Vn,this.data=ii}static#e=rn=()=>(this.\u0275fac=function(ii){return new(ii||In)(A.rXU(B.CP),A.rXU(B.Vh))},this.\u0275cmp=A.VBU({type:In,selectors:[["rtl-spinner-dialog"]],standalone:!1,decls:4,vars:1,consts:[["fxLayout","column","fxLayoutAlign","center center",1,"spinner-container"],["color","primary","mode","indeterminate",1,"modal-spinner-message"]],template:function(ii,Bn){1&ii&&(A.j41(0,"div",0),A.nrm(1,"mat-progress-spinner",1),A.j41(2,"h2"),A.EFF(3),A.k0s()()),2&ii&&(A.R7$(3),A.JRh(Bn.data.titleMessage))},dependencies:[Pe.LG,le.DJ,le.sA],styles:["h2[_ngcontent-%COMP%]{text-align:center}"]}))}return rn(),In})();var Ae=l(5383),j=l(9647),W=l(2615),G=l(8570),re=l(5416),xe=l(2571),Ee=l(3694),V=l(9640),ce=l(2200),be=l(60),ne=l(8834),J=l(5596),De=l(2629),Re=l(1997),Xe=l(6038),_e=l(455),he=l(8288),Dt=l(497),lt=l(9157),Le=l(9587);const te=["scrollContainer"],ie=rn=>({"display-none":rn}),P=rn=>({"h-40":rn}),F=rn=>({"failed-status":rn});function ve(rn,In){if(1&rn&&A.nrm(0,"qr-code",19),2&rn){const Mn=A.XpG();A.Y8G("value",Mn.showQRField)("size",200)}}function H(rn,In){1&rn&&A.eu8(0)}function $(rn,In){if(1&rn&&(A.qex(0),A.j41(1,"mat-card-content",20,1),A.DNE(3,H,1,0,"ng-container",21),A.k0s(),A.bVm()),2&rn){const Mn=A.XpG(),Vn=A.sdS(20);A.R7$(),A.Y8G("ngClass",A.eq3(2,P,Mn.data.scrollable)),A.R7$(2),A.Y8G("ngTemplateOutlet",Vn)}}function Ke(rn,In){1&rn&&A.eu8(0)}function Vt(rn,In){if(1&rn&&(A.qex(0),A.j41(1,"mat-card-content",22),A.DNE(2,Ke,1,0,"ng-container",21),A.k0s(),A.bVm()),2&rn){A.XpG();const Mn=A.sdS(20);A.R7$(2),A.Y8G("ngTemplateOutlet",Mn)}}function St(rn,In){1&rn&&(A.j41(0,"mat-icon",27),A.EFF(1,"arrow_downward"),A.k0s())}function ot(rn,In){1&rn&&(A.j41(0,"mat-icon",28),A.EFF(1,"arrow_upward"),A.k0s())}function nt(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"div",23)(1,"button",24),A.bIt("click",function(){W.eBV(Mn);const ii=A.XpG();return W.Njj(ii.onScroll())}),A.DNE(2,St,2,0,"mat-icon",25)(3,ot,2,0,"mat-icon",26),A.k0s()()}if(2&rn){const Mn=A.XpG();A.R7$(2),A.Y8G("ngIf","DOWN"===Mn.scrollDirection),A.R7$(),A.Y8G("ngIf","UP"===Mn.scrollDirection)}}function ht(rn,In){1&rn&&(A.j41(0,"button",29),A.EFF(1,"OK"),A.k0s()),2&rn&&A.Y8G("mat-dialog-close",!1)}function oe(rn,In){1&rn&&(A.j41(0,"button",30),A.EFF(1,"Close"),A.k0s()),2&rn&&A.Y8G("mat-dialog-close",!1)}function Ye(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"button",31),A.bIt("copied",function(ii){W.eBV(Mn);const Bn=A.XpG();return W.Njj(Bn.onCopyField(ii))}),A.EFF(1),A.k0s()}if(2&rn){const Mn=A.XpG();A.Y8G("payload",Mn.showCopyField),A.R7$(),A.SpI("Copy ",Mn.showCopyName)}}function fe(rn,In){1&rn&&(A.j41(0,"button",30),A.EFF(1,"Close"),A.k0s()),2&rn&&A.Y8G("mat-dialog-close",!1)}function Qe(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"button",31),A.bIt("copied",function(ii){W.eBV(Mn);const Bn=A.XpG();return W.Njj(Bn.onCopyField(ii))}),A.EFF(1),A.k0s()}if(2&rn){const Mn=A.XpG();A.Y8G("payload",Mn.showQRField),A.R7$(),A.SpI("Copy ",Mn.showQRName)}}function gt(rn,In){if(1&rn&&A.nrm(0,"qr-code",19),2&rn){const Mn=A.XpG(2);A.Y8G("value",Mn.showQRField)("size",200)}}function Gt(rn,In){if(1&rn&&(A.j41(0,"p",37),A.EFF(1),A.k0s()),2&rn){const Mn=A.XpG(2);A.R7$(),A.JRh(Mn.data.titleMessage)}}function rt(rn,In){1&rn&&A.nrm(0,"span",51),2&rn&&A.Y8G("innerHTML",In.$implicit,A.npT)}function cn(rn,In){if(1&rn&&(A.qex(0),A.j41(1,"span",34),A.DNE(2,rt,1,1,"span",50),A.k0s(),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(2),A.Y8G("ngForOf",Mn.value)}}function Ft(rn,In){if(1&rn&&(A.qex(0),A.EFF(1),A.nI1(2,"date"),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*Mn.value,"dd/MMM/y HH:mm"))}}function Sn(rn,In){if(1&rn&&(A.qex(0),A.EFF(1),A.nI1(2,"number"),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.JRh(A.i5U(2,1,Mn.value,Mn.digitsInfo?Mn.digitsInfo:"1.0-3"))}}function Qn(rn,In){if(1&rn&&(A.qex(0),A.EFF(1),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.JRh(Mn.value?"True":"False")}}function h(rn,In){1&rn&&(A.j41(0,"mat-icon",55),A.EFF(1,"info"),A.k0s())}function jt(rn,In){if(1&rn&&(A.j41(0,"p",53),A.EFF(1),A.DNE(2,h,2,0,"mat-icon",54),A.k0s()),2&rn){const Mn=A.XpG(3).$implicit,Vn=A.XpG(4);A.Y8G("ngClass",A.eq3(3,F,Mn.value===Vn.LoopStateEnum.FAILED)),A.R7$(),A.SpI(" ",Mn.value," "),A.R7$(),A.Y8G("ngIf",Mn.value===Vn.LoopStateEnum.FAILED)}}function Ue(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"p",57),A.bIt("click",function(){W.eBV(Mn);const ii=A.XpG(8);return W.Njj(ii.onGoToLink())}),A.EFF(1),A.k0s()}if(2&rn){const Mn=A.XpG(4).$implicit,Vn=A.XpG(4);A.Y8G("matTooltip",A.mNQ("Go To "+Vn.goToName)),A.R7$(),A.SpI(" ",Mn.value," ")}}function wt(rn,In){if(1&rn&&A.EFF(0),2&rn){const Mn=A.XpG(4).$implicit;A.SpI(" ",Mn.value," ")}}function pt(rn,In){if(1&rn&&A.DNE(0,Ue,2,3,"p",56)(1,wt,1,1,"ng-template",null,4,A.C5r),2&rn){const Mn=A.sdS(2),Vn=A.XpG(3).$implicit,ii=A.XpG(4);A.Y8G("ngIf",Vn.value===ii.goToFieldValue)("ngIfElse",Mn)}}function Pt(rn,In){if(1&rn&&(A.qex(0),A.DNE(1,jt,3,5,"p",52)(2,pt,3,2,"ng-template",null,3,A.C5r),A.bVm()),2&rn){const Mn=A.sdS(3),Vn=A.XpG(2).$implicit,ii=A.XpG(4);A.R7$(),A.Y8G("ngIf","SWAP"===ii.data.openedBy&&"state"===Vn.key)("ngIfElse",Mn)}}function gn(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"fa-icon",58),A.bIt("click",function(){W.eBV(Mn);const ii=A.XpG(2).$implicit,Bn=A.XpG(4);return W.Njj(Bn.onExplorerClicked(ii))}),A.k0s()}if(2&rn){const Mn=A.XpG(6);A.Y8G("matTooltip",A.mNQ("Link to "+Mn.selNode.settings.blockExplorerUrl))("icon",Mn.faUpRightFromSquare)}}function ei(rn,In){if(1&rn&&(A.j41(0,"span")(1,"span",46),A.DNE(2,cn,3,1,"ng-container",47)(3,Ft,3,4,"ng-container",47)(4,Sn,3,4,"ng-container",47)(5,Qn,2,1,"ng-container",47)(6,Pt,4,2,"ng-container",48),A.j41(7,"span"),A.DNE(8,gn,1,3,"fa-icon",49),A.k0s()()()),2&rn){const Mn=A.XpG().$implicit,Vn=A.XpG(4);A.R7$(),A.Y8G("ngSwitch",Mn.type),A.R7$(),A.Y8G("ngSwitchCase",Vn.dataTypeEnum.ARRAY),A.R7$(),A.Y8G("ngSwitchCase",Vn.dataTypeEnum.DATE_TIME),A.R7$(),A.Y8G("ngSwitchCase",Vn.dataTypeEnum.NUMBER),A.R7$(),A.Y8G("ngSwitchCase",Vn.dataTypeEnum.BOOLEAN),A.R7$(3),A.Y8G("ngIf",Mn.explorerLink&&""!==Mn.explorerLink)}}function vi(rn,In){1&rn&&(A.j41(0,"span",59),A.EFF(1,"\xa0"),A.k0s())}function Ni(rn,In){if(1&rn&&(A.j41(0,"div",42)(1,"h4",43),A.EFF(2),A.k0s(),A.DNE(3,ei,9,6,"span",44)(4,vi,2,0,"ng-template",null,2,A.C5r),A.nrm(6,"mat-divider",45),A.k0s()),2&rn){const Mn=In.$implicit,Vn=A.sdS(5);A.Y8G("fxFlex.gt-md",A.mNQ(Mn.width)),A.R7$(2),A.JRh(Mn.title),A.R7$(),A.Y8G("ngIf",Mn&&(!!Mn.value||0===Mn.value))("ngIfElse",Vn)}}function kn(rn,In){if(1&rn&&(A.j41(0,"div")(1,"div",40),A.DNE(2,Ni,7,5,"div",41),A.k0s()()),2&rn){const Mn=In.$implicit;A.R7$(2),A.Y8G("ngForOf",Mn)}}function Ri(rn,In){if(1&rn&&(A.j41(0,"div",38),A.DNE(1,kn,3,1,"div",39),A.k0s()),2&rn){const Mn=A.XpG(2);A.R7$(),A.Y8G("ngForOf",Mn.messageObjs)}}function vt(rn,In){if(1&rn&&(A.j41(0,"div",32)(1,"div",33),A.DNE(2,gt,1,2,"qr-code",7),A.k0s(),A.j41(3,"div",34),A.DNE(4,Gt,2,1,"p",35)(5,Ri,2,1,"div",36),A.k0s()()),2&rn){const Mn=A.XpG();A.R7$(),A.Y8G("ngClass",A.eq3(4,ie,""===Mn.showQRField||Mn.screenSize!==Mn.screenSizeEnum.XS&&Mn.screenSize!==Mn.screenSizeEnum.SM)),A.R7$(),A.Y8G("ngIf",""!==Mn.showQRField),A.R7$(2),A.Y8G("ngIf",Mn.data.titleMessage),A.R7$(),A.Y8G("ngIf",(null==Mn.messageObjs?null:Mn.messageObjs.length)>0)}}let ee=(()=>{var rn;class In{set container(Vn){Vn&&(this.scrollContainer=Vn,this.scrollContainer&&this.scrollContainer.nativeElement&&(this.unlistenEnd=this.renderer.listen(this.scrollContainer.nativeElement,"ps-y-reach-end",ii=>{this.scrollDirection="UP"}),this.unlistenStart=this.renderer.listen(this.scrollContainer.nativeElement,"ps-y-reach-start",ii=>{this.scrollDirection="DOWN"})))}constructor(Vn,ii,Bn,ia,ra,fa,ha,qt){this.dialogRef=Vn,this.data=ii,this.logger=Bn,this.snackBar=ia,this.commonService=ra,this.renderer=fa,this.router=ha,this.store=qt,this.faUpRightFromSquare=Ae.k02,this.LoopStateEnum=C.Hx,this.goToFieldValue="",this.goToName="",this.goToLink="",this.showQRField="",this.showQRName="",this.showCopyName="",this.showCopyField="",this.errorMessage="",this.messageObjs=[],this.alertTypeEnum=C.A$,this.dataTypeEnum=C.UN,this.screenSize="",this.screenSizeEnum=C.f7,this.scrollDirection="DOWN",this.shouldScroll=!0,this.unSubs=[new v.B,new v.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.messageObjs=this.data.message||[],this.goToFieldValue=this.data.goToFieldValue?this.data.goToFieldValue:"",this.goToName=this.data.goToName?this.data.goToName:"",this.goToLink=this.data.goToLink?this.data.goToLink:"",this.showQRField=this.data.showQRField?this.data.showQRField:"",this.showQRName=this.data.showQRName?this.data.showQRName:"",this.showCopyName=this.data.showCopyName?this.data.showCopyName:"",this.showCopyField=this.data.showCopyField?this.data.showCopyField:"",this.data.type===C.A$.ERROR&&!this.data.message&&!this.data.titleMessage&&this.messageObjs.length<=0&&(this.data.titleMessage="Please Check Server Connection"),this.logger.info(this.messageObjs),this.store.select(j._c).pipe((0,L.Q)(this.unSubs[0])).subscribe(Vn=>{this.selNode=Vn,this.logger.info(this.selNode)})}ngAfterViewChecked(){setTimeout(()=>{this.shouldScroll=this.scrollContainer&&this.scrollContainer.nativeElement&&this.scrollContainer.nativeElement.classList.value.includes("ps--active-y")},500)}onScroll(){this.scrollContainer.nativeElement.scrollTop="DOWN"===this.scrollDirection?this.scrollContainer.nativeElement.scrollTop+62.6:this.scrollContainer.nativeElement.scrollTop-62.6}onCopyField(Vn){this.snackBar.open((this.showQRName?this.showQRName:this.showCopyName)+" copied."),this.logger.info("Copied Text: "+Vn)}onClose(){this.dialogRef.close(!1)}onGoToLink(){this.router.navigateByUrl(this.goToLink,{state:{lookupType:"0",lookupValue:this.goToFieldValue}}),this.onClose()}onExplorerClicked(Vn){window.open(this.selNode.settings.blockExplorerUrl+"/"+Vn.explorerLink+"/"+Vn.value,"_blank")}ngOnDestroy(){this.unlistenStart&&this.unlistenStart(),this.unlistenEnd&&this.unlistenEnd(),this.unSubs.forEach(Vn=>{Vn.next(null),Vn.complete()})}static#e=rn=()=>(this.\u0275fac=function(ii){return new(ii||In)(A.rXU(B.CP),A.rXU(B.Vh),A.rXU(G.gP),A.rXU(re.UG),A.rXU(xe.h),A.rXU(A.sFG),A.rXU(Ee.Ix),A.rXU(V.il))},this.\u0275cmp=A.VBU({type:In,selectors:[["rtl-alert-message"]],viewQuery:function(ii,Bn){if(1&ii&&A.GBs(te,5),2&ii){let ia;A.mGM(ia=A.lsd())&&(Bn.container=ia.first)}},standalone:!1,decls:21,vars:14,consts:[["contentBlock",""],["scrollContainer",""],["emptyField",""],["noStyleBlock",""],["noStyleChild",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","30","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large","ml-1",3,"ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],[3,"ngClass"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","start end","class","btn-sticky-container padding-gap-x-large",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close",4,"ngIf"],["class","mr-1","fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",3,"mat-dialog-close",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"padding-gap-x-large",3,"perfectScrollbar","ngClass"],[4,"ngTemplateOutlet"],[1,"padding-gap-x-large"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll","fxLayoutAlign","center center",3,"click"],["class","arrow-downward","fxLayoutAlign","center center",4,"ngIf"],["class","arrow-upward","fxLayoutAlign","center center",4,"ngIf"],["fxLayoutAlign","center center",1,"arrow-downward"],["fxLayoutAlign","center center",1,"arrow-upward"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close"],["fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",1,"mr-1",3,"mat-dialog-close"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large","mb-1",3,"ngClass"],["fxLayout","column","fxFlex","100"],["fxLayoutAlign","start center","class","pb-2",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxLayoutAlign","start center",1,"pb-2"],["fxFlex","100"],[4,"ngFor","ngForOf"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center","fxLayoutAlign.gt-md","space-between start"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md"],["fxLayoutAlign","start",1,"font-bold-500"],[4,"ngIf","ngIfElse"],[1,"w-100","my-1"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",1,"foreground-secondary-text",3,"ngSwitch"],[4,"ngSwitchCase"],[4,"ngSwitchDefault"],["class","ml-1 fa-icon-primary",3,"matTooltip","icon","click",4,"ngIf"],["class","display-block w-100",3,"innerHTML",4,"ngFor","ngForOf"],[1,"display-block","w-100",3,"innerHTML"],["fxLayout","row",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","row",3,"ngClass"],["fxLayoutAlign","end end","class","icon-failed-status",4,"ngIf"],["fxLayoutAlign","end end",1,"icon-failed-status"],["fxLayout","row","class","go-to-link","tabindex","4",3,"matTooltip","click",4,"ngIf","ngIfElse"],["fxLayout","row","tabindex","4",1,"go-to-link",3,"click","matTooltip"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["fxFlex","100",1,"foreground-secondary-text"]],template:function(ii,Bn){if(1&ii){const ia=A.RV6();A.j41(0,"div",5)(1,"div",6),A.DNE(2,ve,1,2,"qr-code",7),A.k0s(),A.j41(3,"div",8)(4,"mat-card-header",9)(5,"div",10)(6,"span",11),A.EFF(7),A.k0s()(),A.j41(8,"button",12),A.bIt("click",function(){return W.eBV(ia),W.Njj(Bn.onClose())}),A.EFF(9,"X"),A.k0s()(),A.DNE(10,$,4,4,"ng-container",13)(11,Vt,3,1,"ng-container",13)(12,nt,4,2,"div",14),A.j41(13,"div",15),A.DNE(14,ht,2,1,"button",16)(15,oe,2,1,"button",17)(16,Ye,2,2,"button",18)(17,fe,2,1,"button",17)(18,Qe,2,2,"button",18),A.k0s()()(),A.DNE(19,vt,6,6,"ng-template",null,0,A.C5r)}2&ii&&(A.R7$(),A.Y8G("ngClass",A.eq3(12,ie,""===Bn.showQRField||Bn.screenSize===Bn.screenSizeEnum.XS||Bn.screenSize===Bn.screenSizeEnum.SM)),A.R7$(),A.Y8G("ngIf",""!==Bn.showQRField),A.R7$(),A.Y8G("ngClass",""===Bn.showQRField||Bn.screenSize===Bn.screenSizeEnum.XS||Bn.screenSize===Bn.screenSizeEnum.SM?"flex-100":"flex-70"),A.R7$(4),A.JRh(Bn.data.alertTitle||Bn.alertTypeEnum[Bn.data.type]),A.R7$(3),A.Y8G("ngIf",Bn.data.scrollable),A.R7$(),A.Y8G("ngIf",!Bn.data.scrollable),A.R7$(),A.Y8G("ngIf",Bn.data.scrollable&&Bn.shouldScroll),A.R7$(2),A.Y8G("ngIf",(!Bn.showQRField||""===Bn.showQRField)&&""===Bn.showCopyName),A.R7$(),A.Y8G("ngIf",""!==Bn.showCopyName),A.R7$(),A.Y8G("ngIf",""!==Bn.showCopyName),A.R7$(),A.Y8G("ngIf",""!==Bn.showQRField),A.R7$(),A.Y8G("ngIf",""!==Bn.showQRField))},dependencies:[ce.YU,ce.Sq,ce.bT,ce.T3,ce.ux,ce.e1,ce.fG,be.aY,B.tx,ne.$z,ne.$0,J.m2,J.MM,De.An,Re.q,le.DJ,le.sA,le.UI,Xe.PW,_e.oV,he.Um,Dt.Ld,lt.U,Le.N,ce.QX,ce.vh],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]}))}return rn(),In})();var ye=l(1771),ke=l(9417),Se=l(3746),ge=l(9588),N=l(6114);function Z(rn,In){if(1&rn&&(A.j41(0,"div",20),A.nrm(1,"fa-icon",21),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&rn){const Mn=A.XpG();A.R7$(),A.Y8G("icon",Mn.faExclamationTriangle),A.R7$(2),A.JRh(Mn.warningMessage)}}function Me(rn,In){if(1&rn&&(A.j41(0,"div",22),A.nrm(1,"fa-icon",21),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&rn){const Mn=A.XpG();A.R7$(),A.Y8G("icon",Mn.faInfoCircle),A.R7$(2),A.JRh(Mn.informationMessage)}}function at(rn,In){if(1&rn&&(A.j41(0,"p",23),A.EFF(1),A.k0s()),2&rn){const Mn=A.XpG();A.R7$(),A.JRh(Mn.data.titleMessage)}}function qe(rn,In){1&rn&&A.nrm(0,"div",37),2&rn&&A.Y8G("innerHTML",In.$implicit,A.npT)}function pn(rn,In){if(1&rn&&(A.qex(0,35),A.DNE(1,qe,1,1,"div",36),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.Y8G("ngForOf",Mn.value)}}function Je(rn,In){if(1&rn&&(A.qex(0),A.EFF(1),A.nI1(2,"date"),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*Mn.value,"dd/MMM/y HH:mm"))}}function Be(rn,In){if(1&rn&&(A.qex(0),A.EFF(1),A.nI1(2,"number"),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.JRh(A.i5U(2,1,Mn.value,"1.0-3"))}}function ut(rn,In){if(1&rn&&(A.qex(0),A.EFF(1),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.JRh(!0===Mn.value?"True":"False")}}function Ge(rn,In){if(1&rn&&(A.qex(0),A.EFF(1),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.JRh(Mn.value)}}function Ot(rn,In){if(1&rn&&(A.j41(0,"span")(1,"span",31),A.DNE(2,pn,2,1,"ng-container",32)(3,Je,3,4,"ng-container",33)(4,Be,3,4,"ng-container",33)(5,ut,2,1,"ng-container",33)(6,Ge,2,1,"ng-container",34),A.k0s()()),2&rn){const Mn=A.XpG().$implicit,Vn=A.XpG(3);A.R7$(),A.Y8G("ngSwitch",Mn.type),A.R7$(),A.Y8G("ngSwitchCase",Vn.dataTypeEnum.ARRAY),A.R7$(),A.Y8G("ngSwitchCase",Vn.dataTypeEnum.DATE_TIME),A.R7$(),A.Y8G("ngSwitchCase",Vn.dataTypeEnum.NUMBER),A.R7$(),A.Y8G("ngSwitchCase",Vn.dataTypeEnum.BOOLEAN)}}function se(rn,In){1&rn&&(A.j41(0,"span",38),A.EFF(1,"\xa0"),A.k0s())}function We(rn,In){if(1&rn&&(A.j41(0,"div",27)(1,"h4",28),A.EFF(2),A.k0s(),A.DNE(3,Ot,7,5,"span",29)(4,se,2,0,"ng-template",null,0,A.C5r),A.nrm(6,"mat-divider",30),A.k0s()),2&rn){const Mn=In.$implicit,Vn=A.sdS(5);A.Y8G("fxFlex.gt-md",A.mNQ(Mn.width)),A.R7$(2),A.JRh(Mn.title),A.R7$(),A.Y8G("ngIf",Mn&&(!!Mn.value||0===Mn.value))("ngIfElse",Vn)}}function bt(rn,In){if(1&rn&&(A.j41(0,"div")(1,"div",25),A.DNE(2,We,7,5,"div",26),A.k0s()()),2&rn){const Mn=In.$implicit;A.R7$(2),A.Y8G("ngForOf",Mn)}}function tn(rn,In){if(1&rn&&(A.j41(0,"div"),A.DNE(1,bt,3,1,"div",24),A.k0s()),2&rn){const Mn=A.XpG();A.R7$(),A.Y8G("ngForOf",Mn.messageObjs)}}function on(rn,In){if(1&rn&&(A.j41(0,"p",23),A.EFF(1),A.k0s()),2&rn){const Mn=A.XpG(2);A.R7$(),A.JRh(Mn.data.titleMessage)}}function un(rn,In){if(1&rn&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.SpI("",Mn.placeholder," is required.")}}function Nt(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"mat-form-field",42)(1,"mat-label"),A.EFF(2),A.k0s(),A.j41(3,"input",43),A.nI1(4,"lowercase"),A.mxI("ngModelChange",function(ii){W.eBV(Mn);const Bn=A.XpG().$implicit;return A.DH7(Bn.inputValue,ii)||(Bn.inputValue=ii),W.Njj(ii)}),A.k0s(),A.DNE(5,un,2,1,"mat-error",13),A.j41(6,"mat-hint"),A.EFF(7),A.k0s()()}if(2&rn){const Mn=A.XpG(),Vn=Mn.$implicit,ii=Mn.index;A.Y8G("ngClass",Vn.width),A.R7$(2),A.JRh(Vn.placeholder),A.R7$(),A.Y8G("name",A.VkB("input",ii))("autoFocus",0===ii)("min",Vn.min)("step",Vn.step)("type",A.bMT(4,12,Vn.inputType))("tabindex",ii+1),A.R50("ngModel",Vn.inputValue),A.R7$(2),A.Y8G("ngIf",!Vn.inputValue),A.R7$(2),A.JRh(Vn.hintFunction?Vn.hintFunction(Vn.inputValue):Vn.hintText)}}function dn(rn,In){if(1&rn&&(A.qex(0),A.DNE(1,Nt,8,14,"mat-form-field",41),A.bVm()),2&rn){const Mn=In.$implicit,Vn=A.XpG(2);A.R7$(),A.Y8G("ngIf",!Mn.advancedField||Vn.showAdvanced)}}function xn(rn,In){if(1&rn&&(A.j41(0,"div",39),A.DNE(1,on,2,1,"p",12),A.j41(2,"div",40),A.DNE(3,dn,2,1,"ng-container",24),A.k0s()()),2&rn){const Mn=A.XpG();A.R7$(),A.Y8G("ngIf",Mn.data.titleMessage),A.R7$(2),A.Y8G("ngForOf",Mn.getInputs)}}function Jn(rn,In){1&rn&&(A.j41(0,"p"),A.EFF(1,"Show Advanced"),A.k0s())}function xi(rn,In){1&rn&&(A.j41(0,"p"),A.EFF(1,"Hide Advanced"),A.k0s())}function Yi(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"button",44),A.bIt("click",function(){W.eBV(Mn);const ii=A.XpG();return W.Njj(ii.onShowAdvanced())}),A.DNE(1,Jn,2,0,"p",29)(2,xi,2,0,"ng-template",null,1,A.C5r),A.k0s()}if(2&rn){const Mn=A.sdS(3),Vn=A.XpG();A.R7$(),A.Y8G("ngIf",!Vn.showAdvanced)("ngIfElse",Mn)}}function Tt(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"button",45),A.bIt("click",function(){W.eBV(Mn);const ii=A.XpG();return W.Njj(ii.onClose(ii.getInputs))}),A.EFF(1),A.k0s()}if(2&rn){const Mn=A.XpG();A.R7$(),A.JRh(Mn.yesBtnText)}}function At(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"button",46),A.bIt("click",function(){W.eBV(Mn);const ii=A.XpG();return W.Njj(ii.onClose(!0))}),A.EFF(1),A.k0s()}if(2&rn){const Mn=A.XpG();A.R7$(),A.JRh(Mn.yesBtnText)}}let we=(()=>{var rn;class In{constructor(Vn,ii,Bn,ia){this.dialogRef=Vn,this.data=ii,this.logger=Bn,this.store=ia,this.faInfoCircle=Ae.iW_,this.faExclamationTriangle=Ae.zpE,this.informationMessage="",this.warningMessage="",this.noBtnText="No",this.yesBtnText="Yes",this.messageObjs=[],this.flgShowInput=!1,this.hasAdvanced=!1,this.alertTypeEnum=C.A$,this.dataTypeEnum=C.UN,this.getInputs=[{placeholder:"",inputType:C.UN.STRING,inputValue:"",hintText:"",hintFunction:null,advancedField:!1}],this.showAdvanced=!1}ngOnInit(){this.informationMessage=this.data.informationMessage||"",this.warningMessage=this.data.warningMessage||"",this.flgShowInput=!!this.data.flgShowInput,this.getInputs=this.data.getInputs||[],this.noBtnText=this.data.noBtnText?this.data.noBtnText:"No",this.yesBtnText=this.data.yesBtnText?this.data.yesBtnText:"Yes",this.hasAdvanced=!!this.data.hasAdvanced&&this.data.hasAdvanced,this.messageObjs=this.data.message,this.data.type===C.A$.ERROR&&!this.data.message&&!this.data.titleMessage&&this.messageObjs.length<=0&&(this.data.titleMessage="Please Check Server Connection")}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onClose(Vn){if(Vn&&this.getInputs&&this.getInputs.some(ii=>typeof ii.inputValue>"u"))return!0;!this.showAdvanced&&Vn.length&&(Vn=Vn?.reduce((ii,Bn)=>(Bn.advancedField||ii.push(Bn),ii),[])),this.store.dispatch((0,ye.uP)({payload:Vn}))}static#e=rn=()=>(this.\u0275fac=function(ii){return new(ii||In)(A.rXU(B.CP),A.rXU(B.Vh),A.rXU(G.gP),A.rXU(V.il))},this.\u0275cmp=A.VBU({type:In,selectors:[["rtl-confirmation-message"]],standalone:!1,decls:21,vars:10,consts:[["emptyField",""],["hideAdvancedText",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayoutAlign","start center","class","pb-1",4,"ngIf"],[4,"ngIf"],["fxLayout","column","class","bordered-box my-2 p-2",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],["mat-button","","color","primary","type","button","class","mr-1","tabindex","2",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","3","default","",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","4","default","",3,"click",4,"ngIf"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayoutAlign","start center",1,"pb-1"],[4,"ngFor","ngForOf"],["fxLayout","row wrap","fxLayoutAlign","start center","fxLayoutAlign.gt-md","space-between start"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md"],["fxLayoutAlign","start",1,"font-bold-500"],[4,"ngIf","ngIfElse"],[1,"w-100","my-1"],[1,"foreground-secondary-text",3,"ngSwitch"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch",4,"ngSwitchCase"],[4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch"],[3,"innerHTML",4,"ngFor","ngForOf"],[3,"innerHTML"],["fxFlex","100",1,"foreground-secondary-text"],["fxLayout","column",1,"bordered-box","my-2","p-2"],["fxLayout","row wrap","fxLayoutAlign","space-between center"],[3,"ngClass",4,"ngIf"],[3,"ngClass"],["matInput","","required","",3,"ngModelChange","name","autoFocus","min","step","type","tabindex","ngModel"],["mat-button","","color","primary","type","button","tabindex","2",1,"mr-1",3,"click"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","3","default","",3,"click"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","4","default","",3,"click"]],template:function(ii,Bn){1&ii&&(A.j41(0,"div",2)(1,"div",3)(2,"mat-card-header",4)(3,"div",5)(4,"span",6),A.EFF(5),A.k0s()(),A.j41(6,"button",7),A.bIt("click",function(){return Bn.onClose(!1)}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",8)(9,"form",9),A.DNE(10,Z,4,2,"div",10)(11,Me,4,2,"div",11)(12,at,2,1,"p",12)(13,tn,2,1,"div",13)(14,xn,4,2,"div",14),A.j41(15,"div",15)(16,"button",16),A.bIt("click",function(){return Bn.onClose(!1)}),A.EFF(17),A.k0s(),A.DNE(18,Yi,4,2,"button",17)(19,Tt,2,1,"button",18)(20,At,2,1,"button",19),A.k0s()()()()()),2&ii&&(A.R7$(5),A.JRh(Bn.data.alertTitle||Bn.alertTypeEnum[Bn.data.type]),A.R7$(5),A.Y8G("ngIf",Bn.warningMessage&&""!==Bn.warningMessage),A.R7$(),A.Y8G("ngIf",Bn.informationMessage&&""!==Bn.informationMessage),A.R7$(),A.Y8G("ngIf",Bn.data.titleMessage&&!Bn.flgShowInput),A.R7$(),A.Y8G("ngIf",(null==Bn.messageObjs?null:Bn.messageObjs.length)>0),A.R7$(),A.Y8G("ngIf",Bn.flgShowInput),A.R7$(3),A.JRh(Bn.noBtnText),A.R7$(),A.Y8G("ngIf",Bn.hasAdvanced),A.R7$(),A.Y8G("ngIf",Bn.flgShowInput),A.R7$(),A.Y8G("ngIf",!Bn.flgShowInput))},dependencies:[ce.YU,ce.Sq,ce.bT,ce.ux,ce.e1,ce.fG,ke.qT,ke.me,ke.BC,ke.cb,ke.YS,ke.vS,ke.cV,be.aY,ne.$z,J.m2,J.MM,Se.fg,ge.rl,ge.nJ,ge.MV,ge.TL,Re.q,le.DJ,le.sA,le.UI,Xe.PW,Le.N,N.V,ce.GH,ce.QX,ce.vh],encapsulation:2}))}return rn(),In})();var ae=l(2462),Lt=l(6183),Ht=l(3029);const _n=rn=>({"display-none":rn});function fi(rn,In){if(1&rn&&(A.j41(0,"mat-option",23),A.EFF(1),A.k0s()),2&rn){const Mn=In.$implicit;A.Y8G("value",Mn),A.R7$(),A.SpI(" ",Mn.infoName," ")}}function bi(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"div",13)(1,"mat-form-field",20)(2,"mat-label"),A.EFF(3,"Info Type"),A.k0s(),A.j41(4,"mat-select",21),A.mxI("valueChange",function(ii){W.eBV(Mn);const Bn=A.XpG();return A.DH7(Bn.selInfoType,ii)||(Bn.selInfoType=ii),W.Njj(ii)}),A.DNE(5,fi,2,2,"mat-option",22),A.k0s()()()}if(2&rn){const Mn=A.XpG();A.R7$(4),A.R50("value",Mn.selInfoType),A.R7$(),A.Y8G("ngForOf",Mn.infoTypes)}}let Qi=(()=>{var rn;class In{constructor(Vn,ii,Bn,ia,ra){this.dialogRef=Vn,this.data=ii,this.logger=Bn,this.snackBar=ia,this.commonService=ra,this.faReceipt=Ae.Mf0,this.infoTypes=[{infoID:0,infoKey:"node pubkey",infoName:"Node pubkey"}],this.selInfoType=this.infoTypes[0],this.qrWidth=210,this.screenSize="",this.screenSizeEnum=C.f7}ngOnInit(){this.information=this.data.information,this.information.uris&&(1===this.information.uris.length?this.infoTypes.push({infoID:1,infoKey:"node URI",infoName:"Node URI"}):this.information.uris.length>1&&this.information.uris.forEach((Vn,ii)=>{this.infoTypes.push({infoID:ii+1,infoKey:"node URI "+(ii+1),infoName:"Node URI "+(ii+1)})})),this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onCopyPubkey(Vn){this.snackBar.open(this.selInfoType.infoName+" copied."),this.logger.info("Copied Text: "+Vn)}static#e=rn=()=>(this.\u0275fac=function(ii){return new(ii||In)(A.rXU(B.CP),A.rXU(B.Vh),A.rXU(G.gP),A.rXU(re.UG),A.rXU(xe.h))},this.\u0275cmp=A.VBU({type:In,selectors:[["rtl-show-pubkey"]],standalone:!1,decls:26,vars:20,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","30","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],["errorCorrectionLevel","L",3,"value","size"],["fxFlex","100","fxFlex.gt-sm","70"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],["fxLayout","row",4,"ngIf"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["autoFocus","","mat-button","","color","primary","type","submit","rtlClipboard","",3,"copied","payload"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","40","fxLayoutAlign","start end"],[3,"valueChange","value"],[3,"value",4,"ngFor","ngForOf"],[3,"value"]],template:function(ii,Bn){1&ii&&(A.j41(0,"div",0)(1,"div",1),A.nrm(2,"qr-code",2),A.k0s(),A.j41(3,"div",3)(4,"mat-card-header",4)(5,"div",5),A.nrm(6,"fa-icon",6),A.j41(7,"span",7),A.EFF(8),A.k0s()(),A.j41(9,"button",8),A.bIt("click",function(){return Bn.onClose()}),A.EFF(10,"X"),A.k0s()(),A.j41(11,"mat-card-content",9)(12,"div",10)(13,"div",11),A.nrm(14,"qr-code",2),A.k0s(),A.DNE(15,bi,6,2,"div",12),A.j41(16,"div",13)(17,"div",14)(18,"h4",15),A.EFF(19),A.k0s(),A.j41(20,"span",16),A.EFF(21),A.k0s()()(),A.nrm(22,"mat-divider",17),A.j41(23,"div",18)(24,"button",19),A.bIt("copied",function(ra){return Bn.onCopyPubkey(ra)}),A.EFF(25),A.k0s()()()()()()),2&ii&&(A.R7$(),A.Y8G("ngClass",A.eq3(16,_n,Bn.screenSize===Bn.screenSizeEnum.XS||Bn.screenSize===Bn.screenSizeEnum.SM)),A.R7$(),A.Y8G("value",A.mNQ(0===Bn.selInfoType.infoID?Bn.information.identity_pubkey:Bn.information.uris[Bn.selInfoType.infoID-1]))("size",Bn.qrWidth),A.R7$(4),A.Y8G("icon",Bn.faReceipt),A.R7$(2),A.JRh(Bn.selInfoType.infoName),A.R7$(5),A.Y8G("ngClass",A.eq3(18,_n,Bn.screenSize!==Bn.screenSizeEnum.XS&&Bn.screenSize!==Bn.screenSizeEnum.SM)),A.R7$(),A.Y8G("value",A.mNQ(0===Bn.selInfoType.infoID?Bn.information.identity_pubkey:Bn.information.uris[Bn.selInfoType.infoID-1]))("size",Bn.qrWidth),A.R7$(),A.Y8G("ngIf",Bn.information.uris&&Bn.information.uris.length>0),A.R7$(4),A.JRh(Bn.selInfoType.infoName),A.R7$(2),A.JRh(0===Bn.selInfoType.infoID?Bn.information.identity_pubkey:Bn.information.uris[Bn.selInfoType.infoID-1]),A.R7$(3),A.Y8G("payload",A.mNQ(0===Bn.selInfoType.infoID?Bn.information.identity_pubkey:Bn.information.uris[Bn.selInfoType.infoID-1])),A.R7$(),A.SpI("Copy ",Bn.selInfoType.infoKey))},dependencies:[ce.YU,ce.Sq,ce.bT,be.aY,ne.$z,J.m2,J.MM,ge.rl,ge.nJ,Re.q,le.DJ,le.sA,le.UI,Xe.PW,Lt.VO,Ht.wT,he.Um,lt.U,Le.N],encapsulation:2}))}return rn(),In})();var zi=l(190),It=l(8430),an=l(5428),Yt=l(9330),Un=l(7879),zn=l(3202),Fn=l(1534);let ci=(()=>{var rn;class In{constructor(Vn,ii,Bn,ia,ra,fa,ha,qt,En,Wn,ri){this.actions=Vn,this.httpClient=ii,this.store=Bn,this.logger=ia,this.wsService=ra,this.sessionService=fa,this.commonService=ha,this.dataService=qt,this.dialog=En,this.snackBar=Wn,this.router=ri,this.screenSize="",this.alertWidth="55%",this.confirmWidth="70%",this.unSubs=[new v.B,new v.B],this.closeAllDialogs=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.CLOSE_ALL_DIALOGS),(0,w.T)(()=>{this.dialog.closeAll()})),{dispatch:!1}),this.openSnackBar=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.OPEN_SNACK_BAR),(0,w.T)(Rn=>{"string"==typeof Rn.payload?this.snackBar.open(Rn.payload):this.snackBar.open(Rn.payload.message,"","ERROR"===Rn.payload.type?{duration:Rn.payload.duration?Rn.payload.duration:2e3,panelClass:"rtl-warn-snack-bar"}:"WARN"===Rn.payload.type?{duration:Rn.payload.duration?Rn.payload.duration:2e3,panelClass:"rtl-accent-snack-bar"}:{duration:Rn.payload.duration?Rn.payload.duration:2e3,panelClass:"rtl-snack-bar"})})),{dispatch:!1}),this.openSpinner=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.OPEN_SPINNER),(0,w.T)(Rn=>{Rn.payload!==C.MZ.NO_SPINNER&&(this.dialogRef=this.dialog.open(Ce,{panelClass:"spinner-dialog-panel",data:{titleMessage:Rn.payload}}))})),{dispatch:!1}),this.closeSpinner=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.CLOSE_SPINNER),(0,w.T)(Rn=>{if(Rn.payload!==C.MZ.NO_SPINNER)try{this.dialogRef&&this.dialogRef.componentInstance&&this.dialogRef.componentInstance.data&&this.dialogRef.componentInstance.data.titleMessage&&this.dialogRef.componentInstance.data.titleMessage===Rn.payload?this.dialogRef.close():this.dialog.openDialogs.forEach(Hn=>{Hn.componentInstance&&Hn.componentInstance.data&&Hn.componentInstance.data.titleMessage&&Hn.componentInstance.data.titleMessage===Rn.payload&&Hn.close()})}catch(Hn){this.logger.error(Hn)}})),{dispatch:!1}),this.openAlert=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.OPEN_ALERT),(0,w.T)(Rn=>{const Hn=JSON.parse(JSON.stringify(Rn.payload));Hn.width||(Hn.width=this.alertWidth),this.dialogRef=this.dialog.open(Rn.payload.data.component?Rn.payload.data.component:ee,Hn)})),{dispatch:!1}),this.closeAlert=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.CLOSE_ALERT),(0,w.T)(Rn=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(Rn.payload),Rn.payload))),{dispatch:!1}),this.openConfirm=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.OPEN_CONFIRMATION),(0,w.T)(Rn=>{const Hn=JSON.parse(JSON.stringify(Rn.payload));Hn.width||(Hn.width=this.confirmWidth),this.dialogRef=this.dialog.open(we,Hn)})),{dispatch:!1}),this.closeConfirm=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.CLOSE_CONFIRMATION),(0,e.s)(1),(0,w.T)(Rn=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(Rn.payload),Rn.payload))),{dispatch:!1}),this.showNodePubkey=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.SHOW_PUBKEY),(0,O.E)(this.store.select(j.N)),(0,f.Z)(([Rn,Hn])=>(this.sessionService.getItem("token")&&Hn.identity_pubkey?this.store.dispatch((0,ye.xO)({payload:{data:{information:Hn,component:Qi}}})):this.snackBar.open("Node Pubkey does not exist."),(0,T.of)({type:C.aU.VOID}))))),this.appConfigFetch=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.FETCH_APPLICATION_SETTINGS),(0,f.Z)(()=>(this.screenSize=this.commonService.getScreenSize(),this.screenSize===C.f7.XS||this.screenSize===C.f7.SM?(this.alertWidth="95%",this.confirmWidth="95%"):this.screenSize===C.f7.MD?(this.alertWidth="80%",this.confirmWidth="80%"):(this.alertWidth="50%",this.confirmWidth="53%"),this.store.dispatch((0,ye.mt)({payload:C.MZ.GET_RTL_CONFIG})),this.store.dispatch((0,ye.Gd)({payload:{action:"FetchRTLConfig",status:C.wn.INITIATED}})),this.httpClient.get(C.rl.CONF_API))),(0,w.T)(Rn=>{this.logger.info(Rn),this.store.dispatch((0,ye.y0)({payload:C.MZ.GET_RTL_CONFIG})),this.store.dispatch((0,ye.Gd)({payload:{action:"FetchRTLConfig",status:C.wn.COMPLETED}}));let Hn=null;return Rn.nodes.forEach(Pi=>{Pi.settings.currencyUnits=[...C.A0,Pi.settings?.currencyUnit?Pi.settings?.currencyUnit:""],+(Pi.index||-1)===Rn.selectedNodeIndex&&(Hn=Pi)}),Hn?(this.store.dispatch((0,ye.Qi)({payload:{uiMessage:C.MZ.NO_SPINNER,prevLnNodeIndex:-1,currentLnNode:Hn,isInitialSetup:!0}})),{type:C.aU.SET_APPLICATION_SETTINGS,payload:Rn}):{type:C.aU.VOID}}),(0,u.W)(Rn=>(this.handleErrorWithAlert("FetchRTLConfig",C.MZ.GET_RTL_CONFIG,"Fetch RTL Config Failed!",C.rl.CONF_API,Rn),(0,T.of)({type:C.aU.VOID}))))),this.updateNodeSettings=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.UPDATE_NODE_SETTINGS),(0,f.Z)(Rn=>(this.store.dispatch((0,ye.mt)({payload:C.MZ.UPDATE_NODE_SETTINGS})),this.store.dispatch((0,ye.Gd)({payload:{action:"updateNodeSettings",status:C.wn.INITIATED}})),Rn.payload.settings.fiatConversion||delete Rn.payload.settings.currencyUnit,delete Rn.payload.settings.currencyUnits,this.httpClient.post(C.rl.CONF_API+"/node",Rn.payload).pipe((0,w.T)(Hn=>(this.store.dispatch((0,ye.Gd)({payload:{action:"updateNodeSettings",status:C.wn.COMPLETED}})),this.store.dispatch((0,ye.y0)({payload:C.MZ.UPDATE_NODE_SETTINGS})),Hn.settings.currencyUnits=[...C.A0,Hn.settings?.currencyUnit?Hn.settings?.currencyUnit:""],this.store.dispatch((0,ye.Np)({payload:Hn})),{type:C.aU.OPEN_SNACK_BAR,payload:"Node settings updated successfully!"})),(0,u.W)(Hn=>(this.handleErrorWithAlert("updateNodeSettings",C.MZ.UPDATE_NODE_SETTINGS,"Update Node Settings Failed!",C.rl.CONF_API+"/node",Hn),(0,T.of)({type:C.aU.VOID})))))))),this.updateApplicationSettings=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.UPDATE_APPLICATION_SETTINGS),(0,f.Z)(Rn=>(this.store.dispatch((0,ye.mt)({payload:C.MZ.UPDATE_APPLICATION_SETTINGS})),this.store.dispatch((0,ye.Gd)({payload:{action:"updateApplicationSettings",status:C.wn.INITIATED}})),Rn.payload.config.nodes.forEach(Hn=>{delete Hn.settings.currencyUnits}),this.httpClient.post(C.rl.CONF_API+"/application",Rn.payload.config).pipe((0,w.T)(Hn=>(this.store.dispatch((0,ye.Gd)({payload:{action:"updateApplicationSettings",status:C.wn.COMPLETED}})),this.store.dispatch((0,ye.y0)({payload:C.MZ.UPDATE_APPLICATION_SETTINGS})),Rn.payload.showSnackBar&&this.store.dispatch((0,ye.UI)({payload:Rn.payload.message})),{type:C.aU.SET_APPLICATION_SETTINGS,payload:Hn})),(0,u.W)(Hn=>(this.handleErrorWithAlert("updateApplicationSettings",C.MZ.UPDATE_APPLICATION_SETTINGS,"Update Application Settings Failed!",C.rl.CONF_API+"/application",Hn),(0,T.of)({type:C.aU.VOID})))))))),this.configFetch=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.FETCH_CONFIG),(0,f.Z)(Rn=>(this.store.dispatch((0,ye.mt)({payload:C.MZ.OPEN_CONFIG_FILE})),this.store.dispatch((0,ye.Gd)({payload:{action:"fetchConfig",status:C.wn.INITIATED}})),this.httpClient.get(C.rl.CONF_API+"/config/"+Rn.payload).pipe((0,w.T)(Hn=>(this.store.dispatch((0,ye.Gd)({payload:{action:"fetchConfig",status:C.wn.COMPLETED}})),this.store.dispatch((0,ye.y0)({payload:C.MZ.OPEN_CONFIG_FILE})),{type:C.aU.SHOW_CONFIG,payload:Hn})),(0,u.W)(Hn=>(this.handleErrorWithAlert("fetchConfig",C.MZ.OPEN_CONFIG_FILE,"Fetch Config Failed!",C.rl.CONF_API+"/config/"+Rn.payload,Hn),(0,T.of)({type:C.aU.VOID})))))))),this.showLnConfig=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.SHOW_CONFIG),(0,w.T)(Rn=>Rn.payload)),{dispatch:!1}),this.isAuthorized=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.IS_AUTHORIZED),(0,f.Z)(Rn=>(this.store.dispatch((0,ye.Gd)({payload:{action:"IsAuthorized",status:C.wn.INITIATED}})),this.httpClient.post(C.rl.AUTHENTICATE_API,{authenticateWith:Rn.payload&&""!==Rn.payload.trim()?C.U1.PASSWORD:C.U1.JWT,authenticationValue:Rn.payload&&""!==Rn.payload.trim()?Rn.payload:this.sessionService.getItem("token")?this.sessionService.getItem("token"):""}).pipe((0,w.T)(Hn=>(this.logger.info(Hn),this.store.dispatch((0,ye.Gd)({payload:{action:"IsAuthorized",status:C.wn.COMPLETED}})),this.logger.info("Successfully Authorized!"),{type:C.aU.IS_AUTHORIZED_RES,payload:Hn})),(0,u.W)(Hn=>(this.handleErrorWithAlert("IsAuthorized",C.MZ.NO_SPINNER,"Authorization Failed",C.rl.AUTHENTICATE_API,Hn),(0,T.of)({type:C.aU.IS_AUTHORIZED_RES,payload:"ERROR"})))))))),this.isAuthorizedRes=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.IS_AUTHORIZED_RES),(0,w.T)(Rn=>Rn.payload)),{dispatch:!1}),this.authLogin=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.LOGIN),(0,O.E)(this.store.select(j.qv)),(0,f.Z)(([Rn,Hn])=>(this.store.dispatch((0,zi.p1)()),this.store.dispatch((0,It.gf)()),this.store.dispatch((0,an.Hh)()),this.store.dispatch((0,ye.Gd)({payload:{action:"Login",status:C.wn.INITIATED}})),this.httpClient.post(C.rl.AUTHENTICATE_API,{authenticateWith:"disabledAuth"===Rn.payload.password?C.U1.NOAUTH:Rn.payload.password?C.U1.PASSWORD:C.U1.JWT,authenticationValue:Rn.payload.password?Rn.payload.password:this.sessionService.getItem("token")?this.sessionService.getItem("token"):"",twoFAToken:Rn.payload.twoFAToken?Rn.payload.twoFAToken:""}).pipe((0,w.T)(Pi=>{this.logger.info(Pi),this.store.dispatch((0,ye.Gd)({payload:{action:"Login",status:C.wn.COMPLETED}})),this.setLoggedInDetails(Rn.payload.defaultPassword,Pi)}),(0,u.W)(Pi=>(this.logger.info("Redirecting to Login Error Page"),this.handleErrorWithoutAlert("Login",C.MZ.NO_SPINNER,Pi),+Hn.SSO.rtlSSO?this.router.navigate(["/error"],{state:{errorCode:"406",errorMessage:Pi.error&&Pi.error.error?Pi.error.error:"Single Sign On Failed!"}}):this.router.navigate(["./login"],{state:{logoutReason:Pi.error&&Pi.error.error?Pi.error.error:"Single Sign On Failed!"}}),(0,T.of)({type:C.aU.VOID}))))))),{dispatch:!1}),this.tokenVerify=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.VERIFY_TWO_FA),(0,f.Z)(Rn=>(this.store.dispatch((0,ye.mt)({payload:C.MZ.VERIFY_TOKEN})),this.store.dispatch((0,ye.Gd)({payload:{action:"VerifyToken",status:C.wn.INITIATED}})),this.httpClient.post(C.rl.AUTHENTICATE_API+"/token",{authentication2FA:Rn.payload.token}).pipe((0,w.T)(Hn=>{this.logger.info(Hn),this.store.dispatch((0,ye.y0)({payload:C.MZ.VERIFY_TOKEN})),this.store.dispatch((0,ye.Gd)({payload:{action:"VerifyToken",status:C.wn.COMPLETED}})),this.logger.info("Token Successfully Verified!"),this.setLoggedInDetails(!1,Rn.payload.authResponse)}),(0,u.W)(Hn=>(this.handleErrorWithAlert("VerifyToken",C.MZ.VERIFY_TOKEN,"Authorization Failed!",C.rl.AUTHENTICATE_API+"/token",Hn),(0,T.of)({type:C.aU.VOID}))))))),{dispatch:!1}),this.logOut=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.LOGOUT),(0,O.E)(this.store.select(j.qv)),(0,f.Z)(([Rn,Hn])=>{this.store.dispatch((0,ye.mt)({payload:C.MZ.LOG_OUT})),Hn.SSO&&+Hn.SSO.rtlSSO&&(window.location.href=Hn.SSO.logoutRedirectLink),this.sessionService.clearAll(),this.store.dispatch((0,ye.Fl)({payload:{}})),this.store.dispatch((0,ye.y0)({payload:C.MZ.LOG_OUT})),this.logger.info("Logged out from browser");const Pi=()=>{Hn.SSO&&+Hn.SSO.rtlSSO||(Rn.payload&&this.sessionService.setItem("logoutReason",Rn.payload),window.location.href=document.baseURI+"login")};return this.httpClient.get(C.rl.AUTHENTICATE_API+"/logout").pipe((0,w.T)(da=>{this.logger.info(da),this.store.dispatch((0,ye.y0)({payload:C.MZ.LOG_OUT})),this.logger.info("Logged out from server"),Pi()}),(0,u.W)(da=>(this.logger.error(da),this.store.dispatch((0,ye.y0)({payload:C.MZ.LOG_OUT})),Pi(),(0,T.of)({type:C.aU.VOID}))))})),{dispatch:!1}),this.resetPassword=(0,d.EH)(()=>this.actions.pipe((0,L.Q)(this.unSubs[1]),(0,d.gp)(C.aU.RESET_PASSWORD),(0,f.Z)(Rn=>(this.store.dispatch((0,ye.Gd)({payload:{action:"ResetPassword",status:C.wn.INITIATED}})),this.httpClient.post(C.rl.AUTHENTICATE_API+"/reset",{currPassword:Rn.payload.currPassword,newPassword:Rn.payload.newPassword}).pipe((0,L.Q)(this.unSubs[0]),(0,w.T)(Hn=>(this.logger.info(Hn),this.store.dispatch((0,ye.Gd)({payload:{action:"ResetPassword",status:C.wn.COMPLETED}})),this.sessionService.setItem("defaultPassword",!1),this.logger.info("Password Reset Successful!"),this.store.dispatch((0,ye.UI)({payload:"Password Reset Successful!"})),this.SetToken(Hn.token),{type:C.aU.RESET_PASSWORD_RES,payload:Hn.token})),(0,u.W)(Hn=>(this.handleErrorWithAlert("ResetPassword",C.MZ.NO_SPINNER,"Password Reset Failed!",C.rl.AUTHENTICATE_API+"/reset",Hn),(0,T.of)({type:C.aU.VOID})))))))),this.setSelectedNode=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.SET_SELECTED_NODE),(0,f.Z)(Rn=>(this.store.dispatch((0,ye.mt)({payload:Rn.payload.uiMessage})),this.store.dispatch((0,ye.Gd)({payload:{action:"UpdateSelNode",status:C.wn.INITIATED}})),this.httpClient.get(C.rl.CONF_API+"/updateSelNode/"+Rn.payload.currentLnNode?.index+"/"+Rn.payload.prevLnNodeIndex).pipe((0,w.T)(Hn=>(this.logger.info(Hn),this.store.dispatch((0,ye.Gd)({payload:{action:"UpdateSelNode",status:C.wn.COMPLETED}})),this.store.dispatch((0,ye.y0)({payload:Rn.payload.uiMessage})),this.initializeNode(Hn,Rn.payload.isInitialSetup),{type:C.aU.VOID})),(0,u.W)(Hn=>(this.handleErrorWithAlert("UpdateSelNode",Rn.payload.uiMessage,"Update Selected Node Failed!",C.rl.CONF_API+"/updateSelNode",Hn),(0,T.of)({type:C.aU.VOID})))))))),this.fetchFile=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.FETCH_FILE),(0,f.Z)(Rn=>{this.store.dispatch((0,ye.mt)({payload:C.MZ.DOWNLOAD_BACKUP_FILE})),this.store.dispatch((0,ye.Gd)({payload:{action:"FetchFile",status:C.wn.INITIATED}}));const Hn="?channel="+Rn.payload.channelPoint+(Rn.payload.path?"&path="+Rn.payload.path:"");return this.httpClient.get(C.rl.CONF_API+"/file"+Hn).pipe((0,w.T)(Pi=>(this.store.dispatch((0,ye.Gd)({payload:{action:"FetchFile",status:C.wn.COMPLETED}})),this.store.dispatch((0,ye.y0)({payload:C.MZ.DOWNLOAD_BACKUP_FILE})),{type:C.aU.SHOW_FILE,payload:Pi})),(0,u.W)(Pi=>(this.handleErrorWithAlert("fetchFile",C.MZ.DOWNLOAD_BACKUP_FILE,"Download Backup File Failed!",C.rl.CONF_API+"/file"+Hn,{status:this.commonService.extractErrorNumber(Pi),error:{error:this.commonService.extractErrorCode(Pi)}}),(0,T.of)({type:C.aU.VOID}))))}))),this.showFile=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.SHOW_FILE),(0,w.T)(Rn=>Rn.payload)),{dispatch:!1})}initializeNode(Vn,ii){this.logger.info("Initializing node from RTL Effects.");const Bn=ii?"":"HOME";if(this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("clnUnlocked"),this.sessionService.removeItem("eclUnlocked"),Vn.settings.currencyUnits=[...C.A0,Vn.settings?.currencyUnit?Vn.settings?.currencyUnit:""],this.store.dispatch((0,ye.Tn)({payload:Vn})),this.store.dispatch((0,zi.p1)()),this.store.dispatch((0,It.gf)()),this.store.dispatch((0,an.Hh)()),this.sessionService.getItem("token")){const ia=Vn.lnImplementation?Vn.lnImplementation.toUpperCase():"LND";this.dataService.setLnImplementation(ia);const ra=!(0,i.naY)()&&window.location.origin?window.location.origin+"/rtl/api":C.H$;switch(this.wsService.connectWebSocket(ra?.replace(/^http/,"ws")+C.rl.Web_SOCKET_API,Vn.index?Vn.index.toString():"-1"),ia){case"CLN":this.store.dispatch((0,It.lg)()),this.store.dispatch((0,It.Aw)({payload:{loadPage:Bn}}));break;case"ECL":this.store.dispatch((0,an.lg)()),this.store.dispatch((0,an.zR)({payload:{loadPage:Bn}}));break;default:this.store.dispatch((0,zi.lg)()),this.store.dispatch((0,zi.Br)({payload:{loadPage:Bn}}))}}}SetToken(Vn){Vn?(this.sessionService.setItem("lndUnlocked","true"),this.sessionService.setItem("token",Vn)):(this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("token"))}setLoggedInDetails(Vn,ii){this.logger.info("Successfully Authorized!"),this.SetToken(ii.token),this.sessionService.setItem("defaultPassword",Vn),Vn?(this.store.dispatch((0,ye.UI)({payload:"Reset your password."})),this.router.navigate(["/settings/auth"])):this.store.dispatch((0,ye.NU)())}handleErrorWithoutAlert(Vn,ii,Bn){this.logger.error("ERROR IN: "+Vn+"\n"+JSON.stringify(Bn)),401===Bn.status&&"Login"!==Vn?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,ye.Jh)()),this.store.dispatch((0,ye.ri)({payload:"Authentication Failed: "+JSON.stringify(Bn.error)}))):(this.store.dispatch((0,ye.y0)({payload:ii})),this.store.dispatch((0,ye.Gd)({payload:{action:Vn,status:C.wn.ERROR,statusCode:Bn.status?Bn.status.toString():"",message:this.commonService.extractErrorMessage(Bn)}})))}handleErrorWithAlert(Vn,ii,Bn,ia,ra){if(this.logger.error(ra),0===ra.status&&ra.statusText&&"Unknown Error"===ra.statusText&&(ra={status:400,error:{message:"Unknown Error / CORS Origin Not Allowed"}}),401===ra.status&&"Login"!==Vn)this.logger.info("Redirecting to Login"),this.store.dispatch((0,ye.Jh)()),this.store.dispatch((0,ye.ri)({payload:"Authentication Failed: "+JSON.stringify(ra.error)}));else{this.store.dispatch((0,ye.y0)({payload:ii}));const fa=this.commonService.extractErrorMessage(ra);this.store.dispatch((0,ye.xO)({payload:{data:{type:"ERROR",alertTitle:Bn,message:{code:ra.status?ra.status:"Unknown Error",message:fa,URL:ia},component:ae.f}}})),this.store.dispatch((0,ye.Gd)({payload:{action:Vn,status:C.wn.ERROR,statusCode:ra.status?ra.status.toString():"",message:fa,URL:ia}}))}}ngOnDestroy(){this.unSubs.forEach(Vn=>{Vn.next(null),Vn.complete()})}static#e=rn=()=>(this.\u0275fac=function(ii){return new(ii||In)(W.KVO(d.En),W.KVO(Yt.Qq),W.KVO(V.il),W.KVO(G.gP),W.KVO(Un.I),W.KVO(zn.Q),W.KVO(xe.h),W.KVO(Fn.u),W.KVO(B.bZ),W.KVO(re.UG),W.KVO(Ee.Ix))},this.\u0275prov=W.jDH({token:In,factory:In.\u0275fac}))}return rn(),In})()},9647(Zt,pe,l){"use strict";l.d(pe,{Az:()=>u,E2:()=>f,Kq:()=>O,N:()=>e,_c:()=>T,qv:()=>w});var i=l(9640);const d=(0,i.UX)("root"),T=((0,i.Mz)(d,L=>L.apiURL),(0,i.Mz)(d,L=>L.selNode)),w=(0,i.Mz)(d,L=>L.appConfig),e=(0,i.Mz)(d,L=>L.nodeData),O=(0,i.Mz)(d,L=>L.apisCallStatus.Login),f=(0,i.Mz)(d,L=>L.apisCallStatus.IsAuthorized),u=(0,i.Mz)(d,L=>({nodeDate:L.nodeData,selNode:L.selNode}))},599(Zt,pe,l){"use strict";var i=l(7303),d=l(2512),v=l(2615),T=l(177),w=l(2200),e=l(3664),O=l(7705),f=l(3393);class C extends i.qj{supportsDOMEvents=!0;static makeCurrent(){(0,i.ig)(new C)}onAndCancel(_,m,E,D){return _.addEventListener(m,E,D),()=>{_.removeEventListener(m,E,D)}}dispatchEvent(_,m){_.dispatchEvent(m)}remove(_){_.remove()}createElement(_,m){return(m=m||this.getDefaultDocument()).createElement(_)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(_){return _.nodeType===Node.ELEMENT_NODE}isShadowRoot(_){return _ instanceof DocumentFragment}getGlobalEventTarget(_,m){return"window"===m?window:"document"===m?_:"body"===m?_.body:null}getBaseHref(_){const m=function A(){return B=B||document.head.querySelector("base"),B?B.getAttribute("href"):null}();return null==m?null:function Pe(b){return new URL(b,document.baseURI).pathname}(m)}resetBaseElement(){B=null}getUserAgent(){return window.navigator.userAgent}getCookie(_){return(0,d.b)(document.cookie,_)}}let B=null,Ce=(()=>{class b{build(){return new XMLHttpRequest}static \u0275fac=function(E){return new(E||b)};static \u0275prov=v.jDH({token:b,factory:b.\u0275fac})}return b})();const Ae=["alt","control","meta","shift"],j={"\b":"Backspace","\t":"Tab","\x7f":"Delete","\x1b":"Escape",Del:"Delete",Esc:"Escape",Left:"ArrowLeft",Right:"ArrowRight",Up:"ArrowUp",Down:"ArrowDown",Menu:"ContextMenu",Scroll:"ScrollLock",Win:"OS"},W={alt:b=>b.altKey,control:b=>b.ctrlKey,meta:b=>b.metaKey,shift:b=>b.shiftKey};let G=(()=>{class b extends f.Hl{constructor(m){super(m)}supports(m){return null!=b.parseEventName(m)}addEventListener(m,E,D,I){const Oe=b.parseEventName(E),Ct=b.eventCallback(Oe.fullKey,D,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>(0,i.rb)().onAndCancel(m,Oe.domEventName,Ct,I))}static parseEventName(m){const E=m.toLowerCase().split("."),D=E.shift();if(0===E.length||"keydown"!==D&&"keyup"!==D)return null;const I=b._normalizeKey(E.pop());let Oe="",Ct=E.indexOf("code");if(Ct>-1&&(E.splice(Ct,1),Oe="code."),Ae.forEach(yn=>{const Yn=E.indexOf(yn);Yn>-1&&(E.splice(Yn,1),Oe+=yn+".")}),Oe+=I,0!=E.length||0===I.length)return null;const Bt={};return Bt.domEventName=D,Bt.fullKey=Oe,Bt}static matchEventFullKeyCode(m,E){let D=j[m.key]||m.key,I="";return E.indexOf("code.")>-1&&(D=m.code,I="code."),!(null==D||!D)&&(D=D.toLowerCase()," "===D?D="space":"."===D&&(D="dot"),Ae.forEach(Oe=>{Oe!==D&&(0,W[Oe])(m)&&(I+=Oe+".")}),I+=D,I===E)}static eventCallback(m,E,D){return I=>{b.matchEventFullKeyCode(I,m)&&D.runGuarded(()=>E(I))}}static _normalizeKey(m){return"esc"===m?"escape":m}static \u0275fac=function(E){return new(E||b)(v.KVO(v.qQL))};static \u0275prov=v.jDH({token:b,factory:b.\u0275fac})}return b})();const De=(0,O.oH4)(O.fpN,"browser",[{provide:e.Agw,useValue:T.AJ},{provide:e.PLl,useValue:function ce(){C.makeCurrent()},multi:!0},{provide:v.qQL,useFactory:function ne(){return(0,e._9u)(document),document}}]),Xe=[{provide:e.$Ln,useClass:class le{addToWindow(_){v.laP.getAngularTestability=(E,D=!0)=>{const I=_.findTestabilityInTree(E,D);if(null==I)throw new v.buA(5103,!1);return I},v.laP.getAllAngularTestabilities=()=>_.getAllTestabilities(),v.laP.getAllAngularRootElements=()=>_.getAllRootElements(),v.laP.frameworkStabilizers||(v.laP.frameworkStabilizers=[]),v.laP.frameworkStabilizers.push(E=>{const D=v.laP.getAllAngularTestabilities();let I=D.length;const Oe=function(){I--,0==I&&E()};D.forEach(Ct=>{Ct.whenStable(Oe)})})}findTestabilityInTree(_,m,E){return null==m?null:_.getTestability(m)??(E?(0,i.rb)().isShadowRoot(m)?this.findTestabilityInTree(_,m.host,!0):this.findTestabilityInTree(_,m.parentElement,!0):null)}}},{provide:e.dOL,useClass:e.NYb,deps:[e.SKi,e.giA,e.$Ln]},{provide:e.NYb,useClass:e.NYb,deps:[e.SKi,e.giA,e.$Ln]}],_e=[{provide:v.GBX,useValue:"root"},{provide:v.zcH,useFactory:function be(){return new v.zcH}},{provide:f.Q5,useClass:f.jd,multi:!0,deps:[v.qQL]},{provide:f.Q5,useClass:G,multi:!0,deps:[v.qQL]},f.mE,f.CI,f.EU,{provide:e._9s,useExisting:f.mE},{provide:d.N,useClass:Ce},[]];let he=(()=>{class b{constructor(){}static \u0275fac=function(E){return new(E||b)};static \u0275mod=e.$C({type:b});static \u0275inj=v.G2t({providers:[..._e,...Xe],imports:[w.MD,O.Hbi]})}return b})();var Dt=l(345),lt=l(1514);function ie(b){return new v.buA(3e3,!1)}function nt(b){return new v.buA(3002,!1)}function vt(b){switch(b.length){case 0:return new lt.sf;case 1:return b[0];default:return new lt.PZ(b)}}function ee(b,_,m=new Map,E=new Map){const D=[],I=[];let Oe=-1,Ct=null;if(_.forEach(Bt=>{const yn=Bt.get("offset"),Yn=yn==Oe,jn=Yn&&Ct||new Map;Bt.forEach((Fi,Zi)=>{let Mi=Zi,Ai=Fi;if("offset"!==Zi)switch(Mi=b.normalizePropertyName(Mi,D),Ai){case lt.FX:Ai=m.get(Zi);break;case lt.kp:Ai=E.get(Zi);break;default:Ai=b.normalizeStyleValue(Zi,Mi,Ai,D)}jn.set(Mi,Ai)}),Yn||I.push(jn),Ct=jn,Oe=yn}),D.length)throw function h(){return new v.buA(3502,!1)}();return I}function ye(b,_,m,E){switch(_){case"start":b.onStart(()=>E(m&&ke(m,"start",b)));break;case"done":b.onDone(()=>E(m&&ke(m,"done",b)));break;case"destroy":b.onDestroy(()=>E(m&&ke(m,"destroy",b)))}}function ke(b,_,m){const I=Se(b.element,b.triggerName,b.fromState,b.toState,_||b.phaseName,m.totalTime??b.totalTime,!!m.disabled),Oe=b._data;return null!=Oe&&(I._data=Oe),I}function Se(b,_,m,E,D="",I=0,Oe){return{element:b,triggerName:_,fromState:m,toState:E,phaseName:D,totalTime:I,disabled:!!Oe}}function ge(b,_,m){let E=b.get(_);return E||b.set(_,E=m),E}function N(b){const _=b.indexOf(":");return[b.substring(1,_),b.slice(_+1)]}const Z=typeof document>"u"?null:document.documentElement;function Me(b){const _=b.parentNode||b.host||null;return _===Z?null:_}let qe=null,pn=!1;function Ge(b,_){for(;_;){if(_===b)return!0;_=Me(_)}return!1}function Ot(b,_,m){if(m)return Array.from(b.querySelectorAll(_));const E=b.querySelector(_);return E?[E]:[]}const tn="ng-enter",on="ng-leave",un="ng-trigger",Nt=".ng-trigger",dn="ng-animating",xn=".ng-animating";function Jn(b){if("number"==typeof b)return b;const _=b.match(/^(-?[\.\d]+)(m?s)/);return!_||_.length<2?0:xi(parseFloat(_[1]),_[2])}function xi(b,_){return"s"===_?1e3*b:b}function Yi(b,_,m){return b.hasOwnProperty("duration")?b:function At(b,_,m){let E,D=0,I="";if("string"==typeof b){const Oe=b.match(Tt);if(null===Oe)return _.push(ie()),{duration:0,delay:0,easing:""};E=xi(parseFloat(Oe[1]),Oe[2]);const Ct=Oe[3];null!=Ct&&(D=xi(parseFloat(Ct),Oe[4]));const Bt=Oe[5];Bt&&(I=Bt)}else E=b;if(!m){let Oe=!1,Ct=_.length;E<0&&(_.push(function P(){return new v.buA(3100,!1)}()),Oe=!0),D<0&&(_.push(function F(){return new v.buA(3101,!1)}()),Oe=!0),Oe&&_.splice(Ct,0,ie())}return{duration:E,delay:D,easing:I}}(b,_,m)}const Tt=/^(-?[\.\d]+)(m?s)(?:\s+(-?[\.\d]+)(m?s))?(?:\s+([-a-z]+(?:\(.+?\))?))?$/i;function Lt(b,_,m){_.forEach((E,D)=>{const I=an(D);m&&!m.has(D)&&m.set(D,b.style[I]),b.style[I]=E})}function Ht(b,_){_.forEach((m,E)=>{const D=an(E);b.style[D]=""})}function _n(b){return Array.isArray(b)?1==b.length?b[0]:(0,lt.K2)(b):b}const bi=new RegExp("{{\\s*(.+?)\\s*}}","g");function Qi(b){let _=[];if("string"==typeof b){let m;for(;m=bi.exec(b);)_.push(m[1]);bi.lastIndex=0}return _}function zi(b,_,m){const E=`${b}`,D=E.replace(bi,(I,Oe)=>{let Ct=_[Oe];return null==Ct&&(m.push(function H(){return new v.buA(3003,!1)}()),Ct=""),Ct.toString()});return D==E?b:D}const It=/-+([a-z0-9])/g;function an(b){return b.replace(It,(..._)=>_[1].toUpperCase())}function Fn(b,_,m){switch(_.type){case lt.If.Trigger:return b.visitTrigger(_,m);case lt.If.State:return b.visitState(_,m);case lt.If.Transition:return b.visitTransition(_,m);case lt.If.Sequence:return b.visitSequence(_,m);case lt.If.Group:return b.visitGroup(_,m);case lt.If.Animate:return b.visitAnimate(_,m);case lt.If.Keyframes:return b.visitKeyframes(_,m);case lt.If.Style:return b.visitStyle(_,m);case lt.If.Reference:return b.visitReference(_,m);case lt.If.AnimateChild:return b.visitAnimateChild(_,m);case lt.If.AnimateRef:return b.visitAnimateRef(_,m);case lt.If.Query:return b.visitQuery(_,m);case lt.If.Stagger:return b.visitStagger(_,m);default:throw function $(){return new v.buA(3004,!1)}()}}function ci(b,_){return window.getComputedStyle(b)[_]}let Bn=(()=>{class b{validateStyleProperty(m){return function Je(b){qe||(qe=function ut(){return typeof document<"u"?document.body:null}()||{},pn=!!qe.style&&"WebkitAppearance"in qe.style);let _=!0;return qe.style&&!function at(b){return"ebkit"==b.substring(1,6)}(b)&&(_=b in qe.style,!_&&pn&&(_="Webkit"+b.charAt(0).toUpperCase()+b.slice(1)in qe.style)),_}(m)}containsElement(m,E){return Ge(m,E)}getParentElement(m){return Me(m)}query(m,E,D){return Ot(m,E,D)}computeStyle(m,E,D){return D||""}animate(m,E,D,I,Oe,Ct=[],Bt){return new lt.sf(D,I)}static \u0275fac=function(E){return new(E||b)};static \u0275prov=v.jDH({token:b,factory:b.\u0275fac})}return b})();class ia{static NOOP=new Bn}class ra{}const ha=new Set(["width","height","minWidth","minHeight","maxWidth","maxHeight","left","top","bottom","right","fontSize","outlineWidth","outlineOffset","paddingTop","paddingLeft","paddingBottom","paddingRight","marginTop","marginLeft","marginBottom","marginRight","borderRadius","borderWidth","borderTopWidth","borderLeftWidth","borderRightWidth","borderBottomWidth","textIndent","perspective"]);class qt extends ra{normalizePropertyName(_,m){return an(_)}normalizeStyleValue(_,m,E,D){let I="";const Oe=E.toString().trim();if(ha.has(m)&&0!==E&&"0"!==E)if("number"==typeof E)I="px";else{const Ct=E.match(/^[+-]?[\d\.]+([a-z]*)$/);Ct&&0==Ct[1].length&&D.push(function Ke(){return new v.buA(3005,!1)}())}return Oe+I}}const vn=new Set(["true","1"]),oi=new Set(["false","0"]);function bn(b,_){const m=vn.has(b)||oi.has(b),E=vn.has(_)||oi.has(_);return(D,I)=>{let Oe="*"==b||b==D,Ct="*"==_||_==I;return!Oe&&m&&"boolean"==typeof D&&(Oe=D?vn.has(b):oi.has(b)),!Ct&&E&&"boolean"==typeof I&&(Ct=I?vn.has(_):oi.has(_)),Oe&&Ct}}const yi=new RegExp("s*:selfs*,?","g");function Wi(b,_,m,E){return new Fe(b).build(_,m,E)}class Fe{_driver;constructor(_){this._driver=_}build(_,m,E){const D=new Et(m);return this._resetContextStyleTimingState(D),Fn(this,_n(_),D)}_resetContextStyleTimingState(_){_.currentQuerySelector="",_.collectedStyles=new Map,_.collectedStyles.set("",new Map),_.currentTime=0}visitTrigger(_,m){let E=m.queryCount=0,D=m.depCount=0;const I=[],Oe=[];return"@"==_.name.charAt(0)&&m.errors.push(function Vt(){return new v.buA(3006,!1)}()),_.definitions.forEach(Ct=>{if(this._resetContextStyleTimingState(m),Ct.type==lt.If.State){const Bt=Ct,yn=Bt.name;yn.toString().split(/\s*,\s*/).forEach(Yn=>{Bt.name=Yn,I.push(this.visitState(Bt,m))}),Bt.name=yn}else if(Ct.type==lt.If.Transition){const Bt=this.visitTransition(Ct,m);E+=Bt.queryCount,D+=Bt.depCount,Oe.push(Bt)}else m.errors.push(function St(){return new v.buA(3007,!1)}())}),{type:lt.If.Trigger,name:_.name,states:I,transitions:Oe,queryCount:E,depCount:D,options:null}}visitState(_,m){const E=this.visitStyle(_.styles,m),D=_.options&&_.options.params||null;if(E.containsDynamicStyles){const I=new Set,Oe=D||{};E.styles.forEach(Ct=>{Ct instanceof Map&&Ct.forEach(Bt=>{Qi(Bt).forEach(yn=>{Oe.hasOwnProperty(yn)||I.add(yn)})})}),I.size&&m.errors.push(function ot(){return new v.buA(3008,!1)}(0,I.values()))}return{type:lt.If.State,name:_.name,style:E,options:D?{params:D}:null}}visitTransition(_,m){m.queryCount=0,m.depCount=0;const E=Fn(this,_n(_.animation),m),D=function da(b,_){const m=[];return"string"==typeof b?b.split(/\s*,\s*/).forEach(E=>function Ta(b,_,m){if(":"==b[0]){const Bt=function en(b,_){switch(b){case":enter":return"void => *";case":leave":return"* => void";case":increment":return(m,E)=>parseFloat(E)>parseFloat(m);case":decrement":return(m,E)=>parseFloat(E) *"}}(b,m);if("function"==typeof Bt)return void _.push(Bt);b=Bt}const E=b.match(/^(\*|[-\w]+)\s*()\s*(\*|[-\w]+)$/);if(null==E||E.length<4)return m.push(function rt(){return new v.buA(3015,!1)}()),_;const D=E[1],I=E[2],Oe=E[3];_.push(bn(D,Oe)),"<"==I[0]&&("*"!=D||"*"!=Oe)&&_.push(bn(Oe,D))}(E,m,_)):m.push(b),m}(_.expr,m.errors);return{type:lt.If.Transition,matchers:D,animation:E,queryCount:m.queryCount,depCount:m.depCount,options:di(_.options)}}visitSequence(_,m){return{type:lt.If.Sequence,steps:_.steps.map(E=>Fn(this,E,m)),options:di(_.options)}}visitGroup(_,m){const E=m.currentTime;let D=0;const I=_.steps.map(Oe=>{m.currentTime=E;const Ct=Fn(this,Oe,m);return D=Math.max(D,m.currentTime),Ct});return m.currentTime=D,{type:lt.If.Group,steps:I,options:di(_.options)}}visitAnimate(_,m){const E=function ti(b,_){if(b.hasOwnProperty("duration"))return b;if("number"==typeof b)return Ii(Yi(b,_).duration,0,"");const m=b;if(m.split(/\s+/).some(I=>"{"==I.charAt(0)&&"{"==I.charAt(1))){const I=Ii(0,0,"");return I.dynamic=!0,I.strValue=m,I}const D=Yi(m,_);return Ii(D.duration,D.delay,D.easing)}(_.timings,m.errors);m.currentAnimateTimings=E;let D,I=_.styles?_.styles:(0,lt.iF)({});if(I.type==lt.If.Keyframes)D=this.visitKeyframes(I,m);else{let Oe=_.styles,Ct=!1;if(!Oe){Ct=!0;const yn={};E.easing&&(yn.easing=E.easing),Oe=(0,lt.iF)(yn)}m.currentTime+=E.duration+E.delay;const Bt=this.visitStyle(Oe,m);Bt.isEmptyStep=Ct,D=Bt}return m.currentAnimateTimings=null,{type:lt.If.Animate,timings:E,style:D,options:null}}visitStyle(_,m){const E=this._makeStyleAst(_,m);return this._validateStyleAst(E,m),E}_makeStyleAst(_,m){const E=[],D=Array.isArray(_.styles)?_.styles:[_.styles];for(let Ct of D)"string"==typeof Ct?Ct===lt.kp?E.push(Ct):m.errors.push(nt()):E.push(new Map(Object.entries(Ct)));let I=!1,Oe=null;return E.forEach(Ct=>{if(Ct instanceof Map&&(Ct.has("easing")&&(Oe=Ct.get("easing"),Ct.delete("easing")),!I))for(let Bt of Ct.values())if(Bt.toString().indexOf("{{")>=0){I=!0;break}}),{type:lt.If.Style,styles:E,easing:Oe,offset:_.offset,containsDynamicStyles:I,options:null}}_validateStyleAst(_,m){const E=m.currentAnimateTimings;let D=m.currentTime,I=m.currentTime;E&&I>0&&(I-=E.duration+E.delay),_.styles.forEach(Oe=>{"string"!=typeof Oe&&Oe.forEach((Ct,Bt)=>{const yn=m.collectedStyles.get(m.currentQuerySelector),Yn=yn.get(Bt);let jn=!0;Yn&&(I!=D&&I>=Yn.startTime&&D<=Yn.endTime&&(m.errors.push(function ht(){return new v.buA(3010,!1)}()),jn=!1),I=Yn.startTime),jn&&yn.set(Bt,{startTime:I,endTime:D}),m.options&&function fi(b,_,m){const E=_.params||{},D=Qi(b);D.length&&D.forEach(I=>{E.hasOwnProperty(I)||m.push(function ve(){return new v.buA(3001,!1)}())})}(Ct,m.options,m.errors)})})}visitKeyframes(_,m){const E={type:lt.If.Keyframes,styles:[],options:null};if(!m.currentAnimateTimings)return m.errors.push(function oe(){return new v.buA(3011,!1)}()),E;let I=0;const Oe=[];let Ct=!1,Bt=!1,yn=0;const Yn=_.steps.map(Ia=>{const fs=this._makeStyleAst(Ia,m);let $s=null!=fs.offset?fs.offset:function Jt(b){if("string"==typeof b)return null;let _=null;if(Array.isArray(b))b.forEach(m=>{if(m instanceof Map&&m.has("offset")){const E=m;_=parseFloat(E.get("offset")),E.delete("offset")}});else if(b instanceof Map&&b.has("offset")){const m=b;_=parseFloat(m.get("offset")),m.delete("offset")}return _}(fs.styles),Ea=0;return null!=$s&&(I++,Ea=fs.offset=$s),Bt=Bt||Ea<0||Ea>1,Ct=Ct||Ea0&&I{const $s=Fi>0?fs==Zi?1:Fi*fs:Oe[fs],Ea=$s*Sa;m.currentTime=Mi+Ai.delay+Ea,Ai.duration=Ea,this._validateStyleAst(Ia,m),Ia.offset=$s,E.styles.push(Ia)}),E}visitReference(_,m){return{type:lt.If.Reference,animation:Fn(this,_n(_.animation),m),options:di(_.options)}}visitAnimateChild(_,m){return m.depCount++,{type:lt.If.AnimateChild,options:di(_.options)}}visitAnimateRef(_,m){return{type:lt.If.AnimateRef,animation:this.visitReference(_.animation,m),options:di(_.options)}}visitQuery(_,m){const E=m.currentQuerySelector,D=_.options||{};m.queryCount++,m.currentQuery=_;const[I,Oe]=function Wt(b){const _=!!b.split(/\s*,\s*/).find(m=>":self"==m);return _&&(b=b.replace(yi,"")),b=b.replace(/@\*/g,Nt).replace(/@\w+/g,m=>Nt+"-"+m.slice(1)).replace(/:animating/g,xn),[b,_]}(_.selector);m.currentQuerySelector=E.length?E+" "+I:I,ge(m.collectedStyles,m.currentQuerySelector,new Map);const Ct=Fn(this,_n(_.animation),m);return m.currentQuery=null,m.currentQuerySelector=E,{type:lt.If.Query,selector:I,limit:D.limit||0,optional:!!D.optional,includeSelf:Oe,animation:Ct,originalSelector:_.selector,options:di(_.options)}}visitStagger(_,m){m.currentQuery||m.errors.push(function gt(){return new v.buA(3013,!1)}());const E="full"===_.timings?{duration:0,delay:0,easing:"full"}:Yi(_.timings,m.errors,!0);return{type:lt.If.Stagger,animation:Fn(this,_n(_.animation),m),timings:E,options:null}}}class Et{errors;queryCount=0;depCount=0;currentTransition=null;currentQuery=null;currentQuerySelector=null;currentAnimateTimings=null;currentTime=0;collectedStyles=new Map;options=null;unsupportedCSSPropertiesFound=new Set;constructor(_){this.errors=_}}function di(b){return b?(b={...b}).params&&(b.params=function Ve(b){return b?{...b}:null}(b.params)):b={},b}function Ii(b,_,m){return{duration:b,delay:_,easing:m}}function ca(b,_,m,E,D,I,Oe=null,Ct=!1){return{type:1,element:b,keyframes:_,preStyleProps:m,postStyleProps:E,duration:D,delay:I,totalTime:D+I,easing:Oe,subTimeline:Ct}}class nn{_map=new Map;get(_){return this._map.get(_)||[]}append(_,m){let E=this._map.get(_);E||this._map.set(_,E=[]),E.push(...m)}has(_){return this._map.has(_)}clear(){this._map.clear()}}const tt=new RegExp(":enter","g"),Xt=new RegExp(":leave","g");function Nn(b,_,m,E,D,I=new Map,Oe=new Map,Ct,Bt,yn=[]){return(new Ki).buildKeyframes(b,_,m,E,D,I,Oe,Ct,Bt,yn)}class Ki{buildKeyframes(_,m,E,D,I,Oe,Ct,Bt,yn,Yn=[]){yn=yn||new nn;const jn=new Ua(_,m,yn,D,I,Yn,[]);jn.options=Bt;const Fi=Bt.delay?Jn(Bt.delay):0;jn.currentTimeline.delayNextStep(Fi),jn.currentTimeline.setStyles([Oe],null,jn.errors,Bt),Fn(this,E,jn);const Zi=jn.timelines.filter(Mi=>Mi.containsAnimation());if(Zi.length&&Ct.size){let Mi;for(let Ai=Zi.length-1;Ai>=0;Ai--){const Sa=Zi[Ai];if(Sa.element===m){Mi=Sa;break}}Mi&&!Mi.allowOnlyTimelineStyles()&&Mi.setStyles([Ct],null,jn.errors,Bt)}return Zi.length?Zi.map(Mi=>Mi.buildKeyframes()):[ca(m,[],[],[],0,Fi,"",!1)]}visitTrigger(_,m){}visitState(_,m){}visitTransition(_,m){}visitAnimateChild(_,m){const E=m.subInstructions.get(m.element);if(E){const D=m.createSubContext(_.options),I=m.currentTimeline.currentTime,Oe=this._visitSubInstructions(E,D,D.options);I!=Oe&&m.transformIntoNewTimeline(Oe)}m.previousNode=_}visitAnimateRef(_,m){const E=m.createSubContext(_.options);E.transformIntoNewTimeline(),this._applyAnimationRefDelays([_.options,_.animation.options],m,E),this.visitReference(_.animation,E),m.transformIntoNewTimeline(E.currentTimeline.currentTime),m.previousNode=_}_applyAnimationRefDelays(_,m,E){for(const D of _){const I=D?.delay;if(I){const Oe="number"==typeof I?I:Jn(zi(I,D?.params??{},m.errors));E.delayNextStep(Oe)}}}_visitSubInstructions(_,m,E){let I=m.currentTimeline.currentTime;const Oe=null!=E.duration?Jn(E.duration):null,Ct=null!=E.delay?Jn(E.delay):null;return 0!==Oe&&_.forEach(Bt=>{const yn=m.appendInstructionToTimeline(Bt,Oe,Ct);I=Math.max(I,yn.duration+yn.delay)}),I}visitReference(_,m){m.updateOptions(_.options,!0),Fn(this,_.animation,m),m.previousNode=_}visitSequence(_,m){const E=m.subContextCount;let D=m;const I=_.options;if(I&&(I.params||I.delay)&&(D=m.createSubContext(I),D.transformIntoNewTimeline(),null!=I.delay)){D.previousNode.type==lt.If.Style&&(D.currentTimeline.snapshotCurrentStyles(),D.previousNode=_a);const Oe=Jn(I.delay);D.delayNextStep(Oe)}_.steps.length&&(_.steps.forEach(Oe=>Fn(this,Oe,D)),D.currentTimeline.applyStylesToKeyframe(),D.subContextCount>E&&D.transformIntoNewTimeline()),m.previousNode=_}visitGroup(_,m){const E=[];let D=m.currentTimeline.currentTime;const I=_.options&&_.options.delay?Jn(_.options.delay):0;_.steps.forEach(Oe=>{const Ct=m.createSubContext(_.options);I&&Ct.delayNextStep(I),Fn(this,Oe,Ct),D=Math.max(D,Ct.currentTimeline.currentTime),E.push(Ct.currentTimeline)}),E.forEach(Oe=>m.currentTimeline.mergeTimelineCollectedStyles(Oe)),m.transformIntoNewTimeline(D),m.previousNode=_}_visitTiming(_,m){if(_.dynamic){const E=_.strValue;return Yi(m.params?zi(E,m.params,m.errors):E,m.errors)}return{duration:_.duration,delay:_.delay,easing:_.easing}}visitAnimate(_,m){const E=m.currentAnimateTimings=this._visitTiming(_.timings,m),D=m.currentTimeline;E.delay&&(m.incrementTime(E.delay),D.snapshotCurrentStyles());const I=_.style;I.type==lt.If.Keyframes?this.visitKeyframes(I,m):(m.incrementTime(E.duration),this.visitStyle(I,m),D.applyStylesToKeyframe()),m.currentAnimateTimings=null,m.previousNode=_}visitStyle(_,m){const E=m.currentTimeline,D=m.currentAnimateTimings;!D&&E.hasCurrentStyleProperties()&&E.forwardFrame();const I=D&&D.easing||_.easing;_.isEmptyStep?E.applyEmptyStep(I):E.setStyles(_.styles,I,m.errors,m.options),m.previousNode=_}visitKeyframes(_,m){const E=m.currentAnimateTimings,D=m.currentTimeline.duration,I=E.duration,Ct=m.createSubContext().currentTimeline;Ct.easing=E.easing,_.styles.forEach(Bt=>{Ct.forwardTime((Bt.offset||0)*I),Ct.setStyles(Bt.styles,Bt.easing,m.errors,m.options),Ct.applyStylesToKeyframe()}),m.currentTimeline.mergeTimelineCollectedStyles(Ct),m.transformIntoNewTimeline(D+I),m.previousNode=_}visitQuery(_,m){const E=m.currentTimeline.currentTime,D=_.options||{},I=D.delay?Jn(D.delay):0;I&&(m.previousNode.type===lt.If.Style||0==E&&m.currentTimeline.hasCurrentStyleProperties())&&(m.currentTimeline.snapshotCurrentStyles(),m.previousNode=_a);let Oe=E;const Ct=m.invokeQuery(_.selector,_.originalSelector,_.limit,_.includeSelf,!!D.optional,m.errors);m.currentQueryTotal=Ct.length;let Bt=null;Ct.forEach((yn,Yn)=>{m.currentQueryIndex=Yn;const jn=m.createSubContext(_.options,yn);I&&jn.delayNextStep(I),yn===m.element&&(Bt=jn.currentTimeline),Fn(this,_.animation,jn),jn.currentTimeline.applyStylesToKeyframe(),Oe=Math.max(Oe,jn.currentTimeline.currentTime)}),m.currentQueryIndex=0,m.currentQueryTotal=0,m.transformIntoNewTimeline(Oe),Bt&&(m.currentTimeline.mergeTimelineCollectedStyles(Bt),m.currentTimeline.snapshotCurrentStyles()),m.previousNode=_}visitStagger(_,m){const E=m.parentContext,D=m.currentTimeline,I=_.timings,Oe=Math.abs(I.duration),Ct=Oe*(m.currentQueryTotal-1);let Bt=Oe*m.currentQueryIndex;switch(I.duration<0?"reverse":I.easing){case"reverse":Bt=Ct-Bt;break;case"full":Bt=E.currentStaggerTime}const Yn=m.currentTimeline;Bt&&Yn.delayNextStep(Bt);const jn=Yn.currentTime;Fn(this,_.animation,m),m.previousNode=_,E.currentStaggerTime=D.currentTime-jn+(D.startTime-E.currentTimeline.startTime)}}const _a={};class Ua{_driver;element;subInstructions;_enterClassName;_leaveClassName;errors;timelines;parentContext=null;currentTimeline;currentAnimateTimings=null;previousNode=_a;subContextCount=0;options={};currentQueryIndex=0;currentQueryTotal=0;currentStaggerTime=0;constructor(_,m,E,D,I,Oe,Ct,Bt){this._driver=_,this.element=m,this.subInstructions=E,this._enterClassName=D,this._leaveClassName=I,this.errors=Oe,this.timelines=Ct,this.currentTimeline=Bt||new $a(this._driver,m,0),Ct.push(this.currentTimeline)}get params(){return this.options.params}updateOptions(_,m){if(!_)return;const E=_;let D=this.options;null!=E.duration&&(D.duration=Jn(E.duration)),null!=E.delay&&(D.delay=Jn(E.delay));const I=E.params;if(I){let Oe=D.params;Oe||(Oe=this.options.params={}),Object.keys(I).forEach(Ct=>{(!m||!Oe.hasOwnProperty(Ct))&&(Oe[Ct]=zi(I[Ct],Oe,this.errors))})}}_copyOptions(){const _={};if(this.options){const m=this.options.params;if(m){const E=_.params={};Object.keys(m).forEach(D=>{E[D]=m[D]})}}return _}createSubContext(_=null,m,E){const D=m||this.element,I=new Ua(this._driver,D,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(D,E||0));return I.previousNode=this.previousNode,I.currentAnimateTimings=this.currentAnimateTimings,I.options=this._copyOptions(),I.updateOptions(_),I.currentQueryIndex=this.currentQueryIndex,I.currentQueryTotal=this.currentQueryTotal,I.parentContext=this,this.subContextCount++,I}transformIntoNewTimeline(_){return this.previousNode=_a,this.currentTimeline=this.currentTimeline.fork(this.element,_),this.timelines.push(this.currentTimeline),this.currentTimeline}appendInstructionToTimeline(_,m,E){const D={duration:m??_.duration,delay:this.currentTimeline.currentTime+(E??0)+_.delay,easing:""},I=new ns(this._driver,_.element,_.keyframes,_.preStyleProps,_.postStyleProps,D,_.stretchStartingKeyframe);return this.timelines.push(I),D}incrementTime(_){this.currentTimeline.forwardTime(this.currentTimeline.duration+_)}delayNextStep(_){_>0&&this.currentTimeline.delayNextStep(_)}invokeQuery(_,m,E,D,I,Oe){let Ct=[];if(D&&Ct.push(this.element),_.length>0){_=(_=_.replace(tt,"."+this._enterClassName)).replace(Xt,"."+this._leaveClassName);let yn=this._driver.query(this.element,_,1!=E);0!==E&&(yn=E<0?yn.slice(yn.length+E,yn.length):yn.slice(0,E)),Ct.push(...yn)}return!I&&0==Ct.length&&Oe.push(function Gt(){return new v.buA(3014,!1)}()),Ct}}class $a{_driver;element;startTime;_elementTimelineStylesLookup;duration=0;easing=null;_previousKeyframe=new Map;_currentKeyframe=new Map;_keyframes=new Map;_styleSummary=new Map;_localTimelineStyles=new Map;_globalTimelineStyles;_pendingStyles=new Map;_backFill=new Map;_currentEmptyStepKeyframe=null;constructor(_,m,E,D){this._driver=_,this.element=m,this.startTime=E,this._elementTimelineStylesLookup=D,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(m),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(m,this._localTimelineStyles)),this._loadKeyframe()}containsAnimation(){switch(this._keyframes.size){case 0:return!1;case 1:return this.hasCurrentStyleProperties();default:return!0}}hasCurrentStyleProperties(){return this._currentKeyframe.size>0}get currentTime(){return this.startTime+this.duration}delayNextStep(_){const m=1===this._keyframes.size&&this._pendingStyles.size;this.duration||m?(this.forwardTime(this.currentTime+_),m&&this.snapshotCurrentStyles()):this.startTime+=_}fork(_,m){return this.applyStylesToKeyframe(),new $a(this._driver,_,m||this.currentTime,this._elementTimelineStylesLookup)}_loadKeyframe(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=new Map,this._keyframes.set(this.duration,this._currentKeyframe))}forwardFrame(){this.duration+=1,this._loadKeyframe()}forwardTime(_){this.applyStylesToKeyframe(),this.duration=_,this._loadKeyframe()}_updateStyle(_,m){this._localTimelineStyles.set(_,m),this._globalTimelineStyles.set(_,m),this._styleSummary.set(_,{time:this.currentTime,value:m})}allowOnlyTimelineStyles(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}applyEmptyStep(_){_&&this._previousKeyframe.set("easing",_);for(let[m,E]of this._globalTimelineStyles)this._backFill.set(m,E||lt.kp),this._currentKeyframe.set(m,lt.kp);this._currentEmptyStepKeyframe=this._currentKeyframe}setStyles(_,m,E,D){m&&this._previousKeyframe.set("easing",m);const I=D&&D.params||{},Oe=function As(b,_){const m=new Map;let E;return b.forEach(D=>{if("*"===D){E??=_.keys();for(let I of E)m.set(I,lt.kp)}else for(let[I,Oe]of D)m.set(I,Oe)}),m}(_,this._globalTimelineStyles);for(let[Ct,Bt]of Oe){const yn=zi(Bt,I,E);this._pendingStyles.set(Ct,yn),this._localTimelineStyles.has(Ct)||this._backFill.set(Ct,this._globalTimelineStyles.get(Ct)??lt.kp),this._updateStyle(Ct,yn)}}applyStylesToKeyframe(){0!=this._pendingStyles.size&&(this._pendingStyles.forEach((_,m)=>{this._currentKeyframe.set(m,_)}),this._pendingStyles.clear(),this._localTimelineStyles.forEach((_,m)=>{this._currentKeyframe.has(m)||this._currentKeyframe.set(m,_)}))}snapshotCurrentStyles(){for(let[_,m]of this._localTimelineStyles)this._pendingStyles.set(_,m),this._updateStyle(_,m)}getFinalKeyframe(){return this._keyframes.get(this.duration)}get properties(){const _=[];for(let m in this._currentKeyframe)_.push(m);return _}mergeTimelineCollectedStyles(_){_._styleSummary.forEach((m,E)=>{const D=this._styleSummary.get(E);(!D||m.time>D.time)&&this._updateStyle(E,m.value)})}buildKeyframes(){this.applyStylesToKeyframe();const _=new Set,m=new Set,E=1===this._keyframes.size&&0===this.duration;let D=[];this._keyframes.forEach((Ct,Bt)=>{const yn=new Map([...this._backFill,...Ct]);yn.forEach((Yn,jn)=>{Yn===lt.FX?_.add(jn):Yn===lt.kp&&m.add(jn)}),E||yn.set("offset",Bt/this.duration),D.push(yn)});const I=[..._.values()],Oe=[...m.values()];if(E){const Ct=D[0],Bt=new Map(Ct);Ct.set("offset",0),Bt.set("offset",1),D=[Ct,Bt]}return ca(this.element,D,I,Oe,this.duration,this.startTime,this.easing,!1)}}class ns extends $a{keyframes;preStyleProps;postStyleProps;_stretchStartingKeyframe;timings;constructor(_,m,E,D,I,Oe,Ct=!1){super(_,m,Oe.delay),this.keyframes=E,this.preStyleProps=D,this.postStyleProps=I,this._stretchStartingKeyframe=Ct,this.timings={duration:Oe.duration,delay:Oe.delay,easing:Oe.easing}}containsAnimation(){return this.keyframes.length>1}buildKeyframes(){let _=this.keyframes,{delay:m,duration:E,easing:D}=this.timings;if(this._stretchStartingKeyframe&&m){const I=[],Oe=E+m,Ct=m/Oe,Bt=new Map(_[0]);Bt.set("offset",0),I.push(Bt);const yn=new Map(_[0]);yn.set("offset",Ga(Ct)),I.push(yn);const Yn=_.length-1;for(let jn=1;jn<=Yn;jn++){let Fi=new Map(_[jn]);const Zi=Fi.get("offset");Fi.set("offset",Ga((m+Zi*E)/Oe)),I.push(Fi)}E=Oe,m=0,D="",_=I}return ca(this.element,_,this.preStyleProps,this.postStyleProps,E,m,D,!0)}}function Ga(b,_=3){const m=Math.pow(10,_-1);return Math.round(b*m)/m}function hr(b,_,m,E,D,I,Oe,Ct,Bt,yn,Yn,jn,Fi){return{type:0,element:b,triggerName:_,isRemovalTransition:D,fromState:m,fromStyles:I,toState:E,toStyles:Oe,timelines:Ct,queriedElements:Bt,preStyleProps:yn,postStyleProps:Yn,totalTime:jn,errors:Fi}}const mr={};class fr{_triggerName;ast;_stateStyles;constructor(_,m,E){this._triggerName=_,this.ast=m,this._stateStyles=E}match(_,m,E,D){return function pr(b,_,m,E,D){return b.some(I=>I(_,m,E,D))}(this.ast.matchers,_,m,E,D)}buildStyles(_,m,E){let D=this._stateStyles.get("*");return void 0!==_&&(D=this._stateStyles.get(_?.toString())||D),D?D.buildStyles(m,E):new Map}build(_,m,E,D,I,Oe,Ct,Bt,yn,Yn){const jn=[],Fi=this.ast.options&&this.ast.options.params||mr,Mi=this.buildStyles(E,Ct&&Ct.params||mr,jn),Ai=Bt&&Bt.params||mr,Sa=this.buildStyles(D,Ai,jn),Ia=new Set,fs=new Map,$s=new Map,Ea="void"===D,ws={params:gr(Ai,Fi),delay:this.ast.options?.delay},Fa=Yn?[]:Nn(_,m,this.ast.animation,I,Oe,Mi,Sa,ws,yn,jn);let Vs=0;return Fa.forEach(ps=>{Vs=Math.max(ps.duration+ps.delay,Vs)}),jn.length?hr(m,this._triggerName,E,D,Ea,Mi,Sa,[],[],fs,$s,Vs,jn):(Fa.forEach(ps=>{const xl=ps.element,W1=ge(fs,xl,new Set);ps.preStyleProps.forEach(h1=>W1.add(h1));const K3=ge($s,xl,new Set);ps.postStyleProps.forEach(h1=>K3.add(h1)),xl!==m&&Ia.add(xl)}),hr(m,this._triggerName,E,D,Ea,Mi,Sa,Fa,[...Ia.values()],fs,$s,Vs))}}function gr(b,_){const m={..._};return Object.entries(b).forEach(([E,D])=>{null!=D&&(m[E]=D)}),m}class bo{styles;defaultParams;normalizer;constructor(_,m,E){this.styles=_,this.defaultParams=m,this.normalizer=E}buildStyles(_,m){const E=new Map,D=gr(_,this.defaultParams);return this.styles.styles.forEach(I=>{"string"!=typeof I&&I.forEach((Oe,Ct)=>{Oe&&(Oe=zi(Oe,D,m));const Bt=this.normalizer.normalizePropertyName(Ct,m);Oe=this.normalizer.normalizeStyleValue(Ct,Bt,Oe,m),E.set(Ct,Oe)})}),E}}class jr{name;ast;_normalizer;transitionFactories=[];fallbackTransition;states=new Map;constructor(_,m,E){this.name=_,this.ast=m,this._normalizer=E,m.states.forEach(D=>{this.states.set(D.name,new bo(D.style,D.options&&D.options.params||{},E))}),Ka(this.states,"true","1"),Ka(this.states,"false","0"),m.transitions.forEach(D=>{this.transitionFactories.push(new fr(_,D,this.states))}),this.fallbackTransition=function Er(b,_){return new fr(b,{type:lt.If.Transition,animation:{type:lt.If.Sequence,steps:[],options:null},matchers:[(Oe,Ct)=>!0],options:null,queryCount:0,depCount:0},_)}(_,this.states)}get containsQueries(){return this.ast.queryCount>0}matchTransition(_,m,E,D){return this.transitionFactories.find(Oe=>Oe.match(_,m,E,D))||null}matchStyles(_,m,E){return this.fallbackTransition.buildStyles(_,m,E)}}function Ka(b,_,m){b.has(_)?b.has(m)||b.set(m,b.get(_)):b.has(m)&&b.set(_,b.get(m))}const Ps=new nn;class kr{bodyNode;_driver;_normalizer;_animations=new Map;_playersById=new Map;players=[];constructor(_,m,E){this.bodyNode=_,this._driver=m,this._normalizer=E}register(_,m){const E=[],I=Wi(this._driver,m,E,[]);if(E.length)throw function jt(){return new v.buA(3503,!1)}();this._animations.set(_,I)}_buildPlayer(_,m,E){const D=_.element,I=ee(this._normalizer,_.keyframes,m,E);return this._driver.animate(D,I,_.duration,_.delay,_.easing,[],!0)}create(_,m,E={}){const D=[],I=this._animations.get(_);let Oe;const Ct=new Map;if(I?(Oe=Nn(this._driver,m,I,tn,on,new Map,new Map,E,Ps,D),Oe.forEach(Yn=>{const jn=ge(Ct,Yn.element,new Map);Yn.postStyleProps.forEach(Fi=>jn.set(Fi,null))})):(D.push(function Ue(){return new v.buA(3300,!1)}()),Oe=[]),D.length)throw function wt(){return new v.buA(3504,!1)}();Ct.forEach((Yn,jn)=>{Yn.forEach((Fi,Zi)=>{Yn.set(Zi,this._driver.computeStyle(jn,Zi,lt.kp))})});const yn=vt(Oe.map(Yn=>{const jn=Ct.get(Yn.element);return this._buildPlayer(Yn,new Map,jn)}));return this._playersById.set(_,yn),yn.onDestroy(()=>this.destroy(_)),this.players.push(yn),yn}destroy(_){const m=this._getPlayer(_);m.destroy(),this._playersById.delete(_);const E=this.players.indexOf(m);E>=0&&this.players.splice(E,1)}_getPlayer(_){const m=this._playersById.get(_);if(!m)throw function pt(){return new v.buA(3301,!1)}();return m}listen(_,m,E,D){const I=Se(m,"","","");return ye(this._getPlayer(_),E,I,D),()=>{}}command(_,m,E,D){if("register"==E)return void this.register(_,D[0]);if("create"==E)return void this.create(_,m,D[0]||{});const I=this._getPlayer(_);switch(E){case"play":I.play();break;case"pause":I.pause();break;case"reset":I.reset();break;case"restart":I.restart();break;case"finish":I.finish();break;case"init":I.init();break;case"setPosition":I.setPosition(parseFloat(D[0]));break;case"destroy":this.destroy(_)}}}const js="ng-animate-queued",Zr="ng-animate-disabled",Js=[],_r={namespaceId:"",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},rs={namespaceId:"",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},ls="__ng_removed";class is{namespaceId;value;options;get params(){return this.options.params}constructor(_,m=""){this.namespaceId=m;const E=_&&_.hasOwnProperty("value");if(this.value=function qs(b){return b??null}(E?_.value:_),E){const{value:I,...Oe}=_;this.options=Oe}else this.options={};this.options.params||(this.options.params={})}absorbOptions(_){const m=_.params;if(m){const E=this.options.params;Object.keys(m).forEach(D=>{null==E[D]&&(E[D]=m[D])})}}}const Hs="void",Ws=new is(Hs);class Mr{id;hostElement;_engine;players=[];_triggers=new Map;_queue=[];_elementListeners=new Map;_hostClassName;constructor(_,m,E){this.id=_,this.hostElement=m,this._engine=E,this._hostClassName="ng-tns-"+_,ja(m,this._hostClassName)}listen(_,m,E,D){if(!this._triggers.has(m))throw function Pt(){return new v.buA(3302,!1)}();if(null==E||0==E.length)throw function gn(){return new v.buA(3303,!1)}();if(!function yr(b){return"start"==b||"done"==b}(E))throw function ei(){return new v.buA(3400,!1)}();const I=ge(this._elementListeners,_,[]),Oe={name:m,phase:E,callback:D};I.push(Oe);const Ct=ge(this._engine.statesByElement,_,new Map);return Ct.has(m)||(ja(_,un),ja(_,un+"-"+m),Ct.set(m,Ws)),()=>{this._engine.afterFlush(()=>{const Bt=I.indexOf(Oe);Bt>=0&&I.splice(Bt,1),this._triggers.has(m)||Ct.delete(m)})}}register(_,m){return!this._triggers.has(_)&&(this._triggers.set(_,m),!0)}_getTrigger(_){const m=this._triggers.get(_);if(!m)throw function vi(){return new v.buA(3401,!1)}();return m}trigger(_,m,E,D=!0){const I=this._getTrigger(m),Oe=new xs(this.id,m,_);let Ct=this._engine.statesByElement.get(_);Ct||(ja(_,un),ja(_,un+"-"+m),this._engine.statesByElement.set(_,Ct=new Map));let Bt=Ct.get(m);const yn=new is(E,this.id);if(!(E&&E.hasOwnProperty("value"))&&Bt&&yn.absorbOptions(Bt.options),Ct.set(m,yn),Bt||(Bt=Ws),yn.value!==Hs&&Bt.value===yn.value){if(!function Hr(b,_){const m=Object.keys(b),E=Object.keys(_);if(m.length!=E.length)return!1;for(let D=0;D{Ht(_,Sa),Lt(_,Ia)})}return}const Fi=ge(this._engine.playersByElement,_,[]);Fi.forEach(Ai=>{Ai.namespaceId==this.id&&Ai.triggerName==m&&Ai.queued&&Ai.destroy()});let Zi=I.matchTransition(Bt.value,yn.value,_,yn.params),Mi=!1;if(!Zi){if(!D)return;Zi=I.fallbackTransition,Mi=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:_,triggerName:m,transition:Zi,fromState:Bt,toState:yn,player:Oe,isFallbackTransition:Mi}),Mi||(ja(_,js),Oe.onStart(()=>{Za(_,js)})),Oe.onDone(()=>{let Ai=this.players.indexOf(Oe);Ai>=0&&this.players.splice(Ai,1);const Sa=this._engine.playersByElement.get(_);if(Sa){let Ia=Sa.indexOf(Oe);Ia>=0&&Sa.splice(Ia,1)}}),this.players.push(Oe),Fi.push(Oe),Oe}deregister(_){this._triggers.delete(_),this._engine.statesByElement.forEach(m=>m.delete(_)),this._elementListeners.forEach((m,E)=>{this._elementListeners.set(E,m.filter(D=>D.name!=_))})}clearElementCache(_){this._engine.statesByElement.delete(_),this._elementListeners.delete(_);const m=this._engine.playersByElement.get(_);m&&(m.forEach(E=>E.destroy()),this._engine.playersByElement.delete(_))}_signalRemovalForInnerTriggers(_,m){const E=this._engine.driver.query(_,Nt,!0);E.forEach(D=>{if(D[ls])return;const I=this._engine.fetchNamespacesByElement(D);I.size?I.forEach(Oe=>Oe.triggerLeaveAnimation(D,m,!1,!0)):this.clearElementCache(D)}),this._engine.afterFlushAnimationsDone(()=>E.forEach(D=>this.clearElementCache(D)))}triggerLeaveAnimation(_,m,E,D){const I=this._engine.statesByElement.get(_),Oe=new Map;if(I){const Ct=[];if(I.forEach((Bt,yn)=>{if(Oe.set(yn,Bt.value),this._triggers.has(yn)){const Yn=this.trigger(_,yn,Hs,D);Yn&&Ct.push(Yn)}}),Ct.length)return this._engine.markElementAsRemoved(this.id,_,!0,m,Oe),E&&vt(Ct).onDone(()=>this._engine.processLeaveNode(_)),!0}return!1}prepareLeaveAnimationListeners(_){const m=this._elementListeners.get(_),E=this._engine.statesByElement.get(_);if(m&&E){const D=new Set;m.forEach(I=>{const Oe=I.name;if(D.has(Oe))return;D.add(Oe);const Bt=this._triggers.get(Oe).fallbackTransition,yn=E.get(Oe)||Ws,Yn=new is(Hs),jn=new xs(this.id,Oe,_);this._engine.totalQueuedPlayers++,this._queue.push({element:_,triggerName:Oe,transition:Bt,fromState:yn,toState:Yn,player:jn,isFallbackTransition:!0})})}}removeNode(_,m){const E=this._engine;if(_.childElementCount&&this._signalRemovalForInnerTriggers(_,m),this.triggerLeaveAnimation(_,m,!0))return;let D=!1;if(E.totalAnimations){const I=E.players.length?E.playersByQueriedElement.get(_):[];if(I&&I.length)D=!0;else{let Oe=_;for(;Oe=Oe.parentNode;)if(E.statesByElement.get(Oe)){D=!0;break}}}if(this.prepareLeaveAnimationListeners(_),D)E.markElementAsRemoved(this.id,_,!1,m);else{const I=_[ls];(!I||I===_r)&&(E.afterFlush(()=>this.clearElementCache(_)),E.destroyInnerAnimations(_),E._onRemovalComplete(_,m))}}insertNode(_,m){ja(_,this._hostClassName)}drainQueuedTransitions(_){const m=[];return this._queue.forEach(E=>{const D=E.player;if(D.destroyed)return;const I=E.element,Oe=this._elementListeners.get(I);Oe&&Oe.forEach(Ct=>{if(Ct.name==E.triggerName){const Bt=Se(I,E.triggerName,E.fromState.value,E.toState.value);Bt._data=_,ye(E.player,Ct.phase,Bt,Ct.callback)}}),D.markedForDestroy?this._engine.afterFlush(()=>{D.destroy()}):m.push(E)}),this._queue=[],m.sort((E,D)=>{const I=E.transition.ast.depCount,Oe=D.transition.ast.depCount;return 0==I||0==Oe?I-Oe:this._engine.driver.containsElement(E.element,D.element)?1:-1})}destroy(_){this.players.forEach(m=>m.destroy()),this._signalRemovalForInnerTriggers(this.hostElement,_)}}class Ui{bodyNode;driver;_normalizer;players=[];newHostElements=new Map;playersByElement=new Map;playersByQueriedElement=new Map;statesByElement=new Map;disabledNodes=new Set;totalAnimations=0;totalQueuedPlayers=0;_namespaceLookup={};_namespaceList=[];_flushFns=[];_whenQuietFns=[];namespacesByHostElement=new Map;collectedEnterElements=[];collectedLeaveElements=[];onRemovalComplete=(_,m)=>{};_onRemovalComplete(_,m){this.onRemovalComplete(_,m)}constructor(_,m,E){this.bodyNode=_,this.driver=m,this._normalizer=E}get queuedPlayers(){const _=[];return this._namespaceList.forEach(m=>{m.players.forEach(E=>{E.queued&&_.push(E)})}),_}createNamespace(_,m){const E=new Mr(_,m,this);return this.bodyNode&&this.driver.containsElement(this.bodyNode,m)?this._balanceNamespaceList(E,m):(this.newHostElements.set(m,E),this.collectEnterElement(m)),this._namespaceLookup[_]=E}_balanceNamespaceList(_,m){const E=this._namespaceList,D=this.namespacesByHostElement;if(E.length-1>=0){let Oe=!1,Ct=this.driver.getParentElement(m);for(;Ct;){const Bt=D.get(Ct);if(Bt){const yn=E.indexOf(Bt);E.splice(yn+1,0,_),Oe=!0;break}Ct=this.driver.getParentElement(Ct)}Oe||E.unshift(_)}else E.push(_);return D.set(m,_),_}register(_,m){let E=this._namespaceLookup[_];return E||(E=this.createNamespace(_,m)),E}registerTrigger(_,m,E){let D=this._namespaceLookup[_];D&&D.register(m,E)&&this.totalAnimations++}destroy(_,m){_&&(this.afterFlush(()=>{}),this.afterFlushAnimationsDone(()=>{const E=this._fetchNamespace(_);this.namespacesByHostElement.delete(E.hostElement);const D=this._namespaceList.indexOf(E);D>=0&&this._namespaceList.splice(D,1),E.destroy(m),delete this._namespaceLookup[_]}))}_fetchNamespace(_){return this._namespaceLookup[_]}fetchNamespacesByElement(_){const m=new Set,E=this.statesByElement.get(_);if(E)for(let D of E.values())if(D.namespaceId){const I=this._fetchNamespace(D.namespaceId);I&&m.add(I)}return m}trigger(_,m,E,D){if(Pa(m)){const I=this._fetchNamespace(_);if(I)return I.trigger(m,E,D),!0}return!1}insertNode(_,m,E,D){if(!Pa(m))return;const I=m[ls];if(I&&I.setForRemoval){I.setForRemoval=!1,I.setForMove=!0;const Oe=this.collectedLeaveElements.indexOf(m);Oe>=0&&this.collectedLeaveElements.splice(Oe,1)}if(_){const Oe=this._fetchNamespace(_);Oe&&Oe.insertNode(m,E)}D&&this.collectEnterElement(m)}collectEnterElement(_){this.collectedEnterElements.push(_)}markElementAsDisabled(_,m){m?this.disabledNodes.has(_)||(this.disabledNodes.add(_),ja(_,Zr)):this.disabledNodes.has(_)&&(this.disabledNodes.delete(_),Za(_,Zr))}removeNode(_,m,E){if(Pa(m)){const D=_?this._fetchNamespace(_):null;D?D.removeNode(m,E):this.markElementAsRemoved(_,m,!1,E);const I=this.namespacesByHostElement.get(m);I&&I.id!==_&&I.removeNode(m,E)}else this._onRemovalComplete(m,E)}markElementAsRemoved(_,m,E,D,I){this.collectedLeaveElements.push(m),m[ls]={namespaceId:_,setForRemoval:D,hasAnimation:E,removedBeforeQueried:!1,previousTriggersValues:I}}listen(_,m,E,D,I){return Pa(m)?this._fetchNamespace(_).listen(m,E,D,I):()=>{}}_buildInstruction(_,m,E,D,I){return _.transition.build(this.driver,_.element,_.fromState.value,_.toState.value,E,D,_.fromState.options,_.toState.options,m,I)}destroyInnerAnimations(_){let m=this.driver.query(_,Nt,!0);m.forEach(E=>this.destroyActiveAnimationsForElement(E)),0!=this.playersByQueriedElement.size&&(m=this.driver.query(_,xn,!0),m.forEach(E=>this.finishActiveQueriedAnimationOnElement(E)))}destroyActiveAnimationsForElement(_){const m=this.playersByElement.get(_);m&&m.forEach(E=>{E.queued?E.markedForDestroy=!0:E.destroy()})}finishActiveQueriedAnimationOnElement(_){const m=this.playersByQueriedElement.get(_);m&&m.forEach(E=>E.finish())}whenRenderingDone(){return new Promise(_=>{if(this.players.length)return vt(this.players).onDone(()=>_());_()})}processLeaveNode(_){const m=_[ls];if(m&&m.setForRemoval){if(_[ls]=_r,m.namespaceId){this.destroyInnerAnimations(_);const E=this._fetchNamespace(m.namespaceId);E&&E.clearElementCache(_)}this._onRemovalComplete(_,m.setForRemoval)}_.classList?.contains(Zr)&&this.markElementAsDisabled(_,!1),this.driver.query(_,".ng-animate-disabled",!0).forEach(E=>{this.markElementAsDisabled(E,!1)})}flush(_=-1){let m=[];if(this.newHostElements.size&&(this.newHostElements.forEach((E,D)=>this._balanceNamespaceList(E,D)),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(let E=0;EE()),this._flushFns=[],this._whenQuietFns.length){const E=this._whenQuietFns;this._whenQuietFns=[],m.length?vt(m).onDone(()=>{E.forEach(D=>D())}):E.forEach(D=>D())}}reportError(_){throw function Ni(){return new v.buA(3402,!1)}()}_flushAnimations(_,m){const E=new nn,D=[],I=new Map,Oe=[],Ct=new Map,Bt=new Map,yn=new Map,Yn=new Set;this.disabledNodes.forEach(aa=>{Yn.add(aa);const la=this.driver.query(aa,".ng-animate-queued",!0);for(let ya=0;ya{const ya=tn+Ai++;Mi.set(la,ya),aa.forEach(Ya=>ja(Ya,ya))});const Sa=[],Ia=new Set,fs=new Set;for(let aa=0;aaIa.add(Ya)):fs.add(la))}const $s=new Map,Ea=wa(Fi,Array.from(Ia));Ea.forEach((aa,la)=>{const ya=on+Ai++;$s.set(la,ya),aa.forEach(Ya=>ja(Ya,ya))}),_.push(()=>{Zi.forEach((aa,la)=>{const ya=Mi.get(la);aa.forEach(Ya=>Za(Ya,ya))}),Ea.forEach((aa,la)=>{const ya=$s.get(la);aa.forEach(Ya=>Za(Ya,ya))}),Sa.forEach(aa=>{this.processLeaveNode(aa)})});const ws=[],Fa=[];for(let aa=this._namespaceList.length-1;aa>=0;aa--)this._namespaceList[aa].drainQueuedTransitions(m).forEach(ya=>{const Ya=ya.player,uo=ya.element;if(ws.push(Ya),this.collectedEnterElements.length){const ho=uo[ls];if(ho&&ho.setForMove){if(ho.previousTriggersValues&&ho.previousTriggersValues.has(ya.triggerName)){const Vc=ho.previousTriggersValues.get(ya.triggerName),Nl=this.statesByElement.get(ya.element);if(Nl&&Nl.has(ya.triggerName)){const jd=Nl.get(ya.triggerName);jd.value=Vc,Nl.set(ya.triggerName,jd)}}return void Ya.destroy()}}const _o=!jn||!this.driver.containsElement(jn,uo),vo=$s.get(uo),dc=Mi.get(uo),ys=this._buildInstruction(ya,E,dc,vo,_o);if(ys.errors&&ys.errors.length)return void Fa.push(ys);if(_o)return Ya.onStart(()=>Ht(uo,ys.fromStyles)),Ya.onDestroy(()=>Lt(uo,ys.toStyles)),void D.push(Ya);if(ya.isFallbackTransition)return Ya.onStart(()=>Ht(uo,ys.fromStyles)),Ya.onDestroy(()=>Lt(uo,ys.toStyles)),void D.push(Ya);const Y1=[];ys.timelines.forEach(ho=>{ho.stretchStartingKeyframe=!0,this.disabledNodes.has(ho.element)||Y1.push(ho)}),ys.timelines=Y1,E.append(uo,ys.timelines),Oe.push({instruction:ys,player:Ya,element:uo}),ys.queriedElements.forEach(ho=>ge(Ct,ho,[]).push(Ya)),ys.preStyleProps.forEach((ho,Vc)=>{if(ho.size){let Nl=Bt.get(Vc);Nl||Bt.set(Vc,Nl=new Set),ho.forEach((jd,s0)=>Nl.add(s0))}}),ys.postStyleProps.forEach((ho,Vc)=>{let Nl=yn.get(Vc);Nl||yn.set(Vc,Nl=new Set),ho.forEach((jd,s0)=>Nl.add(s0))})});if(Fa.length){const aa=[];Fa.forEach(la=>{aa.push(function kn(){return new v.buA(3505,!1)}())}),ws.forEach(la=>la.destroy()),this.reportError(aa)}const Vs=new Map,ps=new Map;Oe.forEach(aa=>{const la=aa.element;E.has(la)&&(ps.set(la,la),this._beforeAnimationBuild(aa.player.namespaceId,aa.instruction,Vs))}),D.forEach(aa=>{const la=aa.element;this._getPreviousPlayers(la,!1,aa.namespaceId,aa.triggerName,null).forEach(Ya=>{ge(Vs,la,[]).push(Ya),Ya.destroy()})});const xl=Sa.filter(aa=>Ks(aa,Bt,yn)),W1=new Map;Xs(W1,this.driver,fs,yn,lt.kp).forEach(aa=>{Ks(aa,Bt,yn)&&xl.push(aa)});const h1=new Map;Zi.forEach((aa,la)=>{Xs(h1,this.driver,new Set(aa),Bt,lt.FX)}),xl.forEach(aa=>{const la=W1.get(aa),ya=h1.get(aa);W1.set(aa,new Map([...la?.entries()??[],...ya?.entries()??[]]))});const X1=[],zc=[],K1={};Oe.forEach(aa=>{const{element:la,player:ya,instruction:Ya}=aa;if(E.has(la)){if(Yn.has(la))return ya.onDestroy(()=>Lt(la,Ya.toStyles)),ya.disabled=!0,ya.overrideTotalTime(Ya.totalTime),void D.push(ya);let uo=K1;if(ps.size>1){let vo=la;const dc=[];for(;vo=vo.parentNode;){const ys=ps.get(vo);if(ys){uo=ys;break}dc.push(vo)}dc.forEach(ys=>ps.set(ys,uo))}const _o=this._buildAnimation(ya.namespaceId,Ya,Vs,I,h1,W1);if(ya.setRealPlayer(_o),uo===K1)X1.push(ya);else{const vo=this.playersByElement.get(uo);vo&&vo.length&&(ya.parentPlayer=vt(vo)),D.push(ya)}}else Ht(la,Ya.fromStyles),ya.onDestroy(()=>Lt(la,Ya.toStyles)),zc.push(ya),Yn.has(la)&&D.push(ya)}),zc.forEach(aa=>{const la=I.get(aa.element);if(la&&la.length){const ya=vt(la);aa.setRealPlayer(ya)}}),D.forEach(aa=>{aa.parentPlayer?aa.syncPlayerEvents(aa.parentPlayer):aa.destroy()});for(let aa=0;aa!_o.destroyed);uo.length?Or(this,la,uo):this.processLeaveNode(la)}return Sa.length=0,X1.forEach(aa=>{this.players.push(aa),aa.onDone(()=>{aa.destroy();const la=this.players.indexOf(aa);this.players.splice(la,1)}),aa.play()}),X1}afterFlush(_){this._flushFns.push(_)}afterFlushAnimationsDone(_){this._whenQuietFns.push(_)}_getPreviousPlayers(_,m,E,D,I){let Oe=[];if(m){const Ct=this.playersByQueriedElement.get(_);Ct&&(Oe=Ct)}else{const Ct=this.playersByElement.get(_);if(Ct){const Bt=!I||I==Hs;Ct.forEach(yn=>{yn.queued||!Bt&&yn.triggerName!=D||Oe.push(yn)})}}return(E||D)&&(Oe=Oe.filter(Ct=>!(E&&E!=Ct.namespaceId||D&&D!=Ct.triggerName))),Oe}_beforeAnimationBuild(_,m,E){const I=m.element,Oe=m.isRemovalTransition?void 0:_,Ct=m.isRemovalTransition?void 0:m.triggerName;for(const Bt of m.timelines){const yn=Bt.element,Yn=yn!==I,jn=ge(E,yn,[]);this._getPreviousPlayers(yn,Yn,Oe,Ct,m.toState).forEach(Zi=>{const Mi=Zi.getRealPlayer();Mi.beforeDestroy&&Mi.beforeDestroy(),Zi.destroy(),jn.push(Zi)})}Ht(I,m.fromStyles)}_buildAnimation(_,m,E,D,I,Oe){const Ct=m.triggerName,Bt=m.element,yn=[],Yn=new Set,jn=new Set,Fi=m.timelines.map(Mi=>{const Ai=Mi.element;Yn.add(Ai);const Sa=Ai[ls];if(Sa&&Sa.removedBeforeQueried)return new lt.sf(Mi.duration,Mi.delay);const Ia=Ai!==Bt,fs=function Rr(b){const _=[];return Fs(b,_),_}((E.get(Ai)||Js).map(Vs=>Vs.getRealPlayer())).filter(Vs=>!!Vs.element&&Vs.element===Ai),$s=I.get(Ai),Ea=Oe.get(Ai),ws=ee(this._normalizer,Mi.keyframes,$s,Ea),Fa=this._buildPlayer(Mi,ws,fs);if(Mi.subTimeline&&D&&jn.add(Ai),Ia){const Vs=new xs(_,Ct,Ai);Vs.setRealPlayer(Fa),yn.push(Vs)}return Fa});yn.forEach(Mi=>{ge(this.playersByQueriedElement,Mi.element,[]).push(Mi),Mi.onDone(()=>function vr(b,_,m){let E=b.get(_);if(E){if(E.length){const D=E.indexOf(m);E.splice(D,1)}0==E.length&&b.delete(_)}return E}(this.playersByQueriedElement,Mi.element,Mi))}),Yn.forEach(Mi=>ja(Mi,dn));const Zi=vt(Fi);return Zi.onDestroy(()=>{Yn.forEach(Mi=>Za(Mi,dn)),Lt(Bt,m.toStyles)}),jn.forEach(Mi=>{ge(D,Mi,[]).push(Zi)}),Zi}_buildPlayer(_,m,E){return m.length>0?this.driver.animate(_.element,m,_.duration,_.delay,_.easing,E):new lt.sf(_.duration,_.delay)}}class xs{namespaceId;triggerName;element;_player=new lt.sf;_containsRealPlayer=!1;_queuedCallbacks=new Map;destroyed=!1;parentPlayer=null;markedForDestroy=!1;disabled=!1;queued=!0;totalTime=0;constructor(_,m,E){this.namespaceId=_,this.triggerName=m,this.element=E}setRealPlayer(_){this._containsRealPlayer||(this._player=_,this._queuedCallbacks.forEach((m,E)=>{m.forEach(D=>ye(_,E,void 0,D))}),this._queuedCallbacks.clear(),this._containsRealPlayer=!0,this.overrideTotalTime(_.totalTime),this.queued=!1)}getRealPlayer(){return this._player}overrideTotalTime(_){this.totalTime=_}syncPlayerEvents(_){const m=this._player;m.triggerCallback&&_.onStart(()=>m.triggerCallback("start")),_.onDone(()=>this.finish()),_.onDestroy(()=>this.destroy())}_queueEvent(_,m){ge(this._queuedCallbacks,_,[]).push(m)}onDone(_){this.queued&&this._queueEvent("done",_),this._player.onDone(_)}onStart(_){this.queued&&this._queueEvent("start",_),this._player.onStart(_)}onDestroy(_){this.queued&&this._queueEvent("destroy",_),this._player.onDestroy(_)}init(){this._player.init()}hasStarted(){return!this.queued&&this._player.hasStarted()}play(){!this.queued&&this._player.play()}pause(){!this.queued&&this._player.pause()}restart(){!this.queued&&this._player.restart()}finish(){this._player.finish()}destroy(){this.destroyed=!0,this._player.destroy()}reset(){!this.queued&&this._player.reset()}setPosition(_){this.queued||this._player.setPosition(_)}getPosition(){return this.queued?0:this._player.getPosition()}triggerCallback(_){const m=this._player;m.triggerCallback&&m.triggerCallback(_)}}function Pa(b){return b&&1===b.nodeType}function er(b,_){const m=b.style.display;return b.style.display=_??"none",m}function Xs(b,_,m,E,D){const I=[];m.forEach(Bt=>I.push(er(Bt)));const Oe=[];E.forEach((Bt,yn)=>{const Yn=new Map;Bt.forEach(jn=>{const Fi=_.computeStyle(yn,jn,D);Yn.set(jn,Fi),(!Fi||0==Fi.length)&&(yn[ls]=rs,Oe.push(yn))}),b.set(yn,Yn)});let Ct=0;return m.forEach(Bt=>er(Bt,I[Ct++])),Oe}function wa(b,_){const m=new Map;if(b.forEach(Ct=>m.set(Ct,[])),0==_.length)return m;const D=new Set(_),I=new Map;function Oe(Ct){if(!Ct)return 1;let Bt=I.get(Ct);if(Bt)return Bt;const yn=Ct.parentNode;return Bt=m.has(yn)?yn:D.has(yn)?1:Oe(yn),I.set(Ct,Bt),Bt}return _.forEach(Ct=>{const Bt=Oe(Ct);1!==Bt&&m.get(Bt).push(Ct)}),m}function ja(b,_){b.classList?.add(_)}function Za(b,_){b.classList?.remove(_)}function Or(b,_,m){vt(m).onDone(()=>b.processLeaveNode(_))}function Fs(b,_){for(let m=0;mD.add(I)):_.set(b,E),m.delete(b),!0}class Sr{_driver;_normalizer;_transitionEngine;_timelineEngine;_triggerCache={};onRemovalComplete=(_,m)=>{};constructor(_,m,E){this._driver=m,this._normalizer=E,this._transitionEngine=new Ui(_.body,m,E),this._timelineEngine=new kr(_.body,m,E),this._transitionEngine.onRemovalComplete=(D,I)=>this.onRemovalComplete(D,I)}registerTrigger(_,m,E,D,I){const Oe=_+"-"+D;let Ct=this._triggerCache[Oe];if(!Ct){const Bt=[],Yn=Wi(this._driver,I,Bt,[]);if(Bt.length)throw function Qn(){return new v.buA(3404,!1)}();Ct=function Zs(b,_,m){return new jr(b,_,m)}(D,Yn,this._normalizer),this._triggerCache[Oe]=Ct}this._transitionEngine.registerTrigger(m,D,Ct)}register(_,m){this._transitionEngine.register(_,m)}destroy(_,m){this._transitionEngine.destroy(_,m)}onInsert(_,m,E,D){this._transitionEngine.insertNode(_,m,E,D)}onRemove(_,m,E){this._transitionEngine.removeNode(_,m,E)}disableAnimations(_,m){this._transitionEngine.markElementAsDisabled(_,m)}process(_,m,E,D){if("@"==E.charAt(0)){const[I,Oe]=N(E);this._timelineEngine.command(I,m,Oe,D)}else this._transitionEngine.trigger(_,m,E,D)}listen(_,m,E,D,I){if("@"==E.charAt(0)){const[Oe,Ct]=N(E);return this._timelineEngine.listen(Oe,m,Ct,I)}return this._transitionEngine.listen(_,m,E,D,I)}flush(_=-1){this._transitionEngine.flush(_)}get players(){return[...this._transitionEngine.players,...this._timelineEngine.players]}whenRenderingDone(){return this._transitionEngine.whenRenderingDone()}afterFlushAnimationsDone(_){this._transitionEngine.afterFlushAnimationsDone(_)}}let He=(()=>{class b{_element;_startStyles;_endStyles;static initialStylesByElement=new WeakMap;_state=0;_initialStyles;constructor(m,E,D){this._element=m,this._startStyles=E,this._endStyles=D;let I=b.initialStylesByElement.get(m);I||b.initialStylesByElement.set(m,I=new Map),this._initialStyles=I}start(){this._state<1&&(this._startStyles&&Lt(this._element,this._startStyles,this._initialStyles),this._state=1)}finish(){this.start(),this._state<2&&(Lt(this._element,this._initialStyles),this._endStyles&&(Lt(this._element,this._endStyles),this._endStyles=null),this._state=1)}destroy(){this.finish(),this._state<3&&(b.initialStylesByElement.delete(this._element),this._startStyles&&(Ht(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(Ht(this._element,this._endStyles),this._endStyles=null),Lt(this._element,this._initialStyles),this._state=3)}}return b})();function q(b){let _=null;return b.forEach((m,E)=>{(function mt(b){return"display"===b||"position"===b})(E)&&(_=_||new Map,_.set(E,m))}),_}class ln{element;keyframes;options;_specialStyles;_onDoneFns=[];_onStartFns=[];_onDestroyFns=[];_duration;_delay;_initialized=!1;_finished=!1;_started=!1;_destroyed=!1;_finalKeyframe;_originalOnDoneFns=[];_originalOnStartFns=[];domPlayer=null;time=0;parentPlayer=null;currentSnapshot=new Map;constructor(_,m,E,D){this.element=_,this.keyframes=m,this.options=E,this._specialStyles=D,this._duration=E.duration,this._delay=E.delay||0,this.time=this._duration+this._delay}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(_=>_()),this._onDoneFns=[])}init(){this._buildPlayer()&&this._preparePlayerBeforeStart()}_buildPlayer(){if(this._initialized)return this.domPlayer;this._initialized=!0;const _=this.keyframes,m=this._triggerWebAnimation(this.element,_,this.options);if(!m)return this._onFinish(),null;this.domPlayer=m,this._finalKeyframe=_.length?_[_.length-1]:new Map;const E=()=>this._onFinish();return m.addEventListener("finish",E),this.onDestroy(()=>{m.removeEventListener("finish",E)}),m}_preparePlayerBeforeStart(){this._delay?this._resetDomPlayerState():this.domPlayer?.pause()}_convertKeyframesToObject(_){const m=[];return _.forEach(E=>{m.push(Object.fromEntries(E))}),m}_triggerWebAnimation(_,m,E){const D=this._convertKeyframesToObject(m);try{return _.animate(D,E)}catch{return null}}onStart(_){this._originalOnStartFns.push(_),this._onStartFns.push(_)}onDone(_){this._originalOnDoneFns.push(_),this._onDoneFns.push(_)}onDestroy(_){this._onDestroyFns.push(_)}play(){const _=this._buildPlayer();_&&(this.hasStarted()||(this._onStartFns.forEach(m=>m()),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),_.play())}pause(){this.init(),this.domPlayer?.pause()}finish(){this.init(),this.domPlayer&&(this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish())}reset(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}_resetDomPlayerState(){this.domPlayer?.cancel()}restart(){this.reset(),this.play()}hasStarted(){return this._started}destroy(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(_=>_()),this._onDestroyFns=[])}setPosition(_){this.domPlayer||this.init(),this.domPlayer&&(this.domPlayer.currentTime=_*this.time)}getPosition(){return this.domPlayer?+(this.domPlayer.currentTime??0)/this.time:this._initialized?1:0}get totalTime(){return this._delay+this._duration}beforeDestroy(){const _=new Map;this.hasStarted()&&this._finalKeyframe.forEach((E,D)=>{"offset"!==D&&_.set(D,this._finished?E:ci(this.element,D))}),this.currentSnapshot=_}triggerCallback(_){const m="start"===_?this._onStartFns:this._onDoneFns;m.forEach(E=>E()),m.length=0}}class Oi{validateStyleProperty(_){return!0}validateAnimatableStyleProperty(_){return!0}containsElement(_,m){return Ge(_,m)}getParentElement(_){return Me(_)}query(_,m,E){return Ot(_,m,E)}computeStyle(_,m,E){return ci(_,m)}animate(_,m,E,D,I,Oe=[]){const Bt={duration:E,delay:D,fill:0==D?"both":"forwards"};I&&(Bt.easing=I);const yn=new Map,Yn=Oe.filter(Zi=>Zi instanceof ln);(function Un(b,_){return 0===b||0===_})(E,D)&&Yn.forEach(Zi=>{Zi.currentSnapshot.forEach((Mi,Ai)=>yn.set(Ai,Mi))});let jn=function we(b){return b.length?b[0]instanceof Map?b:b.map(_=>new Map(Object.entries(_))):[]}(m).map(Zi=>new Map(Zi));jn=function zn(b,_,m){if(m.size&&_.length){let E=_[0],D=[];if(m.forEach((I,Oe)=>{E.has(Oe)||D.push(Oe),E.set(Oe,I)}),D.length)for(let I=1;I<_.length;I++){let Oe=_[I];D.forEach(Ct=>Oe.set(Ct,ci(b,Ct)))}}return _}(_,jn,yn);const Fi=function Ne(b,_){let m=null,E=null;return Array.isArray(_)&&_.length?(m=q(_[0]),_.length>1&&(E=q(_[_.length-1]))):_ instanceof Map&&(m=q(_)),m||E?new He(b,m,E):null}(_,jn);return new ln(_,jn,Bt,Fi)}}const On="@.disabled";class $e{namespaceId;delegate;engine;_onDestroy;\u0275type=0;constructor(_,m,E,D){this.namespaceId=_,this.delegate=m,this.engine=E,this._onDestroy=D}get data(){return this.delegate.data}destroyNode(_){this.delegate.destroyNode?.(_)}destroy(){this.engine.destroy(this.namespaceId,this.delegate),this.engine.afterFlushAnimationsDone(()=>{queueMicrotask(()=>{this.delegate.destroy()})}),this._onDestroy?.()}createElement(_,m){return this.delegate.createElement(_,m)}createComment(_){return this.delegate.createComment(_)}createText(_){return this.delegate.createText(_)}appendChild(_,m){this.delegate.appendChild(_,m),this.engine.onInsert(this.namespaceId,m,_,!1)}insertBefore(_,m,E,D=!0){this.delegate.insertBefore(_,m,E),this.engine.onInsert(this.namespaceId,m,_,D)}removeChild(_,m,E,D){D?this.delegate.removeChild(_,m,E,D):this.parentNode(m)&&this.engine.onRemove(this.namespaceId,m,this.delegate)}selectRootElement(_,m){return this.delegate.selectRootElement(_,m)}parentNode(_){return this.delegate.parentNode(_)}nextSibling(_){return this.delegate.nextSibling(_)}setAttribute(_,m,E,D){this.delegate.setAttribute(_,m,E,D)}removeAttribute(_,m,E){this.delegate.removeAttribute(_,m,E)}addClass(_,m){this.delegate.addClass(_,m)}removeClass(_,m){this.delegate.removeClass(_,m)}setStyle(_,m,E,D){this.delegate.setStyle(_,m,E,D)}removeStyle(_,m,E){this.delegate.removeStyle(_,m,E)}setProperty(_,m,E){"@"==m.charAt(0)&&m==On?this.disableAnimations(_,!!E):this.delegate.setProperty(_,m,E)}setValue(_,m){this.delegate.setValue(_,m)}listen(_,m,E,D){return this.delegate.listen(_,m,E,D)}disableAnimations(_,m){this.engine.disableAnimations(_,m)}}class mn extends $e{factory;constructor(_,m,E,D,I){super(m,E,D,I),this.factory=_,this.namespaceId=m}setProperty(_,m,E){"@"==m.charAt(0)?"."==m.charAt(1)&&m==On?this.disableAnimations(_,E=void 0===E||!!E):this.engine.process(this.namespaceId,_,m.slice(1),E):this.delegate.setProperty(_,m,E)}listen(_,m,E,D){if("@"==m.charAt(0)){const I=function Ln(b){switch(b){case"body":return document.body;case"document":return document;case"window":return window;default:return b}}(_);let Oe=m.slice(1),Ct="";return"@"!=Oe.charAt(0)&&([Oe,Ct]=function Ei(b){const _=b.indexOf(".");return[b.substring(0,_),b.slice(_+1)]}(Oe)),this.engine.listen(this.namespaceId,I,Oe,Ct,Bt=>{this.factory.scheduleListenerCallback(Bt._data||-1,E,Bt)})}return this.delegate.listen(_,m,E,D)}}class xa{delegate;engine;_zone;_currentId=0;_microtaskId=1;_animationCallbacksBuffer=[];_rendererCache=new Map;_cdRecurDepth=0;constructor(_,m,E){this.delegate=_,this.engine=m,this._zone=E,m.onRemovalComplete=(D,I)=>{I?.removeChild(null,D)}}createRenderer(_,m){const D=this.delegate.createRenderer(_,m);if(!_||!m?.data?.animation){const yn=this._rendererCache;let Yn=yn.get(D);return Yn||(Yn=new $e("",D,this.engine,()=>yn.delete(D)),yn.set(D,Yn)),Yn}const I=m.id,Oe=m.id+"-"+this._currentId;this._currentId++,this.engine.register(Oe,_);const Ct=yn=>{Array.isArray(yn)?yn.forEach(Ct):this.engine.registerTrigger(I,Oe,_,yn.name,yn)};return m.data.animation.forEach(Ct),new mn(this,Oe,D,this.engine)}begin(){this._cdRecurDepth++,this.delegate.begin&&this.delegate.begin()}_scheduleCountTask(){queueMicrotask(()=>{this._microtaskId++})}scheduleListenerCallback(_,m,E){if(_>=0&&_m(E));const D=this._animationCallbacksBuffer;0==D.length&&queueMicrotask(()=>{this._zone.run(()=>{D.forEach(I=>{const[Oe,Ct]=I;Oe(Ct)}),this._animationCallbacksBuffer=[]})}),D.push([m,E])}end(){this._cdRecurDepth--,0==this._cdRecurDepth&&this._zone.runOutsideAngular(()=>{this._scheduleCountTask(),this.engine.flush(this._microtaskId)}),this.delegate.end&&this.delegate.end()}whenRenderingDone(){return this.engine.whenRenderingDone()}componentReplaced(_){this.engine.flush(),this.delegate.componentReplaced?.(_)}}const Ss=[{provide:ra,useFactory:function el(){return new qt}},{provide:Sr,useClass:(()=>{class b extends Sr{constructor(m,E,D){super(m,E,D)}ngOnDestroy(){this.flush()}static \u0275fac=function(E){return new(E||b)(v.KVO(v.qQL),v.KVO(ia),v.KVO(ra))};static \u0275prov=v.jDH({token:b,factory:b.\u0275fac})}return b})()},{provide:e._9s,useFactory:function Ml(b,_,m){return new xa(b,_,m)},deps:[f.mE,Sr,e.SKi]}],tr=[{provide:ia,useClass:Bn},{provide:e.bc$,useValue:"NoopAnimations"},...Ss],Eo=[{provide:ia,useFactory:()=>new Oi},{provide:e.bc$,useFactory:()=>"BrowserAnimations"},...Ss];let Mo=(()=>{class b{static withConfig(m){return{ngModule:b,providers:m.disableAnimations?tr:Eo}}static \u0275fac=function(E){return new(E||b)};static \u0275mod=e.$C({type:b});static \u0275inj=v.G2t({providers:Eo,imports:[he]})}return b})();var ds=l(9327),nr=l(9330),mi=l(9640),Uo=l(1747),Go=l(983),gl=l(1985),Tr=l(7673),jo=l(7786),mo=l(7242),Tl=l(2771),Vl=l(7647),za=l(5964),us=l(6354),Dl=l(274),eo=l(3236),So=l(8211),fo=l(9974),To=l(8750),Ho=l(1853),_l=l(4360),to=l(5225);const wl=(0,Ho.L)(b=>function(m=null){b(this),this.message="Timeout has occurred",this.name="TimeoutError",this.info=m});function Al(b){throw new wl(b)}var io=l(152),Ys=l(9437),Dr=l(6697),li=l(6977),Wr=l(5558),ao=l(5245),Pr=l(941),so=l(3993),tl=l(1943),Ul=l(9079);const Do="PERFORM_ACTION",ir="ROLLBACK",nl="TOGGLE_ACTION",de="JUMP_TO_STATE",Q="JUMP_TO_ACTION",me="IMPORT_STATE",et="LOCK_CHANGES",Mt="PAUSE_RECORDING";class Kt{constructor(_,m){if(this.action=_,this.timestamp=m,this.type=Do,typeof _.type>"u")throw new Error('Actions may not have an undefined "type" property. Have you misspelled a constant?')}}class Tn{constructor(){this.type="REFRESH"}}class ai{constructor(_){this.timestamp=_,this.type="RESET"}}class Gi{constructor(_){this.timestamp=_,this.type=ir}}class La{constructor(_){this.timestamp=_,this.type="COMMIT"}}class as{constructor(){this.type="SWEEP"}}class Ns{constructor(_){this.id=_,this.type=nl}}class ar{constructor(_){this.index=_,this.type=de}}class ro{constructor(_){this.actionId=_,this.type=Q}}class oo{constructor(_){this.nextLiftedState=_,this.type=me}}class Il{constructor(_){this.status=_,this.type=et}}class mc{constructor(_){this.status=_,this.type=Mt}}const kl=new v.nKC("@ngrx/store-devtools Options"),Xc=new v.nKC("@ngrx/store-devtools Initial Config");function po(){return null}function pc(b){const _={maxAge:!1,monitor:po,actionSanitizer:void 0,stateSanitizer:void 0,name:"NgRx Store DevTools",serialize:!1,logOnly:!1,autoPause:!1,trace:!1,traceLimit:75,features:{pause:!0,lock:!0,persist:!0,export:!0,import:"custom",jump:!0,skip:!0,reorder:!0,dispatch:!0,test:!0},connectInZone:!1},m="function"==typeof b?b():b,D=m.features||!!m.logOnly&&{pause:!0,export:!0,test:!0}||_.features;!0===D.import&&(D.import="custom");const I=Object.assign({},_,{features:D},m);if(I.maxAge&&I.maxAge<2)throw new Error(`Devtools 'maxAge' cannot be less than 2, got ${I.maxAge}`);return I}function Fr(b,_){return b.filter(m=>_.indexOf(m)<0)}function wo(b){const{computedStates:_,currentStateIndex:m}=b;if(m>=_.length){const{state:D}=_[_.length-1];return D}const{state:E}=_[m];return E}function Ao(b){return new Kt(b,+Date.now())}function Lc(b,_){return Object.keys(_).reduce((m,E)=>{const D=Number(E);return m[D]=vl(b,_[D],D),m},{})}function vl(b,_,m){return{..._,action:b(_.action,m)}}function al(b,_){return _.map((m,E)=>({state:Lo(b,m.state,E),error:m.error}))}function Lo(b,_,m){return b(_,m)}function Ol(b){return b.predicate||b.actionsSafelist||b.actionsBlocklist}function jl(b,_,m,E,D){const I=m&&!m(b,_.action),Oe=E&&!_.action.type.match(E.map(Bt=>Hl(Bt)).join("|")),Ct=D&&_.action.type.match(D.map(Bt=>Hl(Bt)).join("|"));return I||Oe||Ct}function Hl(b){return b.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function Rl(b){return{ngZone:b?(0,v.WQX)(e.SKi):null,connectInZone:b}}let Io=(()=>{var b;class _ extends mi.SS{static#e=b=()=>(this.\u0275fac=(()=>{let E;return function(I){return(E||(E=e.xGo(_)))(I||_)}})(),this.\u0275prov=v.jDH({token:_,factory:_.\u0275fac}))}return b(),_})();const Wl=new v.nKC("@ngrx/store-devtools Redux Devtools Extension");let sr=(()=>{var b;class _{constructor(E,D,I){this.config=D,this.dispatcher=I,this.zoneConfig=Rl(this.config.connectInZone),this.devtoolsExtension=E,this.createActionStreams()}notify(E,D){if(this.devtoolsExtension)if(E.type===Do){if(D.isLocked||D.isPaused)return;const I=wo(D);if(Ol(this.config)&&jl(I,E,this.config.predicate,this.config.actionsSafelist,this.config.actionsBlocklist))return;const Oe=this.config.stateSanitizer?Lo(this.config.stateSanitizer,I,D.currentStateIndex):I,Ct=this.config.actionSanitizer?vl(this.config.actionSanitizer,E,D.nextActionId):E;this.sendToReduxDevtools(()=>this.extensionConnection.send(Ct,Oe))}else{const I={...D,stagedActionIds:D.stagedActionIds,actionsById:this.config.actionSanitizer?Lc(this.config.actionSanitizer,D.actionsById):D.actionsById,computedStates:this.config.stateSanitizer?al(this.config.stateSanitizer,D.computedStates):D.computedStates};this.sendToReduxDevtools(()=>this.devtoolsExtension.send(null,I,this.getExtensionConfig(this.config)))}}createChangesObservable(){return this.devtoolsExtension?new gl.c(E=>{const D=this.zoneConfig.connectInZone?this.zoneConfig.ngZone.runOutsideAngular(()=>this.devtoolsExtension.connect(this.getExtensionConfig(this.config))):this.devtoolsExtension.connect(this.getExtensionConfig(this.config));return this.extensionConnection=D,D.init(),D.subscribe(I=>E.next(I)),D.unsubscribe}):Go.w}createActionStreams(){const E=this.createChangesObservable().pipe((0,Vl.u)()),D=E.pipe((0,za.p)(Yn=>"START"===Yn.type)),I=E.pipe((0,za.p)(Yn=>"STOP"===Yn.type)),Oe=E.pipe((0,za.p)(Yn=>"DISPATCH"===Yn.type),(0,us.T)(Yn=>this.unwrapAction(Yn.payload)),(0,Dl.H)(Yn=>Yn.type===me?this.dispatcher.pipe((0,za.p)(jn=>jn.type===mi.q6),function no(b,_){const{first:m,each:E,with:D=Al,scheduler:I=_??eo.E,meta:Oe=null}=(0,So.v)(b)?{first:b}:"number"==typeof b?{each:b}:b;if(null==m&&null==E)throw new TypeError("No timeout provided.");return(0,fo.N)((Ct,Bt)=>{let yn,Yn,jn=null,Fi=0;const Zi=Mi=>{Yn=(0,to.N)(Bt,I,()=>{try{yn.unsubscribe(),(0,To.Tg)(D({meta:Oe,lastValue:jn,seen:Fi})).subscribe(Bt)}catch(Ai){Bt.error(Ai)}},Mi)};yn=Ct.subscribe((0,_l._)(Bt,Mi=>{Yn?.unsubscribe(),Fi++,Bt.next(jn=Mi),E>0&&Zi(E)},void 0,void 0,()=>{Yn?.closed||Yn?.unsubscribe(),jn=null})),!Fi&&Zi(null!=m?"number"==typeof m?m:+m-I.now():E)})}(1e3),(0,io.B)(1e3),(0,us.T)(()=>Yn),(0,Ys.W)(()=>(0,Tr.of)(Yn)),(0,Dr.s)(1)):(0,Tr.of)(Yn))),Bt=E.pipe((0,za.p)(Yn=>"ACTION"===Yn.type),(0,us.T)(Yn=>this.unwrapAction(Yn.payload))).pipe((0,li.Q)(I)),yn=Oe.pipe((0,li.Q)(I));this.start$=D.pipe((0,li.Q)(I)),this.actions$=this.start$.pipe((0,Wr.n)(()=>Bt)),this.liftedActions$=this.start$.pipe((0,Wr.n)(()=>yn))}unwrapAction(E){return"string"==typeof E?(0,eval)(`(${E})`):E}getExtensionConfig(E){const D={name:E.name,features:E.features,serialize:E.serialize,autoPause:E.autoPause??!1,trace:E.trace??!1,traceLimit:E.traceLimit??75};return!1!==E.maxAge&&(D.maxAge=E.maxAge),D}sendToReduxDevtools(E){try{E()}catch(D){console.warn("@ngrx/store-devtools: something went wrong inside the redux devtools",D)}}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(v.KVO(Wl),v.KVO(kl),v.KVO(Io))},this.\u0275prov=v.jDH({token:_,factory:_.\u0275fac}))}return b(),_})();const Ts={type:mi.Zz},je={type:"@ngrx/store-devtools/recompute"};function ct(b,_,m,E,D){if(E)return{state:m,error:"Interrupted by an error up the chain"};let Oe,I=m;try{I=b(m,_)}catch(Ct){Oe=Ct.toString(),D.handleError(Ct)}return{state:I,error:Oe}}function Qt(b,_,m,E,D,I,Oe,Ct,Bt){if(_>=b.length&&b.length===I.length)return b;const yn=b.slice(0,_),Yn=I.length-(Bt?1:0);for(let jn=_;jn-1?Mi:ct(m,Zi,Ai,Sa,Ct);yn.push(fs)}return Bt&&yn.push(b[b.length-1]),yn}let Ci=(()=>{var b;class _{constructor(E,D,I,Oe,Ct,Bt,yn,Yn){const jn=function Pn(b,_){return{monitorState:_(void 0,{}),nextActionId:1,actionsById:{0:Ao(Ts)},stagedActionIds:[0],skippedActionIds:[],committedState:b,currentStateIndex:0,computedStates:[],isLocked:!1,isPaused:!1}}(yn,Yn.monitor),Fi=function $n(b,_,m,E,D={}){return I=>(Oe,Ct)=>{let{monitorState:Bt,actionsById:yn,nextActionId:Yn,stagedActionIds:jn,skippedActionIds:Fi,committedState:Zi,currentStateIndex:Mi,computedStates:Ai,isLocked:Sa,isPaused:Ia}=Oe||_;function fs(ws){let Fa=ws,Vs=jn.slice(1,Fa+1);for(let ps=0;ps-1===Vs.indexOf(ps)),jn=[0,...jn.slice(Fa+1)],Zi=Ai[Fa].state,Ai=Ai.slice(Fa),Mi=Mi>Fa?Mi-Fa:0}function $s(){yn={0:Ao(Ts)},Yn=1,jn=[0],Fi=[],Zi=Ai[Mi].state,Mi=0,Ai=[]}Oe||(yn=Object.create(yn));let Ea=0;switch(Ct.type){case et:Sa=Ct.status,Ea=1/0;break;case Mt:Ia=Ct.status,Ia?(jn=[...jn,Yn],yn[Yn]=new Kt({type:"@ngrx/devtools/pause"},+Date.now()),Yn++,Ea=jn.length-1,Ai=Ai.concat(Ai[Ai.length-1]),Mi===jn.length-2&&Mi++,Ea=1/0):$s();break;case"RESET":yn={0:Ao(Ts)},Yn=1,jn=[0],Fi=[],Zi=b,Mi=0,Ai=[];break;case"COMMIT":$s();break;case ir:yn={0:Ao(Ts)},Yn=1,jn=[0],Fi=[],Mi=0,Ai=[];break;case nl:{const{id:ws}=Ct;Fi=-1===Fi.indexOf(ws)?[ws,...Fi]:Fi.filter(Vs=>Vs!==ws),Ea=jn.indexOf(ws);break}case"SET_ACTIONS_ACTIVE":{const{start:ws,end:Fa,active:Vs}=Ct,ps=[];for(let xl=ws;xlD.maxAge&&(Ai=Qt(Ai,Ea,I,Zi,yn,jn,Fi,m,Ia),fs(jn.length-D.maxAge),Ea=1/0);break;case mi.q6:if(Ai.filter(Fa=>Fa.error).length>0)Ea=0,D.maxAge&&jn.length>D.maxAge&&(Ai=Qt(Ai,Ea,I,Zi,yn,jn,Fi,m,Ia),fs(jn.length-D.maxAge),Ea=1/0);else{if(!Ia&&!Sa){Mi===jn.length-1&&Mi++;const Fa=Yn++;yn[Fa]=new Kt(Ct,+Date.now()),jn=[...jn,Fa],Ea=jn.length-1,Ai=Qt(Ai,Ea,I,Zi,yn,jn,Fi,m,Ia)}Ai=Ai.map(Fa=>({...Fa,state:I(Fa.state,je)})),Mi=jn.length-1,D.maxAge&&jn.length>D.maxAge&&fs(jn.length-D.maxAge),Ea=1/0}break;default:Ea=1/0}return Ai=Qt(Ai,Ea,I,Zi,yn,jn,Fi,m,Ia),Bt=E(Bt,Ct),{monitorState:Bt,actionsById:yn,nextActionId:Yn,stagedActionIds:jn,skippedActionIds:Fi,committedState:Zi,currentStateIndex:Mi,computedStates:Ai,isLocked:Sa,isPaused:Ia}}}(yn,jn,Bt,Yn.monitor,Yn),Zi=(0,jo.h)((0,jo.h)(D.asObservable().pipe((0,ao.i)(1)),Oe.actions$).pipe((0,us.T)(Ao)),E,Oe.liftedActions$).pipe((0,Pr.Q)(mo.T)),Mi=I.pipe((0,us.T)(Fi)),Ai=Rl(Yn.connectInZone),Sa=new Tl.m(1);this.liftedStateSubscription=Zi.pipe((0,so.E)(Mi),wi(Ai),(0,tl.S)(({state:$s},[Ea,ws])=>{let Fa=ws($s,Ea);return Ea.type!==Do&&Ol(Yn)&&(Fa=function Gl(b,_,m,E){const D=[],I={},Oe=[];return b.stagedActionIds.forEach((Ct,Bt)=>{const yn=b.actionsById[Ct];yn&&(Bt&&jl(b.computedStates[Bt],yn,_,m,E)||(I[Ct]=yn,D.push(Ct),Oe.push(b.computedStates[Bt])))}),{...b,stagedActionIds:D,actionsById:I,computedStates:Oe}}(Fa,Yn.predicate,Yn.actionsSafelist,Yn.actionsBlocklist)),Oe.notify(Ea,Fa),{state:Fa,action:Ea}},{state:jn,action:null})).subscribe(({state:$s,action:Ea})=>{Sa.next($s),Ea.type===Do&&Ct.next(Ea.action)}),this.extensionStartSubscription=Oe.start$.pipe(wi(Ai)).subscribe(()=>{this.refresh()});const Ia=Sa.asObservable(),fs=Ia.pipe((0,us.T)(wo));Object.defineProperty(fs,"state",{value:(0,Ul.ot)(fs,{manualCleanup:!0,requireSync:!0})}),this.dispatcher=E,this.liftedState=Ia,this.state=fs}ngOnDestroy(){this.liftedStateSubscription.unsubscribe(),this.extensionStartSubscription.unsubscribe()}dispatch(E){this.dispatcher.next(E)}next(E){this.dispatcher.next(E)}error(E){}complete(){}performAction(E){this.dispatch(new Kt(E,+Date.now()))}refresh(){this.dispatch(new Tn)}reset(){this.dispatch(new ai(+Date.now()))}rollback(){this.dispatch(new Gi(+Date.now()))}commit(){this.dispatch(new La(+Date.now()))}sweep(){this.dispatch(new as)}toggleAction(E){this.dispatch(new Ns(E))}jumpToAction(E){this.dispatch(new ro(E))}jumpToState(E){this.dispatch(new ar(E))}importState(E){this.dispatch(new oo(E))}lockChanges(E){this.dispatch(new Il(E))}pauseRecording(E){this.dispatch(new mc(E))}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(v.KVO(Io),v.KVO(mi.SS),v.KVO(mi.QU),v.KVO(sr),v.KVO(mi.sA),v.KVO(v.zcH),v.KVO(mi.N_),v.KVO(kl))},this.\u0275prov=v.jDH({token:_,factory:_.\u0275fac}))}return b(),_})();function wi({ngZone:b,connectInZone:_}){return m=>_?new gl.c(E=>m.subscribe({next:D=>b.run(()=>E.next(D)),error:D=>b.run(()=>E.error(D)),complete:()=>b.run(()=>E.complete())})):m}const $i=new v.nKC("@ngrx/store-devtools Is Devtools Extension or Monitor Present");function sa(b,_){return!!b||_.monitor!==po}function va(){const b="__REDUX_DEVTOOLS_EXTENSION__";return"object"==typeof window&&typeof window[b]<"u"?window[b]:null}function oa(b){return b.state}function hs(b={}){return(0,v.EmA)([sr,Io,Ci,{provide:Xc,useValue:b},{provide:$i,deps:[Wl,kl],useFactory:sa},{provide:Wl,useFactory:va},{provide:kl,deps:[Xc],useFactory:pc},{provide:mi.h1,deps:[Ci],useFactory:oa},{provide:mi.Bh,useExisting:Io}])}let Ls=(()=>{var b;class _{static instrument(E={}){return{ngModule:_,providers:[hs(E)]}}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)},this.\u0275mod=e.$C({type:_}),this.\u0275inj=v.G2t({}))}return b(),_})();var gi=l(1413),Nr=l(3726),Br=l(2806),Xo=l(1807);function Oo(b=0,_=eo.E){return b<0&&(b=0),(0,Xo.O)(b,b,_)}var Pl=l(8359),yl=l(7908),Xr=l(9326),Xl=l(8141),Kc=l(980),_1=l(3294);class Yc{}function nc(b){return(0,v.EmA)([{provide:Yc,useValue:b}])}let v1=(()=>{class b{constructor(m,E){this._ngZone=E,this.timerStart$=new gi.B,this.idleDetected$=new gi.B,this.timeout$=new gi.B,this.idleMillisec=6e5,this.idleSensitivityMillisec=1e3,this.timeout=300,this.pingMillisec=12e4,this.isTimeout=!1,this.isInactivityTimer=!1,this.isIdleDetected=!1,m&&this.setConfig(m)}startWatching(){this.activityEvents$||(this.activityEvents$=(0,jo.h)((0,Nr.R)(window,"mousemove"),(0,Nr.R)(window,"resize"),(0,Nr.R)(document,"keydown"))),this.idle$=(0,Br.H)(this.activityEvents$),this.idleSubscription&&this.idleSubscription.unsubscribe(),this.idleSubscription=this.idle$.pipe(function tc(b,..._){var m,E;const D=null!==(m=(0,Xr.lI)(_))&&void 0!==m?m:eo.E,I=null!==(E=_[0])&&void 0!==E?E:null,Oe=_[1]||1/0;return(0,fo.N)((Ct,Bt)=>{let yn=[],Yn=!1;const jn=Mi=>{const{buffer:Ai,subs:Sa}=Mi;Sa.unsubscribe(),(0,yl.o)(yn,Mi),Bt.next(Ai),Yn&&Fi()},Fi=()=>{if(yn){const Mi=new Pl.yU;Bt.add(Mi);const Sa={buffer:[],subs:Mi};yn.push(Sa),(0,to.N)(Mi,D,()=>jn(Sa),b)}};null!==I&&I>=0?(0,to.N)(Bt,D,Fi,I,!0):Yn=!0,Fi();const Zi=(0,_l._)(Bt,Mi=>{const Ai=yn.slice();for(const Sa of Ai){const{buffer:Ia}=Sa;Ia.push(Mi),Oe<=Ia.length&&jn(Sa)}},()=>{for(;yn?.length;)Bt.next(yn.shift().buffer);Zi?.unsubscribe(),Bt.complete(),Bt.unsubscribe()},void 0,()=>yn=null);Ct.subscribe(Zi)})}(this.idleSensitivityMillisec),(0,za.p)(m=>!m.length&&!this.isIdleDetected&&!this.isInactivityTimer),(0,Xl.M)(()=>{this.isIdleDetected=!0,this.idleDetected$.next(!0)}),(0,Wr.n)(()=>this._ngZone.runOutsideAngular(()=>Oo(1e3).pipe((0,li.Q)((0,jo.h)(this.activityEvents$,(0,Xo.O)(this.idleMillisec).pipe((0,Xl.M)(()=>{this.isInactivityTimer=!0,this.timerStart$.next(!0)})))),(0,Kc.j)(()=>{this.isIdleDetected=!1,this.idleDetected$.next(!1)}))))).subscribe(),this.setupTimer(this.timeout),this.setupPing(this.pingMillisec)}stopWatching(){this.stopTimer(),this.idleSubscription&&this.idleSubscription.unsubscribe()}stopTimer(){this.isInactivityTimer=!1,this.timerStart$.next(!1)}resetTimer(){this.stopTimer(),this.isTimeout=!1}onTimerStart(){return this.timerStart$.pipe((0,_1.F)(),(0,Wr.n)(m=>m?this.timer$:(0,Tr.of)(null)))}onIdleStatusChanged(){return this.idleDetected$.asObservable()}onTimeout(){return this.timeout$.pipe((0,za.p)(m=>!!m),(0,Xl.M)(()=>this.isTimeout=!0),(0,us.T)(()=>!0))}getConfigValue(){return{idle:this.idleMillisec/1e3,idleSensitivity:this.idleSensitivityMillisec/1e3,timeout:this.timeout,ping:this.pingMillisec/1e3}}setConfigValues(m){!this.idleSubscription||this.idleSubscription.closed?this.setConfig(m):console.error("Call stopWatching() before set config values")}setConfig(m){m.idle&&(this.idleMillisec=1e3*m.idle),m.ping&&(this.pingMillisec=1e3*m.ping),m.idleSensitivity&&(this.idleSensitivityMillisec=1e3*m.idleSensitivity),m.timeout&&(this.timeout=m.timeout)}setCustomActivityEvents(m){!this.idleSubscription||this.idleSubscription.closed?this.activityEvents$=m:console.error("Call stopWatching() before set custom activity events")}setupTimer(m){this._ngZone.runOutsideAngular(()=>{this.timer$=(0,Tr.of)(()=>new Date).pipe((0,us.T)(E=>E()),(0,Wr.n)(E=>Oo(1e3).pipe((0,us.T)(()=>Math.round(((new Date).valueOf()-E.valueOf())/1e3)),(0,Xl.M)(D=>{D>=m&&this.timeout$.next(!0)}))))})}setupPing(m){this.ping$=Oo(m).pipe((0,za.p)(()=>!this.isTimeout))}}return b.\u0275fac=function(m){return new(m||b)(v.KVO(Yc,8),v.KVO(e.SKi))},b.\u0275prov=v.jDH({token:b,factory:b.\u0275fac,providedIn:"root"}),b})();var lo=l(8132),Ha=l(3694),Ti=l(5383),Oa=l(9647),os=l(60),K=l(5596),Ie=l(2920),Ut=l(6850);const Gn=()=>({initial:!1});function ui(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",11),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.activeLink=D.links[1].link)}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG();e.Y8G("routerLink",e.mNQ(m.links[1].link))("active",m.activeLink===m.links[1].link)("state",e.lJ4(5,Gn)),e.R7$(),e.JRh(m.links[1].name)}}function ki(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",12),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.activeLink=D.links[2].link)}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG();e.Y8G("routerLink",e.mNQ(m.links[2].link))("active",m.activeLink===m.links[2].link),e.R7$(),e.JRh(m.links[2].name)}}let Wa=(()=>{var b;class _{constructor(E,D){this.store=E,this.router=D,this.faUserCog=Ti.McB,this.showBitcoind=!1,this.links=[{link:"app",name:"Application"},{link:"auth",name:"Authentication"},{link:"bconfig",name:"BitcoinD Config"}],this.activeLink="",this.unSubs=[new gi.B,new gi.B,new gi.B]}ngOnInit(){const E=this.links.find(D=>this.router.url.includes(D.link));this.activeLink=E?E.link:this.links[0].link,this.router.events.pipe((0,li.Q)(this.unSubs[0]),(0,za.p)(D=>D instanceof Ha.gx)).subscribe({next:D=>{const I=this.links.find(Oe=>D.urlAfterRedirects.includes(Oe.link));this.activeLink=I?I.link:this.links[0].link}}),this.store.select(Oa.qv).pipe((0,li.Q)(this.unSubs[1])).subscribe(D=>{this.appConfig=D}),this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[2])).subscribe(D=>{this.showBitcoind=!1,this.selNode=D,this.selNode.settings&&this.selNode.settings.bitcoindConfigPath&&""!==this.selNode.settings.bitcoindConfigPath.trim()&&(this.showBitcoind=!0)})}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(mi.il),e.rXU(Ha.Ix))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-settings"]],standalone:!1,decls:16,vars:8,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","2","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","state","click",4,"ngIf"],["role","tab","tabindex","3","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active","state"],["role","tab","tabindex","3","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Settings"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6)(8,"div",7),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.activeLink=I.links[0].link)}),e.EFF(9),e.k0s(),e.DNE(10,ui,2,6,"div",8)(11,ki,2,4,"div",9),e.k0s(),e.nrm(12,"mat-tab-nav-panel",null,0),e.j41(14,"div",10),e.nrm(15,"router-outlet"),e.k0s()()()()}if(2&D){const Oe=e.sdS(13);e.R7$(),e.Y8G("icon",I.faUserCog),e.R7$(6),e.Y8G("tabPanel",Oe),e.R7$(),e.Y8G("routerLink",e.mNQ(I.links[0].link))("active",I.activeLink===I.links[0].link),e.R7$(),e.JRh(I.links[0].name),e.R7$(),e.Y8G("ngIf",!+I.appConfig.SSO.rtlSSO),e.R7$(),e.Y8G("ngIf",I.showBitcoind)}},dependencies:[w.bT,os.aY,K.RN,K.m2,Ie.DJ,Ie.sA,Ie.UI,Ut.Bu,Ut.hQ,Ut.Ql,Ha.n3,lo.Wk],encapsulation:2}))}return b(),_})();var Bi=l(1771),Aa=l(8570),hi=l(9417),es=l(8834),Ma=l(9588),sl=l(6183),ac=l(3029),go=l(497),Kl=l(9587);function t2(b,_){if(1&b&&(e.j41(0,"mat-option",15),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.Y8G("value",m.index),e.R7$(),e.Lme(" ",m.lnNode," (",m.lnImplementation,") ")}}function S4(b,_){if(1&b){const m=e.RV6();e.j41(0,"form",3,0)(2,"div",4),e.nrm(3,"fa-icon",5),e.j41(4,"span",6),e.EFF(5,"Default Node"),e.k0s()(),e.j41(6,"div",7)(7,"div",8)(8,"mat-form-field",9)(9,"mat-label"),e.EFF(10,"Default Node"),e.k0s(),e.j41(11,"mat-select",10),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG();return e.DH7(I.appConfig.defaultNodeIndex,D)||(I.appConfig.defaultNodeIndex=D),v.Njj(D)}),e.DNE(12,t2,2,3,"mat-option",11),e.k0s()()(),e.j41(13,"div",12)(14,"div",8)(15,"button",13),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.onResetSettings())}),e.EFF(16,"Reset"),e.k0s(),e.j41(17,"button",14),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.onUpdateApplicationSettings())}),e.EFF(18,"Update"),e.k0s()()()()()}if(2&b){const m=e.XpG();e.R7$(3),e.Y8G("icon",m.faWindowRestore),e.R7$(8),e.R50("ngModel",m.appConfig.defaultNodeIndex),e.R7$(),e.Y8G("ngForOf",m.appConfig.nodes)}}let Qc=(()=>{var b;class _{constructor(E,D){this.logger=E,this.store=D,this.faWindowRestore=Ti.aFw,this.faPlus=Ti.QLR,this.previousDefaultNode=0,this.unSubs=[new gi.B,new gi.B]}ngOnInit(){this.store.select(Oa.qv).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{this.appConfig=E,this.previousDefaultNode=this.appConfig.defaultNodeIndex,this.logger.info(E)})}onAddNewNode(){this.logger.warn("ADD NEW NODE")}onUpdateApplicationSettings(){this.appConfig.defaultNodeIndex=this.appConfig.defaultNodeIndex?this.appConfig.defaultNodeIndex:this.appConfig&&this.appConfig.nodes&&this.appConfig.nodes.length&&this.appConfig.nodes.length>0&&this.appConfig.nodes[0].index?+this.appConfig.nodes[0].index:-1,this.store.dispatch((0,Bi.rc)({payload:{showSnackBar:!0,message:"Default Node Updated.",config:this.appConfig}}))}onResetSettings(){this.appConfig.defaultNodeIndex=this.previousDefaultNode}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(mi.il))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-app-settings"]],standalone:!1,decls:2,vars:1,consts:[["form","ngForm"],["fxLayout","column","fxFlex","100",1,"padding-gap-x-large",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","settings-container page-sub-title-container mt-1",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"my-2"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start start"],["autoFocus","","name","defaultNode",3,"ngModelChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"mt-1"],["mat-stroked-button","","color","primary",1,"mr-1",3,"click"],["mat-flat-button","","color","primary",3,"click"],[3,"value"]],template:function(D,I){1&D&&(e.j41(0,"div",1),e.DNE(1,S4,19,3,"form",2),e.k0s()),2&D&&(e.R7$(),e.Y8G("ngIf",I.appConfig.nodes&&I.appConfig.nodes.length&&I.appConfig.nodes.length>0))},dependencies:[w.Sq,w.bT,hi.qT,hi.BC,hi.cb,hi.vS,hi.cV,os.aY,es.$z,Ma.rl,Ma.nJ,Ie.DJ,Ie.sA,Ie.UI,sl.VO,ac.wT,go.Ld,Kl.N],encapsulation:2}))}return b(),_})();var _c=l(2852),Ro=l(1585),Ko=l(7541),$c=l(5416),n2=l(467);let rl=(()=>{var b;class _{constructor(){this.base32Chars="ABCDEFGHIJKLMNOPQRSTUVWXYZ234567"}generateSecret(E=10){const D=new Uint8Array(E);return window.crypto.getRandomValues(D),this.base32Encode(D)}keyuri(E,D,I){return"otpauth://totp/"+encodeURIComponent(D)+":"+encodeURIComponent(E)+"?secret="+I+"&period=30&digits=6&algorithm=SHA1&issuer="+encodeURIComponent(D)}check(E,D,I){return/^\d+$/.test(E)?this.generate(D,I).then(Oe=>Oe===E).catch(()=>!1):Promise.resolve(!1)}generate(E,D){var I=this;return(0,n2.A)(function*(){const Oe=Math.floor((D??Date.now())/30/1e3),Ct=new Uint8Array(8);let Bt=Oe;for(let Mi=7;Mi>=0;Mi--)Ct[Mi]=255&Bt,Bt=Math.floor(Bt/256);const yn=I.createHmacKey(I.base32Decode(E)),Yn=yield window.crypto.subtle.importKey("raw",yn,{name:"HMAC",hash:"SHA-1"},!1,["sign"]),jn=new Uint8Array(yield window.crypto.subtle.sign("HMAC",Yn,Ct)),Fi=15&jn[jn.length-1];return String(((127&jn[Fi])<<24|(255&jn[Fi+1])<<16|(255&jn[Fi+2])<<8|255&jn[Fi+3])%10**6).padStart(6,"0")})()}createHmacKey(E){if(2*E.length>=20)return E;const D=new Uint8Array(20);for(let I=0;I=5;)Oe+=this.base32Chars[I>>>D-5&31],D-=5;return D>0&&(Oe+=this.base32Chars[I<<5-D&31]),Oe}base32Decode(E){const D=E.toUpperCase().replace(/[=]+$/,"");let I=0,Oe=0;const Ct=[];for(const Bt of D){const yn=this.base32Chars.indexOf(Bt);if(yn<0)throw new Error("Invalid base32 character in secret.");Oe=Oe<<5|yn,I+=5,I>=8&&(Ct.push(Oe>>>I-8&255),I-=8)}return Uint8Array.from(Ct)}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)},this.\u0275prov=v.jDH({token:_,factory:_.\u0275fac,providedIn:"root"}))}return b(),_})();var br=l(3746),Yo=l(6013),Yl=l(8288),i2=l(9157);const Fl=["stepper"];function y1(b,_){if(1&b&&e.EFF(0),2&b){const m=e.XpG();e.JRh(m.passwordFormLabel)}}function ld(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function a2(b,_){if(1&b&&e.EFF(0),2&b){const m=e.XpG(2);e.JRh(m.secretFormLabel)}}function A0(b,_){if(1&b&&e.nrm(0,"qr-code",33),2&b){const m=e.XpG(2);e.Y8G("value",m.otpauth)("size",180)}}function Ic(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Secret Code is required."),e.k0s())}function T4(b,_){if(1&b){const m=e.RV6();e.j41(0,"mat-step",10)(1,"form",22),e.DNE(2,a2,1,1,"ng-template",23),e.j41(3,"div",24),e.DNE(4,A0,1,2,"qr-code",25),e.k0s(),e.j41(5,"div",26),e.nrm(6,"fa-icon",27),e.j41(7,"span"),e.EFF(8,"You can use a compatible authentication app to get an authentication code when you log in to RTL. e.g.: Google Authenticator."),e.k0s()(),e.j41(9,"div",28)(10,"mat-form-field",13)(11,"mat-label"),e.EFF(12,"Secret Code"),e.k0s(),e.nrm(13,"input",29),e.j41(14,"fa-icon",30),e.bIt("copied",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onCopySecret(D))}),e.k0s(),e.DNE(15,Ic,2,0,"mat-error",15),e.k0s()(),e.j41(16,"div",31)(17,"button",32),e.EFF(18,"Next"),e.k0s()()()()}if(2&b){const m=e.XpG();e.Y8G("stepControl",m.secretFormGroup)("editable",m.flgEditable),e.R7$(),e.Y8G("formGroup",m.secretFormGroup),e.R7$(3),e.Y8G("ngIf",m.otpauth),e.R7$(2),e.Y8G("icon",m.faInfoCircle),e.R7$(8),e.Y8G("icon",m.faCopy)("payload",null==m.secretFormGroup||null==m.secretFormGroup.controls||null==m.secretFormGroup.controls.secret?null:m.secretFormGroup.controls.secret.value),e.R7$(),e.Y8G("ngIf",null==m.secretFormGroup||null==m.secretFormGroup.controls||null==m.secretFormGroup.controls.secret||null==m.secretFormGroup.controls.secret.errors?null:m.secretFormGroup.controls.secret.errors.required)}}function L0(b,_){if(1&b&&e.EFF(0),2&b){const m=e.XpG(2);e.JRh(m.tokenFormLabel)}}function I0(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Token is required."),e.k0s())}function Te(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Token is invalid."),e.k0s())}function dt(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",8)(1,"div",28)(2,"mat-form-field",13)(3,"mat-label"),e.EFF(4,"Token"),e.k0s(),e.nrm(5,"input",37),e.DNE(6,I0,2,0,"mat-error",15)(7,Te,2,0,"mat-error",15),e.k0s()(),e.j41(8,"div",31)(9,"button",38),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onVerifyToken())}),e.EFF(10),e.k0s()()()}if(2&b){const m=e.XpG(2);e.R7$(6),e.Y8G("ngIf",null==m.tokenFormGroup||null==m.tokenFormGroup.controls||null==m.tokenFormGroup.controls.token||null==m.tokenFormGroup.controls.token.errors?null:m.tokenFormGroup.controls.token.errors.required),e.R7$(),e.Y8G("ngIf",null==m.tokenFormGroup||null==m.tokenFormGroup.controls||null==m.tokenFormGroup.controls.token||null==m.tokenFormGroup.controls.token.errors?null:m.tokenFormGroup.controls.token.errors.notValid),e.R7$(3),e.JRh(null!=m.tokenFormGroup&&null!=m.tokenFormGroup.controls&&null!=m.tokenFormGroup.controls.token&&null!=m.tokenFormGroup.controls.token.errors&&m.tokenFormGroup.controls.token.errors.notValid?"Retry":"Verify")}}function st(b,_){1&b&&(e.j41(0,"div")(1,"strong"),e.EFF(2,"Success! You are all set."),e.k0s()())}function ft(b,_){if(1&b&&(e.j41(0,"mat-step",34)(1,"form",35),e.DNE(2,L0,1,1,"ng-template",12)(3,dt,11,3,"div",36)(4,st,3,0,"div",15),e.k0s()()),2&b){const m=e.XpG();e.Y8G("stepControl",m.tokenFormGroup),e.R7$(),e.Y8G("formGroup",m.tokenFormGroup),e.R7$(2),e.Y8G("ngIf",!m.flgValidated||!m.isTokenValid),e.R7$(),e.Y8G("ngIf",m.flgValidated&&m.isTokenValid)}}function $t(b,_){if(1&b&&e.EFF(0),2&b){const m=e.XpG(2);e.JRh(m.disableFormLabel)}}function Cn(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",8)(1,"div",39),e.nrm(2,"fa-icon",27),e.j41(3,"span"),e.EFF(4,"You are about to disable two-factor authentication security from RTL. Are you sure you want to turn it off?"),e.k0s()(),e.j41(5,"div",31)(6,"button",38),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onVerifyToken())}),e.EFF(7,"Disable"),e.k0s()()()}if(2&b){const m=e.XpG(2);e.R7$(2),e.Y8G("icon",m.faExclamationTriangle)}}function Dn(b,_){1&b&&(e.j41(0,"div")(1,"strong"),e.EFF(2,"Two factor authentication removed from RTL."),e.k0s()())}function Zn(b,_){if(1&b&&(e.j41(0,"mat-step",34)(1,"form",35),e.DNE(2,$t,1,1,"ng-template",12)(3,Cn,8,1,"div",36)(4,Dn,3,0,"div",15),e.k0s()()),2&b){const m=e.XpG();e.Y8G("stepControl",m.disableFormGroup),e.R7$(),e.Y8G("formGroup",m.disableFormGroup),e.R7$(2),e.Y8G("ngIf",!m.flgValidated||!m.isTokenValid),e.R7$(),e.Y8G("ngIf",m.flgValidated&&m.isTokenValid)}}let si=(()=>{var b;class _{constructor(E,D,I,Oe,Ct,Bt,yn){this.dialogRef=E,this.data=D,this.store=I,this.formBuilder=Oe,this.rtlEffects=Ct,this.snackBar=Bt,this.totpService=yn,this.faExclamationTriangle=Ti.zpE,this.faCopy=Ti.jPR,this.faInfoCircle=Ti.iW_,this.flgValidated=!1,this.isTokenValid=!0,this.verifyingToken=!1,this.otpauth="",this.appConfig=null,this.flgEditable=!0,this.showDisableStepper=!1,this.passwordFormLabel="Authenticate with your RTL password",this.secretFormLabel="Scan or copy the secret",this.tokenFormLabel="Verify your authentication is working",this.disableFormLabel="Disable two factor authentication",this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[hi.k0.required]],password:["",[hi.k0.required]]}),this.secretFormGroup=this.formBuilder.group({secret:[{value:"",disabled:!0},hi.k0.required]}),this.tokenFormGroup=this.formBuilder.group({token:["",hi.k0.required]}),this.disableFormGroup=this.formBuilder.group({}),this.unSubs=[new gi.B,new gi.B]}ngOnInit(){this.appConfig=this.data.appConfig||null,this.showDisableStepper=!!this.appConfig?.enable2FA,this.secretFormGroup=this.formBuilder.group({secret:[{value:this.appConfig?.enable2FA?"":this.generateSecret(),disabled:!0},hi.k0.required]})}generateSecret(){const E=this.totpService.generateSecret();return this.otpauth=this.totpService.keyuri("","Ride The Lightning (RTL)",E),E}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,Bi.oz)({payload:_c(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,Dr.s)(1)).subscribe(E=>{"ERROR"!==E?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onCopySecret(E){this.snackBar.open("Secret code "+this.secretFormGroup.controls.secret.value+" copied.")}onVerifyToken(){if(!this.appConfig?.enable2FA)return!(this.tokenFormGroup.controls.token.value&&!this.verifyingToken)||(this.verifyingToken=!0,void this.totpService.check(this.tokenFormGroup.controls.token.value,this.secretFormGroup.controls.secret.value).then(E=>{this.verifyingToken=!1,this.isTokenValid=E,E?(this.appConfig.enable2FA=!0,this.appConfig.secret2FA=this.secretFormGroup.controls.secret.value,this.store.dispatch((0,Bi.rc)({payload:{showSnackBar:!1,message:"Two factor authentication enabled successfully.",config:this.appConfig}})),this.tokenFormGroup.controls.token.setValue(""),this.flgValidated=!0):this.tokenFormGroup.controls.token.setErrors({notValid:!0})}));this.appConfig.enable2FA=!1,this.appConfig.secret2FA="",this.store.dispatch((0,Bi.rc)({payload:{showSnackBar:!1,message:"Two factor authentication disabled successfully.",config:this.appConfig}})),this.generateSecret(),this.isTokenValid=!0,this.flgValidated=!0}stepSelectionChanged(E){switch(E.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password";break;case 1:case 2:this.passwordFormLabel="User authenticated successfully"}E.selectedIndex{E.next(),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Ro.CP),e.rXU(Ro.Vh),e.rXU(mi.il),e.rXU(hi.ze),e.rXU(Ko.H),e.rXU($c.UG),e.rXU(rl))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-two-factor-auth"]],viewQuery:function(D,I){if(1&D&&e.GBs(Fl,5),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.stepper=Oe.first)}},standalone:!1,decls:30,vars:11,consts:[["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","15","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","type","password","tabindex","1","formControlName","password","required",""],[4,"ngIf"],["fxLayout","row",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["fxFlex","100",1,"w-100","alert","alert-info"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch"],["autoFocus","","matInput","","type","text","tabindex","4","formControlName","secret","required",""],["matSuffix","","rtlClipboard","",3,"copied","icon","payload"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","6","type","button","matStepperNext",""],["errorCorrectionLevel","L",3,"value","size"],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["fxLayout","column",4,"ngIf"],["autoFocus","","matInput","","type","text","tabindex","7","formControlName","token","required",""],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxFlex","100",1,"w-100","alert","alert-warn"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Setup Two Factor Authentication"),e.k0s()(),e.j41(6,"button",6),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),e.bIt("selectionChange",function(Bt){return v.eBV(Oe),v.Njj(I.stepSelectionChanged(Bt))}),e.j41(12,"mat-step",10)(13,"form",11),e.DNE(14,y1,1,1,"ng-template",12),e.j41(15,"div",1)(16,"mat-form-field",13)(17,"mat-label"),e.EFF(18,"Password"),e.k0s(),e.nrm(19,"input",14),e.DNE(20,ld,2,0,"mat-error",15),e.k0s()(),e.j41(21,"div",16)(22,"button",17),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onAuthenticate())}),e.EFF(23,"Confirm"),e.k0s()()()(),e.DNE(24,T4,19,8,"mat-step",18)(25,ft,5,4,"mat-step",19)(26,Zn,5,4,"mat-step",19),e.k0s(),e.j41(27,"div",20)(28,"button",21),e.EFF(29),e.k0s()()()()()()}2&D&&(e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(4),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",I.passwordFormGroup)("editable",I.flgEditable),e.R7$(),e.Y8G("formGroup",I.passwordFormGroup),e.R7$(7),e.Y8G("ngIf",null==I.passwordFormGroup||null==I.passwordFormGroup.controls||null==I.passwordFormGroup.controls.password||null==I.passwordFormGroup.controls.password.errors?null:I.passwordFormGroup.controls.password.errors.required),e.R7$(4),e.Y8G("ngIf",!I.showDisableStepper),e.R7$(),e.Y8G("ngIf",!I.showDisableStepper),e.R7$(),e.Y8G("ngIf",I.showDisableStepper),e.R7$(2),e.Y8G("mat-dialog-close",!1),e.R7$(),e.JRh(I.flgValidated&&I.isTokenValid?"Close":"Cancel"))},dependencies:[w.bT,hi.qT,hi.me,hi.BC,hi.cb,hi.YS,hi.j4,hi.JD,os.aY,Ro.tx,es.$z,K.m2,K.MM,br.fg,Ma.rl,Ma.nJ,Ma.TL,Ma.yw,Ie.DJ,Ie.sA,Ie.UI,Yo.V5,Yo.Ti,Yo.M6,Yo.F7,Yl.Um,i2.U,Kl.N],encapsulation:2}))}return b(),_})();var _t=l(4416),ji=l(3202),Hi=l(1997);const Ja=["authForm"];function Ba(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Current password is required."),e.k0s())}function wr(b,_){if(1&b&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&b){const m=e.XpG(2);e.R7$(),e.JRh(m.errorMsg)}}function _s(b,_){if(1&b&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&b){const m=e.XpG(2);e.R7$(),e.JRh(m.errorConfirmMsg)}}function vs(b,_){if(1&b){const m=e.RV6();e.j41(0,"form",12,0)(2,"div",13),e.nrm(3,"fa-icon",6),e.j41(4,"span",7),e.EFF(5,"Password"),e.k0s()(),e.j41(6,"mat-form-field")(7,"mat-label"),e.EFF(8,"Current Password"),e.k0s(),e.j41(9,"input",14),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG();return e.DH7(I.currPassword,D)||(I.currPassword=D),v.Njj(D)}),e.k0s(),e.DNE(10,Ba,2,0,"mat-error",15),e.k0s(),e.j41(11,"mat-form-field")(12,"mat-label"),e.EFF(13,"New Password"),e.k0s(),e.j41(14,"input",16),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG();return e.DH7(I.newPassword,D)||(I.newPassword=D),v.Njj(D)}),e.k0s(),e.DNE(15,wr,2,1,"mat-error",15),e.k0s(),e.j41(16,"mat-form-field")(17,"mat-label"),e.EFF(18,"Confirm New Password"),e.k0s(),e.j41(19,"input",17),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG();return e.DH7(I.confirmPassword,D)||(I.confirmPassword=D),v.Njj(D)}),e.k0s(),e.DNE(20,_s,2,1,"mat-error",15),e.k0s(),e.j41(21,"div",18)(22,"button",19),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.onResetPassword())}),e.EFF(23,"Reset"),e.k0s(),e.j41(24,"button",20),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.onChangePassword())}),e.EFF(25,"Change Password"),e.k0s()()()}if(2&b){const m=e.XpG();e.R7$(3),e.Y8G("icon",m.faLock),e.R7$(6),e.R50("ngModel",m.currPassword),e.R7$(),e.Y8G("ngIf",!m.currPassword),e.R7$(4),e.R50("ngModel",m.newPassword),e.R7$(),e.Y8G("ngIf",m.matchOldAndNewPasswords()),e.R7$(4),e.R50("ngModel",m.confirmPassword),e.R7$(),e.Y8G("ngIf",m.matchNewPasswords())}}let rr=(()=>{var b;class _{constructor(E,D,I,Oe,Ct){this.logger=E,this.store=D,this.actions=I,this.router=Oe,this.sessionService=Ct,this.faInfoCircle=Ti.iW_,this.faUserLock=Ti.aAJ,this.faUserClock=Ti.ld_,this.faLock=Ti.DW4,this.currPassword="",this.newPassword="",this.confirmPassword="",this.errorMsg="",this.errorConfirmMsg="",this.initializeNodeData=!1,this.unSubs=[new gi.B,new gi.B,new gi.B]}ngOnInit(){this.initializeNodeData="true"===this.sessionService.getItem("defaultPassword"),this.store.select(Oa.qv).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{this.appConfig=E,this.logger.info(this.appConfig)}),this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{this.selNode=E}),this.actions.pipe((0,li.Q)(this.unSubs[2]),(0,za.p)(E=>E.type===_t.aU.RESET_PASSWORD_RES)).subscribe(E=>{if(_t.Ah.includes(this.currPassword.toLowerCase()))switch(this.selNode.lnImplementation?.toUpperCase()){case"CLN":this.router.navigate(["/cln/home"]);break;case"ECL":this.router.navigate(["/ecl/home"]);break;default:this.router.navigate(["/lnd/home"])}this.form&&this.form.resetForm()})}onChangePassword(){if(!this.currPassword||!this.newPassword||!this.confirmPassword||this.currPassword===this.newPassword||this.newPassword!==this.confirmPassword||_t.Ah.includes(this.newPassword.toLowerCase()))return!0;this.store.dispatch((0,Bi.xw)({payload:{currPassword:_c(this.currPassword).toString(),newPassword:_c(this.newPassword).toString()}}))}matchOldAndNewPasswords(){let E=!1;return this.form&&this.form.controls&&this.form.controls.newpassword&&(this.newPassword?""!==this.currPassword&&""!==this.newPassword&&this.currPassword===this.newPassword?(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg="Old and New password cannot be same.",E=!0):_t.Ah.includes(this.newPassword.toLowerCase())?(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg=_t.Ah?.reduce((D,I,Oe)=>Oe<_t.Ah.length-1?D+I+'" / "':D+I+'".','Password cannot be "'),E=!0):(this.form.controls.newpassword.setErrors(null),this.errorMsg="",E=!1):(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg="New password is required.",E=!0)),E}matchNewPasswords(){let E=!1;return this.form&&this.form.controls&&this.form.controls.confirmpassword&&(this.confirmPassword?""!==this.newPassword&&""!==this.confirmPassword&&this.newPassword!==this.confirmPassword?(this.form.controls.confirmpassword.setErrors({invalid:!0}),this.errorConfirmMsg="New and confirm passwords do not match.",E=!0):(this.form.controls.confirmpassword.setErrors(null),this.errorConfirmMsg="",E=!1):(this.form.controls.confirmpassword.setErrors({invalid:!0}),this.errorConfirmMsg="Confirm password is required.",E=!0)),E}on2FAuth(){this.store.dispatch((0,Bi.xO)({payload:{data:{appConfig:this.appConfig,component:si}}}))}onResetPassword(){this.form.resetForm()}ngOnDestroy(){this.initializeNodeData&&this.store.dispatch((0,Bi.Qi)({payload:{uiMessage:_t.MZ.NO_SPINNER,prevLnNodeIndex:-1,currentLnNode:this.selNode,isInitialSetup:!0}})),this.unSubs.forEach(E=>{E.next(),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(mi.il),e.rXU(Uo.En),e.rXU(Ha.Ix),e.rXU(ji.Q))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-auth-settings"]],viewQuery:function(D,I){if(1&D&&e.GBs(Ja,5),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.form=Oe.first)}},standalone:!1,decls:15,vars:4,consts:[["authForm","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","page-sub-title-container mt-1",4,"ngIf"],[1,"my-2"],["fxLayout","column","fxLayoutAlign","start stretch"],[1,"mb-1","settings-container","page-sub-title-container","mt-1"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"alert","alert-info"],[1,"mt-1","mr-1","alert-icon",3,"icon"],[1,"mt-1"],["mat-flat-button","","color","primary","tabindex","6",1,"mb-2",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-1"],["fxLayout","row","fxLayoutAlign","start start",1,"mb-2"],["autoFocus","","matInput","","type","password","id","currpassword","name","currpassword","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["matInput","","type","password","id","newpassword","name","newpassword","tabindex","2","required","",3,"ngModelChange","ngModel"],["matInput","","type","password","id","confirmpassword","name","confirmpassword","tabindex","3","required","",3,"ngModelChange","ngModel"],["fxLayout","row","fxLayoutAlign","start start",1,"mt-1"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","5","type","submit",3,"click"]],template:function(D,I){1&D&&(e.j41(0,"div",1),e.DNE(1,vs,26,7,"form",2),e.nrm(2,"mat-divider",3),e.j41(3,"div",4)(4,"div",5),e.nrm(5,"fa-icon",6),e.j41(6,"span",7),e.EFF(7,"Two Factor Authentication"),e.k0s()(),e.j41(8,"div",8),e.nrm(9,"fa-icon",9),e.j41(10,"span"),e.EFF(11,"Protect your account from unauthorized access by requiring a second authentication method in addition to your password."),e.k0s()(),e.j41(12,"div",10)(13,"button",11),e.bIt("click",function(){return I.on2FAuth()}),e.EFF(14),e.k0s()()()()),2&D&&(e.R7$(),e.Y8G("ngIf",null==I.appConfig?null:I.appConfig.allowPasswordUpdate),e.R7$(4),e.Y8G("icon",I.faUserClock),e.R7$(4),e.Y8G("icon",I.faInfoCircle),e.R7$(5),e.JRh(I.appConfig.enable2FA?"Disable 2FA":"Enable 2FA"))},dependencies:[w.bT,hi.qT,hi.me,hi.BC,hi.cb,hi.YS,hi.vS,hi.cV,os.aY,es.$z,br.fg,Ma.rl,Ma.nJ,Ma.TL,Hi.q,Ie.DJ,Ie.sA,Ie.UI,Kl.N],encapsulation:2}))}return b(),_})();var Bs=l(3902);function ol(b,_){1&b&&e.nrm(0,"mat-divider",7)}function Kr(b,_){if(1&b&&(e.j41(0,"div",4)(1,"pre",5),e.EFF(2),e.nI1(3,"json"),e.k0s(),e.DNE(4,ol,1,0,"mat-divider",6),e.k0s()),2&b){const m=e.XpG();e.R7$(2),e.JRh(e.bMT(3,2,m.configData)),e.R7$(2),e.Y8G("ngIf",""!==m.configData)}}function sc(b,_){if(1&b&&(e.j41(0,"h2"),e.EFF(1),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.JRh(m)}}function ll(b,_){if(1&b&&(e.j41(0,"h4",14),e.EFF(1),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.JRh(m)}}function D4(b,_){1&b&&e.nrm(0,"mat-divider",15),2&b&&e.Y8G("inset",!0)}function vc(b,_){if(1&b&&(e.j41(0,"mat-list-item")(1,"mat-card-subtitle",7),e.DNE(2,sc,2,1,"h2",10),e.k0s(),e.j41(3,"mat-card-subtitle",11),e.DNE(4,ll,2,1,"h4",12),e.k0s(),e.DNE(5,D4,1,1,"mat-divider",13),e.k0s()),2&b){const m=_.$implicit;e.R7$(2),e.Y8G("ngIf",m.indexOf("[")>=0),e.R7$(2),e.Y8G("ngIf",m.indexOf("[")<0),e.R7$(),e.Y8G("ngIf",m.indexOf("[")<0)}}function s2(b,_){if(1&b&&(e.j41(0,"div",8)(1,"mat-list"),e.DNE(2,vc,6,3,"mat-list-item",9),e.k0s()()),2&b){const m=e.XpG();e.R7$(2),e.Y8G("ngForOf",m.configData)}}let Pf=(()=>{var b;class _{constructor(E,D,I){this.store=E,this.rtlEffects=D,this.router=I,this.configData="",this.fileFormat="INI",this.faCog=Ti.dB,this.unSubs=[new gi.B,new gi.B]}ngOnInit(){this.store.dispatch((0,Bi.Dz)({payload:"bitcoind"})),this.rtlEffects.showLnConfig.pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{const D=E.data;this.fileFormat=E.format,this.configData=""===D||!D||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==D&&D&&"JSON"===this.fileFormat?D:"":D.split("\n")})}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(mi.il),e.rXU(Ko.H),e.rXU(Ha.Ix))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-bitcoin-config"]],standalone:!1,decls:4,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxFlex","100","class","mb-6",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100",1,"mb-6"],[1,"pre-wrap"],["class","my-1",4,"ngIf"],[1,"my-1"],["fxFlex","100"],[4,"ngFor","ngForOf"],[4,"ngIf"],[1,"m-0"],["class","ml-4",4,"ngIf"],[3,"inset",4,"ngIf"],[1,"ml-4"],[3,"inset"]],template:function(D,I){1&D&&(e.j41(0,"div",0)(1,"div",1),e.DNE(2,Kr,5,4,"div",2)(3,s2,3,1,"div",3),e.k0s()()),2&D&&(e.R7$(2),e.Y8G("ngIf",""!==I.configData&&"JSON"===I.fileFormat),e.R7$(),e.Y8G("ngIf",""!==I.configData&&("INI"===I.fileFormat||"HOCON"===I.fileFormat)))},dependencies:[w.Sq,w.bT,K.Lc,Bs.jt,Bs.YE,Hi.q,Ie.DJ,Ie.sA,Ie.UI,w.TG],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}))}return b(),_})();function Hh(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}let r2=(()=>{var b;class _{constructor(E,D,I){this.dialogRef=E,this.store=D,this.rtlEffects=I,this.password="",this.isAuthenticated=!1,this.unSubs=[new gi.B,new gi.B]}ngOnInit(){this.rtlEffects.isAuthorizedRes.pipe((0,Dr.s)(1)).subscribe(E=>{"ERROR"!==E?(this.isAuthenticated=!0,this.store.dispatch((0,Bi.R$)({payload:this.isAuthenticated}))):this.isAuthenticated=!1})}onAuthenticate(){if(!this.password)return!0;this.store.dispatch((0,Bi.oz)({payload:_c(this.password)}))}onClose(){this.store.dispatch((0,Bi.R$)({payload:this.isAuthenticated}))}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Ro.CP),e.rXU(mi.il),e.rXU(Ko.H))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-is-authorized"]],standalone:!1,decls:18,vars:2,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","row",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["autoFocus","","matInput","","type","password","id","password","name","password","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","2","type","submit","default","",3,"click"]],template:function(D,I){1&D&&(e.j41(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e.EFF(5,"Authenticate with your RTL Password"),e.k0s()(),e.j41(6,"button",5),e.bIt("click",function(){return I.onClose()}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",6)(9,"form",7)(10,"mat-form-field")(11,"mat-label"),e.EFF(12,"Password"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(Ct){return e.DH7(I.password,Ct)||(I.password=Ct),Ct}),e.k0s(),e.DNE(14,Hh,2,0,"mat-error",9),e.k0s(),e.j41(15,"div",10)(16,"button",11),e.bIt("click",function(){return I.onAuthenticate()}),e.EFF(17,"Confirm"),e.k0s()()()()()()),2&D&&(e.R7$(13),e.R50("ngModel",I.password),e.R7$(),e.Y8G("ngIf",!I.password))},dependencies:[w.bT,hi.qT,hi.me,hi.BC,hi.cb,hi.YS,hi.vS,hi.cV,es.$z,K.m2,K.MM,br.fg,Ma.rl,Ma.nJ,Ma.TL,Ie.DJ,Ie.sA,Ie.UI,Kl.N],encapsulation:2}))}return b(),_})();const o2=()=>({initial:!1});function cd(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",13),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.activeLink=D.links[2].link)}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG();e.Y8G("routerLink",e.mNQ(m.links[2].link))("active",m.activeLink===m.links[2].link)("state",e.lJ4(5,o2)),e.R7$(),e.JRh(m.links[2].name)}}function b1(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",14),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.activeLink=D.links[3].link)}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG();e.Y8G("routerLink",e.mNQ(m.links[3].link))("active",m.activeLink===m.links[3].link),e.R7$(),e.JRh(m.links[3].name)}}function w4(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",15),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.showLnConfigClicked())}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG();e.Y8G("active",m.activeLink===m.links[4].link),e.R7$(),e.JRh(m.links[4].name)}}let k0=(()=>{var b;class _{constructor(E,D,I,Oe){this.store=E,this.router=D,this.rtlEffects=I,this.activatedRoute=Oe,this.faTools=Ti.nsx,this.showLnConfig=!1,this.lnImplementationStr="",this.links=[{link:"nodesettings",name:"Node Settings"},{link:"pglayout",name:"Page Layout"},{link:"services",name:"Services"},{link:"experimental",name:"Experimental"},{link:"lnconfig",name:this.lnImplementationStr}],this.activeLink="",this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B,new gi.B]}ngOnInit(){const E=this.links.find(D=>this.router.url.includes(D.link));this.activeLink=E?E.link:this.links[0].link,this.router.events.pipe((0,li.Q)(this.unSubs[0]),(0,za.p)(D=>D instanceof Ha.gx)).subscribe({next:D=>{const I=this.links.find(Oe=>D.urlAfterRedirects.includes(Oe.link));this.activeLink=I?I.link:this.links[0].link}}),this.store.select(Oa.qv).pipe((0,li.Q)(this.unSubs[1])).subscribe(D=>{this.appConfig=D}),this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[2])).subscribe(D=>{switch(this.showLnConfig=!1,this.selNode=D,this.selNode.lnImplementation?.toUpperCase()){case"CLN":this.lnImplementationStr="Core Lightning Config";break;case"ECL":this.lnImplementationStr="Eclair Config";break;default:this.lnImplementationStr="LND Config"}this.selNode.authentication&&this.selNode.authentication.configPath&&""!==this.selNode.authentication.configPath.trim()&&(this.links[4].name=this.lnImplementationStr,this.showLnConfig=!0)})}showLnConfigClicked(){this.appConfig.SSO.rtlSSO?(this.activeLink=this.links[4].link,this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute})):(this.store.dispatch((0,Bi.xO)({payload:{maxWidth:"50rem",data:{component:r2}}})),this.rtlEffects.closeAlert.pipe((0,li.Q)(this.unSubs[3])).subscribe(E=>{E&&(this.activeLink=this.links[4].link,this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute}))}))}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(mi.il),e.rXU(Ha.Ix),e.rXU(Ko.H),e.rXU(Ha.nX))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-node-config"]],standalone:!1,decls:19,vars:13,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","3","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","state","click",4,"ngIf"],["tabindex","4","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngIf"],["tabindex","5","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","click",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper","mb-2"],["tabindex","3","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active","state"],["tabindex","4","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","5","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Node Config"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6)(8,"div",7),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.activeLink=I.links[0].link)}),e.EFF(9),e.k0s(),e.j41(10,"div",8),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.activeLink=I.links[1].link)}),e.EFF(11),e.k0s(),e.DNE(12,cd,2,6,"div",9)(13,b1,2,4,"div",10)(14,w4,2,2,"div",11),e.k0s(),e.nrm(15,"mat-tab-nav-panel",null,0),e.j41(17,"div",12),e.nrm(18,"router-outlet"),e.k0s()()()()}if(2&D){const Oe=e.sdS(16);e.R7$(),e.Y8G("icon",I.faTools),e.R7$(6),e.Y8G("tabPanel",Oe),e.R7$(),e.Y8G("routerLink",e.mNQ(I.links[0].link))("active",I.activeLink===I.links[0].link),e.R7$(),e.JRh(I.links[0].name),e.R7$(),e.Y8G("routerLink",e.mNQ(I.links[1].link))("active",I.activeLink===I.links[1].link),e.R7$(),e.JRh(I.links[1].name),e.R7$(),e.Y8G("ngIf","ECL"!==(null==I.selNode||null==I.selNode.lnImplementation?null:I.selNode.lnImplementation.toUpperCase())),e.R7$(),e.Y8G("ngIf","CLN"===(null==I.selNode||null==I.selNode.lnImplementation?null:I.selNode.lnImplementation.toUpperCase())),e.R7$(),e.Y8G("ngIf",I.showLnConfig)}},dependencies:[w.bT,os.aY,K.RN,K.m2,Ie.DJ,Ie.sA,Ie.UI,Ut.Bu,Ut.hQ,Ut.Ql,Ha.n3,lo.Wk],encapsulation:2}))}return b(),_})();function zr(b,_){1&b&&e.nrm(0,"mat-divider",7)}function O0(b,_){if(1&b&&(e.j41(0,"div",4)(1,"pre",5),e.EFF(2),e.nI1(3,"json"),e.k0s(),e.DNE(4,zr,1,0,"mat-divider",6),e.k0s()),2&b){const m=e.XpG();e.R7$(2),e.JRh(e.bMT(3,2,m.configData)),e.R7$(2),e.Y8G("ngIf",""!==m.configData)}}function A4(b,_){if(1&b&&(e.j41(0,"h2"),e.EFF(1),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.JRh(m)}}function Xa(b,_){if(1&b&&(e.j41(0,"h4",14),e.EFF(1),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.JRh(m)}}function R0(b,_){1&b&&e.nrm(0,"mat-divider",15),2&b&&e.Y8G("inset",!0)}function yc(b,_){if(1&b&&(e.j41(0,"mat-list-item")(1,"mat-card-subtitle",7),e.DNE(2,A4,2,1,"h2",10),e.k0s(),e.j41(3,"mat-card-subtitle",11),e.DNE(4,Xa,2,1,"h4",12),e.k0s(),e.DNE(5,R0,1,1,"mat-divider",13),e.k0s()),2&b){const m=_.$implicit;e.R7$(2),e.Y8G("ngIf",m.indexOf("[")>=0),e.R7$(2),e.Y8G("ngIf",m.indexOf("[")<0),e.R7$(),e.Y8G("ngIf",m.indexOf("[")<0)}}function Zc(b,_){if(1&b&&(e.j41(0,"div",8)(1,"mat-list"),e.DNE(2,yc,6,3,"mat-list-item",9),e.k0s()()),2&b){const m=e.XpG();e.R7$(2),e.Y8G("ngForOf",m.configData)}}let l2=(()=>{var b;class _{constructor(E,D,I){this.store=E,this.rtlEffects=D,this.router=I,this.configData="",this.fileFormat="INI",this.faCog=Ti.dB,this.unSubs=[new gi.B,new gi.B]}ngOnInit(){this.store.dispatch((0,Bi.Dz)({payload:"ln"})),this.rtlEffects.showLnConfig.pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{const D=E.data;this.fileFormat=E.format,this.configData=""===D||!D||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==D&&D&&"JSON"===this.fileFormat?D:"":D.split("\n")})}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(mi.il),e.rXU(Ko.H),e.rXU(Ha.Ix))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-lnp-config"]],standalone:!1,decls:4,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxFlex","100","class","mb-6",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100",1,"mb-6"],[1,"pre-wrap"],["class","my-1",4,"ngIf"],[1,"my-1"],["fxFlex","100"],[4,"ngFor","ngForOf"],[4,"ngIf"],[1,"m-0"],["class","ml-4",4,"ngIf"],[3,"inset",4,"ngIf"],[1,"ml-4"],[3,"inset"]],template:function(D,I){1&D&&(e.j41(0,"div",0)(1,"div",1),e.DNE(2,O0,5,4,"div",2)(3,Zc,3,1,"div",3),e.k0s()()),2&D&&(e.R7$(2),e.Y8G("ngIf",""!==I.configData&&"JSON"===I.fileFormat),e.R7$(),e.Y8G("ngIf",""!==I.configData&&("INI"===I.fileFormat||"HOCON"===I.fileFormat)))},dependencies:[w.Sq,w.bT,K.Lc,Bs.jt,Bs.YE,Hi.q,Ie.DJ,Ie.sA,Ie.UI,w.TG],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}))}return b(),_})();var Qo=l(2571),or=l(9454),dd=l(5951),cl=l(6038),bc=l(450);const ud=b=>({skin:!0,"selected-color":b});function P0(b,_){if(1&b&&(e.j41(0,"span",41),e.nrm(1,"fa-icon",42),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.Y8G("icon",m.symbol)}}function c2(b,_){if(1&b&&(e.j41(0,"span",41),e.nrm(1,"span",43),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.Y8G("innerHTML",m.symbol,e.npT)}}function hd(b,_){if(1&b&&(e.j41(0,"mat-option",39),e.DNE(1,P0,2,1,"span",40)(2,c2,2,1,"span",40),e.EFF(3),e.k0s()),2&b){const m=_.$implicit;e.Y8G("value",m.id),e.R7$(),e.Y8G("ngIf",m&&"FA"===m.iconType),e.R7$(),e.Y8G("ngIf",m&&"SVG"===m.iconType),e.R7$(),e.Lme(" ",m.name," (",m.id,") ")}}function Cc(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Currency unit is required."),e.k0s())}function F0(b,_){if(1&b&&(e.j41(0,"mat-radio-button",44),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&b){const m=_.$implicit,E=e.XpG();e.Y8G("value",m)("checked",E.selNode.settings.userPersona===m),e.R7$(),e.SpI(" ",e.bMT(2,3,m)," ")}}function d2(b,_){if(1&b&&(e.j41(0,"mat-radio-button",45),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.Y8G("value",m),e.R7$(),e.SpI("",m.name," ")}}function C1(b,_){if(1&b){const m=e.RV6();e.j41(0,"span",46)(1,"div",47),e.nI1(2,"lowercase"),e.bIt("click",function(){const D=v.eBV(m).$implicit,I=e.XpG();return v.Njj(I.changeThemeColor(D.id))}),e.k0s(),e.EFF(3),e.k0s()}if(2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.HbH(e.bMT(2,4,m.id)),e.Y8G("ngClass",e.eq3(6,ud,E.selectedThemeColor===m.id)),e.R7$(2),e.SpI(" ",m.name," ")}}let N0=(()=>{var b;class _{constructor(E,D,I,Oe){this.logger=E,this.commonService=D,this.store=I,this.sanitizer=Oe,this.faBarsStaggered=Ti.o97,this.faExclamationTriangle=Ti.zpE,this.faMoneyBillAlt=Ti.iy8,this.faPaintBrush=Ti._eQ,this.faInfoCircle=Ti.iW_,this.faEyeSlash=Ti.k6j,this.userPersonas=[_t.HW.OPERATOR,_t.HW.MERCHANT],this.currencyUnits=_t.Zi,this.themeModes=_t.Bv.modes,this.themeColors=_t.Bv.themes,this.selectedThemeMode=_t.Bv.modes[0],this.selectedThemeColor=_t.Bv.themes[0].id,this.currencyUnit="BTC",this.smallerCurrencyUnit="Sats",this.showSettingOption=!0,this.screenSize="",this.screenSizeEnum=_t.f7,this.unSubs=[new gi.B,new gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.currencyUnits.map(E=>("SVG"===E.iconType&&"string"==typeof E.symbol&&(E.symbol=E.symbol.replace('{this.selNode=JSON.parse(JSON.stringify(E)),this.selectedThemeMode=this.themeModes.find(D=>this.selNode.settings.themeMode===D.id)||this.themeModes[0],this.selectedThemeColor=this.selNode.settings.themeColor,this.selNode.settings.fiatConversion||(this.selNode.settings.currencyUnit=""),this.previousSettings=JSON.parse(JSON.stringify(this.selNode.settings)),this.logger.info(E)})}toggleSettings(E,D){this.selNode.settings[E]=!this.selNode.settings[E]}changeThemeColor(E){this.selectedThemeColor=E,this.selNode.settings.themeColor=E}chooseThemeMode(){this.selNode.settings.themeMode=this.selectedThemeMode.id}onFiatConversionChange(E){this.selNode.settings.fiatConversion||delete this.selNode.settings.currencyUnit}onUpdateNodeSettings(){if(this.selNode.settings.fiatConversion&&!this.selNode.settings.currencyUnit)return!0;this.selNode.settings.blockExplorerUrl=this.selNode.settings.blockExplorerUrl.replace(/\/$/,""),this.logger.info(this.selNode.settings),this.store.dispatch((0,Bi.T$)({payload:this.selNode}))}onResetSettings(){const E=this.selNode.index||-1;this.selNode.settings=this.previousSettings,this.selectedThemeMode=this.themeModes.find(D=>D.id===this.previousSettings.themeMode)||this.themeModes[0],this.selectedThemeColor=this.previousSettings.themeColor,this.store.dispatch((0,Bi.Qi)({payload:{uiMessage:_t.MZ.NO_SPINNER,prevLnNodeIndex:+E,currentLnNode:this.selNode,isInitialSetup:!0}}))}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(Qo.h),e.rXU(mi.il),e.rXU(Dt.up))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-node-settings"]],standalone:!1,decls:100,vars:21,consts:[["form","ngForm"],["currencyUnit","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",3,"perfectScrollbar"],["fxLayout","column","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container"],["displayMode","flat","multi","false"],["fxLayout","column",1,"flat-expansion-panel","mt-1"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["href","https://mempool.space/","target","blank"],["fxLayout","row wrap","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100"],["matInput","","name","blockExplorerUrl",3,"ngModelChange","ngModel"],["fxLayout","row","fxFlex","100",1,"alert","alert-info","mb-1"],["tabindex","1","color","primary","name","unannouncedChannels",3,"ngModelChange","change","ngModel"],["href","https://www.blockchain.com/api/exchange_rates_api","target","blank"],["tabindex","2","color","primary","name","fiatConversion",1,"mr-2",3,"ngModelChange","change","ngModel"],["fxFlex","25"],["autoFocus","","tabindex","3","name","currencyUnit",3,"ngModelChange","disabled","required","ngModel"],[3,"value",4,"ngFor","ngForOf"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"alert","alert-info","mb-0"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100"],["color","primary","tabindex","1","name","userPersona",1,"radio-group",3,"ngModelChange","ngModel"],["class","radio-text mr-4",3,"value","checked",4,"ngFor","ngForOf"],[1,"mt-1"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start"],["color","primary","name","themeMode",1,"radio-group",3,"ngModelChange","change","ngModel"],["tabindex","5","class","radio-text mr-4",3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-xs","start stretch"],["fxLayout","column","fxFlex.gt-xs","50","fxFlex.gt-md","40","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","row","class","theme-name",4,"ngFor","ngForOf"],["fxLayout","column","fxLayoutAlign","start start",1,"mt-1"],["fxLayout","row"],["mat-stroked-button","","color","primary","tabindex","10",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","11",3,"click"],[3,"value"],["class","mr-1",4,"ngIf"],[1,"mr-1"],[3,"icon"],["fxLayoutAlign","center center",3,"innerHTML"],[1,"radio-text","mr-4",3,"value","checked"],["tabindex","5",1,"radio-text","mr-4",3,"value"],["fxLayout","row",1,"theme-name"],["tabindex","9",3,"click","ngClass"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",2)(1,"form",3,0)(3,"mat-accordion",4)(4,"mat-expansion-panel",5)(5,"mat-expansion-panel-header")(6,"mat-panel-title"),e.nrm(7,"fa-icon",6),e.j41(8,"span",7),e.EFF(9,"Block Explorer"),e.k0s()()(),e.j41(10,"div",8)(11,"div",9),e.nrm(12,"fa-icon",10),e.j41(13,"span"),e.EFF(14,"Configure your own blockchain explorer url or "),e.j41(15,"strong")(16,"a",11),e.EFF(17,"mempool.space"),e.k0s()(),e.EFF(18," will be used."),e.k0s()(),e.j41(19,"div",12)(20,"mat-form-field",13)(21,"mat-label"),e.EFF(22,"Block Explorer URL"),e.k0s(),e.j41(23,"input",14),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selNode.settings.blockExplorerUrl,Bt)||(I.selNode.settings.blockExplorerUrl=Bt),v.Njj(Bt)}),e.k0s(),e.j41(24,"mat-hint"),e.EFF(25,"Blockchain explorer URL, eg. https://mempool.space or https://blockstream.info"),e.k0s()()()()(),e.j41(26,"mat-expansion-panel",5)(27,"mat-expansion-panel-header")(28,"mat-panel-title"),e.nrm(29,"fa-icon",6),e.j41(30,"span",7),e.EFF(31,"Open Unannounced Channels"),e.k0s()()(),e.j41(32,"div",8)(33,"div",15),e.nrm(34,"fa-icon",10),e.j41(35,"span"),e.EFF(36,"Use this control to toggle setting which defaults to opening unannounced channels only."),e.k0s()(),e.j41(37,"div",12)(38,"mat-slide-toggle",16),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selNode.settings.unannouncedChannels,Bt)||(I.selNode.settings.unannouncedChannels=Bt),v.Njj(Bt)}),e.bIt("change",function(){return v.eBV(Oe),v.Njj(!I.selNode.settings.unannouncedChannels)}),e.EFF(39,"Open Unannounced Channels"),e.k0s()()()(),e.j41(40,"mat-expansion-panel",5)(41,"mat-expansion-panel-header")(42,"mat-panel-title"),e.nrm(43,"fa-icon",6),e.j41(44,"span",7),e.EFF(45,"Balance Display"),e.k0s()()(),e.j41(46,"div",8)(47,"div",9),e.nrm(48,"fa-icon",10),e.j41(49,"span"),e.EFF(50,"Fiat conversion calls "),e.j41(51,"strong")(52,"a",17),e.EFF(53,"Blockchain.com"),e.k0s()(),e.EFF(54," API to get conversion rates."),e.k0s()(),e.j41(55,"div",12)(56,"mat-slide-toggle",18),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selNode.settings.fiatConversion,Bt)||(I.selNode.settings.fiatConversion=Bt),v.Njj(Bt)}),e.bIt("change",function(Bt){return v.eBV(Oe),v.Njj(I.onFiatConversionChange(Bt))}),e.EFF(57,"Enable Fiat Conversion"),e.k0s(),e.j41(58,"mat-form-field",19)(59,"mat-label"),e.EFF(60,"Fiat Currency"),e.k0s(),e.j41(61,"mat-select",20,1),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selNode.settings.currencyUnit,Bt)||(I.selNode.settings.currencyUnit=Bt),v.Njj(Bt)}),e.DNE(63,hd,4,5,"mat-option",21),e.k0s(),e.DNE(64,Cc,2,0,"mat-error",22),e.k0s()()()(),e.j41(65,"mat-expansion-panel",5)(66,"mat-expansion-panel-header")(67,"mat-panel-title"),e.nrm(68,"fa-icon",6),e.j41(69,"span",7),e.EFF(70,"Customization"),e.k0s()()(),e.j41(71,"div",8)(72,"div",23),e.nrm(73,"fa-icon",10),e.j41(74,"span"),e.EFF(75,"Dashboard layout will be tailored based on the role selected to better serve its needs."),e.k0s()(),e.j41(76,"div",24)(77,"h4"),e.EFF(78,"Dashboard Layout"),e.k0s(),e.j41(79,"mat-radio-group",25),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selNode.settings.userPersona,Bt)||(I.selNode.settings.userPersona=Bt),v.Njj(Bt)}),e.DNE(80,F0,3,5,"mat-radio-button",26),e.k0s()(),e.nrm(81,"mat-divider",27),e.j41(82,"div",28)(83,"h4"),e.EFF(84,"Mode"),e.k0s(),e.j41(85,"mat-radio-group",29),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selectedThemeMode,Bt)||(I.selectedThemeMode=Bt),v.Njj(Bt)}),e.bIt("change",function(){return v.eBV(Oe),v.Njj(I.chooseThemeMode())}),e.DNE(86,d2,2,2,"mat-radio-button",30),e.k0s()(),e.nrm(87,"mat-divider",27),e.j41(88,"div",31)(89,"div",32)(90,"h4"),e.EFF(91,"Themes"),e.k0s(),e.j41(92,"div",33),e.DNE(93,C1,4,8,"span",34),e.k0s()()()()()()(),e.j41(94,"div",35)(95,"div",36)(96,"button",37),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onResetSettings())}),e.EFF(97,"Reset"),e.k0s(),e.j41(98,"button",38),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onUpdateNodeSettings())}),e.EFF(99,"Update"),e.k0s()()()()}2&D&&(e.R7$(7),e.Y8G("icon",I.faBarsStaggered),e.R7$(5),e.Y8G("icon",I.faExclamationTriangle),e.R7$(11),e.R50("ngModel",I.selNode.settings.blockExplorerUrl),e.R7$(6),e.Y8G("icon",I.faEyeSlash),e.R7$(5),e.Y8G("icon",I.faInfoCircle),e.R7$(4),e.R50("ngModel",I.selNode.settings.unannouncedChannels),e.R7$(5),e.Y8G("icon",I.faMoneyBillAlt),e.R7$(5),e.Y8G("icon",I.faExclamationTriangle),e.R7$(8),e.R50("ngModel",I.selNode.settings.fiatConversion),e.R7$(5),e.Y8G("disabled",!I.selNode.settings.fiatConversion)("required",I.selNode.settings.fiatConversion),e.R50("ngModel",I.selNode.settings.currencyUnit),e.R7$(2),e.Y8G("ngForOf",I.currencyUnits),e.R7$(),e.Y8G("ngIf",I.selNode.settings.fiatConversion&&!I.selNode.settings.currencyUnit),e.R7$(4),e.Y8G("icon",I.faPaintBrush),e.R7$(5),e.Y8G("icon",I.faInfoCircle),e.R7$(6),e.R50("ngModel",I.selNode.settings.userPersona),e.R7$(),e.Y8G("ngForOf",I.userPersonas),e.R7$(5),e.R50("ngModel",I.selectedThemeMode),e.R7$(),e.Y8G("ngForOf",I.themeModes),e.R7$(7),e.Y8G("ngForOf",I.themeColors))},dependencies:[w.YU,w.Sq,w.bT,hi.qT,hi.me,hi.BC,hi.cb,hi.YS,hi.vS,hi.cV,os.aY,es.$z,or.BS,or.GK,or.Z2,or.WN,br.fg,Ma.rl,Ma.nJ,Ma.MV,Ma.TL,Hi.q,dd.VT,dd._g,Ie.DJ,Ie.sA,Ie.UI,cl.PW,sl.VO,ac.wT,bc.sG,go.Ld,Kl.N,w.GH,w.PV],styles:["h4[_ngcontent-%COMP%]{margin:.75rem 0 .5rem}.theme-name[_ngcontent-%COMP%]{min-width:10rem}@media only screen and (max-width:37.5em){.theme-name[_ngcontent-%COMP%]{min-width:unset}}.skin[_ngcontent-%COMP%]{width:1.25rem;height:1.25rem;border-radius:50%;cursor:pointer;margin-right:.5rem}.skin.selected-color[_ngcontent-%COMP%]{width:1rem;height:1rem;border:2px solid}.skin.purple[_ngcontent-%COMP%]{background-color:#5e4ea5}.skin.indigo[_ngcontent-%COMP%]{background-color:#3f51b5}.skin.teal[_ngcontent-%COMP%]{background-color:#00695c}.skin.pink[_ngcontent-%COMP%]{background-color:#d81b60}.skin.yellow[_ngcontent-%COMP%]{background-color:#a1842c}"]}))}return b(),_})();var B0=l(9584),md=l(3536),zs=l(8430),Qs=l(190),lr=l(2730),Ds=l(5428),Jc=l(2598),qc=l(2629),fd=l(455),dl=l(2929);const pd=b=>({error:b}),u2=b=>({"error-border":b}),z0=b=>({"ml-minus-1":b}),h2=b=>({"error-border p-2":b});function m2(b,_){if(1&b&&e.eu8(0,14),2&b){const m=e.XpG(),E=e.sdS(18);e.Y8G("ngTemplateOutlet",E)("ngTemplateOutletContext",e.eq3(2,pd,m.errorMessage))}}function L4(b,_){if(1&b&&(e.j41(0,"mat-option",31),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.Y8G("value",m),e.R7$(),e.SpI(" ",m," ")}}function V0(b,_){if(1&b&&(e.j41(0,"mat-option",31),e.EFF(1),e.nI1(2,"camelCaseWithSpaces"),e.nI1(3,"camelcaseWithReplace"),e.k0s()),2&b){const m=_.$implicit,E=e.XpG(3);e.Y8G("value",m),e.R7$(),e.SpI(" ","ECL"===E.selNode.lnImplementation?e.bMT(2,2,m):e.i5U(3,4,m,"_")," ")}}function I4(b,_){if(1&b&&(e.j41(0,"mat-option",31),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.Y8G("value",m),e.R7$(),e.SpI(" ","desc"===m?"Descending":"Ascending"," ")}}function U0(b,_){if(1&b&&(e.j41(0,"mat-option",34),e.EFF(1),e.nI1(2,"camelCaseWithSpaces"),e.nI1(3,"camelcaseWithReplace"),e.k0s()),2&b){const m=_.$implicit,E=e.XpG(2).$implicit,D=e.XpG(2);e.Y8G("value",m.column)("disabled",E.columnSelection.length<=2&&E.columnSelection.includes(m.column)),e.R7$(),e.SpI(" ",m.label?m.label:"ECL"===D.selNode.lnImplementation?e.bMT(2,3,m.column):e.i5U(3,5,m.column,"_")," ")}}function G0(b,_){if(1&b){const m=e.RV6();e.j41(0,"mat-form-field",32)(1,"mat-label"),e.EFF(2,"Column selection (Desktop Resolution)"),e.k0s(),e.j41(3,"mat-select",33),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG().$implicit;return e.DH7(I.columnSelection,D)||(I.columnSelection=D),v.Njj(D)}),e.bIt("selectionChange",function(){v.eBV(m);const D=e.XpG().$implicit,I=e.XpG(2);return v.Njj(I.oncolumnSelectionChange(D))}),e.DNE(4,U0,4,8,"mat-option",28),e.k0s()()}if(2&b){const m=e.XpG().$implicit,E=e.XpG().$implicit,D=e.XpG();e.R7$(3),e.Y8G("name",e.ai1("",E.pageId,"",m.tableId,"-columns-selection")),e.R50("ngModel",m.columnSelection),e.R7$(),e.Y8G("ngForOf",D.nodePageDefs[E.pageId][m.tableId].allowedColumns)}}function Wh(b,_){if(1&b&&(e.j41(0,"mat-option",34),e.EFF(1),e.nI1(2,"camelCaseWithSpaces"),e.nI1(3,"camelcaseWithReplace"),e.k0s()),2&b){const m=_.$implicit,E=e.XpG().$implicit,D=e.XpG(2);e.Y8G("value",m.column)("disabled",E.columnSelectionSM.length<=1&&E.columnSelectionSM.includes(m.column)||E.columnSelectionSM.length>=3&&!E.columnSelectionSM.includes(m.column)),e.R7$(),e.SpI(" ",m.label?m.label:"ECL"===D.selNode.lnImplementation?e.bMT(2,3,m.column):e.i5U(3,5,m.column,"_")," ")}}function x1(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",17)(1,"div",18)(2,"span",19),e.EFF(3),e.nI1(4,"camelcaseWithReplace"),e.k0s(),e.j41(5,"mat-form-field",20)(6,"mat-label"),e.EFF(7,"Records/Page"),e.k0s(),e.j41(8,"mat-select",21),e.mxI("ngModelChange",function(D){const I=v.eBV(m).$implicit;return e.DH7(I.recordsPerPage,D)||(I.recordsPerPage=D),v.Njj(D)}),e.DNE(9,L4,2,2,"mat-option",22),e.k0s()(),e.j41(10,"mat-form-field",20)(11,"mat-label"),e.EFF(12,"Sort By"),e.k0s(),e.j41(13,"mat-select",23),e.mxI("ngModelChange",function(D){const I=v.eBV(m).$implicit;return e.DH7(I.sortBy,D)||(I.sortBy=D),v.Njj(D)}),e.DNE(14,V0,4,7,"mat-option",22),e.k0s()(),e.j41(15,"mat-form-field",20)(16,"mat-label"),e.EFF(17,"Sort Order"),e.k0s(),e.j41(18,"mat-select",24),e.mxI("ngModelChange",function(D){const I=v.eBV(m).$implicit;return e.DH7(I.sortOrder,D)||(I.sortOrder=D),v.Njj(D)}),e.DNE(19,I4,2,2,"mat-option",22),e.k0s()(),e.DNE(20,G0,5,5,"mat-form-field",25),e.j41(21,"mat-form-field",26)(22,"mat-label"),e.EFF(23,"Column Selection (Mobile Resolution)"),e.k0s(),e.j41(24,"mat-select",27),e.mxI("ngModelChange",function(D){const I=v.eBV(m).$implicit;return e.DH7(I.columnSelectionSM,D)||(I.columnSelectionSM=D),v.Njj(D)}),e.DNE(25,Wh,4,8,"mat-option",28),e.k0s()(),e.j41(26,"button",29),e.bIt("click",function(){const D=v.eBV(m).$implicit,I=e.XpG().$implicit,Oe=e.XpG();return v.Njj(Oe.onTableReset(I.pageId,D))}),e.j41(27,"mat-icon",30),e.EFF(28,"restore"),e.k0s()()()()}if(2&b){const m=_.$implicit,E=e.XpG().$implicit,D=e.XpG();e.R7$(3),e.SpI("",e.i5U(4,24,m.tableId,"_"),":"),e.R7$(5),e.Y8G("name",e.ai1("",E.pageId,"",m.tableId,"-page-size-options"))("disabled",D.nodePageDefs[E.pageId][m.tableId].disablePageSize),e.R50("ngModel",m.recordsPerPage),e.R7$(),e.Y8G("ngForOf",D.pageSizeOptions),e.R7$(4),e.Y8G("name",e.ai1("",E.pageId,"",m.tableId,"-sort-by")),e.R50("ngModel",m.sortBy),e.R7$(),e.Y8G("ngForOf",m.columnSelection),e.R7$(4),e.Y8G("name",e.ai1("",E.pageId,"",m.tableId,"-sort-order")),e.R50("ngModel",m.sortOrder),e.R7$(),e.Y8G("ngForOf",D.sortOrders),e.R7$(),e.Y8G("ngIf",D.screenSize!==D.screenSizeEnum.XS),e.R7$(4),e.Y8G("name",e.ai1("",E.pageId,"",m.tableId,"-columns-selection-sm")),e.R50("ngModel",m.columnSelectionSM),e.R7$(),e.Y8G("ngForOf",D.nodePageDefs[E.pageId][m.tableId].allowedColumns),e.R7$(2),e.Y8G("ngClass",e.eq3(27,z0,D.screenSize===D.screenSizeEnum.XS||D.screenSize===D.screenSizeEnum.SM))}}function j0(b,_){if(1&b&&e.eu8(0,14),2&b){const m=e.XpG(2),E=e.sdS(18);e.Y8G("ngTemplateOutlet",E)("ngTemplateOutletContext",e.eq3(2,pd,m.errorMessage))}}function gd(b,_){if(1&b&&(e.j41(0,"mat-expansion-panel",15)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),e.EFF(3),e.nI1(4,"camelcaseWithReplace"),e.k0s()(),e.DNE(5,x1,29,29,"div",16)(6,j0,1,4,"ng-container",7),e.k0s()),2&b){const m=_.$implicit,E=e.XpG();e.Y8G("ngClass",e.eq3(7,u2,(null==E.errorMessage?null:E.errorMessage.page)===m.pageId)),e.R7$(3),e.JRh(e.i5U(4,4,m.pageId,"_")),e.R7$(2),e.Y8G("ngForOf",m.tables),e.R7$(),e.Y8G("ngIf",E.errorMessage&&(null==E.errorMessage?null:E.errorMessage.page)===m.pageId)}}function H0(b,_){if(1&b&&(e.j41(0,"mat-panel-title"),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&b){const m=e.XpG().error;e.R7$(),e.SpI("Page ",e.bMT(2,1,m.page))}}function f2(b,_){if(1&b&&(e.j41(0,"mat-list-item")(1,"mat-icon",39),e.EFF(2,"close"),e.k0s(),e.j41(3,"span"),e.EFF(4),e.k0s()()),2&b){const m=e.XpG().error;e.R7$(4),e.JRh(m.message)}}function k4(b,_){if(1&b&&(e.j41(0,"mat-list-item")(1,"mat-icon",39),e.EFF(2,"close"),e.k0s(),e.j41(3,"span"),e.EFF(4),e.nI1(5,"titlecase"),e.k0s()()),2&b){const m=_.$implicit;e.R7$(4),e.Lme("Table ",e.bMT(5,2,m.table)," ",m.message)}}function W0(b,_){if(1&b&&(e.j41(0,"div",35),e.DNE(1,H0,3,3,"mat-panel-title",36),e.j41(2,"mat-list",37),e.DNE(3,f2,5,1,"mat-list-item",36)(4,k4,6,4,"mat-list-item",38),e.k0s()()),2&b){const m=_.error,E=e.XpG();e.Y8G("ngClass",e.eq3(4,h2,"unknown"===E.errorMessage.page)),e.R7$(),e.Y8G("ngIf","unknown"===E.errorMessage.page),e.R7$(2),e.Y8G("ngIf",m.message),e.R7$(),e.Y8G("ngForOf",m.tables)}}let Xh=(()=>{var b;class _{constructor(E,D,I,Oe){this.logger=E,this.commonService=D,this.store=I,this.actions=Oe,this.faPenRuler=Ti.$$g,this.faExclamationTriangle=Ti.zpE,this.screenSize="",this.screenSizeEnum=_t.f7,this.pageSizeOptions=_t.xp,this.pageSettings=[],this.initialPageSettings=[],this.defaultSettings=[],this.nodePageDefs={},this.sortOrders=_t.jG,this.apiCallStatus=null,this.apiCallStatusEnum=_t.wn,this.errorMessage=null,this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{switch(this.selNode=E,this.logger.info(this.selNode),this.selNode.lnImplementation){case"CLN":this.initialPageSettings=Object.assign([],_t.mu),this.defaultSettings=Object.assign([],_t.mu),this.nodePageDefs=_t.Jd,this.store.select(B0.av).pipe((0,li.Q)(this.unSubs[1]),(0,so.E)(this.store.select(Oa._c))).subscribe(([D,I])=>{const Oe=JSON.parse(JSON.stringify(D.pageSettings));if(this.errorMessage=null,this.apiCallStatus=D.apiCallStatus,this.apiCallStatus.status===_t.wn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=Oe,this.initialPageSettings=Oe;else{if(!I?.settings.enableOffers){const Ct=Oe.find(Yn=>"transactions"===Yn.pageId),Bt=Ct?.tables.findIndex(Yn=>"offers"===Yn.tableId),yn=Ct?.tables.findIndex(Yn=>"offer_bookmarks"===Yn.tableId);Bt>-1&&Ct?.tables.splice(Bt,1),yn>-1&&Ct?.tables.splice(yn,1)}if(!I?.settings.enablePeerswap){const Ct=Oe.findIndex(Bt=>"peerswap"===Bt.pageId);Ct>-1&&Oe.splice(Ct,1)}this.pageSettings=Oe,this.initialPageSettings=Oe}this.logger.info(Oe)}),this.actions.pipe((0,li.Q)(this.unSubs[2]),(0,za.p)(D=>D.type===_t.TC.UPDATE_API_CALL_STATUS_CLN||D.type===_t.TC.SAVE_PAGE_SETTINGS_CLN)).subscribe(D=>{D.type===_t.TC.UPDATE_API_CALL_STATUS_CLN&&D.payload.status===_t.wn.ERROR&&"SavePageSettings"===D.payload.action&&(this.errorMessage=JSON.parse(D.payload.message))});break;case"ECL":this.initialPageSettings=Object.assign([],_t.X8),this.defaultSettings=Object.assign([],_t.X8),this.nodePageDefs=_t.WW,this.store.select(lr.jZ).pipe((0,li.Q)(this.unSubs[1])).subscribe(D=>{const I=JSON.parse(JSON.stringify(D.pageSettings));this.errorMessage=null,this.apiCallStatus=D.apiCallStatus,this.apiCallStatus.status===_t.wn.ERROR?(this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=I,this.initialPageSettings=I):(this.pageSettings=I,this.initialPageSettings=I),this.logger.info(I)}),this.actions.pipe((0,li.Q)(this.unSubs[2]),(0,za.p)(D=>D.type===_t.Uu.UPDATE_API_CALL_STATUS_ECL||D.type===_t.Uu.SAVE_PAGE_SETTINGS_ECL)).subscribe(D=>{D.type===_t.Uu.UPDATE_API_CALL_STATUS_ECL&&D.payload.status===_t.wn.ERROR&&"SavePageSettings"===D.payload.action&&(this.errorMessage=JSON.parse(D.payload.message))});break;default:this.initialPageSettings=Object.assign([],_t.ZC),this.defaultSettings=Object.assign([],_t.ZC),this.nodePageDefs=_t._1,this.store.select(md.$G).pipe((0,li.Q)(this.unSubs[1]),(0,so.E)(this.store.select(Oa._c))).subscribe(([D,I])=>{const Oe=JSON.parse(JSON.stringify(D.pageSettings));if(this.errorMessage=null,this.apiCallStatus=D.apiCallStatus,this.apiCallStatus.status===_t.wn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=Oe,this.initialPageSettings=Oe;else{if(!I?.settings.swapServerUrl||""===I.settings.swapServerUrl.trim()){const Ct=Oe.findIndex(Bt=>"loop"===Bt.pageId);Ct>-1&&Oe.splice(Ct,1)}if(!I?.settings.boltzServerUrl||""===I.settings.boltzServerUrl.trim()){const Ct=Oe.findIndex(Bt=>"boltz"===Bt.pageId);Ct>-1&&Oe.splice(Ct,1)}if(!I?.settings.enablePeerswap){const Ct=Oe.findIndex(Bt=>"peerswap"===Bt.pageId);Ct>-1&&Oe.splice(Ct,1)}this.pageSettings=Oe,this.initialPageSettings=Oe}this.logger.info(Oe)}),this.actions.pipe((0,li.Q)(this.unSubs[2]),(0,za.p)(D=>D.type===_t.QP.UPDATE_API_CALL_STATUS_LND||D.type===_t.QP.SAVE_PAGE_SETTINGS_LND)).subscribe(D=>{D.type===_t.QP.UPDATE_API_CALL_STATUS_LND&&D.payload.status===_t.wn.ERROR&&"SavePageSettings"===D.payload.action&&(this.errorMessage=JSON.parse(D.payload.message))})}})}oncolumnSelectionChange(E){E.columnSelection&&(!E.sortBy||!E.columnSelection.includes(E.sortBy))&&(E.sortBy=E.columnSelection[0])}onUpdatePageSettings(){if(this.pageSettings.reduce((E,D)=>E||D.tables.reduce((I,Oe)=>!(Oe.recordsPerPage&&Oe.sortBy&&Oe.sortOrder&&Oe.columnSelection&&Oe.columnSelection.length>=2),!1),!1))return!0;switch(this.errorMessage="",this.selNode.lnImplementation){case"CLN":this.store.dispatch((0,zs.Sn)({payload:this.pageSettings}));break;case"ECL":this.store.dispatch((0,Ds.Sn)({payload:this.pageSettings}));break;default:this.store.dispatch((0,Qs.Sn)({payload:this.pageSettings}))}}onTableReset(E,D){const I=this.pageSettings.findIndex(Bt=>Bt.pageId===E),Oe=this.pageSettings[I].tables.findIndex(Bt=>Bt.tableId===D.tableId),Ct=this.defaultSettings.find(Bt=>Bt.pageId===E)?.tables.find(Bt=>Bt.tableId===D.tableId)||this.pageSettings.find(Bt=>Bt.pageId===E)?.tables.find(Bt=>Bt.tableId===D.tableId);this.pageSettings[I].tables.splice(Oe,1,Ct)}onResetPageSettings(E){"current"===E?(this.errorMessage=null,this.pageSettings=JSON.parse(JSON.stringify(this.initialPageSettings))):(this.errorMessage=null,this.pageSettings=JSON.parse(JSON.stringify(this.defaultSettings)))}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(Qo.h),e.rXU(mi.il),e.rXU(Uo.En))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-page-settings"]],standalone:!1,decls:19,vars:3,consts:[["form","ngForm"],["errorObjectBlock",""],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],["fxLayout","column","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[3,"ngTemplateOutlet","ngTemplateOutletContext",4,"ngIf"],["displayMode","flat","multi","false"],["fxLayout","column","class","flat-expansion-panel mt-1","expanded","false",3,"ngClass",4,"ngFor","ngForOf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","8",1,"mr-1",3,"click"],["mat-stroked-button","","color","primary","tabindex","9",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","10",3,"click"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],["fxLayout","column","expanded","false",1,"flat-expansion-panel","mt-1",3,"ngClass"],["fxLayout","column","fxLayoutAlign","start stretch","class","padding-gap-x-large table-setting-row",4,"ngFor","ngForOf"],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x-large","table-setting-row"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center"],["fxFlex","10",1,"mb-2"],["fxLayout","column","fxFlex","10"],["tabindex","2","required","",3,"ngModelChange","name","disabled","ngModel"],[3,"value",4,"ngFor","ngForOf"],["tabindex","3","required","",3,"ngModelChange","name","ngModel"],["tabindex","4","required","",3,"ngModelChange","name","ngModel"],["fxFlex","35","matTooltip","Select a minimum of 2 columns",4,"ngIf"],["fxLayout","column","fxFlex","15","matTooltip","Select between 1 and 3 columns"],["tabindex","5","multiple","","required","",3,"ngModelChange","name","ngModel"],[3,"value","disabled",4,"ngFor","ngForOf"],["mat-icon-button","","color","primary","type","button","tabindex","7","matTooltip","Reset to Default",1,"mb-2",3,"click"],["color","primary",3,"ngClass"],[3,"value"],["fxFlex","35","matTooltip","Select a minimum of 2 columns"],["tabindex","6","multiple","","required","",3,"ngModelChange","selectionChange","name","ngModel"],[3,"value","disabled"],[3,"ngClass"],[4,"ngIf"],["role","list"],[4,"ngFor","ngForOf"],[1,"ml-1","icon-small","red"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",2)(1,"form",3,0)(3,"div",4),e.nrm(4,"fa-icon",5),e.j41(5,"span",6),e.EFF(6,"Grid Settings"),e.k0s()(),e.DNE(7,m2,1,4,"ng-container",7),e.j41(8,"mat-accordion",8),e.DNE(9,gd,7,9,"mat-expansion-panel",9),e.k0s()(),e.j41(10,"div",10)(11,"button",11),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onResetPageSettings("current"))}),e.EFF(12,"Reset"),e.k0s(),e.j41(13,"button",12),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onResetPageSettings("default"))}),e.EFF(14,"Reset to Default"),e.k0s(),e.j41(15,"button",13),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onUpdatePageSettings())}),e.EFF(16,"Save"),e.k0s()()(),e.DNE(17,W0,5,6,"ng-template",null,1,e.C5r)}2&D&&(e.R7$(4),e.Y8G("icon",I.faPenRuler),e.R7$(3),e.Y8G("ngIf",I.errorMessage&&"unknown"===I.errorMessage.page),e.R7$(2),e.Y8G("ngForOf",I.pageSettings))},dependencies:[w.YU,w.Sq,w.bT,w.T3,hi.qT,hi.BC,hi.cb,hi.YS,hi.vS,hi.cV,os.aY,es.$z,Jc.iY,or.BS,or.GK,or.Z2,or.WN,qc.An,Ma.rl,Ma.nJ,Bs.jt,Bs.YE,Ie.DJ,Ie.sA,Ie.UI,cl.PW,sl.VO,ac.wT,fd.oV,go.Ld,w.PV,dl.VD,dl.Qu],styles:[".table-setting-row[_ngcontent-%COMP%]:not(:first-child){margin:.5rem 0}"]}))}return b(),_})();function O4(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",11),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.setActiveLink(D.links[0].link))}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG();e.Y8G("routerLink",e.mNQ(m.links[0].link))("active",m.activeLink===m.links[0].link),e.R7$(),e.JRh(m.links[0].name)}}function R4(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",12),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.setActiveLink(D.links[1].link))}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG();e.Y8G("routerLink",e.mNQ(m.links[1].link))("active",m.activeLink===m.links[1].link),e.R7$(),e.JRh(m.links[1].name)}}function P4(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",13),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.setActiveLink(D.links[2].link))}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG();e.Y8G("routerLink",e.mNQ(m.links[2].link))("active",m.activeLink===m.links[2].link),e.R7$(),e.JRh(m.links[2].name)}}let X0=(()=>{var b;class _{constructor(E,D,I){this.store=E,this.router=D,this.activatedRoute=I,this.faLayerGroup=Ti.qIE,this.links=[{link:"loop",name:"Loop"},{link:"boltz",name:"Boltz"},{link:"noservice",name:"No Service"}],this.activeLink="",this.unSubs=[new gi.B,new gi.B,new gi.B]}ngOnInit(){this.setActiveLink(),this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{this.selNode=E,this.setActiveLink(),this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute})})}setActiveLink(E){if(E&&""!==E)this.activeLink=E;else{const D=this.links.find(I=>this.router.url.includes(I.link));this.activeLink=D?this.selNode&&"CLN"===this.selNode.lnImplementation?this.links[1].link:D.link:this.links[this.links.length-1].link}}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(mi.il),e.rXU(Ha.Ix),e.rXU(Ha.nX))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-services-settings"]],standalone:!1,decls:16,vars:5,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-sub-title-container","my-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngIf"],["tabindex","2","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngIf"],["tabindex","3","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","3","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(D,I){if(1&D&&(e.j41(0,"div",1)(1,"div",2),e.nrm(2,"fa-icon",3),e.j41(3,"span",4),e.EFF(4,"Services"),e.k0s()()(),e.j41(5,"div",5)(6,"mat-card")(7,"mat-card-content",5)(8,"nav",6),e.DNE(9,O4,2,4,"div",7)(10,R4,2,4,"div",8)(11,P4,2,4,"div",9),e.k0s(),e.nrm(12,"mat-tab-nav-panel",null,0),e.j41(14,"div",10),e.nrm(15,"router-outlet"),e.k0s()()()()),2&D){const Oe=e.sdS(13);e.R7$(2),e.Y8G("icon",I.faLayerGroup),e.R7$(6),e.Y8G("tabPanel",Oe),e.R7$(),e.Y8G("ngIf","LND"===I.selNode.lnImplementation),e.R7$(),e.Y8G("ngIf","ECL"!==I.selNode.lnImplementation),e.R7$(),e.Y8G("ngIf","ECL"===I.selNode.lnImplementation)}},dependencies:[w.bT,os.aY,K.RN,K.m2,Ie.DJ,Ie.sA,Ie.UI,Ut.Bu,Ut.hQ,Ut.Ql,Ha.n3,lo.Wk],encapsulation:2}))}return b(),_})();const F4=["form"];function K0(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Loop server URL is required."),e.k0s())}function N4(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Specify the loop server url with 'https://'."),e.k0s())}function _d(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Loop macaroon path is required."),e.k0s())}let e1=(()=>{var b;class _{constructor(E,D){this.logger=E,this.store=D,this.faInfoCircle=Ti.iW_,this.enableLoop=!1,this.unSubs=[new gi.B,new gi.B]}ngOnInit(){this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{this.selNode=E,this.enableLoop=!(!E.settings.swapServerUrl||""===E.settings.swapServerUrl.trim()),this.previousSelNode=JSON.parse(JSON.stringify(this.selNode)),this.logger.info(E)})}onEnableServiceChanged(E){this.enableLoop=E.checked,this.enableLoop||(this.selNode.authentication.swapMacaroonPath="",this.selNode.settings.swapServerUrl="")}onUpdateService(){if(this.selNode.settings.swapServerUrl&&""!==this.selNode.settings.swapServerUrl.trim()&&!this.form.controls.srvrUrl.value.includes("https://")&&this.form.controls.srvrUrl.setErrors({invalid:!0}),this.enableLoop&&(!this.selNode.settings.swapServerUrl||""===this.selNode.settings.swapServerUrl.trim()||!this.selNode.authentication.swapMacaroonPath||""===this.selNode.authentication.swapMacaroonPath.trim()))return!0;this.enableLoop||(delete this.selNode.settings.swapServerUrl,delete this.selNode.authentication.swapMacaroonPath),this.logger.info(this.selNode),this.store.dispatch((0,Bi.T$)({payload:this.selNode}))}onReset(){this.selNode=JSON.parse(JSON.stringify(this.previousSelNode)),this.enableLoop=!(!this.selNode.settings.swapServerUrl||""===this.selNode.settings.swapServerUrl.trim())}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(mi.il))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-loop-service-settings"]],viewQuery:function(D,I){if(1&D&&e.GBs(F4,7),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.form=Oe.first)}},standalone:!1,decls:38,vars:11,consts:[["form","ngForm"],["srvrUrl","ngModel"],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["href","https://github.com/lightninglabs/loop","target","_blank"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start stretch"],["autoFocus","","tabindex","1","color","primary","name","loop",1,"ml-2",3,"ngModelChange","change","ngModel"],[1,"mb-2"],["matInput","","type","text","id","swapServerUrl","name","srvrUrl","tabindex","2",3,"ngModelChange","required","disabled","ngModel"],[4,"ngIf"],["matInput","","type","text","id","swapMacaroonPath","name","swapMacaroonPath","tabindex","3",3,"ngModelChange","required","disabled","ngModel"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","5",3,"click"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",2)(1,"div",3),e.nrm(2,"fa-icon",4),e.j41(3,"span"),e.EFF(4,"Please ensure that "),e.j41(5,"strong"),e.EFF(6,"loopd"),e.k0s(),e.EFF(7," is running and accessible to RTL before enabling this service. Click "),e.j41(8,"strong")(9,"a",5),e.EFF(10,"here"),e.k0s()(),e.EFF(11," to learn more about the installation."),e.k0s()(),e.j41(12,"form",6,0)(14,"div",7)(15,"mat-slide-toggle",8),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.enableLoop,Bt)||(I.enableLoop=Bt),v.Njj(Bt)}),e.bIt("change",function(Bt){return v.eBV(Oe),v.Njj(I.onEnableServiceChanged(Bt))}),e.EFF(16,"Enable Loop Service"),e.k0s(),e.j41(17,"mat-form-field",9)(18,"mat-label"),e.EFF(19,"Loop Server URL"),e.k0s(),e.j41(20,"input",10,1),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selNode.settings.swapServerUrl,Bt)||(I.selNode.settings.swapServerUrl=Bt),v.Njj(Bt)}),e.k0s(),e.j41(22,"mat-hint"),e.EFF(23,"Service url for loop server REST APIs, eg. https://127.0.0.1:8081"),e.k0s(),e.DNE(24,K0,2,0,"mat-error",11)(25,N4,2,0,"mat-error",11),e.k0s(),e.j41(26,"mat-form-field")(27,"mat-label"),e.EFF(28,"Loop Macaroon Path"),e.k0s(),e.j41(29,"input",12),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selNode.authentication.swapMacaroonPath,Bt)||(I.selNode.authentication.swapMacaroonPath=Bt),v.Njj(Bt)}),e.k0s(),e.j41(30,"mat-hint"),e.EFF(31,"Path for the folder containing service 'loop.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Local\\\\Loop\\\\testnet"),e.k0s(),e.DNE(32,_d,2,0,"mat-error",11),e.k0s()()(),e.j41(33,"div",13)(34,"button",14),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onReset())}),e.EFF(35,"Reset"),e.k0s(),e.j41(36,"button",15),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onUpdateService())}),e.EFF(37,"Update"),e.k0s()()()}if(2&D){const Oe=e.sdS(21);e.R7$(2),e.Y8G("icon",I.faInfoCircle),e.R7$(13),e.R50("ngModel",I.enableLoop),e.R7$(5),e.Y8G("required",I.enableLoop)("disabled",!I.enableLoop),e.R50("ngModel",I.selNode.settings.swapServerUrl),e.R7$(4),e.Y8G("ngIf",!I.selNode.settings.swapServerUrl&&I.enableLoop),e.R7$(),e.Y8G("ngIf",(null==Oe||null==Oe.errors?null:Oe.errors.invalid)&&I.enableLoop),e.R7$(4),e.Y8G("required",I.enableLoop)("disabled",!I.enableLoop),e.R50("ngModel",I.selNode.authentication.swapMacaroonPath),e.R7$(3),e.Y8G("ngIf",!I.selNode.authentication.swapMacaroonPath&&I.enableLoop)}},dependencies:[w.bT,hi.qT,hi.me,hi.BC,hi.cb,hi.YS,hi.vS,hi.cV,os.aY,es.$z,br.fg,Ma.rl,Ma.nJ,Ma.MV,Ma.TL,Ie.DJ,Ie.sA,Ie.UI,bc.sG,go.Ld,Kl.N],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}))}return b(),_})();const Ql=["form"];function Y0(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Boltz server URL is required."),e.k0s())}function B4(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Specify the boltz server url with 'https://'."),e.k0s())}function Q0(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Boltz macaroon path is required."),e.k0s())}let Kh=(()=>{var b;class _{constructor(E,D){this.logger=E,this.store=D,this.faInfoCircle=Ti.iW_,this.enableBoltz=!1,this.serverUrl="",this.macaroonPath="",this.unSubs=[new gi.B,new gi.B]}ngOnInit(){this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{this.selNode=E,this.enableBoltz=!(!E.settings.boltzServerUrl||""===E.settings.boltzServerUrl.trim()),this.serverUrl=this.selNode.settings.boltzServerUrl||"",this.macaroonPath=this.selNode.authentication.boltzMacaroonPath,this.previousSelNode=JSON.parse(JSON.stringify(this.selNode)),this.logger.info(E)})}onEnableServiceChanged(E){this.enableBoltz=E.checked,this.enableBoltz||(this.macaroonPath="",this.serverUrl="")}onUpdateService(){if(this.serverUrl&&""!==this.serverUrl.trim()&&!this.form.controls.srvrUrl.value.includes("https://")&&this.form.controls.srvrUrl.setErrors({invalid:!0}),this.enableBoltz&&(!this.serverUrl||""===this.serverUrl.trim()||!this.serverUrl.includes("https://")||!this.macaroonPath||""===this.macaroonPath.trim()))return!0;this.logger.info(this.selNode),this.enableBoltz?(this.selNode.settings.boltzServerUrl=this.serverUrl,this.selNode.authentication.boltzMacaroonPath=this.macaroonPath):(delete this.selNode.settings.boltzServerUrl,delete this.selNode.authentication.boltzMacaroonPath),this.store.dispatch((0,Bi.T$)({payload:this.selNode}))}onReset(){this.selNode=JSON.parse(JSON.stringify(this.previousSelNode)),this.serverUrl=this.selNode.settings.boltzServerUrl||"",this.macaroonPath=this.selNode.authentication.boltzMacaroonPath,this.enableBoltz=!(!this.serverUrl||""===this.serverUrl.trim())}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(mi.il))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-boltz-service-settings"]],viewQuery:function(D,I){if(1&D&&e.GBs(Ql,7),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.form=Oe.first)}},standalone:!1,decls:38,vars:11,consts:[["form","ngForm"],["srvrUrl","ngModel"],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["href","https://docs.boltz.exchange/v/boltz-client/","target","_blank"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start stretch"],["autoFocus","","tabindex","1","color","primary","name","boltz",1,"ml-2",3,"ngModelChange","change","ngModel"],[1,"mb-2"],["matInput","","type","text","id","boltzServerUrl","name","srvrUrl","tabindex","2",3,"ngModelChange","required","disabled","ngModel"],[4,"ngIf"],["matInput","","type","text","id","boltzMacaroonPath","name","boltzMacaroonPath","tabindex","3",3,"ngModelChange","required","disabled","ngModel"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","5",3,"click"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",2)(1,"div",3),e.nrm(2,"fa-icon",4),e.j41(3,"span"),e.EFF(4,"Please ensure that "),e.j41(5,"strong"),e.EFF(6,"boltzd"),e.k0s(),e.EFF(7," is running and accessible to RTL before enabling this service. Click "),e.j41(8,"strong")(9,"a",5),e.EFF(10,"here"),e.k0s()(),e.EFF(11," to learn more about the installation."),e.k0s()(),e.j41(12,"form",6,0)(14,"div",7)(15,"mat-slide-toggle",8),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.enableBoltz,Bt)||(I.enableBoltz=Bt),v.Njj(Bt)}),e.bIt("change",function(Bt){return v.eBV(Oe),v.Njj(I.onEnableServiceChanged(Bt))}),e.EFF(16,"Enable Boltz Service"),e.k0s(),e.j41(17,"mat-form-field",9)(18,"mat-label"),e.EFF(19,"Boltz Server URL"),e.k0s(),e.j41(20,"input",10,1),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.serverUrl,Bt)||(I.serverUrl=Bt),v.Njj(Bt)}),e.k0s(),e.j41(22,"mat-hint"),e.EFF(23,"Service url for boltz server REST APIs, eg. https://127.0.0.1:9003"),e.k0s(),e.DNE(24,Y0,2,0,"mat-error",11)(25,B4,2,0,"mat-error",11),e.k0s(),e.j41(26,"mat-form-field")(27,"mat-label"),e.EFF(28,"Boltz Macaroon Path"),e.k0s(),e.j41(29,"input",12),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.macaroonPath,Bt)||(I.macaroonPath=Bt),v.Njj(Bt)}),e.k0s(),e.j41(30,"mat-hint"),e.EFF(31,"Path for the folder containing boltz 'admin.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Boltz\\\\testnet"),e.k0s(),e.DNE(32,Q0,2,0,"mat-error",11),e.k0s()()(),e.j41(33,"div",13)(34,"button",14),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onReset())}),e.EFF(35,"Reset"),e.k0s(),e.j41(36,"button",15),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onUpdateService())}),e.EFF(37,"Update"),e.k0s()()()}if(2&D){const Oe=e.sdS(21);e.R7$(2),e.Y8G("icon",I.faInfoCircle),e.R7$(13),e.R50("ngModel",I.enableBoltz),e.R7$(5),e.Y8G("required",I.enableBoltz)("disabled",!I.enableBoltz),e.R50("ngModel",I.serverUrl),e.R7$(4),e.Y8G("ngIf",(!I.serverUrl||""===I.serverUrl.trim())&&I.enableBoltz),e.R7$(),e.Y8G("ngIf",(null==Oe||null==Oe.errors?null:Oe.errors.invalid)&&I.enableBoltz),e.R7$(4),e.Y8G("required",I.enableBoltz)("disabled",!I.enableBoltz),e.R50("ngModel",I.macaroonPath),e.R7$(3),e.Y8G("ngIf",!I.macaroonPath&&I.enableBoltz)}},dependencies:[w.bT,hi.qT,hi.me,hi.BC,hi.cb,hi.YS,hi.vS,hi.cV,os.aY,es.$z,br.fg,Ma.rl,Ma.nJ,Ma.MV,Ma.TL,Ie.DJ,Ie.sA,Ie.UI,bc.sG,go.Ld,Kl.N],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}))}return b(),_})(),Yh=(()=>{var b;class _{constructor(){}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-ln-services"]],standalone:!1,decls:1,vars:0,template:function(D,I){1&D&&e.nrm(0,"router-outlet")},dependencies:[Ha.n3],encapsulation:2}))}return b(),_})();var p2=l(1092),E1=l(4104),kc=l(6695),Oc=l(2042),Ra=l(1676),vd=l(7575);const g2=()=>["all"],z4=b=>({"overflow-auto error-border":b,"overflow-auto":!0}),$0=()=>["no_swap"],ul=b=>({width:b}),Z0=b=>({"display-none":b});function V4(b,_){if(1&b&&(e.j41(0,"mat-option",37),e.EFF(1),e.k0s()),2&b){const m=_.$implicit,E=e.XpG();e.Y8G("value",m),e.R7$(),e.JRh(E.getLabel(m))}}function _2(b,_){1&b&&e.nrm(0,"mat-progress-bar",38)}function U4(b,_){1&b&&(e.j41(0,"th",39),e.EFF(1,"State"),e.k0s())}function Qh(b,_){if(1&b&&(e.j41(0,"td",40),e.EFF(1),e.k0s()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.JRh(E.LoopStateEnum[null==m?null:m.state])}}function J0(b,_){1&b&&(e.j41(0,"th",39),e.EFF(1,"Initiation Time"),e.k0s())}function v2(b,_){if(1&b&&(e.j41(0,"td",40),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&b){const m=_.$implicit;e.R7$(),e.JRh(e.i5U(2,1,(null==m?null:m.initiation_time)/1e6,"dd/MMM/y HH:mm"))}}function G4(b,_){1&b&&(e.j41(0,"th",39),e.EFF(1,"Last Update Time"),e.k0s())}function j4(b,_){if(1&b&&(e.j41(0,"td",40),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&b){const m=_.$implicit;e.R7$(),e.JRh(e.i5U(2,1,(null==m?null:m.last_update_time)/1e6,"dd/MMM/y HH:mm"))}}function H4(b,_){1&b&&(e.j41(0,"th",41),e.EFF(1,"Amount (Sats)"),e.k0s())}function qa(b,_){if(1&b&&(e.j41(0,"td",40)(1,"span",42),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&b){const m=_.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==m?null:m.amt))}}function xc(b,_){1&b&&(e.j41(0,"th",41),e.EFF(1,"Cost Server (Sats)"),e.k0s())}function y2(b,_){if(1&b&&(e.j41(0,"td",40)(1,"span",42),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&b){const m=_.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==m?null:m.cost_server))}}function q0(b,_){1&b&&(e.j41(0,"th",41),e.EFF(1,"Cost Offchain (Sats)"),e.k0s())}function M1(b,_){if(1&b&&(e.j41(0,"td",40)(1,"span",42),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&b){const m=_.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==m?null:m.cost_offchain))}}function W4(b,_){1&b&&(e.j41(0,"th",41),e.EFF(1,"Cost Onchain (Sats)"),e.k0s())}function S1(b,_){if(1&b&&(e.j41(0,"td",40)(1,"span",42),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&b){const m=_.$implicit;e.R7$(2),e.SpI(" ",e.bMT(3,1,null==m?null:m.cost_onchain)," ")}}function T1(b,_){1&b&&(e.j41(0,"th",39),e.EFF(1,"HTLC Address"),e.k0s())}function yd(b,_){if(1&b&&(e.j41(0,"td",40)(1,"span",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ul,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.htlc_address)}}function t1(b,_){1&b&&(e.j41(0,"th",39),e.EFF(1,"ID"),e.k0s())}function X4(b,_){if(1&b&&(e.j41(0,"td",40)(1,"span",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ul,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.id)}}function D1(b,_){1&b&&(e.j41(0,"th",39),e.EFF(1,"ID (Bytes)"),e.k0s())}function w1(b,_){if(1&b&&(e.j41(0,"td",40)(1,"span",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ul,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.id_bytes)}}function A1(b,_){if(1&b){const m=e.RV6();e.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",48),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function bd(b,_){if(1&b){const m=e.RV6();e.j41(0,"td",49)(1,"button",50),e.bIt("click",function(D){const I=v.eBV(m).$implicit,Oe=e.XpG();return v.Njj(Oe.onSwapClick(I,D))}),e.EFF(2,"View Info"),e.k0s()()}}function b2(b,_){if(1&b&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&b){const m=e.XpG(2);e.R7$(),e.JRh(m.emptyTableMessage)}}function K4(b,_){if(1&b&&(e.j41(0,"td",51),e.DNE(1,b2,2,1,"p",52),e.k0s()),2&b){const m=e.XpG();e.R7$(),e.Y8G("ngIf",!(null!=m.listSwaps&&m.listSwaps.data)||(null==m.listSwaps||null==m.listSwaps.data?null:m.listSwaps.data.length)<1)}}function Rc(b,_){if(1&b&&e.nrm(0,"tr",53),2&b){const m=e.XpG();e.Y8G("ngClass",e.eq3(1,Z0,(null==m.listSwaps?null:m.listSwaps.data)&&(null==m.listSwaps||null==m.listSwaps.data?null:m.listSwaps.data.length)>0))}}function Ec(b,_){1&b&&e.nrm(0,"tr",54)}function eu(b,_){1&b&&e.nrm(0,"tr",55)}let Cd=(()=>{var b;class _{constructor(E,D,I,Oe,Ct,Bt){this.logger=E,this.commonService=D,this.store=I,this.loopService=Oe,this.datePipe=Ct,this.camelCaseWithReplace=Bt,this.selectedSwapType=_t.C7.LOOP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=_t._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="loop",this.tableSetting={tableId:"loop",recordsPerPage:_t.md,sortBy:"initiation_time",sortOrder:_t.oi.DESCENDING},this.LoopStateEnum=_t.Hx,this.faHistory=Ti.Int,this.swapCaption="Loop Out",this.displayedColumns=[],this.listSwaps=new Ra.I6([]),this.selFilter="",this.pageSize=_t.md,this.pageSizeOptions=_t.xp,this.screenSize="",this.screenSizeEnum=_t.f7,this.unSubs=[new gi.B,new gi.B,new gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(E){this.swapCaption=this.selectedSwapType===_t.C7.LOOP_IN?"Loop In":"Loop Out",this.loadSwapsTable(this.swapsData)}ngOnInit(){this.store.select(md.$G).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{this.tableSetting=E.pageSettings.find(D=>D.pageId===this.PAGE_ID)?.tables.find(D=>D.tableId===this.tableSetting.tableId)||_t.ZC.find(D=>D.pageId===this.PAGE_ID)?.tables.find(D=>D.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===_t.f7.XS||this.screenSize===_t.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:_t.md,this.swapsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadSwapsTable(this.swapsData),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)})}ngAfterViewInit(){this.swapsData&&this.swapsData.length>0&&this.loadSwapsTable(this.swapsData)}applyFilter(){this.listSwaps.filter=this.selFilter.trim().toLowerCase()}getLabel(E){const D=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(I=>I.column===E);return D?D.label?D.label:this.camelCaseWithReplace.transform(D.column,"_"):this.commonService.titleCase(E)}setFilterPredicate(){this.listSwaps.filterPredicate=(E,D)=>{let I="";switch(this.selFilterBy){case"all":I=JSON.stringify(E).toLowerCase();break;case"state":I=E?.state?this.LoopStateEnum[E?.state]:"";break;case"initiation_time":case"last_update_time":I=this.datePipe.transform(new Date((E[this.selFilterBy]||0)/1e6),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:I=typeof E[this.selFilterBy]>"u"?"":"string"==typeof E[this.selFilterBy]?E[this.selFilterBy].toLowerCase():"boolean"==typeof E[this.selFilterBy]?E[this.selFilterBy]?"yes":"no":E[this.selFilterBy].toString()}return"state"===this.selFilterBy?0===I.indexOf(D):I.includes(D)}}onSwapClick(E,D){this.loopService.getSwap(E.id_bytes?.replace(/\//g,"_")?.replace(/\+/g,"-")||"").pipe((0,li.Q)(this.unSubs[1])).subscribe(I=>{this.store.dispatch((0,Bi.xO)({payload:{data:{type:_t.A$.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"state",value:_t.Hx[I.state||""],title:"Status",width:50,type:_t.UN.STRING},{key:"amt",value:I.amt,title:"Amount (Sats)",width:50,type:_t.UN.NUMBER}],[{key:"initiation_time",value:(I.initiation_time||0)/1e9,title:"Initiation Time",width:50,type:_t.UN.DATE_TIME},{key:"last_update_time",value:(I.last_update_time||0)/1e9,title:"Last Update Time",width:50,type:_t.UN.DATE_TIME}],[{key:"cost_server",value:I.cost_server,title:"Server Cost (Sats)",width:33,type:_t.UN.NUMBER},{key:"cost_offchain",value:I.cost_offchain,title:"Offchain Cost (Sats)",width:33,type:_t.UN.NUMBER},{key:"cost_onchain",value:I.cost_onchain,title:"Onchain Cost (Sats)",width:34,type:_t.UN.NUMBER}],[{key:"id_bytes",value:I.id_bytes,title:"ID",width:100,type:_t.UN.STRING}],[{key:"htlc_address",value:I.htlc_address,title:"HTLC Address",width:100,type:_t.UN.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(E){this.listSwaps=new Ra.I6([...E]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(D,I)=>D[I]&&isNaN(D[I])?D[I].toLocaleLowerCase():D[I]?+D[I]:null,this.listSwaps.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listSwaps)}onDownloadCSV(){this.listSwaps.data&&this.listSwaps.data.length>0&&this.commonService.downloadFile(this.listSwaps.data,this.selectedSwapType===_t.C7.LOOP_IN?"Loop in":"Loop out")}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(Qo.h),e.rXU(mi.il),e.rXU(E1.Q),e.rXU(w.vh),e.rXU(dl.VD))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-swaps"]],viewQuery:function(D,I){if(1&D&&(e.GBs(Oc.B4,5),e.GBs(kc.iy,5)),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.sort=Oe.first),e.mGM(Oe=e.lsd())&&(I.paginator=Oe.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},standalone:!1,features:[e.Jv_([{provide:sl.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:kc.xX,useValue:(0,_t.on)("Swaps")}]),e.OA$],decls:61,vars:20,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"card-content-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","fxFlex","100",1,"page-sub-title-container","w-100"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start center",1,"w-100"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","initiation_time"],["matColumnDef","last_update_time"],["matColumnDef","amt"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","cost_server"],["matColumnDef","cost_offchain"],["matColumnDef","cost_onchain"],["matColumnDef","htlc_address"],["matColumnDef","id"],["matColumnDef","id_bytes"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_swap"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"div",3),e.nrm(3,"fa-icon",4),e.j41(4,"span",5),e.EFF(5),e.k0s()(),e.j41(6,"div",6)(7,"mat-form-field",7)(8,"mat-label"),e.EFF(9,"Filter By"),e.k0s(),e.j41(10,"mat-select",8),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selFilterBy,Bt)||(I.selFilterBy=Bt),v.Njj(Bt)}),e.bIt("selectionChange",function(){return v.eBV(Oe),I.selFilter="",v.Njj(I.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,V4,2,2,"mat-option",9),e.k0s()()(),e.j41(13,"mat-form-field",7)(14,"mat-label"),e.EFF(15,"Filter"),e.k0s(),e.j41(16,"input",10),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selFilter,Bt)||(I.selFilter=Bt),v.Njj(Bt)}),e.bIt("input",function(){return v.eBV(Oe),v.Njj(I.applyFilter())})("keyup",function(){return v.eBV(Oe),v.Njj(I.applyFilter())}),e.k0s()()()(),e.j41(17,"div",11)(18,"div",12),e.DNE(19,_2,1,0,"mat-progress-bar",13),e.j41(20,"table",14,0),e.qex(22,15),e.DNE(23,U4,2,0,"th",16)(24,Qh,2,1,"td",17),e.bVm(),e.qex(25,18),e.DNE(26,J0,2,0,"th",16)(27,v2,3,4,"td",17),e.bVm(),e.qex(28,19),e.DNE(29,G4,2,0,"th",16)(30,j4,3,4,"td",17),e.bVm(),e.qex(31,20),e.DNE(32,H4,2,0,"th",21)(33,qa,4,3,"td",17),e.bVm(),e.qex(34,22),e.DNE(35,xc,2,0,"th",21)(36,y2,4,3,"td",17),e.bVm(),e.qex(37,23),e.DNE(38,q0,2,0,"th",21)(39,M1,4,3,"td",17),e.bVm(),e.qex(40,24),e.DNE(41,W4,2,0,"th",21)(42,S1,4,3,"td",17),e.bVm(),e.qex(43,25),e.DNE(44,T1,2,0,"th",16)(45,yd,4,4,"td",17),e.bVm(),e.qex(46,26),e.DNE(47,t1,2,0,"th",16)(48,X4,4,4,"td",17),e.bVm(),e.qex(49,27),e.DNE(50,D1,2,0,"th",16)(51,w1,4,4,"td",17),e.bVm(),e.qex(52,28),e.DNE(53,A1,6,0,"th",29)(54,bd,3,0,"td",30),e.bVm(),e.qex(55,31),e.DNE(56,K4,2,1,"td",32),e.bVm(),e.DNE(57,Rc,1,3,"tr",33)(58,Ec,1,0,"tr",34)(59,eu,1,0,"tr",35),e.k0s(),e.nrm(60,"mat-paginator",36),e.k0s()()()}2&D&&(e.R7$(3),e.Y8G("icon",I.faHistory),e.R7$(2),e.SpI("",I.swapCaption," History"),e.R7$(5),e.R50("ngModel",I.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(16,g2).concat(I.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",I.selFilter),e.R7$(3),e.Y8G("ngIf",!0===I.flgLoading[0]),e.R7$(),e.Y8G("matSortActive",I.tableSetting.sortBy)("matSortDirection",I.tableSetting.sortOrder)("dataSource",I.listSwaps)("ngClass",e.eq3(17,z4,"error"===I.flgLoading[0])),e.R7$(37),e.Y8G("matFooterRowDef",e.lJ4(19,$0)),e.R7$(),e.Y8G("matHeaderRowDef",I.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",I.displayedColumns),e.R7$(),e.Y8G("pageSize",I.pageSize)("pageSizeOptions",I.pageSizeOptions)("showFirstLastButtons",I.screenSize!==I.screenSizeEnum.XS))},dependencies:[w.YU,w.Sq,w.bT,w.B3,hi.me,hi.BC,hi.vS,os.aY,es.$z,br.fg,Ma.rl,Ma.nJ,vd.HM,Ie.DJ,Ie.sA,Ie.UI,cl.PW,cl.eI,sl.VO,sl.$2,ac.wT,Oc.B4,Oc.aE,Ra.Zl,Ra.tL,Ra.ji,Ra.cC,Ra.YV,Ra.iL,Ra.Zq,Ra.xW,Ra.KS,Ra.$R,Ra.Qo,Ra.YZ,Ra.NB,Ra.iF,kc.iy,go.ZF,go.Ld,w.QX,w.vh],encapsulation:2}))}return b(),_})();const Mc=b=>["../",b];function tu(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",11),e.bIt("click",function(){const D=v.eBV(m).$implicit,I=e.XpG();return v.Njj(I.onSelectedIndexChange(D))}),e.EFF(1),e.k0s()}if(2&b){const m=_.$implicit,E=e.XpG();e.Y8G("active",E.activeTab.link===m.link)("routerLink",e.eq3(3,Mc,m.link)),e.R7$(),e.JRh(m.name)}}let nu=(()=>{var b;class _{constructor(E,D,I){this.router=E,this.loopService=D,this.store=I,this.faInfinity=Ti.C8j,this.loopInfo=null,this.targetConf=2,this.inAmount=25e4,this.quotes=[],this.LoopTypeEnum=_t.C7,this.selectedSwapType=_t.C7.LOOP_OUT,this.storedSwaps=[],this.filteredSwaps=[],this.emptyTableMessage="No swap data available.",this.flgLoading=[!0],this.links=[{link:"loopout",name:"Loop Out"},{link:"loopin",name:"Loop In"}],this.activeTab=this.links[0],this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B,new gi.B,new gi.B]}ngOnInit(){this.store.dispatch((0,Bi.mt)({payload:_t.MZ.GET_LOOP_INFO})),this.loopService.getLoopInfo().pipe((0,li.Q)(this.unSubs[4])).subscribe({next:D=>{this.store.dispatch((0,Bi.y0)({payload:_t.MZ.GET_LOOP_INFO})),this.loopInfo=D,this.loopInfo&&this.loopInfo.version&&(this.loopInfo.version=this.loopInfo.version.split(" ")[0])},error:D=>{this.store.dispatch((0,Bi.y0)({payload:_t.MZ.GET_LOOP_INFO})),this.loopInfo.version=" Unknown"}}),this.loopService.listSwaps();const E=this.links.find(D=>this.router.url.includes(D.link));this.activeTab=E||this.links[0],this.selectedSwapType=E&&"loopin"===E.link?_t.C7.LOOP_IN:_t.C7.LOOP_OUT,this.router.events.pipe((0,li.Q)(this.unSubs[0]),(0,za.p)(D=>D instanceof Ha.gx)).subscribe({next:D=>{const I=this.links.find(Oe=>D.urlAfterRedirects.includes(Oe.link));this.activeTab=I||this.links[0],this.selectedSwapType=I&&"loopin"===I.link?_t.C7.LOOP_IN:_t.C7.LOOP_OUT}}),this.loopService.swapsChanged.pipe((0,li.Q)(this.unSubs[1])).subscribe({next:D=>{this.flgLoading[0]=!1,this.storedSwaps=D,this.filteredSwaps=this.storedSwaps?.filter(I=>I.type===this.selectedSwapType)},error:D=>{this.flgLoading[0]="error",this.emptyTableMessage=D.message?D.message:"No loop "+(this.selectedSwapType===_t.C7.LOOP_IN?"in":"out")+" available."}})}onSelectedIndexChange(E){this.selectedSwapType="loopin"===E.link?_t.C7.LOOP_IN:_t.C7.LOOP_OUT,this.filteredSwaps=this.storedSwaps?.filter(D=>D.type===this.selectedSwapType)}onLoop(E){E===_t.C7.LOOP_IN?this.loopService.getLoopInTermsAndQuotes(this.targetConf).pipe((0,li.Q)(this.unSubs[2])).subscribe({next:D=>{this.store.dispatch((0,Bi.xO)({payload:{data:{minQuote:D[0],maxQuote:D[1],direction:E,component:p2.D}}}))}}):this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,li.Q)(this.unSubs[3])).subscribe({next:D=>{this.store.dispatch((0,Bi.xO)({payload:{data:{minQuote:D[0],maxQuote:D[1],direction:E,component:p2.D}}}))}})}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Ha.Ix),e.rXU(E1.Q),e.rXU(mi.il))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-loop"]],standalone:!1,decls:15,vars:9,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"padding-gap-x-large","mt-1"],["mat-flat-button","","color","primary","type","button","tabindex","2",3,"click"],["fxLayout","row","fxFlex","100",3,"selectedSwapType","swapsData","flgLoading","emptyTableMessage"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,tu,2,5,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8)(12,"button",9),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onLoop(I.selectedSwapType))}),e.EFF(13),e.k0s()(),e.nrm(14,"rtl-swaps",10),e.k0s()()()}if(2&D){const Oe=e.sdS(10);e.R7$(),e.Y8G("icon",I.faInfinity),e.R7$(2),e.SpI("Loop (v",(null==I.loopInfo?null:I.loopInfo.version)||" Unknown",")"),e.R7$(4),e.Y8G("tabPanel",Oe),e.R7$(),e.Y8G("ngForOf",I.links),e.R7$(5),e.SpI("Start ",I.activeTab.name),e.R7$(),e.Y8G("selectedSwapType",I.selectedSwapType)("swapsData",I.filteredSwaps)("flgLoading",I.flgLoading)("emptyTableMessage",I.emptyTableMessage)}},dependencies:[w.Sq,os.aY,es.$z,K.RN,K.m2,Ie.DJ,Ie.sA,Ie.UI,Ut.Bu,Ut.hQ,Ut.Ql,lo.Wk,Cd],encapsulation:2}))}return b(),_})();var iu=l(1001),au=l(4412),bl=l(8810),L1=l(2462);let rc=(()=>{var b;class _{constructor(E,D,I,Oe){this.httpClient=E,this.logger=D,this.store=I,this.commonService=Oe,this.swapUrl="",this.swaps={},this.boltzInfo=null,this.boltzInfoChanged=new au.t(null),this.swapsChanged=new au.t({}),this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B,new gi.B]}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,Bi.mt)({payload:_t.MZ.GET_BOLTZ_SWAPS})),this.swapUrl=_t.H$+_t.rl.BOLTZ_API+"/listSwaps",this.httpClient.get(this.swapUrl).pipe((0,li.Q)(this.unSubs[0])).subscribe({next:E=>{this.store.dispatch((0,Bi.y0)({payload:_t.MZ.GET_BOLTZ_SWAPS})),this.swaps=E,this.swapsChanged.next(this.swaps)},error:E=>this.swapsChanged.error(this.handleErrorWithAlert(_t.MZ.GET_BOLTZ_SWAPS,this.swapUrl,E))})}swapInfo(E){return this.swapUrl=_t.H$+_t.rl.BOLTZ_API+"/swapInfo/"+E,this.httpClient.get(this.swapUrl).pipe((0,Ys.W)(D=>(0,Tr.of)(this.handleErrorWithAlert(_t.MZ.NO_SPINNER,this.swapUrl,D))))}getBoltzInfo(){this.store.dispatch((0,Bi.mt)({payload:_t.MZ.GET_BOLTZ_INFO})),this.swapUrl=_t.H$+_t.rl.BOLTZ_API+"/info",this.httpClient.get(this.swapUrl).pipe((0,li.Q)(this.unSubs[1])).subscribe({next:E=>{this.store.dispatch((0,Bi.y0)({payload:_t.MZ.GET_BOLTZ_INFO})),this.boltzInfo=E,this.boltzInfoChanged.next(this.boltzInfo)},error:E=>(this.boltzInfo={version:"2.0.0"},this.boltzInfoChanged.next(this.boltzInfo),(0,Tr.of)(this.handleErrorWithoutAlert(_t.MZ.GET_BOLTZ_INFO,this.swapUrl,E)))})}serviceInfo(){return this.store.dispatch((0,Bi.mt)({payload:_t.MZ.GET_SERVICE_INFO})),this.swapUrl=_t.H$+_t.rl.BOLTZ_API+"/serviceInfo",this.httpClient.get(this.swapUrl).pipe((0,li.Q)(this.unSubs[2]),(0,us.T)(E=>(this.store.dispatch((0,Bi.y0)({payload:_t.MZ.GET_SERVICE_INFO})),E)),(0,Ys.W)(E=>(0,Tr.of)(this.handleErrorWithAlert(_t.MZ.GET_SERVICE_INFO,this.swapUrl,E))))}swapOut(E,D,I){const Oe={amount:E,address:D,acceptZeroConf:I};return this.swapUrl=_t.H$+_t.rl.BOLTZ_API+"/createreverseswap",this.httpClient.post(this.swapUrl,Oe).pipe((0,Ys.W)(Ct=>this.handleErrorWithoutAlert("Swap Out for Address: "+D,_t.MZ.NO_SPINNER,Ct)))}swapIn(E,D,I){const Oe={amount:E,sendFromInternal:D,refundAddress:I};return this.swapUrl=_t.H$+_t.rl.BOLTZ_API+"/createswap",this.httpClient.post(this.swapUrl,Oe).pipe((0,Ys.W)(Ct=>this.handleErrorWithoutAlert("Swap In for Amount: "+E,_t.MZ.NO_SPINNER,Ct)))}handleErrorWithoutAlert(E,D,I){let Oe="";return this.logger.error("ERROR IN: "+E+"\n"+JSON.stringify(I)),this.store.dispatch((0,Bi.y0)({payload:D})),401===I.status?(Oe="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Bi.ri)({payload:Oe}))):503===I.status?(Oe="Unable to Connect to Boltz Server.",this.store.dispatch((0,Bi.xO)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:I.status,message:"Unable to Connect to Boltz Server",URL:E},component:L1.f}}}))):Oe=this.commonService.extractErrorMessage(I),(0,bl.$)(()=>new Error(Oe))}handleErrorWithAlert(E,D,I){let Oe="";if(401===I.status&&(this.logger.info("Redirecting to Login"),this.store.dispatch((0,Bi.ri)({payload:"Authentication Failed: "+JSON.stringify(I.error)}))),this.logger.error(I),this.store.dispatch((0,Bi.y0)({payload:E})),401===I.status)Oe="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Bi.ri)({payload:Oe}));else if(503===I.status)Oe="Unable to Connect to Boltz Server.",setTimeout(()=>{this.store.dispatch((0,Bi.xO)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:I.status,message:"Unable to Connect to Boltz Server",URL:D},component:L1.f}}}))},100);else{Oe=this.commonService.extractErrorMessage(I);const Ct=I.error&&I.error.error&&I.error.error.code?I.error.error.code:I.error&&I.error.code?I.error.code:I.code?I.code:I.status;setTimeout(()=>{this.store.dispatch((0,Bi.xO)({payload:{data:{type:_t.A$.ERROR,alertTitle:"ERROR",message:{code:Ct,message:Oe,URL:D},component:L1.f}}}))},100)}return{message:Oe}}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(v.KVO(nr.Qq),v.KVO(Aa.gP),v.KVO(mi.il),v.KVO(Qo.h))},this.\u0275prov=v.jDH({token:_,factory:_.\u0275fac}))}return b(),_})();const I1=b=>({"display-none":b});function Yr(b,_){1&b&&e.eu8(0)}function n1(b,_){if(1&b&&(e.j41(0,"div",4)(1,"span",5),e.EFF(2),e.k0s()()),2&b){const m=e.XpG();e.R7$(2),e.JRh(null!=m.swapStatus&&m.swapStatus.error?null==m.swapStatus?null:m.swapStatus.error:"Unknown Error.")}}function su(b,_){if(1&b&&(e.j41(0,"div",7)(1,"h4",8),e.EFF(2,"Routing Fee (mSats)"),e.k0s(),e.j41(3,"span",5),e.EFF(4),e.nI1(5,"number"),e.k0s()()),2&b){const m=e.XpG(2);e.R7$(4),e.JRh(e.bMT(5,1,null==m.swapStatus?null:m.swapStatus.routingFeeMilliSat))}}function oc(b,_){if(1&b&&(e.j41(0,"div",7)(1,"h4",8),e.EFF(2,"Claim Transaction ID"),e.k0s(),e.j41(3,"span",5),e.EFF(4),e.k0s()()),2&b){const m=e.XpG(2);e.R7$(4),e.JRh(null==m.swapStatus?null:m.swapStatus.claimTransactionId)}}function k1(b,_){if(1&b&&(e.j41(0,"div",4)(1,"div",6)(2,"div",7)(3,"h4",8),e.EFF(4,"ID"),e.k0s(),e.j41(5,"span",5),e.EFF(6),e.k0s()(),e.DNE(7,su,6,3,"div",9)(8,oc,5,1,"div",9),e.k0s(),e.nrm(9,"mat-divider",10),e.j41(10,"div",6)(11,"div",11)(12,"h4",8),e.EFF(13,"Lockup Address"),e.k0s(),e.j41(14,"span",5),e.EFF(15),e.k0s()()()()),2&b){const m=e.XpG();e.R7$(6),e.JRh(null==m.swapStatus?null:m.swapStatus.id),e.R7$(),e.Y8G("ngIf",m.acceptZeroConf),e.R7$(),e.Y8G("ngIf",m.acceptZeroConf),e.R7$(7),e.JRh(null==m.swapStatus?null:m.swapStatus.lockupAddress)}}function C2(b,_){1&b&&(e.j41(0,"span",22),e.EFF(1,"N/A"),e.k0s())}function Y4(b,_){1&b&&(e.j41(0,"span",23),e.EFF(1,"QR Code Not Applicable"),e.k0s())}function x2(b,_){1&b&&e.nrm(0,"mat-divider",24),2&b&&e.Y8G("inset",!0)}function xd(b,_){if(1&b&&(e.j41(0,"div",6)(1,"div",11)(2,"h4",8),e.EFF(3,"Transaction ID"),e.k0s(),e.j41(4,"span",5),e.EFF(5),e.k0s()()()),2&b){const m=e.XpG(2);e.R7$(5),e.JRh(null==m.swapStatus?null:m.swapStatus.txId)}}function Q4(b,_){if(1&b&&(e.j41(0,"div",6)(1,"div",25)(2,"h4",8),e.EFF(3,"ID"),e.k0s(),e.j41(4,"span",5),e.EFF(5),e.k0s()(),e.j41(6,"div",25)(7,"h4",8),e.EFF(8,"Expected Amount (Sats)"),e.k0s(),e.j41(9,"span",5),e.EFF(10),e.nI1(11,"number"),e.k0s()()()),2&b){const m=e.XpG(2);e.R7$(5),e.JRh(null==m.swapStatus?null:m.swapStatus.id),e.R7$(5),e.JRh(e.bMT(11,2,null==m.swapStatus?null:m.swapStatus.expectedAmount))}}function ms(b,_){1&b&&e.nrm(0,"mat-divider",10)}function $4(b,_){if(1&b&&(e.j41(0,"div",6)(1,"div",11)(2,"h4",8),e.EFF(3,"Address"),e.k0s(),e.j41(4,"span",5),e.EFF(5),e.k0s()()()),2&b){const m=e.XpG(2);e.R7$(5),e.JRh(null==m.swapStatus?null:m.swapStatus.address)}}function lc(b,_){1&b&&e.nrm(0,"mat-divider",10)}function ru(b,_){if(1&b&&(e.j41(0,"div",6)(1,"div",11)(2,"h4",8),e.EFF(3,"BIP 21"),e.k0s(),e.j41(4,"span",5),e.EFF(5),e.k0s()()()),2&b){const m=e.XpG(2);e.R7$(5),e.JRh(null==m.swapStatus?null:m.swapStatus.bip21)}}function ou(b,_){if(1&b&&(e.j41(0,"div",12)(1,"div",13),e.nrm(2,"qr-code",14),e.DNE(3,C2,2,0,"span",15),e.k0s(),e.j41(4,"div",16)(5,"div",4)(6,"div",17),e.nrm(7,"qr-code",14),e.DNE(8,Y4,2,0,"span",18),e.k0s(),e.DNE(9,x2,1,1,"mat-divider",19)(10,xd,6,1,"div",20)(11,Q4,12,4,"div",20)(12,ms,1,0,"mat-divider",21)(13,$4,6,1,"div",20)(14,lc,1,0,"mat-divider",21)(15,ru,6,1,"div",20),e.k0s()()()),2&b){const m=e.XpG();e.R7$(),e.Y8G("fxLayoutAlign",""!==((null==m.swapStatus?null:m.swapStatus.txId)||(null==m.swapStatus?null:m.swapStatus.address))?"center start":"center center")("ngClass",e.eq3(17,I1,m.screenSize===m.screenSizeEnum.XS||m.screenSize===m.screenSizeEnum.SM)),e.R7$(),e.Y8G("value",(null==m.swapStatus?null:m.swapStatus.txId)||(null==m.swapStatus?null:m.swapStatus.address))("size",m.qrWidth),e.R7$(),e.Y8G("ngIf",""===((null==m.swapStatus?null:m.swapStatus.txId)||(null==m.swapStatus?null:m.swapStatus.address))),e.R7$(3),e.Y8G("fxLayoutAlign",""!==((null==m.swapStatus?null:m.swapStatus.txId)||(null==m.swapStatus?null:m.swapStatus.address))?"center start":"center center")("ngClass",e.eq3(19,I1,m.screenSize!==m.screenSizeEnum.XS&&m.screenSize!==m.screenSizeEnum.SM)),e.R7$(),e.Y8G("value",(null==m.swapStatus?null:m.swapStatus.txId)||(null==m.swapStatus?null:m.swapStatus.address))("size",m.qrWidth),e.R7$(),e.Y8G("ngIf",""===((null==m.swapStatus?null:m.swapStatus.txId)||(null==m.swapStatus?null:m.swapStatus.address))),e.R7$(),e.Y8G("ngIf",m.screenSize===m.screenSizeEnum.XS||m.screenSize===m.screenSizeEnum.SM),e.R7$(),e.Y8G("ngIf",m.sendFromInternal),e.R7$(),e.Y8G("ngIf",!m.sendFromInternal),e.R7$(),e.Y8G("ngIf",!m.sendFromInternal),e.R7$(),e.Y8G("ngIf",!m.sendFromInternal),e.R7$(),e.Y8G("ngIf",!m.sendFromInternal),e.R7$(),e.Y8G("ngIf",!m.sendFromInternal)}}let lu=(()=>{var b;class _{constructor(E){this.commonService=E,this.swapStatus=null,this.direction=_t.Bd.SWAP_OUT,this.acceptZeroConf=!1,this.sendFromInternal=!0,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=_t.f7,this.swapTypeEnum=_t.Bd}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.screenSize===_t.f7.XS&&(this.qrWidth=180)}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Qo.h))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-boltz-swap-status"]],inputs:{swapStatus:"swapStatus",direction:"direction",acceptZeroConf:"acceptZeroConf",sendFromInternal:"sendFromInternal"},standalone:!1,decls:7,vars:1,consts:[["swapFailedBlock",""],["swapOutBlock",""],["swapInBlock",""],[4,"ngTemplateOutlet"],["fxLayout","column"],[1,"foreground-secondary-text"],["fxLayout","row"],["fxFlex","33"],["fxLayoutAlign","start",1,"font-bold-500"],["fxFlex","33",4,"ngIf"],[1,"w-100","my-1"],["fxFlex","100"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row",4,"ngIf"],["class","w-100 my-1",4,"ngIf"],[1,"font-size-300"],[1,"font-size-120"],[1,"my-1",3,"inset"],["fxFlex","50"]],template:function(D,I){if(1&D&&e.DNE(0,Yr,1,0,"ng-container",3)(1,n1,3,1,"ng-template",null,0,e.C5r)(3,k1,16,4,"ng-template",null,1,e.C5r)(5,ou,16,21,"ng-template",null,2,e.C5r),2&D){const Oe=e.sdS(2),Ct=e.sdS(4),Bt=e.sdS(6);e.Y8G("ngTemplateOutlet",null!=I.swapStatus&&I.swapStatus.error?Oe:I.direction===I.swapTypeEnum.SWAP_OUT?Ct:Bt)}},dependencies:[w.YU,w.bT,w.T3,Hi.q,Ie.DJ,Ie.sA,Ie.UI,cl.PW,Yl.Um,w.QX],encapsulation:2}))}return b(),_})(),O1=(()=>{var b;class _{constructor(){this.serviceInfo={},this.direction=_t.Bd.SWAP_OUT,this.swapTypeEnum=_t.Bd}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-boltz-service-info"]],inputs:{serviceInfo:"serviceInfo",direction:"direction"},standalone:!1,decls:33,vars:13,consts:[["fxFlex","100",1,"flat-expansion-panel","mb-1",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"]],template:function(D,I){1&D&&(e.j41(0,"mat-expansion-panel",0)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",1),e.EFF(4,"Service Information"),e.k0s()()(),e.j41(5,"div",2)(6,"div",3)(7,"div",4)(8,"h4",5),e.EFF(9,"Minimum Amount (Sats)"),e.k0s(),e.j41(10,"span",6),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div",4)(14,"h4",5),e.EFF(15,"Maximum Amount (Sats)"),e.k0s(),e.j41(16,"span",6),e.EFF(17),e.nI1(18,"number"),e.k0s()()(),e.nrm(19,"mat-divider",7),e.j41(20,"div",3)(21,"div",4)(22,"h4",5),e.EFF(23,"Fee Percentage"),e.k0s(),e.j41(24,"span",6),e.EFF(25),e.nI1(26,"number"),e.k0s()(),e.j41(27,"div",4)(28,"h4",5),e.EFF(29,"Miner Fee (Sats)"),e.k0s(),e.j41(30,"span",6),e.EFF(31),e.nI1(32,"number"),e.k0s()()()()()),2&D&&(e.Y8G("expanded",!0),e.R7$(11),e.JRh(e.bMT(12,5,null==I.serviceInfo||null==I.serviceInfo.limits?null:I.serviceInfo.limits.minimal)),e.R7$(6),e.JRh(e.bMT(18,7,null==I.serviceInfo||null==I.serviceInfo.limits?null:I.serviceInfo.limits.maximal)),e.R7$(8),e.JRh(e.bMT(26,9,null==I.serviceInfo||null==I.serviceInfo.fees?null:I.serviceInfo.fees.percentage)),e.R7$(6),e.JRh(e.bMT(32,11,I.direction===I.swapTypeEnum.SWAP_OUT?null==I.serviceInfo||null==I.serviceInfo.fees||null==I.serviceInfo.fees.miner?null:I.serviceInfo.fees.miner.reverse:null==I.serviceInfo||null==I.serviceInfo.fees||null==I.serviceInfo.fees.miner?null:I.serviceInfo.fees.miner.normal)))},dependencies:[or.GK,or.Z2,or.WN,Hi.q,Ie.DJ,Ie.sA,Ie.UI,w.QX],encapsulation:2}))}return b(),_})();var Ed=l(6949);const Sc=(b,_)=>({"small-svg":b,"large-svg":_});function cu(b,_){1&b&&e.eu8(0)}function E2(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17),e.k0s(),v.joV(),e.j41(12,"div",18)(13,"mat-card-title"),e.EFF(14,"Boltz Submarine Swaps explained."),e.k0s()(),e.j41(15,"div",19)(16,"mat-card-subtitle",20),e.EFF(17," Boltz is a privacy-first account free exchange and a Lightning service provider. By doing a Submarine Swap on Boltz, you can swap your on-chain Bitcoin for Lightning Bitcoin. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Sc,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}function Md(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",21),e.nrm(2,"path",22)(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),e.k0s(),v.joV(),e.j41(9,"div",18)(10,"mat-card-title"),e.EFF(11,"Step 1: Deciding to Submarine Swap"),e.k0s()(),e.j41(12,"div",19)(13,"mat-card-subtitle",20),e.EFF(14," You have one or more Lightning channels that are running low on outbound liquidity and you want to fund it using your on-chain Bitcoin. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Sc,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}function Pc(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",29),e.nrm(2,"path",30)(3,"path",31)(4,"path",32)(5,"path",33)(6,"path",34)(7,"circle",35)(8,"rect",36),e.j41(9,"defs")(10,"pattern",37),e.nrm(11,"use",38),e.k0s(),e.nrm(12,"image",39),e.k0s()(),v.joV(),e.j41(13,"div",18)(14,"mat-card-title"),e.EFF(15,"Step 2: Sending the on-chain funds"),e.k0s()(),e.j41(16,"div",19)(17,"mat-card-subtitle",20),e.EFF(18," You send the on-chain funds to an address which can only be spent by Boltz when it pays a Lightning invoice to your node. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Sc,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}function Sd(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",40)(2,"g",41),e.nrm(3,"path",42)(4,"path",43)(5,"path",44)(6,"path",45)(7,"path",46),e.k0s(),e.j41(8,"defs")(9,"clipPath",47),e.nrm(10,"rect",48),e.k0s()()(),v.joV(),e.j41(11,"div",18)(12,"mat-card-title"),e.EFF(13,"Step 3: Receiving the funds on Lightning"),e.k0s()(),e.j41(14,"div",19)(15,"mat-card-subtitle",20),e.EFF(16," Boltz pays the Lightning invoice to your node and claims the on-chain funds locked in the previous step. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Sc,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}function M2(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",49),e.nrm(2,"path",50)(3,"path",51)(4,"path",52)(5,"path",53)(6,"path",54),e.k0s(),v.joV(),e.j41(7,"div",18)(8,"mat-card-title"),e.EFF(9,"Done!"),e.k0s()(),e.j41(10,"div",19)(11,"mat-card-subtitle",20),e.EFF(12," You swapped your on-chain Bitcoin for Lightning Bitcoin, while also adding outbound capacity for your channels in the process - all in a non-custodial manner. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Sc,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}let S2=(()=>{var b;class _{constructor(E){this.commonService=E,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.bkB,this.screenSize="",this.screenSizeEnum=_t.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(E){2===E.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===E.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Qo.h))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-boltz-swapin-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["swapStepBlock1",""],["swapStepBlock2",""],["swapStepBlock3",""],["swapStepBlock4",""],["swapStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between center",3,"swipe"],["fxFlex","30","width","323","height","323","viewBox","0 0 323 323","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M53.8333 134.583H80.75L94.2083 161.5L117.792 134.961C121.616 130.658 125.869 126.602 131.194 124.413C136.45 122.252 142.103 121.125 147.842 121.125H242.25C286.847 121.125 323 157.278 323 201.875C323 246.472 286.847 282.625 242.25 282.625H147.842C142.103 282.625 136.45 281.497 131.194 279.337C125.869 277.149 121.616 273.092 117.792 268.79L94.2083 242.25L80.75 269.167H53.8333L67.2917 228.792L53.8333 201.875L67.2917 174.958L53.8333 134.583Z",1,"fill-color-0"],["d","M26.9167 107.667H53.8333L67.2917 134.583L90.8755 108.044C94.6993 103.741 98.9527 99.6849 104.277 97.4963C109.534 95.3357 115.187 94.2083 120.925 94.2083H215.333C259.93 94.2083 296.083 130.361 296.083 174.958C296.083 219.555 259.93 255.708 215.333 255.708H120.925C115.187 255.708 109.534 254.581 104.277 252.42C98.9527 250.232 94.6993 246.176 90.8755 241.873L67.2917 215.333L53.8333 242.25H26.9167L40.375 201.875L26.9167 174.958L40.375 148.042L26.9167 107.667Z",1,"stroke-color-thick"],["d","M134.583 215.333C142.016 215.333 148.042 209.308 148.042 201.875C148.042 194.442 142.016 188.417 134.583 188.417C127.151 188.417 121.125 194.442 121.125 201.875C121.125 209.308 127.151 215.333 134.583 215.333Z",1,"fill-color-15"],["d","M107.667 188.417C115.1 188.417 121.125 182.391 121.125 174.958C121.125 167.526 115.1 161.5 107.667 161.5C100.234 161.5 94.2083 167.526 94.2083 174.958C94.2083 182.391 100.234 188.417 107.667 188.417Z",1,"stroke-color-thick"],["d","M201.875 215.333C209.308 215.333 215.333 209.308 215.333 201.875C215.333 194.442 209.308 188.417 201.875 188.417C194.442 188.417 188.417 194.442 188.417 201.875C188.417 209.308 194.442 215.333 201.875 215.333Z",1,"fill-color-15"],["d","M174.958 188.417C182.391 188.417 188.417 182.391 188.417 174.958C188.417 167.526 182.391 161.5 174.958 161.5C167.526 161.5 161.5 167.526 161.5 174.958C161.5 182.391 167.526 188.417 174.958 188.417Z",1,"stroke-color-thick"],["d","M269.167 215.333C276.599 215.333 282.625 209.308 282.625 201.875C282.625 194.442 276.599 188.417 269.167 188.417C261.734 188.417 255.708 194.442 255.708 201.875C255.708 209.308 261.734 215.333 269.167 215.333Z",1,"fill-color-15"],["d","M242.25 188.417C249.683 188.417 255.708 182.391 255.708 174.958C255.708 167.526 249.683 161.5 242.25 161.5C234.817 161.5 228.792 167.526 228.792 174.958C228.792 182.391 234.817 188.417 242.25 188.417Z",1,"stroke-color-thick"],["d","M189.321 97C186.935 97 185 98.9345 185 101.321V112.679C185 115.065 186.935 117 189.321 117H237.679C240.065 117 242 115.065 242 112.679V101.321C242 98.9345 240.065 97 237.679 97H189.321Z",1,"fill-color-15"],["d","M161.5 67.2917V94.2083H215.333V67.2917H161.5Z",1,"stroke-color-thick"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","width","347","height","169","viewBox","0 0 347 169","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M89 157.417V41.5833C89 35.2125 92.75 30 97.3333 30H230.667C235.25 30 239 35.2125 239 41.5833V157.417C239 163.787 235.25 169 230.667 169H97.3333C92.75 169 89 163.787 89 157.417Z",1,"fill-color-0"],["d","M6.25 134.625V18.375C6.25 11.9812 11.4812 6.75 17.875 6.75H203.875C210.269 6.75 215.5 11.9812 215.5 18.375V134.625C215.5 141.019 210.269 146.25 203.875 146.25H17.875C11.4812 146.25 6.25 141.019 6.25 134.625Z",1,"stroke-color-thin"],["d","M256.188 123H238.75V76.5H256.188C259.442 76.5 262 79.0575 262 82.3125V117.188C262 120.443 259.442 123 256.188 123Z",1,"fill-color-15"],["d","M232.938 99.75H215.5V53.25H232.938C236.193 53.25 238.75 55.8075 238.75 59.0625V93.9375C238.75 97.1925 236.193 99.75 232.938 99.75Z",1,"stroke-color-thin"],["d","M146 53V87.875",1,"stroke-color-thin"],["d","M146 122.634V122.749",1,"stroke-color-thin"],["d","M344.698 95.3022C346.74 97.3445 346.74 100.656 344.698 102.698L311.418 135.978C309.376 138.02 306.065 138.02 304.022 135.978C301.98 133.935 301.98 130.624 304.022 128.582L333.604 99L304.022 69.418C301.98 67.3758 301.98 64.0647 304.022 62.0225C306.065 59.9803 309.376 59.9803 311.418 62.0225L344.698 95.3022ZM277 93.7706L341 93.7706V104.229L277 104.229V93.7706Z",1,"fill-color-15"],["fxFlex","30","width","454","height","243","viewBox","0 0 454 243","fill","none","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["d","M141.75 172.125C178.098 172.125 207.562 142.66 207.562 106.312C207.562 69.9653 178.098 40.5 141.75 40.5C105.403 40.5 75.9375 69.9653 75.9375 106.312C75.9375 142.66 105.403 172.125 141.75 172.125Z",1,"fill-color-0"],["d","M121.5 151.875C157.848 151.875 187.312 122.41 187.312 86.0625C187.312 49.7153 157.848 20.25 121.5 20.25C85.1528 20.25 55.6875 49.7153 55.6875 86.0625C55.6875 122.41 85.1528 151.875 121.5 151.875Z",1,"stroke-color-thiner"],["d","M20.25 192.375H222.75",1,"stroke-color-thiner"],["d","M192.375 222.75L222.75 192.375L192.375 162",1,"stroke-color-thiner"],["fill-rule","evenodd","clip-rule","evenodd","d","M161.033 82.5635C162.307 74.0523 155.826 69.4769 146.965 66.4247L149.84 54.8952L142.822 53.1462L140.023 64.3718C138.178 63.9121 136.283 63.4783 134.4 63.0486L137.219 51.749L130.205 50L127.328 61.5255C125.801 61.1777 124.302 60.8338 122.847 60.4721L122.855 60.4361L113.177 58.0194L111.31 65.5152C111.31 65.5152 116.517 66.7085 116.407 66.7825C119.249 67.4921 119.763 69.373 119.677 70.8641L116.403 83.9987C116.599 84.0487 116.852 84.1206 117.132 84.2326C117.096 84.2236 117.06 84.2146 117.023 84.2054C116.981 84.1948 116.938 84.184 116.894 84.1731C116.732 84.1323 116.563 84.09 116.391 84.0487L111.801 102.448C111.453 103.312 110.572 104.607 108.585 104.115C108.655 104.217 103.484 102.842 103.484 102.842L100 110.875L109.133 113.152C110.152 113.408 111.16 113.67 112.156 113.93L112.158 113.931L112.159 113.931C112.823 114.104 113.481 114.276 114.136 114.443L111.232 126.105L118.242 127.854L121.118 116.316C123.033 116.836 124.892 117.316 126.711 117.768L123.844 129.251L130.862 131L133.767 119.361C145.734 121.625 154.733 120.712 158.521 109.888C161.573 101.173 158.369 96.1458 152.072 92.8677C156.658 91.8103 160.112 88.794 161.033 82.5635ZM144.998 105.049C143.008 113.044 130.493 109.739 124.766 108.226L124.766 108.226C124.251 108.09 123.791 107.969 123.398 107.871L127.252 92.4219C127.73 92.5412 128.314 92.6723 128.976 92.8208L128.976 92.8208C134.899 94.1498 147.037 96.8734 144.998 105.049ZM130.167 85.6513C134.942 86.9255 145.356 89.7047 147.17 82.4376C149.022 75.0044 138.901 72.7637 133.957 71.6694C133.401 71.5463 132.911 71.4377 132.51 71.3379L129.016 85.3499C129.346 85.4322 129.733 85.5356 130.167 85.6513Z",1,"fill-color-15"],["cx","371.815","cy","95.815","r","81.815",1,"fill-color-boltz-bk"],["x","313.615","y","82.836","width","110.745","height","30.1472","fill","url(#pattern0)"],["id","pattern0","patternContentUnits","objectBoundingBox","width","1","height","1"],[0,"xlink","href","#image0","transform","scale(0.00185185 0.00680272)"],["id","image0","width","540","height","147",0,"xlink","href","data:image/png;base64,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"],["fxFlex","30","width","295","height","295","viewBox","0 0 295 295","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["clip-path","url(#clip0)"],["d","M182.629 183.635C213.842 170.774 228.719 135.046 215.857 103.833C202.996 72.6204 167.268 57.7435 136.055 70.6048C104.843 83.4659 89.966 119.195 102.827 150.407C115.688 181.62 151.417 196.496 182.629 183.635Z",1,"fill-color-0"],["d","M154.81 93.8059C152.146 100.719 149.483 108.164 146.287 115.608C146.287 115.608 146.287 116.672 147.353 116.672H169.191C169.191 116.672 169.191 117.204 169.723 117.736L137.765 153.364C137.233 152.832 137.233 152.301 137.233 151.769L148.418 127.839V125.712H126.047V123.585L153.212 93.8059H154.81Z",1,"fill-color-15"],["d","M158.075 173.411C189.288 160.55 204.164 124.822 191.303 93.6088C178.442 62.3964 142.714 47.5195 111.501 60.3808C80.2885 73.2419 65.4118 108.971 78.2729 140.183C91.1342 171.396 126.863 186.272 158.075 173.411Z",1,"stroke-color-thinest"],["d","M259.352 172.363L85.4595 244.016",1,"stroke-color-thinest"],["d","M122.291 259.352L85.4593 244.016L100.795 207.184",1,"stroke-color-thinest"],["id","clip0"],["width","225.692","height","225.692","transform","translate(0 85.9831) rotate(-22.3941)",1,"fill-color-30"],["fxFlex","30","width","300","height","300","viewBox","0 0 300 300","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M50 237.5V112.5C50 105.625 55.625 100 62.5 100H262.5C269.375 100 275 105.625 275 112.5V237.5C275 244.375 269.375 250 262.5 250H62.5C55.625 250 50 244.375 50 237.5Z",1,"fill-color-0"],["d","M25 212.5V87.5C25 80.625 30.625 75 37.5 75H237.5C244.375 75 250 80.625 250 87.5V212.5C250 219.375 244.375 225 237.5 225H37.5C30.625 225 25 219.375 25 212.5Z",1,"stroke-color"],["d","M293.75 200H275V150H293.75C297.25 150 300 152.75 300 156.25V193.75C300 197.25 297.25 200 293.75 200Z",1,"fill-color-0"],["d","M268.75 175H250V125H268.75C272.25 125 275 127.75 275 131.25V168.75C275 172.25 272.25 175 268.75 175Z",1,"stroke-color"],["d","M137.5 187.5L156.25 150H118.75L137.5 112.5",1,"stroke-color"]],template:function(D,I){if(1&D&&e.DNE(0,cu,1,0,"ng-container",5)(1,E2,18,5,"ng-template",null,0,e.C5r)(3,Md,15,5,"ng-template",null,1,e.C5r)(5,Pc,19,5,"ng-template",null,2,e.C5r)(7,Sd,17,5,"ng-template",null,3,e.C5r)(9,M2,13,5,"ng-template",null,4,e.C5r),2&D){const Oe=e.sdS(2),Ct=e.sdS(4),Bt=e.sdS(6),yn=e.sdS(8),Yn=e.sdS(10);e.Y8G("ngTemplateOutlet",1===I.stepNumber?Oe:2===I.stepNumber?Ct:3===I.stepNumber?Bt:4===I.stepNumber?yn:Yn)}},dependencies:[w.YU,w.T3,K.Lc,K.dh,Ie.DJ,Ie.sA,Ie.UI,cl.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Ed.k]}}))}return b(),_})();const i1=(b,_)=>({"small-svg":b,"large-svg":_});function du(b,_){1&b&&e.eu8(0)}function T2(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17),e.k0s(),v.joV(),e.j41(12,"div",18)(13,"mat-card-title"),e.EFF(14,"Boltz Reverse Submarine Swap explained."),e.k0s()(),e.j41(15,"div",19)(16,"mat-card-subtitle",20),e.EFF(17," Boltz is a privacy-first account free exchange and a Lightning Service Provider. By doing a Reverse Submarine Swap on Boltz, you can swap your Lightning Bitcoin for on-chain Bitcoin. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,i1,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}function uu(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",21)(2,"g",22),e.nrm(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),e.k0s(),e.nrm(9,"path",29),e.j41(10,"defs")(11,"clipPath",30),e.nrm(12,"rect",31),e.k0s()()(),v.joV(),e.j41(13,"div",18)(14,"mat-card-title"),e.EFF(15,"Step 1: Deciding to Reverse Submarine Swap"),e.k0s()(),e.j41(16,"div",19)(17,"mat-card-subtitle",20),e.EFF(18," You have one or more channels that are running low on inbound capacity or you want to move some of your Lightning Bitcoin to your onchain wallet. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,i1,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}function hu(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",32),e.nrm(2,"path",33)(3,"path",34)(4,"path",35)(5,"path",36)(6,"path",37)(7,"circle",38)(8,"rect",39),e.j41(9,"defs")(10,"pattern",40),e.nrm(11,"use",41),e.k0s(),e.nrm(12,"image",42),e.k0s()(),v.joV(),e.j41(13,"div",18)(14,"mat-card-title"),e.EFF(15,"Step 2: Paying the Lightning Invoice"),e.k0s()(),e.j41(16,"div",19)(17,"mat-card-subtitle",20),e.EFF(18," Your Boltz client generates a secret which is sent to Boltz. In return Boltz sends a Lightning invoice based on that secret. Your Lightning node pays that invoice which moves some of your local balance to the other side of the channel. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,i1,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}function mu(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",43)(2,"g",22),e.nrm(3,"path",44)(4,"path",45)(5,"path",46)(6,"path",47)(7,"path",48),e.k0s(),e.j41(8,"defs")(9,"clipPath",30),e.nrm(10,"rect",49),e.k0s()()(),v.joV(),e.j41(11,"div",18)(12,"mat-card-title"),e.EFF(13,"Step 3: Receiving the funds on-chain"),e.k0s()(),e.j41(14,"div",19)(15,"mat-card-subtitle",20),e.EFF(16," In return for paying the invoice, Boltz locks on-chain BTC. Your node claims that onchain BTC to your wallet and by doing that, reveals the secret. With that secret Boltz can settle the Lightning invoice paid by your node. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,i1,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}function R1(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",50),e.nrm(2,"path",51)(3,"path",52)(4,"path",53)(5,"path",54)(6,"path",55),e.k0s(),v.joV(),e.j41(7,"div",18)(8,"mat-card-title"),e.EFF(9,"Done!"),e.k0s()(),e.j41(10,"div",19)(11,"mat-card-subtitle",20),e.EFF(12," You have now successfully received your funds in your on-chain wallet and also spent your local balance to increase the inbound capacity of your node - all in a non-custodial manner. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,i1,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}let fu=(()=>{var b;class _{constructor(E){this.commonService=E,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.bkB,this.screenSize="",this.screenSizeEnum=_t.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(E){2===E.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===E.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Qo.h))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-boltz-swapout-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["swapStepBlock1",""],["swapStepBlock2",""],["swapStepBlock3",""],["swapStepBlock4",""],["swapStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between center",3,"swipe"],["fxFlex","30","width","368","height","368","viewBox","0 0 368 368","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M306.667 153.333H276L260.667 184L233.797 153.763C229.441 148.861 224.595 144.24 218.529 141.746C212.54 139.284 206.099 138 199.561 138H92C41.19 138 1.52588e-05 179.19 1.52588e-05 230C1.52588e-05 280.81 41.19 322 92 322H199.561C206.099 322 212.54 320.715 218.529 318.254C224.595 315.761 229.441 311.139 233.797 306.237L260.667 276L276 306.667H306.667L291.333 260.667L306.667 230L291.333 199.333L306.667 153.333Z",1,"fill-color-0"],["d","M337.333 122.667H306.667L291.333 153.333L264.464 123.097C260.107 118.194 255.261 113.573 249.195 111.079C243.206 108.618 236.766 107.333 230.228 107.333H122.667C71.8566 107.333 30.6667 148.523 30.6667 199.333C30.6667 250.143 71.8566 291.333 122.667 291.333H230.228C236.766 291.333 243.206 290.048 249.195 287.587C255.261 285.094 260.107 280.473 264.464 275.571L291.333 245.333L306.667 276H337.333L322 230L337.333 199.333L322 168.667L337.333 122.667Z",1,"stroke-color-thicker"],["d","M214.667 245.333C206.198 245.333 199.333 238.468 199.333 230C199.333 221.532 206.198 214.667 214.667 214.667C223.135 214.667 230 221.532 230 230C230 238.468 223.135 245.333 214.667 245.333Z",1,"fill-color-15"],["d","M245.333 214.667C236.865 214.667 230 207.802 230 199.333C230 190.865 236.865 184 245.333 184C253.802 184 260.667 190.865 260.667 199.333C260.667 207.802 253.802 214.667 245.333 214.667Z",1,"stroke-color-thicker"],["d","M138 245.333C129.532 245.333 122.667 238.468 122.667 230C122.667 221.532 129.532 214.667 138 214.667C146.468 214.667 153.333 221.532 153.333 230C153.333 238.468 146.468 245.333 138 245.333Z",1,"fill-color-15"],["d","M168.667 214.667C160.198 214.667 153.333 207.802 153.333 199.333C153.333 190.865 160.198 184 168.667 184C177.135 184 184 190.865 184 199.333C184 207.802 177.135 214.667 168.667 214.667Z",1,"stroke-color-thicker"],["d","M61.3334 245.333C52.865 245.333 46 238.468 46 230C46 221.532 52.865 214.667 61.3334 214.667C69.8017 214.667 76.6667 221.532 76.6667 230C76.6667 238.468 69.8017 245.333 61.3334 245.333Z",1,"fill-color-15"],["d","M92 214.667C83.5316 214.667 76.6666 207.802 76.6666 199.333C76.6666 190.865 83.5316 184 92 184C100.468 184 107.333 190.865 107.333 199.333C107.333 207.802 100.468 214.667 92 214.667Z",1,"stroke-color-thicker"],["d","M239.077 111C241.796 111 244 113.204 244 115.923V126.077C244 128.796 241.796 131 239.077 131H191.923C189.204 131 187 128.796 187 126.077V115.923C187 113.204 189.204 111 191.923 111H239.077Z",1,"fill-color-15"],["d","M184 76.6666V107.333H122.667V76.6666H184Z",1,"stroke-color-thicker"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","width","383","height","279","viewBox","0 0 383 279","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["clip-path","url(#clip0)"],["d","M267.882 220.417V104.583C267.882 98.2125 263.809 93 258.832 93H114.029C109.051 93 104.978 98.2125 104.978 104.583V220.417C104.978 226.787 109.051 232 114.029 232H258.832C263.809 232 267.882 226.787 267.882 220.417Z",1,"fill-color-0"],["d","M357.75 197.625V81.375C357.75 74.9812 352.069 69.75 345.125 69.75H143.125C136.181 69.75 130.5 74.9812 130.5 81.375V197.625C130.5 204.019 136.181 209.25 143.125 209.25H345.125C352.069 209.25 357.75 204.019 357.75 197.625Z",1,"stroke-color-thin"],["d","M86.3125 186H105.25V139.5H86.3125C82.7775 139.5 80 142.057 80 145.312V180.188C80 183.443 82.7775 186 86.3125 186Z",1,"fill-color-15"],["d","M111.562 162.75H130.5V116.25H111.562C108.027 116.25 105.25 118.807 105.25 122.062V156.938C105.25 160.193 108.027 162.75 111.562 162.75Z",1,"stroke-color-thin"],["d","M205.979 116V150.875",1,"stroke-color-thin"],["d","M205.979 185.634V185.749",1,"stroke-color-thin"],["d","M2.44963 159.45C0.488815 161.41 0.488815 164.59 2.44963 166.55L34.403 198.504C36.3638 200.465 39.5429 200.465 41.5037 198.504C43.4645 196.543 43.4645 193.364 41.5037 191.403L13.1007 163L41.5037 134.597C43.4645 132.636 43.4645 129.457 41.5037 127.496C39.5429 125.535 36.3638 125.535 34.403 127.496L2.44963 159.45ZM65 157.979H6V168.021H65V157.979Z",1,"fill-color-15"],["id","clip0"],["width","303","height","279","transform","matrix(-1 0 0 1 383 0)",1,"fill-color-30"],["fxFlex","30","width","454","height","243","viewBox","0 0 454 243","fill","none","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["d","M141.75 172.125C178.098 172.125 207.562 142.66 207.562 106.312C207.562 69.9653 178.098 40.5 141.75 40.5C105.403 40.5 75.9375 69.9653 75.9375 106.312C75.9375 142.66 105.403 172.125 141.75 172.125Z",1,"fill-color-0"],["d","M121.5 151.875C157.848 151.875 187.312 122.41 187.312 86.0625C187.312 49.7153 157.848 20.25 121.5 20.25C85.1528 20.25 55.6875 49.7153 55.6875 86.0625C55.6875 122.41 85.1528 151.875 121.5 151.875Z",1,"stroke-color-thiner"],["d","M20.25 192.375H222.75",1,"stroke-color-thiner"],["d","M192.375 222.75L222.75 192.375L192.375 162",1,"stroke-color-thiner"],["d","M138.762 67C136.099 73.913 133.436 81.3578 130.24 88.8025C130.24 88.8025 130.24 89.8661 131.305 89.8661H153.143C153.143 89.8661 153.143 90.3979 153.676 90.9296L121.718 126.558C121.185 126.026 121.185 125.495 121.185 124.963L132.371 101.033V98.9062H110V96.7791L137.164 67H138.762Z",1,"fill-color-15"],["cx","371.815","cy","95.815","r","81.815",1,"fill-color-boltz-bk"],["x","317","y","81","width","110.745","height","30.1472","fill","url(#pattern0)"],["id","pattern0","patternContentUnits","objectBoundingBox","width","1","height","1"],[0,"xlink","href","#image0","transform","scale(0.00185185 0.00680272)"],["id","image0","width","540","height","147",0,"xlink","href","data:image/png;base64,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"],["fxFlex","30","width","295","height","295","viewBox","0 0 295 295","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M182.629 183.635C213.842 170.774 228.719 135.046 215.857 103.833C202.996 72.6204 167.268 57.7435 136.055 70.6048C104.843 83.4659 89.966 119.195 102.827 150.407C115.688 181.62 151.417 196.496 182.629 183.635Z",1,"fill-color-0"],["fill-rule","evenodd","clip-rule","evenodd","d","M169.522 122.093C171.059 115.241 166.054 111.136 159.022 108.13L162.04 98.916L156.431 97.0797L153.493 106.051C152.019 105.569 150.502 105.104 148.995 104.643L151.953 95.613L146.348 93.7769L143.329 102.988C142.106 102.615 140.906 102.247 139.743 101.867L139.752 101.838L132.017 99.3019L130.057 105.293C130.057 105.293 134.224 106.57 134.131 106.624C136.402 107.369 136.71 108.93 136.552 110.138L133.115 120.635C133.271 120.687 133.473 120.761 133.695 120.869C133.66 120.857 133.626 120.846 133.591 120.834C133.562 120.825 133.534 120.816 133.505 120.806C133.375 120.763 133.24 120.719 133.102 120.675L128.284 135.38C127.95 136.062 127.157 137.065 125.569 136.548C125.62 136.635 121.492 135.211 121.492 135.211L118.184 141.544L125.483 143.935C126.298 144.203 127.103 144.476 127.899 144.746L127.901 144.747C128.431 144.927 128.956 145.105 129.479 145.28L126.429 154.6L132.031 156.436L135.051 147.215C136.579 147.75 138.064 148.25 139.517 148.725L136.509 157.902L142.118 159.739L145.166 150.437C154.773 152.984 162.15 152.77 165.87 144.183C168.867 137.27 166.555 132.99 161.623 129.952C165.417 129.361 168.406 127.109 169.522 122.093ZM155.149 139.449C153.059 145.84 143.068 142.413 138.496 140.845L138.496 140.845C138.085 140.704 137.718 140.578 137.404 140.476L141.449 128.129C141.831 128.254 142.299 128.395 142.829 128.555L142.829 128.555C147.571 129.985 157.289 132.916 155.149 139.449ZM144.22 122.79C148.031 124.108 156.343 126.982 158.247 121.175C160.192 115.234 152.086 112.815 148.127 111.634C147.682 111.501 147.289 111.383 146.969 111.279L143.301 122.477C143.565 122.563 143.874 122.67 144.22 122.79Z",1,"fill-color-15"],["d","M158.075 173.411C189.288 160.55 204.164 124.822 191.303 93.6088C178.442 62.3964 142.714 47.5195 111.501 60.3808C80.2885 73.2419 65.4118 108.971 78.2729 140.183C91.1342 171.396 126.863 186.272 158.075 173.411Z",1,"stroke-color-thinest"],["d","M259.352 172.363L85.4595 244.016",1,"stroke-color-thinest"],["d","M122.291 259.352L85.4593 244.016L100.795 207.184",1,"stroke-color-thinest"],["width","225.692","height","225.692","transform","translate(0 85.983) rotate(-22.3941)",1,"fill-color-30"],["fxFlex","30","width","298","height","300","viewBox","0 0 298 300","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M248.333 237.5V112.5C248.333 105.625 242.746 100 235.917 100H37.2501C30.421 100 24.8335 105.625 24.8335 112.5V237.5C24.8335 244.375 30.421 250 37.2501 250H235.917C242.746 250 248.333 244.375 248.333 237.5Z",1,"fill-color-0"],["d","M273.167 212.5V87.5C273.167 80.625 267.579 75 260.75 75H62.0832C55.254 75 49.6665 80.625 49.6665 87.5V212.5C49.6665 219.375 55.254 225 62.0832 225H260.75C267.579 225 273.167 219.375 273.167 212.5Z",1,"stroke-color"],["d","M6.20851 200H24.8335V150H6.20851C2.73185 150 0.000183105 152.75 0.000183105 156.25V193.75C0.000183105 197.25 2.73185 200 6.20851 200Z",1,"fill-color-0"],["d","M31.0415 175H49.6665V125H31.0415C27.5648 125 24.8331 127.75 24.8331 131.25V168.75C24.8331 172.25 27.5648 175 31.0415 175Z",1,"stroke-color"],["d","M161.417 187.5L142.792 150H180.042L161.417 112.5",1,"stroke-color"]],template:function(D,I){if(1&D&&e.DNE(0,du,1,0,"ng-container",5)(1,T2,18,5,"ng-template",null,0,e.C5r)(3,uu,19,5,"ng-template",null,1,e.C5r)(5,hu,19,5,"ng-template",null,2,e.C5r)(7,mu,17,5,"ng-template",null,3,e.C5r)(9,R1,13,5,"ng-template",null,4,e.C5r),2&D){const Oe=e.sdS(2),Ct=e.sdS(4),Bt=e.sdS(6),yn=e.sdS(8),Yn=e.sdS(10);e.Y8G("ngTemplateOutlet",1===I.stepNumber?Oe:2===I.stepNumber?Ct:3===I.stepNumber?Bt:4===I.stepNumber?yn:Yn)}},dependencies:[w.YU,w.T3,K.Lc,K.dh,Ie.DJ,Ie.sA,Ie.UI,cl.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Ed.k]}}))}return b(),_})();const $h=["stepper"],Z4=()=>[1,2,3,4,5],D2=(b,_)=>({"dot-primary":b,"dot-primary-lighter":_});function P1(b,_){if(1&b&&e.EFF(0),2&b){const m=e.XpG(2);e.JRh(m.inputFormLabel)}}function S(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function F1(b,_){if(1&b&&(e.j41(0,"mat-error"),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&b){const m=e.XpG(2);e.R7$(),e.SpI("Amount must be greater than or equal to ",e.bMT(2,1,null==m.serviceInfo||null==m.serviceInfo.limits?null:m.serviceInfo.limits.minimal),".")}}function J4(b,_){if(1&b&&(e.j41(0,"mat-error"),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&b){const m=e.XpG(2);e.R7$(),e.SpI("Amount must be less than or equal to ",e.bMT(2,1,null==m.serviceInfo||null==m.serviceInfo.limits?null:m.serviceInfo.limits.maximal),".")}}function Zh(b,_){1&b&&(e.j41(0,"div",44)(1,"div",45)(2,"mat-slide-toggle",46),e.EFF(3,"Accept Zero Conf"),e.k0s(),e.j41(4,"mat-icon",47),e.EFF(5,"info_outline"),e.k0s()()())}function q4(b,_){1&b&&(e.j41(0,"div",44)(1,"div",45)(2,"mat-slide-toggle",48),e.EFF(3,"Send from Internal Wallet"),e.k0s(),e.j41(4,"mat-icon",49),e.EFF(5,"info_outline"),e.k0s()()())}function Jh(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1," Refund address is required when not using internal wallet. "),e.k0s())}function w2(b,_){1&b&&(e.j41(0,"button",50),e.EFF(1,"Next"),e.k0s())}function Td(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",51),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onSwap())}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG(2);e.R7$(),e.SpI("Initiate ",m.swapDirectionCaption)}}function A2(b,_){if(1&b&&e.EFF(0),2&b){const m=e.XpG(3);e.JRh(m.addressFormLabel)}}function pu(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Address is required."),e.k0s())}function qh(b,_){if(1&b){const m=e.RV6();e.j41(0,"mat-step",15)(1,"form",16),e.DNE(2,A2,1,1,"ng-template",17),e.j41(3,"div",52)(4,"mat-radio-group",53),e.bIt("change",function(D){v.eBV(m);const I=e.XpG(2);return v.Njj(I.onAddressTypeChange(D))}),e.j41(5,"mat-radio-button",54),e.EFF(6,"Node Local Address"),e.k0s(),e.j41(7,"mat-radio-button",55),e.EFF(8,"External Address"),e.k0s()(),e.j41(9,"mat-form-field",56)(10,"mat-label"),e.EFF(11,"Address"),e.k0s(),e.nrm(12,"input",57),e.DNE(13,pu,2,0,"mat-error",24),e.k0s()(),e.j41(14,"div",29)(15,"button",58),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onSwap())}),e.EFF(16),e.k0s()()()()}if(2&b){const m=e.XpG(2);e.Y8G("stepControl",m.addressFormGroup)("editable",m.flgEditable),e.R7$(),e.Y8G("formGroup",m.addressFormGroup),e.R7$(11),e.Y8G("required","external"===m.addressFormGroup.controls.addressType.value),e.R7$(),e.Y8G("ngIf",null==m.addressFormGroup.controls.address.errors?null:m.addressFormGroup.controls.address.errors.required),e.R7$(3),e.SpI("Initiate ",m.swapDirectionCaption)}}function e3(b,_){if(1&b&&e.EFF(0),2&b){const m=e.XpG(2);e.SpI("",m.swapDirectionCaption," Status")}}function L2(b,_){if(1&b&&(e.j41(0,"mat-icon",59),e.EFF(1),e.k0s()),2&b){const m=e.XpG(2);e.R7$(),e.JRh(m.swapStatus&&null!=m.swapStatus&&m.swapStatus.id?"check":"close")}}function I2(b,_){1&b&&e.nrm(0,"div")}function gu(b,_){1&b&&e.nrm(0,"mat-progress-bar",60)}function t3(b,_){if(1&b&&(e.j41(0,"h4",61),e.EFF(1),e.k0s()),2&b){const m=e.XpG(2);e.R7$(),e.JRh(m.swapStatus&&m.swapStatus.error?m.swapDirectionCaption+" failed.":m.swapStatus&&m.swapStatus.id?m.swapDirectionCaption+" request placed successfully. You can check the status of the request on the 'Boltz' menu.":m.swapDirectionCaption+" request placed successfully.")}}function n3(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",62),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onRestart())}),e.EFF(1,"Start Again"),e.k0s()}}function _u(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),e.EFF(5),e.k0s()(),e.j41(6,"div",9)(7,"button",10),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.showInfo())}),e.EFF(8,"?"),e.k0s(),e.j41(9,"button",11),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.onClose())}),e.EFF(10,"X"),e.k0s()()(),e.j41(11,"mat-card-content",12)(12,"div",13)(13,"mat-vertical-stepper",14,1),e.bIt("selectionChange",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.stepSelectionChanged(D))}),e.j41(15,"mat-step",15)(16,"form",16),e.DNE(17,P1,1,1,"ng-template",17),e.j41(18,"div",18),e.nrm(19,"rtl-boltz-service-info",19),e.k0s(),e.j41(20,"div",20)(21,"mat-form-field",21)(22,"mat-label"),e.EFF(23,"Amount"),e.k0s(),e.nrm(24,"input",22),e.j41(25,"mat-hint"),e.EFF(26),e.nI1(27,"number"),e.nI1(28,"number"),e.k0s(),e.j41(29,"span",23),e.EFF(30,"Sats"),e.k0s(),e.DNE(31,S,2,0,"mat-error",24)(32,F1,3,3,"mat-error",24)(33,J4,3,3,"mat-error",24),e.k0s(),e.DNE(34,Zh,6,0,"div",25)(35,q4,6,0,"div",25),e.j41(36,"div",26)(37,"mat-form-field",27)(38,"mat-label"),e.EFF(39,"Refund Address"),e.k0s(),e.nrm(40,"input",28),e.j41(41,"mat-hint"),e.EFF(42,"The address where funds will be returned in case of a failed swap"),e.k0s(),e.DNE(43,Jh,2,0,"mat-error",24),e.k0s()()(),e.j41(44,"div",29),e.DNE(45,w2,2,0,"button",30)(46,Td,2,1,"button",31),e.k0s()()(),e.DNE(47,qh,17,6,"mat-step",32),e.j41(48,"mat-step",33)(49,"form",16),e.DNE(50,e3,1,1,"ng-template",17),e.j41(51,"div",34)(52,"mat-expansion-panel",35)(53,"mat-expansion-panel-header")(54,"mat-panel-title")(55,"span",36),e.EFF(56),e.DNE(57,L2,2,1,"mat-icon",37),e.k0s()()(),e.DNE(58,I2,1,0,"div",38),e.k0s(),e.DNE(59,gu,1,0,"mat-progress-bar",39),e.k0s(),e.DNE(60,t3,2,1,"h4",40),e.j41(61,"div",29),e.DNE(62,n3,2,0,"button",41),e.k0s()()()(),e.j41(63,"div",42)(64,"button",43),e.EFF(65,"Close"),e.k0s()()()()()()}if(2&b){const m=e.XpG(),E=e.sdS(2);e.Y8G("@opacityAnimation",void 0),e.R7$(3),e.Y8G("ngClass",m.screenSize===m.screenSizeEnum.XS||m.screenSize===m.screenSizeEnum.SM?"flex-83":"flex-91"),e.R7$(2),e.JRh(m.swapDirectionCaption),e.R7$(),e.Y8G("ngClass",m.screenSize===m.screenSizeEnum.XS||m.screenSize===m.screenSizeEnum.SM?"flex-17":"flex-9"),e.R7$(7),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",m.inputFormGroup)("editable",m.flgEditable),e.R7$(),e.Y8G("formGroup",m.inputFormGroup),e.R7$(3),e.Y8G("serviceInfo",m.serviceInfo)("direction",m.direction),e.R7$(5),e.Y8G("step",1e3),e.R7$(2),e.Lme("Range: ",e.bMT(27,34,null==m.serviceInfo||null==m.serviceInfo.limits?null:m.serviceInfo.limits.minimal),"-",e.bMT(28,36,null==m.serviceInfo||null==m.serviceInfo.limits?null:m.serviceInfo.limits.maximal)),e.R7$(5),e.Y8G("ngIf",null==m.inputFormGroup||null==m.inputFormGroup.controls||null==m.inputFormGroup.controls.amount||null==m.inputFormGroup.controls.amount.errors?null:m.inputFormGroup.controls.amount.errors.required),e.R7$(),e.Y8G("ngIf",null==m.inputFormGroup||null==m.inputFormGroup.controls||null==m.inputFormGroup.controls.amount||null==m.inputFormGroup.controls.amount.errors?null:m.inputFormGroup.controls.amount.errors.min),e.R7$(),e.Y8G("ngIf",null==m.inputFormGroup||null==m.inputFormGroup.controls||null==m.inputFormGroup.controls.amount||null==m.inputFormGroup.controls.amount.errors?null:m.inputFormGroup.controls.amount.errors.max),e.R7$(),e.Y8G("ngIf",m.direction===m.swapTypeEnum.SWAP_OUT),e.R7$(),e.Y8G("ngIf",m.direction===m.swapTypeEnum.SWAP_IN&&m.isSendFromInternalCompatible),e.R7$(5),e.Y8G("required",!(null!=m.inputFormGroup&&null!=m.inputFormGroup.controls&&m.inputFormGroup.controls.sendFromInternal.value)),e.R7$(3),e.Y8G("ngIf",null==m.inputFormGroup||null==m.inputFormGroup.controls||null==m.inputFormGroup.controls.refundAddress||null==m.inputFormGroup.controls.refundAddress.errors?null:m.inputFormGroup.controls.refundAddress.errors.required),e.R7$(2),e.Y8G("ngIf",m.direction===m.swapTypeEnum.SWAP_OUT),e.R7$(),e.Y8G("ngIf",m.direction===m.swapTypeEnum.SWAP_IN),e.R7$(),e.Y8G("ngIf",m.direction===m.swapTypeEnum.SWAP_OUT),e.R7$(),e.Y8G("stepControl",m.statusFormGroup),e.R7$(),e.Y8G("formGroup",m.statusFormGroup),e.R7$(3),e.Y8G("expanded",!!m.swapStatus),e.R7$(4),e.JRh(m.swapStatus?m.swapStatus.id?m.swapDirectionCaption+" request details":m.swapDirectionCaption+" error details":"Waiting for "+m.swapDirectionCaption+" request..."),e.R7$(),e.Y8G("ngIf",m.swapStatus),e.R7$(),e.Y8G("ngIf",!m.swapStatus)("ngIfElse",E),e.R7$(),e.Y8G("ngIf",!m.swapStatus),e.R7$(),e.Y8G("ngIf",m.swapStatus),e.R7$(2),e.Y8G("ngIf",m.swapStatus&&(m.swapStatus.error||!m.swapStatus.id)),e.R7$(2),e.Y8G("mat-dialog-close",!1)}}function vu(b,_){if(1&b&&e.nrm(0,"rtl-boltz-swap-status",63),2&b){const m=e.XpG();e.Y8G("swapStatus",m.swapStatus)("direction",m.direction)("acceptZeroConf",null==m.inputFormGroup||null==m.inputFormGroup.controls?null:m.inputFormGroup.controls.acceptZeroConf.value)("sendFromInternal",null==m.inputFormGroup||null==m.inputFormGroup.controls?null:m.inputFormGroup.controls.sendFromInternal.value)}}function i3(b,_){if(1&b){const m=e.RV6();e.j41(0,"rtl-boltz-swapout-info-graphics",79),e.mxI("stepNumberChange",function(D){v.eBV(m);const I=e.XpG(2);return e.DH7(I.stepNumber,D)||(I.stepNumber=D),v.Njj(D)}),e.k0s()}if(2&b){const m=e.XpG(2);e.Y8G("animationDirection",m.animationDirection),e.R50("stepNumber",m.stepNumber)}}function yu(b,_){if(1&b){const m=e.RV6();e.j41(0,"rtl-boltz-swapin-info-graphics",79),e.mxI("stepNumberChange",function(D){v.eBV(m);const I=e.XpG(2);return e.DH7(I.stepNumber,D)||(I.stepNumber=D),v.Njj(D)}),e.k0s()}if(2&b){const m=e.XpG(2);e.Y8G("animationDirection",m.animationDirection),e.R50("stepNumber",m.stepNumber)}}function Fc(b,_){if(1&b){const m=e.RV6();e.j41(0,"span",80),e.bIt("click",function(){const D=v.eBV(m).$implicit,I=e.XpG(2);return v.Njj(I.onStepChanged(D))}),e.nrm(1,"p",81),e.k0s()}if(2&b){const m=_.$implicit,E=e.XpG(2);e.R7$(),e.Y8G("ngClass",e.l_i(1,D2,E.stepNumber===m,E.stepNumber!==m))}}function a3(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",82),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onReadMore())}),e.EFF(1,"Read More"),e.k0s()}}function Dd(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",83),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onStepChanged(4))}),e.EFF(1,"Back"),e.k0s()}}function bu(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",84),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return D.flgShowInfo=!1,v.Njj(D.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function k2(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",85),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return D.flgShowInfo=!1,v.Njj(D.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function em(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",86),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onStepChanged(D.stepNumber-1))}),e.EFF(1,"Back"),e.k0s()}}function s3(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",87),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onStepChanged(D.stepNumber+1))}),e.EFF(1,"Next"),e.k0s()}}function O2(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",64)(1,"div",18)(2,"mat-card-header",65)(3,"div",66),e.nrm(4,"span",8),e.k0s(),e.j41(5,"div",67)(6,"button",11),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return D.flgShowInfo=!1,v.Njj(D.stepNumber=1)}),e.EFF(7,"X"),e.k0s()()(),e.j41(8,"mat-card-content",68),e.DNE(9,i3,1,2,"rtl-boltz-swapout-info-graphics",69)(10,yu,1,2,"rtl-boltz-swapin-info-graphics",69),e.k0s(),e.j41(11,"div",70),e.DNE(12,Fc,2,4,"span",71),e.k0s(),e.j41(13,"div",72),e.DNE(14,a3,2,0,"button",73)(15,Dd,2,0,"button",74)(16,bu,2,0,"button",75)(17,k2,2,0,"button",76)(18,em,2,0,"button",77)(19,s3,2,0,"button",78),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@opacityAnimation",void 0),e.R7$(9),e.Y8G("ngIf",m.direction===m.swapTypeEnum.SWAP_OUT),e.R7$(),e.Y8G("ngIf",m.direction===m.swapTypeEnum.SWAP_IN),e.R7$(2),e.Y8G("ngForOf",e.lJ4(10,Z4)),e.R7$(2),e.Y8G("ngIf",5===m.stepNumber),e.R7$(),e.Y8G("ngIf",5===m.stepNumber),e.R7$(),e.Y8G("ngIf",5===m.stepNumber),e.R7$(),e.Y8G("ngIf",m.stepNumber<5),e.R7$(),e.Y8G("ngIf",m.stepNumber>1&&m.stepNumber<5),e.R7$(),e.Y8G("ngIf",m.stepNumber<5)}}let r3=(()=>{var b;class _{constructor(E,D,I,Oe,Ct,Bt,yn){this.dialogRef=E,this.data=D,this.boltzService=I,this.formBuilder=Oe,this.decimalPipe=Ct,this.logger=Bt,this.commonService=yn,this.faInfoCircle=Ti.iW_,this.boltzInfo=null,this.serviceInfo={fees:{percentage:null,miner:{normal:null,reverse:null}},limits:{minimal:1e4,maximal:5e7}},this.swapTypeEnum=_t.Bd,this.direction=_t.Bd.SWAP_OUT,this.swapDirectionCaption="Swap out",this.swapStatus=null,this.inputFormLabel="Amount to swap out",this.addressFormLabel="Withdrawal Address",this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=_t.f7,this.animationDirection="forward",this.flgEditable=!0,this.isSendFromInternalCompatible=!0,this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B,new gi.B,new gi.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.serviceInfo=this.data.serviceInfo,this.direction=this.data.direction||_t.Bd.SWAP_OUT,this.swapDirectionCaption=this.direction===_t.Bd.SWAP_OUT?"Swap Out":"Swap in",this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.serviceInfo.limits?.minimal,[hi.k0.required,hi.k0.min(this.serviceInfo.limits?.minimal||0),hi.k0.max(this.serviceInfo.limits?.maximal||0)]],acceptZeroConf:[!1],sendFromInternal:[!0],refundAddress:[{value:"",disabled:!0}]}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[hi.k0.required]],address:[{value:"",disabled:!0}]}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges(),this.boltzService.boltzInfoChanged.pipe((0,li.Q)(this.unSubs[0])).subscribe({next:E=>{this.boltzInfo=E,this.isSendFromInternalCompatible=this.commonService.isVersionCompatible(this.boltzInfo.version,"2.0.0")},error:E=>{this.boltzInfo={version:"2.0.0"},this.logger.error(E)}})}ngAfterViewInit(){this.direction===_t.Bd.SWAP_OUT&&this.addressFormGroup.setErrors({Invalid:!0})}onFormValueChanges(){this.direction===_t.Bd.SWAP_OUT&&this.addressFormGroup.valueChanges.pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{this.addressFormGroup.setErrors({Invalid:!0})}),this.direction===_t.Bd.SWAP_IN&&this.inputFormGroup.controls.sendFromInternal.valueChanges.pipe((0,li.Q)(this.unSubs[4])).subscribe(()=>{this.onSendFromInternalChange()})}onSendFromInternalChange(){this.inputFormGroup.controls.sendFromInternal.value?(this.inputFormGroup.controls.refundAddress.disable(),this.inputFormGroup.controls.refundAddress.clearValidators(),this.inputFormGroup.controls.refundAddress.updateValueAndValidity()):(this.inputFormGroup.controls.refundAddress.enable(),this.inputFormGroup.controls.refundAddress.setValidators([hi.k0.required]),this.inputFormGroup.controls.refundAddress.updateValueAndValidity())}onAddressTypeChange(E){"external"===E.value?(this.addressFormGroup.controls.address.setValidators([hi.k0.required]),this.addressFormGroup.controls.address.markAsTouched(),this.addressFormGroup.controls.address.enable()):(this.addressFormGroup.controls.address.setValidators(null),this.addressFormGroup.controls.address.markAsPristine(),this.addressFormGroup.controls.address.disable(),this.addressFormGroup.controls.address.setValue("")),this.addressFormGroup.setErrors({Invalid:!0})}onSwap(){if(!this.inputFormGroup.controls.amount.value||this.serviceInfo.limits?.minimal&&this.inputFormGroup.controls.amount.value<+this.serviceInfo.limits.minimal||this.serviceInfo.limits?.maximal&&this.inputFormGroup.controls.amount.value>+this.serviceInfo.limits.maximal||this.direction===_t.Bd.SWAP_OUT&&"external"===this.addressFormGroup.controls.addressType.value&&(!this.addressFormGroup.controls.address.value||""===this.addressFormGroup.controls.address.value.trim()))return!0;if(this.flgEditable=!1,this.stepper.selected?.stepControl.setErrors(null),this.stepper.next(),this.direction===_t.Bd.SWAP_IN){const E=this.inputFormGroup.controls.sendFromInternal.value?null:this.inputFormGroup.controls.refundAddress.value,D=this.isSendFromInternalCompatible?this.inputFormGroup.controls.sendFromInternal.value:null;if(!D&&!E)return this.stepper.selected?.stepControl.setErrors({Invalid:!0}),void(this.flgEditable=!0);this.boltzService.swapIn(this.inputFormGroup.controls.amount.value,D,E).pipe((0,li.Q)(this.unSubs[2])).subscribe({next:I=>{this.swapStatus=I,this.boltzService.listSwaps(),this.flgEditable=!0},error:I=>{this.swapStatus={error:I},this.flgEditable=!0,this.logger.error(I)}})}else this.boltzService.swapOut(this.inputFormGroup.controls.amount.value,"external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"",this.inputFormGroup.controls.acceptZeroConf.value).pipe((0,li.Q)(this.unSubs[3])).subscribe({next:D=>{this.swapStatus=D,this.boltzService.listSwaps(),this.flgEditable=!0},error:D=>{this.swapStatus={error:D},this.flgEditable=!0,this.logger.error(D)}})}stepSelectionChanged(E){switch(E.selectedIndex){case 0:default:this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.addressFormLabel="Withdrawal Address";break;case 1:if(this.inputFormGroup.controls.amount.value)if(this.direction===_t.Bd.SWAP_IN){let D=this.swapDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Send from Internal Wallet: "+(this.inputFormGroup.controls.sendFromInternal.value?"Yes":"No");!this.inputFormGroup.controls.sendFromInternal.value&&this.inputFormGroup.controls.refundAddress.value&&(D+=" | Refund Address: "+this.inputFormGroup.controls.refundAddress.value),this.inputFormLabel=D}else this.inputFormLabel=this.swapDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Zero Conf: "+(this.inputFormGroup.controls.acceptZeroConf.value?"Yes":"No");else this.inputFormLabel="Amount to "+this.swapDirectionCaption;this.addressFormLabel="Withdrawal Address"}E.selectedIndex{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Ro.CP),e.rXU(Ro.Vh),e.rXU(rc),e.rXU(hi.ze),e.rXU(w.QX),e.rXU(Aa.gP),e.rXU(Qo.h))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-boltz-swap-modal"]],viewQuery:function(D,I){if(1&D&&e.GBs($h,5),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.stepper=Oe.first)}},standalone:!1,decls:4,vars:2,consts:[["swapStatusBlock",""],["stepper",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxLayoutAlign","start start",3,"ngClass"],[1,"page-title"],["fxLayoutAlign","end end",3,"ngClass"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[3,"serviceInfo","direction"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","amount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start stretch",4,"ngIf"],["disabled","direction === swapTypeEnum.SWAP_IN && isSendFromInternalCompatible && !inputFormGroup?.controls?.sendFromInternal.value","fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"mt-1"],["fxLayout","column","fxFlex","100"],["matInput","","type","text","tabindex","3","formControlName","refundAddress",3,"required"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","2","type","button","matStepperNext","",4,"ngIf"],["mat-button","","color","primary","tabindex","3","type","button",3,"click",4,"ngIf"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[4,"ngIf","ngIfElse"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxLayoutAlign","start","class","font-bold-500 mt-2",4,"ngIf"],["mat-button","","color","primary","tabindex","13","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end end"],["mat-button","","color","primary","tabindex","14","type","button","default","",3,"mat-dialog-close"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayoutAlign","start center","tabindex","2","color","primary","formControlName","acceptZeroConf","name","acceptZeroConf"],["matTooltip","Only recommended for smaller payments, involves trust in Boltz","matTooltipPosition","above",1,"info-icon","mt-2"],["fxLayoutAlign","start center","tabindex","2","color","primary","formControlName","sendFromInternal","name","sendFromInternal"],["matTooltip","Pay from the node's onchain wallet","matTooltipPosition","above",1,"info-icon","mt-2"],["mat-button","","color","primary","tabindex","2","type","button","matStepperNext",""],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["color","primary","name","addressType","formControlName","addressType","fxFlex","100","fxLayoutAlign","space-between stretch",3,"change"],["fxFlex","48","tabindex","8","value","local"],["fxFlex","48","tabindex","9","value","external"],["fxLayout","column","fxFlex","100",1,"mt-1"],["matInput","","tabindex","10","formControlName","address",3,"required"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-2"],["mat-button","","color","primary","tabindex","13","type","button",3,"click"],["fxLayout","column",3,"swapStatus","direction","acceptZeroConf","sendFromInternal"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"animationDirection","stepNumber","stepNumberChange",4,"ngIf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","15","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["tabindex","21","fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","15","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(D,I){1&D&&e.DNE(0,_u,66,38,"div",2)(1,vu,1,4,"ng-template",null,0,e.C5r)(3,O2,20,11,"div",3),2&D&&(e.Y8G("ngIf",!I.flgShowInfo),e.R7$(3),e.Y8G("ngIf",I.flgShowInfo))},dependencies:[w.YU,w.Sq,w.bT,hi.qT,hi.me,hi.Q0,hi.BC,hi.cb,hi.YS,hi.j4,hi.JD,Ro.tx,es.$z,K.m2,K.MM,or.GK,or.Z2,or.WN,qc.An,br.fg,Ma.rl,Ma.nJ,Ma.MV,Ma.TL,Ma.yw,vd.HM,dd.VT,dd._g,Ie.DJ,Ie.sA,Ie.UI,cl.PW,bc.sG,fd.oV,Yo.V5,Yo.Ti,Yo.M6,Yo.F7,Kl.N,lu,O1,S2,fu,w.QX],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[iu.C]}}))}return b(),_})();const o3=()=>["all"],R2=b=>({"overflow-auto error-border":b,"overflow-auto":!0}),N1=()=>["no_swap"],a1=b=>({width:b}),Cu=b=>({"display-none":b});function xu(b,_){if(1&b&&(e.j41(0,"mat-option",42),e.EFF(1),e.k0s()),2&b){const m=_.$implicit,E=e.XpG();e.Y8G("value",m),e.R7$(),e.JRh(E.getLabel(m))}}function Eu(b,_){1&b&&e.nrm(0,"mat-progress-bar",43)}function tm(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Status"),e.k0s())}function Mu(b,_){if(1&b&&(e.j41(0,"td",45),e.EFF(1),e.k0s()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.JRh(E.swapStateEnum[null==m?null:m.status])}}function P2(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Swap ID"),e.k0s())}function F2(b,_){if(1&b&&(e.j41(0,"td",45),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.R7$(),e.JRh(null==m?null:m.id)}}function N2(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Claim Address"),e.k0s())}function B2(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,a1,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.claimAddress)}}function l3(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Lockup Address"),e.k0s())}function c3(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,a1,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.lockupAddress)}}function d3(b,_){1&b&&(e.j41(0,"th",48),e.EFF(1,"Onchain Amount (Sats)"),e.k0s())}function Su(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",49),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&b){const m=_.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==m?null:m.onchainAmount))}}function z2(b,_){1&b&&(e.j41(0,"th",48),e.EFF(1,"Expected Amount (Sats)"),e.k0s())}function u3(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",49),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&b){const m=_.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==m?null:m.expectedAmount))}}function wd(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Error"),e.k0s())}function h3(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,a1,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.error)}}function Ad(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Private Key"),e.k0s())}function Ld(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,a1,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.privateKey)}}function nm(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Preimage"),e.k0s())}function Tu(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,a1,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.preimage)}}function B1(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Redeem Script"),e.k0s())}function Id(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,a1,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.redeemScript)}}function m3(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Invoice"),e.k0s())}function V2(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,a1,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.invoice)}}function f3(b,_){1&b&&(e.j41(0,"th",48),e.EFF(1,"Timeout Block Height"),e.k0s())}function kd(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",49),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&b){const m=_.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==m?null:m.timeoutBlockHeight))}}function p3(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Lockup Tx ID"),e.k0s())}function cc(b,_){if(1&b&&(e.j41(0,"td",45),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.R7$(),e.JRh(null==m?null:m.lockupTransactionId)}}function Nc(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Claim Tx ID"),e.k0s())}function im(b,_){if(1&b&&(e.j41(0,"td",45),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.R7$(),e.JRh(null==m?null:m.claimTransactionId)}}function am(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Refund Tx ID"),e.k0s())}function z1(b,_){if(1&b&&(e.j41(0,"td",45),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.R7$(),e.JRh(null==m?null:m.refundTransactionId)}}function g3(b,_){if(1&b){const m=e.RV6();e.j41(0,"th",50)(1,"div",51)(2,"mat-select",52),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",53),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Du(b,_){if(1&b){const m=e.RV6();e.j41(0,"td",54)(1,"button",55),e.bIt("click",function(D){const I=v.eBV(m).$implicit,Oe=e.XpG();return v.Njj(Oe.onSwapClick(I,D))}),e.EFF(2,"View Info"),e.k0s()()}}function wu(b,_){if(1&b&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&b){const m=e.XpG(2);e.R7$(),e.JRh(m.emptyTableMessage)}}function Au(b,_){if(1&b&&(e.j41(0,"td",56),e.DNE(1,wu,2,1,"p",57),e.k0s()),2&b){const m=e.XpG();e.R7$(),e.Y8G("ngIf",!(null!=m.listSwaps&&m.listSwaps.data)||(null==m.listSwaps||null==m.listSwaps.data?null:m.listSwaps.data.length)<1)}}function _3(b,_){if(1&b&&e.nrm(0,"tr",58),2&b){const m=e.XpG();e.Y8G("ngClass",e.eq3(1,Cu,(null==m.listSwaps?null:m.listSwaps.data)&&(null==m.listSwaps||null==m.listSwaps.data?null:m.listSwaps.data.length)>0))}}function Lu(b,_){1&b&&e.nrm(0,"tr",59)}function v3(b,_){1&b&&e.nrm(0,"tr",60)}let Iu=(()=>{var b;class _{constructor(E,D,I,Oe,Ct){this.logger=E,this.commonService=D,this.store=I,this.boltzService=Oe,this.camelCaseWithReplace=Ct,this.selectedSwapType=_t.Bd.SWAP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=_t._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="boltz",this.tableSettingSwapOut={tableId:"swap_out",recordsPerPage:_t.md,sortBy:"status",sortOrder:_t.oi.DESCENDING},this.tableSettingSwapIn={tableId:"swap_in",recordsPerPage:_t.md,sortBy:"status",sortOrder:_t.oi.DESCENDING},this.swapStateEnum=_t.q9,this.swapTypeEnum=_t.Bd,this.faHistory=Ti.Int,this.swapCaption="Swap Out",this.displayedColumns=[],this.listSwaps=new Ra.I6([]),this.selFilter="",this.pageSize=_t.md,this.pageSizeOptions=_t.xp,this.screenSize="",this.screenSizeEnum=_t.f7,this.unSubs=[new gi.B,new gi.B,new gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(E){E.selectedSwapType&&!E.selectedSwapType.firstChange&&this.setTableColumns(),this.swapCaption=this.selectedSwapType===_t.Bd.SWAP_IN?"Swap In":"Swap Out",this.loadSwapsTable(this.swapsData)}ngOnInit(){this.store.select(md.$G).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{this.tableSettingSwapOut=E.pageSettings.find(D=>D.pageId===this.PAGE_ID)?.tables.find(D=>D.tableId===this.tableSettingSwapOut.tableId)||_t.ZC.find(D=>D.pageId===this.PAGE_ID)?.tables.find(D=>D.tableId===this.tableSettingSwapOut.tableId),this.tableSettingSwapIn=E.pageSettings.find(D=>D.pageId===this.PAGE_ID)?.tables.find(D=>D.tableId===this.tableSettingSwapIn.tableId)||_t.ZC.find(D=>D.pageId===this.PAGE_ID)?.tables.find(D=>D.tableId===this.tableSettingSwapIn.tableId),this.setTableColumns(),this.swapsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadSwapsTable(this.swapsData),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)})}ngAfterViewInit(){this.swapsData&&this.swapsData.length>0&&this.loadSwapsTable(this.swapsData)}setTableColumns(){this.selectedSwapType===_t.Bd.SWAP_IN?(this.displayedColumns=this.screenSize===_t.f7.XS||this.screenSize===_t.f7.SM?JSON.parse(JSON.stringify(this.tableSettingSwapIn.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSettingSwapIn.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSettingSwapIn.recordsPerPage?+this.tableSettingSwapIn.recordsPerPage:_t.md):(this.displayedColumns=this.screenSize===_t.f7.XS||this.screenSize===_t.f7.SM?JSON.parse(JSON.stringify(this.tableSettingSwapOut.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSettingSwapOut.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSettingSwapOut.recordsPerPage?+this.tableSettingSwapOut.recordsPerPage:_t.md)}applyFilter(){this.listSwaps&&""!==this.selFilter&&(this.listSwaps.filter=this.selFilter.trim().toLowerCase())}getLabel(E){const I=this.nodePageDefs[this.PAGE_ID][this.selectedSwapType===_t.Bd.SWAP_IN?this.tableSettingSwapIn.tableId:this.tableSettingSwapOut.tableId].allowedColumns.find(Oe=>Oe.column===E);return I?I.label?I.label:this.camelCaseWithReplace.transform(I.column,"_"):this.commonService.titleCase(E)}setFilterPredicate(){this.listSwaps.filterPredicate=(E,D)=>{let I="";switch(this.selFilterBy){case"all":I=JSON.stringify(E).toLowerCase();break;case"status":I=E?.status?this.swapStateEnum[E?.status]:"";break;default:I=typeof E[this.selFilterBy]>"u"?"":"string"==typeof E[this.selFilterBy]?E[this.selFilterBy].toLowerCase():"boolean"==typeof E[this.selFilterBy]?E[this.selFilterBy]?"yes":"no":E[this.selFilterBy].toString()}return"status"===this.selFilterBy?0===I.indexOf(D):I.includes(D)}}onSwapClick(E,D){this.boltzService.swapInfo(E.id||"").pipe((0,li.Q)(this.unSubs[1])).subscribe(I=>{this.store.dispatch((0,Bi.xO)({payload:{data:{type:_t.A$.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"status",value:_t.q9[(I=this.selectedSwapType===_t.Bd.SWAP_IN?I.swap:I.reverseSwap).status],title:"Status",width:50,type:_t.UN.STRING},{key:"id",value:I.id,title:"ID",width:50,type:_t.UN.STRING}],[{key:"amount",value:I.onchainAmount?I.onchainAmount:I.expectedAmount?I.expectedAmount:0,title:I.onchainAmount?"Onchain Amount (Sats)":I.expectedAmount?"Expected Amount (Sats)":"Amount (Sats)",width:50,type:_t.UN.NUMBER},{key:"timeoutBlockHeight",value:I.timeoutBlockHeight,title:"Timeout Block Height",width:50,type:_t.UN.NUMBER}],[{key:"address",value:I.claimAddress?I.claimAddress:I.lockupAddress?I.lockupAddress:"",title:I.claimAddress?"Claim Address":I.lockupAddress?"Lockup Address":"Address",width:100,type:_t.UN.STRING}],[{key:"invoice",value:I.invoice,title:"Invoice",width:100,type:_t.UN.STRING}],[{key:"privateKey",value:I.privateKey,title:"Private Key",width:100,type:_t.UN.STRING}],[{key:"preimage",value:I.preimage,title:"Preimage",width:100,type:_t.UN.STRING}],[{key:"redeemScript",value:I.redeemScript,title:"Redeem Script",width:100,type:_t.UN.STRING}],[{key:"lockupTransactionId",value:I.lockupTransactionId,title:"Lockup Transaction ID",width:50,type:_t.UN.STRING},{key:"transactionId",value:I.claimTransactionId?I.claimTransactionId:I.refundTransactionId?I.refundTransactionId:"",title:I.claimTransactionId?"Claim Transaction ID":I.refundTransactionId?"Refund Transaction ID":"Transaction ID",width:50,type:_t.UN.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(E){this.listSwaps=new Ra.I6(E?[...E]:[]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(D,I)=>D[I]&&isNaN(D[I])?D[I].toLocaleLowerCase():D[I]?+D[I]:null,this.paginator&&this.paginator.firstPage(),this.listSwaps.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listSwaps)}onDownloadCSV(){this.listSwaps.data&&this.listSwaps.data.length>0&&this.commonService.downloadFile(this.listSwaps.data,this.selectedSwapType===_t.Bd.SWAP_IN?"Swap in":"Swap out")}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(Qo.h),e.rXU(mi.il),e.rXU(rc),e.rXU(dl.VD))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-boltz-swaps"]],viewQuery:function(D,I){if(1&D&&(e.GBs(Oc.B4,5),e.GBs(kc.iy,5)),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.sort=Oe.first),e.mGM(Oe=e.lsd())&&(I.paginator=Oe.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},standalone:!1,features:[e.Jv_([{provide:sl.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:kc.xX,useValue:(0,_t.on)("Swaps")}]),e.OA$],decls:76,vars:20,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"card-content-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","fxFlex","100",1,"page-sub-title-container","w-100"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start center",1,"w-100"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","id"],["matColumnDef","claimAddress"],["matColumnDef","lockupAddress"],["matColumnDef","onchainAmount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","expectedAmount"],["matColumnDef","error"],["matColumnDef","privateKey"],["matColumnDef","preimage"],["matColumnDef","redeemScript"],["matColumnDef","invoice"],["matColumnDef","timeoutBlockHeight"],["matColumnDef","lockupTransactionId"],["matColumnDef","claimTransactionId"],["matColumnDef","refundTransactionId"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_swap"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"div",3),e.nrm(3,"fa-icon",4),e.j41(4,"span",5),e.EFF(5),e.k0s()(),e.j41(6,"div",6)(7,"mat-form-field",7)(8,"mat-label"),e.EFF(9,"Filter By"),e.k0s(),e.j41(10,"mat-select",8),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selFilterBy,Bt)||(I.selFilterBy=Bt),v.Njj(Bt)}),e.bIt("selectionChange",function(){return v.eBV(Oe),I.selFilter="",v.Njj(I.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,xu,2,2,"mat-option",9),e.k0s()()(),e.j41(13,"mat-form-field",7)(14,"mat-label"),e.EFF(15,"Filter"),e.k0s(),e.j41(16,"input",10),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selFilter,Bt)||(I.selFilter=Bt),v.Njj(Bt)}),e.bIt("input",function(){return v.eBV(Oe),v.Njj(I.applyFilter())})("keyup",function(){return v.eBV(Oe),v.Njj(I.applyFilter())}),e.k0s()()()(),e.j41(17,"div",11)(18,"div",12),e.DNE(19,Eu,1,0,"mat-progress-bar",13),e.j41(20,"table",14,0),e.qex(22,15),e.DNE(23,tm,2,0,"th",16)(24,Mu,2,1,"td",17),e.bVm(),e.qex(25,18),e.DNE(26,P2,2,0,"th",16)(27,F2,2,1,"td",17),e.bVm(),e.qex(28,19),e.DNE(29,N2,2,0,"th",16)(30,B2,4,4,"td",17),e.bVm(),e.qex(31,20),e.DNE(32,l3,2,0,"th",16)(33,c3,4,4,"td",17),e.bVm(),e.qex(34,21),e.DNE(35,d3,2,0,"th",22)(36,Su,4,3,"td",17),e.bVm(),e.qex(37,23),e.DNE(38,z2,2,0,"th",22)(39,u3,4,3,"td",17),e.bVm(),e.qex(40,24),e.DNE(41,wd,2,0,"th",16)(42,h3,4,4,"td",17),e.bVm(),e.qex(43,25),e.DNE(44,Ad,2,0,"th",16)(45,Ld,4,4,"td",17),e.bVm(),e.qex(46,26),e.DNE(47,nm,2,0,"th",16)(48,Tu,4,4,"td",17),e.bVm(),e.qex(49,27),e.DNE(50,B1,2,0,"th",16)(51,Id,4,4,"td",17),e.bVm(),e.qex(52,28),e.DNE(53,m3,2,0,"th",16)(54,V2,4,4,"td",17),e.bVm(),e.qex(55,29),e.DNE(56,f3,2,0,"th",22)(57,kd,4,3,"td",17),e.bVm(),e.qex(58,30),e.DNE(59,p3,2,0,"th",16)(60,cc,2,1,"td",17),e.bVm(),e.qex(61,31),e.DNE(62,Nc,2,0,"th",16)(63,im,2,1,"td",17),e.bVm(),e.qex(64,32),e.DNE(65,am,2,0,"th",16)(66,z1,2,1,"td",17),e.bVm(),e.qex(67,33),e.DNE(68,g3,6,0,"th",34)(69,Du,3,0,"td",35),e.bVm(),e.qex(70,36),e.DNE(71,Au,2,1,"td",37),e.bVm(),e.DNE(72,_3,1,3,"tr",38)(73,Lu,1,0,"tr",39)(74,v3,1,0,"tr",40),e.k0s(),e.nrm(75,"mat-paginator",41),e.k0s()()()}2&D&&(e.R7$(3),e.Y8G("icon",I.faHistory),e.R7$(2),e.SpI("",I.swapCaption," History"),e.R7$(5),e.R50("ngModel",I.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(16,o3).concat(I.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",I.selFilter),e.R7$(3),e.Y8G("ngIf",!0===I.flgLoading[0]),e.R7$(),e.Y8G("matSortActive",I.selectedSwapType===I.swapTypeEnum.SWAP_IN?I.tableSettingSwapIn.sortBy:I.tableSettingSwapOut.sortBy)("matSortDirection",I.selectedSwapType===I.swapTypeEnum.SWAP_IN?I.tableSettingSwapIn.sortOrder:I.tableSettingSwapOut.sortOrder)("dataSource",I.listSwaps)("ngClass",e.eq3(17,R2,"error"===I.flgLoading[0])),e.R7$(52),e.Y8G("matFooterRowDef",e.lJ4(19,N1)),e.R7$(),e.Y8G("matHeaderRowDef",I.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",I.displayedColumns),e.R7$(),e.Y8G("pageSize",I.pageSize)("pageSizeOptions",I.pageSizeOptions)("showFirstLastButtons",I.screenSize!==I.screenSizeEnum.XS))},dependencies:[w.YU,w.Sq,w.bT,w.B3,hi.me,hi.BC,hi.vS,os.aY,es.$z,br.fg,Ma.rl,Ma.nJ,vd.HM,Ie.DJ,Ie.sA,Ie.UI,cl.PW,cl.eI,sl.VO,sl.$2,ac.wT,Oc.B4,Oc.aE,Ra.Zl,Ra.tL,Ra.ji,Ra.cC,Ra.YV,Ra.iL,Ra.Zq,Ra.xW,Ra.KS,Ra.$R,Ra.Qo,Ra.YZ,Ra.NB,Ra.iF,kc.iy,go.ZF,go.Ld,w.QX],encapsulation:2}))}return b(),_})();const y3=b=>["../",b];function U2(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",16),e.bIt("click",function(){const D=v.eBV(m).$implicit,I=e.XpG();return v.Njj(I.onSelectedIndexChange(D))}),e.EFF(1),e.k0s()}if(2&b){const m=_.$implicit,E=e.XpG();e.Y8G("active",E.activeTab.link===m.link)("routerLink",e.eq3(3,y3,m.link)),e.R7$(),e.JRh(m.name)}}let sm=(()=>{var b;class _{constructor(E,D,I){this.router=E,this.store=D,this.boltzService=I,this.swapTypeEnum=_t.Bd,this.selectedSwapType=_t.Bd.SWAP_OUT,this.swaps={},this.swapsData=[],this.emptyTableMessage="No swap data available.",this.flgLoading=[!0],this.links=[{link:"swapout",name:"Swap Out"},{link:"swapin",name:"Swap In"}],this.activeTab=this.links[0],this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B]}ngOnInit(){this.boltzService.getBoltzInfo(),this.boltzService.listSwaps();const E=this.links.find(D=>this.router.url.includes(D.link));this.activeTab=E||this.links[0],this.selectedSwapType=E&&"swapin"===E.link?_t.Bd.SWAP_IN:_t.Bd.SWAP_OUT,this.router.events.pipe((0,li.Q)(this.unSubs[0]),(0,za.p)(D=>D instanceof Ha.gx)).subscribe({next:D=>{const I=this.links.find(Oe=>D.urlAfterRedirects.includes(Oe.link));this.activeTab=I||this.links[0],this.selectedSwapType=I&&"swapin"===I.link?_t.Bd.SWAP_IN:_t.Bd.SWAP_OUT}}),this.boltzService.swapsChanged.pipe((0,li.Q)(this.unSubs[1])).subscribe({next:D=>{this.swaps=D,this.swapsData=this.selectedSwapType===_t.Bd.SWAP_IN&&D.swaps?D.swaps:this.selectedSwapType===_t.Bd.SWAP_OUT&&D.reverseSwaps?D.reverseSwaps:[],this.flgLoading[0]=!1},error:D=>{this.flgLoading[0]="error",this.emptyTableMessage=D.message?D.message:"No swap "+(this.selectedSwapType===_t.Bd.SWAP_IN?"in":"out")+" available."}})}onSelectedIndexChange(E){"swapin"===E.link?(this.selectedSwapType=_t.Bd.SWAP_IN,this.swapsData=this.swaps.swaps||[]):(this.selectedSwapType=_t.Bd.SWAP_OUT,this.swapsData=this.swaps.reverseSwaps||[])}onSwap(E){this.boltzService.serviceInfo().pipe((0,li.Q)(this.unSubs[2])).subscribe({next:D=>{this.store.dispatch((0,Bi.xO)({payload:{data:{serviceInfo:D,direction:E,component:r3}}}))}})}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Ha.Ix),e.rXU(mi.il),e.rXU(rc))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-boltz-root"]],standalone:!1,decls:20,vars:7,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["viewBox","0 0 78 78","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",1,"botlz-icon-sm","mr-1"],["id","Logo","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Oval","cx","39","cy","39","r","37.5",1,"boltz-icon"],["d","M36.4583326,43.7755404 L40.53965,35.2316544 L39.4324865,35.2316544 L46.0754873,17.6071752 C46.292579,17.0204094 46.3287609,16.5159331 46.1840331,16.0937464 C46.0393053,15.671561 45.7860319,15.3674444 45.4242131,15.1813966 C45.0623942,14.9953487 44.6535376,14.9524146 44.1976433,15.0525945 C43.7417511,15.1527743 43.3256596,15.4461573 42.9493689,15.9327433 L22.6078557,40.7701025 C22.2026186,41.2710003 22,41.7575877 22,42.2298646 C22,42.6735173 22.1592003,43.0420366 22.477601,43.3354226 C22.7960017,43.6288058 23.1940025,43.7755404 23.6716036,43.7755404 L36.4583326,43.7755404 Z","id","Path",1,"boltz-icon-fill"],["d","M44.4883879,63.7755404 L48.8604707,55.165009 L47.6744296,55.165009 L54.7906978,37.4030526 C55.0232558,36.8117097 55.0620155,36.3032983 54.9069768,35.8778185 C54.7519381,35.4523399 54.4806208,35.1458511 54.0930248,34.958352 C53.7054289,34.7708528 53.2674441,34.7275839 52.7790706,34.8285452 C52.2906992,34.9295065 51.8449641,35.2251779 51.4418653,35.7155595 L29.6511611,60.746659 C29.2170537,61.251464 29,61.7418469 29,62.2178078 C29,62.6649211 29.1705423,63.036315 29.5116268,63.3319895 C29.8527113,63.6276613 30.2790669,63.7755404 30.7906936,63.7755404 L44.4883879,63.7755404 Z","id","Path-Copy","transform","translate(42.000000, 49.275540) rotate(-180.000000) translate(-42.000000, -49.275540) ",1,"boltz-icon-fill"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"padding-gap-x-large","mt-1"],["mat-flat-button","","color","primary","type","button","tabindex","2",3,"click"],["fxLayout","row","fxFlex","100",3,"selectedSwapType","swapsData","flgLoading","emptyTableMessage"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1),v.qSk(),e.j41(1,"svg",2)(2,"g",3)(3,"g",4),e.nrm(4,"circle",5)(5,"path",6)(6,"path",7),e.k0s()()(),v.joV(),e.j41(7,"span",8),e.EFF(8,"Boltz"),e.k0s()(),e.j41(9,"div",9)(10,"mat-card")(11,"mat-card-content",10)(12,"nav",11),e.DNE(13,U2,2,5,"div",12),e.k0s(),e.nrm(14,"mat-tab-nav-panel",null,0),e.j41(16,"div",13)(17,"button",14),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onSwap(I.selectedSwapType))}),e.EFF(18),e.k0s()(),e.nrm(19,"rtl-boltz-swaps",15),e.k0s()()()}if(2&D){const Oe=e.sdS(15);e.R7$(12),e.Y8G("tabPanel",Oe),e.R7$(),e.Y8G("ngForOf",I.links),e.R7$(5),e.SpI("Start ",I.activeTab.name),e.R7$(),e.Y8G("selectedSwapType",I.selectedSwapType)("swapsData",I.swapsData)("flgLoading",I.flgLoading)("emptyTableMessage",I.emptyTableMessage)}},dependencies:[w.Sq,es.$z,K.RN,K.m2,Ie.DJ,Ie.sA,Ie.UI,Ut.Bu,Ut.hQ,Ut.Ql,lo.Wk,Iu],encapsulation:2}))}return b(),_})();class Vr{constructor(_){this.help=_}}function Ou(b,_){if(1&b&&(e.j41(0,"mat-expansion-panel",8)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),e.EFF(3),e.k0s()(),e.j41(4,"mat-panel-description",9),e.nrm(5,"span",10),e.j41(6,"a",11),e.EFF(7),e.k0s()()()),2&b){const m=e.XpG().$implicit,E=e.XpG();e.R7$(3),e.JRh(m.help.question),e.R7$(2),e.Y8G("innerHTML",m.help.answer,e.npT),e.R7$(),e.Y8G("routerLink",E.flgLoggedIn?m.help.link:"/login"),e.R7$(),e.JRh(E.flgLoggedIn?m.help.linkCaption:"Login to go to the page")}}function b3(b,_){if(1&b&&(e.j41(0,"div",6),e.DNE(1,Ou,8,4,"mat-expansion-panel",7),e.k0s()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngIf","ALL"===m.help.lnImplementation||m.help.lnImplementation===E.selNode.lnImplementation)}}let s1=(()=>{var b;class _{constructor(E,D){this.store=E,this.sessionService=D,this.helpTopics=[],this.faQuestion=Ti.EvL,this.LNPLink="/lnd/",this.flgLoggedIn=!1,this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B]}ngOnInit(){this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{this.selNode=E,this.selNode.lnImplementation&&""!==this.selNode.lnImplementation.trim()&&(this.LNPLink="/"+this.selNode.lnImplementation.toLowerCase()+"/",this.addHelpTopics())}),this.sessionService.watchSession().pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{this.flgLoggedIn=!!E.token}),this.sessionService.getItem("token")&&(this.flgLoggedIn=!0)}addHelpTopics(){this.helpTopics=[],this.helpTopics.push(new Vr({question:"Getting started",answer:'Funding your node is the first step to get started.\nGo to the "On-chain" page of the app:\n1. Generate a new address on the "Recieve" tab.\n2. Send funds to the address.\n3. Wait for the balance to be confirmed on-chain before proceeding further.\n3. Connecting with network peers and opening channels is next.\n',link:this.LNPLink+"onchain/receive/utxos",linkCaption:"On-Chain",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Connect with peers",answer:'Connect with network peers to open channels with them.\nGo to "Peer/Channels" page under the "Lightning" menu :\n1. Get the peer pubkey and host address in the pubkey@ip:port format.\n2. On the "Peers" enter the peer address and connect.\n3. Once the peer is connected, you can open channel with the peer.\n4. A variety of actions can be performed on the connected peers page for each peer:\n a. View Info - View the peer details.\n b. Open Channel - Open channel with the peer.\n c. Disconnect - Disconnect from the peer.\n',link:this.LNPLink+"connections/peers",linkCaption:"Peers",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Opening Channels",answer:'Open channels with a connected peer.\nGo to "Peer/Channels" page under the "Lightning" menu:\n1. On the "Channels" section, click on "Open Channel"\n2. On the "Open Channel" modal, select the alias of the connected peer from the drop-down\n2. Specify the amount to commit to the channel and click on "Open Channel".\n3. There are a variety of options available while opening a channel. \n a. Private Channel - When this option is selected, a private channel is opened with the peer. \n b. Priority (advanced option) - Specify either Target confirmation Block or Fee in Sat/vByte. \n c. Spend Unconfirmd Output (advanced option) - Allow channels to be opened with unconfirmed UTXOs.\n4. Track the pending open channels under the "Pending" tab. \n5. Wait for the channel to be confirmed. Only a confimed channel can be used for payments or routing. \n',link:this.LNPLink+"connections/channels/open",linkCaption:"Channels",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Channel Management",answer:'Channel maintenance and balance score.\nGo to "Peer/Channels" page under the "Lightning" menu:\n1. A variety of actions can be perfomed on the open channels under the "Open" tab, with the "Actions" button:\n a. View Info - View the channel details.\n b. View Remote Fee - View the fee policy on the channel of the remote peer.\n c. Update Fee Policy - Modify the fee policy on the channel.\n d. Circular Rebalance - Off-chain rebalance channels by making a payment to yourself across a circular path of chained payment channels.\n e. Close Channel - Close the channel.\n2. Balance Score is a "balancedness" metric score for the channel. \n a. It helps measure how balanced the remote and local balances are, on a channel.\n b. A perfectly balanced channel has a score of one, where as a completely lopsided one has a score of zero.\n c. The formula for calculating the score is "1 - abs((local bal - remote bal)/total bal)".\n',link:this.LNPLink+"connections/channels/open",linkCaption:"Channels",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Buying Liquidity",answer:'Buying liquidity for your node.\nGo to "Liquidity Ads" page under the "Lightning" menu:\n 1. Filter ads by liquidity amount and channel opening fee rate.\n 2. Research additionally on liquidity provider nodes before selecting.\n 3. Select the best liquidity node peer for your need and click on "Open Channel" from "Actions" drop-down.\n 4. Confirm amount, rates and total cost on the modal and click on "Execute" to buy liquidity.\n',link:this.LNPLink+"liquidityads",linkCaption:"Liquidity Ads",lnImplementation:"CLN"})),this.helpTopics.push(new Vr({question:"Payments",answer:'Sending Payments from your node.\nGo to the "Transactions" page under the "Lightning" menu :\nPayments tab is for making payments via your node\n 1. Input a non-expired lightning invoice (Bolt11 format) in the "Payment Request" field and click on "Send Payment" to send.\n 2. Advanced option # 1 (LND only) - Specify a limit on the routing fee which you are willing to pay, for the payment.\n 3. Advanced option # 2 (LND only) - Specify the outgoing channel which you want the payment to go through.\n',link:this.LNPLink+"transactions/payments",linkCaption:"Payments",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Invoices",answer:'Receiving Payments on your node.\nGo to the "Transactions" page under the "Lightning" menu :\nInvoices tab is for receiving payments on your node.\n 1. Memo - Description you want to provide on the invoice.\n 2. Expiry - The time period, after which the invoice will be invalid.\n 3. Private Routing Hints - Generate an invoice with routing hints for private channels.\n',link:this.LNPLink+"transactions/invoices",linkCaption:"Invoices",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Offers",answer:'Send offer payments, create offer invoices and bookmark paid offers on your node.\nGo to the "Transactions" page under the "Lightning" menu :\nPayment for bolt12 offer invoice can be done on "Payments" tab:\n 1. Click on "Send Payment" button.\n 2. Select "Offer" option on the modal.\n 2. Offer Request - Input offer request (Bolt12 format) in the input box.\n 3. Bookmark - Select the checkbox to bookmark this offer for future use.\nOffers tab is for creating bolt12 offer invoice on your node:\n 1. Click on "Create Offer" button.\n 2. Description - Description you want to provide on the offer invoice.\n 3. Amount - Amount for the offer invoice.\n 4. issuer - issuer of the offer.\nPaid offer bookmarks shows the list of paid offers saved for future payments.\n',link:this.LNPLink+"transactions/offers",linkCaption:"Offers",lnImplementation:"CLN"})),this.helpTopics.push(new Vr({question:"Channel Backups",answer:'Channel Backups are important to ensure that you have means to recover funds in case of node failures.\nBackup folder location can be customized in the RTL config file with the channelBackupPath field.\nRTL automatically creates all channel backup on server startup, as well as everytime a channel is opened or closed\nYou can verify the all channel backup file by clicking on "Verify All" Button on the backup page.\nYou can also backup each channel individually and verify them.\n** Keep taking backups of your channels regularly and store them in redundant locations **.\n',link:this.LNPLink+"channelbackup/bckup",linkCaption:"Channel Backups",lnImplementation:"LND"})),this.helpTopics.push(new Vr({question:"Channel Restore",answer:'Channel Restore is used to recover funds from the channel backup files in case of node failures.\nFollow the below steps to perform fund restoration.\n\nPrerequisite:\n1. The node has been restored with the LND recovery seed.\n2. RTL generated channel backup file/s is available (all channel backup file is channel-all.bak).\n\nRecovery:\n1. Create a restore folder in your folder backup location, as specified in the RTL config file.\n2. Place the channel backup file in the restore folder.\n3. Go to the "Restore" tab under the "Backup" page of RTL.\n4. RTL will list the options to restore funds from the all channel file or individual channel backup file.\n5. Click on the Restore icon on the grid to restore the funds.\n6. Once the restore function is executed successfully, RTL will rename the backup file and it will not be accessible from the UI.\n7. Restore function will force close the channels and recover the funds from them.\n8. The pending close channels can be viewed under the "Pending" tab on the "Peer/Channels" page.\n9. Once the channel is closed, the corresponding pending on-chain transactions can be viewed on the "On-Chain" page.\n10. Once the transactions are confirmed, the channels funds will be restored to your LND Wallet.\n',link:this.LNPLink+"channelbackup/restore",linkCaption:"Channel Restore",lnImplementation:"LND"})),this.helpTopics.push(new Vr({question:"Forwarding History",answer:'Transactions routed by the node.\nGo to "Routing" page under the "Lightning" menu :\nTransactions routed by the node are listed on this page along with channels and the fee earned by transaction.\n',link:this.LNPLink+"routing/forwardinghistory",linkCaption:"Forwarding History",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Lightning Reports",answer:'Routing and transactions data reports.\nGo to "Reports" page under the "Lightning" menu :\nReport can be generated on monthly/yearly basis by selecting the reporting period, month, and year.\n',link:this.LNPLink+"reports/routingreport",linkCaption:"Reports",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Graph Lookup",answer:'Querying your node graph for network node and channel information.\nGo to "Graph Lookup" page under the "Lightning" menu :\nEach node maintains a network graph for the information on all the nodes and channels on the network.\nYou can lookup information on nodes and channels from your graph:\n 1. Node Lookup - Enter the pubkey to perform the lookup.\n 2. Channel Lookup - Enter the short channel ID to perform the lookup.\n',link:this.LNPLink+"graph/lookups",linkCaption:"Graph Lookup",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Query Route",answer:'Querying Payment Routes.\nGo to the "Graph Lookup" page under the "Lightning" menu :\nQuery Routes tab is for querying a potential path to a node and a routing fee estimate for a payment amount.\n 1. Destination Pubkey - Pubkey of the node, you want to send the payment to.\n 2. Amount - Amount in Sats, which you want to send to the node.\n',link:this.LNPLink+"graph/queryroutes",linkCaption:"Query Routes",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Sign & Verify Messages",answer:'Messages signing and verification.\nGo to the "Sign/Verify" page under the "Lightning" menu :\n 1. Sign your message on "Sign" tab.\n 2. Go to "Verify" tab to verify a message.\n',link:this.LNPLink+"messages/sign",linkCaption:"Messages",lnImplementation:"LND"})),this.helpTopics.push(new Vr({question:"Sign & Verify Messages",answer:'Messages signing and verification.\nGo to the "Sign/Verify" page under the "Lightning" menu :\n 1. Sign your message on "Sign" tab.\n 2. Go to "Verify" tab to verify a message.\n',link:this.LNPLink+"messages/sign",linkCaption:"Messages",lnImplementation:"CLN"})),this.helpTopics.push(new Vr({question:"Node Settings",answer:'RTL offers certain customizations on the UI to personalize your experience on the app\nGo to "Node Config" page to access the customization options.\nNode Layout Options\n 1. User Persona - Two options are available to change the dashboard based on the persona.\n 2. Currency Unit - You can choose your preferred fiat currency, to view the onchain and channel balances in the choosen fiat currency.\n 3. Other customizations include day and night mode and a choice of color themes to select from.\nServices Options\n Loop (LND only), Boltz (LND only) & Peerswap (CLN only) services can be configured.\nExperimental Options (CLN only)\n Offers and Liquidity Ads can be enabled/disabled.\nShow LN Config (if configured)\n Shows lightning config file.\n',link:"../config/nodesettings",linkCaption:"Node Settings",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Application Settings",answer:'RTL also offers certain customizations on the application level\nGo to top right menu "Settings" page to access these options.\nDefault Node Option\nIf you are managing multiple nodes via RTL UI, you can select the default node to load upon login.\nAuthentication Option\nPassword and 2FA update options are available here.\nShow Bitcoin Config (if configured)\n Shows bitcoin config file.\n',link:"../settings/app",linkCaption:"Application Settings",lnImplementation:"ALL"}))}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(mi.il),e.rXU(ji.Q))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-help"]],standalone:!1,decls:8,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxFlex","100",4,"ngFor","ngForOf"],["fxFlex","100"],["class","flat-expansion-panel help-expansion mb-2px",4,"ngIf"],[1,"flat-expansion-panel","help-expansion","mb-2px"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start"],[1,"pre-wrap",3,"innerHTML"],[1,"mt-2",3,"routerLink"]],template:function(D,I){1&D&&(e.j41(0,"div",0)(1,"div",1),e.nrm(2,"fa-icon",2),e.j41(3,"span",3),e.EFF(4,"Help"),e.k0s()(),e.j41(5,"div",4)(6,"div",0),e.DNE(7,b3,2,1,"div",5),e.k0s()()()),2&D&&(e.R7$(2),e.Y8G("icon",I.faQuestion),e.R7$(5),e.Y8G("ngForOf",I.helpTopics))},dependencies:[w.Sq,w.bT,os.aY,or.GK,or.Z2,or.WN,or.Q6,Ie.DJ,Ie.sA,Ie.UI,lo.Wk],styles:[".mat-mdc-card-content[_ngcontent-%COMP%]{margin-bottom:4px}"]}))}return b(),_})();var Ru=l(4572);function H2(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Token is required."),e.k0s())}let Pu=(()=>{var b;class _{constructor(E,D){this.dialogRef=E,this.store=D,this.token=""}onClose(){this.dialogRef.close(null)}onVerifyToken(){if(!this.token)return!0;this.dialogRef.close(),this.store.dispatch((0,Bi.R$)({payload:{twoFAToken:this.token}}))}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Ro.CP),e.rXU(mi.il))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-login-token"]],standalone:!1,decls:19,vars:2,consts:[["tokenForm","ngForm"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","row",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100",3,"ngSubmit"],["autoFocus","","matInput","","type","text","id","token","name","token","tabindex","2","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","4","type","submit"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Two Factor Token"),e.k0s()(),e.j41(6,"button",6),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"form",8,0),e.bIt("ngSubmit",function(){return v.eBV(Oe),v.Njj(I.onVerifyToken())}),e.j41(11,"mat-form-field")(12,"mat-label"),e.EFF(13,"Token"),e.k0s(),e.j41(14,"input",9),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.token,Bt)||(I.token=Bt),v.Njj(Bt)}),e.k0s(),e.DNE(15,H2,2,0,"mat-error",10),e.k0s(),e.j41(16,"div",11)(17,"button",12),e.EFF(18,"Verify Token"),e.k0s()()()()()()}2&D&&(e.R7$(14),e.R50("ngModel",I.token),e.R7$(),e.Y8G("ngIf",!I.token))},dependencies:[w.bT,hi.qT,hi.me,hi.BC,hi.cb,hi.YS,hi.vS,hi.cV,es.$z,K.m2,K.MM,br.fg,Ma.rl,Ma.nJ,Ma.TL,Ie.DJ,Ie.sA,Ie.UI,Kl.N],encapsulation:2}))}return b(),_})();const C3=b=>({"padding-gap-large":b}),r1=(b,_)=>({"font-size-200":b,"font-size-300":_});function Fu(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function Nu(b,_){if(1&b&&(e.j41(0,"p",21)(1,"mat-icon",22),e.EFF(2,"close"),e.k0s(),e.EFF(3),e.k0s()),2&b){const m=e.XpG();e.R7$(3),e.SpI(" ",m.loginErrorMessage," ")}}function Bc(b,_){if(1&b&&(e.j41(0,"p",23)(1,"mat-icon",22),e.EFF(2,"close"),e.k0s(),e.EFF(3),e.k0s()),2&b){const m=e.XpG();e.R7$(3),e.SpI(" ",m.logoutReason," ")}}let W2=(()=>{var b;class _{constructor(E,D,I,Oe,Ct,Bt){this.actions=E,this.logger=D,this.store=I,this.rtlEffects=Oe,this.commonService=Ct,this.sessionService=Bt,this.faUnlockAlt=Ti.HEq,this.logoutReason="",this.password="",this.rtlSSO=0,this.rtlCookiePath="",this.accessKey="",this.flgShow=!1,this.screenSize="",this.screenSizeEnum=_t.f7,this.loginErrorMessage="",this.apiCallStatusEnum=_t.wn,this.unSubs=[new gi.B,new gi.B,new gi.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),(0,Ru.z)([this.store.select(Oa.Kq),this.store.select(Oa.E2)]).pipe((0,li.Q)(this.unSubs[0])).subscribe(([D,I])=>{this.loginErrorMessage="",D.status===_t.wn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof D.message?JSON.stringify(D.message):D.message),this.logger.error(D.message)),I.status===_t.wn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof I.message?JSON.stringify(I.message):I.message),this.logger.error(I.message))}),this.store.select(Oa.qv).pipe((0,li.Q)(this.unSubs[1])).subscribe(D=>{this.appConfig=D,this.logger.info(D)}),this.actions.pipe((0,za.p)(D=>D.type===_t.aU.LOGOUT),(0,Dr.s)(1)).subscribe(D=>{this.logoutReason=D.payload});const E=this.sessionService.getItem("logoutReason");E&&(this.logoutReason=E,this.sessionService.removeItem("logoutReason"))}onLogin(){if(!this.password)return!0;this.loginErrorMessage="",this.logoutReason="",this.appConfig.enable2FA?(this.store.dispatch((0,Bi.xO)({payload:{maxWidth:"35rem",data:{component:Pu}}})),this.rtlEffects.closeAlert.pipe((0,Dr.s)(1)).subscribe(E=>{E&&this.store.dispatch((0,Bi.iD)({payload:{password:_c(this.password),defaultPassword:_t.Ah.includes(this.password.toLowerCase()),twoFAToken:E.twoFAToken}}))})):this.store.dispatch((0,Bi.iD)({payload:{password:_c(this.password),defaultPassword:_t.Ah.includes(this.password.toLowerCase())}}))}resetData(){this.password="",this.loginErrorMessage="",this.logoutReason="",this.flgShow=!1}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Uo.En),e.rXU(Aa.gP),e.rXU(mi.il),e.rXU(Ko.H),e.rXU(Qo.h),e.rXU(ji.Q))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-login"]],standalone:!1,decls:29,vars:14,consts:[["loginForm","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"login-container"],["fxLayout","row","fxFlex.gt-sm","35","fxLayoutAlign","center center"],["fxLayout","row","fxFlex","45","fxLayoutAlign","center stretch"],["fxLayout","column","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxFlex","35","fxLayoutAlign","center center",1,"bg-primary"],["alt","RTL Logo","src","assets/images/RTL-Horse-BY.svg",1,"rtl-logo-svg"],["fxFlex","65","fxLayout","column","fxLayoutAlign","center stretch",3,"ngClass"],["fxLayout","row","fxLayoutAlign","center center",1,"page-title-container","mt-2","p-0"],[1,"font-bold-500",3,"ngClass"],[1,"page-title"],[1,"pb-2"],["fxLayout","column","fxLayoutAlign","start space-between"],["autoFocus","","matInput","","id","password","name","password","tabindex","1","required","",3,"ngModelChange","type","ngModel"],["mat-icon-button","","matSuffix","","tabindex","2","type","button",3,"click"],[4,"ngIf"],["class","color-warn pre-wrap","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["class","color-warn pre-wrap","fxLayout","row","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1","mb-2",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn","pre-wrap"],["fxLayoutAlign","center center",1,"mr-3px","icon-small"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"color-warn","pre-wrap"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card",3)(3,"div",4)(4,"div",5),e.nrm(5,"img",6),e.k0s(),e.j41(6,"div",7)(7,"mat-card-header",8)(8,"mat-card-title",9)(9,"span",10),e.EFF(10,"Welcome"),e.k0s()()(),e.j41(11,"mat-card-content",11)(12,"form",12,0)(14,"mat-form-field")(15,"mat-label"),e.EFF(16,"Password"),e.k0s(),e.j41(17,"input",13),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.password,Bt)||(I.password=Bt),v.Njj(Bt)}),e.k0s(),e.j41(18,"button",14),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.flgShow=!I.flgShow)}),e.j41(19,"mat-icon"),e.EFF(20),e.k0s()(),e.DNE(21,Fu,2,0,"mat-error",15),e.k0s(),e.DNE(22,Nu,4,1,"p",16)(23,Bc,4,1,"p",17),e.j41(24,"div",18)(25,"button",19),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.resetData())}),e.EFF(26,"Clear"),e.k0s(),e.j41(27,"button",20),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onLogin())}),e.EFF(28,"Login"),e.k0s()()()()()()()()()}2&D&&(e.R7$(6),e.Y8G("ngClass",e.eq3(9,C3,I.screenSize===I.screenSizeEnum.XS)),e.R7$(2),e.Y8G("ngClass",e.l_i(11,r1,I.screenSize===I.screenSizeEnum.XS,I.screenSize!==I.screenSizeEnum.XS)),e.R7$(9),e.Y8G("type",I.flgShow?"text":"password"),e.R50("ngModel",I.password),e.R7$(),e.BMQ("aria-label","Hide password"),e.R7$(2),e.JRh(I.flgShow?"visibility_off":"visibility"),e.R7$(),e.Y8G("ngIf",!I.password),e.R7$(),e.Y8G("ngIf",""!==I.loginErrorMessage),e.R7$(),e.Y8G("ngIf",""!==I.logoutReason))},dependencies:[w.YU,w.bT,hi.qT,hi.me,hi.BC,hi.cb,hi.YS,hi.vS,hi.cV,es.$z,Jc.iY,K.RN,K.m2,K.MM,K.dh,qc.An,br.fg,Ma.rl,Ma.nJ,Ma.TL,Ma.yw,Ie.DJ,Ie.sA,Ie.UI,cl.PW,Kl.N],styles:[".login-container[_ngcontent-%COMP%]{height:60vh;margin-top:15%}.login-container[_ngcontent-%COMP%] .mat-mdc-card[_ngcontent-%COMP%]{height:30rem}.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:100%}@media only screen and (max-width:56.25em){.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:37%}}@media only screen and (max-width:37.5em){.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:70%}}.login-container[_ngcontent-%COMP%] .material-icons.mat-icon[_ngcontent-%COMP%]{font-size:90%;cursor:pointer}"]}))}return b(),_})();var V1=l(13);let x3=(()=>{var b;class _{constructor(E,D){this.activatedRoute=E,this.router=D,this.error={errorCode:"",errorMessage:""},this.faTimes=Ti.GRI,this.unsubs=[new gi.B,new gi.B]}ngOnInit(){this.activatedRoute.paramMap.pipe((0,li.Q)(this.unsubs[0])).subscribe(E=>{this.error=window.history.state})}goToHelp(){this.router.navigate(["/help"])}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Ha.nX),e.rXU(Ha.Ix))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-error"]],standalone:!1,decls:13,vars:3,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","center center"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start center"],["fxLayout","row","fxLayoutAlign","center center",1,"page-title-container","padding-gap-large"],[1,"font-size-300","font-bold-500"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-large"],[1,"box-text","font-size-120"],["fxLayout","row","fxLayoutAlign","center","fxFlex","80"],["mat-flat-button","","color","primary","type","button",1,"mt-2",3,"click"]],template:function(D,I){1&D&&(e.j41(0,"div",0)(1,"mat-card",1)(2,"mat-card-header",2)(3,"mat-card-title",3),e.nrm(4,"fa-icon",4),e.j41(5,"span",5),e.EFF(6),e.k0s()()(),e.j41(7,"mat-card-content",6)(8,"div",7),e.EFF(9),e.k0s(),e.j41(10,"span",8)(11,"button",9),e.bIt("click",function(){return I.goToHelp()}),e.EFF(12,"Go To Help"),e.k0s()()()()()),2&D&&(e.R7$(4),e.Y8G("icon",I.faTimes),e.R7$(2),e.SpI("Error ",I.error.errorCode),e.R7$(3),e.JRh(I.error.errorMessage))},dependencies:[os.aY,es.$z,K.RN,K.m2,K.MM,K.dh,Ie.DJ,Ie.sA,Ie.UI],encapsulation:2}))}return b(),_})();var co=l(7186),o1=l(1534),om=l(92),lm=l(6114);const U1=(b,_)=>({"alert-danger":b,"alert-info":_});function E3(b,_){1&b&&e.nrm(0,"span",17)}function Od(b,_){1&b&&e.nrm(0,"span",18)}function X2(b,_){if(1&b){const m=e.RV6();e.j41(0,"form",19,0)(2,"div",20),e.nrm(3,"fa-icon",4),e.j41(4,"span"),e.EFF(5,"Please ensure that "),e.j41(6,"strong"),e.EFF(7,"experimental-offers"),e.k0s(),e.EFF(8," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),e.j41(9,"strong")(10,"a",21),e.EFF(11,"here"),e.k0s()(),e.EFF(12," to learn more about Core Lightning offers."),e.k0s()(),e.j41(13,"h4",22),e.EFF(14,"Description"),e.k0s(),e.j41(15,"span"),e.EFF(16,"Offers is a draft specification (also referred as BOLT12) for Lightning nodes and wallets, with experimental support in Core Lightning."),e.k0s(),e.j41(17,"h4",22),e.EFF(18,"Links"),e.k0s(),e.j41(19,"span")(20,"a",23),e.EFF(21,"Core lightning Bolt12"),e.k0s()(),e.nrm(22,"mat-divider",24),e.j41(23,"div",25),e.nrm(24,"fa-icon",4),e.j41(25,"span"),e.EFF(26,"Do not get an Offer tattoo until spec is fully ratified!"),e.k0s()(),e.j41(27,"mat-slide-toggle",26),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG(2);return e.DH7(I.enableOffers,D)||(I.enableOffers=D),v.Njj(D)}),e.bIt("change",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onUpdateFeature())}),e.EFF(28),e.k0s()()}if(2&b){const m=e.XpG(2);e.R7$(3),e.Y8G("icon",m.faInfoCircle),e.R7$(19),e.Y8G("inset",!0),e.R7$(2),e.Y8G("icon",m.faExclamationTriangle),e.R7$(3),e.R50("ngModel",m.enableOffers),e.R7$(),e.SpI("Enable Offers ",m.enableOffers?"(You can find Offers under Lightning -> Transactions -> Offers)":"")}}function M3(b,_){if(1&b&&(e.j41(0,"div")(1,"div",29),e.nrm(2,"fa-icon",4),e.j41(3,"span"),e.EFF(4,"Please ensure that "),e.j41(5,"strong"),e.EFF(6,"experimental-dual-fund"),e.k0s(),e.EFF(7," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),e.j41(8,"strong")(9,"a",30),e.EFF(10,"here"),e.k0s()(),e.EFF(11," to learn more about Core Lightning Liquidity Ads."),e.k0s()()()),2&b){const m=e.XpG(3);e.R7$(2),e.Y8G("icon",m.faExclamationTriangle)}}function S3(b,_){if(1&b&&(e.j41(0,"mat-option",47),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&b){const m=_.$implicit;e.Y8G("value",m),e.R7$(),e.SpI(" ",e.bMT(2,2,m.id)," ")}}function cm(b,_){if(1&b&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&b){const m=e.XpG(4);e.R7$(),e.SpI("",m.selPolicyType.placeholder," is required.")}}function T3(b,_){if(1&b&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&b){const m=e.XpG(4);e.R7$(),e.Lme("",m.selPolicyType.placeholder," must be greater than or equal to ",m.selPolicyType.min,".")}}function D3(b,_){if(1&b&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&b){const m=e.XpG(4);e.R7$(),e.Lme("",m.selPolicyType.placeholder," must be less than or equal to ",m.selPolicyType.max,".")}}function dm(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Lease base fee is required."),e.k0s())}function Nf(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Lease base basis is required."),e.k0s())}function w3(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Max channel routing base fee is required."),e.k0s())}function A3(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Max channel routing fee rate is required."),e.k0s())}function l1(b,_){if(1&b&&(e.j41(0,"h4",48)(1,"span",49),e.EFF(2),e.k0s()()),2&b){const m=e.XpG(4);e.R7$(),e.Y8G("ngClass",e.l_i(2,U1,!!m.updateMsg.error,!!m.updateMsg.data)),e.R7$(),e.SpI(" ",m.updateMsg.error&&""!==m.updateMsg.error?`Error: ${m.updateMsg.error||"Unknown Error"}`:m.updateMsg.data&&""!==m.updateMsg.data?m.updateMsg.data:"Successfully Updated the Funding Policy!"," ")}}function um(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",31)(1,"div",32),e.nrm(2,"fa-icon",4),e.j41(3,"span"),e.EFF(4,"These config changes should be configured permanently via the config file on your CLN node otherwise the policy would need to be configured again, if your node restarts."),e.k0s()(),e.j41(5,"div",33)(6,"mat-form-field",34)(7,"mat-label"),e.EFF(8,"Policy"),e.k0s(),e.j41(9,"mat-select",35),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG(3);return e.DH7(I.selPolicyType,D)||(I.selPolicyType=D),v.Njj(D)}),e.bIt("selectionChange",function(){v.eBV(m);const D=e.XpG(3);return v.Njj(D.policyMod=null)}),e.DNE(10,S3,3,4,"mat-option",36),e.k0s()(),e.j41(11,"mat-form-field",37)(12,"mat-label"),e.EFF(13),e.k0s(),e.j41(14,"input",38,1),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG(3);return e.DH7(I.policyMod,D)||(I.policyMod=D),v.Njj(D)}),e.k0s(),e.j41(16,"mat-hint"),e.EFF(17),e.k0s(),e.DNE(18,cm,2,1,"mat-error",27)(19,T3,2,2,"mat-error",27)(20,D3,2,2,"mat-error",27),e.k0s()(),e.j41(21,"div",33)(22,"mat-form-field",37)(23,"mat-label"),e.EFF(24,"Lease Base Fee (Sats)"),e.k0s(),e.j41(25,"input",39),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG(3);return e.DH7(I.lease_fee_base_sat,D)||(I.lease_fee_base_sat=D),v.Njj(D)}),e.k0s(),e.DNE(26,dm,2,0,"mat-error",27),e.k0s(),e.j41(27,"mat-form-field",37)(28,"mat-label"),e.EFF(29,"Lease Base Basis (bps)"),e.k0s(),e.j41(30,"input",40),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG(3);return e.DH7(I.lease_fee_basis,D)||(I.lease_fee_basis=D),v.Njj(D)}),e.k0s(),e.DNE(31,Nf,2,0,"mat-error",27),e.k0s()(),e.j41(32,"div",33)(33,"mat-form-field",37)(34,"mat-label"),e.EFF(35,"Max Channel Routing Base Fee (Sats)"),e.k0s(),e.j41(36,"input",41),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG(3);return e.DH7(I.channelFeeMaxBaseSat,D)||(I.channelFeeMaxBaseSat=D),v.Njj(D)}),e.k0s(),e.DNE(37,w3,2,0,"mat-error",27),e.k0s(),e.j41(38,"mat-form-field",37)(39,"mat-label"),e.EFF(40,"Max Channel Routing Fee Rate (ppm)"),e.k0s(),e.j41(41,"input",42),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG(3);return e.DH7(I.channelFeeMaxProportional,D)||(I.channelFeeMaxProportional=D),v.Njj(D)}),e.k0s(),e.DNE(42,A3,2,0,"mat-error",27),e.k0s()(),e.DNE(43,l1,3,5,"h4",43),e.j41(44,"div",44)(45,"button",45),e.bIt("click",function(){v.eBV(m);const D=e.XpG(3);return v.Njj(D.onResetPolicy())}),e.EFF(46,"Reset"),e.k0s(),e.j41(47,"button",46),e.bIt("click",function(){v.eBV(m);const D=e.XpG(3);return v.Njj(D.onUpdateFundingPolicy())}),e.EFF(48,"Update"),e.k0s()()()}if(2&b){const m=e.XpG(3);e.R7$(2),e.Y8G("icon",m.faExclamationTriangle),e.R7$(7),e.R50("ngModel",m.selPolicyType),e.R7$(),e.Y8G("ngForOf",m.policyTypes),e.R7$(3),e.JRh(m.selPolicyType.placeholder),e.R7$(),e.Y8G("step","fixed"===m.selPolicyType.id?1e3:10)("min",m.selPolicyType.min)("max",m.selPolicyType.max),e.R50("ngModel",m.policyMod),e.R7$(3),e.E5c("",m.selPolicyType.placeholder," should be between ",m.selPolicyType.min," and ",m.selPolicyType.max),e.R7$(),e.Y8G("ngIf",!m.policyMod),e.R7$(),e.Y8G("ngIf",m.policyModm.selPolicyType.max),e.R7$(5),e.R50("ngModel",m.lease_fee_base_sat),e.R7$(),e.Y8G("ngIf",!m.lease_fee_base_sat),e.R7$(4),e.R50("ngModel",m.lease_fee_basis),e.R7$(),e.Y8G("ngIf",!m.lease_fee_basis),e.R7$(5),e.R50("ngModel",m.channelFeeMaxBaseSat),e.R7$(),e.Y8G("ngIf",!m.channelFeeMaxBaseSat),e.R7$(4),e.R50("ngModel",m.channelFeeMaxProportional),e.R7$(),e.Y8G("ngIf",!m.channelFeeMaxProportional),e.R7$(),e.Y8G("ngIf",m.flgUpdateCalled)}}function K2(b,_){if(1&b&&(e.j41(0,"form",19,0),e.DNE(2,M3,12,1,"div",27)(3,um,49,23,"div",28),e.k0s()),2&b){const m=e.XpG(2);e.R7$(2),e.Y8G("ngIf",!m.features[1].enabled),e.R7$(),e.Y8G("ngIf",m.features[1].enabled)}}function Rd(b,_){if(1&b){const m=e.RV6();e.j41(0,"mat-expansion-panel",10),e.bIt("opened",function(){const D=v.eBV(m).index,I=e.XpG();return v.Njj(I.onPanelExpanded(D))}),e.j41(1,"mat-expansion-panel-header")(2,"mat-panel-title",11)(3,"h4",12),e.EFF(4),e.k0s(),e.j41(5,"h4",12),e.DNE(6,E3,1,0,"span",13)(7,Od,1,0,"span",14),e.EFF(8),e.k0s()()(),e.j41(9,"div",15),e.DNE(10,X2,29,5,"form",16)(11,K2,4,2,"form",16),e.k0s()()}if(2&b){const m=_.$implicit,E=_.index;e.Y8G("expanded",!1),e.R7$(4),e.JRh(m.name),e.R7$(2),e.Y8G("ngIf",m.enabled),e.R7$(),e.Y8G("ngIf",!m.enabled),e.R7$(),e.SpI(" ",m.enabled?"Enabled":"Disabled"," "),e.R7$(2),e.Y8G("ngIf",0===E),e.R7$(),e.Y8G("ngIf",1===E)}}let Y2=(()=>{var b;class _{constructor(E,D,I,Oe){this.logger=E,this.store=D,this.dataService=I,this.commonService=Oe,this.faInfoCircle=Ti.iW_,this.faExclamationTriangle=Ti.zpE,this.faCode=Ti.jTw,this.features=[{name:"Offers",enabled:!1},{name:"Channel Funding Policy",enabled:!1}],this.enableOffers=!1,this.fundingPolicy={},this.policyTypes=_t.ul,this.selPolicyType=_t.ul[0],this.flgUpdateCalled=!1,this.updateMsg={},this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B,new gi.B]}ngOnInit(){this.dataService.listConfigs().pipe((0,li.Q)(this.unSubs[0])).subscribe({next:E=>{this.logger.info("Received List Configs: "+JSON.stringify(E)),this.features[1].enabled=!!E.configs["experimental-dual-fund"].set},error:E=>{this.logger.error("List Configs Error: "+JSON.stringify(E)),this.features[1].enabled=!1}}),this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{this.selNode=E,this.enableOffers=this.selNode.settings.enableOffers||!1,this.features[0].enabled=this.enableOffers,this.logger.info(this.selNode)}),this.store.select(B0.Al).pipe((0,li.Q)(this.unSubs[2])).subscribe(E=>{this.policyTypes[2].max=E.balance.totalBalance||1e3})}onPanelExpanded(E){1===E&&!this.fundingPolicy.policy&&this.dataService.getOrUpdateFunderPolicy().pipe((0,li.Q)(this.unSubs[3])).subscribe(D=>{this.logger.info("Received Funder Update Policy: "+JSON.stringify(D)),this.fundingPolicy=D,this.fundingPolicy.policy&&(this.selPolicyType=_t.ul.find(I=>I.id===this.fundingPolicy.policy)||this.policyTypes[0]),this.policyMod=this.fundingPolicy.policy_mod||0===this.fundingPolicy.policy_mod?this.fundingPolicy.policy_mod:null,this.lease_fee_base_sat=this.fundingPolicy.lease_fee_base_msat?this.fundingPolicy.lease_fee_base_msat/1e3:0===this.fundingPolicy.lease_fee_base_msat?0:null,this.lease_fee_basis=this.fundingPolicy.lease_fee_basis||0===this.fundingPolicy.lease_fee_basis?this.fundingPolicy.lease_fee_basis:null,this.channelFeeMaxBaseSat=this.fundingPolicy.channel_fee_max_base_msat?this.fundingPolicy.channel_fee_max_base_msat/1e3:0===this.fundingPolicy.channel_fee_max_base_msat?0:null,this.channelFeeMaxProportional=this.fundingPolicy.channel_fee_max_proportional_thousandths||0===this.fundingPolicy.channel_fee_max_proportional_thousandths?1e3*this.fundingPolicy.channel_fee_max_proportional_thousandths:null})}onUpdateFeature(){this.logger.info(this.selNode),this.selNode.settings.enableOffers=this.enableOffers,this.features[0].enabled=this.enableOffers,this.store.dispatch((0,Bi.T$)({payload:this.selNode}))}onUpdateFundingPolicy(){this.flgUpdateCalled=!0,this.updateMsg={},this.dataService.getOrUpdateFunderPolicy(this.selPolicyType.id,this.policyMod,1e3*(this.lease_fee_base_sat||0),this.lease_fee_basis,1e3*(this.channelFeeMaxBaseSat||0),this.channelFeeMaxProportional?this.channelFeeMaxProportional/1e3:0).pipe((0,li.Q)(this.unSubs[4])).subscribe({next:E=>{this.logger.info(E),this.fundingPolicy=E,this.updateMsg={data:"Compact Lease: "+E.compact_lease},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)},error:E=>{this.logger.error(E),this.updateMsg={error:this.commonService.extractErrorMessage(E,"Error in updating funder policy")},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)}})}onResetPolicy(){this.flgUpdateCalled=!1,this.updateMsg={},this.selPolicyType=this.fundingPolicy.policy?_t.ul.find(E=>E.id===this.fundingPolicy.policy)||this.policyTypes[0]:_t.ul[0],this.policyMod=this.fundingPolicy.policy_mod||0===this.fundingPolicy.policy_mod?this.fundingPolicy.policy_mod:null,this.lease_fee_base_sat=this.fundingPolicy.lease_fee_base_msat?this.fundingPolicy.lease_fee_base_msat/1e3:0===this.fundingPolicy.lease_fee_base_msat?0:null,this.lease_fee_basis=this.fundingPolicy.lease_fee_basis||0===this.fundingPolicy.lease_fee_basis?this.fundingPolicy.lease_fee_basis:null,this.channelFeeMaxBaseSat=this.fundingPolicy.channel_fee_max_base_msat?this.fundingPolicy.channel_fee_max_base_msat/1e3:0===this.fundingPolicy.channel_fee_max_base_msat?0:null,this.channelFeeMaxProportional=this.fundingPolicy.channel_fee_max_proportional_thousandths||0===this.fundingPolicy.channel_fee_max_proportional_thousandths?1e3*this.fundingPolicy.channel_fee_max_proportional_thousandths:null}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(mi.il),e.rXU(o1.u),e.rXU(Qo.h))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-experimental-settings"]],standalone:!1,decls:13,vars:3,consts:[["form","ngForm"],["plcMod","ngModel"],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["class","flat-expansion-panel my-1",3,"expanded","opened",4,"ngFor","ngForOf"],[1,"flat-expansion-panel","my-1",3,"opened","expanded"],["fxFlex","100","fxLayoutAlign","space-between center"],[1,"font-bold-500"],["class","dot green",4,"ngIf"],["class","dot yellow",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],[1,"dot","green"],[1,"dot","yellow"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-info"],["href","http://bolt12.org","target","_blank"],[1,"mt-2"],["href","https://github.com/lightningnetwork/lightning-rfc/pull/798 ","target","blank"],[1,"my-2",3,"inset"],[1,"alert","alert-warn"],["autoFocus","","tabindex","1","color","primary","name","enableOfr",1,"my-1",3,"ngModelChange","change","ngModel"],[4,"ngIf"],["fxLayout","column",4,"ngIf"],["fxFlex","100","fxLayout","row",1,"alert","alert-warn"],["href","https://medium.com/blockstream/setting-up-liquidity-ads-in-c-lightning-54e4c59c091d","target","_blank"],["fxLayout","column"],["fxFlex","100","fxLayout","row",1,"alert","alert-warn","mb-2"],["fxLayout","column","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start end"],["autofocus","","tabindex","1","name","policy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","49"],["matInput","","type","number","tabindex","2","required","","name","plcMod",3,"ngModelChange","step","min","max","ngModel"],["matInput","","type","number","step","100","min","0","tabindex","3","required","","name","lease_fee_base_sat",3,"ngModelChange","ngModel"],["matInput","","type","number","step","1","min","0","tabindex","4","required","","name","lease_fee_basis",3,"ngModelChange","ngModel"],["matInput","","type","number","step","100","min","0","tabindex","5","required","","name","channelFeeMaxBaseSat",3,"ngModelChange","ngModel"],["matInput","","type","number","step","1000","min","0","tabindex","6","required","","name","channelFeeMaxProportional",3,"ngModelChange","ngModel"],["fxLayoutAlign","start stretch","class","font-bold-500 mt-2",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","7",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],[3,"value"],["fxLayoutAlign","start stretch",1,"font-bold-500","mt-2"],["fxFlex","100",1,"alert",3,"ngClass"]],template:function(D,I){1&D&&(e.j41(0,"div",2)(1,"div",3),e.nrm(2,"fa-icon",4),e.j41(3,"span"),e.EFF(4,"Experimental features should be enabled with caution. Many such features may be implementation specific and not ratified for the BOLT spec. Enabling these may still result in a broken experience. Referencing relevant feature documentation is highly advised before enabling."),e.k0s()(),e.j41(5,"form",5,0)(7,"div",6),e.nrm(8,"fa-icon",7),e.j41(9,"span",8),e.EFF(10,"Features"),e.k0s()(),e.j41(11,"mat-accordion"),e.DNE(12,Rd,12,7,"mat-expansion-panel",9),e.k0s()()()),2&D&&(e.R7$(2),e.Y8G("icon",I.faInfoCircle),e.R7$(6),e.Y8G("icon",I.faCode),e.R7$(4),e.Y8G("ngForOf",I.features))},dependencies:[w.YU,w.Sq,w.bT,hi.qT,hi.me,hi.Q0,hi.BC,hi.cb,hi.YS,hi.VZ,hi.zX,hi.vS,hi.cV,os.aY,es.$z,or.BS,or.GK,or.Z2,or.WN,br.fg,Ma.rl,Ma.nJ,Ma.MV,Ma.TL,Hi.q,Ie.DJ,Ie.sA,Ie.UI,cl.PW,sl.VO,ac.wT,bc.sG,go.Ld,Kl.N,om.z,lm.V,w.PV],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}))}return b(),_})(),Q2=(()=>{var b;class _{constructor(){}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-no-service-found"]],standalone:!1,decls:6,vars:0,consts:[["fxLayout","column",1,"padding-gap-x"],["fxLayout","column",1,"padding-gap-large"],["fxLayout","column","fxLayoutAlign","start start"],[1,"box-text"]],template:function(D,I){1&D&&(e.j41(0,"div",0)(1,"mat-card")(2,"mat-card-content",1)(3,"div",2)(4,"div",3),e.EFF(5,"No Service Found!"),e.k0s()()()()())},dependencies:[K.RN,K.m2,Ie.DJ,Ie.sA],encapsulation:2}))}return b(),_})();const $2=[{path:"",pathMatch:"full",redirectTo:"login"},{path:"lnd",loadChildren:()=>Promise.all([l.e(193),l.e(190)]).then(l.bind(l,9190)).then(b=>b.LNDModule),canActivate:[(0,co.q_)()]},{path:"cln",loadChildren:()=>Promise.all([l.e(193),l.e(853)]).then(l.bind(l,4853)).then(b=>b.CLNModule),canActivate:[(0,co.q_)()]},{path:"ecl",loadChildren:()=>Promise.all([l.e(193),l.e(17)]).then(l.bind(l,9017)).then(b=>b.ECLModule),canActivate:[(0,co.q_)()]},{path:"settings",component:Wa,canActivate:[(0,co.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"app"},{path:"app",component:Qc,canActivate:[(0,co.q_)()]},{path:"auth",component:rr,canActivate:[(0,co.q_)()]},{path:"bconfig",component:Pf,canActivate:[(0,co.q_)()]}]},{path:"config",component:k0,canActivate:[(0,co.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"nodesettings"},{path:"nodesettings",component:N0,canActivate:[(0,co.q_)()]},{path:"pglayout",component:Xh,canActivate:[(0,co.q_)()]},{path:"services",component:X0,canActivate:[(0,co.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",component:e1,canActivate:[(0,co.q_)()]},{path:"boltz",component:Kh,canActivate:[(0,co.q_)()]},{path:"noservice",component:Q2}]},{path:"experimental",component:Y2,canActivate:[(0,co.q_)()]},{path:"lnconfig",component:l2,canActivate:[(0,co.q_)()]}]},{path:"services",component:Yh,canActivate:[(0,co.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",pathMatch:"full",redirectTo:"loop/loopout"},{path:"loop/:selTab",component:nu},{path:"boltz",pathMatch:"full",redirectTo:"boltz/swapout"},{path:"boltz/:selTab",component:sm}]},{path:"help",component:s1},{path:"login",component:W2},{path:"error",component:x3},{path:"**",component:V1.X}],Pd=lo.iI.forRoot($2,{onSameUrlNavigation:"reload",scrollPositionRestoration:"enabled"});var Bu=l(9029),hm=l(9881),Fd=l(4330),zu=l(9183),Nd=l(882),Tc=l(5911),Bd=l(2279),Cl=l(7358);const Dc={LNDChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:Ti.xiI,link:"/lnd/home",userPersona:_t.HW.ALL,children:[]},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:Ti.CQO,link:"/lnd/onchain",userPersona:_t.HW.ALL,children:[]},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:Ti.zm_,link:"/lnd/connections",userPersona:_t.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:Ti.gdJ,link:"/lnd/connections",userPersona:_t.HW.ALL,children:[]},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:Ti._qq,link:"/lnd/transactions",userPersona:_t.HW.ALL,children:[]},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:Ti.knH,link:"/lnd/routing",userPersona:_t.HW.ALL,children:[]},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:Ti.$Fj,link:"/lnd/reports",userPersona:_t.HW.ALL,children:[]},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:Ti.MjD,link:"/lnd/graph",userPersona:_t.HW.ALL,children:[]},{id:36,parentId:3,name:"Sign/Verify",iconType:"FA",icon:Ti.pCJ,link:"/lnd/messages",userPersona:_t.HW.ALL,children:[]},{id:37,parentId:3,name:"Backup",iconType:"FA",icon:Ti.cbP,link:"/lnd/channelbackup",userPersona:_t.HW.ALL,children:[]},{id:38,parentId:3,name:"Network",iconType:"FA",icon:Ti.qFF,link:"/lnd/network",userPersona:_t.HW.OPERATOR,children:[]},{id:39,parentId:3,name:"Node/Network",iconType:"FA",icon:Ti.D6w,link:"/lnd/network",userPersona:_t.HW.MERCHANT,children:[]}]},{id:4,parentId:0,name:"Services",iconType:"FA",icon:Ti.qIE,link:"/services/loop",userPersona:_t.HW.ALL,children:[{id:41,parentId:4,name:"Loop",iconType:"FA",icon:Ti.C8j,link:"/services/loop",userPersona:_t.HW.ALL,children:[]},{id:42,parentId:4,name:"Boltz",iconType:"SVG",icon:"boltzIconBlock",link:"/services/boltz",userPersona:_t.HW.ALL,children:[]}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:Ti.nsx,link:"/config",userPersona:_t.HW.ALL,children:[]},{id:6,parentId:0,name:"Help",iconType:"FA",icon:Ti.EvL,link:"/help",userPersona:_t.HW.ALL,children:[]}],CLNChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:Ti.xiI,link:"/cln/home",userPersona:_t.HW.ALL,children:[]},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:Ti.CQO,link:"/cln/onchain",userPersona:_t.HW.ALL,children:[]},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:Ti.zm_,link:"/cln/connections",userPersona:_t.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:Ti.gdJ,link:"/cln/connections",userPersona:_t.HW.ALL,children:[]},{id:32,parentId:3,name:"Liquidity Ads",iconType:"FA",icon:Ti.e4L,link:"/cln/liquidityads",userPersona:_t.HW.ALL,children:[]},{id:33,parentId:3,name:"Transactions",iconType:"FA",icon:Ti._qq,link:"/cln/transactions",userPersona:_t.HW.ALL,children:[]},{id:34,parentId:3,name:"Routing",iconType:"FA",icon:Ti.knH,link:"/cln/routing",userPersona:_t.HW.ALL,children:[]},{id:35,parentId:3,name:"Reports",iconType:"FA",icon:Ti.$Fj,link:"/cln/reports",userPersona:_t.HW.ALL,children:[]},{id:36,parentId:3,name:"Graph Lookup",iconType:"FA",icon:Ti.MjD,link:"/cln/graph",userPersona:_t.HW.ALL,children:[]},{id:37,parentId:3,name:"Sign/Verify",iconType:"FA",icon:Ti.pCJ,link:"/cln/messages",userPersona:_t.HW.ALL,children:[]},{id:38,parentId:3,name:"Fee Rates",iconType:"FA",icon:Ti.WKo,link:"/cln/rates",userPersona:_t.HW.OPERATOR,children:[]},{id:39,parentId:3,name:"Node/Fee Rates",iconType:"FA",icon:Ti.D6w,link:"/cln/rates",userPersona:_t.HW.MERCHANT,children:[]}]},{id:4,parentId:0,name:"Services",iconType:"FA",icon:Ti.qIE,link:"/services/loop",userPersona:_t.HW.ALL,children:[{id:42,parentId:4,name:"Boltz",iconType:"SVG",icon:"boltzIconBlock",link:"/services/boltz",userPersona:_t.HW.ALL,children:[]}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:Ti.nsx,link:"/config",userPersona:_t.HW.ALL,children:[]},{id:6,parentId:0,name:"Help",iconType:"FA",icon:Ti.EvL,link:"/help",userPersona:_t.HW.ALL,children:[]}],ECLChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:Ti.xiI,link:"/ecl/home",userPersona:_t.HW.ALL,children:[]},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:Ti.CQO,link:"/ecl/onchain",userPersona:_t.HW.ALL,children:[]},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:Ti.zm_,link:"/ecl/connections",userPersona:_t.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:Ti.gdJ,link:"/ecl/connections",userPersona:_t.HW.ALL,children:[]},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:Ti._qq,link:"/ecl/transactions",userPersona:_t.HW.ALL,children:[]},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:Ti.knH,link:"/ecl/routing",userPersona:_t.HW.ALL,children:[]},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:Ti.$Fj,link:"/ecl/reports",userPersona:_t.HW.ALL,children:[]},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:Ti.MjD,link:"/ecl/graph",userPersona:_t.HW.ALL,children:[]}]},{id:4,parentId:0,name:"Node Config",iconType:"FA",icon:Ti.nsx,link:"/config",userPersona:_t.HW.ALL,children:[]},{id:5,parentId:0,name:"Help",iconType:"FA",icon:Ti.EvL,link:"/help",userPersona:_t.HW.ALL,children:[]}]};function L3(b,_){if(1&b&&(e.j41(0,"mat-option",12),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.Y8G("value",m.index),e.R7$(),e.Lme(" ",m.lnNode," (",m.lnImplementation,") ")}}function I3(b,_){if(1&b){const m=e.RV6();e.j41(0,"mat-select",10),e.bIt("selectionChange",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onNodeSelectionChange(D.value))}),e.j41(1,"perfect-scrollbar"),e.DNE(2,L3,2,3,"mat-option",11),e.k0s()()}if(2&b){const m=e.XpG();e.Y8G("value",m.selConfigNodeIndex),e.R7$(2),e.Y8G("ngForOf",m.appConfig.nodes)}}function k3(b,_){if(1&b&&(e.j41(0,"span",21),e.eu8(1,22),e.k0s()),2&b){const m=e.XpG().$implicit;e.XpG(2);const E=e.sdS(11);e.R7$(),e.Y8G("ngTemplateOutlet","boltzIconBlock"===m.icon?E:null)}}function zd(b,_){if(1&b&&e.nrm(0,"fa-icon",23),2&b){const m=e.XpG().$implicit;e.Y8G("icon",m.icon)}}function O3(b,_){if(1&b&&(e.j41(0,"mat-icon",24),e.EFF(1),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.JRh(m.icon)}}function R3(b,_){if(1&b){const m=e.RV6();e.j41(0,"mat-tree-node",15)(1,"div",16),e.bIt("click",function(){const D=v.eBV(m).$implicit,I=e.XpG(2);return v.Njj(I.onChildNavClicked(D))}),e.j41(2,"div",17),e.DNE(3,k3,2,1,"span",18)(4,zd,1,1,"fa-icon",19)(5,O3,2,1,"mat-icon",20),e.j41(6,"span"),e.EFF(7),e.k0s()()()()}if(2&b){const m=_.$implicit;e.Y8G("routerLink",e.mNQ(m.link)),e.R7$(3),e.Y8G("ngIf","SVG"===m.iconType),e.R7$(),e.Y8G("ngIf","FA"===m.iconType),e.R7$(),e.Y8G("ngIf",!m.iconType),e.R7$(2),e.JRh(m.name)}}function P3(b,_){if(1&b&&(e.j41(0,"span",32),e.eu8(1,22),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.Y8G("ngTemplateOutlet",m.icon)}}function Z2(b,_){if(1&b&&e.nrm(0,"fa-icon",23),2&b){const m=e.XpG().$implicit;e.Y8G("icon",m.icon)}}function Vu(b,_){if(1&b&&(e.j41(0,"mat-icon",24),e.EFF(1),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.JRh(m.icon)}}function Uu(b,_){if(1&b&&(e.j41(0,"mat-nested-tree-node",25)(1,"div",26)(2,"div",27),e.DNE(3,P3,2,1,"span",28)(4,Z2,1,1,"fa-icon",19)(5,Vu,2,1,"mat-icon",20),e.j41(6,"span"),e.EFF(7),e.k0s()(),e.j41(8,"button",29)(9,"mat-icon"),e.EFF(10),e.k0s()()(),e.j41(11,"div",30),e.eu8(12,31),e.k0s()()),2&b){const m=_.$implicit,E=e.XpG(2);e.R7$(3),e.Y8G("ngIf","SVG"===m.iconType),e.R7$(),e.Y8G("ngIf","FA"===m.iconType),e.R7$(),e.Y8G("ngIf",!m.iconType),e.R7$(2),e.JRh(m.name),e.R7$(),e.BMQ("aria-label","toggle "+m.name),e.R7$(2),e.JRh(E.treeControlNested.isExpanded(m)?"arrow_drop_up":"arrow_drop_down"),e.R7$(),e.AVh("tree-children-invisible",!E.treeControlNested.isExpanded(m))}}function F3(b,_){if(1&b&&(e.j41(0,"mat-tree",7,1),e.DNE(2,R3,8,6,"mat-tree-node",13)(3,Uu,13,8,"mat-nested-tree-node",14),e.k0s()),2&b){const m=e.XpG();e.Y8G("dataSource",m.navMenus)("treeControl",m.treeControlNested),e.R7$(3),e.Y8G("matTreeNodeDefWhen",m.hasChild)}}function N3(b,_){if(1&b&&(e.j41(0,"span",37),e.eu8(1,22),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.Y8G("ngTemplateOutlet",m.icon)}}function B3(b,_){if(1&b&&e.nrm(0,"fa-icon",38),2&b){const m=e.XpG().$implicit;e.Y8G("matTooltip",e.mNQ(m.name))("icon",m.icon)}}function J2(b,_){if(1&b&&(e.j41(0,"mat-icon",39),e.EFF(1),e.k0s()),2&b){const m=e.XpG().$implicit;e.Y8G("matTooltip",e.mNQ(m.name)),e.R7$(),e.JRh(m.icon)}}function Vd(b,_){if(1&b){const m=e.RV6();e.j41(0,"mat-tree-node",33),e.bIt("click",function(){const D=v.eBV(m).$implicit,I=e.XpG();return v.Njj(I.onShowData(D))}),e.DNE(1,N3,2,1,"span",34)(2,B3,1,3,"fa-icon",35)(3,J2,2,3,"mat-icon",36),e.j41(4,"span"),e.EFF(5),e.k0s()()}if(2&b){const m=_.$implicit;e.R7$(),e.Y8G("ngIf","SVG"===m.iconType),e.R7$(),e.Y8G("ngIf","FA"===m.iconType),e.R7$(),e.Y8G("ngIf",!m.iconType),e.R7$(2),e.JRh(m.name)}}function z3(b,_){if(1&b&&(e.j41(0,"span",32),e.eu8(1,22),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.Y8G("ngTemplateOutlet",m.icon)}}function fm(b,_){if(1&b&&e.nrm(0,"fa-icon",38),2&b){const m=e.XpG().$implicit;e.Y8G("matTooltip",e.mNQ(m.name))("icon",m.icon)}}function V3(b,_){if(1&b){const m=e.RV6();e.j41(0,"mat-tree-node",33),e.bIt("click",function(){const D=v.eBV(m).$implicit,I=e.XpG(2);return v.Njj(I.onClick(D))}),e.DNE(1,z3,2,1,"span",28)(2,fm,1,3,"fa-icon",35),e.j41(3,"span"),e.EFF(4),e.k0s()()}if(2&b){const m=_.$implicit;e.R7$(),e.Y8G("ngIf","SVG"===m.iconType),e.R7$(),e.Y8G("ngIf","FA"===m.iconType),e.R7$(2),e.JRh(m.name)}}function q2(b,_){if(1&b&&(e.j41(0,"mat-tree",7),e.DNE(1,V3,5,3,"mat-tree-node",8),e.k0s()),2&b){const m=e.XpG();e.Y8G("dataSource",m.navMenusLogout)("treeControl",m.treeControlLogout)}}function pm(b,_){1&b&&(v.qSk(),e.j41(0,"svg",40)(1,"g",41)(2,"g",42),e.nrm(3,"circle",43)(4,"path",44)(5,"path",45),e.k0s()()())}let gm=(()=>{var b;class _{constructor(E,D,I,Oe,Ct,Bt){this.logger=E,this.commonService=D,this.sessionService=I,this.store=Oe,this.actions=Ct,this.rtlEffects=Bt,this.ChildNavClicked=new e.bkB,this.faEject=Ti.njF,this.faEye=Ti.pS3,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.logoutNode=[{id:200,parentId:0,name:"Logout",iconType:"FA",icon:Ti.njF,children:[]}],this.showDataNodes=[{id:1e3,parentId:0,name:"Public Key",iconType:"FA",icon:Ti.pS3,children:[]}],this.showLogout=!1,this.numPendingChannels=0,this.smallScreen=!1,this.childRootRoute="",this.userPersonaEnum=_t.HW,this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B,new gi.B,new gi.B],this.treeControlNested=new Bd.XO(yn=>yn.children),this.treeControlLogout=new Bd.XO(yn=>yn.children),this.treeControlShowData=new Bd.XO(yn=>yn.children),this.navMenus=new Cl.Zh,this.navMenusLogout=new Cl.Zh,this.navMenusShowData=new Cl.Zh,this.hasChild=(yn,Yn)=>!!Yn.children&&Yn.children.length>0,this.version=_t.xv,Dc.LNDChildren&&200===Dc.LNDChildren[Dc.LNDChildren.length-1].id&&Dc.LNDChildren.pop(),this.navMenus.data=Dc.LNDChildren||[],this.navMenusLogout.data=this.logoutNode,this.navMenusShowData.data=this.showDataNodes}ngOnInit(){const E=this.sessionService.getItem("token");this.showLogout=!!E,this.flgLoading=!!E,this.store.select(Oa.qv).pipe((0,li.Q)(this.unSubs[0])).subscribe(D=>{this.appConfig=D}),this.store.select(Oa.Az).pipe((0,li.Q)(this.unSubs[1])).subscribe(D=>{if(this.information=D.nodeDate,this.information.identity_pubkey){if(this.information.chains&&"string"==typeof this.information.chains[0])this.informationChain.chain=this.information.chains[0].toString(),this.informationChain.network=this.information.testnet?"Testnet":"Mainnet";else if(this.information&&this.information.chains&&this.information.chains.length&&this.information.chains.length>0&&"object"==typeof this.information.chains[0]&&this.information.chains[0].hasOwnProperty("chain")){const I=this.information.chains[0];this.informationChain.chain=I.chain,this.informationChain.network=I.network}}else this.informationChain.chain="",this.informationChain.network="";this.flgLoading=!this.information.identity_pubkey,window.innerWidth<=414&&(this.smallScreen=!0),this.selNode=D.selNode,this.selConfigNodeIndex=+(D.selNode?.index||0),this.selNode&&this.selNode.lnImplementation&&this.filterSideMenuNodes(),this.logger.info(D)}),this.sessionService.watchSession().pipe((0,li.Q)(this.unSubs[2])).subscribe(D=>{this.showLogout=!!D.token,this.flgLoading=!!D.token}),this.actions.pipe((0,li.Q)(this.unSubs[3]),(0,za.p)(D=>D.type===_t.aU.LOGOUT)).subscribe(D=>{this.showLogout=!1})}onClick(E){"Logout"===E.name&&(this.store.dispatch((0,Bi.I1)({payload:{data:{type:_t.A$.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,li.Q)(this.unSubs[4])).subscribe(D=>{D&&(this.showLogout=!1,this.store.dispatch((0,Bi.ri)({payload:""})))})),this.ChildNavClicked.emit(E)}onChildNavClicked(E){this.ChildNavClicked.emit(E)}filterSideMenuNodes(){switch(this.selNode?.lnImplementation?.toUpperCase()){case"CLN":this.loadCLNMenu();break;case"ECL":this.loadECLMenu();break;default:this.loadLNDMenu()}}loadLNDMenu(){const E=JSON.parse(JSON.stringify(Dc.LNDChildren));this.navMenus.data=E?.filter(D=>D.children&&D.children.length?(D.children=D.children?.filter(I=>(I.userPersona===_t.HW.ALL||I.userPersona===this.selNode.settings.userPersona)&&"/services/loop"!==I.link&&"/services/boltz"!==I.link||"/services/loop"===I.link&&this.selNode.settings.swapServerUrl&&""!==this.selNode.settings.swapServerUrl.trim()||"/services/boltz"===I.link&&this.selNode.settings.boltzServerUrl&&""!==this.selNode.settings.boltzServerUrl.trim()),D.children.length>0):D.userPersona===_t.HW.ALL||D.userPersona===this.selNode.settings.userPersona)}loadCLNMenu(){const E=JSON.parse(JSON.stringify(Dc.CLNChildren));this.navMenus.data=E?.filter(D=>D.children&&D.children.length?(D.children=D.children?.filter(I=>(I.userPersona===_t.HW.ALL||I.userPersona===this.selNode.settings.userPersona)&&(!I.link.includes("/services")||"/services/peerswap"===I.link&&this.selNode.settings.enablePeerswap||"/services/boltz"===I.link&&this.selNode.settings.boltzServerUrl&&""!==this.selNode.settings.boltzServerUrl.trim())),D.children.length>0):D.userPersona===_t.HW.ALL||D.userPersona===this.selNode.settings.userPersona)}loadECLMenu(){this.navMenus.data=JSON.parse(JSON.stringify(Dc.ECLChildren))}onShowData(E){this.store.dispatch((0,Bi.OP)()),this.ChildNavClicked.emit("showData")}onNodeSelectionChange(E){const D=this.selConfigNodeIndex;this.selConfigNodeIndex=E;const I=this.appConfig.nodes.find(Oe=>+Oe.index===E);this.store.dispatch((0,Bi.Qi)({payload:{uiMessage:_t.MZ.UPDATE_SELECTED_NODE,prevLnNodeIndex:+D,currentLnNode:I||null,isInitialSetup:!1}})),this.ChildNavClicked.emit("selectNode")}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(Qo.h),e.rXU(ji.Q),e.rXU(mi.il),e.rXU(Uo.En),e.rXU(Ko.H))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-side-navigation"]],viewQuery:function(D,I){if(1&D&&e.GBs(Cl.lQ,5),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.tree=Oe.first)}},outputs:{ChildNavClicked:"ChildNavClicked"},standalone:!1,decls:12,vars:5,consts:[["boltzIconBlock",""],["tree",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","90","fxLayoutAlign","start stretch",1,"w-100"],["class","m-2 multi-node-select",3,"value","selectionChange",4,"ngIf"],[1,"w-100"],[3,"dataSource","treeControl",4,"ngIf"],[3,"dataSource","treeControl"],[3,"click",4,"matTreeNodeDef"],["fxLayout","column","fxLayoutAlign","end stretch",1,"w-100"],[1,"m-2","multi-node-select",3,"selectionChange","value"],["tabindex","1",3,"value",4,"ngFor","ngForOf"],["tabindex","1",3,"value"],["routerLinkActive","active-link","matTreeNodeToggle","",3,"routerLink",4,"matTreeNodeDef"],["fxLayout","column","matTreeNodeToggle","",4,"matTreeNodeDef","matTreeNodeDefWhen"],["routerLinkActive","active-link","matTreeNodeToggle","",3,"routerLink"],["tabindex","2",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["class","fa-icon-small mr-2","fxLayout","row","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["class","fa-icon-small mr-2",3,"icon",4,"ngIf"],["class","mat-icon-36",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"fa-icon-small","mr-2"],[3,"ngTemplateOutlet"],[1,"fa-icon-small","mr-2",3,"icon"],[1,"mat-icon-36"],["fxLayout","column","matTreeNodeToggle",""],["fxLayout","row","fxLayoutAlign","start center",1,"mat-nested-tree-node-parent"],["fxFlex","80","fxLayoutAlign","start center"],["class","mr-2",4,"ngIf"],["fxFlex","20","mat-icon-button","","fxLayoutAlign","end center",1,"btn-icon-small"],[1,"mat-nested-tree-node-child"],["matTreeNodeOutlet",""],[1,"mr-2"],[3,"click"],["class","fa-icon-small mr-2",4,"ngIf"],["class","fa-icon-small mr-2","matTooltipPosition","right",3,"matTooltip","icon",4,"ngIf"],["class","mat-icon-36","matTooltipPosition","right",3,"matTooltip",4,"ngIf"],[1,"fa-icon-small","mr-2"],["matTooltipPosition","right",1,"fa-icon-small","mr-2",3,"matTooltip","icon"],["matTooltipPosition","right",1,"mat-icon-36",3,"matTooltip"],["viewBox","0 0 78 78","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Logo","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Oval","cx","39","cy","39","r","37.5",1,"boltz-icon"],["d","M36.4583326,43.7755404 L40.53965,35.2316544 L39.4324865,35.2316544 L46.0754873,17.6071752 C46.292579,17.0204094 46.3287609,16.5159331 46.1840331,16.0937464 C46.0393053,15.671561 45.7860319,15.3674444 45.4242131,15.1813966 C45.0623942,14.9953487 44.6535376,14.9524146 44.1976433,15.0525945 C43.7417511,15.1527743 43.3256596,15.4461573 42.9493689,15.9327433 L22.6078557,40.7701025 C22.2026186,41.2710003 22,41.7575877 22,42.2298646 C22,42.6735173 22.1592003,43.0420366 22.477601,43.3354226 C22.7960017,43.6288058 23.1940025,43.7755404 23.6716036,43.7755404 L36.4583326,43.7755404 Z","id","Path",1,"boltz-icon-fill"],["d","M44.4883879,63.7755404 L48.8604707,55.165009 L47.6744296,55.165009 L54.7906978,37.4030526 C55.0232558,36.8117097 55.0620155,36.3032983 54.9069768,35.8778185 C54.7519381,35.4523399 54.4806208,35.1458511 54.0930248,34.958352 C53.7054289,34.7708528 53.2674441,34.7275839 52.7790706,34.8285452 C52.2906992,34.9295065 51.8449641,35.2251779 51.4418653,35.7155595 L29.6511611,60.746659 C29.2170537,61.251464 29,61.7418469 29,62.2178078 C29,62.6649211 29.1705423,63.036315 29.5116268,63.3319895 C29.8527113,63.6276613 30.2790669,63.7755404 30.7906936,63.7755404 L44.4883879,63.7755404 Z","id","Path-Copy","transform","translate(42.000000, 49.275540) rotate(-180.000000) translate(-42.000000, -49.275540) ",1,"boltz-icon-fill"]],template:function(D,I){1&D&&(e.j41(0,"div",2)(1,"div",3),e.DNE(2,I3,3,2,"mat-select",4),e.nrm(3,"mat-divider",5),e.DNE(4,F3,4,3,"mat-tree",6),e.nrm(5,"mat-divider",5),e.j41(6,"mat-tree",7),e.DNE(7,Vd,6,4,"mat-tree-node",8),e.k0s()(),e.j41(8,"div",9),e.DNE(9,q2,2,2,"mat-tree",6),e.k0s()(),e.DNE(10,pm,6,0,"ng-template",null,0,e.C5r)),2&D&&(e.R7$(2),e.Y8G("ngIf",I.appConfig.nodes.length>1),e.R7$(2),e.Y8G("ngIf",null==I.selNode.settings?null:I.selNode.settings.lnServerUrl),e.R7$(2),e.Y8G("dataSource",I.navMenusShowData)("treeControl",I.treeControlShowData),e.R7$(3),e.Y8G("ngIf",I.showLogout))},dependencies:[w.Sq,w.bT,w.T3,os.aY,Jc.iY,qc.An,Hi.q,Cl.q1,Cl.yI,Cl.pO,Cl.lQ,Cl.d6,Cl.wx,Ie.DJ,Ie.sA,Ie.UI,sl.VO,ac.wT,fd.oV,lo.Wk,lo.wQ,go.ZF,go.Ld],styles:[".tree-children-invisible[_ngcontent-%COMP%]{display:none}"]}))}return b(),_})();var G1=l(9115);function _m(b,_){if(1&b&&(e.j41(0,"p",14),e.nrm(1,"fa-icon",3),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&b){const m=e.XpG();e.R7$(),e.Y8G("icon",m.faCode),e.R7$(2),e.SpI("API Version: ",null==m.information?null:m.information.api_version)}}function j1(b,_){if(1&b&&(e.j41(0,"p",15),e.nrm(1,"fa-icon",3),e.j41(2,"span",16),e.EFF(3,"Settings"),e.k0s()()),2&b){const m=e.XpG();e.R7$(),e.Y8G("icon",m.faUserCog)}}function U3(b,_){if(1&b&&(e.j41(0,"p",17),e.nrm(1,"fa-icon",3),e.j41(2,"span",18),e.EFF(3,"Help"),e.k0s()()),2&b){const m=e.XpG();e.R7$(),e.Y8G("icon",m.faQuestion)}}function vm(b,_){if(1&b){const m=e.RV6();e.j41(0,"p",19),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.onClick())}),e.nrm(1,"fa-icon",3),e.j41(2,"span"),e.EFF(3,"Logout"),e.k0s()()}if(2&b){const m=e.XpG();e.R7$(),e.Y8G("icon",m.faEject)}}let Ud=(()=>{var b;class _{constructor(E,D,I,Oe,Ct){this.logger=E,this.sessionService=D,this.store=I,this.rtlEffects=Oe,this.actions=Ct,this.faUserCog=Ti.McB,this.faCodeBranch=Ti.Xbc,this.faCode=Ti.jTw,this.faCog=Ti.dB,this.faQuestion=Ti.EvL,this.faEject=Ti.njF,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.showLogout=!1,this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B],this.version=_t.xv}ngOnInit(){this.store.select(Oa.N).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{if(this.information=E,this.flgLoading=!this.information.identity_pubkey,this.information.identity_pubkey){if(this.information.chains&&"string"==typeof this.information.chains[0])this.informationChain.chain=this.information.chains[0].toString(),this.informationChain.network=this.information.testnet?"Testnet":"Mainnet";else if(this.information&&this.information.chains&&this.information.chains.length&&this.information.chains.length>0&&"object"==typeof this.information.chains[0]&&this.information.chains[0].hasOwnProperty("chain")){const D=this.information.chains[0];this.informationChain.chain=D.chain,this.informationChain.network=D.network}}else this.informationChain.chain="",this.informationChain.network="";this.logger.info(E)}),this.sessionService.watchSession().pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{this.showLogout=!!E.token,this.flgLoading=!!E.token}),this.actions.pipe((0,li.Q)(this.unSubs[2]),(0,za.p)(E=>E.type===_t.aU.LOGOUT)).subscribe(()=>{this.showLogout=!1})}onClick(){this.store.dispatch((0,Bi.I1)({payload:{data:{type:_t.A$.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,li.Q)(this.unSubs[3])).subscribe(E=>{E&&(this.showLogout=!1,this.store.dispatch((0,Bi.ri)({payload:""})))})}onDonate(){window.open("https://www.ridethelightning.info/donate/","_blank")}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(ji.Q),e.rXU(mi.il),e.rXU(Ko.H),e.rXU(Uo.En))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-top-menu"]],standalone:!1,decls:20,vars:8,consts:[["topMenu","matMenu"],[1,"top-menu",3,"overlapTrigger"],["tabindex","1","mat-menu-item","",1,"cursor-default"],[1,"fa-icon-small","mr-1",3,"icon"],["tabindex","2","mat-menu-item","","class","cursor-default",4,"ngIf"],["tabindex","3","mat-menu-item","","routerLink","/settings",4,"ngIf"],["tabindex","4","mat-menu-item","","routerLink","/help",4,"ngIf"],["mat-menu-item","","tabindex","5","fxLayoutAlign","start center",3,"click"],["fill","currentColor","version","1.1","viewBox","0 0 64 64",0,"xml","space","preserve","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",1,"svg-donation"],["d","M62.519,17.698l-12-14c-0.659-0.768-1.786-0.923-2.628-0.362l-8.712,5.808l-16.688,4.172 c-2.485,0.622-4.537,2.412-5.487,4.791L12.21,30.09C10.206,32.512,9,35.618,9,39c0,2.974,0.939,5.73,2.527,8H5 c-2.206,0-4,1.794-4,4v6c0,2.206,1.794,4,4,4h36c2.206,0,4-1.794,4-4v-6c0-2.206-1.794-4-4-4h-6.522 c0.375-0.535,0.713-1.1,1.013-1.691l4.291-2.452l3.378-0.965c2.619-0.749,4.903-2.269,6.604-4.395 c1.39-1.736,2.317-3.813,2.682-6.006l0.412-2.472l9.48-8.532C63.145,19.76,63.225,18.523,62.519,17.698z M34.428,30.929 c-1.487-2.094-3.517-3.732-5.842-4.75L29.207,25h7.058l0.588,4.11L34.428,30.929z M31.225,33.331l-0.373,0.28 c-1.772,1.329-2.889,3.273-3.146,5.473c-0.257,2.2,0.382,4.348,1.8,6.048l0.667,0.8C28.315,47.845,25.742,49,23,49 c-5.514,0-10-4.486-10-10s4.486-10,10-10C26.299,29,29.376,30.663,31.225,33.331z M41,57H5v-6h10.826c2.101,1.261,4.55,2,7.174,2 c2.571,0,5.041-0.723,7.176-2H41V57z M49.662,26.513c-0.336,0.303-0.561,0.711-0.635,1.158L48.5,30.833 c-0.253,1.521-0.896,2.96-1.86,4.165c-1.18,1.475-2.763,2.529-4.579,3.048l-3.61,1.031c-0.155,0.044-0.303,0.106-0.443,0.187 l-5.541,3.166c-0.63-0.826-0.909-1.843-0.788-2.882c0.128-1.1,0.687-2.072,1.573-2.737l6.001-4.5 c1.169-0.877,1.767-2.32,1.56-3.766l-0.587-4.11C39.946,22.477,38.244,21,36.266,21h-7.059c-1.489,0-2.845,0.818-3.539,2.136 l-1.037,1.969C24.093,25.041,23.549,25,23,25c-1.685,0-3.294,0.314-4.791,0.862l2.509-6.271c0.476-1.189,1.501-2.084,2.743-2.395 l17.024-4.256c0.223-0.056,0.434-0.149,0.625-0.276l7.525-5.017l9.576,11.172L49.662,26.513z"],["tabindex","6","mat-menu-item","",3,"click",4,"ngIf"],["tabindex","7","mat-icon-button","",3,"matMenuTriggerFor"],["alt","RTL Logo","src","assets/images/RTL-Horse-BY.svg",1,"rtl-log-top"],[1,"rtl-logo-dropdown","color-white"],["tabindex","2","mat-menu-item","",1,"cursor-default"],["tabindex","3","mat-menu-item","","routerLink","/settings"],["routerLink","/settings"],["tabindex","4","mat-menu-item","","routerLink","/help"],["routerLink","/help"],["tabindex","6","mat-menu-item","",3,"click"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"mat-menu",1,0)(2,"p",2),e.nrm(3,"fa-icon",3),e.j41(4,"span"),e.EFF(5),e.k0s()(),e.DNE(6,_m,4,2,"p",4)(7,j1,4,1,"p",5)(8,U3,4,1,"p",6),e.j41(9,"p",7),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onDonate())}),v.qSk(),e.j41(10,"svg",8)(11,"g"),e.nrm(12,"path",9),e.k0s()(),v.joV(),e.j41(13,"span"),e.EFF(14,"Donate"),e.k0s()(),e.DNE(15,vm,4,1,"p",10),e.k0s(),e.j41(16,"button",11),e.nrm(17,"img",12),e.j41(18,"mat-icon",13),e.EFF(19,"arrow_drop_down"),e.k0s()()}if(2&D){const Oe=e.sdS(1);e.Y8G("overlapTrigger",!1),e.R7$(3),e.Y8G("icon",I.faCodeBranch),e.R7$(2),e.SpI("Version: ",I.version),e.R7$(),e.Y8G("ngIf",null==I.information?null:I.information.api_version),e.R7$(),e.Y8G("ngIf",I.showLogout),e.R7$(),e.Y8G("ngIf",I.showLogout),e.R7$(7),e.Y8G("ngIf",I.showLogout),e.R7$(),e.Y8G("matMenuTriggerFor",Oe)}},dependencies:[w.bT,os.aY,Jc.iY,qc.An,G1.kk,G1.fb,G1.Cp,Ie.sA,lo.Wk],styles:[".mat-mdc-icon-button img.rtl-log-top{width:2rem;height:2rem}.mat-icon.material-icons.mat-icon-no-color.rtl-logo-dropdown{height:2rem}\n"],encapsulation:2}))}return b(),_})();const Gd=["sideNavigation"],zf=["sideNavContent"],G3=(b,_)=>[b,_];function Gu(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",15),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.sideNavToggle())}),e.j41(1,"mat-icon",16),e.EFF(2,"menu"),e.k0s()()}if(2&b){const m=e.XpG();e.Y8G("matTooltip",m.flgSideNavOpened?"Hide Navigation Menu":"Show Navigation Menu")("matTooltipDisabled",m.smallScreen)}}function e0(b,_){1&b&&(v.qSk(),e.nrm(0,"path",21))}function t0(b,_){1&b&&(v.qSk(),e.nrm(0,"path",22))}function ju(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",17),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.flgSidenavPinned=!D.flgSidenavPinned)}),v.qSk(),e.j41(1,"svg",18),e.DNE(2,e0,1,0,"path",19)(3,t0,1,0,"path",20),e.k0s()()}if(2&b){const m=e.XpG();e.Y8G("matTooltip",m.flgSidenavPinned?"Unpin Navigation Menu":"Pin Navigation Menu"),e.R7$(2),e.Y8G("ngIf",!m.flgSidenavPinned),e.R7$(),e.Y8G("ngIf",m.flgSidenavPinned)}}function ym(b,_){if(1&b&&(e.j41(0,"span",23),e.EFF(1),e.k0s()),2&b){const m=e.XpG();e.R7$(),e.JRh(m.information.alias?"RTL - "+m.information.alias:"RTL")}}function bm(b,_){if(1&b&&(e.j41(0,"span",24),e.EFF(1),e.k0s()),2&b){const m=e.XpG();e.R7$(),e.JRh(m.information.alias?"Ride The Lightning - "+m.information.alias:"Ride The Lightning")}}function Hu(b,_){1&b&&(e.j41(0,"div",25),e.nrm(1,"mat-spinner",26),e.j41(2,"h4"),e.EFF(3,"Loading RTL..."),e.k0s()())}let Wu=(()=>{var b;class _{constructor(E,D,I,Oe,Ct,Bt,yn,Yn,jn){this.logger=E,this.commonService=D,this.store=I,this.actions=Oe,this.userIdle=Ct,this.router=Bt,this.sessionService=yn,this.breakpointObserver=Yn,this.renderer=jn,this.information={},this.flgLoading=[!0],this.flgSideNavOpened=!0,this.flgCopied=!1,this.accessKey="",this.xSmallScreen=!1,this.smallScreen=!1,this.flgSidenavPinned=!0,this.flgLoggedIn=!1,this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B,new gi.B,new gi.B,new gi.B,new gi.B]}ngOnInit(){this.router.events.subscribe(E=>{E instanceof Ha.wF&&document.getElementsByTagName("mat-sidenav-content")[0].scrollTo(0,0)}),this.breakpointObserver.observe([ds.Rp.XSmall,ds.Rp.TabletPortrait,ds.Rp.Small,ds.Rp.Medium,ds.Rp.Large,ds.Rp.XLarge]).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{E.breakpoints[ds.Rp.XSmall]?(this.commonService.setScreenSize(_t.f7.XS),this.smallScreen=!0):E.breakpoints[ds.Rp.TabletPortrait]?(this.commonService.setScreenSize(_t.f7.SM),this.smallScreen=!0):E.breakpoints[ds.Rp.Small]||E.breakpoints[ds.Rp.Medium]?(this.commonService.setScreenSize(_t.f7.MD),this.smallScreen=!1):E.breakpoints[ds.Rp.Large]?(this.commonService.setScreenSize(_t.f7.LG),this.smallScreen=!1):(this.commonService.setScreenSize(_t.f7.XL),this.smallScreen=!1)}),this.store.dispatch((0,Bi.NU)()),this.accessKey=this.readAccessKey()||"",this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{this.sessionService.getItem("token")?(this.flgLoggedIn=!0,this.userIdle.startWatching()):(this.flgLoggedIn=!1,this.flgLoading[0]=!1),this.selNode=E}),this.store.select(Oa.qv).pipe((0,li.Q)(this.unSubs[2])).subscribe(E=>{this.appConfig=E}),this.store.select(Oa.N).pipe((0,li.Q)(this.unSubs[3])).subscribe(E=>{this.information=E,this.flgLoading[0]=!this.information.identity_pubkey,this.logger.info(this.information)}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1),this.actions.pipe((0,li.Q)(this.unSubs[4]),(0,za.p)(E=>E.type===_t.aU.SET_APPLICATION_SETTINGS||E.type===_t.aU.LOGIN||E.type===_t.aU.LOGOUT)).subscribe(E=>{E.type===_t.aU.SET_APPLICATION_SETTINGS&&(this.sessionService.getItem("token")||(E.payload.disableAuth?this.store.dispatch((0,Bi.iD)({payload:{password:"disabledAuth",defaultPassword:!1}})):+E.payload.SSO.rtlSSO?!this.accessKey||this.accessKey.trim().length<32?this.router.navigate(["./error"],{state:{errorCode:"406",errorMessage:"Access key too short. It should be at least 32 characters long."}}):this.store.dispatch((0,Bi.iD)({payload:{password:_c(this.accessKey).toString(),defaultPassword:!1}})):this.router.navigate(["./login"],{state:{logoutReason:"Access key too short. It should be at least 32 characters long."}}))),E.type===_t.aU.LOGIN&&(this.flgLoggedIn=!0,this.userIdle.startWatching(),this.userIdle.resetTimer(),setTimeout(()=>{this.commonService.setContainerSize(this.sideNavContent.elementRef.nativeElement.clientWidth,this.sideNavContent.elementRef.nativeElement.clientHeight)},1e3)),E.type===_t.aU.LOGOUT&&(this.flgLoggedIn=!1,this.userIdle.stopWatching(),this.userIdle.stopTimer())}),this.userIdle.onTimerStart().pipe((0,li.Q)(this.unSubs[5])).subscribe(E=>{this.logger.info("Counting Down: "+(11-E))}),this.userIdle.onTimeout().pipe((0,li.Q)(this.unSubs[6])).subscribe(()=>{this.logger.info("Time Out!"),this.sessionService.getItem("token")&&(this.flgLoggedIn=!1,this.logger.warn("Time limit exceeded for session inactivity."),this.store.dispatch((0,Bi.Jh)()),this.store.dispatch((0,Bi.xO)({payload:{data:{type:_t.A$.WARNING,alertTitle:"Logging out",titleMessage:"Time limit exceeded for session inactivity."}}})),this.store.dispatch((0,Bi.ri)({payload:"Logging Out. Time limit exceeded for session inactivity."})))}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1)}readAccessKey(){const E=window.location.href;return E.includes("access-key=")?E.substring(E.lastIndexOf("access-key=")+11).trim():null}ngAfterViewInit(){(this.smallScreen||!this.flgLoggedIn)&&this.sideNavigation.close(),this.commonService.setContainerSize(this.sideNavContent.elementRef.nativeElement.clientWidth,this.sideNavContent.elementRef.nativeElement.clientHeight)}sideNavToggle(){this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.toggle()}onNavigationClicked(E){this.smallScreen&&(this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.close())}backdropClicked(){(!this.flgSidenavPinned||this.smallScreen)&&(this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.close())}copiedText(E){this.flgCopied=!0,setTimeout(()=>{this.flgCopied=!1},5e3),this.logger.info("Copied Text: "+E)}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(Qo.h),e.rXU(mi.il),e.rXU(Uo.En),e.rXU(v1),e.rXU(Ha.Ix),e.rXU(ji.Q),e.rXU(Fd.Q),e.rXU(e.sFG))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-app"]],viewQuery:function(D,I){if(1&D&&(e.GBs(Gd,5),e.GBs(zf,5)),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.sideNavigation=Oe.first),e.mGM(Oe=e.lsd())&&(I.sideNavContent=Oe.first)}},standalone:!1,decls:22,vars:15,consts:[["sideNavigation",""],["sideNavContent",""],["outlet","outlet"],["fxLayout","column","id","rtl-container",1,"rtl-container","medium",3,"ngClass"],["fxLayout","row","fxLayoutAlign","space-between center",1,"bg-primary","rtl-top-toolbar"],["mat-icon-button","","matTooltipPosition","right",3,"matTooltip","matTooltipDisabled","click",4,"ngIf"],["mat-icon-button","","matTooltipPosition","right",3,"matTooltip","click",4,"ngIf"],["class","font-weight-500",4,"ngIf"],["class","font-size-120 font-weight-500",4,"ngIf"],[3,"backdropClick"],[1,"sidenav","mat-elevation-z6",3,"perfectScrollbar","opened","mode"],["fxFlex","100",3,"ChildNavClicked"],[3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["class","rtl-spinner",4,"ngIf"],["mat-icon-button","","matTooltipPosition","right",3,"click","matTooltip","matTooltipDisabled"],[1,"color-white"],["mat-icon-button","","matTooltipPosition","right",3,"click","matTooltip"],["width","20","height","20","viewBox","0 0 24 24",1,"icon-pinned"],["fill","currentColor","d","M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12Z",4,"ngIf"],["fill","currentColor","d","M2,5.27L3.28,4L20,20.72L18.73,22L12.8,16.07V22H11.2V16H6V14L8,12V11.27L2,5.27M16,12L18,14V16H17.82L8,6.18V4H7V2H17V4H16V12Z",4,"ngIf"],["fill","currentColor","d","M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12Z"],["fill","currentColor","d","M2,5.27L3.28,4L20,20.72L18.73,22L12.8,16.07V22H11.2V16H6V14L8,12V11.27L2,5.27M16,12L18,14V16H17.82L8,6.18V4H7V2H17V4H16V12Z"],[1,"font-weight-500"],[1,"font-size-120","font-weight-500"],[1,"rtl-spinner"],["color","accent"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",3),e.nI1(1,"lowercase"),e.nI1(2,"lowercase"),e.j41(3,"mat-toolbar",4)(4,"div"),e.DNE(5,Gu,3,2,"button",5)(6,ju,4,3,"button",6),e.k0s(),e.j41(7,"div"),e.DNE(8,ym,2,1,"span",7)(9,bm,2,1,"span",8),e.k0s(),e.j41(10,"div"),e.nrm(11,"rtl-top-menu"),e.k0s()(),e.j41(12,"mat-sidenav-container",9),e.bIt("backdropClick",function(){return v.eBV(Oe),v.Njj(I.backdropClicked())}),e.j41(13,"mat-sidenav",10,0)(15,"rtl-side-navigation",11),e.bIt("ChildNavClicked",function(Bt){return v.eBV(Oe),v.Njj(I.onNavigationClicked(Bt))}),e.k0s()(),e.j41(16,"mat-sidenav-content",12,1)(18,"div",13),e.nrm(19,"router-outlet",null,2),e.k0s()()(),e.DNE(21,Hu,4,0,"div",14),e.k0s()}2&D&&(e.Y8G("ngClass",e.l_i(12,G3,e.bMT(1,8,I.selNode.settings.themeColor),e.bMT(2,10,I.selNode.settings.themeMode))),e.R7$(5),e.Y8G("ngIf",I.flgLoggedIn),e.R7$(),e.Y8G("ngIf",!I.smallScreen&&I.flgLoggedIn),e.R7$(2),e.Y8G("ngIf",I.smallScreen),e.R7$(),e.Y8G("ngIf",!I.smallScreen),e.R7$(4),e.Y8G("opened",I.flgSideNavOpened&&I.flgLoggedIn)("mode",I.flgSidenavPinned&&!I.smallScreen?"side":"over"),e.R7$(8),e.Y8G("ngIf",!I.selNode.settings.themeColor))},dependencies:[w.YU,w.bT,Jc.iY,qc.An,zu.LG,Ie.DJ,Ie.sA,Ie.UI,cl.PW,Nd.LG,Nd.US,Nd.El,Tc.KQ,fd.oV,go.Ld,gm,Ud,Ha.n3,w.GH],styles:[".inline-spinner[_ngcontent-%COMP%]{display:inline-flex!important;top:0!important}"],data:{animation:[hm.E]}}))}return b(),_})(),Xu=(()=>{var b;class _{constructor(E){this.sessionService=E}intercept(E,D){if(this.sessionService.getItem("token")){const I=E.clone({headers:E.headers.set("Authorization","Bearer "+this.sessionService.getItem("token")),withCredentials:!0});return D.handle(I)}return D.handle(E)}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(v.KVO(ji.Q))},this.\u0275prov=v.jDH({token:_,factory:_.\u0275fac}))}return b(),_})();var Cm=l(7879),Ku=l(9579),j3=l(283),xm=l(3017);const H3={userPersona:_t.HW.OPERATOR,themeMode:"DAY",themeColor:"PURPLE",channelBackupPath:"",selCurrencyUnit:"USD",unannouncedChannels:!1,fiatConversion:!1,currencyUnits:["Sats","BTC","USD"],bitcoindConfigPath:"",enableOffers:!1,enablePeerswap:!1,logLevel:"ERROR",lnServerUrl:"",swapServerUrl:"",boltzServerUrl:"",currencyUnit:"USD",blockExplorerUrl:"https://mempool.space"},Yu={configPath:"",swapMacaroonPath:"",boltzMacaroonPath:""},n0={apiURL:"",apisCallStatus:{Login:{status:_t.wn.UN_INITIATED},IsAuthorized:{status:_t.wn.UN_INITIATED}},selNode:{index:1,lnNode:"Node 1",settings:H3,authentication:Yu,lnImplementation:"LND"},appConfig:{defaultNodeIndex:-1,selectedNodeIndex:-1,SSO:{rtlSSO:0,logoutRedirectLink:""},enable2FA:!1,secret2FA:"",disableAuth:!1,allowPasswordUpdate:!0,nodes:[{settings:H3,authentication:Yu}]},nodeData:{}},Vf=(0,mi.vy)(n0,(0,mi.on)(Bi.Gd,(b,{payload:_})=>{const m=JSON.parse(JSON.stringify(b.apisCallStatus));return _.action&&(m[_.action]={status:_.status,statusCode:_.statusCode,message:_.message,URL:_.URL,filePath:_.filePath}),{...b,apisCallStatus:m}}),(0,mi.on)(Bi.Tn,(b,{payload:_})=>({...n0,apisCallStatus:b.apisCallStatus,appConfig:b.appConfig,selNode:_})),(0,mi.on)(Bi.Np,(b,{payload:_})=>({...b,selNode:_})),(0,mi.on)(Bi.Fl,(b,{payload:_})=>({...b,nodeData:_})),(0,mi.on)(Bi.IK,(b,{payload:_})=>({...b,appConfig:_}))),i0={apisCallStatus:{FetchPageSettings:{status:_t.wn.UN_INITIATED},FetchInfo:{status:_t.wn.UN_INITIATED},FetchFees:{status:_t.wn.UN_INITIATED},FetchPeers:{status:_t.wn.UN_INITIATED},FetchClosedChannels:{status:_t.wn.UN_INITIATED},FetchPendingChannels:{status:_t.wn.UN_INITIATED},FetchAllChannels:{status:_t.wn.UN_INITIATED},FetchBalanceBlockchain:{status:_t.wn.UN_INITIATED},FetchInvoices:{status:_t.wn.UN_INITIATED},FetchPayments:{status:_t.wn.UN_INITIATED},FetchForwardingHistory:{status:_t.wn.UN_INITIATED},FetchUTXOs:{status:_t.wn.UN_INITIATED},FetchTransactions:{status:_t.wn.UN_INITIATED},FetchLightningTransactions:{status:_t.wn.UN_INITIATED},FetchNetwork:{status:_t.wn.UN_INITIATED}},pageSettings:_t.ZC,information:{},peers:[],fees:{channel_fees:[],day_fee_sum:0,week_fee_sum:0,month_fee_sum:0,daily_tx_count:0,weekly_tx_count:0,monthly_tx_count:0,forwarding_events_history:{}},networkInfo:{},blockchainBalance:{total_balance:-1},lightningBalance:{local:-1,remote:-1},channels:[],channelsSummary:{active:{num_channels:0,capacity:0},inactive:{num_channels:0,capacity:0}},closedChannels:[],pendingChannels:{},pendingChannelsSummary:{open:{num_channels:0,limbo_balance:0},closing:{num_channels:0,limbo_balance:0},force_closing:{num_channels:0,limbo_balance:0},waiting_close:{num_channels:0,limbo_balance:0},total_channels:0,total_limbo_balance:0},transactions:[],utxos:[],listPayments:{payments:[]},listInvoices:{invoices:[]},allLightningTransactions:{listPaymentsAll:{payments:[],first_index_offset:"",last_index_offset:""},listInvoicesAll:{invoices:[],total_invoices:0,last_index_offset:"",first_index_offset:""}},forwardingHistory:{last_offset_index:0,total_fee_msat:0,forwarding_events:[]}};let Qu=!1,W3=!1;const $u=(0,mi.vy)(i0,(0,mi.on)(Qs.e8,(b,{payload:_})=>{const m=JSON.parse(JSON.stringify(b.apisCallStatus));return _.action&&(m[_.action]={status:_.status,statusCode:_.statusCode,message:_.message,URL:_.URL,filePath:_.filePath}),{...b,apisCallStatus:m}}),(0,mi.on)(Qs.p1,b=>({...i0})),(0,mi.on)(Qs.x1,(b,{payload:_})=>({...b,information:_})),(0,mi.on)(Qs.Qj,(b,{payload:_})=>({...b,peers:_})),(0,mi.on)(Qs.Zi,(b,{payload:_})=>{const m=[...b.peers],E=b.peers.findIndex(D=>D.pub_key===_.pubkey);return E>-1&&m.splice(E,1),{...b,peers:m}}),(0,mi.on)(Qs.Jx,(b,{payload:_})=>{const m=b.listInvoices;return m.invoices?.unshift(_),{...b,listInvoices:m}}),(0,mi.on)(Qs.Dq,(b,{payload:_})=>{const m=b.listInvoices;return m.invoices=m.invoices?.map(E=>E.payment_request===_.payment_request?_:E),{...b,listInvoices:m}}),(0,mi.on)(Qs._$,(b,{payload:_})=>{const m=b.listPayments;return m.payments=m.payments?.map(E=>E.payment_hash===_.payment_hash?_:E),{...b,listPayments:m}}),(0,mi.on)(Qs.Uo,(b,{payload:_})=>({...b,fees:_})),(0,mi.on)(Qs.z2,(b,{payload:_})=>({...b,closedChannels:_})),(0,mi.on)(Qs.cU,(b,{payload:_})=>({...b,pendingChannels:_.pendingChannels,pendingChannelsSummary:_.pendingChannelsSummary})),(0,mi.on)(Qs.dv,(b,{payload:_})=>{let m=0,E=0,D=0,I=0,Oe=0,Ct=0;return _&&_.forEach(Bt=>{Bt.local_balance||(Bt.local_balance=0),!0===Bt.active?(Oe+=+Bt.local_balance,D+=1,Bt.local_balance?m=+m+ +Bt.local_balance:Bt.local_balance=0,Bt.remote_balance?E=+E+ +Bt.remote_balance:Bt.remote_balance=0):(Ct+=+Bt.local_balance,I+=1)}),{...b,channels:_,channelsSummary:{active:{num_channels:D,capacity:Oe},inactive:{num_channels:I,capacity:Ct}},lightningBalance:{local:m,remote:E}}}),(0,mi.on)(Qs.cR,(b,{payload:_})=>{const m=[...b.channels],E=b.channels.findIndex(D=>D.channel_point===_.channelPoint);return E>-1&&m.splice(E,1),{...b,channels:m}}),(0,mi.on)(Qs.DI,(b,{payload:_})=>({...b,blockchainBalance:_})),(0,mi.on)(Qs.J9,(b,{payload:_})=>({...b,networkInfo:_})),(0,mi.on)(Qs.$6,(b,{payload:_})=>(_.total_invoices||(_.total_invoices=b.listInvoices.total_invoices),{...b,listInvoices:_})),(0,mi.on)(Qs.As,(b,{payload:_})=>{if(Qu=!0,_.length&&W3){const m=[...b.utxos];return m.forEach(E=>{const D=_.find(I=>I.tx_hash===E.outpoint?.txid_str);E.label=D&&D.label?D.label:""}),{...b,utxos:m,transactions:_}}return{...b,transactions:_}}),(0,mi.on)(Qs.O8,(b,{payload:_})=>{if(W3=!0,_.length&&Qu){const m=[...b.transactions];_.forEach(E=>{const D=m.find(I=>I.tx_hash===E.outpoint?.txid_str);E.label=D&&D.label?D.label:""})}return{...b,utxos:_}}),(0,mi.on)(Qs.Uj,(b,{payload:_})=>{const m={listInvoicesAll:b.allLightningTransactions.listInvoicesAll,listPaymentsAll:_};return{...b,listPayments:_,allLightningTransactions:m}}),(0,mi.on)(Qs.b1,(b,{payload:_})=>{const m={listInvoicesAll:_.listInvoicesAll,listPaymentsAll:b.listPayments};return{...b,allLightningTransactions:m}}),(0,mi.on)(Qs.kv,(b,{payload:_})=>{const m=[...b.channels,...b.closedChannels];let E=_.forwarding_events?JSON.parse(JSON.stringify(_)):{};return E.forwarding_events&&(E=c1(E,m)),{...b,forwardingHistory:E}}),(0,mi.on)(Qs.NS,(b,{payload:_})=>{const m=[];return _t.ZC.forEach(E=>{const D=_&&_.length&&_.length>0?_.find(I=>I.pageId===E.pageId):null;if(D){const I=JSON.parse(JSON.stringify(D.tables));D.tables=[],E.tables.forEach(Oe=>{const Ct=I.find(Bt=>Bt.tableId===Oe.tableId)||null;D.tables.push(Ct||JSON.parse(JSON.stringify(Oe)))}),m.push(D)}else m.push(JSON.parse(JSON.stringify(E)))}),{...b,pageSettings:m}})),c1=(b,_)=>(b.forwarding_events.forEach(m=>{if(_&&_.length>0)for(let E=0;E<_.length;E++){if(_[E].chan_id?.toString()===m.chan_id_in&&(m.alias_in=_[E].remote_alias?_[E].remote_alias:m.chan_id_in,m.alias_out)||_[E].chan_id?.toString()===m.chan_id_out&&(m.alias_out=_[E].remote_alias?_[E].remote_alias:m.chan_id_out,m.alias_in))return;E===_.length-1&&(m.alias_in||(m.alias_in=m.chan_id_in),m.alias_out||(m.alias_out=m.chan_id_out))}else m.alias_in=m.chan_id_in,m.alias_out=m.chan_id_out}),b),d1={apisCallStatus:{FetchPageSettings:{status:_t.wn.UN_INITIATED},FetchInfo:{status:_t.wn.UN_INITIATED},FetchInvoices:{status:_t.wn.UN_INITIATED},FetchChannels:{status:_t.wn.UN_INITIATED},FetchUTXOBalances:{status:_t.wn.UN_INITIATED},FetchFeeRatesperkb:{status:_t.wn.UN_INITIATED},FetchFeeRatesperkw:{status:_t.wn.UN_INITIATED},FetchPeers:{status:_t.wn.UN_INITIATED},FetchPayments:{status:_t.wn.UN_INITIATED},FetchForwardingHistoryS:{status:_t.wn.UN_INITIATED},FetchForwardingHistoryF:{status:_t.wn.UN_INITIATED},FetchForwardingHistoryL:{status:_t.wn.UN_INITIATED},FetchOffers:{status:_t.wn.UN_INITIATED},FetchOfferBookmarks:{status:_t.wn.UN_INITIATED}},pageSettings:_t.mu,information:{},fees:{},feeRatesPerKB:{},feeRatesPerKW:{},balance:{},localRemoteBalance:{localBalance:-1,remoteBalance:-1},peers:[],activeChannels:[],pendingChannels:[],inactiveChannels:[],payments:[],forwardingHistory:{},failedForwardingHistory:{},localFailedForwardingHistory:{},invoices:{invoices:[]},utxos:[],offers:[],offersBookmarks:[]},Zu=(0,mi.vy)(d1,(0,mi.on)(zs.no,(b,{payload:_})=>{const m=JSON.parse(JSON.stringify(b.apisCallStatus));return _.action&&(m[_.action]={status:_.status,statusCode:_.statusCode,message:_.message,URL:_.URL,filePath:_.filePath}),{...b,apisCallStatus:m}}),(0,mi.on)(zs.gf,b=>({...d1})),(0,mi.on)(zs.x1,(b,{payload:_})=>({...b,information:_,fees:{feeCollected:_.fees_collected_msat}})),(0,mi.on)(zs.C2,(b,{payload:_})=>_.perkb?{...b,feeRatesPerKB:_}:_.perkw?{...b,feeRatesPerKW:_}:{...b}),(0,mi.on)(zs.EM,(b,{payload:_})=>({...b,utxos:_.utxos||[],balance:_.balance,localRemoteBalance:_.localRemoteBalance})),(0,mi.on)(zs.Qj,(b,{payload:_})=>({...b,peers:_})),(0,mi.on)(zs.We,(b,{payload:_})=>({...b,peers:[...b.peers,_]})),(0,mi.on)(zs.Zi,(b,{payload:_})=>{const m=[...b.peers],E=b.peers.findIndex(D=>D.id===_.id);return E>-1&&m.splice(E,1),{...b,peers:m}}),(0,mi.on)(zs.dv,(b,{payload:_})=>({...b,activeChannels:_.activeChannels,pendingChannels:_.pendingChannels,inactiveChannels:_.inactiveChannels})),(0,mi.on)(zs.cR,(b,{payload:_})=>{const m=[...b.peers];return m.forEach(E=>{E.id===_.id&&(E.connected=!1,delete E.netaddr)}),{...b,peers:m}}),(0,mi.on)(zs.Uj,(b,{payload:_})=>({...b,payments:_})),(0,mi.on)(zs.kv,(b,{payload:_})=>{const m=[...b.activeChannels,...b.pendingChannels,...b.inactiveChannels],E=a0(_.listForwards,m);switch(_.listForwards=E,_.status){case _t.xk.SETTLED:const D=b.fees;return D.totalTxCount=_.totalForwards||0,{...b,fees:D,forwardingHistory:_};case _t.xk.FAILED:return{...b,failedForwardingHistory:_};case _t.xk.LOCAL_FAILED:return{...b,localFailedForwardingHistory:_};default:return{...b}}}),(0,mi.on)(zs.Jx,(b,{payload:_})=>{const m=b.invoices;return m.invoices?.unshift(_),{...b,invoices:m}}),(0,mi.on)(zs.$6,(b,{payload:_})=>({...b,invoices:_})),(0,mi.on)(zs.Dq,(b,{payload:_})=>{const m=b.invoices;return m.invoices=m.invoices?.map(E=>(E.label===_.label&&(E.amount_received_msat=_.msat,E.payment_preimage=_.preimage,E.status="paid"),E)),{...b,invoices:m}}),(0,mi.on)(zs.qw,(b,{payload:_})=>({...b,offers:_})),(0,mi.on)(zs.kQ,(b,{payload:_})=>{const m=b.offers;return m?.unshift(_),{...b,offers:m}}),(0,mi.on)(zs.Gz,(b,{payload:_})=>{const m=[...b.offers],E=b.offers.findIndex(D=>D.offer_id===_.offer.offer_id);return E>-1&&m.splice(E,1,_.offer),{...b,offers:m}}),(0,mi.on)(zs.Qv,(b,{payload:_})=>({...b,offersBookmarks:_})),(0,mi.on)(zs.Db,(b,{payload:_})=>{const m=[...b.offersBookmarks],E=m.findIndex(D=>D.bolt12===_.bolt12);if(E<0)m?.unshift(_);else{const D={...m[E]};D.title=_.title,D.amountMSat=_.amountMSat,D.lastUpdatedAt=_.lastUpdatedAt,D.description=_.description,D.issuer=_.issuer,m.splice(E,1,D)}return{...b,offersBookmarks:m}}),(0,mi.on)(zs.NU,(b,{payload:_})=>{const m=[...b.offersBookmarks],E=b.offersBookmarks.findIndex(D=>D.bolt12===_.bolt12);return E>-1&&m.splice(E,1),{...b,offersBookmarks:m}}),(0,mi.on)(zs.NS,(b,{payload:_})=>{const m=[];return _t.mu.forEach(E=>{const D=_&&_.length&&_.length>0?_.find(I=>I.pageId===E.pageId):null;if(D){const I=JSON.parse(JSON.stringify(D.tables));D.tables=[],E.tables.forEach(Oe=>{const Ct=I.find(Bt=>Bt.tableId===Oe.tableId)||null;D.tables.push(Ct||JSON.parse(JSON.stringify(Oe)))}),m.push(D)}else m.push(JSON.parse(JSON.stringify(E)))}),{...b,pageSettings:m}})),a0=(b,_)=>(b&&b.length>0?b.forEach((m,E)=>{if(_&&_.length>0)for(let D=0;D<_.length;D++){if(_[D].short_channel_id&&_[D].short_channel_id===m.in_channel&&(m.in_channel_alias=_[D].alias?_[D].alias:m.in_channel,m.out_channel_alias)||_[D].short_channel_id&&_[D].short_channel_id?.toString()===m.out_channel&&(m.out_channel_alias=_[D].alias?_[D].alias:m.out_channel,m.in_channel_alias))return;D===_.length-1&&(m.in_channel_alias||(m.in_channel_alias=m.in_channel?m.in_channel:"-"),m.out_channel_alias||(m.out_channel_alias=m.out_channel?m.out_channel:"-"))}else m.in_channel_alias=m.in_channel?m.in_channel:"-",m.out_channel_alias=m.out_channel?m.out_channel:"-"}):b=[],b),Ju={apisCallStatus:{FetchPageSettings:{status:_t.wn.UN_INITIATED},FetchInfo:{status:_t.wn.UN_INITIATED},FetchFees:{status:_t.wn.UN_INITIATED},FetchChannels:{status:_t.wn.UN_INITIATED},FetchOnchainBalance:{status:_t.wn.UN_INITIATED},FetchPeers:{status:_t.wn.UN_INITIATED},FetchPayments:{status:_t.wn.UN_INITIATED},FetchInvoices:{status:_t.wn.UN_INITIATED},FetchTransactions:{status:_t.wn.UN_INITIATED}},pageSettings:_t.X8,information:{},fees:{},activeChannels:[],pendingChannels:[],inactiveChannels:[],channelsStatus:{active:{channels:0,capacity:0},inactive:{channels:0,capacity:0},pending:{channels:0,capacity:0},closing:{channels:0,capacity:0}},onchainBalance:{total:0,confirmed:0,unconfirmed:0},lightningBalance:{localBalance:-1,remoteBalance:-1},peers:[],payments:{},transactions:[],invoices:[]},u1=(0,mi.vy)(Ju,(0,mi.on)(Ds.uL,(b,{payload:_})=>{const m=JSON.parse(JSON.stringify(b.apisCallStatus));return _.action&&(m[_.action]={status:_.status,statusCode:_.statusCode,message:_.message,URL:_.URL,filePath:_.filePath}),{...b,apisCallStatus:m}}),(0,mi.on)(Ds.Hh,b=>({...Ju})),(0,mi.on)(Ds.x1,(b,{payload:_})=>({...b,information:_})),(0,mi.on)(Ds.Uo,(b,{payload:_})=>({...b,fees:_})),(0,mi.on)(Ds.Tp,(b,{payload:_})=>({...b,activeChannels:_})),(0,mi.on)(Ds.cU,(b,{payload:_})=>({...b,pendingChannels:_})),(0,mi.on)(Ds.I6,(b,{payload:_})=>({...b,inactiveChannels:_})),(0,mi.on)(Ds.ZE,(b,{payload:_})=>({...b,channelsStatus:_})),(0,mi.on)(Ds.Xx,(b,{payload:_})=>({...b,onchainBalance:_})),(0,mi.on)(Ds.N8,(b,{payload:_})=>({...b,lightningBalance:_})),(0,mi.on)(Ds.Qj,(b,{payload:_})=>({...b,peers:_})),(0,mi.on)(Ds.Zi,(b,{payload:_})=>{const m=[...b.peers],E=b.peers.findIndex(D=>D.nodeId===_.nodeId);return E>-1&&m.splice(E,1),{...b,peers:m}}),(0,mi.on)(Ds.cR,(b,{payload:_})=>{const m=[...b.activeChannels],E=b.activeChannels.findIndex(D=>D.channelId===_.channelId);return E>-1&&m.splice(E,1),{...b,activeChannels:m}}),(0,mi.on)(Ds.Uj,(b,{payload:_})=>{if(_&&_.sent){const m=[...b.activeChannels,...b.pendingChannels,...b.inactiveChannels];_.sent?.map(E=>{const D=b.peers.find(I=>I.nodeId===E.recipientNodeId);return E.recipientNodeAlias=D?D.alias:E.recipientNodeId,E.parts&&E.parts?.map(I=>{const Oe=m.find(Ct=>Ct.channelId===I.toChannelId);return I.toChannelAlias=Oe?Oe.alias:I.toChannelId,E.parts}),_.sent})}if(_&&_.relayed){const m=[...b.activeChannels,...b.pendingChannels,...b.inactiveChannels];_.relayed.forEach(E=>{E=H1(E,m)})}return{...b,payments:_}}),(0,mi.on)(Ds.As,(b,{payload:_})=>({...b,transactions:_})),(0,mi.on)(Ds.Jx,(b,{payload:_})=>{const m=b.invoices;return m?.unshift(_),{...b,invoices:m}}),(0,mi.on)(Ds.$6,(b,{payload:_})=>({...b,invoices:_})),(0,mi.on)(Ds.Dq,(b,{payload:_})=>{let m=b.invoices;return m=m?.map(E=>{if(E.paymentHash===_.paymentHash){if(_.hasOwnProperty("type")){const D=JSON.parse(JSON.stringify(E));return D.amountSettled=_.parts&&_.parts.length&&_.parts.length>0&&_.parts[0].amount?(_.parts[0].amount||0)/1e3:0,D.receivedAt=_.parts&&_.parts.length&&_.parts.length>0&&_.parts[0].timestamp?Math.round((_.parts[0].timestamp||0)/1e3):0,D.status="received",D}return _}return E}),{...b,invoices:m}}),(0,mi.on)(Ds.gZ,(b,{payload:_})=>{let m=b.pendingChannels;return m=m?.map(E=>(E.channelId===_.channelId&&E.nodeId===_.remoteNodeId&&(_.currentState=_.currentState?.replace(/_/g," "),E.state=_.currentState),E)),{...b,pendingChannels:m}}),(0,mi.on)(Ds.yn,(b,{payload:_})=>{const m=b.payments,E=H1(_,[...b.activeChannels,...b.pendingChannels,...b.inactiveChannels]);m.relayed?.unshift(E);const D=(_.amountIn||0)-(_.amountOut||0),I={localBalance:b.lightningBalance.localBalance+D,remoteBalance:b.lightningBalance.remoteBalance-D},Oe=b.channelsStatus;Oe.active&&(Oe.active.capacity=(b.channelsStatus?.active?.capacity||0)+D);const Ct={daily_fee:(b.fees.daily_fee||0)+D,daily_txs:(b.fees.daily_txs||0)+1,weekly_fee:(b.fees.weekly_fee||0)+D,weekly_txs:(b.fees.weekly_txs||0)+1,monthly_fee:(b.fees.monthly_fee||0)+D,monthly_txs:(b.fees.monthly_txs||0)+1},Bt=b.activeChannels;let yn=!1,Yn=!1;for(const jn of Bt){if(jn.channelId===_.fromChannelId){yn=!0;const Fi=(jn.toLocal||0)+(jn.toRemote||0);jn.toLocal=(jn.toLocal||0)+E.amountIn,jn.toRemote=(jn.toRemote||0)-E.amountIn,jn.balancedness=0===Fi?1:+(1-Math.abs((jn.toLocal-jn.toRemote)/Fi)).toFixed(3)}if(jn.channelId===_.toChannelId){Yn=!0;const Fi=(jn.toLocal||0)+(jn.toRemote||0);jn.toLocal=(jn.toLocal||0)-E.amountOut,jn.toRemote=(jn.toRemote||0)+E.amountOut,jn.balancedness=0===Fi?1:+(1-Math.abs((jn.toLocal-jn.toRemote)/Fi)).toFixed(3)}if(Yn&&yn)break}return{...b,payments:m,lightningBalance:I,channelStatus:Oe,fees:Ct,activeChannels:Bt}}),(0,mi.on)(Ds.NS,(b,{payload:_})=>{const m=[];return _t.X8.forEach(E=>{const D=_&&_.length&&_.length>0?_.find(I=>I.pageId===E.pageId):null;if(D){const I=JSON.parse(JSON.stringify(D.tables));D.tables=[],E.tables.forEach(Oe=>{const Ct=I.find(Bt=>Bt.tableId===Oe.tableId)||null;D.tables.push(Ct||JSON.parse(JSON.stringify(Oe)))}),m.push(D)}else m.push(JSON.parse(JSON.stringify(E)))}),{...b,pageSettings:m}})),H1=(b,_)=>{if("payment-relayed"===b.type)if(_&&_.length>0)for(let m=0;m<_.length;m++){if(_[m].channelId?.toString()===b.fromChannelId&&(b.fromChannelAlias=_[m].alias?_[m].alias:b.fromChannelId,b.fromShortChannelId=_[m].shortChannelId?_[m].shortChannelId:"",b.toChannelAlias)||_[m].channelId?.toString()===b.toChannelId&&(b.toChannelAlias=_[m].alias?_[m].alias:b.toChannelId,b.toShortChannelId=_[m].shortChannelId?_[m].shortChannelId:"",b.fromChannelAlias))return b;m===_.length-1&&(b.fromChannelAlias||(b.fromChannelAlias=b.fromChannelId?.substring(0,17)+"...",b.fromShortChannelId=""),b.toChannelAlias||(b.toChannelAlias=b.toChannelId?.substring(0,17)+"...",b.toShortChannelId=""))}else b.fromChannelAlias=b.fromChannelId?.substring(0,17)+"...",b.fromShortChannelId="",b.toChannelAlias=b.toChannelId?.substring(0,17)+"...",b.toShortChannelId="";else if(b.type="trampoline-payment-relayed"){if(_&&_.length>0)for(let D=0;D<_.length;D++)b.incoming?.forEach(I=>{_[D].channelId?.toString()===I.channelId&&(I.channelAlias=_[D].alias?_[D].alias:I.channelId,I.shortChannelId=_[D].shortChannelId?_[D].shortChannelId:"")}),b.outgoing?.forEach(I=>{_[D].channelId?.toString()===I.channelId&&(I.channelAlias=_[D].alias?_[D].alias:I.channelId,I.shortChannelId=_[D].shortChannelId?_[D].shortChannelId:"")}),D===_.length-1&&(b.incoming&&b.incoming.length&&b.incoming.length>0&&!b.incoming[0].channelAlias&&b.incoming?.forEach(I=>{I.channelAlias=I.channelId?.substring(0,17)+"...",I.shortChannelId=""}),b.outgoing&&b.outgoing.length&&b.outgoing.length>0&&!b.outgoing[0].channelAlias&&b.outgoing?.forEach(I=>{I.channelAlias=I.channelId?.substring(0,17)+"...",I.shortChannelId=""}));else b.incoming?.forEach(D=>{D.channelAlias=D.channelId?.substring(0,17)+"...",D.shortChannelId=""}),b.outgoing?.forEach(D=>{D.channelAlias=D.channelId?.substring(0,17)+"...",D.shortChannelId=""});const m=b.incoming?.reduce((D,I)=>D+I.amount,0)||0;b.amountIn=Math.round(m/1e3),b.fromChannelId=b.incoming&&b.incoming.length?b.incoming[0].channelId:"",b.fromChannelAlias=b.incoming&&b.incoming.length?b.incoming[0].channelAlias:"",b.fromShortChannelId=b.incoming&&b.incoming.length?b.incoming[0].shortChannelId:"";const E=b.outgoing?.reduce((D,I)=>D+I.amount,0)||0;b.amountOut=Math.round(E/1e3),b.toChannelId=b.outgoing&&b.outgoing.length?b.outgoing[0].channelId:"",b.toChannelAlias=b.outgoing&&b.outgoing.length?b.outgoing[0].channelAlias:"",b.toShortChannelId=b.outgoing&&b.outgoing.length?b.outgoing[0].shortChannelId:""}return b};let X3=!1;(0,O.naY)()&&(X3=!0);let Uf=(()=>{var b;class _{static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)},this.\u0275mod=e.$C({type:_,bootstrap:[Wu]}),this.\u0275inj=v.G2t({providers:[(0,nr.$R)((0,nr.ZZ)(),(0,nr.Sx)()),nc({idle:_t.bz-10,timeout:10,ping:12e3}),{provide:nr.a7,useClass:Xu,multi:!0},ji.Q,o1.u,Cm.I,E1.Q,Qo.h,rc],imports:[Mo,Bu.G,Pd,ds.RH,Dt.fM,mi.md.forRoot({root:Vf,lnd:$u,cln:Zu,ecl:u1},{runtimeChecks:{strictStateImmutability:!1,strictActionImmutability:!1}}),Uo.Vm.forRoot([Ko.H,Ku.L,j3.i,xm.B]),X3?Ls.instrument({connectInZone:!0}):[]]}))}return b(),_})();De().bootstrapModule(Uf).catch(b=>console.error(b))},4740(Zt){!function(pe){"use strict";var l={bytesToHex:function(v){return function i(v){return v.map(function(T){return function d(v,T){return v.length>T?v:Array(T-v.length+1).join("0")+v}(T.toString(16),2)}).join("")}(v)},hexToBytes:function(v){if(v.length%2==1)throw new Error("hexToBytes can't have a string with an odd number of characters.");return 0===v.indexOf("0x")&&(v=v.slice(2)),v.match(/../g).map(function(T){return parseInt(T,16)})}};Zt.exports?Zt.exports=l:pe.convertHex=l}(this)},820(Zt){!function(pe){"use strict";var l={bytesToString:function(i){return i.map(function(d){return String.fromCharCode(d)}).join("")},stringToBytes:function(i){return i.split("").map(function(d){return d.charCodeAt(0)})}};l.UTF8={bytesToString:function(i){return decodeURIComponent(escape(l.bytesToString(i)))},stringToBytes:function(i){return l.stringToBytes(unescape(encodeURIComponent(i)))}},Zt.exports?Zt.exports=l:pe.convertString=l}(this)},243(Zt){"use strict";var pe={single_source_shortest_paths:function(l,i,d){var v={},T={};T[i]=0;var e,O,f,u,L,B,w=pe.PriorityQueue.make();for(w.push(i,0);!w.empty();)for(f in u=(e=w.pop()).cost,L=l[O=e.value]||{})L.hasOwnProperty(f)&&(B=u+L[f],(typeof T[f]>"u"||T[f]>B)&&(T[f]=B,w.push(f,B),v[f]=O));if(typeof d<"u"&&typeof T[d]>"u"){var le=["Could not find a path from ",i," to ",d,"."].join("");throw new Error(le)}return v},extract_shortest_path_from_predecessor_list:function(l,i){for(var d=[],v=i;v;)d.push(v),v=l[v];return d.reverse(),d},find_path:function(l,i,d){var v=pe.single_source_shortest_paths(l,i,d);return pe.extract_shortest_path_from_predecessor_list(v,d)},PriorityQueue:{make:function(l){var v,i=pe.PriorityQueue,d={};for(v in l=l||{},i)i.hasOwnProperty(v)&&(d[v]=i[v]);return d.queue=[],d.sorter=l.sorter||i.default_sorter,d},default_sorter:function(l,i){return l.cost-i.cost},push:function(l,i){this.queue.push({value:l,cost:i}),this.queue.sort(this.sorter)},pop:function(){return this.queue.shift()},empty:function(){return 0===this.queue.length}}};Zt.exports=pe},8314(Zt,pe,l){const i=l(2836),d=l(9460),v=l(7030),T=l(6511);function w(e,O,f,u,L){const C=[].slice.call(arguments,1),B=C.length,A="function"==typeof C[B-1];if(!A&&!i())throw new Error("Callback required as last argument");if(!A){if(B<1)throw new Error("Too few arguments provided");return 1===B?(f=O,O=u=void 0):2===B&&!O.getContext&&(u=f,f=O,O=void 0),new Promise(function(Pe,le){try{const Ce=d.create(f,u);Pe(e(Ce,O,u))}catch(Ce){le(Ce)}})}if(B<2)throw new Error("Too few arguments provided");2===B?(L=f,f=O,O=u=void 0):3===B&&(O.getContext&&typeof L>"u"?(L=u,u=void 0):(L=u,u=f,f=O,O=void 0));try{const Pe=d.create(f,u);L(null,e(Pe,O,u))}catch(Pe){L(Pe)}}pe.create=d.create,pe.toCanvas=w.bind(null,v.render),pe.toDataURL=w.bind(null,v.renderToDataURL),pe.toString=w.bind(null,function(e,O,f){return T.render(e,f)})},2836(Zt){Zt.exports=function(){return"function"==typeof Promise&&Promise.prototype&&Promise.prototype.then}},6214(Zt,pe,l){const i=l(9089).getSymbolSize;pe.getRowColCoords=function(v){if(1===v)return[];const T=Math.floor(v/7)+2,w=i(v),e=145===w?26:2*Math.ceil((w-13)/(2*T-2)),O=[w-7];for(let f=1;f>>7-l%8&1)},put:function(l,i){for(let d=0;d>>i-d-1&1))},getLengthInBits:function(){return this.length},putBit:function(l){const i=Math.floor(this.length/8);this.buffer.length<=i&&this.buffer.push(0),l&&(this.buffer[i]|=128>>>this.length%8),this.length++}},Zt.exports=pe},5941(Zt){function pe(l){if(!l||l<1)throw new Error("BitMatrix size must be defined and greater than 0");this.size=l,this.data=new Uint8Array(l*l),this.reservedBit=new Uint8Array(l*l)}pe.prototype.set=function(l,i,d,v){const T=l*this.size+i;this.data[T]=d,v&&(this.reservedBit[T]=!0)},pe.prototype.get=function(l,i){return this.data[l*this.size+i]},pe.prototype.xor=function(l,i,d){this.data[l*this.size+i]^=d},pe.prototype.isReserved=function(l,i){return this.reservedBit[l*this.size+i]},Zt.exports=pe},4969(Zt,pe,l){const i=l(1677);function d(v){this.mode=i.BYTE,this.data="string"==typeof v?(new TextEncoder).encode(v):new Uint8Array(v)}d.getBitsLength=function(T){return 8*T},d.prototype.getLength=function(){return this.data.length},d.prototype.getBitsLength=function(){return d.getBitsLength(this.data.length)},d.prototype.write=function(v){for(let T=0,w=this.data.length;T=0&&d.bit<4},pe.from=function(d,v){if(pe.isValid(d))return d;try{return function l(i){if("string"!=typeof i)throw new Error("Param is not a string");switch(i.toLowerCase()){case"l":case"low":return pe.L;case"m":case"medium":return pe.M;case"q":case"quartile":return pe.Q;case"h":case"high":return pe.H;default:throw new Error("Unknown EC Level: "+i)}}(d)}catch{return v}}},6269(Zt,pe,l){const i=l(9089).getSymbolSize;pe.getPositions=function(T){const w=i(T);return[[0,0],[w-7,0],[0,w-7]]}},6254(Zt,pe,l){const i=l(9089),T=i.getBCHDigit(1335);pe.getEncodedBits=function(e,O){const f=e.bit<<3|O;let u=f<<10;for(;i.getBCHDigit(u)-T>=0;)u^=1335<=33088&&e<=40956)e-=33088;else{if(!(e>=57408&&e<=60351))throw new Error("Invalid SJIS character: "+this.data[w]+"\nMake sure your charset is UTF-8");e-=49472}e=192*(e>>>8&255)+(255&e),T.put(e,13)}},Zt.exports=v},3361(Zt,pe){pe.Patterns={PATTERN000:0,PATTERN001:1,PATTERN010:2,PATTERN011:3,PATTERN100:4,PATTERN101:5,PATTERN110:6,PATTERN111:7};function i(d,v,T){switch(d){case pe.Patterns.PATTERN000:return(v+T)%2==0;case pe.Patterns.PATTERN001:return v%2==0;case pe.Patterns.PATTERN010:return T%3==0;case pe.Patterns.PATTERN011:return(v+T)%3==0;case pe.Patterns.PATTERN100:return(Math.floor(v/2)+Math.floor(T/3))%2==0;case pe.Patterns.PATTERN101:return v*T%2+v*T%3==0;case pe.Patterns.PATTERN110:return(v*T%2+v*T%3)%2==0;case pe.Patterns.PATTERN111:return(v*T%3+(v+T)%2)%2==0;default:throw new Error("bad maskPattern:"+d)}}pe.isValid=function(v){return null!=v&&""!==v&&!isNaN(v)&&v>=0&&v<=7},pe.from=function(v){return pe.isValid(v)?parseInt(v,10):void 0},pe.getPenaltyN1=function(v){const T=v.size;let w=0,e=0,O=0,f=null,u=null;for(let L=0;L=5&&(w+=e-5+3),f=B,e=1),B=v.get(C,L),B===u?O++:(O>=5&&(w+=O-5+3),u=B,O=1)}e>=5&&(w+=e-5+3),O>=5&&(w+=O-5+3)}return w},pe.getPenaltyN2=function(v){const T=v.size;let w=0;for(let e=0;e=10&&(1488===e||93===e)&&w++,O=O<<1&2047|v.get(u,f),u>=10&&(1488===O||93===O)&&w++}return 40*w},pe.getPenaltyN4=function(v){let T=0;const w=v.data.length;for(let O=0;O=1&&e<10?w.ccBits[0]:e<27?w.ccBits[1]:w.ccBits[2]},pe.getBestModeForData=function(w){return d.testNumeric(w)?pe.NUMERIC:d.testAlphanumeric(w)?pe.ALPHANUMERIC:d.testKanji(w)?pe.KANJI:pe.BYTE},pe.toString=function(w){if(w&&w.id)return w.id;throw new Error("Invalid mode")},pe.isValid=function(w){return w&&w.bit&&w.ccBits},pe.from=function(w,e){if(pe.isValid(w))return w;try{return function v(T){if("string"!=typeof T)throw new Error("Param is not a string");switch(T.toLowerCase()){case"numeric":return pe.NUMERIC;case"alphanumeric":return pe.ALPHANUMERIC;case"kanji":return pe.KANJI;case"byte":return pe.BYTE;default:throw new Error("Unknown mode: "+T)}}(w)}catch{return e}}},6628(Zt,pe,l){const i=l(1677);function d(v){this.mode=i.NUMERIC,this.data=v.toString()}d.getBitsLength=function(T){return 10*Math.floor(T/3)+(T%3?T%3*3+1:0)},d.prototype.getLength=function(){return this.data.length},d.prototype.getBitsLength=function(){return d.getBitsLength(this.data.length)},d.prototype.write=function(T){let w,e,O;for(w=0;w+3<=this.data.length;w+=3)e=this.data.substr(w,3),O=parseInt(e,10),T.put(O,10);const f=this.data.length-w;f>0&&(e=this.data.substr(w),O=parseInt(e,10),T.put(O,3*f+1))},Zt.exports=d},1744(Zt,pe,l){const i=l(6686);pe.mul=function(v,T){const w=new Uint8Array(v.length+T.length-1);for(let e=0;e=0;){const e=w[0];for(let f=0;f>J&1),Ee.set(J<6?J:J<8?J+1:be-15+J,8,De,!0),Ee.set(8,J<8?be-J-1:J<9?15-J-1+1:15-J-1,De,!0);Ee.set(be-8,8,1,!0)}function xe(Ee,V,ce,be){let ne;if(Array.isArray(Ee))ne=A.fromArray(Ee);else{if("string"!=typeof Ee)throw new Error("Invalid data");{let _e=V;if(!_e){const he=A.rawSplit(Ee);_e=L.getBestVersionForData(he,ce)}ne=A.fromString(Ee,_e||40)}}const J=L.getBestVersionForData(ne,ce);if(!J)throw new Error("The amount of data is too big to be stored in a QR Code");if(V){if(V=0&&Re<=6&&(0===Xe||6===Xe)||Xe>=0&&Xe<=6&&(0===Re||6===Re)||Re>=2&&Re<=4&&Xe>=2&&Xe<=4,!0)}}(Xe,V),function le(Ee){const V=Ee.size;for(let ce=8;ce=7&&function Ae(Ee,V){const ce=Ee.size,be=L.getEncodedBits(V);let ne,J,De;for(let Re=0;Re<18;Re++)ne=Math.floor(Re/3),J=Re%3+ce-8-3,De=1==(be>>Re&1),Ee.set(ne,J,De,!0),Ee.set(J,ne,De,!0)}(Xe,V),function W(Ee,V){const ce=Ee.size;let be=-1,ne=ce-1,J=7,De=0;for(let Re=ce-1;Re>0;Re-=2)for(6===Re&&Re--;;){for(let Xe=0;Xe<2;Xe++)if(!Ee.isReserved(ne,Re-Xe)){let _e=!1;De>>J&1)),Ee.set(ne,Re-Xe,_e),J--,-1===J&&(De++,J=7)}if(ne+=be,ne<0||ce<=ne){ne-=be,be=-be;break}}}(Xe,De),isNaN(be)&&(be=O.getBestMask(Xe,j.bind(null,Xe,ce))),O.applyMask(be,Xe),j(Xe,ce,be),{modules:Xe,version:V,errorCorrectionLevel:ce,maskPattern:be,segments:ne}}pe.create=function(V,ce){if(typeof V>"u"||""===V)throw new Error("No input text");let ne,J,be=d.M;return typeof ce<"u"&&(be=d.from(ce.errorCorrectionLevel,d.M),ne=L.from(ce.version),J=O.from(ce.maskPattern),ce.toSJISFunc&&i.setToSJISFunction(ce.toSJISFunc)),xe(V,ne,be,J)}},6289(Zt,pe,l){const i=l(1744);function d(v){this.genPoly=void 0,this.degree=v,this.degree&&this.initialize(this.degree)}d.prototype.initialize=function(T){this.degree=T,this.genPoly=i.generateECPolynomial(this.degree)},d.prototype.encode=function(T){if(!this.genPoly)throw new Error("Encoder not initialized");const w=new Uint8Array(T.length+this.degree);w.set(T);const e=i.mod(w,this.genPoly),O=this.degree-e.length;if(O>0){const f=new Uint8Array(this.degree);return f.set(e,O),f}return e},Zt.exports=d},9359(Zt,pe){const l="[0-9]+";let d="(?:[u3000-u303F]|[u3040-u309F]|[u30A0-u30FF]|[uFF00-uFFEF]|[u4E00-u9FAF]|[u2605-u2606]|[u2190-u2195]|u203B|[u2010u2015u2018u2019u2025u2026u201Cu201Du2225u2260]|[u0391-u0451]|[u00A7u00A8u00B1u00B4u00D7u00F7])+";d=d.replace(/u/g,"\\u");const v="(?:(?![A-Z0-9 $%*+\\-./:]|"+d+")(?:.|[\r\n]))+";pe.KANJI=new RegExp(d,"g"),pe.BYTE_KANJI=new RegExp("[^A-Z0-9 $%*+\\-./:]+","g"),pe.BYTE=new RegExp(v,"g"),pe.NUMERIC=new RegExp(l,"g"),pe.ALPHANUMERIC=new RegExp("[A-Z $%*+\\-./:]+","g");const T=new RegExp("^"+d+"$"),w=new RegExp("^"+l+"$"),e=new RegExp("^[A-Z0-9 $%*+\\-./:]+$");pe.testKanji=function(f){return T.test(f)},pe.testNumeric=function(f){return w.test(f)},pe.testAlphanumeric=function(f){return e.test(f)}},2868(Zt,pe,l){const i=l(1677),d=l(6628),v=l(1018),T=l(4969),w=l(3264),e=l(9359),O=l(9089),f=l(243);function u(Ae){return unescape(encodeURIComponent(Ae)).length}function L(Ae,j,W){const G=[];let re;for(;null!==(re=Ae.exec(W));)G.push({data:re[0],index:re.index,mode:j,length:re[0].length});return G}function C(Ae){const j=L(e.NUMERIC,i.NUMERIC,Ae),W=L(e.ALPHANUMERIC,i.ALPHANUMERIC,Ae);let G,re;return O.isKanjiModeEnabled()?(G=L(e.BYTE,i.BYTE,Ae),re=L(e.KANJI,i.KANJI,Ae)):(G=L(e.BYTE_KANJI,i.BYTE,Ae),re=[]),j.concat(W,G,re).sort(function(Ee,V){return Ee.index-V.index}).map(function(Ee){return{data:Ee.data,mode:Ee.mode,length:Ee.length}})}function B(Ae,j){switch(j){case i.NUMERIC:return d.getBitsLength(Ae);case i.ALPHANUMERIC:return v.getBitsLength(Ae);case i.KANJI:return w.getBitsLength(Ae);case i.BYTE:return T.getBitsLength(Ae)}}function Ce(Ae,j){let W;const G=i.getBestModeForData(Ae);if(W=i.from(j,G),W!==i.BYTE&&W.bit=0?j[j.length-1]:null;return G&&G.mode===W.mode?(j[j.length-1].data+=W.data,j):(j.push(W),j)},[])}(V))},pe.rawSplit=function(j){return pe.fromArray(C(j,O.isKanjiModeEnabled()))}},9089(Zt,pe){let l;const i=[0,26,44,70,100,134,172,196,242,292,346,404,466,532,581,655,733,815,901,991,1085,1156,1258,1364,1474,1588,1706,1828,1921,2051,2185,2323,2465,2611,2761,2876,3034,3196,3362,3532,3706];pe.getSymbolSize=function(v){if(!v)throw new Error('"version" cannot be null or undefined');if(v<1||v>40)throw new Error('"version" should be in range from 1 to 40');return 4*v+17},pe.getSymbolTotalCodewords=function(v){return i[v]},pe.getBCHDigit=function(d){let v=0;for(;0!==d;)v++,d>>>=1;return v},pe.setToSJISFunction=function(v){if("function"!=typeof v)throw new Error('"toSJISFunc" is not a valid function.');l=v},pe.isKanjiModeEnabled=function(){return typeof l<"u"},pe.toSJIS=function(v){return l(v)}},377(Zt,pe){pe.isValid=function(i){return!isNaN(i)&&i>=1&&i<=40}},1252(Zt,pe,l){const i=l(9089),d=l(3677),v=l(7424),T=l(1677),w=l(377),O=i.getBCHDigit(7973);function u(B,A){return T.getCharCountIndicator(B,A)+4}function L(B,A){let Pe=0;return B.forEach(function(le){const Ce=u(le.mode,A);Pe+=Ce+le.getBitsLength()}),Pe}pe.from=function(A,Pe){return w.isValid(A)?parseInt(A,10):Pe},pe.getCapacity=function(A,Pe,le){if(!w.isValid(A))throw new Error("Invalid QR Code version");typeof le>"u"&&(le=T.BYTE);const j=8*(i.getSymbolTotalCodewords(A)-d.getTotalCodewordsCount(A,Pe));if(le===T.MIXED)return j;const W=j-u(le,A);switch(le){case T.NUMERIC:return Math.floor(W/10*3);case T.ALPHANUMERIC:return Math.floor(W/11*2);case T.KANJI:return Math.floor(W/13);default:return Math.floor(W/8)}},pe.getBestVersionForData=function(A,Pe){let le;const Ce=v.from(Pe,v.M);if(Array.isArray(A)){if(A.length>1)return function C(B,A){for(let Pe=1;Pe<=40;Pe++)if(L(B,Pe)<=pe.getCapacity(Pe,A,T.MIXED))return Pe}(A,Ce);if(0===A.length)return 1;le=A[0]}else le=A;return function f(B,A,Pe){for(let le=1;le<=40;le++)if(A<=pe.getCapacity(le,Pe,B))return le}(le.mode,le.getLength(),Ce)},pe.getEncodedBits=function(A){if(!w.isValid(A)||A<7)throw new Error("Invalid QR Code version");let Pe=A<<12;for(;i.getBCHDigit(Pe)-O>=0;)Pe^=7973<"u"&&(!e||!e.getContext)&&(f=e,e=void 0),e||(u=function v(){try{return document.createElement("canvas")}catch{throw new Error("You need to specify a canvas element")}}()),f=i.getOptions(f);const L=i.getImageWidth(w.modules.size,f),C=u.getContext("2d"),B=C.createImageData(L,L);return i.qrToImageData(B.data,w,f),function d(T,w,e){T.clearRect(0,0,w.width,w.height),w.style||(w.style={}),w.height=e,w.width=e,w.style.height=e+"px",w.style.width=e+"px"}(C,u,L),C.putImageData(B,0,0),u},pe.renderToDataURL=function(w,e,O){let f=O;return typeof f>"u"&&(!e||!e.getContext)&&(f=e,e=void 0),f||(f={}),pe.render(w,e,f).toDataURL(f.type||"image/png",(f.rendererOpts||{}).quality)}},6511(Zt,pe,l){const i=l(7077);function d(w,e){const O=w.a/255,f=e+'="'+w.hex+'"';return O<1?f+" "+e+'-opacity="'+O.toFixed(2).slice(1)+'"':f}function v(w,e,O){let f=w+e;return typeof O<"u"&&(f+=" "+O),f}pe.render=function(e,O,f){const u=i.getOptions(O),L=e.modules.size,C=e.modules.data,B=L+2*u.margin,A=u.color.light.a?"':"",Pe="0&&A>0&&w[B-1]||(f+=L?v("M",A+O,.5+Pe+O):v("m",u,0),u=0,L=!1),A+1',Ae=''+A+Pe+"\n";return"function"==typeof f&&f(null,Ae),Ae}},7077(Zt,pe){function l(i){if("number"==typeof i&&(i=i.toString()),"string"!=typeof i)throw new Error("Color should be defined as hex string");let d=i.slice().replace("#","").split("");if(d.length<3||5===d.length||d.length>8)throw new Error("Invalid hex color: "+i);(3===d.length||4===d.length)&&(d=Array.prototype.concat.apply([],d.map(function(T){return[T,T]}))),6===d.length&&d.push("F","F");const v=parseInt(d.join(""),16);return{r:v>>24&255,g:v>>16&255,b:v>>8&255,a:255&v,hex:"#"+d.slice(0,6).join("")}}pe.getOptions=function(d){d||(d={}),d.color||(d.color={});const T=d.width&&d.width>=21?d.width:void 0;return{width:T,scale:T?4:d.scale||4,margin:typeof d.margin>"u"||null===d.margin||d.margin<0?4:d.margin,color:{dark:l(d.color.dark||"#000000ff"),light:l(d.color.light||"#ffffffff")},type:d.type,rendererOpts:d.rendererOpts||{}}},pe.getScale=function(d,v){return v.width&&v.width>=d+2*v.margin?v.width/(d+2*v.margin):v.scale},pe.getImageWidth=function(d,v){const T=pe.getScale(d,v);return Math.floor((d+2*v.margin)*T)},pe.qrToImageData=function(d,v,T){const w=v.modules.size,e=v.modules.data,O=pe.getScale(w,T),f=Math.floor((w+2*T.margin)*O),u=T.margin*O,L=[T.color.light,T.color.dark];for(let C=0;C=u&&B>=u&&Cd});var i=l(1413);class d extends i.B{constructor(T){super(),this._value=T}get value(){return this.getValue()}_subscribe(T){const w=super._subscribe(T);return!w.closed&&T.next(this._value),w}getValue(){const{hasError:T,thrownError:w,_value:e}=this;if(T)throw w;return this._throwIfClosed(),e}next(T){super.next(this._value=T)}}},1985(Zt,pe,l){"use strict";l.d(pe,{c:()=>f});var i=l(7707),d=l(8359),v=l(3494),T=l(1203),w=l(1026),e=l(8071),O=l(9786);let f=(()=>{class B{constructor(Pe){Pe&&(this._subscribe=Pe)}lift(Pe){const le=new B;return le.source=this,le.operator=Pe,le}subscribe(Pe,le,Ce){const Ae=function C(B){return B&&B instanceof i.vU||function L(B){return B&&(0,e.T)(B.next)&&(0,e.T)(B.error)&&(0,e.T)(B.complete)}(B)&&(0,d.Uv)(B)}(Pe)?Pe:new i.Ms(Pe,le,Ce);return(0,O.Y)(()=>{const{operator:j,source:W}=this;Ae.add(j?j.call(Ae,W):W?this._subscribe(Ae):this._trySubscribe(Ae))}),Ae}_trySubscribe(Pe){try{return this._subscribe(Pe)}catch(le){Pe.error(le)}}forEach(Pe,le){return new(le=u(le))((Ce,Ae)=>{const j=new i.Ms({next:W=>{try{Pe(W)}catch(G){Ae(G),j.unsubscribe()}},error:Ae,complete:Ce});this.subscribe(j)})}_subscribe(Pe){var le;return null===(le=this.source)||void 0===le?void 0:le.subscribe(Pe)}[v.s](){return this}pipe(...Pe){return(0,T.m)(Pe)(this)}toPromise(Pe){return new(Pe=u(Pe))((le,Ce)=>{let Ae;this.subscribe(j=>Ae=j,j=>Ce(j),()=>le(Ae))})}}return B.create=A=>new B(A),B})();function u(B){var A;return null!==(A=B??w.$.Promise)&&void 0!==A?A:Promise}},2771(Zt,pe,l){"use strict";l.d(pe,{m:()=>v});var i=l(1413),d=l(6129);class v extends i.B{constructor(w=1/0,e=1/0,O=d.U){super(),this._bufferSize=w,this._windowTime=e,this._timestampProvider=O,this._buffer=[],this._infiniteTimeWindow=!0,this._infiniteTimeWindow=e===1/0,this._bufferSize=Math.max(1,w),this._windowTime=Math.max(1,e)}next(w){const{isStopped:e,_buffer:O,_infiniteTimeWindow:f,_timestampProvider:u,_windowTime:L}=this;e||(O.push(w),!f&&O.push(u.now()+L)),this._trimBuffer(),super.next(w)}_subscribe(w){this._throwIfClosed(),this._trimBuffer();const e=this._innerSubscribe(w),{_infiniteTimeWindow:O,_buffer:f}=this,u=f.slice();for(let L=0;Lf,B:()=>O});var i=l(1985),d=l(8359);const T=(0,l(1853).L)(u=>function(){u(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"});var w=l(7908),e=l(9786);let O=(()=>{class u extends i.c{constructor(){super(),this.closed=!1,this.currentObservers=null,this.observers=[],this.isStopped=!1,this.hasError=!1,this.thrownError=null}lift(C){const B=new f(this,this);return B.operator=C,B}_throwIfClosed(){if(this.closed)throw new T}next(C){(0,e.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.currentObservers||(this.currentObservers=Array.from(this.observers));for(const B of this.currentObservers)B.next(C)}})}error(C){(0,e.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.hasError=this.isStopped=!0,this.thrownError=C;const{observers:B}=this;for(;B.length;)B.shift().error(C)}})}complete(){(0,e.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.isStopped=!0;const{observers:C}=this;for(;C.length;)C.shift().complete()}})}unsubscribe(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null}get observed(){var C;return(null===(C=this.observers)||void 0===C?void 0:C.length)>0}_trySubscribe(C){return this._throwIfClosed(),super._trySubscribe(C)}_subscribe(C){return this._throwIfClosed(),this._checkFinalizedStatuses(C),this._innerSubscribe(C)}_innerSubscribe(C){const{hasError:B,isStopped:A,observers:Pe}=this;return B||A?d.Kn:(this.currentObservers=null,Pe.push(C),new d.yU(()=>{this.currentObservers=null,(0,w.o)(Pe,C)}))}_checkFinalizedStatuses(C){const{hasError:B,thrownError:A,isStopped:Pe}=this;B?C.error(A):Pe&&C.complete()}asObservable(){const C=new i.c;return C.source=this,C}}return u.create=(L,C)=>new f(L,C),u})();class f extends O{constructor(L,C){super(),this.destination=L,this.source=C}next(L){var C,B;null===(B=null===(C=this.destination)||void 0===C?void 0:C.next)||void 0===B||B.call(C,L)}error(L){var C,B;null===(B=null===(C=this.destination)||void 0===C?void 0:C.error)||void 0===B||B.call(C,L)}complete(){var L,C;null===(C=null===(L=this.destination)||void 0===L?void 0:L.complete)||void 0===C||C.call(L)}_subscribe(L){var C,B;return null!==(B=null===(C=this.source)||void 0===C?void 0:C.subscribe(L))&&void 0!==B?B:d.Kn}}},7707(Zt,pe,l){"use strict";l.d(pe,{Ms:()=>Ce,vU:()=>B});var i=l(8071),d=l(8359),v=l(1026),T=l(5334),w=l(5343);const e=u("C",void 0,void 0);function u(re,xe,Ee){return{kind:re,value:xe,error:Ee}}var L=l(9270),C=l(9786);class B extends d.yU{constructor(xe){super(),this.isStopped=!1,xe?(this.destination=xe,(0,d.Uv)(xe)&&xe.add(this)):this.destination=G}static create(xe,Ee,V){return new Ce(xe,Ee,V)}next(xe){this.isStopped?W(function f(re){return u("N",re,void 0)}(xe),this):this._next(xe)}error(xe){this.isStopped?W(function O(re){return u("E",void 0,re)}(xe),this):(this.isStopped=!0,this._error(xe))}complete(){this.isStopped?W(e,this):(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe(),this.destination=null)}_next(xe){this.destination.next(xe)}_error(xe){try{this.destination.error(xe)}finally{this.unsubscribe()}}_complete(){try{this.destination.complete()}finally{this.unsubscribe()}}}const A=Function.prototype.bind;function Pe(re,xe){return A.call(re,xe)}class le{constructor(xe){this.partialObserver=xe}next(xe){const{partialObserver:Ee}=this;if(Ee.next)try{Ee.next(xe)}catch(V){Ae(V)}}error(xe){const{partialObserver:Ee}=this;if(Ee.error)try{Ee.error(xe)}catch(V){Ae(V)}else Ae(xe)}complete(){const{partialObserver:xe}=this;if(xe.complete)try{xe.complete()}catch(Ee){Ae(Ee)}}}class Ce extends B{constructor(xe,Ee,V){let ce;if(super(),(0,i.T)(xe)||!xe)ce={next:xe??void 0,error:Ee??void 0,complete:V??void 0};else{let be;this&&v.$.useDeprecatedNextContext?(be=Object.create(xe),be.unsubscribe=()=>this.unsubscribe(),ce={next:xe.next&&Pe(xe.next,be),error:xe.error&&Pe(xe.error,be),complete:xe.complete&&Pe(xe.complete,be)}):ce=xe}this.destination=new le(ce)}}function Ae(re){v.$.useDeprecatedSynchronousErrorHandling?(0,C.l)(re):(0,T.m)(re)}function W(re,xe){const{onStoppedNotification:Ee}=v.$;Ee&&L.f.setTimeout(()=>Ee(re,xe))}const G={closed:!0,next:w.l,error:function j(re){throw re},complete:w.l}},8359(Zt,pe,l){"use strict";l.d(pe,{Kn:()=>e,yU:()=>w,Uv:()=>O});var i=l(8071);const v=(0,l(1853).L)(u=>function(C){u(this),this.message=C?`${C.length} errors occurred during unsubscription:\n${C.map((B,A)=>`${A+1}) ${B.toString()}`).join("\n ")}`:"",this.name="UnsubscriptionError",this.errors=C});var T=l(7908);class w{constructor(L){this.initialTeardown=L,this.closed=!1,this._parentage=null,this._finalizers=null}unsubscribe(){let L;if(!this.closed){this.closed=!0;const{_parentage:C}=this;if(C)if(this._parentage=null,Array.isArray(C))for(const Pe of C)Pe.remove(this);else C.remove(this);const{initialTeardown:B}=this;if((0,i.T)(B))try{B()}catch(Pe){L=Pe instanceof v?Pe.errors:[Pe]}const{_finalizers:A}=this;if(A){this._finalizers=null;for(const Pe of A)try{f(Pe)}catch(le){L=L??[],le instanceof v?L=[...L,...le.errors]:L.push(le)}}if(L)throw new v(L)}}add(L){var C;if(L&&L!==this)if(this.closed)f(L);else{if(L instanceof w){if(L.closed||L._hasParent(this))return;L._addParent(this)}(this._finalizers=null!==(C=this._finalizers)&&void 0!==C?C:[]).push(L)}}_hasParent(L){const{_parentage:C}=this;return C===L||Array.isArray(C)&&C.includes(L)}_addParent(L){const{_parentage:C}=this;this._parentage=Array.isArray(C)?(C.push(L),C):C?[C,L]:L}_removeParent(L){const{_parentage:C}=this;C===L?this._parentage=null:Array.isArray(C)&&(0,T.o)(C,L)}remove(L){const{_finalizers:C}=this;C&&(0,T.o)(C,L),L instanceof w&&L._removeParent(this)}}w.EMPTY=(()=>{const u=new w;return u.closed=!0,u})();const e=w.EMPTY;function O(u){return u instanceof w||u&&"closed"in u&&(0,i.T)(u.remove)&&(0,i.T)(u.add)&&(0,i.T)(u.unsubscribe)}function f(u){(0,i.T)(u)?u():u.unsubscribe()}},1026(Zt,pe,l){"use strict";l.d(pe,{$:()=>i});const i={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1}},17(Zt,pe,l){"use strict";l.d(pe,{G:()=>e});var i=l(1985),d=l(8359),v=l(9898),T=l(4360),w=l(9974);class e extends i.c{constructor(f,u){super(),this.source=f,this.subjectFactory=u,this._subject=null,this._refCount=0,this._connection=null,(0,w.S)(f)&&(this.lift=f.lift)}_subscribe(f){return this.getSubject().subscribe(f)}getSubject(){const f=this._subject;return(!f||f.isStopped)&&(this._subject=this.subjectFactory()),this._subject}_teardown(){this._refCount=0;const{_connection:f}=this;this._subject=this._connection=null,f?.unsubscribe()}connect(){let f=this._connection;if(!f){f=this._connection=new d.yU;const u=this.getSubject();f.add(this.source.subscribe((0,T._)(u,void 0,()=>{this._teardown(),u.complete()},L=>{this._teardown(),u.error(L)},()=>this._teardown()))),f.closed&&(this._connection=null,f=d.yU.EMPTY)}return f}refCount(){return(0,v.B)()(this)}}},4572(Zt,pe,l){"use strict";l.d(pe,{z:()=>L});var i=l(1985),d=l(3073),v=l(2806),T=l(3669),w=l(6450),e=l(9326),O=l(8496),f=l(4360),u=l(5225);function L(...A){const Pe=(0,e.lI)(A),le=(0,e.ms)(A),{args:Ce,keys:Ae}=(0,d.D)(A);if(0===Ce.length)return(0,v.H)([],Pe);const j=new i.c(function C(A,Pe,le=T.D){return Ce=>{B(Pe,()=>{const{length:Ae}=A,j=new Array(Ae);let W=Ae,G=Ae;for(let re=0;re{const xe=(0,v.H)(A[re],Pe);let Ee=!1;xe.subscribe((0,f._)(Ce,V=>{j[re]=V,Ee||(Ee=!0,G--),G||Ce.next(le(j.slice()))},()=>{--W||Ce.complete()}))},Ce)},Ce)}}(Ce,Pe,Ae?W=>(0,O.e)(Ae,W):T.D));return le?j.pipe((0,w.I)(le)):j}function B(A,Pe,le){A?(0,u.N)(le,A,Pe):Pe()}},8793(Zt,pe,l){"use strict";l.d(pe,{x:()=>w});var i=l(6365),v=l(9326),T=l(2806);function w(...e){return function d(){return(0,i.U)(1)}()((0,T.H)(e,(0,v.lI)(e)))}},9030(Zt,pe,l){"use strict";l.d(pe,{v:()=>v});var i=l(1985),d=l(8750);function v(T){return new i.c(w=>{(0,d.Tg)(T()).subscribe(w)})}},983(Zt,pe,l){"use strict";l.d(pe,{w:()=>v});const v=new(l(1985).c)(e=>e.complete())},7468(Zt,pe,l){"use strict";l.d(pe,{p:()=>f});var i=l(1985),d=l(3073),v=l(8750),T=l(9326),w=l(4360),e=l(6450),O=l(8496);function f(...u){const L=(0,T.ms)(u),{args:C,keys:B}=(0,d.D)(u),A=new i.c(Pe=>{const{length:le}=C;if(!le)return void Pe.complete();const Ce=new Array(le);let Ae=le,j=le;for(let W=0;W{G||(G=!0,j--),Ce[W]=re},()=>Ae--,void 0,()=>{(!Ae||!G)&&(j||Pe.next(B?(0,O.e)(B,Ce):Ce),Pe.complete())}))}});return L?A.pipe((0,e.I)(L)):A}},2806(Zt,pe,l){"use strict";l.d(pe,{H:()=>Ee});var i=l(8750),d=l(941),v=l(9974);function T(V,ce=0){return(0,v.N)((be,ne)=>{ne.add(V.schedule(()=>be.subscribe(ne),ce))})}var O=l(1985),u=l(4761),L=l(8071),C=l(5225);function A(V,ce){if(!V)throw new Error("Iterable cannot be null");return new O.c(be=>{(0,C.N)(be,ce,()=>{const ne=V[Symbol.asyncIterator]();(0,C.N)(be,ce,()=>{ne.next().then(J=>{J.done?be.complete():be.next(J.value)})},0,!0)})})}var Pe=l(5055),le=l(9858),Ce=l(7441),Ae=l(5397),j=l(7953),W=l(591),G=l(5196);function Ee(V,ce){return ce?function xe(V,ce){if(null!=V){if((0,Pe.l)(V))return function w(V,ce){return(0,i.Tg)(V).pipe(T(ce),(0,d.Q)(ce))}(V,ce);if((0,Ce.X)(V))return function f(V,ce){return new O.c(be=>{let ne=0;return ce.schedule(function(){ne===V.length?be.complete():(be.next(V[ne++]),be.closed||this.schedule())})})}(V,ce);if((0,le.y)(V))return function e(V,ce){return(0,i.Tg)(V).pipe(T(ce),(0,d.Q)(ce))}(V,ce);if((0,j.T)(V))return A(V,ce);if((0,Ae.x)(V))return function B(V,ce){return new O.c(be=>{let ne;return(0,C.N)(be,ce,()=>{ne=V[u.l](),(0,C.N)(be,ce,()=>{let J,De;try{({value:J,done:De}=ne.next())}catch(Re){return void be.error(Re)}De?be.complete():be.next(J)},0,!0)}),()=>(0,L.T)(ne?.return)&&ne.return()})}(V,ce);if((0,G.U)(V))return function re(V,ce){return A((0,G.C)(V),ce)}(V,ce)}throw(0,W.L)(V)}(V,ce):(0,i.Tg)(V)}},3726(Zt,pe,l){"use strict";l.d(pe,{R:()=>L});var i=l(8750),d=l(1985),v=l(1397),T=l(7441),w=l(8071),e=l(6450);const O=["addListener","removeListener"],f=["addEventListener","removeEventListener"],u=["on","off"];function L(le,Ce,Ae,j){if((0,w.T)(Ae)&&(j=Ae,Ae=void 0),j)return L(le,Ce,Ae).pipe((0,e.I)(j));const[W,G]=function Pe(le){return(0,w.T)(le.addEventListener)&&(0,w.T)(le.removeEventListener)}(le)?f.map(re=>xe=>le[re](Ce,xe,Ae)):function B(le){return(0,w.T)(le.addListener)&&(0,w.T)(le.removeListener)}(le)?O.map(C(le,Ce)):function A(le){return(0,w.T)(le.on)&&(0,w.T)(le.off)}(le)?u.map(C(le,Ce)):[];if(!W&&(0,T.X)(le))return(0,v.Z)(re=>L(re,Ce,Ae))((0,i.Tg)(le));if(!W)throw new TypeError("Invalid event target");return new d.c(re=>{const xe=(...Ee)=>re.next(1G(xe)})}function C(le,Ce){return Ae=>j=>le[Ae](Ce,j)}},8750(Zt,pe,l){"use strict";l.d(pe,{Tg:()=>A});var i=l(1635),d=l(7441),v=l(9858),T=l(1985),w=l(5055),e=l(7953),O=l(591),f=l(5397),u=l(5196),L=l(8071),C=l(5334),B=l(3494);function A(re){if(re instanceof T.c)return re;if(null!=re){if((0,w.l)(re))return function Pe(re){return new T.c(xe=>{const Ee=re[B.s]();if((0,L.T)(Ee.subscribe))return Ee.subscribe(xe);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}(re);if((0,d.X)(re))return function le(re){return new T.c(xe=>{for(let Ee=0;Ee{re.then(Ee=>{xe.closed||(xe.next(Ee),xe.complete())},Ee=>xe.error(Ee)).then(null,C.m)})}(re);if((0,e.T)(re))return j(re);if((0,f.x)(re))return function Ae(re){return new T.c(xe=>{for(const Ee of re)if(xe.next(Ee),xe.closed)return;xe.complete()})}(re);if((0,u.U)(re))return function W(re){return j((0,u.C)(re))}(re)}throw(0,O.L)(re)}function j(re){return new T.c(xe=>{(function G(re,xe){var Ee,V,ce,be;return(0,i.sH)(this,void 0,void 0,function*(){try{for(Ee=(0,i.xN)(re);!(V=yield Ee.next()).done;)if(xe.next(V.value),xe.closed)return}catch(ne){ce={error:ne}}finally{try{V&&!V.done&&(be=Ee.return)&&(yield be.call(Ee))}finally{if(ce)throw ce.error}}xe.complete()})})(re,xe).catch(Ee=>xe.error(Ee))})}},7786(Zt,pe,l){"use strict";l.d(pe,{h:()=>e});var i=l(6365),d=l(8750),v=l(983),T=l(9326),w=l(2806);function e(...O){const f=(0,T.lI)(O),u=(0,T.R0)(O,1/0),L=O;return L.length?1===L.length?(0,d.Tg)(L[0]):(0,i.U)(u)((0,w.H)(L,f)):v.w}},7673(Zt,pe,l){"use strict";l.d(pe,{of:()=>v});var i=l(9326),d=l(2806);function v(...T){const w=(0,i.lI)(T);return(0,d.H)(T,w)}},8810(Zt,pe,l){"use strict";l.d(pe,{$:()=>v});var i=l(1985),d=l(8071);function v(T,w){const e=(0,d.T)(T)?T:()=>T,O=f=>f.error(e());return new i.c(w?f=>w.schedule(O,0,f):O)}},1807(Zt,pe,l){"use strict";l.d(pe,{O:()=>w});var i=l(1985),d=l(3236),v=l(9470),T=l(8211);function w(e=0,O,f=d.b){let u=-1;return null!=O&&((0,v.m)(O)?f=O:u=O),new i.c(L=>{let C=(0,T.v)(e)?+e-f.now():e;C<0&&(C=0);let B=0;return f.schedule(function(){L.closed||(L.next(B++),0<=u?this.schedule(void 0,u):L.complete())},C)})}},4360(Zt,pe,l){"use strict";l.d(pe,{H:()=>v,_:()=>d});var i=l(7707);function d(T,w,e,O,f){return new v(T,w,e,O,f)}class v extends i.vU{constructor(w,e,O,f,u,L){super(w),this.onFinalize=u,this.shouldUnsubscribe=L,this._next=e?function(C){try{e(C)}catch(B){w.error(B)}}:super._next,this._error=f?function(C){try{f(C)}catch(B){w.error(B)}finally{this.unsubscribe()}}:super._error,this._complete=O?function(){try{O()}catch(C){w.error(C)}finally{this.unsubscribe()}}:super._complete}unsubscribe(){var w;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){const{closed:e}=this;super.unsubscribe(),!e&&(null===(w=this.onFinalize)||void 0===w||w.call(this))}}}},3798(Zt,pe,l){"use strict";l.d(pe,{Z:()=>O});var i=l(3236),d=l(9974),v=l(8750),T=l(4360),e=l(1807);function O(f,u=i.E){return function w(f){return(0,d.N)((u,L)=>{let C=!1,B=null,A=null,Pe=!1;const le=()=>{if(A?.unsubscribe(),A=null,C){C=!1;const Ae=B;B=null,L.next(Ae)}Pe&&L.complete()},Ce=()=>{A=null,Pe&&L.complete()};u.subscribe((0,T._)(L,Ae=>{C=!0,B=Ae,A||(0,v.Tg)(f(Ae)).subscribe(A=(0,T._)(L,le,Ce))},()=>{Pe=!0,(!C||!A||A.closed)&&L.complete()}))})}(()=>(0,e.O)(f,u))}},9437(Zt,pe,l){"use strict";l.d(pe,{W:()=>T});var i=l(8750),d=l(4360),v=l(9974);function T(w){return(0,v.N)((e,O)=>{let L,f=null,u=!1;f=e.subscribe((0,d._)(O,void 0,void 0,C=>{L=(0,i.Tg)(w(C,T(w)(e))),f?(f.unsubscribe(),f=null,L.subscribe(O)):u=!0})),u&&(f.unsubscribe(),f=null,L.subscribe(O))})}},274(Zt,pe,l){"use strict";l.d(pe,{H:()=>v});var i=l(1397),d=l(8071);function v(T,w){return(0,d.T)(w)?(0,i.Z)(T,w,1):(0,i.Z)(T,1)}},152(Zt,pe,l){"use strict";l.d(pe,{B:()=>T});var i=l(3236),d=l(9974),v=l(4360);function T(w,e=i.E){return(0,d.N)((O,f)=>{let u=null,L=null,C=null;const B=()=>{if(u){u.unsubscribe(),u=null;const Pe=L;L=null,f.next(Pe)}};function A(){const Pe=C+w,le=e.now();if(le{L=Pe,C=e.now(),u||(u=e.schedule(A,w),f.add(u))},()=>{B(),f.complete()},void 0,()=>{L=u=null}))})}},9901(Zt,pe,l){"use strict";l.d(pe,{U:()=>v});var i=l(9974),d=l(4360);function v(T){return(0,i.N)((w,e)=>{let O=!1;w.subscribe((0,d._)(e,f=>{O=!0,e.next(f)},()=>{O||e.next(T),e.complete()}))})}},3294(Zt,pe,l){"use strict";l.d(pe,{F:()=>T});var i=l(3669),d=l(9974),v=l(4360);function T(e,O=i.D){return e=e??w,(0,d.N)((f,u)=>{let L,C=!0;f.subscribe((0,v._)(u,B=>{const A=O(B);(C||!e(L,A))&&(C=!1,L=A,u.next(B))}))})}function w(e,O){return e===O}},5964(Zt,pe,l){"use strict";l.d(pe,{p:()=>v});var i=l(9974),d=l(4360);function v(T,w){return(0,i.N)((e,O)=>{let f=0;e.subscribe((0,d._)(O,u=>T.call(w,u,f++)&&O.next(u)))})}},980(Zt,pe,l){"use strict";l.d(pe,{j:()=>d});var i=l(9974);function d(v){return(0,i.N)((T,w)=>{try{T.subscribe(w)}finally{w.add(v)}})}},1594(Zt,pe,l){"use strict";l.d(pe,{$:()=>O});var i=l(9350),d=l(5964),v=l(6697),T=l(9901),w=l(3774),e=l(3669);function O(f,u){const L=arguments.length>=2;return C=>C.pipe(f?(0,d.p)((B,A)=>f(B,A,C)):e.D,(0,v.s)(1),L?(0,T.U)(u):(0,w.v)(()=>new i.G))}},3557(Zt,pe,l){"use strict";l.d(pe,{w:()=>T});var i=l(9974),d=l(4360),v=l(5343);function T(){return(0,i.N)((w,e)=>{w.subscribe((0,d._)(e,v.l))})}},6354(Zt,pe,l){"use strict";l.d(pe,{T:()=>v});var i=l(9974),d=l(4360);function v(T,w){return(0,i.N)((e,O)=>{let f=0;e.subscribe((0,d._)(O,u=>{O.next(T.call(w,u,f++))}))})}},3703(Zt,pe,l){"use strict";l.d(pe,{u:()=>d});var i=l(6354);function d(v){return(0,i.T)(()=>v)}},6365(Zt,pe,l){"use strict";l.d(pe,{U:()=>v});var i=l(1397),d=l(3669);function v(T=1/0){return(0,i.Z)(d.D,T)}},1397(Zt,pe,l){"use strict";l.d(pe,{Z:()=>f});var i=l(6354),d=l(8750),v=l(9974),T=l(5225),w=l(4360),O=l(8071);function f(u,L,C=1/0){return(0,O.T)(L)?f((B,A)=>(0,i.T)((Pe,le)=>L(B,Pe,A,le))((0,d.Tg)(u(B,A))),C):("number"==typeof L&&(C=L),(0,v.N)((B,A)=>function e(u,L,C,B,A,Pe,le,Ce){const Ae=[];let j=0,W=0,G=!1;const re=()=>{G&&!Ae.length&&!j&&L.complete()},xe=V=>j{Pe&&L.next(V),j++;let ce=!1;(0,d.Tg)(C(V,W++)).subscribe((0,w._)(L,be=>{A?.(be),Pe?xe(be):L.next(be)},()=>{ce=!0},void 0,()=>{if(ce)try{for(j--;Ae.length&&jEe(be)):Ee(be)}re()}catch(be){L.error(be)}}))};return u.subscribe((0,w._)(L,xe,()=>{G=!0,re()})),()=>{Ce?.()}}(B,A,u,C)))}},941(Zt,pe,l){"use strict";l.d(pe,{Q:()=>T});var i=l(5225),d=l(9974),v=l(4360);function T(w,e=0){return(0,d.N)((O,f)=>{O.subscribe((0,v._)(f,u=>(0,i.N)(f,w,()=>f.next(u),e),()=>(0,i.N)(f,w,()=>f.complete(),e),u=>(0,i.N)(f,w,()=>f.error(u),e)))})}},9898(Zt,pe,l){"use strict";l.d(pe,{B:()=>v});var i=l(9974),d=l(4360);function v(){return(0,i.N)((T,w)=>{let e=null;T._refCount++;const O=(0,d._)(w,void 0,void 0,void 0,()=>{if(!T||T._refCount<=0||0<--T._refCount)return void(e=null);const f=T._connection,u=e;e=null,f&&(!u||f===u)&&f.unsubscribe(),w.unsubscribe()});T.subscribe(O),O.closed||(e=T.connect())})}},1943(Zt,pe,l){"use strict";l.d(pe,{S:()=>v});var i=l(9974),d=l(6649);function v(T,w){return(0,i.N)((0,d.S)(T,w,arguments.length>=2,!0))}},6649(Zt,pe,l){"use strict";l.d(pe,{S:()=>d});var i=l(4360);function d(v,T,w,e,O){return(f,u)=>{let L=w,C=T,B=0;f.subscribe((0,i._)(u,A=>{const Pe=B++;C=L?v(C,A,Pe):(L=!0,A),e&&u.next(C)},O&&(()=>{L&&u.next(C),u.complete()})))}}},7647(Zt,pe,l){"use strict";l.d(pe,{u:()=>w});var i=l(8750),d=l(1413),v=l(7707),T=l(9974);function w(O={}){const{connector:f=()=>new d.B,resetOnError:u=!0,resetOnComplete:L=!0,resetOnRefCountZero:C=!0}=O;return B=>{let A,Pe,le,Ce=0,Ae=!1,j=!1;const W=()=>{Pe?.unsubscribe(),Pe=void 0},G=()=>{W(),A=le=void 0,Ae=j=!1},re=()=>{const xe=A;G(),xe?.unsubscribe()};return(0,T.N)((xe,Ee)=>{Ce++,!j&&!Ae&&W();const V=le=le??f();Ee.add(()=>{Ce--,0===Ce&&!j&&!Ae&&(Pe=e(re,C))}),V.subscribe(Ee),!A&&Ce>0&&(A=new v.Ms({next:ce=>V.next(ce),error:ce=>{j=!0,W(),Pe=e(G,u,ce),V.error(ce)},complete:()=>{Ae=!0,W(),Pe=e(G,L),V.complete()}}),(0,i.Tg)(xe).subscribe(A))})(B)}}function e(O,f,...u){if(!0===f)return void O();if(!1===f)return;const L=new v.Ms({next:()=>{L.unsubscribe(),O()}});return(0,i.Tg)(f(...u)).subscribe(L)}},5245(Zt,pe,l){"use strict";l.d(pe,{i:()=>d});var i=l(5964);function d(v){return(0,i.p)((T,w)=>v<=w)}},9172(Zt,pe,l){"use strict";l.d(pe,{Z:()=>T});var i=l(8793),d=l(9326),v=l(9974);function T(...w){const e=(0,d.lI)(w);return(0,v.N)((O,f)=>{(e?(0,i.x)(w,O,e):(0,i.x)(w,O)).subscribe(f)})}},5558(Zt,pe,l){"use strict";l.d(pe,{n:()=>T});var i=l(8750),d=l(9974),v=l(4360);function T(w,e){return(0,d.N)((O,f)=>{let u=null,L=0,C=!1;const B=()=>C&&!u&&f.complete();O.subscribe((0,v._)(f,A=>{u?.unsubscribe();let Pe=0;const le=L++;(0,i.Tg)(w(A,le)).subscribe(u=(0,v._)(f,Ce=>f.next(e?e(A,Ce,le,Pe++):Ce),()=>{u=null,B()}))},()=>{C=!0,B()}))})}},6697(Zt,pe,l){"use strict";l.d(pe,{s:()=>T});var i=l(983),d=l(9974),v=l(4360);function T(w){return w<=0?()=>i.w:(0,d.N)((e,O)=>{let f=0;e.subscribe((0,v._)(O,u=>{++f<=w&&(O.next(u),w<=f&&O.complete())}))})}},6977(Zt,pe,l){"use strict";l.d(pe,{Q:()=>w});var i=l(9974),d=l(4360),v=l(8750),T=l(5343);function w(e){return(0,i.N)((O,f)=>{(0,v.Tg)(e).subscribe((0,d._)(f,()=>f.complete(),T.l)),!f.closed&&O.subscribe(f)})}},8141(Zt,pe,l){"use strict";l.d(pe,{M:()=>w});var i=l(8071),d=l(9974),v=l(4360),T=l(3669);function w(e,O,f){const u=(0,i.T)(e)||O||f?{next:e,error:O,complete:f}:e;return u?(0,d.N)((L,C)=>{var B;null===(B=u.subscribe)||void 0===B||B.call(u);let A=!0;L.subscribe((0,v._)(C,Pe=>{var le;null===(le=u.next)||void 0===le||le.call(u,Pe),C.next(Pe)},()=>{var Pe;A=!1,null===(Pe=u.complete)||void 0===Pe||Pe.call(u),C.complete()},Pe=>{var le;A=!1,null===(le=u.error)||void 0===le||le.call(u,Pe),C.error(Pe)},()=>{var Pe,le;A&&(null===(Pe=u.unsubscribe)||void 0===Pe||Pe.call(u)),null===(le=u.finalize)||void 0===le||le.call(u)}))}):T.D}},3774(Zt,pe,l){"use strict";l.d(pe,{v:()=>T});var i=l(9350),d=l(9974),v=l(4360);function T(e=w){return(0,d.N)((O,f)=>{let u=!1;O.subscribe((0,v._)(f,L=>{u=!0,f.next(L)},()=>u?f.complete():f.error(e())))})}function w(){return new i.G}},3993(Zt,pe,l){"use strict";l.d(pe,{E:()=>O});var i=l(9974),d=l(4360),v=l(8750),T=l(3669),w=l(5343),e=l(9326);function O(...f){const u=(0,e.ms)(f);return(0,i.N)((L,C)=>{const B=f.length,A=new Array(B);let Pe=f.map(()=>!1),le=!1;for(let Ce=0;Ce{A[Ce]=Ae,!le&&!Pe[Ce]&&(Pe[Ce]=!0,(le=Pe.every(T.D))&&(Pe=null))},w.l));L.subscribe((0,d._)(C,Ce=>{if(le){const Ae=[Ce,...A];C.next(u?u(...Ae):Ae)}}))})}},6780(Zt,pe,l){"use strict";l.d(pe,{R:()=>w});var i=l(8359);class d extends i.yU{constructor(O,f){super()}schedule(O,f=0){return this}}const v={setInterval(e,O,...f){const{delegate:u}=v;return u?.setInterval?u.setInterval(e,O,...f):setInterval(e,O,...f)},clearInterval(e){const{delegate:O}=v;return(O?.clearInterval||clearInterval)(e)},delegate:void 0};var T=l(7908);class w extends d{constructor(O,f){super(O,f),this.scheduler=O,this.work=f,this.pending=!1}schedule(O,f=0){var u;if(this.closed)return this;this.state=O;const L=this.id,C=this.scheduler;return null!=L&&(this.id=this.recycleAsyncId(C,L,f)),this.pending=!0,this.delay=f,this.id=null!==(u=this.id)&&void 0!==u?u:this.requestAsyncId(C,this.id,f),this}requestAsyncId(O,f,u=0){return v.setInterval(O.flush.bind(O,this),u)}recycleAsyncId(O,f,u=0){if(null!=u&&this.delay===u&&!1===this.pending)return f;null!=f&&v.clearInterval(f)}execute(O,f){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;const u=this._execute(O,f);if(u)return u;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(O,f){let L,u=!1;try{this.work(O)}catch(C){u=!0,L=C||new Error("Scheduled action threw falsy error")}if(u)return this.unsubscribe(),L}unsubscribe(){if(!this.closed){const{id:O,scheduler:f}=this,{actions:u}=f;this.work=this.state=this.scheduler=null,this.pending=!1,(0,T.o)(u,this),null!=O&&(this.id=this.recycleAsyncId(f,O,null)),this.delay=null,super.unsubscribe()}}}},9687(Zt,pe,l){"use strict";l.d(pe,{q:()=>v});var i=l(6129);class d{constructor(w,e=d.now){this.schedulerActionCtor=w,this.now=e}schedule(w,e=0,O){return new this.schedulerActionCtor(this,w).schedule(O,e)}}d.now=i.U.now;class v extends d{constructor(w,e=d.now){super(w,e),this.actions=[],this._active=!1}flush(w){const{actions:e}=this;if(this._active)return void e.push(w);let O;this._active=!0;do{if(O=w.execute(w.state,w.delay))break}while(w=e.shift());if(this._active=!1,O){for(;w=e.shift();)w.unsubscribe();throw O}}}},3236(Zt,pe,l){"use strict";l.d(pe,{E:()=>v,b:()=>T});var i=l(6780);const v=new(l(9687).q)(i.R),T=v},6129(Zt,pe,l){"use strict";l.d(pe,{U:()=>i});const i={now:()=>(i.delegate||Date).now(),delegate:void 0}},7242(Zt,pe,l){"use strict";l.d(pe,{T:()=>w});var i=l(6780),v=l(9687);const w=new class T extends v.q{}(class d extends i.R{constructor(f,u){super(f,u),this.scheduler=f,this.work=u}schedule(f,u=0){return u>0?super.schedule(f,u):(this.delay=u,this.state=f,this.scheduler.flush(this),this)}execute(f,u){return u>0||this.closed?super.execute(f,u):this._execute(f,u)}requestAsyncId(f,u,L=0){return null!=L&&L>0||null==L&&this.delay>0?super.requestAsyncId(f,u,L):(f.flush(this),0)}})},9270(Zt,pe,l){"use strict";l.d(pe,{f:()=>i});const i={setTimeout(d,v,...T){const{delegate:w}=i;return w?.setTimeout?w.setTimeout(d,v,...T):setTimeout(d,v,...T)},clearTimeout(d){const{delegate:v}=i;return(v?.clearTimeout||clearTimeout)(d)},delegate:void 0}},4761(Zt,pe,l){"use strict";l.d(pe,{l:()=>d});const d=function i(){return"function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator"}()},3494(Zt,pe,l){"use strict";l.d(pe,{s:()=>i});const i="function"==typeof Symbol&&Symbol.observable||"@@observable"},9350(Zt,pe,l){"use strict";l.d(pe,{G:()=>d});const d=(0,l(1853).L)(v=>function(){v(this),this.name="EmptyError",this.message="no elements in sequence"})},9326(Zt,pe,l){"use strict";l.d(pe,{R0:()=>e,lI:()=>w,ms:()=>T});var i=l(8071),d=l(9470);function v(O){return O[O.length-1]}function T(O){return(0,i.T)(v(O))?O.pop():void 0}function w(O){return(0,d.m)(v(O))?O.pop():void 0}function e(O,f){return"number"==typeof v(O)?O.pop():f}},3073(Zt,pe,l){"use strict";l.d(pe,{D:()=>w});const{isArray:i}=Array,{getPrototypeOf:d,prototype:v,keys:T}=Object;function w(O){if(1===O.length){const f=O[0];if(i(f))return{args:f,keys:null};if(function e(O){return O&&"object"==typeof O&&d(O)===v}(f)){const u=T(f);return{args:u.map(L=>f[L]),keys:u}}}return{args:O,keys:null}}},7908(Zt,pe,l){"use strict";function i(d,v){if(d){const T=d.indexOf(v);0<=T&&d.splice(T,1)}}l.d(pe,{o:()=>i})},1853(Zt,pe,l){"use strict";function i(d){const T=d(w=>{Error.call(w),w.stack=(new Error).stack});return T.prototype=Object.create(Error.prototype),T.prototype.constructor=T,T}l.d(pe,{L:()=>i})},8496(Zt,pe,l){"use strict";function i(d,v){return d.reduce((T,w,e)=>(T[w]=v[e],T),{})}l.d(pe,{e:()=>i})},9786(Zt,pe,l){"use strict";l.d(pe,{Y:()=>v,l:()=>T});var i=l(1026);let d=null;function v(w){if(i.$.useDeprecatedSynchronousErrorHandling){const e=!d;if(e&&(d={errorThrown:!1,error:null}),w(),e){const{errorThrown:O,error:f}=d;if(d=null,O)throw f}}else w()}function T(w){i.$.useDeprecatedSynchronousErrorHandling&&d&&(d.errorThrown=!0,d.error=w)}},5225(Zt,pe,l){"use strict";function i(d,v,T,w=0,e=!1){const O=v.schedule(function(){T(),e?d.add(this.schedule(null,w)):this.unsubscribe()},w);if(d.add(O),!e)return O}l.d(pe,{N:()=>i})},3669(Zt,pe,l){"use strict";function i(d){return d}l.d(pe,{D:()=>i})},7441(Zt,pe,l){"use strict";l.d(pe,{X:()=>i});const i=d=>d&&"number"==typeof d.length&&"function"!=typeof d},7953(Zt,pe,l){"use strict";l.d(pe,{T:()=>d});var i=l(8071);function d(v){return Symbol.asyncIterator&&(0,i.T)(v?.[Symbol.asyncIterator])}},8211(Zt,pe,l){"use strict";function i(d){return d instanceof Date&&!isNaN(d)}l.d(pe,{v:()=>i})},8071(Zt,pe,l){"use strict";function i(d){return"function"==typeof d}l.d(pe,{T:()=>i})},5055(Zt,pe,l){"use strict";l.d(pe,{l:()=>v});var i=l(3494),d=l(8071);function v(T){return(0,d.T)(T[i.s])}},5397(Zt,pe,l){"use strict";l.d(pe,{x:()=>v});var i=l(4761),d=l(8071);function v(T){return(0,d.T)(T?.[i.l])}},4402(Zt,pe,l){"use strict";l.d(pe,{A:()=>v});var i=l(1985),d=l(8071);function v(T){return!!T&&(T instanceof i.c||(0,d.T)(T.lift)&&(0,d.T)(T.subscribe))}},9858(Zt,pe,l){"use strict";l.d(pe,{y:()=>d});var i=l(8071);function d(v){return(0,i.T)(v?.then)}},5196(Zt,pe,l){"use strict";l.d(pe,{C:()=>v,U:()=>T});var i=l(1635),d=l(8071);function v(w){return(0,i.AQ)(this,arguments,function*(){const O=w.getReader();try{for(;;){const{value:f,done:u}=yield(0,i.N3)(O.read());if(u)return yield(0,i.N3)(void 0);yield yield(0,i.N3)(f)}}finally{O.releaseLock()}})}function T(w){return(0,d.T)(w?.getReader)}},9470(Zt,pe,l){"use strict";l.d(pe,{m:()=>d});var i=l(8071);function d(v){return v&&(0,i.T)(v.schedule)}},9974(Zt,pe,l){"use strict";l.d(pe,{N:()=>v,S:()=>d});var i=l(8071);function d(T){return(0,i.T)(T?.lift)}function v(T){return w=>{if(d(w))return w.lift(function(e){try{return T(e,this)}catch(O){this.error(O)}});throw new TypeError("Unable to lift unknown Observable type")}}},6450(Zt,pe,l){"use strict";l.d(pe,{I:()=>T});var i=l(6354);const{isArray:d}=Array;function T(w){return(0,i.T)(e=>function v(w,e){return d(e)?w(...e):w(e)}(w,e))}},5343(Zt,pe,l){"use strict";function i(){}l.d(pe,{l:()=>i})},1203(Zt,pe,l){"use strict";l.d(pe,{F:()=>d,m:()=>v});var i=l(3669);function d(...T){return v(T)}function v(T){return 0===T.length?i.D:1===T.length?T[0]:function(e){return T.reduce((O,f)=>f(O),e)}}},5334(Zt,pe,l){"use strict";l.d(pe,{m:()=>v});var i=l(1026),d=l(9270);function v(T){d.f.setTimeout(()=>{const{onUnhandledError:w}=i.$;if(!w)throw T;w(T)})}},591(Zt,pe,l){"use strict";function i(d){return new TypeError(`You provided ${null!==d&&"object"==typeof d?"an invalid object":`'${d}'`} where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`)}l.d(pe,{L:()=>i})},2852(Zt,pe,l){!function(i){"use strict";var d={};Zt.exports?(d.bytesToHex=l(4740).bytesToHex,d.convertString=l(820),Zt.exports=f):(d.bytesToHex=i.convertHex.bytesToHex,d.convertString=i.convertString,i.sha256=f);var v=[];!function(){function u(A){for(var Pe=Math.sqrt(A),le=2;le<=Pe;le++)if(!(A%le))return!1;return!0}function L(A){return 4294967296*(A-(0|A))|0}for(var C=2,B=0;B<64;)u(C)&&(v[B]=L(Math.pow(C,1/3)),B++),C++}();var T=function(u){for(var L=[],C=0,B=0;C>>5]|=u[C]<<24-B%32;return L},w=function(u){for(var L=[],C=0;C<32*u.length;C+=8)L.push(u[C>>>5]>>>24-C%32&255);return L},e=[],O=function(u,L,C){for(var B=u[0],A=u[1],Pe=u[2],le=u[3],Ce=u[4],Ae=u[5],j=u[6],W=u[7],G=0;G<64;G++){if(G<16)e[G]=0|L[C+G];else{var re=e[G-15],Ee=e[G-2];e[G]=((re<<25|re>>>7)^(re<<14|re>>>18)^re>>>3)+e[G-7]+((Ee<<15|Ee>>>17)^(Ee<<13|Ee>>>19)^Ee>>>10)+e[G-16]}var be=B&A^B&Pe^A&Pe,De=W+((Ce<<26|Ce>>>6)^(Ce<<21|Ce>>>11)^(Ce<<7|Ce>>>25))+(Ce&Ae^~Ce&j)+v[G]+e[G];W=j,j=Ae,Ae=Ce,Ce=le+De|0,le=Pe,Pe=A,A=B,B=De+(((B<<30|B>>>2)^(B<<19|B>>>13)^(B<<10|B>>>22))+be)|0}u[0]=u[0]+B|0,u[1]=u[1]+A|0,u[2]=u[2]+Pe|0,u[3]=u[3]+le|0,u[4]=u[4]+Ce|0,u[5]=u[5]+Ae|0,u[6]=u[6]+j|0,u[7]=u[7]+W|0};function f(u,L){u.constructor===String&&(u=d.convertString.UTF8.stringToBytes(u));var C=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],B=T(u),A=8*u.length;B[A>>5]|=128<<24-A%32,B[15+(A+64>>9<<4)]=A;for(var Pe=0;Pej,If:()=>i,K2:()=>e,Os:()=>w,P:()=>Pe,PZ:()=>Ae,hZ:()=>v,i0:()=>T,i7:()=>u,iF:()=>O,kY:()=>L,kp:()=>d,sf:()=>Ce,wk:()=>f});var i=function(W){return W[W.State=0]="State",W[W.Transition=1]="Transition",W[W.Sequence=2]="Sequence",W[W.Group=3]="Group",W[W.Animate=4]="Animate",W[W.Keyframes=5]="Keyframes",W[W.Style=6]="Style",W[W.Trigger=7]="Trigger",W[W.Reference=8]="Reference",W[W.AnimateChild=9]="AnimateChild",W[W.AnimateRef=10]="AnimateRef",W[W.Query=11]="Query",W[W.Stagger=12]="Stagger",W}(i||{});const d="*";function v(W,G){return{type:i.Trigger,name:W,definitions:G,options:{}}}function T(W,G=null){return{type:i.Animate,styles:G,timings:W}}function w(W,G=null){return{type:i.Group,steps:W,options:G}}function e(W,G=null){return{type:i.Sequence,steps:W,options:G}}function O(W){return{type:i.Style,styles:W,offset:null}}function f(W,G,re){return{type:i.State,name:W,styles:G,options:re}}function u(W){return{type:i.Keyframes,steps:W}}function L(W,G,re=null){return{type:i.Transition,expr:W,animation:G,options:re}}function Pe(W,G,re=null){return{type:i.Query,selector:W,animation:G,options:re}}class Ce{_onDoneFns=[];_onStartFns=[];_onDestroyFns=[];_originalOnDoneFns=[];_originalOnStartFns=[];_started=!1;_destroyed=!1;_finished=!1;_position=0;parentPlayer=null;totalTime;constructor(G=0,re=0){this.totalTime=G+re}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(G=>G()),this._onDoneFns=[])}onStart(G){this._originalOnStartFns.push(G),this._onStartFns.push(G)}onDone(G){this._originalOnDoneFns.push(G),this._onDoneFns.push(G)}onDestroy(G){this._onDestroyFns.push(G)}hasStarted(){return this._started}init(){}play(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}triggerMicrotask(){queueMicrotask(()=>this._onFinish())}_onStart(){this._onStartFns.forEach(G=>G()),this._onStartFns=[]}pause(){}restart(){}finish(){this._onFinish()}destroy(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach(G=>G()),this._onDestroyFns=[])}reset(){this._started=!1,this._finished=!1,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}setPosition(G){this._position=this.totalTime?G*this.totalTime:1}getPosition(){return this.totalTime?this._position/this.totalTime:1}triggerCallback(G){const re="start"==G?this._onStartFns:this._onDoneFns;re.forEach(xe=>xe()),re.length=0}}class Ae{_onDoneFns=[];_onStartFns=[];_finished=!1;_started=!1;_destroyed=!1;_onDestroyFns=[];parentPlayer=null;totalTime=0;players;constructor(G){this.players=G;let re=0,xe=0,Ee=0;const V=this.players.length;0==V?queueMicrotask(()=>this._onFinish()):this.players.forEach(ce=>{ce.onDone(()=>{++re==V&&this._onFinish()}),ce.onDestroy(()=>{++xe==V&&this._onDestroy()}),ce.onStart(()=>{++Ee==V&&this._onStart()})}),this.totalTime=this.players.reduce((ce,be)=>Math.max(ce,be.totalTime),0)}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(G=>G()),this._onDoneFns=[])}init(){this.players.forEach(G=>G.init())}onStart(G){this._onStartFns.push(G)}_onStart(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach(G=>G()),this._onStartFns=[])}onDone(G){this._onDoneFns.push(G)}onDestroy(G){this._onDestroyFns.push(G)}hasStarted(){return this._started}play(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach(G=>G.play())}pause(){this.players.forEach(G=>G.pause())}restart(){this.players.forEach(G=>G.restart())}finish(){this._onFinish(),this.players.forEach(G=>G.finish())}destroy(){this._onDestroy()}_onDestroy(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach(G=>G.destroy()),this._onDestroyFns.forEach(G=>G()),this._onDestroyFns=[])}reset(){this.players.forEach(G=>G.reset()),this._destroyed=!1,this._finished=!1,this._started=!1}setPosition(G){const re=G*this.totalTime;this.players.forEach(xe=>{const Ee=xe.totalTime?Math.min(1,re/xe.totalTime):1;xe.setPosition(Ee)})}getPosition(){const G=this.players.reduce((re,xe)=>null===re||xe.totalTime>re.totalTime?xe:re,null);return null!=G?G.getPosition():0}beforeDestroy(){this.players.forEach(G=>{G.beforeDestroy&&G.beforeDestroy()})}triggerCallback(G){const re="start"==G?this._onStartFns:this._onDoneFns;re.forEach(xe=>xe()),re.length=0}}const j="!"},7094(Zt,pe,l){"use strict";l.d(pe,{Ai:()=>ie,GX:()=>_e,Pd:()=>Vt,Q_:()=>Ke,Z7:()=>j,kB:()=>he,sp:()=>Xe});var f=l(2615),u=l(3664),L=l(7705),C=l(9842),B=l(4522),A=l(8968),Pe=l(9046),le=l(4330),Ce=l(2318);let j=(()=>{class St{_platform=(0,f.WQX)(C.O);constructor(){}isDisabled(nt){return nt.hasAttribute("disabled")}isVisible(nt){return function G(St){return!!(St.offsetWidth||St.offsetHeight||"function"==typeof St.getClientRects&&St.getClientRects().length)}(nt)&&"visible"===getComputedStyle(nt).visibility}isTabbable(nt){if(!this._platform.isBrowser)return!1;const ht=function W(St){try{return St.frameElement}catch{return null}}(function Re(St){return St.ownerDocument&&St.ownerDocument.defaultView||window}(nt));if(ht&&(-1===ne(ht)||!this.isVisible(ht)))return!1;let oe=nt.nodeName.toLowerCase(),Ye=ne(nt);return nt.hasAttribute("contenteditable")?-1!==Ye:!("iframe"===oe||"object"===oe||this._platform.WEBKIT&&this._platform.IOS&&!function J(St){let ot=St.nodeName.toLowerCase(),nt="input"===ot&&St.type;return"text"===nt||"password"===nt||"select"===ot||"textarea"===ot}(nt))&&("audio"===oe?!!nt.hasAttribute("controls")&&-1!==Ye:"video"===oe?-1!==Ye&&(null!==Ye||this._platform.FIREFOX||nt.hasAttribute("controls")):nt.tabIndex>=0)}isFocusable(nt,ht){return function De(St){return!function xe(St){return function V(St){return"input"==St.nodeName.toLowerCase()}(St)&&"hidden"==St.type}(St)&&(function re(St){let ot=St.nodeName.toLowerCase();return"input"===ot||"select"===ot||"button"===ot||"textarea"===ot}(St)||function Ee(St){return function ce(St){return"a"==St.nodeName.toLowerCase()}(St)&&St.hasAttribute("href")}(St)||St.hasAttribute("contenteditable")||be(St))}(nt)&&!this.isDisabled(nt)&&(ht?.ignoreVisibility||this.isVisible(nt))}static \u0275fac=function(ht){return new(ht||St)};static \u0275prov=f.jDH({token:St,factory:St.\u0275fac,providedIn:"root"})}return St})();function be(St){if(!St.hasAttribute("tabindex")||void 0===St.tabIndex)return!1;let ot=St.getAttribute("tabindex");return!(!ot||isNaN(parseInt(ot,10)))}function ne(St){if(!be(St))return null;const ot=parseInt(St.getAttribute("tabindex")||"",10);return isNaN(ot)?-1:ot}class Xe{_element;_checker;_ngZone;_document;_injector;_startAnchor;_endAnchor;_hasAttached=!1;startAnchorListener=()=>this.focusLastTabbableElement();endAnchorListener=()=>this.focusFirstTabbableElement();get enabled(){return this._enabled}set enabled(ot){this._enabled=ot,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(ot,this._startAnchor),this._toggleAnchorTabIndex(ot,this._endAnchor))}_enabled=!0;constructor(ot,nt,ht,oe,Ye=!1,fe){this._element=ot,this._checker=nt,this._ngZone=ht,this._document=oe,this._injector=fe,Ye||this.attachAnchors()}destroy(){const ot=this._startAnchor,nt=this._endAnchor;ot&&(ot.removeEventListener("focus",this.startAnchorListener),ot.remove()),nt&&(nt.removeEventListener("focus",this.endAnchorListener),nt.remove()),this._startAnchor=this._endAnchor=null,this._hasAttached=!1}attachAnchors(){return!!this._hasAttached||(this._ngZone.runOutsideAngular(()=>{this._startAnchor||(this._startAnchor=this._createAnchor(),this._startAnchor.addEventListener("focus",this.startAnchorListener)),this._endAnchor||(this._endAnchor=this._createAnchor(),this._endAnchor.addEventListener("focus",this.endAnchorListener))}),this._element.parentNode&&(this._element.parentNode.insertBefore(this._startAnchor,this._element),this._element.parentNode.insertBefore(this._endAnchor,this._element.nextSibling),this._hasAttached=!0),this._hasAttached)}focusInitialElementWhenReady(ot){return new Promise(nt=>{this._executeOnStable(()=>nt(this.focusInitialElement(ot)))})}focusFirstTabbableElementWhenReady(ot){return new Promise(nt=>{this._executeOnStable(()=>nt(this.focusFirstTabbableElement(ot)))})}focusLastTabbableElementWhenReady(ot){return new Promise(nt=>{this._executeOnStable(()=>nt(this.focusLastTabbableElement(ot)))})}_getRegionBoundary(ot){const nt=this._element.querySelectorAll(`[cdk-focus-region-${ot}], [cdkFocusRegion${ot}], [cdk-focus-${ot}]`);return"start"==ot?nt.length?nt[0]:this._getFirstTabbableElement(this._element):nt.length?nt[nt.length-1]:this._getLastTabbableElement(this._element)}focusInitialElement(ot){const nt=this._element.querySelector("[cdk-focus-initial], [cdkFocusInitial]");if(nt){if(!this._checker.isFocusable(nt)){const ht=this._getFirstTabbableElement(nt);return ht?.focus(ot),!!ht}return nt.focus(ot),!0}return this.focusFirstTabbableElement(ot)}focusFirstTabbableElement(ot){const nt=this._getRegionBoundary("start");return nt&&nt.focus(ot),!!nt}focusLastTabbableElement(ot){const nt=this._getRegionBoundary("end");return nt&&nt.focus(ot),!!nt}hasAttached(){return this._hasAttached}_getFirstTabbableElement(ot){if(this._checker.isFocusable(ot)&&this._checker.isTabbable(ot))return ot;const nt=ot.children;for(let ht=0;ht=0;ht--){const oe=nt[ht].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(nt[ht]):null;if(oe)return oe}return null}_createAnchor(){const ot=this._document.createElement("div");return this._toggleAnchorTabIndex(this._enabled,ot),ot.classList.add("cdk-visually-hidden"),ot.classList.add("cdk-focus-trap-anchor"),ot.setAttribute("aria-hidden","true"),ot}_toggleAnchorTabIndex(ot,nt){ot?nt.setAttribute("tabindex","0"):nt.removeAttribute("tabindex")}toggleAnchors(ot){this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(ot,this._startAnchor),this._toggleAnchorTabIndex(ot,this._endAnchor))}_executeOnStable(ot){this._injector?(0,u.mal)(ot,{injector:this._injector}):setTimeout(ot)}}let _e=(()=>{class St{_checker=(0,f.WQX)(j);_ngZone=(0,f.WQX)(u.SKi);_document=(0,f.WQX)(f.qQL);_injector=(0,f.WQX)(f.zZn);constructor(){(0,f.WQX)(A.l).load(Pe.Y)}create(nt,ht=!1){return new Xe(nt,this._checker,this._ngZone,this._document,ht,this._injector)}static \u0275fac=function(ht){return new(ht||St)};static \u0275prov=f.jDH({token:St,factory:St.\u0275fac,providedIn:"root"})}return St})(),he=(()=>{class St{_elementRef=(0,f.WQX)(u.aKT);_focusTrapFactory=(0,f.WQX)(_e);focusTrap;_previouslyFocusedElement=null;get enabled(){return this.focusTrap?.enabled||!1}set enabled(nt){this.focusTrap&&(this.focusTrap.enabled=nt)}autoCapture;constructor(){(0,f.WQX)(C.O).isBrowser&&(this.focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement,!0))}ngOnDestroy(){this.focusTrap?.destroy(),this._previouslyFocusedElement&&(this._previouslyFocusedElement.focus(),this._previouslyFocusedElement=null)}ngAfterContentInit(){this.focusTrap?.attachAnchors(),this.autoCapture&&this._captureFocus()}ngDoCheck(){this.focusTrap&&!this.focusTrap.hasAttached()&&this.focusTrap.attachAnchors()}ngOnChanges(nt){const ht=nt.autoCapture;ht&&!ht.firstChange&&this.autoCapture&&this.focusTrap?.hasAttached()&&this._captureFocus()}_captureFocus(){this._previouslyFocusedElement=(0,B.vc)(),this.focusTrap?.focusInitialElementWhenReady()}static \u0275fac=function(ht){return new(ht||St)};static \u0275dir=u.FsC({type:St,selectors:[["","cdkTrapFocus",""]],inputs:{enabled:[2,"cdkTrapFocus","enabled",L.L39],autoCapture:[2,"cdkTrapFocusAutoCapture","autoCapture",L.L39]},exportAs:["cdkTrapFocus"],features:[u.OA$]})}return St})();const Dt=new f.nKC("liveAnnouncerElement",{providedIn:"root",factory:function lt(){return null}}),Le=new f.nKC("LIVE_ANNOUNCER_DEFAULT_OPTIONS");let te=0,ie=(()=>{class St{_ngZone=(0,f.WQX)(u.SKi);_defaultOptions=(0,f.WQX)(Le,{optional:!0});_liveElement;_document=(0,f.WQX)(f.qQL);_previousTimeout;_currentPromise;_currentResolve;constructor(){const nt=(0,f.WQX)(Dt,{optional:!0});this._liveElement=nt||this._createLiveElement()}announce(nt,...ht){const oe=this._defaultOptions;let Ye,fe;return 1===ht.length&&"number"==typeof ht[0]?fe=ht[0]:[Ye,fe]=ht,this.clear(),clearTimeout(this._previousTimeout),Ye||(Ye=oe&&oe.politeness?oe.politeness:"polite"),null==fe&&oe&&(fe=oe.duration),this._liveElement.setAttribute("aria-live",Ye),this._liveElement.id&&this._exposeAnnouncerToModals(this._liveElement.id),this._ngZone.runOutsideAngular(()=>(this._currentPromise||(this._currentPromise=new Promise(Qe=>this._currentResolve=Qe)),clearTimeout(this._previousTimeout),this._previousTimeout=setTimeout(()=>{this._liveElement.textContent=nt,"number"==typeof fe&&(this._previousTimeout=setTimeout(()=>this.clear(),fe)),this._currentResolve?.(),this._currentPromise=this._currentResolve=void 0},100),this._currentPromise))}clear(){this._liveElement&&(this._liveElement.textContent="")}ngOnDestroy(){clearTimeout(this._previousTimeout),this._liveElement?.remove(),this._liveElement=null,this._currentResolve?.(),this._currentPromise=this._currentResolve=void 0}_createLiveElement(){const nt="cdk-live-announcer-element",ht=this._document.getElementsByClassName(nt),oe=this._document.createElement("div");for(let Ye=0;Ye .cdk-overlay-container [aria-modal="true"]');for(let oe=0;oe{class St{_platform=(0,f.WQX)(C.O);_hasCheckedHighContrastMode;_document=(0,f.WQX)(f.qQL);_breakpointSubscription;constructor(){this._breakpointSubscription=(0,f.WQX)(le.Q).observe("(forced-colors: active)").subscribe(()=>{this._hasCheckedHighContrastMode&&(this._hasCheckedHighContrastMode=!1,this._applyBodyHighContrastModeCssClasses())})}getHighContrastMode(){if(!this._platform.isBrowser)return F.NONE;const nt=this._document.createElement("div");nt.style.backgroundColor="rgb(1,2,3)",nt.style.position="absolute",this._document.body.appendChild(nt);const ht=this._document.defaultView||window,oe=ht&&ht.getComputedStyle?ht.getComputedStyle(nt):null,Ye=(oe&&oe.backgroundColor||"").replace(/ /g,"");switch(nt.remove(),Ye){case"rgb(0,0,0)":case"rgb(45,50,54)":case"rgb(32,32,32)":return F.WHITE_ON_BLACK;case"rgb(255,255,255)":case"rgb(255,250,239)":return F.BLACK_ON_WHITE}return F.NONE}ngOnDestroy(){this._breakpointSubscription.unsubscribe()}_applyBodyHighContrastModeCssClasses(){if(!this._hasCheckedHighContrastMode&&this._platform.isBrowser&&this._document.body){const nt=this._document.body.classList;nt.remove($,ve,H),this._hasCheckedHighContrastMode=!0;const ht=this.getHighContrastMode();ht===F.BLACK_ON_WHITE?nt.add($,ve):ht===F.WHITE_ON_BLACK&&nt.add($,H)}}static \u0275fac=function(ht){return new(ht||St)};static \u0275prov=f.jDH({token:St,factory:St.\u0275fac,providedIn:"root"})}return St})(),Vt=(()=>{class St{constructor(){(0,f.WQX)(Ke)._applyBodyHighContrastModeCssClasses()}static \u0275fac=function(ht){return new(ht||St)};static \u0275mod=u.$C({type:St});static \u0275inj=f.G2t({imports:[Ce.w5]})}return St})()},8617(Zt,pe,l){"use strict";l.d(pe,{Ae:()=>Ae,px:()=>Ce,vr:()=>Ee}),l(7094);var f=l(2615),u=l(3664),L=l(9842),C=l(8968),B=l(9046);function Ce(Dt,lt,Le){const te=j(Dt,lt);Le=Le.trim(),!te.some(ie=>ie.trim()===Le)&&(te.push(Le),Dt.setAttribute(lt,te.join(" ")))}function Ae(Dt,lt,Le){const te=j(Dt,lt);Le=Le.trim();const ie=te.filter(P=>P!==Le);ie.length?Dt.setAttribute(lt,ie.join(" ")):Dt.removeAttribute(lt)}function j(Dt,lt){return Dt.getAttribute(lt)?.match(/\S+/g)??[]}l(1413),l(4125);const G="cdk-describedby-message",re="cdk-describedby-host";let xe=0,Ee=(()=>{class Dt{_platform=(0,f.WQX)(L.O);_document=(0,f.WQX)(f.qQL);_messageRegistry=new Map;_messagesContainer=null;_id=""+xe++;constructor(){(0,f.WQX)(C.l).load(B.Y),this._id=(0,f.WQX)(u.sZ2)+"-"+xe++}describe(Le,te,ie){if(!this._canBeDescribed(Le,te))return;const P=V(te,ie);"string"!=typeof te?(ce(te,this._id),this._messageRegistry.set(P,{messageElement:te,referenceCount:0})):this._messageRegistry.has(P)||this._createMessageElement(te,ie),this._isElementDescribedByMessage(Le,P)||this._addMessageReference(Le,P)}removeDescription(Le,te,ie){if(!te||!this._isElementNode(Le))return;const P=V(te,ie);if(this._isElementDescribedByMessage(Le,P)&&this._removeMessageReference(Le,P),"string"==typeof te){const F=this._messageRegistry.get(P);F&&0===F.referenceCount&&this._deleteMessageElement(P)}0===this._messagesContainer?.childNodes.length&&(this._messagesContainer.remove(),this._messagesContainer=null)}ngOnDestroy(){const Le=this._document.querySelectorAll(`[${re}="${this._id}"]`);for(let te=0;te0!=ie.indexOf(G));Le.setAttribute("aria-describedby",te.join(" "))}_addMessageReference(Le,te){const ie=this._messageRegistry.get(te);Ce(Le,"aria-describedby",ie.messageElement.id),Le.setAttribute(re,this._id),ie.referenceCount++}_removeMessageReference(Le,te){const ie=this._messageRegistry.get(te);ie.referenceCount--,Ae(Le,"aria-describedby",ie.messageElement.id),Le.removeAttribute(re)}_isElementDescribedByMessage(Le,te){const ie=j(Le,"aria-describedby"),P=this._messageRegistry.get(te),F=P&&P.messageElement.id;return!!F&&-1!=ie.indexOf(F)}_canBeDescribed(Le,te){if(!this._isElementNode(Le))return!1;if(te&&"object"==typeof te)return!0;const ie=null==te?"":`${te}`.trim(),P=Le.getAttribute("aria-label");return!(!ie||P&&P.trim()===ie)}_isElementNode(Le){return Le.nodeType===this._document.ELEMENT_NODE}static \u0275fac=function(te){return new(te||Dt)};static \u0275prov=f.jDH({token:Dt,factory:Dt.\u0275fac,providedIn:"root"})}return Dt})();function V(Dt,lt){return"string"==typeof Dt?`${lt||""}/${Dt}`:Dt}function ce(Dt,lt){Dt.id||(Dt.id=`${G}-${lt}-${xe++}`)}},9090(Zt,pe,l){"use strict";l.d(pe,{A:()=>d});var i=l(2593);class d extends i.l{setActiveItem(T){this.activeItem&&this.activeItem.setInactiveStyles(),super.setActiveItem(T),this.activeItem&&this.activeItem.setActiveStyles()}}},408(Zt,pe,l){"use strict";function i(d){return Array.isArray(d)?d:[d]}l.d(pe,{F:()=>i})},8203(Zt,pe,l){"use strict";l.d(pe,{jI:()=>u});var e=l(2615),O=l(3664);let u=(()=>{class L{static \u0275fac=function(A){return new(A||L)};static \u0275mod=O.$C({type:L});static \u0275inj=e.G2t({})}return L})()},4330(Zt,pe,l){"use strict";l.d(pe,{D:()=>Ae,Q:()=>G});var i=l(2615),d=l(3664),v=l(1985),T=l(1413),w=l(4572),e=l(8793),O=l(152),f=l(6354),u=l(5245),L=l(9172),C=l(6697),B=l(6977),A=l(9842),Pe=l(408);const le=new Set;let Ce,Ae=(()=>{class xe{_platform=(0,i.WQX)(A.O);_nonce=(0,i.WQX)(d.BIS,{optional:!0});_matchMedia;constructor(){this._matchMedia=this._platform.isBrowser&&window.matchMedia?window.matchMedia.bind(window):W}matchMedia(V){return(this._platform.WEBKIT||this._platform.BLINK)&&function j(xe,Ee){if(!le.has(xe))try{Ce||(Ce=document.createElement("style"),Ee&&Ce.setAttribute("nonce",Ee),Ce.setAttribute("type","text/css"),document.head.appendChild(Ce)),Ce.sheet&&(Ce.sheet.insertRule(`@media ${xe} {body{ }}`,0),le.add(xe))}catch(V){console.error(V)}}(V,this._nonce),this._matchMedia(V)}static \u0275fac=function(ce){return new(ce||xe)};static \u0275prov=i.jDH({token:xe,factory:xe.\u0275fac,providedIn:"root"})}return xe})();function W(xe){return{matches:"all"===xe||""===xe,media:xe,addListener:()=>{},removeListener:()=>{}}}let G=(()=>{class xe{_mediaMatcher=(0,i.WQX)(Ae);_zone=(0,i.WQX)(d.SKi);_queries=new Map;_destroySubject=new T.B;constructor(){}ngOnDestroy(){this._destroySubject.next(),this._destroySubject.complete()}isMatched(V){return re((0,Pe.F)(V)).some(be=>this._registerQuery(be).mql.matches)}observe(V){const be=re((0,Pe.F)(V)).map(J=>this._registerQuery(J).observable);let ne=(0,w.z)(be);return ne=(0,e.x)(ne.pipe((0,C.s)(1)),ne.pipe((0,u.i)(1),(0,O.B)(0))),ne.pipe((0,f.T)(J=>{const De={matches:!1,breakpoints:{}};return J.forEach(({matches:Re,query:Xe})=>{De.matches=De.matches||Re,De.breakpoints[Xe]=Re}),De}))}_registerQuery(V){if(this._queries.has(V))return this._queries.get(V);const ce=this._mediaMatcher.matchMedia(V),ne={observable:new v.c(J=>{const De=Re=>this._zone.run(()=>J.next(Re));return ce.addListener(De),()=>{ce.removeListener(De)}}).pipe((0,L.Z)(ce),(0,f.T)(({matches:J})=>({query:V,matches:J})),(0,B.Q)(this._destroySubject)),mql:ce};return this._queries.set(V,ne),ne}static \u0275fac=function(ce){return new(ce||xe)};static \u0275prov=i.jDH({token:xe,factory:xe.\u0275fac,providedIn:"root"})}return xe})();function re(xe){return xe.map(Ee=>Ee.split(",")).reduce((Ee,V)=>Ee.concat(V)).map(Ee=>Ee.trim())}},4085(Zt,pe,l){"use strict";function i(v){return null!=v&&"false"!=`${v}`}function d(v,T=/\s+/){const w=[];if(null!=v){const e=Array.isArray(v)?v:`${v}`.split(T);for(const O of e){const f=`${O}`.trim();f&&w.push(f)}}return w}l.d(pe,{cc:()=>d,he:()=>i})},8045(Zt,pe,l){"use strict";l.d(pe,{x:()=>v});var i=l(4402),d=l(7673);function v(T){return(0,i.A)(T)?T:(0,d.of)(T)}},4117(Zt,pe,l){"use strict";l.d(pe,{q:()=>d,y:()=>v});var i=l(17);class d{}function v(T){return T&&"function"==typeof T.connect&&!(T instanceof i.G)}},1577(Zt,pe,l){"use strict";l.d(pe,{dS:()=>O});var i=l(2615),d=l(3664);const v=new i.nKC("cdk-dir-doc",{providedIn:"root",factory:function T(){return(0,i.WQX)(i.qQL)}}),w=/^(ar|ckb|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Adlm|Arab|Hebr|Nkoo|Rohg|Thaa))(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)/i;let O=(()=>{class f{get value(){return this.valueSignal()}valueSignal=(0,i.vPA)("ltr");change=new d.bkB;constructor(){const L=(0,i.WQX)(v,{optional:!0});L&&this.valueSignal.set(function e(f){const u=f?.toLowerCase()||"";return"auto"===u&&typeof navigator<"u"&&navigator?.language?w.test(navigator.language)?"rtl":"ltr":"rtl"===u?"rtl":"ltr"}((L.body?L.body.dir:null)||(L.documentElement?L.documentElement.dir:null)||"ltr"))}ngOnDestroy(){this.change.complete()}static \u0275fac=function(C){return new(C||f)};static \u0275prov=i.jDH({token:f,factory:f.\u0275fac,providedIn:"root"})}return f})()},7847(Zt,pe,l){"use strict";l.d(pe,{OE:()=>d,i8:()=>T,o1:()=>v});var i=l(3664);function d(w,e=0){return v(w)?Number(w):2===arguments.length?e:0}function v(w){return!isNaN(parseFloat(w))&&!isNaN(Number(w))}function T(w){return w instanceof i.aKT?w.nativeElement:w}},5735(Zt,pe,l){"use strict";function i(v){return 0===v.buttons||0===v.detail}function d(v){const T=v.touches&&v.touches[0]||v.changedTouches&&v.changedTouches[0];return!(!T||-1!==T.identifier||null!=T.radiusX&&1!==T.radiusX||null!=T.radiusY&&1!==T.radiusY)}l.d(pe,{_:()=>i,w:()=>d})},4123(Zt,pe,l){"use strict";l.d(pe,{B:()=>d});var i=l(2593);class d extends i.l{_origin="program";setFocusOrigin(T){return this._origin=T,this}setActiveItem(T){super.setActiveItem(T),this.activeItem&&this.activeItem.focus(this._origin)}}},6838(Zt,pe,l){"use strict";l.d(pe,{FN:()=>Ee,vR:()=>V});var i=l(2615),d=l(3664),v=l(1413),T=l(4412),w=l(7673),e=l(3294),O=l(5245),f=l(6977),u=l(5735),L=l(438),C=l(4522),B=l(9842),A=l(3300),Pe=l(7847);const le=new i.nKC("cdk-input-modality-detector-options"),Ce={ignoreKeys:[L.A$,L.W3,L.eg,L.Ge,L.FX]},j={passive:!0,capture:!0};let W=(()=>{class ce{_platform=(0,i.WQX)(B.O);_listenerCleanups;modalityDetected;modalityChanged;get mostRecentModality(){return this._modality.value}_mostRecentTarget=null;_modality=new T.t(null);_options;_lastTouchMs=0;_onKeydown=ne=>{this._options?.ignoreKeys?.some(J=>J===ne.keyCode)||(this._modality.next("keyboard"),this._mostRecentTarget=(0,C.Fb)(ne))};_onMousedown=ne=>{Date.now()-this._lastTouchMs<650||(this._modality.next((0,u._)(ne)?"keyboard":"mouse"),this._mostRecentTarget=(0,C.Fb)(ne))};_onTouchstart=ne=>{(0,u.w)(ne)?this._modality.next("keyboard"):(this._lastTouchMs=Date.now(),this._modality.next("touch"),this._mostRecentTarget=(0,C.Fb)(ne))};constructor(){const ne=(0,i.WQX)(d.SKi),J=(0,i.WQX)(i.qQL),De=(0,i.WQX)(le,{optional:!0});if(this._options={...Ce,...De},this.modalityDetected=this._modality.pipe((0,O.i)(1)),this.modalityChanged=this.modalityDetected.pipe((0,e.F)()),this._platform.isBrowser){const Re=(0,i.WQX)(d._9s).createRenderer(null,null);this._listenerCleanups=ne.runOutsideAngular(()=>[Re.listen(J,"keydown",this._onKeydown,j),Re.listen(J,"mousedown",this._onMousedown,j),Re.listen(J,"touchstart",this._onTouchstart,j)])}}ngOnDestroy(){this._modality.complete(),this._listenerCleanups?.forEach(ne=>ne())}static \u0275fac=function(J){return new(J||ce)};static \u0275prov=i.jDH({token:ce,factory:ce.\u0275fac,providedIn:"root"})}return ce})();var G=function(ce){return ce[ce.IMMEDIATE=0]="IMMEDIATE",ce[ce.EVENTUAL=1]="EVENTUAL",ce}(G||{});const re=new i.nKC("cdk-focus-monitor-default-options"),xe=(0,A.B)({passive:!0,capture:!0});let Ee=(()=>{class ce{_ngZone=(0,i.WQX)(d.SKi);_platform=(0,i.WQX)(B.O);_inputModalityDetector=(0,i.WQX)(W);_origin=null;_lastFocusOrigin;_windowFocused=!1;_windowFocusTimeoutId;_originTimeoutId;_originFromTouchInteraction=!1;_elementInfo=new Map;_monitoredElementCount=0;_rootNodeFocusListenerCount=new Map;_detectionMode;_windowFocusListener=()=>{this._windowFocused=!0,this._windowFocusTimeoutId=setTimeout(()=>this._windowFocused=!1)};_document=(0,i.WQX)(i.qQL);_stopInputModalityDetector=new v.B;constructor(){const ne=(0,i.WQX)(re,{optional:!0});this._detectionMode=ne?.detectionMode||G.IMMEDIATE}_rootNodeFocusAndBlurListener=ne=>{for(let De=(0,C.Fb)(ne);De;De=De.parentElement)"focus"===ne.type?this._onFocus(ne,De):this._onBlur(ne,De)};monitor(ne,J=!1){const De=(0,Pe.i8)(ne);if(!this._platform.isBrowser||1!==De.nodeType)return(0,w.of)();const Re=(0,C.KT)(De)||this._document,Xe=this._elementInfo.get(De);if(Xe)return J&&(Xe.checkChildren=!0),Xe.subject;const _e={checkChildren:J,subject:new v.B,rootNode:Re};return this._elementInfo.set(De,_e),this._registerGlobalListeners(_e),_e.subject}stopMonitoring(ne){const J=(0,Pe.i8)(ne),De=this._elementInfo.get(J);De&&(De.subject.complete(),this._setClasses(J),this._elementInfo.delete(J),this._removeGlobalListeners(De))}focusVia(ne,J,De){const Re=(0,Pe.i8)(ne);Re===this._document.activeElement?this._getClosestElementsInfo(Re).forEach(([_e,he])=>this._originChanged(_e,J,he)):(this._setOrigin(J),"function"==typeof Re.focus&&Re.focus(De))}ngOnDestroy(){this._elementInfo.forEach((ne,J)=>this.stopMonitoring(J))}_getWindow(){return this._document.defaultView||window}_getFocusOrigin(ne){return this._origin?this._originFromTouchInteraction?this._shouldBeAttributedToTouch(ne)?"touch":"program":this._origin:this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:ne&&this._isLastInteractionFromInputLabel(ne)?"mouse":"program"}_shouldBeAttributedToTouch(ne){return this._detectionMode===G.EVENTUAL||!!ne?.contains(this._inputModalityDetector._mostRecentTarget)}_setClasses(ne,J){ne.classList.toggle("cdk-focused",!!J),ne.classList.toggle("cdk-touch-focused","touch"===J),ne.classList.toggle("cdk-keyboard-focused","keyboard"===J),ne.classList.toggle("cdk-mouse-focused","mouse"===J),ne.classList.toggle("cdk-program-focused","program"===J)}_setOrigin(ne,J=!1){this._ngZone.runOutsideAngular(()=>{this._origin=ne,this._originFromTouchInteraction="touch"===ne&&J,this._detectionMode===G.IMMEDIATE&&(clearTimeout(this._originTimeoutId),this._originTimeoutId=setTimeout(()=>this._origin=null,this._originFromTouchInteraction?650:1))})}_onFocus(ne,J){const De=this._elementInfo.get(J),Re=(0,C.Fb)(ne);!De||!De.checkChildren&&J!==Re||this._originChanged(J,this._getFocusOrigin(Re),De)}_onBlur(ne,J){const De=this._elementInfo.get(J);!De||De.checkChildren&&ne.relatedTarget instanceof Node&&J.contains(ne.relatedTarget)||(this._setClasses(J),this._emitOrigin(De,null))}_emitOrigin(ne,J){ne.subject.observers.length&&this._ngZone.run(()=>ne.subject.next(J))}_registerGlobalListeners(ne){if(!this._platform.isBrowser)return;const J=ne.rootNode,De=this._rootNodeFocusListenerCount.get(J)||0;De||this._ngZone.runOutsideAngular(()=>{J.addEventListener("focus",this._rootNodeFocusAndBlurListener,xe),J.addEventListener("blur",this._rootNodeFocusAndBlurListener,xe)}),this._rootNodeFocusListenerCount.set(J,De+1),1===++this._monitoredElementCount&&(this._ngZone.runOutsideAngular(()=>{this._getWindow().addEventListener("focus",this._windowFocusListener)}),this._inputModalityDetector.modalityDetected.pipe((0,f.Q)(this._stopInputModalityDetector)).subscribe(Re=>{this._setOrigin(Re,!0)}))}_removeGlobalListeners(ne){const J=ne.rootNode;if(this._rootNodeFocusListenerCount.has(J)){const De=this._rootNodeFocusListenerCount.get(J);De>1?this._rootNodeFocusListenerCount.set(J,De-1):(J.removeEventListener("focus",this._rootNodeFocusAndBlurListener,xe),J.removeEventListener("blur",this._rootNodeFocusAndBlurListener,xe),this._rootNodeFocusListenerCount.delete(J))}--this._monitoredElementCount||(this._getWindow().removeEventListener("focus",this._windowFocusListener),this._stopInputModalityDetector.next(),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._originTimeoutId))}_originChanged(ne,J,De){this._setClasses(ne,J),this._emitOrigin(De,J),this._lastFocusOrigin=J}_getClosestElementsInfo(ne){const J=[];return this._elementInfo.forEach((De,Re)=>{(Re===ne||De.checkChildren&&Re.contains(ne))&&J.push([Re,De])}),J}_isLastInteractionFromInputLabel(ne){const{_mostRecentTarget:J,mostRecentModality:De}=this._inputModalityDetector;if("mouse"!==De||!J||J===ne||"INPUT"!==ne.nodeName&&"TEXTAREA"!==ne.nodeName||ne.disabled)return!1;const Re=ne.labels;if(Re)for(let Xe=0;Xe{class ce{_elementRef=(0,i.WQX)(d.aKT);_focusMonitor=(0,i.WQX)(Ee);_monitorSubscription;_focusOrigin=null;cdkFocusChange=new d.bkB;constructor(){}get focusOrigin(){return this._focusOrigin}ngAfterViewInit(){const ne=this._elementRef.nativeElement;this._monitorSubscription=this._focusMonitor.monitor(ne,1===ne.nodeType&&ne.hasAttribute("cdkMonitorSubtreeFocus")).subscribe(J=>{this._focusOrigin=J,this.cdkFocusChange.emit(J)})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._monitorSubscription&&this._monitorSubscription.unsubscribe()}static \u0275fac=function(J){return new(J||ce)};static \u0275dir=d.FsC({type:ce,selectors:[["","cdkMonitorElementFocus",""],["","cdkMonitorSubtreeFocus",""]],outputs:{cdkFocusChange:"cdkFocusChange"},exportAs:["cdkMonitorFocus"]})}return ce})()},9726(Zt,pe,l){"use strict";l.d(pe,{g:()=>T});var i=l(2615),d=l(3664);const v={};let T=(()=>{class w{_appId=(0,i.WQX)(d.sZ2);getId(O){return"ng"!==this._appId&&(O+=this._appId),v.hasOwnProperty(O)||(v[O]=0),`${O}${v[O]++}`}static \u0275fac=function(f){return new(f||w)};static \u0275prov=i.jDH({token:w,factory:w.\u0275fac,providedIn:"root"})}return w})()},7336(Zt,pe,l){"use strict";function i(d,...v){return v.length?v.some(T=>d[T]):d.altKey||d.shiftKey||d.ctrlKey||d.metaKey}l.d(pe,{rp:()=>i})},438(Zt,pe,l){"use strict";l.d(pe,{A:()=>P,A$:()=>f,FX:()=>e,Fm:()=>w,G_:()=>d,Ge:()=>pt,Kp:()=>le,LE:()=>W,SJ:()=>V,UQ:()=>Ae,W3:()=>O,Z:()=>wt,_f:()=>C,bn:()=>Dt,dB:()=>Pe,eg:()=>ci,f2:()=>ce,i7:()=>j,n6:()=>G,t6:()=>B,w_:()=>A,wn:()=>v,yZ:()=>Ce});const d=8,v=9,w=13,e=16,O=17,f=18,C=27,B=32,A=33,Pe=34,le=35,Ce=36,Ae=37,j=38,W=39,G=40,V=46,ce=48,Dt=57,P=65,wt=90,pt=91,ci=224},9327(Zt,pe,l){"use strict";l.d(pe,{RH:()=>v,Rp:()=>T});var i=l(2615),d=l(3664);let v=(()=>{class w{static \u0275fac=function(f){return new(f||w)};static \u0275mod=d.$C({type:w});static \u0275inj=i.G2t({})}return w})();const T={XSmall:"(max-width: 599.98px)",Small:"(min-width: 600px) and (max-width: 959.98px)",Medium:"(min-width: 960px) and (max-width: 1279.98px)",Large:"(min-width: 1280px) and (max-width: 1919.98px)",XLarge:"(min-width: 1920px)",Handset:"(max-width: 599.98px) and (orientation: portrait), (max-width: 959.98px) and (orientation: landscape)",Tablet:"(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait), (min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)",Web:"(min-width: 840px) and (orientation: portrait), (min-width: 1280px) and (orientation: landscape)",HandsetPortrait:"(max-width: 599.98px) and (orientation: portrait)",TabletPortrait:"(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait)",WebPortrait:"(min-width: 840px) and (orientation: portrait)",HandsetLandscape:"(max-width: 959.98px) and (orientation: landscape)",TabletLandscape:"(min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)",WebLandscape:"(min-width: 1280px) and (orientation: landscape)"}},2593(Zt,pe,l){"use strict";l.d(pe,{l:()=>u});var i=l(2615),d=l(3664),v=l(9295),T=l(1413),w=l(8359),e=l(9096),O=l(7336),f=l(438);class u{_items;_activeItemIndex=(0,i.vPA)(-1);_activeItem=(0,i.vPA)(null);_wrap=!1;_typeaheadSubscription=w.yU.EMPTY;_itemChangesSubscription;_vertical=!0;_horizontal;_allowedModifierKeys=[];_homeAndEnd=!1;_pageUpAndDown={enabled:!1,delta:10};_effectRef;_typeahead;_skipPredicateFn=C=>C.disabled;constructor(C,B){this._items=C,C instanceof d.rOR?this._itemChangesSubscription=C.changes.subscribe(A=>this._itemsChanged(A.toArray())):(0,i.Hps)(C)&&(this._effectRef=(0,v.QZ)(()=>this._itemsChanged(C()),{injector:B}))}tabOut=new T.B;change=new T.B;skipPredicate(C){return this._skipPredicateFn=C,this}withWrap(C=!0){return this._wrap=C,this}withVerticalOrientation(C=!0){return this._vertical=C,this}withHorizontalOrientation(C){return this._horizontal=C,this}withAllowedModifierKeys(C){return this._allowedModifierKeys=C,this}withTypeAhead(C=200){this._typeaheadSubscription.unsubscribe();const B=this._getItemsArray();return this._typeahead=new e.i(B,{debounceInterval:"number"==typeof C?C:void 0,skipPredicate:A=>this._skipPredicateFn(A)}),this._typeaheadSubscription=this._typeahead.selectedItem.subscribe(A=>{this.setActiveItem(A)}),this}cancelTypeahead(){return this._typeahead?.reset(),this}withHomeAndEnd(C=!0){return this._homeAndEnd=C,this}withPageUpDown(C=!0,B=10){return this._pageUpAndDown={enabled:C,delta:B},this}setActiveItem(C){const B=this._activeItem();this.updateActiveItem(C),this._activeItem()!==B&&this.change.next(this._activeItemIndex())}onKeydown(C){const B=C.keyCode,Pe=["altKey","ctrlKey","metaKey","shiftKey"].every(le=>!C[le]||this._allowedModifierKeys.indexOf(le)>-1);switch(B){case f.wn:return void this.tabOut.next();case f.n6:if(this._vertical&&Pe){this.setNextItemActive();break}return;case f.i7:if(this._vertical&&Pe){this.setPreviousItemActive();break}return;case f.LE:if(this._horizontal&&Pe){"rtl"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case f.UQ:if(this._horizontal&&Pe){"rtl"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;case f.yZ:if(this._homeAndEnd&&Pe){this.setFirstItemActive();break}return;case f.Kp:if(this._homeAndEnd&&Pe){this.setLastItemActive();break}return;case f.w_:if(this._pageUpAndDown.enabled&&Pe){const le=this._activeItemIndex()-this._pageUpAndDown.delta;this._setActiveItemByIndex(le>0?le:0,1);break}return;case f.dB:if(this._pageUpAndDown.enabled&&Pe){const le=this._activeItemIndex()+this._pageUpAndDown.delta,Ce=this._getItemsArray().length;this._setActiveItemByIndex(le-1&&A!==this._activeItemIndex()&&(this._activeItemIndex.set(A),this._typeahead?.setCurrentSelectedItemIndex(A))}}}},2318(Zt,pe,l){"use strict";l.d(pe,{Wv:()=>A,w5:()=>Pe});var i=l(2615),d=l(3664),v=l(7705),T=l(1985),w=l(1413),e=l(152),O=l(5964),f=l(6354),u=l(7847);let C=(()=>{class le{create(Ae){return typeof MutationObserver>"u"?null:new MutationObserver(Ae)}static \u0275fac=function(j){return new(j||le)};static \u0275prov=i.jDH({token:le,factory:le.\u0275fac,providedIn:"root"})}return le})(),B=(()=>{class le{_mutationObserverFactory=(0,i.WQX)(C);_observedElements=new Map;_ngZone=(0,i.WQX)(d.SKi);constructor(){}ngOnDestroy(){this._observedElements.forEach((Ae,j)=>this._cleanupObserver(j))}observe(Ae){const j=(0,u.i8)(Ae);return new T.c(W=>{const re=this._observeElement(j).pipe((0,f.T)(xe=>xe.filter(Ee=>!function L(le){if("characterData"===le.type&&le.target instanceof Comment)return!0;if("childList"===le.type){for(let Ce=0;Ce!!xe.length)).subscribe(xe=>{this._ngZone.run(()=>{W.next(xe)})});return()=>{re.unsubscribe(),this._unobserveElement(j)}})}_observeElement(Ae){return this._ngZone.runOutsideAngular(()=>{if(this._observedElements.has(Ae))this._observedElements.get(Ae).count++;else{const j=new w.B,W=this._mutationObserverFactory.create(G=>j.next(G));W&&W.observe(Ae,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(Ae,{observer:W,stream:j,count:1})}return this._observedElements.get(Ae).stream})}_unobserveElement(Ae){this._observedElements.has(Ae)&&(this._observedElements.get(Ae).count--,this._observedElements.get(Ae).count||this._cleanupObserver(Ae))}_cleanupObserver(Ae){if(this._observedElements.has(Ae)){const{observer:j,stream:W}=this._observedElements.get(Ae);j&&j.disconnect(),W.complete(),this._observedElements.delete(Ae)}}static \u0275fac=function(j){return new(j||le)};static \u0275prov=i.jDH({token:le,factory:le.\u0275fac,providedIn:"root"})}return le})(),A=(()=>{class le{_contentObserver=(0,i.WQX)(B);_elementRef=(0,i.WQX)(d.aKT);event=new d.bkB;get disabled(){return this._disabled}set disabled(Ae){this._disabled=Ae,this._disabled?this._unsubscribe():this._subscribe()}_disabled=!1;get debounce(){return this._debounce}set debounce(Ae){this._debounce=(0,u.OE)(Ae),this._subscribe()}_debounce;_currentSubscription=null;constructor(){}ngAfterContentInit(){!this._currentSubscription&&!this.disabled&&this._subscribe()}ngOnDestroy(){this._unsubscribe()}_subscribe(){this._unsubscribe();const Ae=this._contentObserver.observe(this._elementRef);this._currentSubscription=(this.debounce?Ae.pipe((0,e.B)(this.debounce)):Ae).subscribe(this.event)}_unsubscribe(){this._currentSubscription?.unsubscribe()}static \u0275fac=function(j){return new(j||le)};static \u0275dir=d.FsC({type:le,selectors:[["","cdkObserveContent",""]],inputs:{disabled:[2,"cdkObserveContentDisabled","disabled",v.L39],debounce:"debounce"},outputs:{event:"cdkObserveContent"},exportAs:["cdkObserveContent"]})}return le})(),Pe=(()=>{class le{static \u0275fac=function(j){return new(j||le)};static \u0275mod=d.$C({type:le});static \u0275inj=i.G2t({providers:[C]})}return le})()},3610(Zt,pe,l){"use strict";l.d(pe,{a:()=>B});var i=l(2615),d=l(3664),v=l(1413),T=l(1985),w=l(5964),e=l(2771),O=l(7647),u=l(6977);class C{_box;_destroyed=new v.B;_resizeSubject=new v.B;_resizeObserver;_elementObservables=new Map;constructor(Pe){this._box=Pe,typeof ResizeObserver<"u"&&(this._resizeObserver=new ResizeObserver(le=>this._resizeSubject.next(le)))}observe(Pe){return this._elementObservables.has(Pe)||this._elementObservables.set(Pe,new T.c(le=>{const Ce=this._resizeSubject.subscribe(le);return this._resizeObserver?.observe(Pe,{box:this._box}),()=>{this._resizeObserver?.unobserve(Pe),Ce.unsubscribe(),this._elementObservables.delete(Pe)}}).pipe((0,w.p)(le=>le.some(Ce=>Ce.target===Pe)),function f(A,Pe,le){let Ce,Ae=!1;return A&&"object"==typeof A?({bufferSize:Ce=1/0,windowTime:Pe=1/0,refCount:Ae=!1,scheduler:le}=A):Ce=A??1/0,(0,O.u)({connector:()=>new e.m(Ce,Pe,le),resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:Ae})}({bufferSize:1,refCount:!0}),(0,u.Q)(this._destroyed))),this._elementObservables.get(Pe)}destroy(){this._destroyed.next(),this._destroyed.complete(),this._resizeSubject.complete(),this._elementObservables.clear()}}let B=(()=>{class A{_cleanupErrorListener;_observers=new Map;_ngZone=(0,i.WQX)(d.SKi);constructor(){}ngOnDestroy(){for(const[,le]of this._observers)le.destroy();this._observers.clear(),this._cleanupErrorListener?.()}observe(le,Ce){const Ae=Ce?.box||"content-box";return this._observers.has(Ae)||this._observers.set(Ae,new C(Ae)),this._observers.get(Ae).observe(le)}static \u0275fac=function(Ce){return new(Ce||A)};static \u0275prov=i.jDH({token:A,factory:A.\u0275fac,providedIn:"root"})}return A})()},9338(Zt,pe,l){"use strict";l.d(pe,{WB:()=>kn,$Q:()=>Ni,rW:()=>Gt,rR:()=>ie,Sf:()=>ht,z_:()=>ee,yY:()=>Ye,gA:()=>be,$M:()=>gt,uA:()=>Ue,Y$:()=>Pt,RH:()=>lt});var i=l(2615),d=l(3664),v=l(7705),T=l(7303),w=l(9842),e=l(4522);function O(){return typeof __karma__<"u"&&!!__karma__||typeof jasmine<"u"&&!!jasmine||typeof jest<"u"&&!!jest||typeof Mocha<"u"&&!!Mocha}var f=l(8968),u=l(1413),L=l(8359);function C(ye){return null==ye?"":"string"==typeof ye?ye:`${ye}px`}var B=l(408),A=l(5718),Pe=l(6939),le=l(7860),Ce=l(5964),Ae=l(9974),j=l(4360),G=l(9726),re=l(1577),xe=l(438),Ee=l(7336),V=l(8203);const ce=(0,le.CZ)();function be(ye){return new ne(ye.get(A.Xj),ye.get(i.qQL))}class ne{_viewportRuler;_previousHTMLStyles={top:"",left:""};_previousScrollPosition;_isEnabled=!1;_document;constructor(ke,Se){this._viewportRuler=ke,this._document=Se}attach(){}enable(){if(this._canBeEnabled()){const ke=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=ke.style.left||"",this._previousHTMLStyles.top=ke.style.top||"",ke.style.left=C(-this._previousScrollPosition.left),ke.style.top=C(-this._previousScrollPosition.top),ke.classList.add("cdk-global-scrollblock"),this._isEnabled=!0}}disable(){if(this._isEnabled){const ke=this._document.documentElement,ge=ke.style,N=this._document.body.style,Z=ge.scrollBehavior||"",Me=N.scrollBehavior||"";this._isEnabled=!1,ge.left=this._previousHTMLStyles.left,ge.top=this._previousHTMLStyles.top,ke.classList.remove("cdk-global-scrollblock"),ce&&(ge.scrollBehavior=N.scrollBehavior="auto"),window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),ce&&(ge.scrollBehavior=Z,N.scrollBehavior=Me)}}_canBeEnabled(){if(this._document.documentElement.classList.contains("cdk-global-scrollblock")||this._isEnabled)return!1;const Se=this._document.documentElement,ge=this._viewportRuler.getViewportSize();return Se.scrollHeight>ge.height||Se.scrollWidth>ge.width}}class Re{_scrollDispatcher;_ngZone;_viewportRuler;_config;_scrollSubscription=null;_overlayRef;_initialScrollPosition;constructor(ke,Se,ge,N){this._scrollDispatcher=ke,this._ngZone=Se,this._viewportRuler=ge,this._config=N}attach(ke){this._overlayRef=ke}enable(){if(this._scrollSubscription)return;const ke=this._scrollDispatcher.scrolled(0).pipe((0,Ce.p)(Se=>!Se||!this._overlayRef.overlayElement.contains(Se.getElementRef().nativeElement)));this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=ke.subscribe(()=>{const Se=this._viewportRuler.getViewportScrollPosition().top;Math.abs(Se-this._initialScrollPosition)>this._config.threshold?this._detach():this._overlayRef.updatePosition()})):this._scrollSubscription=ke.subscribe(this._detach)}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}_detach=()=>{this.disable(),this._overlayRef.hasAttached()&&this._ngZone.run(()=>this._overlayRef.detach())}}class _e{enable(){}disable(){}attach(){}}function he(ye,ke){return ke.some(Se=>ye.bottomSe.bottom||ye.rightSe.right)}function Dt(ye,ke){return ke.some(Se=>ye.topSe.bottom||ye.leftSe.right)}function lt(ye,ke){return new Le(ye.get(A.R),ye.get(A.Xj),ye.get(d.SKi),ke)}class Le{_scrollDispatcher;_viewportRuler;_ngZone;_config;_scrollSubscription=null;_overlayRef;constructor(ke,Se,ge,N){this._scrollDispatcher=ke,this._viewportRuler=Se,this._ngZone=ge,this._config=N}attach(ke){this._overlayRef=ke}enable(){this._scrollSubscription||(this._scrollSubscription=this._scrollDispatcher.scrolled(this._config?this._config.scrollThrottle:0).subscribe(()=>{if(this._overlayRef.updatePosition(),this._config&&this._config.autoClose){const Se=this._overlayRef.overlayElement.getBoundingClientRect(),{width:ge,height:N}=this._viewportRuler.getViewportSize();he(Se,[{width:ge,height:N,bottom:N,right:ge,top:0,left:0}])&&(this.disable(),this._ngZone.run(()=>this._overlayRef.detach()))}}))}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}let te=(()=>{class ye{_injector=(0,i.WQX)(i.zZn);constructor(){}noop=()=>new _e;close=Se=>function De(ye,ke){return new Re(ye.get(A.R),ye.get(d.SKi),ye.get(A.Xj),ke)}(this._injector,Se);block=()=>be(this._injector);reposition=Se=>lt(this._injector,Se);static \u0275fac=function(ge){return new(ge||ye)};static \u0275prov=i.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})();class ie{positionStrategy;scrollStrategy=new _e;panelClass="";hasBackdrop=!1;backdropClass="cdk-overlay-dark-backdrop";disableAnimations;width;height;minWidth;minHeight;maxWidth;maxHeight;direction;disposeOnNavigation=!1;constructor(ke){if(ke){const Se=Object.keys(ke);for(const ge of Se)void 0!==ke[ge]&&(this[ge]=ke[ge])}}}class ve{connectionPair;scrollableViewProperties;constructor(ke,Se){this.connectionPair=ke,this.scrollableViewProperties=Se}}let Ke=(()=>{class ye{_attachedOverlays=[];_document=(0,i.WQX)(i.qQL);_isAttached;constructor(){}ngOnDestroy(){this.detach()}add(Se){this.remove(Se),this._attachedOverlays.push(Se)}remove(Se){const ge=this._attachedOverlays.indexOf(Se);ge>-1&&this._attachedOverlays.splice(ge,1),0===this._attachedOverlays.length&&this.detach()}static \u0275fac=function(ge){return new(ge||ye)};static \u0275prov=i.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})(),Vt=(()=>{class ye extends Ke{_ngZone=(0,i.WQX)(d.SKi);_renderer=(0,i.WQX)(d._9s).createRenderer(null,null);_cleanupKeydown;add(Se){super.add(Se),this._isAttached||(this._ngZone.runOutsideAngular(()=>{this._cleanupKeydown=this._renderer.listen("body","keydown",this._keydownListener)}),this._isAttached=!0)}detach(){this._isAttached&&(this._cleanupKeydown?.(),this._isAttached=!1)}_keydownListener=Se=>{const ge=this._attachedOverlays;for(let N=ge.length-1;N>-1;N--)if(ge[N]._keydownEvents.observers.length>0){this._ngZone.run(()=>ge[N]._keydownEvents.next(Se));break}};static \u0275fac=(()=>{let Se;return function(N){return(Se||(Se=d.xGo(ye)))(N||ye)}})();static \u0275prov=i.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})(),St=(()=>{class ye extends Ke{_platform=(0,i.WQX)(w.O);_ngZone=(0,i.WQX)(d.SKi);_renderer=(0,i.WQX)(d._9s).createRenderer(null,null);_cursorOriginalValue;_cursorStyleIsSet=!1;_pointerDownEventTarget;_cleanups;add(Se){if(super.add(Se),!this._isAttached){const ge=this._document.body,N={capture:!0},Z=this._renderer;this._cleanups=this._ngZone.runOutsideAngular(()=>[Z.listen(ge,"pointerdown",this._pointerDownListener,N),Z.listen(ge,"click",this._clickListener,N),Z.listen(ge,"auxclick",this._clickListener,N),Z.listen(ge,"contextmenu",this._clickListener,N)]),this._platform.IOS&&!this._cursorStyleIsSet&&(this._cursorOriginalValue=ge.style.cursor,ge.style.cursor="pointer",this._cursorStyleIsSet=!0),this._isAttached=!0}}detach(){this._isAttached&&(this._cleanups?.forEach(Se=>Se()),this._cleanups=void 0,this._platform.IOS&&this._cursorStyleIsSet&&(this._document.body.style.cursor=this._cursorOriginalValue,this._cursorStyleIsSet=!1),this._isAttached=!1)}_pointerDownListener=Se=>{this._pointerDownEventTarget=(0,e.Fb)(Se)};_clickListener=Se=>{const ge=(0,e.Fb)(Se),N="click"===Se.type&&this._pointerDownEventTarget?this._pointerDownEventTarget:ge;this._pointerDownEventTarget=null;const Z=this._attachedOverlays.slice();for(let Me=Z.length-1;Me>-1;Me--){const at=Z[Me];if(at._outsidePointerEvents.observers.length<1||!at.hasAttached())continue;if(ot(at.overlayElement,ge)||ot(at.overlayElement,N))break;const qe=at._outsidePointerEvents;this._ngZone?this._ngZone.run(()=>qe.next(Se)):qe.next(Se)}};static \u0275fac=(()=>{let Se;return function(N){return(Se||(Se=d.xGo(ye)))(N||ye)}})();static \u0275prov=i.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})();function ot(ye,ke){const Se=typeof ShadowRoot<"u"&&ShadowRoot;let ge=ke;for(;ge;){if(ge===ye)return!0;ge=Se&&ge instanceof ShadowRoot?ge.host:ge.parentNode}return!1}let nt=(()=>{class ye{static \u0275fac=function(ge){return new(ge||ye)};static \u0275cmp=d.VBU({type:ye,selectors:[["ng-component"]],hostAttrs:["cdk-overlay-style-loader",""],decls:0,vars:0,template:function(ge,N){},styles:[".cdk-overlay-container,.cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed}@layer cdk-overlay{.cdk-overlay-container{z-index:1000}}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper{display:flex;position:absolute}@layer cdk-overlay{.cdk-global-overlay-wrapper{z-index:1000}}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;display:flex;max-width:100%;max-height:100%}@layer cdk-overlay{.cdk-overlay-pane{z-index:1000}}.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;pointer-events:auto;-webkit-tap-highlight-color:rgba(0,0,0,0);opacity:0;touch-action:manipulation}@layer cdk-overlay{.cdk-overlay-backdrop{z-index:1000;transition:opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}}@media(prefers-reduced-motion){.cdk-overlay-backdrop{transition-duration:1ms}}.cdk-overlay-backdrop-showing{opacity:1}@media(forced-colors: active){.cdk-overlay-backdrop-showing{opacity:.6}}@layer cdk-overlay{.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}}.cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing,.cdk-high-contrast-active .cdk-overlay-transparent-backdrop{opacity:0;visibility:visible}.cdk-overlay-backdrop-noop-animation{transition:none}.cdk-overlay-connected-position-bounding-box{position:absolute;display:flex;flex-direction:column;min-width:1px;min-height:1px}@layer cdk-overlay{.cdk-overlay-connected-position-bounding-box{z-index:1000}}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}\n"],encapsulation:2,changeDetection:0})}return ye})(),ht=(()=>{class ye{_platform=(0,i.WQX)(w.O);_containerElement;_document=(0,i.WQX)(i.qQL);_styleLoader=(0,i.WQX)(f.l);constructor(){}ngOnDestroy(){this._containerElement?.remove()}getContainerElement(){return this._loadStyles(),this._containerElement||this._createContainer(),this._containerElement}_createContainer(){const Se="cdk-overlay-container";if(this._platform.isBrowser||O()){const N=this._document.querySelectorAll(`.${Se}[platform="server"], .${Se}[platform="test"]`);for(let Z=0;Z{const ke=this.element;clearTimeout(this._fallbackTimeout),this._cleanupTransitionEnd?.(),this._cleanupTransitionEnd=this._renderer.listen(ke,"transitionend",this.dispose),this._fallbackTimeout=setTimeout(this.dispose,500),ke.style.pointerEvents="none",ke.classList.remove("cdk-overlay-backdrop-showing")})}dispose=()=>{clearTimeout(this._fallbackTimeout),this._cleanupClick?.(),this._cleanupTransitionEnd?.(),this._cleanupClick=this._cleanupTransitionEnd=this._fallbackTimeout=void 0,this.element.remove()}}class Ye{_portalOutlet;_host;_pane;_config;_ngZone;_keyboardDispatcher;_document;_location;_outsideClickDispatcher;_animationsDisabled;_injector;_renderer;_backdropClick=new u.B;_attachments=new u.B;_detachments=new u.B;_positionStrategy;_scrollStrategy;_locationChanges=L.yU.EMPTY;_backdropRef=null;_detachContentMutationObserver;_detachContentAfterRenderRef;_previousHostParent;_keydownEvents=new u.B;_outsidePointerEvents=new u.B;_afterNextRenderRef;constructor(ke,Se,ge,N,Z,Me,at,qe,pn,Je=!1,Be,ut){this._portalOutlet=ke,this._host=Se,this._pane=ge,this._config=N,this._ngZone=Z,this._keyboardDispatcher=Me,this._document=at,this._location=qe,this._outsideClickDispatcher=pn,this._animationsDisabled=Je,this._injector=Be,this._renderer=ut,N.scrollStrategy&&(this._scrollStrategy=N.scrollStrategy,this._scrollStrategy.attach(this)),this._positionStrategy=N.positionStrategy}get overlayElement(){return this._pane}get backdropElement(){return this._backdropRef?.element||null}get hostElement(){return this._host}attach(ke){!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host);const Se=this._portalOutlet.attach(ke);return this._positionStrategy&&this._positionStrategy.attach(this),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._scrollStrategy&&this._scrollStrategy.enable(),this._afterNextRenderRef?.destroy(),this._afterNextRenderRef=(0,d.mal)(()=>{this.hasAttached()&&this.updatePosition()},{injector:this._injector}),this._togglePointerEvents(!0),this._config.hasBackdrop&&this._attachBackdrop(),this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!0),this._attachments.next(),this._completeDetachContent(),this._keyboardDispatcher.add(this),this._config.disposeOnNavigation&&(this._locationChanges=this._location.subscribe(()=>this.dispose())),this._outsideClickDispatcher.add(this),"function"==typeof Se?.onDestroy&&Se.onDestroy(()=>{this.hasAttached()&&this._ngZone.runOutsideAngular(()=>Promise.resolve().then(()=>this.detach()))}),Se}detach(){if(!this.hasAttached())return;this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._scrollStrategy&&this._scrollStrategy.disable();const ke=this._portalOutlet.detach();return this._detachments.next(),this._completeDetachContent(),this._keyboardDispatcher.remove(this),this._detachContentWhenEmpty(),this._locationChanges.unsubscribe(),this._outsideClickDispatcher.remove(this),ke}dispose(){const ke=this.hasAttached();this._positionStrategy&&this._positionStrategy.dispose(),this._disposeScrollStrategy(),this._backdropRef?.dispose(),this._locationChanges.unsubscribe(),this._keyboardDispatcher.remove(this),this._portalOutlet.dispose(),this._attachments.complete(),this._backdropClick.complete(),this._keydownEvents.complete(),this._outsidePointerEvents.complete(),this._outsideClickDispatcher.remove(this),this._host?.remove(),this._afterNextRenderRef?.destroy(),this._previousHostParent=this._pane=this._host=this._backdropRef=null,ke&&this._detachments.next(),this._detachments.complete(),this._completeDetachContent()}hasAttached(){return this._portalOutlet.hasAttached()}backdropClick(){return this._backdropClick}attachments(){return this._attachments}detachments(){return this._detachments}keydownEvents(){return this._keydownEvents}outsidePointerEvents(){return this._outsidePointerEvents}getConfig(){return this._config}updatePosition(){this._positionStrategy&&this._positionStrategy.apply()}updatePositionStrategy(ke){ke!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=ke,this.hasAttached()&&(ke.attach(this),this.updatePosition()))}updateSize(ke){this._config={...this._config,...ke},this._updateElementSize()}setDirection(ke){this._config={...this._config,direction:ke},this._updateElementDirection()}addPanelClass(ke){this._pane&&this._toggleClasses(this._pane,ke,!0)}removePanelClass(ke){this._pane&&this._toggleClasses(this._pane,ke,!1)}getDirection(){const ke=this._config.direction;return ke?"string"==typeof ke?ke:ke.value:"ltr"}updateScrollStrategy(ke){ke!==this._scrollStrategy&&(this._disposeScrollStrategy(),this._scrollStrategy=ke,this.hasAttached()&&(ke.attach(this),ke.enable()))}_updateElementDirection(){this._host.setAttribute("dir",this.getDirection())}_updateElementSize(){if(!this._pane)return;const ke=this._pane.style;ke.width=C(this._config.width),ke.height=C(this._config.height),ke.minWidth=C(this._config.minWidth),ke.minHeight=C(this._config.minHeight),ke.maxWidth=C(this._config.maxWidth),ke.maxHeight=C(this._config.maxHeight)}_togglePointerEvents(ke){this._pane.style.pointerEvents=ke?"":"none"}_attachBackdrop(){const ke="cdk-overlay-backdrop-showing";this._backdropRef?.dispose(),this._backdropRef=new oe(this._document,this._renderer,this._ngZone,Se=>{this._backdropClick.next(Se)}),this._animationsDisabled&&this._backdropRef.element.classList.add("cdk-overlay-backdrop-noop-animation"),this._config.backdropClass&&this._toggleClasses(this._backdropRef.element,this._config.backdropClass,!0),this._host.parentElement.insertBefore(this._backdropRef.element,this._host),!this._animationsDisabled&&typeof requestAnimationFrame<"u"?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>this._backdropRef?.element.classList.add(ke))}):this._backdropRef.element.classList.add(ke)}_updateStackingOrder(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)}detachBackdrop(){this._animationsDisabled?(this._backdropRef?.dispose(),this._backdropRef=null):this._backdropRef?.detach()}_toggleClasses(ke,Se,ge){const N=(0,B.F)(Se||[]).filter(Z=>!!Z);N.length&&(ge?ke.classList.add(...N):ke.classList.remove(...N))}_detachContentWhenEmpty(){let ke=!1;try{this._detachContentAfterRenderRef=(0,d.mal)(()=>{ke=!0,this._detachContent()},{injector:this._injector})}catch(Se){if(ke)throw Se;this._detachContent()}globalThis.MutationObserver&&this._pane&&(this._detachContentMutationObserver||=new globalThis.MutationObserver(()=>{this._detachContent()}),this._detachContentMutationObserver.observe(this._pane,{childList:!0}))}_detachContent(){(!this._pane||!this._host||0===this._pane.children.length)&&(this._pane&&this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!1),this._host&&this._host.parentElement&&(this._previousHostParent=this._host.parentElement,this._host.remove()),this._completeDetachContent())}_completeDetachContent(){this._detachContentAfterRenderRef?.destroy(),this._detachContentAfterRenderRef=void 0,this._detachContentMutationObserver?.disconnect()}_disposeScrollStrategy(){const ke=this._scrollStrategy;ke?.disable(),ke?.detach?.()}}const fe="cdk-overlay-connected-position-bounding-box",Qe=/([A-Za-z%]+)$/;function gt(ye,ke){return new Gt(ke,ye.get(A.Xj),ye.get(i.qQL),ye.get(w.O),ye.get(ht))}class Gt{_viewportRuler;_document;_platform;_overlayContainer;_overlayRef;_isInitialRender;_lastBoundingBoxSize={width:0,height:0};_isPushed=!1;_canPush=!0;_growAfterOpen=!1;_hasFlexibleDimensions=!0;_positionLocked=!1;_originRect;_overlayRect;_viewportRect;_containerRect;_viewportMargin=0;_scrollables=[];_preferredPositions=[];_origin;_pane;_isDisposed;_boundingBox;_lastPosition;_lastScrollVisibility;_positionChanges=new u.B;_resizeSubscription=L.yU.EMPTY;_offsetX=0;_offsetY=0;_transformOriginSelector;_appliedPanelClasses=[];_previousPushAmount;positionChanges=this._positionChanges;get positions(){return this._preferredPositions}constructor(ke,Se,ge,N,Z){this._viewportRuler=Se,this._document=ge,this._platform=N,this._overlayContainer=Z,this.setOrigin(ke)}attach(ke){this._validatePositions(),ke.hostElement.classList.add(fe),this._overlayRef=ke,this._boundingBox=ke.hostElement,this._pane=ke.overlayElement,this._isDisposed=!1,this._isInitialRender=!0,this._lastPosition=null,this._resizeSubscription.unsubscribe(),this._resizeSubscription=this._viewportRuler.change().subscribe(()=>{this._isInitialRender=!0,this.apply()})}apply(){if(this._isDisposed||!this._platform.isBrowser)return;if(!this._isInitialRender&&this._positionLocked&&this._lastPosition)return void this.reapplyLastPosition();this._clearPanelClasses(),this._resetOverlayElementStyles(),this._resetBoundingBoxStyles(),this._viewportRect=this._getNarrowedViewportRect(),this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const ke=this._originRect,Se=this._overlayRect,ge=this._viewportRect,N=this._containerRect,Z=[];let Me;for(let at of this._preferredPositions){let qe=this._getOriginPoint(ke,N,at),pn=this._getOverlayPoint(qe,Se,at),Je=this._getOverlayFit(pn,Se,ge,at);if(Je.isCompletelyWithinViewport)return this._isPushed=!1,void this._applyPosition(at,qe);this._canFitWithFlexibleDimensions(Je,pn,ge)?Z.push({position:at,origin:qe,overlayRect:Se,boundingBoxRect:this._calculateBoundingBoxRect(qe,at)}):(!Me||Me.overlayFit.visibleAreaqe&&(qe=Je,at=pn)}return this._isPushed=!1,void this._applyPosition(at.position,at.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(Me.position,Me.originPoint);this._applyPosition(Me.position,Me.originPoint)}detach(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}dispose(){this._isDisposed||(this._boundingBox&&rt(this._boundingBox.style,{top:"",left:"",right:"",bottom:"",height:"",width:"",alignItems:"",justifyContent:""}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(fe),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}reapplyLastPosition(){if(this._isDisposed||!this._platform.isBrowser)return;const ke=this._lastPosition;if(ke){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const Se=this._getOriginPoint(this._originRect,this._containerRect,ke);this._applyPosition(ke,Se)}else this.apply()}withScrollableContainers(ke){return this._scrollables=ke,this}withPositions(ke){return this._preferredPositions=ke,-1===ke.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}withViewportMargin(ke){return this._viewportMargin=ke,this}withFlexibleDimensions(ke=!0){return this._hasFlexibleDimensions=ke,this}withGrowAfterOpen(ke=!0){return this._growAfterOpen=ke,this}withPush(ke=!0){return this._canPush=ke,this}withLockedPosition(ke=!0){return this._positionLocked=ke,this}setOrigin(ke){return this._origin=ke,this}withDefaultOffsetX(ke){return this._offsetX=ke,this}withDefaultOffsetY(ke){return this._offsetY=ke,this}withTransformOriginOn(ke){return this._transformOriginSelector=ke,this}_getOriginPoint(ke,Se,ge){let N,Z;if("center"==ge.originX)N=ke.left+ke.width/2;else{const Me=this._isRtl()?ke.right:ke.left,at=this._isRtl()?ke.left:ke.right;N="start"==ge.originX?Me:at}return Se.left<0&&(N-=Se.left),Z="center"==ge.originY?ke.top+ke.height/2:"top"==ge.originY?ke.top:ke.bottom,Se.top<0&&(Z-=Se.top),{x:N,y:Z}}_getOverlayPoint(ke,Se,ge){let N,Z;return N="center"==ge.overlayX?-Se.width/2:"start"===ge.overlayX?this._isRtl()?-Se.width:0:this._isRtl()?0:-Se.width,Z="center"==ge.overlayY?-Se.height/2:"top"==ge.overlayY?0:-Se.height,{x:ke.x+N,y:ke.y+Z}}_getOverlayFit(ke,Se,ge,N){const Z=Ft(Se);let{x:Me,y:at}=ke,qe=this._getOffset(N,"x"),pn=this._getOffset(N,"y");qe&&(Me+=qe),pn&&(at+=pn);let ut=0-at,Ge=at+Z.height-ge.height,Ot=this._subtractOverflows(Z.width,0-Me,Me+Z.width-ge.width),se=this._subtractOverflows(Z.height,ut,Ge),We=Ot*se;return{visibleArea:We,isCompletelyWithinViewport:Z.width*Z.height===We,fitsInViewportVertically:se===Z.height,fitsInViewportHorizontally:Ot==Z.width}}_canFitWithFlexibleDimensions(ke,Se,ge){if(this._hasFlexibleDimensions){const N=ge.bottom-Se.y,Z=ge.right-Se.x,Me=cn(this._overlayRef.getConfig().minHeight),at=cn(this._overlayRef.getConfig().minWidth);return(ke.fitsInViewportVertically||null!=Me&&Me<=N)&&(ke.fitsInViewportHorizontally||null!=at&&at<=Z)}return!1}_pushOverlayOnScreen(ke,Se,ge){if(this._previousPushAmount&&this._positionLocked)return{x:ke.x+this._previousPushAmount.x,y:ke.y+this._previousPushAmount.y};const N=Ft(Se),Z=this._viewportRect,Me=Math.max(ke.x+N.width-Z.width,0),at=Math.max(ke.y+N.height-Z.height,0),qe=Math.max(Z.top-ge.top-ke.y,0),pn=Math.max(Z.left-ge.left-ke.x,0);let Je=0,Be=0;return Je=N.width<=Z.width?pn||-Me:ke.xOt&&!this._isInitialRender&&!this._growAfterOpen&&(Me=ke.y-Ot/2)}if("end"===Se.overlayX&&!N||"start"===Se.overlayX&&N)ut=ge.width-ke.x+2*this._viewportMargin,Je=ke.x-this._viewportMargin;else if("start"===Se.overlayX&&!N||"end"===Se.overlayX&&N)Be=ke.x,Je=ge.right-ke.x;else{const Ge=Math.min(ge.right-ke.x+ge.left,ke.x),Ot=this._lastBoundingBoxSize.width;Je=2*Ge,Be=ke.x-Ge,Je>Ot&&!this._isInitialRender&&!this._growAfterOpen&&(Be=ke.x-Ot/2)}return{top:Me,left:Be,bottom:at,right:ut,width:Je,height:Z}}_setBoundingBoxStyles(ke,Se){const ge=this._calculateBoundingBoxRect(ke,Se);!this._isInitialRender&&!this._growAfterOpen&&(ge.height=Math.min(ge.height,this._lastBoundingBoxSize.height),ge.width=Math.min(ge.width,this._lastBoundingBoxSize.width));const N={};if(this._hasExactPosition())N.top=N.left="0",N.bottom=N.right=N.maxHeight=N.maxWidth="",N.width=N.height="100%";else{const Z=this._overlayRef.getConfig().maxHeight,Me=this._overlayRef.getConfig().maxWidth;N.height=C(ge.height),N.top=C(ge.top),N.bottom=C(ge.bottom),N.width=C(ge.width),N.left=C(ge.left),N.right=C(ge.right),N.alignItems="center"===Se.overlayX?"center":"end"===Se.overlayX?"flex-end":"flex-start",N.justifyContent="center"===Se.overlayY?"center":"bottom"===Se.overlayY?"flex-end":"flex-start",Z&&(N.maxHeight=C(Z)),Me&&(N.maxWidth=C(Me))}this._lastBoundingBoxSize=ge,rt(this._boundingBox.style,N)}_resetBoundingBoxStyles(){rt(this._boundingBox.style,{top:"0",left:"0",right:"0",bottom:"0",height:"",width:"",alignItems:"",justifyContent:""})}_resetOverlayElementStyles(){rt(this._pane.style,{top:"",left:"",bottom:"",right:"",position:"",transform:""})}_setOverlayElementStyles(ke,Se){const ge={},N=this._hasExactPosition(),Z=this._hasFlexibleDimensions,Me=this._overlayRef.getConfig();if(N){const Je=this._viewportRuler.getViewportScrollPosition();rt(ge,this._getExactOverlayY(Se,ke,Je)),rt(ge,this._getExactOverlayX(Se,ke,Je))}else ge.position="static";let at="",qe=this._getOffset(Se,"x"),pn=this._getOffset(Se,"y");qe&&(at+=`translateX(${qe}px) `),pn&&(at+=`translateY(${pn}px)`),ge.transform=at.trim(),Me.maxHeight&&(N?ge.maxHeight=C(Me.maxHeight):Z&&(ge.maxHeight="")),Me.maxWidth&&(N?ge.maxWidth=C(Me.maxWidth):Z&&(ge.maxWidth="")),rt(this._pane.style,ge)}_getExactOverlayY(ke,Se,ge){let N={top:"",bottom:""},Z=this._getOverlayPoint(Se,this._overlayRect,ke);return this._isPushed&&(Z=this._pushOverlayOnScreen(Z,this._overlayRect,ge)),"bottom"===ke.overlayY?N.bottom=this._document.documentElement.clientHeight-(Z.y+this._overlayRect.height)+"px":N.top=C(Z.y),N}_getExactOverlayX(ke,Se,ge){let Me,N={left:"",right:""},Z=this._getOverlayPoint(Se,this._overlayRect,ke);return this._isPushed&&(Z=this._pushOverlayOnScreen(Z,this._overlayRect,ge)),Me=this._isRtl()?"end"===ke.overlayX?"left":"right":"end"===ke.overlayX?"right":"left","right"===Me?N.right=this._document.documentElement.clientWidth-(Z.x+this._overlayRect.width)+"px":N.left=C(Z.x),N}_getScrollVisibility(){const ke=this._getOriginRect(),Se=this._pane.getBoundingClientRect(),ge=this._scrollables.map(N=>N.getElementRef().nativeElement.getBoundingClientRect());return{isOriginClipped:Dt(ke,ge),isOriginOutsideView:he(ke,ge),isOverlayClipped:Dt(Se,ge),isOverlayOutsideView:he(Se,ge)}}_subtractOverflows(ke,...Se){return Se.reduce((ge,N)=>ge-Math.max(N,0),ke)}_getNarrowedViewportRect(){const ke=this._document.documentElement.clientWidth,Se=this._document.documentElement.clientHeight,ge=this._viewportRuler.getViewportScrollPosition();return{top:ge.top+this._viewportMargin,left:ge.left+this._viewportMargin,right:ge.left+ke-this._viewportMargin,bottom:ge.top+Se-this._viewportMargin,width:ke-2*this._viewportMargin,height:Se-2*this._viewportMargin}}_isRtl(){return"rtl"===this._overlayRef.getDirection()}_hasExactPosition(){return!this._hasFlexibleDimensions||this._isPushed}_getOffset(ke,Se){return"x"===Se?null==ke.offsetX?this._offsetX:ke.offsetX:null==ke.offsetY?this._offsetY:ke.offsetY}_validatePositions(){}_addPanelClasses(ke){this._pane&&(0,B.F)(ke).forEach(Se=>{""!==Se&&-1===this._appliedPanelClasses.indexOf(Se)&&(this._appliedPanelClasses.push(Se),this._pane.classList.add(Se))})}_clearPanelClasses(){this._pane&&(this._appliedPanelClasses.forEach(ke=>{this._pane.classList.remove(ke)}),this._appliedPanelClasses=[])}_getOriginRect(){const ke=this._origin;if(ke instanceof d.aKT)return ke.nativeElement.getBoundingClientRect();if(ke instanceof Element)return ke.getBoundingClientRect();const Se=ke.width||0,ge=ke.height||0;return{top:ke.y,bottom:ke.y+ge,left:ke.x,right:ke.x+Se,height:ge,width:Se}}}function rt(ye,ke){for(let Se in ke)ke.hasOwnProperty(Se)&&(ye[Se]=ke[Se]);return ye}function cn(ye){if("number"!=typeof ye&&null!=ye){const[ke,Se]=ye.split(Qe);return Se&&"px"!==Se?null:parseFloat(ke)}return ye||null}function Ft(ye){return{top:Math.floor(ye.top),right:Math.floor(ye.right),bottom:Math.floor(ye.bottom),left:Math.floor(ye.left),width:Math.floor(ye.width),height:Math.floor(ye.height)}}const jt="cdk-global-overlay-wrapper";function Ue(ye){return new wt}class wt{_overlayRef;_cssPosition="static";_topOffset="";_bottomOffset="";_alignItems="";_xPosition="";_xOffset="";_width="";_height="";_isDisposed=!1;attach(ke){const Se=ke.getConfig();this._overlayRef=ke,this._width&&!Se.width&&ke.updateSize({width:this._width}),this._height&&!Se.height&&ke.updateSize({height:this._height}),ke.hostElement.classList.add(jt),this._isDisposed=!1}top(ke=""){return this._bottomOffset="",this._topOffset=ke,this._alignItems="flex-start",this}left(ke=""){return this._xOffset=ke,this._xPosition="left",this}bottom(ke=""){return this._topOffset="",this._bottomOffset=ke,this._alignItems="flex-end",this}right(ke=""){return this._xOffset=ke,this._xPosition="right",this}start(ke=""){return this._xOffset=ke,this._xPosition="start",this}end(ke=""){return this._xOffset=ke,this._xPosition="end",this}width(ke=""){return this._overlayRef?this._overlayRef.updateSize({width:ke}):this._width=ke,this}height(ke=""){return this._overlayRef?this._overlayRef.updateSize({height:ke}):this._height=ke,this}centerHorizontally(ke=""){return this.left(ke),this._xPosition="center",this}centerVertically(ke=""){return this.top(ke),this._alignItems="center",this}apply(){if(!this._overlayRef||!this._overlayRef.hasAttached())return;const ke=this._overlayRef.overlayElement.style,Se=this._overlayRef.hostElement.style,ge=this._overlayRef.getConfig(),{width:N,height:Z,maxWidth:Me,maxHeight:at}=ge,qe=!("100%"!==N&&"100vw"!==N||Me&&"100%"!==Me&&"100vw"!==Me),pn=!("100%"!==Z&&"100vh"!==Z||at&&"100%"!==at&&"100vh"!==at),Je=this._xPosition,Be=this._xOffset,ut="rtl"===this._overlayRef.getConfig().direction;let Ge="",Ot="",se="";qe?se="flex-start":"center"===Je?(se="center",ut?Ot=Be:Ge=Be):ut?"left"===Je||"end"===Je?(se="flex-end",Ge=Be):("right"===Je||"start"===Je)&&(se="flex-start",Ot=Be):"left"===Je||"start"===Je?(se="flex-start",Ge=Be):("right"===Je||"end"===Je)&&(se="flex-end",Ot=Be),ke.position=this._cssPosition,ke.marginLeft=qe?"0":Ge,ke.marginTop=pn?"0":this._topOffset,ke.marginBottom=this._bottomOffset,ke.marginRight=qe?"0":Ot,Se.justifyContent=se,Se.alignItems=pn?"flex-start":this._alignItems}dispose(){if(this._isDisposed||!this._overlayRef)return;const ke=this._overlayRef.overlayElement.style,Se=this._overlayRef.hostElement,ge=Se.style;Se.classList.remove(jt),ge.justifyContent=ge.alignItems=ke.marginTop=ke.marginBottom=ke.marginLeft=ke.marginRight=ke.position="",this._overlayRef=null,this._isDisposed=!0}}let pt=(()=>{class ye{_injector=(0,i.WQX)(i.zZn);constructor(){}global(){return Ue()}flexibleConnectedTo(Se){return gt(this._injector,Se)}static \u0275fac=function(ge){return new(ge||ye)};static \u0275prov=i.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})();function Pt(ye,ke){ye.get(f.l).load(nt);const Se=ye.get(ht),ge=ye.get(i.qQL),N=ye.get(G.g),Z=ye.get(d.o8S),Me=ye.get(re.dS),at=ge.createElement("div"),qe=ge.createElement("div");qe.id=N.getId("cdk-overlay-"),qe.classList.add("cdk-overlay-pane"),at.appendChild(qe),Se.getContainerElement().appendChild(at);const pn=new Pe.aI(qe,Z,ye),Je=new ie(ke),Be=ye.get(d.sFG,null,{optional:!0})||ye.get(d._9s).createRenderer(null,null);return Je.direction=Je.direction||Me.value,new Ye(pn,at,qe,Je,ye.get(d.SKi),ye.get(Vt),ge,ye.get(T.aZ),ye.get(St),ke?.disableAnimations??"NoopAnimations"===ye.get(d.bc$,null,{optional:!0}),ye.get(i.uvJ),Be)}let gn=(()=>{class ye{scrollStrategies=(0,i.WQX)(te);_positionBuilder=(0,i.WQX)(pt);_injector=(0,i.WQX)(i.zZn);constructor(){}create(Se){return Pt(this._injector,Se)}position(){return this._positionBuilder}static \u0275fac=function(ge){return new(ge||ye)};static \u0275prov=i.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})();const ei=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom"},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"}],vi=new i.nKC("cdk-connected-overlay-scroll-strategy",{providedIn:"root",factory:()=>{const ye=(0,i.WQX)(i.zZn);return()=>lt(ye)}});let Ni=(()=>{class ye{elementRef=(0,i.WQX)(d.aKT);constructor(){}static \u0275fac=function(ge){return new(ge||ye)};static \u0275dir=d.FsC({type:ye,selectors:[["","cdk-overlay-origin",""],["","overlay-origin",""],["","cdkOverlayOrigin",""]],exportAs:["cdkOverlayOrigin"]})}return ye})(),kn=(()=>{class ye{_dir=(0,i.WQX)(re.dS,{optional:!0});_injector=(0,i.WQX)(i.zZn);_overlayRef;_templatePortal;_backdropSubscription=L.yU.EMPTY;_attachSubscription=L.yU.EMPTY;_detachSubscription=L.yU.EMPTY;_positionSubscription=L.yU.EMPTY;_offsetX;_offsetY;_position;_scrollStrategyFactory=(0,i.WQX)(vi);_disposeOnNavigation=!1;_ngZone=(0,i.WQX)(d.SKi);origin;positions;positionStrategy;get offsetX(){return this._offsetX}set offsetX(Se){this._offsetX=Se,this._position&&this._updatePositionStrategy(this._position)}get offsetY(){return this._offsetY}set offsetY(Se){this._offsetY=Se,this._position&&this._updatePositionStrategy(this._position)}width;height;minWidth;minHeight;backdropClass;panelClass;viewportMargin=0;scrollStrategy;open=!1;disableClose=!1;transformOriginSelector;hasBackdrop=!1;lockPosition=!1;flexibleDimensions=!1;growAfterOpen=!1;push=!1;get disposeOnNavigation(){return this._disposeOnNavigation}set disposeOnNavigation(Se){this._disposeOnNavigation=Se}backdropClick=new d.bkB;positionChange=new d.bkB;attach=new d.bkB;detach=new d.bkB;overlayKeydown=new d.bkB;overlayOutsideClick=new d.bkB;constructor(){const Se=(0,i.WQX)(d.C4Q),ge=(0,i.WQX)(d.c1b);this._templatePortal=new Pe.VA(Se,ge),this.scrollStrategy=this._scrollStrategyFactory()}get overlayRef(){return this._overlayRef}get dir(){return this._dir?this._dir.value:"ltr"}ngOnDestroy(){this._attachSubscription.unsubscribe(),this._detachSubscription.unsubscribe(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this._overlayRef?.dispose()}ngOnChanges(Se){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef?.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),Se.origin&&this.open&&this._position.apply()),Se.open&&(this.open?this.attachOverlay():this.detachOverlay())}_createOverlay(){(!this.positions||!this.positions.length)&&(this.positions=ei);const Se=this._overlayRef=Pt(this._injector,this._buildConfig());this._attachSubscription=Se.attachments().subscribe(()=>this.attach.emit()),this._detachSubscription=Se.detachments().subscribe(()=>this.detach.emit()),Se.keydownEvents().subscribe(ge=>{this.overlayKeydown.next(ge),ge.keyCode===xe._f&&!this.disableClose&&!(0,Ee.rp)(ge)&&(ge.preventDefault(),this.detachOverlay())}),this._overlayRef.outsidePointerEvents().subscribe(ge=>{const N=this._getOriginElement(),Z=(0,e.Fb)(ge);(!N||N!==Z&&!N.contains(Z))&&this.overlayOutsideClick.next(ge)})}_buildConfig(){const Se=this._position=this.positionStrategy||this._createPositionStrategy(),ge=new ie({direction:this._dir||"ltr",positionStrategy:Se,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop,disposeOnNavigation:this.disposeOnNavigation});return(this.width||0===this.width)&&(ge.width=this.width),(this.height||0===this.height)&&(ge.height=this.height),(this.minWidth||0===this.minWidth)&&(ge.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(ge.minHeight=this.minHeight),this.backdropClass&&(ge.backdropClass=this.backdropClass),this.panelClass&&(ge.panelClass=this.panelClass),ge}_updatePositionStrategy(Se){const ge=this.positions.map(N=>({originX:N.originX,originY:N.originY,overlayX:N.overlayX,overlayY:N.overlayY,offsetX:N.offsetX||this.offsetX,offsetY:N.offsetY||this.offsetY,panelClass:N.panelClass||void 0}));return Se.setOrigin(this._getOrigin()).withPositions(ge).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}_createPositionStrategy(){const Se=gt(this._injector,this._getOrigin());return this._updatePositionStrategy(Se),Se}_getOrigin(){return this.origin instanceof Ni?this.origin.elementRef:this.origin}_getOriginElement(){return this.origin instanceof Ni?this.origin.elementRef.nativeElement:this.origin instanceof d.aKT?this.origin.nativeElement:typeof Element<"u"&&this.origin instanceof Element?this.origin:null}attachOverlay(){this._overlayRef?this._overlayRef.getConfig().hasBackdrop=this.hasBackdrop:this._createOverlay(),this._overlayRef.hasAttached()||this._overlayRef.attach(this._templatePortal),this.hasBackdrop?this._backdropSubscription=this._overlayRef.backdropClick().subscribe(Se=>{this.backdropClick.emit(Se)}):this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this.positionChange.observers.length>0&&(this._positionSubscription=this._position.positionChanges.pipe(function W(ye,ke=!1){return(0,Ae.N)((Se,ge)=>{let N=0;Se.subscribe((0,j._)(ge,Z=>{const Me=ye(Z,N++);(Me||ke)&&ge.next(Z),!Me&&ge.complete()}))})}(()=>this.positionChange.observers.length>0)).subscribe(Se=>{this._ngZone.run(()=>this.positionChange.emit(Se)),0===this.positionChange.observers.length&&this._positionSubscription.unsubscribe()})),this.open=!0}detachOverlay(){this._overlayRef?.detach(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this.open=!1}static \u0275fac=function(ge){return new(ge||ye)};static \u0275dir=d.FsC({type:ye,selectors:[["","cdk-connected-overlay",""],["","connected-overlay",""],["","cdkConnectedOverlay",""]],inputs:{origin:[0,"cdkConnectedOverlayOrigin","origin"],positions:[0,"cdkConnectedOverlayPositions","positions"],positionStrategy:[0,"cdkConnectedOverlayPositionStrategy","positionStrategy"],offsetX:[0,"cdkConnectedOverlayOffsetX","offsetX"],offsetY:[0,"cdkConnectedOverlayOffsetY","offsetY"],width:[0,"cdkConnectedOverlayWidth","width"],height:[0,"cdkConnectedOverlayHeight","height"],minWidth:[0,"cdkConnectedOverlayMinWidth","minWidth"],minHeight:[0,"cdkConnectedOverlayMinHeight","minHeight"],backdropClass:[0,"cdkConnectedOverlayBackdropClass","backdropClass"],panelClass:[0,"cdkConnectedOverlayPanelClass","panelClass"],viewportMargin:[0,"cdkConnectedOverlayViewportMargin","viewportMargin"],scrollStrategy:[0,"cdkConnectedOverlayScrollStrategy","scrollStrategy"],open:[0,"cdkConnectedOverlayOpen","open"],disableClose:[0,"cdkConnectedOverlayDisableClose","disableClose"],transformOriginSelector:[0,"cdkConnectedOverlayTransformOriginOn","transformOriginSelector"],hasBackdrop:[2,"cdkConnectedOverlayHasBackdrop","hasBackdrop",v.L39],lockPosition:[2,"cdkConnectedOverlayLockPosition","lockPosition",v.L39],flexibleDimensions:[2,"cdkConnectedOverlayFlexibleDimensions","flexibleDimensions",v.L39],growAfterOpen:[2,"cdkConnectedOverlayGrowAfterOpen","growAfterOpen",v.L39],push:[2,"cdkConnectedOverlayPush","push",v.L39],disposeOnNavigation:[2,"cdkConnectedOverlayDisposeOnNavigation","disposeOnNavigation",v.L39]},outputs:{backdropClick:"backdropClick",positionChange:"positionChange",attach:"attach",detach:"detach",overlayKeydown:"overlayKeydown",overlayOutsideClick:"overlayOutsideClick"},exportAs:["cdkConnectedOverlay"],features:[d.OA$]})}return ye})();const vt={provide:vi,useFactory:function Ri(ye){const ke=(0,i.WQX)(i.zZn);return()=>lt(ke)}};let ee=(()=>{class ye{static \u0275fac=function(ge){return new(ge||ye)};static \u0275mod=d.$C({type:ye});static \u0275inj=i.G2t({providers:[gn,vt],imports:[V.jI,Pe.jc,A.E9,A.E9]})}return ye})()},3300(Zt,pe,l){"use strict";let i;function v(T){return function d(){if(null==i&&typeof window<"u")try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:()=>i=!0}))}finally{i=i||!1}return i}()?T:!!T.capture}l.d(pe,{B:()=>v})},9842(Zt,pe,l){"use strict";l.d(pe,{O:()=>w});var i=l(2615),d=l(3664),v=l(177);let T;try{T=typeof Intl<"u"&&Intl.v8BreakIterator}catch{T=!1}let w=(()=>{class e{_platformId=(0,i.WQX)(d.Agw);isBrowser=this._platformId?(0,v.UE)(this._platformId):"object"==typeof document&&!!document;EDGE=this.isBrowser&&/(edge)/i.test(navigator.userAgent);TRIDENT=this.isBrowser&&/(msie|trident)/i.test(navigator.userAgent);BLINK=this.isBrowser&&!(!window.chrome&&!T)&&typeof CSS<"u"&&!this.EDGE&&!this.TRIDENT;WEBKIT=this.isBrowser&&/AppleWebKit/i.test(navigator.userAgent)&&!this.BLINK&&!this.EDGE&&!this.TRIDENT;IOS=this.isBrowser&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!("MSStream"in window);FIREFOX=this.isBrowser&&/(firefox|minefield)/i.test(navigator.userAgent);ANDROID=this.isBrowser&&/android/i.test(navigator.userAgent)&&!this.TRIDENT;SAFARI=this.isBrowser&&/safari/i.test(navigator.userAgent)&&this.WEBKIT;constructor(){}static \u0275fac=function(u){return new(u||e)};static \u0275prov=i.jDH({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})()},6939(Zt,pe,l){"use strict";l.d(pe,{A8:()=>B,I3:()=>W,VA:()=>A,aI:()=>Ce,bV:()=>Ae,jc:()=>re,lb:()=>le});var d=l(2615),v=l(3664),T=l(7705);class C{_attachedHost;attach(Ee){return this._attachedHost=Ee,Ee.attach(this)}detach(){let Ee=this._attachedHost;null!=Ee&&(this._attachedHost=null,Ee.detach())}get isAttached(){return null!=this._attachedHost}setAttachedHost(Ee){this._attachedHost=Ee}}class B extends C{component;viewContainerRef;injector;projectableNodes;constructor(Ee,V,ce,be){super(),this.component=Ee,this.viewContainerRef=V,this.injector=ce,this.projectableNodes=be}}class A extends C{templateRef;viewContainerRef;context;injector;constructor(Ee,V,ce,be){super(),this.templateRef=Ee,this.viewContainerRef=V,this.context=ce,this.injector=be}get origin(){return this.templateRef.elementRef}attach(Ee,V=this.context){return this.context=V,super.attach(Ee)}detach(){return this.context=void 0,super.detach()}}class Pe extends C{element;constructor(Ee){super(),this.element=Ee instanceof v.aKT?Ee.nativeElement:Ee}}class le{_attachedPortal;_disposeFn;_isDisposed=!1;hasAttached(){return!!this._attachedPortal}attach(Ee){return Ee instanceof B?(this._attachedPortal=Ee,this.attachComponentPortal(Ee)):Ee instanceof A?(this._attachedPortal=Ee,this.attachTemplatePortal(Ee)):this.attachDomPortal&&Ee instanceof Pe?(this._attachedPortal=Ee,this.attachDomPortal(Ee)):void 0}attachDomPortal=null;detach(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()}dispose(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0}setDisposeFn(Ee){this._disposeFn=Ee}_invokeDisposeFn(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}class Ce extends le{outletElement;_appRef;_defaultInjector;constructor(Ee,V,ce){super(),this.outletElement=Ee,this._appRef=V,this._defaultInjector=ce}attachComponentPortal(Ee){let V;if(Ee.viewContainerRef){const ce=Ee.injector||Ee.viewContainerRef.injector,be=ce.get(v.Ab1,null,{optional:!0})||void 0;V=Ee.viewContainerRef.createComponent(Ee.component,{index:Ee.viewContainerRef.length,injector:ce,ngModuleRef:be,projectableNodes:Ee.projectableNodes||void 0}),this.setDisposeFn(()=>V.destroy())}else{const ce=this._appRef,be=Ee.injector||this._defaultInjector||d.zZn.NULL,ne=be.get(d.uvJ,ce.injector);V=(0,T.a0P)(Ee.component,{elementInjector:be,environmentInjector:ne,projectableNodes:Ee.projectableNodes||void 0}),ce.attachView(V.hostView),this.setDisposeFn(()=>{ce.viewCount>0&&ce.detachView(V.hostView),V.destroy()})}return this.outletElement.appendChild(this._getComponentRootNode(V)),this._attachedPortal=Ee,V}attachTemplatePortal(Ee){let V=Ee.viewContainerRef,ce=V.createEmbeddedView(Ee.templateRef,Ee.context,{injector:Ee.injector});return ce.rootNodes.forEach(be=>this.outletElement.appendChild(be)),ce.detectChanges(),this.setDisposeFn(()=>{let be=V.indexOf(ce);-1!==be&&V.remove(be)}),this._attachedPortal=Ee,ce}attachDomPortal=Ee=>{const V=Ee.element,ce=this.outletElement.ownerDocument.createComment("dom-portal");V.parentNode.insertBefore(ce,V),this.outletElement.appendChild(V),this._attachedPortal=Ee,super.setDisposeFn(()=>{ce.parentNode&&ce.parentNode.replaceChild(V,ce)})};dispose(){super.dispose(),this.outletElement.remove()}_getComponentRootNode(Ee){return Ee.hostView.rootNodes[0]}}let Ae=(()=>{class xe extends A{constructor(){super((0,d.WQX)(v.C4Q),(0,d.WQX)(v.c1b))}static \u0275fac=function(ce){return new(ce||xe)};static \u0275dir=v.FsC({type:xe,selectors:[["","cdkPortal",""]],exportAs:["cdkPortal"],features:[v.Vt3]})}return xe})(),W=(()=>{class xe extends le{_moduleRef=(0,d.WQX)(v.Ab1,{optional:!0});_document=(0,d.WQX)(d.qQL);_viewContainerRef=(0,d.WQX)(v.c1b);_isInitialized=!1;_attachedRef;constructor(){super()}get portal(){return this._attachedPortal}set portal(V){this.hasAttached()&&!V&&!this._isInitialized||(this.hasAttached()&&super.detach(),V&&super.attach(V),this._attachedPortal=V||null)}attached=new v.bkB;get attachedRef(){return this._attachedRef}ngOnInit(){this._isInitialized=!0}ngOnDestroy(){super.dispose(),this._attachedRef=this._attachedPortal=null}attachComponentPortal(V){V.setAttachedHost(this);const ce=null!=V.viewContainerRef?V.viewContainerRef:this._viewContainerRef,be=ce.createComponent(V.component,{index:ce.length,injector:V.injector||ce.injector,projectableNodes:V.projectableNodes||void 0,ngModuleRef:this._moduleRef||void 0});return ce!==this._viewContainerRef&&this._getRootNode().appendChild(be.hostView.rootNodes[0]),super.setDisposeFn(()=>be.destroy()),this._attachedPortal=V,this._attachedRef=be,this.attached.emit(be),be}attachTemplatePortal(V){V.setAttachedHost(this);const ce=this._viewContainerRef.createEmbeddedView(V.templateRef,V.context,{injector:V.injector});return super.setDisposeFn(()=>this._viewContainerRef.clear()),this._attachedPortal=V,this._attachedRef=ce,this.attached.emit(ce),ce}attachDomPortal=V=>{const ce=V.element,be=this._document.createComment("dom-portal");V.setAttachedHost(this),ce.parentNode.insertBefore(be,ce),this._getRootNode().appendChild(ce),this._attachedPortal=V,super.setDisposeFn(()=>{be.parentNode&&be.parentNode.replaceChild(ce,be)})};_getRootNode(){const V=this._viewContainerRef.element.nativeElement;return V.nodeType===V.ELEMENT_NODE?V:V.parentNode}static \u0275fac=function(ce){return new(ce||xe)};static \u0275dir=v.FsC({type:xe,selectors:[["","cdkPortalOutlet",""]],inputs:{portal:[0,"cdkPortalOutlet","portal"]},outputs:{attached:"attached"},exportAs:["cdkPortalOutlet"],features:[v.Vt3]})}return xe})(),re=(()=>{class xe{static \u0275fac=function(ce){return new(ce||xe)};static \u0275mod=v.$C({type:xe});static \u0275inj=d.G2t({})}return xe})()},9046(Zt,pe,l){"use strict";l.d(pe,{Y:()=>d});var i=l(3664);let d=(()=>{class v{static \u0275fac=function(e){return new(e||v)};static \u0275cmp=i.VBU({type:v,selectors:[["ng-component"]],exportAs:["cdkVisuallyHidden"],decls:0,vars:0,template:function(e,O){},styles:[".cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .cdk-visually-hidden{left:auto;right:0}\n"],encapsulation:2,changeDetection:0})}return v})()},5718(Zt,pe,l){"use strict";l.d(pe,{uv:()=>Z,Gj:()=>bt,R:()=>N,E9:()=>tn,Xj:()=>at});var i=l(2615),d=l(3664),v=l(1413),T=l(7673),w=l(1985),e=l(6780),O=l(8359);const f={schedule(on){let un=requestAnimationFrame,Nt=cancelAnimationFrame;const{delegate:dn}=f;dn&&(un=dn.requestAnimationFrame,Nt=dn.cancelAnimationFrame);const xn=un(Jn=>{Nt=void 0,on(Jn)});return new O.yU(()=>Nt?.(xn))},requestAnimationFrame(...on){const{delegate:un}=f;return(un?.requestAnimationFrame||requestAnimationFrame)(...on)},cancelAnimationFrame(...on){const{delegate:un}=f;return(un?.cancelAnimationFrame||cancelAnimationFrame)(...on)},delegate:void 0};var L=l(9687);new class C extends L.q{flush(un){let Nt;this._active=!0,un?Nt=un.id:(Nt=this._scheduled,this._scheduled=void 0);const{actions:dn}=this;let xn;un=un||dn.shift();do{if(xn=un.execute(un.state,un.delay))break}while((un=dn[0])&&un.id===Nt&&dn.shift());if(this._active=!1,xn){for(;(un=dn[0])&&un.id===Nt&&dn.shift();)un.unsubscribe();throw xn}}}(class u extends e.R{constructor(un,Nt){super(un,Nt),this.scheduler=un,this.work=Nt}requestAsyncId(un,Nt,dn=0){return null!==dn&&dn>0?super.requestAsyncId(un,Nt,dn):(un.actions.push(this),un._scheduled||(un._scheduled=f.requestAnimationFrame(()=>un.flush(void 0))))}recycleAsyncId(un,Nt,dn=0){var xn;if(null!=dn?dn>0:this.delay>0)return super.recycleAsyncId(un,Nt,dn);const{actions:Jn}=un;null!=Nt&&Nt===un._scheduled&&(null===(xn=Jn[Jn.length-1])||void 0===xn?void 0:xn.id)!==Nt&&(f.cancelAnimationFrame(Nt),un._scheduled=void 0)}});let le,Pe=1;const Ce={};function Ae(on){return on in Ce&&(delete Ce[on],!0)}const j={setImmediate(on){const un=Pe++;return Ce[un]=!0,le||(le=Promise.resolve()),le.then(()=>Ae(un)&&on()),un},clearImmediate(on){Ae(on)}},{setImmediate:G,clearImmediate:re}=j,xe={setImmediate(...on){const{delegate:un}=xe;return(un?.setImmediate||G)(...on)},clearImmediate(on){const{delegate:un}=xe;return(un?.clearImmediate||re)(on)},delegate:void 0};new class V extends L.q{flush(un){this._active=!0;const Nt=this._scheduled;this._scheduled=void 0;const{actions:dn}=this;let xn;un=un||dn.shift();do{if(xn=un.execute(un.state,un.delay))break}while((un=dn[0])&&un.id===Nt&&dn.shift());if(this._active=!1,xn){for(;(un=dn[0])&&un.id===Nt&&dn.shift();)un.unsubscribe();throw xn}}}(class Ee extends e.R{constructor(un,Nt){super(un,Nt),this.scheduler=un,this.work=Nt}requestAsyncId(un,Nt,dn=0){return null!==dn&&dn>0?super.requestAsyncId(un,Nt,dn):(un.actions.push(this),un._scheduled||(un._scheduled=xe.setImmediate(un.flush.bind(un,void 0))))}recycleAsyncId(un,Nt,dn=0){var xn;if(null!=dn?dn>0:this.delay>0)return super.recycleAsyncId(un,Nt,dn);const{actions:Jn}=un;null!=Nt&&(null===(xn=Jn[Jn.length-1])||void 0===xn?void 0:xn.id)!==Nt&&(xe.clearImmediate(Nt),un._scheduled===Nt&&(un._scheduled=void 0))}});var ne=l(3798),J=l(5964),De=l(7847),Re=l(9842),Xe=l(1577),_e=l(7860),he=l(8203);let N=(()=>{class on{_ngZone=(0,i.WQX)(d.SKi);_platform=(0,i.WQX)(Re.O);_renderer=(0,i.WQX)(d._9s).createRenderer(null,null);_cleanupGlobalListener;constructor(){}_scrolled=new v.B;_scrolledCount=0;scrollContainers=new Map;register(Nt){this.scrollContainers.has(Nt)||this.scrollContainers.set(Nt,Nt.elementScrolled().subscribe(()=>this._scrolled.next(Nt)))}deregister(Nt){const dn=this.scrollContainers.get(Nt);dn&&(dn.unsubscribe(),this.scrollContainers.delete(Nt))}scrolled(Nt=20){return this._platform.isBrowser?new w.c(dn=>{this._cleanupGlobalListener||(this._cleanupGlobalListener=this._ngZone.runOutsideAngular(()=>this._renderer.listen("document","scroll",()=>this._scrolled.next())));const xn=Nt>0?this._scrolled.pipe((0,ne.Z)(Nt)).subscribe(dn):this._scrolled.subscribe(dn);return this._scrolledCount++,()=>{xn.unsubscribe(),this._scrolledCount--,this._scrolledCount||(this._cleanupGlobalListener?.(),this._cleanupGlobalListener=void 0)}}):(0,T.of)()}ngOnDestroy(){this._cleanupGlobalListener?.(),this._cleanupGlobalListener=void 0,this.scrollContainers.forEach((Nt,dn)=>this.deregister(dn)),this._scrolled.complete()}ancestorScrolled(Nt,dn){const xn=this.getAncestorScrollContainers(Nt);return this.scrolled(dn).pipe((0,J.p)(Jn=>!Jn||xn.indexOf(Jn)>-1))}getAncestorScrollContainers(Nt){const dn=[];return this.scrollContainers.forEach((xn,Jn)=>{this._scrollableContainsElement(Jn,Nt)&&dn.push(Jn)}),dn}_scrollableContainsElement(Nt,dn){let xn=(0,De.i8)(dn),Jn=Nt.getElementRef().nativeElement;do{if(xn==Jn)return!0}while(xn=xn.parentElement);return!1}static \u0275fac=function(dn){return new(dn||on)};static \u0275prov=i.jDH({token:on,factory:on.\u0275fac,providedIn:"root"})}return on})(),Z=(()=>{class on{elementRef=(0,i.WQX)(d.aKT);scrollDispatcher=(0,i.WQX)(N);ngZone=(0,i.WQX)(d.SKi);dir=(0,i.WQX)(Xe.dS,{optional:!0});_scrollElement=this.elementRef.nativeElement;_destroyed=new v.B;_renderer=(0,i.WQX)(d.sFG);_cleanupScroll;_elementScrolled=new v.B;constructor(){}ngOnInit(){this._cleanupScroll=this.ngZone.runOutsideAngular(()=>this._renderer.listen(this._scrollElement,"scroll",Nt=>this._elementScrolled.next(Nt))),this.scrollDispatcher.register(this)}ngOnDestroy(){this._cleanupScroll?.(),this._elementScrolled.complete(),this.scrollDispatcher.deregister(this),this._destroyed.next(),this._destroyed.complete()}elementScrolled(){return this._elementScrolled}getElementRef(){return this.elementRef}scrollTo(Nt){const dn=this.elementRef.nativeElement,xn=this.dir&&"rtl"==this.dir.value;null==Nt.left&&(Nt.left=xn?Nt.end:Nt.start),null==Nt.right&&(Nt.right=xn?Nt.start:Nt.end),null!=Nt.bottom&&(Nt.top=dn.scrollHeight-dn.clientHeight-Nt.bottom),xn&&(0,_e.BD)()!=_e.r5.NORMAL?(null!=Nt.left&&(Nt.right=dn.scrollWidth-dn.clientWidth-Nt.left),(0,_e.BD)()==_e.r5.INVERTED?Nt.left=Nt.right:(0,_e.BD)()==_e.r5.NEGATED&&(Nt.left=Nt.right?-Nt.right:Nt.right)):null!=Nt.right&&(Nt.left=dn.scrollWidth-dn.clientWidth-Nt.right),this._applyScrollToOptions(Nt)}_applyScrollToOptions(Nt){const dn=this.elementRef.nativeElement;(0,_e.CZ)()?dn.scrollTo(Nt):(null!=Nt.top&&(dn.scrollTop=Nt.top),null!=Nt.left&&(dn.scrollLeft=Nt.left))}measureScrollOffset(Nt){const dn="left",Jn=this.elementRef.nativeElement;if("top"==Nt)return Jn.scrollTop;if("bottom"==Nt)return Jn.scrollHeight-Jn.clientHeight-Jn.scrollTop;const xi=this.dir&&"rtl"==this.dir.value;return"start"==Nt?Nt=xi?"right":dn:"end"==Nt&&(Nt=xi?dn:"right"),xi&&(0,_e.BD)()==_e.r5.INVERTED?Nt==dn?Jn.scrollWidth-Jn.clientWidth-Jn.scrollLeft:Jn.scrollLeft:xi&&(0,_e.BD)()==_e.r5.NEGATED?Nt==dn?Jn.scrollLeft+Jn.scrollWidth-Jn.clientWidth:-Jn.scrollLeft:Nt==dn?Jn.scrollLeft:Jn.scrollWidth-Jn.clientWidth-Jn.scrollLeft}static \u0275fac=function(dn){return new(dn||on)};static \u0275dir=d.FsC({type:on,selectors:[["","cdk-scrollable",""],["","cdkScrollable",""]]})}return on})(),at=(()=>{class on{_platform=(0,i.WQX)(Re.O);_listeners;_viewportSize;_change=new v.B;_document=(0,i.WQX)(i.qQL);constructor(){const Nt=(0,i.WQX)(d.SKi),dn=(0,i.WQX)(d._9s).createRenderer(null,null);Nt.runOutsideAngular(()=>{if(this._platform.isBrowser){const xn=Jn=>this._change.next(Jn);this._listeners=[dn.listen("window","resize",xn),dn.listen("window","orientationchange",xn)]}this.change().subscribe(()=>this._viewportSize=null)})}ngOnDestroy(){this._listeners?.forEach(Nt=>Nt()),this._change.complete()}getViewportSize(){this._viewportSize||this._updateViewportSize();const Nt={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),Nt}getViewportRect(){const Nt=this.getViewportScrollPosition(),{width:dn,height:xn}=this.getViewportSize();return{top:Nt.top,left:Nt.left,bottom:Nt.top+xn,right:Nt.left+dn,height:xn,width:dn}}getViewportScrollPosition(){if(!this._platform.isBrowser)return{top:0,left:0};const Nt=this._document,dn=this._getWindow(),xn=Nt.documentElement,Jn=xn.getBoundingClientRect();return{top:-Jn.top||Nt.body.scrollTop||dn.scrollY||xn.scrollTop||0,left:-Jn.left||Nt.body.scrollLeft||dn.scrollX||xn.scrollLeft||0}}change(Nt=20){return Nt>0?this._change.pipe((0,ne.Z)(Nt)):this._change}_getWindow(){return this._document.defaultView||window}_updateViewportSize(){const Nt=this._getWindow();this._viewportSize=this._platform.isBrowser?{width:Nt.innerWidth,height:Nt.innerHeight}:{width:0,height:0}}static \u0275fac=function(dn){return new(dn||on)};static \u0275prov=i.jDH({token:on,factory:on.\u0275fac,providedIn:"root"})}return on})(),bt=(()=>{class on{static \u0275fac=function(dn){return new(dn||on)};static \u0275mod=d.$C({type:on});static \u0275inj=i.G2t({})}return on})(),tn=(()=>{class on{static \u0275fac=function(dn){return new(dn||on)};static \u0275mod=d.$C({type:on});static \u0275inj=i.G2t({imports:[he.jI,bt,he.jI,bt]})}return on})()},7860(Zt,pe,l){"use strict";l.d(pe,{BD:()=>w,CZ:()=>T,r5:()=>i});var i=function(e){return e[e.NORMAL=0]="NORMAL",e[e.NEGATED=1]="NEGATED",e[e.INVERTED=2]="INVERTED",e}(i||{});let d,v;function T(){if(null==v){if("object"!=typeof document||!document||"function"!=typeof Element||!Element)return v=!1,v;if(document.documentElement?.style&&"scrollBehavior"in document.documentElement.style)v=!0;else{const e=Element.prototype.scrollTo;v=!!e&&!/\{\s*\[native code\]\s*\}/.test(e.toString())}}return v}function w(){if("object"!=typeof document||!document)return i.NORMAL;if(null==d){const e=document.createElement("div"),O=e.style;e.dir="rtl",O.width="1px",O.overflow="auto",O.visibility="hidden",O.pointerEvents="none",O.position="absolute";const f=document.createElement("div"),u=f.style;u.width="2px",u.height="1px",e.appendChild(f),document.body.appendChild(e),d=i.NORMAL,0===e.scrollLeft&&(e.scrollLeft=1,d=0===e.scrollLeft?i.NEGATED:i.INVERTED),e.remove()}return d}},3869(Zt,pe,l){"use strict";l.d(pe,{C:()=>d});var i=l(1413);class d{_multiple;_emitChanges;compareWith;_selection=new Set;_deselectedToEmit=[];_selectedToEmit=[];_selected;get selected(){return this._selected||(this._selected=Array.from(this._selection.values())),this._selected}changed=new i.B;constructor(w=!1,e,O=!0,f){this._multiple=w,this._emitChanges=O,this.compareWith=f,e&&e.length&&(w?e.forEach(u=>this._markSelected(u)):this._markSelected(e[0]),this._selectedToEmit.length=0)}select(...w){this._verifyValueAssignment(w),w.forEach(O=>this._markSelected(O));const e=this._hasQueuedChanges();return this._emitChangeEvent(),e}deselect(...w){this._verifyValueAssignment(w),w.forEach(O=>this._unmarkSelected(O));const e=this._hasQueuedChanges();return this._emitChangeEvent(),e}setSelection(...w){this._verifyValueAssignment(w);const e=this.selected,O=new Set(w.map(u=>this._getConcreteValue(u)));w.forEach(u=>this._markSelected(u)),e.filter(u=>!O.has(this._getConcreteValue(u,O))).forEach(u=>this._unmarkSelected(u));const f=this._hasQueuedChanges();return this._emitChangeEvent(),f}toggle(w){return this.isSelected(w)?this.deselect(w):this.select(w)}clear(w=!0){this._unmarkAll();const e=this._hasQueuedChanges();return w&&this._emitChangeEvent(),e}isSelected(w){return this._selection.has(this._getConcreteValue(w))}isEmpty(){return 0===this._selection.size}hasValue(){return!this.isEmpty()}sort(w){this._multiple&&this.selected&&this._selected.sort(w)}isMultipleSelection(){return this._multiple}_emitChangeEvent(){this._selected=null,(this._selectedToEmit.length||this._deselectedToEmit.length)&&(this.changed.next({source:this,added:this._selectedToEmit,removed:this._deselectedToEmit}),this._deselectedToEmit=[],this._selectedToEmit=[])}_markSelected(w){w=this._getConcreteValue(w),this.isSelected(w)||(this._multiple||this._unmarkAll(),this.isSelected(w)||this._selection.add(w),this._emitChanges&&this._selectedToEmit.push(w))}_unmarkSelected(w){w=this._getConcreteValue(w),this.isSelected(w)&&(this._selection.delete(w),this._emitChanges&&this._deselectedToEmit.push(w))}_unmarkAll(){this.isEmpty()||this._selection.forEach(w=>this._unmarkSelected(w))}_verifyValueAssignment(w){}_hasQueuedChanges(){return!(!this._deselectedToEmit.length&&!this._selectedToEmit.length)}_getConcreteValue(w,e){if(this.compareWith){e=e??this._selection;for(let O of e)if(this.compareWith(w,O))return O;return w}return w}}},4522(Zt,pe,l){"use strict";let i;function v(e){if(function d(){if(null==i){const e=typeof document<"u"?document.head:null;i=!(!e||!e.createShadowRoot&&!e.attachShadow)}return i}()){const O=e.getRootNode?e.getRootNode():null;if(typeof ShadowRoot<"u"&&ShadowRoot&&O instanceof ShadowRoot)return O}return null}function T(){let e=typeof document<"u"&&document?document.activeElement:null;for(;e&&e.shadowRoot;){const O=e.shadowRoot.activeElement;if(O===e)break;e=O}return e}function w(e){return e.composedPath?e.composedPath()[0]:e.target}l.d(pe,{Fb:()=>w,KT:()=>v,vc:()=>T})},7768(Zt,pe,l){"use strict";l.d(pe,{FK:()=>ne,Up:()=>ce,VI:()=>V,nb:()=>G,oX:()=>W,uY:()=>J,v5:()=>be,x8:()=>Ee});var i=l(2615),d=l(3664),v=l(7705),T=l(9295),w=l(9417),e=l(1413),O=l(7673),f=l(9172),u=l(6977),L=l(1577),C=l(9726),B=l(4123),A=l(7336),Pe=l(438),le=l(4522),Ce=l(8203);const Ae=["*"];function j(De,Re){1&De&&d.SdG(0)}let W=(()=>{class De{_elementRef=(0,i.WQX)(d.aKT);constructor(){}focus(){this._elementRef.nativeElement.focus()}static \u0275fac=function(_e){return new(_e||De)};static \u0275dir=d.FsC({type:De,selectors:[["","cdkStepHeader",""]],hostAttrs:["role","tab"]})}return De})(),G=(()=>{class De{template=(0,i.WQX)(d.C4Q);constructor(){}static \u0275fac=function(_e){return new(_e||De)};static \u0275dir=d.FsC({type:De,selectors:[["","cdkStepLabel",""]]})}return De})();const Ee=new i.nKC("STEPPER_GLOBAL_OPTIONS");let V=(()=>{class De{_stepperOptions;_stepper=(0,i.WQX)(ce);_displayDefaultIndicatorType;stepLabel;_childForms;content;stepControl;get interacted(){return this._interacted()}set interacted(Xe){this._interacted.set(Xe)}_interacted=(0,i.vPA)(!1);interactedStream=new d.bkB;label;errorMessage;ariaLabel;ariaLabelledby;get state(){return this._state()}set state(Xe){this._state.set(Xe)}_state=(0,i.vPA)(void 0);get editable(){return this._editable()}set editable(Xe){this._editable.set(Xe)}_editable=(0,i.vPA)(!0);optional=!1;get completed(){const Xe=this._completedOverride(),_e=this._interacted();return Xe??(_e&&(!this.stepControl||this.stepControl.valid))}set completed(Xe){this._completedOverride.set(Xe)}_completedOverride=(0,i.vPA)(null);index=(0,i.vPA)(-1);isSelected=(0,T.EW)(()=>this._stepper.selectedIndex===this.index());indicatorType=(0,T.EW)(()=>{const Xe=this.isSelected(),_e=this.completed,he=this._state()??"number",Dt=this._editable();return this._showError()&&this.hasError&&!Xe?"error":this._displayDefaultIndicatorType?!_e||Xe?"number":Dt?"edit":"done":_e&&!Xe?"done":_e&&Xe?he:Dt&&Xe?"edit":he});isNavigable=(0,T.EW)(()=>{const Xe=this.isSelected();return this.completed||Xe||!this._stepper.linear});get hasError(){return this._customError()??this._getDefaultError()}set hasError(Xe){this._customError.set(Xe)}_customError=(0,i.vPA)(null);_getDefaultError(){return this.interacted&&!!this.stepControl?.invalid}constructor(){const Xe=(0,i.WQX)(Ee,{optional:!0});this._stepperOptions=Xe||{},this._displayDefaultIndicatorType=!1!==this._stepperOptions.displayDefaultIndicatorType}select(){this._stepper.selected=this}reset(){this._interacted.set(!1),null!=this._completedOverride()&&this._completedOverride.set(!1),null!=this._customError()&&this._customError.set(!1),this.stepControl&&(this._childForms?.forEach(Xe=>Xe.resetForm?.()),this.stepControl.reset())}ngOnChanges(){this._stepper._stateChanged()}_markAsInteracted(){this._interacted()||(this._interacted.set(!0),this.interactedStream.emit(this))}_showError(){return this._stepperOptions.showError??null!=this._customError()}static \u0275fac=function(_e){return new(_e||De)};static \u0275cmp=d.VBU({type:De,selectors:[["cdk-step"]],contentQueries:function(_e,he,Dt){if(1&_e&&(d.wni(Dt,G,5),d.wni(Dt,w.ZU,5)),2&_e){let lt;d.mGM(lt=d.lsd())&&(he.stepLabel=lt.first),d.mGM(lt=d.lsd())&&(he._childForms=lt)}},viewQuery:function(_e,he){if(1&_e&&d.GBs(d.C4Q,7),2&_e){let Dt;d.mGM(Dt=d.lsd())&&(he.content=Dt.first)}},inputs:{stepControl:"stepControl",label:"label",errorMessage:"errorMessage",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],state:"state",editable:[2,"editable","editable",v.L39],optional:[2,"optional","optional",v.L39],completed:[2,"completed","completed",v.L39],hasError:[2,"hasError","hasError",v.L39]},outputs:{interactedStream:"interacted"},exportAs:["cdkStep"],features:[d.OA$],ngContentSelectors:Ae,decls:1,vars:0,template:function(_e,he){1&_e&&(d.NAR(),d.PeT(0,j,1,0,"ng-template"))},encapsulation:2,changeDetection:0})}return De})(),ce=(()=>{class De{_dir=(0,i.WQX)(L.dS,{optional:!0});_changeDetectorRef=(0,i.WQX)(v.gRc);_elementRef=(0,i.WQX)(d.aKT);_destroyed=new e.B;_keyManager;_steps;steps=new d.rOR;_stepHeader;_sortedHeaders=new d.rOR;linear=!1;get selectedIndex(){return this._selectedIndex()}set selectedIndex(Xe){this._steps?(this._isValidIndex(Xe),this.selectedIndex!==Xe&&(this.selected?._markAsInteracted(),!this._anyControlsInvalidOrPending(Xe)&&(Xe>=this.selectedIndex||this.steps.toArray()[Xe].editable)&&this._updateSelectedItemIndex(Xe))):this._selectedIndex.set(Xe)}_selectedIndex=(0,i.vPA)(0);get selected(){return this.steps?this.steps.toArray()[this.selectedIndex]:void 0}set selected(Xe){this.selectedIndex=Xe&&this.steps?this.steps.toArray().indexOf(Xe):-1}selectionChange=new d.bkB;selectedIndexChange=new d.bkB;_groupId=(0,i.WQX)(C.g).getId("cdk-stepper-");get orientation(){return this._orientation}set orientation(Xe){this._orientation=Xe,this._keyManager&&this._keyManager.withVerticalOrientation("vertical"===Xe)}_orientation="horizontal";constructor(){}ngAfterContentInit(){this._steps.changes.pipe((0,f.Z)(this._steps),(0,u.Q)(this._destroyed)).subscribe(Xe=>{this.steps.reset(Xe.filter(_e=>_e._stepper===this)),this.steps.forEach((_e,he)=>_e.index.set(he)),this.steps.notifyOnChanges()})}ngAfterViewInit(){if(this._stepHeader.changes.pipe((0,f.Z)(this._stepHeader),(0,u.Q)(this._destroyed)).subscribe(Xe=>{this._sortedHeaders.reset(Xe.toArray().sort((_e,he)=>_e._elementRef.nativeElement.compareDocumentPosition(he._elementRef.nativeElement)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1)),this._sortedHeaders.notifyOnChanges()}),this._keyManager=new B.B(this._sortedHeaders).withWrap().withHomeAndEnd().withVerticalOrientation("vertical"===this._orientation),this._keyManager.updateActiveItem(this.selectedIndex),(this._dir?this._dir.change:(0,O.of)()).pipe((0,f.Z)(this._layoutDirection()),(0,u.Q)(this._destroyed)).subscribe(Xe=>this._keyManager?.withHorizontalOrientation(Xe)),this._keyManager.updateActiveItem(this.selectedIndex),this.steps.changes.subscribe(()=>{this.selected||this._selectedIndex.set(Math.max(this.selectedIndex-1,0))}),this._isValidIndex(this.selectedIndex)||this._selectedIndex.set(0),this.linear&&this.selectedIndex>0){const Xe=this.steps.toArray().slice(0,this._selectedIndex());for(const _e of Xe)_e._markAsInteracted()}}ngOnDestroy(){this._keyManager?.destroy(),this.steps.destroy(),this._sortedHeaders.destroy(),this._destroyed.next(),this._destroyed.complete()}next(){this.selectedIndex=Math.min(this._selectedIndex()+1,this.steps.length-1)}previous(){this.selectedIndex=Math.max(this._selectedIndex()-1,0)}reset(){this._updateSelectedItemIndex(0),this.steps.forEach(Xe=>Xe.reset()),this._stateChanged()}_getStepLabelId(Xe){return`${this._groupId}-label-${Xe}`}_getStepContentId(Xe){return`${this._groupId}-content-${Xe}`}_stateChanged(){this._changeDetectorRef.markForCheck()}_getAnimationDirection(Xe){const _e=Xe-this._selectedIndex();return _e<0?"rtl"===this._layoutDirection()?"next":"previous":_e>0?"rtl"===this._layoutDirection()?"previous":"next":"current"}_getFocusIndex(){return this._keyManager?this._keyManager.activeItemIndex:this._selectedIndex()}_updateSelectedItemIndex(Xe){const _e=this.steps.toArray(),he=this._selectedIndex();this.selectionChange.emit({selectedIndex:Xe,previouslySelectedIndex:he,selectedStep:_e[Xe],previouslySelectedStep:_e[he]}),this._keyManager&&(this._containsFocus()?this._keyManager.setActiveItem(Xe):this._keyManager.updateActiveItem(Xe)),this._selectedIndex.set(Xe),this.selectedIndexChange.emit(Xe),this._stateChanged()}_onKeydown(Xe){const _e=(0,A.rp)(Xe),he=Xe.keyCode,Dt=this._keyManager;null==Dt?.activeItemIndex||_e||he!==Pe.t6&&he!==Pe.Fm?Dt?.setFocusOrigin("keyboard").onKeydown(Xe):(this.selectedIndex=Dt.activeItemIndex,Xe.preventDefault())}_anyControlsInvalidOrPending(Xe){return!!(this.linear&&Xe>=0)&&this.steps.toArray().slice(0,Xe).some(_e=>{const he=_e.stepControl;return(he?he.invalid||he.pending||!_e.interacted:!_e.completed)&&!_e.optional&&!_e._completedOverride()})}_layoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_containsFocus(){const Xe=this._elementRef.nativeElement,_e=(0,le.vc)();return Xe===_e||Xe.contains(_e)}_isValidIndex(Xe){return Xe>-1&&(!this.steps||Xe{class De{_stepper=(0,i.WQX)(ce);type="submit";constructor(){}static \u0275fac=function(_e){return new(_e||De)};static \u0275dir=d.FsC({type:De,selectors:[["button","cdkStepperNext",""]],hostVars:1,hostBindings:function(_e,he){1&_e&&d.bIt("click",function(){return he._stepper.next()}),2&_e&&d.Avn("type",he.type)},inputs:{type:"type"}})}return De})(),ne=(()=>{class De{_stepper=(0,i.WQX)(ce);type="button";constructor(){}static \u0275fac=function(_e){return new(_e||De)};static \u0275dir=d.FsC({type:De,selectors:[["button","cdkStepperPrevious",""]],hostVars:1,hostBindings:function(_e,he){1&_e&&d.bIt("click",function(){return he._stepper.previous()}),2&_e&&d.Avn("type",he.type)},inputs:{type:"type"}})}return De})(),J=(()=>{class De{static \u0275fac=function(_e){return new(_e||De)};static \u0275mod=d.$C({type:De});static \u0275inj=i.G2t({imports:[Ce.jI]})}return De})()},8968(Zt,pe,l){"use strict";l.d(pe,{l:()=>w});var i=l(2615),d=l(7705),v=l(3664);const T=new WeakMap;let w=(()=>{class e{_appRef;_injector=(0,i.WQX)(i.zZn);_environmentInjector=(0,i.WQX)(i.uvJ);load(f){const u=this._appRef=this._appRef||this._injector.get(v.o8S);let L=T.get(u);L||(L={loaders:new Set,refs:[]},T.set(u,L),u.onDestroy(()=>{T.get(u)?.refs.forEach(C=>C.destroy()),T.delete(u)})),L.loaders.has(f)||(L.loaders.add(f),L.refs.push((0,d.a0P)(f,{environmentInjector:this._environmentInjector})))}static \u0275fac=function(u){return new(u||e)};static \u0275prov=i.jDH({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})()},4125(Zt,pe,l){"use strict";l.d(pe,{Z2:()=>B});var i=l(2615),d=l(3664),v=l(1413),T=l(8359),w=l(4402),e=l(7673),O=l(6697),f=l(9096),u=l(8045);class L{_activeItemIndex=-1;_activeItem=null;_shouldActivationFollowFocus=!1;_horizontalOrientation="ltr";_skipPredicateFn=le=>!1;_trackByFn=le=>le;_items=[];_typeahead;_typeaheadSubscription=T.yU.EMPTY;_hasInitialFocused=!1;_initializeFocus(){if(this._hasInitialFocused||0===this._items.length)return;let le=0;for(let Ae=0;Ae{this._items=Ae.toArray(),this._typeahead?.setItems(this._items),this._updateActiveItemIndex(this._items),this._initializeFocus()})):(0,w.A)(le)?le.subscribe(Ae=>{this._items=Ae,this._typeahead?.setItems(Ae),this._updateActiveItemIndex(Ae),this._initializeFocus()}):(this._items=le,this._initializeFocus()),"boolean"==typeof Ce.shouldActivationFollowFocus&&(this._shouldActivationFollowFocus=Ce.shouldActivationFollowFocus),Ce.horizontalOrientation&&(this._horizontalOrientation=Ce.horizontalOrientation),Ce.skipPredicate&&(this._skipPredicateFn=Ce.skipPredicate),Ce.trackBy&&(this._trackByFn=Ce.trackBy),typeof Ce.typeAheadDebounceInterval<"u"&&this._setTypeAhead(Ce.typeAheadDebounceInterval)}change=new v.B;destroy(){this._typeaheadSubscription.unsubscribe(),this._typeahead?.destroy(),this.change.complete()}onKeydown(le){switch(le.key){case"Tab":return;case"ArrowDown":this._focusNextItem();break;case"ArrowUp":this._focusPreviousItem();break;case"ArrowRight":"rtl"===this._horizontalOrientation?this._collapseCurrentItem():this._expandCurrentItem();break;case"ArrowLeft":"rtl"===this._horizontalOrientation?this._expandCurrentItem():this._collapseCurrentItem();break;case"Home":this._focusFirstItem();break;case"End":this._focusLastItem();break;case"Enter":case" ":this._activateCurrentItem();break;default:if("*"===le.key){this._expandAllItemsAtCurrentItemLevel();break}return void this._typeahead?.handleKey(le)}this._typeahead?.reset(),le.preventDefault()}getActiveItemIndex(){return this._activeItemIndex}getActiveItem(){return this._activeItem}_focusFirstItem(){this.focusItem(this._findNextAvailableItemIndex(-1))}_focusLastItem(){this.focusItem(this._findPreviousAvailableItemIndex(this._items.length))}_focusNextItem(){this.focusItem(this._findNextAvailableItemIndex(this._activeItemIndex))}_focusPreviousItem(){this.focusItem(this._findPreviousAvailableItemIndex(this._activeItemIndex))}focusItem(le,Ce={}){Ce.emitChangeEvent??=!0;let Ae="number"==typeof le?le:this._items.findIndex(G=>this._trackByFn(G)===this._trackByFn(le));if(Ae<0||Ae>=this._items.length)return;const j=this._items[Ae];if(null!==this._activeItem&&this._trackByFn(j)===this._trackByFn(this._activeItem))return;const W=this._activeItem;this._activeItem=j??null,this._activeItemIndex=Ae,this._typeahead?.setCurrentSelectedItemIndex(Ae),this._activeItem?.focus(),W?.unfocus(),Ce.emitChangeEvent&&this.change.next(this._activeItem),this._shouldActivationFollowFocus&&this._activateCurrentItem()}_updateActiveItemIndex(le){const Ce=this._activeItem;if(!Ce)return;const Ae=le.findIndex(j=>this._trackByFn(j)===this._trackByFn(Ce));Ae>-1&&Ae!==this._activeItemIndex&&(this._activeItemIndex=Ae,this._typeahead?.setCurrentSelectedItemIndex(Ae))}_setTypeAhead(le){this._typeahead=new f.i(this._items,{debounceInterval:"number"==typeof le?le:void 0,skipPredicate:Ce=>this._skipPredicateFn(Ce)}),this._typeaheadSubscription=this._typeahead.selectedItem.subscribe(Ce=>{this.focusItem(Ce)})}_findNextAvailableItemIndex(le){for(let Ce=le+1;Ce=0;Ce--)if(!this._skipPredicateFn(this._items[Ce]))return Ce;return le}_collapseCurrentItem(){if(this._activeItem)if(this._isCurrentItemExpanded())this._activeItem.collapse();else{const le=this._activeItem.getParent();if(!le||this._skipPredicateFn(le))return;this.focusItem(le)}}_expandCurrentItem(){this._activeItem&&(this._isCurrentItemExpanded()?(0,u.x)(this._activeItem.getChildren()).pipe((0,O.s)(1)).subscribe(le=>{const Ce=le.find(Ae=>!this._skipPredicateFn(Ae));Ce&&this.focusItem(Ce)}):this._activeItem.expand())}_isCurrentItemExpanded(){return!!this._activeItem&&("boolean"==typeof this._activeItem.isExpanded?this._activeItem.isExpanded:this._activeItem.isExpanded())}_isItemDisabled(le){return"boolean"==typeof le.isDisabled?le.isDisabled:le.isDisabled?.()}_expandAllItemsAtCurrentItemLevel(){if(!this._activeItem)return;const le=this._activeItem.getParent();let Ce;Ce=le?(0,u.x)(le.getChildren()):(0,e.of)(this._items.filter(Ae=>null===Ae.getParent())),Ce.pipe((0,O.s)(1)).subscribe(Ae=>{for(const j of Ae)j.expand()})}_activateCurrentItem(){this._activeItem?.activate()}}const B=new i.nKC("tree-key-manager",{providedIn:"root",factory:function C(){return(Pe,le)=>new L(Pe,le)}})},2279(Zt,pe,l){"use strict";l.d(pe,{kZ:()=>Xe,s3:()=>Ke,NL:()=>F,Dc:()=>ht,xn:()=>ve,Sz:()=>Dt,a$:()=>_e,aI:()=>St,Hy:()=>ot,XO:()=>Re});var i=l(3869),d=l(4402),v=l(1413),T=l(4412),w=l(7673),e=l(4572),O=l(983),f=l(8793),u=l(6697),L=l(5964),C=l(6977),B=l(9172),A=l(8141),Pe=l(5558),le=l(6354),Ce=l(6649),Ae=l(9974);function j(oe,Ye){return(0,Ae.N)((0,Ce.S)(oe,Ye,arguments.length>=2,!1,!0))}var W=l(274),G=l(3294),re=l(3664),xe=l(2615),Ee=l(7705),V=l(4125),ce=l(1577),be=l(4117),ne=l(8045);class J{dataNodes;expansionModel=new i.C(!0);trackBy;getLevel;isExpandable;getChildren;toggle(Ye){this.expansionModel.toggle(this._trackByValue(Ye))}expand(Ye){this.expansionModel.select(this._trackByValue(Ye))}collapse(Ye){this.expansionModel.deselect(this._trackByValue(Ye))}isExpanded(Ye){return this.expansionModel.isSelected(this._trackByValue(Ye))}toggleDescendants(Ye){this.expansionModel.isSelected(this._trackByValue(Ye))?this.collapseDescendants(Ye):this.expandDescendants(Ye)}collapseAll(){this.expansionModel.clear()}expandDescendants(Ye){let fe=[Ye];fe.push(...this.getDescendants(Ye)),this.expansionModel.select(...fe.map(Qe=>this._trackByValue(Qe)))}collapseDescendants(Ye){let fe=[Ye];fe.push(...this.getDescendants(Ye)),this.expansionModel.deselect(...fe.map(Qe=>this._trackByValue(Qe)))}_trackByValue(Ye){return this.trackBy?this.trackBy(Ye):Ye}}class Re extends J{getChildren;options;constructor(Ye,fe){super(),this.getChildren=Ye,this.options=fe,this.options&&(this.trackBy=this.options.trackBy),this.options?.isExpandable&&(this.isExpandable=this.options.isExpandable)}expandAll(){this.expansionModel.clear();const Ye=this.dataNodes.reduce((fe,Qe)=>[...fe,...this.getDescendants(Qe),Qe],[]);this.expansionModel.select(...Ye.map(fe=>this._trackByValue(fe)))}getDescendants(Ye){const fe=[];return this._getDescendants(fe,Ye),fe.splice(1)}_getDescendants(Ye,fe){Ye.push(fe);const Qe=this.getChildren(fe);Array.isArray(Qe)?Qe.forEach(gt=>this._getDescendants(Ye,gt)):(0,d.A)(Qe)&&Qe.pipe((0,u.s)(1),(0,L.p)(Boolean)).subscribe(gt=>{for(const Gt of gt)this._getDescendants(Ye,Gt)})}}const Xe=new xe.nKC("CDK_TREE_NODE_OUTLET_NODE");let _e=(()=>{class oe{viewContainer=(0,xe.WQX)(re.c1b);_node=(0,xe.WQX)(Xe,{optional:!0});constructor(){}static \u0275fac=function(Qe){return new(Qe||oe)};static \u0275dir=re.FsC({type:oe,selectors:[["","cdkTreeNodeOutlet",""]]})}return oe})();class he{$implicit;level;index;count;constructor(Ye){this.$implicit=Ye}}let Dt=(()=>{class oe{template=(0,xe.WQX)(re.C4Q);when;constructor(){}static \u0275fac=function(Qe){return new(Qe||oe)};static \u0275dir=re.FsC({type:oe,selectors:[["","cdkTreeNodeDef",""]],inputs:{when:[0,"cdkTreeNodeDefWhen","when"]}})}return oe})();function ie(){return Error("Could not find a tree control, levelAccessor, or childrenAccessor for the tree.")}let F=(()=>{class oe{_differs=(0,xe.WQX)(Ee._q3);_changeDetectorRef=(0,xe.WQX)(Ee.gRc);_elementRef=(0,xe.WQX)(re.aKT);_dir=(0,xe.WQX)(ce.dS);_onDestroy=new v.B;_dataDiffer;_defaultNodeDef;_dataSubscription;_levels=new Map;_parents=new Map;_ariaSets=new Map;get dataSource(){return this._dataSource}set dataSource(fe){this._dataSource!==fe&&this._switchDataSource(fe)}_dataSource;treeControl;levelAccessor;childrenAccessor;trackBy;expansionKey;_nodeOutlet;_nodeDefs;viewChange=new T.t({start:0,end:Number.MAX_VALUE});_expansionModel;_flattenedNodes=new T.t([]);_nodeType=new T.t(null);_nodes=new T.t(new Map);_keyManagerNodes=new T.t([]);_keyManagerFactory=(0,xe.WQX)(V.Z2);_keyManager;_viewInit=!1;constructor(){}ngAfterContentInit(){this._initializeKeyManager()}ngAfterContentChecked(){this._updateDefaultNodeDefinition(),this._subscribeToDataChanges()}ngOnDestroy(){this._nodeOutlet.viewContainer.clear(),this._nodes.complete(),this._keyManagerNodes.complete(),this._nodeType.complete(),this._flattenedNodes.complete(),this.viewChange.complete(),this._onDestroy.next(),this._onDestroy.complete(),this._dataSource&&"function"==typeof this._dataSource.disconnect&&this.dataSource.disconnect(this),this._dataSubscription&&(this._dataSubscription.unsubscribe(),this._dataSubscription=null),this._keyManager?.destroy()}ngOnInit(){this._checkTreeControlUsage(),this._initializeDataDiffer()}ngAfterViewInit(){this._viewInit=!0}_updateDefaultNodeDefinition(){const fe=this._nodeDefs.filter(Qe=>!Qe.when);this._defaultNodeDef=fe[0]}_setNodeTypeIfUnset(fe){null===this._nodeType.value&&this._nodeType.next(fe)}_switchDataSource(fe){this._dataSource&&"function"==typeof this._dataSource.disconnect&&this.dataSource.disconnect(this),this._dataSubscription&&(this._dataSubscription.unsubscribe(),this._dataSubscription=null),fe||this._nodeOutlet.viewContainer.clear(),this._dataSource=fe,this._nodeDefs&&this._subscribeToDataChanges()}_getExpansionModel(){return this.treeControl?this.treeControl.expansionModel:(this._expansionModel??=new i.C(!0),this._expansionModel)}_subscribeToDataChanges(){if(this._dataSubscription)return;let fe;(0,be.y)(this._dataSource)?fe=this._dataSource.connect(this):(0,d.A)(this._dataSource)?fe=this._dataSource:Array.isArray(this._dataSource)&&(fe=(0,w.of)(this._dataSource)),fe&&(this._dataSubscription=this._getRenderData(fe).pipe((0,C.Q)(this._onDestroy)).subscribe(Qe=>{this._renderDataChanges(Qe)}))}_getRenderData(fe){const Qe=this._getExpansionModel();return(0,e.z)([fe,this._nodeType,Qe.changed.pipe((0,B.Z)(null),(0,A.M)(gt=>{this._emitExpansionChanges(gt)}))]).pipe((0,Pe.n)(([gt,Gt])=>null===Gt?(0,w.of)({renderNodes:gt,flattenedNodes:null,nodeType:Gt}):this._computeRenderingData(gt,Gt).pipe((0,le.T)(rt=>({...rt,nodeType:Gt})))))}_renderDataChanges(fe){null!==fe.nodeType?(this._updateCachedData(fe.flattenedNodes),this.renderNodeChanges(fe.renderNodes),this._updateKeyManagerItems(fe.flattenedNodes)):this.renderNodeChanges(fe.renderNodes)}_emitExpansionChanges(fe){if(!fe)return;const Qe=this._nodes.value;for(const gt of fe.added)Qe.get(gt)?._emitExpansionState(!0);for(const gt of fe.removed)Qe.get(gt)?._emitExpansionState(!1)}_initializeKeyManager(){const fe=(0,e.z)([this._keyManagerNodes,this._nodes]).pipe((0,le.T)(([gt,Gt])=>gt.reduce((rt,cn)=>{const Ft=Gt.get(this._getExpansionKey(cn));return Ft&&rt.push(Ft),rt},[])));this._keyManager=this._keyManagerFactory(fe,{trackBy:gt=>this._getExpansionKey(gt.data),skipPredicate:gt=>!!gt.isDisabled,typeAheadDebounceInterval:!0,horizontalOrientation:this._dir.value})}_initializeDataDiffer(){const fe=this.trackBy??((Qe,gt)=>this._getExpansionKey(gt));this._dataDiffer=this._differs.find([]).create(fe)}_checkTreeControlUsage(){}renderNodeChanges(fe,Qe=this._dataDiffer,gt=this._nodeOutlet.viewContainer,Gt){const rt=Qe.diff(fe);!rt&&!this._viewInit||(rt?.forEachOperation((cn,Ft,Sn)=>{if(null==cn.previousIndex)this.insertNode(fe[Sn],Sn,gt,Gt);else if(null==Sn)gt.remove(Ft);else{const Qn=gt.get(Ft);gt.move(Qn,Sn)}}),rt?.forEachIdentityChange(cn=>{const Ft=cn.item;null!=cn.currentIndex&&(gt.get(cn.currentIndex).context.$implicit=Ft)}),Gt?this._changeDetectorRef.markForCheck():this._changeDetectorRef.detectChanges())}_getNodeDef(fe,Qe){return 1===this._nodeDefs.length?this._nodeDefs.first:this._nodeDefs.find(Gt=>Gt.when&&Gt.when(Qe,fe))||this._defaultNodeDef}insertNode(fe,Qe,gt,Gt){const rt=this._getLevelAccessor(),cn=this._getNodeDef(fe,Qe),Ft=this._getExpansionKey(fe),Sn=new he(fe);Sn.index=Qe,Gt??=this._parents.get(Ft)??void 0,Sn.level=rt?rt(fe):void 0!==Gt&&this._levels.has(this._getExpansionKey(Gt))?this._levels.get(this._getExpansionKey(Gt))+1:0,this._levels.set(Ft,Sn.level),(gt||this._nodeOutlet.viewContainer).createEmbeddedView(cn.template,Sn,Qe),ve.mostRecentTreeNode&&(ve.mostRecentTreeNode.data=fe)}isExpanded(fe){return!(!this.treeControl?.isExpanded(fe)&&!this._expansionModel?.isSelected(this._getExpansionKey(fe)))}toggle(fe){this.treeControl?this.treeControl.toggle(fe):this._expansionModel&&this._expansionModel.toggle(this._getExpansionKey(fe))}expand(fe){this.treeControl?this.treeControl.expand(fe):this._expansionModel&&this._expansionModel.select(this._getExpansionKey(fe))}collapse(fe){this.treeControl?this.treeControl.collapse(fe):this._expansionModel&&this._expansionModel.deselect(this._getExpansionKey(fe))}toggleDescendants(fe){this.treeControl?this.treeControl.toggleDescendants(fe):this._expansionModel&&(this.isExpanded(fe)?this.collapseDescendants(fe):this.expandDescendants(fe))}expandDescendants(fe){if(this.treeControl)this.treeControl.expandDescendants(fe);else if(this._expansionModel){const Qe=this._expansionModel;Qe.select(this._getExpansionKey(fe)),this._getDescendants(fe).pipe((0,u.s)(1),(0,C.Q)(this._onDestroy)).subscribe(gt=>{Qe.select(...gt.map(Gt=>this._getExpansionKey(Gt)))})}}collapseDescendants(fe){if(this.treeControl)this.treeControl.collapseDescendants(fe);else if(this._expansionModel){const Qe=this._expansionModel;Qe.deselect(this._getExpansionKey(fe)),this._getDescendants(fe).pipe((0,u.s)(1),(0,C.Q)(this._onDestroy)).subscribe(gt=>{Qe.deselect(...gt.map(Gt=>this._getExpansionKey(Gt)))})}}expandAll(){this.treeControl?this.treeControl.expandAll():this._expansionModel&&this._forEachExpansionKey(fe=>this._expansionModel?.select(...fe))}collapseAll(){this.treeControl?this.treeControl.collapseAll():this._expansionModel&&this._forEachExpansionKey(fe=>this._expansionModel?.deselect(...fe))}_getLevelAccessor(){return this.treeControl?.getLevel?.bind(this.treeControl)??this.levelAccessor}_getChildrenAccessor(){return this.treeControl?.getChildren?.bind(this.treeControl)??this.childrenAccessor}_getDirectChildren(fe){const Qe=this._getLevelAccessor(),gt=this._expansionModel??this.treeControl?.expansionModel;if(!gt)return(0,w.of)([]);const Gt=this._getExpansionKey(fe),rt=gt.changed.pipe((0,Pe.n)(Ft=>Ft.added.includes(Gt)?(0,w.of)(!0):Ft.removed.includes(Gt)?(0,w.of)(!1):O.w),(0,B.Z)(this.isExpanded(fe)));if(Qe)return(0,e.z)([rt,this._flattenedNodes]).pipe((0,le.T)(([Ft,Sn])=>Ft?this._findChildrenByLevel(Qe,Sn,fe,1):[]));const cn=this._getChildrenAccessor();if(cn)return(0,ne.x)(cn(fe)??[]);throw ie()}_findChildrenByLevel(fe,Qe,gt,Gt){const rt=this._getExpansionKey(gt),cn=Qe.findIndex(h=>this._getExpansionKey(h)===rt),Ft=fe(gt),Sn=Ft+Gt,Qn=[];for(let h=cn+1;hthis._getExpansionKey(Gt)===gt)+1}_getNodeParent(fe){const Qe=this._parents.get(this._getExpansionKey(fe.data));return Qe&&this._nodes.value.get(this._getExpansionKey(Qe))}_getNodeChildren(fe){return this._getDirectChildren(fe.data).pipe((0,le.T)(Qe=>Qe.reduce((gt,Gt)=>{const rt=this._nodes.value.get(this._getExpansionKey(Gt));return rt&>.push(rt),gt},[])))}_sendKeydownToKeyManager(fe){if(fe.target===this._elementRef.nativeElement)this._keyManager.onKeydown(fe);else{const Qe=this._nodes.getValue();for(const[,gt]of Qe)if(fe.target===gt._elementRef.nativeElement){this._keyManager.onKeydown(fe);break}}}_getDescendants(fe){if(this.treeControl)return(0,w.of)(this.treeControl.getDescendants(fe));if(this.levelAccessor){const Qe=this._findChildrenByLevel(this.levelAccessor,this._flattenedNodes.value,fe,1/0);return(0,w.of)(Qe)}if(this.childrenAccessor)return this._getAllChildrenRecursively(fe).pipe(j((Qe,gt)=>(Qe.push(...gt),Qe),[]));throw ie()}_getAllChildrenRecursively(fe){return this.childrenAccessor?(0,ne.x)(this.childrenAccessor(fe)).pipe((0,u.s)(1),(0,Pe.n)(Qe=>{for(const gt of Qe)this._parents.set(this._getExpansionKey(gt),fe);return(0,w.of)(...Qe).pipe((0,W.H)(gt=>(0,f.x)((0,w.of)([gt]),this._getAllChildrenRecursively(gt))))})):(0,w.of)([])}_getExpansionKey(fe){return this.expansionKey?.(fe)??fe}_getAriaSet(fe){const Qe=this._getExpansionKey(fe),gt=this._parents.get(Qe),Gt=gt?this._getExpansionKey(gt):null;return this._ariaSets.get(Gt)??[fe]}_findParentForNode(fe,Qe,gt){if(!gt.length)return null;const Gt=this._levels.get(this._getExpansionKey(fe))??0;for(let rt=Qe-1;rt>=0;rt--){const cn=gt[rt];if((this._levels.get(this._getExpansionKey(cn))??0){const rt=this._getExpansionKey(Gt);this._parents.has(rt)||this._parents.set(rt,null),this._levels.set(rt,Qe);const cn=(0,ne.x)(gt(Gt));return(0,f.x)((0,w.of)([Gt]),cn.pipe((0,u.s)(1),(0,A.M)(Ft=>{this._ariaSets.set(rt,[...Ft??[]]);for(const Sn of Ft??[]){const Qn=this._getExpansionKey(Sn);this._parents.set(Qn,Gt),this._levels.set(Qn,Qe+1)}}),(0,Pe.n)(Ft=>Ft?this._flattenNestedNodesWithExpansion(Ft,Qe+1).pipe((0,le.T)(Sn=>this.isExpanded(Gt)?Sn:[])):(0,w.of)([]))))}),j((Gt,rt)=>(Gt.push(...rt),Gt),[])):(0,w.of)([...fe])}_computeRenderingData(fe,Qe){if(this.childrenAccessor&&"flat"===Qe)return this._clearPreviousCache(),this._ariaSets.set(null,[...fe]),this._flattenNestedNodesWithExpansion(fe).pipe((0,le.T)(gt=>({renderNodes:gt,flattenedNodes:gt})));if(this.levelAccessor&&"nested"===Qe){const gt=this.levelAccessor;return(0,w.of)(fe.filter(Gt=>0===gt(Gt))).pipe((0,le.T)(Gt=>({renderNodes:Gt,flattenedNodes:fe})),(0,A.M)(({flattenedNodes:Gt})=>{this._calculateParents(Gt)}))}return"flat"===Qe?(0,w.of)({renderNodes:fe,flattenedNodes:fe}).pipe((0,A.M)(({flattenedNodes:gt})=>{this._calculateParents(gt)})):(this._clearPreviousCache(),this._ariaSets.set(null,[...fe]),this._flattenNestedNodesWithExpansion(fe).pipe((0,le.T)(gt=>({renderNodes:fe,flattenedNodes:gt}))))}_updateCachedData(fe){this._flattenedNodes.next(fe)}_updateKeyManagerItems(fe){this._keyManagerNodes.next(fe)}_calculateParents(fe){const Qe=this._getLevelAccessor();if(Qe){this._clearPreviousCache();for(let gt=0;gt{Qe.push(this._getExpansionKey(Gt.data)),gt.push(this._getDescendants(Gt.data))}),gt.length>0?(0,e.z)(gt).pipe((0,u.s)(1),(0,C.Q)(this._onDestroy)).subscribe(Gt=>{Gt.forEach(rt=>rt.forEach(cn=>Qe.push(this._getExpansionKey(cn)))),fe(Qe)}):fe(Qe)}_clearPreviousCache(){this._parents.clear(),this._levels.clear(),this._ariaSets.clear()}static \u0275fac=function(Qe){return new(Qe||oe)};static \u0275cmp=re.VBU({type:oe,selectors:[["cdk-tree"]],contentQueries:function(Qe,gt,Gt){if(1&Qe&&re.wni(Gt,Dt,5),2&Qe){let rt;re.mGM(rt=re.lsd())&&(gt._nodeDefs=rt)}},viewQuery:function(Qe,gt){if(1&Qe&&re.GBs(_e,7),2&Qe){let Gt;re.mGM(Gt=re.lsd())&&(gt._nodeOutlet=Gt.first)}},hostAttrs:["role","tree",1,"cdk-tree"],hostBindings:function(Qe,gt){1&Qe&&re.bIt("keydown",function(rt){return gt._sendKeydownToKeyManager(rt)})},inputs:{dataSource:"dataSource",treeControl:"treeControl",levelAccessor:"levelAccessor",childrenAccessor:"childrenAccessor",trackBy:"trackBy",expansionKey:"expansionKey"},exportAs:["cdkTree"],decls:1,vars:0,consts:[["cdkTreeNodeOutlet",""]],template:function(Qe,gt){1&Qe&&re.eu8(0,0)},dependencies:[_e],encapsulation:2})}return oe})(),ve=(()=>{class oe{_elementRef=(0,xe.WQX)(re.aKT);_tree=(0,xe.WQX)(F);_tabindex=-1;_type="flat";get role(){return"treeitem"}set role(fe){}get isExpandable(){return this._isExpandable()}set isExpandable(fe){this._inputIsExpandable=fe,(!this.data||this._isExpandable)&&this._inputIsExpandable&&(this._inputIsExpanded?this.expand():!1===this._inputIsExpanded&&this.collapse())}get isExpanded(){return this._tree.isExpanded(this._data)}set isExpanded(fe){this._inputIsExpanded=fe,fe?this.expand():this.collapse()}isDisabled;typeaheadLabel;getLabel(){return this.typeaheadLabel||this._elementRef.nativeElement.textContent?.trim()||""}activation=new re.bkB;expandedChange=new re.bkB;static mostRecentTreeNode=null;_destroyed=new v.B;_dataChanges=new v.B;_inputIsExpandable=!1;_inputIsExpanded=void 0;_shouldFocus=!0;_parentNodeAriaLevel;get data(){return this._data}set data(fe){fe!==this._data&&(this._data=fe,this._dataChanges.next())}_data;get isLeafNode(){return void 0!==this._tree.treeControl?.isExpandable&&!this._tree.treeControl.isExpandable(this._data)||void 0===this._tree.treeControl?.isExpandable&&0===this._tree.treeControl?.getDescendants(this._data).length}get level(){return this._tree._getLevel(this._data)??this._parentNodeAriaLevel}_isExpandable(){return this._tree.treeControl?!this.isLeafNode:this._inputIsExpandable}_getAriaExpanded(){return this._isExpandable()?String(this.isExpanded):null}_getSetSize(){return this._tree._getSetSize(this._data)}_getPositionInSet(){return this._tree._getPositionInSet(this._data)}_changeDetectorRef=(0,xe.WQX)(Ee.gRc);constructor(){oe.mostRecentTreeNode=this}ngOnInit(){this._parentNodeAriaLevel=function H(oe){let Ye=oe.parentElement;for(;Ye&&!$(Ye);)Ye=Ye.parentElement;return Ye?Ye.classList.contains("cdk-nested-tree-node")?(0,Ee.Udg)(Ye.getAttribute("aria-level")):0:-1}(this._elementRef.nativeElement),this._tree._getExpansionModel().changed.pipe((0,le.T)(()=>this.isExpanded),(0,G.F)(),(0,C.Q)(this._destroyed)).pipe((0,C.Q)(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck()),this._tree._setNodeTypeIfUnset(this._type),this._tree._registerNode(this)}ngOnDestroy(){oe.mostRecentTreeNode===this&&(oe.mostRecentTreeNode=null),this._dataChanges.complete(),this._destroyed.next(),this._destroyed.complete()}getParent(){return this._tree._getNodeParent(this)??null}getChildren(){return this._tree._getNodeChildren(this)}focus(){this._tabindex=0,this._shouldFocus&&this._elementRef.nativeElement.focus(),this._changeDetectorRef.markForCheck()}unfocus(){this._tabindex=-1,this._changeDetectorRef.markForCheck()}activate(){this.isDisabled||this.activation.next(this._data)}collapse(){this.isExpandable&&this._tree.collapse(this._data)}expand(){this.isExpandable&&this._tree.expand(this._data)}makeFocusable(){this._tabindex=0,this._changeDetectorRef.markForCheck()}_focusItem(){this.isDisabled||this._tree._keyManager.focusItem(this)}_setActiveItem(){this.isDisabled||(this._shouldFocus=!1,this._tree._keyManager.focusItem(this),this._shouldFocus=!0)}_emitExpansionState(fe){this.expandedChange.emit(fe)}static \u0275fac=function(Qe){return new(Qe||oe)};static \u0275dir=re.FsC({type:oe,selectors:[["cdk-tree-node"]],hostAttrs:["role","treeitem",1,"cdk-tree-node"],hostVars:5,hostBindings:function(Qe,gt){1&Qe&&re.bIt("click",function(){return gt._setActiveItem()})("focus",function(){return gt._focusItem()}),2&Qe&&(re.Avn("tabIndex",gt._tabindex),re.BMQ("aria-expanded",gt._getAriaExpanded())("aria-level",gt.level+1)("aria-posinset",gt._getPositionInSet())("aria-setsize",gt._getSetSize()))},inputs:{role:"role",isExpandable:[2,"isExpandable","isExpandable",Ee.L39],isExpanded:"isExpanded",isDisabled:[2,"isDisabled","isDisabled",Ee.L39],typeaheadLabel:[0,"cdkTreeNodeTypeaheadLabel","typeaheadLabel"]},outputs:{activation:"activation",expandedChange:"expandedChange"},exportAs:["cdkTreeNode"]})}return oe})();function $(oe){const Ye=oe.classList;return!(!Ye?.contains("cdk-nested-tree-node")&&!Ye?.contains("cdk-tree"))}let Ke=(()=>{class oe extends ve{_type="nested";_differs=(0,xe.WQX)(Ee._q3);_dataDiffer;_children;nodeOutlet;constructor(){super()}ngAfterContentInit(){this._dataDiffer=this._differs.find([]).create(this._tree.trackBy),this._tree._getDirectChildren(this.data).pipe((0,C.Q)(this._destroyed)).subscribe(fe=>this.updateChildrenNodes(fe)),this.nodeOutlet.changes.pipe((0,C.Q)(this._destroyed)).subscribe(()=>this.updateChildrenNodes())}ngOnDestroy(){this._clear(),super.ngOnDestroy()}updateChildrenNodes(fe){const Qe=this._getNodeOutlet();fe&&(this._children=fe),Qe&&this._children?this._tree.renderNodeChanges(this._children,this._dataDiffer,Qe.viewContainer,this._data):this._dataDiffer.diff([])}_clear(){const fe=this._getNodeOutlet();fe&&(fe.viewContainer.clear(),this._dataDiffer.diff([]))}_getNodeOutlet(){const fe=this.nodeOutlet;return fe&&fe.find(Qe=>!Qe._node||Qe._node===this)}static \u0275fac=function(Qe){return new(Qe||oe)};static \u0275dir=re.FsC({type:oe,selectors:[["cdk-nested-tree-node"]],contentQueries:function(Qe,gt,Gt){if(1&Qe&&re.wni(Gt,_e,5),2&Qe){let rt;re.mGM(rt=re.lsd())&&(gt.nodeOutlet=rt)}},hostAttrs:[1,"cdk-nested-tree-node"],exportAs:["cdkNestedTreeNode"],features:[re.Jv_([{provide:ve,useExisting:oe},{provide:Xe,useExisting:oe}]),re.Vt3]})}return oe})();const Vt=/([A-Za-z%]+)$/;let St=(()=>{class oe{_treeNode=(0,xe.WQX)(ve);_tree=(0,xe.WQX)(F);_element=(0,xe.WQX)(re.aKT);_dir=(0,xe.WQX)(ce.dS,{optional:!0});_currentPadding;_destroyed=new v.B;indentUnits="px";get level(){return this._level}set level(fe){this._setLevelInput(fe)}_level;get indent(){return this._indent}set indent(fe){this._setIndentInput(fe)}_indent=40;constructor(){this._setPadding(),this._dir?.change.pipe((0,C.Q)(this._destroyed)).subscribe(()=>this._setPadding(!0)),this._treeNode._dataChanges.subscribe(()=>this._setPadding())}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_paddingIndent(){const fe=(this._treeNode.data&&this._tree._getLevel(this._treeNode.data))??null,Qe=null==this._level?fe:this._level;return"number"==typeof Qe?`${Qe*this._indent}${this.indentUnits}`:null}_setPadding(fe=!1){const Qe=this._paddingIndent();if(Qe!==this._currentPadding||fe){const gt=this._element.nativeElement,Gt=this._dir&&"rtl"===this._dir.value?"paddingRight":"paddingLeft",rt="paddingLeft"===Gt?"paddingRight":"paddingLeft";gt.style[Gt]=Qe||"",gt.style[rt]="",this._currentPadding=Qe}}_setLevelInput(fe){this._level=isNaN(fe)?null:fe,this._setPadding()}_setIndentInput(fe){let Qe=fe,gt="px";if("string"==typeof fe){const Gt=fe.split(Vt);Qe=Gt[0],gt=Gt[1]||gt}this.indentUnits=gt,this._indent=(0,Ee.Udg)(Qe),this._setPadding()}static \u0275fac=function(Qe){return new(Qe||oe)};static \u0275dir=re.FsC({type:oe,selectors:[["","cdkTreeNodePadding",""]],inputs:{level:[2,"cdkTreeNodePadding","level",Ee.Udg],indent:[0,"cdkTreeNodePaddingIndent","indent"]}})}return oe})(),ot=(()=>{class oe{_tree=(0,xe.WQX)(F);_treeNode=(0,xe.WQX)(ve);recursive=!1;constructor(){}_toggle(){this.recursive?this._tree.toggleDescendants(this._treeNode.data):this._tree.toggle(this._treeNode.data),this._tree._keyManager.focusItem(this._treeNode)}static \u0275fac=function(Qe){return new(Qe||oe)};static \u0275dir=re.FsC({type:oe,selectors:[["","cdkTreeNodeToggle",""]],hostAttrs:["tabindex","-1"],hostBindings:function(Qe,gt){1&Qe&&re.bIt("click",function(rt){return gt._toggle(),rt.stopPropagation()})("keydown.Enter",function(rt){return gt._toggle(),rt.preventDefault()})("keydown.Space",function(rt){return gt._toggle(),rt.preventDefault()})},inputs:{recursive:[2,"cdkTreeNodeToggleRecursive","recursive",Ee.L39]}})}return oe})(),ht=(()=>{class oe{static \u0275fac=function(Qe){return new(Qe||oe)};static \u0275mod=re.$C({type:oe});static \u0275inj=xe.G2t({})}return oe})()},9096(Zt,pe,l){"use strict";l.d(pe,{i:()=>f});var i=l(1413),d=l(152),v=l(5964),T=l(6354),w=l(8141),e=l(438);class f{_letterKeyStream=new i.B;_items=[];_selectedItemIndex=-1;_pressedLetters=[];_skipPredicateFn;_selectedItem=new i.B;selectedItem=this._selectedItem;constructor(L,C){const B="number"==typeof C?.debounceInterval?C.debounceInterval:200;C?.skipPredicate&&(this._skipPredicateFn=C.skipPredicate),this.setItems(L),this._setupKeyHandler(B)}destroy(){this._pressedLetters=[],this._letterKeyStream.complete(),this._selectedItem.complete()}setCurrentSelectedItemIndex(L){this._selectedItemIndex=L}setItems(L){this._items=L}handleKey(L){const C=L.keyCode;L.key&&1===L.key.length?this._letterKeyStream.next(L.key.toLocaleUpperCase()):(C>=e.A&&C<=e.Z||C>=e.f2&&C<=e.bn)&&this._letterKeyStream.next(String.fromCharCode(C))}isTyping(){return this._pressedLetters.length>0}reset(){this._pressedLetters=[]}_setupKeyHandler(L){this._letterKeyStream.pipe((0,w.M)(C=>this._pressedLetters.push(C)),(0,d.B)(L),(0,v.p)(()=>this._pressedLetters.length>0),(0,T.T)(()=>this._pressedLetters.join("").toLocaleUpperCase())).subscribe(C=>{for(let B=1;Bd});var i=l(2615);let d=(()=>{class v{_listeners=[];notify(w,e){for(let O of this._listeners)O(w,e)}listen(w){return this._listeners.push(w),()=>{this._listeners=this._listeners.filter(e=>w!==e)}}ngOnDestroy(){this._listeners=[]}static \u0275fac=function(e){return new(e||v)};static \u0275prov=i.jDH({token:v,factory:v.\u0275fac,providedIn:"root"})}return v})()},177(Zt,pe,l){"use strict";l.d(pe,{AJ:()=>Ee,UE:()=>ce,Vy:()=>be,Xr:()=>J});var re=l(2615);const Ee="browser";function ce(qt){return qt===Ee}function be(qt){return"server"===qt}let J=(()=>{class qt{static \u0275prov=(0,re.jDH)({token:qt,providedIn:"root",factory:()=>new De((0,re.WQX)(re.qQL),window)})}return qt})();class De{document;window;offset=()=>[0,0];constructor(En,Wn){this.document=En,this.window=Wn}setOffset(En){this.offset=Array.isArray(En)?()=>En:En}getScrollPosition(){return[this.window.scrollX,this.window.scrollY]}scrollToPosition(En,Wn){this.window.scrollTo({...Wn,left:En[0],top:En[1]})}scrollToAnchor(En,Wn){const ri=function Re(qt,En){const Wn=qt.getElementById(En)||qt.getElementsByName(En)[0];if(Wn)return Wn;if("function"==typeof qt.createTreeWalker&&qt.body&&"function"==typeof qt.body.attachShadow){const ri=qt.createTreeWalker(qt.body,NodeFilter.SHOW_ELEMENT);let Rn=ri.currentNode;for(;Rn;){const Hn=Rn.shadowRoot;if(Hn){const Pi=Hn.getElementById(En)||Hn.querySelector(`[name="${En}"]`);if(Pi)return Pi}Rn=ri.nextNode()}}return null}(this.document,En);ri&&(this.scrollToElement(ri,Wn),ri.focus())}setHistoryScrollRestoration(En){try{this.window.history.scrollRestoration=En}catch{console.warn((0,re.OsK)(2400,!1))}}scrollToElement(En,Wn){const ri=En.getBoundingClientRect(),Rn=ri.left+this.window.pageXOffset,Hn=ri.top+this.window.pageYOffset,Pi=this.offset();this.window.scrollTo({...Wn,left:Rn-Pi[0],top:Hn-Pi[1]})}}},2200(Zt,pe,l){"use strict";l.d(pe,{B3:()=>Yt,GH:()=>ii,Jj:()=>Vn,MD:()=>Ca,P9:()=>yi,PV:()=>ia,Pc:()=>ra,QX:()=>en,Sq:()=>Tt,T3:()=>Un,TG:()=>Hn,YU:()=>xn,bT:()=>ae,e1:()=>bi,fG:()=>Qi,fw:()=>u,lG:()=>da,ux:()=>fi,vh:()=>En});var T=l(7705),w=l(2615),e=l(3664),O=l(9295),f=l(7303);let u=(()=>{class Fe extends f.hb{_platformLocation;_baseHref="";_removeListenerFns=[];constructor(Ve,Et){super(),this._platformLocation=Ve,null!=Et&&(this._baseHref=Et)}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(Ve){this._removeListenerFns.push(this._platformLocation.onPopState(Ve),this._platformLocation.onHashChange(Ve))}getBaseHref(){return this._baseHref}path(Ve=!1){const Et=this._platformLocation.hash??"#";return Et.length>0?Et.substring(1):Et}prepareExternalUrl(Ve){const Et=(0,f.om)(this._baseHref,Ve);return Et.length>0?"#"+Et:Et}pushState(Ve,Et,Jt,ti){const di=this.prepareExternalUrl(Jt+(0,f.Q)(ti))||this._platformLocation.pathname;this._platformLocation.pushState(Ve,Et,di)}replaceState(Ve,Et,Jt,ti){const di=this.prepareExternalUrl(Jt+(0,f.Q)(ti))||this._platformLocation.pathname;this._platformLocation.replaceState(Ve,Et,di)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(Ve=0){this._platformLocation.historyGo?.(Ve)}static \u0275fac=function(Et){return new(Et||Fe)(w.KVO(f.Vw),w.KVO(f.kB,8))};static \u0275prov=w.jDH({token:Fe,factory:Fe.\u0275fac})}return Fe})();var C=function(Fe){return Fe[Fe.Decimal=0]="Decimal",Fe[Fe.Percent=1]="Percent",Fe[Fe.Currency=2]="Currency",Fe[Fe.Scientific=3]="Scientific",Fe}(C||{}),A=function(Fe){return Fe[Fe.Format=0]="Format",Fe[Fe.Standalone=1]="Standalone",Fe}(A||{}),Pe=function(Fe){return Fe[Fe.Narrow=0]="Narrow",Fe[Fe.Abbreviated=1]="Abbreviated",Fe[Fe.Wide=2]="Wide",Fe[Fe.Short=3]="Short",Fe}(Pe||{}),le=function(Fe){return Fe[Fe.Short=0]="Short",Fe[Fe.Medium=1]="Medium",Fe[Fe.Long=2]="Long",Fe[Fe.Full=3]="Full",Fe}(le||{});function ce(Fe,Wt){return P((0,e.kBR)(Fe)[e.NSC.DateFormat],Wt)}function be(Fe,Wt){return P((0,e.kBR)(Fe)[e.NSC.TimeFormat],Wt)}function ne(Fe,Wt){return P((0,e.kBR)(Fe)[e.NSC.DateTimeFormat],Wt)}function J(Fe,Wt){const Ve=(0,e.kBR)(Fe),Et=Ve[e.NSC.NumberSymbols][Wt];if(typeof Et>"u"){if(12===Wt)return Ve[e.NSC.NumberSymbols][0];if(13===Wt)return Ve[e.NSC.NumberSymbols][1]}return Et}function lt(Fe){if(!Fe[e.NSC.ExtraData])throw new w.buA(2303,!1)}function P(Fe,Wt){for(let Ve=Wt;Ve>-1;Ve--)if(typeof Fe[Ve]<"u")return Fe[Ve];throw new w.buA(2304,!1)}function F(Fe){const[Wt,Ve]=Fe.split(":");return{hours:+Wt,minutes:+Ve}}const Ke=/^(\d{4,})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/,Vt={},St=/((?:[^BEGHLMOSWYZabcdhmswyz']+)|(?:'(?:[^']|'')*')|(?:G{1,5}|y{1,4}|Y{1,4}|M{1,5}|L{1,5}|w{1,2}|W{1}|d{1,2}|E{1,6}|c{1,6}|a{1,5}|b{1,5}|B{1,5}|h{1,2}|H{1,2}|m{1,2}|s{1,2}|S{1,3}|z{1,4}|Z{1,5}|O{1,4}))([\s\S]*)/;function nt(Fe,Wt,Ve,Et){let Jt=function Ri(Fe){if(ee(Fe))return Fe;if("number"==typeof Fe&&!isNaN(Fe))return new Date(Fe);if("string"==typeof Fe){if(Fe=Fe.trim(),/^(\d{4}(-\d{1,2}(-\d{1,2})?)?)$/.test(Fe)){const[Jt,ti=1,di=1]=Fe.split("-").map(Ii=>+Ii);return Ye(Jt,ti-1,di)}const Ve=parseFloat(Fe);if(!isNaN(Fe-Ve))return new Date(Ve);let Et;if(Et=Fe.match(Ke))return function vt(Fe){const Wt=new Date(0);let Ve=0,Et=0;const Jt=Fe[8]?Wt.setUTCFullYear:Wt.setFullYear,ti=Fe[8]?Wt.setUTCHours:Wt.setHours;Fe[9]&&(Ve=Number(Fe[9]+Fe[10]),Et=Number(Fe[9]+Fe[11])),Jt.call(Wt,Number(Fe[1]),Number(Fe[2])-1,Number(Fe[3]));const di=Number(Fe[4]||0)-Ve,Ii=Number(Fe[5]||0)-Et,ca=Number(Fe[6]||0),nn=Math.floor(1e3*parseFloat("0."+(Fe[7]||0)));return ti.call(Wt,di,Ii,ca,nn),Wt}(Et)}const Wt=new Date(Fe);if(!ee(Wt))throw new w.buA(2311,!1);return Wt}(Fe);(function ht(Fe){if(Fe.length>256)throw new w.buA(2300,!1)})(Wt),Wt=fe(Ve,Wt)||Wt;let Ii,di=[];for(;Wt;){if(Ii=St.exec(Wt),!Ii){di.push(Wt);break}{di=di.concat(Ii.slice(1));const ni=di.pop();if(!ni)break;Wt=ni}}let ca=Jt.getTimezoneOffset();Et&&(ca=vi(Et,ca),Jt=function kn(Fe,Wt){const Jt=Fe.getTimezoneOffset();return function Ni(Fe,Wt){return(Fe=new Date(Fe.getTime())).setMinutes(Fe.getMinutes()+Wt),Fe}(Fe,-1*(vi(Wt,Jt)-Jt))}(Jt,Et));let nn="";return di.forEach(ni=>{const U=function ei(Fe){if(gn[Fe])return gn[Fe];let Wt;switch(Fe){case"G":case"GG":case"GGG":Wt=Ft(3,Pe.Abbreviated);break;case"GGGG":Wt=Ft(3,Pe.Wide);break;case"GGGGG":Wt=Ft(3,Pe.Narrow);break;case"y":Wt=rt(0,1,0,!1,!0);break;case"yy":Wt=rt(0,2,0,!0,!0);break;case"yyy":Wt=rt(0,3,0,!1,!0);break;case"yyyy":Wt=rt(0,4,0,!1,!0);break;case"Y":Wt=Pt(1);break;case"YY":Wt=Pt(2,!0);break;case"YYY":Wt=Pt(3);break;case"YYYY":Wt=Pt(4);break;case"M":case"L":Wt=rt(1,1,1);break;case"MM":case"LL":Wt=rt(1,2,1);break;case"MMM":Wt=Ft(2,Pe.Abbreviated);break;case"MMMM":Wt=Ft(2,Pe.Wide);break;case"MMMMM":Wt=Ft(2,Pe.Narrow);break;case"LLL":Wt=Ft(2,Pe.Abbreviated,A.Standalone);break;case"LLLL":Wt=Ft(2,Pe.Wide,A.Standalone);break;case"LLLLL":Wt=Ft(2,Pe.Narrow,A.Standalone);break;case"w":Wt=pt(1);break;case"ww":Wt=pt(2);break;case"W":Wt=pt(1,!0);break;case"d":Wt=rt(2,1);break;case"dd":Wt=rt(2,2);break;case"c":case"cc":Wt=rt(7,1);break;case"ccc":Wt=Ft(1,Pe.Abbreviated,A.Standalone);break;case"cccc":Wt=Ft(1,Pe.Wide,A.Standalone);break;case"ccccc":Wt=Ft(1,Pe.Narrow,A.Standalone);break;case"cccccc":Wt=Ft(1,Pe.Short,A.Standalone);break;case"E":case"EE":case"EEE":Wt=Ft(1,Pe.Abbreviated);break;case"EEEE":Wt=Ft(1,Pe.Wide);break;case"EEEEE":Wt=Ft(1,Pe.Narrow);break;case"EEEEEE":Wt=Ft(1,Pe.Short);break;case"a":case"aa":case"aaa":Wt=Ft(0,Pe.Abbreviated);break;case"aaaa":Wt=Ft(0,Pe.Wide);break;case"aaaaa":Wt=Ft(0,Pe.Narrow);break;case"b":case"bb":case"bbb":Wt=Ft(0,Pe.Abbreviated,A.Standalone,!0);break;case"bbbb":Wt=Ft(0,Pe.Wide,A.Standalone,!0);break;case"bbbbb":Wt=Ft(0,Pe.Narrow,A.Standalone,!0);break;case"B":case"BB":case"BBB":Wt=Ft(0,Pe.Abbreviated,A.Format,!0);break;case"BBBB":Wt=Ft(0,Pe.Wide,A.Format,!0);break;case"BBBBB":Wt=Ft(0,Pe.Narrow,A.Format,!0);break;case"h":Wt=rt(3,1,-12);break;case"hh":Wt=rt(3,2,-12);break;case"H":Wt=rt(3,1);break;case"HH":Wt=rt(3,2);break;case"m":Wt=rt(4,1);break;case"mm":Wt=rt(4,2);break;case"s":Wt=rt(5,1);break;case"ss":Wt=rt(5,2);break;case"S":Wt=rt(6,1);break;case"SS":Wt=rt(6,2);break;case"SSS":Wt=rt(6,3);break;case"Z":case"ZZ":case"ZZZ":Wt=Qn(0);break;case"ZZZZZ":Wt=Qn(3);break;case"O":case"OO":case"OOO":case"z":case"zz":case"zzz":Wt=Qn(1);break;case"OOOO":case"ZZZZ":case"zzzz":Wt=Qn(2);break;default:return null}return gn[Fe]=Wt,Wt}(ni);nn+=U?U(Jt,Ve,ca):"''"===ni?"'":ni.replace(/(^'|'$)/g,"").replace(/''/g,"'")}),nn}function Ye(Fe,Wt,Ve){const Et=new Date(0);return Et.setFullYear(Fe,Wt,Ve),Et.setHours(0,0,0),Et}function fe(Fe,Wt){const Ve=function j(Fe){return(0,e.kBR)(Fe)[e.NSC.LocaleId]}(Fe);if(Vt[Ve]??={},Vt[Ve][Wt])return Vt[Ve][Wt];let Et="";switch(Wt){case"shortDate":Et=ce(Fe,le.Short);break;case"mediumDate":Et=ce(Fe,le.Medium);break;case"longDate":Et=ce(Fe,le.Long);break;case"fullDate":Et=ce(Fe,le.Full);break;case"shortTime":Et=be(Fe,le.Short);break;case"mediumTime":Et=be(Fe,le.Medium);break;case"longTime":Et=be(Fe,le.Long);break;case"fullTime":Et=be(Fe,le.Full);break;case"short":const Jt=fe(Fe,"shortTime"),ti=fe(Fe,"shortDate");Et=Qe(ne(Fe,le.Short),[Jt,ti]);break;case"medium":const di=fe(Fe,"mediumTime"),Ii=fe(Fe,"mediumDate");Et=Qe(ne(Fe,le.Medium),[di,Ii]);break;case"long":const ca=fe(Fe,"longTime"),nn=fe(Fe,"longDate");Et=Qe(ne(Fe,le.Long),[ca,nn]);break;case"full":const ni=fe(Fe,"fullTime"),U=fe(Fe,"fullDate");Et=Qe(ne(Fe,le.Full),[ni,U])}return Et&&(Vt[Ve][Wt]=Et),Et}function Qe(Fe,Wt){return Wt&&(Fe=Fe.replace(/\{([^}]+)}/g,function(Ve,Et){return null!=Wt&&Et in Wt?Wt[Et]:Ve})),Fe}function gt(Fe,Wt,Ve="-",Et,Jt){let ti="";(Fe<0||Jt&&Fe<=0)&&(Jt?Fe=1-Fe:(Fe=-Fe,ti=Ve));let di=String(Fe);for(;di.length0||Ii>-Ve)&&(Ii+=Ve),3===Fe)0===Ii&&-12===Ve&&(Ii=12);else if(6===Fe)return function Gt(Fe,Wt){return gt(Fe,3).substring(0,Wt)}(Ii,Wt);const ca=J(di,5);return gt(Ii,Wt,ca,Et,Jt)}}function Ft(Fe,Wt,Ve=A.Format,Et=!1){return function(Jt,ti){return function Sn(Fe,Wt,Ve,Et,Jt,ti){switch(Ve){case 2:return function re(Fe,Wt,Ve){const Et=(0,e.kBR)(Fe),ti=P([Et[e.NSC.MonthsFormat],Et[e.NSC.MonthsStandalone]],Wt);return P(ti,Ve)}(Wt,Jt,Et)[Fe.getMonth()];case 1:return function G(Fe,Wt,Ve){const Et=(0,e.kBR)(Fe),ti=P([Et[e.NSC.DaysFormat],Et[e.NSC.DaysStandalone]],Wt);return P(ti,Ve)}(Wt,Jt,Et)[Fe.getDay()];case 0:const di=Fe.getHours(),Ii=Fe.getMinutes();if(ti){const nn=function Le(Fe){const Wt=(0,e.kBR)(Fe);return lt(Wt),(Wt[e.NSC.ExtraData][2]||[]).map(Et=>"string"==typeof Et?F(Et):[F(Et[0]),F(Et[1])])}(Wt),ni=function te(Fe,Wt,Ve){const Et=(0,e.kBR)(Fe);lt(Et);const ti=P([Et[e.NSC.ExtraData][0],Et[e.NSC.ExtraData][1]],Wt)||[];return P(ti,Ve)||[]}(Wt,Jt,Et),U=nn.findIndex(tt=>{if(Array.isArray(tt)){const[Ze,Xt]=tt,Nn=di>=Ze.hours&&Ii>=Ze.minutes,Ki=di0?Math.floor(Jt/60):Math.ceil(Jt/60);switch(Fe){case 0:return(Jt>=0?"+":"")+gt(di,2,ti)+gt(Math.abs(Jt%60),2,ti);case 1:return"GMT"+(Jt>=0?"+":"")+gt(di,1,ti);case 2:return"GMT"+(Jt>=0?"+":"")+gt(di,2,ti)+":"+gt(Math.abs(Jt%60),2,ti);case 3:return 0===Et?"Z":(Jt>=0?"+":"")+gt(di,2,ti)+":"+gt(Math.abs(Jt%60),2,ti);default:throw new w.buA(2310,!1)}}}function wt(Fe){const Wt=Fe.getDay(),Ve=0===Wt?-3:4-Wt;return Ye(Fe.getFullYear(),Fe.getMonth(),Fe.getDate()+Ve)}function pt(Fe,Wt=!1){return function(Ve,Et){let Jt;if(Wt){const ti=new Date(Ve.getFullYear(),Ve.getMonth(),1).getDay()-1,di=Ve.getDate();Jt=1+Math.floor((di+ti)/7)}else{const ti=wt(Ve),di=function Ue(Fe){const Wt=Ye(Fe,0,1).getDay();return Ye(Fe,0,1+(Wt<=4?4:11)-Wt)}(ti.getFullYear()),Ii=ti.getTime()-di.getTime();Jt=1+Math.round(Ii/6048e5)}return gt(Jt,Fe,J(Et,5))}}function Pt(Fe,Wt=!1){return function(Ve,Et){return gt(wt(Ve).getFullYear(),Fe,J(Et,5),Wt)}}const gn={};function vi(Fe,Wt){Fe=Fe.replace(/:/g,"");const Ve=Date.parse("Jan 01, 1970 00:00:00 "+Fe)/6e4;return isNaN(Ve)?Wt:Ve}function ee(Fe){return Fe instanceof Date&&!isNaN(Fe.valueOf())}const ye=/^(\d+)?\.((\d+)(-(\d+))?)?$/;function bt(Fe){const Wt=parseInt(Fe);if(isNaN(Wt))throw new w.buA(2305,!1);return Wt}const Nt=/\s+/,dn=[];let xn=(()=>{class Fe{_ngEl;_renderer;initialClasses=dn;rawClass;stateMap=new Map;constructor(Ve,Et){this._ngEl=Ve,this._renderer=Et}set klass(Ve){this.initialClasses=null!=Ve?Ve.trim().split(Nt):dn}set ngClass(Ve){this.rawClass="string"==typeof Ve?Ve.trim().split(Nt):Ve}ngDoCheck(){for(const Et of this.initialClasses)this._updateState(Et,!0);const Ve=this.rawClass;if(Array.isArray(Ve)||Ve instanceof Set)for(const Et of Ve)this._updateState(Et,!0);else if(null!=Ve)for(const Et of Object.keys(Ve))this._updateState(Et,!!Ve[Et]);this._applyStateDiff()}_updateState(Ve,Et){const Jt=this.stateMap.get(Ve);void 0!==Jt?(Jt.enabled!==Et&&(Jt.changed=!0,Jt.enabled=Et),Jt.touched=!0):this.stateMap.set(Ve,{enabled:Et,changed:!0,touched:!0})}_applyStateDiff(){for(const Ve of this.stateMap){const Et=Ve[0],Jt=Ve[1];Jt.changed?(this._toggleClass(Et,Jt.enabled),Jt.changed=!1):Jt.touched||(Jt.enabled&&this._toggleClass(Et,!1),this.stateMap.delete(Et)),Jt.touched=!1}}_toggleClass(Ve,Et){(Ve=Ve.trim()).length>0&&Ve.split(Nt).forEach(Jt=>{Et?this._renderer.addClass(this._ngEl.nativeElement,Jt):this._renderer.removeClass(this._ngEl.nativeElement,Jt)})}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(e.aKT),e.rXU(e.sFG))};static \u0275dir=e.FsC({type:Fe,selectors:[["","ngClass",""]],inputs:{klass:[0,"class","klass"],ngClass:"ngClass"}})}return Fe})();class Yi{$implicit;ngForOf;index;count;constructor(Wt,Ve,Et,Jt){this.$implicit=Wt,this.ngForOf=Ve,this.index=Et,this.count=Jt}get first(){return 0===this.index}get last(){return this.index===this.count-1}get even(){return this.index%2==0}get odd(){return!this.even}}let Tt=(()=>{class Fe{_viewContainer;_template;_differs;set ngForOf(Ve){this._ngForOf=Ve,this._ngForOfDirty=!0}set ngForTrackBy(Ve){this._trackByFn=Ve}get ngForTrackBy(){return this._trackByFn}_ngForOf=null;_ngForOfDirty=!0;_differ=null;_trackByFn;constructor(Ve,Et,Jt){this._viewContainer=Ve,this._template=Et,this._differs=Jt}set ngForTemplate(Ve){Ve&&(this._template=Ve)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const Ve=this._ngForOf;!this._differ&&Ve&&(this._differ=this._differs.find(Ve).create(this.ngForTrackBy))}if(this._differ){const Ve=this._differ.diff(this._ngForOf);Ve&&this._applyChanges(Ve)}}_applyChanges(Ve){const Et=this._viewContainer;Ve.forEachOperation((Jt,ti,di)=>{if(null==Jt.previousIndex)Et.createEmbeddedView(this._template,new Yi(Jt.item,this._ngForOf,-1,-1),null===di?void 0:di);else if(null==di)Et.remove(null===ti?void 0:ti);else if(null!==ti){const Ii=Et.get(ti);Et.move(Ii,di),At(Ii,Jt)}});for(let Jt=0,ti=Et.length;Jt{At(Et.get(Jt.currentIndex),Jt)})}static ngTemplateContextGuard(Ve,Et){return!0}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(T._q3))};static \u0275dir=e.FsC({type:Fe,selectors:[["","ngFor","","ngForOf",""]],inputs:{ngForOf:"ngForOf",ngForTrackBy:"ngForTrackBy",ngForTemplate:"ngForTemplate"}})}return Fe})();function At(Fe,Wt){Fe.context.$implicit=Wt.item}let ae=(()=>{class Fe{_viewContainer;_context=new Lt;_thenTemplateRef=null;_elseTemplateRef=null;_thenViewRef=null;_elseViewRef=null;constructor(Ve,Et){this._viewContainer=Ve,this._thenTemplateRef=Et}set ngIf(Ve){this._context.$implicit=this._context.ngIf=Ve,this._updateView()}set ngIfThen(Ve){Ht(Ve),this._thenTemplateRef=Ve,this._thenViewRef=null,this._updateView()}set ngIfElse(Ve){Ht(Ve),this._elseTemplateRef=Ve,this._elseViewRef=null,this._updateView()}_updateView(){this._context.$implicit?this._thenViewRef||(this._viewContainer.clear(),this._elseViewRef=null,this._thenTemplateRef&&(this._thenViewRef=this._viewContainer.createEmbeddedView(this._thenTemplateRef,this._context))):this._elseViewRef||(this._viewContainer.clear(),this._thenViewRef=null,this._elseTemplateRef&&(this._elseViewRef=this._viewContainer.createEmbeddedView(this._elseTemplateRef,this._context)))}static ngIfUseIfTypeGuard;static ngTemplateGuard_ngIf;static ngTemplateContextGuard(Ve,Et){return!0}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(e.c1b),e.rXU(e.C4Q))};static \u0275dir=e.FsC({type:Fe,selectors:[["","ngIf",""]],inputs:{ngIf:"ngIf",ngIfThen:"ngIfThen",ngIfElse:"ngIfElse"}})}return Fe})();class Lt{$implicit=null;ngIf=null}function Ht(Fe,Wt){if(Fe&&!Fe.createEmbeddedView)throw new w.buA(2020,!1)}class _n{_viewContainerRef;_templateRef;_created=!1;constructor(Wt,Ve){this._viewContainerRef=Wt,this._templateRef=Ve}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(Wt){Wt&&!this._created?this.create():!Wt&&this._created&&this.destroy()}}let fi=(()=>{class Fe{_defaultViews=[];_defaultUsed=!1;_caseCount=0;_lastCaseCheckIndex=0;_lastCasesMatched=!1;_ngSwitch;set ngSwitch(Ve){this._ngSwitch=Ve,0===this._caseCount&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(Ve){this._defaultViews.push(Ve)}_matchCase(Ve){const Et=Ve===this._ngSwitch;return this._lastCasesMatched||=Et,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),Et}_updateDefaultCases(Ve){if(this._defaultViews.length>0&&Ve!==this._defaultUsed){this._defaultUsed=Ve;for(const Et of this._defaultViews)Et.enforceState(Ve)}}static \u0275fac=function(Et){return new(Et||Fe)};static \u0275dir=e.FsC({type:Fe,selectors:[["","ngSwitch",""]],inputs:{ngSwitch:"ngSwitch"}})}return Fe})(),bi=(()=>{class Fe{ngSwitch;_view;ngSwitchCase;constructor(Ve,Et,Jt){this.ngSwitch=Jt,Jt._addCase(),this._view=new _n(Ve,Et)}ngDoCheck(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(fi,9))};static \u0275dir=e.FsC({type:Fe,selectors:[["","ngSwitchCase",""]],inputs:{ngSwitchCase:"ngSwitchCase"}})}return Fe})(),Qi=(()=>{class Fe{constructor(Ve,Et,Jt){Jt._addDefault(new _n(Ve,Et))}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(fi,9))};static \u0275dir=e.FsC({type:Fe,selectors:[["","ngSwitchDefault",""]]})}return Fe})(),Yt=(()=>{class Fe{_ngEl;_differs;_renderer;_ngStyle=null;_differ=null;constructor(Ve,Et,Jt){this._ngEl=Ve,this._differs=Et,this._renderer=Jt}set ngStyle(Ve){this._ngStyle=Ve,!this._differ&&Ve&&(this._differ=this._differs.find(Ve).create())}ngDoCheck(){if(this._differ){const Ve=this._differ.diff(this._ngStyle);Ve&&this._applyChanges(Ve)}}_setStyle(Ve,Et){const[Jt,ti]=Ve.split("."),di=-1===Jt.indexOf("-")?void 0:e.czy.DashCase;null!=Et?this._renderer.setStyle(this._ngEl.nativeElement,Jt,ti?`${Et}${ti}`:Et,di):this._renderer.removeStyle(this._ngEl.nativeElement,Jt,di)}_applyChanges(Ve){Ve.forEachRemovedItem(Et=>this._setStyle(Et.key,null)),Ve.forEachAddedItem(Et=>this._setStyle(Et.key,Et.currentValue)),Ve.forEachChangedItem(Et=>this._setStyle(Et.key,Et.currentValue))}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(e.aKT),e.rXU(T.MKu),e.rXU(e.sFG))};static \u0275dir=e.FsC({type:Fe,selectors:[["","ngStyle",""]],inputs:{ngStyle:"ngStyle"}})}return Fe})(),Un=(()=>{class Fe{_viewContainerRef;_viewRef=null;ngTemplateOutletContext=null;ngTemplateOutlet=null;ngTemplateOutletInjector=null;constructor(Ve){this._viewContainerRef=Ve}ngOnChanges(Ve){if(this._shouldRecreateView(Ve)){const Et=this._viewContainerRef;if(this._viewRef&&Et.remove(Et.indexOf(this._viewRef)),!this.ngTemplateOutlet)return void(this._viewRef=null);const Jt=this._createContextForwardProxy();this._viewRef=Et.createEmbeddedView(this.ngTemplateOutlet,Jt,{injector:this.ngTemplateOutletInjector??void 0})}}_shouldRecreateView(Ve){return!!Ve.ngTemplateOutlet||!!Ve.ngTemplateOutletInjector}_createContextForwardProxy(){return new Proxy({},{set:(Ve,Et,Jt)=>!!this.ngTemplateOutletContext&&Reflect.set(this.ngTemplateOutletContext,Et,Jt),get:(Ve,Et,Jt)=>{if(this.ngTemplateOutletContext)return Reflect.get(this.ngTemplateOutletContext,Et,Jt)}})}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(e.c1b))};static \u0275dir=e.FsC({type:Fe,selectors:[["","ngTemplateOutlet",""]],inputs:{ngTemplateOutletContext:"ngTemplateOutletContext",ngTemplateOutlet:"ngTemplateOutlet",ngTemplateOutletInjector:"ngTemplateOutletInjector"},features:[e.OA$]})}return Fe})();function Fn(Fe,Wt){return new w.buA(2100,!1)}class ci{createSubscription(Wt,Ve,Et){return(0,O.O8)(()=>Wt.subscribe({next:Ve,error:Et}))}dispose(Wt){(0,O.O8)(()=>Wt.unsubscribe())}}class rn{createSubscription(Wt,Ve,Et){return Wt.then(Jt=>Ve?.(Jt),Jt=>Et?.(Jt)),{unsubscribe:()=>{Ve=null,Et=null}}}dispose(Wt){Wt.unsubscribe()}}const In=new rn,Mn=new ci;let Vn=(()=>{class Fe{_ref;_latestValue=null;markForCheckOnValueUpdate=!0;_subscription=null;_obj=null;_strategy=null;applicationErrorHandler=(0,w.WQX)(w.ZTf);constructor(Ve){this._ref=Ve}ngOnDestroy(){this._subscription&&this._dispose(),this._ref=null}transform(Ve){if(!this._obj){if(Ve)try{this.markForCheckOnValueUpdate=!1,this._subscribe(Ve)}finally{this.markForCheckOnValueUpdate=!0}return this._latestValue}return Ve!==this._obj?(this._dispose(),this.transform(Ve)):this._latestValue}_subscribe(Ve){this._obj=Ve,this._strategy=this._selectStrategy(Ve),this._subscription=this._strategy.createSubscription(Ve,Et=>this._updateLatestValue(Ve,Et),Et=>this.applicationErrorHandler(Et))}_selectStrategy(Ve){if((0,e.yLl)(Ve))return In;if((0,e.cdK)(Ve))return Mn;throw Fn()}_dispose(){this._strategy.dispose(this._subscription),this._latestValue=null,this._subscription=null,this._obj=null}_updateLatestValue(Ve,Et){Ve===this._obj&&(this._latestValue=Et,this.markForCheckOnValueUpdate&&this._ref?.markForCheck())}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(T.gRc,16))};static \u0275pipe=e.EJ8({name:"async",type:Fe,pure:!1})}return Fe})(),ii=(()=>{class Fe{transform(Ve){if(null==Ve)return null;if("string"!=typeof Ve)throw Fn();return Ve.toLowerCase()}static \u0275fac=function(Et){return new(Et||Fe)};static \u0275pipe=e.EJ8({name:"lowercase",type:Fe,pure:!0})}return Fe})();const Bn=/(?:[0-9A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF38\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A])\S*/g;let ia=(()=>{class Fe{transform(Ve){if(null==Ve)return null;if("string"!=typeof Ve)throw Fn();return Ve.replace(Bn,Et=>Et[0].toUpperCase()+Et.slice(1).toLowerCase())}static \u0275fac=function(Et){return new(Et||Fe)};static \u0275pipe=e.EJ8({name:"titlecase",type:Fe,pure:!0})}return Fe})(),ra=(()=>{class Fe{transform(Ve){if(null==Ve)return null;if("string"!=typeof Ve)throw Fn();return Ve.toUpperCase()}static \u0275fac=function(Et){return new(Et||Fe)};static \u0275pipe=e.EJ8({name:"uppercase",type:Fe,pure:!0})}return Fe})();const ha=new w.nKC(""),qt=new w.nKC("");let En=(()=>{class Fe{locale;defaultTimezone;defaultOptions;constructor(Ve,Et,Jt){this.locale=Ve,this.defaultTimezone=Et,this.defaultOptions=Jt}transform(Ve,Et,Jt,ti){if(null==Ve||""===Ve||Ve!=Ve)return null;try{return nt(Ve,Et??this.defaultOptions?.dateFormat??"mediumDate",ti||this.locale,Jt??this.defaultOptions?.timezone??this.defaultTimezone??void 0)}catch(di){throw Fn()}}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(e.xe9,16),e.rXU(ha,24),e.rXU(qt,24))};static \u0275pipe=e.EJ8({name:"date",type:Fe,pure:!0})}return Fe})(),Hn=(()=>{class Fe{transform(Ve){return JSON.stringify(Ve,null,2)}static \u0275fac=function(Et){return new(Et||Fe)};static \u0275pipe=e.EJ8({name:"json",type:Fe,pure:!1})}return Fe})(),da=(()=>{class Fe{differs;constructor(Ve){this.differs=Ve}differ;keyValues=[];compareFn=Ta;transform(Ve,Et=Ta){if(!Ve||!(Ve instanceof Map)&&"object"!=typeof Ve)return null;this.differ??=this.differs.find(Ve).create();const Jt=this.differ.diff(Ve),ti=Et!==this.compareFn;return Jt&&(this.keyValues=[],Jt.forEachItem(di=>{this.keyValues.push(function Pi(Fe,Wt){return{key:Fe,value:Wt}}(di.key,di.currentValue))})),(Jt||ti)&&(Et&&this.keyValues.sort(Et),this.compareFn=Et),this.keyValues}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(T.MKu,16))};static \u0275pipe=e.EJ8({name:"keyvalue",type:Fe,pure:!1})}return Fe})();function Ta(Fe,Wt){const Ve=Fe.key,Et=Wt.key;if(Ve===Et)return 0;if(null==Ve)return 1;if(null==Et)return-1;if("string"==typeof Ve&&"string"==typeof Et)return Ve{class Fe{_locale;constructor(Ve){this._locale=Ve}transform(Ve,Et,Jt){if(!function bn(Fe){return!(null==Fe||""===Fe||Fe!=Fe)}(Ve))return null;Jt||=this._locale;try{return function ut(Fe,Wt,Ve){return function pn(Fe,Wt,Ve,Et,Jt,ti,di=!1){let Ii="",ca=!1;if(isFinite(Fe)){let nn=function se(Fe){let Et,Jt,ti,di,Ii,Wt=Math.abs(Fe)+"",Ve=0;for((Jt=Wt.indexOf("."))>-1&&(Wt=Wt.replace(".","")),(ti=Wt.search(/e/i))>0?(Jt<0&&(Jt=ti),Jt+=+Wt.slice(ti+1),Wt=Wt.substring(0,ti)):Jt<0&&(Jt=Wt.length),ti=0;"0"===Wt.charAt(ti);ti++);if(ti===(Ii=Wt.length))Et=[0],Jt=1;else{for(Ii--;"0"===Wt.charAt(Ii);)Ii--;for(Jt-=ti,Et=[],di=0;ti<=Ii;ti++,di++)Et[di]=Number(Wt.charAt(ti))}return Jt>22&&(Et=Et.splice(0,21),Ve=Jt-1,Jt=1),{digits:Et,exponent:Ve,integerLen:Jt}}(Fe);di&&(nn=function Ot(Fe){if(0===Fe.digits[0])return Fe;const Wt=Fe.digits.length-Fe.integerLen;return Fe.exponent?Fe.exponent+=2:(0===Wt?Fe.digits.push(0,0):1===Wt&&Fe.digits.push(0),Fe.integerLen+=2),Fe}(nn));let ni=Wt.minInt,U=Wt.minFrac,tt=Wt.maxFrac;if(ti){const Ua=ti.match(ye);if(null===Ua)throw new w.buA(2306,!1);const $a=Ua[1],ns=Ua[3],Ga=Ua[5];null!=$a&&(ni=bt($a)),null!=ns&&(U=bt(ns)),null!=Ga?tt=bt(Ga):null!=ns&&U>tt&&(tt=U);const As=100;if(ni>As||U>As||tt>As)throw new w.buA(2306,!1)}!function We(Fe,Wt,Ve){if(Wt>Ve)throw new w.buA(2307,!1);let Et=Fe.digits,Jt=Et.length-Fe.integerLen;const ti=Math.min(Math.max(Wt,Jt),Ve);let di=ti+Fe.integerLen,Ii=Et[di];if(di>0){Et.splice(Math.max(Fe.integerLen,di));for(let U=di;U=5)if(di-1<0){for(let U=0;U>di;U--)Et.unshift(0),Fe.integerLen++;Et.unshift(1),Fe.integerLen++}else Et[di-1]++;for(;Jt=nn?Xt.pop():ca=!1),tt>=10?1:0},0);ni&&(Et.unshift(ni),Fe.integerLen++)}(nn,U,tt);let Ze=nn.digits,Xt=nn.integerLen;const Nn=nn.exponent;let Ki=[];for(ca=Ze.every(Ua=>!Ua);Xt0?Ki=Ze.splice(Xt,Ze.length):(Ki=Ze,Ze=[0]);const _a=[];for(Ze.length>=Wt.lgSize&&_a.unshift(Ze.splice(-Wt.lgSize,Ze.length).join(""));Ze.length>Wt.gSize;)_a.unshift(Ze.splice(-Wt.gSize,Ze.length).join(""));Ze.length&&_a.unshift(Ze.join("")),Ii=_a.join(J(Ve,Et)),Ki.length&&(Ii+=J(Ve,Jt)+Ki.join("")),Nn&&(Ii+=J(Ve,6)+"+"+Nn)}else Ii=J(Ve,9);return Ii=Fe<0&&!ca?Wt.negPre+Ii+Wt.negSuf:Wt.posPre+Ii+Wt.posSuf,Ii}(Fe,function Ge(Fe,Wt="-"){const Ve={minInt:1,minFrac:0,maxFrac:0,posPre:"",posSuf:"",negPre:"",negSuf:"",gSize:0,lgSize:0},Et=Fe.split(";"),Jt=Et[0],ti=Et[1],di=-1!==Jt.indexOf(".")?Jt.split("."):[Jt.substring(0,Jt.lastIndexOf("0")+1),Jt.substring(Jt.lastIndexOf("0")+1)],Ii=di[0],ca=di[1]||"";Ve.posPre=Ii.substring(0,Ii.indexOf("#"));for(let ni=0;ni{class Fe{transform(Ve,Et,Jt){if(null==Ve)return null;if("string"!=typeof Ve&&!Array.isArray(Ve))throw Fn();return Ve.slice(Et,Jt)}static \u0275fac=function(Et){return new(Et||Fe)};static \u0275pipe=e.EJ8({name:"slice",type:Fe,pure:!1})}return Fe})(),Ca=(()=>{class Fe{static \u0275fac=function(Et){return new(Et||Fe)};static \u0275mod=e.$C({type:Fe});static \u0275inj=w.G2t({})}return Fe})()},7303(Zt,pe,l){"use strict";l.d(pe,{Q:()=>B,Sm:()=>le,Vw:()=>O,aZ:()=>Ce,hb:()=>A,hj:()=>f,ig:()=>w,kB:()=>Pe,om:()=>L,qj:()=>e,rb:()=>T});var i=l(2615),d=l(1413);let v=null;function T(){return v}function w(re){v??=re}class e{}let O=(()=>{class re{historyGo(Ee){throw new Error("")}static \u0275fac=function(V){return new(V||re)};static \u0275prov=i.jDH({token:re,factory:()=>(0,i.WQX)(u),providedIn:"platform"})}return re})();const f=new i.nKC("");let u=(()=>{class re extends O{_location;_history;_doc=(0,i.WQX)(i.qQL);constructor(){super(),this._location=window.location,this._history=window.history}getBaseHrefFromDOM(){return T().getBaseHref(this._doc)}onPopState(Ee){const V=T().getGlobalEventTarget(this._doc,"window");return V.addEventListener("popstate",Ee,!1),()=>V.removeEventListener("popstate",Ee)}onHashChange(Ee){const V=T().getGlobalEventTarget(this._doc,"window");return V.addEventListener("hashchange",Ee,!1),()=>V.removeEventListener("hashchange",Ee)}get href(){return this._location.href}get protocol(){return this._location.protocol}get hostname(){return this._location.hostname}get port(){return this._location.port}get pathname(){return this._location.pathname}get search(){return this._location.search}get hash(){return this._location.hash}set pathname(Ee){this._location.pathname=Ee}pushState(Ee,V,ce){this._history.pushState(Ee,V,ce)}replaceState(Ee,V,ce){this._history.replaceState(Ee,V,ce)}forward(){this._history.forward()}back(){this._history.back()}historyGo(Ee=0){this._history.go(Ee)}getState(){return this._history.state}static \u0275fac=function(V){return new(V||re)};static \u0275prov=i.jDH({token:re,factory:()=>new re,providedIn:"platform"})}return re})();function L(re,xe){return re?xe?re.endsWith("/")?xe.startsWith("/")?re+xe.slice(1):re+xe:xe.startsWith("/")?re+xe:`${re}/${xe}`:re:xe}function C(re){const xe=re.search(/#|\?|$/);return"/"===re[xe-1]?re.slice(0,xe-1)+re.slice(xe):re}function B(re){return re&&"?"!==re[0]?`?${re}`:re}let A=(()=>{class re{historyGo(Ee){throw new Error("")}static \u0275fac=function(V){return new(V||re)};static \u0275prov=i.jDH({token:re,factory:()=>(0,i.WQX)(le),providedIn:"root"})}return re})();const Pe=new i.nKC("");let le=(()=>{class re extends A{_platformLocation;_baseHref;_removeListenerFns=[];constructor(Ee,V){super(),this._platformLocation=Ee,this._baseHref=V??this._platformLocation.getBaseHrefFromDOM()??(0,i.WQX)(i.qQL).location?.origin??""}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(Ee){this._removeListenerFns.push(this._platformLocation.onPopState(Ee),this._platformLocation.onHashChange(Ee))}getBaseHref(){return this._baseHref}prepareExternalUrl(Ee){return L(this._baseHref,Ee)}path(Ee=!1){const V=this._platformLocation.pathname+B(this._platformLocation.search),ce=this._platformLocation.hash;return ce&&Ee?`${V}${ce}`:V}pushState(Ee,V,ce,be){const ne=this.prepareExternalUrl(ce+B(be));this._platformLocation.pushState(Ee,V,ne)}replaceState(Ee,V,ce,be){const ne=this.prepareExternalUrl(ce+B(be));this._platformLocation.replaceState(Ee,V,ne)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(Ee=0){this._platformLocation.historyGo?.(Ee)}static \u0275fac=function(V){return new(V||re)(i.KVO(O),i.KVO(Pe,8))};static \u0275prov=i.jDH({token:re,factory:re.\u0275fac,providedIn:"root"})}return re})(),Ce=(()=>{class re{_subject=new d.B;_basePath;_locationStrategy;_urlChangeListeners=[];_urlChangeSubscription=null;constructor(Ee){this._locationStrategy=Ee;const V=this._locationStrategy.getBaseHref();this._basePath=function G(re){if(new RegExp("^(https?:)?//").test(re)){const[,Ee]=re.split(/\/\/[^\/]+/);return Ee}return re}(C(W(V))),this._locationStrategy.onPopState(ce=>{this._subject.next({url:this.path(!0),pop:!0,state:ce.state,type:ce.type})})}ngOnDestroy(){this._urlChangeSubscription?.unsubscribe(),this._urlChangeListeners=[]}path(Ee=!1){return this.normalize(this._locationStrategy.path(Ee))}getState(){return this._locationStrategy.getState()}isCurrentPathEqualTo(Ee,V=""){return this.path()==this.normalize(Ee+B(V))}normalize(Ee){return re.stripTrailingSlash(function j(re,xe){if(!re||!xe.startsWith(re))return xe;const Ee=xe.substring(re.length);return""===Ee||["/",";","?","#"].includes(Ee[0])?Ee:xe}(this._basePath,W(Ee)))}prepareExternalUrl(Ee){return Ee&&"/"!==Ee[0]&&(Ee="/"+Ee),this._locationStrategy.prepareExternalUrl(Ee)}go(Ee,V="",ce=null){this._locationStrategy.pushState(ce,"",Ee,V),this._notifyUrlChangeListeners(this.prepareExternalUrl(Ee+B(V)),ce)}replaceState(Ee,V="",ce=null){this._locationStrategy.replaceState(ce,"",Ee,V),this._notifyUrlChangeListeners(this.prepareExternalUrl(Ee+B(V)),ce)}forward(){this._locationStrategy.forward()}back(){this._locationStrategy.back()}historyGo(Ee=0){this._locationStrategy.historyGo?.(Ee)}onUrlChange(Ee){return this._urlChangeListeners.push(Ee),this._urlChangeSubscription??=this.subscribe(V=>{this._notifyUrlChangeListeners(V.url,V.state)}),()=>{const V=this._urlChangeListeners.indexOf(Ee);this._urlChangeListeners.splice(V,1),0===this._urlChangeListeners.length&&(this._urlChangeSubscription?.unsubscribe(),this._urlChangeSubscription=null)}}_notifyUrlChangeListeners(Ee="",V){this._urlChangeListeners.forEach(ce=>ce(Ee,V))}subscribe(Ee,V,ce){return this._subject.subscribe({next:Ee,error:V??void 0,complete:ce??void 0})}static normalizeQueryParams=B;static joinWithSlash=L;static stripTrailingSlash=C;static \u0275fac=function(V){return new(V||re)(i.KVO(A))};static \u0275prov=i.jDH({token:re,factory:()=>function Ae(){return new Ce((0,i.KVO)(A))}(),providedIn:"root"})}return re})();function W(re){return re.replace(/\/index.html$/,"")}},9330(Zt,pe,l){"use strict";l.d(pe,{$R:()=>Yi,Nl:()=>De,Qq:()=>Qe,Sx:()=>we,ZZ:()=>fi,a7:()=>pt,q1:()=>Qi});var O=l(467),f=l(2615),u=l(3664),L=l(274),C=l(5964),B=l(980),A=l(6354),Pe=l(5558),le=l(1985),Ae=(l(2806),l(7673)),j=l(2512);class W{}class G{}class re{headers;normalizedNames=new Map;lazyInit;lazyUpdate=null;constructor(an){an?"string"==typeof an?this.lazyInit=()=>{this.headers=new Map,an.split("\n").forEach(Yt=>{const Un=Yt.indexOf(":");if(Un>0){const zn=Yt.slice(0,Un),Fn=Yt.slice(Un+1).trim();this.addHeaderEntry(zn,Fn)}})}:typeof Headers<"u"&&an instanceof Headers?(this.headers=new Map,an.forEach((Yt,Un)=>{this.addHeaderEntry(Un,Yt)})):this.lazyInit=()=>{this.headers=new Map,Object.entries(an).forEach(([Yt,Un])=>{this.setHeaderEntries(Yt,Un)})}:this.headers=new Map}has(an){return this.init(),this.headers.has(an.toLowerCase())}get(an){this.init();const Yt=this.headers.get(an.toLowerCase());return Yt&&Yt.length>0?Yt[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(an){return this.init(),this.headers.get(an.toLowerCase())||null}append(an,Yt){return this.clone({name:an,value:Yt,op:"a"})}set(an,Yt){return this.clone({name:an,value:Yt,op:"s"})}delete(an,Yt){return this.clone({name:an,value:Yt,op:"d"})}maybeSetNormalizedName(an,Yt){this.normalizedNames.has(Yt)||this.normalizedNames.set(Yt,an)}init(){this.lazyInit&&(this.lazyInit instanceof re?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(an=>this.applyUpdate(an)),this.lazyUpdate=null))}copyFrom(an){an.init(),Array.from(an.headers.keys()).forEach(Yt=>{this.headers.set(Yt,an.headers.get(Yt)),this.normalizedNames.set(Yt,an.normalizedNames.get(Yt))})}clone(an){const Yt=new re;return Yt.lazyInit=this.lazyInit&&this.lazyInit instanceof re?this.lazyInit:this,Yt.lazyUpdate=(this.lazyUpdate||[]).concat([an]),Yt}applyUpdate(an){const Yt=an.name.toLowerCase();switch(an.op){case"a":case"s":let Un=an.value;if("string"==typeof Un&&(Un=[Un]),0===Un.length)return;this.maybeSetNormalizedName(an.name,Yt);const zn=("a"===an.op?this.headers.get(Yt):void 0)||[];zn.push(...Un),this.headers.set(Yt,zn);break;case"d":const Fn=an.value;if(Fn){let ci=this.headers.get(Yt);if(!ci)return;ci=ci.filter(rn=>-1===Fn.indexOf(rn)),0===ci.length?(this.headers.delete(Yt),this.normalizedNames.delete(Yt)):this.headers.set(Yt,ci)}else this.headers.delete(Yt),this.normalizedNames.delete(Yt)}}addHeaderEntry(an,Yt){const Un=an.toLowerCase();this.maybeSetNormalizedName(an,Un),this.headers.has(Un)?this.headers.get(Un).push(Yt):this.headers.set(Un,[Yt])}setHeaderEntries(an,Yt){const Un=(Array.isArray(Yt)?Yt:[Yt]).map(Fn=>Fn.toString()),zn=an.toLowerCase();this.headers.set(zn,Un),this.maybeSetNormalizedName(an,zn)}forEach(an){this.init(),Array.from(this.normalizedNames.keys()).forEach(Yt=>an(this.normalizedNames.get(Yt),this.headers.get(Yt)))}}class Ee{encodeKey(an){return ne(an)}encodeValue(an){return ne(an)}decodeKey(an){return decodeURIComponent(an)}decodeValue(an){return decodeURIComponent(an)}}const ce=/%(\d[a-f0-9])/gi,be={40:"@","3A":":",24:"$","2C":",","3B":";","3D":"=","3F":"?","2F":"/"};function ne(It){return encodeURIComponent(It).replace(ce,(an,Yt)=>be[Yt]??an)}function J(It){return`${It}`}class De{map;encoder;updates=null;cloneFrom=null;constructor(an={}){if(this.encoder=an.encoder||new Ee,an.fromString){if(an.fromObject)throw new f.buA(2805,!1);this.map=function V(It,an){const Yt=new Map;return It.length>0&&It.replace(/^\?/,"").split("&").forEach(zn=>{const Fn=zn.indexOf("="),[ci,rn]=-1==Fn?[an.decodeKey(zn),""]:[an.decodeKey(zn.slice(0,Fn)),an.decodeValue(zn.slice(Fn+1))],In=Yt.get(ci)||[];In.push(rn),Yt.set(ci,In)}),Yt}(an.fromString,this.encoder)}else an.fromObject?(this.map=new Map,Object.keys(an.fromObject).forEach(Yt=>{const Un=an.fromObject[Yt],zn=Array.isArray(Un)?Un.map(J):[J(Un)];this.map.set(Yt,zn)})):this.map=null}has(an){return this.init(),this.map.has(an)}get(an){this.init();const Yt=this.map.get(an);return Yt?Yt[0]:null}getAll(an){return this.init(),this.map.get(an)||null}keys(){return this.init(),Array.from(this.map.keys())}append(an,Yt){return this.clone({param:an,value:Yt,op:"a"})}appendAll(an){const Yt=[];return Object.keys(an).forEach(Un=>{const zn=an[Un];Array.isArray(zn)?zn.forEach(Fn=>{Yt.push({param:Un,value:Fn,op:"a"})}):Yt.push({param:Un,value:zn,op:"a"})}),this.clone(Yt)}set(an,Yt){return this.clone({param:an,value:Yt,op:"s"})}delete(an,Yt){return this.clone({param:an,value:Yt,op:"d"})}toString(){return this.init(),this.keys().map(an=>{const Yt=this.encoder.encodeKey(an);return this.map.get(an).map(Un=>Yt+"="+this.encoder.encodeValue(Un)).join("&")}).filter(an=>""!==an).join("&")}clone(an){const Yt=new De({encoder:this.encoder});return Yt.cloneFrom=this.cloneFrom||this,Yt.updates=(this.updates||[]).concat(an),Yt}init(){null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(an=>this.map.set(an,this.cloneFrom.map.get(an))),this.updates.forEach(an=>{switch(an.op){case"a":case"s":const Yt=("a"===an.op?this.map.get(an.param):void 0)||[];Yt.push(J(an.value)),this.map.set(an.param,Yt);break;case"d":if(void 0===an.value){this.map.delete(an.param);break}{let Un=this.map.get(an.param)||[];const zn=Un.indexOf(J(an.value));-1!==zn&&Un.splice(zn,1),Un.length>0?this.map.set(an.param,Un):this.map.delete(an.param)}}}),this.cloneFrom=this.updates=null)}}class Xe{map=new Map;set(an,Yt){return this.map.set(an,Yt),this}get(an){return this.map.has(an)||this.map.set(an,an.defaultValue()),this.map.get(an)}delete(an){return this.map.delete(an),this}has(an){return this.map.has(an)}keys(){return this.map.keys()}}function he(It){return typeof ArrayBuffer<"u"&&It instanceof ArrayBuffer}function Dt(It){return typeof Blob<"u"&&It instanceof Blob}function lt(It){return typeof FormData<"u"&&It instanceof FormData}const te="Content-Type",ie="Accept",P="X-Request-URL",F="text/plain",ve="application/json",H=`${ve}, ${F}, */*`;class ${url;body=null;headers;context;reportProgress=!1;withCredentials=!1;credentials;keepalive=!1;cache;priority;mode;redirect;referrer;integrity;responseType="json";method;params;urlWithParams;transferCache;timeout;constructor(an,Yt,Un,zn){let Fn;if(this.url=Yt,this.method=an.toUpperCase(),function _e(It){switch(It){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}(this.method)||zn?(this.body=void 0!==Un?Un:null,Fn=zn):Fn=Un,Fn){if(this.reportProgress=!!Fn.reportProgress,this.withCredentials=!!Fn.withCredentials,this.keepalive=!!Fn.keepalive,Fn.responseType&&(this.responseType=Fn.responseType),Fn.headers&&(this.headers=Fn.headers),Fn.context&&(this.context=Fn.context),Fn.params&&(this.params=Fn.params),Fn.priority&&(this.priority=Fn.priority),Fn.cache&&(this.cache=Fn.cache),Fn.credentials&&(this.credentials=Fn.credentials),"number"==typeof Fn.timeout){if(Fn.timeout<1||!Number.isInteger(Fn.timeout))throw new f.buA(2822,"");this.timeout=Fn.timeout}Fn.mode&&(this.mode=Fn.mode),Fn.redirect&&(this.redirect=Fn.redirect),Fn.integrity&&(this.integrity=Fn.integrity),void 0!==Fn.referrer&&(this.referrer=Fn.referrer),this.transferCache=Fn.transferCache}if(this.headers??=new re,this.context??=new Xe,this.params){const ci=this.params.toString();if(0===ci.length)this.urlWithParams=Yt;else{const rn=Yt.indexOf("?");this.urlWithParams=Yt+(-1===rn?"?":rnRn.set(Hn,an.setHeaders[Hn]),En)),an.setParams&&(Wn=Object.keys(an.setParams).reduce((Rn,Hn)=>Rn.set(Hn,an.setParams[Hn]),Wn)),new $(Yt,Un,fa,{params:Wn,headers:En,context:ri,reportProgress:qt,responseType:zn,withCredentials:ha,transferCache:ia,keepalive:Fn,cache:rn,priority:ci,timeout:ra,mode:In,redirect:Mn,credentials:Vn,referrer:ii,integrity:Bn})}}var Ke=function(It){return It[It.Sent=0]="Sent",It[It.UploadProgress=1]="UploadProgress",It[It.ResponseHeader=2]="ResponseHeader",It[It.DownloadProgress=3]="DownloadProgress",It[It.Response=4]="Response",It[It.User=5]="User",It}(Ke||{});class Vt{headers;status;statusText;url;ok;type;redirected;constructor(an,Yt=200,Un="OK"){this.headers=an.headers||new re,this.status=void 0!==an.status?an.status:Yt,this.statusText=an.statusText||Un,this.url=an.url||null,this.redirected=an.redirected,this.ok=this.status>=200&&this.status<300}}class St extends Vt{constructor(an={}){super(an)}type=Ke.ResponseHeader;clone(an={}){return new St({headers:an.headers||this.headers,status:void 0!==an.status?an.status:this.status,statusText:an.statusText||this.statusText,url:an.url||this.url||void 0})}}class ot extends Vt{body;constructor(an={}){super(an),this.body=void 0!==an.body?an.body:null}type=Ke.Response;clone(an={}){return new ot({body:void 0!==an.body?an.body:this.body,headers:an.headers||this.headers,status:void 0!==an.status?an.status:this.status,statusText:an.statusText||this.statusText,url:an.url||this.url||void 0,redirected:an.redirected??this.redirected})}}class nt extends Vt{name="HttpErrorResponse";message;error;ok=!1;constructor(an){super(an,0,"Unknown Error"),this.message=this.status>=200&&this.status<300?`Http failure during parsing for ${an.url||"(unknown url)"}`:`Http failure response for ${an.url||"(unknown url)"}: ${an.status} ${an.statusText}`,this.error=an.error||null}}function fe(It,an){return{body:an,headers:It.headers,context:It.context,observe:It.observe,params:It.params,reportProgress:It.reportProgress,responseType:It.responseType,withCredentials:It.withCredentials,credentials:It.credentials,transferCache:It.transferCache,timeout:It.timeout,keepalive:It.keepalive,priority:It.priority,cache:It.cache,mode:It.mode,redirect:It.redirect,integrity:It.integrity,referrer:It.referrer}}let Qe=(()=>{class It{handler;constructor(Yt){this.handler=Yt}request(Yt,Un,zn={}){let Fn;if(Yt instanceof $)Fn=Yt;else{let In,Mn;In=zn.headers instanceof re?zn.headers:new re(zn.headers),zn.params&&(Mn=zn.params instanceof De?zn.params:new De({fromObject:zn.params})),Fn=new $(Yt,Un,void 0!==zn.body?zn.body:null,{headers:In,context:zn.context,params:Mn,reportProgress:zn.reportProgress,responseType:zn.responseType||"json",withCredentials:zn.withCredentials,transferCache:zn.transferCache,keepalive:zn.keepalive,priority:zn.priority,cache:zn.cache,mode:zn.mode,redirect:zn.redirect,credentials:zn.credentials,referrer:zn.referrer,integrity:zn.integrity,timeout:zn.timeout})}const ci=(0,Ae.of)(Fn).pipe((0,L.H)(In=>this.handler.handle(In)));if(Yt instanceof $||"events"===zn.observe)return ci;const rn=ci.pipe((0,C.p)(In=>In instanceof ot));switch(zn.observe||"body"){case"body":switch(Fn.responseType){case"arraybuffer":return rn.pipe((0,A.T)(In=>{if(null!==In.body&&!(In.body instanceof ArrayBuffer))throw new f.buA(2806,!1);return In.body}));case"blob":return rn.pipe((0,A.T)(In=>{if(null!==In.body&&!(In.body instanceof Blob))throw new f.buA(2807,!1);return In.body}));case"text":return rn.pipe((0,A.T)(In=>{if(null!==In.body&&"string"!=typeof In.body)throw new f.buA(2808,!1);return In.body}));default:return rn.pipe((0,A.T)(In=>In.body))}case"response":return rn;default:throw new f.buA(2809,!1)}}delete(Yt,Un={}){return this.request("DELETE",Yt,Un)}get(Yt,Un={}){return this.request("GET",Yt,Un)}head(Yt,Un={}){return this.request("HEAD",Yt,Un)}jsonp(Yt,Un){return this.request("JSONP",Yt,{params:(new De).append(Un,"JSONP_CALLBACK"),observe:"body",responseType:"json"})}options(Yt,Un={}){return this.request("OPTIONS",Yt,Un)}patch(Yt,Un,zn={}){return this.request("PATCH",Yt,fe(zn,Un))}post(Yt,Un,zn={}){return this.request("POST",Yt,fe(zn,Un))}put(Yt,Un,zn={}){return this.request("PUT",Yt,fe(zn,Un))}static \u0275fac=function(Un){return new(Un||It)(f.KVO(W))};static \u0275prov=f.jDH({token:It,factory:It.\u0275fac})}return It})();const gt=/^\)\]\}',?\n/;function Gt(It){if(It.url)return It.url;const an=P.toLocaleLowerCase();return It.headers.get(an)}const rt=new f.nKC("");let cn=(()=>{class It{fetchImpl=(0,f.WQX)(Ft,{optional:!0})?.fetch??((...Yt)=>globalThis.fetch(...Yt));ngZone=(0,f.WQX)(u.SKi);destroyRef=(0,f.WQX)(f.abz);handle(Yt){return new le.c(Un=>{const zn=new AbortController;let Fn;return this.doRequest(Yt,zn.signal,Un).then(Sn,ci=>Un.error(new nt({error:ci}))),Yt.timeout&&(Fn=this.ngZone.runOutsideAngular(()=>setTimeout(()=>{zn.signal.aborted||zn.abort(new DOMException("signal timed out","TimeoutError"))},Yt.timeout))),()=>{void 0!==Fn&&clearTimeout(Fn),zn.abort()}})}doRequest(Yt,Un,zn){var Fn=this;return(0,O.A)(function*(){const ci=Fn.createRequestInit(Yt);let rn;try{const fa=Fn.ngZone.runOutsideAngular(()=>Fn.fetchImpl(Yt.urlWithParams,{signal:Un,...ci}));(function h(It){It.then(Sn,Sn)})(fa),zn.next({type:Ke.Sent}),rn=yield fa}catch(fa){return void zn.error(new nt({error:fa,status:fa.status??0,statusText:fa.statusText,url:Yt.urlWithParams,headers:fa.headers}))}const In=new re(rn.headers),Mn=rn.statusText,Vn=Gt(rn)??Yt.urlWithParams;let ii=rn.status,Bn=null;if(Yt.reportProgress&&zn.next(new St({headers:In,status:ii,statusText:Mn,url:Vn})),rn.body){const fa=rn.headers.get("content-length"),ha=[],qt=rn.body.getReader();let Wn,ri,En=0;const Rn=typeof Zone<"u"&&Zone.current;let Hn=!1;if(yield Fn.ngZone.runOutsideAngular((0,O.A)(function*(){for(;;){if(Fn.destroyRef.destroyed){yield qt.cancel(),Hn=!0;break}const{done:da,value:Ta}=yield qt.read();if(da)break;if(ha.push(Ta),En+=Ta.length,Yt.reportProgress){ri="text"===Yt.responseType?(ri??"")+(Wn??=new TextDecoder).decode(Ta,{stream:!0}):void 0;const en=()=>zn.next({type:Ke.DownloadProgress,total:fa?+fa:void 0,loaded:En,partialText:ri});Rn?Rn.run(en):en()}}})),Hn)return void zn.complete();const Pi=Fn.concatChunks(ha,En);try{const da=rn.headers.get(te)??"";Bn=Fn.parseBody(Yt,Pi,da,ii)}catch(da){return void zn.error(new nt({error:da,headers:new re(rn.headers),status:rn.status,statusText:rn.statusText,url:Gt(rn)??Yt.urlWithParams}))}}0===ii&&(ii=Bn?200:0);const ra=rn.redirected;ii>=200&&ii<300?(zn.next(new ot({body:Bn,headers:In,status:ii,statusText:Mn,url:Vn,redirected:ra})),zn.complete()):zn.error(new nt({error:Bn,headers:In,status:ii,statusText:Mn,url:Vn,redirected:ra}))})()}parseBody(Yt,Un,zn,Fn){switch(Yt.responseType){case"json":const ci=(new TextDecoder).decode(Un).replace(gt,"");if(""===ci)return null;try{return JSON.parse(ci)}catch(rn){if(Fn<200||Fn>=300)return ci;throw rn}case"text":return(new TextDecoder).decode(Un);case"blob":return new Blob([Un],{type:zn});case"arraybuffer":return Un.buffer}}createRequestInit(Yt){const Un={};let zn;if(zn=Yt.credentials,Yt.withCredentials&&(zn="include"),Yt.headers.forEach((Fn,ci)=>Un[Fn]=ci.join(",")),Yt.headers.has(ie)||(Un[ie]=H),!Yt.headers.has(te)){const Fn=Yt.detectContentTypeHeader();null!==Fn&&(Un[te]=Fn)}return{body:Yt.serializeBody(),method:Yt.method,headers:Un,credentials:zn,keepalive:Yt.keepalive,cache:Yt.cache,priority:Yt.priority,mode:Yt.mode,redirect:Yt.redirect,referrer:Yt.referrer,integrity:Yt.integrity}}concatChunks(Yt,Un){const zn=new Uint8Array(Un);let Fn=0;for(const ci of Yt)zn.set(ci,Fn),Fn+=ci.length;return zn}static \u0275fac=function(Un){return new(Un||It)};static \u0275prov=f.jDH({token:It,factory:It.\u0275fac})}return It})();class Ft{}function Sn(){}function jt(It,an){return an(It)}function Ue(It,an){return(Yt,Un)=>an.intercept(Yt,{handle:zn=>It(zn,Un)})}const pt=new f.nKC(""),Pt=new f.nKC(""),gn=new f.nKC(""),ei=new f.nKC("",{providedIn:"root",factory:()=>!0});function vi(){let It=null;return(an,Yt)=>{null===It&&(It=((0,f.WQX)(pt,{optional:!0})??[]).reduceRight(Ue,jt));const Un=(0,f.WQX)(f.u5s);if((0,f.WQX)(ei)){const Fn=Un.add();return It(an,Yt).pipe((0,B.j)(Fn))}return It(an,Yt)}}let kn=(()=>{class It extends W{backend;injector;chain=null;pendingTasks=(0,f.WQX)(f.u5s);contributeToStability=(0,f.WQX)(ei);constructor(Yt,Un){super(),this.backend=Yt,this.injector=Un}handle(Yt){if(null===this.chain){const Un=Array.from(new Set([...this.injector.get(Pt),...this.injector.get(gn,[])]));this.chain=Un.reduceRight((zn,Fn)=>function wt(It,an,Yt){return(Un,zn)=>(0,f.N4e)(Yt,()=>an(Un,Fn=>It(Fn,zn)))}(zn,Fn,this.injector),jt)}if(this.contributeToStability){const Un=this.pendingTasks.add();return this.chain(Yt,zn=>this.backend.handle(zn)).pipe((0,B.j)(Un))}return this.chain(Yt,Un=>this.backend.handle(Un))}static \u0275fac=function(Un){return new(Un||It)(f.KVO(G),f.KVO(f.uvJ))};static \u0275prov=f.jDH({token:It,factory:It.\u0275fac})}return It})();const pn=/^\)\]\}',?\n/,Je=RegExp(`^${P}:`,"m");let Ge=(()=>{class It{xhrFactory;constructor(Yt){this.xhrFactory=Yt}handle(Yt){if("JSONP"===Yt.method)throw new f.buA(-2800,!1);const Un=this.xhrFactory;return(0,Ae.of)(null).pipe((0,Pe.n)(()=>new le.c(Fn=>{const ci=Un.build();if(ci.open(Yt.method,Yt.urlWithParams),Yt.withCredentials&&(ci.withCredentials=!0),Yt.headers.forEach((ha,qt)=>ci.setRequestHeader(ha,qt.join(","))),Yt.headers.has(ie)||ci.setRequestHeader(ie,H),!Yt.headers.has(te)){const ha=Yt.detectContentTypeHeader();null!==ha&&ci.setRequestHeader(te,ha)}if(Yt.timeout&&(ci.timeout=Yt.timeout),Yt.responseType){const ha=Yt.responseType.toLowerCase();ci.responseType="json"!==ha?ha:"text"}const rn=Yt.serializeBody();let In=null;const Mn=()=>{if(null!==In)return In;const ha=ci.statusText||"OK",qt=new re(ci.getAllResponseHeaders()),En=function Be(It){return"responseURL"in It&&It.responseURL?It.responseURL:Je.test(It.getAllResponseHeaders())?It.getResponseHeader(P):null}(ci)||Yt.url;return In=new St({headers:qt,status:ci.status,statusText:ha,url:En}),In},Vn=()=>{let{headers:ha,status:qt,statusText:En,url:Wn}=Mn(),ri=null;204!==qt&&(ri=typeof ci.response>"u"?ci.responseText:ci.response),0===qt&&(qt=ri?200:0);let Rn=qt>=200&&qt<300;if("json"===Yt.responseType&&"string"==typeof ri){const Hn=ri;ri=ri.replace(pn,"");try{ri=""!==ri?JSON.parse(ri):null}catch(Pi){ri=Hn,Rn&&(Rn=!1,ri={error:Pi,text:ri})}}Rn?(Fn.next(new ot({body:ri,headers:ha,status:qt,statusText:En,url:Wn||void 0})),Fn.complete()):Fn.error(new nt({error:ri,headers:ha,status:qt,statusText:En,url:Wn||void 0}))},ii=ha=>{const{url:qt}=Mn(),En=new nt({error:ha,status:ci.status||0,statusText:ci.statusText||"Unknown Error",url:qt||void 0});Fn.error(En)};let Bn=ii;Yt.timeout&&(Bn=ha=>{const{url:qt}=Mn(),En=new nt({error:new DOMException("Request timed out","TimeoutError"),status:ci.status||0,statusText:ci.statusText||"Request timeout",url:qt||void 0});Fn.error(En)});let ia=!1;const ra=ha=>{ia||(Fn.next(Mn()),ia=!0);let qt={type:Ke.DownloadProgress,loaded:ha.loaded};ha.lengthComputable&&(qt.total=ha.total),"text"===Yt.responseType&&ci.responseText&&(qt.partialText=ci.responseText),Fn.next(qt)},fa=ha=>{let qt={type:Ke.UploadProgress,loaded:ha.loaded};ha.lengthComputable&&(qt.total=ha.total),Fn.next(qt)};return ci.addEventListener("load",Vn),ci.addEventListener("error",ii),ci.addEventListener("timeout",Bn),ci.addEventListener("abort",ii),Yt.reportProgress&&(ci.addEventListener("progress",ra),null!==rn&&ci.upload&&ci.upload.addEventListener("progress",fa)),ci.send(rn),Fn.next({type:Ke.Sent}),()=>{ci.removeEventListener("error",ii),ci.removeEventListener("abort",ii),ci.removeEventListener("load",Vn),ci.removeEventListener("timeout",Bn),Yt.reportProgress&&(ci.removeEventListener("progress",ra),null!==rn&&ci.upload&&ci.upload.removeEventListener("progress",fa)),ci.readyState!==ci.DONE&&ci.abort()}})))}static \u0275fac=function(Un){return new(Un||It)(f.KVO(j.N))};static \u0275prov=f.jDH({token:It,factory:It.\u0275fac})}return It})();const Ot=new f.nKC(""),We=new f.nKC("",{providedIn:"root",factory:()=>"XSRF-TOKEN"}),tn=new f.nKC("",{providedIn:"root",factory:()=>"X-XSRF-TOKEN"});class on{}let un=(()=>{class It{doc;cookieName;lastCookieString="";lastToken=null;parseCount=0;constructor(Yt,Un){this.doc=Yt,this.cookieName=Un}getToken(){const Yt=this.doc.cookie||"";return Yt!==this.lastCookieString&&(this.parseCount++,this.lastToken=(0,j.b)(Yt,this.cookieName),this.lastCookieString=Yt),this.lastToken}static \u0275fac=function(Un){return new(Un||It)(f.KVO(f.qQL),f.KVO(We))};static \u0275prov=f.jDH({token:It,factory:It.\u0275fac})}return It})();const Nt=/^(?:https?:)?\/\//i;function dn(It,an){if(!(0,f.WQX)(Ot)||"GET"===It.method||"HEAD"===It.method||Nt.test(It.url))return an(It);const Yt=(0,f.WQX)(on).getToken(),Un=(0,f.WQX)(tn);return null!=Yt&&!It.headers.has(Un)&&(It=It.clone({headers:It.headers.set(Un,Yt)})),an(It)}var Jn=function(It){return It[It.Interceptors=0]="Interceptors",It[It.LegacyInterceptors=1]="LegacyInterceptors",It[It.CustomXsrfConfiguration=2]="CustomXsrfConfiguration",It[It.NoXsrfProtection=3]="NoXsrfProtection",It[It.JsonpSupport=4]="JsonpSupport",It[It.RequestsMadeViaParent=5]="RequestsMadeViaParent",It[It.Fetch=6]="Fetch",It}(Jn||{});function xi(It,an){return{\u0275kind:It,\u0275providers:an}}function Yi(...It){const an=[Qe,Ge,kn,{provide:W,useExisting:kn},{provide:G,useFactory:()=>(0,f.WQX)(rt,{optional:!0})??(0,f.WQX)(Ge)},{provide:Pt,useValue:dn,multi:!0},{provide:Ot,useValue:!0},{provide:on,useClass:un}];for(const Yt of It)an.push(...Yt.\u0275providers);return(0,f.EmA)(an)}const At=new f.nKC("");function we(){return xi(Jn.LegacyInterceptors,[{provide:At,useFactory:vi},{provide:Pt,useExisting:At,multi:!0}])}function fi(){return xi(Jn.Fetch,[cn,{provide:rt,useExisting:cn},{provide:G,useExisting:cn}])}let Qi=(()=>{class It{static \u0275fac=function(Un){return new(Un||It)};static \u0275mod=u.$C({type:It});static \u0275inj=f.G2t({providers:[Yi(we())]})}return It})()},2512(Zt,pe,l){"use strict";function i(v,T){T=encodeURIComponent(T);for(const w of v.split(";")){const e=w.indexOf("="),[O,f]=-1==e?[w,""]:[w.slice(0,e),w.slice(e+1)];if(O.trim()===T)return decodeURIComponent(f)}return null}l.d(pe,{N:()=>d,b:()=>i});class d{}},7705(Zt,pe,l){"use strict";l.d(pe,{ES_:()=>Ze,HJs:()=>Io,Hbi:()=>mi,L39:()=>ai,MKu:()=>Mo,Udg:()=>Gi,_q3:()=>Ss,a0P:()=>Rl,cCO:()=>Xt,ebz:()=>As,fpN:()=>nr,gRc:()=>Oi,geq:()=>Er,hFB:()=>$a,naY:()=>Ne,oH4:()=>Xs,sbv:()=>zo,uEv:()=>Gl});var Ve=l(2615),Et=l(8440),Jt=l(3664),ti=l(9295);const di=Symbol("InputSignalNode#UNSET"),Ii={...Et.s0,transformFn:void 0,applyValueToInputSignal(yt,je){(0,Et.j2)(yt,je)}};function nn(yt,je){const ct=Object.create(Ii);function Qt(){if((0,Et.mK)(ct),ct.value===di)throw new Ve.buA(-950,null);return ct.value}return ct.value=yt,ct.transformFn=je?.transform,Qt[Et.bh]=ct,Qt}class Ze{attributeName;constructor(je){this.attributeName=je}__NG_ELEMENT_ID__=()=>(0,Jt.kS0)(this.attributeName);toString(){return`HostAttributeToken ${this.attributeName}`}}const Xt=new Ve.nKC("");function _a(yt,je){return nn(yt,je)}Xt.__NG_ELEMENT_ID__=yt=>{const je=(0,Ve.Mx4)();if(null===je)throw new Ve.buA(204,!1);if(2&je.type)return je.value;if(8&yt)return null;throw new Ve.buA(204,!1)};const $a=(_a.required=function Ua(yt){return nn(di,yt)},_a);function ns(yt,je){return(0,Jt.mU9)(je)}const As=(ns.required=function Ga(yt,je){return(0,Jt.hnC)(je)},ns);function mr(yt,je){return(0,Jt.mU9)(je)}const zo=(mr.required=function fr(yt,je){return(0,Jt.hnC)(je)},mr);function gr(yt,je){const ct=Object.create(Ii),Qt=new ti.Zf;function Pn(){return(0,Et.mK)(ct),bo(ct.value),ct.value}return ct.value=yt,Pn[Et.bh]=ct,Pn.asReadonly=Ve.HO5.bind(Pn),Pn.set=$n=>{ct.equal(ct.value,$n)||((0,Et.j2)(ct,$n),Qt.emit($n))},Pn.update=$n=>{bo(ct.value),Pn.set($n(ct.value))},Pn.subscribe=Qt.subscribe.bind(Qt),Pn.destroyRef=Qt.destroyRef,Pn}function bo(yt){if(yt===di)throw new Ve.buA(952,!1)}function Zs(yt,je){return gr(yt)}const Er=(Zs.required=function jr(yt){return gr(di)},Zs),is=new Ve.nKC(""),Hs=new Ve.nKC("");function Ws(yt){return!yt.moduleRef}let Ui;function xs(){Ui=vr}function vr(yt,je){const ct=yt.injector.get(Jt.o8S);if(yt._bootstrapComponents.length>0)yt._bootstrapComponents.forEach(Qt=>ct.bootstrap(Qt));else{if(!yt.instance.ngDoBootstrap)throw new Ve.buA(-403,!1);yt.instance.ngDoBootstrap(ct)}je.push(yt)}let Pa=(()=>{class yt{_injector;_modules=[];_destroyListeners=[];_destroyed=!1;constructor(ct){this._injector=ct}bootstrapModuleFactory(ct,Qt){const Pn=Qt?.scheduleInRootZone,Ci=Qt?.ignoreChangesOutsideZone,wi=[(0,Jt.SdI)({ngZoneFactory:()=>(0,Jt.G5x)(Qt?.ngZone,{...(0,Jt.cZr)({eventCoalescing:Qt?.ngZoneEventCoalescing,runCoalescing:Qt?.ngZoneRunCoalescing}),scheduleInRootZone:Pn}),ignoreChangesOutsideZone:Ci}),{provide:Ve.hk6,useExisting:Jt.Ts$},Ve.gv8],$i=(0,Jt.VzW)(ct.moduleType,this.injector,wi);return xs(),function Mr(yt){const je=Ws(yt)?yt.r3Injector:yt.moduleRef.injector,ct=je.get(Jt.SKi);return ct.run(()=>{Ws(yt)?yt.r3Injector.resolveInjectorInitializers():yt.moduleRef.resolveInjectorInitializers();const Qt=je.get(Ve.ZTf);let Pn;if(ct.runOutsideAngular(()=>{Pn=ct.onError.subscribe({next:Qt})}),Ws(yt)){const $n=()=>je.destroy(),Ci=yt.platformInjector.get(is);Ci.add($n),je.onDestroy(()=>{Pn.unsubscribe(),Ci.delete($n)})}else{const $n=()=>yt.moduleRef.destroy(),Ci=yt.platformInjector.get(is);Ci.add($n),yt.moduleRef.onDestroy(()=>{(0,Jt.TFI)(yt.allPlatformModules,yt.moduleRef),Pn.unsubscribe(),Ci.delete($n)})}return function qs(yt,je,ct){try{const Qt=ct();return(0,Jt.yLl)(Qt)?Qt.catch(Pn=>{throw je.runOutsideAngular(()=>yt(Pn)),Pn}):Qt}catch(Qt){throw je.runOutsideAngular(()=>yt(Qt)),Qt}}(Qt,ct,()=>{const $n=je.get(Ve.rev),Ci=$n.add(),wi=je.get(Jt.H1s);return wi.runInitializers(),wi.donePromise.then(()=>{const $i=je.get(Jt.xe9,Jt.DkB);if((0,Jt.e6s)($i||Jt.DkB),!je.get(Hs,!0))return Ws(yt)?je.get(Jt.o8S):(yt.allPlatformModules.push(yt.moduleRef),yt.moduleRef);if(Ws(yt)){const va=je.get(Jt.o8S);return void 0!==yt.rootComponent&&va.bootstrap(yt.rootComponent),va}return Ui?.(yt.moduleRef,yt.allPlatformModules),yt.moduleRef}).finally(()=>{$n.remove(Ci)})})})}({moduleRef:$i,allPlatformModules:this._modules,platformInjector:this.injector})}bootstrapModule(ct,Qt=[]){const Pn=(0,Jt.lJT)({},Qt);return xs(),function qo(yt,je,ct){const Qt=new Jt.Co$(ct);return Promise.resolve(Qt)}(0,0,ct).then($n=>this.bootstrapModuleFactory($n,Pn))}onDestroy(ct){this._destroyListeners.push(ct)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new Ve.buA(404,!1);this._modules.slice().forEach(Qt=>Qt.destroy()),this._destroyListeners.forEach(Qt=>Qt());const ct=this._injector.get(is,null);ct&&(ct.forEach(Qt=>Qt()),ct.clear()),this._destroyed=!0}get destroyed(){return this._destroyed}static \u0275fac=function(Qt){return new(Qt||yt)((0,Ve.KVO)(Ve.zZn))};static \u0275prov=(0,Ve.jDH)({token:yt,factory:yt.\u0275fac,providedIn:"platform"})}return yt})(),yr=null;function Xs(yt,je,ct=[]){const Qt=`Platform: ${je}`,Pn=new Ve.nKC(Qt);return($n=[])=>{let Ci=Za();if(!Ci){const wi=[...ct,...$n,{provide:Pn,useValue:!0}];Ci=yt?.(wi)??function er(yt){if(Za())throw new Ve.buA(400,!1);(0,Jt.pl0)(),(0,Jt.ypd)(),yr=yt;const je=yt.get(Pa);return function Hr(yt){const je=yt.get(Jt.PLl,null);(0,Ve.N4e)(yt,()=>{je?.forEach(ct=>ct())})}(yt),je}(function wa(yt=[],je){return Ve.zZn.create({name:je,providers:[{provide:Ve.GBX,useValue:"platform"},{provide:is,useValue:new Set([()=>yr=null])},...yt]})}(wi,Qt))}return function ja(){const je=Za();if(!je)throw new Ve.buA(-401,!1);return je}()}}function Za(){return yr?.get(Pa)??null}function Ne(){return!1}let Oi=(()=>class yt{static __NG_ELEMENT_ID__=ua})();function ua(yt){return function Es(yt,je,ct){if((0,Ve.Qs1)(yt)&&!ct){const Qt=(0,Ve.KdJ)(yt.index,je);return new Jt.NCX(Qt,Qt)}return 175&yt.type?new Jt.NCX(je[Ve.b5C],je):null}((0,Ve.Mx4)(),(0,Ve.OAn)(),!(16&~yt))}class $e{constructor(){}supports(je){return(0,Jt.ozJ)(je)}create(je){return new Ln(je)}}const mn=(yt,je)=>je;class Ln{length=0;collection;_linkedRecords=null;_unlinkedRecords=null;_previousItHead=null;_itHead=null;_itTail=null;_additionsHead=null;_additionsTail=null;_movesHead=null;_movesTail=null;_removalsHead=null;_removalsTail=null;_identityChangesHead=null;_identityChangesTail=null;_trackByFn;constructor(je){this._trackByFn=je||mn}forEachItem(je){let ct;for(ct=this._itHead;null!==ct;ct=ct._next)je(ct)}forEachOperation(je){let ct=this._itHead,Qt=this._removalsHead,Pn=0,$n=null;for(;ct||Qt;){const Ci=!Qt||ct&&ct.currentIndex{Ci=this._trackByFn(Pn,wi),null!==ct&&Object.is(ct.trackById,Ci)?(Qt&&(ct=this._verifyReinsertion(ct,wi,Ci,Pn)),Object.is(ct.item,wi)||this._addIdentityChange(ct,wi)):(ct=this._mismatch(ct,wi,Ci,Pn),Qt=!0),ct=ct._next,Pn++}),this.length=Pn;return this._truncate(ct),this.collection=je,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let je;for(je=this._previousItHead=this._itHead;null!==je;je=je._next)je._nextPrevious=je._next;for(je=this._additionsHead;null!==je;je=je._nextAdded)je.previousIndex=je.currentIndex;for(this._additionsHead=this._additionsTail=null,je=this._movesHead;null!==je;je=je._nextMoved)je.previousIndex=je.currentIndex;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(je,ct,Qt,Pn){let $n;return null===je?$n=this._itTail:($n=je._prev,this._remove(je)),null!==(je=null===this._unlinkedRecords?null:this._unlinkedRecords.get(Qt,null))?(Object.is(je.item,ct)||this._addIdentityChange(je,ct),this._reinsertAfter(je,$n,Pn)):null!==(je=null===this._linkedRecords?null:this._linkedRecords.get(Qt,Pn))?(Object.is(je.item,ct)||this._addIdentityChange(je,ct),this._moveAfter(je,$n,Pn)):je=this._addAfter(new Ei(ct,Qt),$n,Pn),je}_verifyReinsertion(je,ct,Qt,Pn){let $n=null===this._unlinkedRecords?null:this._unlinkedRecords.get(Qt,null);return null!==$n?je=this._reinsertAfter($n,je._prev,Pn):je.currentIndex!=Pn&&(je.currentIndex=Pn,this._addToMoves(je,Pn)),je}_truncate(je){for(;null!==je;){const ct=je._next;this._addToRemovals(this._unlink(je)),je=ct}null!==this._unlinkedRecords&&this._unlinkedRecords.clear(),null!==this._additionsTail&&(this._additionsTail._nextAdded=null),null!==this._movesTail&&(this._movesTail._nextMoved=null),null!==this._itTail&&(this._itTail._next=null),null!==this._removalsTail&&(this._removalsTail._nextRemoved=null),null!==this._identityChangesTail&&(this._identityChangesTail._nextIdentityChange=null)}_reinsertAfter(je,ct,Qt){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(je);const Pn=je._prevRemoved,$n=je._nextRemoved;return null===Pn?this._removalsHead=$n:Pn._nextRemoved=$n,null===$n?this._removalsTail=Pn:$n._prevRemoved=Pn,this._insertAfter(je,ct,Qt),this._addToMoves(je,Qt),je}_moveAfter(je,ct,Qt){return this._unlink(je),this._insertAfter(je,ct,Qt),this._addToMoves(je,Qt),je}_addAfter(je,ct,Qt){return this._insertAfter(je,ct,Qt),this._additionsTail=null===this._additionsTail?this._additionsHead=je:this._additionsTail._nextAdded=je,je}_insertAfter(je,ct,Qt){const Pn=null===ct?this._itHead:ct._next;return je._next=Pn,je._prev=ct,null===Pn?this._itTail=je:Pn._prev=je,null===ct?this._itHead=je:ct._next=je,null===this._linkedRecords&&(this._linkedRecords=new cs),this._linkedRecords.put(je),je.currentIndex=Qt,je}_remove(je){return this._addToRemovals(this._unlink(je))}_unlink(je){null!==this._linkedRecords&&this._linkedRecords.remove(je);const ct=je._prev,Qt=je._next;return null===ct?this._itHead=Qt:ct._next=Qt,null===Qt?this._itTail=ct:Qt._prev=ct,je}_addToMoves(je,ct){return je.previousIndex===ct||(this._movesTail=null===this._movesTail?this._movesHead=je:this._movesTail._nextMoved=je),je}_addToRemovals(je){return null===this._unlinkedRecords&&(this._unlinkedRecords=new cs),this._unlinkedRecords.put(je),je.currentIndex=null,je._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=je,je._prevRemoved=null):(je._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=je),je}_addIdentityChange(je,ct){return je.item=ct,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=je:this._identityChangesTail._nextIdentityChange=je,je}}class Ei{item;trackById;currentIndex=null;previousIndex=null;_nextPrevious=null;_prev=null;_next=null;_prevDup=null;_nextDup=null;_prevRemoved=null;_nextRemoved=null;_nextAdded=null;_nextMoved=null;_nextIdentityChange=null;constructor(je,ct){this.item=je,this.trackById=ct}}class xa{_head=null;_tail=null;add(je){null===this._head?(this._head=this._tail=je,je._nextDup=null,je._prevDup=null):(this._tail._nextDup=je,je._prevDup=this._tail,je._nextDup=null,this._tail=je)}get(je,ct){let Qt;for(Qt=this._head;null!==Qt;Qt=Qt._nextDup)if((null===ct||ct<=Qt.currentIndex)&&Object.is(Qt.trackById,je))return Qt;return null}remove(je){const ct=je._prevDup,Qt=je._nextDup;return null===ct?this._head=Qt:ct._nextDup=Qt,null===Qt?this._tail=ct:Qt._prevDup=ct,null===this._head}}class cs{map=new Map;put(je){const ct=je.trackById;let Qt=this.map.get(ct);Qt||(Qt=new xa,this.map.set(ct,Qt)),Qt.add(je)}get(je,ct){const Pn=this.map.get(je);return Pn?Pn.get(je,ct):null}remove(je){const ct=je.trackById;return this.map.get(ct).remove(je)&&this.map.delete(ct),je}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function qr(yt,je,ct){const Qt=yt.previousIndex;if(null===Qt)return Qt;let Pn=0;return ct&&Qt{if(ct&&ct.key===Pn)this._maybeAddToChanges(ct,Qt),this._appendAfter=ct,ct=ct._next;else{const $n=this._getOrCreateRecordForKey(Pn,Qt);ct=this._insertBeforeOrAppend(ct,$n)}}),ct){ct._prev&&(ct._prev._next=null),this._removalsHead=ct;for(let Qt=ct;null!==Qt;Qt=Qt._nextRemoved)Qt===this._mapHead&&(this._mapHead=null),this._records.delete(Qt.key),Qt._nextRemoved=Qt._next,Qt.previousValue=Qt.currentValue,Qt.currentValue=null,Qt._prev=null,Qt._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(je,ct){if(je){const Qt=je._prev;return ct._next=je,ct._prev=Qt,je._prev=ct,Qt&&(Qt._next=ct),je===this._mapHead&&(this._mapHead=ct),this._appendAfter=je,je}return this._appendAfter?(this._appendAfter._next=ct,ct._prev=this._appendAfter):this._mapHead=ct,this._appendAfter=ct,null}_getOrCreateRecordForKey(je,ct){if(this._records.has(je)){const Pn=this._records.get(je);this._maybeAddToChanges(Pn,ct);const $n=Pn._prev,Ci=Pn._next;return $n&&($n._next=Ci),Ci&&(Ci._prev=$n),Pn._next=null,Pn._prev=null,Pn}const Qt=new el(je);return this._records.set(je,Qt),Qt.currentValue=ct,this._addToAdditions(Qt),Qt}_reset(){if(this.isDirty){let je;for(this._previousMapHead=this._mapHead,je=this._previousMapHead;null!==je;je=je._next)je._nextPrevious=je._next;for(je=this._changesHead;null!==je;je=je._nextChanged)je.previousValue=je.currentValue;for(je=this._additionsHead;null!=je;je=je._nextAdded)je.previousValue=je.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(je,ct){Object.is(ct,je.currentValue)||(je.previousValue=je.currentValue,je.currentValue=ct,this._addToChanges(je))}_addToAdditions(je){null===this._additionsHead?this._additionsHead=this._additionsTail=je:(this._additionsTail._nextAdded=je,this._additionsTail=je)}_addToChanges(je){null===this._changesHead?this._changesHead=this._changesTail=je:(this._changesTail._nextChanged=je,this._changesTail=je)}_forEach(je,ct){je instanceof Map?je.forEach(ct):Object.keys(je).forEach(Qt=>ct(je[Qt],Qt))}}class el{key;previousValue=null;currentValue=null;_nextPrevious=null;_next=null;_prev=null;_nextAdded=null;_nextRemoved=null;_nextChanged=null;constructor(je){this.key=je}}function Ml(){return new Ss([new $e])}let Ss=(()=>{class yt{factories;static \u0275prov=(0,Ve.jDH)({token:yt,providedIn:"root",factory:Ml});constructor(ct){this.factories=ct}static create(ct,Qt){if(null!=Qt){const Pn=Qt.factories.slice();ct=ct.concat(Pn)}return new yt(ct)}static extend(ct){return{provide:yt,useFactory:()=>{const Qt=(0,Ve.WQX)(yt,{optional:!0,skipSelf:!0});return yt.create(ct,Qt||Ml())}}}find(ct){const Qt=this.factories.find(Pn=>Pn.supports(ct));if(null!=Qt)return Qt;throw new Ve.buA(901,!1)}}return yt})();function Eo(){return new Mo([new xo])}let Mo=(()=>{class yt{static \u0275prov=(0,Ve.jDH)({token:yt,providedIn:"root",factory:Eo});factories;constructor(ct){this.factories=ct}static create(ct,Qt){if(Qt){const Pn=Qt.factories.slice();ct=ct.concat(Pn)}return new yt(ct)}static extend(ct){return{provide:yt,useFactory:()=>{const Qt=(0,Ve.WQX)(yt,{optional:!0,skipSelf:!0});return yt.create(ct,Qt||Eo())}}}find(ct){const Qt=this.factories.find(Pn=>Pn.supports(ct));if(Qt)return Qt;throw new Ve.buA(901,!1)}}return yt})();const nr=Xs(null,"core",[]);let mi=(()=>{class yt{constructor(ct){}static \u0275fac=function(Qt){return new(Qt||yt)((0,Ve.KVO)(Jt.o8S))};static \u0275mod=(0,Jt.$C)({type:yt});static \u0275inj=(0,Ve.G2t)({})}return yt})();function ai(yt){return"boolean"==typeof yt?yt:null!=yt&&"false"!==yt}function Gi(yt,je=NaN){return isNaN(parseFloat(yt))||isNaN(Number(yt))?je:Number(yt)}const vl=Symbol("NOT_SET"),al=new Set,Lo={...Et.s0,consumerIsAlwaysLive:!0,consumerAllowSignalWrites:!0,value:vl,cleanup:null,consumerMarkedDirty(){if(this.sequence.impl.executing){if(null===this.sequence.lastPhase||this.sequence.lastPhase((0,Et.mK)(sa),sa.value),sa.signal[Et.bh]=sa,sa.registerCleanupFn=va=>(sa.cleanup??=new Set).add(va),this.nodes[wi]=sa,this.hooks[wi]=va=>sa.phaseFn(va)}}afterRun(){super.afterRun(),this.lastPhase=null}destroy(){super.destroy();for(const je of this.nodes)if(je)try{for(const ct of je.cleanup??al)ct()}finally{(0,Et.XR)(je)}}}function Gl(yt,je){const ct=je?.injector??(0,Ve.WQX)(Ve.zZn),Qt=ct.get(Ve.hk6),Pn=ct.get(Jt.cf$),$n=ct.get(Jt.a8H,null,{optional:!0});Pn.impl??=ct.get(Jt.ziy);let Ci=yt;"function"==typeof Ci&&(Ci={mixedReadWrite:yt});const wi=ct.get(Ve.r4V,null,{optional:!0}),$i=new Ol(Pn.impl,[Ci.earlyRead,Ci.write,Ci.mixedReadWrite,Ci.read],wi?.view,Qt,ct,$n?.snapshot(null));return Pn.impl.register($i),$i}function Rl(yt,je){const ct=(0,Ve.xUg)(yt),Qt=je.elementInjector||(0,Ve.WB9)();return new Jt.eHC(ct).create(Qt,je.projectableNodes,je.hostElement,je.environmentInjector,je.directives,je.bindings)}function Io(yt){const je=(0,Ve.xUg)(yt);if(!je)return null;const ct=new Jt.eHC(je);return{get selector(){return ct.selector},get type(){return ct.componentType},get inputs(){return ct.inputs},get outputs(){return ct.outputs},get ngContentSelectors(){return ct.ngContentSelectors},get isStandalone(){return je.standalone},get isSignal(){return je.signals}}}},3664(Zt,pe,l){"use strict";l.d(pe,{$C:()=>_p,$Ln:()=>c_,AVh:()=>Ph,Ab1:()=>Xd,Agw:()=>Go,Avn:()=>mf,B1s:()=>si,BIS:()=>jo,BMQ:()=>Yp,C4Q:()=>U1,C5r:()=>Y6,C6U:()=>D8,C7A:()=>Os,Co$:()=>mp,DH7:()=>r5,DNE:()=>ph,DUP:()=>bl,DkB:()=>u6,Dyx:()=>W_,E5c:()=>B6,EFF:()=>Nh,EJ8:()=>zm,FsC:()=>Bm,FuF:()=>km,G5x:()=>Pc,GBs:()=>M8,H1s:()=>Bp,HbH:()=>B8,Hgh:()=>a6,JRh:()=>F6,Jt5:()=>d6,Jv_:()=>g5,KED:()=>z9,LHq:()=>Ef,Lme:()=>N6,NAR:()=>E8,NCX:()=>o1,NOj:()=>Q0,NSC:()=>S0,NYb:()=>C7,NyB:()=>w8,OA$:()=>tn,OR8:()=>zc,Ocv:()=>dy,Ol2:()=>Nm,PLl:()=>Uo,PYC:()=>Cn,PYt:()=>hl,PeT:()=>gh,QTQ:()=>ho,Ql9:()=>ay,R50:()=>V6,R7$:()=>t1,RPW:()=>_t,RV6:()=>Q_,SKi:()=>ms,SdG:()=>E6,SdI:()=>Z5,SpI:()=>Bh,TFI:()=>Eh,Ts$:()=>ag,UQu:()=>iy,V5L:()=>kf,VBU:()=>pp,VeQ:()=>Tl,VkB:()=>u5,Vt3:()=>uh,VwU:()=>bf,VzW:()=>fp,WPN:()=>lr,XpG:()=>C8,Xx1:()=>ye,Y8G:()=>lf,YEm:()=>ds,Z7z:()=>j_,Zhj:()=>lp,_9s:()=>xl,_9u:()=>zl,_jY:()=>Yr,_qm:()=>jr,_ys:()=>i1,a8H:()=>rc,aCM:()=>st,aKT:()=>Ps,ai1:()=>h5,bIt:()=>yf,bMT:()=>I5,bVm:()=>b4,bc$:()=>Tr,bkB:()=>oc,brH:()=>k5,c1b:()=>$o,cDI:()=>ks,cZr:()=>tg,cdK:()=>u_,cf$:()=>Sd,czy:()=>A1,d80:()=>sy,dOL:()=>l_,e6s:()=>bv,eHC:()=>c0,eq3:()=>Tf,eu8:()=>r6,eux:()=>y4,fX1:()=>G_,gXe:()=>Bi,giA:()=>$m,gil:()=>_s,hnC:()=>Qr,i5U:()=>K6,iLQ:()=>m_,iWE:()=>ft,j41:()=>Ih,jOp:()=>Kp,k0s:()=>cf,kBR:()=>c6,kS0:()=>_a,kdw:()=>Se,lJ4:()=>b5,lJT:()=>p_,l_i:()=>C5,lsd:()=>T8,mGM:()=>S8,mNQ:()=>d5,mU9:()=>p0,mal:()=>T2,mxI:()=>Mf,n$t:()=>G0,nI1:()=>A5,nI4:()=>mu,nM4:()=>Cp,nVh:()=>z_,npT:()=>pd,nrm:()=>i6,o8S:()=>Zm,ozJ:()=>Z3,p2i:()=>Zn,phd:()=>E7,pl0:()=>f_,qex:()=>uf,rAh:()=>Dn,rOR:()=>Vo,rXU:()=>m1,rj2:()=>df,sFG:()=>W1,sMw:()=>x5,sZ2:()=>nr,sdS:()=>A8,sgu:()=>dp,tSv:()=>K0,tvf:()=>Wo,uiO:()=>N,utN:()=>Yf,vDg:()=>Qf,vxM:()=>V_,w6W:()=>Fm,wEZ:()=>Cf,wni:()=>M6,wr$:()=>Zc,xGo:()=>Ze,xc7:()=>I6,xe9:()=>q5,yLl:()=>d_,y_5:()=>ee,ypd:()=>M7,ziy:()=>S2,zoo:()=>M2});var Qn=l(467),h=l(2615),jt=l(8440),Ue=l(1413),wt=l(8359),pt=l(6354);function Pt(t){return{toString:t}.toString()}const gn="__annotations__",ei="__parameters__",vi="__prop__metadata__";function Ni(t,n,a,o,p){return Pt(()=>{const M=kn(n);function k(...z){if(this instanceof k)return M.call(this,...z),this;const Y=new k(...z);return function(it){return p&&p(it,...z),(it.hasOwnProperty(gn)?it[gn]:Object.defineProperty(it,gn,{value:[]})[gn]).push(Y),it}}return a&&(k.prototype=Object.create(a.prototype)),k.prototype.ngMetadataName=t,k.annotationCls=k,k})}function kn(t){return function(...a){if(t){const o=t(...a);for(const p in o)this[p]=o[p]}}}function Ri(t,n,a){return Pt(()=>{const o=kn(n);function p(...M){if(this instanceof p)return o.apply(this,M),this;const k=new p(...M);return z.annotation=k,z;function z(Y,ze,it){const zt=Y.hasOwnProperty(ei)?Y[ei]:Object.defineProperty(Y,ei,{value:[]})[ei];for(;zt.length<=it;)zt.push(null);return(zt[it]=zt[it]||[]).push(k),Y}}return p.prototype.ngMetadataName=t,p.annotationCls=p,p})}const ee=(0,h.z6V)(Ri("Inject",t=>({token:t})),-1),ye=(0,h.z6V)(Ri("Optional"),8),ke=(0,h.z6V)(Ri("Self"),2),Se=(0,h.z6V)(Ri("SkipSelf"),4),ge=(0,h.z6V)(Ri("Host"),1);function N(t){const n=h.laP.ng;if(n&&n.\u0275compilerFacade)return n.\u0275compilerFacade;throw new Error("JIT compiler unavailable")}const Z={\u0275\u0275defineInjectable:h.jDH,\u0275\u0275defineInjector:h.G2t,\u0275\u0275inject:h.KVO,\u0275\u0275invalidFactoryDep:h.dmw,resolveForwardRef:h.nl4},Me=Function;function at(t){return"function"==typeof t}const qe=/^function\s+\S+\(\)\s*{[\s\S]+\.apply\(this,\s*(arguments|(?:[^()]+\(\[\],)?[^()]+\(arguments\).*)\)/,pn=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{/,Je=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(/,Be=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(\)\s*{[^}]*super\(\.\.\.arguments\)/;class Ge{_reflect;constructor(n){this._reflect=n||h.laP.Reflect}factory(n){return(...a)=>new n(...a)}_zipTypesAndAnnotations(n,a){let o;o=(0,h.WfI)(typeof n>"u"?a.length:n.length);for(let p=0;p"u"?[]:n[p]&&n[p]!=Object?[n[p]]:[],a&&null!=a[p]&&(o[p]=o[p].concat(a[p]));return o}_ownParameters(n,a){if(function ut(t){return qe.test(t)||Be.test(t)||pn.test(t)&&!Je.test(t)}(n.toString()))return null;if(n.parameters&&n.parameters!==a.parameters)return n.parameters;const p=n.ctorParameters;if(p&&p!==a.ctorParameters){const z="function"==typeof p?p():p,Y=z.map(it=>it&&it.type),ze=z.map(it=>it&&Ot(it.decorators));return this._zipTypesAndAnnotations(Y,ze)}const M=n.hasOwnProperty(ei)&&n[ei],k=this._reflect&&this._reflect.getOwnMetadata&&this._reflect.getOwnMetadata("design:paramtypes",n);return k||M?this._zipTypesAndAnnotations(k,M):(0,h.WfI)(n.length)}parameters(n){if(!at(n))return[];const a=se(n);let o=this._ownParameters(n,a);return!o&&a!==Object&&(o=this.parameters(a)),o||[]}_ownAnnotations(n,a){if(n.annotations&&n.annotations!==a.annotations){let o=n.annotations;return"function"==typeof o&&o.annotations&&(o=o.annotations),o}return n.decorators&&n.decorators!==a.decorators?Ot(n.decorators):n.hasOwnProperty(gn)?n[gn]:null}annotations(n){if(!at(n))return[];const a=se(n),o=this._ownAnnotations(n,a)||[];return(a!==Object?this.annotations(a):[]).concat(o)}_ownPropMetadata(n,a){if(n.propMetadata&&n.propMetadata!==a.propMetadata){let o=n.propMetadata;return"function"==typeof o&&o.propMetadata&&(o=o.propMetadata),o}if(n.propDecorators&&n.propDecorators!==a.propDecorators){const o=n.propDecorators,p={};return Object.keys(o).forEach(M=>{p[M]=Ot(o[M])}),p}return n.hasOwnProperty(vi)?n[vi]:null}propMetadata(n){if(!at(n))return{};const a=se(n),o={};if(a!==Object){const M=this.propMetadata(a);Object.keys(M).forEach(k=>{o[k]=M[k]})}const p=this._ownPropMetadata(n,a);return p&&Object.keys(p).forEach(M=>{const k=[];o.hasOwnProperty(M)&&k.push(...o[M]),k.push(...p[M]),o[M]=k}),o}ownPropMetadata(n){return at(n)&&this._ownPropMetadata(n,se(n))||{}}hasLifecycleHook(n,a){return n instanceof Me&&a in n.prototype}}function Ot(t){return t?t.map(n=>new(0,n.type.annotationCls)(...n.args?n.args:[])):[]}function se(t){const n=t.prototype?Object.getPrototypeOf(t.prototype):null;return(n?n.constructor:null)||Object}class We{previousValue;currentValue;firstChange;constructor(n,a,o){this.previousValue=n,this.currentValue=a,this.firstChange=o}isFirstChange(){return this.firstChange}}function bt(t,n,a,o){null!==n?n.applyValueToInputSignal(n,o):t[a]=o}const tn=(()=>{const t=()=>on;return t.ngInherit=!0,t})();function on(t){return t.type.prototype.ngOnChanges&&(t.setInput=Nt),un}function un(){const t=xn(this),n=t?.current;if(n){const a=t.previous;if(a===h.MZA)t.previous=n;else for(let o in n)a[o]=n[o];t.current=null,this.ngOnChanges(n)}}function Nt(t,n,a,o,p){const M=this.declaredInputs[o],k=xn(t)||function Jn(t,n){return t[dn]=n}(t,{previous:h.MZA,current:null}),z=k.current||(k.current={}),Y=k.previous,ze=Y[M];z[M]=new We(ze&&ze.currentValue,a,Y===h.MZA),bt(t,n,p,a)}const dn="__ngSimpleChanges__";function xn(t){return t[dn]||null}const xi=[],we=function(t,n=null,a){for(let o=0;o=o)break}else n[Y]<0&&(t[h.wVl]+=65536),(z>14>16&&(3&t[h.Wg1])===n&&(t[h.Wg1]+=16384,Qi(z,M)):Qi(z,M)}class an{factory;name;injectImpl;resolving=!1;canSeeViewProviders;multi;componentProviders;index;providerFactory;constructor(n,a,o,p){this.factory=n,this.name=p,this.canSeeViewProviders=a,this.injectImpl=o}}function Un(t){return null!=t&&"object"==typeof t&&(null===t.insertBeforeIndex||"number"==typeof t.insertBeforeIndex||Array.isArray(t.insertBeforeIndex))}function Vn(t){return 3===t||4===t||6===t}function ii(t){return 64===t.charCodeAt(0)}function Bn(t,n){if(null!==n&&0!==n.length)if(null===t||0===t.length)t=n.slice();else{let a=-1;for(let o=0;on){k=M-1;break}}}for(;M>16}(t),o=n;for(;a>0;)o=o[h.X5O],a--;return o}let En=!0;function Wn(t){const n=En;return En=t,n}let Pi=0;const da={};function en(t,n){const a=oi(t,n);if(-1!==a)return a;const o=n[h.eDl];o.firstCreatePass&&(t.injectorIndex=n.length,vn(o.data,t),vn(n,null),vn(o.blueprint,null));const p=bn(t,n),M=t.injectorIndex;if(ra(p)){const k=fa(p),z=qt(p,n),Y=z[h.eDl].data;for(let ze=0;ze<8;ze++)n[M+ze]=z[k+ze]|Y[k+ze]}return n[M+8]=p,M}function vn(t,n){t.push(0,0,0,0,0,0,0,0,n)}function oi(t,n){return-1===t.injectorIndex||t.parent&&t.parent.injectorIndex===t.injectorIndex||null===n[t.injectorIndex+8]?-1:t.injectorIndex}function bn(t,n){if(t.parent&&-1!==t.parent.injectorIndex)return t.parent.injectorIndex;let a=0,o=null,p=n;for(;null!==p;){if(o=Ki(p),null===o)return-1;if(a++,p=p[h.X5O],-1!==o.injectorIndex)return o.injectorIndex|a<<16}return-1}function Kn(t,n,a){!function Ta(t,n,a){let o;"string"==typeof a?o=a.charCodeAt(0)||0:a.hasOwnProperty(h.p9y)&&(o=a[h.p9y]),null==o&&(o=a[h.p9y]=Pi++);const p=255&o;n.data[t+(p>>5)]|=1<=0?255&n:tt:n}(a);if("function"==typeof M){if(!(0,h.ihb)(n,t,o))return 1&o?Wi(p,a,o):Ca(n,a,o,p);try{let k;if(k=M(o),null!=k||8&o)return k;(0,h.$Hz)(a)}finally{(0,h.niQ)()}}else if("number"==typeof M){let k=null,z=oi(t,n),Y=-1,ze=1&o?n[h.b5C][h.qlT]:null;for((-1===z||4&o)&&(Y=-1===z?bn(t,n):n[z+8],-1!==Y&&ca(o,!1)?(k=n[h.eDl],z=fa(Y),n=qt(Y,n)):z=-1);-1!==z;){const it=n[h.eDl];if(Ii(M,z,it.data)){const zt=Ve(z,n,a,k,o,ze);if(zt!==da)return zt}Y=n[z+8],-1!==Y&&ca(o,n[h.eDl].data[z+8]===ze)&&Ii(M,z,n)?(k=it,z=fa(Y),n=qt(Y,n)):z=-1}}return p}function Ve(t,n,a,o,p,M){const k=n[h.eDl],z=k.data[t+8],it=Et(z,k,a,null==o?(0,h.Qs1)(z)&&En:o!=k&&!!(3&z.type),1&p&&M===z);return null!==it?ti(n,k,it,z,p):da}function Et(t,n,a,o,p){const M=t.providerIndexes,k=n.data,z=1048575&M,Y=t.directiveStart,it=M>>20,hn=p?z+it:t.directiveEnd;for(let fn=o?z:z+it;fn=Y&&qn.type===a)return fn}if(p){const fn=k[Y];if(fn&&(0,h.JlV)(fn)&&fn.type===a)return Y}return null}function ti(t,n,a,o,p){let M=t[a];const k=n.data;if(M instanceof an){const z=M;if(z.resolving){const fn=(0,h.PP7)(k[a]);throw(0,h.PQT)(fn)}const Y=Wn(z.canSeeViewProviders);z.resolving=!0;const zt=z.injectImpl?(0,h.a2B)(z.injectImpl):null;(0,h.ihb)(t,o,0);try{M=t[a]=z.factory(void 0,p,k,t,o),n.firstCreatePass&&a>=o.directiveStart&&function ae(t,n,a){const{ngOnChanges:o,ngOnInit:p,ngDoCheck:M}=n.type.prototype;if(o){const k=on(n);(a.preOrderHooks??=[]).push(t,k),(a.preOrderCheckHooks??=[]).push(t,k)}p&&(a.preOrderHooks??=[]).push(0-t,p),M&&((a.preOrderHooks??=[]).push(t,M),(a.preOrderCheckHooks??=[]).push(t,M))}(a,k[a],n)}finally{null!==zt&&(0,h.a2B)(zt),Wn(Y),z.resolving=!1,(0,h.niQ)()}}return M}function Ii(t,n,a){return!!(a[n+(t>>5)]&1<{const n=t.prototype.constructor,a=n[h.zSs]||Xt(n),o=Object.prototype;let p=Object.getPrototypeOf(t.prototype).constructor;for(;p&&p!==o;){const M=p[h.zSs]||Xt(p);if(M&&M!==a)return M;p=Object.getPrototypeOf(p)}return M=>new M})}function Xt(t){return(0,h.Jzi)(t)?()=>{const n=Xt((0,h.nl4)(t));return n&&n()}:(0,h.wGu)(t)}function Ki(t){const n=t[h.eDl],a=n.type;return 2===a?n.declTNode:1===a?t[h.qlT]:null}function _a(t){return function yi(t,n){if("class"===n)return t.classes;if("style"===n)return t.styles;const a=t.attrs;if(a){const o=a.length;let p=0;for(;p({attributeName:t,__NG_ELEMENT_ID__:()=>_a(t)}));let $a=null;function Ga(t){return As(function ns(){return $a=$a||new Ge}().parameters(t))}function As(t){return t.map(n=>function hr(t){const n={token:null,attribute:null,host:!1,optional:!1,self:!1,skipSelf:!1};if(Array.isArray(t)&&t.length>0)for(let a=0;afunction mr(t,n){let a=null,o=null;t.hasOwnProperty(h.yAH)||Object.defineProperty(t,h.yAH,{get:()=>(null===a&&(a=N().compileInjectable(Z,`ng:///${t.name}/\u0275prov.js`,function Zs(t,n){const a=n||{providedIn:null},o={name:t.name,type:t,typeArgumentCount:0,providedIn:a.providedIn};return(zo(a)||gr(a))&&void 0!==a.deps&&(o.deps=As(a.deps)),zo(a)?o.useClass=a.useClass:function pr(t){return fr in t}(a)?o.useValue=a.useValue:gr(a)?o.useFactory=a.useFactory:function bo(t){return void 0!==t.useExisting}(a)&&(o.useExisting=a.useExisting),o}(t,n))),a)}),t.hasOwnProperty(h.zSs)||Object.defineProperty(t,h.zSs,{get:()=>{if(null===o){const p=N();o=p.compileFactory(Z,`ng:///${t.name}/\u0275fac.js`,{name:t.name,type:t,typeArgumentCount:0,deps:Ga(t),target:p.FactoryTarget.Injectable})}return o},configurable:!0})}(t,n));function Er(){return Ka((0,h.Mx4)(),(0,h.OAn)())}function Ka(t,n){return new Ps((0,h.d31)(t,n))}let Ps=(()=>class t{nativeElement;constructor(a){this.nativeElement=a}static __NG_ELEMENT_ID__=Er})();function kr(t){return t instanceof Ps?t.nativeElement:t}function js(){return this._results[Symbol.iterator]()}class Vo{_emitDistinctChangesOnly;dirty=!0;_onDirty=void 0;_results=[];_changesDetected=!1;_changes=void 0;length=0;first=void 0;last=void 0;get changes(){return this._changes??=new Ue.B}constructor(n=!1){this._emitDistinctChangesOnly=n}get(n){return this._results[n]}map(n){return this._results.map(n)}filter(n){return this._results.filter(n)}find(n){return this._results.find(n)}reduce(n,a){return this._results.reduce(n,a)}forEach(n){this._results.forEach(n)}some(n){return this._results.some(n)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(n,a){this.dirty=!1;const o=(0,h.Bqz)(n);(this._changesDetected=!(0,h.ng7)(this._results,o,a))&&(this._results=o,this.length=o.length,this.last=o[this.length-1],this.first=o[0])}notifyOnChanges(){void 0!==this._changes&&(this._changesDetected||!this._emitDistinctChangesOnly)&&this._changes.next(this)}onDirty(n){this._onDirty=n}setDirty(){this.dirty=!0,this._onDirty?.()}destroy(){void 0!==this._changes&&(this._changes.complete(),this._changes.unsubscribe())}[Symbol.iterator]=js}function Js(t){return!(128&~t.flags)}var ls=function(t){return t[t.OnPush=0]="OnPush",t[t.Default=1]="Default",t}(ls||{});const is=new Map;let Hs=0;function xs(t){is.delete(t[h.ID])}const Xs="__ngContext__";function wa(t,n){(0,h.q$2)(n)?(t[Xs]=n[h.ID],function Mr(t){is.set(t[h.ID],t)}(n)):t[Xs]=n}function Oi(t){return Es(t[h.EJG])}function ua(t){return Es(t[h.K29])}function Es(t){for(;null!==t&&!(0,h.A0l)(t);)t=t[h.K29];return t}let pl;function zl(t){pl=t}function ds(){if(void 0!==pl)return pl;if(typeof document<"u")return document;throw new h.buA(210,!1)}const nr=new h.nKC("",{providedIn:"root",factory:()=>mi}),mi="ng",Uo=new h.nKC(""),Go=new h.nKC("",{providedIn:"platform",factory:()=>"unknown"}),Tr=new h.nKC(""),jo=new h.nKC("",{providedIn:"root",factory:()=>ds().body?.querySelector("[ngCspNonce]")?.getAttribute("ngCspNonce")||null}),mo={breakpoints:[16,32,48,64,96,128,256,384,640,750,828,1080,1200,1920,2048,3840],placeholderResolution:30,disableImageSizeWarning:!1,disableImageLazyLoadWarning:!1},Tl=new h.nKC("",{providedIn:"root",factory:()=>mo});function za(){const t=new us;return t.store=function Dl(t,n){const a=t.getElementById(n+"-state");if("SCRIPT"===a?.tagName&&a.textContent)try{return JSON.parse(a.textContent)}catch(o){console.warn("Exception while restoring TransferState for app "+n,o)}return{}}(ds(),(0,h.WQX)(nr)),t}let us=(()=>{class t{static \u0275prov=(0,h.jDH)({token:t,providedIn:"root",factory:za});store={};onSerializeCallbacks={};get(a,o){return void 0!==this.store[a]?this.store[a]:o}set(a,o){this.store[a]=o}remove(a){delete this.store[a]}hasKey(a){return this.store.hasOwnProperty(a)}get isEmpty(){return 0===Object.keys(this.store).length}onSerialize(a,o){this.onSerializeCallbacks[a]=o}toJson(){for(const a in this.onSerializeCallbacks)if(this.onSerializeCallbacks.hasOwnProperty(a))try{this.store[a]=this.onSerializeCallbacks[a]()}catch(o){console.warn("Exception in onSerialize callback: ",o)}return JSON.stringify(this.store).replace(/!1}),ir=new h.nKC(""),Wo=new h.nKC(""),nl={passive:!0,capture:!0},X=new WeakMap,de=new WeakMap,Q=new WeakMap,me=["click","keydown"],et=["mouseenter","mouseover","focusin"];let Mt=null,Kt=0;class Tn{callbacks=new Set;listener=()=>{for(const n of this.callbacks)n()}}function ai(t,n){let a=de.get(t);if(!a){a=new Tn,de.set(t,a);for(const o of me)t.addEventListener(o,a.listener,nl)}return a.callbacks.add(n),()=>{const{callbacks:o,listener:p}=a;if(o.delete(n),0===o.size){de.delete(t);for(const M of me)t.removeEventListener(M,p,nl)}}}function Gi(t,n){let a=X.get(t);if(!a){a=new Tn,X.set(t,a);for(const o of et)t.addEventListener(o,a.listener,nl)}return a.callbacks.add(n),()=>{const{callbacks:o,listener:p}=a;if(o.delete(n),0===o.size){for(const M of et)t.removeEventListener(M,p,nl);X.delete(t)}}}const wo=new h.nKC("");function Ao(t){return!(32&~t.flags)}function Wl(t){let n=t._lView;return 2===n[h.eDl].type?null:((0,h.EFk)(n)&&(n=n[h.Yw1]),n)}function oa(t){return t.get(ir,!1,{optional:!0})}function ui(t,n){const a=t.contentQueries;if(null!==a){const o=(0,jt.Ht)(null);try{for(let p=0;pt,createScript:t=>t,createScriptURL:t=>t})}catch{}return br}function Yl(t){return Yo()?.createHTML(t)||t}function y1(){if(void 0===Fl&&(Fl=null,h.laP.trustedTypes))try{Fl=h.laP.trustedTypes.createPolicy("angular#unsafe-bypass",{createHTML:t=>t,createScript:t=>t,createScriptURL:t=>t})}catch{}return Fl}function ld(t){return y1()?.createHTML(t)||t}function a2(t){return y1()?.createScript(t)||t}function A0(t){return y1()?.createScriptURL(t)||t}class Ic{changingThisBreaksApplicationSecurity;constructor(n){this.changingThisBreaksApplicationSecurity=n}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity} (see ${h.ok8})`}}class T4 extends Ic{getTypeName(){return"HTML"}}class L0 extends Ic{getTypeName(){return"Style"}}class I0 extends Ic{getTypeName(){return"Script"}}class Te extends Ic{getTypeName(){return"URL"}}class dt extends Ic{getTypeName(){return"ResourceURL"}}function st(t){return t instanceof Ic?t.changingThisBreaksApplicationSecurity:t}function ft(t,n){const a=function $t(t){return t instanceof Ic&&t.getTypeName()||null}(t);if(null!=a&&a!==n){if("ResourceURL"===a&&"URL"===n)return!0;throw new Error(`Required a safe ${n}, got a ${a} (see ${h.ok8})`)}return a===n}function Cn(t){return new T4(t)}function Dn(t){return new L0(t)}function Zn(t){return new I0(t)}function si(t){return new Te(t)}function _t(t){return new dt(t)}function ji(t){const n=new Ja(t);return function Ba(){try{return!!(new window.DOMParser).parseFromString(Yl(""),"text/html")}catch{return!1}}()?new Hi(n):n}class Hi{inertDocumentHelper;constructor(n){this.inertDocumentHelper=n}getInertBodyElement(n){n=""+n;try{const a=(new window.DOMParser).parseFromString(Yl(n),"text/html").body;return null===a?this.inertDocumentHelper.getInertBodyElement(n):(a.firstChild?.remove(),a)}catch{return null}}}class Ja{defaultDoc;inertDocument;constructor(n){this.defaultDoc=n,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert")}getInertBodyElement(n){const a=this.inertDocument.createElement("template");return a.innerHTML=Yl(n),a}}const wr=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:\/?#]*(?:[\/?#]|$))/i;function _s(t){return(t=String(t)).match(wr)?t:"unsafe:"+t}function vs(t){const n={};for(const a of t.split(","))n[a]=!0;return n}function rr(...t){const n={};for(const a of t)for(const o in a)a.hasOwnProperty(o)&&(n[o]=!0);return n}const Bs=vs("area,br,col,hr,img,wbr"),ol=vs("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),Kr=vs("rp,rt"),vc=rr(Bs,rr(ol,vs("address,article,aside,blockquote,caption,center,del,details,dialog,dir,div,dl,figure,figcaption,footer,h1,h2,h3,h4,h5,h6,header,hgroup,hr,ins,main,map,menu,nav,ol,pre,section,summary,table,ul")),rr(Kr,vs("a,abbr,acronym,audio,b,bdi,bdo,big,br,cite,code,del,dfn,em,font,i,img,ins,kbd,label,map,mark,picture,q,ruby,rp,rt,s,samp,small,source,span,strike,strong,sub,sup,time,track,tt,u,var,video")),rr(Kr,ol)),s2=vs("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),r2=rr(s2,vs("abbr,accesskey,align,alt,autoplay,axis,bgcolor,border,cellpadding,cellspacing,class,clear,color,cols,colspan,compact,controls,coords,datetime,default,dir,download,face,headers,height,hidden,hreflang,hspace,ismap,itemscope,itemprop,kind,label,lang,language,loop,media,muted,nohref,nowrap,open,preload,rel,rev,role,rows,rowspan,rules,scope,scrolling,shape,size,sizes,span,srclang,srcset,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width"),vs("aria-activedescendant,aria-atomic,aria-autocomplete,aria-busy,aria-checked,aria-colcount,aria-colindex,aria-colspan,aria-controls,aria-current,aria-describedby,aria-details,aria-disabled,aria-dropeffect,aria-errormessage,aria-expanded,aria-flowto,aria-grabbed,aria-haspopup,aria-hidden,aria-invalid,aria-keyshortcuts,aria-label,aria-labelledby,aria-level,aria-live,aria-modal,aria-multiline,aria-multiselectable,aria-orientation,aria-owns,aria-placeholder,aria-posinset,aria-pressed,aria-readonly,aria-relevant,aria-required,aria-roledescription,aria-rowcount,aria-rowindex,aria-rowspan,aria-selected,aria-setsize,aria-sort,aria-valuemax,aria-valuemin,aria-valuenow,aria-valuetext")),o2=vs("script,style,template");class cd{sanitizedSomething=!1;buf=[];sanitizeChildren(n){let a=n.firstChild,o=!0,p=[];for(;a;)if(a.nodeType===Node.ELEMENT_NODE?o=this.startElement(a):a.nodeType===Node.TEXT_NODE?this.chars(a.nodeValue):this.sanitizedSomething=!0,o&&a.firstChild)p.push(a),a=k0(a);else for(;a;){a.nodeType===Node.ELEMENT_NODE&&this.endElement(a);let M=w4(a);if(M){a=M;break}a=p.pop()}return this.buf.join("")}startElement(n){const a=zr(n).toLowerCase();if(!vc.hasOwnProperty(a))return this.sanitizedSomething=!0,!o2.hasOwnProperty(a);this.buf.push("<"),this.buf.push(a);const o=n.attributes;for(let p=0;p"),!0}endElement(n){const a=zr(n).toLowerCase();vc.hasOwnProperty(a)&&!Bs.hasOwnProperty(a)&&(this.buf.push(""))}chars(n){this.buf.push(R0(n))}}function w4(t){const n=t.nextSibling;if(n&&t!==n.previousSibling)throw O0(n);return n}function k0(t){const n=t.firstChild;if(n&&function b1(t,n){return(t.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_CONTAINED_BY)!==Node.DOCUMENT_POSITION_CONTAINED_BY}(t,n))throw O0(n);return n}function zr(t){const n=t.nodeName;return"string"==typeof n?n:"FORM"}function O0(t){return new Error(`Failed to sanitize html because the element is clobbered: ${t.outerHTML}`)}const A4=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,Xa=/([^\#-~ |!])/g;function R0(t){return t.replace(/&/g,"&").replace(A4,function(n){return"&#"+(1024*(n.charCodeAt(0)-55296)+(n.charCodeAt(1)-56320)+65536)+";"}).replace(Xa,function(n){return"&#"+n.charCodeAt(0)+";"}).replace(//g,">")}let yc;function Zc(t,n){let a=null;try{yc=yc||ji(t);let o=n?String(n):"";a=yc.getInertBodyElement(o);let p=5,M=o;do{if(0===p)throw new Error("Failed to sanitize html because the input is unstable");p--,o=M,M=a.innerHTML,a=yc.getInertBodyElement(o)}while(o!==M);return Yl((new cd).sanitizeChildren(l2(a)||a))}finally{if(a){const o=l2(a)||a;for(;o.firstChild;)o.firstChild.remove()}}}function l2(t){return"content"in t&&function Qo(t){return t.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===t.nodeName}(t)?t.content:null}const or=/^>|^->||--!>|)/g;function ud(t,n){return t.createText(n)}function P0(t,n,a){t.setValue(n,a)}function c2(t,n){return t.createComment(function bc(t){return t.replace(or,n=>n.replace(dd,"\u200b$1\u200b"))}(n))}function hd(t,n,a){return t.createElement(n,a)}function Cc(t,n,a,o,p){t.insertBefore(n,a,o,p)}function F0(t,n,a){t.appendChild(n,a)}function d2(t,n,a,o,p){null!==o?Cc(t,n,a,o,p):F0(t,n,a)}function C1(t,n,a,o){t.removeChild(null,n,a,o)}function zs(t,n,a){const{mergedAttrs:o,classes:p,styles:M}=a;null!==o&&function Mn(t,n,a){let o=0;for(;o-1){let M;for(;++pM?"":p[it+1].toLowerCase(),2&o&&ze!==zt){if(ul(o))return!1;k=!0}}}}else{if(!k&&!ul(o)&&!ul(Y))return!1;if(k&&ul(Y))continue;k=!1,o=Y|1&o}}return ul(o)||k}function ul(t){return!(1&t)}function Z0(t,n,a,o){if(null===n)return-1;let p=0;if(o||!a){let M=!1;for(;p-1)for(a++;a0?'="'+z+'"':"")+"]"}else 8&o?p+="."+k:4&o&&(p+=" "+k);else""!==p&&!ul(k)&&(n+=v2(M,p),p=""),o=k,M=M||!ul(o);a++}return""!==p&&(n+=v2(M,p)),n}const qa={};function xc(t,n,a,o,p,M,k,z,Y,ze,it){const zt=h.Yw1+o,hn=zt+p,fn=function y2(t,n){const a=[];for(let o=0;o-1?1:1e3;return parseFloat(t)*n}function Ec(t,n){return t.getPropertyValue(n).split(",").map(o=>o.trim())}function Mc(t,n){return void 0!==t&&t.duration>n.duration}function tu(t){return(null!=t.animationName||null!=t.propertyName)&&t.duration>0}function iu(t,n,a){if(!a)return;const o=t.getAnimations();return 0===o.length?function nu(t,n){const a=getComputedStyle(t),o=function Cd(t){const n=Ec(t,"animation-name"),a=Ec(t,"animation-delay"),o=Ec(t,"animation-duration"),p={animationName:"",propertyName:void 0,duration:0};for(let M=0;Mp.duration&&(p.animationName=n[M],p.duration=k)}return p}(a),p=function eu(t){const n=Ec(t,"transition-property"),a=Ec(t,"transition-duration"),o=Ec(t,"transition-delay"),p={propertyName:"",duration:0,animationName:void 0};for(let M=0;Mp.duration&&(p.propertyName=n[M],p.duration=k)}return p}(a),M=o.duration>p.duration?o:p;Mc(n.get(t),M)||tu(M)&&n.set(t,M)}(t,n):function au(t,n,a){let o={animationName:void 0,propertyName:void 0,duration:0};for(const p of a){const M=p.effect?.getTiming(),k="number"==typeof M?.duration?M.duration:0;let Y,ze,z=(M?.delay??0)+k;p.animationName?ze=p.animationName:Y=p.transitionProperty,z>=o.duration&&(o={animationName:ze,propertyName:Y,duration:z})}Mc(n.get(t),o)||tu(o)&&n.set(t,o)}(t,n,o)}const bl=new Set;var L1=function(t){return t[t.CHANGE_DETECTION=0]="CHANGE_DETECTION",t[t.AFTER_NEXT_RENDER=1]="AFTER_NEXT_RENDER",t}(L1||{});const rc=new h.nKC(""),I1=new Set;function Yr(t){I1.has(t)||(I1.add(t),performance?.mark?.("mark_feature_usage",{detail:{feature:t}}))}const n1=!1,oc=class su extends Ue.B{__isAsync;destroyRef=void 0;pendingTasks=void 0;constructor(n=!1){super(),this.__isAsync=n,(0,h.M6u)()&&(this.destroyRef=(0,h.WQX)(h.abz,{optional:!0})??void 0,this.pendingTasks=(0,h.WQX)(h.rev,{optional:!0})??void 0)}emit(n){const a=(0,jt.Ht)(null);try{super.next(n)}finally{(0,jt.Ht)(a)}}subscribe(n,a,o){let p=n,M=a||(()=>null),k=o;if(n&&"object"==typeof n){const Y=n;p=Y.next?.bind(Y),M=Y.error?.bind(Y),k=Y.complete?.bind(Y)}this.__isAsync&&(M=this.wrapInTimeout(M),p&&(p=this.wrapInTimeout(p)),k&&(k=this.wrapInTimeout(k)));const z=super.subscribe({next:p,error:M,complete:k});return n instanceof wt.yU&&n.add(z),z}wrapInTimeout(n){return a=>{const o=this.pendingTasks?.add();setTimeout(()=>{try{n(a)}finally{void 0!==o&&this.pendingTasks?.remove(o)}})}}};function k1(t){let n,a;function o(){t=h.lQ1;try{void 0!==a&&"function"==typeof cancelAnimationFrame&&cancelAnimationFrame(a),void 0!==n&&clearTimeout(n)}catch{}}return n=setTimeout(()=>{t(),o()}),"function"==typeof requestAnimationFrame&&(a=requestAnimationFrame(()=>{t(),o()})),()=>o()}function C2(t){return queueMicrotask(()=>t()),()=>{t=h.lQ1}}const x2="isAngularZone",xd=x2+"_ID";let Q4=0;class ms{hasPendingMacrotasks=!1;hasPendingMicrotasks=!1;isStable=!0;onUnstable=new oc(!1);onMicrotaskEmpty=new oc(!1);onStable=new oc(!1);onError=new oc(!1);constructor(n){const{enableLongStackTrace:a=!1,shouldCoalesceEventChangeDetection:o=!1,shouldCoalesceRunChangeDetection:p=!1,scheduleInRootZone:M=n1}=n;if(typeof Zone>"u")throw new h.buA(908,!1);Zone.assertZonePatched();const k=this;k._nesting=0,k._outer=k._inner=Zone.current,Zone.TaskTrackingZoneSpec&&(k._inner=k._inner.fork(new Zone.TaskTrackingZoneSpec)),a&&Zone.longStackTraceZoneSpec&&(k._inner=k._inner.fork(Zone.longStackTraceZoneSpec)),k.shouldCoalesceEventChangeDetection=!p&&o,k.shouldCoalesceRunChangeDetection=p,k.callbackScheduled=!1,k.scheduleInRootZone=M,function ou(t){const n=()=>{!function ru(t){function n(){k1(()=>{t.callbackScheduled=!1,lu(t),t.isCheckStableRunning=!0,lc(t),t.isCheckStableRunning=!1})}t.isCheckStableRunning||t.callbackScheduled||(t.callbackScheduled=!0,t.scheduleInRootZone?Zone.root.run(()=>{n()}):t._outer.run(()=>{n()}),lu(t))}(t)},a=Q4++;t._inner=t._inner.fork({name:"angular",properties:{[x2]:!0,[xd]:a,[xd+a]:!0},onInvokeTask:(o,p,M,k,z,Y)=>{if(function cu(t){return Md(t,"__ignore_ng_zone__")}(Y))return o.invokeTask(M,k,z,Y);try{return O1(t),o.invokeTask(M,k,z,Y)}finally{(t.shouldCoalesceEventChangeDetection&&"eventTask"===k.type||t.shouldCoalesceRunChangeDetection)&&n(),Ed(t)}},onInvoke:(o,p,M,k,z,Y,ze)=>{try{return O1(t),o.invoke(M,k,z,Y,ze)}finally{t.shouldCoalesceRunChangeDetection&&!t.callbackScheduled&&!function E2(t){return Md(t,"__scheduler_tick__")}(Y)&&n(),Ed(t)}},onHasTask:(o,p,M,k)=>{o.hasTask(M,k),p===M&&("microTask"==k.change?(t._hasPendingMicrotasks=k.microTask,lu(t),lc(t)):"macroTask"==k.change&&(t.hasPendingMacrotasks=k.macroTask))},onHandleError:(o,p,M,k)=>(o.handleError(M,k),t.runOutsideAngular(()=>t.onError.emit(k)),!1)})}(k)}static isInAngularZone(){return typeof Zone<"u"&&!0===Zone.current.get(x2)}static assertInAngularZone(){if(!ms.isInAngularZone())throw new h.buA(909,!1)}static assertNotInAngularZone(){if(ms.isInAngularZone())throw new h.buA(909,!1)}run(n,a,o){return this._inner.run(n,a,o)}runTask(n,a,o,p){const M=this._inner,k=M.scheduleEventTask("NgZoneEvent: "+p,n,$4,h.lQ1,h.lQ1);try{return M.runTask(k,a,o)}finally{M.cancelTask(k)}}runGuarded(n,a,o){return this._inner.runGuarded(n,a,o)}runOutsideAngular(n){return this._outer.run(n)}}const $4={};function lc(t){if(0==t._nesting&&!t.hasPendingMicrotasks&&!t.isStable)try{t._nesting++,t.onMicrotaskEmpty.emit(null)}finally{if(t._nesting--,!t.hasPendingMicrotasks)try{t.runOutsideAngular(()=>t.onStable.emit(null))}finally{t.isStable=!0}}}function lu(t){t.hasPendingMicrotasks=!!(t._hasPendingMicrotasks||(t.shouldCoalesceEventChangeDetection||t.shouldCoalesceRunChangeDetection)&&!0===t.callbackScheduled)}function O1(t){t._nesting++,t.isStable&&(t.isStable=!1,t.onUnstable.emit(null))}function Ed(t){t._nesting--,lc(t)}class Sc{hasPendingMicrotasks=!1;hasPendingMacrotasks=!1;isStable=!0;onUnstable=new oc;onMicrotaskEmpty=new oc;onStable=new oc;onError=new oc;run(n,a,o){return n.apply(a,o)}runGuarded(n,a,o){return n.apply(a,o)}runOutsideAngular(n){return n()}runTask(n,a,o,p){return n.apply(a,o)}}function Md(t,n){return!(!Array.isArray(t)||1!==t.length)&&!0===t[0]?.data?.[n]}function Pc(t="zone.js",n){return"noop"===t?new Sc:"zone.js"===t?new ms(n):t}let Sd=(()=>{class t{impl=null;execute(){this.impl?.execute()}static \u0275prov=(0,h.jDH)({token:t,providedIn:"root",factory:()=>new t})}return t})();const M2=[0,1,2,3];let S2=(()=>{class t{ngZone=(0,h.WQX)(ms);scheduler=(0,h.WQX)(h.hk6);errorHandler=(0,h.WQX)(h.zcH,{optional:!0});sequences=new Set;deferredRegistrations=new Set;executing=!1;constructor(){(0,h.WQX)(rc,{optional:!0})}execute(){const a=this.sequences.size>0;a&&we(16),this.executing=!0;for(const o of M2)for(const p of this.sequences)if(!p.erroredOrDestroyed&&p.hooks[o])try{p.pipelinedValue=this.ngZone.runOutsideAngular(()=>this.maybeTrace(()=>(0,p.hooks[o])(p.pipelinedValue),p.snapshot))}catch(M){p.erroredOrDestroyed=!0,this.errorHandler?.handleError(M)}this.executing=!1;for(const o of this.sequences)o.afterRun(),o.once&&(this.sequences.delete(o),o.destroy());for(const o of this.deferredRegistrations)this.sequences.add(o);this.deferredRegistrations.size>0&&this.scheduler.notify(7),this.deferredRegistrations.clear(),a&&we(17)}register(a){const{view:o}=a;void 0!==o?((o[h.JEi]??=[]).push(a),(0,h.blu)(o),o[h.Wg1]|=8192):this.executing?this.deferredRegistrations.add(a):this.addSequence(a)}addSequence(a){this.sequences.add(a),this.scheduler.notify(7)}unregister(a){this.executing&&this.sequences.has(a)?(a.erroredOrDestroyed=!0,a.pipelinedValue=void 0,a.once=!0):(this.sequences.delete(a),this.deferredRegistrations.delete(a))}maybeTrace(a,o){return o?o.run(L1.AFTER_NEXT_RENDER,a):a()}static \u0275prov=(0,h.jDH)({token:t,providedIn:"root",factory:()=>new t})}return t})();class i1{impl;hooks;view;once;snapshot;erroredOrDestroyed=!1;pipelinedValue=void 0;unregisterOnDestroy;constructor(n,a,o,p,M,k=null){this.impl=n,this.hooks=a,this.view=o,this.once=p,this.snapshot=k,this.unregisterOnDestroy=M?.onDestroy(()=>this.destroy())}afterRun(){this.erroredOrDestroyed=!1,this.pipelinedValue=void 0,this.snapshot?.dispose(),this.snapshot=null}destroy(){this.impl.unregister(this),this.unregisterOnDestroy?.();const n=this.view?.[h.JEi];n&&(this.view[h.JEi]=n.filter(a=>a!==this))}}function T2(t,n){const a=n?.injector??(0,h.WQX)(h.zZn);return Yr("NgAfterNextRender"),hu(t,a,n,!0)}function hu(t,n,a,o){const p=n.get(Sd);p.impl??=n.get(S2);const M=n.get(rc,null,{optional:!0}),k=!0!==a?.manualCleanup?n.get(h.abz):null,z=n.get(h.r4V,null,{optional:!0}),Y=new i1(p.impl,function uu(t){return t instanceof Function?[void 0,void 0,t,void 0]:[t.earlyRead,t.write,t.mixedReadWrite,t.read]}(t),z?.view,o,k,M?.snapshot(null));return p.impl.register(Y),Y}const mu={destroy(){}},R1=new h.nKC("",{providedIn:"root",factory:()=>({queue:new Set,isScheduled:!1,scheduler:null})});function fu(t,n,a){const o=t.get(R1);if(Array.isArray(n))for(const p of n)o.queue.add(p),a?.detachedLeaveAnimationFns?.push(p);else o.queue.add(n),a?.detachedLeaveAnimationFns?.push(n);o.scheduler&&o.scheduler(t)}function Z4(t){const n=t.get(R1);n.isScheduled||(T2(()=>{n.isScheduled=!1;for(let a of n.queue)a();n.queue.clear()},{injector:t}),n.isScheduled=!0)}function D2(t){const n=t.get(R1);n.scheduler=Z4,n.scheduler(t)}function P1(t,n){for(const[a,o]of n)fu(t,o.animateFns)}function S(t,n,a,o){const p=t?.[h.Isx]?.enter;null!==n&&p&&p.has(a.index)&&P1(o,p)}function F1(t,n,a,o,p,M,k,z){if(null!=p){let Y,ze=!1;(0,h.A0l)(p)?Y=p:(0,h.q$2)(p)&&(ze=!0,p=p[h.jgP]);const it=(0,h.IvY)(p);0===t&&null!==o?(S(z,o,M,a),null==k?F0(n,o,it):Cc(n,o,it,k||null,!0)):1===t&&null!==o?(S(z,o,M,a),Cc(n,o,it,k||null,!0)):2===t?pu(z,M,a,zt=>{C1(n,it,ze,zt)}):3===t&&pu(z,M,a,()=>{n.destroyNode(it)}),null!=Y&&function O2(t,n,a,o,p,M,k){const z=o[h.s6P];z!==(0,h.IvY)(o)&&F1(n,t,a,M,z,p,k);for(let ze=h.Y20;ze=0?o[z]():o[-z].unsubscribe(),k+=2}else a[k].call(o[a[k+1]]);null!==o&&(n[h.VVG]=null);const p=n[h.Czx];if(null!==p){n[h.Czx]=null;for(let k=0;k{if(p.leave&&p.leave.has(n.index)){const k=p.leave.get(n.index),z=[];if(k){for(let Y=0;Y{t[h.Isx].running=void 0,bl.delete(t),n(!0)}):n(!1)}(t,o)}else t&&bl.delete(t),o(!1)},p)}function I2(t,n,a){return gu(t,n.parent,a)}function gu(t,n,a){let o=n;for(;null!==o&&168&o.type;)o=(n=o).parent;if(null===o)return a[h.jgP];if((0,h.Qs1)(o)){const{encapsulation:p}=t.data[o.directiveStart+o.componentOffset];if(p===Bi.None||p===Bi.Emulated)return null}return(0,h.d31)(o,a)}function t3(t,n,a){return _u(t,n,a)}function n3(t,n,a){return 40&t.type?(0,h.d31)(t,a):null}let vu,_u=n3;function i3(t,n){_u=t,vu=n}function yu(t,n,a,o){const p=I2(t,o,n),M=n[h.GpT],z=t3(o.parent||n[h.qlT],o,n);if(null!=p)if(Array.isArray(a))for(let Y=0;Yh.Yw1&&X4(t,n,h.Yw1,!1),we(k?2:0,p,a),a(o,p)}finally{(0,h.ypq)(M),we(k?3:1,p,a)}}function R2(t,n,a){(function c3(t,n,a){const o=a.directiveStart,p=a.directiveEnd;(0,h.Qs1)(a)&&function W4(t,n,a){const o=(0,h.d31)(n,t),p=q0(a),M=t[h.M0L].rendererFactory,k=yd(t,M1(t,p,null,S1(a),o,n,null,M.createRenderer(o,a),null,null,null));t[n.index]=k}(n,a,t.data[o+a.componentOffset]),t.firstCreatePass||en(a,n);const M=a.initialInputs;for(let k=o;knull;function P2(t,n,a,o,p,M){Id(t,n[h.eDl],n,a,o)?(0,h.Qs1)(t)&&N2(n,t.index):(3&t.type&&(a=function Mu(t){return"class"===t?"className":"for"===t?"htmlFor":"formaction"===t?"formAction":"innerHtml"===t?"innerHTML":"readonly"===t?"readOnly":"tabindex"===t?"tabIndex":t}(a)),F2(t,n,a,o,p,M))}function F2(t,n,a,o,p,M){if(3&t.type){const k=(0,h.d31)(t,n);o=null!=M?M(o,t.value||"",a):o,p.setProperty(k,a,o)}}function N2(t,n){const a=(0,h.KdJ)(n,t);16&a[h.Wg1]||(a[h.Wg1]|=64)}function Su(t,n){null!==t.hostBindings&&t.hostBindings(1,n)}function z2(t,n){const a=t.directiveRegistry;let o=null;if(a)for(let p=0;p{(0,h.blu)(t.lView)},consumerOnSignalRead(){this.lView[h.Iaj]=this}},y3={...jt.pL,consumerIsAlwaysLive:!0,kind:"template",consumerMarkedDirty:t=>{let n=(0,h._0$)(t.lView);for(;n&&!U2(n[h.eDl]);)n=(0,h._0$)(n);n&&(0,h.HAh)(n)},consumerOnSignalRead(){this.lView[h.Iaj]=this}};function U2(t){return 2!==t.type}function ku(t){if(null===t[h.tQN])return;let n=!0;for(;n;){let a=!1;for(const o of t[h.tQN])o.dirty&&(a=!0,null===o.zone||Zone.current===o.zone?o.run():o.zone.run(()=>o.run()));n=a&&!!(8192&t[h.Wg1])}}function G2(t,n=0){const o=t[h.M0L].rendererFactory;o.begin?.();try{!function j2(t,n){const a=(0,h.yP_)();try{(0,h.cBl)(!0),H2(t,n);let o=0;for(;(0,h.dMS)(t);){if(100===o)throw new h.buA(103,!1);o++,H2(t,1)}}finally{(0,h.cBl)(a)}}(t,n)}finally{o.end?.()}}function Vr(t,n,a,o){if((0,h.EPY)(n))return;const p=n[h.Wg1];(0,h.ID8)(n);let z=!0,Y=null,ze=null;U2(t)?(ze=function Au(t){return t[h.Iaj]??function _3(t){const n=wu.pop()??Object.create(v3);return n.lView=t,n}(t)}(n),Y=(0,jt.Bg)(ze)):null===(0,jt.nR)()?(z=!1,ze=function Iu(t){const n=t[h.Iaj]??Object.create(y3);return n.lView=t,n}(n),Y=(0,jt.Bg)(ze)):n[h.Iaj]&&((0,jt.XR)(n[h.Iaj]),n[h.Iaj]=null);try{(0,h.HUe)(n),(0,h.Kw3)(t.bindingStartIndex),null!==a&&o3(t,n,a,2,o);const it=!(3&~p);if(it){const fn=t.preOrderCheckHooks;null!==fn&&Ht(n,fn,null)}else{const fn=t.preOrderHooks;null!==fn&&_n(n,fn,0,null),fi(n,0)}if(function b3(t){for(let n=Oi(t);null!==n;n=ua(n)){if(!(2&n[h.Wg1]))continue;const a=n[h.nfM];for(let o=0;o0&&(a[p-1][h.K29]=n),o0&&(t[a-1][h.K29]=o[h.K29]);const M=(0,h.E6O)(t,h.Y20+n);J4(o[h.eDl],o);const k=M[h.Ds7];null!==k&&k.detachView(M[h.eDl]),o[h.f7T]=null,o[h.K29]=null,o[h.Wg1]&=-129}return o}function co(t,n){const a=t[h.nfM],o=n[h.f7T];((0,h.q$2)(o)||n[h.b5C]!==o[h.f7T][h.b5C])&&(t[h.Wg1]|=2),null===a?t[h.nfM]=[n]:a.push(n)}class o1{_lView;_cdRefInjectingView;_appRef=null;_attachedToViewContainer=!1;exhaustive;get rootNodes(){const n=this._lView,a=n[h.eDl];return z1(a,n,a.firstChild,[])}constructor(n,a){this._lView=n,this._cdRefInjectingView=a}get context(){return this._lView[h.SKP]}set context(n){this._lView[h.SKP]=n}get destroyed(){return(0,h.EPY)(this._lView)}destroy(){if(this._appRef)this._appRef.detachView(this);else if(this._attachedToViewContainer){const n=this._lView[h.f7T];if((0,h.A0l)(n)){const a=n[h.bm_],o=a?a.indexOf(this):-1;o>-1&&(V1(n,o),(0,h.E6O)(a,o))}this._attachedToViewContainer=!1}Td(this._lView[h.eDl],this._lView)}onDestroy(n){(0,h.ik5)(this._lView,n)}markForCheck(){r1(this._cdRefInjectingView||this._lView,4)}detach(){this._lView[h.Wg1]&=-129}reattach(){(0,h._gW)(this._lView),this._lView[h.Wg1]|=128}detectChanges(){this._lView[h.Wg1]|=1024,G2(this._lView)}checkNoChanges(){}attachToViewContainerRef(){if(this._appRef)throw new h.buA(902,!1);this._attachedToViewContainer=!0}detachFromAppRef(){this._appRef=null;const n=(0,h.EFk)(this._lView),a=this._lView[h.rQE];null!==a&&!n&&w2(a,this._lView),q4(this._lView[h.eDl],this._lView)}attachToAppRef(n){if(this._attachedToViewContainer)throw new h.buA(902,!1);this._appRef=n;const a=(0,h.EFk)(this._lView),o=this._lView[h.rQE];null!==o&&!a&&co(o,this._lView),(0,h._gW)(this._lView)}}let U1=(()=>class t{_declarationLView;_declarationTContainer;elementRef;static __NG_ELEMENT_ID__=E3;constructor(a,o,p){this._declarationLView=a,this._declarationTContainer=o,this.elementRef=p}get ssrId(){return this._declarationTContainer.tView?.ssrId||null}createEmbeddedView(a,o){return this.createEmbeddedViewImpl(a,o)}createEmbeddedViewImpl(a,o,p){const M=cc(this._declarationLView,this._declarationTContainer,a,{embeddedViewInjector:o,dehydratedView:p});return new o1(M)}})();function E3(){return Od((0,h.Mx4)(),(0,h.OAn)())}function Od(t,n){return 4&t.type?new U1(n,t,Ka(t,n)):null}function zu(t,n,a){const o=n.insertBeforeIndex,p=Array.isArray(o)?o[0]:o;return null===p?n3(t,0,a):(0,h.IvY)(a[p])}function Nd(t,n,a,o,p){const M=n.insertBeforeIndex;if(Array.isArray(M)){let k=o,z=null;if(3&n.type||(z=k,k=p),null!==k&&-1===n.componentOffset)for(let Y=1;Y1)for(let a=t.length-2;a>=0;a--){const o=t[a];Dc(o)||L3(o,n)&&null===I3(o)&&k3(o,n.index)}}function Dc(t){return!(64&t.type)}function L3(t,n){return Dc(n)||t.index>n.index}function I3(t){const n=t.insertBeforeIndex;return Array.isArray(n)?n[0]:n}function k3(t,n){const a=t.insertBeforeIndex;Array.isArray(a)?a[0]=n:(i3(zu,Nd),t.insertBeforeIndex=n)}function zd(t,n){const a=t.data[n];return null===a||"string"==typeof a?null:a.hasOwnProperty("currentCaseLViewIndex")?a:a.value}function P3(t,n,a){const o=Bd(t,a,64,null,null);return mm(n,o),o}function Z2(t,n){const a=n[t.currentCaseLViewIndex];return null===a?a:a<0?~a:a}function Vu(t){return t>>>17}function Uu(t){return(131070&t)>>>1}function J2(t,n,a){t.index=0;const o=Z2(n,a);t.removes=null!==o?n.remove[o]:h.Mlv}function Vd(t){if(t.index0?t.lView[n]:(t.stack.push(t.index,t.removes),J2(t,t.lView[h.eDl].data[~n],t.lView),Vd(t))}return 0===t.stack.length?(t.lView=void 0,null):(t.removes=t.stack.pop(),t.index=t.stack.pop(),Vd(t))}function z3(){const t={stack:[],index:-1};return function n(a,o){for(t.lView=o;t.stack.length;)t.stack.pop();return J2(t,a.value,o),Vd.bind(null,t)}}function m(t,n,a){for(const o of a.node.cases[a.case]){const p=n.get(o.index-h.Yw1);p&&C1(t,p,!1)}}function E(t){const n=t[h.qFA]??[],o=t[h.f7T][h.GpT],p=[];for(const M of n)void 0!==M.data.di?p.push(M):I(M,o);t[h.qFA]=p}function D(t){const{lContainer:n}=t,a=n[h.qFA];if(null===a)return;const p=n[h.f7T][h.GpT];for(const M of a)I(M,p)}function I(t,n){let a=0,o=t.firstChild;if(o){const p=t.data.r;for(;aclass t{destroyNode=null;static __NG_ELEMENT_ID__=()=>function K3(){const t=(0,h.OAn)(),n=(0,h.Mx4)(),a=(0,h.KdJ)(n.index,t);return((0,h.q$2)(a)?a:t)[h.GpT]}()})(),h1=(()=>{class t{static \u0275prov=(0,h.jDH)({token:t,providedIn:"root",factory:()=>null})}return t})();function X1(t){return void 0!==t.ngModule}function zc(t){return!!(0,h.phH)(t)}function K1(t){return!!(0,h.oyA)(t)}function aa(t){return!!(0,h.HaV)(t)}function la(t){return!!(0,h.xUg)(t)}function Ya(t,n){if((0,h.Jzi)(t)&&!(t=(0,h.nl4)(t)))throw new Error(`Expected forwardRef function, imported from "${(0,h.PP7)(n)}", to return a standalone entity or NgModule but got "${(0,h.PP7)(t)||t}".`);if(null==(0,h.phH)(t)){const a=(0,h.xUg)(t)||(0,h.HaV)(t)||(0,h.oyA)(t);if(null==a)throw X1(t)?new Error(`A module with providers was imported from "${(0,h.PP7)(n)}". Modules with providers are not supported in standalone components imports.`):new Error(`The "${(0,h.PP7)(t)}" type, imported from "${(0,h.PP7)(n)}", must be a standalone component / directive / pipe or an NgModule. Did you forget to add the required @Component / @Directive / @Pipe or @NgModule annotation?`);if(!a.standalone)throw new Error(`The "${(0,h.PP7)(t)}" ${function ya(t){return(0,h.xUg)(t)?"component":(0,h.HaV)(t)?"directive":(0,h.oyA)(t)?"pipe":"type"}(t)}, imported from "${(0,h.PP7)(n)}", is not standalone. Did you forget to add the standalone: true flag?`)}}class uo{ownerNgModule=new Map;ngModulesWithSomeUnresolvedDecls=new Set;ngModulesScopeCache=new Map;standaloneComponentsScopeCache=new Map;resolveNgModulesDecls(){if(0!==this.ngModulesWithSomeUnresolvedDecls.size){for(const n of this.ngModulesWithSomeUnresolvedDecls){const a=(0,h.phH)(n);if(a?.declarations)for(const o of Ql(a.declarations))la(o)&&this.ownerNgModule.set(o,n)}this.ngModulesWithSomeUnresolvedDecls.clear()}}getComponentDependencies(n,a){this.resolveNgModulesDecls();const o=(0,h.xUg)(n);if(null===o)throw new Error(`Attempting to get component dependencies for a type that is not a component: ${n}`);if(o.standalone){const p=this.getStandaloneComponentScope(n,a);return p.compilation.isPoisoned?{dependencies:[]}:{dependencies:[...p.compilation.directives,...p.compilation.pipes,...p.compilation.ngModules]}}{if(!this.ownerNgModule.has(n))return{dependencies:[]};const p=this.getNgModuleScope(this.ownerNgModule.get(n));return p.compilation.isPoisoned?{dependencies:[]}:{dependencies:[...p.compilation.directives,...p.compilation.pipes]}}}registerNgModule(n,a){if(!zc(n))throw new Error(`Attempting to register a Type which is not NgModule as NgModule: ${n}`);this.ngModulesWithSomeUnresolvedDecls.add(n)}clearScopeCacheFor(n){this.ngModulesScopeCache.delete(n),this.standaloneComponentsScopeCache.delete(n)}getNgModuleScope(n){if(this.ngModulesScopeCache.has(n))return this.ngModulesScopeCache.get(n);const a=this.computeNgModuleScope(n);return this.ngModulesScopeCache.set(n,a),a}computeNgModuleScope(n){const a=(0,h.WbQ)(n),o={exported:{directives:new Set,pipes:new Set},compilation:{directives:new Set,pipes:new Set}};for(const p of Ql(a.imports))if(zc(p)){const M=this.getNgModuleScope(p);_o(M.exported.directives,o.compilation.directives),_o(M.exported.pipes,o.compilation.pipes)}else{if(!(0,h.QuC)(p)){o.compilation.isPoisoned=!0;break}if(aa(p)||la(p))o.compilation.directives.add(p);else{if(!K1(p))throw new h.buA(980,"The standalone imported type is neither a component nor a directive nor a pipe");o.compilation.pipes.add(p)}}if(!o.compilation.isPoisoned)for(const p of Ql(a.declarations)){if(zc(p)||(0,h.QuC)(p)){o.compilation.isPoisoned=!0;break}K1(p)?o.compilation.pipes.add(p):o.compilation.directives.add(p)}for(const p of Ql(a.exports))if(zc(p)){const M=this.getNgModuleScope(p);_o(M.exported.directives,o.exported.directives),_o(M.exported.pipes,o.exported.pipes),_o(M.exported.directives,o.compilation.directives),_o(M.exported.pipes,o.compilation.pipes)}else K1(p)?o.exported.pipes.add(p):o.exported.directives.add(p);return o}getStandaloneComponentScope(n,a){if(this.standaloneComponentsScopeCache.has(n))return this.standaloneComponentsScopeCache.get(n);const o=this.computeStandaloneComponentScope(n,a);return this.standaloneComponentsScopeCache.set(n,o),o}computeStandaloneComponentScope(n,a){const o={compilation:{directives:new Set([n]),pipes:new Set,ngModules:new Set}};for(const p of(0,h.Bqz)(a??[])){const M=(0,h.nl4)(p);try{Ya(M,n)}catch{return o.compilation.isPoisoned=!0,o}if(zc(M)){o.compilation.ngModules.add(M);const k=this.getNgModuleScope(M);if(k.exported.isPoisoned)return o.compilation.isPoisoned=!0,o;_o(k.exported.directives,o.compilation.directives),_o(k.exported.pipes,o.compilation.pipes)}else if(K1(M))o.compilation.pipes.add(M);else{if(!aa(M)&&!la(M))return o.compilation.isPoisoned=!0,o;o.compilation.directives.add(M)}}return o}isOrphanComponent(n){const a=(0,h.xUg)(n);return!(!a||a.standalone||(this.resolveNgModulesDecls(),this.ownerNgModule.has(n)))}}function _o(t,n){for(const a of t)n.add(a)}const vo=new uo,dc={};class ys{injector;parentInjector;constructor(n,a){this.injector=n,this.parentInjector=a}get(n,a,o){const p=this.injector.get(n,dc,o);return p!==dc||a===dc?p:this.parentInjector.get(n,a,o)}}function Y1(t,n,a){let o=a?t.styles:null,p=a?t.classes:null,M=0;if(null!==n)for(let k=0;k0&&(a.directiveToIndex=new Map);for(let hn=0;hn0;){const a=t[--n];if("number"==typeof a&&a<0)return a}return 0})(k)!=z&&k.push(z),k.push(a,o,M)}}(t,n,o,T1(t,a,p.hostVars,qa),p)}function gg(t,n,a){if(a){if(n.exportAs)for(let o=0;oY?z[Y]:null}"string"==typeof k&&(M+=2)}return null}(n,a,M,t.index)),null!==it)(it.__ngLastListenerFn__||it).__ngNextListenerFn__=k,it.__ngLastListenerFn__=k,ze=!0;else{const zt=(0,h.d31)(t,a),hn=o?o(zt):zt,fn=p.listen(hn,M,z);(function _g(t){return t.startsWith("animation")||t.startsWith("transition")})(M)||Jf(o?Si=>o((0,h.IvY)(Si[t.index])):t.index,n,a,M,z,fn,!1)}return ze}function Jf(t,n,a,o,p,M,k){const z=n.firstCreatePass?(0,h.vNG)(n):null,Y=(0,h.d_l)(a),ze=Y.length;Y.push(p,M),z&&z.push(o,t,ze,(ze+1)*(k?-1:1))}function q3(t,n,a,o,p,M){const z=n[h.eDl],zt=n[a][z.data[a].outputs[o]].subscribe(M);Jf(t.index,z,n,p,M,zt,!0)}const $1=Symbol("BINDING");class tp extends ps{ngModule;constructor(n){super(),this.ngModule=n}resolveComponentFactory(n){const a=(0,h.xUg)(n);return new c0(a,this.ngModule)}}class c0 extends Fa{componentDef;ngModule;selector;componentType;ngContentSelectors;isBoundToModule;cachedInputs=null;cachedOutputs=null;get inputs(){return this.cachedInputs??=function Tg(t){return Object.keys(t).map(n=>{const[a,o,p]=t[n],M={propName:a,templateName:n,isSignal:0!==(o&D1.SignalBased)};return p&&(M.transform=p),M})}(this.componentDef.inputs),this.cachedInputs}get outputs(){return this.cachedOutputs??=function Dg(t){return Object.keys(t).map(n=>({propName:t[n],templateName:n}))}(this.componentDef.outputs),this.cachedOutputs}constructor(n,a){super(),this.componentDef=n,this.ngModule=a,this.componentType=n.type,this.selector=function j4(t){return t.map(G4).join(",")}(n.selectors),this.ngContentSelectors=n.ngContentSelectors??[],this.isBoundToModule=!!a}create(n,a,o,p,M,k){we(22);const z=(0,jt.Ht)(null);try{const Y=this.componentDef,ze=function sp(t,n,a,o){const p=t?["ng-version","20.3.27"]:function H4(t){const n=[],a=[];let o=1,p=2;for(;o{if(1&a&&t)for(const o of t)o.create();if(2&a&&n)for(const o of n)o.update()}:null}(M,k),1,z,Y,null,null,null,[p],null)}(o,Y,k,M),it=function Ag(t,n,a){let o=n instanceof h.uvJ?n:n?.injector;return o&&null!==t.getStandaloneInjector&&(o=t.getStandaloneInjector(o)||o),o?new ys(a,o):a}(Y,p||this.ngModule,n),zt=function Lg(t){const n=t.get(xl,null);if(null===n)throw new h.buA(407,!1);return{rendererFactory:n,sanitizer:t.get(h1,null),changeDetectionScheduler:t.get(h.hk6,null),ngReflect:!1}}(it),hn=zt.rendererFactory.createRenderer(null,Y),fn=o?function a1(t,n,a,o){const M=o.get(Ul,!1)||a===Bi.ShadowDom,k=t.selectRootElement(n,M);return function Cu(t){xu(t)}(k),k}(hn,o,Y.encapsulation,it):function np(t,n){const a=function ap(t){return(t.selectors[0][0]||"div").toLowerCase()}(t);return hd(n,a,"svg"===a?h.jNX:"math"===a?h.rJ1:null)}(Y,hn);!function ip(t){if("script"===t?.toLowerCase())throw new h.buA(905,!1)}(fn?.tagName);const qn=k?.some(wc)||M?.some(na=>"function"!=typeof na&&na.bindings.some(wc)),Si=M1(null,ze,null,512|S1(Y),null,null,zt,hn,it,null,null);Si[h.Yw1]=fn,(0,h.ID8)(Si);let Xi=null;try{const na=r0(h.Yw1,Si,2,"#host",()=>ze.directiveRegistry,!0,0);zs(hn,fn,na),wa(fn,Si),R2(ze,Si,na),Wa(ze,na,Si),Q3(ze,na),void 0!==a&&function eh(t,n,a){const o=t.projection=[];for(let p=0;pclass t{static __NG_ELEMENT_ID__=rp})();function rp(){return Ac((0,h.Mx4)(),(0,h.OAn)())}const Tm=$o,Dm=class extends Tm{_lContainer;_hostTNode;_hostLView;constructor(n,a,o){super(),this._lContainer=n,this._hostTNode=a,this._hostLView=o}get element(){return Ka(this._hostTNode,this._hostLView)}get injector(){return new U(this._hostTNode,this._hostLView)}get parentInjector(){const n=bn(this._hostTNode,this._hostLView);if(ra(n)){const a=qt(n,this._hostLView),o=fa(n);return new U(a[h.eDl].data[o+8],a)}return new U(null,this._hostLView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(n){const a=qu(this._lContainer);return null!==a&&a[n]||null}get length(){return this._lContainer.length-h.Y20}createEmbeddedView(n,a,o){let p,M;"number"==typeof o?p=o:null!=o&&(p=o.index,M=o.injector);const z=n.createEmbeddedViewImpl(a||{},M,null);return this.insertImpl(z,p,Nc(this._hostTNode,null)),z}createComponent(n,a,o,p,M,k,z){const Y=n&&!at(n);let ze;if(Y)ze=a;else{const Xi=a||{};ze=Xi.index,o=Xi.injector,p=Xi.projectableNodes,M=Xi.environmentInjector||Xi.ngModuleRef,k=Xi.directives,z=Xi.bindings}const it=Y?n:new c0((0,h.xUg)(n)),zt=o||this.parentInjector;if(!M&&null==it.ngModule){const na=(Y?zt:this.parentInjector).get(h.uvJ,null);na&&(M=na)}(0,h.xUg)(it.componentType??{});const Si=it.create(zt,p,null,M,k,z);return this.insertImpl(Si.hostView,ze,Nc(this._hostTNode,null)),Si}insert(n,a){return this.insertImpl(n,a,!0)}insertImpl(n,a,o){const p=n._lView;if((0,h.ITl)(p)){const z=this.indexOf(n);if(-1!==z)this.detach(z);else{const Y=p[h.f7T],ze=new Dm(Y,Y[h.qlT],Y[h.f7T]);ze.detach(ze.indexOf(n))}}const M=this._adjustIndex(a),k=this._lContainer;return Bc(k,p,M,o),n.attachToViewContainerRef(),(0,h.EYC)(d0(k),M,n),n}move(n,a){return this.insert(n,a)}indexOf(n){const a=qu(this._lContainer);return null!==a?a.indexOf(n):-1}remove(n){const a=this._adjustIndex(n,-1),o=V1(this._lContainer,a);o&&((0,h.E6O)(d0(this._lContainer),a),Td(o[h.eDl],o))}detach(n){const a=this._adjustIndex(n,-1),o=V1(this._lContainer,a);return o&&null!=(0,h.E6O)(d0(this._lContainer),a)?new o1(o):null}_adjustIndex(n,a=0){return n??this.length+a}};function qu(t){return t[h.bm_]}function d0(t){return t[h.bm_]||(t[h.bm_]=[])}function Ac(t,n){let a;const o=n[t.index];return(0,h.A0l)(o)?a=o:(a=Fu(o,n,null,t),n[t.index]=a,yd(n,a)),ma(a,n,t,o),new Dm(a,t,n)}let ma=function th(t,n,a,o){if(t[h.s6P])return;let p;p=8&a.type?(0,h.IvY)(o):function u0(t,n){const a=t[h.GpT],o=a.createComment(""),p=(0,h.d31)(n,t),M=a.parentNode(p);return Cc(a,M,o,a.nextSibling(p),!1),o}(n,a),t[h.s6P]=p};class ah{queryList;matches=null;constructor(n){this.queryList=n}clone(){return new ah(this.queryList)}setDirty(){this.queryList.setDirty()}}class t4{queries;constructor(n=[]){this.queries=n}createEmbeddedView(n){const a=n.queries;if(null!==a){const o=null!==n.contentQueries?n.contentQueries[0]:a.length,p=[];for(let M=0;Mn.trim())}(n):n}}class h0{queries;constructor(n=[]){this.queries=n}elementStart(n,a){for(let o=0;o0)o.push(k[z/2]);else{const ze=M[z+1],it=n[-Y];for(let zt=h.Y20;zt{o._dirtyCounter();const M=function a4(t,n){const a=t._lView,o=t._queryIndex;if(void 0===a||void 0===o||4&a[h.Wg1])return n?void 0:h.Mlv;const p=n4(a,o),M=ch(a,o);return p.reset(M,kr),n?p.first:p._changesDetected||void 0===t._flatValue?t._flatValue=p.toArray():t._flatValue}(o,t);if(n&&void 0===M)throw new h.buA(-951,!1);return M});return o=p[jt.bh],o._dirtyCounter=(0,h.vPA)(0),o._flatValue=void 0,p}function p0(t){return f0(!0,!1)}function Qr(t){return f0(!0,!0)}function km(t){return f0(!1,!1)}function Wd(t,n){const a=t[jt.bh];a._lView=(0,h.OAn)(),a._queryIndex=n,a._queryList=n4(a._lView,n),a._queryList.onDirty(()=>a._dirtyCounter.update(o=>o+1))}function lp(t){const n=[],a=new Map;function o(p){let M=a.get(p);if(!M){const k=t(p);a.set(p,M=k.then(z=>function Pm(t,n){return"string"==typeof n?n:void 0!==n.status&&200!==n.status?Promise.reject(new h.buA(918,!1)):n.text()}(0,z)))}return M}return q1.forEach((p,M)=>{const k=[];p.templateUrl&&k.push(o(p.templateUrl).then(ze=>{p.template=ze}));const z="string"==typeof p.styles?[p.styles]:p.styles||[];if(p.styles=z,p.styleUrl&&p.styleUrls?.length)throw new Error("@Component cannot define both `styleUrl` and `styleUrls`. Use `styleUrl` if the component has one stylesheet, or `styleUrls` if it has multiple");if(p.styleUrls?.length){const ze=p.styles.length,it=p.styleUrls;p.styleUrls.forEach((zt,hn)=>{z.push(""),k.push(o(zt).then(fn=>{z[ze+hn]=fn,it.splice(it.indexOf(zt),1),0==it.length&&(p.styleUrls=void 0)}))})}else p.styleUrl&&k.push(o(p.styleUrl).then(ze=>{z.push(ze),p.styleUrl=void 0}));const Y=Promise.all(k).then(()=>function r4(t){Gc.delete(t)}(M));n.push(Y)}),function s4(){const t=q1;q1=new Map}(),Promise.all(n).then(()=>{})}let q1=new Map;const Gc=new Set;function dp(){return 0===q1.size}const o4=new Map;function dh(t,n){(function up(t,n,a){if(n&&n!==a)throw new Error(`Duplicate module registered for ${t} - ${(0,h.AsM)(n)} vs ${(0,h.AsM)(n.name)}`)})(n,o4.get(n)||null,t),o4.set(n,t)}let Xd=class{},hl=class{};function Fm(t,n){return new c4(t,n??null,[])}class c4 extends Xd{ngModuleType;_parent;_bootstrapComponents=[];_r3Injector;instance;destroyCbs=[];componentFactoryResolver=new tp(this);constructor(n,a,o,p=!0){super(),this.ngModuleType=n,this._parent=a;const M=(0,h.phH)(n);this._bootstrapComponents=Ql(M.bootstrap),this._r3Injector=(0,h.Pz9)(n,a,[{provide:Xd,useValue:this},{provide:ps,useValue:this.componentFactoryResolver},...o],(0,h.AsM)(n),new Set(["environment"])),p&&this.resolveInjectorInitializers()}resolveInjectorInitializers(){this._r3Injector.resolveInjectorInitializers(),this.instance=this._r3Injector.get(this.ngModuleType)}get injector(){return this._r3Injector}destroy(){const n=this._r3Injector;!n.destroyed&&n.destroy(),this.destroyCbs.forEach(a=>a()),this.destroyCbs=null}onDestroy(n){this.destroyCbs.push(n)}}class mp extends hl{moduleType;constructor(n){super(),this.moduleType=n}create(n){return new c4(this.moduleType,n,[])}}function fp(t,n,a){return new c4(t,n,a,!1)}class Og extends Xd{injector;componentFactoryResolver=new tp(this);instance=null;constructor(n){super();const a=new h.e5P([...n.providers,{provide:Xd,useValue:this},{provide:ps,useValue:this.componentFactoryResolver}],n.parent||(0,h.WB9)(),n.debugName,new Set(["environment"]));this.injector=a,n.runEnvironmentInitializers&&a.resolveInjectorInitializers()}destroy(){this.injector.destroy()}onDestroy(n){this.injector.onDestroy(n)}}function Nm(t,n,a=null){return new Og({providers:t,parent:n,debugName:a,runEnvironmentInitializers:!0}).injector}let Rg=(()=>{class t{_injector;cachedInjectors=new Map;constructor(a){this._injector=a}getOrCreateStandaloneInjector(a){if(!a.standalone)return null;if(!this.cachedInjectors.has(a)){const o=(0,h.jXY)(!1,a.type),p=o.length>0?Nm([o],this._injector,`Standalone[${a.type.name}]`):null;this.cachedInjectors.set(a,p)}return this.cachedInjectors.get(a)}ngOnDestroy(){try{for(const a of this.cachedInjectors.values())null!==a&&a.destroy()}finally{this.cachedInjectors.clear()}}static \u0275prov=(0,h.jDH)({token:t,providedIn:"environment",factory:()=>new t((0,h.KVO)(h.uvJ))})}return t})();function pp(t){return Pt(()=>{const n=jc(t),a={...n,decls:t.decls,vars:t.vars,template:t.template,consts:t.consts||null,ngContentSelectors:t.ngContentSelectors,onPush:t.changeDetection===ls.OnPush,directiveDefs:null,pipeDefs:null,dependencies:n.standalone&&t.dependencies||null,getStandaloneInjector:n.standalone?p=>p.get(Rg).getOrCreateStandaloneInjector(a):null,getExternalStyles:null,signals:t.signals??!1,data:t.data||{},encapsulation:t.encapsulation||Bi.Emulated,styles:t.styles||h.Mlv,_:null,schemas:t.schemas||null,tView:null,id:""};n.standalone&&Yr("NgStandalone"),f1(a);const o=t.dependencies;return a.directiveDefs=d4(o,gp),a.pipeDefs=d4(o,h.oyA),a.id=function Ng(t){let n=0;const o=[t.selectors,t.ngContentSelectors,t.hostVars,t.hostAttrs,"function"==typeof t.consts?"":t.consts,t.vars,t.decls,t.encapsulation,t.standalone,t.signals,t.exportAs,JSON.stringify(t.inputs),JSON.stringify(t.outputs),Object.getOwnPropertyNames(t.type.prototype),!!t.contentQueries,!!t.viewQuery];for(const M of o.join("|"))n=Math.imul(31,n)+M.charCodeAt(0)|0;return n+=2147483648,"c"+n}(a),a})}function gp(t){return(0,h.xUg)(t)||(0,h.HaV)(t)}function _p(t){return Pt(()=>({type:t.type,bootstrap:t.bootstrap||h.Mlv,declarations:t.declarations||h.Mlv,imports:t.imports||h.Mlv,exports:t.exports||h.Mlv,transitiveCompileScopes:null,schemas:t.schemas||null,id:t.id||null}))}function Pg(t,n){if(null==t)return h.MZA;const a={};for(const o in t)if(t.hasOwnProperty(o)){const p=t[o];let M,k,z,Y;Array.isArray(p)?(z=p[0],M=p[1],k=p[2]??M,Y=p[3]||null):(M=p,k=p,z=D1.None,Y=null),a[M]=[o,z,Y],n[M]=k}return a}function vp(t){if(null==t)return h.MZA;const n={};for(const a in t)t.hasOwnProperty(a)&&(n[t[a]]=a);return n}function Bm(t){return Pt(()=>{const n=jc(t);return f1(n),n})}function zm(t){return{type:t.type,name:t.name,factory:null,pure:!1!==t.pure,standalone:t.standalone??!0,onDestroy:t.type.prototype.ngOnDestroy||null}}function jc(t){const n={};return{type:t.type,providersResolver:null,factory:null,hostBindings:t.hostBindings||null,hostVars:t.hostVars||0,hostAttrs:t.hostAttrs||null,contentQueries:t.contentQueries||null,declaredInputs:n,inputConfig:t.inputs||h.MZA,exportAs:t.exportAs||null,standalone:t.standalone??!0,signals:!0===t.signals,selectors:t.selectors||h.Mlv,viewQuery:t.viewQuery||null,features:t.features||null,setInput:null,resolveHostDirectives:null,hostDirectives:null,inputs:Pg(t.inputs,n),outputs:vp(t.outputs),debugInfo:null}}function f1(t){t.features?.forEach(n=>n(t))}function d4(t,n){return t?()=>{const a="function"==typeof t?t():t,o=[];for(const p of a){const M=n(p);null!==M&&o.push(M)}return o}:null}function yp(t){return Object.getPrototypeOf(t.prototype).constructor}function uh(t){let n=yp(t.type),a=!0;const o=[t];for(;n;){let p;if((0,h.JlV)(t))p=n.\u0275cmp||n.\u0275dir;else{if(n.\u0275cmp)throw new h.buA(903,!1);p=n.\u0275dir}if(p){if(a){o.push(p);const k=t;k.inputs=hh(t.inputs),k.declaredInputs=hh(t.declaredInputs),k.outputs=hh(t.outputs);const z=p.hostBindings;z&&Vg(t,z);const Y=p.viewQuery,ze=p.contentQueries;if(Y&&bp(t,Y),ze&&zg(t,ze),Bg(t,p),(0,h.dwj)(t.outputs,p.outputs),(0,h.JlV)(p)&&p.data.animation){const it=t.data;it.animation=(it.animation||[]).concat(p.data.animation)}}const M=p.features;if(M)for(let k=0;k=0;o--){const p=t[o];p.hostVars=n+=p.hostVars,p.hostAttrs=Bn(p.hostAttrs,a=Bn(a,p.hostAttrs))}}(o)}function Bg(t,n){for(const a in n.inputs){if(!n.inputs.hasOwnProperty(a)||t.inputs.hasOwnProperty(a))continue;const o=n.inputs[a];void 0!==o&&(t.inputs[a]=o,t.declaredInputs[a]=n.declaredInputs[a])}}function hh(t){return t===h.MZA?{}:t===h.Mlv?[]:t}function bp(t,n){const a=t.viewQuery;t.viewQuery=a?(o,p)=>{n(o,p),a(o,p)}:n}function zg(t,n){const a=t.contentQueries;t.contentQueries=a?(o,p,M)=>{n(o,p,M),a(o,p,M)}:n}function Vg(t,n){const a=t.hostBindings;t.hostBindings=a?(o,p)=>{n(o,p),a(o,p)}:n}const Um=["providersResolver"],g0=["template","decls","consts","vars","onPush","ngContentSelectors","styles","encapsulation","schemas"];function Cp(t){const n=a=>{const o=Array.isArray(t);null===a.hostDirectives?(a.resolveHostDirectives=Ug,a.hostDirectives=o?t.map(mh):[t]):o?a.hostDirectives.unshift(...t.map(mh)):a.hostDirectives.unshift(t)};return n.ngInherit=!0,n}function Ug(t){const n=[];let a=!1,o=null,p=null;for(let M=0;M{Q.has(t)&&(o.callbacks.delete(n),0===o.callbacks.size&&(Mt?.unobserve(t),Q.delete(t),Kt--),0===Kt&&(Mt?.disconnect(),Mt=null))}}(t,()=>o.run(n),()=>o.runOutsideAngular(()=>function La(){return new IntersectionObserver(t=>{for(const n of t)n.isIntersecting&&Q.has(n.target)&&Q.get(n.target).listener()})}()))}function td(t,n,a,o,p,M,k){const z=t[h.YEL],Y=z.get(ms);let ze;ze=function du(t,n){const a=n?.injector??(0,h.WQX)(h.zZn);return Yr("NgAfterRender"),hu(t,a,n,!1)}({read:function it(){if((0,h.EPY)(t))return void ze.destroy();const zt=Bl(t,n),hn=zt[1];if(hn!==_0.Initial&&hn!==Is.Placeholder)return void ze.destroy();const fn=function Ch(t,n,a){return null==a?t:a>=0?(0,h.jRZ)(a,t):t[n.index][h.Y20]??null}(t,n,o);if(!fn||(ze.destroy(),(0,h.EPY)(fn)))return;const qn=function $g(t,n){return(0,h.vaC)(h.Yw1+n,t)}(fn,a),Si=p(qn,()=>{Y.run(()=>{t!==fn&&(0,h.DyX)(fn,Si),M()})},z);t!==fn&&(0,h.ik5)(fn,Si),f4(k,zt,Si)}},{injector:z})}function p4(t,n){const a=n.get(g);return a.add(t),()=>a.remove(t)}let g=(()=>{class t{executingCallbacks=!1;idleId=null;current=new Set;deferred=new Set;ngZone=(0,h.WQX)(ms);requestIdleCallbackFn=(()=>typeof requestIdleCallback<"u"?requestIdleCallback:setTimeout)().bind(globalThis);cancelIdleCallbackFn=(()=>typeof requestIdleCallback<"u"?cancelIdleCallback:clearTimeout)().bind(globalThis);add(a){(this.executingCallbacks?this.deferred:this.current).add(a),null===this.idleId&&this.scheduleIdleCallback()}remove(a){const{current:o,deferred:p}=this;o.delete(a),p.delete(a),0===o.size&&0===p.size&&this.cancelIdleCallback()}scheduleIdleCallback(){const a=()=>{this.cancelIdleCallback(),this.executingCallbacks=!0;for(const o of this.current)o();if(this.current.clear(),this.executingCallbacks=!1,this.deferred.size>0){for(const o of this.deferred)this.current.add(o);this.deferred.clear(),this.scheduleIdleCallback()}};this.idleId=this.requestIdleCallbackFn(()=>this.ngZone.run(a))}cancelIdleCallback(){null!==this.idleId&&(this.cancelIdleCallbackFn(this.idleId),this.idleId=null)}ngOnDestroy(){this.cancelIdleCallback(),this.current.clear(),this.deferred.clear()}static \u0275prov=(0,h.jDH)({token:t,providedIn:"root",factory:()=>new t})}return t})();function c(t){return(n,a)=>r(t,n,a)}function r(t,n,a){const o=a.get(y),p=a.get(ms);return o.add(t,n,p),()=>o.remove(n)}let y=(()=>{class t{executingCallbacks=!1;timeoutId=null;invokeTimerAt=null;current=[];deferred=[];add(a,o,p){this.addToQueue(this.executingCallbacks?this.deferred:this.current,Date.now()+a,o),this.scheduleTimer(p)}remove(a){const{current:o,deferred:p}=this;-1===this.removeFromQueue(o,a)&&this.removeFromQueue(p,a),0===o.length&&0===p.length&&this.clearTimeout()}addToQueue(a,o,p){let M=a.length;for(let k=0;ko){M=k;break}(0,h.llW)(a,M,o,p)}removeFromQueue(a,o){let p=-1;for(let M=0;M-1&&(0,h.gsJ)(a,p,2),p}scheduleTimer(a){const o=()=>{this.clearTimeout(),this.executingCallbacks=!0;const M=[...this.current],k=Date.now();for(let Y=0;Y=0&&(0,h.gsJ)(this.current,0,z+1),this.executingCallbacks=!1,this.deferred.length>0){for(let Y=0;Y0){const M=Date.now(),k=this.current[0];if(null===this.timeoutId||this.invokeTimerAt&&this.invokeTimerAt-k>16){this.clearTimeout();const z=Math.max(k-M,16);this.invokeTimerAt=k,this.timeoutId=a.runOutsideAngular(()=>setTimeout(()=>a.run(o),z))}}}clearTimeout(){null!==this.timeoutId&&(clearTimeout(this.timeoutId),this.timeoutId=null)}ngOnDestroy(){this.clearTimeout(),this.current.length=0,this.deferred.length=0}static \u0275prov=(0,h.jDH)({token:t,providedIn:"root",factory:()=>new t})}return t})(),x=(()=>{class t{cachedInjectors=new Map;getOrCreateInjector(a,o,p,M){if(!this.cachedInjectors.has(a)){const k=p.length>0?Nm(p,o,M):null;this.cachedInjectors.set(a,k)}return this.cachedInjectors.get(a)}ngOnDestroy(){try{for(const a of this.cachedInjectors.values())null!==a&&a.destroy()}finally{this.cachedInjectors.clear()}}static \u0275prov=(0,h.jDH)({token:t,providedIn:"environment",factory:()=>new t})}return t})();const ue=new h.nKC("");function xt(t,n,a){return t.get(x).getOrCreateInjector(n,t,a,"")}function sn(t,n,a,o=!1){const p=a[h.f7T],M=p[h.eDl];if((0,h.EPY)(p))return;const k=Bl(p,n),Y=k[7];if(!(null!==Y&&t0&&(it=function Rt(t,n,a){if(t instanceof ys){const p=t.injector,k=xt(t.parentInjector,n,a);return new ys(p,k)}const o=t.get(h.uvJ);if(o!==t){const p=xt(o,n,a);return new ys(t,p)}return xt(t,n,a)}(p[h.YEL],qn,Si))}const{dehydratedView:zt,dehydratedViewIx:hn}=function wn(t,n){const a=t[h.qFA]?.findIndex(p=>p.data.s===n[1])??-1;return{dehydratedView:a>-1?t[h.qFA][a]:null,dehydratedViewIx:a}}(a,n),fn=cc(p,Y,null,{injector:it,dehydratedView:zt});if(Bc(a,fn,ze,Nc(Y,zt)),r1(fn,2),hn>-1&&a[h.qFA]?.splice(hn,1),(t===Is.Complete||t===Is.Error)&&Array.isArray(n[8])){for(const qn of n[8])qn();n[8]=null}}we(21)}function _i(t,n,a,o,p){const M=Date.now(),z=yo(p[h.eDl],o);if(null===n[2]||n[2]<=M){n[2]=null;const Y=yh(z),ze=null!==n[3];if(t!==Is.Loading||null===Y||ze){t>Is.Loading&&ze&&(n[3](),n[3]=null,n[0]=null),An(t,n,a,o,p);const it=Km(z,t);null!==it&&(n[2]=M+it,pi(it,n,o,a,p))}else{n[0]=t;const it=pi(Y,n,o,a,p);n[3]=it}}else n[0]=t}function pi(t,n,a,o,p){return r(t,()=>{const k=n[0];n[2]=null,n[0]=null,null!==k&&sn(k,a,o)},p[h.YEL])}function Ji(t,n){return t{t.loadingState===Ur.COMPLETE?sn(Is.Complete,n,a):t.loadingState===Ur.FAILED&&sn(Is.Error,n,a)})}let pa=null;function ks(t,n,a,o){return Pt(()=>{const p=t;null!==n&&(p.hasOwnProperty("decorators")&&void 0!==p.decorators?p.decorators.push(...n):p.decorators=n),null!==a&&(p.ctorParameters=a),null!==o&&(p.propDecorators=p.hasOwnProperty("propDecorators")&&void 0!==p.propDecorators?{...p.propDecorators,...o}:o)})}let Os=(()=>{class t{log(a){console.log(a)}warn(a){console.warn(a)}static \u0275fac=function(o){return new(o||t)};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac,providedIn:"platform"})}return t})();const l_=new h.nKC(""),c_=new h.nKC("");let Np,C7=(()=>{class t{_ngZone;registry;_isZoneStable=!0;_callbacks=[];_taskTrackingZone=null;_destroyRef;constructor(a,o,p){this._ngZone=a,this.registry=o,(0,h.M6u)()&&(this._destroyRef=(0,h.WQX)(h.abz,{optional:!0})??void 0),Np||(function x7(t){Np=t}(p),p.addToWindow(o)),this._watchAngularEvents(),a.run(()=>{this._taskTrackingZone=typeof Zone>"u"?null:Zone.current.get("TaskTrackingZone")})}_watchAngularEvents(){const a=this._ngZone.onUnstable.subscribe({next:()=>{this._isZoneStable=!1}}),o=this._ngZone.runOutsideAngular(()=>this._ngZone.onStable.subscribe({next:()=>{ms.assertNotInAngularZone(),queueMicrotask(()=>{this._isZoneStable=!0,this._runCallbacksIfReady()})}}));this._destroyRef?.onDestroy(()=>{a.unsubscribe(),o.unsubscribe()})}isStable(){return this._isZoneStable&&!this._ngZone.hasPendingMacrotasks}_runCallbacksIfReady(){if(this.isStable())queueMicrotask(()=>{for(;0!==this._callbacks.length;){let a=this._callbacks.pop();clearTimeout(a.timeoutId),a.doneCb()}});else{let a=this.getPendingTasks();this._callbacks=this._callbacks.filter(o=>!o.updateCb||!o.updateCb(a)||(clearTimeout(o.timeoutId),!1))}}getPendingTasks(){return this._taskTrackingZone?this._taskTrackingZone.macroTasks.map(a=>({source:a.source,creationLocation:a.creationLocation,data:a.data})):[]}addCallback(a,o,p){let M=-1;o&&o>0&&(M=setTimeout(()=>{this._callbacks=this._callbacks.filter(k=>k.timeoutId!==M),a()},o)),this._callbacks.push({doneCb:a,timeoutId:M,updateCb:p})}whenStable(a,o,p){if(p&&!this._taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is "zone.js/plugins/task-tracking" loaded?');this.addCallback(a,o,p),this._runCallbacksIfReady()}registerApplication(a){this.registry.registerApplication(a,this)}unregisterApplication(a){this.registry.unregisterApplication(a)}findProviders(a,o,p){return[]}static \u0275fac=function(o){return new(o||t)((0,h.KVO)(ms),(0,h.KVO)($m),(0,h.KVO)(c_))};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac})}return t})(),$m=(()=>{class t{_applications=new Map;registerApplication(a,o){this._applications.set(a,o)}unregisterApplication(a){this._applications.delete(a)}unregisterAllApplications(){this._applications.clear()}getTestability(a){return this._applications.get(a)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(a,o=!0){return Np?.findTestabilityInTree(this,a,o)??null}static \u0275fac=function(o){return new(o||t)};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac,providedIn:"platform"})}return t})();function d_(t){return!!t&&"function"==typeof t.then}function u_(t){return!!t&&"function"==typeof t.subscribe}const h_=new h.nKC("");function E7(t){return(0,h.EmA)([{provide:h_,multi:!0,useValue:t}])}let Bp=(()=>{class t{resolve;reject;initialized=!1;done=!1;donePromise=new Promise((a,o)=>{this.resolve=a,this.reject=o});appInits=(0,h.WQX)(h_,{optional:!0})??[];injector=(0,h.WQX)(h.zZn);constructor(){}runInitializers(){if(this.initialized)return;const a=[];for(const p of this.appInits){const M=(0,h.N4e)(this.injector,p);if(d_(M))a.push(M);else if(u_(M)){const k=new Promise((z,Y)=>{M.subscribe({complete:z,error:Y})});a.push(k)}}const o=()=>{this.done=!0,this.resolve()};Promise.all(a).then(()=>{o()}).catch(p=>{this.reject(p)}),0===a.length&&o(),this.initialized=!0}static \u0275fac=function(o){return new(o||t)};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac,providedIn:"root"})}return t})();const m_=new h.nKC("");function f_(){}function M7(){(0,jt.KO)(()=>{throw new h.buA(600,"")})}function p_(t,n){return Array.isArray(n)?n.reduce(p_,t):{...t,...n}}let Zm=(()=>{class t{_runningTick=!1;_destroyed=!1;_destroyListeners=[];_views=[];internalErrorHandler=(0,h.WQX)(h.ZTf);afterRenderManager=(0,h.WQX)(Sd);zonelessEnabled=(0,h.WQX)(h.Evm);rootEffectScheduler=(0,h.WQX)(h.VML);dirtyFlags=0;tracingSnapshot=null;allTestViews=new Set;autoDetectTestViews=new Set;includeAllTestViews=!1;afterTick=new Ue.B;get allViews(){return[...(this.includeAllTestViews?this.allTestViews:this.autoDetectTestViews).keys(),...this._views]}get destroyed(){return this._destroyed}componentTypes=[];components=[];internalPendingTask=(0,h.WQX)(h.rev);get isStable(){return this.internalPendingTask.hasPendingTasksObservable.pipe((0,pt.T)(a=>!a))}constructor(){(0,h.WQX)(rc,{optional:!0})}whenStable(){let a;return new Promise(o=>{a=this.isStable.subscribe({next:p=>{p&&o()}})}).finally(()=>{a.unsubscribe()})}_injector=(0,h.WQX)(h.uvJ);_rendererFactory=null;get injector(){return this._injector}bootstrap(a,o){return this.bootstrapImpl(a,o)}bootstrapImpl(a,o,p=h.zZn.NULL){return this._injector.get(ms).run(()=>{we(10);const k=a instanceof Fa;if(!this._injector.get(Bp).done)throw new h.buA(405,"");let Y;Y=k?a:this._injector.get(ps).resolveComponentFactory(a),this.componentTypes.push(Y.componentType);const ze=function S7(t){return t.isBoundToModule}(Y)?void 0:this._injector.get(Xd),zt=Y.create(p,[],o||Y.selector,ze),hn=zt.location.nativeElement,fn=zt.injector.get(l_,null);return fn?.registerApplication(hn),zt.onDestroy(()=>{this.detachView(zt.hostView),Eh(this.components,zt),fn?.unregisterApplication(hn)}),this._loadComponent(zt),we(11,zt),zt})}tick(){this.zonelessEnabled||(this.dirtyFlags|=1),this._tick()}_tick(){we(12),null!==this.tracingSnapshot?this.tracingSnapshot.run(L1.CHANGE_DETECTION,this.tickImpl):this.tickImpl()}tickImpl=()=>{if(this._runningTick)throw new h.buA(101,!1);const a=(0,jt.Ht)(null);try{this._runningTick=!0,this.synchronize()}finally{this._runningTick=!1,this.tracingSnapshot?.dispose(),this.tracingSnapshot=null,(0,jt.Ht)(a),this.afterTick.next(),we(13)}};synchronize(){null===this._rendererFactory&&!this._injector.destroyed&&(this._rendererFactory=this._injector.get(xl,null,{optional:!0}));let a=0;for(;0!==this.dirtyFlags&&a++<10;)we(14),this.synchronizeOnce(),we(15)}synchronizeOnce(){16&this.dirtyFlags&&(this.dirtyFlags&=-17,this.rootEffectScheduler.flush());let a=!1;if(7&this.dirtyFlags){const o=!!(1&this.dirtyFlags);this.dirtyFlags&=-8,this.dirtyFlags|=8;for(let{_lView:p}of this.allViews)(o||(0,h.dMS)(p))&&(G2(p,o&&!this.zonelessEnabled?0:1),a=!0);if(this.dirtyFlags&=-5,this.syncDirtyFlagsWithViews(),23&this.dirtyFlags)return}a||(this._rendererFactory?.begin?.(),this._rendererFactory?.end?.()),8&this.dirtyFlags&&(this.dirtyFlags&=-9,this.afterRenderManager.execute()),this.syncDirtyFlagsWithViews()}syncDirtyFlagsWithViews(){this.allViews.some(({_lView:a})=>(0,h.dMS)(a))?this.dirtyFlags|=2:this.dirtyFlags&=-8}attachView(a){const o=a;this._views.push(o),o.attachToAppRef(this)}detachView(a){const o=a;Eh(this._views,o),o.detachFromAppRef()}_loadComponent(a){this.attachView(a.hostView);try{this.tick()}catch(p){this.internalErrorHandler(p)}this.components.push(a),this._injector.get(m_,[]).forEach(p=>p(a))}ngOnDestroy(){if(!this._destroyed)try{this._destroyListeners.forEach(a=>a()),this._views.slice().forEach(a=>a.destroy())}finally{this._destroyed=!0,this._views=[],this._destroyListeners=[]}}onDestroy(a){return this._destroyListeners.push(a),()=>Eh(this._destroyListeners,a)}destroy(){if(this._destroyed)throw new h.buA(406,!1);const a=this._injector;a.destroy&&!a.destroyed&&a.destroy()}get viewCount(){return this._views.length}static \u0275fac=function(o){return new(o||t)};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac,providedIn:"root"})}return t})();function Eh(t,n){const a=t.indexOf(n);a>-1&&t.splice(a,1)}function Vp(){let t,n;return{promise:new Promise((o,p)=>{t=o,n=p}),resolve:t,reject:n}}function Jm(t){const n=(0,h.OAn)(),a=(0,h.Mx4)();if(Xn(n,a),!__(0,n))return;const o=n[h.YEL];f4(0,Bl(n,a),t(()=>sd(0,n,a),o))}function Up(t){const n=(0,h.OAn)(),a=n[h.YEL],o=(0,h.Mx4)(),M=yo(n[h.eDl],o);M.loadingState===Ur.NOT_STARTED&&f4(1,Bl(n,o),t(()=>Mh(M,n,o),a))}function g_(t,n,a){const o=n[h.YEL],p=Bl(n,a),M=p[6];f4(2,p,t(()=>x0(o,M),o))}function Mh(t,n,a){Gp(t,n,a)}function Gp(t,n,a){const o=n[h.YEL],p=n[h.eDl];if(t.loadingState!==Ur.NOT_STARTED)return t.loadingPromise??Promise.resolve();const M=Bl(n,a),k=function Ip(t,n){return(0,h.XRZ)(t,n.primaryTmplIndex+h.Yw1)}(p,t);t.loadingState=Ur.IN_PROGRESS,vh(1,M);let z=t.dependencyResolverFn;const Y=o.get(h.u5s).add();return z?(t.loadingPromise=Promise.allSettled(z()).then(ze=>{let it=!1;const zt=[],hn=[];for(const fn of ze){if("fulfilled"!==fn.status){it=!0;break}{const qn=fn.value,Si=(0,h.xUg)(qn)||(0,h.HaV)(qn);if(Si)zt.push(Si);else{const Xi=(0,h.oyA)(qn);Xi&&hn.push(Xi)}}}if(it){if(t.loadingState=Ur.FAILED,null===t.errorTmplIndex){const qn=new h.buA(-750,!1);B1(n,qn)}}else{t.loadingState=Ur.COMPLETE;const fn=k.tView;if(zt.length>0){fn.directiveRegistry=Ym(fn.directiveRegistry,zt);const qn=zt.map(Xi=>Xi.type),Si=(0,h.jXY)(!1,...qn);t.providers=Si}hn.length>0&&(fn.pipeRegistry=Ym(fn.pipeRegistry,hn))}}),t.loadingPromise.finally(()=>{t.loadingPromise=null,Y()})):(t.loadingPromise=Promise.resolve().then(()=>{t.loadingPromise=null,t.loadingState=Ur.COMPLETE,Y()}),t.loadingPromise)}function __(t,n){return n[h.YEL].get(ue,null,{optional:!0})?.behavior!==wp.Manual}function sd(t,n,a){const o=n[h.eDl],p=n[a.index];if(!__(0,n))return;const M=Bl(n,a),k=yo(o,a);switch(Xm(M),k.loadingState){case Ur.NOT_STARTED:sn(Is.Loading,a,p),Gp(k,n,a),k.loadingState===Ur.IN_PROGRESS&&Vi(k,a,p);break;case Ur.IN_PROGRESS:sn(Is.Loading,a,p),Vi(k,a,p);break;case Ur.COMPLETE:sn(Is.Complete,a,p);break;case Ur.FAILED:sn(Is.Error,a,p)}}function x0(t,n,a){return jp.apply(this,arguments)}function jp(){return(jp=(0,Qn.A)(function*(t,n,a){const o=t.get(wo);if(o.hydrating.has(n))return;const{parentBlockPromise:M,hydrationQueue:k}=function _1(t,n){const a=n.get(wo),p=n.get(us).get("__nghDeferData__",{});let M=!1,k=t,z=null;const Y=[];for(;!M&&k;){M=a.has(k);const ze=a.hydrating.get(k);if(null===z&&null!=ze){z=ze.promise;break}Y.unshift(k),k=p[k].p}return{parentBlockPromise:z,hydrationQueue:Y}}(n,t);if(0===k.length)return;null!==M&&k.shift(),function y_(t,n){for(let a of n)t.hydrating.set(a,Vp())}(o,k),null!==M&&(yield M);const z=k[0];o.has(z)?yield Hp(t,k,a):o.awaitParentBlock(z,(0,Qn.A)(function*(){return yield Hp(t,k,a)}))})).apply(this,arguments)}function Hp(t,n,a){return Wp.apply(this,arguments)}function Wp(){return(Wp=(0,Qn.A)(function*(t,n,a){const o=t.get(wo),p=o.hydrating,M=t.get(h.rev),k=M.add();for(let Y=0;Y-1?a.get(n[o]):null;p&&Oe(p.lContainer)}function v_(t,n){const a=n.hydrating;for(const o in t)a.get(o)?.reject();n.cleanup(t)}function w7(t){return new Promise(n=>T2(n,{injector:t}))}function A7(t){return qm.apply(this,arguments)}function qm(){return(qm=(0,Qn.A)(function*(t){const{tNode:n,lView:a}=t,o=Bl(a,n);return new Promise(p=>{(function L7(t,n){Array.isArray(t[8])||(t[8]=[]),t[8].push(n)})(o,p),sd(0,a,n)})})).apply(this,arguments)}function $r(t,n,a){return 0===t?C_(n,a):2!==t||!C_(n,a)}function C_(t,n){const a=t[h.YEL],o=yo(t[h.eDl],n),p=oa(a),M=function b_(t){return null!=t&&!(1&~t)}(o.flags),z=null!==Bl(t,n)[6];return!(M&&z&&p)}function Qd(t,n){const a=yo(t,n);return a.hydrateTriggers??=new Map}function Kp(t,n){const a=(0,h.OAn)();if(cr(a,(0,h.xbp)(),n)){const p=(0,h.klJ)(),M=(0,h.CpD)();if(Id(M,p,a,t,n))(0,h.Qs1)(M)&&N2(a,M.index);else{const z=(0,h.d31)(M,a);wd(a[h.GpT],z,null,M.value,t,n,null)}}return Kp}function Yp(t,n,a,o){const p=(0,h.OAn)();return cr(p,(0,h.xbp)(),n)&&((0,h.klJ)(),function u3(t,n,a,o,p,M){const k=(0,h.d31)(t,n);wd(n[h.GpT],k,M,t.value,a,o,p)}((0,h.CpD)(),p,t,n,a,o)),Yp}const Y7=new h.nKC("",{providedIn:"root",factory:()=>!1}),Q7=new h.nKC("",{providedIn:"root",factory:()=>I_}),I_=4e3,$d=typeof document<"u"&&"function"==typeof document?.documentElement?.getAnimations;function ef(t){return t[h.YEL].get(Y7,!1)}function Qp(t){const n=g4.get(t);if(n){for(const a of n.cleanupFns)a();g4.delete(t)}E0.delete(t)}const O_=()=>{},g4=new WeakMap,E0=new WeakMap,_4=new WeakMap;function $p(t,n){const a=_4.get(t);if(a&&a.length>0){const o=a.findIndex(p=>p===n);o>-1&&a.splice(o,1)}0===a?.length&&_4.delete(t)}function Th(t,n){const a=_4.get(t)?.shift(),o=n[h.rQE];if(o){const M=Dd(t.index,o)?.previousSibling;a&&M&&a===M&&a.dispatchEvent(new CustomEvent("animationend",{detail:{cancel:!0}}))}}function R_(t,n){_4.has(t)?_4.get(t)?.push(n):_4.set(t,[n])}function v4(t){const n=t[h.Isx]??={};return n.enter??=new Map}function M0(t){const n=t[h.Isx]??={};return n.leave??=new Map}function P_(t){const n="function"==typeof t?t():t;let a=Array.isArray(n)?n:null;return"string"==typeof n&&(a=n.trim().split(/\s+/).filter(o=>o)),a}function F_(t,n){const a=E0.get(n);return void 0===a||n===t.target&&(void 0!==a.animationName&&t.animationName===a.animationName||void 0!==a.propertyName&&t.propertyName===a.propertyName)}function tf(t,n,a){const o=t.get(n.index)??{animateFns:[]};o.animateFns.push(a),t.set(n.index,o)}function nf(t,n){if(t)for(const a of t)a();for(const a of n)a()}function Zp(t,n){const a=M0(t).get(n.index);a&&(a.resolvers=void 0)}function Dh(t,n,a,o,p){$p(n,a),nf(o,p),Zp(t,n)}class rv{destroy(n){}updateValue(n,a){}swap(n,a){const o=Math.min(n,a),p=Math.max(n,a),M=this.detach(p);if(p-o>1){const k=this.detach(o);this.attach(o,M),this.attach(p,k)}else this.attach(o,M)}move(n,a){this.attach(a,this.detach(n))}}function qp(t,n,a,o,p){return t===a&&Object.is(n,o)?1:Object.is(p(t,n),p(a,o))?-1:0}function sf(t,n,a,o){return!(void 0===n||!n.has(o)||(t.attach(a,n.get(o)),n.delete(o),0))}function N_(t,n,a,o,p){if(sf(t,n,o,a(o,p)))t.updateValue(o,p);else{const M=t.create(o,p);t.attach(o,M)}}function B_(t,n,a,o){const p=new Set;for(let M=n;M<=a;M++)p.add(o(M,t.at(M)));return p}class e6{kvMap=new Map;_vMap=void 0;has(n){return this.kvMap.has(n)}delete(n){if(!this.has(n))return!1;const a=this.kvMap.get(n);return void 0!==this._vMap&&this._vMap.has(a)?(this.kvMap.set(n,this._vMap.get(a)),this._vMap.delete(a)):this.kvMap.delete(n),!0}get(n){return this.kvMap.get(n)}set(n,a){if(this.kvMap.has(n)){let o=this.kvMap.get(n);void 0===this._vMap&&(this._vMap=new Map);const p=this._vMap;for(;p.has(o);)o=p.get(o);p.set(o,a)}else this.kvMap.set(n,a)}forEach(n){for(let[a,o]of this.kvMap)if(n(o,a),void 0!==this._vMap){const p=this._vMap;for(;p.has(o);)o=p.get(o),n(o,a)}}}function z_(t,n,a,o,p,M,k,z){Yr("NgControlFlow");const Y=(0,h.OAn)(),ze=(0,h.klJ)();return Kd(Y,ze,t,n,a,o,p,(0,h.db4)(ze.consts,M),256,k,z),rf}function rf(t,n,a,o,p,M,k,z){Yr("NgControlFlow");const Y=(0,h.OAn)(),ze=(0,h.klJ)();return Kd(Y,ze,t,n,a,o,p,(0,h.db4)(ze.consts,M),512,k,z),rf}function V_(t,n){Yr("NgControlFlow");const a=(0,h.OAn)(),o=(0,h.xbp)(),p=a[o]!==qa?a[o]:-1,M=-1!==p?of(a,h.Yw1+p):void 0;if(cr(a,o,t)){const z=(0,jt.Ht)(null);try{if(void 0!==M&&W2(M,0),-1!==t){const Y=h.Yw1+t,ze=of(a,Y),it=t6(a[h.eDl],Y),zt=null;Bc(ze,cc(a,it,n,{dehydratedView:zt}),0,Nc(it,zt))}}finally{(0,jt.Ht)(z)}}else if(void 0!==M){const z=Nu(M,0);void 0!==z&&(z[h.SKP]=n)}}class U_{lContainer;$implicit;$index;constructor(n,a,o){this.lContainer=n,this.$implicit=a,this.$index=o}get $count(){return this.lContainer.length-h.Y20}}function G_(t,n){return n}class cv{hasEmptyBlock;trackByFn;liveCollection;constructor(n,a,o){this.hasEmptyBlock=n,this.trackByFn=a,this.liveCollection=o}}function j_(t,n,a,o,p,M,k,z,Y,ze,it,zt,hn){Yr("NgControlFlow");const fn=(0,h.OAn)(),qn=(0,h.klJ)(),Si=void 0!==Y,Xi=(0,h.OAn)(),na=z?k.bind(Xi[h.b5C][h.SKP]):k,Di=new cv(Si,na);Xi[h.Yw1+t]=Di,Kd(fn,qn,t+1,n,a,o,p,(0,h.db4)(qn.consts,M),256),Si&&Kd(fn,qn,t+2,Y,ze,it,zt,(0,h.db4)(qn.consts,hn),512)}class H_ extends rv{lContainer;hostLView;templateTNode;operationsCounter=void 0;needsIndexUpdate=!1;constructor(n,a,o){super(),this.lContainer=n,this.hostLView=a,this.templateTNode=o}get length(){return this.lContainer.length-h.Y20}at(n){return this.getLView(n)[h.SKP].$implicit}attach(n,a){const o=a[h.tcA];this.needsIndexUpdate||=n!==this.length,Bc(this.lContainer,a,n,Nc(this.templateTNode,o)),function dv(t,n){if(t.length<=h.Y20)return;const o=t[h.Y20+n],p=o?o[h.Isx]:void 0;o&&p&&p.detachedLeaveAnimationFns&&p.detachedLeaveAnimationFns.length>0&&(function $h(t,n){const a=t.get(R1);if(n.detachedLeaveAnimationFns){for(const o of n.detachedLeaveAnimationFns)a.queue.delete(o);n.detachedLeaveAnimationFns=void 0}}(o[h.YEL],p),bl.delete(o),p.detachedLeaveAnimationFns=void 0)}(this.lContainer,n)}detach(n){return this.needsIndexUpdate||=n!==this.length-1,function uv(t,n){if(t.length<=h.Y20)return;const o=t[h.Y20+n],p=o?o[h.Isx]:void 0;p&&p.leave&&p.leave.size>0&&(p.detachedLeaveAnimationFns=[])}(this.lContainer,n),function hv(t,n){return V1(t,n)}(this.lContainer,n)}create(n,a){const p=cc(this.hostLView,this.templateTNode,new U_(this.lContainer,a,n),{dehydratedView:null});return this.operationsCounter?.recordCreate(),p}destroy(n){Td(n[h.eDl],n),this.operationsCounter?.recordDestroy()}updateValue(n,a){this.getLView(n)[h.SKP].$implicit=a}reset(){this.needsIndexUpdate=!1,this.operationsCounter?.reset()}updateIndexes(){if(this.needsIndexUpdate)for(let n=0;n{t.destroy(Y)})}(Y,t,M.trackByFn),Y.updateIndexes(),M.hasEmptyBlock){const ze=(0,h.xbp)(),it=0===Y.length;if(cr(o,ze,it)){const zt=a+2,hn=of(o,zt);if(it){const fn=t6(p,zt),qn=null;Bc(hn,cc(o,fn,void 0,{dehydratedView:qn}),0,Nc(fn,qn))}else p.firstUpdatePass&&E(hn),W2(hn,0)}}}finally{(0,jt.Ht)(n)}}function of(t,n){return t[n]}function t6(t,n){return(0,h.XRZ)(t,n)}function lf(t,n,a){const o=(0,h.OAn)();return cr(o,(0,h.xbp)(),n)&&((0,h.klJ)(),P2((0,h.CpD)(),o,t,n,o[h.GpT],a)),lf}function n6(t,n,a,o,p){Id(n,t,a,p?"class":"style",o)}function Ih(t,n,a,o){const p=(0,h.OAn)(),M=p[h.eDl],k=t+h.Yw1,z=M.firstCreatePass?r0(k,p,2,n,z2,(0,h.ckz)(),a,o):M.data[k];if(Ad(z,p,t,n,s6),(0,h.yoD)(z)){const Y=p[h.eDl];R2(Y,p,z),Wa(Y,z,p)}return null!=o&&N1(p,z),Ih}function cf(){const t=(0,h.klJ)(),a=Ld((0,h.Mx4)());return t.firstCreatePass&&Q3(t,a),(0,h.UhH)(a)&&(0,h.krE)(),(0,h.N79)(),null!=a.classesWithoutHost&&function Fn(t){return!!(8&t.flags)}(a)&&n6(t,a,(0,h.OAn)(),a.classesWithoutHost,!0),null!=a.stylesWithoutHost&&function ci(t){return!!(16&t.flags)}(a)&&n6(t,a,(0,h.OAn)(),a.stylesWithoutHost,!1),cf}function i6(t,n,a,o){return Ih(t,n,a,o),cf(),i6}function df(t,n,a,o){const p=(0,h.OAn)(),M=p[h.eDl],k=t+h.Yw1,z=M.firstCreatePass?$3(k,M,2,n,a,o):M.data[k];return Ad(z,p,t,n,s6),null!=o&&N1(p,z),df}function y4(){const n=Ld((0,h.Mx4)());return(0,h.UhH)(n)&&(0,h.krE)(),(0,h.N79)(),y4}function a6(t,n,a,o){return df(t,n,a,o),y4(),a6}let s6=(t,n,a,o,p)=>((0,h.m7n)(!0),hd(n[h.GpT],o,(0,h.UaU)()));function uf(t,n,a){const o=(0,h.OAn)(),p=o[h.eDl],M=t+h.Yw1,k=p.firstCreatePass?r0(M,o,8,"ng-container",z2,(0,h.ckz)(),n,a):p.data[M];if(Ad(k,o,t,"ng-container",o6),(0,h.yoD)(k)){const z=o[h.eDl];R2(z,o,k),Wa(z,k,o)}return null!=a&&N1(o,k),uf}function b4(){const t=(0,h.klJ)(),a=Ld((0,h.Mx4)());return t.firstCreatePass&&Q3(t,a),b4}function r6(t,n,a){return uf(t,n,a),b4(),r6}function hf(t,n,a){const o=(0,h.OAn)(),p=o[h.eDl],M=t+h.Yw1,k=p.firstCreatePass?$3(M,p,8,"ng-container",n,a):p.data[M];return Ad(k,o,t,"ng-container",o6),null!=a&&N1(o,k),hf}function K_(){return Ld((0,h.Mx4)()),b4}let o6=(t,n,a,o,p)=>((0,h.m7n)(!0),c2(n[h.GpT],""));function Q_(){return(0,h.OAn)()}function mf(t,n,a){const o=(0,h.OAn)();return cr(o,(0,h.xbp)(),n)&&((0,h.klJ)(),F2((0,h.CpD)(),o,t,n,o[h.GpT],a)),mf}const ff=void 0;var gv=["en",[["a","p"],["AM","PM"]],[["AM","PM"]],[["S","M","T","W","T","F","S"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Su","Mo","Tu","We","Th","Fr","Sa"]],ff,[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],["January","February","March","April","May","June","July","August","September","October","November","December"]],ff,[["B","A"],["BC","AD"],["Before Christ","Anno Domini"]],0,[6,0],["M/d/yy","MMM d, y","MMMM d, y","EEEE, MMMM d, y"],["h:mm a","h:mm:ss a","h:mm:ss a z","h:mm:ss a zzzz"],["{1}, {0}",ff,"{1} 'at' {0}",ff],[".",",",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0%","\xa4#,##0.00","#E0"],"USD","$","US Dollar",{},"ltr",function l6(t){const n=Math.floor(Math.abs(t)),a=t.toString().replace(/^[^.]*\.?/,"").length;return 1===n&&0===a?1:5}];let C4={};function c6(t){const n=function _v(t){return t.toLowerCase().replace(/_/g,"-")}(t);let a=Z_(n);if(a)return a;const o=n.split("-")[0];if(a=Z_(o),a)return a;if("en"===o)return gv;throw new h.buA(701,!1)}function d6(t){return c6(t)[S0.PluralCase]}function Z_(t){if(!(t in C4)){const n=h.laP.ng&&h.laP.ng.common&&h.laP.ng.common.locales&&h.laP.ng.common.locales[t];return void 0!==n&&(C4[t]=n),n}return C4[t]}var S0=function(t){return t[t.LocaleId=0]="LocaleId",t[t.DayPeriodsFormat=1]="DayPeriodsFormat",t[t.DayPeriodsStandalone=2]="DayPeriodsStandalone",t[t.DaysFormat=3]="DaysFormat",t[t.DaysStandalone=4]="DaysStandalone",t[t.MonthsFormat=5]="MonthsFormat",t[t.MonthsStandalone=6]="MonthsStandalone",t[t.Eras=7]="Eras",t[t.FirstDayOfWeek=8]="FirstDayOfWeek",t[t.WeekendRange=9]="WeekendRange",t[t.DateFormat=10]="DateFormat",t[t.TimeFormat=11]="TimeFormat",t[t.DateTimeFormat=12]="DateTimeFormat",t[t.NumberSymbols=13]="NumberSymbols",t[t.NumberFormats=14]="NumberFormats",t[t.CurrencyCode=15]="CurrencyCode",t[t.CurrencySymbol=16]="CurrencySymbol",t[t.CurrencyName=17]="CurrencyName",t[t.Currencies=18]="Currencies",t[t.Directionality=19]="Directionality",t[t.PluralCase=20]="PluralCase",t[t.ExtraData=21]="ExtraData",t}(S0||{});const J_=["zero","one","two","few","many"],u6="en-US",pf={marker:"element"},gf={marker:"ICU"};var Zl=function(t){return t[t.SHIFT=2]="SHIFT",t[t.APPEND_EAGERLY=1]="APPEND_EAGERLY",t[t.COMMENT=2]="COMMENT",t}(Zl||{});let q_=u6;function bv(t){"string"==typeof t&&(q_=t.toLowerCase().replace(/_/g,"-"))}let kh=0,x4=0;let T0=(t,n,a,o)=>((0,h.m7n)(!0),function e8(t,n,a){const o=t[h.GpT];switch(a){case Node.COMMENT_NODE:return c2(o,n);case Node.TEXT_NODE:return ud(o,n);case Node.ELEMENT_NODE:return hd(o,n,null)}}(t,a,o));function t8(t,n,a,o){const p=a[h.GpT];let k,M=null;for(let z=0;z>>1,a),null,null,fn,qn,null)}else switch(Y){case gf:const ze=n[++z],it=n[++z];null===a[it]&&wa(a[it]=T0(a,0,ze,Node.COMMENT_NODE),a);break;case pf:const zt=n[++z],hn=n[++z];null===a[hn]&&wa(a[hn]=T0(a,0,zt,Node.ELEMENT_NODE),a)}}}function h6(t,n,a,o,p){for(let M=0;M>>2;switch(3&it){case 1:const hn=a[++ze],fn=a[++ze],qn=t.data[zt];if("string"==typeof qn)wd(n[h.GpT],n[zt],null,qn,hn,Y,fn);else{const Xi=(0,h._px)();(0,h.ypq)(zt);try{P2(qn,n,hn,Y,n[h.GpT],fn)}finally{(0,h.ypq)(Xi)}}break;case 0:const Si=n[zt];null!==Si&&P0(n[h.GpT],Si,Y);break;case 2:Tv(t,zd(t,zt),n,Y);break;case 3:n8(t,zd(t,zt),o,n)}}}}else{const Y=a[M+1];if(Y>0&&!(3&~Y)){const it=zd(t,Y>>>2);n[it.currentCaseLViewIndex]<0&&n8(t,it,o,n)}}M+=z}}function n8(t,n,a,o){let p=o[n.currentCaseLViewIndex];if(null!==p){let M=kh;p<0&&(p=o[n.currentCaseLViewIndex]=~p,M=-1),h6(t,o,n.update[p],a,M)}}function Tv(t,n,a,o){const p=function Dv(t,n){let a=t.cases.indexOf(n);if(-1===a)switch(t.type){case 1:{const o=function vv(t,n){const a=d6(n)(parseInt(t,10)),o=J_[a];return void 0!==o?o:"other"}(n,function Cv(){return q_}());a=t.cases.indexOf(o),-1===a&&"other"!==o&&(a=t.cases.indexOf("other"));break}case 0:a=t.cases.indexOf("other")}return-1===a?null:a}(n,o);if(Z2(n,a)!==p&&(m6(t,n,a),a[n.currentCaseLViewIndex]=null===p?null:~p,null!==p)){const k=a[n.anchorIdx];k&&t8(t,n.create[p],a,k)}}function m6(t,n,a){let o=Z2(n,a);if(null!==o){const p=n.remove[o];for(let M=0;M0){const z=(0,h.vaC)(k,a);null!==z&&C1(a[h.GpT],z)}else m6(t,zd(t,~k),a)}}}const _f=/\ufffd(\d+):?\d*\ufffd/gi,Av=/({\s*\ufffd\d+:?\d*\ufffd\s*,\s*\S{6}\s*,[\s\S]*})/gi,a8=/\ufffd(\d+)\ufffd/,f6=/^\s*(\ufffd\d+:?\d*\ufffd)\s*,\s*(select|plural)\s*,/,p6=/\ufffd\/?\*(\d+:\d+)\ufffd/gi,Lv=/\ufffd(\/?[#*]\d+):?\d*\ufffd/gi,Iv=/\uE500/g;function r8(t,n,a,o,p,M,k){const z=T1(t,o,1,null);let Y=z<a.length&&a.push(Y)}return{type:o,mainBinding:p,cases:n,values:a}}function v6(t){if(!t)return[];let n=0;const a=[],o=[],p=/[{}]/g;let M;for(p.lastIndex=0;M=p.exec(t);){const z=M.index;if("}"==M[0]){if(a.pop(),0==a.length){const Y=t.substring(n,z);f6.test(Y)?o.push(Nv(Y)):o.push(Y),n=z+1}}else{if(0==a.length){const Y=t.substring(n,z);o.push(Y),n=z+1}a.push("{")}}const k=t.substring(n);return o.push(k),o}function Bv(t,n,a,o,p,M,k,z,Y){const ze=[],it=[],zt=[];a.cases.push(k),a.create.push(ze),a.remove.push(it),a.update.push(zt);const fn=ji(ds()).getInertBodyElement(z),qn=l2(fn)||fn;return qn?l8(t,n,a,o,p,ze,it,zt,qn,M,Y,0):0}function l8(t,n,a,o,p,M,k,z,Y,ze,it,zt){let hn=0,fn=Y.firstChild;for(;fn;){const qn=T1(n,o,1,null);switch(fn.nodeType){case Node.ELEMENT_NODE:const Si=fn,Xi=Si.tagName.toLowerCase();if(vc.hasOwnProperty(Xi)){y6(M,pf,Xi,ze,qn),n.data[qn]=Xi;const Jo=Si.attributes;for(let rd=0;rd>>Zl.SHIFT;let zt=t[it],hn=!1;null===zt&&(zt=t[it]=T0(t,0,n[M],(k&Zl.COMMENT)===Zl.COMMENT?Node.COMMENT_NODE:Node.TEXT_NODE),hn=(0,h.SX7)()),ze&&null!==a&&hn&&Cc(p,a,zt,o,!1)}})(p,Y.create,it,z&&8&z.type?p[z.index]:null),(0,h.xyx)(!0)}function _8(){(0,h.xyx)(!1)}function yf(t,n,a){const o=(0,h.OAn)(),p=(0,h.klJ)(),M=(0,h.Mx4)();return x6(p,o,o[h.GpT],M,t,n,a),yf}function bf(t,n,a){const o=(0,h.OAn)(),p=(0,h.klJ)(),M=(0,h.Mx4)();return(3&M.type||a)&&Zf(M,p,o,a,o[h.GpT],t,n,l0(M,o,n)),bf}function x6(t,n,a,o,p,M,k){let z=!0,Y=null;if((3&o.type||k)&&(Y??=l0(o,n,M),Zf(o,t,n,k,a,p,M,Y)&&(z=!1)),z){const ze=o.outputs?.[p],it=o.hostDirectiveOutputs?.[p];if(it&&it.length)for(let zt=0;zt>17&32767}function S6(t){return 2|t}function Jd(t){return(131068&t)>>2}function T6(t,n){return-131069&t|n<<2}function D6(t){return 1|t}function L8(t,n,a,o){const p=t[a+1],M=null===n;let k=o?Zd(p):Jd(p),z=!1;for(;0!==k&&(!1===z||M);){const ze=t[k+1];e9(t[k],n)&&(z=!0,t[k+1]=o?D6(ze):S6(ze)),k=o?Zd(ze):Jd(ze)}z&&(t[a+1]=o?S6(p):D6(p))}function e9(t,n){return null===t||null==n||(Array.isArray(t)?t[1]:t)===n||!(!Array.isArray(t)||"string"!=typeof n)&&(0,h.FRF)(t,n)>=0}const Bo={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function I8(t){return t.substring(Bo.key,Bo.keyEnd)}function k8(t){return t.substring(Bo.value,Bo.valueEnd)}function A6(t,n){const a=Bo.textEnd;return a===n?-1:(n=Bo.keyEnd=function L6(t,n,a){for(;n32;)n++;return n}(t,Bo.key=n,a),E4(t,n,a))}function O8(t,n){const a=Bo.textEnd;let o=Bo.key=E4(t,n,a);return a===o?-1:(o=Bo.keyEnd=function i9(t,n,a){let o;for(;n=65&&(-33&o)<=90||o>=48&&o<=57);)n++;return n}(t,o,a),o=P8(t,o,a),o=Bo.value=E4(t,o,a),o=Bo.valueEnd=function a9(t,n,a){let o=-1,p=-1,M=-1,k=n,z=k;for(;k32&&(z=k),M=p,p=o,o=-33&Y}return z}(t,o,a),P8(t,o,a))}function R8(t){Bo.key=0,Bo.keyEnd=0,Bo.value=0,Bo.valueEnd=0,Bo.textEnd=t.length}function E4(t,n,a){for(;n=0;a=O8(n,a))O6(t,I8(n),k8(n))}function B8(t){U8(d9,z8,t,!0)}function z8(t,n){for(let a=function t9(t){return R8(t),A6(t,E4(t,0,Bo.textEnd))}(n);a>=0;a=A6(n,a))(0,h.ezK)(t,I8(n),!0)}function V8(t,n,a,o){const p=(0,h.OAn)(),M=(0,h.klJ)(),k=(0,h.b$O)(2);M.firstUpdatePass&&j8(M,t,k,o),n!==qa&&cr(p,k,n)&&W8(M,M.data[(0,h._px)()],p,p[h.GpT],t,p[k+1]=function h9(t,n){return null==t||""===t||("string"==typeof n?t+=n:"object"==typeof t&&(t=(0,h.AsM)(st(t)))),t}(n,a),o,k)}function U8(t,n,a,o){const p=(0,h.klJ)(),M=(0,h.b$O)(2);p.firstUpdatePass&&j8(p,null,M,o);const k=(0,h.OAn)();if(a!==qa&&cr(k,M,a)){const z=p.data[(0,h._px)()];if(K8(z,o)&&!G8(p,M)){let Y=o?z.classesWithoutHost:z.stylesWithoutHost;null!==Y&&(a=(0,h.n$e)(Y,a||"")),n6(p,z,k,a,o)}else!function u9(t,n,a,o,p,M,k,z){p===qa&&(p=h.Mlv);let Y=0,ze=0,it=0=t.expandoStartIndex}function j8(t,n,a,o){const p=t.data;if(null===p[a+1]){const M=p[(0,h._px)()],k=G8(t,a);K8(M,o)&&null===n&&!k&&(n=!1),n=function H8(t,n,a,o){const p=(0,h.MT)(t);let M=o?n.residualClasses:n.residualStyles;if(null===p)0===(o?n.classBindings:n.styleBindings)&&(a=M4(a=k6(null,t,n,a,o),n.attrs,o),M=null);else{const k=n.directiveStylingLast;if(-1===k||t[k]!==p)if(a=k6(p,t,n,a,o),null===M){let Y=function r9(t,n,a){const o=a?n.classBindings:n.styleBindings;if(0!==Jd(o))return t[Zd(o)]}(t,n,o);void 0!==Y&&Array.isArray(Y)&&(Y=k6(null,t,n,Y[1],o),Y=M4(Y,n.attrs,o),function o9(t,n,a,o){t[Zd(a?n.classBindings:n.styleBindings)]=o}(t,n,o,Y))}else M=function l9(t,n,a){let o;const p=n.directiveEnd;for(let M=1+n.directiveStylingLast;M0)&&(ze=!0)):it=a,p)if(0!==Y){const hn=Zd(t[z+1]);t[o+1]=xf(hn,z),0!==hn&&(t[hn+1]=T6(t[hn+1],o)),t[z+1]=function Zv(t,n){return 131071&t|n<<17}(t[z+1],o)}else t[o+1]=xf(z,0),0!==z&&(t[z+1]=T6(t[z+1],o)),z=o;else t[o+1]=xf(Y,0),0===z?z=o:t[Y+1]=T6(t[Y+1],o),Y=o;ze&&(t[o+1]=S6(t[o+1])),L8(t,it,o,!0),L8(t,it,o,!1),function w6(t,n,a,o,p){const M=p?t.residualClasses:t.residualStyles;null!=M&&"string"==typeof n&&(0,h.FRF)(M,n)>=0&&(a[o+1]=D6(a[o+1]))}(n,it,t,o,M),k=xf(z,Y),M?n.classBindings=k:n.styleBindings=k}(p,M,n,a,k,o)}}function k6(t,n,a,o,p){let M=null;const k=a.directiveEnd;let z=a.directiveStylingLast;for(-1===z?z=a.directiveStart:z++;z0;){const Y=t[p],ze=Array.isArray(Y),it=ze?Y[1]:Y,zt=null===it;let hn=a[p+1];hn===qa&&(hn=zt?h.Mlv:void 0);let fn=zt?(0,h.K7h)(hn,o):it===o?hn:void 0;if(ze&&!Fh(fn)&&(fn=(0,h.K7h)(Y,o)),Fh(fn)&&(z=fn,k))return z;const qn=t[p+1];p=k?Zd(qn):Jd(qn)}if(null!==n){let Y=M?n.residualClasses:n.residualStyles;null!=Y&&(z=(0,h.K7h)(Y,o))}return z}function Fh(t){return void 0!==t}function K8(t,n){return!!(t.flags&(n?8:16))}function Nh(t,n=""){const a=(0,h.OAn)(),o=(0,h.klJ)(),p=t+h.Yw1,M=o.firstCreatePass?Tc(o,p,1,n,null):o.data[p],k=Y8(o,a,M,n,t);a[p]=k,(0,h.SX7)()&&yu(o,a,k,M),(0,h.iMd)(M,!1)}let Y8=(t,n,a,o,p)=>((0,h.m7n)(!0),ud(n[h.GpT],o));function R6(t,n){let a=!1,o=(0,h.c$7)();for(let M=1;M>20;if((0,h.Y3W)(t)||!t.multi){const fn=new an(ze,p,m1,null),qn=j6(Y,n,p?it:it+hn,zt);-1===qn?(Kn(en(z,k),M,Y),G6(M,t,n.length),n.push(Y),z.directiveStart++,z.directiveEnd++,p&&(z.providerIndexes+=1048576),a.push(fn),k.push(fn)):(a[qn]=fn,k[qn]=fn)}else{const fn=j6(Y,n,it+hn,zt),qn=j6(Y,n,it,it+hn),Xi=qn>=0&&a[qn];if(p&&!Xi||!p&&!(fn>=0&&a[fn])){Kn(en(z,k),M,Y);const na=function E9(t,n,a,o,p){const k=new an(t,a,m1,null);return k.multi=[],k.index=n,k.componentProviders=0,p5(k,p,o&&!a),k}(p?x9:H6,a.length,p,o,ze);!p&&Xi&&(a[qn].providerFactory=na),G6(M,t,n.length,0),n.push(Y),z.directiveStart++,z.directiveEnd++,p&&(z.providerIndexes+=1048576),a.push(na),k.push(na)}else G6(M,t,fn>-1?fn:qn,p5(a[p?qn:fn],ze,!p&&o));!p&&o&&Xi&&a[qn].componentProviders++}}}function G6(t,n,a,o){const p=(0,h.Y3W)(n),M=(0,h.MME)(n);if(p||M){const Y=(M?(0,h.nl4)(n.useClass):n).prototype.ngOnDestroy;if(Y){const ze=t.destroyHooks||(t.destroyHooks=[]);if(!p&&n.multi){const it=ze.indexOf(a);-1===it?ze.push(a,[o,Y]):ze[it+1].push(o,Y)}else ze.push(a,Y)}}}function p5(t,n,a){return a&&t.componentProviders++,t.multi.push(n)-1}function j6(t,n,a,o){for(let p=a;p{a.providersResolver=(o,p)=>function C9(t,n,a){const o=(0,h.klJ)();if(o.firstCreatePass){const p=(0,h.JlV)(t);U6(a,o.data,o.blueprint,p,!0),U6(n,o.data,o.blueprint,p,!1)}}(o,p?p(t):t,n)}}function Sf(t){if("function"==typeof t)return t;const n=(0,h.Bqz)(t);return n.some(h.Jzi)?()=>n.map(h.nl4).map(y5):n.map(y5)}function y5(t){return X1(t)?t.ngModule:t}function b5(t,n,a){const o=(0,h.gxQ)()+t,p=(0,h.OAn)();return p[o]===qa?Uc(p,o,a?n.call(a):n()):o0(p,o)}function Tf(t,n,a,o){return S5((0,h.OAn)(),(0,h.gxQ)(),t,n,a,o)}function C5(t,n,a,o,p){return T5((0,h.OAn)(),(0,h.gxQ)(),t,n,a,o,p)}function x5(t,n,a,o,p,M){return D5((0,h.OAn)(),(0,h.gxQ)(),t,n,a,o,p,M)}function zh(t,n){const a=t[n];return a===qa?void 0:a}function S5(t,n,a,o,p,M){const k=n+a;return cr(t,k,p)?Uc(t,k+1,M?o.call(M,p):o(p)):zh(t,k+1)}function T5(t,n,a,o,p,M,k){const z=n+a;return Q1(t,z,p,M)?Uc(t,z+2,k?o.call(k,p,M):o(p,M)):zh(t,z+2)}function D5(t,n,a,o,p,M,k,z){const Y=n+a;return J3(t,Y,p,M,k)?Uc(t,Y+3,z?o.call(z,p,M,k):o(p,M,k)):zh(t,Y+3)}function X6(t,n,a,o,p,M,k,z,Y){const ze=n+a;return uc(t,ze,p,M,k,z)?Uc(t,ze+4,Y?o.call(Y,p,M,k,z):o(p,M,k,z)):zh(t,ze+4)}function w5(t,n,a,o,p,M){let k=n+a,z=!1;for(let Y=0;Y=0;a--){const o=n[a];if(t===o.name)return o}}(n,a.pipeRegistry),a.data[p]=o,o.onDestroy&&(a.destroyHooks??=[]).push(p,o.onDestroy)):o=a.data[p];const M=o.factory||(o.factory=(0,h.wGu)(o.type,!0)),z=(0,h.a2B)(m1);try{const Y=Wn(!1),ze=M();return Wn(Y),(0,h.M_e)(a,(0,h.OAn)(),p,ze),ze}finally{(0,h.a2B)(z)}}function I5(t,n,a){const o=t+h.Yw1,p=(0,h.OAn)(),M=(0,h.Hh6)(p,o);return Vh(p,o)?S5(p,(0,h.gxQ)(),n,M.transform,a,M):M.transform(a)}function K6(t,n,a,o){const p=t+h.Yw1,M=(0,h.OAn)(),k=(0,h.Hh6)(M,p);return Vh(M,p)?T5(M,(0,h.gxQ)(),n,k.transform,a,o,k):k.transform(a,o)}function k5(t,n,a,o,p){const M=t+h.Yw1,k=(0,h.OAn)(),z=(0,h.Hh6)(k,M);return Vh(k,M)?D5(k,(0,h.gxQ)(),n,z.transform,a,o,p,z):z.transform(a,o,p)}function Vh(t,n){return t[h.eDl].data[n].pure}function Y6(t,n){return Od(t,n)}function Df(t,n,a,o,p){const M=p[h.eDl];if(M!==o.tView)for(let k=h.Yw1;k{if(o.encapsulation===Bi.ShadowDom){const qn=k.cloneNode(!1);k.replaceWith(qn),k=qn}const zt=q0(a),hn=M1(z,zt,M,S1(a),k,Y,null,null,null,null,null);(function P5(t,n,a,o){for(let p=h.Yw1;pR5(t,n,it))}(t,n,a,o,p)}function R5(t,n,a){try{a()}catch(o){if(null!==n&&o.message){const M=o.message+(o.stack?"\n"+o.stack:"");t?.hot?.send?.("angular:invalidate",{id:n,message:M,error:!0})}throw o}}const qd={\u0275\u0275animateEnter:function af(t){if(Yr("NgAnimateEnter"),!$d)return af;const n=(0,h.OAn)();if(ef(n))return af;const a=(0,h.Mx4)();return Th(a,n),tf(v4(n),a,()=>function ev(t,n,a){const o=(0,h.d31)(n,t),p=t[h.GpT],M=t[h.YEL].get(ms),k=P_(a),z=[],Y=it=>{if(it.target!==o)return;const zt=it instanceof AnimationEvent?"animationend":"transitionend";M.runOutsideAngular(()=>{p.listen(o,zt,ze)})},ze=it=>{it.target===o&&function tv(t,n,a){const o=g4.get(n);if(t.target===n&&o&&F_(t,n)){t.stopImmediatePropagation();for(const p of o.classList)a.removeClass(n,p);Qp(n)}}(it,o,p)};if(k&&k.length>0){M.runOutsideAngular(()=>{z.push(p.listen(o,"animationstart",Y)),z.push(p.listen(o,"transitionstart",Y))}),function Z7(t,n,a){const o=g4.get(t);if(o){for(const p of n)o.classList.push(p);for(const p of a)o.cleanupFns.push(p)}else g4.set(t,{classList:n,cleanupFns:a})}(o,k,z);for(const it of k)p.addClass(o,it);M.runOutsideAngular(()=>{requestAnimationFrame(()=>{if(iu(o,E0,$d),!E0.has(o)){for(const it of k)p.removeClass(o,it);Qp(o)}})})}}(n,a,t)),D2(n[h.YEL]),P1(n[h.YEL],v4(n)),af},\u0275\u0275animateEnterListener:function wh(t){if(Yr("NgAnimateEnter"),!$d)return wh;const n=(0,h.OAn)();if(ef(n))return wh;const a=(0,h.Mx4)();return Th(a,n),tf(v4(n),a,()=>function nv(t,n,a){const o=(0,h.d31)(n,t);a.call(t[h.SKP],{target:o,animationComplete:O_})}(n,a,t)),D2(n[h.YEL]),P1(n[h.YEL],v4(n)),wh},\u0275\u0275animateLeave:function Ah(t){if(Yr("NgAnimateLeave"),!$d)return Ah;const n=(0,h.OAn)();if(ef(n))return Ah;const o=(0,h.Mx4)();return Th(o,n),tf(M0(n),o,()=>function iv(t,n,a){const{promise:o,resolve:p}=Vp(),M=(0,h.d31)(n,t),k=t[h.GpT],z=t[h.YEL].get(ms);bl.add(t),(M0(t).get(n.index).resolvers??=[]).push(p);const Y=P_(a);return Y&&Y.length>0?function Lh(t,n,a,o,p,M){!function J7(t,n){if(!$d)return;const a=g4.get(t);if(a&&a.classList.length>0&&function q7(t,n){for(const a of n)if(t.classList.contains(a))return!0;return!1}(t,a.classList))for(const o of a.classList)n.removeClass(t,o);Qp(t)}(t,p);const k=[],z=M0(a).get(n.index)?.resolvers,Y=ze=>{if(ze.target===t&&(ze instanceof CustomEvent||F_(ze,t))){if(ze.stopImmediatePropagation(),E0.delete(t),$p(n,t),Array.isArray(n.projection))for(const it of o)p.removeClass(t,it);nf(z,k),Zp(a,n)}};M.runOutsideAngular(()=>{k.push(p.listen(t,"animationend",Y)),k.push(p.listen(t,"transitionend",Y))}),R_(n,t);for(const ze of o)p.addClass(t,ze);M.runOutsideAngular(()=>{requestAnimationFrame(()=>{iu(t,E0,$d),E0.has(t)||($p(n,t),nf(z,k),Zp(a,n))})})}(M,n,t,Y,k,z):p(),{promise:o,resolve:p}}(n,o,t)),D2(n[h.YEL]),Ah},\u0275\u0275animateLeaveListener:function Jp(t){if(Yr("NgAnimateLeave"),!$d)return Jp;const n=(0,h.OAn)(),a=(0,h.Mx4)();return Th(a,n),bl.add(n),tf(M0(n),a,()=>function av(t,n,a){const{promise:o,resolve:p}=Vp(),M=(0,h.d31)(n,t),k=[],z=t[h.GpT],Y=ef(t),ze=t[h.YEL].get(ms),it=t[h.YEL].get(Q7);(M0(t).get(n.index).resolvers??=[]).push(p);const zt=M0(t).get(n.index)?.resolvers;if(Y)Dh(t,n,M,zt,k);else{const hn=setTimeout(()=>Dh(t,n,M,zt,k),it),fn={target:M,animationComplete:()=>{Dh(t,n,M,zt,k),clearTimeout(hn)}};R_(n,M),ze.runOutsideAngular(()=>{k.push(z.listen(M,"animationend",()=>{Dh(t,n,M,zt,k),clearTimeout(hn)},{once:!0}))}),a.call(t[h.SKP],fn)}return{promise:o,resolve:p}}(n,a,t)),D2(n[h.YEL]),Jp},\u0275\u0275attribute:Yp,\u0275\u0275defineComponent:pp,\u0275\u0275defineDirective:Bm,\u0275\u0275defineInjectable:h.jDH,\u0275\u0275defineInjector:h.G2t,\u0275\u0275defineNgModule:_p,\u0275\u0275definePipe:zm,\u0275\u0275directiveInject:m1,\u0275\u0275getInheritedFactory:Ze,\u0275\u0275inject:h.KVO,\u0275\u0275injectAttribute:_a,\u0275\u0275invalidFactory:ho,\u0275\u0275invalidFactoryDep:h.dmw,\u0275\u0275templateRefExtractor:Y6,\u0275\u0275resetView:h.Njj,\u0275\u0275HostDirectivesFeature:Cp,\u0275\u0275NgOnChangesFeature:tn,\u0275\u0275ProvidersFeature:g5,\u0275\u0275CopyDefinitionFeature:function u4(t){let a,n=yp(t.type);a=(0,h.JlV)(t)?n.\u0275cmp:n.\u0275dir;const o=t;for(const p of Um)o[p]=a[p];if((0,h.JlV)(a))for(const p of g0)o[p]=a[p]},\u0275\u0275InheritDefinitionFeature:uh,\u0275\u0275ExternalStylesFeature:function _5(t){return n=>{t.length<1||(n.getExternalStyles=a=>t.map(p=>p+"?ngcomp"+(a?"="+encodeURIComponent(a):"")+"&e="+n.encapsulation))}},\u0275\u0275nextContext:C8,\u0275\u0275namespaceHTML:h.joV,\u0275\u0275namespaceMathML:h.By9,\u0275\u0275namespaceSVG:h.qSk,\u0275\u0275enableBindings:h.cSN,\u0275\u0275disableBindings:h.fuf,\u0275\u0275elementStart:Ih,\u0275\u0275elementEnd:cf,\u0275\u0275element:i6,\u0275\u0275elementContainerStart:uf,\u0275\u0275elementContainerEnd:b4,\u0275\u0275domElement:a6,\u0275\u0275domElementStart:df,\u0275\u0275domElementEnd:y4,\u0275\u0275domElementContainer:function Y_(t,n,a){return hf(t,n,a),K_(),Y_},\u0275\u0275domElementContainerStart:hf,\u0275\u0275domElementContainerEnd:K_,\u0275\u0275domTemplate:gh,\u0275\u0275domListener:bf,\u0275\u0275elementContainer:r6,\u0275\u0275pureFunction0:b5,\u0275\u0275pureFunction1:Tf,\u0275\u0275pureFunction2:C5,\u0275\u0275pureFunction3:x5,\u0275\u0275pureFunction4:function S9(t,n,a,o,p,M,k){return X6((0,h.OAn)(),(0,h.gxQ)(),t,n,a,o,p,M,k)},\u0275\u0275pureFunction5:function E5(t,n,a,o,p,M,k,z){const Y=(0,h.gxQ)()+t,ze=(0,h.OAn)(),it=uc(ze,Y,a,o,p,M);return cr(ze,Y+4,k)||it?Uc(ze,Y+5,z?n.call(z,a,o,p,M,k):n(a,o,p,M,k)):o0(ze,Y+5)},\u0275\u0275pureFunction6:function T9(t,n,a,o,p,M,k,z,Y){const ze=(0,h.gxQ)()+t,it=(0,h.OAn)(),zt=uc(it,ze,a,o,p,M);return Q1(it,ze+4,k,z)||zt?Uc(it,ze+6,Y?n.call(Y,a,o,p,M,k,z):n(a,o,p,M,k,z)):o0(it,ze+6)},\u0275\u0275pureFunction7:function M5(t,n,a,o,p,M,k,z,Y,ze){const it=(0,h.gxQ)()+t,zt=(0,h.OAn)();let hn=uc(zt,it,a,o,p,M);return J3(zt,it+4,k,z,Y)||hn?Uc(zt,it+7,ze?n.call(ze,a,o,p,M,k,z,Y):n(a,o,p,M,k,z,Y)):o0(zt,it+7)},\u0275\u0275pureFunction8:function D9(t,n,a,o,p,M,k,z,Y,ze,it){const zt=(0,h.gxQ)()+t,hn=(0,h.OAn)(),fn=uc(hn,zt,a,o,p,M);return uc(hn,zt+4,k,z,Y,ze)||fn?Uc(hn,zt+8,it?n.call(it,a,o,p,M,k,z,Y,ze):n(a,o,p,M,k,z,Y,ze)):o0(hn,zt+8)},\u0275\u0275pureFunctionV:function w9(t,n,a,o){return w5((0,h.OAn)(),(0,h.gxQ)(),t,n,a,o)},\u0275\u0275getCurrentView:Q_,\u0275\u0275restoreView:h.eBV,\u0275\u0275listener:yf,\u0275\u0275projection:E6,\u0275\u0275syntheticHostProperty:function $_(t,n,a){const o=(0,h.OAn)();if(cr(o,(0,h.xbp)(),n)){const M=(0,h.klJ)(),k=(0,h.CpD)();F2(k,o,t,n,Tu((0,h.MT)(M.data),k,o),a)}return $_},\u0275\u0275syntheticHostListener:function b8(t,n){const a=(0,h.Mx4)(),o=(0,h.OAn)(),p=(0,h.klJ)();return x6(p,o,Tu((0,h.MT)(p.data),a,o),a,t,n),b8},\u0275\u0275pipeBind1:I5,\u0275\u0275pipeBind2:K6,\u0275\u0275pipeBind3:k5,\u0275\u0275pipeBind4:function L9(t,n,a,o,p,M){const k=t+h.Yw1,z=(0,h.OAn)(),Y=(0,h.Hh6)(z,k);return Vh(z,k)?X6(z,(0,h.gxQ)(),n,Y.transform,a,o,p,M,Y):Y.transform(a,o,p,M)},\u0275\u0275pipeBindV:function O5(t,n,a){const o=t+h.Yw1,p=(0,h.OAn)(),M=(0,h.Hh6)(p,o);return Vh(p,o)?w5(p,(0,h.gxQ)(),n,M.transform,a,M):M.transform.apply(M,a)},\u0275\u0275projectionDef:E8,\u0275\u0275domProperty:mf,\u0275\u0275ariaProperty:Kp,\u0275\u0275property:lf,\u0275\u0275pipe:A5,\u0275\u0275queryRefresh:S8,\u0275\u0275queryAdvance:w8,\u0275\u0275viewQuery:M8,\u0275\u0275viewQuerySignal:Cf,\u0275\u0275loadQuery:T8,\u0275\u0275contentQuery:M6,\u0275\u0275contentQuerySignal:D8,\u0275\u0275reference:A8,\u0275\u0275classMap:B8,\u0275\u0275styleMap:function N8(t){U8(O6,s9,t,!1)},\u0275\u0275styleProp:I6,\u0275\u0275classProp:Ph,\u0275\u0275advance:t1,\u0275\u0275template:ph,\u0275\u0275conditional:V_,\u0275\u0275conditionalCreate:z_,\u0275\u0275conditionalBranchCreate:rf,\u0275\u0275defer:function E_(t,n,a,o,p,M,k,z,Y,ze){const it=(0,h.OAn)(),zt=(0,h.klJ)(),hn=t+h.Yw1,fn=Kd(it,zt,t,null,0,0),qn=it[h.YEL],Si=oa(qn);if(zt.firstCreatePass){Yr("NgDefer");const rd={primaryTmplIndex:n,loadingTmplIndex:o??null,placeholderTmplIndex:p??null,errorTmplIndex:M??null,placeholderBlockConfig:null,loadingBlockConfig:null,dependencyResolverFn:a??null,loadingState:Ur.NOT_STARTED,loadingPromise:null,providers:null,hydrateTriggers:null,debug:null,flags:ze??0};Y?.(zt,rd,z,k),function Lp(t,n,a){const o=y0(n);t.data[o]=a}(zt,hn,rd)}const Xi=it[hn];let na=null,Di=null;if(Xi[h.qFA]?.length>0){const rd=Xi[h.qFA][0].data;Di=rd.di??null,na=rd.s}const gs=[null,_0.Initial,null,null,null,null,Di,na,null,null];!function Kg(t,n,a){t[y0(n)]=a}(it,hn,gs);let Jo=null;null!==Di&&Si&&(Jo=qn.get(wo),Jo.add(Di,{lView:it,tNode:fn,lContainer:Xi}));const xr=()=>{Xm(gs),null!==Di&&Jo?.cleanup([Di])};f4(0,gs,()=>(0,h.DyX)(it,xr)),(0,h.ik5)(it,xr)},\u0275\u0275deferWhen:function M_(t){const n=(0,h.OAn)(),a=(0,h.CpD)();if($r(0,n,a)&&cr(n,(0,h.xbp)(),t)){const p=(0,jt.Ht)(null);try{const M=!!t,z=Bl(n,a)[1];!1===M&&z===_0.Initial?Xn(n,a):!0===M&&(z===_0.Initial||z===Is.Placeholder)&&sd(0,n,a)}finally{(0,jt.Ht)(p)}}},\u0275\u0275deferOnIdle:function N7(){$r(0,(0,h.OAn)(),(0,h.Mx4)())&&Jm(p4)},\u0275\u0275deferOnImmediate:function S_(){const t=(0,h.OAn)(),n=(0,h.Mx4)();$r(0,t,n)&&(null===yo(t[h.eDl],n).loadingTmplIndex&&Xn(t,n),sd(0,t,n))},\u0275\u0275deferOnTimer:function U7(t){$r(0,(0,h.OAn)(),(0,h.Mx4)())&&Jm(c(t))},\u0275\u0275deferOnHover:function w_(t,n){const a=(0,h.OAn)(),o=(0,h.Mx4)();$r(0,a,o)&&(Xn(a,o),td(a,o,t,n,Gi,()=>sd(0,a,o),0))},\u0275\u0275deferOnInteraction:function Sh(t,n){const a=(0,h.OAn)(),o=(0,h.Mx4)();$r(0,a,o)&&(Xn(a,o),td(a,o,t,n,ai,()=>sd(0,a,o),0))},\u0275\u0275deferOnViewport:function K7(t,n){const a=(0,h.OAn)(),o=(0,h.Mx4)();$r(0,a,o)&&(Xn(a,o),td(a,o,t,n,bh,()=>sd(0,a,o),0))},\u0275\u0275deferPrefetchWhen:function R7(t){const n=(0,h.OAn)(),a=(0,h.CpD)();if($r(1,n,a)&&cr(n,(0,h.xbp)(),t)){const p=(0,jt.Ht)(null);try{const M=!!t,z=yo(n[h.eDl],a);!0===M&&z.loadingState===Ur.NOT_STARTED&&Mh(z,n,a)}finally{(0,jt.Ht)(p)}}},\u0275\u0275deferPrefetchOnIdle:function B7(){$r(1,(0,h.OAn)(),(0,h.Mx4)())&&Up(p4)},\u0275\u0275deferPrefetchOnImmediate:function T_(){const t=(0,h.OAn)(),n=(0,h.Mx4)();if(!$r(1,t,n))return;const o=yo(t[h.eDl],n);o.loadingState===Ur.NOT_STARTED&&Gp(o,t,n)},\u0275\u0275deferPrefetchOnTimer:function D_(t){$r(1,(0,h.OAn)(),(0,h.Mx4)())&&Up(c(t))},\u0275\u0275deferPrefetchOnHover:function j7(t,n){const a=(0,h.OAn)(),o=(0,h.Mx4)();if(!$r(1,a,o))return;const M=yo(a[h.eDl],o);M.loadingState===Ur.NOT_STARTED&&td(a,o,t,n,Gi,()=>Mh(M,a,o),1)},\u0275\u0275deferPrefetchOnInteraction:function W7(t,n){const a=(0,h.OAn)(),o=(0,h.Mx4)();if(!$r(1,a,o))return;const M=yo(a[h.eDl],o);M.loadingState===Ur.NOT_STARTED&&td(a,o,t,n,ai,()=>Mh(M,a,o),1)},\u0275\u0275deferPrefetchOnViewport:function A_(t,n){const a=(0,h.OAn)(),o=(0,h.Mx4)();if(!$r(1,a,o))return;const M=yo(a[h.eDl],o);M.loadingState===Ur.NOT_STARTED&&td(a,o,t,n,bh,()=>Mh(M,a,o),1)},\u0275\u0275deferHydrateWhen:function P7(t){const n=(0,h.OAn)(),a=(0,h.CpD)();if(!$r(2,n,a))return;const o=(0,h.xbp)();if(Qd((0,h.klJ)(),a).set(6,null),cr(n,o,t)){const k=n[h.YEL],z=(0,jt.Ht)(null);try{1==!!t&&x0(k,Bl(n,a)[6])}finally{(0,jt.Ht)(z)}}},\u0275\u0275deferHydrateNever:function F7(){const t=(0,h.OAn)(),n=(0,h.Mx4)();$r(2,t,n)&&Qd((0,h.klJ)(),n).set(7,null)},\u0275\u0275deferHydrateOnIdle:function z7(){const t=(0,h.OAn)(),n=(0,h.Mx4)();$r(2,t,n)&&(Qd((0,h.klJ)(),n).set(0,null),g_(p4,t,n))},\u0275\u0275deferHydrateOnImmediate:function V7(){const t=(0,h.OAn)(),n=(0,h.Mx4)();$r(2,t,n)&&(Qd((0,h.klJ)(),n).set(1,null),x0(t[h.YEL],Bl(t,n)[6]))},\u0275\u0275deferHydrateOnTimer:function G7(t){const n=(0,h.OAn)(),a=(0,h.Mx4)();$r(2,n,a)&&(Qd((0,h.klJ)(),a).set(5,{delay:t}),g_(c(t),n,a))},\u0275\u0275deferHydrateOnHover:function H7(){const t=(0,h.OAn)(),n=(0,h.Mx4)();$r(2,t,n)&&Qd((0,h.klJ)(),n).set(4,null)},\u0275\u0275deferHydrateOnInteraction:function X7(){const t=(0,h.OAn)(),n=(0,h.Mx4)();$r(2,t,n)&&Qd((0,h.klJ)(),n).set(3,null)},\u0275\u0275deferHydrateOnViewport:function L_(){const t=(0,h.OAn)(),n=(0,h.Mx4)();$r(2,t,n)&&Qd((0,h.klJ)(),n).set(2,null)},\u0275\u0275deferEnableTimerScheduling:function ea(t,n,a,o){const p=t.consts;null!=a&&(n.placeholderBlockConfig=(0,h.db4)(p,a)),null!=o&&(n.loadingBlockConfig=(0,h.db4)(p,o)),null===pa&&(pa=_i)},\u0275\u0275repeater:W_,\u0275\u0275repeaterCreate:j_,\u0275\u0275repeaterTrackByIndex:function lv(t){return t},\u0275\u0275repeaterTrackByIdentity:G_,\u0275\u0275componentInstance:function sv(){return(0,h.OAn)()[h.b5C][h.SKP]},\u0275\u0275text:Nh,\u0275\u0275textInterpolate:F6,\u0275\u0275textInterpolate1:Bh,\u0275\u0275textInterpolate2:N6,\u0275\u0275textInterpolate3:B6,\u0275\u0275textInterpolate4:Ef,\u0275\u0275textInterpolate5:function n5(t,n,a,o,p,M,k,z,Y,ze,it){const zt=(0,h.OAn)(),hn=J8(zt,t,n,a,o,p,M,k,z,Y,ze,it);return hn!==qa&&g1(zt,(0,h._px)(),hn),n5},\u0275\u0275textInterpolate6:function i5(t,n,a,o,p,M,k,z,Y,ze,it,zt,hn){const fn=(0,h.OAn)(),qn=q8(fn,t,n,a,o,p,M,k,z,Y,ze,it,zt,hn);return qn!==qa&&g1(fn,(0,h._px)(),qn),i5},\u0275\u0275textInterpolate7:function a5(t,n,a,o,p,M,k,z,Y,ze,it,zt,hn,fn,qn){const Si=(0,h.OAn)(),Xi=e5(Si,t,n,a,o,p,M,k,z,Y,ze,it,zt,hn,fn,qn);return Xi!==qa&&g1(Si,(0,h._px)(),Xi),a5},\u0275\u0275textInterpolate8:function z6(t,n,a,o,p,M,k,z,Y,ze,it,zt,hn,fn,qn,Si,Xi){const na=(0,h.OAn)(),Di=t5(na,t,n,a,o,p,M,k,z,Y,ze,it,zt,hn,fn,qn,Si,Xi);return Di!==qa&&g1(na,(0,h._px)(),Di),z6},\u0275\u0275textInterpolateV:function s5(t){const n=(0,h.OAn)(),a=R6(n,t);return a!==qa&&g1(n,(0,h._px)(),a),s5},\u0275\u0275i18n:function C6(t,n,a){g8(t,n,a),_8()},\u0275\u0275i18nAttributes:function Kv(t,n){const a=(0,h.klJ)(),o=(0,h.db4)(a.consts,n);!function Rv(t,n,a){const o=(0,h.Mx4)(),p=o.index,M=[];if(t.firstCreatePass&&null===t.data[n]){for(let k=0;k0){const o=t.data[a];h6(t,n,Array.isArray(o)?o:o.update,(0,h.c$7)()-x4-1,kh)}kh=0,x4=0}((0,h.klJ)(),(0,h.OAn)(),t+h.Yw1)},\u0275\u0275i18nPostprocess:function Yv(t,n={}){return function p8(t,n={}){let a=t;if(m8.test(t)){const o={},p=[0];a=a.replace(Gv,(M,k,z)=>{const Y=k||z,ze=o[Y]||[];if(ze.length||(Y.split("|").forEach(Si=>{const Xi=Si.match(Xv),na=Xi?parseInt(Xi[1],10):0,Di=Wv.test(Si);ze.push([na,Di,Si])}),o[Y]=ze),!ze.length)throw new Error(`i18n postprocess: unmatched placeholder - ${Y}`);const it=p[p.length-1];let zt=0;for(let Si=0;Sin.hasOwnProperty(M)?`${p}${n[M]}${Y}`:o),a=a.replace(f8,(o,p)=>n.hasOwnProperty(p)?n[p]:o),a=a.replace(Hv,(o,p)=>{if(n.hasOwnProperty(p)){const M=n[p];if(!M.length)throw new Error(`i18n postprocess: unmatched ICU - ${o} with key: ${p}`);return M.shift()}return o})),a}(t,n)},\u0275\u0275resolveWindow:K0,\u0275\u0275resolveDocument:function N4(t){return t.ownerDocument},\u0275\u0275resolveBody:function _d(t){return t.ownerDocument.body},\u0275\u0275setComponentScope:function M9(t,n,a){const o=t.\u0275cmp;o.directiveDefs=d4(n,gp),o.pipeDefs=d4(a,h.oyA)},\u0275\u0275setNgModuleScope:function v5(t,n){return Pt(()=>{const a=(0,h.WbQ)(t);a.declarations=Sf(n.declarations||h.Mlv),a.imports=Sf(n.imports||h.Mlv),a.exports=Sf(n.exports||h.Mlv),n.bootstrap&&(a.bootstrap=Sf(n.bootstrap)),vo.registerNgModule(t,n)})},\u0275\u0275registerNgModuleType:dh,\u0275\u0275getComponentDepsFactory:function I9(t,n){return()=>{try{return vo.getComponentDependencies(t,n).dependencies}catch(a){throw console.error(`Computing dependencies in local compilation mode for the component "${t.name}" failed with the exception:`,a),a}}},\u0275setClassDebugInfo:function k9(t,n){const a=(0,h.xUg)(t);null!==a&&(a.debugInfo=n)},\u0275\u0275declareLet:function l5(t){const n=(0,h.klJ)(),a=(0,h.OAn)(),o=t+h.Yw1,p=Tc(n,o,128,null,null);return(0,h.iMd)(p,!1),(0,h.M_e)(n,a,o,o5),l5},\u0275\u0275storeLet:function c5(t){Yr("NgLet");const n=(0,h.klJ)(),a=(0,h.OAn)(),o=(0,h._px)();return(0,h.M_e)(n,a,o,t),t},\u0275\u0275readContextLet:function f9(t){const n=(0,h.VPL)(),a=(0,h.Hh6)(n,h.Yw1+t);if(a===o5)throw new h.buA(314,!1);return a},\u0275\u0275attachSourceLocations:function p9(t,n){const a=(0,h.klJ)(),o=(0,h.OAn)(),p=o[h.GpT],M="data-ng-source-location";for(const[k,z,Y,ze]of n){(0,h.XRZ)(a,k+h.Yw1);const zt=(0,h.vaC)(k+h.Yw1,o);zt.hasAttribute(M)||p.setAttribute(zt,M,`${t}@o:${z},l:${Y},c:${ze}`)}},\u0275\u0275interpolate:d5,\u0275\u0275interpolate1:u5,\u0275\u0275interpolate2:h5,\u0275\u0275interpolate3:function m5(t,n,a,o,p,M,k=""){return Z8((0,h.OAn)(),t,n,a,o,p,M,k)},\u0275\u0275interpolate4:function g9(t,n,a,o,p,M,k,z,Y=""){return P6((0,h.OAn)(),t,n,a,o,p,M,k,z,Y)},\u0275\u0275interpolate5:function _9(t,n,a,o,p,M,k,z,Y,ze,it=""){return J8((0,h.OAn)(),t,n,a,o,p,M,k,z,Y,ze,it)},\u0275\u0275interpolate6:function v9(t,n,a,o,p,M,k,z,Y,ze,it,zt,hn=""){return q8((0,h.OAn)(),t,n,a,o,p,M,k,z,Y,ze,it,zt,hn)},\u0275\u0275interpolate7:function y9(t,n,a,o,p,M,k,z,Y,ze,it,zt,hn,fn,qn=""){return e5((0,h.OAn)(),t,n,a,o,p,M,k,z,Y,ze,it,zt,hn,fn,qn)},\u0275\u0275interpolate8:function b9(t,n,a,o,p,M,k,z,Y,ze,it,zt,hn,fn,qn,Si,Xi=""){return t5((0,h.OAn)(),t,n,a,o,p,M,k,z,Y,ze,it,zt,hn,fn,qn,Si,Xi)},\u0275\u0275interpolateV:function f5(t){return R6((0,h.OAn)(),t)},\u0275\u0275sanitizeHtml:pd,\u0275\u0275sanitizeStyle:u2,\u0275\u0275sanitizeResourceUrl:h2,\u0275\u0275sanitizeScript:m2,\u0275\u0275validateAttribute:f2,\u0275\u0275sanitizeUrl:z0,\u0275\u0275sanitizeUrlOrResourceUrl:G0,\u0275\u0275trustConstantHtml:function L4(t){return Yl(t[0])},\u0275\u0275trustConstantResourceUrl:function V0(t){return function i2(t){return Yo()?.createScriptURL(t)||t}(t[0])},forwardRef:h.Rfq,resolveForwardRef:h.nl4,\u0275\u0275twoWayProperty:V6,\u0275\u0275twoWayBindingSet:r5,\u0275\u0275twoWayListener:Mf,\u0275\u0275replaceMetadata:function R9(t,n,a,o,p=null,M=null){const k=(0,h.xUg)(t);n.apply(null,[t,a,...o]);const{newDef:z,oldDef:Y}=function P9(t,n){const a={...t};return{newDef:Object.assign(t,n,{directiveDefs:a.directiveDefs,pipeDefs:a.pipeDefs,setInput:a.setInput,type:a.type}),oldDef:a}}(k,(0,h.xUg)(t));if(t[h.CQl]=z,Y.tView){const ze=function vr(){return is}().values();for(const it of ze)(0,h.EFk)(it)&&null===it[h.f7T]&&Df(p,M,z,Y,it)}},\u0275\u0275getReplaceMetadataURL:function O9(t,n,a){const o=`./@ng/component?c=${t}&t=${encodeURIComponent(n)}`;return new URL(o,a).href}};let e2=null;function z9(t){null!==e2&&(t.defaultEncapsulation!==e2.defaultEncapsulation||t.preserveWhitespaces!==e2.preserveWhitespaces)||(e2=t)}const Uh=[];function Lf(t){return X1(t)?t.ngModule:t}const iy=Ni("NgModule",t=>t,void 0,0,(t,n)=>function j9(t,n={}){(function H9(t,n){const o=(0,h.Bqz)(n.declarations||h.Mlv);let p=null;Object.defineProperty(t,h.hmW,{configurable:!0,get:()=>(null===p&&(p=N().compileNgModule(qd,`ng:///${t.name}/\u0275mod.js`,{type:t,bootstrap:(0,h.Bqz)(n.bootstrap||h.Mlv).map(h.nl4),declarations:o.map(h.nl4),imports:(0,h.Bqz)(n.imports||h.Mlv).map(h.nl4).map(Lf),exports:(0,h.Bqz)(n.exports||h.Mlv).map(h.nl4).map(Lf),schemas:n.schemas?(0,h.Bqz)(n.schemas):null,id:n.id||null}),p.schemas||(p.schemas=[])),p)});let M=null;Object.defineProperty(t,h.zSs,{get:()=>{if(null===M){const z=N();M=z.compileFactory(qd,`ng:///${t.name}/\u0275fac.js`,{name:t.name,type:t,deps:Ga(t),target:z.FactoryTarget.NgModule,typeArgumentCount:0})}return M},configurable:!1});let k=null;Object.defineProperty(t,h.ONQ,{get:()=>{if(null===k){const z={name:t.name,type:t,providers:n.providers||h.Mlv,imports:[(n.imports||h.Mlv).map(h.nl4),(n.exports||h.Mlv).map(h.nl4)]};k=N().compileInjector(qd,`ng:///${t.name}/\u0275inj.js`,z)}return k},configurable:!1})})(t,n),void 0!==n.id&&dh(t,n.id),function G9(t,n){Uh.push({moduleType:t,ngModule:n})}(t,n)}(t,n));class $5{ngModuleFactory;componentFactories;constructor(n,a){this.ngModuleFactory=n,this.componentFactories=a}}let ay=(()=>{class t{compileModuleSync(a){return new mp(a)}compileModuleAsync(a){return Promise.resolve(this.compileModuleSync(a))}compileModuleAndAllComponentsSync(a){const o=this.compileModuleSync(a),M=Ql((0,h.phH)(a).declarations).reduce((k,z)=>{const Y=(0,h.xUg)(z);return Y&&k.push(new c0(Y)),k},[]);return new $5(o,M)}compileModuleAndAllComponentsAsync(a){return Promise.resolve(this.compileModuleAndAllComponentsSync(a))}clearCache(){}clearCacheFor(a){}getModuleId(a){}static \u0275fac=function(o){return new(o||t)};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac,providedIn:"root"})}return t})();const sy=new h.nKC("");let ry=(()=>{class t{zone=(0,h.WQX)(ms);changeDetectionScheduler=(0,h.WQX)(h.hk6);applicationRef=(0,h.WQX)(Zm);applicationErrorHandler=(0,h.WQX)(h.ZTf);_onMicrotaskEmptySubscription;initialize(){this._onMicrotaskEmptySubscription||(this._onMicrotaskEmptySubscription=this.zone.onMicrotaskEmpty.subscribe({next:()=>{this.changeDetectionScheduler.runningTick||this.zone.run(()=>{try{this.applicationRef.dirtyFlags|=1,this.applicationRef._tick()}catch(a){this.applicationErrorHandler(a)}})}}))}ngOnDestroy(){this._onMicrotaskEmptySubscription?.unsubscribe()}static \u0275fac=function(o){return new(o||t)};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac,providedIn:"root"})}return t})();const kf=new h.nKC("",{factory:()=>!1});function Z5({ngZoneFactory:t,ignoreChangesOutsideZone:n,scheduleInRootZone:a}){return t??=()=>new ms({...tg(),scheduleInRootZone:a}),[{provide:ms,useFactory:t},{provide:h.Z63,multi:!0,useFactory:()=>{const o=(0,h.WQX)(ry,{optional:!0});return()=>o.initialize()}},{provide:h.Z63,multi:!0,useFactory:()=>{const o=(0,h.WQX)(ly);return()=>{o.initialize()}}},!0===n?{provide:h.Jy$,useValue:!0}:[],{provide:h.AQb,useValue:a??n1},{provide:h.ZTf,useFactory:()=>{const o=(0,h.WQX)(ms),p=(0,h.WQX)(h.uvJ);let M;return k=>{o.runOutsideAngular(()=>{p.destroyed&&!M?setTimeout(()=>{throw k}):(M??=p.get(h.zcH),M.handleError(k))})}}}]}function tg(t){return{enableLongStackTrace:!1,shouldCoalesceEventChangeDetection:t?.eventCoalescing??!1,shouldCoalesceRunChangeDetection:t?.runCoalescing??!1}}let ly=(()=>{class t{subscription=new wt.yU;initialized=!1;zone=(0,h.WQX)(ms);pendingTasks=(0,h.WQX)(h.rev);initialize(){if(this.initialized)return;this.initialized=!0;let a=null;!this.zone.isStable&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(a=this.pendingTasks.add()),this.zone.runOutsideAngular(()=>{this.subscription.add(this.zone.onStable.subscribe(()=>{ms.assertNotInAngularZone(),queueMicrotask(()=>{null!==a&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(this.pendingTasks.remove(a),a=null)})}))}),this.subscription.add(this.zone.onUnstable.subscribe(()=>{ms.assertInAngularZone(),a??=this.pendingTasks.add()}))}ngOnDestroy(){this.subscription.unsubscribe()}static \u0275fac=function(o){return new(o||t)};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac,providedIn:"root"})}return t})(),ag=(()=>{class t{applicationErrorHandler=(0,h.WQX)(h.ZTf);appRef=(0,h.WQX)(Zm);taskService=(0,h.WQX)(h.rev);ngZone=(0,h.WQX)(ms);zonelessEnabled=(0,h.WQX)(h.Evm);tracing=(0,h.WQX)(rc,{optional:!0});disableScheduling=(0,h.WQX)(h.Jy$,{optional:!0})??!1;zoneIsDefined=typeof Zone<"u"&&!!Zone.root.run;schedulerTickApplyArgs=[{data:{__scheduler_tick__:!0}}];subscriptions=new wt.yU;angularZoneId=this.zoneIsDefined?this.ngZone._inner?.get(xd):null;scheduleInRootZone=!this.zonelessEnabled&&this.zoneIsDefined&&((0,h.WQX)(h.AQb,{optional:!0})??!1);cancelScheduledCallback=null;useMicrotaskScheduler=!1;runningTick=!1;pendingRenderTaskId=null;constructor(){this.subscriptions.add(this.appRef.afterTick.subscribe(()=>{this.runningTick||this.cleanup()})),this.subscriptions.add(this.ngZone.onUnstable.subscribe(()=>{this.runningTick||this.cleanup()})),this.disableScheduling||=!this.zonelessEnabled&&(this.ngZone instanceof Sc||!this.zoneIsDefined)}notify(a){if(!this.zonelessEnabled&&5===a)return;let o=!1;switch(a){case 0:this.appRef.dirtyFlags|=2;break;case 3:case 2:case 4:case 5:case 1:this.appRef.dirtyFlags|=4;break;case 6:case 13:this.appRef.dirtyFlags|=2,o=!0;break;case 12:this.appRef.dirtyFlags|=16,o=!0;break;case 11:o=!0;break;default:this.appRef.dirtyFlags|=8}if(this.appRef.tracingSnapshot=this.tracing?.snapshot(this.appRef.tracingSnapshot)??null,!this.shouldScheduleTick(o))return;const p=this.useMicrotaskScheduler?C2:k1;this.pendingRenderTaskId=this.taskService.add(),this.cancelScheduledCallback=this.scheduleInRootZone?Zone.root.run(()=>p(()=>this.tick())):this.ngZone.runOutsideAngular(()=>p(()=>this.tick()))}shouldScheduleTick(a){return!(this.disableScheduling&&!a||this.appRef.destroyed||null!==this.pendingRenderTaskId||this.runningTick||this.appRef._runningTick||!this.zonelessEnabled&&this.zoneIsDefined&&Zone.current.get(xd+this.angularZoneId))}tick(){if(this.runningTick||this.appRef.destroyed)return;if(0===this.appRef.dirtyFlags)return void this.cleanup();!this.zonelessEnabled&&7&this.appRef.dirtyFlags&&(this.appRef.dirtyFlags|=1);const a=this.taskService.add();try{this.ngZone.run(()=>{this.runningTick=!0,this.appRef._tick()},void 0,this.schedulerTickApplyArgs)}catch(o){this.taskService.remove(a),this.applicationErrorHandler(o)}finally{this.cleanup()}this.useMicrotaskScheduler=!0,C2(()=>{this.useMicrotaskScheduler=!1,this.taskService.remove(a)})}ngOnDestroy(){this.subscriptions.unsubscribe(),this.cleanup()}cleanup(){if(this.runningTick=!1,this.cancelScheduledCallback?.(),this.cancelScheduledCallback=null,null!==this.pendingRenderTaskId){const a=this.pendingRenderTaskId;this.pendingRenderTaskId=null,this.taskService.remove(a)}}static \u0275fac=function(o){return new(o||t)};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac,providedIn:"root"})}return t})();const q5=new h.nKC("",{providedIn:"root",factory:()=>(0,h.WQX)(q5,{optional:!0,skipSelf:!0})||function cy(){return typeof $localize<"u"&&$localize.locale||u6}()}),dy=new h.nKC("",{providedIn:"root",factory:()=>"USD"})},9295(Zt,pe,l){"use strict";l.d(pe,{Zf:()=>Ce,EW:()=>W,QZ:()=>re,O8:()=>j}),l(467);var d=l(2615),v=l(8440);const u={...v.pL,consumerIsAlwaysLive:!0,consumerAllowSignalWrites:!0,dirty:!0,kind:"effect"};class Ce{destroyed=!1;listeners=null;errorHandler=(0,d.WQX)(d.zcH,{optional:!0});destroyRef=(0,d.WQX)(d.abz);constructor(){this.destroyRef.onDestroy(()=>{this.destroyed=!0,this.listeners=null})}subscribe($){if(this.destroyed)throw new d.buA(953,!1);return(this.listeners??=[]).push($),{unsubscribe:()=>{const Ke=this.listeners?.indexOf($);void 0!==Ke&&-1!==Ke&&this.listeners?.splice(Ke,1)}}}emit($){if(this.destroyed)return void console.warn((0,d.OsK)(953,!1));if(null===this.listeners)return;const Ke=(0,v.Ht)(null);try{for(const Vt of this.listeners)try{Vt($)}catch(St){this.errorHandler?.handleError(St)}}finally{(0,v.Ht)(Ke)}}}function j(H){return function f(H){const $=(0,v.Ht)(null);try{return H()}finally{(0,v.Ht)($)}}(H)}function W(H,$){return(0,v.KZ)(H,$?.equal)}class G{[v.bh];constructor($){this[v.bh]=$}destroy(){this[v.bh].destroy()}}function re(H,$){const Ke=$?.injector??(0,d.WQX)(d.zZn);let St,Vt=!0!==$?.manualCleanup?Ke.get(d.abz):null;const ot=Ke.get(d.r4V,null,{optional:!0}),nt=Ke.get(d.hk6);return null!==ot?(St=function ce(H,$,Ke){const Vt=Object.create(V);return Vt.view=H,Vt.zone=typeof Zone<"u"?Zone.current:null,Vt.notifier=$,Vt.fn=ne(Vt,Ke),H[d.tQN]??=new Set,H[d.tQN].add(Vt),Vt.consumerMarkedDirty(Vt),Vt}(ot.view,nt,H),Vt instanceof d.KXn&&Vt._lView===ot.view&&(Vt=null)):St=function be(H,$,Ke){const Vt=Object.create(Ee);return Vt.fn=ne(Vt,H),Vt.scheduler=$,Vt.notifier=Ke,Vt.zone=typeof Zone<"u"?Zone.current:null,Vt.scheduler.add(Vt),Vt.notifier.notify(12),Vt}(H,Ke.get(d.VML),nt),St.injector=Ke,null!==Vt&&(St.onDestroyFn=Vt.onDestroy(()=>St.destroy())),new G(St)}const xe={...u,cleanupFns:void 0,zone:null,onDestroyFn:d.lQ1,run(){const H=(0,d.cBl)(!1);try{!function L(H){if(H.dirty=!1,H.version>0&&!(0,v.si)(H))return;H.version++;const $=(0,v.Bg)(H);try{H.cleanup(),H.fn()}finally{(0,v.Wu)(H,$)}}(this)}finally{(0,d.cBl)(H)}},cleanup(){if(!this.cleanupFns?.length)return;const H=(0,v.Ht)(null);try{for(;this.cleanupFns.length;)this.cleanupFns.pop()()}finally{this.cleanupFns=[],(0,v.Ht)(H)}}},Ee={...xe,consumerMarkedDirty(){this.scheduler.schedule(this),this.notifier.notify(12)},destroy(){(0,v.XR)(this),this.onDestroyFn(),this.cleanup(),this.scheduler.remove(this)}},V={...xe,consumerMarkedDirty(){this.view[d.Wg1]|=8192,(0,d.blu)(this.view),this.notifier.notify(13)},destroy(){(0,v.XR)(this),this.onDestroyFn(),this.cleanup(),this.view[d.tQN]?.delete(this)}};function ne(H,$){return()=>{$(Ke=>(H.cleanupFns??=[]).push(Ke))}}Error,Error},2615(Zt,pe,l){"use strict";let i;function d(){return i}function v(K){const Ie=i;return i=K,Ie}l.d(pe,{JEi:()=>er,Isx:()=>Xs,EJG:()=>_r,Yrj:()=>rs,VVG:()=>Zr,Y20:()=>Hr,SKP:()=>qo,hk6:()=>gc,eVN:()=>Wr,b5C:()=>is,rQE:()=>Hs,X5O:()=>ls,qFA:()=>Za,qQL:()=>sa,abz:()=>va,tQN:()=>Pa,pcR:()=>qs,oMQ:()=>xs,Mlv:()=>Wn,MZA:()=>En,M0L:()=>Co,Z63:()=>ri,VML:()=>Oa,uvJ:()=>Ki,zcH:()=>Ls,Wg1:()=>Ka,Yw1:()=>wa,jgP:()=>jr,tcA:()=>Vo,ID:()=>Ui,YEL:()=>Jr,B9r:()=>Hn,GBX:()=>U,ZTf:()=>gi,nKC:()=>Qn,zZn:()=>$i,rJ1:()=>nr,nfM:()=>Fs,s6P:()=>Or,K29:()=>kr,CQl:()=>ke,p9y:()=>Me,zSs:()=>Z,ONQ:()=>Sn,hmW:()=>N,yAH:()=>Ft,KXn:()=>oa,oTH:()=>Pi,Czx:()=>vr,f7T:()=>Ps,wVl:()=>Ws,GYQ:()=>nc,u5s:()=>Ha,rev:()=>lo,Ds7:()=>Mr,e5P:()=>_a,Iaj:()=>yr,GpT:()=>Js,buA:()=>le,AQb:()=>ic,jNX:()=>ds,eDl:()=>Er,qlT:()=>js,bm_:()=>Rr,RxE:()=>C,r4V:()=>Kc,ok8:()=>Pe,Evm:()=>Yc,Jy$:()=>v1,laP:()=>j,EYC:()=>Mn,ng7:()=>ci,llW:()=>ia,gsJ:()=>Bn,GZS:()=>Ei,iYM:()=>$,PEr:()=>Ss,z7f:()=>Vt,LZP:()=>St,Xln:()=>Dt,yzR:()=>el,TWe:()=>Ml,LIA:()=>he,GWr:()=>F,pbo:()=>ve,bBq:()=>cs,Af3:()=>Zs,zQk:()=>tr,oZy:()=>Eo,tF7:()=>ot,ZFY:()=>we,cP4:()=>qr,MdC:()=>Ms,XvL:()=>ie,KET:()=>xa,Tkx:()=>zl,iw4:()=>lt,tdH:()=>Xl,pr_:()=>ht,IAh:()=>te,U45:()=>Re,WrV:()=>Xe,kNT:()=>nt,MI:()=>pl,biv:()=>Sl,ZQF:()=>Le,Cv0:()=>_e,W0r:()=>Ln,R2n:()=>mn,O8q:()=>On,VKj:()=>kt,Rom:()=>$e,z6V:()=>Un,n$e:()=>V,hjC:()=>It,Pz9:()=>wi,PQT:()=>se,VX4:()=>We,_Z$:()=>Je,N79:()=>Ul,xLP:()=>In,zuh:()=>vt,BI7:()=>Ri,U7d:()=>Ni,uXy:()=>kn,nZS:()=>vi,ihb:()=>vl,ID8:()=>al,gv8:()=>Nr,dwj:()=>xe,Bqz:()=>rn,OsK:()=>Ae,Rfq:()=>ne,c$7:()=>Il,gxQ:()=>oo,ckz:()=>Do,kLh:()=>re,xUg:()=>en,KdJ:()=>Vl,db4:()=>eo,VPL:()=>La,MT:()=>wo,Z9v:()=>pc,Ab:()=>Kt,w7Z:()=>od,Mx4:()=>et,veI:()=>Mt,HaV:()=>oi,Agf:()=>vn,znI:()=>so,wGu:()=>Fn,ebl:()=>cn,OAn:()=>X,_0$:()=>Al,UaU:()=>ct,vaC:()=>Go,d31:()=>gl,ZRn:()=>Tr,phH:()=>da,WbQ:()=>Ta,WB9:()=>Nn,d_l:()=>io,vNG:()=>Ys,oyA:()=>bn,_px:()=>Io,CpD:()=>Wl,XRZ:()=>jo,klJ:()=>de,Fje:()=>tl,b$O:()=>kl,SMZ:()=>G,WQX:()=>zi,MzJ:()=>At,jXY:()=>Fe,MME:()=>ni,JlV:()=>mt,Qs1:()=>He,srX:()=>Ne,vOT:()=>za,YWB:()=>ai,EPY:()=>Es,yoD:()=>q,P3H:()=>Ns,Jzi:()=>De,rFz:()=>as,JjR:()=>Xc,M6u:()=>bo,KtD:()=>Jl,muV:()=>gt,A0l:()=>Sr,q$2:()=>Ks,yP_:()=>ar,EFk:()=>ln,Hps:()=>Oo,UhH:()=>Ll,QuC:()=>Kn,Y3W:()=>nn,n$r:()=>tc,K7h:()=>fa,FRF:()=>ha,ezK:()=>ra,m7n:()=>$n,niQ:()=>jl,krE:()=>nl,bll:()=>Hl,Hh6:()=>mo,EmA:()=>yi,blu:()=>to,HAh:()=>fo,WfI:()=>ii,xbp:()=>ec,jvu:()=>Rl,lQ1:()=>Ti,BCV:()=>Wi,Rc9:()=>Ga,E6O:()=>Vn,DyX:()=>no,eFE:()=>qe,dMS:()=>Ho,HUe:()=>So,nl4:()=>J,N4e:()=>gr,XaM:()=>ee,Kw3:()=>mc,vQI:()=>fc,RZ9:()=>Fr,GA0:()=>Ao,iMd:()=>Tn,Pfq:()=>Gi,xyx:()=>po,a2B:()=>Tt,kcM:()=>gn,DFp:()=>Ue,P2g:()=>il,cBl:()=>ro,ypq:()=>ko,vPA:()=>yl,HO5:()=>Xr,M_e:()=>Tl,B22:()=>Dr,ik5:()=>wl,AsM:()=>Ee,PP7:()=>pn,$8:()=>Ke,$Hz:()=>on,zAe:()=>Uo,IvY:()=>mi,_gW:()=>_l,F1c:()=>us,ITl:()=>Dl,brz:()=>Ve,jRZ:()=>To,SX7:()=>Pn,jDH:()=>oe,G2t:()=>fe,fuf:()=>Wo,cSN:()=>ir,KVO:()=>bi,dmw:()=>Qi,joV:()=>yt,By9:()=>Ts,qSk:()=>sr,Njj:()=>me,eBV:()=>Q});const w=Symbol("NotFound");function O(K){return K===w||"\u0275NotFound"===K?.name}Error;var f=l(8440),u=l(4412),L=l(1985);class C{full;major;minor;patch;constructor(Ie){this.full=Ie;const Ut=Ie.split(".");this.major=Ut[0],this.minor=Ut[1],this.patch=Ut.slice(2).join(".")}}const Pe="https://angular.dev/best-practices/security#preventing-cross-site-scripting-xss";class le extends Error{code;constructor(Ie,Ut){super(Ae(Ie,Ut)),this.code=Ie}}function Ae(K,Ie){return`${function Ce(K){return`NG0${Math.abs(K)}`}(K)}${Ie?": "+Ie:""}`}const j=globalThis;function G(){return!1}function re(K){for(let Ie in K)if(K[Ie]===re)return Ie;throw Error("")}function xe(K,Ie){for(const Ut in Ie)Ie.hasOwnProperty(Ut)&&!K.hasOwnProperty(Ut)&&(K[Ut]=Ie[Ut])}function Ee(K){if("string"==typeof K)return K;if(Array.isArray(K))return`[${K.map(Ee).join(", ")}]`;if(null==K)return""+K;const Ie=K.overriddenName||K.name;if(Ie)return`${Ie}`;const Ut=K.toString();if(null==Ut)return""+Ut;const Gn=Ut.indexOf("\n");return Gn>=0?Ut.slice(0,Gn):Ut}function V(K,Ie){return K?Ie?`${K} ${Ie}`:K:Ie||""}const be=re({__forward_ref__:re});function ne(K){return K.__forward_ref__=ne,K.toString=function(){return Ee(this())},K}function J(K){return De(K)?K():K}function De(K){return"function"==typeof K&&K.hasOwnProperty(be)&&K.__forward_ref__===ne}function Re(K,Ie){"number"!=typeof K&&Ke(Ie,typeof K,"number","===")}function Xe(K,Ie,Ut){Re(K,"Expected a number"),function P(K,Ie,Ut){K<=Ie||Ke(Ut,K,Ie,"<=")}(K,Ut,"Expected number to be less than or equal to"),ve(K,Ie,"Expected number to be greater than or equal to")}function _e(K,Ie){"string"!=typeof K&&Ke(Ie,null===K?"null":typeof K,"string","===")}function he(K,Ie){"function"!=typeof K&&Ke(Ie,null===K?"null":typeof K,"function","===")}function Dt(K,Ie,Ut){K!=Ie&&Ke(Ut,K,Ie,"==")}function lt(K,Ie,Ut){K==Ie&&Ke(Ut,K,Ie,"!=")}function Le(K,Ie,Ut){K!==Ie&&Ke(Ut,K,Ie,"===")}function te(K,Ie,Ut){K===Ie&&Ke(Ut,K,Ie,"!==")}function ie(K,Ie,Ut){KIe||Ke(Ut,K,Ie,">")}function ve(K,Ie,Ut){K>=Ie||Ke(Ut,K,Ie,">=")}function $(K,Ie){null==K&&Ke(Ie,K,null,"!=")}function Ke(K,Ie,Ut,Gn){throw new Error(`ASSERTION ERROR: ${K}`+(null==Gn?"":` [Expected=> ${Ut} ${Gn} ${Ie} <=Actual]`))}function Vt(K){K instanceof Node||Ke(`The provided value must be an instance of a DOM Node but got ${Ee(K)}`)}function St(K){K instanceof Element||Ke(`The provided value must be an element but got ${Ee(K)}`)}function ot(K,Ie){$(K,"Array must be defined.");const Ut=K.length;(Ie<0||Ie>=Ut)&&Ke(`Index expected to be less than ${Ut} but got ${Ie}`)}function nt(K,...Ie){if(-1!==Ie.indexOf(K))return!0;Ke(`Expected value to be one of ${JSON.stringify(Ie)} but was ${JSON.stringify(K)}.`)}function ht(K){null!==(0,f.nR)()&&Ke(`${K}() should never be called in a reactive context.`)}function oe(K){return{token:K.token,providedIn:K.providedIn||null,factory:K.factory,value:void 0}}function fe(K){return{providers:K.providers||[],imports:K.imports||[]}}function Qe(K){return function Gt(K,Ie){return K.hasOwnProperty(Ie)&&K[Ie]||null}(K,Ft)}function gt(K){return null!==Qe(K)}function cn(K){return K&&K.hasOwnProperty(Sn)?K[Sn]:null}const Ft=re({\u0275prov:re}),Sn=re({\u0275inj:re});class Qn{_desc;ngMetadataName="InjectionToken";\u0275prov;constructor(Ie,Ut){this._desc=Ie,this.\u0275prov=void 0,"number"==typeof Ut?this.__NG_ELEMENT_ID__=Ut:void 0!==Ut&&(this.\u0275prov=oe({token:this,providedIn:Ut.providedIn||"root",factory:Ut.factory}))}get multi(){return this}toString(){return`InjectionToken ${this._desc}`}}let h;function jt(){return Ke("getInjectorProfilerContext should never be called in production mode"),h}function Ue(K){Ke("setInjectorProfilerContext should never be called in production mode");const Ie=h;return h=K,Ie}const wt=[],pt=()=>{};function gn(K){return Ke("setInjectorProfiler should never be called in production mode"),null!==K?(wt.includes(K)||wt.push(K),()=>function Pt(K){const Ie=wt.indexOf(K);-1!==Ie&&wt.splice(Ie,1)}(K)):(wt.length=0,pt)}function ei(K){Ke("Injector profiler should never be called in production mode");for(let Ie=0;Ie1&&(ui=` Path: ${Ut.join(" -> ")}.`);return Ae(Ie,`${K}${Gn?` Source: ${Gn}.`:""}${ui}`)}(K[Ge]||K.message,K[ut],K[Ot],Ie),K}(se(0,Ie),null)}function on(K,Ie){throw new le(-201,!1)}function dn(K,Ie,Ut){const Gn=new le(Ie,K);return Gn[ut]=Ie,Gn[Ge]=K,Ut&&(Gn[Ot]=Ut),Gn}let xi;function Yi(){return xi}function Tt(K){const Ie=xi;return xi=K,Ie}function At(K,Ie,Ut){const Gn=Qe(K);return Gn&&"root"==Gn.providedIn?void 0===Gn.value?Gn.value=Gn.factory():Gn.value:8&Ut?null:void 0!==Ie?Ie:void on()}function we(K){}const Lt={},Ht="__NG_DI_FLAG__";class _n{injector;constructor(Ie){this.injector=Ie}retrieve(Ie,Ut){const Gn=It(Ut)||0;try{return this.injector.get(Ie,8&Gn?null:Lt,Gn)}catch(ui){if(O(ui))return ui;throw ui}}}function fi(K,Ie=0){const Ut=d();if(void 0===Ut)throw new le(-203,!1);if(null===Ut)return At(K,void 0,Ie);{const Gn=function an(K){return{optional:!!(8&K),host:!!(1&K),self:!!(2&K),skipSelf:!!(4&K)}}(Ie),ui=Ut.retrieve(K,Gn);if(O(ui)){if(Gn.optional)return null;throw ui}return ui}}function bi(K,Ie=0){return(Yi()||fi)(J(K),Ie)}function Qi(K){throw new le(202,!1)}function zi(K,Ie){return bi(K,It(Ie))}function It(K){return typeof K>"u"||"number"==typeof K?K:0|(K.optional&&8)|(K.host&&1)|(K.self&&2)|(K.skipSelf&&4)}function Yt(K){const Ie=[];for(let Ut=0;UtArray.isArray(Ut)?In(Ut,Ie):Ie(Ut))}function Mn(K,Ie,Ut){Ie>=K.length?K.push(Ut):K.splice(Ie,0,Ut)}function Vn(K,Ie){return Ie>=K.length-1?K.pop():K.splice(Ie,1)[0]}function ii(K,Ie){const Ut=[];for(let Gn=0;GnIe;)K[ui]=K[ui-2],ui--;K[Ie]=Ut,K[Ie+1]=Gn}}function ra(K,Ie,Ut){let Gn=ha(K,Ie);return Gn>=0?K[1|Gn]=Ut:(Gn=~Gn,ia(K,Gn,Ie,Ut)),Gn}function fa(K,Ie){const Ut=ha(K,Ie);if(Ut>=0)return K[1|Ut]}function ha(K,Ie){return function qt(K,Ie,Ut){let Gn=0,ui=K.length>>Ut;for(;ui!==Gn;){const ki=Gn+(ui-Gn>>1),Wa=K[ki<Ie?ui=ki:Gn=ki+1}return~(ui<{Ut.push(Wa)};return In(Ie,Wa=>{const Bi=Wa;Ve(Bi,ki,[],Gn)&&(ui||=[],ui.push(Bi))}),void 0!==ui&&Wt(ui,ki),Ut}function Wt(K,Ie){for(let Ut=0;Ut{Ie(ki,Gn)})}}function Ve(K,Ie,Ut,Gn){if(!(K=J(K)))return!1;let ui=null,ki=cn(K);const Wa=!ki&&en(K);if(ki||Wa){if(Wa&&!Wa.standalone)return!1;ui=K}else{const Aa=K.ngModule;if(ki=cn(Aa),!ki)return!1;ui=Aa}const Bi=Gn.has(ui);if(Wa){if(Bi)return!1;if(Gn.add(ui),Wa.dependencies){const Aa="function"==typeof Wa.dependencies?Wa.dependencies():Wa.dependencies;for(const hi of Aa)Ve(hi,Ie,Ut,Gn)}}else{if(!ki)return!1;{if(null!=ki.imports&&!Bi){let hi;Gn.add(ui),In(ki.imports,es=>{Ve(es,Ie,Ut,Gn)&&(hi||=[],hi.push(es))}),void 0!==hi&&Wt(hi,Ie)}if(!Bi){const hi=Fn(ui)||(()=>new ui);Ie({provide:ui,useFactory:hi,deps:Wn},ui),Ie({provide:Hn,useValue:ui,multi:!0},ui),Ie({provide:ri,useValue:()=>bi(ui),multi:!0},ui)}const Aa=ki.providers;if(null!=Aa&&!Bi){const hi=K;Jt(Aa,es=>{Ie(es,hi)})}}}return ui!==K&&void 0!==K.providers}function Jt(K,Ie){for(let Ut of K)ye(Ut)&&(Ut=Ut.\u0275providers),Array.isArray(Ut)?Jt(Ut,Ie):Ie(Ut)}const ti=re({provide:String,useValue:re});function di(K){return null!==K&&"object"==typeof K&&ti in K}function nn(K){return"function"==typeof K}function ni(K){return!!K.useClass}const U=new Qn(""),tt={},Ze={};let Xt;function Nn(){return void 0===Xt&&(Xt=new Pi),Xt}class Ki{}class _a extends Ki{parent;source;scopes;records=new Map;_ngOnDestroyHooks=new Set;_onDestroyHooks=[];get destroyed(){return this._destroyed}_destroyed=!1;injectorDefTypes;constructor(Ie,Ut,Gn,ui){super(),this.parent=Ut,this.source=Gn,this.scopes=ui,pr(Ie,Wa=>this.processProvider(Wa)),this.records.set(Rn,hr(void 0,this)),ui.has("environment")&&this.records.set(Ki,hr(void 0,this));const ki=this.records.get(U);null!=ki&&"string"==typeof ki.value&&this.scopes.add(ki.value),this.injectorDefTypes=new Set(this.get(Hn,Wn,{self:!0}))}retrieve(Ie,Ut){const Gn=It(Ut)||0;try{return this.get(Ie,Lt,Gn)}catch(ui){if(O(ui))return ui;throw ui}}destroy(){As(this),this._destroyed=!0;const Ie=(0,f.Ht)(null);try{for(const Gn of this._ngOnDestroyHooks)Gn.ngOnDestroy();const Ut=this._onDestroyHooks;this._onDestroyHooks=[];for(const Gn of Ut)Gn()}finally{this.records.clear(),this._ngOnDestroyHooks.clear(),this.injectorDefTypes.clear(),(0,f.Ht)(Ie)}}onDestroy(Ie){return As(this),this._onDestroyHooks.push(Ie),()=>this.removeOnDestroy(Ie)}runInContext(Ie){As(this);const Ut=v(this),Gn=Tt(void 0);try{return Ie()}finally{v(Ut),Tt(Gn)}}get(Ie,Ut=Lt,Gn){if(As(this),Ie.hasOwnProperty(at))return Ie[at](this);const ui=It(Gn),Wa=v(this),Bi=Tt(void 0);try{if(!(4&ui)){let hi=this.records.get(Ie);if(void 0===hi){const es=function zo(K){return"function"==typeof K||"object"==typeof K&&"InjectionToken"===K.ngMetadataName}(Ie)&&Qe(Ie);hi=es&&this.injectableDefInScope(es)?hr(Ua(Ie),tt):null,this.records.set(Ie,hi)}if(null!=hi)return this.hydrate(Ie,hi,ui)}return(2&ui?Nn():this.parent).get(Ie,Ut=8&ui&&Ut===Lt?null:Ut)}catch(Aa){const hi=function xn(K){return K[ut]}(Aa);throw-200===hi||-201===hi?new le(hi,null):Aa}finally{Tt(Bi),v(Wa)}}resolveInjectorInitializers(){const Ie=(0,f.Ht)(null),Ut=v(this),Gn=Tt(void 0);try{const ki=this.get(ri,Wn,{self:!0});for(const Wa of ki)Wa()}finally{v(Ut),Tt(Gn),(0,f.Ht)(Ie)}}toString(){const Ie=[],Ut=this.records;for(const Gn of Ut.keys())Ie.push(Ee(Gn));return`R3Injector[${Ie.join(", ")}]`}processProvider(Ie){let Ut=nn(Ie=J(Ie))?Ie:J(Ie&&Ie.provide);const Gn=function ns(K){return di(K)?hr(void 0,K.useValue):hr(Ga(K),tt)}(Ie);if(!nn(Ie)&&!0===Ie.multi){let ui=this.records.get(Ut);ui||(ui=hr(void 0,tt,!0),ui.factory=()=>Yt(ui.multi),this.records.set(Ut,ui)),Ut=Ie,ui.multi.push(Ie)}this.records.set(Ut,Gn)}hydrate(Ie,Ut,Gn){const ui=(0,f.Ht)(null);try{if(Ut.value===Ze)throw se(Ee(Ie));return Ut.value===tt&&(Ut.value=Ze,Ut.value=Ut.factory(void 0,Gn)),"object"==typeof Ut.value&&Ut.value&&function fr(K){return null!==K&&"object"==typeof K&&"function"==typeof K.ngOnDestroy}(Ut.value)&&this._ngOnDestroyHooks.add(Ut.value),Ut.value}finally{(0,f.Ht)(ui)}}injectableDefInScope(Ie){if(!Ie.providedIn)return!1;const Ut=J(Ie.providedIn);return"string"==typeof Ut?"any"===Ut||this.scopes.has(Ut):this.injectorDefTypes.has(Ut)}removeOnDestroy(Ie){const Ut=this._onDestroyHooks.indexOf(Ie);-1!==Ut&&this._onDestroyHooks.splice(Ut,1)}}function Ua(K){const Ie=Qe(K),Ut=null!==Ie?Ie.factory:Fn(K);if(null!==Ut)return Ut;if(K instanceof Qn)throw new le(204,!1);if(K instanceof Function)return function $a(K){if(K.length>0)throw new le(204,!1);const Ut=function rt(K){return(K?.[Ft]??null)||null}(K);return null!==Ut?()=>Ut.factory(K):()=>new K}(K);throw new le(204,!1)}function Ga(K,Ie,Ut){let Gn;if(nn(K)){const ui=J(K);return Fn(ui)||Ua(ui)}if(di(K))Gn=()=>J(K.useValue);else if(function ca(K){return!(!K||!K.useFactory)}(K))Gn=()=>K.useFactory(...Yt(K.deps||[]));else if(function Ii(K){return!(!K||!K.useExisting)}(K))Gn=(ui,ki)=>bi(J(K.useExisting),void 0!==ki&&8&ki?8:void 0);else{const ui=J(K&&(K.useClass||K.provide));if(!function mr(K){return!!K.deps}(K))return Fn(ui)||Ua(ui);Gn=()=>new ui(...Yt(K.deps))}return Gn}function As(K){if(K.destroyed)throw new le(205,!1)}function hr(K,Ie,Ut=!1){return{factory:K,value:Ie,multi:Ut?[]:void 0}}function pr(K,Ie){for(const Ut of K)Array.isArray(Ut)?pr(Ut,Ie):Ut&&ye(Ut)?pr(Ut.\u0275providers,Ie):Ie(Ut)}function gr(K,Ie){let Ut;K instanceof _a?(As(K),Ut=K):Ut=new _n(K);const ui=v(Ut),ki=Tt(void 0);try{return Ie()}finally{v(ui),Tt(ki)}}function bo(){return void 0!==Yi()||null!=d()}function Zs(K){if(!bo())throw new le(-203,!1)}const jr=0,Er=1,Ka=2,Ps=3,kr=4,js=5,Vo=6,Zr=7,qo=8,Jr=9,Co=10,Js=11,_r=12,rs=13,ls=14,is=15,Hs=16,Ws=17,Mr=18,Ui=19,xs=20,vr=21,qs=22,Pa=23,yr=24,er=25,Xs=26,wa=27,Za=6,Or=7,Rr=8,Fs=9,Hr=10;function Ks(K){return Array.isArray(K)&&"object"==typeof K[1]}function Sr(K){return Array.isArray(K)&&!0===K[1]}function Ne(K){return!!(4&K.flags)}function He(K){return K.componentOffset>-1}function q(K){return!(1&~K.flags)}function mt(K){return!!K.template}function ln(K){return!!(512&K[Ka])}function Es(K){return!(256&~K[Ka])}function kt(K,Ie){$e(K,Ie[Er])}function On(K,Ie){const Ut=Ie+wa;ot(K,Ut),ie(Ut,K[Er].bindingStartIndex,"TNodes should be created before any bindings")}function $e(K,Ie){mn(K);const Ut=Ie.data;for(let Gn=wa;Gn) must have projection slots defined.")}function pl(K,Ie){$(K,"Component views should always have a parent view (component's host view)")}function zl(K,Ie){Eo(K,Ie),Eo(K,Ie+8),Re(K[Ie+0],"injectorIndex should point to a bloom filter"),Re(K[Ie+1],"injectorIndex should point to a bloom filter"),Re(K[Ie+2],"injectorIndex should point to a bloom filter"),Re(K[Ie+3],"injectorIndex should point to a bloom filter"),Re(K[Ie+4],"injectorIndex should point to a bloom filter"),Re(K[Ie+5],"injectorIndex should point to a bloom filter"),Re(K[Ie+6],"injectorIndex should point to a bloom filter"),Re(K[Ie+7],"injectorIndex should point to a bloom filter"),Re(K[Ie+8],"injectorIndex should point to parent injector")}const ds="svg",nr="math";function mi(K){for(;Array.isArray(K);)K=K[jr];return K}function Uo(K){for(;Array.isArray(K);){if("object"==typeof K[1])return K;K=K[jr]}return null}function Go(K,Ie){return mi(Ie[K])}function gl(K,Ie){return mi(Ie[K.index])}function Tr(K,Ie){const Ut=null===K?-1:K.index;return-1!==Ut?mi(Ie[Ut]):null}function jo(K,Ie){return K.data[Ie]}function mo(K,Ie){return K[Ie]}function Tl(K,Ie,Ut,Gn){Ut>=K.data.length&&(K.data[Ut]=null,K.blueprint[Ut]=null),Ie[Ut]=Gn}function Vl(K,Ie){const Ut=Ie[K];return Ks(Ut)?Ut:Ut[jr]}function za(K){return!(4&~K[Ka])}function us(K){return!(128&~K[Ka])}function Dl(K){return Sr(K[Ps])}function eo(K,Ie){return null==Ie?null:K[Ie]}function So(K){K[Ws]=0}function fo(K){1024&K[Ka]||(K[Ka]|=1024,us(K)&&to(K))}function To(K,Ie){for(;K>0;)Ie=Ie[ls],K--;return Ie}function Ho(K){return!!(9216&K[Ka]||K[yr]?.dirty)}function _l(K){K[Co].changeDetectionScheduler?.notify(8),64&K[Ka]&&(K[Ka]|=1024),Ho(K)&&to(K)}function to(K){K[Co].changeDetectionScheduler?.notify(0);let Ie=Al(K);for(;null!==Ie&&!(8192&Ie[Ka])&&(Ie[Ka]|=8192,us(Ie));)Ie=Al(Ie)}function wl(K,Ie){if(Es(K))throw new le(911,!1);null===K[vr]&&(K[vr]=[]),K[vr].push(Ie)}function no(K,Ie){if(null===K[vr])return;const Ut=K[vr].indexOf(Ie);-1!==Ut&&K[vr].splice(Ut,1)}function Al(K){const Ie=K[Ps];return Sr(Ie)?Ie[Ps]:Ie}function io(K){return K[Zr]??=[]}function Ys(K){return K.cleanup??=[]}function Dr(K,Ie,Ut,Gn){const ui=io(Ie);ui.push(Ut),K.firstCreatePass&&Ys(K).push(Gn,ui.length-1)}const li={lFrame:Ol(null),bindingsEnabled:!0,skipHydrationRootTNode:null};var Wr=function(K){return K[K.Off=0]="Off",K[K.Exhaustive=1]="Exhaustive",K[K.OnlyDirtyViews=2]="OnlyDirtyViews",K}(Wr||{});let ao=0,Pr=!1;function so(){return li.lFrame.elementDepthCount}function tl(){li.lFrame.elementDepthCount++}function Ul(){li.lFrame.elementDepthCount--}function Do(){return li.bindingsEnabled}function Jl(){return null!==li.skipHydrationRootTNode}function Ll(K){return li.skipHydrationRootTNode===K}function ir(){li.bindingsEnabled=!0}function Wo(){li.bindingsEnabled=!1}function nl(){li.skipHydrationRootTNode=null}function X(){return li.lFrame.lView}function de(){return li.lFrame.tView}function Q(K){return li.lFrame.contextLView=K,K[qo]}function me(K){return li.lFrame.contextLView=null,K}function et(){let K=Mt();for(;null!==K&&64===K.type;)K=K.parent;return K}function Mt(){return li.lFrame.currentTNode}function Kt(){const K=li.lFrame,Ie=K.currentTNode;return K.isParent?Ie:Ie.parent}function Tn(K,Ie){const Ut=li.lFrame;Ut.currentTNode=K,Ut.isParent=Ie}function ai(){return li.lFrame.isParent}function Gi(){li.lFrame.isParent=!1}function La(){return li.lFrame.contextLView}function as(){return Ke("Must never be called in production mode"),ao!==Wr.Off}function Ns(){return Ke("Must never be called in production mode"),ao===Wr.Exhaustive}function il(K){Ke("Must never be called in production mode"),ao=K}function ar(){return Pr}function ro(K){const Ie=Pr;return Pr=K,Ie}function oo(){const K=li.lFrame;let Ie=K.bindingRootIndex;return-1===Ie&&(Ie=K.bindingRootIndex=K.tView.bindingStartIndex),Ie}function Il(){return li.lFrame.bindingIndex}function mc(K){return li.lFrame.bindingIndex=K}function ec(){return li.lFrame.bindingIndex++}function kl(K){const Ie=li.lFrame,Ut=Ie.bindingIndex;return Ie.bindingIndex=Ie.bindingIndex+K,Ut}function Xc(){return li.lFrame.inI18n}function po(K){li.lFrame.inI18n=K}function fc(K,Ie){const Ut=li.lFrame;Ut.bindingIndex=Ut.bindingRootIndex=K,Fr(Ie)}function pc(){return li.lFrame.currentDirectiveIndex}function Fr(K){li.lFrame.currentDirectiveIndex=K}function wo(K){const Ie=li.lFrame.currentDirectiveIndex;return-1===Ie?null:K[Ie]}function od(){return li.lFrame.currentQueryIndex}function Ao(K){li.lFrame.currentQueryIndex=K}function Lc(K){const Ie=K[Er];return 2===Ie.type?Ie.declTNode:1===Ie.type?K[js]:null}function vl(K,Ie,Ut){if(4&Ut){let ui=Ie,ki=K;for(;!(ui=ui.parent,null!==ui||1&Ut||(ui=Lc(ki),null===ui||(ki=ki[ls],10&ui.type))););if(null===ui)return!1;Ie=ui,K=ki}const Gn=li.lFrame=Lo();return Gn.currentTNode=Ie,Gn.lView=K,!0}function al(K){const Ie=Lo(),Ut=K[Er];li.lFrame=Ie,Ie.currentTNode=Ut.firstChild,Ie.lView=K,Ie.tView=Ut,Ie.contextLView=K,Ie.bindingIndex=Ut.bindingStartIndex,Ie.inI18n=!1}function Lo(){const K=li.lFrame,Ie=null===K?null:K.child;return null===Ie?Ol(K):Ie}function Ol(K){const Ie={currentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:-1,contextLView:null,elementDepthCount:0,currentNamespace:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:K,child:null,inI18n:!1};return null!==K&&(K.child=Ie),Ie}function Gl(){const K=li.lFrame;return li.lFrame=K.parent,K.currentTNode=null,K.lView=null,K}const jl=Gl;function Hl(){const K=Gl();K.isParent=!0,K.tView=null,K.selectedIndex=-1,K.contextLView=null,K.elementDepthCount=0,K.currentDirectiveIndex=-1,K.currentNamespace=null,K.bindingRootIndex=-1,K.bindingIndex=-1,K.currentQueryIndex=0}function Rl(K){return(li.lFrame.contextLView=To(K,li.lFrame.contextLView))[qo]}function Io(){return li.lFrame.selectedIndex}function ko(K){li.lFrame.selectedIndex=K}function Wl(){const K=li.lFrame;return jo(K.tView,K.selectedIndex)}function sr(){li.lFrame.currentNamespace=ds}function Ts(){li.lFrame.currentNamespace=nr}function yt(){!function je(){li.lFrame.currentNamespace=null}()}function ct(){return li.lFrame.currentNamespace}let Qt=!0;function Pn(){return Qt}function $n(K){Qt=K}function Ci(K,Ie=null,Ut=null,Gn){const ui=wi(K,Ie,Ut,Gn);return ui.resolveInjectorInitializers(),ui}function wi(K,Ie=null,Ut=null,Gn,ui=new Set){const ki=[Ut||Wn,Ca(K)];return Gn=Gn||("object"==typeof K?void 0:Ee(K)),new _a(ki,Ie||Nn(),Gn||null,ui)}class $i{static THROW_IF_NOT_FOUND=Lt;static NULL=new Pi;static create(Ie,Ut){if(Array.isArray(Ie))return Ci({name:""},Ut,Ie,"");{const Gn=Ie.name??"";return Ci({name:Gn},Ie.parent,Ie.providers,Gn)}}static \u0275prov=oe({token:$i,providedIn:"any",factory:()=>bi(Rn)});static __NG_ELEMENT_ID__=-1}const sa=new Qn("");let va=(()=>class K{static __NG_ELEMENT_ID__=hs;static __NG_ENV_ID__=Ut=>Ut})();class oa extends va{_lView;constructor(Ie){super(),this._lView=Ie}get destroyed(){return Es(this._lView)}onDestroy(Ie){const Ut=this._lView;return wl(Ut,Ie),()=>no(Ut,Ie)}}function hs(){return new oa(X())}class Ls{_console=console;handleError(Ie){this._console.error("ERROR",Ie)}}const gi=new Qn("",{providedIn:"root",factory:()=>{const K=zi(Ki);let Ie;return Ut=>{K.destroyed&&!Ie?setTimeout(()=>{throw Ut}):(Ie??=K.get(Ls),Ie.handleError(Ut))}}}),Nr={provide:ri,useValue:()=>{zi(Ls)},multi:!0};function Oo(K){return"function"==typeof K&&void 0!==K[f.bh]}function yl(K,Ie){const[Ut,Gn,ui]=(0,f.n5)(K,Ie?.equal),ki=Ut;return ki.set=Gn,ki.update=ui,ki.asReadonly=Xr.bind(ki),ki}function Xr(){const K=this[f.bh];if(void 0===K.readonlyFn){const Ie=()=>this();Ie[f.bh]=K,K.readonlyFn=Ie}return K.readonlyFn}function tc(K){return Oo(K)&&"function"==typeof K.set}function Xl(K,Ie){if(null!==(0,f.nR)())throw new le(-602,!1)}let Kc=(()=>class K{view;node;constructor(Ut,Gn){this.view=Ut,this.node=Gn}static __NG_ELEMENT_ID__=_1})();function _1(){return new Kc(X(),et())}class gc{}const Yc=new Qn("",{providedIn:"root",factory:()=>!1}),nc=new Qn("",{providedIn:"root",factory:()=>!1}),v1=new Qn(""),ic=new Qn("");let lo=(()=>{class K{taskId=0;pendingTasks=new Set;destroyed=!1;pendingTask=new u.t(!1);get hasPendingTasks(){return!this.destroyed&&this.pendingTask.value}get hasPendingTasksObservable(){return this.destroyed?new L.c(Ut=>{Ut.next(!1),Ut.complete()}):this.pendingTask}add(){!this.hasPendingTasks&&!this.destroyed&&this.pendingTask.next(!0);const Ut=this.taskId++;return this.pendingTasks.add(Ut),Ut}has(Ut){return this.pendingTasks.has(Ut)}remove(Ut){this.pendingTasks.delete(Ut),0===this.pendingTasks.size&&this.hasPendingTasks&&this.pendingTask.next(!1)}ngOnDestroy(){this.pendingTasks.clear(),this.hasPendingTasks&&this.pendingTask.next(!1),this.destroyed=!0,this.pendingTask.unsubscribe()}static \u0275prov=oe({token:K,providedIn:"root",factory:()=>new K})}return K})(),Ha=(()=>{class K{internalPendingTasks=zi(lo);scheduler=zi(gc);errorHandler=zi(gi);add(){const Ut=this.internalPendingTasks.add();return()=>{this.internalPendingTasks.has(Ut)&&(this.scheduler.notify(11),this.internalPendingTasks.remove(Ut))}}run(Ut){const Gn=this.add();Ut().catch(this.errorHandler).finally(Gn)}static \u0275prov=oe({token:K,providedIn:"root",factory:()=>new K})}return K})();function Ti(...K){}let Oa=(()=>{class K{static \u0275prov=oe({token:K,providedIn:"root",factory:()=>new os})}return K})();class os{dirtyEffectCount=0;queues=new Map;add(Ie){this.enqueue(Ie),this.schedule(Ie)}schedule(Ie){Ie.dirty&&this.dirtyEffectCount++}remove(Ie){const Gn=this.queues.get(Ie.zone);Gn.has(Ie)&&(Gn.delete(Ie),Ie.dirty&&this.dirtyEffectCount--)}enqueue(Ie){const Ut=Ie.zone;this.queues.has(Ut)||this.queues.set(Ut,new Set);const Gn=this.queues.get(Ut);Gn.has(Ie)||Gn.add(Ie)}flush(){for(;this.dirtyEffectCount>0;){let Ie=!1;for(const[Ut,Gn]of this.queues)Ie||=null===Ut?this.flushQueue(Gn):Ut.run(()=>this.flushQueue(Gn));Ie||(this.dirtyEffectCount=0)}}flushQueue(Ie){let Ut=!1;for(const Gn of Ie)Gn.dirty&&(this.dirtyEffectCount--,Ut=!0,Gn.run());return Ut}}},9079(Zt,pe,l){"use strict";l.d(pe,{ot:()=>Ee});var Ce=l(2615),Ae=l(9295);function Ee(ne,J){const Re=J?.manualCleanup?null:J?.injector?.get(Ce.abz)??(0,Ce.WQX)(Ce.abz),Xe=function V(ne=Object.is){return(J,De)=>1===J.kind&&1===De.kind&&ne(J.value,De.value)}(J?.equal);let _e,he;_e=(0,Ce.vPA)(J?.requireSync?{kind:0}:{kind:1,value:J?.initialValue},{equal:Xe});const Dt=ne.subscribe({next:lt=>_e.set({kind:1,value:lt}),error:lt=>{_e.set({kind:2,error:lt}),he?.()},complete:()=>{he?.()}});if(J?.requireSync&&0===_e().kind)throw new Ce.buA(601,!1);return he=Re?.onDestroy(Dt.unsubscribe.bind(Dt)),(0,Ae.EW)(()=>{const lt=_e();switch(lt.kind){case 1:return lt.value;case 2:throw lt.error;case 0:throw new Ce.buA(601,!1)}},{equal:J?.equal})}},8440(Zt,pe,l){"use strict";l.d(pe,{Ag:()=>_e,Bg:()=>j,EF:()=>Dt,H8:()=>Re,Ht:()=>e,JC:()=>A,KE:()=>f,KO:()=>P,KZ:()=>Xe,Ny:()=>he,TO:()=>Ae,Wu:()=>G,XR:()=>Ee,a7:()=>ne,bh:()=>w,j2:()=>Ke,mC:()=>Vt,mK:()=>C,n5:()=>ve,nR:()=>O,pL:()=>L,s0:()=>ot,si:()=>xe});let i=null,d=!1,v=1;const w=Symbol("SIGNAL");function e(ht){const oe=i;return i=ht,oe}function O(){return i}function f(){return d}const L={version:0,lastCleanEpoch:0,dirty:!1,producers:void 0,producersTail:void 0,consumers:void 0,consumersTail:void 0,recomputing:!1,consumerAllowSignalWrites:!1,consumerIsAlwaysLive:!1,kind:"unknown",producerMustRecompute:()=>!1,producerRecomputeValue:()=>{},consumerMarkedDirty:()=>{},consumerOnSignalRead:()=>{}};function C(ht){if(d)throw new Error("");if(null===i)return;i.consumerOnSignalRead(ht);const oe=i.producersTail;if(void 0!==oe&&oe.producer===ht)return;let Ye;const fe=i.recomputing;if(fe&&(Ye=void 0!==oe?oe.nextProducer:i.producers,void 0!==Ye&&Ye.producer===ht))return i.producersTail=Ye,void(Ye.lastReadVersion=ht.version);const Qe=ht.consumersTail;if(void 0!==Qe&&Qe.consumer===i&&(!fe||function De(ht,oe){const Ye=oe.producersTail;if(void 0!==Ye){let fe=oe.producers;do{if(fe===ht)return!0;if(fe===Ye)break;fe=fe.nextProducer}while(void 0!==fe)}return!1}(Qe,i)))return;const gt=be(i),Gt={producer:ht,consumer:i,nextProducer:Ye,prevConsumer:Qe,lastReadVersion:ht.version,nextConsumer:void 0};i.producersTail=Gt,void 0!==oe?oe.nextProducer=Gt:i.producers=Gt,gt&&V(ht,Gt)}function A(ht){if((!be(ht)||ht.dirty)&&(ht.dirty||ht.lastCleanEpoch!==v)){if(!ht.producerMustRecompute(ht)&&!xe(ht))return void Ae(ht);ht.producerRecomputeValue(ht),Ae(ht)}}function Pe(ht){if(void 0===ht.consumers)return;const oe=d;d=!0;try{for(let Ye=ht.consumers;void 0!==Ye;Ye=Ye.nextConsumer){const fe=Ye.consumer;fe.dirty||Ce(fe)}}finally{d=oe}}function le(){return!1!==i?.consumerAllowSignalWrites}function Ce(ht){ht.dirty=!0,Pe(ht),ht.consumerMarkedDirty?.(ht)}function Ae(ht){ht.dirty=!1,ht.lastCleanEpoch=v}function j(ht){return ht&&function W(ht){ht.producersTail=void 0,ht.recomputing=!0}(ht),e(ht)}function G(ht,oe){e(oe),ht&&function re(ht){ht.recomputing=!1;const oe=ht.producersTail;let Ye=void 0!==oe?oe.nextProducer:ht.producers;if(void 0!==Ye){if(be(ht))do{Ye=ce(Ye)}while(void 0!==Ye);void 0!==oe?oe.nextProducer=void 0:ht.producers=void 0}}(ht)}function xe(ht){for(let oe=ht.producers;void 0!==oe;oe=oe.nextProducer){const Ye=oe.producer,fe=oe.lastReadVersion;if(fe!==Ye.version||(A(Ye),fe!==Ye.version))return!0}return!1}function Ee(ht){if(be(ht)){let oe=ht.producers;for(;void 0!==oe;)oe=ce(oe)}ht.producers=void 0,ht.producersTail=void 0,ht.consumers=void 0,ht.consumersTail=void 0}function V(ht,oe){const Ye=ht.consumersTail,fe=be(ht);if(void 0!==Ye?(oe.nextConsumer=Ye.nextConsumer,Ye.nextConsumer=oe):(oe.nextConsumer=void 0,ht.consumers=oe),oe.prevConsumer=Ye,ht.consumersTail=oe,!fe)for(let Qe=ht.producers;void 0!==Qe;Qe=Qe.nextProducer)V(Qe.producer,Qe)}function ce(ht){const oe=ht.producer,Ye=ht.nextProducer,fe=ht.nextConsumer,Qe=ht.prevConsumer;if(ht.nextConsumer=void 0,ht.prevConsumer=void 0,void 0!==fe?fe.prevConsumer=Qe:oe.consumersTail=Qe,void 0!==Qe)Qe.nextConsumer=fe;else if(oe.consumers=fe,!be(oe)){let gt=oe.producers;for(;void 0!==gt;)gt=ce(gt)}return Ye}function be(ht){return ht.consumerIsAlwaysLive||void 0!==ht.consumers}function ne(ht){}function Re(ht,oe){return Object.is(ht,oe)}function Xe(ht,oe){const Ye=Object.create(lt);Ye.computation=ht,void 0!==oe&&(Ye.equal=oe);const fe=()=>{if(A(Ye),C(Ye),Ye.value===Dt)throw Ye.error;return Ye.value};return fe[w]=Ye,fe}const _e=Symbol("UNSET"),he=Symbol("COMPUTING"),Dt=Symbol("ERRORED"),lt={...L,value:_e,dirty:!0,error:null,equal:Re,kind:"computed",producerMustRecompute:ht=>ht.value===_e||ht.value===he,producerRecomputeValue(ht){if(ht.value===he)throw new Error("");const oe=ht.value;ht.value=he;const Ye=j(ht);let fe,Qe=!1;try{fe=ht.computation(),e(null),Qe=oe!==_e&&oe!==Dt&&fe!==Dt&&ht.equal(oe,fe)}catch(gt){fe=Dt,ht.error=gt}finally{G(ht,Ye)}Qe?ht.value=oe:(ht.value=fe,ht.version++)}};let te=function Le(){throw new Error};function ie(ht){te(ht)}function P(ht){te=ht}function ve(ht,oe){const Ye=Object.create(ot);Ye.value=ht,void 0!==oe&&(Ye.equal=oe);const fe=()=>function $(ht){return C(ht),ht.value}(Ye);return fe[w]=Ye,[fe,Gt=>Ke(Ye,Gt),Gt=>Vt(Ye,Gt)]}function Ke(ht,oe){le()||ie(ht),ht.equal(ht.value,oe)||(ht.value=oe,function nt(ht){ht.version++,function B(){v++}(),Pe(ht)}(ht))}function Vt(ht,oe){le()||ie(ht),Ke(ht,oe(ht.value))}const ot={...L,equal:Re,value:void 0,kind:"signal"}},4545(Zt,pe,l){"use strict";function i(L){for(let C in L){let B=L[C]??"";switch(C){case"display":L.display="flex"===B?["-webkit-flex","flex"]:"inline-flex"===B?["-webkit-inline-flex","inline-flex"]:B;break;case"align-items":case"align-self":case"align-content":case"flex":case"flex-basis":case"flex-flow":case"flex-grow":case"flex-shrink":case"flex-wrap":case"justify-content":L["-webkit-"+C]=B;break;case"flex-direction":L["-webkit-flex-direction"]=B,L["flex-direction"]=B;break;case"order":L.order=L["-webkit-"+C]=isNaN(+B)?"0":B}}return L}l.d(pe,{C5:()=>u,O5:()=>i,Uo:()=>v,Vc:()=>e,uG:()=>T});const d="inline",v=["row","column","row-reverse","column-reverse"];function T(L){let[C,B,A]=w(L);return function f(L,C=null,B=!1){return{display:B?"inline-flex":"flex","box-sizing":"border-box","flex-direction":L,"flex-wrap":C||null}}(C,B,A)}function w(L){L=L?.toLowerCase()??"";let[C,B,A]=L.split(" ");return v.find(Pe=>Pe===C)||(C=v[0]),B===d&&(B=A!==d?A:"",A=d),[C,O(B),!!A]}function e(L){let[C]=w(L);return C.indexOf("row")>-1}function O(L){if(L)switch(L.toLowerCase()){case"reverse":case"wrap-reverse":case"reverse-wrap":L="wrap-reverse";break;case"no":case"none":case"nowrap":L="nowrap";break;default:L="wrap"}return L}function u(L,...C){if(null==L)throw TypeError("Cannot convert undefined or null to object");for(let B of C)if(null!=B)for(let A in B)B.hasOwnProperty(A)&&(L[A]=B[A]);return L}},9340(Zt,pe,l){"use strict";l.d(pe,{Ce:()=>Dt,DJ:()=>vt,EA:()=>he,PV:()=>_e,SL:()=>lt,Ui:()=>De,ZH:()=>ie,cL:()=>Je,hN:()=>at,qH:()=>kn,r3:()=>te});var Ce=l(2615),Ae=l(3664),j=l(177),W=l(1985),G=l(1413),re=l(4412),xe=l(7786),Ee=l(4545),V=l(5964),ce=l(8141);const ne={provide:Ae.iLQ,useFactory:function be(Be,ut){return()=>{if((0,j.UE)(ut)){const Ge=Array.from(Be.querySelectorAll(`[class*=${J}]`)),Ot=/\bflex-layout-.+?\b/g;Ge.forEach(se=>{se.classList.contains(`${J}ssr`)&&se.parentNode?se.parentNode.removeChild(se):se.className.replace(Ot,"")})}}},deps:[Ce.qQL,Ae.Agw],multi:!0},J="flex-layout-";let De=(()=>{class Be{}return Be.\u0275fac=function(Ge){return new(Ge||Be)},Be.\u0275mod=Ae.$C({type:Be}),Be.\u0275inj=Ce.G2t({providers:[ne]}),Be})();class Re{constructor(ut=!1,Ge="all",Ot="",se="",We=0){this.matches=ut,this.mediaQuery=Ge,this.mqAlias=Ot,this.suffix=se,this.priority=We,this.property=""}clone(){return new Re(this.matches,this.mediaQuery,this.mqAlias,this.suffix)}}let Xe=(()=>{class Be{constructor(){this.stylesheet=new Map}addStyleToElement(Ge,Ot,se){const We=this.stylesheet.get(Ge);We?We.set(Ot,se):this.stylesheet.set(Ge,new Map([[Ot,se]]))}clearStyles(){this.stylesheet.clear()}getStyleForElement(Ge,Ot){const se=this.stylesheet.get(Ge);let We="";if(se){const bt=se.get(Ot);("number"==typeof bt||"string"==typeof bt)&&(We=bt+"")}return We}}return Be.\u0275fac=function(Ge){return new(Ge||Be)},Be.\u0275prov=Ce.jDH({token:Be,factory:Be.\u0275fac,providedIn:"root"}),Be})();const _e={addFlexToParent:!0,addOrientationBps:!1,disableDefaultBps:!1,disableVendorPrefixes:!1,serverLoaded:!1,useColumnBasisZero:!0,printWithBreakpoints:[],mediaTriggerAutoRestore:!0,ssrObserveBreakpoints:[],multiplier:void 0,defaultUnit:"px",detectLayoutDisplay:!1},he=new Ce.nKC("Flex Layout token, config options for the library",{providedIn:"root",factory:()=>_e}),Dt=new Ce.nKC("FlexLayoutServerLoaded",{providedIn:"root",factory:()=>!1}),lt=new Ce.nKC("Flex Layout token, collect all breakpoints into one provider",{providedIn:"root",factory:()=>null});function Le(Be,ut){return Be=Be?.clone()??new Re,ut&&(Be.mqAlias=ut.alias,Be.mediaQuery=ut.mediaQuery,Be.suffix=ut.suffix,Be.priority=ut.priority),Be}class te{constructor(){this.shouldCache=!0}sideEffect(ut,Ge,Ot){}}let ie=(()=>{class Be{constructor(Ge,Ot,se,We){this._serverStylesheet=Ge,this._serverModuleLoaded=Ot,this._platformId=se,this.layoutConfig=We}applyStyleToElement(Ge,Ot,se=null){let We={};"string"==typeof Ot&&(We[Ot]=se,Ot=We),We=this.layoutConfig.disableVendorPrefixes?Ot:(0,Ee.O5)(Ot),this._applyMultiValueStyleToElement(We,Ge)}applyStyleToElements(Ge,Ot=[]){const se=this.layoutConfig.disableVendorPrefixes?Ge:(0,Ee.O5)(Ge);Ot.forEach(We=>{this._applyMultiValueStyleToElement(se,We)})}getFlowDirection(Ge){const Ot="flex-direction";let se=this.lookupStyle(Ge,Ot);return[se||"row",this.lookupInlineStyle(Ge,Ot)||(0,j.Vy)(this._platformId)&&this._serverModuleLoaded?se:""]}hasWrap(Ge){return"wrap"===this.lookupStyle(Ge,"flex-wrap")}lookupAttributeValue(Ge,Ot){return Ge.getAttribute(Ot)??""}lookupInlineStyle(Ge,Ot){return(0,j.UE)(this._platformId)?Ge.style.getPropertyValue(Ot):function P(Be,ut){return H(Be)[ut]??""}(Ge,Ot)}lookupStyle(Ge,Ot,se=!1){let We="";return Ge&&((We=this.lookupInlineStyle(Ge,Ot))||((0,j.UE)(this._platformId)?se||(We=getComputedStyle(Ge).getPropertyValue(Ot)):this._serverModuleLoaded&&(We=this._serverStylesheet.getStyleForElement(Ge,Ot)))),We?We.trim():""}_applyMultiValueStyleToElement(Ge,Ot){Object.keys(Ge).sort().forEach(se=>{const We=Ge[se],bt=Array.isArray(We)?We:[We];bt.sort();for(let tn of bt)tn=tn?tn+"":"",(0,j.UE)(this._platformId)||!this._serverModuleLoaded?(0,j.UE)(this._platformId)?Ot.style.setProperty(se,tn):F(Ot,se,tn):this._serverStylesheet.addStyleToElement(Ot,se,tn)})}}return Be.\u0275fac=function(Ge){return new(Ge||Be)(Ce.KVO(Xe),Ce.KVO(Dt),Ce.KVO(Ae.Agw),Ce.KVO(he))},Be.\u0275prov=Ce.jDH({token:Be,factory:Be.\u0275fac,providedIn:"root"}),Be})();function F(Be,ut,Ge){ut=ut.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();const Ot=H(Be);Ot[ut]=Ge??"",function ve(Be,ut){let Ge="";for(const Ot in ut)ut[Ot]&&(Ge+=`${Ot}:${ut[Ot]};`);Be.setAttribute("style",Ge)}(Be,Ot)}function H(Be){const ut={},Ge=Be.getAttribute("style");if(Ge){const Ot=Ge.split(/;+/g);for(let se=0;se0){const bt=We.indexOf(":");if(-1===bt)throw new Error(`Invalid CSS style: ${We}`);ut[We.substr(0,bt).trim()]=We.substr(bt+1).trim()}}}return ut}function $(Be,ut){return(ut&&ut.priority||0)-(Be&&Be.priority||0)}function Ke(Be,ut){return(Be.priority||0)-(ut.priority||0)}let Vt=(()=>{class Be{constructor(Ge,Ot,se){this._zone=Ge,this._platformId=Ot,this._document=se,this.source=new re.t(new Re(!0)),this.registry=new Map,this.pendingRemoveListenerFns=[],this._observable$=this.source.asObservable()}get activations(){const Ge=[];return this.registry.forEach((Ot,se)=>{Ot.matches&&Ge.push(se)}),Ge}isActive(Ge){return this.registry.get(Ge)?.matches??this.registerQuery(Ge).some(se=>se.matches)}observe(Ge,Ot=!1){if(Ge&&Ge.length){const se=this._observable$.pipe((0,V.p)(bt=>!Ot||Ge.indexOf(bt.mediaQuery)>-1)),We=new W.c(bt=>{const tn=this.registerQuery(Ge);if(tn.length){const on=tn.pop();tn.forEach(un=>{bt.next(un)}),this.source.next(on)}bt.complete()});return(0,xe.h)(We,se)}return this._observable$}registerQuery(Ge){const Ot=Array.isArray(Ge)?Ge:[Ge],se=[];return function ot(Be,ut){const Ge=Be.filter(Ot=>!St[Ot]);if(Ge.length>0){const Ot=Ge.join(", ");try{const se=ut.createElement("style");se.setAttribute("type","text/css"),se.styleSheet||se.appendChild(ut.createTextNode(`\n/*\n @angular/flex-layout - workaround for possible browser quirk with mediaQuery listeners\n see http://bit.ly/2sd4HMP\n*/\n@media ${Ot} {.fx-query-test{ }}\n`)),ut.head.appendChild(se),Ge.forEach(We=>St[We]=se)}catch(se){console.error(se)}}}(Ot,this._document),Ot.forEach(We=>{const bt=on=>{this._zone.run(()=>this.source.next(new Re(on.matches,We)))};let tn=this.registry.get(We);tn||(tn=this.buildMQL(We),tn.addListener(bt),this.pendingRemoveListenerFns.push(()=>tn.removeListener(bt)),this.registry.set(We,tn)),tn.matches&&se.push(new Re(!0,We))}),se}ngOnDestroy(){let Ge;for(;Ge=this.pendingRemoveListenerFns.pop();)Ge()}buildMQL(Ge){return function ht(Be,ut){return ut&&window.matchMedia("all").addListener?window.matchMedia(Be):function nt(Be){const ut=new EventTarget;return ut.matches="all"===Be||""===Be,ut.media=Be,ut.addListener=()=>{},ut.removeListener=()=>{},ut.addEventListener=()=>{},ut.dispatchEvent=()=>!1,ut.onchange=null,ut}(Be)}(Ge,(0,j.UE)(this._platformId))}}return Be.\u0275fac=function(Ge){return new(Ge||Be)(Ce.KVO(Ae.SKi),Ce.KVO(Ae.Agw),Ce.KVO(Ce.qQL))},Be.\u0275prov=Ce.jDH({token:Be,factory:Be.\u0275fac,providedIn:"root"}),Be})();const St={},oe=[{alias:"xs",mediaQuery:"screen and (min-width: 0px) and (max-width: 599.98px)",priority:1e3},{alias:"sm",mediaQuery:"screen and (min-width: 600px) and (max-width: 959.98px)",priority:900},{alias:"md",mediaQuery:"screen and (min-width: 960px) and (max-width: 1279.98px)",priority:800},{alias:"lg",mediaQuery:"screen and (min-width: 1280px) and (max-width: 1919.98px)",priority:700},{alias:"xl",mediaQuery:"screen and (min-width: 1920px) and (max-width: 4999.98px)",priority:600},{alias:"lt-sm",overlapping:!0,mediaQuery:"screen and (max-width: 599.98px)",priority:950},{alias:"lt-md",overlapping:!0,mediaQuery:"screen and (max-width: 959.98px)",priority:850},{alias:"lt-lg",overlapping:!0,mediaQuery:"screen and (max-width: 1279.98px)",priority:750},{alias:"lt-xl",overlapping:!0,priority:650,mediaQuery:"screen and (max-width: 1919.98px)"},{alias:"gt-xs",overlapping:!0,mediaQuery:"screen and (min-width: 600px)",priority:-950},{alias:"gt-sm",overlapping:!0,mediaQuery:"screen and (min-width: 960px)",priority:-850},{alias:"gt-md",overlapping:!0,mediaQuery:"screen and (min-width: 1280px)",priority:-750},{alias:"gt-lg",overlapping:!0,mediaQuery:"screen and (min-width: 1920px)",priority:-650}],Ye="(orientation: portrait) and (max-width: 599.98px)",fe="(orientation: landscape) and (max-width: 959.98px)",Qe="(orientation: portrait) and (min-width: 600px) and (max-width: 839.98px)",gt="(orientation: landscape) and (min-width: 960px) and (max-width: 1279.98px)",Gt="(orientation: portrait) and (min-width: 840px)",rt="(orientation: landscape) and (min-width: 1280px)",cn={HANDSET:`${Ye}, ${fe}`,TABLET:`${Qe} , ${gt}`,WEB:`${Gt}, ${rt} `,HANDSET_PORTRAIT:`${Ye}`,TABLET_PORTRAIT:`${Qe} `,WEB_PORTRAIT:`${Gt}`,HANDSET_LANDSCAPE:`${fe}`,TABLET_LANDSCAPE:`${gt}`,WEB_LANDSCAPE:`${rt}`},Ft=[{alias:"handset",priority:2e3,mediaQuery:cn.HANDSET},{alias:"handset.landscape",priority:2e3,mediaQuery:cn.HANDSET_LANDSCAPE},{alias:"handset.portrait",priority:2e3,mediaQuery:cn.HANDSET_PORTRAIT},{alias:"tablet",priority:2100,mediaQuery:cn.TABLET},{alias:"tablet.landscape",priority:2100,mediaQuery:cn.TABLET_LANDSCAPE},{alias:"tablet.portrait",priority:2100,mediaQuery:cn.TABLET_PORTRAIT},{alias:"web",priority:2200,mediaQuery:cn.WEB,overlapping:!0},{alias:"web.landscape",priority:2200,mediaQuery:cn.WEB_LANDSCAPE,overlapping:!0},{alias:"web.portrait",priority:2200,mediaQuery:cn.WEB_PORTRAIT,overlapping:!0}],Sn=/(\.|-|_)/g;function Qn(Be){let ut=Be.length>0?Be.charAt(0):"",Ge=Be.length>1?Be.slice(1):"";return ut.toUpperCase()+Ge}const wt=new Ce.nKC("Token (@angular/flex-layout) Breakpoints",{providedIn:"root",factory:()=>{const Be=(0,Ce.WQX)(lt),ut=(0,Ce.WQX)(he),Ge=[].concat.apply([],(Be||[]).map(se=>Array.isArray(se)?se:[se]));return function Ue(Be,ut=[]){const Ge={};return Be.forEach(Ot=>{Ge[Ot.alias]=Ot}),ut.forEach(Ot=>{Ge[Ot.alias]?(0,Ee.C5)(Ge[Ot.alias],Ot):Ge[Ot.alias]=Ot}),function jt(Be){return Be.forEach(ut=>{ut.suffix||(ut.suffix=function h(Be){return Be.replace(Sn,"|").split("|").map(Qn).join("")}(ut.alias),ut.overlapping=!!ut.overlapping)}),Be}(Object.keys(Ge).map(Ot=>Ge[Ot]))}((ut.disableDefaultBps?[]:oe).concat(ut.addOrientationBps?Ft:[]),Ge)}});let pt=(()=>{class Be{constructor(Ge){this.findByMap=new Map,this.items=[...Ge].sort(Ke)}findByAlias(Ge){return Ge?this.findWithPredicate(Ge,Ot=>Ot.alias===Ge):null}findByQuery(Ge){return this.findWithPredicate(Ge,Ot=>Ot.mediaQuery===Ge)}get overlappings(){return this.items.filter(Ge=>Ge.overlapping)}get aliases(){return this.items.map(Ge=>Ge.alias)}get suffixes(){return this.items.map(Ge=>Ge?.suffix??"")}findWithPredicate(Ge,Ot){let se=this.findByMap.get(Ge);return se||(se=this.items.find(Ot)??null,this.findByMap.set(Ge,se)),se??null}}return Be.\u0275fac=function(Ge){return new(Ge||Be)(Ce.KVO(wt))},Be.\u0275prov=Ce.jDH({token:Be,factory:Be.\u0275fac,providedIn:"root"}),Be})();const Pt="print",gn={alias:Pt,mediaQuery:Pt,priority:1e3};let ei=(()=>{class Be{constructor(Ge,Ot,se){this.breakpoints=Ge,this.layoutConfig=Ot,this._document=se,this.registeredBeforeAfterPrintHooks=!1,this.isPrintingBeforeAfterEvent=!1,this.beforePrintEventListeners=[],this.afterPrintEventListeners=[],this.formerActivations=null,this.isPrinting=!1,this.queue=new vi,this.deactivations=[]}withPrintQuery(Ge){return[...Ge,Pt]}isPrintEvent(Ge){return Ge.mediaQuery.startsWith(Pt)}get printAlias(){return[...this.layoutConfig.printWithBreakpoints??[]]}get printBreakPoints(){return this.printAlias.map(Ge=>this.breakpoints.findByAlias(Ge)).filter(Ge=>null!==Ge)}getEventBreakpoints({mediaQuery:Ge}){const Ot=this.breakpoints.findByQuery(Ge);return(Ot?[...this.printBreakPoints,Ot]:this.printBreakPoints).sort($)}updateEvent(Ge){let Ot=this.breakpoints.findByQuery(Ge.mediaQuery);return this.isPrintEvent(Ge)&&(Ot=this.getEventBreakpoints(Ge)[0],Ge.mediaQuery=Ot?.mediaQuery??""),Le(Ge,Ot)}registerBeforeAfterPrintHooks(Ge){if(!this._document.defaultView||this.registeredBeforeAfterPrintHooks)return;this.registeredBeforeAfterPrintHooks=!0;const Ot=()=>{this.isPrinting||(this.isPrintingBeforeAfterEvent=!0,this.startPrinting(Ge,this.getEventBreakpoints(new Re(!0,Pt))),Ge.updateStyles())},se=()=>{this.isPrintingBeforeAfterEvent=!1,this.isPrinting&&(this.stopPrinting(Ge),Ge.updateStyles())};this._document.defaultView.addEventListener("beforeprint",Ot),this._document.defaultView.addEventListener("afterprint",se),this.beforePrintEventListeners.push(Ot),this.afterPrintEventListeners.push(se)}interceptEvents(Ge){return Ot=>{this.isPrintEvent(Ot)?Ot.matches&&!this.isPrinting?(this.startPrinting(Ge,this.getEventBreakpoints(Ot)),Ge.updateStyles()):!Ot.matches&&this.isPrinting&&!this.isPrintingBeforeAfterEvent&&(this.stopPrinting(Ge),Ge.updateStyles()):this.collectActivations(Ge,Ot)}}blockPropagation(){return Ge=>!(this.isPrinting||this.isPrintEvent(Ge))}startPrinting(Ge,Ot){this.isPrinting=!0,this.formerActivations=Ge.activatedBreakpoints,Ge.activatedBreakpoints=this.queue.addPrintBreakpoints(Ot)}stopPrinting(Ge){Ge.activatedBreakpoints=this.deactivations,this.deactivations=[],this.formerActivations=null,this.queue.clear(),this.isPrinting=!1}collectActivations(Ge,Ot){if(!this.isPrinting||this.isPrintingBeforeAfterEvent){if(!this.isPrintingBeforeAfterEvent)return void(this.deactivations=[]);if(!Ot.matches){const se=this.breakpoints.findByQuery(Ot.mediaQuery);if(se){const We=this.formerActivations&&this.formerActivations.includes(se),bt=!this.formerActivations&&Ge.activatedBreakpoints.includes(se);(We||bt)&&(this.deactivations.push(se),this.deactivations.sort($))}}}}ngOnDestroy(){this._document.defaultView&&(this.beforePrintEventListeners.forEach(Ge=>this._document.defaultView.removeEventListener("beforeprint",Ge)),this.afterPrintEventListeners.forEach(Ge=>this._document.defaultView.removeEventListener("afterprint",Ge)))}}return Be.\u0275fac=function(Ge){return new(Ge||Be)(Ce.KVO(pt),Ce.KVO(he),Ce.KVO(Ce.qQL))},Be.\u0275prov=Ce.jDH({token:Be,factory:Be.\u0275fac,providedIn:"root"}),Be})();class vi{constructor(){this.printBreakpoints=[]}addPrintBreakpoints(ut){return ut.push(gn),ut.sort($),ut.forEach(Ge=>this.addBreakpoint(Ge)),this.printBreakpoints}addBreakpoint(ut){ut&&void 0===this.printBreakpoints.find(Ot=>Ot.mediaQuery===ut.mediaQuery)&&(this.printBreakpoints=function Ni(Be){return Be?.mediaQuery.startsWith(Pt)??!1}(ut)?[ut,...this.printBreakpoints]:[...this.printBreakpoints,ut])}clear(){this.printBreakpoints=[]}}let kn=(()=>{class Be{constructor(Ge,Ot,se){this.matchMedia=Ge,this.breakpoints=Ot,this.hook=se,this._useFallbacks=!0,this._activatedBreakpoints=[],this.elementMap=new Map,this.elementKeyMap=new WeakMap,this.watcherMap=new WeakMap,this.updateMap=new WeakMap,this.clearMap=new WeakMap,this.subject=new G.B,this.observeActivations()}get activatedAlias(){return this.activatedBreakpoints[0]?.alias??""}set activatedBreakpoints(Ge){this._activatedBreakpoints=[...Ge]}get activatedBreakpoints(){return[...this._activatedBreakpoints]}set useFallbacks(Ge){this._useFallbacks=Ge}onMediaChange(Ge){const Ot=this.findByQuery(Ge.mediaQuery);if(Ot){Ge=Le(Ge,Ot);const se=this.activatedBreakpoints.indexOf(Ot);Ge.matches&&-1===se?(this._activatedBreakpoints.push(Ot),this._activatedBreakpoints.sort($),this.updateStyles()):!Ge.matches&&-1!==se&&(this._activatedBreakpoints.splice(se,1),this._activatedBreakpoints.sort($),this.updateStyles())}}init(Ge,Ot,se,We,bt=[]){Ri(this.updateMap,Ge,Ot,se),Ri(this.clearMap,Ge,Ot,We),this.buildElementKeyMap(Ge,Ot),this.watchExtraTriggers(Ge,Ot,bt)}getValue(Ge,Ot,se){const We=this.elementMap.get(Ge);if(We){const bt=void 0!==se?We.get(se):this.getActivatedValues(We,Ot);if(bt)return bt.get(Ot)}}hasValue(Ge,Ot){const se=this.elementMap.get(Ge);if(se){const We=this.getActivatedValues(se,Ot);if(We)return void 0!==We.get(Ot)||!1}return!1}setValue(Ge,Ot,se,We){let bt=this.elementMap.get(Ge);if(bt){const on=(bt.get(We)??new Map).set(Ot,se);bt.set(We,on),this.elementMap.set(Ge,bt)}else bt=(new Map).set(We,(new Map).set(Ot,se)),this.elementMap.set(Ge,bt);const tn=this.getValue(Ge,Ot);void 0!==tn&&this.updateElement(Ge,Ot,tn)}trackValue(Ge,Ot){return this.subject.asObservable().pipe((0,V.p)(se=>se.element===Ge&&se.key===Ot))}updateStyles(){this.elementMap.forEach((Ge,Ot)=>{const se=new Set(this.elementKeyMap.get(Ot));let We=this.getActivatedValues(Ge);We&&We.forEach((bt,tn)=>{this.updateElement(Ot,tn,bt),se.delete(tn)}),se.forEach(bt=>{if(We=this.getActivatedValues(Ge,bt),We){const tn=We.get(bt);this.updateElement(Ot,bt,tn)}else this.clearElement(Ot,bt)})})}clearElement(Ge,Ot){const se=this.clearMap.get(Ge);if(se){const We=se.get(Ot);We&&(We(),this.subject.next({element:Ge,key:Ot,value:""}))}}updateElement(Ge,Ot,se){const We=this.updateMap.get(Ge);if(We){const bt=We.get(Ot);bt&&(bt(se),this.subject.next({element:Ge,key:Ot,value:se}))}}releaseElement(Ge){const Ot=this.watcherMap.get(Ge);Ot&&(Ot.forEach(We=>We.unsubscribe()),this.watcherMap.delete(Ge));const se=this.elementMap.get(Ge);se&&(se.forEach((We,bt)=>se.delete(bt)),this.elementMap.delete(Ge))}triggerUpdate(Ge,Ot){const se=this.elementMap.get(Ge);if(se){const We=this.getActivatedValues(se,Ot);We&&(Ot?this.updateElement(Ge,Ot,We.get(Ot)):We.forEach((bt,tn)=>this.updateElement(Ge,tn,bt)))}}buildElementKeyMap(Ge,Ot){let se=this.elementKeyMap.get(Ge);se||(se=new Set,this.elementKeyMap.set(Ge,se)),se.add(Ot)}watchExtraTriggers(Ge,Ot,se){if(se&&se.length){let We=this.watcherMap.get(Ge);if(We||(We=new Map,this.watcherMap.set(Ge,We)),!We.get(Ot)){const tn=(0,xe.h)(...se).subscribe(()=>{const on=this.getValue(Ge,Ot);this.updateElement(Ge,Ot,on)});We.set(Ot,tn)}}}findByQuery(Ge){return this.breakpoints.findByQuery(Ge)}getActivatedValues(Ge,Ot){for(let We=0;WeOt.mediaQuery);this.hook.registerBeforeAfterPrintHooks(this),this.matchMedia.observe(this.hook.withPrintQuery(Ge)).pipe((0,ce.M)(this.hook.interceptEvents(this)),(0,V.p)(this.hook.blockPropagation())).subscribe(this.onMediaChange.bind(this))}}return Be.\u0275fac=function(Ge){return new(Ge||Be)(Ce.KVO(Vt),Ce.KVO(pt),Ce.KVO(ei))},Be.\u0275prov=Ce.jDH({token:Be,factory:Be.\u0275fac,providedIn:"root"}),Be})();function Ri(Be,ut,Ge,Ot){if(void 0!==Ot){const se=Be.get(ut)??new Map;se.set(Ge,Ot),Be.set(ut,se)}}let vt=(()=>{class Be{constructor(Ge,Ot,se,We){this.elementRef=Ge,this.styleBuilder=Ot,this.styler=se,this.marshal=We,this.DIRECTIVE_KEY="",this.inputs=[],this.mru={},this.destroySubject=new G.B,this.styleCache=new Map}get parentElement(){return this.elementRef.nativeElement.parentElement}get nativeElement(){return this.elementRef.nativeElement}get activatedValue(){return this.marshal.getValue(this.nativeElement,this.DIRECTIVE_KEY)}set activatedValue(Ge){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,Ge,this.marshal.activatedAlias)}ngOnChanges(Ge){Object.keys(Ge).forEach(Ot=>{if(-1!==this.inputs.indexOf(Ot)){const se=Ot.split(".").slice(1).join(".");this.setValue(Ge[Ot].currentValue,se)}})}ngOnDestroy(){this.destroySubject.next(),this.destroySubject.complete(),this.marshal.releaseElement(this.nativeElement)}init(Ge=[]){this.marshal.init(this.elementRef.nativeElement,this.DIRECTIVE_KEY,this.updateWithValue.bind(this),this.clearStyles.bind(this),Ge)}addStyles(Ge,Ot){const se=this.styleBuilder,We=se.shouldCache;let bt=this.styleCache.get(Ge);(!bt||!We)&&(bt=se.buildStyles(Ge,Ot),We&&this.styleCache.set(Ge,bt)),this.mru={...bt},this.applyStyleToElement(bt),se.sideEffect(Ge,bt,Ot)}clearStyles(){Object.keys(this.mru).forEach(Ge=>{this.mru[Ge]=""}),this.applyStyleToElement(this.mru),this.mru={},this.currentValue=void 0}triggerUpdate(){this.marshal.triggerUpdate(this.nativeElement,this.DIRECTIVE_KEY)}getFlexFlowDirection(Ge,Ot=!1){if(Ge){const[se,We]=this.styler.getFlowDirection(Ge);if(!We&&Ot){const bt=(0,Ee.uG)(se);this.styler.applyStyleToElements(bt,[Ge])}return se.trim()}return"row"}hasWrap(Ge){return this.styler.hasWrap(Ge)}applyStyleToElement(Ge,Ot,se=this.nativeElement){this.styler.applyStyleToElement(se,Ge,Ot)}setValue(Ge,Ot){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,Ge,Ot)}updateWithValue(Ge){this.currentValue!==Ge&&(this.addStyles(Ge),this.currentValue=Ge)}}return Be.\u0275fac=function(Ge){return new(Ge||Be)(Ae.rXU(Ae.aKT),Ae.rXU(te),Ae.rXU(ie),Ae.rXU(kn))},Be.\u0275dir=Ae.FsC({type:Be,standalone:!1,features:[Ae.OA$]}),Be})();function at(Be,ut="1",Ge="1"){let Ot=[ut,Ge,Be],se=Be.indexOf("calc");if(se>0){Ot[2]=qe(Be.substring(se).trim());let We=Be.substr(0,se).trim().split(" ");2==We.length&&(Ot[0]=We[0],Ot[1]=We[1])}else if(0==se)Ot[2]=qe(Be.trim());else{let We=Be.split(" ");Ot=3===We.length?We:[ut,Ge,Be]}return Ot}function qe(Be){return Be.replace(/[\s]/g,"").replace(/[\/\*\+\-]/g," $& ")}function Je(Be,ut){if(void 0===ut)return Be;const Ge=Ot=>{const se=+Ot.slice(0,-1);return Be.endsWith("x")&&!isNaN(se)?`${se*ut.value}${ut.unit}`:Be};return Be.includes(" ")?Be.split(" ").map(Ge).join(" "):Ge(Be)}EventTarget},6038(Zt,pe,l){"use strict";l.d(pe,{Cc:()=>P,PW:()=>W,eI:()=>Le});var i=l(7705),d=l(2615),v=l(3664),T=l(9340),w=l(2200),e=l(177),u=(l(4085),l(6977),l(345));let Ce=(()=>{class F extends T.DJ{constructor(H,$,Ke,Vt,St,ot,nt){super(H,null,$,Ke),this.ngClassInstance=nt,this.DIRECTIVE_KEY="ngClass",this.ngClassInstance||(this.ngClassInstance=new w.YU(Vt,St,H,ot)),this.init(),this.setValue("","")}set klass(H){this.ngClassInstance.klass=H,this.setValue(H,"")}updateWithValue(H){this.ngClassInstance.ngClass=H,this.ngClassInstance.ngDoCheck()}ngDoCheck(){this.ngClassInstance.ngDoCheck()}}return F.\u0275fac=function(H){return new(H||F)(v.rXU(v.aKT),v.rXU(T.ZH),v.rXU(T.qH),v.rXU(i._q3),v.rXU(i.MKu),v.rXU(v.sFG),v.rXU(w.YU,10))},F.\u0275dir=v.FsC({type:F,inputs:{klass:[0,"class","klass"]},standalone:!1,features:[v.Vt3]}),F})();const Ae=["ngClass","ngClass.xs","ngClass.sm","ngClass.md","ngClass.lg","ngClass.xl","ngClass.lt-sm","ngClass.lt-md","ngClass.lt-lg","ngClass.lt-xl","ngClass.gt-xs","ngClass.gt-sm","ngClass.gt-md","ngClass.gt-lg"];let W=(()=>{class F extends Ce{constructor(){super(...arguments),this.inputs=Ae}}return F.\u0275fac=(()=>{let ve;return function($){return(ve||(ve=v.xGo(F)))($||F)}})(),F.\u0275dir=v.FsC({type:F,selectors:[["","ngClass",""],["","ngClass.xs",""],["","ngClass.sm",""],["","ngClass.md",""],["","ngClass.lg",""],["","ngClass.xl",""],["","ngClass.lt-sm",""],["","ngClass.lt-md",""],["","ngClass.lt-lg",""],["","ngClass.lt-xl",""],["","ngClass.gt-xs",""],["","ngClass.gt-sm",""],["","ngClass.gt-md",""],["","ngClass.gt-lg",""]],inputs:{ngClass:"ngClass","ngClass.xs":"ngClass.xs","ngClass.sm":"ngClass.sm","ngClass.md":"ngClass.md","ngClass.lg":"ngClass.lg","ngClass.xl":"ngClass.xl","ngClass.lt-sm":"ngClass.lt-sm","ngClass.lt-md":"ngClass.lt-md","ngClass.lt-lg":"ngClass.lt-lg","ngClass.lt-xl":"ngClass.lt-xl","ngClass.gt-xs":"ngClass.gt-xs","ngClass.gt-sm":"ngClass.gt-sm","ngClass.gt-md":"ngClass.gt-md","ngClass.gt-lg":"ngClass.gt-lg"},standalone:!1,features:[v.Vt3]}),F})();class be{constructor(ve,H,$=!0){this.key=ve,this.value=H,this.key=$?ve.replace(/['"]/g,"").trim():ve.trim(),this.value=$?H.replace(/['"]/g,"").trim():H.trim(),this.value=this.value.replace(/;/,"")}}function ne(F){let ve=typeof F;return"object"===ve?F.constructor===Array?"array":F.constructor===Set?"set":"object":ve}function Xe(F){const[ve,...H]=F.split(":");return new be(ve,H.join(":"))}function _e(F,ve){return ve.key&&(F[ve.key]=ve.value),F}let he=(()=>{class F extends T.DJ{constructor(H,$,Ke,Vt,St,ot,nt,ht,oe){super(H,null,$,Ke),this.sanitizer=Vt,this.ngStyleInstance=nt,this.DIRECTIVE_KEY="ngStyle",this.ngStyleInstance||(this.ngStyleInstance=new w.B3(H,St,ot)),this.init();const Ye=this.nativeElement.getAttribute("style")??"";this.fallbackStyles=this.buildStyleMap(Ye),this.isServer=ht&&(0,e.Vy)(oe)}updateWithValue(H){const $=this.buildStyleMap(H);this.ngStyleInstance.ngStyle={...this.fallbackStyles,...$},this.isServer&&this.applyStyleToElement($),this.ngStyleInstance.ngDoCheck()}clearStyles(){this.ngStyleInstance.ngStyle=this.fallbackStyles,this.ngStyleInstance.ngDoCheck()}buildStyleMap(H){const $=Ke=>this.sanitizer.sanitize(v.WPN.STYLE,Ke)??"";if(H)switch(ne(H)){case"string":return te(function J(F,ve=";"){return String(F).trim().split(ve).map(H=>H.trim()).filter(H=>""!==H)}(H),$);case"array":return te(H,$);default:return function Re(F,ve){let H=[];return"set"===ne(F)?F.forEach($=>H.push($)):Object.keys(F).forEach($=>{H.push(`${$}:${F[$]}`)}),function De(F,ve){return F.map(Xe).filter($=>!!$).map($=>(ve&&($.value=ve($.value)),$)).reduce(_e,{})}(H,ve)}(H,$)}return{}}ngDoCheck(){this.ngStyleInstance.ngDoCheck()}}return F.\u0275fac=function(H){return new(H||F)(v.rXU(v.aKT),v.rXU(T.ZH),v.rXU(T.qH),v.rXU(u.up),v.rXU(i.MKu),v.rXU(v.sFG),v.rXU(w.B3,10),v.rXU(T.Ce),v.rXU(v.Agw))},F.\u0275dir=v.FsC({type:F,standalone:!1,features:[v.Vt3]}),F})();const Dt=["ngStyle","ngStyle.xs","ngStyle.sm","ngStyle.md","ngStyle.lg","ngStyle.xl","ngStyle.lt-sm","ngStyle.lt-md","ngStyle.lt-lg","ngStyle.lt-xl","ngStyle.gt-xs","ngStyle.gt-sm","ngStyle.gt-md","ngStyle.gt-lg"];let Le=(()=>{class F extends he{constructor(){super(...arguments),this.inputs=Dt}}return F.\u0275fac=(()=>{let ve;return function($){return(ve||(ve=v.xGo(F)))($||F)}})(),F.\u0275dir=v.FsC({type:F,selectors:[["","ngStyle",""],["","ngStyle.xs",""],["","ngStyle.sm",""],["","ngStyle.md",""],["","ngStyle.lg",""],["","ngStyle.xl",""],["","ngStyle.lt-sm",""],["","ngStyle.lt-md",""],["","ngStyle.lt-lg",""],["","ngStyle.lt-xl",""],["","ngStyle.gt-xs",""],["","ngStyle.gt-sm",""],["","ngStyle.gt-md",""],["","ngStyle.gt-lg",""]],inputs:{ngStyle:"ngStyle","ngStyle.xs":"ngStyle.xs","ngStyle.sm":"ngStyle.sm","ngStyle.md":"ngStyle.md","ngStyle.lg":"ngStyle.lg","ngStyle.xl":"ngStyle.xl","ngStyle.lt-sm":"ngStyle.lt-sm","ngStyle.lt-md":"ngStyle.lt-md","ngStyle.lt-lg":"ngStyle.lt-lg","ngStyle.lt-xl":"ngStyle.lt-xl","ngStyle.gt-xs":"ngStyle.gt-xs","ngStyle.gt-sm":"ngStyle.gt-sm","ngStyle.gt-md":"ngStyle.gt-md","ngStyle.gt-lg":"ngStyle.gt-lg"},standalone:!1,features:[v.Vt3]}),F})();function te(F,ve){return F.map(Xe).filter($=>!!$).map($=>(ve&&($.value=ve($.value)),$)).reduce(_e,{})}let P=(()=>{class F{}return F.\u0275fac=function(H){return new(H||F)},F.\u0275mod=v.$C({type:F}),F.\u0275inj=d.G2t({imports:[T.Ui]}),F})()},2920(Zt,pe,l){"use strict";l.d(pe,{DJ:()=>A,UI:()=>Dt,sA:()=>ei,w2:()=>ge});var i=l(2615),d=l(3664),T=(l(1577),l(8203)),w=l(9340),e=l(4545),f=(l(1413),l(6977));let u=(()=>{class N extends w.r3{buildStyles(Me,{display:at}){const qe=(0,e.uG)(Me);return{...qe,display:"none"===at?at:qe.display}}}return N.\u0275fac=(()=>{let Z;return function(at){return(Z||(Z=d.xGo(N)))(at||N)}})(),N.\u0275prov=i.jDH({token:N,factory:N.\u0275fac,providedIn:"root"}),N})();const L=["fxLayout","fxLayout.xs","fxLayout.sm","fxLayout.md","fxLayout.lg","fxLayout.xl","fxLayout.lt-sm","fxLayout.lt-md","fxLayout.lt-lg","fxLayout.lt-xl","fxLayout.gt-xs","fxLayout.gt-sm","fxLayout.gt-md","fxLayout.gt-lg"];let B=(()=>{class N extends w.DJ{constructor(Me,at,qe,pn,Je){super(Me,qe,at,pn),this._config=Je,this.DIRECTIVE_KEY="layout",this.init()}updateWithValue(Me){const qe=this._config.detectLayoutDisplay?this.styler.lookupStyle(this.nativeElement,"display"):"";this.styleCache=Pe.get(qe)??new Map,Pe.set(qe,this.styleCache),this.currentValue!==Me&&(this.addStyles(Me,{display:qe}),this.currentValue=Me)}}return N.\u0275fac=function(Me){return new(Me||N)(d.rXU(d.aKT),d.rXU(w.ZH),d.rXU(u),d.rXU(w.qH),d.rXU(w.EA))},N.\u0275dir=d.FsC({type:N,standalone:!1,features:[d.Vt3]}),N})(),A=(()=>{class N extends B{constructor(){super(...arguments),this.inputs=L}}return N.\u0275fac=(()=>{let Z;return function(at){return(Z||(Z=d.xGo(N)))(at||N)}})(),N.\u0275dir=d.FsC({type:N,selectors:[["","fxLayout",""],["","fxLayout.xs",""],["","fxLayout.sm",""],["","fxLayout.md",""],["","fxLayout.lg",""],["","fxLayout.xl",""],["","fxLayout.lt-sm",""],["","fxLayout.lt-md",""],["","fxLayout.lt-lg",""],["","fxLayout.lt-xl",""],["","fxLayout.gt-xs",""],["","fxLayout.gt-sm",""],["","fxLayout.gt-md",""],["","fxLayout.gt-lg",""]],inputs:{fxLayout:"fxLayout","fxLayout.xs":"fxLayout.xs","fxLayout.sm":"fxLayout.sm","fxLayout.md":"fxLayout.md","fxLayout.lg":"fxLayout.lg","fxLayout.xl":"fxLayout.xl","fxLayout.lt-sm":"fxLayout.lt-sm","fxLayout.lt-md":"fxLayout.lt-md","fxLayout.lt-lg":"fxLayout.lt-lg","fxLayout.lt-xl":"fxLayout.lt-xl","fxLayout.gt-xs":"fxLayout.gt-xs","fxLayout.gt-sm":"fxLayout.gt-sm","fxLayout.gt-md":"fxLayout.gt-md","fxLayout.gt-lg":"fxLayout.gt-lg"},standalone:!1,features:[d.Vt3]}),N})();const Pe=new Map;let Re=(()=>{class N extends w.r3{constructor(Me){super(),this.layoutConfig=Me}buildStyles(Me,at){let[qe,pn,...Je]=Me.split(" "),Be=Je.join(" ");const ut=at.direction.indexOf("column")>-1?"column":"row",Ge=(0,e.Vc)(ut)?"max-width":"max-height",Ot=(0,e.Vc)(ut)?"min-width":"min-height",se=String(Be).indexOf("calc")>-1,We=se||"auto"===Be,bt=String(Be).indexOf("%")>-1&&!se,tn=String(Be).indexOf("px")>-1||String(Be).indexOf("rem")>-1||String(Be).indexOf("em")>-1||String(Be).indexOf("vw")>-1||String(Be).indexOf("vh")>-1;let on=se||tn;qe="0"==qe?0:qe,pn="0"==pn?0:pn;const un=!qe&&!pn;let Nt={};const dn={"max-width":null,"max-height":null,"min-width":null,"min-height":null};switch(Be||""){case"":Be="row"===ut?"0%":!1!==this.layoutConfig.useColumnBasisZero?"0.000000001px":"auto";break;case"initial":case"nogrow":qe=0,Be="auto";break;case"grow":Be="100%";break;case"noshrink":pn=0,Be="auto";break;case"auto":break;case"none":qe=0,pn=0,Be="auto";break;default:!on&&!bt&&!isNaN(Be)&&(Be+="%"),"0%"===Be&&(on=!0),"0px"===Be&&(Be="0%"),Nt=(0,e.C5)(dn,se?{"flex-grow":qe,"flex-shrink":pn,"flex-basis":on?Be:"100%"}:{flex:`${qe} ${pn} ${on?Be:"100%"}`})}return Nt.flex||Nt["flex-grow"]||(Nt=(0,e.C5)(dn,se?{"flex-grow":qe,"flex-shrink":pn,"flex-basis":Be}:{flex:`${qe} ${pn} ${Be}`})),"0%"!==Be&&"0px"!==Be&&"0.000000001px"!==Be&&"auto"!==Be&&(Nt[Ot]=un||on&&qe?Be:null,Nt[Ge]=un||!We&&pn?Be:null),Nt[Ot]||Nt[Ge]?at.hasWrap&&(Nt[se?"flex-basis":"flex"]=Nt[Ge]?se?Nt[Ge]:`${qe} ${pn} ${Nt[Ge]}`:se?Nt[Ot]:`${qe} ${pn} ${Nt[Ot]}`):Nt=(0,e.C5)(dn,se?{"flex-grow":qe,"flex-shrink":pn,"flex-basis":Be}:{flex:`${qe} ${pn} ${Be}`}),(0,e.C5)(Nt,{"box-sizing":"border-box"})}}return N.\u0275fac=function(Me){return new(Me||N)(i.KVO(w.EA))},N.\u0275prov=i.jDH({token:N,factory:N.\u0275fac,providedIn:"root"}),N})();const Xe=["fxFlex","fxFlex.xs","fxFlex.sm","fxFlex.md","fxFlex.lg","fxFlex.xl","fxFlex.lt-sm","fxFlex.lt-md","fxFlex.lt-lg","fxFlex.lt-xl","fxFlex.gt-xs","fxFlex.gt-sm","fxFlex.gt-md","fxFlex.gt-lg"];let he=(()=>{class N extends w.DJ{constructor(Me,at,qe,pn,Je){super(Me,pn,at,Je),this.layoutConfig=qe,this.marshal=Je,this.DIRECTIVE_KEY="flex",this.direction=void 0,this.wrap=void 0,this.flexGrow="1",this.flexShrink="1",this.init()}get shrink(){return this.flexShrink}set shrink(Me){this.flexShrink=Me||"1",this.triggerReflow()}get grow(){return this.flexGrow}set grow(Me){this.flexGrow=Me||"1",this.triggerReflow()}ngOnInit(){this.parentElement&&(this.marshal.trackValue(this.parentElement,"layout").pipe((0,f.Q)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this)),this.marshal.trackValue(this.nativeElement,"layout-align").pipe((0,f.Q)(this.destroySubject)).subscribe(this.triggerReflow.bind(this)))}onLayoutChange(Me){const qe=Me.value.split(" ");this.direction=qe[0],this.wrap=void 0!==qe[1]&&"wrap"===qe[1],this.triggerUpdate()}updateWithValue(Me){void 0===this.direction&&(this.direction=this.getFlexFlowDirection(this.parentElement,!1!==this.layoutConfig.addFlexToParent)),void 0===this.wrap&&(this.wrap=this.hasWrap(this.parentElement));const qe=this.direction,pn=qe.startsWith("row"),Je=this.wrap;pn&&Je?this.styleCache=te:pn&&!Je?this.styleCache=lt:!pn&&Je?this.styleCache=ie:!pn&&!Je&&(this.styleCache=Le);const Be=String(Me).replace(";",""),ut=(0,w.hN)(Be,this.flexGrow,this.flexShrink);this.addStyles(ut.join(" "),{direction:qe,hasWrap:Je})}triggerReflow(){const Me=this.activatedValue;if(void 0!==Me){const at=(0,w.hN)(Me+"",this.flexGrow,this.flexShrink);this.marshal.updateElement(this.nativeElement,this.DIRECTIVE_KEY,at.join(" "))}}}return N.\u0275fac=function(Me){return new(Me||N)(d.rXU(d.aKT),d.rXU(w.ZH),d.rXU(w.EA),d.rXU(Re),d.rXU(w.qH))},N.\u0275dir=d.FsC({type:N,inputs:{shrink:[0,"fxShrink","shrink"],grow:[0,"fxGrow","grow"]},standalone:!1,features:[d.Vt3]}),N})(),Dt=(()=>{class N extends he{constructor(){super(...arguments),this.inputs=Xe}}return N.\u0275fac=(()=>{let Z;return function(at){return(Z||(Z=d.xGo(N)))(at||N)}})(),N.\u0275dir=d.FsC({type:N,selectors:[["","fxFlex",""],["","fxFlex.xs",""],["","fxFlex.sm",""],["","fxFlex.md",""],["","fxFlex.lg",""],["","fxFlex.xl",""],["","fxFlex.lt-sm",""],["","fxFlex.lt-md",""],["","fxFlex.lt-lg",""],["","fxFlex.lt-xl",""],["","fxFlex.gt-xs",""],["","fxFlex.gt-sm",""],["","fxFlex.gt-md",""],["","fxFlex.gt-lg",""]],inputs:{fxFlex:"fxFlex","fxFlex.xs":"fxFlex.xs","fxFlex.sm":"fxFlex.sm","fxFlex.md":"fxFlex.md","fxFlex.lg":"fxFlex.lg","fxFlex.xl":"fxFlex.xl","fxFlex.lt-sm":"fxFlex.lt-sm","fxFlex.lt-md":"fxFlex.lt-md","fxFlex.lt-lg":"fxFlex.lt-lg","fxFlex.lt-xl":"fxFlex.lt-xl","fxFlex.gt-xs":"fxFlex.gt-xs","fxFlex.gt-sm":"fxFlex.gt-sm","fxFlex.gt-md":"fxFlex.gt-md","fxFlex.gt-lg":"fxFlex.gt-lg"},standalone:!1,features:[d.Vt3]}),N})();const lt=new Map,Le=new Map,te=new Map,ie=new Map;let wt=(()=>{class N extends w.r3{buildStyles(Me,at){const qe={},[pn,Je]=Me.split(" ");switch(pn){case"center":qe["justify-content"]="center";break;case"space-around":qe["justify-content"]="space-around";break;case"space-between":qe["justify-content"]="space-between";break;case"space-evenly":qe["justify-content"]="space-evenly";break;case"end":case"flex-end":qe["justify-content"]="flex-end";break;default:qe["justify-content"]="flex-start"}switch(Je){case"start":case"flex-start":qe["align-items"]=qe["align-content"]="flex-start";break;case"center":qe["align-items"]=qe["align-content"]="center";break;case"end":case"flex-end":qe["align-items"]=qe["align-content"]="flex-end";break;case"space-between":qe["align-content"]="space-between",qe["align-items"]="stretch";break;case"space-around":qe["align-content"]="space-around",qe["align-items"]="stretch";break;case"baseline":qe["align-content"]="stretch",qe["align-items"]="baseline";break;default:qe["align-items"]=qe["align-content"]="stretch"}return(0,e.C5)(qe,{display:at.inline?"inline-flex":"flex","flex-direction":at.layout,"box-sizing":"border-box","max-width":"stretch"===Je?(0,e.Vc)(at.layout)?null:"100%":null,"max-height":"stretch"===Je&&(0,e.Vc)(at.layout)?"100%":null})}}return N.\u0275fac=(()=>{let Z;return function(at){return(Z||(Z=d.xGo(N)))(at||N)}})(),N.\u0275prov=i.jDH({token:N,factory:N.\u0275fac,providedIn:"root"}),N})();const pt=["fxLayoutAlign","fxLayoutAlign.xs","fxLayoutAlign.sm","fxLayoutAlign.md","fxLayoutAlign.lg","fxLayoutAlign.xl","fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg"];let gn=(()=>{class N extends w.DJ{constructor(Me,at,qe,pn){super(Me,qe,at,pn),this.DIRECTIVE_KEY="layout-align",this.layout="row",this.inline=!1,this.init(),this.marshal.trackValue(this.nativeElement,"layout").pipe((0,f.Q)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this))}updateWithValue(Me){const at=this.layout||"row",qe=this.inline;"row"===at&&qe?this.styleCache=vt:"row"!==at||qe?"row-reverse"===at&&qe?this.styleCache=ye:"row-reverse"!==at||qe?"column"===at&&qe?this.styleCache=ee:"column"!==at||qe?"column-reverse"===at&&qe?this.styleCache=ke:"column-reverse"===at&&!qe&&(this.styleCache=Ri):this.styleCache=Ni:this.styleCache=kn:this.styleCache=vi,this.addStyles(Me,{layout:at,inline:qe})}onLayoutChange(Me){const at=Me.value.split(" ");this.layout=at[0],this.inline=Me.value.includes("inline"),e.Uo.find(qe=>qe===this.layout)||(this.layout="row"),this.triggerUpdate()}}return N.\u0275fac=function(Me){return new(Me||N)(d.rXU(d.aKT),d.rXU(w.ZH),d.rXU(wt),d.rXU(w.qH))},N.\u0275dir=d.FsC({type:N,standalone:!1,features:[d.Vt3]}),N})(),ei=(()=>{class N extends gn{constructor(){super(...arguments),this.inputs=pt}}return N.\u0275fac=(()=>{let Z;return function(at){return(Z||(Z=d.xGo(N)))(at||N)}})(),N.\u0275dir=d.FsC({type:N,selectors:[["","fxLayoutAlign",""],["","fxLayoutAlign.xs",""],["","fxLayoutAlign.sm",""],["","fxLayoutAlign.md",""],["","fxLayoutAlign.lg",""],["","fxLayoutAlign.xl",""],["","fxLayoutAlign.lt-sm",""],["","fxLayoutAlign.lt-md",""],["","fxLayoutAlign.lt-lg",""],["","fxLayoutAlign.lt-xl",""],["","fxLayoutAlign.gt-xs",""],["","fxLayoutAlign.gt-sm",""],["","fxLayoutAlign.gt-md",""],["","fxLayoutAlign.gt-lg",""]],inputs:{fxLayoutAlign:"fxLayoutAlign","fxLayoutAlign.xs":"fxLayoutAlign.xs","fxLayoutAlign.sm":"fxLayoutAlign.sm","fxLayoutAlign.md":"fxLayoutAlign.md","fxLayoutAlign.lg":"fxLayoutAlign.lg","fxLayoutAlign.xl":"fxLayoutAlign.xl","fxLayoutAlign.lt-sm":"fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md":"fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg":"fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl":"fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs":"fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm":"fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md":"fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg":"fxLayoutAlign.gt-lg"},standalone:!1,features:[d.Vt3]}),N})();const vi=new Map,Ni=new Map,kn=new Map,Ri=new Map,vt=new Map,ee=new Map,ye=new Map,ke=new Map;let ge=(()=>{class N{}return N.\u0275fac=function(Me){return new(Me||N)},N.\u0275mod=d.$C({type:N}),N.\u0275inj=i.G2t({imports:[w.Ui,T.jI]}),N})()},9417(Zt,pe,l){"use strict";l.d(pe,{BC:()=>Sn,JD:()=>As,Q0:()=>Jt,VZ:()=>Jr,X1:()=>Sr,YN:()=>Ks,YS:()=>_r,ZU:()=>gt,cV:()=>Wn,cb:()=>Qn,cz:()=>Ee,hs:()=>Pi,j4:()=>Nn,k0:()=>be,kq:()=>Pe,l_:()=>Ze,me:()=>G,ok:()=>Or,qT:()=>Ve,vO:()=>Gt,vS:()=>Fe,zX:()=>Zr,ze:()=>Fs});var v=l(2615),T=l(3664),w=l(7705),e=l(9295),O=l(7303),f=l(1413),u=l(7468),L=l(2806),C=l(6354);let B=(()=>{class Ne{_renderer;_elementRef;onChange=q=>{};onTouched=()=>{};constructor(q,mt){this._renderer=q,this._elementRef=mt}setProperty(q,mt){this._renderer.setProperty(this._elementRef.nativeElement,q,mt)}registerOnTouched(q){this.onTouched=q}registerOnChange(q){this.onChange=q}setDisabledState(q){this.setProperty("disabled",q)}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(T.sFG),T.rXU(T.aKT))};static \u0275dir=T.FsC({type:Ne})}return Ne})(),A=(()=>{class Ne extends B{static \u0275fac=(()=>{let q;return function(ln){return(q||(q=T.xGo(Ne)))(ln||Ne)}})();static \u0275dir=T.FsC({type:Ne,features:[T.Vt3]})}return Ne})();const Pe=new v.nKC(""),Ae={provide:Pe,useExisting:(0,v.Rfq)(()=>G),multi:!0},W=new v.nKC("");let G=(()=>{class Ne extends B{_compositionMode;_composing=!1;constructor(q,mt,ln){super(q,mt),this._compositionMode=ln,null==this._compositionMode&&(this._compositionMode=!function j(){const Ne=(0,O.rb)()?(0,O.rb)().getUserAgent():"";return/android (\d+)/.test(Ne.toLowerCase())}())}writeValue(q){this.setProperty("value",q??"")}_handleInput(q){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(q)}_compositionStart(){this._composing=!0}_compositionEnd(q){this._composing=!1,this._compositionMode&&this.onChange(q)}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(T.sFG),T.rXU(T.aKT),T.rXU(W,8))};static \u0275dir=T.FsC({type:Ne,selectors:[["input","formControlName","",3,"type","checkbox"],["textarea","formControlName",""],["input","formControl","",3,"type","checkbox"],["textarea","formControl",""],["input","ngModel","",3,"type","checkbox"],["textarea","ngModel",""],["","ngDefaultControl",""]],hostBindings:function(mt,ln){1&mt&&T.bIt("input",function(ua){return ln._handleInput(ua.target.value)})("blur",function(){return ln.onTouched()})("compositionstart",function(){return ln._compositionStart()})("compositionend",function(ua){return ln._compositionEnd(ua.target.value)})},standalone:!1,features:[T.Jv_([Ae]),T.Vt3]})}return Ne})();function re(Ne){return null==Ne||0===xe(Ne)}function xe(Ne){return null==Ne?null:Array.isArray(Ne)||"string"==typeof Ne?Ne.length:Ne instanceof Set?Ne.size:null}const Ee=new v.nKC(""),V=new v.nKC(""),ce=/^(?=.{1,254}$)(?=.{1,64}@)[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;class be{static min(He){return ne(He)}static max(He){return J(He)}static required(He){return De(He)}static requiredTrue(He){return function Re(Ne){return!0===Ne.value?null:{required:!0}}(He)}static email(He){return function Xe(Ne){return re(Ne.value)||ce.test(Ne.value)?null:{email:!0}}(He)}static minLength(He){return function _e(Ne){return He=>{const q=He.value?.length??xe(He.value);return null===q||0===q?null:q{const q=He.value?.length??xe(He.value);return null!==q&&q>Ne?{maxlength:{requiredLength:Ne,actualLength:q}}:null}}(He)}static pattern(He){return function Dt(Ne){if(!Ne)return lt;let He,q;return"string"==typeof Ne?(q="","^"!==Ne.charAt(0)&&(q+="^"),q+=Ne,"$"!==Ne.charAt(Ne.length-1)&&(q+="$"),He=new RegExp(q)):(q=Ne.toString(),He=Ne),mt=>{if(re(mt.value))return null;const ln=mt.value;return He.test(ln)?null:{pattern:{requiredPattern:q,actualValue:ln}}}}(He)}static nullValidator(He){return null}static compose(He){return H(He)}static composeAsync(He){return Ke(He)}}function ne(Ne){return He=>{if(null==He.value||null==Ne)return null;const q=parseFloat(He.value);return!isNaN(q)&&q{if(null==He.value||null==Ne)return null;const q=parseFloat(He.value);return!isNaN(q)&&q>Ne?{max:{max:Ne,actual:He.value}}:null}}function De(Ne){return re(Ne.value)?{required:!0}:null}function lt(Ne){return null}function Le(Ne){return null!=Ne}function te(Ne){return(0,T.yLl)(Ne)?(0,L.H)(Ne):Ne}function ie(Ne){let He={};return Ne.forEach(q=>{He=null!=q?{...He,...q}:He}),0===Object.keys(He).length?null:He}function P(Ne,He){return He.map(q=>q(Ne))}function ve(Ne){return Ne.map(He=>function F(Ne){return!Ne.validate}(He)?He:q=>He.validate(q))}function H(Ne){if(!Ne)return null;const He=Ne.filter(Le);return 0==He.length?null:function(q){return ie(P(q,He))}}function $(Ne){return null!=Ne?H(ve(Ne)):null}function Ke(Ne){if(!Ne)return null;const He=Ne.filter(Le);return 0==He.length?null:function(q){const mt=P(q,He).map(te);return(0,u.p)(mt).pipe((0,C.T)(ie))}}function Vt(Ne){return null!=Ne?Ke(ve(Ne)):null}function St(Ne,He){return null===Ne?[He]:Array.isArray(Ne)?[...Ne,He]:[Ne,He]}function ot(Ne){return Ne._rawValidators}function nt(Ne){return Ne._rawAsyncValidators}function ht(Ne){return Ne?Array.isArray(Ne)?Ne:[Ne]:[]}function oe(Ne,He){return Array.isArray(Ne)?Ne.includes(He):Ne===He}function Ye(Ne,He){const q=ht(He);return ht(Ne).forEach(ln=>{oe(q,ln)||q.push(ln)}),q}function fe(Ne,He){return ht(He).filter(q=>!oe(Ne,q))}class Qe{get value(){return this.control?this.control.value:null}get valid(){return this.control?this.control.valid:null}get invalid(){return this.control?this.control.invalid:null}get pending(){return this.control?this.control.pending:null}get disabled(){return this.control?this.control.disabled:null}get enabled(){return this.control?this.control.enabled:null}get errors(){return this.control?this.control.errors:null}get pristine(){return this.control?this.control.pristine:null}get dirty(){return this.control?this.control.dirty:null}get touched(){return this.control?this.control.touched:null}get status(){return this.control?this.control.status:null}get untouched(){return this.control?this.control.untouched:null}get statusChanges(){return this.control?this.control.statusChanges:null}get valueChanges(){return this.control?this.control.valueChanges:null}get path(){return null}_composedValidatorFn;_composedAsyncValidatorFn;_rawValidators=[];_rawAsyncValidators=[];_setValidators(He){this._rawValidators=He||[],this._composedValidatorFn=$(this._rawValidators)}_setAsyncValidators(He){this._rawAsyncValidators=He||[],this._composedAsyncValidatorFn=Vt(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn||null}get asyncValidator(){return this._composedAsyncValidatorFn||null}_onDestroyCallbacks=[];_registerOnDestroy(He){this._onDestroyCallbacks.push(He)}_invokeOnDestroyCallbacks(){this._onDestroyCallbacks.forEach(He=>He()),this._onDestroyCallbacks=[]}reset(He=void 0){this.control&&this.control.reset(He)}hasError(He,q){return!!this.control&&this.control.hasError(He,q)}getError(He,q){return this.control?this.control.getError(He,q):null}}class gt extends Qe{name;get formDirective(){return null}get path(){return null}}class Gt extends Qe{_parent=null;name=null;valueAccessor=null}class rt{_cd;constructor(He){this._cd=He}get isTouched(){return this._cd?.control?._touched?.(),!!this._cd?.control?.touched}get isUntouched(){return!!this._cd?.control?.untouched}get isPristine(){return this._cd?.control?._pristine?.(),!!this._cd?.control?.pristine}get isDirty(){return!!this._cd?.control?.dirty}get isValid(){return this._cd?.control?._status?.(),!!this._cd?.control?.valid}get isInvalid(){return!!this._cd?.control?.invalid}get isPending(){return!!this._cd?.control?.pending}get isSubmitted(){return this._cd?._submitted?.(),!!this._cd?.submitted}}let Sn=(()=>{class Ne extends rt{constructor(q){super(q)}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(Gt,2))};static \u0275dir=T.FsC({type:Ne,selectors:[["","formControlName",""],["","ngModel",""],["","formControl",""]],hostVars:14,hostBindings:function(mt,ln){2&mt&&T.AVh("ng-untouched",ln.isUntouched)("ng-touched",ln.isTouched)("ng-pristine",ln.isPristine)("ng-dirty",ln.isDirty)("ng-valid",ln.isValid)("ng-invalid",ln.isInvalid)("ng-pending",ln.isPending)},standalone:!1,features:[T.Vt3]})}return Ne})(),Qn=(()=>{class Ne extends rt{constructor(q){super(q)}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(gt,10))};static \u0275dir=T.FsC({type:Ne,selectors:[["","formGroupName",""],["","formArrayName",""],["","ngModelGroup",""],["","formGroup",""],["form",3,"ngNoForm",""],["","ngForm",""]],hostVars:16,hostBindings:function(mt,ln){2&mt&&T.AVh("ng-untouched",ln.isUntouched)("ng-touched",ln.isTouched)("ng-pristine",ln.isPristine)("ng-dirty",ln.isDirty)("ng-valid",ln.isValid)("ng-invalid",ln.isInvalid)("ng-pending",ln.isPending)("ng-submitted",ln.isSubmitted)},standalone:!1,features:[T.Vt3]})}return Ne})();const N="VALID",Z="INVALID",Me="PENDING",at="DISABLED";class qe{}class pn extends qe{value;source;constructor(He,q){super(),this.value=He,this.source=q}}class Je extends qe{pristine;source;constructor(He,q){super(),this.pristine=He,this.source=q}}class Be extends qe{touched;source;constructor(He,q){super(),this.touched=He,this.source=q}}class ut extends qe{status;source;constructor(He,q){super(),this.status=He,this.source=q}}class Ge extends qe{source;constructor(He){super(),this.source=He}}class Ot extends qe{source;constructor(He){super(),this.source=He}}function se(Ne){return(on(Ne)?Ne.validators:Ne)||null}function bt(Ne,He){return(on(He)?He.asyncValidators:Ne)||null}function on(Ne){return null!=Ne&&!Array.isArray(Ne)&&"object"==typeof Ne}function un(Ne,He,q){const mt=Ne.controls;if(!(He?Object.keys(mt):mt).length)throw new v.buA(1e3,"");if(!mt[q])throw new v.buA(1001,"")}function Nt(Ne,He,q){Ne._forEachChild((mt,ln)=>{if(void 0===q[ln])throw new v.buA(1002,"")})}class dn{_pendingDirty=!1;_hasOwnPendingAsyncValidator=null;_pendingTouched=!1;_onCollectionChange=()=>{};_updateOn;_parent=null;_asyncValidationSubscription;_composedValidatorFn;_composedAsyncValidatorFn;_rawValidators;_rawAsyncValidators;value;constructor(He,q){this._assignValidators(He),this._assignAsyncValidators(q)}get validator(){return this._composedValidatorFn}set validator(He){this._rawValidators=this._composedValidatorFn=He}get asyncValidator(){return this._composedAsyncValidatorFn}set asyncValidator(He){this._rawAsyncValidators=this._composedAsyncValidatorFn=He}get parent(){return this._parent}get status(){return(0,e.O8)(this.statusReactive)}set status(He){(0,e.O8)(()=>this.statusReactive.set(He))}_status=(0,e.EW)(()=>this.statusReactive());statusReactive=(0,v.vPA)(void 0);get valid(){return this.status===N}get invalid(){return this.status===Z}get pending(){return this.status==Me}get disabled(){return this.status===at}get enabled(){return this.status!==at}errors;get pristine(){return(0,e.O8)(this.pristineReactive)}set pristine(He){(0,e.O8)(()=>this.pristineReactive.set(He))}_pristine=(0,e.EW)(()=>this.pristineReactive());pristineReactive=(0,v.vPA)(!0);get dirty(){return!this.pristine}get touched(){return(0,e.O8)(this.touchedReactive)}set touched(He){(0,e.O8)(()=>this.touchedReactive.set(He))}_touched=(0,e.EW)(()=>this.touchedReactive());touchedReactive=(0,v.vPA)(!1);get untouched(){return!this.touched}_events=new f.B;events=this._events.asObservable();valueChanges;statusChanges;get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"}setValidators(He){this._assignValidators(He)}setAsyncValidators(He){this._assignAsyncValidators(He)}addValidators(He){this.setValidators(Ye(He,this._rawValidators))}addAsyncValidators(He){this.setAsyncValidators(Ye(He,this._rawAsyncValidators))}removeValidators(He){this.setValidators(fe(He,this._rawValidators))}removeAsyncValidators(He){this.setAsyncValidators(fe(He,this._rawAsyncValidators))}hasValidator(He){return oe(this._rawValidators,He)}hasAsyncValidator(He){return oe(this._rawAsyncValidators,He)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(He={}){const q=!1===this.touched;this.touched=!0;const mt=He.sourceControl??this;this._parent&&!He.onlySelf&&this._parent.markAsTouched({...He,sourceControl:mt}),q&&!1!==He.emitEvent&&this._events.next(new Be(!0,mt))}markAllAsDirty(He={}){this.markAsDirty({onlySelf:!0,emitEvent:He.emitEvent,sourceControl:this}),this._forEachChild(q=>q.markAllAsDirty(He))}markAllAsTouched(He={}){this.markAsTouched({onlySelf:!0,emitEvent:He.emitEvent,sourceControl:this}),this._forEachChild(q=>q.markAllAsTouched(He))}markAsUntouched(He={}){const q=!0===this.touched;this.touched=!1,this._pendingTouched=!1;const mt=He.sourceControl??this;this._forEachChild(ln=>{ln.markAsUntouched({onlySelf:!0,emitEvent:He.emitEvent,sourceControl:mt})}),this._parent&&!He.onlySelf&&this._parent._updateTouched(He,mt),q&&!1!==He.emitEvent&&this._events.next(new Be(!1,mt))}markAsDirty(He={}){const q=!0===this.pristine;this.pristine=!1;const mt=He.sourceControl??this;this._parent&&!He.onlySelf&&this._parent.markAsDirty({...He,sourceControl:mt}),q&&!1!==He.emitEvent&&this._events.next(new Je(!1,mt))}markAsPristine(He={}){const q=!1===this.pristine;this.pristine=!0,this._pendingDirty=!1;const mt=He.sourceControl??this;this._forEachChild(ln=>{ln.markAsPristine({onlySelf:!0,emitEvent:He.emitEvent})}),this._parent&&!He.onlySelf&&this._parent._updatePristine(He,mt),q&&!1!==He.emitEvent&&this._events.next(new Je(!0,mt))}markAsPending(He={}){this.status=Me;const q=He.sourceControl??this;!1!==He.emitEvent&&(this._events.next(new ut(this.status,q)),this.statusChanges.emit(this.status)),this._parent&&!He.onlySelf&&this._parent.markAsPending({...He,sourceControl:q})}disable(He={}){const q=this._parentMarkedDirty(He.onlySelf);this.status=at,this.errors=null,this._forEachChild(ln=>{ln.disable({...He,onlySelf:!0})}),this._updateValue();const mt=He.sourceControl??this;!1!==He.emitEvent&&(this._events.next(new pn(this.value,mt)),this._events.next(new ut(this.status,mt)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors({...He,skipPristineCheck:q},this),this._onDisabledChange.forEach(ln=>ln(!0))}enable(He={}){const q=this._parentMarkedDirty(He.onlySelf);this.status=N,this._forEachChild(mt=>{mt.enable({...He,onlySelf:!0})}),this.updateValueAndValidity({onlySelf:!0,emitEvent:He.emitEvent}),this._updateAncestors({...He,skipPristineCheck:q},this),this._onDisabledChange.forEach(mt=>mt(!1))}_updateAncestors(He,q){this._parent&&!He.onlySelf&&(this._parent.updateValueAndValidity(He),He.skipPristineCheck||this._parent._updatePristine({},q),this._parent._updateTouched({},q))}setParent(He){this._parent=He}getRawValue(){return this.value}updateValueAndValidity(He={}){if(this._setInitialStatus(),this._updateValue(),this.enabled){const mt=this._cancelExistingSubscription();this.errors=this._runValidator(),this.status=this._calculateStatus(),(this.status===N||this.status===Me)&&this._runAsyncValidator(mt,He.emitEvent)}const q=He.sourceControl??this;!1!==He.emitEvent&&(this._events.next(new pn(this.value,q)),this._events.next(new ut(this.status,q)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!He.onlySelf&&this._parent.updateValueAndValidity({...He,sourceControl:q})}_updateTreeValidity(He={emitEvent:!0}){this._forEachChild(q=>q._updateTreeValidity(He)),this.updateValueAndValidity({onlySelf:!0,emitEvent:He.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?at:N}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(He,q){if(this.asyncValidator){this.status=Me,this._hasOwnPendingAsyncValidator={emitEvent:!1!==q,shouldHaveEmitted:!1!==He};const mt=te(this.asyncValidator(this));this._asyncValidationSubscription=mt.subscribe(ln=>{this._hasOwnPendingAsyncValidator=null,this.setErrors(ln,{emitEvent:q,shouldHaveEmitted:He})})}}_cancelExistingSubscription(){if(this._asyncValidationSubscription){this._asyncValidationSubscription.unsubscribe();const He=(this._hasOwnPendingAsyncValidator?.emitEvent||this._hasOwnPendingAsyncValidator?.shouldHaveEmitted)??!1;return this._hasOwnPendingAsyncValidator=null,He}return!1}setErrors(He,q={}){this.errors=He,this._updateControlsErrors(!1!==q.emitEvent,this,q.shouldHaveEmitted)}get(He){let q=He;return null==q||(Array.isArray(q)||(q=q.split(".")),0===q.length)?null:q.reduce((mt,ln)=>mt&&mt._find(ln),this)}getError(He,q){const mt=q?this.get(q):this;return mt&&mt.errors?mt.errors[He]:null}hasError(He,q){return!!this.getError(He,q)}get root(){let He=this;for(;He._parent;)He=He._parent;return He}_updateControlsErrors(He,q,mt){this.status=this._calculateStatus(),He&&this.statusChanges.emit(this.status),(He||mt)&&this._events.next(new ut(this.status,q)),this._parent&&this._parent._updateControlsErrors(He,q,mt)}_initObservables(){this.valueChanges=new T.bkB,this.statusChanges=new T.bkB}_calculateStatus(){return this._allControlsDisabled()?at:this.errors?Z:this._hasOwnPendingAsyncValidator||this._anyControlsHaveStatus(Me)?Me:this._anyControlsHaveStatus(Z)?Z:N}_anyControlsHaveStatus(He){return this._anyControls(q=>q.status===He)}_anyControlsDirty(){return this._anyControls(He=>He.dirty)}_anyControlsTouched(){return this._anyControls(He=>He.touched)}_updatePristine(He,q){const mt=!this._anyControlsDirty(),ln=this.pristine!==mt;this.pristine=mt,this._parent&&!He.onlySelf&&this._parent._updatePristine(He,q),ln&&this._events.next(new Je(this.pristine,q))}_updateTouched(He={},q){this.touched=this._anyControlsTouched(),this._events.next(new Be(this.touched,q)),this._parent&&!He.onlySelf&&this._parent._updateTouched(He,q)}_onDisabledChange=[];_registerOnCollectionChange(He){this._onCollectionChange=He}_setUpdateStrategy(He){on(He)&&null!=He.updateOn&&(this._updateOn=He.updateOn)}_parentMarkedDirty(He){return!He&&!(!this._parent||!this._parent.dirty)&&!this._parent._anyControlsDirty()}_find(He){return null}_assignValidators(He){this._rawValidators=Array.isArray(He)?He.slice():He,this._composedValidatorFn=function We(Ne){return Array.isArray(Ne)?$(Ne):Ne||null}(this._rawValidators)}_assignAsyncValidators(He){this._rawAsyncValidators=Array.isArray(He)?He.slice():He,this._composedAsyncValidatorFn=function tn(Ne){return Array.isArray(Ne)?Vt(Ne):Ne||null}(this._rawAsyncValidators)}}class xn extends dn{constructor(He,q,mt){super(se(q),bt(mt,q)),this.controls=He,this._initObservables(),this._setUpdateStrategy(q),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}controls;registerControl(He,q){return this.controls[He]?this.controls[He]:(this.controls[He]=q,q.setParent(this),q._registerOnCollectionChange(this._onCollectionChange),q)}addControl(He,q,mt={}){this.registerControl(He,q),this.updateValueAndValidity({emitEvent:mt.emitEvent}),this._onCollectionChange()}removeControl(He,q={}){this.controls[He]&&this.controls[He]._registerOnCollectionChange(()=>{}),delete this.controls[He],this.updateValueAndValidity({emitEvent:q.emitEvent}),this._onCollectionChange()}setControl(He,q,mt={}){this.controls[He]&&this.controls[He]._registerOnCollectionChange(()=>{}),delete this.controls[He],q&&this.registerControl(He,q),this.updateValueAndValidity({emitEvent:mt.emitEvent}),this._onCollectionChange()}contains(He){return this.controls.hasOwnProperty(He)&&this.controls[He].enabled}setValue(He,q={}){Nt(this,0,He),Object.keys(He).forEach(mt=>{un(this,!0,mt),this.controls[mt].setValue(He[mt],{onlySelf:!0,emitEvent:q.emitEvent})}),this.updateValueAndValidity(q)}patchValue(He,q={}){null!=He&&(Object.keys(He).forEach(mt=>{const ln=this.controls[mt];ln&&ln.patchValue(He[mt],{onlySelf:!0,emitEvent:q.emitEvent})}),this.updateValueAndValidity(q))}reset(He={},q={}){this._forEachChild((mt,ln)=>{mt.reset(He?He[ln]:null,{onlySelf:!0,emitEvent:q.emitEvent})}),this._updatePristine(q,this),this._updateTouched(q,this),this.updateValueAndValidity(q),!1!==q?.emitEvent&&this._events.next(new Ot(this))}getRawValue(){return this._reduceChildren({},(He,q,mt)=>(He[mt]=q.getRawValue(),He))}_syncPendingControls(){let He=this._reduceChildren(!1,(q,mt)=>!!mt._syncPendingControls()||q);return He&&this.updateValueAndValidity({onlySelf:!0}),He}_forEachChild(He){Object.keys(this.controls).forEach(q=>{const mt=this.controls[q];mt&&He(mt,q)})}_setUpControls(){this._forEachChild(He=>{He.setParent(this),He._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(He){for(const[q,mt]of Object.entries(this.controls))if(this.contains(q)&&He(mt))return!0;return!1}_reduceValue(){return this._reduceChildren({},(q,mt,ln)=>((mt.enabled||this.disabled)&&(q[ln]=mt.value),q))}_reduceChildren(He,q){let mt=He;return this._forEachChild((ln,Oi)=>{mt=q(mt,ln,Oi)}),mt}_allControlsDisabled(){for(const He of Object.keys(this.controls))if(this.controls[He].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}_find(He){return this.controls.hasOwnProperty(He)?this.controls[He]:null}}class Tt extends xn{}const we=new v.nKC("",{providedIn:"root",factory:()=>ae}),ae="always";function Lt(Ne,He){return[...He.path,Ne]}function Ht(Ne,He,q=ae){Qi(Ne,He),He.valueAccessor.writeValue(Ne.value),(Ne.disabled||"always"===q)&&He.valueAccessor.setDisabledState?.(Ne.disabled),function It(Ne,He){He.valueAccessor.registerOnChange(q=>{Ne._pendingValue=q,Ne._pendingChange=!0,Ne._pendingDirty=!0,"change"===Ne.updateOn&&Yt(Ne,He)})}(Ne,He),function Un(Ne,He){const q=(mt,ln)=>{He.valueAccessor.writeValue(mt),ln&&He.viewToModelUpdate(mt)};Ne.registerOnChange(q),He._registerOnDestroy(()=>{Ne._unregisterOnChange(q)})}(Ne,He),function an(Ne,He){He.valueAccessor.registerOnTouched(()=>{Ne._pendingTouched=!0,"blur"===Ne.updateOn&&Ne._pendingChange&&Yt(Ne,He),"submit"!==Ne.updateOn&&Ne.markAsTouched()})}(Ne,He),function bi(Ne,He){if(He.valueAccessor.setDisabledState){const q=mt=>{He.valueAccessor.setDisabledState(mt)};Ne.registerOnDisabledChange(q),He._registerOnDestroy(()=>{Ne._unregisterOnDisabledChange(q)})}}(Ne,He)}function _n(Ne,He,q=!0){const mt=()=>{};He.valueAccessor&&(He.valueAccessor.registerOnChange(mt),He.valueAccessor.registerOnTouched(mt)),zi(Ne,He),Ne&&(He._invokeOnDestroyCallbacks(),Ne._registerOnCollectionChange(()=>{}))}function fi(Ne,He){Ne.forEach(q=>{q.registerOnValidatorChange&&q.registerOnValidatorChange(He)})}function Qi(Ne,He){const q=ot(Ne);null!==He.validator?Ne.setValidators(St(q,He.validator)):"function"==typeof q&&Ne.setValidators([q]);const mt=nt(Ne);null!==He.asyncValidator?Ne.setAsyncValidators(St(mt,He.asyncValidator)):"function"==typeof mt&&Ne.setAsyncValidators([mt]);const ln=()=>Ne.updateValueAndValidity();fi(He._rawValidators,ln),fi(He._rawAsyncValidators,ln)}function zi(Ne,He){let q=!1;if(null!==Ne){if(null!==He.validator){const ln=ot(Ne);if(Array.isArray(ln)&&ln.length>0){const Oi=ln.filter(ua=>ua!==He.validator);Oi.length!==ln.length&&(q=!0,Ne.setValidators(Oi))}}if(null!==He.asyncValidator){const ln=nt(Ne);if(Array.isArray(ln)&&ln.length>0){const Oi=ln.filter(ua=>ua!==He.asyncValidator);Oi.length!==ln.length&&(q=!0,Ne.setAsyncValidators(Oi))}}}const mt=()=>{};return fi(He._rawValidators,mt),fi(He._rawAsyncValidators,mt),q}function Yt(Ne,He){Ne._pendingDirty&&Ne.markAsDirty(),Ne.setValue(Ne._pendingValue,{emitModelToViewChange:!1}),He.viewToModelUpdate(Ne._pendingValue),Ne._pendingChange=!1}function zn(Ne,He){Qi(Ne,He)}function ii(Ne,He){if(!Ne.hasOwnProperty("model"))return!1;const q=Ne.model;return!!q.isFirstChange()||!Object.is(He,q.currentValue)}function ia(Ne,He){Ne._syncPendingControls(),He.forEach(q=>{const mt=q.control;"submit"===mt.updateOn&&mt._pendingChange&&(q.viewToModelUpdate(mt._pendingValue),mt._pendingChange=!1)})}function ra(Ne,He){if(!He)return null;let q,mt,ln;return Array.isArray(He),He.forEach(Oi=>{Oi.constructor===G?q=Oi:function Bn(Ne){return Object.getPrototypeOf(Ne.constructor)===A}(Oi)?mt=Oi:ln=Oi}),ln||mt||q||null}const qt={provide:gt,useExisting:(0,v.Rfq)(()=>Wn)},En=Promise.resolve();let Wn=(()=>{class Ne extends gt{callSetDisabledState;get submitted(){return(0,e.O8)(this.submittedReactive)}_submitted=(0,e.EW)(()=>this.submittedReactive());submittedReactive=(0,v.vPA)(!1);_directives=new Set;form;ngSubmit=new T.bkB;options;constructor(q,mt,ln){super(),this.callSetDisabledState=ln,this.form=new xn({},$(q),Vt(mt))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(q){En.then(()=>{const mt=this._findContainer(q.path);q.control=mt.registerControl(q.name,q.control),Ht(q.control,q,this.callSetDisabledState),q.control.updateValueAndValidity({emitEvent:!1}),this._directives.add(q)})}getControl(q){return this.form.get(q.path)}removeControl(q){En.then(()=>{const mt=this._findContainer(q.path);mt&&mt.removeControl(q.name),this._directives.delete(q)})}addFormGroup(q){En.then(()=>{const mt=this._findContainer(q.path),ln=new xn({});zn(ln,q),mt.registerControl(q.name,ln),ln.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(q){En.then(()=>{const mt=this._findContainer(q.path);mt&&mt.removeControl(q.name)})}getFormGroup(q){return this.form.get(q.path)}updateModel(q,mt){En.then(()=>{this.form.get(q.path).setValue(mt)})}setValue(q){this.control.setValue(q)}onSubmit(q){return this.submittedReactive.set(!0),ia(this.form,this._directives),this.ngSubmit.emit(q),this.form._events.next(new Ge(this.control)),"dialog"===q?.target?.method}onReset(){this.resetForm()}resetForm(q=void 0){this.form.reset(q),this.submittedReactive.set(!1)}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}_findContainer(q){return q.pop(),q.length?this.form.get(q):this.form}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(Ee,10),T.rXU(V,10),T.rXU(we,8))};static \u0275dir=T.FsC({type:Ne,selectors:[["form",3,"ngNoForm","",3,"formGroup",""],["ng-form"],["","ngForm",""]],hostBindings:function(mt,ln){1&mt&&T.bIt("submit",function(ua){return ln.onSubmit(ua)})("reset",function(){return ln.onReset()})},inputs:{options:[0,"ngFormOptions","options"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],standalone:!1,features:[T.Jv_([qt]),T.Vt3]})}return Ne})();function ri(Ne,He){const q=Ne.indexOf(He);q>-1&&Ne.splice(q,1)}function Rn(Ne){return"object"==typeof Ne&&null!==Ne&&2===Object.keys(Ne).length&&"value"in Ne&&"disabled"in Ne}const Hn=class extends dn{defaultValue=null;_onChange=[];_pendingValue;_pendingChange=!1;constructor(He=null,q,mt){super(se(q),bt(mt,q)),this._applyFormState(He),this._setUpdateStrategy(q),this._initObservables(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator}),on(q)&&(q.nonNullable||q.initialValueIsDefault)&&(this.defaultValue=Rn(He)?He.value:He)}setValue(He,q={}){this.value=this._pendingValue=He,this._onChange.length&&!1!==q.emitModelToViewChange&&this._onChange.forEach(mt=>mt(this.value,!1!==q.emitViewToModelChange)),this.updateValueAndValidity(q)}patchValue(He,q={}){this.setValue(He,q)}reset(He=this.defaultValue,q={}){this._applyFormState(He),this.markAsPristine(q),this.markAsUntouched(q),this.setValue(this.value,q),this._pendingChange=!1,!1!==q?.emitEvent&&this._events.next(new Ot(this))}_updateValue(){}_anyControls(He){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(He){this._onChange.push(He)}_unregisterOnChange(He){ri(this._onChange,He)}registerOnDisabledChange(He){this._onDisabledChange.push(He)}_unregisterOnDisabledChange(He){ri(this._onDisabledChange,He)}_forEachChild(He){}_syncPendingControls(){return!("submit"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))}_applyFormState(He){Rn(He)?(this.value=this._pendingValue=He.value,He.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=He}},Pi=Hn,Wi={provide:Gt,useExisting:(0,v.Rfq)(()=>Fe)},Ca=Promise.resolve();let Fe=(()=>{class Ne extends Gt{_changeDetectorRef;callSetDisabledState;control=new Hn;static ngAcceptInputType_isDisabled;_registered=!1;viewModel;name="";isDisabled;model;options;update=new T.bkB;constructor(q,mt,ln,Oi,ua,Es){super(),this._changeDetectorRef=ua,this.callSetDisabledState=Es,this._parent=q,this._setValidators(mt),this._setAsyncValidators(ln),this.valueAccessor=ra(0,Oi)}ngOnChanges(q){if(this._checkForErrors(),!this._registered||"name"in q){if(this._registered&&(this._checkName(),this.formDirective)){const mt=q.name.previousValue;this.formDirective.removeControl({name:mt,path:this._getPath(mt)})}this._setUpControl()}"isDisabled"in q&&this._updateDisabled(q),ii(q,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}get path(){return this._getPath(this.name)}get formDirective(){return this._parent?this._parent.formDirective:null}viewToModelUpdate(q){this.viewModel=q,this.update.emit(q)}_setUpControl(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)}_isStandalone(){return!this._parent||!(!this.options||!this.options.standalone)}_setUpStandalone(){Ht(this.control,this,this.callSetDisabledState),this.control.updateValueAndValidity({emitEvent:!1})}_checkForErrors(){this._checkName()}_checkName(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()}_updateValue(q){Ca.then(()=>{this.control.setValue(q,{emitViewToModelChange:!1}),this._changeDetectorRef?.markForCheck()})}_updateDisabled(q){const mt=q.isDisabled.currentValue,ln=0!==mt&&(0,w.L39)(mt);Ca.then(()=>{ln&&!this.control.disabled?this.control.disable():!ln&&this.control.disabled&&this.control.enable(),this._changeDetectorRef?.markForCheck()})}_getPath(q){return this._parent?Lt(q,this._parent):[q]}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(gt,9),T.rXU(Ee,10),T.rXU(V,10),T.rXU(Pe,10),T.rXU(w.gRc,8),T.rXU(we,8))};static \u0275dir=T.FsC({type:Ne,selectors:[["","ngModel","",3,"formControlName","",3,"formControl",""]],inputs:{name:"name",isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"],options:[0,"ngModelOptions","options"]},outputs:{update:"ngModelChange"},exportAs:["ngModel"],standalone:!1,features:[T.Jv_([Wi]),T.Vt3,T.OA$]})}return Ne})(),Ve=(()=>{class Ne{static \u0275fac=function(mt){return new(mt||Ne)};static \u0275dir=T.FsC({type:Ne,selectors:[["form",3,"ngNoForm","",3,"ngNativeValidate",""]],hostAttrs:["novalidate",""],standalone:!1})}return Ne})();const Et={provide:Pe,useExisting:(0,v.Rfq)(()=>Jt),multi:!0};let Jt=(()=>{class Ne extends A{writeValue(q){this.setProperty("value",q??"")}registerOnChange(q){this.onChange=mt=>{q(""==mt?null:parseFloat(mt))}}static \u0275fac=(()=>{let q;return function(ln){return(q||(q=T.xGo(Ne)))(ln||Ne)}})();static \u0275dir=T.FsC({type:Ne,selectors:[["input","type","number","formControlName",""],["input","type","number","formControl",""],["input","type","number","ngModel",""]],hostBindings:function(mt,ln){1&mt&&T.bIt("input",function(ua){return ln.onChange(ua.target.value)})("blur",function(){return ln.onTouched()})},standalone:!1,features:[T.Jv_([Et]),T.Vt3]})}return Ne})();const U=new v.nKC(""),tt={provide:Gt,useExisting:(0,v.Rfq)(()=>Ze)};let Ze=(()=>{class Ne extends Gt{_ngModelWarningConfig;callSetDisabledState;viewModel;form;set isDisabled(q){}model;update=new T.bkB;static _ngModelWarningSentOnce=!1;_ngModelWarningSent=!1;constructor(q,mt,ln,Oi,ua){super(),this._ngModelWarningConfig=Oi,this.callSetDisabledState=ua,this._setValidators(q),this._setAsyncValidators(mt),this.valueAccessor=ra(0,ln)}ngOnChanges(q){if(this._isControlChanged(q)){const mt=q.form.previousValue;mt&&_n(mt,this,!1),Ht(this.form,this,this.callSetDisabledState),this.form.updateValueAndValidity({emitEvent:!1})}ii(q,this.viewModel)&&(this.form.setValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.form&&_n(this.form,this,!1)}get path(){return[]}get control(){return this.form}viewToModelUpdate(q){this.viewModel=q,this.update.emit(q)}_isControlChanged(q){return q.hasOwnProperty("form")}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(Ee,10),T.rXU(V,10),T.rXU(Pe,10),T.rXU(U,8),T.rXU(we,8))};static \u0275dir=T.FsC({type:Ne,selectors:[["","formControl",""]],inputs:{form:[0,"formControl","form"],isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"]},outputs:{update:"ngModelChange"},exportAs:["ngForm"],standalone:!1,features:[T.Jv_([tt]),T.Vt3,T.OA$]})}return Ne})();const Xt={provide:gt,useExisting:(0,v.Rfq)(()=>Nn)};let Nn=(()=>{class Ne extends gt{callSetDisabledState;get submitted(){return(0,e.O8)(this._submittedReactive)}set submitted(q){this._submittedReactive.set(q)}_submitted=(0,e.EW)(()=>this._submittedReactive());_submittedReactive=(0,v.vPA)(!1);_oldForm;_onCollectionChange=()=>this._updateDomValue();directives=[];form=null;ngSubmit=new T.bkB;constructor(q,mt,ln){super(),this.callSetDisabledState=ln,this._setValidators(q),this._setAsyncValidators(mt)}ngOnChanges(q){q.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations(),this._oldForm=this.form)}ngOnDestroy(){this.form&&(zi(this.form,this),this.form._onCollectionChange===this._onCollectionChange&&this.form._registerOnCollectionChange(()=>{}))}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(q){const mt=this.form.get(q.path);return Ht(mt,q,this.callSetDisabledState),mt.updateValueAndValidity({emitEvent:!1}),this.directives.push(q),mt}getControl(q){return this.form.get(q.path)}removeControl(q){_n(q.control||null,q,!1),function fa(Ne,He){const q=Ne.indexOf(He);q>-1&&Ne.splice(q,1)}(this.directives,q)}addFormGroup(q){this._setUpFormContainer(q)}removeFormGroup(q){this._cleanUpFormContainer(q)}getFormGroup(q){return this.form.get(q.path)}addFormArray(q){this._setUpFormContainer(q)}removeFormArray(q){this._cleanUpFormContainer(q)}getFormArray(q){return this.form.get(q.path)}updateModel(q,mt){this.form.get(q.path).setValue(mt)}onSubmit(q){return this._submittedReactive.set(!0),ia(this.form,this.directives),this.ngSubmit.emit(q),this.form._events.next(new Ge(this.control)),"dialog"===q?.target?.method}onReset(){this.resetForm()}resetForm(q=void 0,mt={}){this.form.reset(q,mt),this._submittedReactive.set(!1)}_updateDomValue(){this.directives.forEach(q=>{const mt=q.control,ln=this.form.get(q.path);mt!==ln&&(_n(mt||null,q),(Ne=>Ne instanceof Hn)(ln)&&(Ht(ln,q,this.callSetDisabledState),q.control=ln))}),this.form._updateTreeValidity({emitEvent:!1})}_setUpFormContainer(q){const mt=this.form.get(q.path);zn(mt,q),mt.updateValueAndValidity({emitEvent:!1})}_cleanUpFormContainer(q){if(this.form){const mt=this.form.get(q.path);mt&&function Fn(Ne,He){return zi(Ne,He)}(mt,q)&&mt.updateValueAndValidity({emitEvent:!1})}}_updateRegistrations(){this.form._registerOnCollectionChange(this._onCollectionChange),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{})}_updateValidators(){Qi(this.form,this),this._oldForm&&zi(this._oldForm,this)}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(Ee,10),T.rXU(V,10),T.rXU(we,8))};static \u0275dir=T.FsC({type:Ne,selectors:[["","formGroup",""]],hostBindings:function(mt,ln){1&mt&&T.bIt("submit",function(ua){return ln.onSubmit(ua)})("reset",function(){return ln.onReset()})},inputs:{form:[0,"formGroup","form"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],standalone:!1,features:[T.Jv_([Xt]),T.Vt3,T.OA$]})}return Ne})();const Ga={provide:Gt,useExisting:(0,v.Rfq)(()=>As)};let As=(()=>{class Ne extends Gt{_ngModelWarningConfig;_added=!1;viewModel;control;name=null;set isDisabled(q){}model;update=new T.bkB;static _ngModelWarningSentOnce=!1;_ngModelWarningSent=!1;constructor(q,mt,ln,Oi,ua){super(),this._ngModelWarningConfig=ua,this._parent=q,this._setValidators(mt),this._setAsyncValidators(ln),this.valueAccessor=ra(0,Oi)}ngOnChanges(q){this._added||this._setUpControl(),ii(q,this.viewModel)&&(this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(q){this.viewModel=q,this.update.emit(q)}get path(){return Lt(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}_setUpControl(){this.control=this.formDirective.addControl(this),this._added=!0}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(gt,13),T.rXU(Ee,10),T.rXU(V,10),T.rXU(Pe,10),T.rXU(U,8))};static \u0275dir=T.FsC({type:Ne,selectors:[["","formControlName",""]],inputs:{name:[0,"formControlName","name"],isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"]},outputs:{update:"ngModelChange"},standalone:!1,features:[T.Jv_([Ga]),T.Vt3,T.OA$]})}return Ne})();function kr(Ne){return"number"==typeof Ne?Ne:parseFloat(Ne)}let js=(()=>{class Ne{_validator=lt;_onChange;_enabled;ngOnChanges(q){if(this.inputName in q){const mt=this.normalizeInput(q[this.inputName].currentValue);this._enabled=this.enabled(mt),this._validator=this._enabled?this.createValidator(mt):lt,this._onChange&&this._onChange()}}validate(q){return this._validator(q)}registerOnValidatorChange(q){this._onChange=q}enabled(q){return null!=q}static \u0275fac=function(mt){return new(mt||Ne)};static \u0275dir=T.FsC({type:Ne,features:[T.OA$]})}return Ne})();const Vo={provide:Ee,useExisting:(0,v.Rfq)(()=>Zr),multi:!0};let Zr=(()=>{class Ne extends js{max;inputName="max";normalizeInput=q=>kr(q);createValidator=q=>J(q);static \u0275fac=(()=>{let q;return function(ln){return(q||(q=T.xGo(Ne)))(ln||Ne)}})();static \u0275dir=T.FsC({type:Ne,selectors:[["input","type","number","max","","formControlName",""],["input","type","number","max","","formControl",""],["input","type","number","max","","ngModel",""]],hostVars:1,hostBindings:function(mt,ln){2&mt&&T.BMQ("max",ln._enabled?ln.max:null)},inputs:{max:"max"},standalone:!1,features:[T.Jv_([Vo]),T.Vt3]})}return Ne})();const qo={provide:Ee,useExisting:(0,v.Rfq)(()=>Jr),multi:!0};let Jr=(()=>{class Ne extends js{min;inputName="min";normalizeInput=q=>kr(q);createValidator=q=>ne(q);static \u0275fac=(()=>{let q;return function(ln){return(q||(q=T.xGo(Ne)))(ln||Ne)}})();static \u0275dir=T.FsC({type:Ne,selectors:[["input","type","number","min","","formControlName",""],["input","type","number","min","","formControl",""],["input","type","number","min","","ngModel",""]],hostVars:1,hostBindings:function(mt,ln){2&mt&&T.BMQ("min",ln._enabled?ln.min:null)},inputs:{min:"min"},standalone:!1,features:[T.Jv_([qo]),T.Vt3]})}return Ne})();const Co={provide:Ee,useExisting:(0,v.Rfq)(()=>_r),multi:!0};let _r=(()=>{class Ne extends js{required;inputName="required";normalizeInput=w.L39;createValidator=q=>De;enabled(q){return q}static \u0275fac=(()=>{let q;return function(ln){return(q||(q=T.xGo(Ne)))(ln||Ne)}})();static \u0275dir=T.FsC({type:Ne,selectors:[["","required","","formControlName","",3,"type","checkbox"],["","required","","formControl","",3,"type","checkbox"],["","required","","ngModel","",3,"type","checkbox"]],hostVars:1,hostBindings:function(mt,ln){2&mt&&T.BMQ("required",ln._enabled?"":null)},inputs:{required:"required"},standalone:!1,features:[T.Jv_([Co]),T.Vt3]})}return Ne})(),er=(()=>{class Ne{static \u0275fac=function(mt){return new(mt||Ne)};static \u0275mod=T.$C({type:Ne});static \u0275inj=v.G2t({})}return Ne})();class Xs extends dn{constructor(He,q,mt){super(se(q),bt(mt,q)),this.controls=He,this._initObservables(),this._setUpdateStrategy(q),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}controls;at(He){return this.controls[this._adjustIndex(He)]}push(He,q={}){Array.isArray(He)?He.forEach(mt=>{this.controls.push(mt),this._registerControl(mt)}):(this.controls.push(He),this._registerControl(He)),this.updateValueAndValidity({emitEvent:q.emitEvent}),this._onCollectionChange()}insert(He,q,mt={}){this.controls.splice(He,0,q),this._registerControl(q),this.updateValueAndValidity({emitEvent:mt.emitEvent})}removeAt(He,q={}){let mt=this._adjustIndex(He);mt<0&&(mt=0),this.controls[mt]&&this.controls[mt]._registerOnCollectionChange(()=>{}),this.controls.splice(mt,1),this.updateValueAndValidity({emitEvent:q.emitEvent})}setControl(He,q,mt={}){let ln=this._adjustIndex(He);ln<0&&(ln=0),this.controls[ln]&&this.controls[ln]._registerOnCollectionChange(()=>{}),this.controls.splice(ln,1),q&&(this.controls.splice(ln,0,q),this._registerControl(q)),this.updateValueAndValidity({emitEvent:mt.emitEvent}),this._onCollectionChange()}get length(){return this.controls.length}setValue(He,q={}){Nt(this,0,He),He.forEach((mt,ln)=>{un(this,!1,ln),this.at(ln).setValue(mt,{onlySelf:!0,emitEvent:q.emitEvent})}),this.updateValueAndValidity(q)}patchValue(He,q={}){null!=He&&(He.forEach((mt,ln)=>{this.at(ln)&&this.at(ln).patchValue(mt,{onlySelf:!0,emitEvent:q.emitEvent})}),this.updateValueAndValidity(q))}reset(He=[],q={}){this._forEachChild((mt,ln)=>{mt.reset(He[ln],{onlySelf:!0,emitEvent:q.emitEvent})}),this._updatePristine(q,this),this._updateTouched(q,this),this.updateValueAndValidity(q),!1!==q?.emitEvent&&this._events.next(new Ot(this))}getRawValue(){return this.controls.map(He=>He.getRawValue())}clear(He={}){this.controls.length<1||(this._forEachChild(q=>q._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity({emitEvent:He.emitEvent}))}_adjustIndex(He){return He<0?He+this.length:He}_syncPendingControls(){let He=this.controls.reduce((q,mt)=>!!mt._syncPendingControls()||q,!1);return He&&this.updateValueAndValidity({onlySelf:!0}),He}_forEachChild(He){this.controls.forEach((q,mt)=>{He(q,mt)})}_updateValue(){this.value=this.controls.filter(He=>He.enabled||this.disabled).map(He=>He.value)}_anyControls(He){return this.controls.some(q=>q.enabled&&He(q))}_setUpControls(){this._forEachChild(He=>this._registerControl(He))}_allControlsDisabled(){for(const He of this.controls)if(He.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(He){He.setParent(this),He._registerOnCollectionChange(this._onCollectionChange)}_find(He){return this.at(He)??null}}function Za(Ne){return!!Ne&&(void 0!==Ne.asyncValidators||void 0!==Ne.validators||void 0!==Ne.updateOn)}let Or=(()=>{class Ne{useNonNullable=!1;get nonNullable(){const q=new Ne;return q.useNonNullable=!0,q}group(q,mt=null){const ln=this._reduceControls(q);let Oi={};return Za(mt)?Oi=mt:null!==mt&&(Oi.validators=mt.validator,Oi.asyncValidators=mt.asyncValidator),new xn(ln,Oi)}record(q,mt=null){const ln=this._reduceControls(q);return new Tt(ln,mt)}control(q,mt,ln){let Oi={};return this.useNonNullable?(Za(mt)?Oi=mt:(Oi.validators=mt,Oi.asyncValidators=ln),new Hn(q,{...Oi,nonNullable:!0})):new Hn(q,mt,ln)}array(q,mt,ln){const Oi=q.map(ua=>this._createControl(ua));return new Xs(Oi,mt,ln)}_reduceControls(q){const mt={};return Object.keys(q).forEach(ln=>{mt[ln]=this._createControl(q[ln])}),mt}_createControl(q){return q instanceof Hn||q instanceof dn?q:Array.isArray(q)?this.control(q[0],q.length>1?q[1]:null,q.length>2?q[2]:null):this.control(q)}static \u0275fac=function(mt){return new(mt||Ne)};static \u0275prov=v.jDH({token:Ne,factory:Ne.\u0275fac,providedIn:"root"})}return Ne})(),Fs=(()=>{class Ne extends Or{group(q,mt=null){return super.group(q,mt)}control(q,mt,ln){return super.control(q,mt,ln)}array(q,mt,ln){return super.array(q,mt,ln)}static \u0275fac=(()=>{let q;return function(ln){return(q||(q=T.xGo(Ne)))(ln||Ne)}})();static \u0275prov=v.jDH({token:Ne,factory:Ne.\u0275fac,providedIn:"root"})}return Ne})(),Ks=(()=>{class Ne{static withConfig(q){return{ngModule:Ne,providers:[{provide:we,useValue:q.callSetDisabledState??ae}]}}static \u0275fac=function(mt){return new(mt||Ne)};static \u0275mod=T.$C({type:Ne});static \u0275inj=v.G2t({imports:[er]})}return Ne})(),Sr=(()=>{class Ne{static withConfig(q){return{ngModule:Ne,providers:[{provide:U,useValue:q.warnOnNgModelWithFormControl??"always"},{provide:we,useValue:q.callSetDisabledState??ae}]}}static \u0275fac=function(mt){return new(mt||Ne)};static \u0275mod=T.$C({type:Ne});static \u0275inj=v.G2t({imports:[er]})}return Ne})()},1804(Zt,pe,l){"use strict";l.d(pe,{Rc:()=>u,_J:()=>f});var i=l(4330),d=l(2615),v=l(3664);const T=new d.nKC("MATERIAL_ANIMATIONS");let O=null;function f(){return(0,d.WQX)(T,{optional:!0})?.animationsDisabled||"NoopAnimations"===(0,d.WQX)(v.bc$,{optional:!0})?"di-disabled":(O??=(0,d.WQX)(i.D).matchMedia("(prefers-reduced-motion)").matches,O?"reduced-motion":"enabled")}function u(){return"enabled"!==f()}},2628(Zt,pe,l){"use strict";l.d(pe,{$3:()=>gt,jL:()=>jt,pN:()=>h});var i=l(3029),d=l(3664),v=l(2615),T=l(7705),w=l(5718),e=l(9338),O=l(9726),f=l(9090),u=l(8617),L=l(9842),C=l(4522),B=l(8359),A=l(1413),Pe=l(7786),le=l(7673),Ce=l(9030),Ae=l(1985),j=l(1804),W=l(1577),G=l(7336),re=l(438),xe=l(4330),Ee=l(9327),V=l(6939),ce=l(408),be=l(9417),ne=l(5964),J=l(6354),De=l(9172),Re=l(5558),Xe=l(8141),_e=l(3236),he=l(8793),Dt=l(6697),lt=l(3557),Le=l(3703),te=l(1397),ie=l(8750);function P(Ue,wt){return wt?pt=>(0,he.x)(wt.pipe((0,Dt.s)(1),(0,lt.w)()),pt.pipe(P(Ue))):(0,te.Z)((pt,Pt)=>(0,ie.Tg)(Ue(pt,Pt)).pipe((0,Dt.s)(1),(0,Le.u)(pt)))}var F=l(1807);function ve(Ue,wt=_e.E){const pt=(0,F.O)(Ue,wt);return P(()=>pt)}var H=l(9588),$=l(146),Ke=l(2466);const nt=["panel"],ht=["*"];function oe(Ue,wt){if(1&Ue&&(d.rj2(0,"div",1,0),d.SdG(2),d.eux()),2&Ue){const pt=wt.id,Pt=d.XpG();d.HbH(Pt._classList),d.AVh("mat-mdc-autocomplete-visible",Pt.showPanel)("mat-mdc-autocomplete-hidden",!Pt.showPanel)("mat-autocomplete-panel-animations-enabled",!Pt._animationsDisabled)("mat-primary","primary"===Pt._color)("mat-accent","accent"===Pt._color)("mat-warn","warn"===Pt._color),d.Avn("id",Pt.id),d.BMQ("aria-label",Pt.ariaLabel||null)("aria-labelledby",Pt._getPanelAriaLabelledby(pt))}}class Ye{source;option;constructor(wt,pt){this.source=wt,this.option=pt}}const fe=new v.nKC("mat-autocomplete-default-options",{providedIn:"root",factory:function Qe(){return{autoActiveFirstOption:!1,autoSelectActiveOption:!1,hideSingleSelectionIndicator:!1,requireSelection:!1,hasBackdrop:!1}}});let gt=(()=>{class Ue{_changeDetectorRef=(0,v.WQX)(T.gRc);_elementRef=(0,v.WQX)(d.aKT);_defaults=(0,v.WQX)(fe);_animationsDisabled=(0,j.Rc)();_activeOptionChanges=B.yU.EMPTY;_keyManager;showPanel=!1;get isOpen(){return this._isOpen&&this.showPanel}_isOpen=!1;_latestOpeningTrigger;_setColor(pt){this._color=pt,this._changeDetectorRef.markForCheck()}_color;template;panel;options;optionGroups;ariaLabel;ariaLabelledby;displayWith=null;autoActiveFirstOption;autoSelectActiveOption;requireSelection;panelWidth;disableRipple;optionSelected=new d.bkB;opened=new d.bkB;closed=new d.bkB;optionActivated=new d.bkB;set classList(pt){this._classList=pt,this._elementRef.nativeElement.className=""}_classList;get hideSingleSelectionIndicator(){return this._hideSingleSelectionIndicator}set hideSingleSelectionIndicator(pt){this._hideSingleSelectionIndicator=pt,this._syncParentProperties()}_hideSingleSelectionIndicator;_syncParentProperties(){if(this.options)for(const pt of this.options)pt._changeDetectorRef.markForCheck()}id=(0,v.WQX)(O.g).getId("mat-autocomplete-");inertGroups;constructor(){const pt=(0,v.WQX)(L.O);this.inertGroups=pt?.SAFARI||!1,this.autoActiveFirstOption=!!this._defaults.autoActiveFirstOption,this.autoSelectActiveOption=!!this._defaults.autoSelectActiveOption,this.requireSelection=!!this._defaults.requireSelection,this._hideSingleSelectionIndicator=this._defaults.hideSingleSelectionIndicator??!1}ngAfterContentInit(){this._keyManager=new f.A(this.options).withWrap().skipPredicate(this._skipPredicate),this._activeOptionChanges=this._keyManager.change.subscribe(pt=>{this.isOpen&&this.optionActivated.emit({source:this,option:this.options.toArray()[pt]||null})}),this._setVisibility()}ngOnDestroy(){this._keyManager?.destroy(),this._activeOptionChanges.unsubscribe()}_setScrollTop(pt){this.panel&&(this.panel.nativeElement.scrollTop=pt)}_getScrollTop(){return this.panel?this.panel.nativeElement.scrollTop:0}_setVisibility(){this.showPanel=!!this.options?.length,this._changeDetectorRef.markForCheck()}_emitSelectEvent(pt){const Pt=new Ye(this,pt);this.optionSelected.emit(Pt)}_getPanelAriaLabelledby(pt){return this.ariaLabel?null:this.ariaLabelledby?(pt?pt+" ":"")+this.ariaLabelledby:pt}_skipPredicate(){return!1}static \u0275fac=function(Pt){return new(Pt||Ue)};static \u0275cmp=d.VBU({type:Ue,selectors:[["mat-autocomplete"]],contentQueries:function(Pt,gn,ei){if(1&Pt&&(d.wni(ei,i.wT,5),d.wni(ei,i.QC,5)),2&Pt){let vi;d.mGM(vi=d.lsd())&&(gn.options=vi),d.mGM(vi=d.lsd())&&(gn.optionGroups=vi)}},viewQuery:function(Pt,gn){if(1&Pt&&(d.GBs(d.C4Q,7),d.GBs(nt,5)),2&Pt){let ei;d.mGM(ei=d.lsd())&&(gn.template=ei.first),d.mGM(ei=d.lsd())&&(gn.panel=ei.first)}},hostAttrs:[1,"mat-mdc-autocomplete"],inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],displayWith:"displayWith",autoActiveFirstOption:[2,"autoActiveFirstOption","autoActiveFirstOption",T.L39],autoSelectActiveOption:[2,"autoSelectActiveOption","autoSelectActiveOption",T.L39],requireSelection:[2,"requireSelection","requireSelection",T.L39],panelWidth:"panelWidth",disableRipple:[2,"disableRipple","disableRipple",T.L39],classList:[0,"class","classList"],hideSingleSelectionIndicator:[2,"hideSingleSelectionIndicator","hideSingleSelectionIndicator",T.L39]},outputs:{optionSelected:"optionSelected",opened:"opened",closed:"closed",optionActivated:"optionActivated"},exportAs:["matAutocomplete"],features:[d.Jv_([{provide:i.is,useExisting:Ue}])],ngContentSelectors:ht,decls:1,vars:0,consts:[["panel",""],["role","listbox",1,"mat-mdc-autocomplete-panel","mdc-menu-surface","mdc-menu-surface--open",3,"id"]],template:function(Pt,gn){1&Pt&&(d.NAR(),d.PeT(0,oe,3,17,"ng-template"))},styles:["div.mat-mdc-autocomplete-panel{width:100%;max-height:256px;visibility:hidden;transform-origin:center top;overflow:auto;padding:8px 0;box-sizing:border-box;position:relative;border-radius:var(--mat-autocomplete-container-shape, var(--mat-sys-corner-extra-small));box-shadow:var(--mat-autocomplete-container-elevation-shadow, 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12));background-color:var(--mat-autocomplete-background-color, var(--mat-sys-surface-container))}@media(forced-colors: active){div.mat-mdc-autocomplete-panel{outline:solid 1px}}.cdk-overlay-pane:not(.mat-mdc-autocomplete-panel-above) div.mat-mdc-autocomplete-panel{border-top-left-radius:0;border-top-right-radius:0}.mat-mdc-autocomplete-panel-above div.mat-mdc-autocomplete-panel{border-bottom-left-radius:0;border-bottom-right-radius:0;transform-origin:center bottom}div.mat-mdc-autocomplete-panel.mat-mdc-autocomplete-visible{visibility:visible}div.mat-mdc-autocomplete-panel.mat-mdc-autocomplete-hidden{visibility:hidden;pointer-events:none}@keyframes _mat-autocomplete-enter{from{opacity:0;transform:scaleY(0.8)}to{opacity:1;transform:none}}.mat-autocomplete-panel-animations-enabled{animation:_mat-autocomplete-enter 120ms cubic-bezier(0, 0, 0.2, 1)}mat-autocomplete{display:none}\n"],encapsulation:2,changeDetection:0})}return Ue})();const rt={provide:be.kq,useExisting:(0,v.Rfq)(()=>h),multi:!0},Ft=new v.nKC("mat-autocomplete-scroll-strategy",{providedIn:"root",factory:()=>{const Ue=(0,v.WQX)(v.zZn);return()=>(0,e.RH)(Ue)}}),Qn={provide:Ft,deps:[],useFactory:function Sn(Ue){const wt=(0,v.WQX)(v.zZn);return()=>(0,e.RH)(wt)}};let h=(()=>{class Ue{_environmentInjector=(0,v.WQX)(v.uvJ);_element=(0,v.WQX)(d.aKT);_injector=(0,v.WQX)(v.zZn);_viewContainerRef=(0,v.WQX)(d.c1b);_zone=(0,v.WQX)(d.SKi);_changeDetectorRef=(0,v.WQX)(T.gRc);_dir=(0,v.WQX)(W.dS,{optional:!0});_formField=(0,v.WQX)(H.xb,{optional:!0,host:!0});_viewportRuler=(0,v.WQX)(w.Xj);_scrollStrategy=(0,v.WQX)(Ft);_renderer=(0,v.WQX)(d.sFG);_animationsDisabled=(0,j.Rc)();_defaults=(0,v.WQX)(fe,{optional:!0});_overlayRef;_portal;_componentDestroyed=!1;_initialized=new A.B;_keydownSubscription;_outsideClickSubscription;_cleanupWindowBlur;_previousValue;_valueOnAttach;_valueOnLastKeydown;_positionStrategy;_manuallyFloatingLabel=!1;_closingActionsSubscription;_viewportSubscription=B.yU.EMPTY;_breakpointObserver=(0,v.WQX)(xe.Q);_handsetLandscapeSubscription=B.yU.EMPTY;_canOpenOnNextFocus=!0;_valueBeforeAutoSelection;_pendingAutoselectedOption;_closeKeyEventStream=new A.B;_overlayPanelClass=(0,ce.F)(this._defaults?.overlayPanelClass||[]);_windowBlurHandler=()=>{this._canOpenOnNextFocus=this.panelOpen||!this._hasFocus()};_onChange=()=>{};_onTouched=()=>{};autocomplete;position="auto";connectedTo;autocompleteAttribute="off";autocompleteDisabled;constructor(){}_aboveClass="mat-mdc-autocomplete-panel-above";ngAfterViewInit(){this._initialized.next(),this._initialized.complete(),this._cleanupWindowBlur=this._renderer.listen("window","blur",this._windowBlurHandler)}ngOnChanges(pt){pt.position&&this._positionStrategy&&(this._setStrategyPositions(this._positionStrategy),this.panelOpen&&this._overlayRef.updatePosition())}ngOnDestroy(){this._cleanupWindowBlur?.(),this._handsetLandscapeSubscription.unsubscribe(),this._viewportSubscription.unsubscribe(),this._componentDestroyed=!0,this._destroyPanel(),this._closeKeyEventStream.complete(),this._clearFromModal()}get panelOpen(){return this._overlayAttached&&this.autocomplete.showPanel}_overlayAttached=!1;openPanel(){this._openPanelInternal()}closePanel(){this._resetLabel(),this._overlayAttached&&(this.panelOpen&&this._zone.run(()=>{this.autocomplete.closed.emit()}),this.autocomplete._latestOpeningTrigger===this&&(this.autocomplete._isOpen=!1,this.autocomplete._latestOpeningTrigger=null),this._overlayAttached=!1,this._pendingAutoselectedOption=null,this._overlayRef&&this._overlayRef.hasAttached()&&(this._overlayRef.detach(),this._closingActionsSubscription.unsubscribe()),this._updatePanelState(),this._componentDestroyed||this._changeDetectorRef.detectChanges(),this._trackedModal&&(0,u.Ae)(this._trackedModal,"aria-owns",this.autocomplete.id))}updatePosition(){this._overlayAttached&&this._overlayRef.updatePosition()}get panelClosingActions(){return(0,Pe.h)(this.optionSelections,this.autocomplete._keyManager.tabOut.pipe((0,ne.p)(()=>this._overlayAttached)),this._closeKeyEventStream,this._getOutsideClickStream(),this._overlayRef?this._overlayRef.detachments().pipe((0,ne.p)(()=>this._overlayAttached)):(0,le.of)()).pipe((0,J.T)(pt=>pt instanceof i.MI?pt:null))}optionSelections=(0,Ce.v)(()=>{const pt=this.autocomplete?this.autocomplete.options:null;return pt?pt.changes.pipe((0,De.Z)(pt),(0,Re.n)(()=>(0,Pe.h)(...pt.map(Pt=>Pt.onSelectionChange)))):this._initialized.pipe((0,Re.n)(()=>this.optionSelections))});get activeOption(){return this.autocomplete&&this.autocomplete._keyManager?this.autocomplete._keyManager.activeItem:null}_getOutsideClickStream(){return new Ae.c(pt=>{const Pt=ei=>{const vi=(0,C.Fb)(ei),Ni=this._formField?this._formField.getConnectedOverlayOrigin().nativeElement:null,kn=this.connectedTo?this.connectedTo.elementRef.nativeElement:null;this._overlayAttached&&vi!==this._element.nativeElement&&!this._hasFocus()&&(!Ni||!Ni.contains(vi))&&(!kn||!kn.contains(vi))&&this._overlayRef&&!this._overlayRef.overlayElement.contains(vi)&&pt.next(ei)},gn=[this._renderer.listen("document","click",Pt),this._renderer.listen("document","auxclick",Pt),this._renderer.listen("document","touchend",Pt)];return()=>{gn.forEach(ei=>ei())}})}writeValue(pt){Promise.resolve(null).then(()=>this._assignOptionValue(pt))}registerOnChange(pt){this._onChange=pt}registerOnTouched(pt){this._onTouched=pt}setDisabledState(pt){this._element.nativeElement.disabled=pt}_handleKeydown(pt){const Pt=pt,gn=Pt.keyCode,ei=(0,G.rp)(Pt);if(gn===re._f&&!ei&&Pt.preventDefault(),this._valueOnLastKeydown=this._element.nativeElement.value,this.activeOption&&gn===re.Fm&&this.panelOpen&&!ei)this.activeOption._selectViaInteraction(),this._resetActiveItem(),Pt.preventDefault();else if(this.autocomplete){const vi=this.autocomplete._keyManager.activeItem,Ni=gn===re.i7||gn===re.n6;gn===re.wn||Ni&&!ei&&this.panelOpen?this.autocomplete._keyManager.onKeydown(Pt):Ni&&this._canOpen()&&this._openPanelInternal(this._valueOnLastKeydown),(Ni||this.autocomplete._keyManager.activeItem!==vi)&&(this._scrollToOption(this.autocomplete._keyManager.activeItemIndex||0),this.autocomplete.autoSelectActiveOption&&this.activeOption&&(this._pendingAutoselectedOption||(this._valueBeforeAutoSelection=this._valueOnLastKeydown),this._pendingAutoselectedOption=this.activeOption,this._assignOptionValue(this.activeOption.value)))}}_handleInput(pt){let Pt=pt.target,gn=Pt.value;if("number"===Pt.type&&(gn=""==gn?null:parseFloat(gn)),this._previousValue!==gn){if(this._previousValue=gn,this._pendingAutoselectedOption=null,(!this.autocomplete||!this.autocomplete.requireSelection)&&this._onChange(gn),gn){if(this.panelOpen&&!this.autocomplete.requireSelection){const ei=this.autocomplete.options?.find(vi=>vi.selected);ei&&gn!==this._getDisplayValue(ei.value)&&ei.deselect(!1)}}else this._clearPreviousSelectedOption(null,!1);if(this._canOpen()&&this._hasFocus()){const ei=this._valueOnLastKeydown??this._element.nativeElement.value;this._valueOnLastKeydown=null,this._openPanelInternal(ei)}}}_handleFocus(){this._canOpenOnNextFocus?this._canOpen()&&(this._previousValue=this._element.nativeElement.value,this._attachOverlay(this._previousValue),this._floatLabel(!0)):this._canOpenOnNextFocus=!0}_handleClick(){this._canOpen()&&!this.panelOpen&&this._openPanelInternal()}_hasFocus(){return(0,C.vc)()===this._element.nativeElement}_floatLabel(pt=!1){this._formField&&"auto"===this._formField.floatLabel&&(pt?this._formField._animateAndLockLabel():this._formField.floatLabel="always",this._manuallyFloatingLabel=!0)}_resetLabel(){this._manuallyFloatingLabel&&(this._formField&&(this._formField.floatLabel="auto"),this._manuallyFloatingLabel=!1)}_subscribeToClosingActions(){const pt=new Ae.c(gn=>{(0,d.mal)(()=>{gn.next()},{injector:this._environmentInjector})}),Pt=this.autocomplete.options?.changes.pipe((0,Xe.M)(()=>this._positionStrategy.reapplyLastPosition()),ve(0))??(0,le.of)();return(0,Pe.h)(pt,Pt).pipe((0,Re.n)(()=>this._zone.run(()=>{const gn=this.panelOpen;return this._resetActiveItem(),this._updatePanelState(),this._changeDetectorRef.detectChanges(),this.panelOpen&&this._overlayRef.updatePosition(),gn!==this.panelOpen&&(this.panelOpen?this._emitOpened():this.autocomplete.closed.emit()),this.panelClosingActions})),(0,Dt.s)(1)).subscribe(gn=>this._setValueAndClose(gn))}_emitOpened(){this.autocomplete.opened.emit()}_destroyPanel(){this._overlayRef&&(this.closePanel(),this._overlayRef.dispose(),this._overlayRef=null)}_getDisplayValue(pt){const Pt=this.autocomplete;return Pt&&Pt.displayWith?Pt.displayWith(pt):pt}_assignOptionValue(pt){const Pt=this._getDisplayValue(pt);null==pt&&this._clearPreviousSelectedOption(null,!1),this._updateNativeInputValue(Pt??"")}_updateNativeInputValue(pt){this._formField?this._formField._control.value=pt:this._element.nativeElement.value=pt,this._previousValue=pt}_setValueAndClose(pt){const Pt=this.autocomplete,gn=pt?pt.source:this._pendingAutoselectedOption;gn?(this._clearPreviousSelectedOption(gn),this._assignOptionValue(gn.value),this._onChange(gn.value),Pt._emitSelectEvent(gn),this._element.nativeElement.focus()):Pt.requireSelection&&this._element.nativeElement.value!==this._valueOnAttach&&(this._clearPreviousSelectedOption(null),this._assignOptionValue(null),this._onChange(null)),this.closePanel()}_clearPreviousSelectedOption(pt,Pt){this.autocomplete?.options?.forEach(gn=>{gn!==pt&&gn.selected&&gn.deselect(Pt)})}_openPanelInternal(pt=this._element.nativeElement.value){this._attachOverlay(pt),this._floatLabel(),this._trackedModal&&(0,u.px)(this._trackedModal,"aria-owns",this.autocomplete.id)}_attachOverlay(pt){let Pt=this._overlayRef;Pt?(this._positionStrategy.setOrigin(this._getConnectedElement()),Pt.updateSize({width:this._getPanelWidth()})):(this._portal=new V.VA(this.autocomplete.template,this._viewContainerRef,{id:this._formField?.getLabelId()}),Pt=(0,e.Y$)(this._injector,this._getOverlayConfig()),this._overlayRef=Pt,this._viewportSubscription=this._viewportRuler.change().subscribe(()=>{this.panelOpen&&Pt&&Pt.updateSize({width:this._getPanelWidth()})}),this._handsetLandscapeSubscription=this._breakpointObserver.observe(Ee.Rp.HandsetLandscape).subscribe(ei=>{ei.matches?this._positionStrategy.withFlexibleDimensions(!0).withGrowAfterOpen(!0).withViewportMargin(8):this._positionStrategy.withFlexibleDimensions(!1).withGrowAfterOpen(!1).withViewportMargin(0)})),Pt&&!Pt.hasAttached()&&(Pt.attach(this._portal),this._valueOnAttach=pt,this._valueOnLastKeydown=null,this._closingActionsSubscription=this._subscribeToClosingActions());const gn=this.panelOpen;this.autocomplete._isOpen=this._overlayAttached=!0,this.autocomplete._latestOpeningTrigger=this,this.autocomplete._setColor(this._formField?.color),this._updatePanelState(),this._applyModalPanelOwnership(),this.panelOpen&&gn!==this.panelOpen&&this._emitOpened()}_handlePanelKeydown=pt=>{(pt.keyCode===re._f&&!(0,G.rp)(pt)||pt.keyCode===re.i7&&(0,G.rp)(pt,"altKey"))&&(this._pendingAutoselectedOption&&(this._updateNativeInputValue(this._valueBeforeAutoSelection??""),this._pendingAutoselectedOption=null),this._closeKeyEventStream.next(),this._resetActiveItem(),pt.stopPropagation(),pt.preventDefault())};_updatePanelState(){if(this.autocomplete._setVisibility(),this.panelOpen){const pt=this._overlayRef;this._keydownSubscription||(this._keydownSubscription=pt.keydownEvents().subscribe(this._handlePanelKeydown)),this._outsideClickSubscription||(this._outsideClickSubscription=pt.outsidePointerEvents().subscribe())}else this._keydownSubscription?.unsubscribe(),this._outsideClickSubscription?.unsubscribe(),this._keydownSubscription=this._outsideClickSubscription=null}_getOverlayConfig(){return new e.rR({positionStrategy:this._getOverlayPosition(),scrollStrategy:this._scrollStrategy(),width:this._getPanelWidth(),direction:this._dir??void 0,hasBackdrop:this._defaults?.hasBackdrop,backdropClass:this._defaults?.backdropClass||"cdk-overlay-transparent-backdrop",panelClass:this._overlayPanelClass,disableAnimations:this._animationsDisabled})}_getOverlayPosition(){const pt=(0,e.$M)(this._injector,this._getConnectedElement()).withFlexibleDimensions(!1).withPush(!1);return this._setStrategyPositions(pt),this._positionStrategy=pt,pt}_setStrategyPositions(pt){const Pt=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"}],gn=this._aboveClass,ei=[{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:gn},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom",panelClass:gn}];let vi;vi="above"===this.position?ei:"below"===this.position?Pt:[...Pt,...ei],pt.withPositions(vi)}_getConnectedElement(){return this.connectedTo?this.connectedTo.elementRef:this._formField?this._formField.getConnectedOverlayOrigin():this._element}_getPanelWidth(){return this.autocomplete.panelWidth||this._getHostWidth()}_getHostWidth(){return this._getConnectedElement().nativeElement.getBoundingClientRect().width}_resetActiveItem(){const pt=this.autocomplete;if(pt.autoActiveFirstOption){let Pt=-1;for(let gn=0;gn .cdk-overlay-container [aria-modal="true"]');if(!pt)return;const Pt=this.autocomplete.id;this._trackedModal&&(0,u.Ae)(this._trackedModal,"aria-owns",Pt),(0,u.px)(pt,"aria-owns",Pt),this._trackedModal=pt}_clearFromModal(){this._trackedModal&&((0,u.Ae)(this._trackedModal,"aria-owns",this.autocomplete.id),this._trackedModal=null)}static \u0275fac=function(Pt){return new(Pt||Ue)};static \u0275dir=d.FsC({type:Ue,selectors:[["input","matAutocomplete",""],["textarea","matAutocomplete",""]],hostAttrs:[1,"mat-mdc-autocomplete-trigger"],hostVars:7,hostBindings:function(Pt,gn){1&Pt&&d.bIt("focusin",function(){return gn._handleFocus()})("blur",function(){return gn._onTouched()})("input",function(vi){return gn._handleInput(vi)})("keydown",function(vi){return gn._handleKeydown(vi)})("click",function(){return gn._handleClick()}),2&Pt&&d.BMQ("autocomplete",gn.autocompleteAttribute)("role",gn.autocompleteDisabled?null:"combobox")("aria-autocomplete",gn.autocompleteDisabled?null:"list")("aria-activedescendant",gn.panelOpen&&gn.activeOption?gn.activeOption.id:null)("aria-expanded",gn.autocompleteDisabled?null:gn.panelOpen.toString())("aria-controls",gn.autocompleteDisabled||!gn.panelOpen||null==gn.autocomplete?null:gn.autocomplete.id)("aria-haspopup",gn.autocompleteDisabled?null:"listbox")},inputs:{autocomplete:[0,"matAutocomplete","autocomplete"],position:[0,"matAutocompletePosition","position"],connectedTo:[0,"matAutocompleteConnectedTo","connectedTo"],autocompleteAttribute:[0,"autocomplete","autocompleteAttribute"],autocompleteDisabled:[2,"matAutocompleteDisabled","autocompleteDisabled",T.L39]},exportAs:["matAutocompleteTrigger"],features:[d.Jv_([rt]),d.OA$]})}return Ue})(),jt=(()=>{class Ue{static \u0275fac=function(Pt){return new(Pt||Ue)};static \u0275mod=d.$C({type:Ue});static \u0275inj=v.G2t({providers:[Qn],imports:[e.z_,$.S,Ke.y,w.Gj,$.S,Ke.y]})}return Ue})()},1975(Zt,pe,l){"use strict";l.d(pe,{Y:()=>Pe,k:()=>A});var i=l(8617),d=l(7094),v=l(9726),T=l(2615),w=l(3664),e=l(7705),O=l(9046),f=l(8968),u=l(1804),L=l(2466);const C="mat-badge-content";let B=(()=>{class le{static \u0275fac=function(j){return new(j||le)};static \u0275cmp=w.VBU({type:le,selectors:[["ng-component"]],decls:0,vars:0,template:function(j,W){},styles:[".mat-badge{position:relative}.mat-badge.mat-badge{overflow:visible}.mat-badge-content{position:absolute;text-align:center;display:inline-block;transition:transform 200ms ease-in-out;transform:scale(0.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;box-sizing:border-box;pointer-events:none;background-color:var(--mat-badge-background-color, var(--mat-sys-error));color:var(--mat-badge-text-color, var(--mat-sys-on-error));font-family:var(--mat-badge-text-font, var(--mat-sys-label-small-font));font-weight:var(--mat-badge-text-weight, var(--mat-sys-label-small-weight));border-radius:var(--mat-badge-container-shape, var(--mat-sys-corner-full))}.mat-badge-above .mat-badge-content{bottom:100%}.mat-badge-below .mat-badge-content{top:100%}.mat-badge-before .mat-badge-content{right:100%}[dir=rtl] .mat-badge-before .mat-badge-content{right:auto;left:100%}.mat-badge-after .mat-badge-content{left:100%}[dir=rtl] .mat-badge-after .mat-badge-content{left:auto;right:100%}@media(forced-colors: active){.mat-badge-content{outline:solid 1px;border-radius:0}}.mat-badge-disabled .mat-badge-content{background-color:var(--mat-badge-disabled-state-background-color, color-mix(in srgb, var(--mat-sys-error) 38%, transparent));color:var(--mat-badge-disabled-state-text-color, var(--mat-sys-on-error))}.mat-badge-hidden .mat-badge-content{display:none}.ng-animate-disabled .mat-badge-content,.mat-badge-content._mat-animation-noopable{transition:none}.mat-badge-content.mat-badge-active{transform:none}.mat-badge-small .mat-badge-content{width:var(--mat-badge-legacy-small-size-container-size, unset);height:var(--mat-badge-legacy-small-size-container-size, unset);min-width:var(--mat-badge-small-size-container-size, 6px);min-height:var(--mat-badge-small-size-container-size, 6px);line-height:var(--mat-badge-small-size-line-height, 6px);padding:var(--mat-badge-small-size-container-padding, 0);font-size:var(--mat-badge-small-size-text-size, 0);margin:var(--mat-badge-small-size-container-offset, -6px 0)}.mat-badge-small.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-small-size-container-overlap-offset, -6px)}.mat-badge-medium .mat-badge-content{width:var(--mat-badge-legacy-container-size, unset);height:var(--mat-badge-legacy-container-size, unset);min-width:var(--mat-badge-container-size, 16px);min-height:var(--mat-badge-container-size, 16px);line-height:var(--mat-badge-line-height, 16px);padding:var(--mat-badge-container-padding, 0 4px);font-size:var(--mat-badge-text-size, var(--mat-sys-label-small-size));margin:var(--mat-badge-container-offset, -12px 0)}.mat-badge-medium.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-container-overlap-offset, -12px)}.mat-badge-large .mat-badge-content{width:var(--mat-badge-legacy-large-size-container-size, unset);height:var(--mat-badge-legacy-large-size-container-size, unset);min-width:var(--mat-badge-large-size-container-size, 16px);min-height:var(--mat-badge-large-size-container-size, 16px);line-height:var(--mat-badge-large-size-line-height, 16px);padding:var(--mat-badge-large-size-container-padding, 0 4px);font-size:var(--mat-badge-large-size-text-size, var(--mat-sys-label-small-size));margin:var(--mat-badge-large-size-container-offset, -12px 0)}.mat-badge-large.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-large-size-container-overlap-offset, -12px)}\n"],encapsulation:2,changeDetection:0})}return le})(),A=(()=>{class le{_ngZone=(0,T.WQX)(w.SKi);_elementRef=(0,T.WQX)(w.aKT);_ariaDescriber=(0,T.WQX)(i.vr);_renderer=(0,T.WQX)(w.sFG);_animationsDisabled=(0,u.Rc)();_idGenerator=(0,T.WQX)(v.g);get color(){return this._color}set color(Ae){this._setColor(Ae),this._color=Ae}_color="primary";overlap=!0;disabled;position="above after";get content(){return this._content}set content(Ae){this._updateRenderedContent(Ae)}_content;get description(){return this._description}set description(Ae){this._updateDescription(Ae)}_description;size="medium";hidden;_badgeElement;_inlineBadgeDescription;_isInitialized=!1;_interactivityChecker=(0,T.WQX)(d.Z7);_document=(0,T.WQX)(T.qQL);constructor(){const Ae=(0,T.WQX)(f.l);Ae.load(B),Ae.load(O.Y)}isAbove(){return-1===this.position.indexOf("below")}isAfter(){return-1===this.position.indexOf("before")}getBadgeElement(){return this._badgeElement}ngOnInit(){this._clearExistingBadges(),this.content&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement(),this._updateRenderedContent(this.content)),this._isInitialized=!0}ngOnDestroy(){this._renderer.destroyNode&&(this._renderer.destroyNode(this._badgeElement),this._inlineBadgeDescription?.remove()),this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description)}_isHostInteractive(){return this._interactivityChecker.isFocusable(this._elementRef.nativeElement,{ignoreVisibility:!0})}_createBadgeElement(){const Ae=this._renderer.createElement("span"),j="mat-badge-active";return Ae.setAttribute("id",this._idGenerator.getId("mat-badge-content-")),Ae.setAttribute("aria-hidden","true"),Ae.classList.add(C),this._animationsDisabled&&Ae.classList.add("_mat-animation-noopable"),this._elementRef.nativeElement.appendChild(Ae),"function"!=typeof requestAnimationFrame||this._animationsDisabled?Ae.classList.add(j):this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{Ae.classList.add(j)})}),Ae}_updateRenderedContent(Ae){const j=`${Ae??""}`.trim();this._isInitialized&&j&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement()),this._badgeElement&&(this._badgeElement.textContent=j),this._content=j}_updateDescription(Ae){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description),(!Ae||this._isHostInteractive())&&this._removeInlineDescription(),this._description=Ae,this._isHostInteractive()?this._ariaDescriber.describe(this._elementRef.nativeElement,Ae):this._updateInlineDescription()}_updateInlineDescription(){this._inlineBadgeDescription||(this._inlineBadgeDescription=this._document.createElement("span"),this._inlineBadgeDescription.classList.add("cdk-visually-hidden")),this._inlineBadgeDescription.textContent=this.description,this._badgeElement?.appendChild(this._inlineBadgeDescription)}_removeInlineDescription(){this._inlineBadgeDescription?.remove(),this._inlineBadgeDescription=void 0}_setColor(Ae){const j=this._elementRef.nativeElement.classList;j.remove(`mat-badge-${this._color}`),Ae&&j.add(`mat-badge-${Ae}`)}_clearExistingBadges(){const Ae=this._elementRef.nativeElement.querySelectorAll(`:scope > .${C}`);for(const j of Array.from(Ae))j!==this._badgeElement&&j.remove()}static \u0275fac=function(j){return new(j||le)};static \u0275dir=w.FsC({type:le,selectors:[["","matBadge",""]],hostAttrs:[1,"mat-badge"],hostVars:20,hostBindings:function(j,W){2&j&&w.AVh("mat-badge-overlap",W.overlap)("mat-badge-above",W.isAbove())("mat-badge-below",!W.isAbove())("mat-badge-before",!W.isAfter())("mat-badge-after",W.isAfter())("mat-badge-small","small"===W.size)("mat-badge-medium","medium"===W.size)("mat-badge-large","large"===W.size)("mat-badge-hidden",W.hidden||!W.content)("mat-badge-disabled",W.disabled)},inputs:{color:[0,"matBadgeColor","color"],overlap:[2,"matBadgeOverlap","overlap",e.L39],disabled:[2,"matBadgeDisabled","disabled",e.L39],position:[0,"matBadgePosition","position"],content:[0,"matBadge","content"],description:[0,"matBadgeDescription","description"],size:[0,"matBadgeSize","size"],hidden:[2,"matBadgeHidden","hidden",e.L39]}})}return le})(),Pe=(()=>{class le{static \u0275fac=function(j){return new(j||le)};static \u0275mod=w.$C({type:le});static \u0275inj=T.G2t({imports:[d.Pd,L.y,L.y]})}return le})()},8834(Zt,pe,l){"use strict";l.d(pe,{$0:()=>V,$z:()=>Ae,Hl:()=>ne});var w=l(2598),e=l(2615),O=l(3664),f=l(6881),u=l(2466);const L=["matButton",""],C=[[["",8,"material-icons",3,"iconPositionEnd",""],["mat-icon",3,"iconPositionEnd",""],["","matButtonIcon","",3,"iconPositionEnd",""]],"*",[["","iconPositionEnd","",8,"material-icons"],["mat-icon","iconPositionEnd",""],["","matButtonIcon","","iconPositionEnd",""]]],B=[".material-icons:not([iconPositionEnd]), mat-icon:not([iconPositionEnd]), [matButtonIcon]:not([iconPositionEnd])","*",".material-icons[iconPositionEnd], mat-icon[iconPositionEnd], [matButtonIcon][iconPositionEnd]"],Pe=["mat-mini-fab",""],Ce=new Map([["text",["mat-mdc-button"]],["filled",["mdc-button--unelevated","mat-mdc-unelevated-button"]],["elevated",["mdc-button--raised","mat-mdc-raised-button"]],["outlined",["mdc-button--outlined","mat-mdc-outlined-button"]],["tonal",["mat-tonal-button"]]]);let Ae=(()=>{class J extends w.iM{get appearance(){return this._appearance}set appearance(Re){this.setAppearance(Re||this._config?.defaultAppearance||"text")}_appearance=null;constructor(){super();const Re=function j(J){return J.hasAttribute("mat-raised-button")?"elevated":J.hasAttribute("mat-stroked-button")?"outlined":J.hasAttribute("mat-flat-button")?"filled":J.hasAttribute("mat-button")?"text":null}(this._elementRef.nativeElement);Re&&this.setAppearance(Re)}setAppearance(Re){if(Re===this._appearance)return;const Xe=this._elementRef.nativeElement.classList,_e=this._appearance?Ce.get(this._appearance):null,he=Ce.get(Re);_e&&Xe.remove(..._e),Xe.add(...he),this._appearance=Re}static \u0275fac=function(Xe){return new(Xe||J)};static \u0275cmp=O.VBU({type:J,selectors:[["button","matButton",""],["a","matButton",""],["button","mat-button",""],["button","mat-raised-button",""],["button","mat-flat-button",""],["button","mat-stroked-button",""],["a","mat-button",""],["a","mat-raised-button",""],["a","mat-flat-button",""],["a","mat-stroked-button",""]],hostAttrs:[1,"mdc-button"],inputs:{appearance:[0,"matButton","appearance"]},exportAs:["matButton","matAnchor"],features:[O.Vt3],attrs:L,ngContentSelectors:B,decls:7,vars:4,consts:[[1,"mat-mdc-button-persistent-ripple"],[1,"mdc-button__label"],[1,"mat-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(Xe,_e){1&Xe&&(O.NAR(C),O.Hgh(0,"span",0),O.SdG(1),O.rj2(2,"span",1),O.SdG(3,1),O.eux(),O.SdG(4,2),O.Hgh(5,"span",2)(6,"span",3)),2&Xe&&O.AVh("mdc-button__ripple",!_e._isFab)("mdc-fab__ripple",_e._isFab)},styles:['.mat-mdc-button-base{text-decoration:none}.mat-mdc-button-base .mat-icon{min-height:fit-content;flex-shrink:0}.mdc-button{-webkit-user-select:none;user-select:none;position:relative;display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;min-width:64px;border:none;outline:none;line-height:inherit;-webkit-appearance:none;overflow:visible;vertical-align:middle;background:rgba(0,0,0,0);padding:0 8px}.mdc-button::-moz-focus-inner{padding:0;border:0}.mdc-button:active{outline:none}.mdc-button:hover{cursor:pointer}.mdc-button:disabled{cursor:default;pointer-events:none}.mdc-button[hidden]{display:none}.mdc-button .mdc-button__label{position:relative}.mat-mdc-button{padding:0 var(--mat-button-text-horizontal-padding, 12px);height:var(--mat-button-text-container-height, 40px);font-family:var(--mat-button-text-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-text-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-button-text-label-text-tracking, var(--mat-sys-label-large-tracking));text-transform:var(--mat-button-text-label-text-transform);font-weight:var(--mat-button-text-label-text-weight, var(--mat-sys-label-large-weight))}.mat-mdc-button,.mat-mdc-button .mdc-button__ripple{border-radius:var(--mat-button-text-container-shape, var(--mat-sys-corner-full))}.mat-mdc-button:not(:disabled){color:var(--mat-button-text-label-text-color, var(--mat-sys-primary))}.mat-mdc-button[disabled],.mat-mdc-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-button-text-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-button:has(.material-icons,mat-icon,[matButtonIcon]){padding:0 var(--mat-button-text-with-icon-horizontal-padding, 16px)}.mat-mdc-button>.mat-icon{margin-right:var(--mat-button-text-icon-spacing, 8px);margin-left:var(--mat-button-text-icon-offset, -4px)}[dir=rtl] .mat-mdc-button>.mat-icon{margin-right:var(--mat-button-text-icon-offset, -4px);margin-left:var(--mat-button-text-icon-spacing, 8px)}.mat-mdc-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-text-icon-offset, -4px);margin-left:var(--mat-button-text-icon-spacing, 8px)}[dir=rtl] .mat-mdc-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-text-icon-spacing, 8px);margin-left:var(--mat-button-text-icon-offset, -4px)}.mat-mdc-button .mat-ripple-element{background-color:var(--mat-button-text-ripple-color, color-mix(in srgb, var(--mat-sys-primary) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-text-state-layer-color, var(--mat-sys-primary))}.mat-mdc-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-text-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-text-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-text-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-text-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-button-text-touch-target-size, 48px);display:var(--mat-button-text-touch-target-display, block);left:0;right:0;transform:translateY(-50%)}.mat-mdc-unelevated-button{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);height:var(--mat-button-filled-container-height, 40px);font-family:var(--mat-button-filled-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-filled-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-button-filled-label-text-tracking, var(--mat-sys-label-large-tracking));text-transform:var(--mat-button-filled-label-text-transform);font-weight:var(--mat-button-filled-label-text-weight, var(--mat-sys-label-large-weight));padding:0 var(--mat-button-filled-horizontal-padding, 24px)}.mat-mdc-unelevated-button>.mat-icon{margin-right:var(--mat-button-filled-icon-spacing, 8px);margin-left:var(--mat-button-filled-icon-offset, -8px)}[dir=rtl] .mat-mdc-unelevated-button>.mat-icon{margin-right:var(--mat-button-filled-icon-offset, -8px);margin-left:var(--mat-button-filled-icon-spacing, 8px)}.mat-mdc-unelevated-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-filled-icon-offset, -8px);margin-left:var(--mat-button-filled-icon-spacing, 8px)}[dir=rtl] .mat-mdc-unelevated-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-filled-icon-spacing, 8px);margin-left:var(--mat-button-filled-icon-offset, -8px)}.mat-mdc-unelevated-button .mat-ripple-element{background-color:var(--mat-button-filled-ripple-color, color-mix(in srgb, var(--mat-sys-on-primary) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-filled-state-layer-color, var(--mat-sys-on-primary))}.mat-mdc-unelevated-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-filled-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-unelevated-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-filled-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-unelevated-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-filled-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-unelevated-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-filled-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-unelevated-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-button-filled-touch-target-size, 48px);display:var(--mat-button-filled-touch-target-display, block);left:0;right:0;transform:translateY(-50%)}.mat-mdc-unelevated-button:not(:disabled){color:var(--mat-button-filled-label-text-color, var(--mat-sys-on-primary));background-color:var(--mat-button-filled-container-color, var(--mat-sys-primary))}.mat-mdc-unelevated-button,.mat-mdc-unelevated-button .mdc-button__ripple{border-radius:var(--mat-button-filled-container-shape, var(--mat-sys-corner-full))}.mat-mdc-unelevated-button[disabled],.mat-mdc-unelevated-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-button-filled-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-button-filled-disabled-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-unelevated-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-raised-button{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);box-shadow:var(--mat-button-protected-container-elevation-shadow, var(--mat-sys-level1));height:var(--mat-button-protected-container-height, 40px);font-family:var(--mat-button-protected-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-protected-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-button-protected-label-text-tracking, var(--mat-sys-label-large-tracking));text-transform:var(--mat-button-protected-label-text-transform);font-weight:var(--mat-button-protected-label-text-weight, var(--mat-sys-label-large-weight));padding:0 var(--mat-button-protected-horizontal-padding, 24px)}.mat-mdc-raised-button>.mat-icon{margin-right:var(--mat-button-protected-icon-spacing, 8px);margin-left:var(--mat-button-protected-icon-offset, -8px)}[dir=rtl] .mat-mdc-raised-button>.mat-icon{margin-right:var(--mat-button-protected-icon-offset, -8px);margin-left:var(--mat-button-protected-icon-spacing, 8px)}.mat-mdc-raised-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-protected-icon-offset, -8px);margin-left:var(--mat-button-protected-icon-spacing, 8px)}[dir=rtl] .mat-mdc-raised-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-protected-icon-spacing, 8px);margin-left:var(--mat-button-protected-icon-offset, -8px)}.mat-mdc-raised-button .mat-ripple-element{background-color:var(--mat-button-protected-ripple-color, color-mix(in srgb, var(--mat-sys-primary) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-protected-state-layer-color, var(--mat-sys-primary))}.mat-mdc-raised-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-protected-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-raised-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-protected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-raised-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-protected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-raised-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-protected-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-raised-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-button-protected-touch-target-size, 48px);display:var(--mat-button-protected-touch-target-display, block);left:0;right:0;transform:translateY(-50%)}.mat-mdc-raised-button:not(:disabled){color:var(--mat-button-protected-label-text-color, var(--mat-sys-primary));background-color:var(--mat-button-protected-container-color, var(--mat-sys-surface))}.mat-mdc-raised-button,.mat-mdc-raised-button .mdc-button__ripple{border-radius:var(--mat-button-protected-container-shape, var(--mat-sys-corner-full))}.mat-mdc-raised-button:hover{box-shadow:var(--mat-button-protected-hover-container-elevation-shadow, var(--mat-sys-level2))}.mat-mdc-raised-button:focus{box-shadow:var(--mat-button-protected-focus-container-elevation-shadow, var(--mat-sys-level1))}.mat-mdc-raised-button:active,.mat-mdc-raised-button:focus:active{box-shadow:var(--mat-button-protected-pressed-container-elevation-shadow, var(--mat-sys-level1))}.mat-mdc-raised-button[disabled],.mat-mdc-raised-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-button-protected-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-button-protected-disabled-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-raised-button[disabled].mat-mdc-button-disabled,.mat-mdc-raised-button.mat-mdc-button-disabled.mat-mdc-button-disabled{box-shadow:var(--mat-button-protected-disabled-container-elevation-shadow, var(--mat-sys-level0))}.mat-mdc-raised-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-outlined-button{border-style:solid;transition:border 280ms cubic-bezier(0.4, 0, 0.2, 1);height:var(--mat-button-outlined-container-height, 40px);font-family:var(--mat-button-outlined-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-outlined-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-button-outlined-label-text-tracking, var(--mat-sys-label-large-tracking));text-transform:var(--mat-button-outlined-label-text-transform);font-weight:var(--mat-button-outlined-label-text-weight, var(--mat-sys-label-large-weight));border-radius:var(--mat-button-outlined-container-shape, var(--mat-sys-corner-full));border-width:var(--mat-button-outlined-outline-width, 1px);padding:0 var(--mat-button-outlined-horizontal-padding, 24px)}.mat-mdc-outlined-button>.mat-icon{margin-right:var(--mat-button-outlined-icon-spacing, 8px);margin-left:var(--mat-button-outlined-icon-offset, -8px)}[dir=rtl] .mat-mdc-outlined-button>.mat-icon{margin-right:var(--mat-button-outlined-icon-offset, -8px);margin-left:var(--mat-button-outlined-icon-spacing, 8px)}.mat-mdc-outlined-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-outlined-icon-offset, -8px);margin-left:var(--mat-button-outlined-icon-spacing, 8px)}[dir=rtl] .mat-mdc-outlined-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-outlined-icon-spacing, 8px);margin-left:var(--mat-button-outlined-icon-offset, -8px)}.mat-mdc-outlined-button .mat-ripple-element{background-color:var(--mat-button-outlined-ripple-color, color-mix(in srgb, var(--mat-sys-primary) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-outlined-state-layer-color, var(--mat-sys-primary))}.mat-mdc-outlined-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-outlined-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-outlined-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-outlined-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-outlined-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-outlined-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-outlined-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-outlined-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-outlined-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-button-outlined-touch-target-size, 48px);display:var(--mat-button-outlined-touch-target-display, block);left:0;right:0;transform:translateY(-50%)}.mat-mdc-outlined-button:not(:disabled){color:var(--mat-button-outlined-label-text-color, var(--mat-sys-primary));border-color:var(--mat-button-outlined-outline-color, var(--mat-sys-outline))}.mat-mdc-outlined-button[disabled],.mat-mdc-outlined-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-button-outlined-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));border-color:var(--mat-button-outlined-disabled-outline-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-outlined-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-tonal-button{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);height:var(--mat-button-tonal-container-height, 40px);font-family:var(--mat-button-tonal-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-tonal-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-button-tonal-label-text-tracking, var(--mat-sys-label-large-tracking));text-transform:var(--mat-button-tonal-label-text-transform);font-weight:var(--mat-button-tonal-label-text-weight, var(--mat-sys-label-large-weight));padding:0 var(--mat-button-tonal-horizontal-padding, 24px)}.mat-tonal-button:not(:disabled){color:var(--mat-button-tonal-label-text-color, var(--mat-sys-on-secondary-container));background-color:var(--mat-button-tonal-container-color, var(--mat-sys-secondary-container))}.mat-tonal-button,.mat-tonal-button .mdc-button__ripple{border-radius:var(--mat-button-tonal-container-shape, var(--mat-sys-corner-full))}.mat-tonal-button[disabled],.mat-tonal-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-button-tonal-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-button-tonal-disabled-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-tonal-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-tonal-button>.mat-icon{margin-right:var(--mat-button-tonal-icon-spacing, 8px);margin-left:var(--mat-button-tonal-icon-offset, -8px)}[dir=rtl] .mat-tonal-button>.mat-icon{margin-right:var(--mat-button-tonal-icon-offset, -8px);margin-left:var(--mat-button-tonal-icon-spacing, 8px)}.mat-tonal-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-tonal-icon-offset, -8px);margin-left:var(--mat-button-tonal-icon-spacing, 8px)}[dir=rtl] .mat-tonal-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-tonal-icon-spacing, 8px);margin-left:var(--mat-button-tonal-icon-offset, -8px)}.mat-tonal-button .mat-ripple-element{background-color:var(--mat-button-tonal-ripple-color, color-mix(in srgb, var(--mat-sys-on-secondary-container) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-tonal-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-tonal-state-layer-color, var(--mat-sys-on-secondary-container))}.mat-tonal-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-tonal-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-tonal-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-tonal-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-tonal-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-tonal-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-tonal-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-tonal-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-tonal-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-tonal-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-tonal-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-button-tonal-touch-target-size, 48px);display:var(--mat-button-tonal-touch-target-display, block);left:0;right:0;transform:translateY(-50%)}.mat-mdc-button,.mat-mdc-unelevated-button,.mat-mdc-raised-button,.mat-mdc-outlined-button,.mat-tonal-button{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-button .mat-mdc-button-ripple,.mat-mdc-button .mat-mdc-button-persistent-ripple,.mat-mdc-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button .mat-mdc-button-ripple,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button .mat-mdc-button-ripple,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before,.mat-tonal-button .mat-mdc-button-ripple,.mat-tonal-button .mat-mdc-button-persistent-ripple,.mat-tonal-button .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-button .mat-mdc-button-ripple,.mat-mdc-unelevated-button .mat-mdc-button-ripple,.mat-mdc-raised-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mat-mdc-button-ripple,.mat-tonal-button .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before,.mat-tonal-button .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-button .mdc-button__label,.mat-mdc-button .mat-icon,.mat-mdc-unelevated-button .mdc-button__label,.mat-mdc-unelevated-button .mat-icon,.mat-mdc-raised-button .mdc-button__label,.mat-mdc-raised-button .mat-icon,.mat-mdc-outlined-button .mdc-button__label,.mat-mdc-outlined-button .mat-icon,.mat-tonal-button .mdc-button__label,.mat-tonal-button .mat-icon{z-index:1;position:relative}.mat-mdc-button .mat-focus-indicator,.mat-mdc-unelevated-button .mat-focus-indicator,.mat-mdc-raised-button .mat-focus-indicator,.mat-mdc-outlined-button .mat-focus-indicator,.mat-tonal-button .mat-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:inherit}.mat-mdc-button:focus>.mat-focus-indicator::before,.mat-mdc-unelevated-button:focus>.mat-focus-indicator::before,.mat-mdc-raised-button:focus>.mat-focus-indicator::before,.mat-mdc-outlined-button:focus>.mat-focus-indicator::before,.mat-tonal-button:focus>.mat-focus-indicator::before{content:"";border-radius:inherit}.mat-mdc-button._mat-animation-noopable,.mat-mdc-unelevated-button._mat-animation-noopable,.mat-mdc-raised-button._mat-animation-noopable,.mat-mdc-outlined-button._mat-animation-noopable,.mat-tonal-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-button>.mat-icon,.mat-mdc-unelevated-button>.mat-icon,.mat-mdc-raised-button>.mat-icon,.mat-mdc-outlined-button>.mat-icon,.mat-tonal-button>.mat-icon{display:inline-block;position:relative;vertical-align:top;font-size:1.125rem;height:1.125rem;width:1.125rem}.mat-mdc-outlined-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mdc-button__ripple{top:-1px;left:-1px;bottom:-1px;right:-1px}.mat-mdc-unelevated-button .mat-focus-indicator::before,.mat-tonal-button .mat-focus-indicator::before,.mat-mdc-raised-button .mat-focus-indicator::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-outlined-button .mat-focus-indicator::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 3px)*-1)}\n',"@media(forced-colors: active){.mat-mdc-button:not(.mdc-button--outlined),.mat-mdc-unelevated-button:not(.mdc-button--outlined),.mat-mdc-raised-button:not(.mdc-button--outlined),.mat-mdc-outlined-button:not(.mdc-button--outlined),.mat-mdc-button-base.mat-tonal-button,.mat-mdc-icon-button.mat-mdc-icon-button,.mat-mdc-outlined-button .mdc-button__ripple{outline:solid 1px}}\n"],encapsulation:2,changeDetection:0})}return J})();const G=new e.nKC("mat-mdc-fab-default-options",{providedIn:"root",factory:re});function re(){return{color:"accent"}}const xe=re();let V=(()=>{class J extends w.iM{_options=(0,e.WQX)(G,{optional:!0});_isFab=!0;constructor(){super(),this._options=this._options||xe,this.color=this._options.color||xe.color}static \u0275fac=function(Xe){return new(Xe||J)};static \u0275cmp=O.VBU({type:J,selectors:[["button","mat-mini-fab",""],["a","mat-mini-fab",""],["button","matMiniFab",""],["a","matMiniFab",""]],hostAttrs:[1,"mdc-fab","mat-mdc-fab-base","mdc-fab--mini","mat-mdc-mini-fab"],exportAs:["matButton","matAnchor"],features:[O.Vt3],attrs:Pe,ngContentSelectors:B,decls:7,vars:4,consts:[[1,"mat-mdc-button-persistent-ripple"],[1,"mdc-button__label"],[1,"mat-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(Xe,_e){1&Xe&&(O.NAR(C),O.Hgh(0,"span",0),O.SdG(1),O.rj2(2,"span",1),O.SdG(3,1),O.eux(),O.SdG(4,2),O.Hgh(5,"span",2)(6,"span",3)),2&Xe&&O.AVh("mdc-button__ripple",!_e._isFab)("mdc-fab__ripple",_e._isFab)},styles:['.mat-mdc-fab-base{-webkit-user-select:none;user-select:none;position:relative;display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;width:56px;height:56px;padding:0;border:none;fill:currentColor;text-decoration:none;cursor:pointer;-moz-appearance:none;-webkit-appearance:none;overflow:visible;transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1),opacity 15ms linear 30ms,transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);flex-shrink:0;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-fab-base .mat-mdc-button-ripple,.mat-mdc-fab-base .mat-mdc-button-persistent-ripple,.mat-mdc-fab-base .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-fab-base .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-fab-base .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-fab-base .mdc-button__label,.mat-mdc-fab-base .mat-icon{z-index:1;position:relative}.mat-mdc-fab-base .mat-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-fab-base:focus>.mat-focus-indicator::before{content:""}.mat-mdc-fab-base._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-fab-base::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}.mat-mdc-fab-base[hidden]{display:none}.mat-mdc-fab-base::-moz-focus-inner{padding:0;border:0}.mat-mdc-fab-base:active,.mat-mdc-fab-base:focus{outline:none}.mat-mdc-fab-base:hover{cursor:pointer}.mat-mdc-fab-base>svg{width:100%}.mat-mdc-fab-base .mat-icon,.mat-mdc-fab-base .material-icons{transition:transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);fill:currentColor;will-change:transform}.mat-mdc-fab-base .mat-focus-indicator::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-fab-base[disabled],.mat-mdc-fab-base.mat-mdc-button-disabled{cursor:default;pointer-events:none}.mat-mdc-fab-base[disabled],.mat-mdc-fab-base[disabled]:focus,.mat-mdc-fab-base.mat-mdc-button-disabled,.mat-mdc-fab-base.mat-mdc-button-disabled:focus{box-shadow:none}.mat-mdc-fab-base.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-fab{background-color:var(--mat-fab-container-color, var(--mat-sys-primary-container));border-radius:var(--mat-fab-container-shape, var(--mat-sys-corner-large));color:var(--mat-fab-foreground-color, var(--mat-sys-on-primary-container, inherit));box-shadow:var(--mat-fab-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-fab:hover{box-shadow:var(--mat-fab-hover-container-elevation-shadow, var(--mat-sys-level4))}.mat-mdc-fab:focus{box-shadow:var(--mat-fab-focus-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-fab:active,.mat-mdc-fab:focus:active{box-shadow:var(--mat-fab-pressed-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-fab[disabled],.mat-mdc-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-fab-disabled-state-foreground-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-fab-disabled-state-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-fab .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-fab-touch-target-size, 48px);display:var(--mat-fab-touch-target-display, block);left:50%;width:var(--mat-fab-touch-target-size, 48px);transform:translate(-50%, -50%)}.mat-mdc-fab .mat-ripple-element{background-color:var(--mat-fab-ripple-color, color-mix(in srgb, var(--mat-sys-on-primary-container) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-fab .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-state-layer-color, var(--mat-sys-on-primary-container))}.mat-mdc-fab.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-disabled-state-layer-color)}.mat-mdc-fab:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-fab.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-fab.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-fab.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-fab:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-mini-fab{width:40px;height:40px;background-color:var(--mat-fab-small-container-color, var(--mat-sys-primary-container));border-radius:var(--mat-fab-small-container-shape, var(--mat-sys-corner-medium));color:var(--mat-fab-small-foreground-color, var(--mat-sys-on-primary-container, inherit));box-shadow:var(--mat-fab-small-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-mini-fab:hover{box-shadow:var(--mat-fab-small-hover-container-elevation-shadow, var(--mat-sys-level4))}.mat-mdc-mini-fab:focus{box-shadow:var(--mat-fab-small-focus-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-mini-fab:active,.mat-mdc-mini-fab:focus:active{box-shadow:var(--mat-fab-small-pressed-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-mini-fab[disabled],.mat-mdc-mini-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-fab-small-disabled-state-foreground-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-fab-small-disabled-state-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-mini-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-mini-fab .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-fab-small-touch-target-size, 48px);display:var(--mat-fab-small-touch-target-display);left:50%;width:var(--mat-fab-small-touch-target-size, 48px);transform:translate(-50%, -50%)}.mat-mdc-mini-fab .mat-ripple-element{background-color:var(--mat-fab-small-ripple-color, color-mix(in srgb, var(--mat-sys-on-primary-container) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-small-state-layer-color, var(--mat-sys-on-primary-container))}.mat-mdc-mini-fab.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-small-disabled-state-layer-color)}.mat-mdc-mini-fab:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-small-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-mini-fab.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-small-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-mini-fab:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-small-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-extended-fab{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;padding-left:20px;padding-right:20px;width:auto;max-width:100%;line-height:normal;box-shadow:var(--mat-fab-extended-container-elevation-shadow, var(--mat-sys-level3));height:var(--mat-fab-extended-container-height, 56px);border-radius:var(--mat-fab-extended-container-shape, var(--mat-sys-corner-large));font-family:var(--mat-fab-extended-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-fab-extended-label-text-size, var(--mat-sys-label-large-size));font-weight:var(--mat-fab-extended-label-text-weight, var(--mat-sys-label-large-weight));letter-spacing:var(--mat-fab-extended-label-text-tracking, var(--mat-sys-label-large-tracking))}.mat-mdc-extended-fab:hover{box-shadow:var(--mat-fab-extended-hover-container-elevation-shadow, var(--mat-sys-level4))}.mat-mdc-extended-fab:focus{box-shadow:var(--mat-fab-extended-focus-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-extended-fab:active,.mat-mdc-extended-fab:focus:active{box-shadow:var(--mat-fab-extended-pressed-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-extended-fab[disabled],.mat-mdc-extended-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none}.mat-mdc-extended-fab[disabled],.mat-mdc-extended-fab[disabled]:focus,.mat-mdc-extended-fab.mat-mdc-button-disabled,.mat-mdc-extended-fab.mat-mdc-button-disabled:focus{box-shadow:none}.mat-mdc-extended-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}[dir=rtl] .mat-mdc-extended-fab .mdc-button__label+.mat-icon,[dir=rtl] .mat-mdc-extended-fab .mdc-button__label+.material-icons,.mat-mdc-extended-fab>.mat-icon,.mat-mdc-extended-fab>.material-icons{margin-left:-8px;margin-right:12px}.mat-mdc-extended-fab .mdc-button__label+.mat-icon,.mat-mdc-extended-fab .mdc-button__label+.material-icons,[dir=rtl] .mat-mdc-extended-fab>.mat-icon,[dir=rtl] .mat-mdc-extended-fab>.material-icons{margin-left:12px;margin-right:-8px}.mat-mdc-extended-fab .mat-mdc-button-touch-target{width:100%}\n'],encapsulation:2,changeDetection:0})}return J})(),ne=(()=>{class J{static \u0275fac=function(Xe){return new(Xe||J)};static \u0275mod=O.$C({type:J});static \u0275inj=e.G2t({imports:[u.y,f.p,u.y]})}return J})()},5596(Zt,pe,l){"use strict";l.d(pe,{Hu:()=>ce,Lc:()=>Pe,MM:()=>Ce,RN:()=>L,dh:()=>C,m2:()=>A});var i=l(2615),d=l(3664),v=l(2466);const T=["*"],O=[[["","mat-card-avatar",""],["","matCardAvatar",""]],[["mat-card-title"],["mat-card-subtitle"],["","mat-card-title",""],["","mat-card-subtitle",""],["","matCardTitle",""],["","matCardSubtitle",""]],"*"],f=["[mat-card-avatar], [matCardAvatar]","mat-card-title, mat-card-subtitle,\n [mat-card-title], [mat-card-subtitle],\n [matCardTitle], [matCardSubtitle]","*"],u=new i.nKC("MAT_CARD_CONFIG");let L=(()=>{class be{appearance;constructor(){const J=(0,i.WQX)(u,{optional:!0});this.appearance=J?.appearance||"raised"}static \u0275fac=function(De){return new(De||be)};static \u0275cmp=d.VBU({type:be,selectors:[["mat-card"]],hostAttrs:[1,"mat-mdc-card","mdc-card"],hostVars:8,hostBindings:function(De,Re){2&De&&d.AVh("mat-mdc-card-outlined","outlined"===Re.appearance)("mdc-card--outlined","outlined"===Re.appearance)("mat-mdc-card-filled","filled"===Re.appearance)("mdc-card--filled","filled"===Re.appearance)},inputs:{appearance:"appearance"},exportAs:["matCard"],ngContentSelectors:T,decls:1,vars:0,template:function(De,Re){1&De&&(d.NAR(),d.SdG(0))},styles:['.mat-mdc-card{display:flex;flex-direction:column;box-sizing:border-box;position:relative;border-style:solid;border-width:0;background-color:var(--mat-card-elevated-container-color, var(--mat-sys-surface-container-low));border-color:var(--mat-card-elevated-container-color, var(--mat-sys-surface-container-low));border-radius:var(--mat-card-elevated-container-shape, var(--mat-sys-corner-medium));box-shadow:var(--mat-card-elevated-container-elevation, var(--mat-sys-level1))}.mat-mdc-card::after{position:absolute;top:0;left:0;width:100%;height:100%;border:solid 1px rgba(0,0,0,0);content:"";display:block;pointer-events:none;box-sizing:border-box;border-radius:var(--mat-card-elevated-container-shape, var(--mat-sys-corner-medium))}.mat-mdc-card-outlined{background-color:var(--mat-card-outlined-container-color, var(--mat-sys-surface));border-radius:var(--mat-card-outlined-container-shape, var(--mat-sys-corner-medium));border-width:var(--mat-card-outlined-outline-width, 1px);border-color:var(--mat-card-outlined-outline-color, var(--mat-sys-outline-variant));box-shadow:var(--mat-card-outlined-container-elevation, var(--mat-sys-level0))}.mat-mdc-card-outlined::after{border:none}.mat-mdc-card-filled{background-color:var(--mat-card-filled-container-color, var(--mat-sys-surface-container-highest));border-radius:var(--mat-card-filled-container-shape, var(--mat-sys-corner-medium));box-shadow:var(--mat-card-filled-container-elevation, var(--mat-sys-level0))}.mdc-card__media{position:relative;box-sizing:border-box;background-repeat:no-repeat;background-position:center;background-size:cover}.mdc-card__media::before{display:block;content:""}.mdc-card__media:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.mdc-card__media:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.mat-mdc-card-actions{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;min-height:52px;padding:8px}.mat-mdc-card-title{font-family:var(--mat-card-title-text-font, var(--mat-sys-title-large-font));line-height:var(--mat-card-title-text-line-height, var(--mat-sys-title-large-line-height));font-size:var(--mat-card-title-text-size, var(--mat-sys-title-large-size));letter-spacing:var(--mat-card-title-text-tracking, var(--mat-sys-title-large-tracking));font-weight:var(--mat-card-title-text-weight, var(--mat-sys-title-large-weight))}.mat-mdc-card-subtitle{color:var(--mat-card-subtitle-text-color, var(--mat-sys-on-surface));font-family:var(--mat-card-subtitle-text-font, var(--mat-sys-title-medium-font));line-height:var(--mat-card-subtitle-text-line-height, var(--mat-sys-title-medium-line-height));font-size:var(--mat-card-subtitle-text-size, var(--mat-sys-title-medium-size));letter-spacing:var(--mat-card-subtitle-text-tracking, var(--mat-sys-title-medium-tracking));font-weight:var(--mat-card-subtitle-text-weight, var(--mat-sys-title-medium-weight))}.mat-mdc-card-title,.mat-mdc-card-subtitle{display:block;margin:0}.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-title,.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-subtitle{padding:16px 16px 0}.mat-mdc-card-header{display:flex;padding:16px 16px 0}.mat-mdc-card-content{display:block;padding:0 16px}.mat-mdc-card-content:first-child{padding-top:16px}.mat-mdc-card-content:last-child{padding-bottom:16px}.mat-mdc-card-title-group{display:flex;justify-content:space-between;width:100%}.mat-mdc-card-avatar{height:40px;width:40px;border-radius:50%;flex-shrink:0;margin-bottom:16px;object-fit:cover}.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-subtitle,.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-title{line-height:normal}.mat-mdc-card-sm-image{width:80px;height:80px}.mat-mdc-card-md-image{width:112px;height:112px}.mat-mdc-card-lg-image{width:152px;height:152px}.mat-mdc-card-xl-image{width:240px;height:240px}.mat-mdc-card-subtitle~.mat-mdc-card-title,.mat-mdc-card-title~.mat-mdc-card-subtitle,.mat-mdc-card-header .mat-mdc-card-header-text .mat-mdc-card-title,.mat-mdc-card-header .mat-mdc-card-header-text .mat-mdc-card-subtitle,.mat-mdc-card-title-group .mat-mdc-card-title,.mat-mdc-card-title-group .mat-mdc-card-subtitle{padding-top:0}.mat-mdc-card-content>:last-child:not(.mat-mdc-card-footer){margin-bottom:0}.mat-mdc-card-actions-align-end{justify-content:flex-end}\n'],encapsulation:2,changeDetection:0})}return be})(),C=(()=>{class be{static \u0275fac=function(De){return new(De||be)};static \u0275dir=d.FsC({type:be,selectors:[["mat-card-title"],["","mat-card-title",""],["","matCardTitle",""]],hostAttrs:[1,"mat-mdc-card-title"]})}return be})(),A=(()=>{class be{static \u0275fac=function(De){return new(De||be)};static \u0275dir=d.FsC({type:be,selectors:[["mat-card-content"]],hostAttrs:[1,"mat-mdc-card-content"]})}return be})(),Pe=(()=>{class be{static \u0275fac=function(De){return new(De||be)};static \u0275dir=d.FsC({type:be,selectors:[["mat-card-subtitle"],["","mat-card-subtitle",""],["","matCardSubtitle",""]],hostAttrs:[1,"mat-mdc-card-subtitle"]})}return be})(),Ce=(()=>{class be{static \u0275fac=function(De){return new(De||be)};static \u0275cmp=d.VBU({type:be,selectors:[["mat-card-header"]],hostAttrs:[1,"mat-mdc-card-header"],ngContentSelectors:f,decls:4,vars:0,consts:[[1,"mat-mdc-card-header-text"]],template:function(De,Re){1&De&&(d.NAR(O),d.SdG(0),d.rj2(1,"div",0),d.SdG(2,1),d.eux(),d.SdG(3,2))},encapsulation:2,changeDetection:0})}return be})(),ce=(()=>{class be{static \u0275fac=function(De){return new(De||be)};static \u0275mod=d.$C({type:be});static \u0275inj=i.G2t({imports:[v.y,v.y]})}return be})()},2765(Zt,pe,l){"use strict";l.d(pe,{So:()=>G,g7:()=>re});var i=l(9726),d=l(2615),v=l(3664),T=l(7705),w=l(9417),e=l(8968),O=l(3155),f=l(1804),u=l(2046),L=l(2496),C=l(2466);const B=["input"],A=["label"],Pe=["*"],le=new d.nKC("mat-checkbox-default-options",{providedIn:"root",factory:Ce});function Ce(){return{color:"accent",clickAction:"check-indeterminate",disabledInteractive:!1}}var Ae=function(xe){return xe[xe.Init=0]="Init",xe[xe.Checked=1]="Checked",xe[xe.Unchecked=2]="Unchecked",xe[xe.Indeterminate=3]="Indeterminate",xe}(Ae||{});class j{source;checked}const W=Ce();let G=(()=>{class xe{_elementRef=(0,d.WQX)(v.aKT);_changeDetectorRef=(0,d.WQX)(T.gRc);_ngZone=(0,d.WQX)(v.SKi);_animationsDisabled=(0,f.Rc)();_options=(0,d.WQX)(le,{optional:!0});focus(){this._inputElement.nativeElement.focus()}_createChangeEvent(V){const ce=new j;return ce.source=this,ce.checked=V,ce}_getAnimationTargetElement(){return this._inputElement?.nativeElement}_animationClasses={uncheckedToChecked:"mdc-checkbox--anim-unchecked-checked",uncheckedToIndeterminate:"mdc-checkbox--anim-unchecked-indeterminate",checkedToUnchecked:"mdc-checkbox--anim-checked-unchecked",checkedToIndeterminate:"mdc-checkbox--anim-checked-indeterminate",indeterminateToChecked:"mdc-checkbox--anim-indeterminate-checked",indeterminateToUnchecked:"mdc-checkbox--anim-indeterminate-unchecked"};ariaLabel="";ariaLabelledby=null;ariaDescribedby;ariaExpanded;ariaControls;ariaOwns;_uniqueId;id;get inputId(){return`${this.id||this._uniqueId}-input`}required;labelPosition="after";name=null;change=new v.bkB;indeterminateChange=new v.bkB;value;disableRipple;_inputElement;_labelElement;tabIndex;color;disabledInteractive;_onTouched=()=>{};_currentAnimationClass="";_currentCheckState=Ae.Init;_controlValueAccessorChangeFn=()=>{};_validatorChangeFn=()=>{};constructor(){(0,d.WQX)(e.l).load(u.A);const V=(0,d.WQX)(new T.ES_("tabindex"),{optional:!0});this._options=this._options||W,this.color=this._options.color||W.color,this.tabIndex=null==V?0:parseInt(V)||0,this.id=this._uniqueId=(0,d.WQX)(i.g).getId("mat-mdc-checkbox-"),this.disabledInteractive=this._options?.disabledInteractive??!1}ngOnChanges(V){V.required&&this._validatorChangeFn()}ngAfterViewInit(){this._syncIndeterminate(this.indeterminate)}get checked(){return this._checked}set checked(V){V!=this.checked&&(this._checked=V,this._changeDetectorRef.markForCheck())}_checked=!1;get disabled(){return this._disabled}set disabled(V){V!==this.disabled&&(this._disabled=V,this._changeDetectorRef.markForCheck())}_disabled=!1;get indeterminate(){return this._indeterminate()}set indeterminate(V){const ce=V!=this._indeterminate();this._indeterminate.set(V),ce&&(this._transitionCheckState(V?Ae.Indeterminate:this.checked?Ae.Checked:Ae.Unchecked),this.indeterminateChange.emit(V)),this._syncIndeterminate(V)}_indeterminate=(0,d.vPA)(!1);_isRippleDisabled(){return this.disableRipple||this.disabled}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}writeValue(V){this.checked=!!V}registerOnChange(V){this._controlValueAccessorChangeFn=V}registerOnTouched(V){this._onTouched=V}setDisabledState(V){this.disabled=V}validate(V){return this.required&&!0!==V.value?{required:!0}:null}registerOnValidatorChange(V){this._validatorChangeFn=V}_transitionCheckState(V){let ce=this._currentCheckState,be=this._getAnimationTargetElement();if(ce!==V&&be&&(this._currentAnimationClass&&be.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(ce,V),this._currentCheckState=V,this._currentAnimationClass.length>0)){be.classList.add(this._currentAnimationClass);const ne=this._currentAnimationClass;this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{be.classList.remove(ne)},1e3)})}}_emitChangeEvent(){this._controlValueAccessorChangeFn(this.checked),this.change.emit(this._createChangeEvent(this.checked)),this._inputElement&&(this._inputElement.nativeElement.checked=this.checked)}toggle(){this.checked=!this.checked,this._controlValueAccessorChangeFn(this.checked)}_handleInputClick(){const V=this._options?.clickAction;this.disabled||"noop"===V?(this.disabled&&this.disabledInteractive||!this.disabled&&"noop"===V)&&(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&"check"!==V&&Promise.resolve().then(()=>{this._indeterminate.set(!1),this.indeterminateChange.emit(!1)}),this._checked=!this._checked,this._transitionCheckState(this._checked?Ae.Checked:Ae.Unchecked),this._emitChangeEvent())}_onInteractionEvent(V){V.stopPropagation()}_onBlur(){Promise.resolve().then(()=>{this._onTouched(),this._changeDetectorRef.markForCheck()})}_getAnimationClassForCheckStateTransition(V,ce){if(this._animationsDisabled)return"";switch(V){case Ae.Init:if(ce===Ae.Checked)return this._animationClasses.uncheckedToChecked;if(ce==Ae.Indeterminate)return this._checked?this._animationClasses.checkedToIndeterminate:this._animationClasses.uncheckedToIndeterminate;break;case Ae.Unchecked:return ce===Ae.Checked?this._animationClasses.uncheckedToChecked:this._animationClasses.uncheckedToIndeterminate;case Ae.Checked:return ce===Ae.Unchecked?this._animationClasses.checkedToUnchecked:this._animationClasses.checkedToIndeterminate;case Ae.Indeterminate:return ce===Ae.Checked?this._animationClasses.indeterminateToChecked:this._animationClasses.indeterminateToUnchecked}return""}_syncIndeterminate(V){const ce=this._inputElement;ce&&(ce.nativeElement.indeterminate=V)}_onInputClick(){this._handleInputClick()}_onTouchTargetClick(){this._handleInputClick(),this.disabled||this._inputElement.nativeElement.focus()}_preventBubblingFromLabel(V){V.target&&this._labelElement.nativeElement.contains(V.target)&&V.stopPropagation()}static \u0275fac=function(ce){return new(ce||xe)};static \u0275cmp=v.VBU({type:xe,selectors:[["mat-checkbox"]],viewQuery:function(ce,be){if(1&ce&&(v.GBs(B,5),v.GBs(A,5)),2&ce){let ne;v.mGM(ne=v.lsd())&&(be._inputElement=ne.first),v.mGM(ne=v.lsd())&&(be._labelElement=ne.first)}},hostAttrs:[1,"mat-mdc-checkbox"],hostVars:16,hostBindings:function(ce,be){2&ce&&(v.Avn("id",be.id),v.BMQ("tabindex",null)("aria-label",null)("aria-labelledby",null),v.HbH(be.color?"mat-"+be.color:"mat-accent"),v.AVh("_mat-animation-noopable",be._animationsDisabled)("mdc-checkbox--disabled",be.disabled)("mat-mdc-checkbox-disabled",be.disabled)("mat-mdc-checkbox-checked",be.checked)("mat-mdc-checkbox-disabled-interactive",be.disabledInteractive))},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],ariaExpanded:[2,"aria-expanded","ariaExpanded",T.L39],ariaControls:[0,"aria-controls","ariaControls"],ariaOwns:[0,"aria-owns","ariaOwns"],id:"id",required:[2,"required","required",T.L39],labelPosition:"labelPosition",name:"name",value:"value",disableRipple:[2,"disableRipple","disableRipple",T.L39],tabIndex:[2,"tabIndex","tabIndex",V=>null==V?void 0:(0,T.Udg)(V)],color:"color",disabledInteractive:[2,"disabledInteractive","disabledInteractive",T.L39],checked:[2,"checked","checked",T.L39],disabled:[2,"disabled","disabled",T.L39],indeterminate:[2,"indeterminate","indeterminate",T.L39]},outputs:{change:"change",indeterminateChange:"indeterminateChange"},exportAs:["matCheckbox"],features:[v.Jv_([{provide:w.kq,useExisting:(0,d.Rfq)(()=>xe),multi:!0},{provide:w.cz,useExisting:xe,multi:!0}]),v.OA$],ngContentSelectors:Pe,decls:15,vars:23,consts:[["checkbox",""],["input",""],["label",""],["mat-internal-form-field","",3,"click","labelPosition"],[1,"mdc-checkbox"],[1,"mat-mdc-checkbox-touch-target",3,"click"],["type","checkbox",1,"mdc-checkbox__native-control",3,"blur","click","change","checked","indeterminate","disabled","id","required","tabIndex"],[1,"mdc-checkbox__ripple"],[1,"mdc-checkbox__background"],["focusable","false","viewBox","0 0 24 24","aria-hidden","true",1,"mdc-checkbox__checkmark"],["fill","none","d","M1.73,12.91 8.1,19.28 22.79,4.59",1,"mdc-checkbox__checkmark-path"],[1,"mdc-checkbox__mixedmark"],["mat-ripple","",1,"mat-mdc-checkbox-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mdc-label",3,"for"]],template:function(ce,be){if(1&ce){const ne=v.RV6();v.NAR(),v.j41(0,"div",3),v.bIt("click",function(De){return d.eBV(ne),d.Njj(be._preventBubblingFromLabel(De))}),v.j41(1,"div",4,0)(3,"div",5),v.bIt("click",function(){return d.eBV(ne),d.Njj(be._onTouchTargetClick())}),v.k0s(),v.j41(4,"input",6,1),v.bIt("blur",function(){return d.eBV(ne),d.Njj(be._onBlur())})("click",function(){return d.eBV(ne),d.Njj(be._onInputClick())})("change",function(De){return d.eBV(ne),d.Njj(be._onInteractionEvent(De))}),v.k0s(),v.nrm(6,"div",7),v.j41(7,"div",8),d.qSk(),v.j41(8,"svg",9),v.nrm(9,"path",10),v.k0s(),d.joV(),v.nrm(10,"div",11),v.k0s(),v.nrm(11,"div",12),v.k0s(),v.j41(12,"label",13,2),v.SdG(14),v.k0s()()}if(2&ce){const ne=v.sdS(2);v.Y8G("labelPosition",be.labelPosition),v.R7$(4),v.AVh("mdc-checkbox--selected",be.checked),v.Y8G("checked",be.checked)("indeterminate",be.indeterminate)("disabled",be.disabled&&!be.disabledInteractive)("id",be.inputId)("required",be.required)("tabIndex",be.disabled&&!be.disabledInteractive?-1:be.tabIndex),v.BMQ("aria-label",be.ariaLabel||null)("aria-labelledby",be.ariaLabelledby)("aria-describedby",be.ariaDescribedby)("aria-checked",be.indeterminate?"mixed":null)("aria-controls",be.ariaControls)("aria-disabled",!(!be.disabled||!be.disabledInteractive)||null)("aria-expanded",be.ariaExpanded)("aria-owns",be.ariaOwns)("name",be.name)("value",be.value),v.R7$(7),v.Y8G("matRippleTrigger",ne)("matRippleDisabled",be.disableRipple||be.disabled)("matRippleCentered",!0),v.R7$(),v.Y8G("for",be.inputId)}},dependencies:[L.r6,O.t],styles:['.mdc-checkbox{display:inline-block;position:relative;flex:0 0 18px;box-sizing:content-box;width:18px;height:18px;line-height:0;white-space:nowrap;cursor:pointer;vertical-align:bottom;padding:calc((var(--mat-checkbox-state-layer-size, 40px) - 18px)/2);margin:calc((var(--mat-checkbox-state-layer-size, 40px) - var(--mat-checkbox-state-layer-size, 40px))/2)}.mdc-checkbox:hover>.mdc-checkbox__ripple{opacity:var(--mat-checkbox-unselected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity));background-color:var(--mat-checkbox-unselected-hover-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox:hover>.mat-mdc-checkbox-ripple>.mat-ripple-element{background-color:var(--mat-checkbox-unselected-hover-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox .mdc-checkbox__native-control:focus+.mdc-checkbox__ripple{opacity:var(--mat-checkbox-unselected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity));background-color:var(--mat-checkbox-unselected-focus-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox .mdc-checkbox__native-control:focus~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mat-checkbox-unselected-focus-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox:active>.mdc-checkbox__native-control+.mdc-checkbox__ripple{opacity:var(--mat-checkbox-unselected-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity));background-color:var(--mat-checkbox-unselected-pressed-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox:active>.mdc-checkbox__native-control~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mat-checkbox-unselected-pressed-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox:hover .mdc-checkbox__native-control:checked+.mdc-checkbox__ripple{opacity:var(--mat-checkbox-selected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity));background-color:var(--mat-checkbox-selected-hover-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox:hover .mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mat-checkbox-selected-hover-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox .mdc-checkbox__native-control:focus:checked+.mdc-checkbox__ripple{opacity:var(--mat-checkbox-selected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity));background-color:var(--mat-checkbox-selected-focus-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox .mdc-checkbox__native-control:focus:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mat-checkbox-selected-focus-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox:active>.mdc-checkbox__native-control:checked+.mdc-checkbox__ripple{opacity:var(--mat-checkbox-selected-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity));background-color:var(--mat-checkbox-selected-pressed-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox:active>.mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mat-checkbox-selected-pressed-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox .mdc-checkbox__native-control~.mat-mdc-checkbox-ripple .mat-ripple-element,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox .mdc-checkbox__native-control+.mdc-checkbox__ripple{background-color:var(--mat-checkbox-unselected-hover-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox .mdc-checkbox__native-control{position:absolute;margin:0;padding:0;opacity:0;cursor:inherit;z-index:1;width:var(--mat-checkbox-state-layer-size, 40px);height:var(--mat-checkbox-state-layer-size, 40px);top:calc((var(--mat-checkbox-state-layer-size, 40px) - var(--mat-checkbox-state-layer-size, 40px))/2);right:calc((var(--mat-checkbox-state-layer-size, 40px) - var(--mat-checkbox-state-layer-size, 40px))/2);left:calc((var(--mat-checkbox-state-layer-size, 40px) - var(--mat-checkbox-state-layer-size, 40px))/2)}.mdc-checkbox--disabled{cursor:default;pointer-events:none}.mdc-checkbox__background{display:inline-flex;position:absolute;align-items:center;justify-content:center;box-sizing:border-box;width:18px;height:18px;border:2px solid currentColor;border-radius:2px;background-color:rgba(0,0,0,0);pointer-events:none;will-change:background-color,border-color;transition:background-color 90ms cubic-bezier(0.4, 0, 0.6, 1),border-color 90ms cubic-bezier(0.4, 0, 0.6, 1);-webkit-print-color-adjust:exact;color-adjust:exact;border-color:var(--mat-checkbox-unselected-icon-color, var(--mat-sys-on-surface-variant));top:calc((var(--mat-checkbox-state-layer-size, 40px) - 18px)/2);left:calc((var(--mat-checkbox-state-layer-size, 40px) - 18px)/2)}.mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background{border-color:var(--mat-checkbox-selected-icon-color, var(--mat-sys-primary));background-color:var(--mat-checkbox-selected-icon-color, var(--mat-sys-primary))}.mdc-checkbox--disabled .mdc-checkbox__background{border-color:var(--mat-checkbox-disabled-unselected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}@media(forced-colors: active){.mdc-checkbox--disabled .mdc-checkbox__background{border-color:GrayText}}.mdc-checkbox__native-control:disabled:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:disabled:indeterminate~.mdc-checkbox__background{background-color:var(--mat-checkbox-disabled-selected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));border-color:rgba(0,0,0,0)}@media(forced-colors: active){.mdc-checkbox__native-control:disabled:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:disabled:indeterminate~.mdc-checkbox__background{border-color:GrayText}}.mdc-checkbox:hover>.mdc-checkbox__native-control:not(:checked)~.mdc-checkbox__background,.mdc-checkbox:hover>.mdc-checkbox__native-control:not(:indeterminate)~.mdc-checkbox__background{border-color:var(--mat-checkbox-unselected-hover-icon-color, var(--mat-sys-on-surface));background-color:rgba(0,0,0,0)}.mdc-checkbox:hover>.mdc-checkbox__native-control:checked~.mdc-checkbox__background,.mdc-checkbox:hover>.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background{border-color:var(--mat-checkbox-selected-hover-icon-color, var(--mat-sys-primary));background-color:var(--mat-checkbox-selected-hover-icon-color, var(--mat-sys-primary))}.mdc-checkbox__native-control:focus:focus:not(:checked)~.mdc-checkbox__background,.mdc-checkbox__native-control:focus:focus:not(:indeterminate)~.mdc-checkbox__background{border-color:var(--mat-checkbox-unselected-focus-icon-color, var(--mat-sys-on-surface))}.mdc-checkbox__native-control:focus:focus:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:focus:focus:indeterminate~.mdc-checkbox__background{border-color:var(--mat-checkbox-selected-focus-icon-color, var(--mat-sys-primary));background-color:var(--mat-checkbox-selected-focus-icon-color, var(--mat-sys-primary))}.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox:hover>.mdc-checkbox__native-control~.mdc-checkbox__background,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox .mdc-checkbox__native-control:focus~.mdc-checkbox__background,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__background{border-color:var(--mat-checkbox-disabled-unselected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}@media(forced-colors: active){.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox:hover>.mdc-checkbox__native-control~.mdc-checkbox__background,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox .mdc-checkbox__native-control:focus~.mdc-checkbox__background,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__background{border-color:GrayText}}.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__native-control:checked~.mdc-checkbox__background,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background{background-color:var(--mat-checkbox-disabled-selected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));border-color:rgba(0,0,0,0)}.mdc-checkbox__checkmark{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;opacity:0;transition:opacity 180ms cubic-bezier(0.4, 0, 0.6, 1);color:var(--mat-checkbox-selected-checkmark-color, var(--mat-sys-on-primary))}@media(forced-colors: active){.mdc-checkbox__checkmark{color:CanvasText}}.mdc-checkbox--disabled .mdc-checkbox__checkmark,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__checkmark{color:var(--mat-checkbox-disabled-selected-checkmark-color, var(--mat-sys-surface))}@media(forced-colors: active){.mdc-checkbox--disabled .mdc-checkbox__checkmark,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__checkmark{color:GrayText}}.mdc-checkbox__checkmark-path{transition:stroke-dashoffset 180ms cubic-bezier(0.4, 0, 0.6, 1);stroke:currentColor;stroke-width:3.12px;stroke-dashoffset:29.7833385;stroke-dasharray:29.7833385}.mdc-checkbox__mixedmark{width:100%;height:0;transform:scaleX(0) rotate(0deg);border-width:1px;border-style:solid;opacity:0;transition:opacity 90ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms cubic-bezier(0.4, 0, 0.6, 1);border-color:var(--mat-checkbox-selected-checkmark-color, var(--mat-sys-on-primary))}@media(forced-colors: active){.mdc-checkbox__mixedmark{margin:0 1px}}.mdc-checkbox--disabled .mdc-checkbox__mixedmark,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__mixedmark{border-color:var(--mat-checkbox-disabled-selected-checkmark-color, var(--mat-sys-surface))}@media(forced-colors: active){.mdc-checkbox--disabled .mdc-checkbox__mixedmark,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__mixedmark{border-color:GrayText}}.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__background,.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__background,.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__background,.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__background{animation-duration:180ms;animation-timing-function:linear}.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-unchecked-checked-checkmark-path 180ms linear;transition:none}.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-unchecked-indeterminate-mixedmark 90ms linear;transition:none}.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-checked-unchecked-checkmark-path 90ms linear;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__checkmark{animation:mdc-checkbox-checked-indeterminate-checkmark 90ms linear;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-checked-indeterminate-mixedmark 90ms linear;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__checkmark{animation:mdc-checkbox-indeterminate-checked-checkmark 500ms linear;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-checked-mixedmark 500ms linear;transition:none}.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-unchecked-mixedmark 300ms linear;transition:none}.mdc-checkbox__native-control:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background{transition:border-color 90ms cubic-bezier(0, 0, 0.2, 1),background-color 90ms cubic-bezier(0, 0, 0.2, 1)}.mdc-checkbox__native-control:checked~.mdc-checkbox__background>.mdc-checkbox__checkmark>.mdc-checkbox__checkmark-path,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background>.mdc-checkbox__checkmark>.mdc-checkbox__checkmark-path{stroke-dashoffset:0}.mdc-checkbox__native-control:checked~.mdc-checkbox__background>.mdc-checkbox__checkmark{transition:opacity 180ms cubic-bezier(0, 0, 0.2, 1),transform 180ms cubic-bezier(0, 0, 0.2, 1);opacity:1}.mdc-checkbox__native-control:checked~.mdc-checkbox__background>.mdc-checkbox__mixedmark{transform:scaleX(1) rotate(-45deg)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background>.mdc-checkbox__checkmark{transform:rotate(45deg);opacity:0;transition:opacity 90ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background>.mdc-checkbox__mixedmark{transform:scaleX(1) rotate(0deg);opacity:1}@keyframes mdc-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:29.7833385}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}100%{stroke-dashoffset:0}}@keyframes mdc-checkbox-unchecked-indeterminate-mixedmark{0%,68.2%{transform:scaleX(0)}68.2%{animation-timing-function:cubic-bezier(0, 0, 0, 1)}100%{transform:scaleX(1)}}@keyframes mdc-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);opacity:1;stroke-dashoffset:0}to{opacity:0;stroke-dashoffset:-29.7833385}}@keyframes mdc-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 1);transform:rotate(0deg);opacity:1}to{transform:rotate(45deg);opacity:0}}@keyframes mdc-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);transform:rotate(45deg);opacity:0}to{transform:rotate(360deg);opacity:1}}@keyframes mdc-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 1);transform:rotate(-45deg);opacity:0}to{transform:rotate(0deg);opacity:1}}@keyframes mdc-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);transform:rotate(0deg);opacity:1}to{transform:rotate(315deg);opacity:0}}@keyframes mdc-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;transform:scaleX(1);opacity:1}32.8%,100%{transform:scaleX(0);opacity:0}}.mat-mdc-checkbox{display:inline-block;position:relative;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mat-mdc-checkbox-touch-target,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__native-control,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__ripple,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mat-mdc-checkbox-ripple::before,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__background,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__background>.mdc-checkbox__checkmark,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__background>.mdc-checkbox__checkmark>.mdc-checkbox__checkmark-path,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__background>.mdc-checkbox__mixedmark{transition:none !important;animation:none !important}.mat-mdc-checkbox label{cursor:pointer}.mat-mdc-checkbox .mat-internal-form-field{color:var(--mat-checkbox-label-text-color, var(--mat-sys-on-surface));font-family:var(--mat-checkbox-label-text-font, var(--mat-sys-body-medium-font));line-height:var(--mat-checkbox-label-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-checkbox-label-text-size, var(--mat-sys-body-medium-size));letter-spacing:var(--mat-checkbox-label-text-tracking, var(--mat-sys-body-medium-tracking));font-weight:var(--mat-checkbox-label-text-weight, var(--mat-sys-body-medium-weight))}.mat-mdc-checkbox.mat-mdc-checkbox-disabled.mat-mdc-checkbox-disabled-interactive{pointer-events:auto}.mat-mdc-checkbox.mat-mdc-checkbox-disabled.mat-mdc-checkbox-disabled-interactive input{cursor:default}.mat-mdc-checkbox.mat-mdc-checkbox-disabled label{cursor:default;color:var(--mat-checkbox-disabled-label-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}@media(forced-colors: active){.mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:GrayText}}.mat-mdc-checkbox label:empty{display:none}.mat-mdc-checkbox .mdc-checkbox__ripple{opacity:0}.mat-mdc-checkbox .mat-mdc-checkbox-ripple,.mdc-checkbox__ripple{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:50%;pointer-events:none}.mat-mdc-checkbox .mat-mdc-checkbox-ripple:not(:empty),.mdc-checkbox__ripple:not(:empty){transform:translateZ(0)}.mat-mdc-checkbox-ripple .mat-ripple-element{opacity:.1}.mat-mdc-checkbox-touch-target{position:absolute;top:50%;left:50%;height:var(--mat-checkbox-touch-target-size, 48px);width:var(--mat-checkbox-touch-target-size, 48px);transform:translate(-50%, -50%);display:var(--mat-checkbox-touch-target-display, block)}.mat-mdc-checkbox .mat-mdc-checkbox-ripple::before{border-radius:50%}.mdc-checkbox__native-control:focus~.mat-focus-indicator::before{content:""}\n'],encapsulation:2,changeDetection:0})}return xe})(),re=(()=>{class xe{static \u0275fac=function(ce){return new(ce||xe)};static \u0275mod=v.$C({type:xe});static \u0275inj=d.G2t({imports:[G,C.y,C.y]})}return xe})()},6471(Zt,pe,l){"use strict";l.d(pe,{Jl:()=>cn,YN:()=>Ni});var i=l(6838),d=l(9726),w=(l(4123),l(7336),l(438)),e=l(9046),O=l(8968),f=l(2615),u=l(3664),L=l(7705),C=l(1413),B=l(7786),A=l(2046),Pe=l(2496),le=l(1804),Ce=l(1048),xe=(l(9172),l(5558),l(6977),l(1577),l(9417),l(2709)),ce=(l(9336),l(9588),l(2466)),be=l(6881);const ne=["*",[["mat-chip-avatar"],["","matChipAvatar",""]],[["mat-chip-trailing-icon"],["","matChipRemove",""],["","matChipTrailingIcon",""]]],J=["*","mat-chip-avatar, [matChipAvatar]","mat-chip-trailing-icon,[matChipRemove],[matChipTrailingIcon]"];function De(kn,Ri){1&kn&&(u.j41(0,"span",3),u.SdG(1,1),u.k0s())}function Re(kn,Ri){1&kn&&(u.j41(0,"span",6),u.SdG(1,2),u.k0s())}const St=new f.nKC("mat-chips-default-options",{providedIn:"root",factory:()=>({separatorKeyCodes:[w.Fm]})}),ot=new f.nKC("MatChipAvatar"),nt=new f.nKC("MatChipTrailingIcon"),ht=new f.nKC("MatChipEdit"),oe=new f.nKC("MatChipRemove"),Ye=new f.nKC("MatChip");let fe=(()=>{class kn{_elementRef=(0,f.WQX)(u.aKT);_parentChip=(0,f.WQX)(Ye);isInteractive=!0;_isPrimary=!0;_isLeading=!1;get disabled(){return this._disabled||this._parentChip?.disabled||!1}set disabled(vt){this._disabled=vt}_disabled=!1;tabIndex=-1;_allowFocusWhenDisabled=!1;_getDisabledAttribute(){return this.disabled&&!this._allowFocusWhenDisabled?"":null}_getTabindex(){return this.disabled&&!this._allowFocusWhenDisabled||!this.isInteractive?null:this.tabIndex.toString()}constructor(){(0,f.WQX)(O.l).load(A.A),"BUTTON"===this._elementRef.nativeElement.nodeName&&this._elementRef.nativeElement.setAttribute("type","button")}focus(){this._elementRef.nativeElement.focus()}_handleClick(vt){!this.disabled&&this.isInteractive&&this._isPrimary&&(vt.preventDefault(),this._parentChip._handlePrimaryActionInteraction())}_handleKeydown(vt){(vt.keyCode===w.Fm||vt.keyCode===w.t6)&&!this.disabled&&this.isInteractive&&this._isPrimary&&!this._parentChip._isEditing&&(vt.preventDefault(),this._parentChip._handlePrimaryActionInteraction())}static \u0275fac=function(ee){return new(ee||kn)};static \u0275dir=u.FsC({type:kn,selectors:[["","matChipAction",""]],hostAttrs:[1,"mdc-evolution-chip__action","mat-mdc-chip-action"],hostVars:11,hostBindings:function(ee,ye){1&ee&&u.bIt("click",function(Se){return ye._handleClick(Se)})("keydown",function(Se){return ye._handleKeydown(Se)}),2&ee&&(u.BMQ("tabindex",ye._getTabindex())("disabled",ye._getDisabledAttribute())("aria-disabled",ye.disabled),u.AVh("mdc-evolution-chip__action--primary",ye._isPrimary)("mdc-evolution-chip__action--presentational",!ye.isInteractive)("mdc-evolution-chip__action--secondary",!ye._isPrimary)("mdc-evolution-chip__action--trailing",!ye._isPrimary&&!ye._isLeading))},inputs:{isInteractive:"isInteractive",disabled:[2,"disabled","disabled",L.L39],tabIndex:[2,"tabIndex","tabIndex",vt=>null==vt?-1:(0,L.Udg)(vt)],_allowFocusWhenDisabled:"_allowFocusWhenDisabled"}})}return kn})(),cn=(()=>{class kn{_changeDetectorRef=(0,f.WQX)(L.gRc);_elementRef=(0,f.WQX)(u.aKT);_tagName=(0,f.WQX)(L.cCO);_ngZone=(0,f.WQX)(u.SKi);_focusMonitor=(0,f.WQX)(i.FN);_globalRippleOptions=(0,f.WQX)(Pe.$E,{optional:!0});_document=(0,f.WQX)(f.qQL);_onFocus=new C.B;_onBlur=new C.B;_isBasicChip;role=null;_hasFocusInternal=!1;_pendingFocus;_actionChanges;_animationsDisabled=(0,le.Rc)();_allLeadingIcons;_allTrailingIcons;_allEditIcons;_allRemoveIcons;_hasFocus(){return this._hasFocusInternal}id=(0,f.WQX)(d.g).getId("mat-mdc-chip-");ariaLabel=null;ariaDescription=null;_chipListDisabled=!1;_hadFocusOnRemove=!1;_textElement;get value(){return void 0!==this._value?this._value:this._textElement.textContent.trim()}set value(vt){this._value=vt}_value;color;removable=!0;highlighted=!1;disableRipple=!1;get disabled(){return this._disabled||this._chipListDisabled}set disabled(vt){this._disabled=vt}_disabled=!1;removed=new u.bkB;destroyed=new u.bkB;basicChipAttrName="mat-basic-chip";leadingIcon;editIcon;trailingIcon;removeIcon;primaryAction;_rippleLoader=(0,f.WQX)(Ce.E);_injector=(0,f.WQX)(f.zZn);constructor(){const vt=(0,f.WQX)(O.l);vt.load(A.A),vt.load(e.Y),this._monitorFocus(),this._rippleLoader?.configureRipple(this._elementRef.nativeElement,{className:"mat-mdc-chip-ripple",disabled:this._isRippleDisabled()})}ngOnInit(){this._isBasicChip=this._elementRef.nativeElement.hasAttribute(this.basicChipAttrName)||this._tagName.toLowerCase()===this.basicChipAttrName}ngAfterViewInit(){this._textElement=this._elementRef.nativeElement.querySelector(".mat-mdc-chip-action-label"),this._pendingFocus&&(this._pendingFocus=!1,this.focus())}ngAfterContentInit(){this._actionChanges=(0,B.h)(this._allLeadingIcons.changes,this._allTrailingIcons.changes,this._allEditIcons.changes,this._allRemoveIcons.changes).subscribe(()=>this._changeDetectorRef.markForCheck())}ngDoCheck(){this._rippleLoader.setDisabled(this._elementRef.nativeElement,this._isRippleDisabled())}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._rippleLoader?.destroyRipple(this._elementRef.nativeElement),this._actionChanges?.unsubscribe(),this.destroyed.emit({chip:this}),this.destroyed.complete()}remove(){this.removable&&(this._hadFocusOnRemove=this._hasFocus(),this.removed.emit({chip:this}))}_isRippleDisabled(){return this.disabled||this.disableRipple||this._animationsDisabled||this._isBasicChip||!this._hasInteractiveActions()||!!this._globalRippleOptions?.disabled}_hasTrailingIcon(){return!(!this.trailingIcon&&!this.removeIcon)}_handleKeydown(vt){(vt.keyCode===w.G_&&!vt.repeat||vt.keyCode===w.SJ)&&(vt.preventDefault(),this.remove())}focus(){this.disabled||(this.primaryAction?this.primaryAction.focus():this._pendingFocus=!0)}_getSourceAction(vt){return this._getActions().find(ee=>{const ye=ee._elementRef.nativeElement;return ye===vt||ye.contains(vt)})}_getActions(){const vt=[];return this.editIcon&&vt.push(this.editIcon),this.primaryAction&&vt.push(this.primaryAction),this.removeIcon&&vt.push(this.removeIcon),this.trailingIcon&&vt.push(this.trailingIcon),vt}_handlePrimaryActionInteraction(){}_hasInteractiveActions(){return this._getActions().some(vt=>vt.isInteractive)}_edit(vt){}_monitorFocus(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(vt=>{const ee=null!==vt;ee!==this._hasFocusInternal&&(this._hasFocusInternal=ee,ee?this._onFocus.next({chip:this}):(this._changeDetectorRef.markForCheck(),setTimeout(()=>this._ngZone.run(()=>this._onBlur.next({chip:this})))))})}static \u0275fac=function(ee){return new(ee||kn)};static \u0275cmp=u.VBU({type:kn,selectors:[["mat-basic-chip"],["","mat-basic-chip",""],["mat-chip"],["","mat-chip",""]],contentQueries:function(ee,ye,ke){if(1&ee&&(u.wni(ke,ot,5),u.wni(ke,ht,5),u.wni(ke,nt,5),u.wni(ke,oe,5),u.wni(ke,ot,5),u.wni(ke,nt,5),u.wni(ke,ht,5),u.wni(ke,oe,5)),2&ee){let Se;u.mGM(Se=u.lsd())&&(ye.leadingIcon=Se.first),u.mGM(Se=u.lsd())&&(ye.editIcon=Se.first),u.mGM(Se=u.lsd())&&(ye.trailingIcon=Se.first),u.mGM(Se=u.lsd())&&(ye.removeIcon=Se.first),u.mGM(Se=u.lsd())&&(ye._allLeadingIcons=Se),u.mGM(Se=u.lsd())&&(ye._allTrailingIcons=Se),u.mGM(Se=u.lsd())&&(ye._allEditIcons=Se),u.mGM(Se=u.lsd())&&(ye._allRemoveIcons=Se)}},viewQuery:function(ee,ye){if(1&ee&&u.GBs(fe,5),2&ee){let ke;u.mGM(ke=u.lsd())&&(ye.primaryAction=ke.first)}},hostAttrs:[1,"mat-mdc-chip"],hostVars:31,hostBindings:function(ee,ye){1&ee&&u.bIt("keydown",function(Se){return ye._handleKeydown(Se)}),2&ee&&(u.Avn("id",ye.id),u.BMQ("role",ye.role)("aria-label",ye.ariaLabel),u.HbH("mat-"+(ye.color||"primary")),u.AVh("mdc-evolution-chip",!ye._isBasicChip)("mdc-evolution-chip--disabled",ye.disabled)("mdc-evolution-chip--with-trailing-action",ye._hasTrailingIcon())("mdc-evolution-chip--with-primary-graphic",ye.leadingIcon)("mdc-evolution-chip--with-primary-icon",ye.leadingIcon)("mdc-evolution-chip--with-avatar",ye.leadingIcon)("mat-mdc-chip-with-avatar",ye.leadingIcon)("mat-mdc-chip-highlighted",ye.highlighted)("mat-mdc-chip-disabled",ye.disabled)("mat-mdc-basic-chip",ye._isBasicChip)("mat-mdc-standard-chip",!ye._isBasicChip)("mat-mdc-chip-with-trailing-icon",ye._hasTrailingIcon())("_mat-animation-noopable",ye._animationsDisabled))},inputs:{role:"role",id:"id",ariaLabel:[0,"aria-label","ariaLabel"],ariaDescription:[0,"aria-description","ariaDescription"],value:"value",color:"color",removable:[2,"removable","removable",L.L39],highlighted:[2,"highlighted","highlighted",L.L39],disableRipple:[2,"disableRipple","disableRipple",L.L39],disabled:[2,"disabled","disabled",L.L39]},outputs:{removed:"removed",destroyed:"destroyed"},exportAs:["matChip"],features:[u.Jv_([{provide:Ye,useExisting:kn}])],ngContentSelectors:J,decls:8,vars:3,consts:[[1,"mat-mdc-chip-focus-overlay"],[1,"mdc-evolution-chip__cell","mdc-evolution-chip__cell--primary"],["matChipAction","",3,"isInteractive"],[1,"mdc-evolution-chip__graphic","mat-mdc-chip-graphic"],[1,"mdc-evolution-chip__text-label","mat-mdc-chip-action-label"],[1,"mat-mdc-chip-primary-focus-indicator","mat-focus-indicator"],[1,"mdc-evolution-chip__cell","mdc-evolution-chip__cell--trailing"]],template:function(ee,ye){1&ee&&(u.NAR(ne),u.nrm(0,"span",0),u.j41(1,"span",1)(2,"span",2),u.nVh(3,De,2,0,"span",3),u.j41(4,"span",4),u.SdG(5),u.nrm(6,"span",5),u.k0s()()(),u.nVh(7,Re,2,0,"span",6)),2&ee&&(u.R7$(2),u.Y8G("isInteractive",!1),u.R7$(),u.vxM(ye.leadingIcon?3:-1),u.R7$(4),u.vxM(ye._hasTrailingIcon()?7:-1))},dependencies:[fe],styles:['.mdc-evolution-chip,.mdc-evolution-chip__cell,.mdc-evolution-chip__action{display:inline-flex;align-items:center}.mdc-evolution-chip{position:relative;max-width:100%}.mdc-evolution-chip__cell,.mdc-evolution-chip__action{height:100%}.mdc-evolution-chip__cell--primary{flex-basis:100%;overflow-x:hidden}.mdc-evolution-chip__cell--trailing{flex:1 0 auto}.mdc-evolution-chip__action{align-items:center;background:none;border:none;box-sizing:content-box;cursor:pointer;display:inline-flex;justify-content:center;outline:none;padding:0;text-decoration:none;color:inherit}.mdc-evolution-chip__action--presentational{cursor:auto}.mdc-evolution-chip--disabled,.mdc-evolution-chip__action:disabled{pointer-events:none}@media(forced-colors: active){.mdc-evolution-chip--disabled,.mdc-evolution-chip__action:disabled{forced-color-adjust:none}}.mdc-evolution-chip__action--primary{font:inherit;letter-spacing:inherit;white-space:inherit;overflow-x:hidden}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary::before{border-width:var(--mat-chip-outline-width, 1px);border-radius:var(--mat-chip-container-shape-radius, 8px);box-sizing:border-box;content:"";height:100%;left:0;position:absolute;pointer-events:none;top:0;width:100%;z-index:1;border-style:solid}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:12px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:0}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__action--primary::before{border-color:var(--mat-chip-outline-color, var(--mat-sys-outline))}.mdc-evolution-chip__action--primary:not(.mdc-evolution-chip__action--presentational):not(.mdc-ripple-upgraded):focus::before{border-color:var(--mat-chip-focus-outline-color, var(--mat-sys-on-surface-variant))}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__action--primary::before{border-color:var(--mat-chip-disabled-outline-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary::before{border-width:var(--mat-chip-flat-selected-outline-width, 0)}.mat-mdc-basic-chip .mdc-evolution-chip__action--primary{font:inherit}.mat-mdc-standard-chip.mdc-evolution-chip--with-leading-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-leading-action .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:0}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:0}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}.mat-mdc-standard-chip.mdc-evolution-chip--with-leading-action.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:0}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}.mdc-evolution-chip__action--secondary{position:relative;overflow:visible}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__action--secondary{color:var(--mat-chip-with-trailing-icon-trailing-icon-color, var(--mat-sys-on-surface-variant))}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__action--secondary{color:var(--mat-chip-with-trailing-icon-disabled-trailing-icon-color, var(--mat-sys-on-surface))}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--secondary{padding-left:8px;padding-right:8px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--secondary{padding-left:8px;padding-right:8px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--secondary{padding-left:8px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--secondary{padding-left:8px;padding-right:8px}.mdc-evolution-chip__text-label{-webkit-user-select:none;user-select:none;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.mat-mdc-standard-chip .mdc-evolution-chip__text-label{font-family:var(--mat-chip-label-text-font, var(--mat-sys-label-large-font));line-height:var(--mat-chip-label-text-line-height, var(--mat-sys-label-large-line-height));font-size:var(--mat-chip-label-text-size, var(--mat-sys-label-large-size));font-weight:var(--mat-chip-label-text-weight, var(--mat-sys-label-large-weight));letter-spacing:var(--mat-chip-label-text-tracking, var(--mat-sys-label-large-tracking))}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__text-label{color:var(--mat-chip-label-text-color, var(--mat-sys-on-surface-variant))}.mat-mdc-standard-chip.mdc-evolution-chip--selected:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__text-label{color:var(--mat-chip-selected-label-text-color, var(--mat-sys-on-secondary-container))}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__text-label,.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled .mdc-evolution-chip__text-label{color:var(--mat-chip-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mdc-evolution-chip__graphic{align-items:center;display:inline-flex;justify-content:center;overflow:hidden;pointer-events:none;position:relative;flex:1 0 auto}.mat-mdc-standard-chip .mdc-evolution-chip__graphic{width:var(--mat-chip-with-avatar-avatar-size, 24px);height:var(--mat-chip-with-avatar-avatar-size, 24px);font-size:var(--mat-chip-with-avatar-avatar-size, 24px)}.mdc-evolution-chip--selecting .mdc-evolution-chip__graphic{transition:width 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--selectable:not(.mdc-evolution-chip--selected):not(.mdc-evolution-chip--with-primary-icon) .mdc-evolution-chip__graphic{width:0}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic{padding-left:6px;padding-right:6px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic{padding-left:4px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic{padding-left:8px;padding-right:4px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic{padding-left:6px;padding-right:6px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic{padding-left:4px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic{padding-left:8px;padding-right:4px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-leading-action .mdc-evolution-chip__graphic{padding-left:0}.mdc-evolution-chip__checkmark{position:absolute;opacity:0;top:50%;left:50%;height:20px;width:20px}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__checkmark{color:var(--mat-chip-with-icon-selected-icon-color, var(--mat-sys-on-secondary-container))}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__checkmark{color:var(--mat-chip-with-icon-disabled-icon-color, var(--mat-sys-on-surface))}.mdc-evolution-chip--selecting .mdc-evolution-chip__checkmark{transition:transform 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1);transform:translate(-75%, -50%)}.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark{transform:translate(-50%, -50%);opacity:1}.mdc-evolution-chip__checkmark-svg{display:block}.mdc-evolution-chip__checkmark-path{stroke-width:2px;stroke-dasharray:29.7833385;stroke-dashoffset:29.7833385;stroke:currentColor}.mdc-evolution-chip--selecting .mdc-evolution-chip__checkmark-path{transition:stroke-dashoffset 150ms 45ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}@media(forced-colors: active){.mdc-evolution-chip__checkmark-path{stroke:CanvasText !important}}.mat-mdc-standard-chip .mdc-evolution-chip__icon--trailing{height:18px;width:18px;font-size:18px}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing.mat-mdc-chip-remove{opacity:calc(var(--mat-chip-trailing-action-opacity, 1)*var(--mat-chip-with-trailing-icon-disabled-trailing-icon-opacity, 0.38))}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing.mat-mdc-chip-remove:focus{opacity:calc(var(--mat-chip-trailing-action-focus-opacity, 1)*var(--mat-chip-with-trailing-icon-disabled-trailing-icon-opacity, 0.38))}.mat-mdc-standard-chip{border-radius:var(--mat-chip-container-shape-radius, 8px);height:var(--mat-chip-container-height, 32px)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled){background-color:var(--mat-chip-elevated-container-color, transparent)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled{background-color:var(--mat-chip-elevated-disabled-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected:not(.mdc-evolution-chip--disabled){background-color:var(--mat-chip-elevated-selected-container-color, var(--mat-sys-secondary-container))}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled{background-color:var(--mat-chip-flat-disabled-selected-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}@media(forced-colors: active){.mat-mdc-standard-chip{outline:solid 1px}}.mat-mdc-standard-chip .mdc-evolution-chip__icon--primary{border-radius:var(--mat-chip-with-avatar-avatar-shape-radius, 24px);width:var(--mat-chip-with-icon-icon-size, 18px);height:var(--mat-chip-with-icon-icon-size, 18px);font-size:var(--mat-chip-with-icon-icon-size, 18px)}.mdc-evolution-chip--selected .mdc-evolution-chip__icon--primary{opacity:0}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__icon--primary{color:var(--mat-chip-with-icon-icon-color, var(--mat-sys-on-surface-variant))}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--primary{color:var(--mat-chip-with-icon-disabled-icon-color, var(--mat-sys-on-surface))}.mat-mdc-chip-highlighted{--mat-chip-with-icon-icon-color: var(--mat-chip-with-icon-selected-icon-color, var(--mat-sys-on-secondary-container));--mat-chip-elevated-container-color: var(--mat-chip-elevated-selected-container-color, var(--mat-sys-secondary-container));--mat-chip-label-text-color: var(--mat-chip-selected-label-text-color, var(--mat-sys-on-secondary-container));--mat-chip-outline-width: var(--mat-chip-flat-selected-outline-width, 0)}.mat-mdc-chip-focus-overlay{background:var(--mat-chip-focus-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-chip-selected .mat-mdc-chip-focus-overlay,.mat-mdc-chip-highlighted .mat-mdc-chip-focus-overlay{background:var(--mat-chip-selected-focus-state-layer-color, var(--mat-sys-on-secondary-container))}.mat-mdc-chip:hover .mat-mdc-chip-focus-overlay{background:var(--mat-chip-hover-state-layer-color, var(--mat-sys-on-surface-variant));opacity:var(--mat-chip-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-chip-focus-overlay .mat-mdc-chip-selected:hover,.mat-mdc-chip-highlighted:hover .mat-mdc-chip-focus-overlay{background:var(--mat-chip-selected-hover-state-layer-color, var(--mat-sys-on-secondary-container));opacity:var(--mat-chip-selected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-chip.cdk-focused .mat-mdc-chip-focus-overlay{background:var(--mat-chip-focus-state-layer-color, var(--mat-sys-on-surface-variant));opacity:var(--mat-chip-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-chip-selected.cdk-focused .mat-mdc-chip-focus-overlay,.mat-mdc-chip-highlighted.cdk-focused .mat-mdc-chip-focus-overlay{background:var(--mat-chip-selected-focus-state-layer-color, var(--mat-sys-on-secondary-container));opacity:var(--mat-chip-selected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mdc-evolution-chip--disabled:not(.mdc-evolution-chip--selected) .mat-mdc-chip-avatar{opacity:var(--mat-chip-with-avatar-disabled-avatar-opacity, 0.38)}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing{opacity:var(--mat-chip-with-trailing-icon-disabled-trailing-icon-opacity, 0.38)}.mdc-evolution-chip--disabled.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark{opacity:var(--mat-chip-with-icon-disabled-icon-opacity, 0.38)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled{opacity:var(--mat-chip-disabled-container-opacity, 1)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__icon--trailing,.mat-mdc-standard-chip.mat-mdc-chip-highlighted .mdc-evolution-chip__icon--trailing{color:var(--mat-chip-selected-trailing-icon-color, var(--mat-sys-on-secondary-container))}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing{color:var(--mat-chip-selected-disabled-trailing-icon-color, var(--mat-sys-on-surface))}.mat-mdc-chip-edit,.mat-mdc-chip-remove{opacity:var(--mat-chip-trailing-action-opacity, 1)}.mat-mdc-chip-edit:focus,.mat-mdc-chip-remove:focus{opacity:var(--mat-chip-trailing-action-focus-opacity, 1)}.mat-mdc-chip-edit::after,.mat-mdc-chip-remove::after{background-color:var(--mat-chip-trailing-action-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-chip-edit:hover::after,.mat-mdc-chip-remove:hover::after{opacity:var(--mat-chip-trailing-action-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-chip-edit:focus::after,.mat-mdc-chip-remove:focus::after{opacity:var(--mat-chip-trailing-action-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-chip-selected .mat-mdc-chip-remove::after,.mat-mdc-chip-highlighted .mat-mdc-chip-remove::after{background-color:var(--mat-chip-selected-trailing-action-state-layer-color, var(--mat-sys-on-secondary-container))}.mat-mdc-standard-chip{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-standard-chip .mdc-evolution-chip__cell--primary,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip .mat-mdc-chip-action-label{overflow:visible}.mat-mdc-standard-chip .mat-mdc-chip-graphic,.mat-mdc-standard-chip .mat-mdc-chip-trailing-icon{box-sizing:content-box}.mat-mdc-standard-chip._mat-animation-noopable,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__graphic,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__checkmark,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__checkmark-path{transition-duration:1ms;animation-duration:1ms}.mat-mdc-chip-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;opacity:0;border-radius:inherit;transition:opacity 150ms linear}._mat-animation-noopable .mat-mdc-chip-focus-overlay{transition:none}.mat-mdc-basic-chip .mat-mdc-chip-focus-overlay{display:none}.mat-mdc-chip .mat-ripple.mat-mdc-chip-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-chip-avatar{text-align:center;line-height:1;color:var(--mat-chip-with-icon-icon-color, currentColor)}.mat-mdc-chip{position:relative;z-index:0}.mat-mdc-chip-action-label{text-align:left;z-index:1}[dir=rtl] .mat-mdc-chip-action-label{text-align:right}.mat-mdc-chip.mdc-evolution-chip--with-trailing-action .mat-mdc-chip-action-label{position:relative}.mat-mdc-chip-action-label .mat-mdc-chip-primary-focus-indicator{position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}.mat-mdc-chip-action-label .mat-focus-indicator::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-chip-edit::before,.mat-mdc-chip-remove::before{margin:calc(var(--mat-focus-indicator-border-width, 3px)*-1);left:8px;right:8px}.mat-mdc-chip-edit::after,.mat-mdc-chip-remove::after{content:"";display:block;opacity:0;position:absolute;top:-3px;bottom:-3px;left:5px;right:5px;border-radius:50%;box-sizing:border-box;padding:12px;margin:-12px;background-clip:content-box}.mat-mdc-chip-edit .mat-icon,.mat-mdc-chip-remove .mat-icon{width:18px;height:18px;font-size:18px;box-sizing:content-box}.mat-chip-edit-input{cursor:text;display:inline-block;color:inherit;outline:0}@media(forced-colors: active){.mat-mdc-chip-selected:not(.mat-mdc-chip-multiple){outline-width:3px}}.mat-mdc-chip-action:focus .mat-focus-indicator::before{content:""}.mdc-evolution-chip__icon,.mat-mdc-chip-edit .mat-icon,.mat-mdc-chip-remove .mat-icon{min-height:fit-content}img.mdc-evolution-chip__icon{min-height:0}\n'],encapsulation:2,changeDetection:0})}return kn})(),Ni=(()=>{class kn{static \u0275fac=function(ee){return new(ee||kn)};static \u0275mod=u.$C({type:kn});static \u0275inj=f.G2t({providers:[xe.e,{provide:St,useValue:{separatorKeyCodes:[w.Fm]}}],imports:[ce.y,be.p,ce.y]})}return kn})()},2466(Zt,pe,l){"use strict";l.d(pe,{y:()=>e});var i=l(7094),d=l(8203),v=l(2615),T=l(3664);let e=(()=>{class O{constructor(){(0,v.WQX)(i.Q_)._applyBodyHighContrastModeCssClasses()}static \u0275fac=function(L){return new(L||O)};static \u0275mod=T.$C({type:O});static \u0275inj=v.G2t({imports:[d.jI,d.jI]})}return O})()},3(Zt,pe,l){"use strict";l.d(pe,{WX:()=>Pe,xW:()=>L});var v=l(2615),T=l(3664),w=l(9945);const O=/^\d{4}-\d{2}-\d{2}(?:T\d{2}:\d{2}:\d{2}(?:\.\d+)?(?:Z|(?:(?:\+|-)\d{2}:\d{2}))?)?$/,f=/^(\d?\d)[:.](\d?\d)(?:[:.](\d?\d))?\s*(AM|PM)?$/i;function u(Ce,Ae){const j=Array(Ce);for(let W=0;W{class Ce extends w.MJ{useUtcForDisplay=!1;_matDateLocale=(0,v.WQX)(w.Ju,{optional:!0});constructor(){super();const j=(0,v.WQX)(w.Ju,{optional:!0});void 0!==j&&(this._matDateLocale=j),super.setLocale(this._matDateLocale)}getYear(j){return j.getFullYear()}getMonth(j){return j.getMonth()}getDate(j){return j.getDate()}getDayOfWeek(j){return j.getDay()}getMonthNames(j){const W=new Intl.DateTimeFormat(this.locale,{month:j,timeZone:"utc"});return u(12,G=>this._format(W,new Date(2017,G,1)))}getDateNames(){const j=new Intl.DateTimeFormat(this.locale,{day:"numeric",timeZone:"utc"});return u(31,W=>this._format(j,new Date(2017,0,W+1)))}getDayOfWeekNames(j){const W=new Intl.DateTimeFormat(this.locale,{weekday:j,timeZone:"utc"});return u(7,G=>this._format(W,new Date(2017,0,G+1)))}getYearName(j){const W=new Intl.DateTimeFormat(this.locale,{year:"numeric",timeZone:"utc"});return this._format(W,j)}getFirstDayOfWeek(){if(typeof Intl<"u"&&Intl.Locale){const j=new Intl.Locale(this.locale),W=(j.getWeekInfo?.()||j.weekInfo)?.firstDay??0;return 7===W?0:W}return 0}getNumDaysInMonth(j){return this.getDate(this._createDateWithOverflow(this.getYear(j),this.getMonth(j)+1,0))}clone(j){return new Date(j.getTime())}createDate(j,W,G){let re=this._createDateWithOverflow(j,W,G);return re.getMonth(),re}today(){return new Date}parse(j,W){return"number"==typeof j?new Date(j):j?new Date(Date.parse(j)):null}format(j,W){if(!this.isValid(j))throw Error("NativeDateAdapter: Cannot format invalid date.");const G=new Intl.DateTimeFormat(this.locale,{...W,timeZone:"utc"});return this._format(G,j)}addCalendarYears(j,W){return this.addCalendarMonths(j,12*W)}addCalendarMonths(j,W){let G=this._createDateWithOverflow(this.getYear(j),this.getMonth(j)+W,this.getDate(j));return this.getMonth(G)!=((this.getMonth(j)+W)%12+12)%12&&(G=this._createDateWithOverflow(this.getYear(G),this.getMonth(G),0)),G}addCalendarDays(j,W){return this._createDateWithOverflow(this.getYear(j),this.getMonth(j),this.getDate(j)+W)}toIso8601(j){return[j.getUTCFullYear(),this._2digit(j.getUTCMonth()+1),this._2digit(j.getUTCDate())].join("-")}deserialize(j){if("string"==typeof j){if(!j)return null;if(O.test(j)){let W=new Date(j);if(this.isValid(W))return W}}return super.deserialize(j)}isDateInstance(j){return j instanceof Date}isValid(j){return!isNaN(j.getTime())}invalid(){return new Date(NaN)}setTime(j,W,G,re){const xe=this.clone(j);return xe.setHours(W,G,re,0),xe}getHours(j){return j.getHours()}getMinutes(j){return j.getMinutes()}getSeconds(j){return j.getSeconds()}parseTime(j,W){if("string"!=typeof j)return j instanceof Date?new Date(j.getTime()):null;const G=j.trim();if(0===G.length)return null;let re=this._parseTimeString(G);if(null===re){const xe=G.replace(/[^0-9:(AM|PM)]/gi,"").trim();xe.length>0&&(re=this._parseTimeString(xe))}return re||this.invalid()}addSeconds(j,W){return new Date(j.getTime()+1e3*W)}_createDateWithOverflow(j,W,G){const re=new Date;return re.setFullYear(j,W,G),re.setHours(0,0,0,0),re}_2digit(j){return("00"+j).slice(-2)}_format(j,W){const G=new Date;return G.setUTCFullYear(W.getFullYear(),W.getMonth(),W.getDate()),G.setUTCHours(W.getHours(),W.getMinutes(),W.getSeconds(),W.getMilliseconds()),j.format(G)}_parseTimeString(j){const W=j.toUpperCase().match(f);if(W){let G=parseInt(W[1]);const re=parseInt(W[2]);let xe=null==W[3]?void 0:parseInt(W[3]);const Ee=W[4];if(12===G?G="AM"===Ee?0:G:"PM"===Ee&&(G+=12),C(G,0,23)&&C(re,0,59)&&(null==xe||C(xe,0,59)))return this.setTime(this.today(),G,re,xe||0)}return null}static \u0275fac=function(W){return new(W||Ce)};static \u0275prov=v.jDH({token:Ce,factory:Ce.\u0275fac})}return Ce})();function C(Ce,Ae,j){return!isNaN(Ce)&&Ce>=Ae&&Ce<=j}const B={parse:{dateInput:null,timeInput:null},display:{dateInput:{year:"numeric",month:"numeric",day:"numeric"},timeInput:{hour:"numeric",minute:"numeric"},monthYearLabel:{year:"numeric",month:"short"},dateA11yLabel:{year:"numeric",month:"long",day:"numeric"},monthYearA11yLabel:{year:"numeric",month:"long"},timeOptionLabel:{hour:"numeric",minute:"numeric"}}};let Pe=(()=>{class Ce{static \u0275fac=function(W){return new(W||Ce)};static \u0275mod=T.$C({type:Ce});static \u0275inj=v.G2t({providers:[le()]})}return Ce})();function le(Ce=B){return[{provide:w.MJ,useClass:L},{provide:w.de,useValue:Ce}]}},9945(Zt,pe,l){"use strict";l.d(pe,{Ju:()=>T,MJ:()=>O,de:()=>f});var i=l(2615),d=l(3664),v=l(1413);const T=new i.nKC("MAT_DATE_LOCALE",{providedIn:"root",factory:function w(){return(0,i.WQX)(d.xe9)}}),e="Method not implemented";class O{locale;_localeChanges=new v.B;localeChanges=this._localeChanges;setTime(L,C,B,A){throw new Error(e)}getHours(L){throw new Error(e)}getMinutes(L){throw new Error(e)}getSeconds(L){throw new Error(e)}parseTime(L,C){throw new Error(e)}addSeconds(L,C){throw new Error(e)}getValidDateOrNull(L){return this.isDateInstance(L)&&this.isValid(L)?L:null}deserialize(L){return null==L||this.isDateInstance(L)&&this.isValid(L)?L:this.invalid()}setLocale(L){this.locale=L,this._localeChanges.next()}compareDate(L,C){return this.getYear(L)-this.getYear(C)||this.getMonth(L)-this.getMonth(C)||this.getDate(L)-this.getDate(C)}compareTime(L,C){return this.getHours(L)-this.getHours(C)||this.getMinutes(L)-this.getMinutes(C)||this.getSeconds(L)-this.getSeconds(C)}sameDate(L,C){if(L&&C){let B=this.isValid(L),A=this.isValid(C);return B&&A?!this.compareDate(L,C):B==A}return L==C}sameTime(L,C){if(L&&C){const B=this.isValid(L),A=this.isValid(C);return B&&A?!this.compareTime(L,C):B==A}return L==C}clampDate(L,C,B){return C&&this.compareDate(L,C)<0?C:B&&this.compareDate(L,B)>0?B:L}}const f=new i.nKC("mat-date-formats")},5084(Zt,pe,l){"use strict";l.d(pe,{Vh:()=>Wn,X6:()=>Ii,bU:()=>vn,bZ:()=>Ta});var _e=l(2615),he=l(3664),Dt=l(7705),lt=l(1413),Le=l(8359),te=l(7786),ie=l(7673),P=l(9945),F=l(6838),ve=l(7094),H=l(9726),$=l(1577),Ke=l(4085),Vt=l(7336),St=l(438),ot=l(9338),nt=l(9842),ht=l(4522),oe=l(6939),Ye=l(5964),fe=l(9172),Qe=l(6697),gt=l(2200),Gt=l(9046),rt=l(8968),cn=l(2046),Ft=l(8834),Sn=l(2598),Qn=l(455),h=l(1804),jt=l(9417),Ue=l(8010),wt=l(9588),pt=l(5718),Pt=l(2466);const gn=["mat-calendar-body",""];function ei(nn,ni){return this._trackRow(ni)}const vi=(nn,ni)=>ni.id;function Ni(nn,ni){if(1&nn&&(he.j41(0,"tr",0)(1,"td",3),he.EFF(2),he.k0s()()),2&nn){const U=he.XpG();he.R7$(),he.xc7("padding-top",U._cellPadding)("padding-bottom",U._cellPadding),he.BMQ("colspan",U.numCols),he.R7$(),he.SpI(" ",U.label," ")}}function kn(nn,ni){if(1&nn&&(he.j41(0,"td",3),he.EFF(1),he.k0s()),2&nn){const U=he.XpG(2);he.xc7("padding-top",U._cellPadding)("padding-bottom",U._cellPadding),he.BMQ("colspan",U._firstRowOffset),he.R7$(),he.SpI(" ",U._firstRowOffset>=U.labelMinRequiredCells?U.label:""," ")}}function Ri(nn,ni){if(1&nn){const U=he.RV6();he.j41(0,"td",6)(1,"button",7),he.bIt("click",function(Ze){const Xt=_e.eBV(U).$implicit,Nn=he.XpG(2);return _e.Njj(Nn._cellClicked(Xt,Ze))})("focus",function(Ze){const Xt=_e.eBV(U).$implicit,Nn=he.XpG(2);return _e.Njj(Nn._emitActiveDateChange(Xt,Ze))}),he.j41(2,"span",8),he.EFF(3),he.k0s(),he.nrm(4,"span",9),he.k0s()()}if(2&nn){const U=ni.$implicit,tt=ni.$index,Ze=he.XpG().$index,Xt=he.XpG();he.xc7("width",Xt._cellWidth)("padding-top",Xt._cellPadding)("padding-bottom",Xt._cellPadding),he.BMQ("data-mat-row",Ze)("data-mat-col",tt),he.R7$(),he.AVh("mat-calendar-body-disabled",!U.enabled)("mat-calendar-body-active",Xt._isActiveCell(Ze,tt))("mat-calendar-body-range-start",Xt._isRangeStart(U.compareValue))("mat-calendar-body-range-end",Xt._isRangeEnd(U.compareValue))("mat-calendar-body-in-range",Xt._isInRange(U.compareValue))("mat-calendar-body-comparison-bridge-start",Xt._isComparisonBridgeStart(U.compareValue,Ze,tt))("mat-calendar-body-comparison-bridge-end",Xt._isComparisonBridgeEnd(U.compareValue,Ze,tt))("mat-calendar-body-comparison-start",Xt._isComparisonStart(U.compareValue))("mat-calendar-body-comparison-end",Xt._isComparisonEnd(U.compareValue))("mat-calendar-body-in-comparison-range",Xt._isInComparisonRange(U.compareValue))("mat-calendar-body-preview-start",Xt._isPreviewStart(U.compareValue))("mat-calendar-body-preview-end",Xt._isPreviewEnd(U.compareValue))("mat-calendar-body-in-preview",Xt._isInPreview(U.compareValue)),he.Y8G("ngClass",U.cssClasses)("tabindex",Xt._isActiveCell(Ze,tt)?0:-1),he.BMQ("aria-label",U.ariaLabel)("aria-disabled",!U.enabled||null)("aria-pressed",Xt._isSelected(U.compareValue))("aria-current",Xt.todayValue===U.compareValue?"date":null)("aria-describedby",Xt._getDescribedby(U.compareValue)),he.R7$(),he.AVh("mat-calendar-body-selected",Xt._isSelected(U.compareValue))("mat-calendar-body-comparison-identical",Xt._isComparisonIdentical(U.compareValue))("mat-calendar-body-today",Xt.todayValue===U.compareValue),he.R7$(),he.SpI(" ",U.displayValue," ")}}function vt(nn,ni){if(1&nn&&(he.j41(0,"tr",1),he.nVh(1,kn,2,6,"td",4),he.Z7z(2,Ri,5,48,"td",5,vi),he.k0s()),2&nn){const U=ni.$implicit,tt=ni.$index,Ze=he.XpG();he.R7$(),he.vxM(0===tt&&Ze._firstRowOffset?1:-1),he.R7$(),he.Dyx(U)}}function ee(nn,ni){if(1&nn&&(he.j41(0,"th",2)(1,"span",6),he.EFF(2),he.k0s(),he.j41(3,"span",3),he.EFF(4),he.k0s()()),2&nn){const U=ni.$implicit;he.R7$(2),he.JRh(U.long),he.R7$(2),he.JRh(U.narrow)}}const ye=["*"];function ke(nn,ni){}function Se(nn,ni){if(1&nn){const U=he.RV6();he.j41(0,"mat-month-view",4),he.mxI("activeDateChange",function(Ze){_e.eBV(U);const Xt=he.XpG();return he.DH7(Xt.activeDate,Ze)||(Xt.activeDate=Ze),_e.Njj(Ze)}),he.bIt("_userSelection",function(Ze){_e.eBV(U);const Xt=he.XpG();return _e.Njj(Xt._dateSelected(Ze))})("dragStarted",function(Ze){_e.eBV(U);const Xt=he.XpG();return _e.Njj(Xt._dragStarted(Ze))})("dragEnded",function(Ze){_e.eBV(U);const Xt=he.XpG();return _e.Njj(Xt._dragEnded(Ze))}),he.k0s()}if(2&nn){const U=he.XpG();he.R50("activeDate",U.activeDate),he.Y8G("selected",U.selected)("dateFilter",U.dateFilter)("maxDate",U.maxDate)("minDate",U.minDate)("dateClass",U.dateClass)("comparisonStart",U.comparisonStart)("comparisonEnd",U.comparisonEnd)("startDateAccessibleName",U.startDateAccessibleName)("endDateAccessibleName",U.endDateAccessibleName)("activeDrag",U._activeDrag)}}function ge(nn,ni){if(1&nn){const U=he.RV6();he.j41(0,"mat-year-view",5),he.mxI("activeDateChange",function(Ze){_e.eBV(U);const Xt=he.XpG();return he.DH7(Xt.activeDate,Ze)||(Xt.activeDate=Ze),_e.Njj(Ze)}),he.bIt("monthSelected",function(Ze){_e.eBV(U);const Xt=he.XpG();return _e.Njj(Xt._monthSelectedInYearView(Ze))})("selectedChange",function(Ze){_e.eBV(U);const Xt=he.XpG();return _e.Njj(Xt._goToDateInView(Ze,"month"))}),he.k0s()}if(2&nn){const U=he.XpG();he.R50("activeDate",U.activeDate),he.Y8G("selected",U.selected)("dateFilter",U.dateFilter)("maxDate",U.maxDate)("minDate",U.minDate)("dateClass",U.dateClass)}}function N(nn,ni){if(1&nn){const U=he.RV6();he.j41(0,"mat-multi-year-view",6),he.mxI("activeDateChange",function(Ze){_e.eBV(U);const Xt=he.XpG();return he.DH7(Xt.activeDate,Ze)||(Xt.activeDate=Ze),_e.Njj(Ze)}),he.bIt("yearSelected",function(Ze){_e.eBV(U);const Xt=he.XpG();return _e.Njj(Xt._yearSelectedInMultiYearView(Ze))})("selectedChange",function(Ze){_e.eBV(U);const Xt=he.XpG();return _e.Njj(Xt._goToDateInView(Ze,"year"))}),he.k0s()}if(2&nn){const U=he.XpG();he.R50("activeDate",U.activeDate),he.Y8G("selected",U.selected)("dateFilter",U.dateFilter)("maxDate",U.maxDate)("minDate",U.minDate)("dateClass",U.dateClass)}}function Z(nn,ni){}const Me=["button"],at=[[["","matDatepickerToggleIcon",""]]],qe=["[matDatepickerToggleIcon]"];function pn(nn,ni){1&nn&&(_e.qSk(),he.j41(0,"svg",2),he.nrm(1,"path",3),he.k0s())}let Ot=(()=>{class nn{changes=new lt.B;calendarLabel="Calendar";openCalendarLabel="Open calendar";closeCalendarLabel="Close calendar";prevMonthLabel="Previous month";nextMonthLabel="Next month";prevYearLabel="Previous year";nextYearLabel="Next year";prevMultiYearLabel="Previous 24 years";nextMultiYearLabel="Next 24 years";switchToMonthViewLabel="Choose date";switchToMultiYearViewLabel="Choose month and year";startDateLabel="Start date";endDateLabel="End date";comparisonDateLabel="Comparison range";formatYearRange(U,tt){return`${U} \u2013 ${tt}`}formatYearRangeLabel(U,tt){return`${U} to ${tt}`}static \u0275fac=function(tt){return new(tt||nn)};static \u0275prov=_e.jDH({token:nn,factory:nn.\u0275fac,providedIn:"root"})}return nn})(),se=0;class We{value;displayValue;ariaLabel;enabled;cssClasses;compareValue;rawValue;id=se++;constructor(ni,U,tt,Ze,Xt={},Nn=ni,Ki){this.value=ni,this.displayValue=U,this.ariaLabel=tt,this.enabled=Ze,this.cssClasses=Xt,this.compareValue=Nn,this.rawValue=Ki}}const bt={passive:!1,capture:!0},tn={passive:!0,capture:!0},on={passive:!0};let un=(()=>{class nn{_elementRef=(0,_e.WQX)(he.aKT);_ngZone=(0,_e.WQX)(he.SKi);_platform=(0,_e.WQX)(nt.O);_intl=(0,_e.WQX)(Ot);_eventCleanups;_skipNextFocus;_focusActiveCellAfterViewChecked=!1;label;rows;todayValue;startValue;endValue;labelMinRequiredCells;numCols=7;activeCell=0;ngAfterViewChecked(){this._focusActiveCellAfterViewChecked&&(this._focusActiveCell(),this._focusActiveCellAfterViewChecked=!1)}isRange=!1;cellAspectRatio=1;comparisonStart;comparisonEnd;previewStart=null;previewEnd=null;startDateAccessibleName;endDateAccessibleName;selectedValueChange=new he.bkB;previewChange=new he.bkB;activeDateChange=new he.bkB;dragStarted=new he.bkB;dragEnded=new he.bkB;_firstRowOffset;_cellPadding;_cellWidth;_startDateLabelId;_endDateLabelId;_comparisonStartDateLabelId;_comparisonEndDateLabelId;_didDragSinceMouseDown=!1;_injector=(0,_e.WQX)(_e.zZn);comparisonDateAccessibleName=this._intl.comparisonDateLabel;_trackRow=U=>U;constructor(){const U=(0,_e.WQX)(he.sFG),tt=(0,_e.WQX)(H.g);this._startDateLabelId=tt.getId("mat-calendar-body-start-"),this._endDateLabelId=tt.getId("mat-calendar-body-end-"),this._comparisonStartDateLabelId=tt.getId("mat-calendar-body-comparison-start-"),this._comparisonEndDateLabelId=tt.getId("mat-calendar-body-comparison-end-"),(0,_e.WQX)(rt.l).load(cn.A),this._ngZone.runOutsideAngular(()=>{const Ze=this._elementRef.nativeElement,Xt=[U.listen(Ze,"touchmove",this._touchmoveHandler,bt),U.listen(Ze,"mouseenter",this._enterHandler,tn),U.listen(Ze,"focus",this._enterHandler,tn),U.listen(Ze,"mouseleave",this._leaveHandler,tn),U.listen(Ze,"blur",this._leaveHandler,tn),U.listen(Ze,"mousedown",this._mousedownHandler,on),U.listen(Ze,"touchstart",this._mousedownHandler,on)];this._platform.isBrowser&&Xt.push(U.listen("window","mouseup",this._mouseupHandler),U.listen("window","touchend",this._touchendHandler)),this._eventCleanups=Xt})}_cellClicked(U,tt){this._didDragSinceMouseDown||U.enabled&&this.selectedValueChange.emit({value:U.value,event:tt})}_emitActiveDateChange(U,tt){U.enabled&&this.activeDateChange.emit({value:U.value,event:tt})}_isSelected(U){return this.startValue===U||this.endValue===U}ngOnChanges(U){const tt=U.numCols,{rows:Ze,numCols:Xt}=this;(U.rows||tt)&&(this._firstRowOffset=Ze&&Ze.length&&Ze[0].length?Xt-Ze[0].length:0),(U.cellAspectRatio||tt||!this._cellPadding)&&(this._cellPadding=50*this.cellAspectRatio/Xt+"%"),(tt||!this._cellWidth)&&(this._cellWidth=100/Xt+"%")}ngOnDestroy(){this._eventCleanups.forEach(U=>U())}_isActiveCell(U,tt){let Ze=U*this.numCols+tt;return U&&(Ze-=this._firstRowOffset),Ze==this.activeCell}_focusActiveCell(U=!0){(0,he.mal)(()=>{setTimeout(()=>{const tt=this._elementRef.nativeElement.querySelector(".mat-calendar-body-active");tt&&(U||(this._skipNextFocus=!0),tt.focus())})},{injector:this._injector})}_scheduleFocusActiveCellAfterViewChecked(){this._focusActiveCellAfterViewChecked=!0}_isRangeStart(U){return xn(U,this.startValue,this.endValue)}_isRangeEnd(U){return Jn(U,this.startValue,this.endValue)}_isInRange(U){return xi(U,this.startValue,this.endValue,this.isRange)}_isComparisonStart(U){return xn(U,this.comparisonStart,this.comparisonEnd)}_isComparisonBridgeStart(U,tt,Ze){if(!this._isComparisonStart(U)||this._isRangeStart(U)||!this._isInRange(U))return!1;let Xt=this.rows[tt][Ze-1];if(!Xt){const Nn=this.rows[tt-1];Xt=Nn&&Nn[Nn.length-1]}return Xt&&!this._isRangeEnd(Xt.compareValue)}_isComparisonBridgeEnd(U,tt,Ze){if(!this._isComparisonEnd(U)||this._isRangeEnd(U)||!this._isInRange(U))return!1;let Xt=this.rows[tt][Ze+1];if(!Xt){const Nn=this.rows[tt+1];Xt=Nn&&Nn[0]}return Xt&&!this._isRangeStart(Xt.compareValue)}_isComparisonEnd(U){return Jn(U,this.comparisonStart,this.comparisonEnd)}_isInComparisonRange(U){return xi(U,this.comparisonStart,this.comparisonEnd,this.isRange)}_isComparisonIdentical(U){return this.comparisonStart===this.comparisonEnd&&U===this.comparisonStart}_isPreviewStart(U){return xn(U,this.previewStart,this.previewEnd)}_isPreviewEnd(U){return Jn(U,this.previewStart,this.previewEnd)}_isInPreview(U){return xi(U,this.previewStart,this.previewEnd,this.isRange)}_getDescribedby(U){if(!this.isRange)return null;if(this.startValue===U&&this.endValue===U)return`${this._startDateLabelId} ${this._endDateLabelId}`;if(this.startValue===U)return this._startDateLabelId;if(this.endValue===U)return this._endDateLabelId;if(null!==this.comparisonStart&&null!==this.comparisonEnd){if(U===this.comparisonStart&&U===this.comparisonEnd)return`${this._comparisonStartDateLabelId} ${this._comparisonEndDateLabelId}`;if(U===this.comparisonStart)return this._comparisonStartDateLabelId;if(U===this.comparisonEnd)return this._comparisonEndDateLabelId}return null}_enterHandler=U=>{if(this._skipNextFocus&&"focus"===U.type)this._skipNextFocus=!1;else if(U.target&&this.isRange){const tt=this._getCellFromElement(U.target);tt&&this._ngZone.run(()=>this.previewChange.emit({value:tt.enabled?tt:null,event:U}))}};_touchmoveHandler=U=>{if(!this.isRange)return;const tt=Yi(U),Ze=tt?this._getCellFromElement(tt):null;tt!==U.target&&(this._didDragSinceMouseDown=!0),dn(U.target)&&U.preventDefault(),this._ngZone.run(()=>this.previewChange.emit({value:Ze?.enabled?Ze:null,event:U}))};_leaveHandler=U=>{null!==this.previewEnd&&this.isRange&&("blur"!==U.type&&(this._didDragSinceMouseDown=!0),U.target&&this._getCellFromElement(U.target)&&(!U.relatedTarget||!this._getCellFromElement(U.relatedTarget))&&this._ngZone.run(()=>this.previewChange.emit({value:null,event:U})))};_mousedownHandler=U=>{if(!this.isRange)return;this._didDragSinceMouseDown=!1;const tt=U.target&&this._getCellFromElement(U.target);!tt||!this._isInRange(tt.compareValue)||this._ngZone.run(()=>{this.dragStarted.emit({value:tt.rawValue,event:U})})};_mouseupHandler=U=>{if(!this.isRange)return;const tt=dn(U.target);tt?tt.closest(".mat-calendar-body")===this._elementRef.nativeElement&&this._ngZone.run(()=>{const Ze=this._getCellFromElement(tt);this.dragEnded.emit({value:Ze?.rawValue??null,event:U})}):this._ngZone.run(()=>{this.dragEnded.emit({value:null,event:U})})};_touchendHandler=U=>{const tt=Yi(U);tt&&this._mouseupHandler({target:tt})};_getCellFromElement(U){const tt=dn(U);if(tt){const Ze=tt.getAttribute("data-mat-row"),Xt=tt.getAttribute("data-mat-col");if(Ze&&Xt)return this.rows[parseInt(Ze)]?.[parseInt(Xt)]||null}return null}static \u0275fac=function(tt){return new(tt||nn)};static \u0275cmp=he.VBU({type:nn,selectors:[["","mat-calendar-body",""]],hostAttrs:[1,"mat-calendar-body"],inputs:{label:"label",rows:"rows",todayValue:"todayValue",startValue:"startValue",endValue:"endValue",labelMinRequiredCells:"labelMinRequiredCells",numCols:"numCols",activeCell:"activeCell",isRange:"isRange",cellAspectRatio:"cellAspectRatio",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",previewStart:"previewStart",previewEnd:"previewEnd",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName"},outputs:{selectedValueChange:"selectedValueChange",previewChange:"previewChange",activeDateChange:"activeDateChange",dragStarted:"dragStarted",dragEnded:"dragEnded"},exportAs:["matCalendarBody"],features:[he.OA$],attrs:gn,decls:11,vars:11,consts:[["aria-hidden","true"],["role","row"],[1,"mat-calendar-body-hidden-label",3,"id"],[1,"mat-calendar-body-label"],[1,"mat-calendar-body-label",3,"paddingTop","paddingBottom"],["role","gridcell",1,"mat-calendar-body-cell-container",3,"width","paddingTop","paddingBottom"],["role","gridcell",1,"mat-calendar-body-cell-container"],["type","button",1,"mat-calendar-body-cell",3,"click","focus","ngClass","tabindex"],[1,"mat-calendar-body-cell-content","mat-focus-indicator"],["aria-hidden","true",1,"mat-calendar-body-cell-preview"]],template:function(tt,Ze){1&tt&&(he.nVh(0,Ni,3,6,"tr",0),he.Z7z(1,vt,4,1,"tr",1,ei,!0),he.j41(3,"span",2),he.EFF(4),he.k0s(),he.j41(5,"span",2),he.EFF(6),he.k0s(),he.j41(7,"span",2),he.EFF(8),he.k0s(),he.j41(9,"span",2),he.EFF(10),he.k0s()),2&tt&&(he.vxM(Ze._firstRowOffset.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:var(--mat-datepicker-calendar-date-disabled-state-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:var(--mat-datepicker-calendar-date-today-disabled-state-outline-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}@media(forced-colors: active){.mat-calendar-body-disabled{opacity:.5}}.mat-calendar-body-cell-content{top:5%;left:5%;z-index:1;display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:90%;height:90%;line-height:1;border-width:1px;border-style:solid;border-radius:999px;color:var(--mat-datepicker-calendar-date-text-color, var(--mat-sys-on-surface));border-color:var(--mat-datepicker-calendar-date-outline-color, transparent)}.mat-calendar-body-cell-content.mat-focus-indicator{position:absolute}@media(forced-colors: active){.mat-calendar-body-cell-content{border:none}}.cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:var(--mat-datepicker-calendar-date-focus-state-background-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-focus-state-layer-opacity) * 100%), transparent))}@media(hover: hover){.mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:var(--mat-datepicker-calendar-date-hover-state-background-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent))}}.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-state-background-color, var(--mat-sys-primary));color:var(--mat-datepicker-calendar-date-selected-state-text-color, var(--mat-sys-on-primary))}.mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-disabled-state-background-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-calendar-body-selected.mat-calendar-body-today{box-shadow:inset 0 0 0 1px var(--mat-datepicker-calendar-date-today-selected-state-outline-color, var(--mat-sys-primary))}.mat-calendar-body-in-range::before{background:var(--mat-datepicker-calendar-date-in-range-state-background-color, var(--mat-sys-primary-container))}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color, var(--mat-sys-tertiary-container))}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color, var(--mat-sys-tertiary-container))}.mat-calendar-body-comparison-bridge-start::before,[dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, var(--mat-datepicker-calendar-date-in-range-state-background-color, var(--mat-sys-primary-container)) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color, var(--mat-sys-tertiary-container)) 50%)}.mat-calendar-body-comparison-bridge-end::before,[dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, var(--mat-datepicker-calendar-date-in-range-state-background-color, var(--mat-sys-primary-container)) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color, var(--mat-sys-tertiary-container)) 50%)}.mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:var(--mat-datepicker-calendar-date-in-overlap-range-state-background-color, var(--mat-sys-secondary-container))}.mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:var(--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color, var(--mat-sys-secondary))}@media(forced-colors: active){.mat-datepicker-popup:not(:empty),.mat-calendar-body-cell:not(.mat-calendar-body-in-range) .mat-calendar-body-selected{outline:solid 1px}.mat-calendar-body-today{outline:dotted 1px}.mat-calendar-body-cell::before,.mat-calendar-body-cell::after,.mat-calendar-body-selected{background:none}.mat-calendar-body-in-range::before,.mat-calendar-body-comparison-bridge-start::before,.mat-calendar-body-comparison-bridge-end::before{border-top:solid 1px;border-bottom:solid 1px}.mat-calendar-body-range-start::before{border-left:solid 1px}[dir=rtl] .mat-calendar-body-range-start::before{border-left:0;border-right:solid 1px}.mat-calendar-body-range-end::before{border-right:solid 1px}[dir=rtl] .mat-calendar-body-range-end::before{border-right:0;border-left:solid 1px}.mat-calendar-body-in-comparison-range::before{border-top:dashed 1px;border-bottom:dashed 1px}.mat-calendar-body-comparison-start::before{border-left:dashed 1px}[dir=rtl] .mat-calendar-body-comparison-start::before{border-left:0;border-right:dashed 1px}.mat-calendar-body-comparison-end::before{border-right:dashed 1px}[dir=rtl] .mat-calendar-body-comparison-end::before{border-right:0;border-left:dashed 1px}}\n'],encapsulation:2,changeDetection:0})}return nn})();function Nt(nn){return"TD"===nn?.nodeName}function dn(nn){let ni;return Nt(nn)?ni=nn:Nt(nn.parentNode)?ni=nn.parentNode:Nt(nn.parentNode?.parentNode)&&(ni=nn.parentNode.parentNode),null!=ni?.getAttribute("data-mat-row")?ni:null}function xn(nn,ni,U){return null!==U&&ni!==U&&nn=ni&&nn===U}function xi(nn,ni,U,tt){return tt&&null!==ni&&null!==U&&ni!==U&&nn>=ni&&nn<=U}function Yi(nn){const ni=nn.changedTouches[0];return document.elementFromPoint(ni.clientX,ni.clientY)}class Tt{start;end;_disableStructuralEquivalency;constructor(ni,U){this.start=ni,this.end=U}}let At=(()=>{class nn{selection;_adapter;_selectionChanged=new lt.B;selectionChanged=this._selectionChanged;constructor(U,tt){this.selection=U,this._adapter=tt,this.selection=U}updateSelection(U,tt){const Ze=this.selection;this.selection=U,this._selectionChanged.next({selection:U,source:tt,oldValue:Ze})}ngOnDestroy(){this._selectionChanged.complete()}_isValidDateInstance(U){return this._adapter.isDateInstance(U)&&this._adapter.isValid(U)}static \u0275fac=function(tt){he.QTQ()};static \u0275prov=_e.jDH({token:nn,factory:nn.\u0275fac})}return nn})(),we=(()=>{class nn extends At{constructor(U){super(null,U)}add(U){super.updateSelection(U,this)}isValid(){return null!=this.selection&&this._isValidDateInstance(this.selection)}isComplete(){return null!=this.selection}clone(){const U=new nn(this._adapter);return U.updateSelection(this.selection,this),U}static \u0275fac=function(tt){return new(tt||nn)(_e.KVO(P.MJ))};static \u0275prov=_e.jDH({token:nn,factory:nn.\u0275fac})}return nn})();const Ht={provide:At,deps:[[new he.Xx1,new he.kdw,At],P.MJ],useFactory:function Lt(nn,ni){return nn||new we(ni)}},bi=new _e.nKC("MAT_DATE_RANGE_SELECTION_STRATEGY");let Yt=0,Un=(()=>{class nn{_changeDetectorRef=(0,_e.WQX)(Dt.gRc);_dateFormats=(0,_e.WQX)(P.de,{optional:!0});_dateAdapter=(0,_e.WQX)(P.MJ,{optional:!0});_dir=(0,_e.WQX)($.dS,{optional:!0});_rangeStrategy=(0,_e.WQX)(bi,{optional:!0});_rerenderSubscription=Le.yU.EMPTY;_selectionKeyPressed;get activeDate(){return this._activeDate}set activeDate(U){const tt=this._activeDate,Ze=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Ze,this.minDate,this.maxDate),this._hasSameMonthAndYear(tt,this._activeDate)||this._init()}_activeDate;get selected(){return this._selected}set selected(U){this._selected=U instanceof Tt?U:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U)),this._setRanges(this._selected)}_selected;get minDate(){return this._minDate}set minDate(U){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_minDate;get maxDate(){return this._maxDate}set maxDate(U){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_maxDate;dateFilter;dateClass;comparisonStart;comparisonEnd;startDateAccessibleName;endDateAccessibleName;activeDrag=null;selectedChange=new he.bkB;_userSelection=new he.bkB;dragStarted=new he.bkB;dragEnded=new he.bkB;activeDateChange=new he.bkB;_matCalendarBody;_monthLabel=(0,_e.vPA)("");_weeks=(0,_e.vPA)([]);_firstWeekOffset=(0,_e.vPA)(0);_rangeStart=(0,_e.vPA)(null);_rangeEnd=(0,_e.vPA)(null);_comparisonRangeStart=(0,_e.vPA)(null);_comparisonRangeEnd=(0,_e.vPA)(null);_previewStart=(0,_e.vPA)(null);_previewEnd=(0,_e.vPA)(null);_isRange=(0,_e.vPA)(!1);_todayDate=(0,_e.vPA)(null);_weekdays=(0,_e.vPA)([]);constructor(){(0,_e.WQX)(rt.l).load(Gt.Y),this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,fe.Z)(null)).subscribe(()=>this._init())}ngOnChanges(U){const tt=U.comparisonStart||U.comparisonEnd;tt&&!tt.firstChange&&this._setRanges(this.selected),U.activeDrag&&!this.activeDrag&&this._clearPreview()}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_dateSelected(U){const tt=U.value,Ze=this._getDateFromDayOfMonth(tt);let Xt,Nn;this._selected instanceof Tt?(Xt=this._getDateInCurrentMonth(this._selected.start),Nn=this._getDateInCurrentMonth(this._selected.end)):Xt=Nn=this._getDateInCurrentMonth(this._selected),(Xt!==tt||Nn!==tt)&&this.selectedChange.emit(Ze),this._userSelection.emit({value:Ze,event:U.event}),this._clearPreview(),this._changeDetectorRef.markForCheck()}_updateActiveDate(U){const Ze=this._activeDate;this.activeDate=this._getDateFromDayOfMonth(U.value),this._dateAdapter.compareDate(Ze,this.activeDate)&&this.activeDateChange.emit(this._activeDate)}_handleCalendarBodyKeydown(U){const tt=this._activeDate,Ze=this._isRtl();switch(U.keyCode){case St.UQ:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,Ze?1:-1);break;case St.LE:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,Ze?-1:1);break;case St.i7:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,-7);break;case St.n6:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,7);break;case St.yZ:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,1-this._dateAdapter.getDate(this._activeDate));break;case St.Kp:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,this._dateAdapter.getNumDaysInMonth(this._activeDate)-this._dateAdapter.getDate(this._activeDate));break;case St.w_:this.activeDate=U.altKey?this._dateAdapter.addCalendarYears(this._activeDate,-1):this._dateAdapter.addCalendarMonths(this._activeDate,-1);break;case St.dB:this.activeDate=U.altKey?this._dateAdapter.addCalendarYears(this._activeDate,1):this._dateAdapter.addCalendarMonths(this._activeDate,1);break;case St.Fm:case St.t6:return this._selectionKeyPressed=!0,void(this._canSelect(this._activeDate)&&U.preventDefault());case St._f:return void(null!=this._previewEnd()&&!(0,Vt.rp)(U)&&(this._clearPreview(),this.activeDrag?this.dragEnded.emit({value:null,event:U}):(this.selectedChange.emit(null),this._userSelection.emit({value:null,event:U})),U.preventDefault(),U.stopPropagation()));default:return}this._dateAdapter.compareDate(tt,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),U.preventDefault()}_handleCalendarBodyKeyup(U){(U.keyCode===St.t6||U.keyCode===St.Fm)&&(this._selectionKeyPressed&&this._canSelect(this._activeDate)&&this._dateSelected({value:this._dateAdapter.getDate(this._activeDate),event:U}),this._selectionKeyPressed=!1)}_init(){this._setRanges(this.selected),this._todayDate.set(this._getCellCompareValue(this._dateAdapter.today())),this._monthLabel.set(this._dateFormats.display.monthLabel?this._dateAdapter.format(this.activeDate,this._dateFormats.display.monthLabel):this._dateAdapter.getMonthNames("short")[this._dateAdapter.getMonth(this.activeDate)].toLocaleUpperCase());let U=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),1);this._firstWeekOffset.set((7+this._dateAdapter.getDayOfWeek(U)-this._dateAdapter.getFirstDayOfWeek())%7),this._initWeekdays(),this._createWeekCells(),this._changeDetectorRef.markForCheck()}_focusActiveCell(U){this._matCalendarBody._focusActiveCell(U)}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_previewChanged({event:U,value:tt}){if(this._rangeStrategy){const Ze=tt?tt.rawValue:null,Xt=this._rangeStrategy.createPreview(Ze,this.selected,U);if(this._previewStart.set(this._getCellCompareValue(Xt.start)),this._previewEnd.set(this._getCellCompareValue(Xt.end)),this.activeDrag&&Ze){const Nn=this._rangeStrategy.createDrag?.(this.activeDrag.value,this.selected,Ze,U);Nn&&(this._previewStart.set(this._getCellCompareValue(Nn.start)),this._previewEnd.set(this._getCellCompareValue(Nn.end)))}}}_dragEnded(U){if(this.activeDrag)if(U.value){const tt=this._rangeStrategy?.createDrag?.(this.activeDrag.value,this.selected,U.value,U.event);this.dragEnded.emit({value:tt??null,event:U.event})}else this.dragEnded.emit({value:null,event:U.event})}_getDateFromDayOfMonth(U){return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),U)}_initWeekdays(){const U=this._dateAdapter.getFirstDayOfWeek(),tt=this._dateAdapter.getDayOfWeekNames("narrow"),Xt=this._dateAdapter.getDayOfWeekNames("long").map((Nn,Ki)=>({long:Nn,narrow:tt[Ki],id:Yt++}));this._weekdays.set(Xt.slice(U).concat(Xt.slice(0,U)))}_createWeekCells(){const U=this._dateAdapter.getNumDaysInMonth(this.activeDate),tt=this._dateAdapter.getDateNames(),Ze=[[]];for(let Xt=0,Nn=this._firstWeekOffset();Xt=0)&&(!this.maxDate||this._dateAdapter.compareDate(U,this.maxDate)<=0)&&(!this.dateFilter||this.dateFilter(U))}_getDateInCurrentMonth(U){return U&&this._hasSameMonthAndYear(U,this.activeDate)?this._dateAdapter.getDate(U):null}_hasSameMonthAndYear(U,tt){return!(!U||!tt||this._dateAdapter.getMonth(U)!=this._dateAdapter.getMonth(tt)||this._dateAdapter.getYear(U)!=this._dateAdapter.getYear(tt))}_getCellCompareValue(U){if(U){const tt=this._dateAdapter.getYear(U),Ze=this._dateAdapter.getMonth(U),Xt=this._dateAdapter.getDate(U);return new Date(tt,Ze,Xt).getTime()}return null}_isRtl(){return this._dir&&"rtl"===this._dir.value}_setRanges(U){U instanceof Tt?(this._rangeStart.set(this._getCellCompareValue(U.start)),this._rangeEnd.set(this._getCellCompareValue(U.end)),this._isRange.set(!0)):(this._rangeStart.set(this._getCellCompareValue(U)),this._rangeEnd.set(this._rangeStart()),this._isRange.set(!1)),this._comparisonRangeStart.set(this._getCellCompareValue(this.comparisonStart)),this._comparisonRangeEnd.set(this._getCellCompareValue(this.comparisonEnd))}_canSelect(U){return!this.dateFilter||this.dateFilter(U)}_clearPreview(){this._previewStart.set(null),this._previewEnd.set(null)}static \u0275fac=function(tt){return new(tt||nn)};static \u0275cmp=he.VBU({type:nn,selectors:[["mat-month-view"]],viewQuery:function(tt,Ze){if(1&tt&&he.GBs(un,5),2&tt){let Xt;he.mGM(Xt=he.lsd())&&(Ze._matCalendarBody=Xt.first)}},inputs:{activeDate:"activeDate",selected:"selected",minDate:"minDate",maxDate:"maxDate",dateFilter:"dateFilter",dateClass:"dateClass",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName",activeDrag:"activeDrag"},outputs:{selectedChange:"selectedChange",_userSelection:"_userSelection",dragStarted:"dragStarted",dragEnded:"dragEnded",activeDateChange:"activeDateChange"},exportAs:["matMonthView"],features:[he.OA$],decls:8,vars:14,consts:[["role","grid",1,"mat-calendar-table"],[1,"mat-calendar-table-header"],["scope","col"],["aria-hidden","true"],["colspan","7",1,"mat-calendar-table-header-divider"],["mat-calendar-body","",3,"selectedValueChange","activeDateChange","previewChange","dragStarted","dragEnded","keyup","keydown","label","rows","todayValue","startValue","endValue","comparisonStart","comparisonEnd","previewStart","previewEnd","isRange","labelMinRequiredCells","activeCell","startDateAccessibleName","endDateAccessibleName"],[1,"cdk-visually-hidden"]],template:function(tt,Ze){1&tt&&(he.j41(0,"table",0)(1,"thead",1)(2,"tr"),he.Z7z(3,ee,5,2,"th",2,vi),he.k0s(),he.j41(5,"tr",3),he.nrm(6,"th",4),he.k0s()(),he.j41(7,"tbody",5),he.bIt("selectedValueChange",function(Nn){return Ze._dateSelected(Nn)})("activeDateChange",function(Nn){return Ze._updateActiveDate(Nn)})("previewChange",function(Nn){return Ze._previewChanged(Nn)})("dragStarted",function(Nn){return Ze.dragStarted.emit(Nn)})("dragEnded",function(Nn){return Ze._dragEnded(Nn)})("keyup",function(Nn){return Ze._handleCalendarBodyKeyup(Nn)})("keydown",function(Nn){return Ze._handleCalendarBodyKeydown(Nn)}),he.k0s()()),2&tt&&(he.R7$(3),he.Dyx(Ze._weekdays()),he.R7$(4),he.Y8G("label",Ze._monthLabel())("rows",Ze._weeks())("todayValue",Ze._todayDate())("startValue",Ze._rangeStart())("endValue",Ze._rangeEnd())("comparisonStart",Ze._comparisonRangeStart())("comparisonEnd",Ze._comparisonRangeEnd())("previewStart",Ze._previewStart())("previewEnd",Ze._previewEnd())("isRange",Ze._isRange())("labelMinRequiredCells",3)("activeCell",Ze._dateAdapter.getDate(Ze.activeDate)-1)("startDateAccessibleName",Ze.startDateAccessibleName)("endDateAccessibleName",Ze.endDateAccessibleName))},dependencies:[un],encapsulation:2,changeDetection:0})}return nn})(),ci=(()=>{class nn{_changeDetectorRef=(0,_e.WQX)(Dt.gRc);_dateAdapter=(0,_e.WQX)(P.MJ,{optional:!0});_dir=(0,_e.WQX)($.dS,{optional:!0});_rerenderSubscription=Le.yU.EMPTY;_selectionKeyPressed;get activeDate(){return this._activeDate}set activeDate(U){let tt=this._activeDate;const Ze=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Ze,this.minDate,this.maxDate),rn(this._dateAdapter,tt,this._activeDate,this.minDate,this.maxDate)||this._init()}_activeDate;get selected(){return this._selected}set selected(U){this._selected=U instanceof Tt?U:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U)),this._setSelectedYear(U)}_selected;get minDate(){return this._minDate}set minDate(U){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_minDate;get maxDate(){return this._maxDate}set maxDate(U){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_maxDate;dateFilter;dateClass;selectedChange=new he.bkB;yearSelected=new he.bkB;activeDateChange=new he.bkB;_matCalendarBody;_years=(0,_e.vPA)([]);_todayYear=(0,_e.vPA)(0);_selectedYear=(0,_e.vPA)(null);constructor(){this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,fe.Z)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_init(){this._todayYear.set(this._dateAdapter.getYear(this._dateAdapter.today()));const tt=this._dateAdapter.getYear(this._activeDate)-In(this._dateAdapter,this.activeDate,this.minDate,this.maxDate),Ze=[];for(let Xt=0,Nn=[];Xt<24;Xt++)Nn.push(tt+Xt),4==Nn.length&&(Ze.push(Nn.map(Ki=>this._createCellForYear(Ki))),Nn=[]);this._years.set(Ze),this._changeDetectorRef.markForCheck()}_yearSelected(U){const tt=U.value,Ze=this._dateAdapter.createDate(tt,0,1),Xt=this._getDateFromYear(tt);this.yearSelected.emit(Ze),this.selectedChange.emit(Xt)}_updateActiveDate(U){const Ze=this._activeDate;this.activeDate=this._getDateFromYear(U.value),this._dateAdapter.compareDate(Ze,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(U){const tt=this._activeDate,Ze=this._isRtl();switch(U.keyCode){case St.UQ:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Ze?1:-1);break;case St.LE:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Ze?-1:1);break;case St.i7:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-4);break;case St.n6:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,4);break;case St.yZ:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-In(this._dateAdapter,this.activeDate,this.minDate,this.maxDate));break;case St.Kp:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,24-In(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)-1);break;case St.w_:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,U.altKey?-240:-24);break;case St.dB:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,U.altKey?240:24);break;case St.Fm:case St.t6:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(tt,this.activeDate)&&this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked(),U.preventDefault()}_handleCalendarBodyKeyup(U){(U.keyCode===St.t6||U.keyCode===St.Fm)&&(this._selectionKeyPressed&&this._yearSelected({value:this._dateAdapter.getYear(this._activeDate),event:U}),this._selectionKeyPressed=!1)}_getActiveCell(){return In(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getDateFromYear(U){const tt=this._dateAdapter.getMonth(this.activeDate),Ze=this._dateAdapter.getNumDaysInMonth(this._dateAdapter.createDate(U,tt,1));return this._dateAdapter.createDate(U,tt,Math.min(this._dateAdapter.getDate(this.activeDate),Ze))}_createCellForYear(U){const tt=this._dateAdapter.createDate(U,0,1),Ze=this._dateAdapter.getYearName(tt),Xt=this.dateClass?this.dateClass(tt,"multi-year"):void 0;return new We(U,Ze,Ze,this._shouldEnableYear(U),Xt)}_shouldEnableYear(U){if(null==U||this.maxDate&&U>this._dateAdapter.getYear(this.maxDate)||this.minDate&&U{class nn{_changeDetectorRef=(0,_e.WQX)(Dt.gRc);_dateFormats=(0,_e.WQX)(P.de,{optional:!0});_dateAdapter=(0,_e.WQX)(P.MJ,{optional:!0});_dir=(0,_e.WQX)($.dS,{optional:!0});_rerenderSubscription=Le.yU.EMPTY;_selectionKeyPressed;get activeDate(){return this._activeDate}set activeDate(U){let tt=this._activeDate;const Ze=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Ze,this.minDate,this.maxDate),this._dateAdapter.getYear(tt)!==this._dateAdapter.getYear(this._activeDate)&&this._init()}_activeDate;get selected(){return this._selected}set selected(U){this._selected=U instanceof Tt?U:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U)),this._setSelectedMonth(U)}_selected;get minDate(){return this._minDate}set minDate(U){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_minDate;get maxDate(){return this._maxDate}set maxDate(U){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_maxDate;dateFilter;dateClass;selectedChange=new he.bkB;monthSelected=new he.bkB;activeDateChange=new he.bkB;_matCalendarBody;_months=(0,_e.vPA)([]);_yearLabel=(0,_e.vPA)("");_todayMonth=(0,_e.vPA)(null);_selectedMonth=(0,_e.vPA)(null);constructor(){this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,fe.Z)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_monthSelected(U){const tt=U.value,Ze=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),tt,1);this.monthSelected.emit(Ze);const Xt=this._getDateFromMonth(tt);this.selectedChange.emit(Xt)}_updateActiveDate(U){const Ze=this._activeDate;this.activeDate=this._getDateFromMonth(U.value),this._dateAdapter.compareDate(Ze,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(U){const tt=this._activeDate,Ze=this._isRtl();switch(U.keyCode){case St.UQ:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,Ze?1:-1);break;case St.LE:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,Ze?-1:1);break;case St.i7:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-4);break;case St.n6:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,4);break;case St.yZ:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-this._dateAdapter.getMonth(this._activeDate));break;case St.Kp:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,11-this._dateAdapter.getMonth(this._activeDate));break;case St.w_:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,U.altKey?-10:-1);break;case St.dB:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,U.altKey?10:1);break;case St.Fm:case St.t6:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(tt,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),U.preventDefault()}_handleCalendarBodyKeyup(U){(U.keyCode===St.t6||U.keyCode===St.Fm)&&(this._selectionKeyPressed&&this._monthSelected({value:this._dateAdapter.getMonth(this._activeDate),event:U}),this._selectionKeyPressed=!1)}_init(){this._setSelectedMonth(this.selected),this._todayMonth.set(this._getMonthInCurrentYear(this._dateAdapter.today())),this._yearLabel.set(this._dateAdapter.getYearName(this.activeDate));let U=this._dateAdapter.getMonthNames("short");this._months.set([[0,1,2,3],[4,5,6,7],[8,9,10,11]].map(tt=>tt.map(Ze=>this._createCellForMonth(Ze,U[Ze])))),this._changeDetectorRef.markForCheck()}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getMonthInCurrentYear(U){return U&&this._dateAdapter.getYear(U)==this._dateAdapter.getYear(this.activeDate)?this._dateAdapter.getMonth(U):null}_getDateFromMonth(U){const tt=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),U,1),Ze=this._dateAdapter.getNumDaysInMonth(tt);return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),U,Math.min(this._dateAdapter.getDate(this.activeDate),Ze))}_createCellForMonth(U,tt){const Ze=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),U,1),Xt=this._dateAdapter.format(Ze,this._dateFormats.display.monthYearA11yLabel),Nn=this.dateClass?this.dateClass(Ze,"year"):void 0;return new We(U,tt.toLocaleUpperCase(),Xt,this._shouldEnableMonth(U),Nn)}_shouldEnableMonth(U){const tt=this._dateAdapter.getYear(this.activeDate);if(null==U||this._isYearAndMonthAfterMaxDate(tt,U)||this._isYearAndMonthBeforeMinDate(tt,U))return!1;if(!this.dateFilter)return!0;for(let Xt=this._dateAdapter.createDate(tt,U,1);this._dateAdapter.getMonth(Xt)==U;Xt=this._dateAdapter.addCalendarDays(Xt,1))if(this.dateFilter(Xt))return!0;return!1}_isYearAndMonthAfterMaxDate(U,tt){if(this.maxDate){const Ze=this._dateAdapter.getYear(this.maxDate),Xt=this._dateAdapter.getMonth(this.maxDate);return U>Ze||U===Ze&&tt>Xt}return!1}_isYearAndMonthBeforeMinDate(U,tt){if(this.minDate){const Ze=this._dateAdapter.getYear(this.minDate),Xt=this._dateAdapter.getMonth(this.minDate);return U{class nn{_intl=(0,_e.WQX)(Ot);calendar=(0,_e.WQX)(ia);_dateAdapter=(0,_e.WQX)(P.MJ,{optional:!0});_dateFormats=(0,_e.WQX)(P.de,{optional:!0});_periodButtonText;_periodButtonDescription;_periodButtonLabel;_prevButtonLabel;_nextButtonLabel;constructor(){(0,_e.WQX)(rt.l).load(Gt.Y);const U=(0,_e.WQX)(Dt.gRc);this._updateLabels(),this.calendar.stateChanges.subscribe(()=>{this._updateLabels(),U.markForCheck()})}get periodButtonText(){return this._periodButtonText}get periodButtonDescription(){return this._periodButtonDescription}get periodButtonLabel(){return this._periodButtonLabel}get prevButtonLabel(){return this._prevButtonLabel}get nextButtonLabel(){return this._nextButtonLabel}currentPeriodClicked(){this.calendar.currentView="month"==this.calendar.currentView?"multi-year":"month"}previousClicked(){this.previousEnabled()&&(this.calendar.activeDate="month"==this.calendar.currentView?this._dateAdapter.addCalendarMonths(this.calendar.activeDate,-1):this._dateAdapter.addCalendarYears(this.calendar.activeDate,"year"==this.calendar.currentView?-1:-24))}nextClicked(){this.nextEnabled()&&(this.calendar.activeDate="month"==this.calendar.currentView?this._dateAdapter.addCalendarMonths(this.calendar.activeDate,1):this._dateAdapter.addCalendarYears(this.calendar.activeDate,"year"==this.calendar.currentView?1:24))}previousEnabled(){return!this.calendar.minDate||!this.calendar.minDate||!this._isSameView(this.calendar.activeDate,this.calendar.minDate)}nextEnabled(){return!this.calendar.maxDate||!this._isSameView(this.calendar.activeDate,this.calendar.maxDate)}_updateLabels(){const U=this.calendar,tt=this._intl,Ze=this._dateAdapter;"month"===U.currentView?(this._periodButtonText=Ze.format(U.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase(),this._periodButtonDescription=Ze.format(U.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase(),this._periodButtonLabel=tt.switchToMultiYearViewLabel,this._prevButtonLabel=tt.prevMonthLabel,this._nextButtonLabel=tt.nextMonthLabel):"year"===U.currentView?(this._periodButtonText=Ze.getYearName(U.activeDate),this._periodButtonDescription=Ze.getYearName(U.activeDate),this._periodButtonLabel=tt.switchToMonthViewLabel,this._prevButtonLabel=tt.prevYearLabel,this._nextButtonLabel=tt.nextYearLabel):(this._periodButtonText=tt.formatYearRange(...this._formatMinAndMaxYearLabels()),this._periodButtonDescription=tt.formatYearRangeLabel(...this._formatMinAndMaxYearLabels()),this._periodButtonLabel=tt.switchToMonthViewLabel,this._prevButtonLabel=tt.prevMultiYearLabel,this._nextButtonLabel=tt.nextMultiYearLabel)}_isSameView(U,tt){return"month"==this.calendar.currentView?this._dateAdapter.getYear(U)==this._dateAdapter.getYear(tt)&&this._dateAdapter.getMonth(U)==this._dateAdapter.getMonth(tt):"year"==this.calendar.currentView?this._dateAdapter.getYear(U)==this._dateAdapter.getYear(tt):rn(this._dateAdapter,U,tt,this.calendar.minDate,this.calendar.maxDate)}_formatMinAndMaxYearLabels(){const tt=this._dateAdapter.getYear(this.calendar.activeDate)-In(this._dateAdapter,this.calendar.activeDate,this.calendar.minDate,this.calendar.maxDate),Ze=tt+24-1;return[this._dateAdapter.getYearName(this._dateAdapter.createDate(tt,0,1)),this._dateAdapter.getYearName(this._dateAdapter.createDate(Ze,0,1))]}_periodButtonLabelId=(0,_e.WQX)(H.g).getId("mat-calendar-period-label-");static \u0275fac=function(tt){return new(tt||nn)};static \u0275cmp=he.VBU({type:nn,selectors:[["mat-calendar-header"]],exportAs:["matCalendarHeader"],ngContentSelectors:ye,decls:17,vars:13,consts:[[1,"mat-calendar-header"],[1,"mat-calendar-controls"],["aria-live","polite",1,"cdk-visually-hidden",3,"id"],["matButton","","type","button",1,"mat-calendar-period-button",3,"click"],["aria-hidden","true"],["viewBox","0 0 10 5","focusable","false","aria-hidden","true",1,"mat-calendar-arrow"],["points","0,0 5,5 10,0"],[1,"mat-calendar-spacer"],["matIconButton","","type","button","disabledInteractive","",1,"mat-calendar-previous-button",3,"click","disabled","matTooltip"],["viewBox","0 0 24 24","focusable","false","aria-hidden","true"],["d","M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"],["matIconButton","","type","button","disabledInteractive","",1,"mat-calendar-next-button",3,"click","disabled","matTooltip"],["d","M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"]],template:function(tt,Ze){1&tt&&(he.NAR(),he.j41(0,"div",0)(1,"div",1)(2,"span",2),he.EFF(3),he.k0s(),he.j41(4,"button",3),he.bIt("click",function(){return Ze.currentPeriodClicked()}),he.j41(5,"span",4),he.EFF(6),he.k0s(),_e.qSk(),he.j41(7,"svg",5),he.nrm(8,"polygon",6),he.k0s()(),_e.joV(),he.nrm(9,"div",7),he.SdG(10),he.j41(11,"button",8),he.bIt("click",function(){return Ze.previousClicked()}),_e.qSk(),he.j41(12,"svg",9),he.nrm(13,"path",10),he.k0s()(),_e.joV(),he.j41(14,"button",11),he.bIt("click",function(){return Ze.nextClicked()}),_e.qSk(),he.j41(15,"svg",9),he.nrm(16,"path",12),he.k0s()()()()),2&tt&&(he.R7$(2),he.Y8G("id",Ze._periodButtonLabelId),he.R7$(),he.JRh(Ze.periodButtonDescription),he.R7$(),he.BMQ("aria-label",Ze.periodButtonLabel)("aria-describedby",Ze._periodButtonLabelId),he.R7$(2),he.JRh(Ze.periodButtonText),he.R7$(),he.AVh("mat-calendar-invert","month"!==Ze.calendar.currentView),he.R7$(4),he.Y8G("disabled",!Ze.previousEnabled())("matTooltip",Ze.prevButtonLabel),he.BMQ("aria-label",Ze.prevButtonLabel),he.R7$(3),he.Y8G("disabled",!Ze.nextEnabled())("matTooltip",Ze.nextButtonLabel),he.BMQ("aria-label",Ze.nextButtonLabel))},dependencies:[Ft.$z,Sn.iY,Qn.oV],encapsulation:2,changeDetection:0})}return nn})(),ia=(()=>{class nn{_dateAdapter=(0,_e.WQX)(P.MJ,{optional:!0});_dateFormats=(0,_e.WQX)(P.de,{optional:!0});_changeDetectorRef=(0,_e.WQX)(Dt.gRc);_elementRef=(0,_e.WQX)(he.aKT);headerComponent;_calendarHeaderPortal;_intlChanges;_moveFocusOnNextTick=!1;get startAt(){return this._startAt}set startAt(U){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_startAt;startView="month";get selected(){return this._selected}set selected(U){this._selected=U instanceof Tt?U:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_selected;get minDate(){return this._minDate}set minDate(U){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_minDate;get maxDate(){return this._maxDate}set maxDate(U){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_maxDate;dateFilter;dateClass;comparisonStart;comparisonEnd;startDateAccessibleName;endDateAccessibleName;selectedChange=new he.bkB;yearSelected=new he.bkB;monthSelected=new he.bkB;viewChanged=new he.bkB(!0);_userSelection=new he.bkB;_userDragDrop=new he.bkB;monthView;yearView;multiYearView;get activeDate(){return this._clampedActiveDate}set activeDate(U){this._clampedActiveDate=this._dateAdapter.clampDate(U,this.minDate,this.maxDate),this.stateChanges.next(),this._changeDetectorRef.markForCheck()}_clampedActiveDate;get currentView(){return this._currentView}set currentView(U){const tt=this._currentView!==U?U:null;this._currentView=U,this._moveFocusOnNextTick=!0,this._changeDetectorRef.markForCheck(),tt&&(this.stateChanges.next(),this.viewChanged.emit(tt))}_currentView;_activeDrag=null;stateChanges=new lt.B;constructor(){this._intlChanges=(0,_e.WQX)(Ot).changes.subscribe(()=>{this._changeDetectorRef.markForCheck(),this.stateChanges.next()})}ngAfterContentInit(){this._calendarHeaderPortal=new oe.A8(this.headerComponent||Bn),this.activeDate=this.startAt||this._dateAdapter.today(),this._currentView=this.startView}ngAfterViewChecked(){this._moveFocusOnNextTick&&(this._moveFocusOnNextTick=!1,this.focusActiveCell())}ngOnDestroy(){this._intlChanges.unsubscribe(),this.stateChanges.complete()}ngOnChanges(U){const tt=U.minDate&&!this._dateAdapter.sameDate(U.minDate.previousValue,U.minDate.currentValue)?U.minDate:void 0,Ze=U.maxDate&&!this._dateAdapter.sameDate(U.maxDate.previousValue,U.maxDate.currentValue)?U.maxDate:void 0,Xt=tt||Ze||U.dateFilter;if(Xt&&!Xt.firstChange){const Nn=this._getCurrentViewComponent();Nn&&(this._elementRef.nativeElement.contains((0,ht.vc)())&&(this._moveFocusOnNextTick=!0),this._changeDetectorRef.detectChanges(),Nn._init())}this.stateChanges.next()}focusActiveCell(){this._getCurrentViewComponent()._focusActiveCell(!1)}updateTodaysDate(){this._getCurrentViewComponent()._init()}_dateSelected(U){const tt=U.value;(this.selected instanceof Tt||tt&&!this._dateAdapter.sameDate(tt,this.selected))&&this.selectedChange.emit(tt),this._userSelection.emit(U)}_yearSelectedInMultiYearView(U){this.yearSelected.emit(U)}_monthSelectedInYearView(U){this.monthSelected.emit(U)}_goToDateInView(U,tt){this.activeDate=U,this.currentView=tt}_dragStarted(U){this._activeDrag=U}_dragEnded(U){this._activeDrag&&(U.value&&this._userDragDrop.emit(U),this._activeDrag=null)}_getCurrentViewComponent(){return this.monthView||this.yearView||this.multiYearView}static \u0275fac=function(tt){return new(tt||nn)};static \u0275cmp=he.VBU({type:nn,selectors:[["mat-calendar"]],viewQuery:function(tt,Ze){if(1&tt&&(he.GBs(Un,5),he.GBs(ii,5),he.GBs(ci,5)),2&tt){let Xt;he.mGM(Xt=he.lsd())&&(Ze.monthView=Xt.first),he.mGM(Xt=he.lsd())&&(Ze.yearView=Xt.first),he.mGM(Xt=he.lsd())&&(Ze.multiYearView=Xt.first)}},hostAttrs:[1,"mat-calendar"],inputs:{headerComponent:"headerComponent",startAt:"startAt",startView:"startView",selected:"selected",minDate:"minDate",maxDate:"maxDate",dateFilter:"dateFilter",dateClass:"dateClass",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName"},outputs:{selectedChange:"selectedChange",yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",_userSelection:"_userSelection",_userDragDrop:"_userDragDrop"},exportAs:["matCalendar"],features:[he.Jv_([Ht]),he.OA$],decls:5,vars:2,consts:[[3,"cdkPortalOutlet"],["cdkMonitorSubtreeFocus","","tabindex","-1",1,"mat-calendar-content"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName","activeDrag"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass"],[3,"activeDateChange","_userSelection","dragStarted","dragEnded","activeDate","selected","dateFilter","maxDate","minDate","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName","activeDrag"],[3,"activeDateChange","monthSelected","selectedChange","activeDate","selected","dateFilter","maxDate","minDate","dateClass"],[3,"activeDateChange","yearSelected","selectedChange","activeDate","selected","dateFilter","maxDate","minDate","dateClass"]],template:function(tt,Ze){if(1&tt&&(he.DNE(0,ke,0,0,"ng-template",0),he.j41(1,"div",1),he.nVh(2,Se,1,11,"mat-month-view",2)(3,ge,1,6,"mat-year-view",3)(4,N,1,6,"mat-multi-year-view",3),he.k0s()),2&tt){let Xt;he.Y8G("cdkPortalOutlet",Ze._calendarHeaderPortal),he.R7$(2),he.vxM("month"===(Xt=Ze.currentView)?2:"year"===Xt?3:"multi-year"===Xt?4:-1)}},dependencies:[oe.I3,F.vR,Un,ii,ci],styles:['.mat-calendar{display:block;line-height:normal;font-family:var(--mat-datepicker-calendar-text-font, var(--mat-sys-body-medium-font));font-size:var(--mat-datepicker-calendar-text-size, var(--mat-sys-body-medium-size))}.mat-calendar-header{padding:8px 8px 0 8px}.mat-calendar-content{padding:0 8px 8px 8px;outline:none}.mat-calendar-controls{display:flex;align-items:center;margin:5% calc(4.7142857143% - 16px)}.mat-calendar-spacer{flex:1 1 auto}.mat-calendar-period-button{min-width:0;margin:0 8px;font-size:var(--mat-datepicker-calendar-period-button-text-size, var(--mat-sys-title-small-size));font-weight:var(--mat-datepicker-calendar-period-button-text-weight, var(--mat-sys-title-small-weight));--mat-button-text-label-text-color: var(--mat-datepicker-calendar-period-button-text-color, var(--mat-sys-on-surface-variant))}.mat-calendar-arrow{display:inline-block;width:10px;height:5px;margin:0 0 0 5px;vertical-align:middle;fill:var(--mat-datepicker-calendar-period-button-icon-color, var(--mat-sys-on-surface-variant))}.mat-calendar-arrow.mat-calendar-invert{transform:rotate(180deg)}[dir=rtl] .mat-calendar-arrow{margin:0 5px 0 0}@media(forced-colors: active){.mat-calendar-arrow{fill:CanvasText}}.mat-datepicker-content .mat-calendar-previous-button:not(.mat-mdc-button-disabled),.mat-datepicker-content .mat-calendar-next-button:not(.mat-mdc-button-disabled){color:var(--mat-datepicker-calendar-navigation-button-icon-color, var(--mat-sys-on-surface-variant))}[dir=rtl] .mat-calendar-previous-button,[dir=rtl] .mat-calendar-next-button{transform:rotate(180deg)}.mat-calendar-table{border-spacing:0;border-collapse:collapse;width:100%}.mat-calendar-table-header th{text-align:center;padding:0 0 8px 0;color:var(--mat-datepicker-calendar-header-text-color, var(--mat-sys-on-surface-variant));font-size:var(--mat-datepicker-calendar-header-text-size, var(--mat-sys-title-small-size));font-weight:var(--mat-datepicker-calendar-header-text-weight, var(--mat-sys-title-small-weight))}.mat-calendar-table-header-divider{position:relative;height:1px}.mat-calendar-table-header-divider::after{content:"";position:absolute;top:0;left:-8px;right:-8px;height:1px;background:var(--mat-datepicker-calendar-header-divider-color, transparent)}.mat-calendar-body-cell-content::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 3px)*-1)}.mat-calendar-body-cell:focus .mat-focus-indicator::before{content:""}\n'],encapsulation:2,changeDetection:0})}return nn})();const ra=new _e.nKC("mat-datepicker-scroll-strategy",{providedIn:"root",factory:()=>{const nn=(0,_e.WQX)(_e.zZn);return()=>(0,ot.RH)(nn)}}),ha={provide:ra,deps:[],useFactory:function fa(nn){const ni=(0,_e.WQX)(_e.zZn);return()=>(0,ot.RH)(ni)}};let qt=(()=>{class nn{_elementRef=(0,_e.WQX)(he.aKT);_animationsDisabled=(0,h.Rc)();_changeDetectorRef=(0,_e.WQX)(Dt.gRc);_globalModel=(0,_e.WQX)(At);_dateAdapter=(0,_e.WQX)(P.MJ);_ngZone=(0,_e.WQX)(he.SKi);_rangeSelectionStrategy=(0,_e.WQX)(bi,{optional:!0});_stateChanges;_model;_eventCleanups;_animationFallback;_calendar;color;datepicker;comparisonStart;comparisonEnd;startDateAccessibleName;endDateAccessibleName;_isAbove;_animationDone=new lt.B;_isAnimating=!1;_closeButtonText;_closeButtonFocused;_actionsPortal=null;_dialogLabelId;constructor(){if((0,_e.WQX)(rt.l).load(Gt.Y),this._closeButtonText=(0,_e.WQX)(Ot).closeCalendarLabel,!this._animationsDisabled){const U=this._elementRef.nativeElement,tt=(0,_e.WQX)(he.sFG);this._eventCleanups=this._ngZone.runOutsideAngular(()=>[tt.listen(U,"animationstart",this._handleAnimationEvent),tt.listen(U,"animationend",this._handleAnimationEvent),tt.listen(U,"animationcancel",this._handleAnimationEvent)])}}ngAfterViewInit(){this._stateChanges=this.datepicker.stateChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()}),this._calendar.focusActiveCell()}ngOnDestroy(){clearTimeout(this._animationFallback),this._eventCleanups?.forEach(U=>U()),this._stateChanges?.unsubscribe(),this._animationDone.complete()}_handleUserSelection(U){const tt=this._model.selection,Ze=U.value,Xt=tt instanceof Tt;if(Xt&&this._rangeSelectionStrategy){const Nn=this._rangeSelectionStrategy.selectionFinished(Ze,tt,U.event);this._model.updateSelection(Nn,this)}else Ze&&(Xt||!this._dateAdapter.sameDate(Ze,tt))&&this._model.add(Ze);(!this._model||this._model.isComplete())&&!this._actionsPortal&&this.datepicker.close()}_handleUserDragDrop(U){this._model.updateSelection(U.value,this)}_startExitAnimation(){this._elementRef.nativeElement.classList.add("mat-datepicker-content-exit"),this._animationsDisabled?this._animationDone.next():(clearTimeout(this._animationFallback),this._animationFallback=setTimeout(()=>{this._isAnimating||this._animationDone.next()},200))}_handleAnimationEvent=U=>{const tt=this._elementRef.nativeElement;U.target!==tt||!U.animationName.startsWith("_mat-datepicker-content")||(clearTimeout(this._animationFallback),this._isAnimating="animationstart"===U.type,tt.classList.toggle("mat-datepicker-content-animating",this._isAnimating),this._isAnimating||this._animationDone.next())};_getSelected(){return this._model.selection}_applyPendingSelection(){this._model!==this._globalModel&&this._globalModel.updateSelection(this._model.selection,this)}_assignActions(U,tt){this._model=U?this._globalModel.clone():this._globalModel,this._actionsPortal=U,tt&&this._changeDetectorRef.detectChanges()}static \u0275fac=function(tt){return new(tt||nn)};static \u0275cmp=he.VBU({type:nn,selectors:[["mat-datepicker-content"]],viewQuery:function(tt,Ze){if(1&tt&&he.GBs(ia,5),2&tt){let Xt;he.mGM(Xt=he.lsd())&&(Ze._calendar=Xt.first)}},hostAttrs:[1,"mat-datepicker-content"],hostVars:6,hostBindings:function(tt,Ze){2&tt&&(he.HbH(Ze.color?"mat-"+Ze.color:""),he.AVh("mat-datepicker-content-touch",Ze.datepicker.touchUi)("mat-datepicker-content-animations-enabled",!Ze._animationsDisabled))},inputs:{color:"color"},exportAs:["matDatepickerContent"],decls:5,vars:26,consts:[["cdkTrapFocus","","role","dialog",1,"mat-datepicker-content-container"],[3,"yearSelected","monthSelected","viewChanged","_userSelection","_userDragDrop","id","startAt","startView","minDate","maxDate","dateFilter","headerComponent","selected","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName"],[3,"cdkPortalOutlet"],["type","button","matButton","elevated",1,"mat-datepicker-close-button",3,"focus","blur","click","color"]],template:function(tt,Ze){1&tt&&(he.j41(0,"div",0)(1,"mat-calendar",1),he.bIt("yearSelected",function(Nn){return Ze.datepicker._selectYear(Nn)})("monthSelected",function(Nn){return Ze.datepicker._selectMonth(Nn)})("viewChanged",function(Nn){return Ze.datepicker._viewChanged(Nn)})("_userSelection",function(Nn){return Ze._handleUserSelection(Nn)})("_userDragDrop",function(Nn){return Ze._handleUserDragDrop(Nn)}),he.k0s(),he.DNE(2,Z,0,0,"ng-template",2),he.j41(3,"button",3),he.bIt("focus",function(){return Ze._closeButtonFocused=!0})("blur",function(){return Ze._closeButtonFocused=!1})("click",function(){return Ze.datepicker.close()}),he.EFF(4),he.k0s()()),2&tt&&(he.AVh("mat-datepicker-content-container-with-custom-header",Ze.datepicker.calendarHeaderComponent)("mat-datepicker-content-container-with-actions",Ze._actionsPortal),he.BMQ("aria-modal",!0)("aria-labelledby",Ze._dialogLabelId??void 0),he.R7$(),he.HbH(Ze.datepicker.panelClass),he.Y8G("id",Ze.datepicker.id)("startAt",Ze.datepicker.startAt)("startView",Ze.datepicker.startView)("minDate",Ze.datepicker._getMinDate())("maxDate",Ze.datepicker._getMaxDate())("dateFilter",Ze.datepicker._getDateFilter())("headerComponent",Ze.datepicker.calendarHeaderComponent)("selected",Ze._getSelected())("dateClass",Ze.datepicker.dateClass)("comparisonStart",Ze.comparisonStart)("comparisonEnd",Ze.comparisonEnd)("startDateAccessibleName",Ze.startDateAccessibleName)("endDateAccessibleName",Ze.endDateAccessibleName),he.R7$(),he.Y8G("cdkPortalOutlet",Ze._actionsPortal),he.R7$(),he.AVh("cdk-visually-hidden",!Ze._closeButtonFocused),he.Y8G("color",Ze.color||"primary"),he.R7$(),he.JRh(Ze._closeButtonText))},dependencies:[ve.kB,ia,oe.I3,Ft.$z],styles:["@keyframes _mat-datepicker-content-dropdown-enter{from{opacity:0;transform:scaleY(0.8)}to{opacity:1;transform:none}}@keyframes _mat-datepicker-content-dialog-enter{from{opacity:0;transform:scale(0.8)}to{opacity:1;transform:none}}@keyframes _mat-datepicker-content-exit{from{opacity:1}to{opacity:0}}.mat-datepicker-content{display:block;background-color:var(--mat-datepicker-calendar-container-background-color, var(--mat-sys-surface-container-high));color:var(--mat-datepicker-calendar-container-text-color, var(--mat-sys-on-surface));box-shadow:var(--mat-datepicker-calendar-container-elevation-shadow, 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12));border-radius:var(--mat-datepicker-calendar-container-shape, var(--mat-sys-corner-large))}.mat-datepicker-content.mat-datepicker-content-animations-enabled{animation:_mat-datepicker-content-dropdown-enter 120ms cubic-bezier(0, 0, 0.2, 1)}.mat-datepicker-content .mat-calendar{width:296px;height:354px}.mat-datepicker-content .mat-datepicker-content-container-with-custom-header .mat-calendar{height:auto}.mat-datepicker-content .mat-datepicker-close-button{position:absolute;top:100%;left:0;margin-top:8px}.mat-datepicker-content-animating .mat-datepicker-content .mat-datepicker-close-button{display:none}.mat-datepicker-content-container{display:flex;flex-direction:column;justify-content:space-between}.mat-datepicker-content-touch{display:block;max-height:80vh;box-shadow:var(--mat-datepicker-calendar-container-touch-elevation-shadow, 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12));border-radius:var(--mat-datepicker-calendar-container-touch-shape, var(--mat-sys-corner-extra-large));position:relative;overflow:visible}.mat-datepicker-content-touch.mat-datepicker-content-animations-enabled{animation:_mat-datepicker-content-dialog-enter 150ms cubic-bezier(0, 0, 0.2, 1)}.mat-datepicker-content-touch .mat-datepicker-content-container{min-height:312px;max-height:788px;min-width:250px;max-width:750px}.mat-datepicker-content-touch .mat-calendar{width:100%;height:auto}.mat-datepicker-content-exit.mat-datepicker-content-animations-enabled{animation:_mat-datepicker-content-exit 100ms linear}@media all and (orientation: landscape){.mat-datepicker-content-touch .mat-datepicker-content-container{width:64vh;height:80vh}}@media all and (orientation: portrait){.mat-datepicker-content-touch .mat-datepicker-content-container{width:80vw;height:100vw}.mat-datepicker-content-touch .mat-datepicker-content-container-with-actions{height:115vw}}\n"],encapsulation:2,changeDetection:0})}return nn})(),En=(()=>{class nn{_injector=(0,_e.WQX)(_e.zZn);_viewContainerRef=(0,_e.WQX)(he.c1b);_dateAdapter=(0,_e.WQX)(P.MJ,{optional:!0});_dir=(0,_e.WQX)($.dS,{optional:!0});_model=(0,_e.WQX)(At);_animationsDisabled=(0,h.Rc)();_scrollStrategy=(0,_e.WQX)(ra);_inputStateChanges=Le.yU.EMPTY;_document=(0,_e.WQX)(_e.qQL);calendarHeaderComponent;get startAt(){return this._startAt||(this.datepickerInput?this.datepickerInput.getStartValue():null)}set startAt(U){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_startAt;startView="month";get color(){return this._color||(this.datepickerInput?this.datepickerInput.getThemePalette():void 0)}set color(U){this._color=U}_color;touchUi=!1;get disabled(){return void 0===this._disabled&&this.datepickerInput?this.datepickerInput.disabled:!!this._disabled}set disabled(U){U!==this._disabled&&(this._disabled=U,this.stateChanges.next(void 0))}_disabled;xPosition="start";yPosition="below";restoreFocus=!0;yearSelected=new he.bkB;monthSelected=new he.bkB;viewChanged=new he.bkB(!0);dateClass;openedStream=new he.bkB;closedStream=new he.bkB;get panelClass(){return this._panelClass}set panelClass(U){this._panelClass=(0,Ke.cc)(U)}_panelClass;get opened(){return this._opened}set opened(U){U?this.open():this.close()}_opened=!1;id=(0,_e.WQX)(H.g).getId("mat-datepicker-");_getMinDate(){return this.datepickerInput&&this.datepickerInput.min}_getMaxDate(){return this.datepickerInput&&this.datepickerInput.max}_getDateFilter(){return this.datepickerInput&&this.datepickerInput.dateFilter}_overlayRef;_componentRef;_focusedElementBeforeOpen=null;_backdropHarnessClass=`${this.id}-backdrop`;_actionsPortal;datepickerInput;stateChanges=new lt.B;_changeDetectorRef=(0,_e.WQX)(Dt.gRc);constructor(){this._model.selectionChanged.subscribe(()=>{this._changeDetectorRef.markForCheck()})}ngOnChanges(U){const tt=U.xPosition||U.yPosition;if(tt&&!tt.firstChange&&this._overlayRef){const Ze=this._overlayRef.getConfig().positionStrategy;Ze instanceof ot.rW&&(this._setConnectedPositions(Ze),this.opened&&this._overlayRef.updatePosition())}this.stateChanges.next(void 0)}ngOnDestroy(){this._destroyOverlay(),this.close(),this._inputStateChanges.unsubscribe(),this.stateChanges.complete()}select(U){this._model.add(U)}_selectYear(U){this.yearSelected.emit(U)}_selectMonth(U){this.monthSelected.emit(U)}_viewChanged(U){this.viewChanged.emit(U)}registerInput(U){return this._inputStateChanges.unsubscribe(),this.datepickerInput=U,this._inputStateChanges=U.stateChanges.subscribe(()=>this.stateChanges.next(void 0)),this._model}registerActions(U){this._actionsPortal=U,this._componentRef?.instance._assignActions(U,!0)}removeActions(U){U===this._actionsPortal&&(this._actionsPortal=null,this._componentRef?.instance._assignActions(null,!0))}open(){this._opened||this.disabled||this._componentRef?.instance._isAnimating||(this._focusedElementBeforeOpen=(0,ht.vc)(),this._openOverlay(),this._opened=!0,this.openedStream.emit())}close(){if(!this._opened||this._componentRef?.instance._isAnimating)return;const U=this.restoreFocus&&this._focusedElementBeforeOpen&&"function"==typeof this._focusedElementBeforeOpen.focus,tt=()=>{this._opened&&(this._opened=!1,this.closedStream.emit())};if(this._componentRef){const{instance:Ze,location:Xt}=this._componentRef;Ze._animationDone.pipe((0,Qe.s)(1)).subscribe(()=>{const Nn=this._document.activeElement;U&&(!Nn||Nn===this._document.activeElement||Xt.nativeElement.contains(Nn))&&this._focusedElementBeforeOpen.focus(),this._focusedElementBeforeOpen=null,this._destroyOverlay()}),Ze._startExitAnimation()}U?setTimeout(tt):tt()}_applyPendingSelection(){this._componentRef?.instance?._applyPendingSelection()}_forwardContentValues(U){U.datepicker=this,U.color=this.color,U._dialogLabelId=this.datepickerInput.getOverlayLabelId(),U._assignActions(this._actionsPortal,!1)}_openOverlay(){this._destroyOverlay();const U=this.touchUi,tt=new oe.A8(qt,this._viewContainerRef),Ze=this._overlayRef=(0,ot.Y$)(this._injector,new ot.rR({positionStrategy:U?this._getDialogStrategy():this._getDropdownStrategy(),hasBackdrop:!0,backdropClass:[U?"cdk-overlay-dark-backdrop":"mat-overlay-transparent-backdrop",this._backdropHarnessClass],direction:this._dir||"ltr",scrollStrategy:U?(0,ot.gA)(this._injector):this._scrollStrategy(),panelClass:"mat-datepicker-"+(U?"dialog":"popup"),disableAnimations:this._animationsDisabled}));this._getCloseStream(Ze).subscribe(Xt=>{Xt&&Xt.preventDefault(),this.close()}),Ze.keydownEvents().subscribe(Xt=>{const Nn=Xt.keyCode;(Nn===St.i7||Nn===St.n6||Nn===St.UQ||Nn===St.LE||Nn===St.w_||Nn===St.dB)&&Xt.preventDefault()}),this._componentRef=Ze.attach(tt),this._forwardContentValues(this._componentRef.instance),U||(0,he.mal)(()=>{Ze.updatePosition()},{injector:this._injector})}_destroyOverlay(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=this._componentRef=null)}_getDialogStrategy(){return(0,ot.uA)(this._injector).centerHorizontally().centerVertically()}_getDropdownStrategy(){const U=(0,ot.$M)(this._injector,this.datepickerInput.getConnectedOverlayOrigin()).withTransformOriginOn(".mat-datepicker-content").withFlexibleDimensions(!1).withViewportMargin(8).withLockedPosition();return this._setConnectedPositions(U)}_setConnectedPositions(U){const tt="end"===this.xPosition?"end":"start",Ze="start"===tt?"end":"start",Xt="above"===this.yPosition?"bottom":"top",Nn="top"===Xt?"bottom":"top";return U.withPositions([{originX:tt,originY:Nn,overlayX:tt,overlayY:Xt},{originX:tt,originY:Xt,overlayX:tt,overlayY:Nn},{originX:Ze,originY:Nn,overlayX:Ze,overlayY:Xt},{originX:Ze,originY:Xt,overlayX:Ze,overlayY:Nn}])}_getCloseStream(U){const tt=["ctrlKey","shiftKey","metaKey"];return(0,te.h)(U.backdropClick(),U.detachments(),U.keydownEvents().pipe((0,Ye.p)(Ze=>Ze.keyCode===St._f&&!(0,Vt.rp)(Ze)||this.datepickerInput&&(0,Vt.rp)(Ze,"altKey")&&Ze.keyCode===St.i7&&tt.every(Xt=>!(0,Vt.rp)(Ze,Xt)))))}static \u0275fac=function(tt){return new(tt||nn)};static \u0275dir=he.FsC({type:nn,inputs:{calendarHeaderComponent:"calendarHeaderComponent",startAt:"startAt",startView:"startView",color:"color",touchUi:[2,"touchUi","touchUi",Dt.L39],disabled:[2,"disabled","disabled",Dt.L39],xPosition:"xPosition",yPosition:"yPosition",restoreFocus:[2,"restoreFocus","restoreFocus",Dt.L39],dateClass:"dateClass",panelClass:"panelClass",opened:[2,"opened","opened",Dt.L39]},outputs:{yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",openedStream:"opened",closedStream:"closed"},features:[he.OA$]})}return nn})(),Wn=(()=>{class nn extends En{static \u0275fac=(()=>{let U;return function(Ze){return(U||(U=he.xGo(nn)))(Ze||nn)}})();static \u0275cmp=he.VBU({type:nn,selectors:[["mat-datepicker"]],exportAs:["matDatepicker"],features:[he.Jv_([Ht,{provide:En,useExisting:nn}]),he.Vt3],decls:0,vars:0,template:function(tt,Ze){},encapsulation:2,changeDetection:0})}return nn})();class ri{target;targetElement;value;constructor(ni,U){this.target=ni,this.targetElement=U,this.value=this.target.value}}let Rn=(()=>{class nn{_elementRef=(0,_e.WQX)(he.aKT);_dateAdapter=(0,_e.WQX)(P.MJ,{optional:!0});_dateFormats=(0,_e.WQX)(P.de,{optional:!0});_isInitialized;get value(){return this._model?this._getValueFromModel(this._model.selection):this._pendingValue}set value(U){this._assignValueProgrammatically(U)}_model;get disabled(){return!!this._disabled||this._parentDisabled()}set disabled(U){const tt=U,Ze=this._elementRef.nativeElement;this._disabled!==tt&&(this._disabled=tt,this.stateChanges.next(void 0)),tt&&this._isInitialized&&Ze.blur&&Ze.blur()}_disabled;dateChange=new he.bkB;dateInput=new he.bkB;stateChanges=new lt.B;_onTouched=()=>{};_validatorOnChange=()=>{};_cvaOnChange=()=>{};_valueChangesSubscription=Le.yU.EMPTY;_localeSubscription=Le.yU.EMPTY;_pendingValue;_parseValidator=()=>this._lastValueValid?null:{matDatepickerParse:{text:this._elementRef.nativeElement.value}};_filterValidator=U=>{const tt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U.value));return!tt||this._matchesFilter(tt)?null:{matDatepickerFilter:!0}};_minValidator=U=>{const tt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U.value)),Ze=this._getMinDate();return!Ze||!tt||this._dateAdapter.compareDate(Ze,tt)<=0?null:{matDatepickerMin:{min:Ze,actual:tt}}};_maxValidator=U=>{const tt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U.value)),Ze=this._getMaxDate();return!Ze||!tt||this._dateAdapter.compareDate(Ze,tt)>=0?null:{matDatepickerMax:{max:Ze,actual:tt}}};_getValidators(){return[this._parseValidator,this._minValidator,this._maxValidator,this._filterValidator]}_registerModel(U){this._model=U,this._valueChangesSubscription.unsubscribe(),this._pendingValue&&this._assignValue(this._pendingValue),this._valueChangesSubscription=this._model.selectionChanged.subscribe(tt=>{if(this._shouldHandleChangeEvent(tt)){const Ze=this._getValueFromModel(tt.selection);this._lastValueValid=this._isValidValue(Ze),this._cvaOnChange(Ze),this._onTouched(),this._formatValue(Ze),this.dateInput.emit(new ri(this,this._elementRef.nativeElement)),this.dateChange.emit(new ri(this,this._elementRef.nativeElement))}})}_lastValueValid=!1;constructor(){this._localeSubscription=this._dateAdapter.localeChanges.subscribe(()=>{this._assignValueProgrammatically(this.value)})}ngAfterViewInit(){this._isInitialized=!0}ngOnChanges(U){(function Hn(nn,ni){const U=Object.keys(nn);for(let tt of U){const{previousValue:Ze,currentValue:Xt}=nn[tt];if(!ni.isDateInstance(Ze)||!ni.isDateInstance(Xt))return!0;if(!ni.sameDate(Ze,Xt))return!0}return!1})(U,this._dateAdapter)&&this.stateChanges.next(void 0)}ngOnDestroy(){this._valueChangesSubscription.unsubscribe(),this._localeSubscription.unsubscribe(),this.stateChanges.complete()}registerOnValidatorChange(U){this._validatorOnChange=U}validate(U){return this._validator?this._validator(U):null}writeValue(U){this._assignValueProgrammatically(U)}registerOnChange(U){this._cvaOnChange=U}registerOnTouched(U){this._onTouched=U}setDisabledState(U){this.disabled=U}_onKeydown(U){(0,Vt.rp)(U,"altKey")&&U.keyCode===St.n6&&["ctrlKey","shiftKey","metaKey"].every(Xt=>!(0,Vt.rp)(U,Xt))&&!this._elementRef.nativeElement.readOnly&&(this._openPopup(),U.preventDefault())}_onInput(U){const tt=U.target.value,Ze=this._lastValueValid;let Xt=this._dateAdapter.parse(tt,this._dateFormats.parse.dateInput);this._lastValueValid=this._isValidValue(Xt),Xt=this._dateAdapter.getValidDateOrNull(Xt);const Nn=!this._dateAdapter.sameDate(Xt,this.value);!Xt||Nn?this._cvaOnChange(Xt):(tt&&!this.value&&this._cvaOnChange(Xt),Ze!==this._lastValueValid&&this._validatorOnChange()),Nn&&(this._assignValue(Xt),this.dateInput.emit(new ri(this,this._elementRef.nativeElement)))}_onChange(){this.dateChange.emit(new ri(this,this._elementRef.nativeElement))}_onBlur(){this.value&&this._formatValue(this.value),this._onTouched()}_formatValue(U){this._elementRef.nativeElement.value=null!=U?this._dateAdapter.format(U,this._dateFormats.display.dateInput):""}_assignValue(U){this._model?(this._assignValueToModel(U),this._pendingValue=null):this._pendingValue=U}_isValidValue(U){return!U||this._dateAdapter.isValid(U)}_parentDisabled(){return!1}_assignValueProgrammatically(U){U=this._dateAdapter.deserialize(U),this._lastValueValid=this._isValidValue(U),U=this._dateAdapter.getValidDateOrNull(U),this._assignValue(U),this._formatValue(U)}_matchesFilter(U){const tt=this._getDateFilter();return!tt||tt(U)}static \u0275fac=function(tt){return new(tt||nn)};static \u0275dir=he.FsC({type:nn,inputs:{value:"value",disabled:[2,"disabled","disabled",Dt.L39]},outputs:{dateChange:"dateChange",dateInput:"dateInput"},features:[he.OA$]})}return nn})();const Pi={provide:jt.kq,useExisting:(0,_e.Rfq)(()=>Ta),multi:!0},da={provide:jt.cz,useExisting:(0,_e.Rfq)(()=>Ta),multi:!0};let Ta=(()=>{class nn extends Rn{_formField=(0,_e.WQX)(wt.xb,{optional:!0});_closedSubscription=Le.yU.EMPTY;_openedSubscription=Le.yU.EMPTY;set matDatepicker(U){U&&(this._datepicker=U,this._ariaOwns.set(U.opened?U.id:null),this._closedSubscription=U.closedStream.subscribe(()=>{this._onTouched(),this._ariaOwns.set(null)}),this._openedSubscription=U.openedStream.subscribe(()=>{this._ariaOwns.set(U.id)}),this._registerModel(U.registerInput(this)))}_datepicker;_ariaOwns=(0,_e.vPA)(null);get min(){return this._min}set min(U){const tt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U));this._dateAdapter.sameDate(tt,this._min)||(this._min=tt,this._validatorOnChange())}_min;get max(){return this._max}set max(U){const tt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U));this._dateAdapter.sameDate(tt,this._max)||(this._max=tt,this._validatorOnChange())}_max;get dateFilter(){return this._dateFilter}set dateFilter(U){const tt=this._matchesFilter(this.value);this._dateFilter=U,this._matchesFilter(this.value)!==tt&&this._validatorOnChange()}_dateFilter;_validator;constructor(){super(),this._validator=jt.k0.compose(super._getValidators())}getConnectedOverlayOrigin(){return this._formField?this._formField.getConnectedOverlayOrigin():this._elementRef}getOverlayLabelId(){return this._formField?this._formField.getLabelId():this._elementRef.nativeElement.getAttribute("aria-labelledby")}getThemePalette(){return this._formField?this._formField.color:void 0}getStartValue(){return this.value}ngOnDestroy(){super.ngOnDestroy(),this._closedSubscription.unsubscribe(),this._openedSubscription.unsubscribe()}_openPopup(){this._datepicker&&this._datepicker.open()}_getValueFromModel(U){return U}_assignValueToModel(U){this._model&&this._model.updateSelection(U,this)}_getMinDate(){return this._min}_getMaxDate(){return this._max}_getDateFilter(){return this._dateFilter}_shouldHandleChangeEvent(U){return U.source!==this}static \u0275fac=function(tt){return new(tt||nn)};static \u0275dir=he.FsC({type:nn,selectors:[["input","matDatepicker",""]],hostAttrs:[1,"mat-datepicker-input"],hostVars:6,hostBindings:function(tt,Ze){1&tt&&he.bIt("input",function(Nn){return Ze._onInput(Nn)})("change",function(){return Ze._onChange()})("blur",function(){return Ze._onBlur()})("keydown",function(Nn){return Ze._onKeydown(Nn)}),2&tt&&(he.Avn("disabled",Ze.disabled),he.BMQ("aria-haspopup",Ze._datepicker?"dialog":null)("aria-owns",Ze._ariaOwns())("min",Ze.min?Ze._dateAdapter.toIso8601(Ze.min):null)("max",Ze.max?Ze._dateAdapter.toIso8601(Ze.max):null)("data-mat-calendar",Ze._datepicker?Ze._datepicker.id:null))},inputs:{matDatepicker:"matDatepicker",min:"min",max:"max",dateFilter:[0,"matDatepickerFilter","dateFilter"]},exportAs:["matDatepickerInput"],features:[he.Jv_([Pi,da,{provide:Ue.O,useExisting:nn}]),he.Vt3]})}return nn})(),en=(()=>{class nn{static \u0275fac=function(tt){return new(tt||nn)};static \u0275dir=he.FsC({type:nn,selectors:[["","matDatepickerToggleIcon",""]]})}return nn})(),vn=(()=>{class nn{_intl=(0,_e.WQX)(Ot);_changeDetectorRef=(0,_e.WQX)(Dt.gRc);_stateChanges=Le.yU.EMPTY;datepicker;tabIndex;ariaLabel;get disabled(){return void 0===this._disabled&&this.datepicker?this.datepicker.disabled:!!this._disabled}set disabled(U){this._disabled=U}_disabled;disableRipple;_customIcon;_button;constructor(){const U=(0,_e.WQX)(new Dt.ES_("tabindex"),{optional:!0}),tt=Number(U);this.tabIndex=tt||0===tt?tt:null}ngOnChanges(U){U.datepicker&&this._watchStateChanges()}ngOnDestroy(){this._stateChanges.unsubscribe()}ngAfterContentInit(){this._watchStateChanges()}_open(U){this.datepicker&&!this.disabled&&(this.datepicker.open(),U.stopPropagation())}_watchStateChanges(){const U=this.datepicker?this.datepicker.stateChanges:(0,ie.of)(),tt=this.datepicker&&this.datepicker.datepickerInput?this.datepicker.datepickerInput.stateChanges:(0,ie.of)(),Ze=this.datepicker?(0,te.h)(this.datepicker.openedStream,this.datepicker.closedStream):(0,ie.of)();this._stateChanges.unsubscribe(),this._stateChanges=(0,te.h)(this._intl.changes,U,tt,Ze).subscribe(()=>this._changeDetectorRef.markForCheck())}static \u0275fac=function(tt){return new(tt||nn)};static \u0275cmp=he.VBU({type:nn,selectors:[["mat-datepicker-toggle"]],contentQueries:function(tt,Ze,Xt){if(1&tt&&he.wni(Xt,en,5),2&tt){let Nn;he.mGM(Nn=he.lsd())&&(Ze._customIcon=Nn.first)}},viewQuery:function(tt,Ze){if(1&tt&&he.GBs(Me,5),2&tt){let Xt;he.mGM(Xt=he.lsd())&&(Ze._button=Xt.first)}},hostAttrs:[1,"mat-datepicker-toggle"],hostVars:8,hostBindings:function(tt,Ze){1&tt&&he.bIt("click",function(Nn){return Ze._open(Nn)}),2&tt&&(he.BMQ("tabindex",null)("data-mat-calendar",Ze.datepicker?Ze.datepicker.id:null),he.AVh("mat-datepicker-toggle-active",Ze.datepicker&&Ze.datepicker.opened)("mat-accent",Ze.datepicker&&"accent"===Ze.datepicker.color)("mat-warn",Ze.datepicker&&"warn"===Ze.datepicker.color))},inputs:{datepicker:[0,"for","datepicker"],tabIndex:"tabIndex",ariaLabel:[0,"aria-label","ariaLabel"],disabled:[2,"disabled","disabled",Dt.L39],disableRipple:"disableRipple"},exportAs:["matDatepickerToggle"],features:[he.OA$],ngContentSelectors:qe,decls:4,vars:7,consts:[["button",""],["matIconButton","","type","button",3,"tabIndex","disabled","disableRipple"],["viewBox","0 0 24 24","width","24px","height","24px","fill","currentColor","focusable","false","aria-hidden","true",1,"mat-datepicker-toggle-default-icon"],["d","M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"]],template:function(tt,Ze){1&tt&&(he.NAR(at),he.j41(0,"button",1,0),he.nVh(2,pn,2,0,":svg:svg",2),he.SdG(3),he.k0s()),2&tt&&(he.Y8G("tabIndex",Ze.disabled?-1:Ze.tabIndex)("disabled",Ze.disabled)("disableRipple",Ze.disableRipple),he.BMQ("aria-haspopup",Ze.datepicker?"dialog":null)("aria-label",Ze.ariaLabel||Ze._intl.openCalendarLabel)("aria-expanded",Ze.datepicker?Ze.datepicker.opened:null),he.R7$(2),he.vxM(Ze._customIcon?-1:2))},dependencies:[Sn.iY],styles:[".mat-datepicker-toggle{pointer-events:auto;color:var(--mat-datepicker-toggle-icon-color, var(--mat-sys-on-surface-variant))}.mat-datepicker-toggle button{color:inherit}.mat-datepicker-toggle-active{color:var(--mat-datepicker-toggle-active-state-icon-color, var(--mat-sys-primary))}@media(forced-colors: active){.mat-datepicker-toggle-default-icon{color:CanvasText}}\n"],encapsulation:2,changeDetection:0})}return nn})(),Ii=(()=>{class nn{static \u0275fac=function(tt){return new(tt||nn)};static \u0275mod=he.$C({type:nn});static \u0275inj=_e.G2t({providers:[Ot,ha],imports:[Ft.Hl,ot.z_,ve.Pd,oe.jc,Pt.y,qt,vn,Bn,pt.Gj]})}return nn})()},1585(Zt,pe,l){"use strict";l.d(pe,{Vh:()=>ht,di:()=>oe,bZ:()=>fe,tx:()=>Qe,hM:()=>Qn,CP:()=>ot});var i=l(3664),d=l(2615),v=l(7705),T=l(1413),w=l(9030),e=l(6939),O=l(7094),f=l(6838),u=l(9842),L=l(4522),C=l(438),B=l(7336),A=l(9172),Pe=l(6697),le=l(9338),Ce=l(9726),Ae=l(1577);function j(h,jt){}class W{viewContainerRef;injector;id;role="dialog";panelClass="";hasBackdrop=!0;backdropClass="";disableClose=!1;closePredicate;width="";height="";minWidth;minHeight;maxWidth;maxHeight;positionStrategy;data=null;direction;ariaDescribedBy=null;ariaLabelledBy=null;ariaLabel=null;ariaModal=!1;autoFocus="first-tabbable";restoreFocus=!0;scrollStrategy;closeOnNavigation=!0;closeOnDestroy=!0;closeOnOverlayDetachments=!0;disableAnimations=!1;providers;container;templateContext}let re=(()=>{class h extends e.lb{_elementRef=(0,d.WQX)(i.aKT);_focusTrapFactory=(0,d.WQX)(O.GX);_config;_interactivityChecker=(0,d.WQX)(O.Z7);_ngZone=(0,d.WQX)(i.SKi);_focusMonitor=(0,d.WQX)(f.FN);_renderer=(0,d.WQX)(i.sFG);_changeDetectorRef=(0,d.WQX)(v.gRc);_injector=(0,d.WQX)(d.zZn);_platform=(0,d.WQX)(u.O);_document=(0,d.WQX)(d.qQL);_portalOutlet;_focusTrapped=new T.B;_focusTrap=null;_elementFocusedBeforeDialogWasOpened=null;_closeInteractionType=null;_ariaLabelledByQueue=[];_isDestroyed=!1;constructor(){super(),this._config=(0,d.WQX)(W,{optional:!0})||new W,this._config.ariaLabelledBy&&this._ariaLabelledByQueue.push(this._config.ariaLabelledBy)}_addAriaLabelledBy(Ue){this._ariaLabelledByQueue.push(Ue),this._changeDetectorRef.markForCheck()}_removeAriaLabelledBy(Ue){const wt=this._ariaLabelledByQueue.indexOf(Ue);wt>-1&&(this._ariaLabelledByQueue.splice(wt,1),this._changeDetectorRef.markForCheck())}_contentAttached(){this._initializeFocusTrap(),this._captureInitialFocus()}_captureInitialFocus(){this._trapFocus()}ngOnDestroy(){this._focusTrapped.complete(),this._isDestroyed=!0,this._restoreFocus()}attachComponentPortal(Ue){this._portalOutlet.hasAttached();const wt=this._portalOutlet.attachComponentPortal(Ue);return this._contentAttached(),wt}attachTemplatePortal(Ue){this._portalOutlet.hasAttached();const wt=this._portalOutlet.attachTemplatePortal(Ue);return this._contentAttached(),wt}attachDomPortal=Ue=>{this._portalOutlet.hasAttached();const wt=this._portalOutlet.attachDomPortal(Ue);return this._contentAttached(),wt};_recaptureFocus(){this._containsFocus()||this._trapFocus()}_forceFocus(Ue,wt){this._interactivityChecker.isFocusable(Ue)||(Ue.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const pt=()=>{Pt(),gn(),Ue.removeAttribute("tabindex")},Pt=this._renderer.listen(Ue,"blur",pt),gn=this._renderer.listen(Ue,"mousedown",pt)})),Ue.focus(wt)}_focusByCssSelector(Ue,wt){let pt=this._elementRef.nativeElement.querySelector(Ue);pt&&this._forceFocus(pt,wt)}_trapFocus(Ue){this._isDestroyed||(0,i.mal)(()=>{const wt=this._elementRef.nativeElement;switch(this._config.autoFocus){case!1:case"dialog":this._containsFocus()||wt.focus(Ue);break;case!0:case"first-tabbable":this._focusTrap?.focusInitialElement(Ue)||this._focusDialogContainer(Ue);break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]',Ue);break;default:this._focusByCssSelector(this._config.autoFocus,Ue)}this._focusTrapped.next()},{injector:this._injector})}_restoreFocus(){const Ue=this._config.restoreFocus;let wt=null;if("string"==typeof Ue?wt=this._document.querySelector(Ue):"boolean"==typeof Ue?wt=Ue?this._elementFocusedBeforeDialogWasOpened:null:Ue&&(wt=Ue),this._config.restoreFocus&&wt&&"function"==typeof wt.focus){const pt=(0,L.vc)(),Pt=this._elementRef.nativeElement;(!pt||pt===this._document.body||pt===Pt||Pt.contains(pt))&&(this._focusMonitor?(this._focusMonitor.focusVia(wt,this._closeInteractionType),this._closeInteractionType=null):wt.focus())}this._focusTrap&&this._focusTrap.destroy()}_focusDialogContainer(Ue){this._elementRef.nativeElement.focus?.(Ue)}_containsFocus(){const Ue=this._elementRef.nativeElement,wt=(0,L.vc)();return Ue===wt||Ue.contains(wt)}_initializeFocusTrap(){this._platform.isBrowser&&(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._document&&(this._elementFocusedBeforeDialogWasOpened=(0,L.vc)()))}static \u0275fac=function(wt){return new(wt||h)};static \u0275cmp=i.VBU({type:h,selectors:[["cdk-dialog-container"]],viewQuery:function(wt,pt){if(1&wt&&i.GBs(e.I3,7),2&wt){let Pt;i.mGM(Pt=i.lsd())&&(pt._portalOutlet=Pt.first)}},hostAttrs:["tabindex","-1",1,"cdk-dialog-container"],hostVars:6,hostBindings:function(wt,pt){2&wt&&i.BMQ("id",pt._config.id||null)("role",pt._config.role)("aria-modal",pt._config.ariaModal)("aria-labelledby",pt._config.ariaLabel?null:pt._ariaLabelledByQueue[0])("aria-label",pt._config.ariaLabel)("aria-describedby",pt._config.ariaDescribedBy||null)},features:[i.Vt3],decls:1,vars:0,consts:[["cdkPortalOutlet",""]],template:function(wt,pt){1&wt&&i.DNE(0,j,0,0,"ng-template",0)},dependencies:[e.I3],styles:[".cdk-dialog-container{display:block;width:100%;height:100%;min-height:inherit;max-height:inherit}\n"],encapsulation:2})}return h})();class xe{overlayRef;config;componentInstance;componentRef;containerInstance;disableClose;closed=new T.B;backdropClick;keydownEvents;outsidePointerEvents;id;_detachSubscription;constructor(jt,Ue){this.overlayRef=jt,this.config=Ue,this.disableClose=Ue.disableClose,this.backdropClick=jt.backdropClick(),this.keydownEvents=jt.keydownEvents(),this.outsidePointerEvents=jt.outsidePointerEvents(),this.id=Ue.id,this.keydownEvents.subscribe(wt=>{wt.keyCode===C._f&&!this.disableClose&&!(0,B.rp)(wt)&&(wt.preventDefault(),this.close(void 0,{focusOrigin:"keyboard"}))}),this.backdropClick.subscribe(()=>{!this.disableClose&&this._canClose()?this.close(void 0,{focusOrigin:"mouse"}):this.containerInstance._recaptureFocus?.()}),this._detachSubscription=jt.detachments().subscribe(()=>{!1!==Ue.closeOnOverlayDetachments&&this.close()})}close(jt,Ue){if(this._canClose(jt)){const wt=this.closed;this.containerInstance._closeInteractionType=Ue?.focusOrigin||"program",this._detachSubscription.unsubscribe(),this.overlayRef.dispose(),wt.next(jt),wt.complete(),this.componentInstance=this.containerInstance=null}}updatePosition(){return this.overlayRef.updatePosition(),this}updateSize(jt="",Ue=""){return this.overlayRef.updateSize({width:jt,height:Ue}),this}addPanelClass(jt){return this.overlayRef.addPanelClass(jt),this}removePanelClass(jt){return this.overlayRef.removePanelClass(jt),this}_canClose(jt){const Ue=this.config;return!!this.containerInstance&&(!Ue.closePredicate||Ue.closePredicate(jt,Ue,this.componentInstance))}}const Ee=new d.nKC("DialogScrollStrategy",{providedIn:"root",factory:()=>{const h=(0,d.WQX)(d.zZn);return()=>(0,le.gA)(h)}}),V=new d.nKC("DialogData"),ce=new d.nKC("DefaultDialogConfig");function be(h){const jt=(0,d.vPA)(h),Ue=new i.bkB;return{valueSignal:jt,get value(){return jt()},change:Ue,ngOnDestroy(){Ue.complete()}}}let ne=(()=>{class h{_injector=(0,d.WQX)(d.zZn);_defaultOptions=(0,d.WQX)(ce,{optional:!0});_parentDialog=(0,d.WQX)(h,{optional:!0,skipSelf:!0});_overlayContainer=(0,d.WQX)(le.Sf);_idGenerator=(0,d.WQX)(Ce.g);_openDialogsAtThisLevel=[];_afterAllClosedAtThisLevel=new T.B;_afterOpenedAtThisLevel=new T.B;_ariaHiddenElements=new Map;_scrollStrategy=(0,d.WQX)(Ee);get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}afterAllClosed=(0,w.v)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,A.Z)(void 0)));constructor(){}open(Ue,wt){(wt={...this._defaultOptions||new W,...wt}).id=wt.id||this._idGenerator.getId("cdk-dialog-"),wt.id&&this.getDialogById(wt.id);const Pt=this._getOverlayConfig(wt),gn=(0,le.Y$)(this._injector,Pt),ei=new xe(gn,wt),vi=this._attachContainer(gn,ei,wt);if(ei.containerInstance=vi,!this.openDialogs.length){const Ni=this._overlayContainer.getContainerElement();vi._focusTrapped?vi._focusTrapped.pipe((0,Pe.s)(1)).subscribe(()=>{this._hideNonDialogContentFromAssistiveTechnology(Ni)}):this._hideNonDialogContentFromAssistiveTechnology(Ni)}return this._attachDialogContent(Ue,ei,vi,wt),this.openDialogs.push(ei),ei.closed.subscribe(()=>this._removeOpenDialog(ei,!0)),this.afterOpened.next(ei),ei}closeAll(){J(this.openDialogs,Ue=>Ue.close())}getDialogById(Ue){return this.openDialogs.find(wt=>wt.id===Ue)}ngOnDestroy(){J(this._openDialogsAtThisLevel,Ue=>{!1===Ue.config.closeOnDestroy&&this._removeOpenDialog(Ue,!1)}),J(this._openDialogsAtThisLevel,Ue=>Ue.close()),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete(),this._openDialogsAtThisLevel=[]}_getOverlayConfig(Ue){const wt=new le.rR({positionStrategy:Ue.positionStrategy||(0,le.uA)().centerHorizontally().centerVertically(),scrollStrategy:Ue.scrollStrategy||this._scrollStrategy(),panelClass:Ue.panelClass,hasBackdrop:Ue.hasBackdrop,direction:Ue.direction,minWidth:Ue.minWidth,minHeight:Ue.minHeight,maxWidth:Ue.maxWidth,maxHeight:Ue.maxHeight,width:Ue.width,height:Ue.height,disposeOnNavigation:Ue.closeOnNavigation,disableAnimations:Ue.disableAnimations});return Ue.backdropClass&&(wt.backdropClass=Ue.backdropClass),wt}_attachContainer(Ue,wt,pt){const Pt=pt.injector||pt.viewContainerRef?.injector,gn=[{provide:W,useValue:pt},{provide:xe,useValue:wt},{provide:le.yY,useValue:Ue}];let ei;pt.container?"function"==typeof pt.container?ei=pt.container:(ei=pt.container.type,gn.push(...pt.container.providers(pt))):ei=re;const vi=new e.A8(ei,pt.viewContainerRef,d.zZn.create({parent:Pt||this._injector,providers:gn}));return Ue.attach(vi).instance}_attachDialogContent(Ue,wt,pt,Pt){if(Ue instanceof i.C4Q){const gn=this._createInjector(Pt,wt,pt,void 0);let ei={$implicit:Pt.data,dialogRef:wt};Pt.templateContext&&(ei={...ei,..."function"==typeof Pt.templateContext?Pt.templateContext():Pt.templateContext}),pt.attachTemplatePortal(new e.VA(Ue,null,ei,gn))}else{const gn=this._createInjector(Pt,wt,pt,this._injector),ei=pt.attachComponentPortal(new e.A8(Ue,Pt.viewContainerRef,gn));wt.componentRef=ei,wt.componentInstance=ei.instance}}_createInjector(Ue,wt,pt,Pt){const gn=Ue.injector||Ue.viewContainerRef?.injector,ei=[{provide:V,useValue:Ue.data},{provide:xe,useValue:wt}];return Ue.providers&&("function"==typeof Ue.providers?ei.push(...Ue.providers(wt,Ue,pt)):ei.push(...Ue.providers)),Ue.direction&&(!gn||!gn.get(Ae.dS,null,{optional:!0}))&&ei.push({provide:Ae.dS,useValue:be(Ue.direction)}),d.zZn.create({parent:gn||Pt,providers:ei})}_removeOpenDialog(Ue,wt){const pt=this.openDialogs.indexOf(Ue);pt>-1&&(this.openDialogs.splice(pt,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((Pt,gn)=>{Pt?gn.setAttribute("aria-hidden",Pt):gn.removeAttribute("aria-hidden")}),this._ariaHiddenElements.clear(),wt&&this._getAfterAllClosed().next()))}_hideNonDialogContentFromAssistiveTechnology(Ue){if(Ue.parentElement){const wt=Ue.parentElement.children;for(let pt=wt.length-1;pt>-1;pt--){const Pt=wt[pt];Pt!==Ue&&"SCRIPT"!==Pt.nodeName&&"STYLE"!==Pt.nodeName&&!Pt.hasAttribute("aria-live")&&(this._ariaHiddenElements.set(Pt,Pt.getAttribute("aria-hidden")),Pt.setAttribute("aria-hidden","true"))}}}_getAfterAllClosed(){const Ue=this._parentDialog;return Ue?Ue._getAfterAllClosed():this._afterAllClosedAtThisLevel}static \u0275fac=function(wt){return new(wt||h)};static \u0275prov=d.jDH({token:h,factory:h.\u0275fac,providedIn:"root"})}return h})();function J(h,jt){let Ue=h.length;for(;Ue--;)jt(h[Ue])}let De=(()=>{class h{static \u0275fac=function(wt){return new(wt||h)};static \u0275mod=i.$C({type:h});static \u0275inj=d.G2t({providers:[ne],imports:[le.z_,e.jc,O.Pd,e.jc]})}return h})();var Re=l(7847),Xe=l(1804),_e=l(7786),he=l(5964),lt=(l(5718),l(2466));function Le(h,jt){}class te{viewContainerRef;injector;id;role="dialog";panelClass="";hasBackdrop=!0;backdropClass="";disableClose=!1;closePredicate;width="";height="";minWidth;minHeight;maxWidth;maxHeight;position;data=null;direction;ariaDescribedBy=null;ariaLabelledBy=null;ariaLabel=null;ariaModal=!1;autoFocus="first-tabbable";restoreFocus=!0;delayFocusTrap=!0;scrollStrategy;closeOnNavigation=!0;enterAnimationDuration;exitAnimationDuration}const ie="mdc-dialog--open",P="mdc-dialog--opening",F="mdc-dialog--closing";let $=(()=>{class h extends re{_animationStateChanged=new i.bkB;_animationsEnabled=!(0,Xe.Rc)();_actionSectionCount=0;_hostElement=this._elementRef.nativeElement;_enterAnimationDuration=this._animationsEnabled?Vt(this._config.enterAnimationDuration)??150:0;_exitAnimationDuration=this._animationsEnabled?Vt(this._config.exitAnimationDuration)??75:0;_animationTimer=null;_contentAttached(){super._contentAttached(),this._startOpenAnimation()}_startOpenAnimation(){this._animationStateChanged.emit({state:"opening",totalTime:this._enterAnimationDuration}),this._animationsEnabled?(this._hostElement.style.setProperty(Ke,`${this._enterAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(P,ie)),this._waitForAnimationToComplete(this._enterAnimationDuration,this._finishDialogOpen)):(this._hostElement.classList.add(ie),Promise.resolve().then(()=>this._finishDialogOpen()))}_startExitAnimation(){this._animationStateChanged.emit({state:"closing",totalTime:this._exitAnimationDuration}),this._hostElement.classList.remove(ie),this._animationsEnabled?(this._hostElement.style.setProperty(Ke,`${this._exitAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(F)),this._waitForAnimationToComplete(this._exitAnimationDuration,this._finishDialogClose)):Promise.resolve().then(()=>this._finishDialogClose())}_updateActionSectionCount(Ue){this._actionSectionCount+=Ue,this._changeDetectorRef.markForCheck()}_finishDialogOpen=()=>{this._clearAnimationClasses(),this._openAnimationDone(this._enterAnimationDuration)};_finishDialogClose=()=>{this._clearAnimationClasses(),this._animationStateChanged.emit({state:"closed",totalTime:this._exitAnimationDuration})};_clearAnimationClasses(){this._hostElement.classList.remove(P,F)}_waitForAnimationToComplete(Ue,wt){null!==this._animationTimer&&clearTimeout(this._animationTimer),this._animationTimer=setTimeout(wt,Ue)}_requestAnimationFrame(Ue){this._ngZone.runOutsideAngular(()=>{"function"==typeof requestAnimationFrame?requestAnimationFrame(Ue):Ue()})}_captureInitialFocus(){this._config.delayFocusTrap||this._trapFocus()}_openAnimationDone(Ue){this._config.delayFocusTrap&&this._trapFocus(),this._animationStateChanged.next({state:"opened",totalTime:Ue})}ngOnDestroy(){super.ngOnDestroy(),null!==this._animationTimer&&clearTimeout(this._animationTimer)}attachComponentPortal(Ue){const wt=super.attachComponentPortal(Ue);return wt.location.nativeElement.classList.add("mat-mdc-dialog-component-host"),wt}static \u0275fac=(()=>{let Ue;return function(pt){return(Ue||(Ue=i.xGo(h)))(pt||h)}})();static \u0275cmp=i.VBU({type:h,selectors:[["mat-dialog-container"]],hostAttrs:["tabindex","-1",1,"mat-mdc-dialog-container","mdc-dialog"],hostVars:10,hostBindings:function(wt,pt){2&wt&&(i.Avn("id",pt._config.id),i.BMQ("aria-modal",pt._config.ariaModal)("role",pt._config.role)("aria-labelledby",pt._config.ariaLabel?null:pt._ariaLabelledByQueue[0])("aria-label",pt._config.ariaLabel)("aria-describedby",pt._config.ariaDescribedBy||null),i.AVh("_mat-animation-noopable",!pt._animationsEnabled)("mat-mdc-dialog-container-with-actions",pt._actionSectionCount>0))},features:[i.Vt3],decls:3,vars:0,consts:[[1,"mat-mdc-dialog-inner-container","mdc-dialog__container"],[1,"mat-mdc-dialog-surface","mdc-dialog__surface"],["cdkPortalOutlet",""]],template:function(wt,pt){1&wt&&(i.j41(0,"div",0)(1,"div",1),i.DNE(2,Le,0,0,"ng-template",2),i.k0s()())},dependencies:[e.I3],styles:['.mat-mdc-dialog-container{width:100%;height:100%;display:block;box-sizing:border-box;max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit;outline:0}.cdk-overlay-pane.mat-mdc-dialog-panel{max-width:var(--mat-dialog-container-max-width, 560px);min-width:var(--mat-dialog-container-min-width, 280px)}@media(max-width: 599px){.cdk-overlay-pane.mat-mdc-dialog-panel{max-width:var(--mat-dialog-container-small-max-width, calc(100vw - 32px))}}.mat-mdc-dialog-inner-container{display:flex;flex-direction:row;align-items:center;justify-content:space-around;box-sizing:border-box;height:100%;opacity:0;transition:opacity linear var(--mat-dialog-transition-duration, 0ms);max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit}.mdc-dialog--closing .mat-mdc-dialog-inner-container{transition:opacity 75ms linear;transform:none}.mdc-dialog--open .mat-mdc-dialog-inner-container{opacity:1}._mat-animation-noopable .mat-mdc-dialog-inner-container{transition:none}.mat-mdc-dialog-surface{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;box-sizing:border-box;width:100%;height:100%;position:relative;overflow-y:auto;outline:0;transform:scale(0.8);transition:transform var(--mat-dialog-transition-duration, 0ms) cubic-bezier(0, 0, 0.2, 1);max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit;box-shadow:var(--mat-dialog-container-elevation-shadow, none);border-radius:var(--mat-dialog-container-shape, var(--mat-sys-corner-extra-large, 4px));background-color:var(--mat-dialog-container-color, var(--mat-sys-surface, white))}[dir=rtl] .mat-mdc-dialog-surface{text-align:right}.mdc-dialog--open .mat-mdc-dialog-surface,.mdc-dialog--closing .mat-mdc-dialog-surface{transform:none}._mat-animation-noopable .mat-mdc-dialog-surface{transition:none}.mat-mdc-dialog-surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:2px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}.mat-mdc-dialog-title{display:block;position:relative;flex-shrink:0;box-sizing:border-box;margin:0 0 1px;padding:var(--mat-dialog-headline-padding, 6px 24px 13px)}.mat-mdc-dialog-title::before{display:inline-block;width:0;height:40px;content:"";vertical-align:0}[dir=rtl] .mat-mdc-dialog-title{text-align:right}.mat-mdc-dialog-container .mat-mdc-dialog-title{color:var(--mat-dialog-subhead-color, var(--mat-sys-on-surface, rgba(0, 0, 0, 0.87)));font-family:var(--mat-dialog-subhead-font, var(--mat-sys-headline-small-font, inherit));line-height:var(--mat-dialog-subhead-line-height, var(--mat-sys-headline-small-line-height, 1.5rem));font-size:var(--mat-dialog-subhead-size, var(--mat-sys-headline-small-size, 1rem));font-weight:var(--mat-dialog-subhead-weight, var(--mat-sys-headline-small-weight, 400));letter-spacing:var(--mat-dialog-subhead-tracking, var(--mat-sys-headline-small-tracking, 0.03125em))}.mat-mdc-dialog-content{display:block;flex-grow:1;box-sizing:border-box;margin:0;overflow:auto;max-height:65vh}.mat-mdc-dialog-content>:first-child{margin-top:0}.mat-mdc-dialog-content>:last-child{margin-bottom:0}.mat-mdc-dialog-container .mat-mdc-dialog-content{color:var(--mat-dialog-supporting-text-color, var(--mat-sys-on-surface-variant, rgba(0, 0, 0, 0.6)));font-family:var(--mat-dialog-supporting-text-font, var(--mat-sys-body-medium-font, inherit));line-height:var(--mat-dialog-supporting-text-line-height, var(--mat-sys-body-medium-line-height, 1.5rem));font-size:var(--mat-dialog-supporting-text-size, var(--mat-sys-body-medium-size, 1rem));font-weight:var(--mat-dialog-supporting-text-weight, var(--mat-sys-body-medium-weight, 400));letter-spacing:var(--mat-dialog-supporting-text-tracking, var(--mat-sys-body-medium-tracking, 0.03125em))}.mat-mdc-dialog-container .mat-mdc-dialog-content{padding:var(--mat-dialog-content-padding, 20px 24px)}.mat-mdc-dialog-container-with-actions .mat-mdc-dialog-content{padding:var(--mat-dialog-with-actions-content-padding, 20px 24px 0)}.mat-mdc-dialog-container .mat-mdc-dialog-title+.mat-mdc-dialog-content{padding-top:0}.mat-mdc-dialog-actions{display:flex;position:relative;flex-shrink:0;flex-wrap:wrap;align-items:center;box-sizing:border-box;min-height:52px;margin:0;border-top:1px solid rgba(0,0,0,0);padding:var(--mat-dialog-actions-padding, 16px 24px);justify-content:var(--mat-dialog-actions-alignment, flex-end)}@media(forced-colors: active){.mat-mdc-dialog-actions{border-top-color:CanvasText}}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-start,.mat-mdc-dialog-actions[align=start]{justify-content:start}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-center,.mat-mdc-dialog-actions[align=center]{justify-content:center}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-end,.mat-mdc-dialog-actions[align=end]{justify-content:flex-end}.mat-mdc-dialog-actions .mat-button-base+.mat-button-base,.mat-mdc-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-mdc-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-mdc-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}.mat-mdc-dialog-component-host{display:contents}\n'],encapsulation:2})}return h})();const Ke="--mat-dialog-transition-duration";function Vt(h){return null==h?null:"number"==typeof h?h:h.endsWith("ms")?(0,Re.OE)(h.substring(0,h.length-2)):h.endsWith("s")?1e3*(0,Re.OE)(h.substring(0,h.length-1)):"0"===h?0:null}var St=function(h){return h[h.OPEN=0]="OPEN",h[h.CLOSING=1]="CLOSING",h[h.CLOSED=2]="CLOSED",h}(St||{});class ot{_ref;_config;_containerInstance;componentInstance;componentRef;disableClose;id;_afterOpened=new T.B;_beforeClosed=new T.B;_result;_closeFallbackTimeout;_state=St.OPEN;_closeInteractionType;constructor(jt,Ue,wt){this._ref=jt,this._config=Ue,this._containerInstance=wt,this.disableClose=Ue.disableClose,this.id=jt.id,jt.addPanelClass("mat-mdc-dialog-panel"),wt._animationStateChanged.pipe((0,he.p)(pt=>"opened"===pt.state),(0,Pe.s)(1)).subscribe(()=>{this._afterOpened.next(),this._afterOpened.complete()}),wt._animationStateChanged.pipe((0,he.p)(pt=>"closed"===pt.state),(0,Pe.s)(1)).subscribe(()=>{clearTimeout(this._closeFallbackTimeout),this._finishDialogClose()}),jt.overlayRef.detachments().subscribe(()=>{this._beforeClosed.next(this._result),this._beforeClosed.complete(),this._finishDialogClose()}),(0,_e.h)(this.backdropClick(),this.keydownEvents().pipe((0,he.p)(pt=>pt.keyCode===C._f&&!this.disableClose&&!(0,B.rp)(pt)))).subscribe(pt=>{this.disableClose||(pt.preventDefault(),nt(this,"keydown"===pt.type?"keyboard":"mouse"))})}close(jt){const Ue=this._config.closePredicate;Ue&&!Ue(jt,this._config,this.componentInstance)||(this._result=jt,this._containerInstance._animationStateChanged.pipe((0,he.p)(wt=>"closing"===wt.state),(0,Pe.s)(1)).subscribe(wt=>{this._beforeClosed.next(jt),this._beforeClosed.complete(),this._ref.overlayRef.detachBackdrop(),this._closeFallbackTimeout=setTimeout(()=>this._finishDialogClose(),wt.totalTime+100)}),this._state=St.CLOSING,this._containerInstance._startExitAnimation())}afterOpened(){return this._afterOpened}afterClosed(){return this._ref.closed}beforeClosed(){return this._beforeClosed}backdropClick(){return this._ref.backdropClick}keydownEvents(){return this._ref.keydownEvents}updatePosition(jt){let Ue=this._ref.config.positionStrategy;return jt&&(jt.left||jt.right)?jt.left?Ue.left(jt.left):Ue.right(jt.right):Ue.centerHorizontally(),jt&&(jt.top||jt.bottom)?jt.top?Ue.top(jt.top):Ue.bottom(jt.bottom):Ue.centerVertically(),this._ref.updatePosition(),this}updateSize(jt="",Ue=""){return this._ref.updateSize(jt,Ue),this}addPanelClass(jt){return this._ref.addPanelClass(jt),this}removePanelClass(jt){return this._ref.removePanelClass(jt),this}getState(){return this._state}_finishDialogClose(){this._state=St.CLOSED,this._ref.close(this._result,{focusOrigin:this._closeInteractionType}),this.componentInstance=null}}function nt(h,jt,Ue){return h._closeInteractionType=jt,h.close(Ue)}const ht=new d.nKC("MatMdcDialogData"),oe=new d.nKC("mat-mdc-dialog-default-options"),Ye=new d.nKC("mat-mdc-dialog-scroll-strategy",{providedIn:"root",factory:()=>{const h=(0,d.WQX)(d.zZn);return()=>(0,le.gA)(h)}});let fe=(()=>{class h{_defaultOptions=(0,d.WQX)(oe,{optional:!0});_scrollStrategy=(0,d.WQX)(Ye);_parentDialog=(0,d.WQX)(h,{optional:!0,skipSelf:!0});_idGenerator=(0,d.WQX)(Ce.g);_injector=(0,d.WQX)(d.zZn);_dialog=(0,d.WQX)(ne);_animationsDisabled=(0,Xe.Rc)();_openDialogsAtThisLevel=[];_afterAllClosedAtThisLevel=new T.B;_afterOpenedAtThisLevel=new T.B;dialogConfigClass=te;_dialogRefConstructor;_dialogContainerType;_dialogDataToken;get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}_getAfterAllClosed(){const Ue=this._parentDialog;return Ue?Ue._getAfterAllClosed():this._afterAllClosedAtThisLevel}afterAllClosed=(0,w.v)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,A.Z)(void 0)));constructor(){this._dialogRefConstructor=ot,this._dialogContainerType=$,this._dialogDataToken=ht}open(Ue,wt){let pt;(wt={...this._defaultOptions||new te,...wt}).id=wt.id||this._idGenerator.getId("mat-mdc-dialog-"),wt.scrollStrategy=wt.scrollStrategy||this._scrollStrategy();const Pt=this._dialog.open(Ue,{...wt,positionStrategy:(0,le.uA)(this._injector).centerHorizontally().centerVertically(),disableClose:!0,closePredicate:void 0,closeOnDestroy:!1,closeOnOverlayDetachments:!1,disableAnimations:this._animationsDisabled||"0"===wt.enterAnimationDuration?.toLocaleString()||"0"===wt.exitAnimationDuration?.toString(),container:{type:this._dialogContainerType,providers:()=>[{provide:this.dialogConfigClass,useValue:wt},{provide:W,useValue:wt}]},templateContext:()=>({dialogRef:pt}),providers:(gn,ei,vi)=>(pt=new this._dialogRefConstructor(gn,wt,vi),pt.updatePosition(wt?.position),[{provide:this._dialogContainerType,useValue:vi},{provide:this._dialogDataToken,useValue:ei.data},{provide:this._dialogRefConstructor,useValue:pt}])});return pt.componentRef=Pt.componentRef,pt.componentInstance=Pt.componentInstance,this.openDialogs.push(pt),this.afterOpened.next(pt),pt.afterClosed().subscribe(()=>{const gn=this.openDialogs.indexOf(pt);gn>-1&&(this.openDialogs.splice(gn,1),this.openDialogs.length||this._getAfterAllClosed().next())}),pt}closeAll(){this._closeDialogs(this.openDialogs)}getDialogById(Ue){return this.openDialogs.find(wt=>wt.id===Ue)}ngOnDestroy(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}_closeDialogs(Ue){let wt=Ue.length;for(;wt--;)Ue[wt].close()}static \u0275fac=function(wt){return new(wt||h)};static \u0275prov=d.jDH({token:h,factory:h.\u0275fac,providedIn:"root"})}return h})(),Qe=(()=>{class h{dialogRef=(0,d.WQX)(ot,{optional:!0});_elementRef=(0,d.WQX)(i.aKT);_dialog=(0,d.WQX)(fe);ariaLabel;type="button";dialogResult;_matDialogClose;constructor(){}ngOnInit(){this.dialogRef||(this.dialogRef=function Ft(h,jt){let Ue=h.nativeElement.parentElement;for(;Ue&&!Ue.classList.contains("mat-mdc-dialog-container");)Ue=Ue.parentElement;return Ue?jt.find(wt=>wt.id===Ue.id):null}(this._elementRef,this._dialog.openDialogs))}ngOnChanges(Ue){const wt=Ue._matDialogClose||Ue._matDialogCloseResult;wt&&(this.dialogResult=wt.currentValue)}_onButtonClick(Ue){nt(this.dialogRef,0===Ue.screenX&&0===Ue.screenY?"keyboard":"mouse",this.dialogResult)}static \u0275fac=function(wt){return new(wt||h)};static \u0275dir=i.FsC({type:h,selectors:[["","mat-dialog-close",""],["","matDialogClose",""]],hostVars:2,hostBindings:function(wt,pt){1&wt&&i.bIt("click",function(gn){return pt._onButtonClick(gn)}),2&wt&&i.BMQ("aria-label",pt.ariaLabel||null)("type",pt.type)},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],type:"type",dialogResult:[0,"mat-dialog-close","dialogResult"],_matDialogClose:[0,"matDialogClose","_matDialogClose"]},exportAs:["matDialogClose"],features:[i.OA$]})}return h})();let Qn=(()=>{class h{static \u0275fac=function(wt){return new(wt||h)};static \u0275mod=i.$C({type:h});static \u0275inj=d.G2t({providers:[fe],imports:[De,le.z_,e.jc,lt.y,lt.y]})}return h})()},1997(Zt,pe,l){"use strict";l.d(pe,{q:()=>w,w:()=>e});var i=l(2615),d=l(3664),v=l(4085),T=l(2466);let w=(()=>{class O{get vertical(){return this._vertical}set vertical(u){this._vertical=(0,v.he)(u)}_vertical=!1;get inset(){return this._inset}set inset(u){this._inset=(0,v.he)(u)}_inset=!1;static \u0275fac=function(L){return new(L||O)};static \u0275cmp=d.VBU({type:O,selectors:[["mat-divider"]],hostAttrs:["role","separator",1,"mat-divider"],hostVars:7,hostBindings:function(L,C){2&L&&(d.BMQ("aria-orientation",C.vertical?"vertical":"horizontal"),d.AVh("mat-divider-vertical",C.vertical)("mat-divider-horizontal",!C.vertical)("mat-divider-inset",C.inset))},inputs:{vertical:"vertical",inset:"inset"},decls:0,vars:0,template:function(L,C){},styles:[".mat-divider{display:block;margin:0;border-top-style:solid;border-top-color:var(--mat-divider-color, var(--mat-sys-outline-variant));border-top-width:var(--mat-divider-width, 1px)}.mat-divider.mat-divider-vertical{border-top:0;border-right-style:solid;border-right-color:var(--mat-divider-color, var(--mat-sys-outline-variant));border-right-width:var(--mat-divider-width, 1px)}.mat-divider.mat-divider-inset{margin-left:80px}[dir=rtl] .mat-divider.mat-divider-inset{margin-left:auto;margin-right:80px}\n"],encapsulation:2,changeDetection:0})}return O})(),e=(()=>{class O{static \u0275fac=function(L){return new(L||O)};static \u0275mod=d.$C({type:O});static \u0275inj=i.G2t({imports:[T.y,T.y]})}return O})()},2709(Zt,pe,l){"use strict";l.d(pe,{e:()=>T});var d=l(2615);let T=(()=>{class w{isErrorState(O,f){return!!(O&&O.invalid&&(O.touched||f&&f.submitted))}static \u0275fac=function(f){return new(f||w)};static \u0275prov=d.jDH({token:w,factory:w.\u0275fac,providedIn:"root"})}return w})()},9336(Zt,pe,l){"use strict";l.d(pe,{X:()=>i});class i{_defaultMatcher;ngControl;_parentFormGroup;_parentForm;_stateChanges;errorState=!1;matcher;constructor(v,T,w,e,O){this._defaultMatcher=v,this.ngControl=T,this._parentFormGroup=w,this._parentForm=e,this._stateChanges=O}updateErrorState(){const v=this.errorState,T=this._parentFormGroup||this._parentForm,w=this.matcher||this._defaultMatcher,e=this.ngControl?this.ngControl.control:null,O=w?.isErrorState(e,T)??!1;O!==v&&(this.errorState=O,this._stateChanges.next())}}},9454(Zt,pe,l){"use strict";l.d(pe,{BS:()=>Ke,MY:()=>Vt,GK:()=>P,Q6:()=>H,Z2:()=>ve,WN:()=>$});var i=l(3664),d=l(2615),v=l(7705),T=l(1413),w=l(8359),e=l(9726),O=l(8689);const f=new d.nKC("CdkAccordion");let u=(()=>{class nt{_stateChanges=new T.B;_openCloseAllActions=new T.B;id=(0,d.WQX)(e.g).getId("cdk-accordion-");multi=!1;openAll(){this.multi&&this._openCloseAllActions.next(!0)}closeAll(){this._openCloseAllActions.next(!1)}ngOnChanges(oe){this._stateChanges.next(oe)}ngOnDestroy(){this._stateChanges.complete(),this._openCloseAllActions.complete()}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275dir=i.FsC({type:nt,selectors:[["cdk-accordion"],["","cdkAccordion",""]],inputs:{multi:[2,"multi","multi",v.L39]},exportAs:["cdkAccordion"],features:[i.Jv_([{provide:f,useExisting:nt}]),i.OA$]})}return nt})(),L=(()=>{class nt{accordion=(0,d.WQX)(f,{optional:!0,skipSelf:!0});_changeDetectorRef=(0,d.WQX)(v.gRc);_expansionDispatcher=(0,d.WQX)(O.z);_openCloseAllSubscription=w.yU.EMPTY;closed=new i.bkB;opened=new i.bkB;destroyed=new i.bkB;expandedChange=new i.bkB;id=(0,d.WQX)(e.g).getId("cdk-accordion-child-");get expanded(){return this._expanded}set expanded(oe){this._expanded!==oe&&(this._expanded=oe,this.expandedChange.emit(oe),oe?(this.opened.emit(),this._expansionDispatcher.notify(this.id,this.accordion?this.accordion.id:this.id)):this.closed.emit(),this._changeDetectorRef.markForCheck())}_expanded=!1;get disabled(){return this._disabled()}set disabled(oe){this._disabled.set(oe)}_disabled=(0,d.vPA)(!1);_removeUniqueSelectionListener=()=>{};constructor(){}ngOnInit(){this._removeUniqueSelectionListener=this._expansionDispatcher.listen((oe,Ye)=>{this.accordion&&!this.accordion.multi&&this.accordion.id===Ye&&this.id!==oe&&(this.expanded=!1)}),this.accordion&&(this._openCloseAllSubscription=this._subscribeToOpenCloseAllActions())}ngOnDestroy(){this.opened.complete(),this.closed.complete(),this.destroyed.emit(),this.destroyed.complete(),this._removeUniqueSelectionListener(),this._openCloseAllSubscription.unsubscribe()}toggle(){this.disabled||(this.expanded=!this.expanded)}close(){this.disabled||(this.expanded=!1)}open(){this.disabled||(this.expanded=!0)}_subscribeToOpenCloseAllActions(){return this.accordion._openCloseAllActions.subscribe(oe=>{this.disabled||(this.expanded=oe)})}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275dir=i.FsC({type:nt,selectors:[["cdk-accordion-item"],["","cdkAccordionItem",""]],inputs:{expanded:[2,"expanded","expanded",v.L39],disabled:[2,"disabled","disabled",v.L39]},outputs:{closed:"closed",opened:"opened",destroyed:"destroyed",expandedChange:"expandedChange"},exportAs:["cdkAccordionItem"],features:[i.Jv_([{provide:f,useValue:void 0}])]})}return nt})(),C=(()=>{class nt{static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275mod=i.$C({type:nt});static \u0275inj=d.G2t({})}return nt})();var B=l(6939),A=l(6838),Pe=l(4123),le=l(9172),Ce=l(5964),Ae=l(6697),j=l(438),W=l(7336),G=l(983),re=l(7786),xe=l(1804),Ee=l(8968),V=l(2046),ce=l(2466);const ne=["body"],J=["bodyWrapper"],De=[[["mat-expansion-panel-header"]],"*",[["mat-action-row"]]],Re=["mat-expansion-panel-header","*","mat-action-row"];function Xe(nt,ht){}const _e=[[["mat-panel-title"]],[["mat-panel-description"]],"*"],he=["mat-panel-title","mat-panel-description","*"];function Dt(nt,ht){1&nt&&(i.rj2(0,"span",1),d.qSk(),i.rj2(1,"svg",2),i.Hgh(2,"path",3),i.eux()())}const lt=new d.nKC("MAT_ACCORDION"),Le=new d.nKC("MAT_EXPANSION_PANEL");let te=(()=>{class nt{_template=(0,d.WQX)(i.C4Q);_expansionPanel=(0,d.WQX)(Le,{optional:!0});constructor(){}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275dir=i.FsC({type:nt,selectors:[["ng-template","matExpansionPanelContent",""]]})}return nt})();const ie=new d.nKC("MAT_EXPANSION_PANEL_DEFAULT_OPTIONS");let P=(()=>{class nt extends L{_viewContainerRef=(0,d.WQX)(i.c1b);_animationsDisabled=(0,xe.Rc)();_document=(0,d.WQX)(d.qQL);_ngZone=(0,d.WQX)(i.SKi);_elementRef=(0,d.WQX)(i.aKT);_renderer=(0,d.WQX)(i.sFG);_cleanupTransitionEnd;get hideToggle(){return this._hideToggle||this.accordion&&this.accordion.hideToggle}set hideToggle(oe){this._hideToggle=oe}_hideToggle=!1;get togglePosition(){return this._togglePosition||this.accordion&&this.accordion.togglePosition}set togglePosition(oe){this._togglePosition=oe}_togglePosition;afterExpand=new i.bkB;afterCollapse=new i.bkB;_inputChanges=new T.B;accordion=(0,d.WQX)(lt,{optional:!0,skipSelf:!0});_lazyContent;_body;_bodyWrapper;_portal;_headerId=(0,d.WQX)(e.g).getId("mat-expansion-panel-header-");constructor(){super();const oe=(0,d.WQX)(ie,{optional:!0});this._expansionDispatcher=(0,d.WQX)(O.z),oe&&(this.hideToggle=oe.hideToggle)}_hasSpacing(){return!!this.accordion&&this.expanded&&"default"===this.accordion.displayMode}_getExpandedState(){return this.expanded?"expanded":"collapsed"}toggle(){this.expanded=!this.expanded}close(){this.expanded=!1}open(){this.expanded=!0}ngAfterContentInit(){this._lazyContent&&this._lazyContent._expansionPanel===this&&this.opened.pipe((0,le.Z)(null),(0,Ce.p)(()=>this.expanded&&!this._portal),(0,Ae.s)(1)).subscribe(()=>{this._portal=new B.VA(this._lazyContent._template,this._viewContainerRef)}),this._setupAnimationEvents()}ngOnChanges(oe){this._inputChanges.next(oe)}ngOnDestroy(){super.ngOnDestroy(),this._cleanupTransitionEnd?.(),this._inputChanges.complete()}_containsFocus(){if(this._body){const oe=this._document.activeElement,Ye=this._body.nativeElement;return oe===Ye||Ye.contains(oe)}return!1}_transitionEndListener=({target:oe,propertyName:Ye})=>{oe===this._bodyWrapper?.nativeElement&&"grid-template-rows"===Ye&&this._ngZone.run(()=>{this.expanded?this.afterExpand.emit():this.afterCollapse.emit()})};_setupAnimationEvents(){this._ngZone.runOutsideAngular(()=>{this._animationsDisabled?(this.opened.subscribe(()=>this._ngZone.run(()=>this.afterExpand.emit())),this.closed.subscribe(()=>this._ngZone.run(()=>this.afterCollapse.emit()))):setTimeout(()=>{const oe=this._elementRef.nativeElement;this._cleanupTransitionEnd=this._renderer.listen(oe,"transitionend",this._transitionEndListener),oe.classList.add("mat-expansion-panel-animations-enabled")},200)})}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275cmp=i.VBU({type:nt,selectors:[["mat-expansion-panel"]],contentQueries:function(Ye,fe,Qe){if(1&Ye&&i.wni(Qe,te,5),2&Ye){let gt;i.mGM(gt=i.lsd())&&(fe._lazyContent=gt.first)}},viewQuery:function(Ye,fe){if(1&Ye&&(i.GBs(ne,5),i.GBs(J,5)),2&Ye){let Qe;i.mGM(Qe=i.lsd())&&(fe._body=Qe.first),i.mGM(Qe=i.lsd())&&(fe._bodyWrapper=Qe.first)}},hostAttrs:[1,"mat-expansion-panel"],hostVars:4,hostBindings:function(Ye,fe){2&Ye&&i.AVh("mat-expanded",fe.expanded)("mat-expansion-panel-spacing",fe._hasSpacing())},inputs:{hideToggle:[2,"hideToggle","hideToggle",v.L39],togglePosition:"togglePosition"},outputs:{afterExpand:"afterExpand",afterCollapse:"afterCollapse"},exportAs:["matExpansionPanel"],features:[i.Jv_([{provide:lt,useValue:void 0},{provide:Le,useExisting:nt}]),i.Vt3,i.OA$],ngContentSelectors:Re,decls:9,vars:4,consts:[["bodyWrapper",""],["body",""],[1,"mat-expansion-panel-content-wrapper"],["role","region",1,"mat-expansion-panel-content",3,"id"],[1,"mat-expansion-panel-body"],[3,"cdkPortalOutlet"]],template:function(Ye,fe){1&Ye&&(i.NAR(De),i.SdG(0),i.j41(1,"div",2,0)(3,"div",3,1)(5,"div",4),i.SdG(6,1),i.DNE(7,Xe,0,0,"ng-template",5),i.k0s(),i.SdG(8,2),i.k0s()()),2&Ye&&(i.R7$(),i.BMQ("inert",fe.expanded?null:""),i.R7$(2),i.Y8G("id",fe.id),i.BMQ("aria-labelledby",fe._headerId),i.R7$(4),i.Y8G("cdkPortalOutlet",fe._portal))},dependencies:[B.I3],styles:[".mat-expansion-panel{box-sizing:content-box;display:block;margin:0;overflow:hidden;position:relative;background:var(--mat-expansion-container-background-color, var(--mat-sys-surface));color:var(--mat-expansion-container-text-color, var(--mat-sys-on-surface));border-radius:var(--mat-expansion-container-shape, 12px)}.mat-expansion-panel.mat-expansion-panel-animations-enabled{transition:margin 225ms cubic-bezier(0.4, 0, 0.2, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:var(--mat-expansion-container-elevation-shadow, 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12))}.mat-accordion .mat-expansion-panel:not(.mat-expanded),.mat-accordion .mat-expansion-panel:not(.mat-expansion-panel-spacing){border-radius:0}.mat-accordion .mat-expansion-panel:first-of-type{border-top-right-radius:var(--mat-expansion-container-shape, 12px);border-top-left-radius:var(--mat-expansion-container-shape, 12px)}.mat-accordion .mat-expansion-panel:last-of-type{border-bottom-right-radius:var(--mat-expansion-container-shape, 12px);border-bottom-left-radius:var(--mat-expansion-container-shape, 12px)}@media(forced-colors: active){.mat-expansion-panel{outline:solid 1px}}.mat-expansion-panel-content-wrapper{display:grid;grid-template-rows:0fr;grid-template-columns:100%}.mat-expansion-panel-animations-enabled .mat-expansion-panel-content-wrapper{transition:grid-template-rows 225ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-expansion-panel.mat-expanded>.mat-expansion-panel-content-wrapper{grid-template-rows:1fr}@supports not (grid-template-rows: 0fr){.mat-expansion-panel-content-wrapper{height:0}.mat-expansion-panel.mat-expanded>.mat-expansion-panel-content-wrapper{height:auto}}.mat-expansion-panel-content{display:flex;flex-direction:column;overflow:visible;min-height:0;visibility:hidden;font-family:var(--mat-expansion-container-text-font, var(--mat-sys-body-large-font));font-size:var(--mat-expansion-container-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-expansion-container-text-weight, var(--mat-sys-body-large-weight));line-height:var(--mat-expansion-container-text-line-height, var(--mat-sys-body-large-line-height));letter-spacing:var(--mat-expansion-container-text-tracking, var(--mat-sys-body-large-tracking))}.mat-expansion-panel-animations-enabled .mat-expansion-panel-content{transition:visibility 190ms linear}.mat-expansion-panel.mat-expanded>.mat-expansion-panel-content-wrapper>.mat-expansion-panel-content{visibility:visible}.mat-expansion-panel-body{padding:0 24px 16px}.mat-expansion-panel-spacing{margin:16px 0}.mat-accordion>.mat-expansion-panel-spacing:first-child,.mat-accordion>*:first-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing{margin-top:0}.mat-accordion>.mat-expansion-panel-spacing:last-child,.mat-accordion>*:last-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing{margin-bottom:0}.mat-action-row{border-top-style:solid;border-top-width:1px;display:flex;flex-direction:row;justify-content:flex-end;padding:16px 8px 16px 24px;border-top-color:var(--mat-expansion-actions-divider-color, var(--mat-sys-outline))}.mat-action-row .mat-button-base,.mat-action-row .mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-action-row .mat-button-base,[dir=rtl] .mat-action-row .mat-mdc-button-base{margin-left:0;margin-right:8px}\n"],encapsulation:2,changeDetection:0})}return nt})(),ve=(()=>{class nt{panel=(0,d.WQX)(P,{host:!0});_element=(0,d.WQX)(i.aKT);_focusMonitor=(0,d.WQX)(A.FN);_changeDetectorRef=(0,d.WQX)(v.gRc);_parentChangeSubscription=w.yU.EMPTY;constructor(){(0,d.WQX)(Ee.l).load(V.A);const oe=this.panel,Ye=(0,d.WQX)(ie,{optional:!0}),fe=(0,d.WQX)(new v.ES_("tabindex"),{optional:!0}),Qe=oe.accordion?oe.accordion._stateChanges.pipe((0,Ce.p)(gt=>!(!gt.hideToggle&&!gt.togglePosition))):G.w;this.tabIndex=parseInt(fe||"")||0,this._parentChangeSubscription=(0,re.h)(oe.opened,oe.closed,Qe,oe._inputChanges.pipe((0,Ce.p)(gt=>!!(gt.hideToggle||gt.disabled||gt.togglePosition)))).subscribe(()=>this._changeDetectorRef.markForCheck()),oe.closed.pipe((0,Ce.p)(()=>oe._containsFocus())).subscribe(()=>this._focusMonitor.focusVia(this._element,"program")),Ye&&(this.expandedHeight=Ye.expandedHeight,this.collapsedHeight=Ye.collapsedHeight)}expandedHeight;collapsedHeight;tabIndex=0;get disabled(){return this.panel.disabled}_toggle(){this.disabled||this.panel.toggle()}_isExpanded(){return this.panel.expanded}_getExpandedState(){return this.panel._getExpandedState()}_getPanelId(){return this.panel.id}_getTogglePosition(){return this.panel.togglePosition}_showToggle(){return!this.panel.hideToggle&&!this.panel.disabled}_getHeaderHeight(){const oe=this._isExpanded();return oe&&this.expandedHeight?this.expandedHeight:!oe&&this.collapsedHeight?this.collapsedHeight:null}_keydown(oe){switch(oe.keyCode){case j.t6:case j.Fm:(0,W.rp)(oe)||(oe.preventDefault(),this._toggle());break;default:return void(this.panel.accordion&&this.panel.accordion._handleHeaderKeydown(oe))}}focus(oe,Ye){oe?this._focusMonitor.focusVia(this._element,oe,Ye):this._element.nativeElement.focus(Ye)}ngAfterViewInit(){this._focusMonitor.monitor(this._element).subscribe(oe=>{oe&&this.panel.accordion&&this.panel.accordion._handleHeaderFocus(this)})}ngOnDestroy(){this._parentChangeSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._element)}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275cmp=i.VBU({type:nt,selectors:[["mat-expansion-panel-header"]],hostAttrs:["role","button",1,"mat-expansion-panel-header","mat-focus-indicator"],hostVars:13,hostBindings:function(Ye,fe){1&Ye&&i.bIt("click",function(){return fe._toggle()})("keydown",function(gt){return fe._keydown(gt)}),2&Ye&&(i.BMQ("id",fe.panel._headerId)("tabindex",fe.disabled?-1:fe.tabIndex)("aria-controls",fe._getPanelId())("aria-expanded",fe._isExpanded())("aria-disabled",fe.panel.disabled),i.xc7("height",fe._getHeaderHeight()),i.AVh("mat-expanded",fe._isExpanded())("mat-expansion-toggle-indicator-after","after"===fe._getTogglePosition())("mat-expansion-toggle-indicator-before","before"===fe._getTogglePosition()))},inputs:{expandedHeight:"expandedHeight",collapsedHeight:"collapsedHeight",tabIndex:[2,"tabIndex","tabIndex",oe=>null==oe?0:(0,v.Udg)(oe)]},ngContentSelectors:he,decls:5,vars:3,consts:[[1,"mat-content"],[1,"mat-expansion-indicator"],["xmlns","http://www.w3.org/2000/svg","viewBox","0 -960 960 960","aria-hidden","true","focusable","false"],["d","M480-345 240-585l56-56 184 184 184-184 56 56-240 240Z"]],template:function(Ye,fe){1&Ye&&(i.NAR(_e),i.rj2(0,"span",0),i.SdG(1),i.SdG(2,1),i.SdG(3,2),i.eux(),i.nVh(4,Dt,3,0,"span",1)),2&Ye&&(i.AVh("mat-content-hide-toggle",!fe._showToggle()),i.R7$(4),i.vxM(fe._showToggle()?4:-1))},styles:['.mat-expansion-panel-header{display:flex;flex-direction:row;align-items:center;padding:0 24px;border-radius:inherit;height:var(--mat-expansion-header-collapsed-state-height, 48px);font-family:var(--mat-expansion-header-text-font, var(--mat-sys-title-medium-font));font-size:var(--mat-expansion-header-text-size, var(--mat-sys-title-medium-size));font-weight:var(--mat-expansion-header-text-weight, var(--mat-sys-title-medium-weight));line-height:var(--mat-expansion-header-text-line-height, var(--mat-sys-title-medium-line-height));letter-spacing:var(--mat-expansion-header-text-tracking, var(--mat-sys-title-medium-tracking))}.mat-expansion-panel-animations-enabled .mat-expansion-panel-header{transition:height 225ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-expansion-panel-header::before{border-radius:inherit}.mat-expansion-panel-header.mat-expanded{height:var(--mat-expansion-header-expanded-state-height, 64px)}.mat-expansion-panel-header[aria-disabled=true]{color:var(--mat-expansion-header-disabled-state-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-expansion-panel-header:not([aria-disabled=true]){cursor:pointer}.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover{background:var(--mat-expansion-header-hover-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent))}@media(hover: none){.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover{background:var(--mat-expansion-container-background-color, var(--mat-sys-surface))}}.mat-expansion-panel .mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused,.mat-expansion-panel .mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused{background:var(--mat-expansion-header-focus-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-focus-state-layer-opacity) * 100%), transparent))}.mat-expansion-panel-header._mat-animation-noopable{transition:none}.mat-expansion-panel-header:focus,.mat-expansion-panel-header:hover{outline:none}.mat-expansion-panel-header.mat-expanded:focus,.mat-expansion-panel-header.mat-expanded:hover{background:inherit}.mat-expansion-panel-header.mat-expansion-toggle-indicator-before{flex-direction:row-reverse}.mat-expansion-panel-header.mat-expansion-toggle-indicator-before .mat-expansion-indicator{margin:0 16px 0 0}[dir=rtl] .mat-expansion-panel-header.mat-expansion-toggle-indicator-before .mat-expansion-indicator{margin:0 0 0 16px}.mat-content{display:flex;flex:1;flex-direction:row;overflow:hidden}.mat-content.mat-content-hide-toggle{margin-right:8px}[dir=rtl] .mat-content.mat-content-hide-toggle{margin-right:0;margin-left:8px}.mat-expansion-toggle-indicator-before .mat-content.mat-content-hide-toggle{margin-left:24px;margin-right:0}[dir=rtl] .mat-expansion-toggle-indicator-before .mat-content.mat-content-hide-toggle{margin-right:24px;margin-left:0}.mat-expansion-panel-header-title{color:var(--mat-expansion-header-text-color, var(--mat-sys-on-surface))}.mat-expansion-panel-header-title,.mat-expansion-panel-header-description{display:flex;flex-grow:1;flex-basis:0;margin-right:16px;align-items:center}[dir=rtl] .mat-expansion-panel-header-title,[dir=rtl] .mat-expansion-panel-header-description{margin-right:0;margin-left:16px}.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.mat-expansion-panel-header-description{flex-grow:2;color:var(--mat-expansion-header-description-color, var(--mat-sys-on-surface-variant))}.mat-expansion-panel-animations-enabled .mat-expansion-indicator{transition:transform 225ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-expansion-panel-header.mat-expanded .mat-expansion-indicator{transform:rotate(180deg)}.mat-expansion-indicator::after{border-style:solid;border-width:0 2px 2px 0;content:"";padding:3px;transform:rotate(45deg);vertical-align:middle;color:var(--mat-expansion-header-indicator-color, var(--mat-sys-on-surface-variant));display:var(--mat-expansion-legacy-header-indicator-display, none)}.mat-expansion-indicator svg{width:24px;height:24px;margin:0 -8px;vertical-align:middle;fill:var(--mat-expansion-header-indicator-color, var(--mat-sys-on-surface-variant));display:var(--mat-expansion-header-indicator-display, inline-block)}@media(forced-colors: active){.mat-expansion-panel-content{border-top:1px solid;border-top-left-radius:0;border-top-right-radius:0}}\n'],encapsulation:2,changeDetection:0})}return nt})(),H=(()=>{class nt{static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275dir=i.FsC({type:nt,selectors:[["mat-panel-description"]],hostAttrs:[1,"mat-expansion-panel-header-description"]})}return nt})(),$=(()=>{class nt{static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275dir=i.FsC({type:nt,selectors:[["mat-panel-title"]],hostAttrs:[1,"mat-expansion-panel-header-title"]})}return nt})(),Ke=(()=>{class nt extends u{_keyManager;_ownHeaders=new i.rOR;_headers;hideToggle=!1;displayMode="default";togglePosition="after";ngAfterContentInit(){this._headers.changes.pipe((0,le.Z)(this._headers)).subscribe(oe=>{this._ownHeaders.reset(oe.filter(Ye=>Ye.panel.accordion===this)),this._ownHeaders.notifyOnChanges()}),this._keyManager=new Pe.B(this._ownHeaders).withWrap().withHomeAndEnd()}_handleHeaderKeydown(oe){this._keyManager.onKeydown(oe)}_handleHeaderFocus(oe){this._keyManager.updateActiveItem(oe)}ngOnDestroy(){super.ngOnDestroy(),this._keyManager?.destroy(),this._ownHeaders.destroy()}static \u0275fac=(()=>{let oe;return function(fe){return(oe||(oe=i.xGo(nt)))(fe||nt)}})();static \u0275dir=i.FsC({type:nt,selectors:[["mat-accordion"]],contentQueries:function(Ye,fe,Qe){if(1&Ye&&i.wni(Qe,ve,5),2&Ye){let gt;i.mGM(gt=i.lsd())&&(fe._headers=gt)}},hostAttrs:[1,"mat-accordion"],hostVars:2,hostBindings:function(Ye,fe){2&Ye&&i.AVh("mat-accordion-multi",fe.multi)},inputs:{hideToggle:[2,"hideToggle","hideToggle",v.L39],displayMode:"displayMode",togglePosition:"togglePosition"},exportAs:["matAccordion"],features:[i.Jv_([{provide:lt,useExisting:nt}]),i.Vt3]})}return nt})(),Vt=(()=>{class nt{static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275mod=i.$C({type:nt});static \u0275inj=d.G2t({imports:[ce.y,C,B.jc]})}return nt})()},1228(Zt,pe,l){"use strict";l.d(pe,{R:()=>e});var i=l(2318),d=l(2615),v=l(3664),T=l(9588),w=l(2466);let e=(()=>{class O{static \u0275fac=function(L){return new(L||O)};static \u0275mod=v.$C({type:O});static \u0275inj=d.G2t({imports:[w.y,i.w5,T.rl,w.y]})}return O})()},9588(Zt,pe,l){"use strict";l.d(pe,{xb:()=>vi,TL:()=>fe,rl:()=>ye,qT:()=>pt,MV:()=>Qe,nJ:()=>oe,yw:()=>cn});var i=l(9726),d=l(1577),v=l(4085),T=l(9842),w=l(2200),e=l(3664),O=l(2615),f=l(7705),u=l(9295),L=l(8359),C=l(1413),B=l(7786),A=l(9172),Pe=l(6354),le=l(9974),Ce=l(4360),j=l(5964),W=l(6977),G=l(3610),re=l(1804);const Ee=["notch"],V=["matFormFieldNotchedOutline",""],ce=["*"],be=["iconPrefixContainer"],ne=["textPrefixContainer"],J=["iconSuffixContainer"],De=["textSuffixContainer"],Re=["textField"],Xe=["*",[["mat-label"]],[["","matPrefix",""],["","matIconPrefix",""]],[["","matTextPrefix",""]],[["","matTextSuffix",""]],[["","matSuffix",""],["","matIconSuffix",""]],[["mat-error"],["","matError",""]],[["mat-hint",3,"align","end"]],[["mat-hint","align","end"]]],_e=["*","mat-label","[matPrefix], [matIconPrefix]","[matTextPrefix]","[matTextSuffix]","[matSuffix], [matIconSuffix]","mat-error, [matError]","mat-hint:not([align='end'])","mat-hint[align='end']"];function he(ke,Se){1&ke&&e.nrm(0,"span",21)}function Dt(ke,Se){if(1&ke&&(e.j41(0,"label",20),e.SdG(1,1),e.nVh(2,he,1,0,"span",21),e.k0s()),2&ke){const ge=e.XpG(2);e.Y8G("floating",ge._shouldLabelFloat())("monitorResize",ge._hasOutline())("id",ge._labelId),e.BMQ("for",ge._control.disableAutomaticLabeling?null:ge._control.id),e.R7$(2),e.vxM(!ge.hideRequiredMarker&&ge._control.required?2:-1)}}function lt(ke,Se){if(1&ke&&e.nVh(0,Dt,3,5,"label",20),2&ke){const ge=e.XpG();e.vxM(ge._hasFloatingLabel()?0:-1)}}function Le(ke,Se){1&ke&&e.nrm(0,"div",7)}function te(ke,Se){}function ie(ke,Se){if(1&ke&&e.DNE(0,te,0,0,"ng-template",13),2&ke){e.XpG(2);const ge=e.sdS(1);e.Y8G("ngTemplateOutlet",ge)}}function P(ke,Se){if(1&ke&&(e.j41(0,"div",9),e.nVh(1,ie,1,1,null,13),e.k0s()),2&ke){const ge=e.XpG();e.Y8G("matFormFieldNotchedOutlineOpen",ge._shouldLabelFloat()),e.R7$(),e.vxM(ge._forceDisplayInfixLabel()?-1:1)}}function F(ke,Se){1&ke&&(e.j41(0,"div",10,2),e.SdG(2,2),e.k0s())}function ve(ke,Se){1&ke&&(e.j41(0,"div",11,3),e.SdG(2,3),e.k0s())}function H(ke,Se){}function $(ke,Se){if(1&ke&&e.DNE(0,H,0,0,"ng-template",13),2&ke){e.XpG();const ge=e.sdS(1);e.Y8G("ngTemplateOutlet",ge)}}function Ke(ke,Se){1&ke&&(e.j41(0,"div",14,4),e.SdG(2,4),e.k0s())}function Vt(ke,Se){1&ke&&(e.j41(0,"div",15,5),e.SdG(2,5),e.k0s())}function St(ke,Se){1&ke&&e.nrm(0,"div",16)}function ot(ke,Se){1&ke&&(e.j41(0,"div",18),e.SdG(1,6),e.k0s())}function nt(ke,Se){if(1&ke&&(e.j41(0,"mat-hint",22),e.EFF(1),e.k0s()),2&ke){const ge=e.XpG(2);e.Y8G("id",ge._hintLabelId),e.R7$(),e.JRh(ge.hintLabel)}}function ht(ke,Se){if(1&ke&&(e.j41(0,"div",19),e.nVh(1,nt,2,2,"mat-hint",22),e.SdG(2,7),e.nrm(3,"div",23),e.SdG(4,8),e.k0s()),2&ke){const ge=e.XpG();e.R7$(),e.vxM(ge.hintLabel?1:-1)}}let oe=(()=>{class ke{static \u0275fac=function(N){return new(N||ke)};static \u0275dir=e.FsC({type:ke,selectors:[["mat-label"]]})}return ke})();const Ye=new O.nKC("MatError");let fe=(()=>{class ke{id=(0,O.WQX)(i.g).getId("mat-mdc-error-");constructor(){}static \u0275fac=function(N){return new(N||ke)};static \u0275dir=e.FsC({type:ke,selectors:[["mat-error"],["","matError",""]],hostAttrs:[1,"mat-mdc-form-field-error","mat-mdc-form-field-bottom-align"],hostVars:1,hostBindings:function(N,Z){2&N&&e.Avn("id",Z.id)},inputs:{id:"id"},features:[e.Jv_([{provide:Ye,useExisting:ke}])]})}return ke})(),Qe=(()=>{class ke{align="start";id=(0,O.WQX)(i.g).getId("mat-mdc-hint-");static \u0275fac=function(N){return new(N||ke)};static \u0275dir=e.FsC({type:ke,selectors:[["mat-hint"]],hostAttrs:[1,"mat-mdc-form-field-hint","mat-mdc-form-field-bottom-align"],hostVars:4,hostBindings:function(N,Z){2&N&&(e.Avn("id",Z.id),e.BMQ("align",null),e.AVh("mat-mdc-form-field-hint-end","end"===Z.align))},inputs:{align:"align",id:"id"}})}return ke})();const gt=new O.nKC("MatPrefix"),rt=new O.nKC("MatSuffix");let cn=(()=>{class ke{set _isTextSelector(ge){this._isText=!0}_isText=!1;static \u0275fac=function(N){return new(N||ke)};static \u0275dir=e.FsC({type:ke,selectors:[["","matSuffix",""],["","matIconSuffix",""],["","matTextSuffix",""]],inputs:{_isTextSelector:[0,"matTextSuffix","_isTextSelector"]},features:[e.Jv_([{provide:rt,useExisting:ke}])]})}return ke})();const Ft=new O.nKC("FloatingLabelParent");let Sn=(()=>{class ke{_elementRef=(0,O.WQX)(e.aKT);get floating(){return this._floating}set floating(ge){this._floating=ge,this.monitorResize&&this._handleResize()}_floating=!1;get monitorResize(){return this._monitorResize}set monitorResize(ge){this._monitorResize=ge,this._monitorResize?this._subscribeToResize():this._resizeSubscription.unsubscribe()}_monitorResize=!1;_resizeObserver=(0,O.WQX)(G.a);_ngZone=(0,O.WQX)(e.SKi);_parent=(0,O.WQX)(Ft);_resizeSubscription=new L.yU;constructor(){}ngOnDestroy(){this._resizeSubscription.unsubscribe()}getWidth(){return function Qn(ke){if(null!==ke.offsetParent)return ke.scrollWidth;const ge=ke.cloneNode(!0);ge.style.setProperty("position","absolute"),ge.style.setProperty("transform","translate(-9999px, -9999px)"),document.documentElement.appendChild(ge);const N=ge.scrollWidth;return ge.remove(),N}(this._elementRef.nativeElement)}get element(){return this._elementRef.nativeElement}_handleResize(){setTimeout(()=>this._parent._handleLabelResized())}_subscribeToResize(){this._resizeSubscription.unsubscribe(),this._ngZone.runOutsideAngular(()=>{this._resizeSubscription=this._resizeObserver.observe(this._elementRef.nativeElement,{box:"border-box"}).subscribe(()=>this._handleResize())})}static \u0275fac=function(N){return new(N||ke)};static \u0275dir=e.FsC({type:ke,selectors:[["label","matFormFieldFloatingLabel",""]],hostAttrs:[1,"mdc-floating-label","mat-mdc-floating-label"],hostVars:2,hostBindings:function(N,Z){2&N&&e.AVh("mdc-floating-label--float-above",Z.floating)},inputs:{floating:"floating",monitorResize:"monitorResize"}})}return ke})();const h="mdc-line-ripple--active",jt="mdc-line-ripple--deactivating";let Ue=(()=>{class ke{_elementRef=(0,O.WQX)(e.aKT);_cleanupTransitionEnd;constructor(){const ge=(0,O.WQX)(e.SKi),N=(0,O.WQX)(e.sFG);ge.runOutsideAngular(()=>{this._cleanupTransitionEnd=N.listen(this._elementRef.nativeElement,"transitionend",this._handleTransitionEnd)})}activate(){const ge=this._elementRef.nativeElement.classList;ge.remove(jt),ge.add(h)}deactivate(){this._elementRef.nativeElement.classList.add(jt)}_handleTransitionEnd=ge=>{const N=this._elementRef.nativeElement.classList,Z=N.contains(jt);"opacity"===ge.propertyName&&Z&&N.remove(h,jt)};ngOnDestroy(){this._cleanupTransitionEnd()}static \u0275fac=function(N){return new(N||ke)};static \u0275dir=e.FsC({type:ke,selectors:[["div","matFormFieldLineRipple",""]],hostAttrs:[1,"mdc-line-ripple"]})}return ke})(),wt=(()=>{class ke{_elementRef=(0,O.WQX)(e.aKT);_ngZone=(0,O.WQX)(e.SKi);open=!1;_notch;ngAfterViewInit(){const ge=this._elementRef.nativeElement,N=ge.querySelector(".mdc-floating-label");N?(ge.classList.add("mdc-notched-outline--upgraded"),"function"==typeof requestAnimationFrame&&(N.style.transitionDuration="0s",this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>N.style.transitionDuration="")}))):ge.classList.add("mdc-notched-outline--no-label")}_setNotchWidth(ge){this._notch.nativeElement.style.width=this.open&&ge?`calc(${ge}px * var(--mat-mdc-form-field-floating-label-scale, 0.75) + 9px)`:""}_setMaxWidth(ge){this._notch.nativeElement.style.setProperty("--mat-form-field-notch-max-width",`calc(100% - ${ge}px)`)}static \u0275fac=function(N){return new(N||ke)};static \u0275cmp=e.VBU({type:ke,selectors:[["div","matFormFieldNotchedOutline",""]],viewQuery:function(N,Z){if(1&N&&e.GBs(Ee,5),2&N){let Me;e.mGM(Me=e.lsd())&&(Z._notch=Me.first)}},hostAttrs:[1,"mdc-notched-outline"],hostVars:2,hostBindings:function(N,Z){2&N&&e.AVh("mdc-notched-outline--notched",Z.open)},inputs:{open:[0,"matFormFieldNotchedOutlineOpen","open"]},attrs:V,ngContentSelectors:ce,decls:5,vars:0,consts:[["notch",""],[1,"mat-mdc-notch-piece","mdc-notched-outline__leading"],[1,"mat-mdc-notch-piece","mdc-notched-outline__notch"],[1,"mat-mdc-notch-piece","mdc-notched-outline__trailing"]],template:function(N,Z){1&N&&(e.NAR(),e.Hgh(0,"div",1),e.rj2(1,"div",2,0),e.SdG(3),e.eux(),e.Hgh(4,"div",3))},encapsulation:2,changeDetection:0})}return ke})(),pt=(()=>{class ke{value;stateChanges;id;placeholder;ngControl;focused;empty;shouldLabelFloat;required;disabled;errorState;controlType;autofilled;userAriaDescribedBy;disableAutomaticLabeling;describedByIds;static \u0275fac=function(N){return new(N||ke)};static \u0275dir=e.FsC({type:ke})}return ke})();const vi=new O.nKC("MatFormField"),Ni=new O.nKC("MAT_FORM_FIELD_DEFAULT_OPTIONS");let ye=(()=>{class ke{_elementRef=(0,O.WQX)(e.aKT);_changeDetectorRef=(0,O.WQX)(f.gRc);_platform=(0,O.WQX)(T.O);_idGenerator=(0,O.WQX)(i.g);_ngZone=(0,O.WQX)(e.SKi);_defaults=(0,O.WQX)(Ni,{optional:!0});_currentDirection;_textField;_iconPrefixContainer;_textPrefixContainer;_iconSuffixContainer;_textSuffixContainer;_floatingLabel;_notchedOutline;_lineRipple;_iconPrefixContainerSignal=(0,f.ebz)("iconPrefixContainer");_textPrefixContainerSignal=(0,f.ebz)("textPrefixContainer");_iconSuffixContainerSignal=(0,f.ebz)("iconSuffixContainer");_textSuffixContainerSignal=(0,f.ebz)("textSuffixContainer");_prefixSuffixContainers=(0,u.EW)(()=>[this._iconPrefixContainerSignal(),this._textPrefixContainerSignal(),this._iconSuffixContainerSignal(),this._textSuffixContainerSignal()].map(ge=>ge?.nativeElement).filter(ge=>void 0!==ge));_formFieldControl;_prefixChildren;_suffixChildren;_errorChildren;_hintChildren;_labelChild=(0,f.sbv)(oe);get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(ge){this._hideRequiredMarker=(0,v.he)(ge)}_hideRequiredMarker=!1;color="primary";get floatLabel(){return this._floatLabel||this._defaults?.floatLabel||"auto"}set floatLabel(ge){ge!==this._floatLabel&&(this._floatLabel=ge,this._changeDetectorRef.markForCheck())}_floatLabel;get appearance(){return this._appearanceSignal()}set appearance(ge){this._appearanceSignal.set(ge||this._defaults?.appearance||"fill")}_appearanceSignal=(0,O.vPA)("fill");get subscriptSizing(){return this._subscriptSizing||this._defaults?.subscriptSizing||"fixed"}set subscriptSizing(ge){this._subscriptSizing=ge||this._defaults?.subscriptSizing||"fixed"}_subscriptSizing=null;get hintLabel(){return this._hintLabel}set hintLabel(ge){this._hintLabel=ge,this._processHints()}_hintLabel="";_hasIconPrefix=!1;_hasTextPrefix=!1;_hasIconSuffix=!1;_hasTextSuffix=!1;_labelId=this._idGenerator.getId("mat-mdc-form-field-label-");_hintLabelId=this._idGenerator.getId("mat-mdc-hint-");_describedByIds;get _control(){return this._explicitFormFieldControl||this._formFieldControl}set _control(ge){this._explicitFormFieldControl=ge}_destroyed=new C.B;_isFocused=null;_explicitFormFieldControl;_previousControl=null;_previousControlValidatorFn=null;_stateChanges;_valueChanges;_describedByChanges;_outlineLabelOffsetResizeObserver=null;_animationsDisabled=(0,re.Rc)();constructor(){const ge=this._defaults,N=(0,O.WQX)(d.dS);ge&&(ge.appearance&&(this.appearance=ge.appearance),this._hideRequiredMarker=!!ge?.hideRequiredMarker,ge.color&&(this.color=ge.color)),(0,u.QZ)(()=>this._currentDirection=N.valueSignal()),this._syncOutlineLabelOffset()}ngAfterViewInit(){this._updateFocusState(),this._animationsDisabled||this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{this._elementRef.nativeElement.classList.add("mat-form-field-animations-enabled")},300)}),this._changeDetectorRef.detectChanges()}ngAfterContentInit(){this._assertFormFieldControl(),this._initializeSubscript(),this._initializePrefixAndSuffix()}ngAfterContentChecked(){this._assertFormFieldControl(),this._control!==this._previousControl&&(this._initializeControl(this._previousControl),this._control.ngControl&&this._control.ngControl.control&&(this._previousControlValidatorFn=this._control.ngControl.control.validator),this._previousControl=this._control),this._control.ngControl&&this._control.ngControl.control&&this._control.ngControl.control.validator!==this._previousControlValidatorFn&&this._changeDetectorRef.markForCheck()}ngOnDestroy(){this._outlineLabelOffsetResizeObserver?.disconnect(),this._stateChanges?.unsubscribe(),this._valueChanges?.unsubscribe(),this._describedByChanges?.unsubscribe(),this._destroyed.next(),this._destroyed.complete()}getLabelId=(0,u.EW)(()=>this._hasFloatingLabel()?this._labelId:null);getConnectedOverlayOrigin(){return this._textField||this._elementRef}_animateAndLockLabel(){this._hasFloatingLabel()&&(this.floatLabel="always")}_initializeControl(ge){const N=this._control,Z="mat-mdc-form-field-type-";ge&&this._elementRef.nativeElement.classList.remove(Z+ge.controlType),N.controlType&&this._elementRef.nativeElement.classList.add(Z+N.controlType),this._stateChanges?.unsubscribe(),this._stateChanges=N.stateChanges.subscribe(()=>{this._updateFocusState(),this._changeDetectorRef.markForCheck()}),this._describedByChanges?.unsubscribe(),this._describedByChanges=N.stateChanges.pipe((0,A.Z)([void 0,void 0]),(0,Pe.T)(()=>[N.errorState,N.userAriaDescribedBy]),function Ae(){return(0,le.N)((ke,Se)=>{let ge,N=!1;ke.subscribe((0,Ce._)(Se,Z=>{const Me=ge;ge=Z,N&&Se.next([Me,Z]),N=!0}))})}(),(0,j.p)(([[Me,at],[qe,pn]])=>Me!==qe||at!==pn)).subscribe(()=>this._syncDescribedByIds()),this._valueChanges?.unsubscribe(),N.ngControl&&N.ngControl.valueChanges&&(this._valueChanges=N.ngControl.valueChanges.pipe((0,W.Q)(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck()))}_checkPrefixAndSuffixTypes(){this._hasIconPrefix=!!this._prefixChildren.find(ge=>!ge._isText),this._hasTextPrefix=!!this._prefixChildren.find(ge=>ge._isText),this._hasIconSuffix=!!this._suffixChildren.find(ge=>!ge._isText),this._hasTextSuffix=!!this._suffixChildren.find(ge=>ge._isText)}_initializePrefixAndSuffix(){this._checkPrefixAndSuffixTypes(),(0,B.h)(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(()=>{this._checkPrefixAndSuffixTypes(),this._changeDetectorRef.markForCheck()})}_initializeSubscript(){this._hintChildren.changes.subscribe(()=>{this._processHints(),this._changeDetectorRef.markForCheck()}),this._errorChildren.changes.subscribe(()=>{this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),this._validateHints(),this._syncDescribedByIds()}_assertFormFieldControl(){}_updateFocusState(){const ge=this._control.focused;ge&&!this._isFocused?(this._isFocused=!0,this._lineRipple?.activate()):!ge&&(this._isFocused||null===this._isFocused)&&(this._isFocused=!1,this._lineRipple?.deactivate()),this._elementRef.nativeElement.classList.toggle("mat-focused",ge),this._textField?.nativeElement.classList.toggle("mdc-text-field--focused",ge)}_syncOutlineLabelOffset(){(0,f.uEv)({earlyRead:()=>{if("outline"!==this._appearanceSignal())return this._outlineLabelOffsetResizeObserver?.disconnect(),null;if(globalThis.ResizeObserver){this._outlineLabelOffsetResizeObserver||=new globalThis.ResizeObserver(()=>{this._writeOutlinedLabelStyles(this._getOutlinedLabelOffset())});for(const ge of this._prefixSuffixContainers())this._outlineLabelOffsetResizeObserver.observe(ge,{box:"border-box"})}return this._getOutlinedLabelOffset()},write:ge=>this._writeOutlinedLabelStyles(ge())})}_shouldAlwaysFloat(){return"always"===this.floatLabel}_hasOutline(){return"outline"===this.appearance}_forceDisplayInfixLabel(){return!this._platform.isBrowser&&this._prefixChildren.length&&!this._shouldLabelFloat()}_hasFloatingLabel=(0,u.EW)(()=>!!this._labelChild());_shouldLabelFloat(){return!!this._hasFloatingLabel()&&(this._control.shouldLabelFloat||this._shouldAlwaysFloat())}_shouldForward(ge){const N=this._control?this._control.ngControl:null;return N&&N[ge]}_getSubscriptMessageType(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?"error":"hint"}_handleLabelResized(){this._refreshOutlineNotchWidth()}_refreshOutlineNotchWidth(){this._hasOutline()&&this._floatingLabel&&this._shouldLabelFloat()?this._notchedOutline?._setNotchWidth(this._floatingLabel.getWidth()):this._notchedOutline?._setNotchWidth(0)}_processHints(){this._validateHints(),this._syncDescribedByIds()}_validateHints(){}_syncDescribedByIds(){if(this._control){let ge=[];if(this._control.userAriaDescribedBy&&"string"==typeof this._control.userAriaDescribedBy&&ge.push(...this._control.userAriaDescribedBy.split(" ")),"hint"===this._getSubscriptMessageType()){const Me=this._hintChildren?this._hintChildren.find(qe=>"start"===qe.align):null,at=this._hintChildren?this._hintChildren.find(qe=>"end"===qe.align):null;Me?ge.push(Me.id):this._hintLabel&&ge.push(this._hintLabelId),at&&ge.push(at.id)}else this._errorChildren&&ge.push(...this._errorChildren.map(Me=>Me.id));const N=this._control.describedByIds;let Z;if(N){const Me=this._describedByIds||ge;Z=ge.concat(N.filter(at=>at&&!Me.includes(at)))}else Z=ge;this._control.setDescribedByIds(Z),this._describedByIds=ge}}_getOutlinedLabelOffset(){if(!this._hasOutline()||!this._floatingLabel)return null;if(!this._iconPrefixContainer&&!this._textPrefixContainer)return["",null];if(!this._isAttachedToDom())return null;const ge=this._iconPrefixContainer?.nativeElement,N=this._textPrefixContainer?.nativeElement,Z=this._iconSuffixContainer?.nativeElement,Me=this._textSuffixContainer?.nativeElement,at=ge?.getBoundingClientRect().width??0,qe=N?.getBoundingClientRect().width??0,pn=Z?.getBoundingClientRect().width??0,Je=Me?.getBoundingClientRect().width??0;return[`var(--mat-mdc-form-field-label-transform, translateY(-50%) translateX(calc(${"rtl"===this._currentDirection?"-1":"1"} * (${at+qe}px + var(--mat-mdc-form-field-label-offset-x, 0px)))))`,at+qe+pn+Je]}_writeOutlinedLabelStyles(ge){if(null!==ge){const[N,Z]=ge;this._floatingLabel&&(this._floatingLabel.element.style.transform=N),null!==Z&&this._notchedOutline?._setMaxWidth(Z)}}_isAttachedToDom(){const ge=this._elementRef.nativeElement;if(ge.getRootNode){const N=ge.getRootNode();return N&&N!==ge}return document.documentElement.contains(ge)}static \u0275fac=function(N){return new(N||ke)};static \u0275cmp=e.VBU({type:ke,selectors:[["mat-form-field"]],contentQueries:function(N,Z,Me){if(1&N&&(e.C6U(Me,Z._labelChild,oe,5),e.wni(Me,pt,5),e.wni(Me,gt,5),e.wni(Me,rt,5),e.wni(Me,Ye,5),e.wni(Me,Qe,5)),2&N){let at;e.NyB(),e.mGM(at=e.lsd())&&(Z._formFieldControl=at.first),e.mGM(at=e.lsd())&&(Z._prefixChildren=at),e.mGM(at=e.lsd())&&(Z._suffixChildren=at),e.mGM(at=e.lsd())&&(Z._errorChildren=at),e.mGM(at=e.lsd())&&(Z._hintChildren=at)}},viewQuery:function(N,Z){if(1&N&&(e.wEZ(Z._iconPrefixContainerSignal,be,5),e.wEZ(Z._textPrefixContainerSignal,ne,5),e.wEZ(Z._iconSuffixContainerSignal,J,5),e.wEZ(Z._textSuffixContainerSignal,De,5),e.GBs(Re,5),e.GBs(be,5),e.GBs(ne,5),e.GBs(J,5),e.GBs(De,5),e.GBs(Sn,5),e.GBs(wt,5),e.GBs(Ue,5)),2&N){let Me;e.NyB(4),e.mGM(Me=e.lsd())&&(Z._textField=Me.first),e.mGM(Me=e.lsd())&&(Z._iconPrefixContainer=Me.first),e.mGM(Me=e.lsd())&&(Z._textPrefixContainer=Me.first),e.mGM(Me=e.lsd())&&(Z._iconSuffixContainer=Me.first),e.mGM(Me=e.lsd())&&(Z._textSuffixContainer=Me.first),e.mGM(Me=e.lsd())&&(Z._floatingLabel=Me.first),e.mGM(Me=e.lsd())&&(Z._notchedOutline=Me.first),e.mGM(Me=e.lsd())&&(Z._lineRipple=Me.first)}},hostAttrs:[1,"mat-mdc-form-field"],hostVars:38,hostBindings:function(N,Z){2&N&&e.AVh("mat-mdc-form-field-label-always-float",Z._shouldAlwaysFloat())("mat-mdc-form-field-has-icon-prefix",Z._hasIconPrefix)("mat-mdc-form-field-has-icon-suffix",Z._hasIconSuffix)("mat-form-field-invalid",Z._control.errorState)("mat-form-field-disabled",Z._control.disabled)("mat-form-field-autofilled",Z._control.autofilled)("mat-form-field-appearance-fill","fill"==Z.appearance)("mat-form-field-appearance-outline","outline"==Z.appearance)("mat-form-field-hide-placeholder",Z._hasFloatingLabel()&&!Z._shouldLabelFloat())("mat-primary","accent"!==Z.color&&"warn"!==Z.color)("mat-accent","accent"===Z.color)("mat-warn","warn"===Z.color)("ng-untouched",Z._shouldForward("untouched"))("ng-touched",Z._shouldForward("touched"))("ng-pristine",Z._shouldForward("pristine"))("ng-dirty",Z._shouldForward("dirty"))("ng-valid",Z._shouldForward("valid"))("ng-invalid",Z._shouldForward("invalid"))("ng-pending",Z._shouldForward("pending"))},inputs:{hideRequiredMarker:"hideRequiredMarker",color:"color",floatLabel:"floatLabel",appearance:"appearance",subscriptSizing:"subscriptSizing",hintLabel:"hintLabel"},exportAs:["matFormField"],features:[e.Jv_([{provide:vi,useExisting:ke},{provide:Ft,useExisting:ke}])],ngContentSelectors:_e,decls:18,vars:21,consts:[["labelTemplate",""],["textField",""],["iconPrefixContainer",""],["textPrefixContainer",""],["textSuffixContainer",""],["iconSuffixContainer",""],[1,"mat-mdc-text-field-wrapper","mdc-text-field",3,"click"],[1,"mat-mdc-form-field-focus-overlay"],[1,"mat-mdc-form-field-flex"],["matFormFieldNotchedOutline","",3,"matFormFieldNotchedOutlineOpen"],[1,"mat-mdc-form-field-icon-prefix"],[1,"mat-mdc-form-field-text-prefix"],[1,"mat-mdc-form-field-infix"],[3,"ngTemplateOutlet"],[1,"mat-mdc-form-field-text-suffix"],[1,"mat-mdc-form-field-icon-suffix"],["matFormFieldLineRipple",""],["aria-atomic","true","aria-live","polite",1,"mat-mdc-form-field-subscript-wrapper","mat-mdc-form-field-bottom-align"],[1,"mat-mdc-form-field-error-wrapper"],[1,"mat-mdc-form-field-hint-wrapper"],["matFormFieldFloatingLabel","",3,"floating","monitorResize","id"],["aria-hidden","true",1,"mat-mdc-form-field-required-marker","mdc-floating-label--required"],[3,"id"],[1,"mat-mdc-form-field-hint-spacer"]],template:function(N,Z){if(1&N){const Me=e.RV6();e.NAR(Xe),e.DNE(0,lt,1,1,"ng-template",null,0,e.C5r),e.j41(2,"div",6,1),e.bIt("click",function(qe){return O.eBV(Me),O.Njj(Z._control.onContainerClick(qe))}),e.nVh(4,Le,1,0,"div",7),e.j41(5,"div",8),e.nVh(6,P,2,2,"div",9),e.nVh(7,F,3,0,"div",10),e.nVh(8,ve,3,0,"div",11),e.j41(9,"div",12),e.nVh(10,$,1,1,null,13),e.SdG(11),e.k0s(),e.nVh(12,Ke,3,0,"div",14),e.nVh(13,Vt,3,0,"div",15),e.k0s(),e.nVh(14,St,1,0,"div",16),e.k0s(),e.j41(15,"div",17),e.nVh(16,ot,2,0,"div",18)(17,ht,5,1,"div",19),e.k0s()}if(2&N){let Me;e.R7$(2),e.AVh("mdc-text-field--filled",!Z._hasOutline())("mdc-text-field--outlined",Z._hasOutline())("mdc-text-field--no-label",!Z._hasFloatingLabel())("mdc-text-field--disabled",Z._control.disabled)("mdc-text-field--invalid",Z._control.errorState),e.R7$(2),e.vxM(Z._hasOutline()||Z._control.disabled?-1:4),e.R7$(2),e.vxM(Z._hasOutline()?6:-1),e.R7$(),e.vxM(Z._hasIconPrefix?7:-1),e.R7$(),e.vxM(Z._hasTextPrefix?8:-1),e.R7$(2),e.vxM(!Z._hasOutline()||Z._forceDisplayInfixLabel()?10:-1),e.R7$(2),e.vxM(Z._hasTextSuffix?12:-1),e.R7$(),e.vxM(Z._hasIconSuffix?13:-1),e.R7$(),e.vxM(Z._hasOutline()?-1:14),e.R7$(),e.AVh("mat-mdc-form-field-subscript-dynamic-size","dynamic"===Z.subscriptSizing);const at=Z._getSubscriptMessageType();e.R7$(),e.vxM("error"===(Me=at)?16:"hint"===Me?17:-1)}},dependencies:[Sn,wt,w.T3,Ue,Qe],styles:['.mdc-text-field{display:inline-flex;align-items:baseline;padding:0 16px;position:relative;box-sizing:border-box;overflow:hidden;will-change:opacity,transform,color;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.mdc-text-field__input{width:100%;min-width:0;border:none;border-radius:0;background:none;padding:0;-moz-appearance:none;-webkit-appearance:none;height:28px}.mdc-text-field__input::-webkit-calendar-picker-indicator,.mdc-text-field__input::-webkit-search-cancel-button{display:none}.mdc-text-field__input::-ms-clear{display:none}.mdc-text-field__input:focus{outline:none}.mdc-text-field__input:invalid{box-shadow:none}.mdc-text-field__input::placeholder{opacity:0}.mdc-text-field__input::-moz-placeholder{opacity:0}.mdc-text-field__input::-webkit-input-placeholder{opacity:0}.mdc-text-field__input:-ms-input-placeholder{opacity:0}.mdc-text-field--no-label .mdc-text-field__input::placeholder,.mdc-text-field--focused .mdc-text-field__input::placeholder{opacity:1}.mdc-text-field--no-label .mdc-text-field__input::-moz-placeholder,.mdc-text-field--focused .mdc-text-field__input::-moz-placeholder{opacity:1}.mdc-text-field--no-label .mdc-text-field__input::-webkit-input-placeholder,.mdc-text-field--focused .mdc-text-field__input::-webkit-input-placeholder{opacity:1}.mdc-text-field--no-label .mdc-text-field__input:-ms-input-placeholder,.mdc-text-field--focused .mdc-text-field__input:-ms-input-placeholder{opacity:1}.mdc-text-field--disabled:not(.mdc-text-field--no-label) .mdc-text-field__input.mat-mdc-input-disabled-interactive::placeholder{opacity:0}.mdc-text-field--disabled:not(.mdc-text-field--no-label) .mdc-text-field__input.mat-mdc-input-disabled-interactive::-moz-placeholder{opacity:0}.mdc-text-field--disabled:not(.mdc-text-field--no-label) .mdc-text-field__input.mat-mdc-input-disabled-interactive::-webkit-input-placeholder{opacity:0}.mdc-text-field--disabled:not(.mdc-text-field--no-label) .mdc-text-field__input.mat-mdc-input-disabled-interactive:-ms-input-placeholder{opacity:0}.mdc-text-field--outlined .mdc-text-field__input,.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{height:100%}.mdc-text-field--outlined .mdc-text-field__input{display:flex;border:none !important;background-color:rgba(0,0,0,0)}.mdc-text-field--disabled .mdc-text-field__input{pointer-events:auto}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mat-form-field-filled-input-text-color, var(--mat-sys-on-surface));caret-color:var(--mat-form-field-filled-caret-color, var(--mat-sys-primary))}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mat-form-field-filled-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input::-moz-placeholder{color:var(--mat-form-field-filled-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input::-webkit-input-placeholder{color:var(--mat-form-field-filled-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mat-form-field-filled-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mat-form-field-outlined-input-text-color, var(--mat-sys-on-surface));caret-color:var(--mat-form-field-outlined-caret-color, var(--mat-sys-primary))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mat-form-field-outlined-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input::-moz-placeholder{color:var(--mat-form-field-outlined-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input::-webkit-input-placeholder{color:var(--mat-form-field-outlined-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mat-form-field-outlined-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mat-form-field-filled-error-caret-color, var(--mat-sys-error))}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mat-form-field-outlined-error-caret-color, var(--mat-sys-error))}.mdc-text-field--filled.mdc-text-field--disabled .mdc-text-field__input{color:var(--mat-form-field-filled-disabled-input-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input{color:var(--mat-form-field-outlined-disabled-input-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}@media(forced-colors: active){.mdc-text-field--disabled .mdc-text-field__input{background-color:Window}}.mdc-text-field--filled{height:56px;border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-left-radius:var(--mat-form-field-filled-container-shape, var(--mat-sys-corner-extra-small));border-top-right-radius:var(--mat-form-field-filled-container-shape, var(--mat-sys-corner-extra-small))}.mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:var(--mat-form-field-filled-container-color, var(--mat-sys-surface-variant))}.mdc-text-field--filled.mdc-text-field--disabled{background-color:var(--mat-form-field-filled-disabled-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 4%, transparent))}.mdc-text-field--outlined{height:56px;overflow:visible;padding-right:max(16px,var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small)));padding-left:max(16px,var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small)) + 4px)}[dir=rtl] .mdc-text-field--outlined{padding-right:max(16px,var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small)) + 4px);padding-left:max(16px,var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small)))}.mdc-floating-label{position:absolute;left:0;transform-origin:left top;line-height:1.15rem;text-align:left;text-overflow:ellipsis;white-space:nowrap;cursor:text;overflow:hidden;will-change:transform}[dir=rtl] .mdc-floating-label{right:0;left:auto;transform-origin:right top;text-align:right}.mdc-text-field .mdc-floating-label{top:50%;transform:translateY(-50%);pointer-events:none}.mdc-notched-outline .mdc-floating-label{display:inline-block;position:relative;max-width:100%}.mdc-text-field--outlined .mdc-floating-label{left:4px;right:auto}[dir=rtl] .mdc-text-field--outlined .mdc-floating-label{left:auto;right:4px}.mdc-text-field--filled .mdc-floating-label{left:16px;right:auto}[dir=rtl] .mdc-text-field--filled .mdc-floating-label{left:auto;right:16px}.mdc-text-field--disabled .mdc-floating-label{cursor:default}@media(forced-colors: active){.mdc-text-field--disabled .mdc-floating-label{z-index:1}}.mdc-text-field--filled.mdc-text-field--no-label .mdc-floating-label{display:none}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label{color:var(--mat-form-field-filled-label-text-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label{color:var(--mat-form-field-filled-focus-label-text-color, var(--mat-sys-primary))}.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label{color:var(--mat-form-field-filled-hover-label-text-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label{color:var(--mat-form-field-filled-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--invalid .mdc-floating-label{color:var(--mat-form-field-filled-error-label-text-color, var(--mat-sys-error))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--invalid.mdc-text-field--focused .mdc-floating-label{color:var(--mat-form-field-filled-error-focus-label-text-color, var(--mat-sys-error))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--invalid:not(.mdc-text-field--disabled):hover .mdc-floating-label{color:var(--mat-form-field-filled-error-hover-label-text-color, var(--mat-sys-on-error-container))}.mdc-text-field--filled .mdc-floating-label{font-family:var(--mat-form-field-filled-label-text-font, var(--mat-sys-body-large-font));font-size:var(--mat-form-field-filled-label-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-form-field-filled-label-text-weight, var(--mat-sys-body-large-weight));letter-spacing:var(--mat-form-field-filled-label-text-tracking, var(--mat-sys-body-large-tracking))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-floating-label{color:var(--mat-form-field-outlined-label-text-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label{color:var(--mat-form-field-outlined-focus-label-text-color, var(--mat-sys-primary))}.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label{color:var(--mat-form-field-outlined-hover-label-text-color, var(--mat-sys-on-surface))}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-floating-label{color:var(--mat-form-field-outlined-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid .mdc-floating-label{color:var(--mat-form-field-outlined-error-label-text-color, var(--mat-sys-error))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid.mdc-text-field--focused .mdc-floating-label{color:var(--mat-form-field-outlined-error-focus-label-text-color, var(--mat-sys-error))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid:not(.mdc-text-field--disabled):hover .mdc-floating-label{color:var(--mat-form-field-outlined-error-hover-label-text-color, var(--mat-sys-on-error-container))}.mdc-text-field--outlined .mdc-floating-label{font-family:var(--mat-form-field-outlined-label-text-font, var(--mat-sys-body-large-font));font-size:var(--mat-form-field-outlined-label-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-form-field-outlined-label-text-weight, var(--mat-sys-body-large-weight));letter-spacing:var(--mat-form-field-outlined-label-text-tracking, var(--mat-sys-body-large-tracking))}.mdc-floating-label--float-above{cursor:auto;transform:translateY(-106%) scale(0.75)}.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) scale(1);font-size:.75rem}.mdc-notched-outline .mdc-floating-label--float-above{text-overflow:clip}.mdc-notched-outline--upgraded .mdc-floating-label--float-above{max-width:133.3333333333%}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-34.75px) scale(0.75)}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after{margin-left:1px;margin-right:0;content:"*"}[dir=rtl] .mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after{margin-left:0;margin-right:1px}.mdc-notched-outline{display:flex;position:absolute;top:0;right:0;left:0;box-sizing:border-box;width:100%;max-width:100%;height:100%;text-align:left;pointer-events:none}[dir=rtl] .mdc-notched-outline{text-align:right}.mdc-text-field--outlined .mdc-notched-outline{z-index:1}.mat-mdc-notch-piece{box-sizing:border-box;height:100%;pointer-events:none;border-top:1px solid;border-bottom:1px solid}.mdc-text-field--focused .mat-mdc-notch-piece{border-width:2px}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-outline-color, var(--mat-sys-outline));border-width:var(--mat-form-field-outlined-outline-width, 1px)}.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-hover-outline-color, var(--mat-sys-on-surface))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-focus-outline-color, var(--mat-sys-primary))}.mdc-text-field--outlined.mdc-text-field--disabled .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-disabled-outline-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-error-outline-color, var(--mat-sys-error))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid:not(.mdc-text-field--focused):hover .mdc-notched-outline .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-error-hover-outline-color, var(--mat-sys-on-error-container))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid.mdc-text-field--focused .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-error-focus-outline-color, var(--mat-sys-error))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mat-mdc-notch-piece{border-width:var(--mat-form-field-outlined-focus-outline-width, 2px)}.mdc-notched-outline__leading{border-left:1px solid;border-right:none;border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small));border-bottom-left-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{width:max(12px,var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small)))}[dir=rtl] .mdc-notched-outline__leading{border-left:none;border-right:1px solid;border-bottom-left-radius:0;border-top-left-radius:0;border-top-right-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small));border-bottom-right-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))}.mdc-notched-outline__trailing{flex-grow:1;border-left:none;border-right:1px solid;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small));border-bottom-right-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))}[dir=rtl] .mdc-notched-outline__trailing{border-left:1px solid;border-right:none;border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small));border-bottom-left-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))}.mdc-notched-outline__notch{flex:0 0 auto;width:auto}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch{max-width:min(var(--mat-form-field-notch-max-width, 100%),calc(100% - max(12px, var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))) * 2))}.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{max-width:min(100%,calc(100% - max(12px, var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))) * 2))}.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:1px}.mdc-text-field--focused.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:2px}.mdc-notched-outline--notched .mdc-notched-outline__notch{padding-left:0;padding-right:8px;border-top:none}[dir=rtl] .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-left:8px;padding-right:0}.mdc-notched-outline--no-label .mdc-notched-outline__notch{display:none}.mdc-line-ripple::before,.mdc-line-ripple::after{position:absolute;bottom:0;left:0;width:100%;border-bottom-style:solid;content:""}.mdc-line-ripple::before{z-index:1;border-bottom-width:var(--mat-form-field-filled-active-indicator-height, 1px)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mat-form-field-filled-active-indicator-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mat-form-field-filled-hover-active-indicator-color, var(--mat-sys-on-surface))}.mdc-text-field--filled.mdc-text-field--disabled .mdc-line-ripple::before{border-bottom-color:var(--mat-form-field-filled-disabled-active-indicator-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--invalid .mdc-line-ripple::before{border-bottom-color:var(--mat-form-field-filled-error-active-indicator-color, var(--mat-sys-error))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--invalid:not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mat-form-field-filled-error-hover-active-indicator-color, var(--mat-sys-on-error-container))}.mdc-line-ripple::after{transform:scaleX(0);opacity:0;z-index:2}.mdc-text-field--filled .mdc-line-ripple::after{border-bottom-width:var(--mat-form-field-filled-focus-active-indicator-height, 2px)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mat-form-field-filled-focus-active-indicator-color, var(--mat-sys-primary))}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mat-form-field-filled-error-focus-active-indicator-color, var(--mat-sys-error))}.mdc-line-ripple--active::after{transform:scaleX(1);opacity:1}.mdc-line-ripple--deactivating::after{opacity:0}.mdc-text-field--disabled{pointer-events:none}.mat-mdc-form-field-textarea-control{vertical-align:middle;resize:vertical;box-sizing:border-box;height:auto;margin:0;padding:0;border:none;overflow:auto}.mat-mdc-form-field-input-control.mat-mdc-form-field-input-control{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font:inherit;letter-spacing:inherit;text-decoration:inherit;text-transform:inherit;border:none}.mat-mdc-form-field .mat-mdc-floating-label.mdc-floating-label{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;line-height:normal;pointer-events:all;will-change:auto}.mat-mdc-form-field:not(.mat-form-field-disabled) .mat-mdc-floating-label.mdc-floating-label{cursor:inherit}.mdc-text-field--no-label:not(.mdc-text-field--textarea) .mat-mdc-form-field-input-control.mdc-text-field__input,.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control{height:auto}.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control.mdc-text-field__input[type=color]{height:23px}.mat-mdc-text-field-wrapper{height:auto;flex:auto;will-change:auto}.mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-left:0;--mat-mdc-form-field-label-offset-x: -16px}.mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-right:0}[dir=rtl] .mat-mdc-text-field-wrapper{padding-left:16px;padding-right:16px}[dir=rtl] .mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-left:0}[dir=rtl] .mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-right:0}.mat-form-field-disabled .mdc-text-field__input::placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-form-field-disabled .mdc-text-field__input::-moz-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-form-field-disabled .mdc-text-field__input::-webkit-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-form-field-disabled .mdc-text-field__input:-ms-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-form-field-label-always-float .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms;opacity:1}.mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-floating-label{left:auto;right:auto}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-text-field__input{display:inline-block}.mat-mdc-form-field .mat-mdc-text-field-wrapper.mdc-text-field .mdc-notched-outline__notch{padding-top:0}.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch{border-left:1px solid rgba(0,0,0,0)}[dir=rtl] .mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch{border-left:none;border-right:1px solid rgba(0,0,0,0)}.mat-mdc-form-field-infix{min-height:var(--mat-form-field-container-height, 56px);padding-top:var(--mat-form-field-filled-with-label-container-padding-top, 24px);padding-bottom:var(--mat-form-field-filled-with-label-container-padding-bottom, 8px)}.mdc-text-field--outlined .mat-mdc-form-field-infix,.mdc-text-field--no-label .mat-mdc-form-field-infix{padding-top:var(--mat-form-field-container-vertical-padding, 16px);padding-bottom:var(--mat-form-field-container-vertical-padding, 16px)}.mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label{top:calc(var(--mat-form-field-container-height, 56px)/2)}.mdc-text-field--filled .mat-mdc-floating-label{display:var(--mat-form-field-filled-label-display, block)}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{--mat-mdc-form-field-label-transform: translateY(calc(calc(6.75px + var(--mat-form-field-container-height, 56px) / 2) * -1)) scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));transform:var(--mat-mdc-form-field-label-transform)}@keyframes _mat-form-field-subscript-animation{from{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:translateY(0)}}.mat-mdc-form-field-subscript-wrapper{box-sizing:border-box;width:100%;position:relative}.mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-error-wrapper{position:absolute;top:0;left:0;right:0;padding:0 16px;opacity:1;transform:translateY(0);animation:_mat-form-field-subscript-animation 0ms cubic-bezier(0.55, 0, 0.55, 0.2)}.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-error-wrapper{position:static}.mat-mdc-form-field-bottom-align::before{content:"";display:inline-block;height:16px}.mat-mdc-form-field-bottom-align.mat-mdc-form-field-subscript-dynamic-size::before{content:unset}.mat-mdc-form-field-hint-end{order:1}.mat-mdc-form-field-hint-wrapper{display:flex}.mat-mdc-form-field-hint-spacer{flex:1 0 1em}.mat-mdc-form-field-error{display:block;color:var(--mat-form-field-error-text-color, var(--mat-sys-error))}.mat-mdc-form-field-subscript-wrapper,.mat-mdc-form-field-bottom-align::before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-form-field-subscript-text-font, var(--mat-sys-body-small-font));line-height:var(--mat-form-field-subscript-text-line-height, var(--mat-sys-body-small-line-height));font-size:var(--mat-form-field-subscript-text-size, var(--mat-sys-body-small-size));letter-spacing:var(--mat-form-field-subscript-text-tracking, var(--mat-sys-body-small-tracking));font-weight:var(--mat-form-field-subscript-text-weight, var(--mat-sys-body-small-weight))}.mat-mdc-form-field-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;opacity:0;pointer-events:none;background-color:var(--mat-form-field-state-layer-color, var(--mat-sys-on-surface))}.mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-focus-overlay{opacity:var(--mat-form-field-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-form-field.mat-focused .mat-mdc-form-field-focus-overlay{opacity:var(--mat-form-field-focus-state-layer-opacity, 0)}select.mat-mdc-form-field-input-control{-moz-appearance:none;-webkit-appearance:none;background-color:rgba(0,0,0,0);display:inline-flex;box-sizing:border-box}select.mat-mdc-form-field-input-control:not(:disabled){cursor:pointer}select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option{color:var(--mat-form-field-select-option-text-color, var(--mat-sys-neutral10))}select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option:disabled{color:var(--mat-form-field-select-disabled-option-text-color, color-mix(in srgb, var(--mat-sys-neutral10) 38%, transparent))}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{content:"";width:0;height:0;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-top:5px solid;position:absolute;right:0;top:50%;margin-top:-2.5px;pointer-events:none;color:var(--mat-form-field-enabled-select-arrow-color, var(--mat-sys-on-surface-variant))}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{right:auto;left:0}.mat-mdc-form-field-type-mat-native-select.mat-focused .mat-mdc-form-field-infix::after{color:var(--mat-form-field-focus-select-arrow-color, var(--mat-sys-primary))}.mat-mdc-form-field-type-mat-native-select.mat-form-field-disabled .mat-mdc-form-field-infix::after{color:var(--mat-form-field-disabled-select-arrow-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:15px}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:0;padding-left:15px}@media(forced-colors: active){.mat-form-field-appearance-fill .mat-mdc-text-field-wrapper{outline:solid 1px}}@media(forced-colors: active){.mat-form-field-appearance-fill.mat-form-field-disabled .mat-mdc-text-field-wrapper{outline-color:GrayText}}@media(forced-colors: active){.mat-form-field-appearance-fill.mat-focused .mat-mdc-text-field-wrapper{outline:dashed 3px}}@media(forced-colors: active){.mat-mdc-form-field.mat-focused .mdc-notched-outline{border:dashed 3px}}.mat-mdc-form-field-input-control[type=date],.mat-mdc-form-field-input-control[type=datetime],.mat-mdc-form-field-input-control[type=datetime-local],.mat-mdc-form-field-input-control[type=month],.mat-mdc-form-field-input-control[type=week],.mat-mdc-form-field-input-control[type=time]{line-height:1}.mat-mdc-form-field-input-control::-webkit-datetime-edit{line-height:1;padding:0;margin-bottom:-2px}.mat-mdc-form-field{--mat-mdc-form-field-floating-label-scale: 0.75;display:inline-flex;flex-direction:column;min-width:0;text-align:left;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-form-field-container-text-font, var(--mat-sys-body-large-font));line-height:var(--mat-form-field-container-text-line-height, var(--mat-sys-body-large-line-height));font-size:var(--mat-form-field-container-text-size, var(--mat-sys-body-large-size));letter-spacing:var(--mat-form-field-container-text-tracking, var(--mat-sys-body-large-tracking));font-weight:var(--mat-form-field-container-text-weight, var(--mat-sys-body-large-weight))}.mat-mdc-form-field .mdc-text-field--outlined .mdc-floating-label--float-above{font-size:calc(var(--mat-form-field-outlined-label-text-populated-size)*var(--mat-mdc-form-field-floating-label-scale))}.mat-mdc-form-field .mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:var(--mat-form-field-outlined-label-text-populated-size)}[dir=rtl] .mat-mdc-form-field{text-align:right}.mat-mdc-form-field-flex{display:inline-flex;align-items:baseline;box-sizing:border-box;width:100%}.mat-mdc-text-field-wrapper{width:100%;z-index:0}.mat-mdc-form-field-icon-prefix,.mat-mdc-form-field-icon-suffix{align-self:center;line-height:0;pointer-events:auto;position:relative;z-index:1}.mat-mdc-form-field-icon-prefix>.mat-icon,.mat-mdc-form-field-icon-suffix>.mat-icon{padding:0 12px;box-sizing:content-box}.mat-mdc-form-field-icon-prefix{color:var(--mat-form-field-leading-icon-color, var(--mat-sys-on-surface-variant))}.mat-form-field-disabled .mat-mdc-form-field-icon-prefix{color:var(--mat-form-field-disabled-leading-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-trailing-icon-color, var(--mat-sys-on-surface-variant))}.mat-form-field-disabled .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-disabled-trailing-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-form-field-invalid .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-error-trailing-icon-color, var(--mat-sys-error))}.mat-form-field-invalid:not(.mat-focused):not(.mat-form-field-disabled) .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-error-hover-trailing-icon-color, var(--mat-sys-on-error-container))}.mat-form-field-invalid.mat-focused .mat-mdc-text-field-wrapper .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-error-focus-trailing-icon-color, var(--mat-sys-error))}.mat-mdc-form-field-icon-prefix,[dir=rtl] .mat-mdc-form-field-icon-suffix{padding:0 4px 0 0}.mat-mdc-form-field-icon-suffix,[dir=rtl] .mat-mdc-form-field-icon-prefix{padding:0 0 0 4px}.mat-mdc-form-field-subscript-wrapper .mat-icon,.mat-mdc-form-field label .mat-icon{width:1em;height:1em;font-size:inherit}.mat-mdc-form-field-infix{flex:auto;min-width:0;width:180px;position:relative;box-sizing:border-box}.mat-mdc-form-field-infix:has(textarea[cols]){width:auto}.mat-mdc-form-field .mdc-notched-outline__notch{margin-left:-1px;-webkit-clip-path:inset(-9em -999em -9em 1px);clip-path:inset(-9em -999em -9em 1px)}[dir=rtl] .mat-mdc-form-field .mdc-notched-outline__notch{margin-left:0;margin-right:-1px;-webkit-clip-path:inset(-9em 1px -9em -999em);clip-path:inset(-9em 1px -9em -999em)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-floating-label{transition:transform 150ms cubic-bezier(0.4, 0, 0.2, 1),color 150ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field__input{transition:opacity 150ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field__input::placeholder{transition:opacity 67ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field__input::-moz-placeholder{transition:opacity 67ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field__input::-webkit-input-placeholder{transition:opacity 67ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field__input:-ms-input-placeholder{transition:opacity 67ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--no-label .mdc-text-field__input::placeholder,.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--focused .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms}.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--no-label .mdc-text-field__input::-moz-placeholder,.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--focused .mdc-text-field__input::-moz-placeholder{transition-delay:40ms;transition-duration:110ms}.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--no-label .mdc-text-field__input::-webkit-input-placeholder,.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--focused .mdc-text-field__input::-webkit-input-placeholder{transition-delay:40ms;transition-duration:110ms}.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--no-label .mdc-text-field__input:-ms-input-placeholder,.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--focused .mdc-text-field__input:-ms-input-placeholder{transition-delay:40ms;transition-duration:110ms}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field--filled:not(.mdc-ripple-upgraded):focus .mdc-text-field__ripple::before{transition-duration:75ms}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-line-ripple::after{transition:transform 180ms cubic-bezier(0.4, 0, 0.2, 1),opacity 180ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field.mat-form-field-animations-enabled .mat-mdc-form-field-error-wrapper{animation-duration:300ms}.mdc-notched-outline .mdc-floating-label{max-width:calc(100% + 1px)}.mdc-notched-outline--upgraded .mdc-floating-label--float-above{max-width:calc(133.3333333333% + 1px)}\n'],encapsulation:2,changeDetection:0})}return ke})()},2885(Zt,pe,l){"use strict";l.d(pe,{B_:()=>ie,Fe:()=>P,NS:()=>ce});class i{tracker;columnIndex=0;rowIndex=0;get rowCount(){return this.rowIndex+1}get rowspan(){const ve=Math.max(...this.tracker);return ve>1?this.rowCount+ve-1:this.rowCount}positions;update(ve,H){this.columnIndex=0,this.rowIndex=0,this.tracker=new Array(ve),this.tracker.fill(0,0,this.tracker.length),this.positions=H.map($=>this._trackTile($))}_trackTile(ve){const H=this._findMatchingGap(ve.colspan);return this._markTilePosition(H,ve),this.columnIndex=H+ve.colspan,new d(this.rowIndex,H)}_findMatchingGap(ve){let H=-1,$=-1;do{this.columnIndex+ve>this.tracker.length?(this._nextRow(),H=this.tracker.indexOf(0,this.columnIndex),$=this._findGapEndIndex(H)):(H=this.tracker.indexOf(0,this.columnIndex),-1!=H?($=this._findGapEndIndex(H),this.columnIndex=H+1):(this._nextRow(),H=this.tracker.indexOf(0,this.columnIndex),$=this._findGapEndIndex(H)))}while($-H{class F{static \u0275fac=function($){return new($||F)};static \u0275mod=T.$C({type:F});static \u0275inj=w.G2t({imports:[e.y,e.y]})}return F})();var A=l(7847),Pe=l(1577);const G=["*"],V=new w.nKC("MAT_GRID_LIST");let ce=(()=>{class F{_element=(0,w.WQX)(T.aKT);_gridList=(0,w.WQX)(V,{optional:!0});_rowspan=1;_colspan=1;constructor(){}get rowspan(){return this._rowspan}set rowspan(H){this._rowspan=Math.round((0,A.OE)(H))}get colspan(){return this._colspan}set colspan(H){this._colspan=Math.round((0,A.OE)(H))}_setStyle(H,$){this._element.nativeElement.style[H]=$}static \u0275fac=function($){return new($||F)};static \u0275cmp=T.VBU({type:F,selectors:[["mat-grid-tile"]],hostAttrs:[1,"mat-grid-tile"],hostVars:2,hostBindings:function($,Ke){2&$&&T.BMQ("rowspan",Ke.rowspan)("colspan",Ke.colspan)},inputs:{rowspan:"rowspan",colspan:"colspan"},exportAs:["matGridTile"],ngContentSelectors:G,decls:2,vars:0,consts:[[1,"mat-grid-tile-content"]],template:function($,Ke){1&$&&(T.NAR(),T.rj2(0,"div",0),T.SdG(1),T.eux())},styles:[".mat-grid-list{display:block;position:relative}.mat-grid-tile{display:block;position:absolute;overflow:hidden}.mat-grid-tile .mat-grid-tile-header,.mat-grid-tile .mat-grid-tile-footer{display:flex;align-items:center;height:48px;color:#fff;background:rgba(0,0,0,.38);overflow:hidden;padding:0 16px;position:absolute;left:0;right:0}.mat-grid-tile .mat-grid-tile-header>*,.mat-grid-tile .mat-grid-tile-footer>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-tile-header.mat-2-line,.mat-grid-tile .mat-grid-tile-footer.mat-2-line{height:68px}.mat-grid-tile .mat-grid-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden}.mat-grid-tile .mat-grid-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-list-text:empty{display:none}.mat-grid-tile .mat-grid-tile-header{top:0}.mat-grid-tile .mat-grid-tile-footer{bottom:0}.mat-grid-tile .mat-grid-avatar{padding-right:16px}[dir=rtl] .mat-grid-tile .mat-grid-avatar{padding-right:0;padding-left:16px}.mat-grid-tile .mat-grid-avatar:empty{display:none}.mat-grid-tile-header{font-size:var(--mat-grid-list-tile-header-primary-text-size, var(--mat-sys-body-large))}.mat-grid-tile-header .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-header-secondary-text-size, var(--mat-sys-body-medium))}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size, var(--mat-sys-body-large))}.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-footer-secondary-text-size, var(--mat-sys-body-medium))}.mat-grid-tile-content{top:0;left:0;right:0;bottom:0;position:absolute;display:flex;align-items:center;justify-content:center;height:100%;padding:0;margin:0}\n"],encapsulation:2,changeDetection:0})}return F})();const Re=/^-?\d+((\.\d+)?[A-Za-z%$]?)+$/;class Xe{_gutterSize;_rows=0;_rowspan=0;_cols;_direction;init(ve,H,$,Ke){this._gutterSize=Le(ve),this._rows=H.rowCount,this._rowspan=H.rowspan,this._cols=$,this._direction=Ke}getBaseTileSize(ve,H){return`(${ve}% - (${this._gutterSize} * ${H}))`}getTilePosition(ve,H){return 0===H?"0":lt(`(${ve} + ${this._gutterSize}) * ${H}`)}getTileSize(ve,H){return`(${ve} * ${H}) + (${H-1} * ${this._gutterSize})`}setStyle(ve,H,$){let Ke=100/this._cols,Vt=(this._cols-1)/this._cols;this.setColStyles(ve,$,Ke,Vt),this.setRowStyles(ve,H,Ke,Vt)}setColStyles(ve,H,$,Ke){let Vt=this.getBaseTileSize($,Ke);ve._setStyle("rtl"===this._direction?"right":"left",this.getTilePosition(Vt,H)),ve._setStyle("width",lt(this.getTileSize(Vt,ve.colspan)))}getGutterSpan(){return`${this._gutterSize} * (${this._rowspan} - 1)`}getTileSpan(ve){return`${this._rowspan} * ${this.getTileSize(ve,1)}`}getComputedHeight(){return null}}class _e extends Xe{fixedRowHeight;constructor(ve){super(),this.fixedRowHeight=ve}init(ve,H,$,Ke){super.init(ve,H,$,Ke),this.fixedRowHeight=Le(this.fixedRowHeight),Re.test(this.fixedRowHeight)}setRowStyles(ve,H){ve._setStyle("top",this.getTilePosition(this.fixedRowHeight,H)),ve._setStyle("height",lt(this.getTileSize(this.fixedRowHeight,ve.rowspan)))}getComputedHeight(){return["height",lt(`${this.getTileSpan(this.fixedRowHeight)} + ${this.getGutterSpan()}`)]}reset(ve){ve._setListStyle(["height",null]),ve._tiles&&ve._tiles.forEach(H=>{H._setStyle("top",null),H._setStyle("height",null)})}}class he extends Xe{rowHeightRatio;baseTileHeight;constructor(ve){super(),this._parseRatio(ve)}setRowStyles(ve,H,$,Ke){this.baseTileHeight=this.getBaseTileSize($/this.rowHeightRatio,Ke),ve._setStyle("marginTop",this.getTilePosition(this.baseTileHeight,H)),ve._setStyle("paddingTop",lt(this.getTileSize(this.baseTileHeight,ve.rowspan)))}getComputedHeight(){return["paddingBottom",lt(`${this.getTileSpan(this.baseTileHeight)} + ${this.getGutterSpan()}`)]}reset(ve){ve._setListStyle(["paddingBottom",null]),ve._tiles.forEach(H=>{H._setStyle("marginTop",null),H._setStyle("paddingTop",null)})}_parseRatio(ve){const H=ve.split(":");this.rowHeightRatio=parseFloat(H[0])/parseFloat(H[1])}}class Dt extends Xe{setRowStyles(ve,H){let Vt=this.getBaseTileSize(100/this._rowspan,(this._rows-1)/this._rows);ve._setStyle("top",this.getTilePosition(Vt,H)),ve._setStyle("height",lt(this.getTileSize(Vt,ve.rowspan)))}reset(ve){ve._tiles&&ve._tiles.forEach(H=>{H._setStyle("top",null),H._setStyle("height",null)})}}function lt(F){return`calc(${F})`}function Le(F){return F.match(/([A-Za-z%]+)$/)?F:`${F}px`}let ie=(()=>{class F{_element=(0,w.WQX)(T.aKT);_dir=(0,w.WQX)(Pe.dS,{optional:!0});_cols;_tileCoordinator;_rowHeight;_gutter="1px";_tileStyler;_tiles;constructor(){}get cols(){return this._cols}set cols(H){this._cols=Math.max(1,Math.round((0,A.OE)(H)))}get gutterSize(){return this._gutter}set gutterSize(H){this._gutter=`${H??""}`}get rowHeight(){return this._rowHeight}set rowHeight(H){const $=`${H??""}`;$!==this._rowHeight&&(this._rowHeight=$,this._setTileStyler(this._rowHeight))}ngOnInit(){this._checkCols(),this._checkRowHeight()}ngAfterContentChecked(){this._layoutTiles()}_checkCols(){}_checkRowHeight(){this._rowHeight||this._setTileStyler("1:1")}_setTileStyler(H){this._tileStyler&&this._tileStyler.reset(this),this._tileStyler="fit"===H?new Dt:H&&H.indexOf(":")>-1?new he(H):new _e(H)}_layoutTiles(){this._tileCoordinator||(this._tileCoordinator=new i);const H=this._tileCoordinator,$=this._tiles.filter(Vt=>!Vt._gridList||Vt._gridList===this),Ke=this._dir?this._dir.value:"ltr";this._tileCoordinator.update(this.cols,$),this._tileStyler.init(this.gutterSize,H,this.cols,Ke),$.forEach((Vt,St)=>{const ot=H.positions[St];this._tileStyler.setStyle(Vt,ot.row,ot.col)}),this._setListStyle(this._tileStyler.getComputedHeight())}_setListStyle(H){H&&(this._element.nativeElement.style[H[0]]=H[1])}static \u0275fac=function($){return new($||F)};static \u0275cmp=T.VBU({type:F,selectors:[["mat-grid-list"]],contentQueries:function($,Ke,Vt){if(1&$&&T.wni(Vt,ce,5),2&$){let St;T.mGM(St=T.lsd())&&(Ke._tiles=St)}},hostAttrs:[1,"mat-grid-list"],hostVars:1,hostBindings:function($,Ke){2&$&&T.BMQ("cols",Ke.cols)},inputs:{cols:"cols",gutterSize:"gutterSize",rowHeight:"rowHeight"},exportAs:["matGridList"],features:[T.Jv_([{provide:V,useExisting:F}])],ngContentSelectors:G,decls:2,vars:0,template:function($,Ke){1&$&&(T.NAR(),T.rj2(0,"div"),T.SdG(1),T.eux())},styles:[".mat-grid-list{display:block;position:relative}.mat-grid-tile{display:block;position:absolute;overflow:hidden}.mat-grid-tile .mat-grid-tile-header,.mat-grid-tile .mat-grid-tile-footer{display:flex;align-items:center;height:48px;color:#fff;background:rgba(0,0,0,.38);overflow:hidden;padding:0 16px;position:absolute;left:0;right:0}.mat-grid-tile .mat-grid-tile-header>*,.mat-grid-tile .mat-grid-tile-footer>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-tile-header.mat-2-line,.mat-grid-tile .mat-grid-tile-footer.mat-2-line{height:68px}.mat-grid-tile .mat-grid-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden}.mat-grid-tile .mat-grid-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-list-text:empty{display:none}.mat-grid-tile .mat-grid-tile-header{top:0}.mat-grid-tile .mat-grid-tile-footer{bottom:0}.mat-grid-tile .mat-grid-avatar{padding-right:16px}[dir=rtl] .mat-grid-tile .mat-grid-avatar{padding-right:0;padding-left:16px}.mat-grid-tile .mat-grid-avatar:empty{display:none}.mat-grid-tile-header{font-size:var(--mat-grid-list-tile-header-primary-text-size, var(--mat-sys-body-large))}.mat-grid-tile-header .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-header-secondary-text-size, var(--mat-sys-body-medium))}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size, var(--mat-sys-body-large))}.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-footer-secondary-text-size, var(--mat-sys-body-medium))}.mat-grid-tile-content{top:0;left:0;right:0;bottom:0;position:absolute;display:flex;align-items:center;justify-content:center;height:100%;padding:0;margin:0}\n"],encapsulation:2,changeDetection:0})}return F})(),P=(()=>{class F{static \u0275fac=function($){return new($||F)};static \u0275mod=T.$C({type:F});static \u0275inj=w.G2t({imports:[B,e.y,B,e.y]})}return F})()},2598(Zt,pe,l){"use strict";l.d(pe,{iM:()=>A,iY:()=>Pe});var i=l(3664),d=l(7705),v=l(2615),T=l(6838),w=l(8968),e=l(1048),O=l(2046),f=l(1804);const u=["mat-icon-button",""],L=["*"],C=new v.nKC("MAT_BUTTON_CONFIG");function B(Ce){return null==Ce?void 0:(0,d.Udg)(Ce)}let A=(()=>{class Ce{_elementRef=(0,v.WQX)(i.aKT);_ngZone=(0,v.WQX)(i.SKi);_animationsDisabled=(0,f.Rc)();_config=(0,v.WQX)(C,{optional:!0});_focusMonitor=(0,v.WQX)(T.FN);_cleanupClick;_renderer=(0,v.WQX)(i.sFG);_rippleLoader=(0,v.WQX)(e.E);_isAnchor;_isFab=!1;color;get disableRipple(){return this._disableRipple}set disableRipple(j){this._disableRipple=j,this._updateRippleDisabled()}_disableRipple=!1;get disabled(){return this._disabled}set disabled(j){this._disabled=j,this._updateRippleDisabled()}_disabled=!1;ariaDisabled;disabledInteractive;tabIndex;set _tabindex(j){this.tabIndex=j}constructor(){(0,v.WQX)(w.l).load(O.A);const j=this._elementRef.nativeElement;this._isAnchor="A"===j.tagName,this.disabledInteractive=this._config?.disabledInteractive??!1,this.color=this._config?.color??null,this._rippleLoader?.configureRipple(j,{className:"mat-mdc-button-ripple"})}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0),this._isAnchor&&this._setupAsAnchor()}ngOnDestroy(){this._cleanupClick?.(),this._focusMonitor.stopMonitoring(this._elementRef),this._rippleLoader?.destroyRipple(this._elementRef.nativeElement)}focus(j="program",W){j?this._focusMonitor.focusVia(this._elementRef.nativeElement,j,W):this._elementRef.nativeElement.focus(W)}_getAriaDisabled(){return null!=this.ariaDisabled?this.ariaDisabled:this._isAnchor?this.disabled||null:!(!this.disabled||!this.disabledInteractive)||null}_getDisabledAttribute(){return!(this.disabledInteractive||!this.disabled)||null}_updateRippleDisabled(){this._rippleLoader?.setDisabled(this._elementRef.nativeElement,this.disableRipple||this.disabled)}_getTabIndex(){return this._isAnchor&&this.disabled&&!this.disabledInteractive?-1:this.tabIndex}_setupAsAnchor(){this._cleanupClick=this._ngZone.runOutsideAngular(()=>this._renderer.listen(this._elementRef.nativeElement,"click",j=>{this.disabled&&(j.preventDefault(),j.stopImmediatePropagation())}))}static \u0275fac=function(W){return new(W||Ce)};static \u0275dir=i.FsC({type:Ce,hostAttrs:[1,"mat-mdc-button-base"],hostVars:13,hostBindings:function(W,G){2&W&&(i.BMQ("disabled",G._getDisabledAttribute())("aria-disabled",G._getAriaDisabled())("tabindex",G._getTabIndex()),i.HbH(G.color?"mat-"+G.color:""),i.AVh("mat-mdc-button-disabled",G.disabled)("mat-mdc-button-disabled-interactive",G.disabledInteractive)("mat-unthemed",!G.color)("_mat-animation-noopable",G._animationsDisabled))},inputs:{color:"color",disableRipple:[2,"disableRipple","disableRipple",d.L39],disabled:[2,"disabled","disabled",d.L39],ariaDisabled:[2,"aria-disabled","ariaDisabled",d.L39],disabledInteractive:[2,"disabledInteractive","disabledInteractive",d.L39],tabIndex:[2,"tabIndex","tabIndex",B],_tabindex:[2,"tabindex","_tabindex",B]}})}return Ce})(),Pe=(()=>{class Ce extends A{constructor(){super(),this._rippleLoader.configureRipple(this._elementRef.nativeElement,{centered:!0})}static \u0275fac=function(W){return new(W||Ce)};static \u0275cmp=i.VBU({type:Ce,selectors:[["button","mat-icon-button",""],["a","mat-icon-button",""],["button","matIconButton",""],["a","matIconButton",""]],hostAttrs:[1,"mdc-icon-button","mat-mdc-icon-button"],exportAs:["matButton","matAnchor"],features:[i.Vt3],attrs:u,ngContentSelectors:L,decls:4,vars:0,consts:[[1,"mat-mdc-button-persistent-ripple","mdc-icon-button__ripple"],[1,"mat-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(W,G){1&W&&(i.NAR(),i.Hgh(0,"span",0),i.SdG(1),i.Hgh(2,"span",1)(3,"span",2))},styles:['.mat-mdc-icon-button{-webkit-user-select:none;user-select:none;display:inline-block;position:relative;box-sizing:border-box;border:none;outline:none;background-color:rgba(0,0,0,0);fill:currentColor;text-decoration:none;cursor:pointer;z-index:0;overflow:visible;border-radius:var(--mat-icon-button-container-shape, var(--mat-sys-corner-full, 50%));flex-shrink:0;text-align:center;width:var(--mat-icon-button-state-layer-size, 40px);height:var(--mat-icon-button-state-layer-size, 40px);padding:calc(calc(var(--mat-icon-button-state-layer-size, 40px) - var(--mat-icon-button-icon-size, 24px)) / 2);font-size:var(--mat-icon-button-icon-size, 24px);color:var(--mat-icon-button-icon-color, var(--mat-sys-on-surface-variant));-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-icon-button .mat-mdc-button-ripple,.mat-mdc-icon-button .mat-mdc-button-persistent-ripple,.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-icon-button .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-icon-button .mdc-button__label,.mat-mdc-icon-button .mat-icon{z-index:1;position:relative}.mat-mdc-icon-button .mat-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:inherit}.mat-mdc-icon-button:focus>.mat-focus-indicator::before{content:"";border-radius:inherit}.mat-mdc-icon-button .mat-ripple-element{background-color:var(--mat-icon-button-ripple-color, color-mix(in srgb, var(--mat-sys-on-surface-variant) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-icon-button-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-icon-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-icon-button-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-icon-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-icon-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-icon-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-icon-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-icon-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-icon-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-icon-button-touch-target-size, 48px);display:var(--mat-icon-button-touch-target-display, block);left:50%;width:var(--mat-icon-button-touch-target-size, 48px);transform:translate(-50%, -50%)}.mat-mdc-icon-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-icon-button[disabled],.mat-mdc-icon-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-icon-button-disabled-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-icon-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-icon-button img,.mat-mdc-icon-button svg{width:var(--mat-icon-button-icon-size, 24px);height:var(--mat-icon-button-icon-size, 24px);vertical-align:baseline}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple{border-radius:var(--mat-icon-button-container-shape, var(--mat-sys-corner-full, 50%))}.mat-mdc-icon-button[hidden]{display:none}.mat-mdc-icon-button.mat-unthemed:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-primary:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-accent:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-warn:not(.mdc-ripple-upgraded):focus::before{background:rgba(0,0,0,0);opacity:1}\n',"@media(forced-colors: active){.mat-mdc-button:not(.mdc-button--outlined),.mat-mdc-unelevated-button:not(.mdc-button--outlined),.mat-mdc-raised-button:not(.mdc-button--outlined),.mat-mdc-outlined-button:not(.mdc-button--outlined),.mat-mdc-button-base.mat-tonal-button,.mat-mdc-icon-button.mat-mdc-icon-button,.mat-mdc-outlined-button .mdc-button__ripple{outline:solid 1px}}\n"],encapsulation:2,changeDetection:0})}return Ce})()},2629(Zt,pe,l){"use strict";l.d(pe,{An:()=>ie,m_:()=>P});var i=l(3664),d=l(2615),v=l(7705),T=l(8359),w=l(6697),e=l(9330),O=l(345),f=l(7673),u=l(8810),L=l(7468),C=l(8141),B=l(6354),A=l(9437),Pe=l(980),le=l(7647);let Ce;function j(F){return function Ae(){if(void 0===Ce&&(Ce=null,typeof window<"u")){const F=window;void 0!==F.trustedTypes&&(Ce=F.trustedTypes.createPolicy("angular#components",{createHTML:ve=>ve}))}return Ce}()?.createHTML(F)||F}function W(F){return Error(`Unable to find icon with the name "${F}"`)}function re(F){return Error(`The URL provided to MatIconRegistry was not trusted as a resource URL via Angular's DomSanitizer. Attempted URL was "${F}".`)}function xe(F){return Error(`The literal provided to MatIconRegistry was not trusted as safe HTML by Angular's DomSanitizer. Attempted literal was "${F}".`)}class Ee{url;svgText;options;svgElement;constructor(ve,H,$){this.url=ve,this.svgText=H,this.options=$}}let V=(()=>{class F{_httpClient;_sanitizer;_errorHandler;_document;_svgIconConfigs=new Map;_iconSetConfigs=new Map;_cachedIconsByUrl=new Map;_inProgressUrlFetches=new Map;_fontCssClassesByAlias=new Map;_resolvers=[];_defaultFontSetClass=["material-icons","mat-ligature-font"];constructor(H,$,Ke,Vt){this._httpClient=H,this._sanitizer=$,this._errorHandler=Vt,this._document=Ke}addSvgIcon(H,$,Ke){return this.addSvgIconInNamespace("",H,$,Ke)}addSvgIconLiteral(H,$,Ke){return this.addSvgIconLiteralInNamespace("",H,$,Ke)}addSvgIconInNamespace(H,$,Ke,Vt){return this._addSvgIconConfig(H,$,new Ee(Ke,null,Vt))}addSvgIconResolver(H){return this._resolvers.push(H),this}addSvgIconLiteralInNamespace(H,$,Ke,Vt){const St=this._sanitizer.sanitize(i.WPN.HTML,Ke);if(!St)throw xe(Ke);const ot=j(St);return this._addSvgIconConfig(H,$,new Ee("",ot,Vt))}addSvgIconSet(H,$){return this.addSvgIconSetInNamespace("",H,$)}addSvgIconSetLiteral(H,$){return this.addSvgIconSetLiteralInNamespace("",H,$)}addSvgIconSetInNamespace(H,$,Ke){return this._addSvgIconSetConfig(H,new Ee($,null,Ke))}addSvgIconSetLiteralInNamespace(H,$,Ke){const Vt=this._sanitizer.sanitize(i.WPN.HTML,$);if(!Vt)throw xe($);const St=j(Vt);return this._addSvgIconSetConfig(H,new Ee("",St,Ke))}registerFontClassAlias(H,$=H){return this._fontCssClassesByAlias.set(H,$),this}classNameForFontAlias(H){return this._fontCssClassesByAlias.get(H)||H}setDefaultFontSetClass(...H){return this._defaultFontSetClass=H,this}getDefaultFontSetClass(){return this._defaultFontSetClass}getSvgIconFromUrl(H){const $=this._sanitizer.sanitize(i.WPN.RESOURCE_URL,H);if(!$)throw re(H);const Ke=this._cachedIconsByUrl.get($);return Ke?(0,f.of)(ne(Ke)):this._loadSvgIconFromConfig(new Ee(H,null)).pipe((0,C.M)(Vt=>this._cachedIconsByUrl.set($,Vt)),(0,B.T)(Vt=>ne(Vt)))}getNamedSvgIcon(H,$=""){const Ke=J($,H);let Vt=this._svgIconConfigs.get(Ke);if(Vt)return this._getSvgFromConfig(Vt);if(Vt=this._getIconConfigFromResolvers($,H),Vt)return this._svgIconConfigs.set(Ke,Vt),this._getSvgFromConfig(Vt);const St=this._iconSetConfigs.get($);return St?this._getSvgFromIconSetConfigs(H,St):(0,u.$)(W(Ke))}ngOnDestroy(){this._resolvers=[],this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}_getSvgFromConfig(H){return H.svgText?(0,f.of)(ne(this._svgElementFromConfig(H))):this._loadSvgIconFromConfig(H).pipe((0,B.T)($=>ne($)))}_getSvgFromIconSetConfigs(H,$){const Ke=this._extractIconWithNameFromAnySet(H,$);if(Ke)return(0,f.of)(Ke);const Vt=$.filter(St=>!St.svgText).map(St=>this._loadSvgIconSetFromConfig(St).pipe((0,A.W)(ot=>{const ht=`Loading icon set URL: ${this._sanitizer.sanitize(i.WPN.RESOURCE_URL,St.url)} failed: ${ot.message}`;return this._errorHandler.handleError(new Error(ht)),(0,f.of)(null)})));return(0,L.p)(Vt).pipe((0,B.T)(()=>{const St=this._extractIconWithNameFromAnySet(H,$);if(!St)throw W(H);return St}))}_extractIconWithNameFromAnySet(H,$){for(let Ke=$.length-1;Ke>=0;Ke--){const Vt=$[Ke];if(Vt.svgText&&Vt.svgText.toString().indexOf(H)>-1){const St=this._svgElementFromConfig(Vt),ot=this._extractSvgIconFromSet(St,H,Vt.options);if(ot)return ot}}return null}_loadSvgIconFromConfig(H){return this._fetchIcon(H).pipe((0,C.M)($=>H.svgText=$),(0,B.T)(()=>this._svgElementFromConfig(H)))}_loadSvgIconSetFromConfig(H){return H.svgText?(0,f.of)(null):this._fetchIcon(H).pipe((0,C.M)($=>H.svgText=$))}_extractSvgIconFromSet(H,$,Ke){const Vt=H.querySelector(`[id="${$}"]`);if(!Vt)return null;const St=Vt.cloneNode(!0);if(St.removeAttribute("id"),"svg"===St.nodeName.toLowerCase())return this._setSvgAttributes(St,Ke);if("symbol"===St.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(St),Ke);const ot=this._svgElementFromString(j(""));return ot.appendChild(St),this._setSvgAttributes(ot,Ke)}_svgElementFromString(H){const $=this._document.createElement("DIV");$.innerHTML=H;const Ke=$.querySelector("svg");if(!Ke)throw Error(" tag not found");return Ke}_toSvgElement(H){const $=this._svgElementFromString(j("")),Ke=H.attributes;for(let Vt=0;Vtj(ht)),(0,Pe.j)(()=>this._inProgressUrlFetches.delete(St)),(0,le.u)());return this._inProgressUrlFetches.set(St,nt),nt}_addSvgIconConfig(H,$,Ke){return this._svgIconConfigs.set(J(H,$),Ke),this}_addSvgIconSetConfig(H,$){const Ke=this._iconSetConfigs.get(H);return Ke?Ke.push($):this._iconSetConfigs.set(H,[$]),this}_svgElementFromConfig(H){if(!H.svgElement){const $=this._svgElementFromString(H.svgText);this._setSvgAttributes($,H.options),H.svgElement=$}return H.svgElement}_getIconConfigFromResolvers(H,$){for(let Ke=0;Keve?ve.pathname+ve.search:""}}}),lt=["clip-path","color-profile","src","cursor","fill","filter","marker","marker-start","marker-mid","marker-end","mask","stroke"],Le=lt.map(F=>`[${F}]`).join(", "),te=/^url\(['"]?#(.*?)['"]?\)$/;let ie=(()=>{class F{_elementRef=(0,d.WQX)(i.aKT);_iconRegistry=(0,d.WQX)(V);_location=(0,d.WQX)(he);_errorHandler=(0,d.WQX)(d.zcH);_defaultColor;get color(){return this._color||this._defaultColor}set color(H){this._color=H}_color;inline=!1;get svgIcon(){return this._svgIcon}set svgIcon(H){H!==this._svgIcon&&(H?this._updateSvgIcon(H):this._svgIcon&&this._clearSvgElement(),this._svgIcon=H)}_svgIcon;get fontSet(){return this._fontSet}set fontSet(H){const $=this._cleanupFontValue(H);$!==this._fontSet&&(this._fontSet=$,this._updateFontIconClasses())}_fontSet;get fontIcon(){return this._fontIcon}set fontIcon(H){const $=this._cleanupFontValue(H);$!==this._fontIcon&&(this._fontIcon=$,this._updateFontIconClasses())}_fontIcon;_previousFontSetClass=[];_previousFontIconClass;_svgName;_svgNamespace;_previousPath;_elementsWithExternalReferences;_currentIconFetch=T.yU.EMPTY;constructor(){const H=(0,d.WQX)(new v.ES_("aria-hidden"),{optional:!0}),$=(0,d.WQX)(_e,{optional:!0});$&&($.color&&(this.color=this._defaultColor=$.color),$.fontSet&&(this.fontSet=$.fontSet)),H||this._elementRef.nativeElement.setAttribute("aria-hidden","true")}_splitIconName(H){if(!H)return["",""];const $=H.split(":");switch($.length){case 1:return["",$[0]];case 2:return $;default:throw Error(`Invalid icon name: "${H}"`)}}ngOnInit(){this._updateFontIconClasses()}ngAfterViewChecked(){const H=this._elementsWithExternalReferences;if(H&&H.size){const $=this._location.getPathname();$!==this._previousPath&&(this._previousPath=$,this._prependPathToReferences($))}}ngOnDestroy(){this._currentIconFetch.unsubscribe(),this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear()}_usingFontIcon(){return!this.svgIcon}_setSvgElement(H){this._clearSvgElement();const $=this._location.getPathname();this._previousPath=$,this._cacheChildrenWithExternalReferences(H),this._prependPathToReferences($),this._elementRef.nativeElement.appendChild(H)}_clearSvgElement(){const H=this._elementRef.nativeElement;let $=H.childNodes.length;for(this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear();$--;){const Ke=H.childNodes[$];(1!==Ke.nodeType||"svg"===Ke.nodeName.toLowerCase())&&Ke.remove()}}_updateFontIconClasses(){if(!this._usingFontIcon())return;const H=this._elementRef.nativeElement,$=(this.fontSet?this._iconRegistry.classNameForFontAlias(this.fontSet).split(/ +/):this._iconRegistry.getDefaultFontSetClass()).filter(Ke=>Ke.length>0);this._previousFontSetClass.forEach(Ke=>H.classList.remove(Ke)),$.forEach(Ke=>H.classList.add(Ke)),this._previousFontSetClass=$,this.fontIcon!==this._previousFontIconClass&&!$.includes("mat-ligature-font")&&(this._previousFontIconClass&&H.classList.remove(this._previousFontIconClass),this.fontIcon&&H.classList.add(this.fontIcon),this._previousFontIconClass=this.fontIcon)}_cleanupFontValue(H){return"string"==typeof H?H.trim().split(" ")[0]:H}_prependPathToReferences(H){const $=this._elementsWithExternalReferences;$&&$.forEach((Ke,Vt)=>{Ke.forEach(St=>{Vt.setAttribute(St.name,`url('${H}#${St.value}')`)})})}_cacheChildrenWithExternalReferences(H){const $=H.querySelectorAll(Le),Ke=this._elementsWithExternalReferences=this._elementsWithExternalReferences||new Map;for(let Vt=0;Vt<$.length;Vt++)lt.forEach(St=>{const ot=$[Vt],nt=ot.getAttribute(St),ht=nt?nt.match(te):null;if(ht){let oe=Ke.get(ot);oe||(oe=[],Ke.set(ot,oe)),oe.push({name:St,value:ht[1]})}})}_updateSvgIcon(H){if(this._svgNamespace=null,this._svgName=null,this._currentIconFetch.unsubscribe(),H){const[$,Ke]=this._splitIconName(H);$&&(this._svgNamespace=$),Ke&&(this._svgName=Ke),this._currentIconFetch=this._iconRegistry.getNamedSvgIcon(Ke,$).pipe((0,w.s)(1)).subscribe(Vt=>this._setSvgElement(Vt),Vt=>{this._errorHandler.handleError(new Error(`Error retrieving icon ${$}:${Ke}! ${Vt.message}`))})}}static \u0275fac=function($){return new($||F)};static \u0275cmp=i.VBU({type:F,selectors:[["mat-icon"]],hostAttrs:["role","img",1,"mat-icon","notranslate"],hostVars:10,hostBindings:function($,Ke){2&$&&(i.BMQ("data-mat-icon-type",Ke._usingFontIcon()?"font":"svg")("data-mat-icon-name",Ke._svgName||Ke.fontIcon)("data-mat-icon-namespace",Ke._svgNamespace||Ke.fontSet)("fontIcon",Ke._usingFontIcon()?Ke.fontIcon:null),i.HbH(Ke.color?"mat-"+Ke.color:""),i.AVh("mat-icon-inline",Ke.inline)("mat-icon-no-color","primary"!==Ke.color&&"accent"!==Ke.color&&"warn"!==Ke.color))},inputs:{color:"color",inline:[2,"inline","inline",v.L39],svgIcon:"svgIcon",fontSet:"fontSet",fontIcon:"fontIcon"},exportAs:["matIcon"],ngContentSelectors:Xe,decls:1,vars:0,template:function($,Ke){1&$&&(i.NAR(),i.SdG(0))},styles:["mat-icon,mat-icon.mat-primary,mat-icon.mat-accent,mat-icon.mat-warn{color:var(--mat-icon-color, inherit)}.mat-icon{-webkit-user-select:none;user-select:none;background-repeat:no-repeat;display:inline-block;fill:currentColor;height:24px;width:24px;overflow:hidden}.mat-icon.mat-icon-inline{font-size:inherit;height:inherit;line-height:inherit;width:inherit}.mat-icon.mat-ligature-font[fontIcon]::before{content:attr(fontIcon)}[dir=rtl] .mat-icon-rtl-mirror{transform:scale(-1, 1)}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon{display:block}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button .mat-icon{margin:auto}\n"],encapsulation:2,changeDetection:0})}return F})(),P=(()=>{class F{static \u0275fac=function($){return new($||F)};static \u0275mod=i.$C({type:F});static \u0275inj=d.G2t({imports:[Re.y,Re.y]})}return F})()},8010(Zt,pe,l){"use strict";l.d(pe,{O:()=>d});const d=new(l(2615).nKC)("MAT_INPUT_VALUE_ACCESSOR")},3746(Zt,pe,l){"use strict";l.d(pe,{fg:()=>St,fS:()=>ot});var i=l(4085),d=l(9842);let w;const e=["color","button","checkbox","date","datetime-local","email","file","hidden","image","month","number","password","radio","range","reset","search","submit","tel","text","time","url","week"];function O(){if(w)return w;if("object"!=typeof document||!document)return w=new Set(e),w;let nt=document.createElement("input");return w=new Set(e.filter(ht=>(nt.setAttribute("type",ht),nt.type===ht))),w}var f=l(3664),u=l(2615),L=l(983),C=l(1413),B=l(8968),A=l(7847);let ne=(()=>{class nt{static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275cmp=f.VBU({type:nt,selectors:[["ng-component"]],hostAttrs:["cdk-text-field-style-loader",""],decls:0,vars:0,template:function(Ye,fe){},styles:["textarea.cdk-textarea-autosize{resize:none}textarea.cdk-textarea-autosize-measuring{padding:2px 0 !important;box-sizing:content-box !important;height:auto !important;overflow:hidden !important}textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0 !important;box-sizing:content-box !important;height:0 !important}@keyframes cdk-text-field-autofill-start{/*!*/}@keyframes cdk-text-field-autofill-end{/*!*/}.cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}.cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}\n"],encapsulation:2,changeDetection:0})}return nt})();const J={passive:!0};let De=(()=>{class nt{_platform=(0,u.WQX)(d.O);_ngZone=(0,u.WQX)(f.SKi);_renderer=(0,u.WQX)(f._9s).createRenderer(null,null);_styleLoader=(0,u.WQX)(B.l);_monitoredElements=new Map;constructor(){}monitor(oe){if(!this._platform.isBrowser)return L.w;this._styleLoader.load(ne);const Ye=(0,A.i8)(oe),fe=this._monitoredElements.get(Ye);if(fe)return fe.subject;const Qe=new C.B,gt="cdk-text-field-autofilled",Gt=cn=>{"cdk-text-field-autofill-start"!==cn.animationName||Ye.classList.contains(gt)?"cdk-text-field-autofill-end"===cn.animationName&&Ye.classList.contains(gt)&&(Ye.classList.remove(gt),this._ngZone.run(()=>Qe.next({target:cn.target,isAutofilled:!1}))):(Ye.classList.add(gt),this._ngZone.run(()=>Qe.next({target:cn.target,isAutofilled:!0})))},rt=this._ngZone.runOutsideAngular(()=>(Ye.classList.add("cdk-text-field-autofill-monitored"),this._renderer.listen(Ye,"animationstart",Gt,J)));return this._monitoredElements.set(Ye,{subject:Qe,unlisten:rt}),Qe}stopMonitoring(oe){const Ye=(0,A.i8)(oe),fe=this._monitoredElements.get(Ye);fe&&(fe.unlisten(),fe.subject.complete(),Ye.classList.remove("cdk-text-field-autofill-monitored"),Ye.classList.remove("cdk-text-field-autofilled"),this._monitoredElements.delete(Ye))}ngOnDestroy(){this._monitoredElements.forEach((oe,Ye)=>this.stopMonitoring(Ye))}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275prov=u.jDH({token:nt,factory:nt.\u0275fac,providedIn:"root"})}return nt})(),_e=(()=>{class nt{static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275mod=f.$C({type:nt});static \u0275inj=u.G2t({})}return nt})();var he=l(9295),Dt=l(7705),lt=l(9726),Le=l(9417),te=l(8010),ie=l(9588),P=l(2709),F=l(9336),ve=l(1228),H=l(2466);const Ke=["button","checkbox","file","hidden","image","radio","range","reset","submit"],Vt=new u.nKC("MAT_INPUT_CONFIG");let St=(()=>{class nt{_elementRef=(0,u.WQX)(f.aKT);_platform=(0,u.WQX)(d.O);ngControl=(0,u.WQX)(Le.vO,{optional:!0,self:!0});_autofillMonitor=(0,u.WQX)(De);_ngZone=(0,u.WQX)(f.SKi);_formField=(0,u.WQX)(ie.xb,{optional:!0});_renderer=(0,u.WQX)(f.sFG);_uid=(0,u.WQX)(lt.g).getId("mat-input-");_previousNativeValue;_inputValueAccessor;_signalBasedValueAccessor;_previousPlaceholder;_errorStateTracker;_config=(0,u.WQX)(Vt,{optional:!0});_cleanupIosKeyup;_cleanupWebkitWheel;_isServer;_isNativeSelect;_isTextarea;_isInFormField;focused=!1;stateChanges=new C.B;controlType="mat-input";autofilled=!1;get disabled(){return this._disabled}set disabled(oe){this._disabled=(0,i.he)(oe),this.focused&&(this.focused=!1,this.stateChanges.next())}_disabled=!1;get id(){return this._id}set id(oe){this._id=oe||this._uid}_id;placeholder;name;get required(){return this._required??this.ngControl?.control?.hasValidator(Le.k0.required)??!1}set required(oe){this._required=(0,i.he)(oe)}_required;get type(){return this._type}set type(oe){this._type=oe||"text",this._validateType(),!this._isTextarea&&O().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}_type="text";get errorStateMatcher(){return this._errorStateTracker.matcher}set errorStateMatcher(oe){this._errorStateTracker.matcher=oe}userAriaDescribedBy;get value(){return this._signalBasedValueAccessor?this._signalBasedValueAccessor.value():this._inputValueAccessor.value}set value(oe){oe!==this.value&&(this._signalBasedValueAccessor?this._signalBasedValueAccessor.value.set(oe):this._inputValueAccessor.value=oe,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(oe){this._readonly=(0,i.he)(oe)}_readonly=!1;disabledInteractive;get errorState(){return this._errorStateTracker.errorState}set errorState(oe){this._errorStateTracker.errorState=oe}_neverEmptyInputTypes=["date","datetime","datetime-local","month","time","week"].filter(oe=>O().has(oe));constructor(){const oe=(0,u.WQX)(Le.cV,{optional:!0}),Ye=(0,u.WQX)(Le.j4,{optional:!0}),fe=(0,u.WQX)(P.e),Qe=(0,u.WQX)(te.O,{optional:!0,self:!0}),gt=this._elementRef.nativeElement,Gt=gt.nodeName.toLowerCase();Qe?(0,u.Hps)(Qe.value)?this._signalBasedValueAccessor=Qe:this._inputValueAccessor=Qe:this._inputValueAccessor=gt,this._previousNativeValue=this.value,this.id=this.id,this._platform.IOS&&this._ngZone.runOutsideAngular(()=>{this._cleanupIosKeyup=this._renderer.listen(gt,"keyup",this._iOSKeyupListener)}),this._errorStateTracker=new F.X(fe,this.ngControl,Ye,oe,this.stateChanges),this._isServer=!this._platform.isBrowser,this._isNativeSelect="select"===Gt,this._isTextarea="textarea"===Gt,this._isInFormField=!!this._formField,this.disabledInteractive=this._config?.disabledInteractive||!1,this._isNativeSelect&&(this.controlType=gt.multiple?"mat-native-select-multiple":"mat-native-select"),this._signalBasedValueAccessor&&(0,he.QZ)(()=>{this._signalBasedValueAccessor.value(),this.stateChanges.next()})}ngAfterViewInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(oe=>{this.autofilled=oe.isAutofilled,this.stateChanges.next()})}ngOnChanges(){this.stateChanges.next()}ngOnDestroy(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement),this._cleanupIosKeyup?.(),this._cleanupWebkitWheel?.()}ngDoCheck(){this.ngControl&&(this.updateErrorState(),null!==this.ngControl.disabled&&this.ngControl.disabled!==this.disabled&&(this.disabled=this.ngControl.disabled,this.stateChanges.next())),this._dirtyCheckNativeValue(),this._dirtyCheckPlaceholder()}focus(oe){this._elementRef.nativeElement.focus(oe)}updateErrorState(){this._errorStateTracker.updateErrorState()}_focusChanged(oe){if(oe!==this.focused){if(!this._isNativeSelect&&oe&&this.disabled&&this.disabledInteractive){const Ye=this._elementRef.nativeElement;"number"===Ye.type?(Ye.type="text",Ye.setSelectionRange(0,0),Ye.type="number"):Ye.setSelectionRange(0,0)}this.focused=oe,this.stateChanges.next()}}_onInput(){}_dirtyCheckNativeValue(){const oe=this._elementRef.nativeElement.value;this._previousNativeValue!==oe&&(this._previousNativeValue=oe,this.stateChanges.next())}_dirtyCheckPlaceholder(){const oe=this._getPlaceholder();if(oe!==this._previousPlaceholder){const Ye=this._elementRef.nativeElement;this._previousPlaceholder=oe,oe?Ye.setAttribute("placeholder",oe):Ye.removeAttribute("placeholder")}}_getPlaceholder(){return this.placeholder||null}_validateType(){Ke.indexOf(this._type)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let oe=this._elementRef.nativeElement.validity;return oe&&oe.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const oe=this._elementRef.nativeElement,Ye=oe.options[0];return this.focused||oe.multiple||!this.empty||!!(oe.selectedIndex>-1&&Ye&&Ye.label)}return this.focused&&!this.disabled||!this.empty}get describedByIds(){return this._elementRef.nativeElement.getAttribute("aria-describedby")?.split(" ")||[]}setDescribedByIds(oe){const Ye=this._elementRef.nativeElement;oe.length?Ye.setAttribute("aria-describedby",oe.join(" ")):Ye.removeAttribute("aria-describedby")}onContainerClick(){this.focused||this.focus()}_isInlineSelect(){const oe=this._elementRef.nativeElement;return this._isNativeSelect&&(oe.multiple||oe.size>1)}_iOSKeyupListener=oe=>{const Ye=oe.target;!Ye.value&&0===Ye.selectionStart&&0===Ye.selectionEnd&&(Ye.setSelectionRange(1,1),Ye.setSelectionRange(0,0))};_getReadonlyAttribute(){return this._isNativeSelect?null:this.readonly||this.disabled&&this.disabledInteractive?"true":null}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275dir=f.FsC({type:nt,selectors:[["input","matInput",""],["textarea","matInput",""],["select","matNativeControl",""],["input","matNativeControl",""],["textarea","matNativeControl",""]],hostAttrs:[1,"mat-mdc-input-element"],hostVars:21,hostBindings:function(Ye,fe){1&Ye&&f.bIt("focus",function(){return fe._focusChanged(!0)})("blur",function(){return fe._focusChanged(!1)})("input",function(){return fe._onInput()}),2&Ye&&(f.Avn("id",fe.id)("disabled",fe.disabled&&!fe.disabledInteractive)("required",fe.required),f.BMQ("name",fe.name||null)("readonly",fe._getReadonlyAttribute())("aria-disabled",fe.disabled&&fe.disabledInteractive?"true":null)("aria-invalid",fe.empty&&fe.required?null:fe.errorState)("aria-required",fe.required)("id",fe.id),f.AVh("mat-input-server",fe._isServer)("mat-mdc-form-field-textarea-control",fe._isInFormField&&fe._isTextarea)("mat-mdc-form-field-input-control",fe._isInFormField)("mat-mdc-input-disabled-interactive",fe.disabledInteractive)("mdc-text-field__input",fe._isInFormField)("mat-mdc-native-select-inline",fe._isInlineSelect()))},inputs:{disabled:"disabled",id:"id",placeholder:"placeholder",name:"name",required:"required",type:"type",errorStateMatcher:"errorStateMatcher",userAriaDescribedBy:[0,"aria-describedby","userAriaDescribedBy"],value:"value",readonly:"readonly",disabledInteractive:[2,"disabledInteractive","disabledInteractive",Dt.L39]},exportAs:["matInput"],features:[f.Jv_([{provide:ie.qT,useExisting:nt}]),f.OA$]})}return nt})(),ot=(()=>{class nt{static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275mod=f.$C({type:nt});static \u0275inj=u.G2t({imports:[H.y,ve.R,ve.R,_e,H.y]})}return nt})()},3155(Zt,pe,l){"use strict";l.d(pe,{t:()=>T});var i=l(3664);const d=["mat-internal-form-field",""],v=["*"];let T=(()=>{class w{labelPosition;static \u0275fac=function(f){return new(f||w)};static \u0275cmp=i.VBU({type:w,selectors:[["div","mat-internal-form-field",""]],hostAttrs:[1,"mdc-form-field","mat-internal-form-field"],hostVars:2,hostBindings:function(f,u){2&f&&i.AVh("mdc-form-field--align-end","before"===u.labelPosition)},inputs:{labelPosition:"labelPosition"},attrs:d,ngContentSelectors:v,decls:1,vars:0,template:function(f,u){1&f&&(i.NAR(),i.SdG(0))},styles:[".mat-internal-form-field{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-flex;align-items:center;vertical-align:middle}.mat-internal-form-field>label{margin-left:0;margin-right:auto;padding-left:4px;padding-right:0;order:0}[dir=rtl] .mat-internal-form-field>label{margin-left:auto;margin-right:0;padding-left:0;padding-right:4px}.mdc-form-field--align-end>label{margin-left:auto;margin-right:0;padding-left:0;padding-right:4px;order:-1}[dir=rtl] .mdc-form-field--align-end .mdc-form-field--align-end label{margin-left:0;margin-right:auto;padding-left:4px;padding-right:0}\n"],encapsulation:2,changeDetection:0})}return w})()},3902(Zt,pe,l){"use strict";l.d(pe,{Fg:()=>ee,YE:()=>pt,jt:()=>wt});var d=l(4085),v=l(7847),T=l(2615),w=l(3664),O=(l(7705),l(9842)),u=(l(4522),l(8968)),C=(l(1413),l(8359)),B=l(7786),A=l(2496),Pe=l(1804),le=l(2046),Ae=(l(2200),l(2318)),j=l(1997),ce=(l(4123),l(3869),l(7336),l(438),l(9417),l(6977),l(483)),be=l(2466),ne=l(6881);const J=["*"],Re=["unscopedContent"],Xe=["text"],_e=[[["","matListItemAvatar",""],["","matListItemIcon",""]],[["","matListItemTitle",""]],[["","matListItemLine",""]],"*",[["","matListItemMeta",""]],[["mat-divider"]]],he=["[matListItemAvatar],[matListItemIcon]","[matListItemTitle]","[matListItemLine]","*","[matListItemMeta]","mat-divider"],Ye=new T.nKC("ListOption");let fe=(()=>{class ye{_elementRef=(0,T.WQX)(w.aKT);constructor(){}static \u0275fac=function(ge){return new(ge||ye)};static \u0275dir=w.FsC({type:ye,selectors:[["","matListItemTitle",""]],hostAttrs:[1,"mat-mdc-list-item-title","mdc-list-item__primary-text"]})}return ye})(),Qe=(()=>{class ye{_elementRef=(0,T.WQX)(w.aKT);constructor(){}static \u0275fac=function(ge){return new(ge||ye)};static \u0275dir=w.FsC({type:ye,selectors:[["","matListItemLine",""]],hostAttrs:[1,"mat-mdc-list-item-line","mdc-list-item__secondary-text"]})}return ye})(),gt=(()=>{class ye{static \u0275fac=function(ge){return new(ge||ye)};static \u0275dir=w.FsC({type:ye,selectors:[["","matListItemMeta",""]],hostAttrs:[1,"mat-mdc-list-item-meta","mdc-list-item__end"]})}return ye})(),Gt=(()=>{class ye{_listOption=(0,T.WQX)(Ye,{optional:!0});constructor(){}_isAlignedAtStart(){return!this._listOption||"after"===this._listOption?._getTogglePosition()}static \u0275fac=function(ge){return new(ge||ye)};static \u0275dir=w.FsC({type:ye,hostVars:4,hostBindings:function(ge,N){2&ge&&w.AVh("mdc-list-item__start",N._isAlignedAtStart())("mdc-list-item__end",!N._isAlignedAtStart())}})}return ye})(),rt=(()=>{class ye extends Gt{static \u0275fac=(()=>{let Se;return function(N){return(Se||(Se=w.xGo(ye)))(N||ye)}})();static \u0275dir=w.FsC({type:ye,selectors:[["","matListItemAvatar",""]],hostAttrs:[1,"mat-mdc-list-item-avatar"],features:[w.Vt3]})}return ye})(),cn=(()=>{class ye extends Gt{static \u0275fac=(()=>{let Se;return function(N){return(Se||(Se=w.xGo(ye)))(N||ye)}})();static \u0275dir=w.FsC({type:ye,selectors:[["","matListItemIcon",""]],hostAttrs:[1,"mat-mdc-list-item-icon"],features:[w.Vt3]})}return ye})();const Ft=new T.nKC("MAT_LIST_CONFIG");let Sn=(()=>{class ye{_isNonInteractive=!0;get disableRipple(){return this._disableRipple}set disableRipple(Se){this._disableRipple=(0,d.he)(Se)}_disableRipple=!1;get disabled(){return this._disabled()}set disabled(Se){this._disabled.set((0,d.he)(Se))}_disabled=(0,T.vPA)(!1);_defaultOptions=(0,T.WQX)(Ft,{optional:!0});static \u0275fac=function(ge){return new(ge||ye)};static \u0275dir=w.FsC({type:ye,hostVars:1,hostBindings:function(ge,N){2&ge&&w.BMQ("aria-disabled",N.disabled)},inputs:{disableRipple:"disableRipple",disabled:"disabled"}})}return ye})(),Qn=(()=>{class ye{_elementRef=(0,T.WQX)(w.aKT);_ngZone=(0,T.WQX)(w.SKi);_listBase=(0,T.WQX)(Sn,{optional:!0});_platform=(0,T.WQX)(O.O);_hostElement;_isButtonElement;_noopAnimations=(0,Pe.Rc)();_avatars;_icons;set lines(Se){this._explicitLines=(0,v.OE)(Se,null),this._updateItemLines(!1)}_explicitLines=null;get disableRipple(){return this.disabled||this._disableRipple||this._noopAnimations||!!this._listBase?.disableRipple}set disableRipple(Se){this._disableRipple=(0,d.he)(Se)}_disableRipple=!1;get disabled(){return this._disabled()||!!this._listBase?.disabled}set disabled(Se){this._disabled.set((0,d.he)(Se))}_disabled=(0,T.vPA)(!1);_subscriptions=new C.yU;_rippleRenderer=null;_hasUnscopedTextContent=!1;rippleConfig;get rippleDisabled(){return this.disableRipple||!!this.rippleConfig.disabled}constructor(){(0,T.WQX)(u.l).load(le.A);const Se=(0,T.WQX)(A.$E,{optional:!0});this.rippleConfig=Se||{},this._hostElement=this._elementRef.nativeElement,this._isButtonElement="button"===this._hostElement.nodeName.toLowerCase(),this._listBase&&!this._listBase._isNonInteractive&&this._initInteractiveListItem(),this._isButtonElement&&!this._hostElement.hasAttribute("type")&&this._hostElement.setAttribute("type","button")}ngAfterViewInit(){this._monitorProjectedLinesAndTitle(),this._updateItemLines(!0)}ngOnDestroy(){this._subscriptions.unsubscribe(),null!==this._rippleRenderer&&this._rippleRenderer._removeTriggerEvents()}_hasIconOrAvatar(){return!(!this._avatars.length&&!this._icons.length)}_initInteractiveListItem(){this._hostElement.classList.add("mat-mdc-list-item-interactive"),this._rippleRenderer=new A.ug(this,this._ngZone,this._hostElement,this._platform,(0,T.WQX)(T.zZn)),this._rippleRenderer.setupTriggerEvents(this._hostElement)}_monitorProjectedLinesAndTitle(){this._ngZone.runOutsideAngular(()=>{this._subscriptions.add((0,B.h)(this._lines.changes,this._titles.changes).subscribe(()=>this._updateItemLines(!1)))})}_updateItemLines(Se){if(!this._lines||!this._titles||!this._unscopedContent)return;Se&&this._checkDomForUnscopedTextContent();const ge=this._explicitLines??this._inferLinesFromContent(),N=this._unscopedContent.nativeElement;if(this._hostElement.classList.toggle("mat-mdc-list-item-single-line",ge<=1),this._hostElement.classList.toggle("mdc-list-item--with-one-line",ge<=1),this._hostElement.classList.toggle("mdc-list-item--with-two-lines",2===ge),this._hostElement.classList.toggle("mdc-list-item--with-three-lines",3===ge),this._hasUnscopedTextContent){const Z=0===this._titles.length&&1===ge;N.classList.toggle("mdc-list-item__primary-text",Z),N.classList.toggle("mdc-list-item__secondary-text",!Z)}else N.classList.remove("mdc-list-item__primary-text"),N.classList.remove("mdc-list-item__secondary-text")}_inferLinesFromContent(){let Se=this._titles.length+this._lines.length;return this._hasUnscopedTextContent&&(Se+=1),Se}_checkDomForUnscopedTextContent(){this._hasUnscopedTextContent=Array.from(this._unscopedContent.nativeElement.childNodes).filter(Se=>Se.nodeType!==Se.COMMENT_NODE).some(Se=>!(!Se.textContent||!Se.textContent.trim()))}static \u0275fac=function(ge){return new(ge||ye)};static \u0275dir=w.FsC({type:ye,contentQueries:function(ge,N,Z){if(1&ge&&(w.wni(Z,rt,4),w.wni(Z,cn,4)),2&ge){let Me;w.mGM(Me=w.lsd())&&(N._avatars=Me),w.mGM(Me=w.lsd())&&(N._icons=Me)}},hostVars:4,hostBindings:function(ge,N){2&ge&&(w.BMQ("aria-disabled",N.disabled)("disabled",N._isButtonElement&&N.disabled||null),w.AVh("mdc-list-item--disabled",N.disabled))},inputs:{lines:"lines",disableRipple:"disableRipple",disabled:"disabled"}})}return ye})(),wt=(()=>{class ye extends Sn{static \u0275fac=(()=>{let Se;return function(N){return(Se||(Se=w.xGo(ye)))(N||ye)}})();static \u0275cmp=w.VBU({type:ye,selectors:[["mat-list"]],hostAttrs:[1,"mat-mdc-list","mat-mdc-list-base","mdc-list"],exportAs:["matList"],features:[w.Jv_([{provide:Sn,useExisting:ye}]),w.Vt3],ngContentSelectors:J,decls:1,vars:0,template:function(ge,N){1&ge&&(w.NAR(),w.SdG(0))},styles:['.mdc-list{margin:0;padding:8px 0;list-style-type:none}.mdc-list:focus{outline:none}.mdc-list-item{display:flex;position:relative;justify-content:flex-start;overflow:hidden;padding:0;align-items:stretch;cursor:pointer;padding-left:16px;padding-right:16px;background-color:var(--mat-list-list-item-container-color, transparent);border-radius:var(--mat-list-list-item-container-shape, var(--mat-sys-corner-none))}.mdc-list-item.mdc-list-item--selected{background-color:var(--mat-list-list-item-selected-container-color)}.mdc-list-item:focus{outline:0}.mdc-list-item.mdc-list-item--disabled{cursor:auto}.mdc-list-item.mdc-list-item--with-one-line{height:var(--mat-list-list-item-one-line-container-height, 48px)}.mdc-list-item.mdc-list-item--with-one-line .mdc-list-item__start{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-one-line .mdc-list-item__end{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-two-lines{height:var(--mat-list-list-item-two-line-container-height, 64px)}.mdc-list-item.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--with-two-lines .mdc-list-item__end{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-three-lines{height:var(--mat-list-list-item-three-line-container-height, 88px)}.mdc-list-item.mdc-list-item--with-three-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--selected::before,.mdc-list-item.mdc-list-item--selected:focus::before,.mdc-list-item:not(.mdc-list-item--selected):focus::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;content:"";pointer-events:none}a.mdc-list-item{color:inherit;text-decoration:none}.mdc-list-item__start{fill:currentColor;flex-shrink:0;pointer-events:none}.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mat-list-list-item-leading-icon-color, var(--mat-sys-on-surface-variant));width:var(--mat-list-list-item-leading-icon-size, 24px);height:var(--mat-list-list-item-leading-icon-size, 24px);margin-left:16px;margin-right:32px}[dir=rtl] .mdc-list-item--with-leading-icon .mdc-list-item__start{margin-left:32px;margin-right:16px}.mdc-list-item--with-leading-icon:hover .mdc-list-item__start{color:var(--mat-list-list-item-hover-leading-icon-color)}.mdc-list-item--with-leading-avatar .mdc-list-item__start{width:var(--mat-list-list-item-leading-avatar-size, 40px);height:var(--mat-list-list-item-leading-avatar-size, 40px);margin-left:16px;margin-right:16px;border-radius:50%}.mdc-list-item--with-leading-avatar .mdc-list-item__start,[dir=rtl] .mdc-list-item--with-leading-avatar .mdc-list-item__start{margin-left:16px;margin-right:16px;border-radius:50%}.mdc-list-item__end{flex-shrink:0;pointer-events:none}.mdc-list-item--with-trailing-meta .mdc-list-item__end{font-family:var(--mat-list-list-item-trailing-supporting-text-font, var(--mat-sys-label-small-font));line-height:var(--mat-list-list-item-trailing-supporting-text-line-height, var(--mat-sys-label-small-line-height));font-size:var(--mat-list-list-item-trailing-supporting-text-size, var(--mat-sys-label-small-size));font-weight:var(--mat-list-list-item-trailing-supporting-text-weight, var(--mat-sys-label-small-weight));letter-spacing:var(--mat-list-list-item-trailing-supporting-text-tracking, var(--mat-sys-label-small-tracking))}.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mat-list-list-item-trailing-icon-color, var(--mat-sys-on-surface-variant));width:var(--mat-list-list-item-trailing-icon-size, 24px);height:var(--mat-list-list-item-trailing-icon-size, 24px)}.mdc-list-item--with-trailing-icon:hover .mdc-list-item__end{color:var(--mat-list-list-item-hover-trailing-icon-color)}.mdc-list-item.mdc-list-item--with-trailing-meta .mdc-list-item__end{color:var(--mat-list-list-item-trailing-supporting-text-color, var(--mat-sys-on-surface-variant))}.mdc-list-item--selected.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mat-list-list-item-selected-trailing-icon-color, var(--mat-sys-primary))}.mdc-list-item__content{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;align-self:center;flex:1;pointer-events:none}.mdc-list-item--with-two-lines .mdc-list-item__content,.mdc-list-item--with-three-lines .mdc-list-item__content{align-self:stretch}.mdc-list-item__primary-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:var(--mat-list-list-item-label-text-color, var(--mat-sys-on-surface));font-family:var(--mat-list-list-item-label-text-font, var(--mat-sys-body-large-font));line-height:var(--mat-list-list-item-label-text-line-height, var(--mat-sys-body-large-line-height));font-size:var(--mat-list-list-item-label-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-list-list-item-label-text-weight, var(--mat-sys-body-large-weight));letter-spacing:var(--mat-list-list-item-label-text-tracking, var(--mat-sys-body-large-tracking))}.mdc-list-item:hover .mdc-list-item__primary-text{color:var(--mat-list-list-item-hover-label-text-color, var(--mat-sys-on-surface))}.mdc-list-item:focus .mdc-list-item__primary-text{color:var(--mat-list-list-item-focus-label-text-color, var(--mat-sys-on-surface))}.mdc-list-item--with-two-lines .mdc-list-item__primary-text,.mdc-list-item--with-three-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before,.mdc-list-item--with-three-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after,.mdc-list-item--with-three-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item__secondary-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:block;margin-top:0;color:var(--mat-list-list-item-supporting-text-color, var(--mat-sys-on-surface-variant));font-family:var(--mat-list-list-item-supporting-text-font, var(--mat-sys-body-medium-font));line-height:var(--mat-list-list-item-supporting-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-list-list-item-supporting-text-size, var(--mat-sys-body-medium-size));font-weight:var(--mat-list-list-item-supporting-text-weight, var(--mat-sys-body-medium-weight));letter-spacing:var(--mat-list-list-item-supporting-text-tracking, var(--mat-sys-body-medium-tracking))}.mdc-list-item__secondary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item--with-three-lines .mdc-list-item__secondary-text{white-space:normal;line-height:20px}.mdc-list-item--with-overline .mdc-list-item__secondary-text{white-space:nowrap;line-height:auto}.mdc-list-item--with-leading-radio.mdc-list-item,.mdc-list-item--with-leading-checkbox.mdc-list-item,.mdc-list-item--with-leading-icon.mdc-list-item,.mdc-list-item--with-leading-avatar.mdc-list-item{padding-left:0;padding-right:16px}[dir=rtl] .mdc-list-item--with-leading-radio.mdc-list-item,[dir=rtl] .mdc-list-item--with-leading-checkbox.mdc-list-item,[dir=rtl] .mdc-list-item--with-leading-icon.mdc-list-item,[dir=rtl] .mdc-list-item--with-leading-avatar.mdc-list-item{padding-left:16px;padding-right:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text,.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text,.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before,.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before,.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after,.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after,.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end,.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end,.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before,.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before,.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-trailing-icon.mdc-list-item,[dir=rtl] .mdc-list-item--with-trailing-icon.mdc-list-item{padding-left:0;padding-right:0}.mdc-list-item--with-trailing-icon .mdc-list-item__end{margin-left:16px;margin-right:16px}.mdc-list-item--with-trailing-meta.mdc-list-item{padding-left:16px;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-meta.mdc-list-item{padding-left:0;padding-right:16px}.mdc-list-item--with-trailing-meta .mdc-list-item__end{-webkit-user-select:none;user-select:none;margin-left:28px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-meta .mdc-list-item__end{margin-left:16px;margin-right:28px}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end,.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end{display:block;line-height:normal;align-self:flex-start;margin-top:0}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end::before,.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio .mdc-list-item__start,.mdc-list-item--with-leading-checkbox .mdc-list-item__start{margin-left:8px;margin-right:24px}[dir=rtl] .mdc-list-item--with-leading-radio .mdc-list-item__start,[dir=rtl] .mdc-list-item--with-leading-checkbox .mdc-list-item__start{margin-left:24px;margin-right:8px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__start,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-trailing-radio.mdc-list-item,.mdc-list-item--with-trailing-checkbox.mdc-list-item{padding-left:16px;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-radio.mdc-list-item,[dir=rtl] .mdc-list-item--with-trailing-checkbox.mdc-list-item{padding-left:0;padding-right:16px}.mdc-list-item--with-trailing-radio.mdc-list-item--with-leading-icon,.mdc-list-item--with-trailing-radio.mdc-list-item--with-leading-avatar,.mdc-list-item--with-trailing-checkbox.mdc-list-item--with-leading-icon,.mdc-list-item--with-trailing-checkbox.mdc-list-item--with-leading-avatar{padding-left:0}[dir=rtl] .mdc-list-item--with-trailing-radio.mdc-list-item--with-leading-icon,[dir=rtl] .mdc-list-item--with-trailing-radio.mdc-list-item--with-leading-avatar,[dir=rtl] .mdc-list-item--with-trailing-checkbox.mdc-list-item--with-leading-icon,[dir=rtl] .mdc-list-item--with-trailing-checkbox.mdc-list-item--with-leading-avatar{padding-right:0}.mdc-list-item--with-trailing-radio .mdc-list-item__end,.mdc-list-item--with-trailing-checkbox .mdc-list-item__end{margin-left:24px;margin-right:8px}[dir=rtl] .mdc-list-item--with-trailing-radio .mdc-list-item__end,[dir=rtl] .mdc-list-item--with-trailing-checkbox .mdc-list-item__end{margin-left:8px;margin-right:24px}.mdc-list-item--with-trailing-radio.mdc-list-item--with-three-lines .mdc-list-item__end,.mdc-list-item--with-trailing-checkbox.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:8px}.mdc-list-group__subheader{margin:.75rem 16px}.mdc-list-item--disabled .mdc-list-item__start,.mdc-list-item--disabled .mdc-list-item__content,.mdc-list-item--disabled .mdc-list-item__end{opacity:1}.mdc-list-item--disabled .mdc-list-item__primary-text,.mdc-list-item--disabled .mdc-list-item__secondary-text{opacity:var(--mat-list-list-item-disabled-label-text-opacity, 0.3)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mat-list-list-item-disabled-leading-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-list-list-item-disabled-leading-icon-opacity, 0.38)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mat-list-list-item-disabled-trailing-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-list-list-item-disabled-trailing-icon-opacity, 0.38)}.mat-mdc-list-item.mat-mdc-list-item-both-leading-and-trailing,[dir=rtl] .mat-mdc-list-item.mat-mdc-list-item-both-leading-and-trailing{padding-left:0;padding-right:0}.mdc-list-item.mdc-list-item--disabled .mdc-list-item__primary-text{color:var(--mat-list-list-item-disabled-label-text-color, var(--mat-sys-on-surface))}.mdc-list-item:hover::before{background-color:var(--mat-list-list-item-hover-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-list-list-item-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mdc-list-item.mdc-list-item--disabled::before{background-color:var(--mat-list-list-item-disabled-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-list-list-item-disabled-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mdc-list-item:focus::before{background-color:var(--mat-list-list-item-focus-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-list-list-item-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mdc-list-item--disabled .mdc-radio,.mdc-list-item--disabled .mdc-checkbox{opacity:var(--mat-list-list-item-disabled-label-text-opacity, 0.3)}.mdc-list-item--with-leading-avatar .mat-mdc-list-item-avatar{border-radius:var(--mat-list-list-item-leading-avatar-shape, var(--mat-sys-corner-full));background-color:var(--mat-list-list-item-leading-avatar-color, var(--mat-sys-primary-container))}.mat-mdc-list-item-icon{font-size:var(--mat-list-list-item-leading-icon-size, 24px)}@media(forced-colors: active){a.mdc-list-item--activated::after{content:"";position:absolute;top:50%;right:16px;transform:translateY(-50%);width:10px;height:0;border-bottom:solid 10px;border-radius:10px}a.mdc-list-item--activated [dir=rtl]::after{right:auto;left:16px}}.mat-mdc-list-base{display:block}.mat-mdc-list-base .mdc-list-item__start,.mat-mdc-list-base .mdc-list-item__end,.mat-mdc-list-base .mdc-list-item__content{pointer-events:auto}.mat-mdc-list-item,.mat-mdc-list-option{width:100%;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-list-item:not(.mat-mdc-list-item-interactive),.mat-mdc-list-option:not(.mat-mdc-list-item-interactive){cursor:default}.mat-mdc-list-item .mat-divider-inset,.mat-mdc-list-option .mat-divider-inset{position:absolute;left:0;right:0;bottom:0}.mat-mdc-list-item .mat-mdc-list-item-avatar~.mat-divider-inset,.mat-mdc-list-option .mat-mdc-list-item-avatar~.mat-divider-inset{margin-left:72px}[dir=rtl] .mat-mdc-list-item .mat-mdc-list-item-avatar~.mat-divider-inset,[dir=rtl] .mat-mdc-list-option .mat-mdc-list-item-avatar~.mat-divider-inset{margin-right:72px}.mat-mdc-list-item-interactive::before{top:0;left:0;right:0;bottom:0;position:absolute;content:"";opacity:0;pointer-events:none;border-radius:inherit}.mat-mdc-list-item>.mat-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-mdc-list-item:focus>.mat-focus-indicator::before{content:""}.mat-mdc-list-item.mdc-list-item--with-three-lines .mat-mdc-list-item-line.mdc-list-item__secondary-text{white-space:nowrap;line-height:normal}.mat-mdc-list-item.mdc-list-item--with-three-lines .mat-mdc-list-item-unscoped-content.mdc-list-item__secondary-text{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}mat-action-list button{background:none;color:inherit;border:none;font:inherit;outline:inherit;-webkit-tap-highlight-color:rgba(0,0,0,0);text-align:start}mat-action-list button::-moz-focus-inner{border:0}.mdc-list-item--with-leading-icon .mdc-list-item__start{margin-inline-start:var(--mat-list-list-item-leading-icon-start-space, 16px);margin-inline-end:var(--mat-list-list-item-leading-icon-end-space, 16px)}.mat-mdc-nav-list .mat-mdc-list-item{border-radius:var(--mat-list-active-indicator-shape, var(--mat-sys-corner-full));--mat-focus-indicator-border-radius: var(--mat-list-active-indicator-shape, var(--mat-sys-corner-full))}.mat-mdc-nav-list .mat-mdc-list-item.mdc-list-item--activated{background-color:var(--mat-list-active-indicator-color, var(--mat-sys-secondary-container))}\n'],encapsulation:2,changeDetection:0})}return ye})(),pt=(()=>{class ye extends Qn{_lines;_titles;_meta;_unscopedContent;_itemText;get activated(){return this._activated}set activated(Se){this._activated=(0,d.he)(Se)}_activated=!1;_getAriaCurrent(){return"A"===this._hostElement.nodeName&&this._activated?"page":null}_hasBothLeadingAndTrailing(){return 0!==this._meta.length&&(0!==this._avatars.length||0!==this._icons.length)}static \u0275fac=(()=>{let Se;return function(N){return(Se||(Se=w.xGo(ye)))(N||ye)}})();static \u0275cmp=w.VBU({type:ye,selectors:[["mat-list-item"],["a","mat-list-item",""],["button","mat-list-item",""]],contentQueries:function(ge,N,Z){if(1&ge&&(w.wni(Z,Qe,5),w.wni(Z,fe,5),w.wni(Z,gt,5)),2&ge){let Me;w.mGM(Me=w.lsd())&&(N._lines=Me),w.mGM(Me=w.lsd())&&(N._titles=Me),w.mGM(Me=w.lsd())&&(N._meta=Me)}},viewQuery:function(ge,N){if(1&ge&&(w.GBs(Re,5),w.GBs(Xe,5)),2&ge){let Z;w.mGM(Z=w.lsd())&&(N._unscopedContent=Z.first),w.mGM(Z=w.lsd())&&(N._itemText=Z.first)}},hostAttrs:[1,"mat-mdc-list-item","mdc-list-item"],hostVars:13,hostBindings:function(ge,N){2&ge&&(w.BMQ("aria-current",N._getAriaCurrent()),w.AVh("mdc-list-item--activated",N.activated)("mdc-list-item--with-leading-avatar",0!==N._avatars.length)("mdc-list-item--with-leading-icon",0!==N._icons.length)("mdc-list-item--with-trailing-meta",0!==N._meta.length)("mat-mdc-list-item-both-leading-and-trailing",N._hasBothLeadingAndTrailing())("_mat-animation-noopable",N._noopAnimations))},inputs:{activated:"activated"},exportAs:["matListItem"],features:[w.Vt3],ngContentSelectors:he,decls:10,vars:0,consts:[["unscopedContent",""],[1,"mdc-list-item__content"],[1,"mat-mdc-list-item-unscoped-content",3,"cdkObserveContent"],[1,"mat-focus-indicator"]],template:function(ge,N){if(1&ge){const Z=w.RV6();w.NAR(_e),w.SdG(0),w.j41(1,"span",1),w.SdG(2,1),w.SdG(3,2),w.j41(4,"span",2,0),w.bIt("cdkObserveContent",function(){return T.eBV(Z),T.Njj(N._updateItemLines(!0))}),w.SdG(6,3),w.k0s()(),w.SdG(7,4),w.SdG(8,5),w.nrm(9,"div",3)}},dependencies:[Ae.Wv],encapsulation:2,changeDetection:0})}return ye})(),ee=(()=>{class ye{static \u0275fac=function(ge){return new(ge||ye)};static \u0275mod=w.$C({type:ye});static \u0275inj=T.G2t({imports:[Ae.w5,be.y,ne.p,ce.O,j.w]})}return ye})()},9115(Zt,pe,l){"use strict";l.d(pe,{Cn:()=>vt,Cp:()=>kn,fb:()=>gt,kk:()=>wt});var W=l(2615),G=l(3664),re=l(7705),xe=l(6838),Ee=l(9726),V=l(4123),ce=l(5735),be=l(7336),ne=l(438),J=l(1413),De=l(8359),Re=l(7786),Xe=l(7673),_e=l(5964),he=l(9172),Dt=l(5558),lt=l(6697),Le=l(6977),te=l(8968),ie=l(2046),P=l(2496),F=l(6939),ve=l(1804),H=l(1577),$=l(9338),Ke=l(5718),Vt=l(6881),St=l(2466);const ot=["mat-menu-item",""],nt=[[["mat-icon"],["","matMenuItemIcon",""]],"*"],ht=["mat-icon, [matMenuItemIcon]","*"];function oe(Se,ge){1&Se&&(W.qSk(),G.j41(0,"svg",2),G.nrm(1,"polygon",3),G.k0s())}const Ye=["*"];function fe(Se,ge){if(1&Se){const N=G.RV6();G.rj2(0,"div",0),G.VwU("click",function(){W.eBV(N);const Me=G.XpG();return W.Njj(Me.closed.emit("click"))})("animationstart",function(Me){W.eBV(N);const at=G.XpG();return W.Njj(at._onAnimationStart(Me.animationName))})("animationend",function(Me){W.eBV(N);const at=G.XpG();return W.Njj(at._onAnimationDone(Me.animationName))})("animationcancel",function(Me){W.eBV(N);const at=G.XpG();return W.Njj(at._onAnimationDone(Me.animationName))}),G.rj2(1,"div",1),G.SdG(2),G.eux()()}if(2&Se){const N=G.XpG();G.HbH(N._classList),G.AVh("mat-menu-panel-animations-disabled",N._animationsDisabled)("mat-menu-panel-exit-animation","void"===N._panelAnimationState)("mat-menu-panel-animating",N._isAnimating()),G.Avn("id",N.panelId),G.BMQ("aria-label",N.ariaLabel||null)("aria-labelledby",N.ariaLabelledby||null)("aria-describedby",N.ariaDescribedby||null)}}const Qe=new W.nKC("MAT_MENU_PANEL");let gt=(()=>{class Se{_elementRef=(0,W.WQX)(G.aKT);_document=(0,W.WQX)(W.qQL);_focusMonitor=(0,W.WQX)(xe.FN);_parentMenu=(0,W.WQX)(Qe,{optional:!0});_changeDetectorRef=(0,W.WQX)(re.gRc);role="menuitem";disabled=!1;disableRipple=!1;_hovered=new J.B;_focused=new J.B;_highlighted=!1;_triggersSubmenu=!1;constructor(){(0,W.WQX)(te.l).load(ie.A),this._parentMenu?.addItem?.(this)}focus(N,Z){this._focusMonitor&&N?this._focusMonitor.focusVia(this._getHostElement(),N,Z):this._getHostElement().focus(Z),this._focused.next(this)}ngAfterViewInit(){this._focusMonitor&&this._focusMonitor.monitor(this._elementRef,!1)}ngOnDestroy(){this._focusMonitor&&this._focusMonitor.stopMonitoring(this._elementRef),this._parentMenu&&this._parentMenu.removeItem&&this._parentMenu.removeItem(this),this._hovered.complete(),this._focused.complete()}_getTabIndex(){return this.disabled?"-1":"0"}_getHostElement(){return this._elementRef.nativeElement}_checkDisabled(N){this.disabled&&(N.preventDefault(),N.stopPropagation())}_handleMouseEnter(){this._hovered.next(this)}getLabel(){const N=this._elementRef.nativeElement.cloneNode(!0),Z=N.querySelectorAll("mat-icon, .material-icons");for(let Me=0;Me{class Se{_elementRef=(0,W.WQX)(G.aKT);_changeDetectorRef=(0,W.WQX)(re.gRc);_injector=(0,W.WQX)(W.zZn);_keyManager;_xPosition;_yPosition;_firstItemFocusRef;_exitFallbackTimeout;_animationsDisabled=(0,ve.Rc)();_allItems;_directDescendantItems=new G.rOR;_classList={};_panelAnimationState="void";_animationDone=new J.B;_isAnimating=(0,W.vPA)(!1);parentMenu;direction;overlayPanelClass;backdropClass;ariaLabel;ariaLabelledby;ariaDescribedby;get xPosition(){return this._xPosition}set xPosition(N){this._xPosition=N,this.setPositionClasses()}get yPosition(){return this._yPosition}set yPosition(N){this._yPosition=N,this.setPositionClasses()}templateRef;items;lazyContent;overlapTrigger;hasBackdrop;set panelClass(N){const Z=this._previousPanelClass,Me={...this._classList};Z&&Z.length&&Z.split(" ").forEach(at=>{Me[at]=!1}),this._previousPanelClass=N,N&&N.length&&(N.split(" ").forEach(at=>{Me[at]=!0}),this._elementRef.nativeElement.className=""),this._classList=Me}_previousPanelClass;get classList(){return this.panelClass}set classList(N){this.panelClass=N}closed=new G.bkB;close=this.closed;panelId=(0,W.WQX)(Ee.g).getId("mat-menu-panel-");constructor(){const N=(0,W.WQX)(Qn);this.overlayPanelClass=N.overlayPanelClass||"",this._xPosition=N.xPosition,this._yPosition=N.yPosition,this.backdropClass=N.backdropClass,this.overlapTrigger=N.overlapTrigger,this.hasBackdrop=N.hasBackdrop}ngOnInit(){this.setPositionClasses()}ngAfterContentInit(){this._updateDirectDescendants(),this._keyManager=new V.B(this._directDescendantItems).withWrap().withTypeAhead().withHomeAndEnd(),this._keyManager.tabOut.subscribe(()=>this.closed.emit("tab")),this._directDescendantItems.changes.pipe((0,he.Z)(this._directDescendantItems),(0,Dt.n)(N=>(0,Re.h)(...N.map(Z=>Z._focused)))).subscribe(N=>this._keyManager.updateActiveItem(N)),this._directDescendantItems.changes.subscribe(N=>{const Z=this._keyManager;if("enter"===this._panelAnimationState&&Z.activeItem?._hasFocus()){const Me=N.toArray(),at=Math.max(0,Math.min(Me.length-1,Z.activeItemIndex||0));Me[at]&&!Me[at].disabled?Z.setActiveItem(at):Z.setNextItemActive()}})}ngOnDestroy(){this._keyManager?.destroy(),this._directDescendantItems.destroy(),this.closed.complete(),this._firstItemFocusRef?.destroy(),clearTimeout(this._exitFallbackTimeout)}_hovered(){return this._directDescendantItems.changes.pipe((0,he.Z)(this._directDescendantItems),(0,Dt.n)(Z=>(0,Re.h)(...Z.map(Me=>Me._hovered))))}addItem(N){}removeItem(N){}_handleKeydown(N){const Z=N.keyCode,Me=this._keyManager;switch(Z){case ne._f:(0,be.rp)(N)||(N.preventDefault(),this.closed.emit("keydown"));break;case ne.UQ:this.parentMenu&&"ltr"===this.direction&&this.closed.emit("keydown");break;case ne.LE:this.parentMenu&&"rtl"===this.direction&&this.closed.emit("keydown");break;default:return(Z===ne.i7||Z===ne.n6)&&Me.setFocusOrigin("keyboard"),void Me.onKeydown(N)}}focusFirstItem(N="program"){this._firstItemFocusRef?.destroy(),this._firstItemFocusRef=(0,G.mal)(()=>{const Z=this._resolvePanel();if(!Z||!Z.contains(document.activeElement)){const Me=this._keyManager;Me.setFocusOrigin(N).setFirstItemActive(),!Me.activeItem&&Z&&Z.focus()}},{injector:this._injector})}resetActiveItem(){this._keyManager.setActiveItem(-1)}setElevation(N){}setPositionClasses(N=this.xPosition,Z=this.yPosition){this._classList={...this._classList,"mat-menu-before":"before"===N,"mat-menu-after":"after"===N,"mat-menu-above":"above"===Z,"mat-menu-below":"below"===Z},this._changeDetectorRef.markForCheck()}_onAnimationDone(N){const Z=N===Ue;(Z||N===jt)&&(Z&&(clearTimeout(this._exitFallbackTimeout),this._exitFallbackTimeout=void 0),this._animationDone.next(Z?"void":"enter"),this._isAnimating.set(!1))}_onAnimationStart(N){(N===jt||N===Ue)&&this._isAnimating.set(!0)}_setIsOpen(N){if(this._panelAnimationState=N?"enter":"void",N){if(0===this._keyManager.activeItemIndex){const Z=this._resolvePanel();Z&&(Z.scrollTop=0)}}else this._animationsDisabled||(this._exitFallbackTimeout=setTimeout(()=>this._onAnimationDone(Ue),200));this._animationsDisabled&&setTimeout(()=>{this._onAnimationDone(N?jt:Ue)}),this._changeDetectorRef.markForCheck()}_updateDirectDescendants(){this._allItems.changes.pipe((0,he.Z)(this._allItems)).subscribe(N=>{this._directDescendantItems.reset(N.filter(Z=>Z._parentMenu===this)),this._directDescendantItems.notifyOnChanges()})}_resolvePanel(){let N=null;return this._directDescendantItems.length&&(N=this._directDescendantItems.first._getHostElement().closest('[role="menu"]')),N}static \u0275fac=function(Z){return new(Z||Se)};static \u0275cmp=G.VBU({type:Se,selectors:[["mat-menu"]],contentQueries:function(Z,Me,at){if(1&Z&&(G.wni(at,Ft,5),G.wni(at,gt,5),G.wni(at,gt,4)),2&Z){let qe;G.mGM(qe=G.lsd())&&(Me.lazyContent=qe.first),G.mGM(qe=G.lsd())&&(Me._allItems=qe),G.mGM(qe=G.lsd())&&(Me.items=qe)}},viewQuery:function(Z,Me){if(1&Z&&G.GBs(G.C4Q,5),2&Z){let at;G.mGM(at=G.lsd())&&(Me.templateRef=at.first)}},hostVars:3,hostBindings:function(Z,Me){2&Z&&G.BMQ("aria-label",null)("aria-labelledby",null)("aria-describedby",null)},inputs:{backdropClass:"backdropClass",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],xPosition:"xPosition",yPosition:"yPosition",overlapTrigger:[2,"overlapTrigger","overlapTrigger",re.L39],hasBackdrop:[2,"hasBackdrop","hasBackdrop",N=>null==N?null:(0,re.L39)(N)],panelClass:[0,"class","panelClass"],classList:"classList"},outputs:{closed:"closed",close:"close"},exportAs:["matMenu"],features:[G.Jv_([{provide:Qe,useExisting:Se}])],ngContentSelectors:Ye,decls:1,vars:0,consts:[["tabindex","-1","role","menu",1,"mat-mdc-menu-panel",3,"click","animationstart","animationend","animationcancel","id"],[1,"mat-mdc-menu-content"]],template:function(Z,Me){1&Z&&(G.NAR(),G.PeT(0,fe,3,12,"ng-template"))},styles:['mat-menu{display:none}.mat-mdc-menu-content{margin:0;padding:8px 0;outline:0}.mat-mdc-menu-content,.mat-mdc-menu-content .mat-mdc-menu-item .mat-mdc-menu-item-text{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;flex:1;white-space:normal;font-family:var(--mat-menu-item-label-text-font, var(--mat-sys-label-large-font));line-height:var(--mat-menu-item-label-text-line-height, var(--mat-sys-label-large-line-height));font-size:var(--mat-menu-item-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-menu-item-label-text-tracking, var(--mat-sys-label-large-tracking));font-weight:var(--mat-menu-item-label-text-weight, var(--mat-sys-label-large-weight))}@keyframes _mat-menu-enter{from{opacity:0;transform:scale(0.8)}to{opacity:1;transform:none}}@keyframes _mat-menu-exit{from{opacity:1}to{opacity:0}}.mat-mdc-menu-panel{min-width:112px;max-width:280px;overflow:auto;box-sizing:border-box;outline:0;animation:_mat-menu-enter 120ms cubic-bezier(0, 0, 0.2, 1);border-radius:var(--mat-menu-container-shape, var(--mat-sys-corner-extra-small));background-color:var(--mat-menu-container-color, var(--mat-sys-surface-container));box-shadow:var(--mat-menu-container-elevation-shadow, 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12));will-change:transform,opacity}.mat-mdc-menu-panel.mat-menu-panel-exit-animation{animation:_mat-menu-exit 100ms 25ms linear forwards}.mat-mdc-menu-panel.mat-menu-panel-animations-disabled{animation:none}.mat-mdc-menu-panel.mat-menu-panel-animating{pointer-events:none}.mat-mdc-menu-panel.mat-menu-panel-animating:has(.mat-mdc-menu-content:empty){display:none}@media(forced-colors: active){.mat-mdc-menu-panel{outline:solid 1px}}.mat-mdc-menu-panel .mat-divider{color:var(--mat-menu-divider-color, var(--mat-sys-surface-variant));margin-bottom:var(--mat-menu-divider-bottom-spacing, 8px);margin-top:var(--mat-menu-divider-top-spacing, 8px)}.mat-mdc-menu-item{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;cursor:pointer;width:100%;text-align:left;box-sizing:border-box;color:inherit;font-size:inherit;background:none;text-decoration:none;margin:0;min-height:48px;padding-left:var(--mat-menu-item-leading-spacing, 12px);padding-right:var(--mat-menu-item-trailing-spacing, 12px);-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-menu-item::-moz-focus-inner{border:0}[dir=rtl] .mat-mdc-menu-item{padding-left:var(--mat-menu-item-trailing-spacing, 12px);padding-right:var(--mat-menu-item-leading-spacing, 12px)}.mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon]){padding-left:var(--mat-menu-item-with-icon-leading-spacing, 12px);padding-right:var(--mat-menu-item-with-icon-trailing-spacing, 12px)}[dir=rtl] .mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon]){padding-left:var(--mat-menu-item-with-icon-trailing-spacing, 12px);padding-right:var(--mat-menu-item-with-icon-leading-spacing, 12px)}.mat-mdc-menu-item,.mat-mdc-menu-item:visited,.mat-mdc-menu-item:link{color:var(--mat-menu-item-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-menu-item .mat-icon-no-color,.mat-mdc-menu-item .mat-mdc-menu-submenu-icon{color:var(--mat-menu-item-icon-color, var(--mat-sys-on-surface-variant))}.mat-mdc-menu-item[disabled]{cursor:default;opacity:.38}.mat-mdc-menu-item[disabled]::after{display:block;position:absolute;content:"";top:0;left:0;bottom:0;right:0}.mat-mdc-menu-item:focus{outline:0}.mat-mdc-menu-item .mat-icon{flex-shrink:0;margin-right:var(--mat-menu-item-spacing, 12px);height:var(--mat-menu-item-icon-size, 24px);width:var(--mat-menu-item-icon-size, 24px)}[dir=rtl] .mat-mdc-menu-item{text-align:right}[dir=rtl] .mat-mdc-menu-item .mat-icon{margin-right:0;margin-left:var(--mat-menu-item-spacing, 12px)}.mat-mdc-menu-item:not([disabled]):hover{background-color:var(--mat-menu-item-hover-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent))}.mat-mdc-menu-item:not([disabled]).cdk-program-focused,.mat-mdc-menu-item:not([disabled]).cdk-keyboard-focused,.mat-mdc-menu-item:not([disabled]).mat-mdc-menu-item-highlighted{background-color:var(--mat-menu-item-focus-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-focus-state-layer-opacity) * 100%), transparent))}@media(forced-colors: active){.mat-mdc-menu-item{margin-top:1px}}.mat-mdc-menu-submenu-icon{width:var(--mat-menu-item-icon-size, 24px);height:10px;fill:currentColor;padding-left:var(--mat-menu-item-spacing, 12px)}[dir=rtl] .mat-mdc-menu-submenu-icon{padding-right:var(--mat-menu-item-spacing, 12px);padding-left:0}[dir=rtl] .mat-mdc-menu-submenu-icon polygon{transform:scaleX(-1);transform-origin:center}@media(forced-colors: active){.mat-mdc-menu-submenu-icon{fill:CanvasText}}.mat-mdc-menu-item .mat-mdc-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}\n'],encapsulation:2,changeDetection:0})}return Se})();const pt=new W.nKC("mat-menu-scroll-strategy",{providedIn:"root",factory:()=>{const Se=(0,W.WQX)(W.zZn);return()=>(0,$.RH)(Se)}}),gn={provide:pt,deps:[],useFactory:function Pt(Se){const ge=(0,W.WQX)(W.zZn);return()=>(0,$.RH)(ge)}},vi=new WeakMap;let Ni=(()=>{class Se{_canHaveBackdrop;_element=(0,W.WQX)(G.aKT);_viewContainerRef=(0,W.WQX)(G.c1b);_menuItemInstance=(0,W.WQX)(gt,{optional:!0,self:!0});_dir=(0,W.WQX)(H.dS,{optional:!0});_focusMonitor=(0,W.WQX)(xe.FN);_ngZone=(0,W.WQX)(G.SKi);_injector=(0,W.WQX)(W.zZn);_scrollStrategy=(0,W.WQX)(pt);_changeDetectorRef=(0,W.WQX)(re.gRc);_animationsDisabled=(0,ve.Rc)();_portal;_overlayRef=null;_menuOpen=!1;_closingActionsSubscription=De.yU.EMPTY;_menuCloseSubscription=De.yU.EMPTY;_pendingRemoval;_parentMaterialMenu;_parentInnerPadding;_openedBy=void 0;get _menu(){return this._menuInternal}set _menu(N){N!==this._menuInternal&&(this._menuInternal=N,this._menuCloseSubscription.unsubscribe(),N&&(this._menuCloseSubscription=N.close.subscribe(Z=>{this._destroyMenu(Z),("click"===Z||"tab"===Z)&&this._parentMaterialMenu&&this._parentMaterialMenu.closed.emit(Z)})),this._menuItemInstance?._setTriggersSubmenu(this._triggersSubmenu()))}_menuInternal;constructor(N){this._canHaveBackdrop=N;const Z=(0,W.WQX)(Qe,{optional:!0});this._parentMaterialMenu=Z instanceof wt?Z:void 0}ngOnDestroy(){this._menu&&this._ownsMenu(this._menu)&&vi.delete(this._menu),this._pendingRemoval?.unsubscribe(),this._menuCloseSubscription.unsubscribe(),this._closingActionsSubscription.unsubscribe(),this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null)}get menuOpen(){return this._menuOpen}get dir(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_triggersSubmenu(){return!!(this._menuItemInstance&&this._parentMaterialMenu&&this._menu)}_closeMenu(){this._menu?.close.emit()}_openMenu(N){const Z=this._menu;if(this._menuOpen||!Z)return;this._pendingRemoval?.unsubscribe();const Me=vi.get(Z);vi.set(Z,this),Me&&Me!==this&&Me._closeMenu();const at=this._createOverlay(Z),qe=at.getConfig(),pn=qe.positionStrategy;this._setPosition(Z,pn),qe.hasBackdrop=!!this._canHaveBackdrop&&(null==Z.hasBackdrop?!this._triggersSubmenu():Z.hasBackdrop),at.hasAttached()||(at.attach(this._getPortal(Z)),Z.lazyContent?.attach(this.menuData)),this._closingActionsSubscription=this._menuClosingActions().subscribe(()=>this._closeMenu()),Z.parentMenu=this._triggersSubmenu()?this._parentMaterialMenu:void 0,Z.direction=this.dir,N&&Z.focusFirstItem(this._openedBy||"program"),this._setIsMenuOpen(!0),Z instanceof wt&&(Z._setIsOpen(!0),Z._directDescendantItems.changes.pipe((0,Le.Q)(Z.close)).subscribe(()=>{pn.withLockedPosition(!1).reapplyLastPosition(),pn.withLockedPosition(!0)}))}focus(N,Z){this._focusMonitor&&N?this._focusMonitor.focusVia(this._element,N,Z):this._element.nativeElement.focus(Z)}_destroyMenu(N){const Z=this._overlayRef,Me=this._menu;!Z||!this.menuOpen||(this._closingActionsSubscription.unsubscribe(),this._pendingRemoval?.unsubscribe(),Me instanceof wt&&this._ownsMenu(Me)?(this._pendingRemoval=Me._animationDone.pipe((0,lt.s)(1)).subscribe(()=>{Z.detach(),vi.has(Me)||Me.lazyContent?.detach()}),Me._setIsOpen(!1)):(Z.detach(),Me?.lazyContent?.detach()),Me&&this._ownsMenu(Me)&&vi.delete(Me),this.restoreFocus&&("keydown"===N||!this._openedBy||!this._triggersSubmenu())&&this.focus(this._openedBy),this._openedBy=void 0,this._setIsMenuOpen(!1))}_setIsMenuOpen(N){N!==this._menuOpen&&(this._menuOpen=N,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this._triggersSubmenu()&&this._menuItemInstance._setHighlighted(N),this._changeDetectorRef.markForCheck())}_createOverlay(N){if(!this._overlayRef){const Z=this._getOverlayConfig(N);this._subscribeToPositions(N,Z.positionStrategy),this._overlayRef=(0,$.Y$)(this._injector,Z),this._overlayRef.keydownEvents().subscribe(Me=>{this._menu instanceof wt&&this._menu._handleKeydown(Me)})}return this._overlayRef}_getOverlayConfig(N){return new $.rR({positionStrategy:(0,$.$M)(this._injector,this._getOverlayOrigin()).withLockedPosition().withGrowAfterOpen().withTransformOriginOn(".mat-menu-panel, .mat-mdc-menu-panel"),backdropClass:N.backdropClass||"cdk-overlay-transparent-backdrop",panelClass:N.overlayPanelClass,scrollStrategy:this._scrollStrategy(),direction:this._dir||"ltr",disableAnimations:this._animationsDisabled})}_subscribeToPositions(N,Z){N.setPositionClasses&&Z.positionChanges.subscribe(Me=>{this._ngZone.run(()=>{N.setPositionClasses("start"===Me.connectionPair.overlayX?"after":"before","top"===Me.connectionPair.overlayY?"below":"above")})})}_setPosition(N,Z){let[Me,at]="before"===N.xPosition?["end","start"]:["start","end"],[qe,pn]="above"===N.yPosition?["bottom","top"]:["top","bottom"],[Je,Be]=[qe,pn],[ut,Ge]=[Me,at],Ot=0;if(this._triggersSubmenu()){if(Ge=Me="before"===N.xPosition?"start":"end",at=ut="end"===Me?"start":"end",this._parentMaterialMenu){if(null==this._parentInnerPadding){const se=this._parentMaterialMenu.items.first;this._parentInnerPadding=se?se._getHostElement().offsetTop:0}Ot="bottom"===qe?this._parentInnerPadding:-this._parentInnerPadding}}else N.overlapTrigger||(Je="top"===qe?"bottom":"top",Be="top"===pn?"bottom":"top");Z.withPositions([{originX:Me,originY:Je,overlayX:ut,overlayY:qe,offsetY:Ot},{originX:at,originY:Je,overlayX:Ge,overlayY:qe,offsetY:Ot},{originX:Me,originY:Be,overlayX:ut,overlayY:pn,offsetY:-Ot},{originX:at,originY:Be,overlayX:Ge,overlayY:pn,offsetY:-Ot}])}_menuClosingActions(){const N=this._getOutsideClickStream(this._overlayRef),Z=this._overlayRef.detachments(),Me=this._parentMaterialMenu?this._parentMaterialMenu.closed:(0,Xe.of)(),at=this._parentMaterialMenu?this._parentMaterialMenu._hovered().pipe((0,_e.p)(qe=>this._menuOpen&&qe!==this._menuItemInstance)):(0,Xe.of)();return(0,Re.h)(N,Me,at,Z)}_getPortal(N){return(!this._portal||this._portal.templateRef!==N.templateRef)&&(this._portal=new F.VA(N.templateRef,this._viewContainerRef)),this._portal}_ownsMenu(N){return vi.get(N)===this}static \u0275fac=function(Z){G.QTQ()};static \u0275dir=G.FsC({type:Se})}return Se})(),kn=(()=>{class Se extends Ni{_cleanupTouchstart;_hoverSubscription=De.yU.EMPTY;get _deprecatedMatMenuTriggerFor(){return this.menu}set _deprecatedMatMenuTriggerFor(N){this.menu=N}get menu(){return this._menu}set menu(N){this._menu=N}menuData;restoreFocus=!0;menuOpened=new G.bkB;onMenuOpen=this.menuOpened;menuClosed=new G.bkB;onMenuClose=this.menuClosed;constructor(){super(!0);const N=(0,W.WQX)(G.sFG);this._cleanupTouchstart=N.listen(this._element.nativeElement,"touchstart",Z=>{(0,ce.w)(Z)||(this._openedBy="touch")},{passive:!0})}triggersSubmenu(){return super._triggersSubmenu()}toggleMenu(){return this.menuOpen?this.closeMenu():this.openMenu()}openMenu(){this._openMenu(!0)}closeMenu(){this._closeMenu()}updatePosition(){this._overlayRef?.updatePosition()}ngAfterContentInit(){this._handleHover()}ngOnDestroy(){super.ngOnDestroy(),this._cleanupTouchstart(),this._hoverSubscription.unsubscribe()}_getOverlayOrigin(){return this._element}_getOutsideClickStream(N){return N.backdropClick()}_handleMousedown(N){(0,ce._)(N)||(this._openedBy=0===N.button?"mouse":void 0,this.triggersSubmenu()&&N.preventDefault())}_handleKeydown(N){const Z=N.keyCode;(Z===ne.Fm||Z===ne.t6)&&(this._openedBy="keyboard"),this.triggersSubmenu()&&(Z===ne.LE&&"ltr"===this.dir||Z===ne.UQ&&"rtl"===this.dir)&&(this._openedBy="keyboard",this.openMenu())}_handleClick(N){this.triggersSubmenu()?(N.stopPropagation(),this.openMenu()):this.toggleMenu()}_handleHover(){this.triggersSubmenu()&&this._parentMaterialMenu&&(this._hoverSubscription=this._parentMaterialMenu._hovered().subscribe(N=>{N===this._menuItemInstance&&!N.disabled&&"void"!==this._parentMaterialMenu?._panelAnimationState&&(this._openedBy="mouse",this._openMenu(!1))}))}static \u0275fac=function(Z){return new(Z||Se)};static \u0275dir=G.FsC({type:Se,selectors:[["","mat-menu-trigger-for",""],["","matMenuTriggerFor",""]],hostAttrs:[1,"mat-mdc-menu-trigger"],hostVars:3,hostBindings:function(Z,Me){1&Z&&G.bIt("click",function(qe){return Me._handleClick(qe)})("mousedown",function(qe){return Me._handleMousedown(qe)})("keydown",function(qe){return Me._handleKeydown(qe)}),2&Z&&G.BMQ("aria-haspopup",Me.menu?"menu":null)("aria-expanded",Me.menuOpen)("aria-controls",Me.menuOpen?null==Me.menu?null:Me.menu.panelId:null)},inputs:{_deprecatedMatMenuTriggerFor:[0,"mat-menu-trigger-for","_deprecatedMatMenuTriggerFor"],menu:[0,"matMenuTriggerFor","menu"],menuData:[0,"matMenuTriggerData","menuData"],restoreFocus:[0,"matMenuTriggerRestoreFocus","restoreFocus"]},outputs:{menuOpened:"menuOpened",onMenuOpen:"onMenuOpen",menuClosed:"menuClosed",onMenuClose:"onMenuClose"},exportAs:["matMenuTrigger"],features:[G.Vt3]})}return Se})(),vt=(()=>{class Se{static \u0275fac=function(Z){return new(Z||Se)};static \u0275mod=G.$C({type:Se});static \u0275inj=W.G2t({providers:[gn],imports:[Vt.p,St.y,$.z_,Ke.Gj,St.y]})}return Se})()},146(Zt,pe,l){"use strict";l.d(pe,{S:()=>O});var i=l(2615),d=l(3664),v=l(6881),T=l(483),w=l(2466),e=l(3029);let O=(()=>{class f{static \u0275fac=function(C){return new(C||f)};static \u0275mod=d.$C({type:f});static \u0275inj=i.G2t({imports:[v.p,w.y,T.O,e.wT]})}return f})()},3029(Zt,pe,l){"use strict";l.d(pe,{MI:()=>J,QC:()=>be,TL:()=>Xe,is:()=>ce,jb:()=>Re,wT:()=>De});var w=l(9726),e=l(7336),O=l(438),f=l(3664),u=l(7705),L=l(2615),C=l(1413),B=l(2496),A=l(3386),Pe=l(2046),le=l(9046),Ce=l(8968);const W=["text"],G=[[["mat-icon"]],"*"],re=["mat-icon","*"];function xe(_e,he){if(1&_e&&f.nrm(0,"mat-pseudo-checkbox",1),2&_e){const Dt=f.XpG();f.Y8G("disabled",Dt.disabled)("state",Dt.selected?"checked":"unchecked")}}function Ee(_e,he){if(1&_e&&f.nrm(0,"mat-pseudo-checkbox",3),2&_e){const Dt=f.XpG();f.Y8G("disabled",Dt.disabled)}}function V(_e,he){if(1&_e&&(f.j41(0,"span",4),f.EFF(1),f.k0s()),2&_e){const Dt=f.XpG();f.R7$(),f.SpI("(",Dt.group.label,")")}}const ce=new L.nKC("MAT_OPTION_PARENT_COMPONENT"),be=new L.nKC("MatOptgroup");class J{source;isUserInput;constructor(he,Dt=!1){this.source=he,this.isUserInput=Dt}}let De=(()=>{class _e{_element=(0,L.WQX)(f.aKT);_changeDetectorRef=(0,L.WQX)(u.gRc);_parent=(0,L.WQX)(ce,{optional:!0});group=(0,L.WQX)(be,{optional:!0});_signalDisableRipple=!1;_selected=!1;_active=!1;_mostRecentViewValue="";get multiple(){return this._parent&&this._parent.multiple}get selected(){return this._selected}value;id=(0,L.WQX)(w.g).getId("mat-option-");get disabled(){return this.group&&this.group.disabled||this._disabled()}set disabled(Dt){this._disabled.set(Dt)}_disabled=(0,L.vPA)(!1);get disableRipple(){return this._signalDisableRipple?this._parent.disableRipple():!!this._parent?.disableRipple}get hideSingleSelectionIndicator(){return!(!this._parent||!this._parent.hideSingleSelectionIndicator)}onSelectionChange=new f.bkB;_text;_stateChanges=new C.B;constructor(){const Dt=(0,L.WQX)(Ce.l);Dt.load(Pe.A),Dt.load(le.Y),this._signalDisableRipple=!!this._parent&&(0,L.Hps)(this._parent.disableRipple)}get active(){return this._active}get viewValue(){return(this._text?.nativeElement.textContent||"").trim()}select(Dt=!0){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),Dt&&this._emitSelectionChangeEvent())}deselect(Dt=!0){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),Dt&&this._emitSelectionChangeEvent())}focus(Dt,lt){const Le=this._getHostElement();"function"==typeof Le.focus&&Le.focus(lt)}setActiveStyles(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}setInactiveStyles(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}getLabel(){return this.viewValue}_handleKeydown(Dt){(Dt.keyCode===O.Fm||Dt.keyCode===O.t6)&&!(0,e.rp)(Dt)&&(this._selectViaInteraction(),Dt.preventDefault())}_selectViaInteraction(){this.disabled||(this._selected=!this.multiple||!this._selected,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent(!0))}_getTabIndex(){return this.disabled?"-1":"0"}_getHostElement(){return this._element.nativeElement}ngAfterViewChecked(){if(this._selected){const Dt=this.viewValue;Dt!==this._mostRecentViewValue&&(this._mostRecentViewValue&&this._stateChanges.next(),this._mostRecentViewValue=Dt)}}ngOnDestroy(){this._stateChanges.complete()}_emitSelectionChangeEvent(Dt=!1){this.onSelectionChange.emit(new J(this,Dt))}static \u0275fac=function(lt){return new(lt||_e)};static \u0275cmp=f.VBU({type:_e,selectors:[["mat-option"]],viewQuery:function(lt,Le){if(1<&&f.GBs(W,7),2<){let te;f.mGM(te=f.lsd())&&(Le._text=te.first)}},hostAttrs:["role","option",1,"mat-mdc-option","mdc-list-item"],hostVars:11,hostBindings:function(lt,Le){1<&&f.bIt("click",function(){return Le._selectViaInteraction()})("keydown",function(ie){return Le._handleKeydown(ie)}),2<&&(f.Avn("id",Le.id),f.BMQ("aria-selected",Le.selected)("aria-disabled",Le.disabled.toString()),f.AVh("mdc-list-item--selected",Le.selected)("mat-mdc-option-multiple",Le.multiple)("mat-mdc-option-active",Le.active)("mdc-list-item--disabled",Le.disabled))},inputs:{value:"value",id:"id",disabled:[2,"disabled","disabled",u.L39]},outputs:{onSelectionChange:"onSelectionChange"},exportAs:["matOption"],ngContentSelectors:re,decls:8,vars:5,consts:[["text",""],["aria-hidden","true",1,"mat-mdc-option-pseudo-checkbox",3,"disabled","state"],[1,"mdc-list-item__primary-text"],["state","checked","aria-hidden","true","appearance","minimal",1,"mat-mdc-option-pseudo-checkbox",3,"disabled"],[1,"cdk-visually-hidden"],["aria-hidden","true","mat-ripple","",1,"mat-mdc-option-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled"]],template:function(lt,Le){1<&&(f.NAR(G),f.nVh(0,xe,1,2,"mat-pseudo-checkbox",1),f.SdG(1),f.j41(2,"span",2,0),f.SdG(4,1),f.k0s(),f.nVh(5,Ee,1,1,"mat-pseudo-checkbox",3),f.nVh(6,V,2,1,"span",4),f.nrm(7,"div",5)),2<&&(f.vxM(Le.multiple?0:-1),f.R7$(5),f.vxM(Le.multiple||!Le.selected||Le.hideSingleSelectionIndicator?-1:5),f.R7$(),f.vxM(Le.group&&Le.group._inert?6:-1),f.R7$(),f.Y8G("matRippleTrigger",Le._getHostElement())("matRippleDisabled",Le.disabled||Le.disableRipple))},dependencies:[A.w,B.r6],styles:['.mat-mdc-option{-webkit-user-select:none;user-select:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;min-height:48px;padding:0 16px;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0);color:var(--mat-option-label-text-color, var(--mat-sys-on-surface));font-family:var(--mat-option-label-text-font, var(--mat-sys-label-large-font));line-height:var(--mat-option-label-text-line-height, var(--mat-sys-label-large-line-height));font-size:var(--mat-option-label-text-size, var(--mat-sys-body-large-size));letter-spacing:var(--mat-option-label-text-tracking, var(--mat-sys-label-large-tracking));font-weight:var(--mat-option-label-text-weight, var(--mat-sys-body-large-weight))}.mat-mdc-option:hover:not(.mdc-list-item--disabled){background-color:var(--mat-option-hover-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent))}.mat-mdc-option:focus.mdc-list-item,.mat-mdc-option.mat-mdc-option-active.mdc-list-item{background-color:var(--mat-option-focus-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-focus-state-layer-opacity) * 100%), transparent));outline:0}.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple){background-color:var(--mat-option-selected-state-layer-color, var(--mat-sys-secondary-container))}.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple) .mdc-list-item__primary-text{color:var(--mat-option-selected-state-label-text-color, var(--mat-sys-on-secondary-container))}.mat-mdc-option .mat-pseudo-checkbox{--mat-pseudo-checkbox-minimal-selected-checkmark-color: var(--mat-option-selected-state-label-text-color, var(--mat-sys-on-secondary-container))}.mat-mdc-option.mdc-list-item{align-items:center;background:rgba(0,0,0,0)}.mat-mdc-option.mdc-list-item--disabled{cursor:default;pointer-events:none}.mat-mdc-option.mdc-list-item--disabled .mat-mdc-option-pseudo-checkbox,.mat-mdc-option.mdc-list-item--disabled .mdc-list-item__primary-text,.mat-mdc-option.mdc-list-item--disabled>mat-icon{opacity:.38}.mat-mdc-optgroup .mat-mdc-option:not(.mat-mdc-option-multiple){padding-left:32px}[dir=rtl] .mat-mdc-optgroup .mat-mdc-option:not(.mat-mdc-option-multiple){padding-left:16px;padding-right:32px}.mat-mdc-option .mat-icon,.mat-mdc-option .mat-pseudo-checkbox-full{margin-right:16px;flex-shrink:0}[dir=rtl] .mat-mdc-option .mat-icon,[dir=rtl] .mat-mdc-option .mat-pseudo-checkbox-full{margin-right:0;margin-left:16px}.mat-mdc-option .mat-pseudo-checkbox-minimal{margin-left:16px;flex-shrink:0}[dir=rtl] .mat-mdc-option .mat-pseudo-checkbox-minimal{margin-right:16px;margin-left:0}.mat-mdc-option .mat-mdc-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-mdc-option .mdc-list-item__primary-text{white-space:normal;font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;font-family:inherit;text-decoration:inherit;text-transform:inherit;margin-right:auto}[dir=rtl] .mat-mdc-option .mdc-list-item__primary-text{margin-right:0;margin-left:auto}@media(forced-colors: active){.mat-mdc-option.mdc-list-item--selected:not(:has(.mat-mdc-option-pseudo-checkbox))::after{content:"";position:absolute;top:50%;right:16px;transform:translateY(-50%);width:10px;height:0;border-bottom:solid 10px;border-radius:10px}[dir=rtl] .mat-mdc-option.mdc-list-item--selected:not(:has(.mat-mdc-option-pseudo-checkbox))::after{right:auto;left:16px}}.mat-mdc-option-multiple{--mat-list-list-item-selected-container-color: var(--mat-list-list-item-container-color, transparent)}.mat-mdc-option-active .mat-focus-indicator::before{content:""}\n'],encapsulation:2,changeDetection:0})}return _e})();function Re(_e,he,Dt){if(Dt.length){let lt=he.toArray(),Le=Dt.toArray(),te=0;for(let ie=0;ie<_e+1;ie++)lt[ie].group&<[ie].group===Le[te]&&te++;return te}return 0}function Xe(_e,he,Dt,lt){return _eDt+lt?Math.max(0,_e-lt+he):Dt}},6695(Zt,pe,l){"use strict";l.d(pe,{Ou:()=>ne,iy:()=>be,xX:()=>G});var i=l(2615),d=l(3664),v=l(7705),T=l(1413),w=l(2771),e=l(9726),O=l(9588),f=l(6183),u=l(3029),L=l(2598),C=l(455),B=l(6156),A=l(8834);function Pe(J,De){if(1&J&&(d.j41(0,"mat-option",17),d.EFF(1),d.k0s()),2&J){const Re=De.$implicit;d.Y8G("value",Re),d.R7$(),d.SpI(" ",Re," ")}}function le(J,De){if(1&J){const Re=d.RV6();d.j41(0,"mat-form-field",14)(1,"mat-select",16,0),d.bIt("selectionChange",function(_e){i.eBV(Re);const he=d.XpG(2);return i.Njj(he._changePageSize(_e.value))}),d.Z7z(3,Pe,2,2,"mat-option",17,d.fX1),d.k0s(),d.j41(5,"div",18),d.bIt("click",function(){i.eBV(Re);const _e=d.sdS(2);return i.Njj(_e.open())}),d.k0s()()}if(2&J){const Re=d.XpG(2);d.Y8G("appearance",Re._formFieldAppearance)("color",Re.color),d.R7$(),d.Y8G("value",Re.pageSize)("disabled",Re.disabled),d.jOp("aria-labelledby",Re._pageSizeLabelId),d.Y8G("panelClass",Re.selectConfig.panelClass||"")("disableOptionCentering",Re.selectConfig.disableOptionCentering),d.R7$(2),d.Dyx(Re._displayedPageSizeOptions)}}function Ce(J,De){if(1&J&&(d.j41(0,"div",15),d.EFF(1),d.k0s()),2&J){const Re=d.XpG(2);d.R7$(),d.JRh(Re.pageSize)}}function Ae(J,De){if(1&J&&(d.j41(0,"div",3)(1,"div",13),d.EFF(2),d.k0s(),d.nVh(3,le,6,7,"mat-form-field",14),d.nVh(4,Ce,2,1,"div",15),d.k0s()),2&J){const Re=d.XpG();d.R7$(),d.BMQ("id",Re._pageSizeLabelId),d.R7$(),d.SpI(" ",Re._intl.itemsPerPageLabel," "),d.R7$(),d.vxM(Re._displayedPageSizeOptions.length>1?3:-1),d.R7$(),d.vxM(Re._displayedPageSizeOptions.length<=1?4:-1)}}function j(J,De){if(1&J){const Re=d.RV6();d.j41(0,"button",19),d.bIt("click",function(){i.eBV(Re);const _e=d.XpG();return i.Njj(_e._buttonClicked(0,_e._previousButtonsDisabled()))}),i.qSk(),d.j41(1,"svg",8),d.nrm(2,"path",20),d.k0s()()}if(2&J){const Re=d.XpG();d.Y8G("matTooltip",Re._intl.firstPageLabel)("matTooltipDisabled",Re._previousButtonsDisabled())("disabled",Re._previousButtonsDisabled())("tabindex",Re._previousButtonsDisabled()?-1:null),d.BMQ("aria-label",Re._intl.firstPageLabel)}}function W(J,De){if(1&J){const Re=d.RV6();d.j41(0,"button",21),d.bIt("click",function(){i.eBV(Re);const _e=d.XpG();return i.Njj(_e._buttonClicked(_e.getNumberOfPages()-1,_e._nextButtonsDisabled()))}),i.qSk(),d.j41(1,"svg",8),d.nrm(2,"path",22),d.k0s()()}if(2&J){const Re=d.XpG();d.Y8G("matTooltip",Re._intl.lastPageLabel)("matTooltipDisabled",Re._nextButtonsDisabled())("disabled",Re._nextButtonsDisabled())("tabindex",Re._nextButtonsDisabled()?-1:null),d.BMQ("aria-label",Re._intl.lastPageLabel)}}let G=(()=>{class J{changes=new T.B;itemsPerPageLabel="Items per page:";nextPageLabel="Next page";previousPageLabel="Previous page";firstPageLabel="First page";lastPageLabel="Last page";getRangeLabel=(Re,Xe,_e)=>{if(0==_e||0==Xe)return`0 of ${_e}`;const he=Re*Xe;return`${he+1} \u2013 ${he<(_e=Math.max(_e,0))?Math.min(he+Xe,_e):he+Xe} of ${_e}`};static \u0275fac=function(Xe){return new(Xe||J)};static \u0275prov=i.jDH({token:J,factory:J.\u0275fac,providedIn:"root"})}return J})();const xe={provide:G,deps:[[new d.Xx1,new d.kdw,G]],useFactory:function re(J){return J||new G}},ce=new i.nKC("MAT_PAGINATOR_DEFAULT_OPTIONS");let be=(()=>{class J{_intl=(0,i.WQX)(G);_changeDetectorRef=(0,i.WQX)(v.gRc);_formFieldAppearance;_pageSizeLabelId=(0,i.WQX)(e.g).getId("mat-paginator-page-size-label-");_intlChanges;_isInitialized=!1;_initializedStream=new w.m(1);color;get pageIndex(){return this._pageIndex}set pageIndex(Re){this._pageIndex=Math.max(Re||0,0),this._changeDetectorRef.markForCheck()}_pageIndex=0;get length(){return this._length}set length(Re){this._length=Re||0,this._changeDetectorRef.markForCheck()}_length=0;get pageSize(){return this._pageSize}set pageSize(Re){this._pageSize=Math.max(Re||0,0),this._updateDisplayedPageSizeOptions()}_pageSize;get pageSizeOptions(){return this._pageSizeOptions}set pageSizeOptions(Re){this._pageSizeOptions=(Re||[]).map(Xe=>(0,v.Udg)(Xe,0)),this._updateDisplayedPageSizeOptions()}_pageSizeOptions=[];hidePageSize=!1;showFirstLastButtons=!1;selectConfig={};disabled=!1;page=new d.bkB;_displayedPageSizeOptions;initialized=this._initializedStream;constructor(){const Re=this._intl,Xe=(0,i.WQX)(ce,{optional:!0});if(this._intlChanges=Re.changes.subscribe(()=>this._changeDetectorRef.markForCheck()),Xe){const{pageSize:_e,pageSizeOptions:he,hidePageSize:Dt,showFirstLastButtons:lt}=Xe;null!=_e&&(this._pageSize=_e),null!=he&&(this._pageSizeOptions=he),null!=Dt&&(this.hidePageSize=Dt),null!=lt&&(this.showFirstLastButtons=lt)}this._formFieldAppearance=Xe?.formFieldAppearance||"outline"}ngOnInit(){this._isInitialized=!0,this._updateDisplayedPageSizeOptions(),this._initializedStream.next()}ngOnDestroy(){this._initializedStream.complete(),this._intlChanges.unsubscribe()}nextPage(){this.hasNextPage()&&this._navigate(this.pageIndex+1)}previousPage(){this.hasPreviousPage()&&this._navigate(this.pageIndex-1)}firstPage(){this.hasPreviousPage()&&this._navigate(0)}lastPage(){this.hasNextPage()&&this._navigate(this.getNumberOfPages()-1)}hasPreviousPage(){return this.pageIndex>=1&&0!=this.pageSize}hasNextPage(){const Re=this.getNumberOfPages()-1;return this.pageIndexRe-Xe),this._changeDetectorRef.markForCheck())}_emitPageEvent(Re){this.page.emit({previousPageIndex:Re,pageIndex:this.pageIndex,pageSize:this.pageSize,length:this.length})}_navigate(Re){const Xe=this.pageIndex;Re!==Xe&&(this.pageIndex=Re,this._emitPageEvent(Xe))}_buttonClicked(Re,Xe){Xe||this._navigate(Re)}static \u0275fac=function(Xe){return new(Xe||J)};static \u0275cmp=d.VBU({type:J,selectors:[["mat-paginator"]],hostAttrs:["role","group",1,"mat-mdc-paginator"],inputs:{color:"color",pageIndex:[2,"pageIndex","pageIndex",v.Udg],length:[2,"length","length",v.Udg],pageSize:[2,"pageSize","pageSize",v.Udg],pageSizeOptions:"pageSizeOptions",hidePageSize:[2,"hidePageSize","hidePageSize",v.L39],showFirstLastButtons:[2,"showFirstLastButtons","showFirstLastButtons",v.L39],selectConfig:"selectConfig",disabled:[2,"disabled","disabled",v.L39]},outputs:{page:"page"},exportAs:["matPaginator"],decls:14,vars:14,consts:[["selectRef",""],[1,"mat-mdc-paginator-outer-container"],[1,"mat-mdc-paginator-container"],[1,"mat-mdc-paginator-page-size"],[1,"mat-mdc-paginator-range-actions"],["aria-live","polite",1,"mat-mdc-paginator-range-label"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-first",3,"matTooltip","matTooltipDisabled","disabled","tabindex"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-previous",3,"click","matTooltip","matTooltipDisabled","disabled","tabindex"],["viewBox","0 0 24 24","focusable","false","aria-hidden","true",1,"mat-mdc-paginator-icon"],["d","M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-next",3,"click","matTooltip","matTooltipDisabled","disabled","tabindex"],["d","M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-last",3,"matTooltip","matTooltipDisabled","disabled","tabindex"],[1,"mat-mdc-paginator-page-size-label"],[1,"mat-mdc-paginator-page-size-select",3,"appearance","color"],[1,"mat-mdc-paginator-page-size-value"],["hideSingleSelectionIndicator","",3,"selectionChange","value","disabled","aria-labelledby","panelClass","disableOptionCentering"],[3,"value"],[1,"mat-mdc-paginator-touch-target",3,"click"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-first",3,"click","matTooltip","matTooltipDisabled","disabled","tabindex"],["d","M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-last",3,"click","matTooltip","matTooltipDisabled","disabled","tabindex"],["d","M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"]],template:function(Xe,_e){1&Xe&&(d.j41(0,"div",1)(1,"div",2),d.nVh(2,Ae,5,4,"div",3),d.j41(3,"div",4)(4,"div",5),d.EFF(5),d.k0s(),d.nVh(6,j,3,5,"button",6),d.j41(7,"button",7),d.bIt("click",function(){return _e._buttonClicked(_e.pageIndex-1,_e._previousButtonsDisabled())}),i.qSk(),d.j41(8,"svg",8),d.nrm(9,"path",9),d.k0s()(),i.joV(),d.j41(10,"button",10),d.bIt("click",function(){return _e._buttonClicked(_e.pageIndex+1,_e._nextButtonsDisabled())}),i.qSk(),d.j41(11,"svg",8),d.nrm(12,"path",11),d.k0s()(),d.nVh(13,W,3,5,"button",12),d.k0s()()()),2&Xe&&(d.R7$(2),d.vxM(_e.hidePageSize?-1:2),d.R7$(3),d.SpI(" ",_e._intl.getRangeLabel(_e.pageIndex,_e.pageSize,_e.length)," "),d.R7$(),d.vxM(_e.showFirstLastButtons?6:-1),d.R7$(),d.Y8G("matTooltip",_e._intl.previousPageLabel)("matTooltipDisabled",_e._previousButtonsDisabled())("disabled",_e._previousButtonsDisabled())("tabindex",_e._previousButtonsDisabled()?-1:null),d.BMQ("aria-label",_e._intl.previousPageLabel),d.R7$(3),d.Y8G("matTooltip",_e._intl.nextPageLabel)("matTooltipDisabled",_e._nextButtonsDisabled())("disabled",_e._nextButtonsDisabled())("tabindex",_e._nextButtonsDisabled()?-1:null),d.BMQ("aria-label",_e._intl.nextPageLabel),d.R7$(3),d.vxM(_e.showFirstLastButtons?13:-1))},dependencies:[O.rl,f.VO,u.wT,L.iY,C.oV],styles:[".mat-mdc-paginator{display:block;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--mat-paginator-container-text-color, var(--mat-sys-on-surface));background-color:var(--mat-paginator-container-background-color, var(--mat-sys-surface));font-family:var(--mat-paginator-container-text-font, var(--mat-sys-body-small-font));line-height:var(--mat-paginator-container-text-line-height, var(--mat-sys-body-small-line-height));font-size:var(--mat-paginator-container-text-size, var(--mat-sys-body-small-size));font-weight:var(--mat-paginator-container-text-weight, var(--mat-sys-body-small-weight));letter-spacing:var(--mat-paginator-container-text-tracking, var(--mat-sys-body-small-tracking));--mat-form-field-container-height: var(--mat-paginator-form-field-container-height, 40px);--mat-form-field-container-vertical-padding: var(--mat-paginator-form-field-container-vertical-padding, 8px)}.mat-mdc-paginator .mat-mdc-select-value{font-size:var(--mat-paginator-select-trigger-text-size, var(--mat-sys-body-small-size))}.mat-mdc-paginator .mat-mdc-form-field-subscript-wrapper{display:none}.mat-mdc-paginator .mat-mdc-select{line-height:1.5}.mat-mdc-paginator-outer-container{display:flex}.mat-mdc-paginator-container{display:flex;align-items:center;justify-content:flex-end;padding:0 8px;flex-wrap:wrap;width:100%;min-height:var(--mat-paginator-container-size, 56px)}.mat-mdc-paginator-page-size{display:flex;align-items:baseline;margin-right:8px}[dir=rtl] .mat-mdc-paginator-page-size{margin-right:0;margin-left:8px}.mat-mdc-paginator-page-size-label{margin:0 4px}.mat-mdc-paginator-page-size-select{margin:0 4px;width:var(--mat-paginator-page-size-select-width, 84px)}.mat-mdc-paginator-range-label{margin:0 32px 0 24px}.mat-mdc-paginator-range-actions{display:flex;align-items:center}.mat-mdc-paginator-icon{display:inline-block;width:28px;fill:var(--mat-paginator-enabled-icon-color, var(--mat-sys-on-surface-variant))}.mat-mdc-icon-button[aria-disabled] .mat-mdc-paginator-icon{fill:var(--mat-paginator-disabled-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}[dir=rtl] .mat-mdc-paginator-icon{transform:rotate(180deg)}@media(forced-colors: active){.mat-mdc-icon-button[aria-disabled] .mat-mdc-paginator-icon,.mat-mdc-paginator-icon{fill:currentColor}.mat-mdc-paginator-range-actions .mat-mdc-icon-button{outline:solid 1px}.mat-mdc-paginator-range-actions .mat-mdc-icon-button[aria-disabled]{color:GrayText}}.mat-mdc-paginator-touch-target{display:var(--mat-paginator-touch-target-display, block);position:absolute;top:50%;left:50%;width:var(--mat-paginator-page-size-select-width, 84px);height:var(--mat-paginator-page-size-select-touch-target-height, 48px);background-color:rgba(0,0,0,0);transform:translate(-50%, -50%);cursor:pointer}\n"],encapsulation:2,changeDetection:0})}return J})(),ne=(()=>{class J{static \u0275fac=function(Xe){return new(Xe||J)};static \u0275mod=d.$C({type:J});static \u0275inj=i.G2t({providers:[xe],imports:[A.Hl,f.Ve,B.u,be]})}return J})()},7575(Zt,pe,l){"use strict";l.d(pe,{HM:()=>L,PO:()=>B});var i=l(2615),d=l(3664),v=l(7705),T=l(1804),w=l(2466);function e(A,Pe){1&A&&d.Hgh(0,"div",2)}const O=new i.nKC("MAT_PROGRESS_BAR_DEFAULT_OPTIONS");let L=(()=>{class A{_elementRef=(0,i.WQX)(d.aKT);_ngZone=(0,i.WQX)(d.SKi);_changeDetectorRef=(0,i.WQX)(v.gRc);_renderer=(0,i.WQX)(d.sFG);_cleanupTransitionEnd;constructor(){const le=(0,T._J)(),Ce=(0,i.WQX)(O,{optional:!0});this._isNoopAnimation="di-disabled"===le,"reduced-motion"===le&&this._elementRef.nativeElement.classList.add("mat-progress-bar-reduced-motion"),Ce&&(Ce.color&&(this.color=this._defaultColor=Ce.color),this.mode=Ce.mode||this.mode)}_isNoopAnimation;get color(){return this._color||this._defaultColor}set color(le){this._color=le}_color;_defaultColor="primary";get value(){return this._value}set value(le){this._value=C(le||0),this._changeDetectorRef.markForCheck()}_value=0;get bufferValue(){return this._bufferValue||0}set bufferValue(le){this._bufferValue=C(le||0),this._changeDetectorRef.markForCheck()}_bufferValue=0;animationEnd=new d.bkB;get mode(){return this._mode}set mode(le){this._mode=le,this._changeDetectorRef.markForCheck()}_mode="determinate";ngAfterViewInit(){this._ngZone.runOutsideAngular(()=>{this._cleanupTransitionEnd=this._renderer.listen(this._elementRef.nativeElement,"transitionend",this._transitionendHandler)})}ngOnDestroy(){this._cleanupTransitionEnd?.()}_getPrimaryBarTransform(){return`scaleX(${this._isIndeterminate()?1:this.value/100})`}_getBufferBarFlexBasis(){return`${"buffer"===this.mode?this.bufferValue:100}%`}_isIndeterminate(){return"indeterminate"===this.mode||"query"===this.mode}_transitionendHandler=le=>{0===this.animationEnd.observers.length||!le.target||!le.target.classList.contains("mdc-linear-progress__primary-bar")||("determinate"===this.mode||"buffer"===this.mode)&&this._ngZone.run(()=>this.animationEnd.next({value:this.value}))};static \u0275fac=function(Ce){return new(Ce||A)};static \u0275cmp=d.VBU({type:A,selectors:[["mat-progress-bar"]],hostAttrs:["role","progressbar","aria-valuemin","0","aria-valuemax","100","tabindex","-1",1,"mat-mdc-progress-bar","mdc-linear-progress"],hostVars:10,hostBindings:function(Ce,Ae){2&Ce&&(d.BMQ("aria-valuenow",Ae._isIndeterminate()?null:Ae.value)("mode",Ae.mode),d.HbH("mat-"+Ae.color),d.AVh("_mat-animation-noopable",Ae._isNoopAnimation)("mdc-linear-progress--animation-ready",!Ae._isNoopAnimation)("mdc-linear-progress--indeterminate",Ae._isIndeterminate()))},inputs:{color:"color",value:[2,"value","value",v.Udg],bufferValue:[2,"bufferValue","bufferValue",v.Udg],mode:"mode"},outputs:{animationEnd:"animationEnd"},exportAs:["matProgressBar"],decls:7,vars:5,consts:[["aria-hidden","true",1,"mdc-linear-progress__buffer"],[1,"mdc-linear-progress__buffer-bar"],[1,"mdc-linear-progress__buffer-dots"],["aria-hidden","true",1,"mdc-linear-progress__bar","mdc-linear-progress__primary-bar"],[1,"mdc-linear-progress__bar-inner"],["aria-hidden","true",1,"mdc-linear-progress__bar","mdc-linear-progress__secondary-bar"]],template:function(Ce,Ae){1&Ce&&(d.rj2(0,"div",0),d.Hgh(1,"div",1),d.nVh(2,e,1,0,"div",2),d.eux(),d.rj2(3,"div",3),d.Hgh(4,"span",4),d.eux(),d.rj2(5,"div",5),d.Hgh(6,"span",4),d.eux()),2&Ce&&(d.R7$(),d.xc7("flex-basis",Ae._getBufferBarFlexBasis()),d.R7$(),d.vxM("buffer"===Ae.mode?2:-1),d.R7$(),d.xc7("transform",Ae._getPrimaryBarTransform()))},styles:[".mat-mdc-progress-bar{--mat-progress-bar-animation-multiplier: 1;display:block;text-align:start}.mat-mdc-progress-bar[mode=query]{transform:scaleX(-1)}.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__buffer-dots,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__primary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__secondary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__bar-inner.mdc-linear-progress__bar-inner{animation:none}.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__primary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__buffer-bar{transition:transform 1ms}.mat-progress-bar-reduced-motion{--mat-progress-bar-animation-multiplier: 2}.mdc-linear-progress{position:relative;width:100%;transform:translateZ(0);outline:1px solid rgba(0,0,0,0);overflow-x:hidden;transition:opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);height:max(var(--mat-progress-bar-track-height, 4px),var(--mat-progress-bar-active-indicator-height, 4px))}@media(forced-colors: active){.mdc-linear-progress{outline-color:CanvasText}}.mdc-linear-progress__bar{position:absolute;top:0;bottom:0;margin:auto 0;width:100%;animation:none;transform-origin:top left;transition:transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);height:var(--mat-progress-bar-active-indicator-height, 4px)}.mdc-linear-progress--indeterminate .mdc-linear-progress__bar{transition:none}[dir=rtl] .mdc-linear-progress__bar{right:0;transform-origin:center right}.mdc-linear-progress__bar-inner{display:inline-block;position:absolute;width:100%;animation:none;border-top-style:solid;border-color:var(--mat-progress-bar-active-indicator-color, var(--mat-sys-primary));border-top-width:var(--mat-progress-bar-active-indicator-height, 4px)}.mdc-linear-progress__buffer{display:flex;position:absolute;top:0;bottom:0;margin:auto 0;width:100%;overflow:hidden;height:var(--mat-progress-bar-track-height, 4px);border-radius:var(--mat-progress-bar-track-shape, var(--mat-sys-corner-none))}.mdc-linear-progress__buffer-dots{background-image:radial-gradient(circle, var(--mat-progress-bar-track-color, var(--mat-sys-surface-variant)) calc(var(--mat-progress-bar-track-height, 4px) / 2), transparent 0);background-repeat:repeat-x;background-size:calc(calc(var(--mat-progress-bar-track-height, 4px) / 2)*5);background-position:left;flex:auto;transform:rotate(180deg);animation:mdc-linear-progress-buffering calc(250ms*var(--mat-progress-bar-animation-multiplier)) infinite linear}@media(forced-colors: active){.mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}[dir=rtl] .mdc-linear-progress__buffer-dots{animation:mdc-linear-progress-buffering-reverse calc(250ms*var(--mat-progress-bar-animation-multiplier)) infinite linear;transform:rotate(0)}.mdc-linear-progress__buffer-bar{flex:0 1 100%;transition:flex-basis 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);background-color:var(--mat-progress-bar-track-color, var(--mat-sys-surface-variant))}.mdc-linear-progress__primary-bar{transform:scaleX(0)}.mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{left:-145.166611%}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar{animation:mdc-linear-progress-primary-indeterminate-translate calc(2s*var(--mat-progress-bar-animation-multiplier)) infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar>.mdc-linear-progress__bar-inner{animation:mdc-linear-progress-primary-indeterminate-scale calc(2s*var(--mat-progress-bar-animation-multiplier)) infinite linear}[dir=rtl] .mdc-linear-progress.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar{animation-name:mdc-linear-progress-primary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress.mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{right:-145.166611%;left:auto}.mdc-linear-progress__secondary-bar{display:none}.mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar{left:-54.888891%;display:block}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation:mdc-linear-progress-secondary-indeterminate-translate calc(2s*var(--mat-progress-bar-animation-multiplier)) infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar>.mdc-linear-progress__bar-inner{animation:mdc-linear-progress-secondary-indeterminate-scale calc(2s*var(--mat-progress-bar-animation-multiplier)) infinite linear}[dir=rtl] .mdc-linear-progress.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation-name:mdc-linear-progress-secondary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress.mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar{right:-54.888891%;left:auto}@keyframes mdc-linear-progress-buffering{from{transform:rotate(180deg) translateX(calc(var(--mat-progress-bar-track-height, 4px) * -2.5))}}@keyframes mdc-linear-progress-primary-indeterminate-translate{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(83.67142%)}100%{transform:translateX(200.611057%)}}@keyframes mdc-linear-progress-primary-indeterminate-scale{0%{transform:scaleX(0.08)}36.65%{animation-timing-function:cubic-bezier(0.334731, 0.12482, 0.785844, 1);transform:scaleX(0.08)}69.15%{animation-timing-function:cubic-bezier(0.06, 0.11, 0.6, 1);transform:scaleX(0.661479)}100%{transform:scaleX(0.08)}}@keyframes mdc-linear-progress-secondary-indeterminate-translate{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(37.651913%)}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(84.386165%)}100%{transform:translateX(160.277782%)}}@keyframes mdc-linear-progress-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.205028, 0.057051, 0.57661, 0.453971);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.152313, 0.196432, 0.648374, 1.004315);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.257759, -0.003163, 0.211762, 1.38179);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mdc-linear-progress-primary-indeterminate-translate-reverse{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(-83.67142%)}100%{transform:translateX(-200.611057%)}}@keyframes mdc-linear-progress-secondary-indeterminate-translate-reverse{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(-37.651913%)}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(-84.386165%)}100%{transform:translateX(-160.277782%)}}@keyframes mdc-linear-progress-buffering-reverse{from{transform:translateX(-10px)}}\n"],encapsulation:2,changeDetection:0})}return A})();function C(A,Pe=0,le=100){return Math.max(Pe,Math.min(le,A))}let B=(()=>{class A{static \u0275fac=function(Ce){return new(Ce||A)};static \u0275mod=d.$C({type:A});static \u0275inj=i.G2t({imports:[w.y]})}return A})()},9183(Zt,pe,l){"use strict";l.d(pe,{D6:()=>le,LG:()=>A});var i=l(2615),d=l(3664),v=l(7705),T=l(2200),w=l(1804),e=l(2466);const O=["determinateSpinner"];function f(Ce,Ae){if(1&Ce&&(i.qSk(),d.j41(0,"svg",11),d.nrm(1,"circle",12),d.k0s()),2&Ce){const j=d.XpG();d.BMQ("viewBox",j._viewBox()),d.R7$(),d.xc7("stroke-dasharray",j._strokeCircumference(),"px")("stroke-dashoffset",j._strokeCircumference()/2,"px")("stroke-width",j._circleStrokeWidth(),"%"),d.BMQ("r",j._circleRadius())}}const u=new i.nKC("mat-progress-spinner-default-options",{providedIn:"root",factory:function L(){return{diameter:C}}}),C=100;let A=(()=>{class Ce{_elementRef=(0,i.WQX)(d.aKT);_noopAnimations;get color(){return this._color||this._defaultColor}set color(j){this._color=j}_color;_defaultColor="primary";_determinateCircle;constructor(){const j=(0,i.WQX)(u),W=(0,w._J)(),G=this._elementRef.nativeElement;this._noopAnimations="di-disabled"===W&&!!j&&!j._forceAnimations,this.mode="mat-spinner"===G.nodeName.toLowerCase()?"indeterminate":"determinate",!this._noopAnimations&&"reduced-motion"===W&&G.classList.add("mat-progress-spinner-reduced-motion"),j&&(j.color&&(this.color=this._defaultColor=j.color),j.diameter&&(this.diameter=j.diameter),j.strokeWidth&&(this.strokeWidth=j.strokeWidth))}mode;get value(){return"determinate"===this.mode?this._value:0}set value(j){this._value=Math.max(0,Math.min(100,j||0))}_value=0;get diameter(){return this._diameter}set diameter(j){this._diameter=j||0}_diameter=C;get strokeWidth(){return this._strokeWidth??this.diameter/10}set strokeWidth(j){this._strokeWidth=j||0}_strokeWidth;_circleRadius(){return(this.diameter-10)/2}_viewBox(){const j=2*this._circleRadius()+this.strokeWidth;return`0 0 ${j} ${j}`}_strokeCircumference(){return 2*Math.PI*this._circleRadius()}_strokeDashOffset(){return"determinate"===this.mode?this._strokeCircumference()*(100-this._value)/100:null}_circleStrokeWidth(){return this.strokeWidth/this.diameter*100}static \u0275fac=function(W){return new(W||Ce)};static \u0275cmp=d.VBU({type:Ce,selectors:[["mat-progress-spinner"],["mat-spinner"]],viewQuery:function(W,G){if(1&W&&d.GBs(O,5),2&W){let re;d.mGM(re=d.lsd())&&(G._determinateCircle=re.first)}},hostAttrs:["role","progressbar","tabindex","-1",1,"mat-mdc-progress-spinner","mdc-circular-progress"],hostVars:18,hostBindings:function(W,G){2&W&&(d.BMQ("aria-valuemin",0)("aria-valuemax",100)("aria-valuenow","determinate"===G.mode?G.value:null)("mode",G.mode),d.HbH("mat-"+G.color),d.xc7("width",G.diameter,"px")("height",G.diameter,"px")("--mat-progress-spinner-size",G.diameter+"px")("--mat-progress-spinner-active-indicator-width",G.diameter+"px"),d.AVh("_mat-animation-noopable",G._noopAnimations)("mdc-circular-progress--indeterminate","indeterminate"===G.mode))},inputs:{color:"color",mode:"mode",value:[2,"value","value",v.Udg],diameter:[2,"diameter","diameter",v.Udg],strokeWidth:[2,"strokeWidth","strokeWidth",v.Udg]},exportAs:["matProgressSpinner"],decls:14,vars:11,consts:[["circle",""],["determinateSpinner",""],["aria-hidden","true",1,"mdc-circular-progress__determinate-container"],["xmlns","http://www.w3.org/2000/svg","focusable","false",1,"mdc-circular-progress__determinate-circle-graphic"],["cx","50%","cy","50%",1,"mdc-circular-progress__determinate-circle"],["aria-hidden","true",1,"mdc-circular-progress__indeterminate-container"],[1,"mdc-circular-progress__spinner-layer"],[1,"mdc-circular-progress__circle-clipper","mdc-circular-progress__circle-left"],[3,"ngTemplateOutlet"],[1,"mdc-circular-progress__gap-patch"],[1,"mdc-circular-progress__circle-clipper","mdc-circular-progress__circle-right"],["xmlns","http://www.w3.org/2000/svg","focusable","false",1,"mdc-circular-progress__indeterminate-circle-graphic"],["cx","50%","cy","50%"]],template:function(W,G){if(1&W&&(d.DNE(0,f,2,8,"ng-template",null,0,d.C5r),d.j41(2,"div",2,1),i.qSk(),d.j41(4,"svg",3),d.nrm(5,"circle",4),d.k0s()(),i.joV(),d.j41(6,"div",5)(7,"div",6)(8,"div",7),d.eu8(9,8),d.k0s(),d.j41(10,"div",9),d.eu8(11,8),d.k0s(),d.j41(12,"div",10),d.eu8(13,8),d.k0s()()()),2&W){const re=d.sdS(1);d.R7$(4),d.BMQ("viewBox",G._viewBox()),d.R7$(),d.xc7("stroke-dasharray",G._strokeCircumference(),"px")("stroke-dashoffset",G._strokeDashOffset(),"px")("stroke-width",G._circleStrokeWidth(),"%"),d.BMQ("r",G._circleRadius()),d.R7$(4),d.Y8G("ngTemplateOutlet",re),d.R7$(2),d.Y8G("ngTemplateOutlet",re),d.R7$(2),d.Y8G("ngTemplateOutlet",re)}},dependencies:[T.T3],styles:[".mat-mdc-progress-spinner{--mat-progress-spinner-animation-multiplier: 1;display:block;overflow:hidden;line-height:0;position:relative;direction:ltr;transition:opacity 250ms cubic-bezier(0.4, 0, 0.6, 1)}.mat-mdc-progress-spinner circle{stroke-width:var(--mat-progress-spinner-active-indicator-width, 4px)}.mat-mdc-progress-spinner._mat-animation-noopable,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__determinate-circle{transition:none !important}.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-circle-graphic,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__spinner-layer,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-container{animation:none !important}.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-container circle{stroke-dasharray:0 !important}@media(forced-colors: active){.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic,.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle{stroke:currentColor;stroke:CanvasText}}.mat-progress-spinner-reduced-motion{--mat-progress-spinner-animation-multiplier: 1.25}.mdc-circular-progress__determinate-container,.mdc-circular-progress__indeterminate-circle-graphic,.mdc-circular-progress__indeterminate-container,.mdc-circular-progress__spinner-layer{position:absolute;width:100%;height:100%}.mdc-circular-progress__determinate-container{transform:rotate(-90deg)}.mdc-circular-progress--indeterminate .mdc-circular-progress__determinate-container{opacity:0}.mdc-circular-progress__indeterminate-container{font-size:0;letter-spacing:0;white-space:nowrap;opacity:0}.mdc-circular-progress--indeterminate .mdc-circular-progress__indeterminate-container{opacity:1;animation:mdc-circular-progress-container-rotate calc(1568.2352941176ms*var(--mat-progress-spinner-animation-multiplier)) linear infinite}.mdc-circular-progress__determinate-circle-graphic,.mdc-circular-progress__indeterminate-circle-graphic{fill:rgba(0,0,0,0)}.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:var(--mat-progress-spinner-active-indicator-color, var(--mat-sys-primary))}@media(forced-colors: active){.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}.mdc-circular-progress__determinate-circle{transition:stroke-dashoffset 500ms cubic-bezier(0, 0, 0.2, 1)}.mdc-circular-progress__gap-patch{position:absolute;top:0;left:47.5%;box-sizing:border-box;width:5%;height:100%;overflow:hidden}.mdc-circular-progress__gap-patch .mdc-circular-progress__indeterminate-circle-graphic{left:-900%;width:2000%;transform:rotate(180deg)}.mdc-circular-progress__circle-clipper .mdc-circular-progress__indeterminate-circle-graphic{width:200%}.mdc-circular-progress__circle-right .mdc-circular-progress__indeterminate-circle-graphic{left:-100%}.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-left .mdc-circular-progress__indeterminate-circle-graphic{animation:mdc-circular-progress-left-spin calc(1333ms*var(--mat-progress-spinner-animation-multiplier)) cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-right .mdc-circular-progress__indeterminate-circle-graphic{animation:mdc-circular-progress-right-spin calc(1333ms*var(--mat-progress-spinner-animation-multiplier)) cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress__circle-clipper{display:inline-flex;position:relative;width:50%;height:100%;overflow:hidden}.mdc-circular-progress--indeterminate .mdc-circular-progress__spinner-layer{animation:mdc-circular-progress-spinner-layer-rotate calc(5332ms*var(--mat-progress-spinner-animation-multiplier)) cubic-bezier(0.4, 0, 0.2, 1) infinite both}@keyframes mdc-circular-progress-container-rotate{to{transform:rotate(360deg)}}@keyframes mdc-circular-progress-spinner-layer-rotate{12.5%{transform:rotate(135deg)}25%{transform:rotate(270deg)}37.5%{transform:rotate(405deg)}50%{transform:rotate(540deg)}62.5%{transform:rotate(675deg)}75%{transform:rotate(810deg)}87.5%{transform:rotate(945deg)}100%{transform:rotate(1080deg)}}@keyframes mdc-circular-progress-left-spin{from{transform:rotate(265deg)}50%{transform:rotate(130deg)}to{transform:rotate(265deg)}}@keyframes mdc-circular-progress-right-spin{from{transform:rotate(-265deg)}50%{transform:rotate(-130deg)}to{transform:rotate(-265deg)}}\n"],encapsulation:2,changeDetection:0})}return Ce})(),le=(()=>{class Ce{static \u0275fac=function(W){return new(W||Ce)};static \u0275mod=d.$C({type:Ce});static \u0275inj=i.G2t({imports:[e.y]})}return Ce})()},483(Zt,pe,l){"use strict";l.d(pe,{O:()=>T});var i=l(2615),d=l(3664),v=l(2466);let T=(()=>{class w{static \u0275fac=function(f){return new(f||w)};static \u0275mod=d.$C({type:w});static \u0275inj=i.G2t({imports:[v.y]})}return w})()},3386(Zt,pe,l){"use strict";l.d(pe,{w:()=>v});var i=l(3664),d=l(1804);let v=(()=>{class T{_animationsDisabled=(0,d.Rc)();state="unchecked";disabled=!1;appearance="full";constructor(){}static \u0275fac=function(O){return new(O||T)};static \u0275cmp=i.VBU({type:T,selectors:[["mat-pseudo-checkbox"]],hostAttrs:[1,"mat-pseudo-checkbox"],hostVars:12,hostBindings:function(O,f){2&O&&i.AVh("mat-pseudo-checkbox-indeterminate","indeterminate"===f.state)("mat-pseudo-checkbox-checked","checked"===f.state)("mat-pseudo-checkbox-disabled",f.disabled)("mat-pseudo-checkbox-minimal","minimal"===f.appearance)("mat-pseudo-checkbox-full","full"===f.appearance)("_mat-animation-noopable",f._animationsDisabled)},inputs:{state:"state",disabled:"disabled",appearance:"appearance"},decls:0,vars:0,template:function(O,f){},styles:['.mat-pseudo-checkbox{border-radius:2px;cursor:pointer;display:inline-block;vertical-align:middle;box-sizing:border-box;position:relative;flex-shrink:0;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1),background-color 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox::after{position:absolute;opacity:0;content:"";border-bottom:2px solid currentColor;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox._mat-animation-noopable{transition:none !important;animation:none !important}.mat-pseudo-checkbox._mat-animation-noopable::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{left:1px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{left:1px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked::after,.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-indeterminate::after{color:var(--mat-pseudo-checkbox-minimal-selected-checkmark-color, var(--mat-sys-primary))}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled::after,.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled::after{color:var(--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-pseudo-checkbox-full{border-color:var(--mat-pseudo-checkbox-full-unselected-icon-color, var(--mat-sys-on-surface-variant));border-width:2px;border-style:solid}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{border-color:var(--mat-pseudo-checkbox-full-disabled-unselected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate{background-color:var(--mat-pseudo-checkbox-full-selected-icon-color, var(--mat-sys-primary));border-color:rgba(0,0,0,0)}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked::after,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate::after{color:var(--mat-pseudo-checkbox-full-selected-checkmark-color, var(--mat-sys-on-primary))}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background-color:var(--mat-pseudo-checkbox-full-disabled-selected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled::after,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled::after{color:var(--mat-pseudo-checkbox-full-disabled-selected-checkmark-color, var(--mat-sys-surface))}.mat-pseudo-checkbox{width:18px;height:18px}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked::after{width:14px;height:6px;transform-origin:center;top:-4.2426406871px;left:0;bottom:0;right:0;margin:auto}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-indeterminate::after{top:8px;width:16px}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked::after{width:10px;height:4px;transform-origin:center;top:-2.8284271247px;left:0;bottom:0;right:0;margin:auto}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate::after{top:6px;width:12px}\n'],encapsulation:2,changeDetection:0})}return T})()},5951(Zt,pe,l){"use strict";l.d(pe,{VT:()=>Ee,Wk:()=>ce,_g:()=>V});var i=l(6838),d=l(9726),v=l(8689),T=l(2615),w=l(3664),e=l(7705),O=l(9417),f=l(8968),u=l(1804),L=l(2046),C=l(2496),B=l(3155),A=l(2466),Pe=l(6881);const le=["input"],Ce=["formField"],Ae=["*"];class j{source;value;constructor(ne,J){this.source=ne,this.value=J}}const W={provide:O.kq,useExisting:(0,T.Rfq)(()=>Ee),multi:!0},G=new T.nKC("MatRadioGroup"),re=new T.nKC("mat-radio-default-options",{providedIn:"root",factory:function xe(){return{color:"accent",disabledInteractive:!1}}});let Ee=(()=>{class be{_changeDetector=(0,T.WQX)(e.gRc);_value=null;_name=(0,T.WQX)(d.g).getId("mat-radio-group-");_selected=null;_isInitialized=!1;_labelPosition="after";_disabled=!1;_required=!1;_buttonChanges;_controlValueAccessorChangeFn=()=>{};onTouched=()=>{};change=new w.bkB;_radios;color;get name(){return this._name}set name(J){this._name=J,this._updateRadioButtonNames()}get labelPosition(){return this._labelPosition}set labelPosition(J){this._labelPosition="before"===J?"before":"after",this._markRadiosForCheck()}get value(){return this._value}set value(J){this._value!==J&&(this._value=J,this._updateSelectedRadioFromValue(),this._checkSelectedRadioButton())}_checkSelectedRadioButton(){this._selected&&!this._selected.checked&&(this._selected.checked=!0)}get selected(){return this._selected}set selected(J){this._selected=J,this.value=J?J.value:null,this._checkSelectedRadioButton()}get disabled(){return this._disabled}set disabled(J){this._disabled=J,this._markRadiosForCheck()}get required(){return this._required}set required(J){this._required=J,this._markRadiosForCheck()}get disabledInteractive(){return this._disabledInteractive}set disabledInteractive(J){this._disabledInteractive=J,this._markRadiosForCheck()}_disabledInteractive=!1;constructor(){}ngAfterContentInit(){this._isInitialized=!0,this._buttonChanges=this._radios.changes.subscribe(()=>{this.selected&&!this._radios.find(J=>J===this.selected)&&(this._selected=null)})}ngOnDestroy(){this._buttonChanges?.unsubscribe()}_touch(){this.onTouched&&this.onTouched()}_updateRadioButtonNames(){this._radios&&this._radios.forEach(J=>{J.name=this.name,J._markForCheck()})}_updateSelectedRadioFromValue(){this._radios&&(null===this._selected||this._selected.value!==this._value)&&(this._selected=null,this._radios.forEach(De=>{De.checked=this.value===De.value,De.checked&&(this._selected=De)}))}_emitChangeEvent(){this._isInitialized&&this.change.emit(new j(this._selected,this._value))}_markRadiosForCheck(){this._radios&&this._radios.forEach(J=>J._markForCheck())}writeValue(J){this.value=J,this._changeDetector.markForCheck()}registerOnChange(J){this._controlValueAccessorChangeFn=J}registerOnTouched(J){this.onTouched=J}setDisabledState(J){this.disabled=J,this._changeDetector.markForCheck()}static \u0275fac=function(De){return new(De||be)};static \u0275dir=w.FsC({type:be,selectors:[["mat-radio-group"]],contentQueries:function(De,Re,Xe){if(1&De&&w.wni(Xe,V,5),2&De){let _e;w.mGM(_e=w.lsd())&&(Re._radios=_e)}},hostAttrs:["role","radiogroup",1,"mat-mdc-radio-group"],inputs:{color:"color",name:"name",labelPosition:"labelPosition",value:"value",selected:"selected",disabled:[2,"disabled","disabled",e.L39],required:[2,"required","required",e.L39],disabledInteractive:[2,"disabledInteractive","disabledInteractive",e.L39]},outputs:{change:"change"},exportAs:["matRadioGroup"],features:[w.Jv_([W,{provide:G,useExisting:be}])]})}return be})(),V=(()=>{class be{_elementRef=(0,T.WQX)(w.aKT);_changeDetector=(0,T.WQX)(e.gRc);_focusMonitor=(0,T.WQX)(i.FN);_radioDispatcher=(0,T.WQX)(v.z);_defaultOptions=(0,T.WQX)(re,{optional:!0});_ngZone=(0,T.WQX)(w.SKi);_renderer=(0,T.WQX)(w.sFG);_uniqueId=(0,T.WQX)(d.g).getId("mat-radio-");_cleanupClick;id=this._uniqueId;name;ariaLabel;ariaLabelledby;ariaDescribedby;disableRipple=!1;tabIndex=0;get checked(){return this._checked}set checked(J){this._checked!==J&&(this._checked=J,J&&this.radioGroup&&this.radioGroup.value!==this.value?this.radioGroup.selected=this:!J&&this.radioGroup&&this.radioGroup.value===this.value&&(this.radioGroup.selected=null),J&&this._radioDispatcher.notify(this.id,this.name),this._changeDetector.markForCheck())}get value(){return this._value}set value(J){this._value!==J&&(this._value=J,null!==this.radioGroup&&(this.checked||(this.checked=this.radioGroup.value===J),this.checked&&(this.radioGroup.selected=this)))}get labelPosition(){return this._labelPosition||this.radioGroup&&this.radioGroup.labelPosition||"after"}set labelPosition(J){this._labelPosition=J}_labelPosition;get disabled(){return this._disabled||null!==this.radioGroup&&this.radioGroup.disabled}set disabled(J){this._setDisabled(J)}get required(){return this._required||this.radioGroup&&this.radioGroup.required}set required(J){J!==this._required&&this._changeDetector.markForCheck(),this._required=J}get color(){return this._color||this.radioGroup&&this.radioGroup.color||this._defaultOptions&&this._defaultOptions.color||"accent"}set color(J){this._color=J}_color;get disabledInteractive(){return this._disabledInteractive||null!==this.radioGroup&&this.radioGroup.disabledInteractive}set disabledInteractive(J){this._disabledInteractive=J}_disabledInteractive;change=new w.bkB;radioGroup;get inputId(){return`${this.id||this._uniqueId}-input`}_checked=!1;_disabled;_required;_value=null;_removeUniqueSelectionListener=()=>{};_previousTabIndex;_inputElement;_rippleTrigger;_noopAnimations=(0,u.Rc)();_injector=(0,T.WQX)(T.zZn);constructor(){(0,T.WQX)(f.l).load(L.A);const J=(0,T.WQX)(G,{optional:!0}),De=(0,T.WQX)(new e.ES_("tabindex"),{optional:!0});this.radioGroup=J,this._disabledInteractive=this._defaultOptions?.disabledInteractive??!1,De&&(this.tabIndex=(0,e.Udg)(De,0))}focus(J,De){De?this._focusMonitor.focusVia(this._inputElement,De,J):this._inputElement.nativeElement.focus(J)}_markForCheck(){this._changeDetector.markForCheck()}ngOnInit(){this.radioGroup&&(this.checked=this.radioGroup.value===this._value,this.checked&&(this.radioGroup.selected=this),this.name=this.radioGroup.name),this._removeUniqueSelectionListener=this._radioDispatcher.listen((J,De)=>{J!==this.id&&De===this.name&&(this.checked=!1)})}ngDoCheck(){this._updateTabIndex()}ngAfterViewInit(){this._updateTabIndex(),this._focusMonitor.monitor(this._elementRef,!0).subscribe(J=>{!J&&this.radioGroup&&this.radioGroup._touch()}),this._ngZone.runOutsideAngular(()=>{this._cleanupClick=this._renderer.listen(this._inputElement.nativeElement,"click",this._onInputClick)})}ngOnDestroy(){this._cleanupClick?.(),this._focusMonitor.stopMonitoring(this._elementRef),this._removeUniqueSelectionListener()}_emitChangeEvent(){this.change.emit(new j(this,this._value))}_isRippleDisabled(){return this.disableRipple||this.disabled}_onInputInteraction(J){if(J.stopPropagation(),!this.checked&&!this.disabled){const De=this.radioGroup&&this.value!==this.radioGroup.value;this.checked=!0,this._emitChangeEvent(),this.radioGroup&&(this.radioGroup._controlValueAccessorChangeFn(this.value),De&&this.radioGroup._emitChangeEvent())}}_onTouchTargetClick(J){this._onInputInteraction(J),(!this.disabled||this.disabledInteractive)&&this._inputElement?.nativeElement.focus()}_setDisabled(J){this._disabled!==J&&(this._disabled=J,this._changeDetector.markForCheck())}_onInputClick=J=>{this.disabled&&this.disabledInteractive&&J.preventDefault()};_updateTabIndex(){const J=this.radioGroup;let De;if(De=J&&J.selected&&!this.disabled?J.selected===this?this.tabIndex:-1:this.tabIndex,De!==this._previousTabIndex){const Re=this._inputElement?.nativeElement;Re&&(Re.setAttribute("tabindex",De+""),this._previousTabIndex=De,(0,w.mal)(()=>{queueMicrotask(()=>{J&&J.selected&&J.selected!==this&&document.activeElement===Re&&(J.selected?._inputElement.nativeElement.focus(),document.activeElement===Re&&this._inputElement.nativeElement.blur())})},{injector:this._injector}))}}static \u0275fac=function(De){return new(De||be)};static \u0275cmp=w.VBU({type:be,selectors:[["mat-radio-button"]],viewQuery:function(De,Re){if(1&De&&(w.GBs(le,5),w.GBs(Ce,7,w.aKT)),2&De){let Xe;w.mGM(Xe=w.lsd())&&(Re._inputElement=Xe.first),w.mGM(Xe=w.lsd())&&(Re._rippleTrigger=Xe.first)}},hostAttrs:[1,"mat-mdc-radio-button"],hostVars:19,hostBindings:function(De,Re){1&De&&w.bIt("focus",function(){return Re._inputElement.nativeElement.focus()}),2&De&&(w.BMQ("id",Re.id)("tabindex",null)("aria-label",null)("aria-labelledby",null)("aria-describedby",null),w.AVh("mat-primary","primary"===Re.color)("mat-accent","accent"===Re.color)("mat-warn","warn"===Re.color)("mat-mdc-radio-checked",Re.checked)("mat-mdc-radio-disabled",Re.disabled)("mat-mdc-radio-disabled-interactive",Re.disabledInteractive)("_mat-animation-noopable",Re._noopAnimations))},inputs:{id:"id",name:"name",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],disableRipple:[2,"disableRipple","disableRipple",e.L39],tabIndex:[2,"tabIndex","tabIndex",J=>null==J?0:(0,e.Udg)(J)],checked:[2,"checked","checked",e.L39],value:"value",labelPosition:"labelPosition",disabled:[2,"disabled","disabled",e.L39],required:[2,"required","required",e.L39],color:"color",disabledInteractive:[2,"disabledInteractive","disabledInteractive",e.L39]},outputs:{change:"change"},exportAs:["matRadioButton"],ngContentSelectors:Ae,decls:13,vars:17,consts:[["formField",""],["input",""],["mat-internal-form-field","",3,"labelPosition"],[1,"mdc-radio"],[1,"mat-mdc-radio-touch-target",3,"click"],["type","radio","aria-invalid","false",1,"mdc-radio__native-control",3,"change","id","checked","disabled","required"],[1,"mdc-radio__background"],[1,"mdc-radio__outer-circle"],[1,"mdc-radio__inner-circle"],["mat-ripple","",1,"mat-radio-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mat-ripple-element","mat-radio-persistent-ripple"],[1,"mdc-label",3,"for"]],template:function(De,Re){if(1&De){const Xe=w.RV6();w.NAR(),w.j41(0,"div",2,0)(2,"div",3)(3,"div",4),w.bIt("click",function(he){return T.eBV(Xe),T.Njj(Re._onTouchTargetClick(he))}),w.k0s(),w.j41(4,"input",5,1),w.bIt("change",function(he){return T.eBV(Xe),T.Njj(Re._onInputInteraction(he))}),w.k0s(),w.j41(6,"div",6),w.nrm(7,"div",7)(8,"div",8),w.k0s(),w.j41(9,"div",9),w.nrm(10,"div",10),w.k0s()(),w.j41(11,"label",11),w.SdG(12),w.k0s()()}2&De&&(w.Y8G("labelPosition",Re.labelPosition),w.R7$(2),w.AVh("mdc-radio--disabled",Re.disabled),w.R7$(2),w.Y8G("id",Re.inputId)("checked",Re.checked)("disabled",Re.disabled&&!Re.disabledInteractive)("required",Re.required),w.BMQ("name",Re.name)("value",Re.value)("aria-label",Re.ariaLabel)("aria-labelledby",Re.ariaLabelledby)("aria-describedby",Re.ariaDescribedby)("aria-disabled",Re.disabled&&Re.disabledInteractive?"true":null),w.R7$(5),w.Y8G("matRippleTrigger",Re._rippleTrigger.nativeElement)("matRippleDisabled",Re._isRippleDisabled())("matRippleCentered",!0),w.R7$(2),w.Y8G("for",Re.inputId))},dependencies:[C.r6,B.t],styles:['.mat-mdc-radio-button{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-radio-button .mdc-radio{display:inline-block;position:relative;flex:0 0 auto;box-sizing:content-box;width:20px;height:20px;cursor:pointer;will-change:opacity,transform,border-color,color;padding:calc((var(--mat-radio-state-layer-size, 40px) - 20px)/2)}.mat-mdc-radio-button .mdc-radio:hover>.mdc-radio__native-control:not([disabled]):not(:focus)~.mdc-radio__background::before{opacity:.04;transform:scale(1)}.mat-mdc-radio-button .mdc-radio:hover>.mdc-radio__native-control:not([disabled])~.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-unselected-hover-icon-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button .mdc-radio:hover>.mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-selected-hover-icon-color, var(--mat-sys-primary))}.mat-mdc-radio-button .mdc-radio:hover>.mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-selected-hover-icon-color, var(--mat-sys-primary, currentColor))}.mat-mdc-radio-button .mdc-radio:active>.mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-unselected-pressed-icon-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button .mdc-radio:active>.mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-selected-pressed-icon-color, var(--mat-sys-primary))}.mat-mdc-radio-button .mdc-radio:active>.mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-selected-pressed-icon-color, var(--mat-sys-primary, currentColor))}.mat-mdc-radio-button .mdc-radio__background{display:inline-block;position:relative;box-sizing:border-box;width:20px;height:20px}.mat-mdc-radio-button .mdc-radio__background::before{position:absolute;transform:scale(0, 0);border-radius:50%;opacity:0;pointer-events:none;content:"";transition:opacity 90ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms cubic-bezier(0.4, 0, 0.6, 1);width:var(--mat-radio-state-layer-size, 40px);height:var(--mat-radio-state-layer-size, 40px);top:calc(-1*(var(--mat-radio-state-layer-size, 40px) - 20px)/2);left:calc(-1*(var(--mat-radio-state-layer-size, 40px) - 20px)/2)}.mat-mdc-radio-button .mdc-radio__outer-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;border-width:2px;border-style:solid;border-radius:50%;transition:border-color 90ms cubic-bezier(0.4, 0, 0.6, 1)}.mat-mdc-radio-button .mdc-radio__inner-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;transform:scale(0);border-radius:50%;transition:transform 90ms cubic-bezier(0.4, 0, 0.6, 1),background-color 90ms cubic-bezier(0.4, 0, 0.6, 1)}@media(forced-colors: active){.mat-mdc-radio-button .mdc-radio__inner-circle{background-color:CanvasText !important}}.mat-mdc-radio-button .mdc-radio__native-control{position:absolute;margin:0;padding:0;opacity:0;top:0;right:0;left:0;cursor:inherit;z-index:1;width:var(--mat-radio-state-layer-size, 40px);height:var(--mat-radio-state-layer-size, 40px)}.mat-mdc-radio-button .mdc-radio__native-control:checked+.mdc-radio__background,.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background{transition:opacity 90ms cubic-bezier(0, 0, 0.2, 1),transform 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background>.mdc-radio__outer-circle{transition:border-color 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background>.mdc-radio__inner-circle{transition:transform 90ms cubic-bezier(0, 0, 0.2, 1),background-color 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button .mdc-radio__native-control:focus+.mdc-radio__background::before{transform:scale(1);opacity:.12;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 1),transform 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button .mdc-radio__native-control:disabled:not(:checked)+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-disabled-unselected-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-radio-disabled-unselected-icon-opacity, 0.38)}.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background{cursor:default}.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-disabled-selected-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-radio-disabled-selected-icon-opacity, 0.38)}.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-disabled-selected-icon-color, var(--mat-sys-on-surface, currentColor));opacity:var(--mat-radio-disabled-selected-icon-opacity, 0.38)}.mat-mdc-radio-button .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-unselected-icon-color, var(--mat-sys-on-surface-variant))}.mat-mdc-radio-button .mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-selected-icon-color, var(--mat-sys-primary))}.mat-mdc-radio-button .mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-selected-icon-color, var(--mat-sys-primary, currentColor))}.mat-mdc-radio-button .mdc-radio__native-control:enabled:focus:checked+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-selected-focus-icon-color, var(--mat-sys-primary))}.mat-mdc-radio-button .mdc-radio__native-control:enabled:focus:checked+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-selected-focus-icon-color, var(--mat-sys-primary, currentColor))}.mat-mdc-radio-button .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__inner-circle{transform:scale(0.5);transition:transform 90ms cubic-bezier(0, 0, 0.2, 1),background-color 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled{pointer-events:auto}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control:not(:checked)+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-disabled-unselected-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-radio-disabled-unselected-icon-opacity, 0.38)}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled:hover .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__outer-circle,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control:checked:focus+.mdc-radio__background>.mdc-radio__outer-circle,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-disabled-selected-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-radio-disabled-selected-icon-opacity, 0.38)}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled:hover .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__inner-circle,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control:checked:focus+.mdc-radio__background>.mdc-radio__inner-circle,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-disabled-selected-icon-color, var(--mat-sys-on-surface, currentColor));opacity:var(--mat-radio-disabled-selected-icon-opacity, 0.38)}.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__background::before,.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__outer-circle,.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__inner-circle{transition:none !important}.mat-mdc-radio-button label{cursor:pointer}.mat-mdc-radio-button .mdc-radio__background::before{background-color:var(--mat-radio-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button.mat-mdc-radio-checked .mat-ripple-element,.mat-mdc-radio-button.mat-mdc-radio-checked .mdc-radio__background::before{background-color:var(--mat-radio-checked-ripple-color, var(--mat-sys-primary))}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mat-ripple-element,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__background::before{background-color:var(--mat-radio-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button .mat-internal-form-field{color:var(--mat-radio-label-text-color, var(--mat-sys-on-surface));font-family:var(--mat-radio-label-text-font, var(--mat-sys-body-medium-font));line-height:var(--mat-radio-label-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-radio-label-text-size, var(--mat-sys-body-medium-size));letter-spacing:var(--mat-radio-label-text-tracking, var(--mat-sys-body-medium-tracking));font-weight:var(--mat-radio-label-text-weight, var(--mat-sys-body-medium-weight))}.mat-mdc-radio-button .mdc-radio--disabled+label{color:var(--mat-radio-disabled-label-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-radio-button .mat-radio-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:50%}.mat-mdc-radio-button .mat-radio-ripple>.mat-ripple-element{opacity:.14}.mat-mdc-radio-button .mat-radio-ripple::before{border-radius:50%}.mat-mdc-radio-button .mdc-radio>.mdc-radio__native-control:focus:enabled:not(:checked)~.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-unselected-focus-icon-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button.cdk-focused .mat-focus-indicator::before{content:""}.mat-mdc-radio-disabled{cursor:default;pointer-events:none}.mat-mdc-radio-disabled.mat-mdc-radio-disabled-interactive{pointer-events:auto}.mat-mdc-radio-touch-target{position:absolute;top:50%;left:50%;height:var(--mat-radio-touch-target-size, 48px);width:var(--mat-radio-touch-target-size, 48px);transform:translate(-50%, -50%);display:var(--mat-radio-touch-target-display, block)}[dir=rtl] .mat-mdc-radio-touch-target{left:auto;right:50%;transform:translate(50%, -50%)}\n'],encapsulation:2,changeDetection:0})}return be})(),ce=(()=>{class be{static \u0275fac=function(De){return new(De||be)};static \u0275mod=w.$C({type:be});static \u0275inj=T.G2t({imports:[A.y,Pe.p,V,A.y]})}return be})()},1048(Zt,pe,l){"use strict";l.d(pe,{E:()=>A});var i=l(2615),d=l(3664),v=l(9842),T=l(4522),w=l(1804),e=l(2496);const O={capture:!0},f=["focus","mousedown","mouseenter","touchstart"],u="mat-ripple-loader-uninitialized",L="mat-ripple-loader-class-name",C="mat-ripple-loader-centered",B="mat-ripple-loader-disabled";let A=(()=>{class Pe{_document=(0,i.WQX)(i.qQL);_animationsDisabled=(0,w.Rc)();_globalRippleOptions=(0,i.WQX)(e.$E,{optional:!0});_platform=(0,i.WQX)(v.O);_ngZone=(0,i.WQX)(d.SKi);_injector=(0,i.WQX)(i.zZn);_eventCleanups;_hosts=new Map;constructor(){const Ce=(0,i.WQX)(d._9s).createRenderer(null,null);this._eventCleanups=this._ngZone.runOutsideAngular(()=>f.map(Ae=>Ce.listen(this._document,Ae,this._onInteraction,O)))}ngOnDestroy(){const Ce=this._hosts.keys();for(const Ae of Ce)this.destroyRipple(Ae);this._eventCleanups.forEach(Ae=>Ae())}configureRipple(Ce,Ae){Ce.setAttribute(u,this._globalRippleOptions?.namespace??""),(Ae.className||!Ce.hasAttribute(L))&&Ce.setAttribute(L,Ae.className||""),Ae.centered&&Ce.setAttribute(C,""),Ae.disabled&&Ce.setAttribute(B,"")}setDisabled(Ce,Ae){const j=this._hosts.get(Ce);j?(j.target.rippleDisabled=Ae,!Ae&&!j.hasSetUpEvents&&(j.hasSetUpEvents=!0,j.renderer.setupTriggerEvents(Ce))):Ae?Ce.setAttribute(B,""):Ce.removeAttribute(B)}_onInteraction=Ce=>{const Ae=(0,T.Fb)(Ce);if(Ae instanceof HTMLElement){const j=Ae.closest(`[${u}="${this._globalRippleOptions?.namespace??""}"]`);j&&this._createRipple(j)}};_createRipple(Ce){if(!this._document||this._hosts.has(Ce))return;Ce.querySelector(".mat-ripple")?.remove();const Ae=this._document.createElement("span");Ae.classList.add("mat-ripple",Ce.getAttribute(L)),Ce.append(Ae);const j=this._globalRippleOptions,W=this._animationsDisabled?0:j?.animation?.enterDuration??e.EX.enterDuration,G=this._animationsDisabled?0:j?.animation?.exitDuration??e.EX.exitDuration,re={rippleDisabled:this._animationsDisabled||j?.disabled||Ce.hasAttribute(B),rippleConfig:{centered:Ce.hasAttribute(C),terminateOnPointerUp:j?.terminateOnPointerUp,animation:{enterDuration:W,exitDuration:G}}},xe=new e.ug(re,this._ngZone,Ae,this._platform,this._injector),Ee=!re.rippleDisabled;Ee&&xe.setupTriggerEvents(Ce),this._hosts.set(Ce,{target:re,renderer:xe,hasSetUpEvents:Ee}),Ce.removeAttribute(u)}destroyRipple(Ce){const Ae=this._hosts.get(Ce);Ae&&(Ae.renderer._removeTriggerEvents(),this._hosts.delete(Ce))}static \u0275fac=function(Ae){return new(Ae||Pe)};static \u0275prov=i.jDH({token:Pe,factory:Pe.\u0275fac,providedIn:"root"})}return Pe})()},6881(Zt,pe,l){"use strict";l.d(pe,{p:()=>T});var i=l(2615),d=l(3664),v=l(2466);let T=(()=>{class w{static \u0275fac=function(f){return new(f||w)};static \u0275mod=d.$C({type:w});static \u0275inj=i.G2t({imports:[v.y,v.y]})}return w})()},2496(Zt,pe,l){"use strict";l.d(pe,{$E:()=>xe,EX:()=>Pe,r6:()=>Ee,ug:()=>G});var i=l(9842),d=l(3300),v=l(4522),T=l(3664),w=l(2615),e=l(5735),O=l(7847),f=l(8968),u=l(1804),L=function(V){return V[V.FADING_IN=0]="FADING_IN",V[V.VISIBLE=1]="VISIBLE",V[V.FADING_OUT=2]="FADING_OUT",V[V.HIDDEN=3]="HIDDEN",V}(L||{});class C{_renderer;element;config;_animationForciblyDisabledThroughCss;state=L.HIDDEN;constructor(ce,be,ne,J=!1){this._renderer=ce,this.element=be,this.config=ne,this._animationForciblyDisabledThroughCss=J}fadeOut(){this._renderer.fadeOutRipple(this)}}const B=(0,d.B)({passive:!0,capture:!0});class A{_events=new Map;addHandler(ce,be,ne,J){const De=this._events.get(be);if(De){const Re=De.get(ne);Re?Re.add(J):De.set(ne,new Set([J]))}else this._events.set(be,new Map([[ne,new Set([J])]])),ce.runOutsideAngular(()=>{document.addEventListener(be,this._delegateEventHandler,B)})}removeHandler(ce,be,ne){const J=this._events.get(ce);if(!J)return;const De=J.get(be);De&&(De.delete(ne),0===De.size&&J.delete(be),0===J.size&&(this._events.delete(ce),document.removeEventListener(ce,this._delegateEventHandler,B)))}_delegateEventHandler=ce=>{const be=(0,v.Fb)(ce);be&&this._events.get(ce.type)?.forEach((ne,J)=>{(J===be||J.contains(be))&&ne.forEach(De=>De.handleEvent(ce))})}}const Pe={enterDuration:225,exitDuration:150},Ce=(0,d.B)({passive:!0,capture:!0}),Ae=["mousedown","touchstart"],j=["mouseup","mouseleave","touchend","touchcancel"];let W=(()=>{class V{static \u0275fac=function(ne){return new(ne||V)};static \u0275cmp=T.VBU({type:V,selectors:[["ng-component"]],hostAttrs:["mat-ripple-style-loader",""],decls:0,vars:0,template:function(ne,J){},styles:[".mat-ripple{overflow:hidden;position:relative}.mat-ripple:not(:empty){transform:translateZ(0)}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0, 0, 0.2, 1);transform:scale3d(0, 0, 0);background-color:var(--mat-ripple-color, color-mix(in srgb, var(--mat-sys-on-surface) 10%, transparent))}@media(forced-colors: active){.mat-ripple-element{display:none}}.cdk-drag-preview .mat-ripple-element,.cdk-drag-placeholder .mat-ripple-element{display:none}\n"],encapsulation:2,changeDetection:0})}return V})();class G{_target;_ngZone;_platform;_containerElement;_triggerElement;_isPointerDown=!1;_activeRipples=new Map;_mostRecentTransientRipple;_lastTouchStartEvent;_pointerUpEventsRegistered=!1;_containerRect;static _eventManager=new A;constructor(ce,be,ne,J,De){this._target=ce,this._ngZone=be,this._platform=J,J.isBrowser&&(this._containerElement=(0,O.i8)(ne)),De&&De.get(f.l).load(W)}fadeInRipple(ce,be,ne={}){const J=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),De={...Pe,...ne.animation};ne.centered&&(ce=J.left+J.width/2,be=J.top+J.height/2);const Re=ne.radius||function re(V,ce,be){const ne=Math.max(Math.abs(V-be.left),Math.abs(V-be.right)),J=Math.max(Math.abs(ce-be.top),Math.abs(ce-be.bottom));return Math.sqrt(ne*ne+J*J)}(ce,be,J),Xe=ce-J.left,_e=be-J.top,he=De.enterDuration,Dt=document.createElement("div");Dt.classList.add("mat-ripple-element"),Dt.style.left=Xe-Re+"px",Dt.style.top=_e-Re+"px",Dt.style.height=2*Re+"px",Dt.style.width=2*Re+"px",null!=ne.color&&(Dt.style.backgroundColor=ne.color),Dt.style.transitionDuration=`${he}ms`,this._containerElement.appendChild(Dt);const lt=window.getComputedStyle(Dt),te=lt.transitionDuration,ie="none"===lt.transitionProperty||"0s"===te||"0s, 0s"===te||0===J.width&&0===J.height,P=new C(this,Dt,ne,ie);Dt.style.transform="scale3d(1, 1, 1)",P.state=L.FADING_IN,ne.persistent||(this._mostRecentTransientRipple=P);let F=null;return!ie&&(he||De.exitDuration)&&this._ngZone.runOutsideAngular(()=>{const ve=()=>{F&&(F.fallbackTimer=null),clearTimeout($),this._finishRippleTransition(P)},H=()=>this._destroyRipple(P),$=setTimeout(H,he+100);Dt.addEventListener("transitionend",ve),Dt.addEventListener("transitioncancel",H),F={onTransitionEnd:ve,onTransitionCancel:H,fallbackTimer:$}}),this._activeRipples.set(P,F),(ie||!he)&&this._finishRippleTransition(P),P}fadeOutRipple(ce){if(ce.state===L.FADING_OUT||ce.state===L.HIDDEN)return;const be=ce.element,ne={...Pe,...ce.config.animation};be.style.transitionDuration=`${ne.exitDuration}ms`,be.style.opacity="0",ce.state=L.FADING_OUT,(ce._animationForciblyDisabledThroughCss||!ne.exitDuration)&&this._finishRippleTransition(ce)}fadeOutAll(){this._getActiveRipples().forEach(ce=>ce.fadeOut())}fadeOutAllNonPersistent(){this._getActiveRipples().forEach(ce=>{ce.config.persistent||ce.fadeOut()})}setupTriggerEvents(ce){const be=(0,O.i8)(ce);!this._platform.isBrowser||!be||be===this._triggerElement||(this._removeTriggerEvents(),this._triggerElement=be,Ae.forEach(ne=>{G._eventManager.addHandler(this._ngZone,ne,be,this)}))}handleEvent(ce){"mousedown"===ce.type?this._onMousedown(ce):"touchstart"===ce.type?this._onTouchStart(ce):this._onPointerUp(),this._pointerUpEventsRegistered||(this._ngZone.runOutsideAngular(()=>{j.forEach(be=>{this._triggerElement.addEventListener(be,this,Ce)})}),this._pointerUpEventsRegistered=!0)}_finishRippleTransition(ce){ce.state===L.FADING_IN?this._startFadeOutTransition(ce):ce.state===L.FADING_OUT&&this._destroyRipple(ce)}_startFadeOutTransition(ce){const be=ce===this._mostRecentTransientRipple,{persistent:ne}=ce.config;ce.state=L.VISIBLE,!ne&&(!be||!this._isPointerDown)&&ce.fadeOut()}_destroyRipple(ce){const be=this._activeRipples.get(ce)??null;this._activeRipples.delete(ce),this._activeRipples.size||(this._containerRect=null),ce===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),ce.state=L.HIDDEN,null!==be&&(ce.element.removeEventListener("transitionend",be.onTransitionEnd),ce.element.removeEventListener("transitioncancel",be.onTransitionCancel),null!==be.fallbackTimer&&clearTimeout(be.fallbackTimer)),ce.element.remove()}_onMousedown(ce){const be=(0,e._)(ce),ne=this._lastTouchStartEvent&&Date.now(){!ce.config.persistent&&(ce.state===L.VISIBLE||ce.config.terminateOnPointerUp&&ce.state===L.FADING_IN)&&ce.fadeOut()}))}_getActiveRipples(){return Array.from(this._activeRipples.keys())}_removeTriggerEvents(){const ce=this._triggerElement;ce&&(Ae.forEach(be=>G._eventManager.removeHandler(be,ce,this)),this._pointerUpEventsRegistered&&(j.forEach(be=>ce.removeEventListener(be,this,Ce)),this._pointerUpEventsRegistered=!1))}}const xe=new w.nKC("mat-ripple-global-options");let Ee=(()=>{class V{_elementRef=(0,w.WQX)(T.aKT);_animationsDisabled=(0,u.Rc)();color;unbounded;centered;radius=0;animation;get disabled(){return this._disabled}set disabled(be){be&&this.fadeOutAllNonPersistent(),this._disabled=be,this._setupTriggerEventsIfEnabled()}_disabled=!1;get trigger(){return this._trigger||this._elementRef.nativeElement}set trigger(be){this._trigger=be,this._setupTriggerEventsIfEnabled()}_trigger;_rippleRenderer;_globalOptions;_isInitialized=!1;constructor(){const be=(0,w.WQX)(T.SKi),ne=(0,w.WQX)(i.O),J=(0,w.WQX)(xe,{optional:!0}),De=(0,w.WQX)(w.zZn);this._globalOptions=J||{},this._rippleRenderer=new G(this,be,this._elementRef,ne,De)}ngOnInit(){this._isInitialized=!0,this._setupTriggerEventsIfEnabled()}ngOnDestroy(){this._rippleRenderer._removeTriggerEvents()}fadeOutAll(){this._rippleRenderer.fadeOutAll()}fadeOutAllNonPersistent(){this._rippleRenderer.fadeOutAllNonPersistent()}get rippleConfig(){return{centered:this.centered,radius:this.radius,color:this.color,animation:{...this._globalOptions.animation,...this._animationsDisabled?{enterDuration:0,exitDuration:0}:{},...this.animation},terminateOnPointerUp:this._globalOptions.terminateOnPointerUp}}get rippleDisabled(){return this.disabled||!!this._globalOptions.disabled}_setupTriggerEventsIfEnabled(){!this.disabled&&this._isInitialized&&this._rippleRenderer.setupTriggerEvents(this.trigger)}launch(be,ne=0,J){return"number"==typeof be?this._rippleRenderer.fadeInRipple(be,ne,{...this.rippleConfig,...J}):this._rippleRenderer.fadeInRipple(0,0,{...this.rippleConfig,...be})}static \u0275fac=function(ne){return new(ne||V)};static \u0275dir=T.FsC({type:V,selectors:[["","mat-ripple",""],["","matRipple",""]],hostAttrs:[1,"mat-ripple"],hostVars:2,hostBindings:function(ne,J){2&ne&&T.AVh("mat-ripple-unbounded",J.unbounded)},inputs:{color:[0,"matRippleColor","color"],unbounded:[0,"matRippleUnbounded","unbounded"],centered:[0,"matRippleCentered","centered"],radius:[0,"matRippleRadius","radius"],animation:[0,"matRippleAnimation","animation"],disabled:[0,"matRippleDisabled","disabled"],trigger:[0,"matRippleTrigger","trigger"]},exportAs:["matRipple"]})}return V})()},6183(Zt,pe,l){"use strict";l.d(pe,{$2:()=>fe,JO:()=>ot,VO:()=>Ye,Ve:()=>Qe});var i=l(9338),d=l(2615),v=l(3664),T=l(7705),w=l(5718),e=l(8617),O=l(7094),f=l(9726),u=l(9090),L=l(1577),C=l(3869),B=l(7336),A=l(438),Pe=l(9417),le=l(1413),Ce=l(9030),Ae=l(7786),j=l(5964),W=l(6354),G=l(9172),re=l(5558),xe=l(6697),Ee=l(6977),V=l(2200),ce=l(9588),be=l(1804),ne=l(3029),J=l(2709),De=l(9336),Re=l(146),Xe=l(2466),_e=l(1228);const he=["trigger"],Dt=["panel"],lt=[[["mat-select-trigger"]],"*"],Le=["mat-select-trigger","*"];function te(gt,Gt){if(1>&&(v.j41(0,"span",4),v.EFF(1),v.k0s()),2>){const rt=v.XpG();v.R7$(),v.JRh(rt.placeholder)}}function ie(gt,Gt){1>&&v.SdG(0)}function P(gt,Gt){if(1>&&(v.j41(0,"span",11),v.EFF(1),v.k0s()),2>){const rt=v.XpG(2);v.R7$(),v.JRh(rt.triggerValue)}}function F(gt,Gt){if(1>&&(v.j41(0,"span",5),v.nVh(1,ie,1,0)(2,P,2,1,"span",11),v.k0s()),2>){const rt=v.XpG();v.R7$(),v.vxM(rt.customTrigger?1:2)}}function ve(gt,Gt){if(1>){const rt=v.RV6();v.j41(0,"div",12,1),v.bIt("keydown",function(Ft){d.eBV(rt);const Sn=v.XpG();return d.Njj(Sn._handleKeydown(Ft))}),v.SdG(2,1),v.k0s()}if(2>){const rt=v.XpG();v.HbH(v.VkB("mat-mdc-select-panel mdc-menu-surface mdc-menu-surface--open ",rt._getPanelTheme())),v.AVh("mat-select-panel-animations-enabled",!rt._animationsDisabled),v.Y8G("ngClass",rt.panelClass),v.BMQ("id",rt.id+"-panel")("aria-multiselectable",rt.multiple)("aria-label",rt.ariaLabel||null)("aria-labelledby",rt._getPanelAriaLabelledby())}}const Vt=new d.nKC("mat-select-scroll-strategy",{providedIn:"root",factory:()=>{const gt=(0,d.WQX)(d.zZn);return()=>(0,i.RH)(gt)}}),ot=new d.nKC("MAT_SELECT_CONFIG"),nt={provide:Vt,deps:[],useFactory:function St(gt){const Gt=(0,d.WQX)(d.zZn);return()=>(0,i.RH)(Gt)}},ht=new d.nKC("MatSelectTrigger");class oe{source;value;constructor(Gt,rt){this.source=Gt,this.value=rt}}let Ye=(()=>{class gt{_viewportRuler=(0,d.WQX)(w.Xj);_changeDetectorRef=(0,d.WQX)(T.gRc);_elementRef=(0,d.WQX)(v.aKT);_dir=(0,d.WQX)(L.dS,{optional:!0});_idGenerator=(0,d.WQX)(f.g);_renderer=(0,d.WQX)(v.sFG);_parentFormField=(0,d.WQX)(ce.xb,{optional:!0});ngControl=(0,d.WQX)(Pe.vO,{self:!0,optional:!0});_liveAnnouncer=(0,d.WQX)(O.Ai);_defaultOptions=(0,d.WQX)(ot,{optional:!0});_animationsDisabled=(0,be.Rc)();_initialized=new le.B;_cleanupDetach;options;optionGroups;customTrigger;_positions=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"},{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:"mat-mdc-select-panel-above"},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom",panelClass:"mat-mdc-select-panel-above"}];_scrollOptionIntoView(rt){const cn=this.options.toArray()[rt];if(cn){const Ft=this.panel.nativeElement,Sn=(0,ne.jb)(rt,this.options,this.optionGroups),Qn=cn._getHostElement();Ft.scrollTop=0===rt&&1===Sn?0:(0,ne.TL)(Qn.offsetTop,Qn.offsetHeight,Ft.scrollTop,Ft.offsetHeight)}}_positioningSettled(){this._scrollOptionIntoView(this._keyManager.activeItemIndex||0)}_getChangeEvent(rt){return new oe(this,rt)}_scrollStrategyFactory=(0,d.WQX)(Vt);_panelOpen=!1;_compareWith=(rt,cn)=>rt===cn;_uid=this._idGenerator.getId("mat-select-");_triggerAriaLabelledBy=null;_previousControl;_destroy=new le.B;_errorStateTracker;stateChanges=new le.B;disableAutomaticLabeling=!0;userAriaDescribedBy;_selectionModel;_keyManager;_preferredOverlayOrigin;_overlayWidth;_onChange=()=>{};_onTouched=()=>{};_valueId=this._idGenerator.getId("mat-select-value-");_scrollStrategy;_overlayPanelClass=this._defaultOptions?.overlayPanelClass||"";get focused(){return this._focused||this._panelOpen}_focused=!1;controlType="mat-select";trigger;panel;_overlayDir;panelClass;disabled=!1;get disableRipple(){return this._disableRipple()}set disableRipple(rt){this._disableRipple.set(rt)}_disableRipple=(0,d.vPA)(!1);tabIndex=0;get hideSingleSelectionIndicator(){return this._hideSingleSelectionIndicator}set hideSingleSelectionIndicator(rt){this._hideSingleSelectionIndicator=rt,this._syncParentProperties()}_hideSingleSelectionIndicator=this._defaultOptions?.hideSingleSelectionIndicator??!1;get placeholder(){return this._placeholder}set placeholder(rt){this._placeholder=rt,this.stateChanges.next()}_placeholder;get required(){return this._required??this.ngControl?.control?.hasValidator(Pe.k0.required)??!1}set required(rt){this._required=rt,this.stateChanges.next()}_required;get multiple(){return this._multiple}set multiple(rt){this._multiple=rt}_multiple=!1;disableOptionCentering=this._defaultOptions?.disableOptionCentering??!1;get compareWith(){return this._compareWith}set compareWith(rt){this._compareWith=rt,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(rt){this._assignValue(rt)&&this._onChange(rt)}_value;ariaLabel="";ariaLabelledby;get errorStateMatcher(){return this._errorStateTracker.matcher}set errorStateMatcher(rt){this._errorStateTracker.matcher=rt}typeaheadDebounceInterval;sortComparator;get id(){return this._id}set id(rt){this._id=rt||this._uid,this.stateChanges.next()}_id;get errorState(){return this._errorStateTracker.errorState}set errorState(rt){this._errorStateTracker.errorState=rt}panelWidth=this._defaultOptions&&typeof this._defaultOptions.panelWidth<"u"?this._defaultOptions.panelWidth:"auto";canSelectNullableOptions=this._defaultOptions?.canSelectNullableOptions??!1;optionSelectionChanges=(0,Ce.v)(()=>{const rt=this.options;return rt?rt.changes.pipe((0,G.Z)(rt),(0,re.n)(()=>(0,Ae.h)(...rt.map(cn=>cn.onSelectionChange)))):this._initialized.pipe((0,re.n)(()=>this.optionSelectionChanges))});openedChange=new v.bkB;_openedStream=this.openedChange.pipe((0,j.p)(rt=>rt),(0,W.T)(()=>{}));_closedStream=this.openedChange.pipe((0,j.p)(rt=>!rt),(0,W.T)(()=>{}));selectionChange=new v.bkB;valueChange=new v.bkB;constructor(){const rt=(0,d.WQX)(J.e),cn=(0,d.WQX)(Pe.cV,{optional:!0}),Ft=(0,d.WQX)(Pe.j4,{optional:!0}),Sn=(0,d.WQX)(new T.ES_("tabindex"),{optional:!0});this.ngControl&&(this.ngControl.valueAccessor=this),null!=this._defaultOptions?.typeaheadDebounceInterval&&(this.typeaheadDebounceInterval=this._defaultOptions.typeaheadDebounceInterval),this._errorStateTracker=new De.X(rt,this.ngControl,Ft,cn,this.stateChanges),this._scrollStrategy=this._scrollStrategyFactory(),this.tabIndex=null==Sn?0:parseInt(Sn)||0,this.id=this.id}ngOnInit(){this._selectionModel=new C.C(this.multiple),this.stateChanges.next(),this._viewportRuler.change().pipe((0,Ee.Q)(this._destroy)).subscribe(()=>{this.panelOpen&&(this._overlayWidth=this._getOverlayWidth(this._preferredOverlayOrigin),this._changeDetectorRef.detectChanges())})}ngAfterContentInit(){this._initialized.next(),this._initialized.complete(),this._initKeyManager(),this._selectionModel.changed.pipe((0,Ee.Q)(this._destroy)).subscribe(rt=>{rt.added.forEach(cn=>cn.select()),rt.removed.forEach(cn=>cn.deselect())}),this.options.changes.pipe((0,G.Z)(null),(0,Ee.Q)(this._destroy)).subscribe(()=>{this._resetOptions(),this._initializeSelection()})}ngDoCheck(){const rt=this._getTriggerAriaLabelledby(),cn=this.ngControl;if(rt!==this._triggerAriaLabelledBy){const Ft=this._elementRef.nativeElement;this._triggerAriaLabelledBy=rt,rt?Ft.setAttribute("aria-labelledby",rt):Ft.removeAttribute("aria-labelledby")}cn&&(this._previousControl!==cn.control&&(void 0!==this._previousControl&&null!==cn.disabled&&cn.disabled!==this.disabled&&(this.disabled=cn.disabled),this._previousControl=cn.control),this.updateErrorState())}ngOnChanges(rt){(rt.disabled||rt.userAriaDescribedBy)&&this.stateChanges.next(),rt.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this.typeaheadDebounceInterval)}ngOnDestroy(){this._cleanupDetach?.(),this._keyManager?.destroy(),this._destroy.next(),this._destroy.complete(),this.stateChanges.complete(),this._clearFromModal()}toggle(){this.panelOpen?this.close():this.open()}open(){this._canOpen()&&(this._parentFormField&&(this._preferredOverlayOrigin=this._parentFormField.getConnectedOverlayOrigin()),this._cleanupDetach?.(),this._overlayWidth=this._getOverlayWidth(this._preferredOverlayOrigin),this._applyModalPanelOwnership(),this._panelOpen=!0,this._overlayDir.positionChange.pipe((0,xe.s)(1)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this._positioningSettled()}),this._overlayDir.attachOverlay(),this._keyManager.withHorizontalOrientation(null),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck(),this.stateChanges.next(),Promise.resolve().then(()=>this.openedChange.emit(!0)))}_trackedModal=null;_applyModalPanelOwnership(){const rt=this._elementRef.nativeElement.closest('body > .cdk-overlay-container [aria-modal="true"]');if(!rt)return;const cn=`${this.id}-panel`;this._trackedModal&&(0,e.Ae)(this._trackedModal,"aria-owns",cn),(0,e.px)(rt,"aria-owns",cn),this._trackedModal=rt}_clearFromModal(){this._trackedModal&&((0,e.Ae)(this._trackedModal,"aria-owns",`${this.id}-panel`),this._trackedModal=null)}close(){this._panelOpen&&(this._panelOpen=!1,this._exitAndDetach(),this._keyManager.withHorizontalOrientation(this._isRtl()?"rtl":"ltr"),this._changeDetectorRef.markForCheck(),this._onTouched(),this.stateChanges.next(),Promise.resolve().then(()=>this.openedChange.emit(!1)))}_exitAndDetach(){if(this._animationsDisabled||!this.panel)return void this._detachOverlay();this._cleanupDetach?.(),this._cleanupDetach=()=>{cn(),clearTimeout(Ft),this._cleanupDetach=void 0};const rt=this.panel.nativeElement,cn=this._renderer.listen(rt,"animationend",Sn=>{"_mat-select-exit"===Sn.animationName&&(this._cleanupDetach?.(),this._detachOverlay())}),Ft=setTimeout(()=>{this._cleanupDetach?.(),this._detachOverlay()},200);rt.classList.add("mat-select-panel-exit")}_detachOverlay(){this._overlayDir.detachOverlay(),this._changeDetectorRef.markForCheck()}writeValue(rt){this._assignValue(rt)}registerOnChange(rt){this._onChange=rt}registerOnTouched(rt){this._onTouched=rt}setDisabledState(rt){this.disabled=rt,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}get panelOpen(){return this._panelOpen}get selected(){return this.multiple?this._selectionModel?.selected||[]:this._selectionModel?.selected[0]}get triggerValue(){if(this.empty)return"";if(this._multiple){const rt=this._selectionModel.selected.map(cn=>cn.viewValue);return this._isRtl()&&rt.reverse(),rt.join(", ")}return this._selectionModel.selected[0].viewValue}updateErrorState(){this._errorStateTracker.updateErrorState()}_isRtl(){return!!this._dir&&"rtl"===this._dir.value}_handleKeydown(rt){this.disabled||(this.panelOpen?this._handleOpenKeydown(rt):this._handleClosedKeydown(rt))}_handleClosedKeydown(rt){const cn=rt.keyCode,Ft=cn===A.n6||cn===A.i7||cn===A.UQ||cn===A.LE,Sn=cn===A.Fm||cn===A.t6,Qn=this._keyManager;if(!Qn.isTyping()&&Sn&&!(0,B.rp)(rt)||(this.multiple||rt.altKey)&&Ft)rt.preventDefault(),this.open();else if(!this.multiple){const h=this.selected;Qn.onKeydown(rt);const jt=this.selected;jt&&h!==jt&&this._liveAnnouncer.announce(jt.viewValue,1e4)}}_handleOpenKeydown(rt){const cn=this._keyManager,Ft=rt.keyCode,Sn=Ft===A.n6||Ft===A.i7,Qn=cn.isTyping();if(Sn&&rt.altKey)rt.preventDefault(),this.close();else if(Qn||Ft!==A.Fm&&Ft!==A.t6||!cn.activeItem||(0,B.rp)(rt))if(!Qn&&this._multiple&&Ft===A.A&&rt.ctrlKey){rt.preventDefault();const h=this.options.some(jt=>!jt.disabled&&!jt.selected);this.options.forEach(jt=>{jt.disabled||(h?jt.select():jt.deselect())})}else{const h=cn.activeItemIndex;cn.onKeydown(rt),this._multiple&&Sn&&rt.shiftKey&&cn.activeItem&&cn.activeItemIndex!==h&&cn.activeItem._selectViaInteraction()}else rt.preventDefault(),cn.activeItem._selectViaInteraction()}_handleOverlayKeydown(rt){rt.keyCode===A._f&&!(0,B.rp)(rt)&&(rt.preventDefault(),this.close())}_onFocus(){this.disabled||(this._focused=!0,this.stateChanges.next())}_onBlur(){this._focused=!1,this._keyManager?.cancelTypeahead(),!this.disabled&&!this.panelOpen&&(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_getPanelTheme(){return this._parentFormField?`mat-${this._parentFormField.color}`:""}get empty(){return!this._selectionModel||this._selectionModel.isEmpty()}_initializeSelection(){Promise.resolve().then(()=>{this.ngControl&&(this._value=this.ngControl.value),this._setSelectionByValue(this._value),this.stateChanges.next()})}_setSelectionByValue(rt){if(this.options.forEach(cn=>cn.setInactiveStyles()),this._selectionModel.clear(),this.multiple&&rt)Array.isArray(rt),rt.forEach(cn=>this._selectOptionByValue(cn)),this._sortValues();else{const cn=this._selectOptionByValue(rt);cn?this._keyManager.updateActiveItem(cn):this.panelOpen||this._keyManager.updateActiveItem(-1)}this._changeDetectorRef.markForCheck()}_selectOptionByValue(rt){const cn=this.options.find(Ft=>{if(this._selectionModel.isSelected(Ft))return!1;try{return(null!=Ft.value||this.canSelectNullableOptions)&&this._compareWith(Ft.value,rt)}catch{return!1}});return cn&&this._selectionModel.select(cn),cn}_assignValue(rt){return!!(rt!==this._value||this._multiple&&Array.isArray(rt))&&(this.options&&this._setSelectionByValue(rt),this._value=rt,!0)}_skipPredicate=rt=>!this.panelOpen&&rt.disabled;_getOverlayWidth(rt){return"auto"===this.panelWidth?(rt instanceof i.$Q?rt.elementRef:rt||this._elementRef).nativeElement.getBoundingClientRect().width:null===this.panelWidth?"":this.panelWidth}_syncParentProperties(){if(this.options)for(const rt of this.options)rt._changeDetectorRef.markForCheck()}_initKeyManager(){this._keyManager=new u.A(this.options).withTypeAhead(this.typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?"rtl":"ltr").withHomeAndEnd().withPageUpDown().withAllowedModifierKeys(["shiftKey"]).skipPredicate(this._skipPredicate),this._keyManager.tabOut.subscribe(()=>{this.panelOpen&&(!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction(),this.focus(),this.close())}),this._keyManager.change.subscribe(()=>{this._panelOpen&&this.panel?this._scrollOptionIntoView(this._keyManager.activeItemIndex||0):!this._panelOpen&&!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction()})}_resetOptions(){const rt=(0,Ae.h)(this.options.changes,this._destroy);this.optionSelectionChanges.pipe((0,Ee.Q)(rt)).subscribe(cn=>{this._onSelect(cn.source,cn.isUserInput),cn.isUserInput&&!this.multiple&&this._panelOpen&&(this.close(),this.focus())}),(0,Ae.h)(...this.options.map(cn=>cn._stateChanges)).pipe((0,Ee.Q)(rt)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this.stateChanges.next()})}_onSelect(rt,cn){const Ft=this._selectionModel.isSelected(rt);this.canSelectNullableOptions||null!=rt.value||this._multiple?(Ft!==rt.selected&&(rt.selected?this._selectionModel.select(rt):this._selectionModel.deselect(rt)),cn&&this._keyManager.setActiveItem(rt),this.multiple&&(this._sortValues(),cn&&this.focus())):(rt.deselect(),this._selectionModel.clear(),null!=this.value&&this._propagateChanges(rt.value)),Ft!==this._selectionModel.isSelected(rt)&&this._propagateChanges(),this.stateChanges.next()}_sortValues(){if(this.multiple){const rt=this.options.toArray();this._selectionModel.sort((cn,Ft)=>this.sortComparator?this.sortComparator(cn,Ft,rt):rt.indexOf(cn)-rt.indexOf(Ft)),this.stateChanges.next()}}_propagateChanges(rt){let cn;cn=this.multiple?this.selected.map(Ft=>Ft.value):this.selected?this.selected.value:rt,this._value=cn,this.valueChange.emit(cn),this._onChange(cn),this.selectionChange.emit(this._getChangeEvent(cn)),this._changeDetectorRef.markForCheck()}_highlightCorrectOption(){if(this._keyManager)if(this.empty){let rt=-1;for(let cn=0;cn0&&!!this._overlayDir}focus(rt){this._elementRef.nativeElement.focus(rt)}_getPanelAriaLabelledby(){if(this.ariaLabel)return null;const rt=this._parentFormField?.getLabelId()||null;return this.ariaLabelledby?(rt?rt+" ":"")+this.ariaLabelledby:rt}_getAriaActiveDescendant(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}_getTriggerAriaLabelledby(){if(this.ariaLabel)return null;let rt=this._parentFormField?.getLabelId()||"";return this.ariaLabelledby&&(rt+=" "+this.ariaLabelledby),rt||(rt=this._valueId),rt}get describedByIds(){return this._elementRef.nativeElement.getAttribute("aria-describedby")?.split(" ")||[]}setDescribedByIds(rt){rt.length?this._elementRef.nativeElement.setAttribute("aria-describedby",rt.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focus(),this.open()}get shouldLabelFloat(){return this.panelOpen||!this.empty||this.focused&&!!this.placeholder}static \u0275fac=function(cn){return new(cn||gt)};static \u0275cmp=v.VBU({type:gt,selectors:[["mat-select"]],contentQueries:function(cn,Ft,Sn){if(1&cn&&(v.wni(Sn,ht,5),v.wni(Sn,ne.wT,5),v.wni(Sn,ne.QC,5)),2&cn){let Qn;v.mGM(Qn=v.lsd())&&(Ft.customTrigger=Qn.first),v.mGM(Qn=v.lsd())&&(Ft.options=Qn),v.mGM(Qn=v.lsd())&&(Ft.optionGroups=Qn)}},viewQuery:function(cn,Ft){if(1&cn&&(v.GBs(he,5),v.GBs(Dt,5),v.GBs(i.WB,5)),2&cn){let Sn;v.mGM(Sn=v.lsd())&&(Ft.trigger=Sn.first),v.mGM(Sn=v.lsd())&&(Ft.panel=Sn.first),v.mGM(Sn=v.lsd())&&(Ft._overlayDir=Sn.first)}},hostAttrs:["role","combobox","aria-haspopup","listbox",1,"mat-mdc-select"],hostVars:21,hostBindings:function(cn,Ft){1&cn&&v.bIt("keydown",function(Qn){return Ft._handleKeydown(Qn)})("focus",function(){return Ft._onFocus()})("blur",function(){return Ft._onBlur()}),2&cn&&(v.BMQ("id",Ft.id)("tabindex",Ft.disabled?-1:Ft.tabIndex)("aria-controls",Ft.panelOpen?Ft.id+"-panel":null)("aria-expanded",Ft.panelOpen)("aria-label",Ft.ariaLabel||null)("aria-required",Ft.required.toString())("aria-disabled",Ft.disabled.toString())("aria-invalid",Ft.errorState)("aria-activedescendant",Ft._getAriaActiveDescendant()),v.AVh("mat-mdc-select-disabled",Ft.disabled)("mat-mdc-select-invalid",Ft.errorState)("mat-mdc-select-required",Ft.required)("mat-mdc-select-empty",Ft.empty)("mat-mdc-select-multiple",Ft.multiple)("mat-select-open",Ft.panelOpen))},inputs:{userAriaDescribedBy:[0,"aria-describedby","userAriaDescribedBy"],panelClass:"panelClass",disabled:[2,"disabled","disabled",T.L39],disableRipple:[2,"disableRipple","disableRipple",T.L39],tabIndex:[2,"tabIndex","tabIndex",rt=>null==rt?0:(0,T.Udg)(rt)],hideSingleSelectionIndicator:[2,"hideSingleSelectionIndicator","hideSingleSelectionIndicator",T.L39],placeholder:"placeholder",required:[2,"required","required",T.L39],multiple:[2,"multiple","multiple",T.L39],disableOptionCentering:[2,"disableOptionCentering","disableOptionCentering",T.L39],compareWith:"compareWith",value:"value",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],errorStateMatcher:"errorStateMatcher",typeaheadDebounceInterval:[2,"typeaheadDebounceInterval","typeaheadDebounceInterval",T.Udg],sortComparator:"sortComparator",id:"id",panelWidth:"panelWidth",canSelectNullableOptions:[2,"canSelectNullableOptions","canSelectNullableOptions",T.L39]},outputs:{openedChange:"openedChange",_openedStream:"opened",_closedStream:"closed",selectionChange:"selectionChange",valueChange:"valueChange"},exportAs:["matSelect"],features:[v.Jv_([{provide:ce.qT,useExisting:gt},{provide:ne.is,useExisting:gt}]),v.OA$],ngContentSelectors:Le,decls:11,vars:9,consts:[["fallbackOverlayOrigin","cdkOverlayOrigin","trigger",""],["panel",""],["cdk-overlay-origin","",1,"mat-mdc-select-trigger",3,"click"],[1,"mat-mdc-select-value"],[1,"mat-mdc-select-placeholder","mat-mdc-select-min-line"],[1,"mat-mdc-select-value-text"],[1,"mat-mdc-select-arrow-wrapper"],[1,"mat-mdc-select-arrow"],["viewBox","0 0 24 24","width","24px","height","24px","focusable","false","aria-hidden","true"],["d","M7 10l5 5 5-5z"],["cdk-connected-overlay","","cdkConnectedOverlayLockPosition","","cdkConnectedOverlayHasBackdrop","","cdkConnectedOverlayBackdropClass","cdk-overlay-transparent-backdrop",3,"detach","backdropClick","overlayKeydown","cdkConnectedOverlayDisableClose","cdkConnectedOverlayPanelClass","cdkConnectedOverlayScrollStrategy","cdkConnectedOverlayOrigin","cdkConnectedOverlayPositions","cdkConnectedOverlayWidth","cdkConnectedOverlayFlexibleDimensions"],[1,"mat-mdc-select-min-line"],["role","listbox","tabindex","-1",3,"keydown","ngClass"]],template:function(cn,Ft){if(1&cn){const Sn=v.RV6();v.NAR(lt),v.j41(0,"div",2,0),v.bIt("click",function(){return d.eBV(Sn),d.Njj(Ft.open())}),v.j41(3,"div",3),v.nVh(4,te,2,1,"span",4)(5,F,3,1,"span",5),v.k0s(),v.j41(6,"div",6)(7,"div",7),d.qSk(),v.j41(8,"svg",8),v.nrm(9,"path",9),v.k0s()()()(),v.DNE(10,ve,3,10,"ng-template",10),v.bIt("detach",function(){return d.eBV(Sn),d.Njj(Ft.close())})("backdropClick",function(){return d.eBV(Sn),d.Njj(Ft.close())})("overlayKeydown",function(h){return d.eBV(Sn),d.Njj(Ft._handleOverlayKeydown(h))})}if(2&cn){const Sn=v.sdS(1);v.R7$(3),v.BMQ("id",Ft._valueId),v.R7$(),v.vxM(Ft.empty?4:5),v.R7$(6),v.Y8G("cdkConnectedOverlayDisableClose",!0)("cdkConnectedOverlayPanelClass",Ft._overlayPanelClass)("cdkConnectedOverlayScrollStrategy",Ft._scrollStrategy)("cdkConnectedOverlayOrigin",Ft._preferredOverlayOrigin||Sn)("cdkConnectedOverlayPositions",Ft._positions)("cdkConnectedOverlayWidth",Ft._overlayWidth)("cdkConnectedOverlayFlexibleDimensions",!0)}},dependencies:[i.$Q,i.WB,V.YU],styles:['@keyframes _mat-select-enter{from{opacity:0;transform:scaleY(0.8)}to{opacity:1;transform:none}}@keyframes _mat-select-exit{from{opacity:1}to{opacity:0}}.mat-mdc-select{display:inline-block;width:100%;outline:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--mat-select-enabled-trigger-text-color, var(--mat-sys-on-surface));font-family:var(--mat-select-trigger-text-font, var(--mat-sys-body-large-font));line-height:var(--mat-select-trigger-text-line-height, var(--mat-sys-body-large-line-height));font-size:var(--mat-select-trigger-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-select-trigger-text-weight, var(--mat-sys-body-large-weight));letter-spacing:var(--mat-select-trigger-text-tracking, var(--mat-sys-body-large-tracking))}div.mat-mdc-select-panel{box-shadow:var(--mat-select-container-elevation-shadow, 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12))}.mat-mdc-select-disabled{color:var(--mat-select-disabled-trigger-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-select-disabled .mat-mdc-select-placeholder{color:var(--mat-select-disabled-trigger-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-select-trigger{display:inline-flex;align-items:center;cursor:pointer;position:relative;box-sizing:border-box;width:100%}.mat-mdc-select-disabled .mat-mdc-select-trigger{-webkit-user-select:none;user-select:none;cursor:default}.mat-mdc-select-value{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-mdc-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-mdc-select-arrow-wrapper{height:24px;flex-shrink:0;display:inline-flex;align-items:center}.mat-form-field-appearance-fill .mdc-text-field--no-label .mat-mdc-select-arrow-wrapper{transform:none}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-invalid .mat-mdc-select-arrow,.mat-form-field-invalid:not(.mat-form-field-disabled) .mat-mdc-form-field-infix::after{color:var(--mat-select-invalid-arrow-color, var(--mat-sys-error))}.mat-mdc-select-arrow{width:10px;height:5px;position:relative;color:var(--mat-select-enabled-arrow-color, var(--mat-sys-on-surface-variant))}.mat-mdc-form-field.mat-focused .mat-mdc-select-arrow{color:var(--mat-select-focused-arrow-color, var(--mat-sys-primary))}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-disabled .mat-mdc-select-arrow{color:var(--mat-select-disabled-arrow-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-select-open .mat-mdc-select-arrow{transform:rotate(180deg)}.mat-form-field-animations-enabled .mat-mdc-select-arrow{transition:transform 80ms linear}.mat-mdc-select-arrow svg{fill:currentColor;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}@media(forced-colors: active){.mat-mdc-select-arrow svg{fill:CanvasText}.mat-mdc-select-disabled .mat-mdc-select-arrow svg{fill:GrayText}}div.mat-mdc-select-panel{width:100%;max-height:275px;outline:0;overflow:auto;padding:8px 0;border-radius:4px;box-sizing:border-box;position:relative;background-color:var(--mat-select-panel-background-color, var(--mat-sys-surface-container))}@media(forced-colors: active){div.mat-mdc-select-panel{outline:solid 1px}}.cdk-overlay-pane:not(.mat-mdc-select-panel-above) div.mat-mdc-select-panel{border-top-left-radius:0;border-top-right-radius:0;transform-origin:top center}.mat-mdc-select-panel-above div.mat-mdc-select-panel{border-bottom-left-radius:0;border-bottom-right-radius:0;transform-origin:bottom center}.mat-select-panel-animations-enabled{animation:_mat-select-enter 120ms cubic-bezier(0, 0, 0.2, 1)}.mat-select-panel-animations-enabled.mat-select-panel-exit{animation:_mat-select-exit 100ms linear}.mat-mdc-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1);color:var(--mat-select-placeholder-text-color, var(--mat-sys-on-surface-variant))}.mat-mdc-form-field:not(.mat-form-field-animations-enabled) .mat-mdc-select-placeholder,._mat-animation-noopable .mat-mdc-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-mdc-select-placeholder{color:rgba(0,0,0,0);-webkit-text-fill-color:rgba(0,0,0,0);transition:none;display:block}.mat-mdc-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-mdc-text-field-wrapper{cursor:pointer}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mat-mdc-floating-label{max-width:calc(100% - 18px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 24px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-text-field--label-floating .mdc-notched-outline__notch{max-width:calc(100% - 24px)}.mat-mdc-select-min-line:empty::before{content:" ";white-space:pre;width:1px;display:inline-block;visibility:hidden}.mat-form-field-appearance-fill .mat-mdc-select-arrow-wrapper{transform:var(--mat-select-arrow-transform, translateY(-8px))}\n'],encapsulation:2,changeDetection:0})}return gt})(),fe=(()=>{class gt{static \u0275fac=function(cn){return new(cn||gt)};static \u0275dir=v.FsC({type:gt,selectors:[["mat-select-trigger"]],features:[v.Jv_([{provide:ht,useExisting:gt}])]})}return gt})(),Qe=(()=>{class gt{static \u0275fac=function(cn){return new(cn||gt)};static \u0275mod=v.$C({type:gt});static \u0275inj=d.G2t({providers:[nt],imports:[i.z_,Re.S,Xe.y,w.Gj,_e.R,Re.S,Xe.y]})}return gt})()},882(Zt,pe,l){"use strict";l.d(pe,{El:()=>$,LG:()=>Ke,US:()=>Vt,vg:()=>St});var i=l(6838),d=l(7094),v=l(1577),T=l(4085),w=l(7847),e=l(7336),O=l(438),f=l(9842),u=l(5718),L=l(2615),C=l(3664),B=l(7705),A=l(1413),Pe=l(3726),le=l(7786),Ce=l(152),Ae=l(5964),j=l(6354),W=l(3703),G=l(9172),re=l(6697),xe=l(6977),Ee=l(1804),V=l(2466);const ce=["*"],be=["content"],ne=[[["mat-drawer"]],[["mat-drawer-content"]],"*"],J=["mat-drawer","mat-drawer-content","*"];function De(nt,ht){if(1&nt){const oe=C.RV6();C.j41(0,"div",1),C.bIt("click",function(){L.eBV(oe);const fe=C.XpG();return L.Njj(fe._onBackdropClicked())}),C.k0s()}if(2&nt){const oe=C.XpG();C.AVh("mat-drawer-shown",oe._isShowingBackdrop())}}function Re(nt,ht){1&nt&&(C.j41(0,"mat-drawer-content"),C.SdG(1,2),C.k0s())}const Xe=[[["mat-sidenav"]],[["mat-sidenav-content"]],"*"],_e=["mat-sidenav","mat-sidenav-content","*"];function he(nt,ht){if(1&nt){const oe=C.RV6();C.j41(0,"div",1),C.bIt("click",function(){L.eBV(oe);const fe=C.XpG();return L.Njj(fe._onBackdropClicked())}),C.k0s()}if(2&nt){const oe=C.XpG();C.AVh("mat-drawer-shown",oe._isShowingBackdrop())}}function Dt(nt,ht){1&nt&&(C.j41(0,"mat-sidenav-content"),C.SdG(1,2),C.k0s())}const te=new L.nKC("MAT_DRAWER_DEFAULT_AUTOSIZE",{providedIn:"root",factory:function P(){return!1}}),ie=new L.nKC("MAT_DRAWER_CONTAINER");let F=(()=>{class nt extends u.uv{_platform=(0,L.WQX)(f.O);_changeDetectorRef=(0,L.WQX)(B.gRc);_container=(0,L.WQX)(H);constructor(){super((0,L.WQX)(C.aKT),(0,L.WQX)(u.R),(0,L.WQX)(C.SKi))}ngAfterContentInit(){this._container._contentMarginChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})}_shouldBeHidden(){if(this._platform.isBrowser)return!1;const{start:oe,end:Ye}=this._container;return null!=oe&&"over"!==oe.mode&&oe.opened||null!=Ye&&"over"!==Ye.mode&&Ye.opened}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275cmp=C.VBU({type:nt,selectors:[["mat-drawer-content"]],hostAttrs:[1,"mat-drawer-content"],hostVars:6,hostBindings:function(Ye,fe){2&Ye&&(C.xc7("margin-left",fe._container._contentMargins.left,"px")("margin-right",fe._container._contentMargins.right,"px"),C.AVh("mat-drawer-content-hidden",fe._shouldBeHidden()))},features:[C.Jv_([{provide:u.uv,useExisting:nt}]),C.Vt3],ngContentSelectors:ce,decls:1,vars:0,template:function(Ye,fe){1&Ye&&(C.NAR(),C.SdG(0))},encapsulation:2,changeDetection:0})}return nt})(),ve=(()=>{class nt{_elementRef=(0,L.WQX)(C.aKT);_focusTrapFactory=(0,L.WQX)(d.GX);_focusMonitor=(0,L.WQX)(i.FN);_platform=(0,L.WQX)(f.O);_ngZone=(0,L.WQX)(C.SKi);_renderer=(0,L.WQX)(C.sFG);_interactivityChecker=(0,L.WQX)(d.Z7);_doc=(0,L.WQX)(L.qQL);_container=(0,L.WQX)(ie,{optional:!0});_focusTrap=null;_elementFocusedBeforeDrawerWasOpened=null;_eventCleanups;_isAttached;_anchor;get position(){return this._position}set position(oe){(oe="end"===oe?"end":"start")!==this._position&&(this._isAttached&&this._updatePositionInParent(oe),this._position=oe,this.onPositionChanged.emit())}_position="start";get mode(){return this._mode}set mode(oe){this._mode=oe,this._updateFocusTrapState(),this._modeChanged.next()}_mode="over";get disableClose(){return this._disableClose}set disableClose(oe){this._disableClose=(0,T.he)(oe)}_disableClose=!1;get autoFocus(){return this._autoFocus??("side"===this.mode?"dialog":"first-tabbable")}set autoFocus(oe){("true"===oe||"false"===oe||null==oe)&&(oe=(0,T.he)(oe)),this._autoFocus=oe}_autoFocus;get opened(){return this._opened()}set opened(oe){this.toggle((0,T.he)(oe))}_opened=(0,L.vPA)(!1);_openedVia;_animationStarted=new A.B;_animationEnd=new A.B;openedChange=new C.bkB(!0);_openedStream=this.openedChange.pipe((0,Ae.p)(oe=>oe),(0,j.T)(()=>{}));openedStart=this._animationStarted.pipe((0,Ae.p)(()=>this.opened),(0,W.u)(void 0));_closedStream=this.openedChange.pipe((0,Ae.p)(oe=>!oe),(0,j.T)(()=>{}));closedStart=this._animationStarted.pipe((0,Ae.p)(()=>!this.opened),(0,W.u)(void 0));_destroyed=new A.B;onPositionChanged=new C.bkB;_content;_modeChanged=new A.B;_injector=(0,L.WQX)(L.zZn);_changeDetectorRef=(0,L.WQX)(B.gRc);constructor(){this.openedChange.pipe((0,xe.Q)(this._destroyed)).subscribe(oe=>{oe?(this._elementFocusedBeforeDrawerWasOpened=this._doc.activeElement,this._takeFocus()):this._isFocusWithinDrawer()&&this._restoreFocus(this._openedVia||"program")}),this._ngZone.runOutsideAngular(()=>{const oe=this._elementRef.nativeElement;(0,Pe.R)(oe,"keydown").pipe((0,Ae.p)(Ye=>Ye.keyCode===O._f&&!this.disableClose&&!(0,e.rp)(Ye)),(0,xe.Q)(this._destroyed)).subscribe(Ye=>this._ngZone.run(()=>{this.close(),Ye.stopPropagation(),Ye.preventDefault()})),this._eventCleanups=[this._renderer.listen(oe,"transitionrun",this._handleTransitionEvent),this._renderer.listen(oe,"transitionend",this._handleTransitionEvent),this._renderer.listen(oe,"transitioncancel",this._handleTransitionEvent)]}),this._animationEnd.subscribe(()=>{this.openedChange.emit(this.opened)})}_forceFocus(oe,Ye){this._interactivityChecker.isFocusable(oe)||(oe.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const fe=()=>{Qe(),gt(),oe.removeAttribute("tabindex")},Qe=this._renderer.listen(oe,"blur",fe),gt=this._renderer.listen(oe,"mousedown",fe)})),oe.focus(Ye)}_focusByCssSelector(oe,Ye){let fe=this._elementRef.nativeElement.querySelector(oe);fe&&this._forceFocus(fe,Ye)}_takeFocus(){if(!this._focusTrap)return;const oe=this._elementRef.nativeElement;switch(this.autoFocus){case!1:case"dialog":return;case!0:case"first-tabbable":(0,C.mal)(()=>{!this._focusTrap.focusInitialElement()&&"function"==typeof oe.focus&&oe.focus()},{injector:this._injector});break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]');break;default:this._focusByCssSelector(this.autoFocus)}}_restoreFocus(oe){"dialog"!==this.autoFocus&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,oe):this._elementRef.nativeElement.blur(),this._elementFocusedBeforeDrawerWasOpened=null)}_isFocusWithinDrawer(){const oe=this._doc.activeElement;return!!oe&&this._elementRef.nativeElement.contains(oe)}ngAfterViewInit(){this._isAttached=!0,"end"===this._position&&this._updatePositionInParent("end"),this._platform.isBrowser&&(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState())}ngOnDestroy(){this._eventCleanups.forEach(oe=>oe()),this._focusTrap?.destroy(),this._anchor?.remove(),this._anchor=null,this._animationStarted.complete(),this._animationEnd.complete(),this._modeChanged.complete(),this._destroyed.next(),this._destroyed.complete()}open(oe){return this.toggle(!0,oe)}close(){return this.toggle(!1)}_closeViaBackdropClick(){return this._setOpen(!1,!0,"mouse")}toggle(oe=!this.opened,Ye){oe&&Ye&&(this._openedVia=Ye);const fe=this._setOpen(oe,!oe&&this._isFocusWithinDrawer(),this._openedVia||"program");return oe||(this._openedVia=null),fe}_setOpen(oe,Ye,fe){return oe===this.opened?Promise.resolve(oe?"open":"close"):(this._opened.set(oe),this._container?._transitionsEnabled?this._setIsAnimating(!0):setTimeout(()=>{this._animationStarted.next(),this._animationEnd.next()}),this._elementRef.nativeElement.classList.toggle("mat-drawer-opened",oe),!oe&&Ye&&this._restoreFocus(fe),this._changeDetectorRef.markForCheck(),this._updateFocusTrapState(),new Promise(Qe=>{this.openedChange.pipe((0,re.s)(1)).subscribe(gt=>Qe(gt?"open":"close"))}))}_setIsAnimating(oe){this._elementRef.nativeElement.classList.toggle("mat-drawer-animating",oe)}_getWidth(){return this._elementRef.nativeElement.offsetWidth||0}_updateFocusTrapState(){this._focusTrap&&(this._focusTrap.enabled=!!this._container?.hasBackdrop&&this.opened)}_updatePositionInParent(oe){if(!this._platform.isBrowser)return;const Ye=this._elementRef.nativeElement,fe=Ye.parentNode;"end"===oe?(this._anchor||(this._anchor=this._doc.createComment("mat-drawer-anchor"),fe.insertBefore(this._anchor,Ye)),fe.appendChild(Ye)):this._anchor&&this._anchor.parentNode.insertBefore(Ye,this._anchor)}_handleTransitionEvent=oe=>{oe.target===this._elementRef.nativeElement&&this._ngZone.run(()=>{"transitionrun"===oe.type?this._animationStarted.next(oe):("transitionend"===oe.type&&this._setIsAnimating(!1),this._animationEnd.next(oe))})};static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275cmp=C.VBU({type:nt,selectors:[["mat-drawer"]],viewQuery:function(Ye,fe){if(1&Ye&&C.GBs(be,5),2&Ye){let Qe;C.mGM(Qe=C.lsd())&&(fe._content=Qe.first)}},hostAttrs:[1,"mat-drawer"],hostVars:12,hostBindings:function(Ye,fe){2&Ye&&(C.BMQ("align",null)("tabIndex","side"!==fe.mode?"-1":null),C.xc7("visibility",fe._container||fe.opened?null:"hidden"),C.AVh("mat-drawer-end","end"===fe.position)("mat-drawer-over","over"===fe.mode)("mat-drawer-push","push"===fe.mode)("mat-drawer-side","side"===fe.mode))},inputs:{position:"position",mode:"mode",disableClose:"disableClose",autoFocus:"autoFocus",opened:"opened"},outputs:{openedChange:"openedChange",_openedStream:"opened",openedStart:"openedStart",_closedStream:"closed",closedStart:"closedStart",onPositionChanged:"positionChanged"},exportAs:["matDrawer"],ngContentSelectors:ce,decls:3,vars:0,consts:[["content",""],["cdkScrollable","",1,"mat-drawer-inner-container"]],template:function(Ye,fe){1&Ye&&(C.NAR(),C.j41(0,"div",1,0),C.SdG(2),C.k0s())},dependencies:[u.uv],encapsulation:2,changeDetection:0})}return nt})(),H=(()=>{class nt{_dir=(0,L.WQX)(v.dS,{optional:!0});_element=(0,L.WQX)(C.aKT);_ngZone=(0,L.WQX)(C.SKi);_changeDetectorRef=(0,L.WQX)(B.gRc);_animationDisabled=(0,Ee.Rc)();_transitionsEnabled=!1;_allDrawers;_drawers=new C.rOR;_content;_userContent;get start(){return this._start}get end(){return this._end}get autosize(){return this._autosize}set autosize(oe){this._autosize=(0,T.he)(oe)}_autosize=(0,L.WQX)(te);get hasBackdrop(){return this._drawerHasBackdrop(this._start)||this._drawerHasBackdrop(this._end)}set hasBackdrop(oe){this._backdropOverride=null==oe?null:(0,T.he)(oe)}_backdropOverride;backdropClick=new C.bkB;_start;_end;_left;_right;_destroyed=new A.B;_doCheckSubject=new A.B;_contentMargins={left:null,right:null};_contentMarginChanges=new A.B;get scrollable(){return this._userContent||this._content}_injector=(0,L.WQX)(L.zZn);constructor(){const oe=(0,L.WQX)(f.O),Ye=(0,L.WQX)(u.Xj);this._dir?.change.pipe((0,xe.Q)(this._destroyed)).subscribe(()=>{this._validateDrawers(),this.updateContentMargins()}),Ye.change().pipe((0,xe.Q)(this._destroyed)).subscribe(()=>this.updateContentMargins()),!this._animationDisabled&&oe.isBrowser&&this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{this._element.nativeElement.classList.add("mat-drawer-transition"),this._transitionsEnabled=!0},200)})}ngAfterContentInit(){this._allDrawers.changes.pipe((0,G.Z)(this._allDrawers),(0,xe.Q)(this._destroyed)).subscribe(oe=>{this._drawers.reset(oe.filter(Ye=>!Ye._container||Ye._container===this)),this._drawers.notifyOnChanges()}),this._drawers.changes.pipe((0,G.Z)(null)).subscribe(()=>{this._validateDrawers(),this._drawers.forEach(oe=>{this._watchDrawerToggle(oe),this._watchDrawerPosition(oe),this._watchDrawerMode(oe)}),(!this._drawers.length||this._isDrawerOpen(this._start)||this._isDrawerOpen(this._end))&&this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),this._ngZone.runOutsideAngular(()=>{this._doCheckSubject.pipe((0,Ce.B)(10),(0,xe.Q)(this._destroyed)).subscribe(()=>this.updateContentMargins())})}ngOnDestroy(){this._contentMarginChanges.complete(),this._doCheckSubject.complete(),this._drawers.destroy(),this._destroyed.next(),this._destroyed.complete()}open(){this._drawers.forEach(oe=>oe.open())}close(){this._drawers.forEach(oe=>oe.close())}updateContentMargins(){let oe=0,Ye=0;if(this._left&&this._left.opened)if("side"==this._left.mode)oe+=this._left._getWidth();else if("push"==this._left.mode){const fe=this._left._getWidth();oe+=fe,Ye-=fe}if(this._right&&this._right.opened)if("side"==this._right.mode)Ye+=this._right._getWidth();else if("push"==this._right.mode){const fe=this._right._getWidth();Ye+=fe,oe-=fe}oe=oe||null,Ye=Ye||null,(oe!==this._contentMargins.left||Ye!==this._contentMargins.right)&&(this._contentMargins={left:oe,right:Ye},this._ngZone.run(()=>this._contentMarginChanges.next(this._contentMargins)))}ngDoCheck(){this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular(()=>this._doCheckSubject.next())}_watchDrawerToggle(oe){oe._animationStarted.pipe((0,xe.Q)(this._drawers.changes)).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),"side"!==oe.mode&&oe.openedChange.pipe((0,xe.Q)(this._drawers.changes)).subscribe(()=>this._setContainerClass(oe.opened))}_watchDrawerPosition(oe){oe.onPositionChanged.pipe((0,xe.Q)(this._drawers.changes)).subscribe(()=>{(0,C.mal)({read:()=>this._validateDrawers()},{injector:this._injector})})}_watchDrawerMode(oe){oe._modeChanged.pipe((0,xe.Q)((0,le.h)(this._drawers.changes,this._destroyed))).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()})}_setContainerClass(oe){const Ye=this._element.nativeElement.classList,fe="mat-drawer-container-has-open";oe?Ye.add(fe):Ye.remove(fe)}_validateDrawers(){this._start=this._end=null,this._drawers.forEach(oe=>{"end"==oe.position?this._end=oe:this._start=oe}),this._right=this._left=null,this._dir&&"rtl"===this._dir.value?(this._left=this._end,this._right=this._start):(this._left=this._start,this._right=this._end)}_isPushed(){return this._isDrawerOpen(this._start)&&"over"!=this._start.mode||this._isDrawerOpen(this._end)&&"over"!=this._end.mode}_onBackdropClicked(){this.backdropClick.emit(),this._closeModalDrawersViaBackdrop()}_closeModalDrawersViaBackdrop(){[this._start,this._end].filter(oe=>oe&&!oe.disableClose&&this._drawerHasBackdrop(oe)).forEach(oe=>oe._closeViaBackdropClick())}_isShowingBackdrop(){return this._isDrawerOpen(this._start)&&this._drawerHasBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._drawerHasBackdrop(this._end)}_isDrawerOpen(oe){return null!=oe&&oe.opened}_drawerHasBackdrop(oe){return null==this._backdropOverride?!!oe&&"side"!==oe.mode:this._backdropOverride}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275cmp=C.VBU({type:nt,selectors:[["mat-drawer-container"]],contentQueries:function(Ye,fe,Qe){if(1&Ye&&(C.wni(Qe,F,5),C.wni(Qe,ve,5)),2&Ye){let gt;C.mGM(gt=C.lsd())&&(fe._content=gt.first),C.mGM(gt=C.lsd())&&(fe._allDrawers=gt)}},viewQuery:function(Ye,fe){if(1&Ye&&C.GBs(F,5),2&Ye){let Qe;C.mGM(Qe=C.lsd())&&(fe._userContent=Qe.first)}},hostAttrs:[1,"mat-drawer-container"],hostVars:2,hostBindings:function(Ye,fe){2&Ye&&C.AVh("mat-drawer-container-explicit-backdrop",fe._backdropOverride)},inputs:{autosize:"autosize",hasBackdrop:"hasBackdrop"},outputs:{backdropClick:"backdropClick"},exportAs:["matDrawerContainer"],features:[C.Jv_([{provide:ie,useExisting:nt}])],ngContentSelectors:J,decls:4,vars:2,consts:[[1,"mat-drawer-backdrop",3,"mat-drawer-shown"],[1,"mat-drawer-backdrop",3,"click"]],template:function(Ye,fe){1&Ye&&(C.NAR(ne),C.nVh(0,De,1,2,"div",0),C.SdG(1),C.SdG(2,1),C.nVh(3,Re,2,0,"mat-drawer-content")),2&Ye&&(C.vxM(fe.hasBackdrop?0:-1),C.R7$(3),C.vxM(fe._content?-1:3))},dependencies:[F],styles:[".mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color, var(--mat-sys-on-background));background-color:var(--mat-sidenav-content-background-color, var(--mat-sys-background));box-sizing:border-box;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible;background-color:var(--mat-sidenav-scrim-color, color-mix(in srgb, var(--mat-sys-neutral-variant20) 40%, transparent))}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}@media(forced-colors: active){.mat-drawer-backdrop{opacity:.5}}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-content.mat-drawer-content-hidden{opacity:0}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;color:var(--mat-sidenav-container-text-color, var(--mat-sys-on-surface-variant));box-shadow:var(--mat-sidenav-container-elevation-shadow, none);background-color:var(--mat-sidenav-container-background-color, var(--mat-sys-surface));border-top-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));width:var(--mat-sidenav-container-width, 360px);display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}@media(forced-colors: active){.mat-drawer,[dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}}@media(forced-colors: active){[dir=rtl] .mat-drawer,.mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0);border-top-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-right-radius:0;border-bottom-right-radius:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{border-top-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-transition .mat-drawer{transition:transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}.mat-drawer:not(.mat-drawer-opened):not(.mat-drawer-animating){visibility:hidden;box-shadow:none}.mat-drawer:not(.mat-drawer-opened):not(.mat-drawer-animating) .mat-drawer-inner-container{display:none}.mat-drawer.mat-drawer-opened.mat-drawer-opened{transform:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color, transparent);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color, transparent);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side{border-left-color:var(--mat-sidenav-container-divider-color, transparent);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-right-color:var(--mat-sidenav-container-divider-color, transparent);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto}.mat-sidenav-fixed{position:fixed}\n"],encapsulation:2,changeDetection:0})}return nt})(),$=(()=>{class nt extends F{static \u0275fac=(()=>{let oe;return function(fe){return(oe||(oe=C.xGo(nt)))(fe||nt)}})();static \u0275cmp=C.VBU({type:nt,selectors:[["mat-sidenav-content"]],hostAttrs:[1,"mat-drawer-content","mat-sidenav-content"],features:[C.Jv_([{provide:u.uv,useExisting:nt}]),C.Vt3],ngContentSelectors:ce,decls:1,vars:0,template:function(Ye,fe){1&Ye&&(C.NAR(),C.SdG(0))},encapsulation:2,changeDetection:0})}return nt})(),Ke=(()=>{class nt extends ve{get fixedInViewport(){return this._fixedInViewport}set fixedInViewport(oe){this._fixedInViewport=(0,T.he)(oe)}_fixedInViewport=!1;get fixedTopGap(){return this._fixedTopGap}set fixedTopGap(oe){this._fixedTopGap=(0,w.OE)(oe)}_fixedTopGap=0;get fixedBottomGap(){return this._fixedBottomGap}set fixedBottomGap(oe){this._fixedBottomGap=(0,w.OE)(oe)}_fixedBottomGap=0;static \u0275fac=(()=>{let oe;return function(fe){return(oe||(oe=C.xGo(nt)))(fe||nt)}})();static \u0275cmp=C.VBU({type:nt,selectors:[["mat-sidenav"]],hostAttrs:[1,"mat-drawer","mat-sidenav"],hostVars:16,hostBindings:function(Ye,fe){2&Ye&&(C.BMQ("tabIndex","side"!==fe.mode?"-1":null)("align",null),C.xc7("top",fe.fixedInViewport?fe.fixedTopGap:null,"px")("bottom",fe.fixedInViewport?fe.fixedBottomGap:null,"px"),C.AVh("mat-drawer-end","end"===fe.position)("mat-drawer-over","over"===fe.mode)("mat-drawer-push","push"===fe.mode)("mat-drawer-side","side"===fe.mode)("mat-sidenav-fixed",fe.fixedInViewport))},inputs:{fixedInViewport:"fixedInViewport",fixedTopGap:"fixedTopGap",fixedBottomGap:"fixedBottomGap"},exportAs:["matSidenav"],features:[C.Jv_([{provide:ve,useExisting:nt}]),C.Vt3],ngContentSelectors:ce,decls:3,vars:0,consts:[["content",""],["cdkScrollable","",1,"mat-drawer-inner-container"]],template:function(Ye,fe){1&Ye&&(C.NAR(),C.j41(0,"div",1,0),C.SdG(2),C.k0s())},dependencies:[u.uv],encapsulation:2,changeDetection:0})}return nt})(),Vt=(()=>{class nt extends H{_allDrawers=void 0;_content=void 0;static \u0275fac=(()=>{let oe;return function(fe){return(oe||(oe=C.xGo(nt)))(fe||nt)}})();static \u0275cmp=C.VBU({type:nt,selectors:[["mat-sidenav-container"]],contentQueries:function(Ye,fe,Qe){if(1&Ye&&(C.wni(Qe,$,5),C.wni(Qe,Ke,5)),2&Ye){let gt;C.mGM(gt=C.lsd())&&(fe._content=gt.first),C.mGM(gt=C.lsd())&&(fe._allDrawers=gt)}},hostAttrs:[1,"mat-drawer-container","mat-sidenav-container"],hostVars:2,hostBindings:function(Ye,fe){2&Ye&&C.AVh("mat-drawer-container-explicit-backdrop",fe._backdropOverride)},exportAs:["matSidenavContainer"],features:[C.Jv_([{provide:ie,useExisting:nt},{provide:H,useExisting:nt}]),C.Vt3],ngContentSelectors:_e,decls:4,vars:2,consts:[[1,"mat-drawer-backdrop",3,"mat-drawer-shown"],[1,"mat-drawer-backdrop",3,"click"]],template:function(Ye,fe){1&Ye&&(C.NAR(Xe),C.nVh(0,he,1,2,"div",0),C.SdG(1),C.SdG(2,1),C.nVh(3,Dt,2,0,"mat-sidenav-content")),2&Ye&&(C.vxM(fe.hasBackdrop?0:-1),C.R7$(3),C.vxM(fe._content?-1:3))},dependencies:[$],styles:[".mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color, var(--mat-sys-on-background));background-color:var(--mat-sidenav-content-background-color, var(--mat-sys-background));box-sizing:border-box;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible;background-color:var(--mat-sidenav-scrim-color, color-mix(in srgb, var(--mat-sys-neutral-variant20) 40%, transparent))}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}@media(forced-colors: active){.mat-drawer-backdrop{opacity:.5}}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-content.mat-drawer-content-hidden{opacity:0}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;color:var(--mat-sidenav-container-text-color, var(--mat-sys-on-surface-variant));box-shadow:var(--mat-sidenav-container-elevation-shadow, none);background-color:var(--mat-sidenav-container-background-color, var(--mat-sys-surface));border-top-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));width:var(--mat-sidenav-container-width, 360px);display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}@media(forced-colors: active){.mat-drawer,[dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}}@media(forced-colors: active){[dir=rtl] .mat-drawer,.mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0);border-top-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-right-radius:0;border-bottom-right-radius:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{border-top-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-transition .mat-drawer{transition:transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}.mat-drawer:not(.mat-drawer-opened):not(.mat-drawer-animating){visibility:hidden;box-shadow:none}.mat-drawer:not(.mat-drawer-opened):not(.mat-drawer-animating) .mat-drawer-inner-container{display:none}.mat-drawer.mat-drawer-opened.mat-drawer-opened{transform:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color, transparent);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color, transparent);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side{border-left-color:var(--mat-sidenav-container-divider-color, transparent);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-right-color:var(--mat-sidenav-container-divider-color, transparent);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto}.mat-sidenav-fixed{position:fixed}\n"],encapsulation:2,changeDetection:0})}return nt})(),St=(()=>{class nt{static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275mod=C.$C({type:nt});static \u0275inj=L.G2t({imports:[V.y,u.Gj,u.Gj,V.y]})}return nt})()},450(Zt,pe,l){"use strict";l.d(pe,{mV:()=>W,sG:()=>j});var i=l(2615),d=l(3664),v=l(7705),T=l(9417),w=l(6838),e=l(9726),O=l(8968),f=l(1804),u=l(2046),L=l(2496),C=l(3155),B=l(2466);const A=["switch"],Pe=["*"];function le(G,re){1&G&&(d.j41(0,"span",11),i.qSk(),d.j41(1,"svg",13),d.nrm(2,"path",14),d.k0s(),d.j41(3,"svg",15),d.nrm(4,"path",16),d.k0s()())}const Ce=new i.nKC("mat-slide-toggle-default-options",{providedIn:"root",factory:()=>({disableToggleValue:!1,hideIcon:!1,disabledInteractive:!1})});class Ae{source;checked;constructor(re,xe){this.source=re,this.checked=xe}}let j=(()=>{class G{_elementRef=(0,i.WQX)(d.aKT);_focusMonitor=(0,i.WQX)(w.FN);_changeDetectorRef=(0,i.WQX)(v.gRc);defaults=(0,i.WQX)(Ce);_onChange=xe=>{};_onTouched=()=>{};_validatorOnChange=()=>{};_uniqueId;_checked=!1;_createChangeEvent(xe){return new Ae(this,xe)}_labelId;get buttonId(){return`${this.id||this._uniqueId}-button`}_switchElement;focus(){this._switchElement.nativeElement.focus()}_noopAnimations=(0,f.Rc)();_focused;name=null;id;labelPosition="after";ariaLabel=null;ariaLabelledby=null;ariaDescribedby;required;color;disabled=!1;disableRipple=!1;tabIndex=0;get checked(){return this._checked}set checked(xe){this._checked=xe,this._changeDetectorRef.markForCheck()}hideIcon;disabledInteractive;change=new d.bkB;toggleChange=new d.bkB;get inputId(){return`${this.id||this._uniqueId}-input`}constructor(){(0,i.WQX)(O.l).load(u.A);const xe=(0,i.WQX)(new v.ES_("tabindex"),{optional:!0}),Ee=this.defaults;this.tabIndex=null==xe?0:parseInt(xe)||0,this.color=Ee.color||"accent",this.id=this._uniqueId=(0,i.WQX)(e.g).getId("mat-mdc-slide-toggle-"),this.hideIcon=Ee.hideIcon??!1,this.disabledInteractive=Ee.disabledInteractive??!1,this._labelId=this._uniqueId+"-label"}ngAfterContentInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(xe=>{"keyboard"===xe||"program"===xe?(this._focused=!0,this._changeDetectorRef.markForCheck()):xe||Promise.resolve().then(()=>{this._focused=!1,this._onTouched(),this._changeDetectorRef.markForCheck()})})}ngOnChanges(xe){xe.required&&this._validatorOnChange()}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}writeValue(xe){this.checked=!!xe}registerOnChange(xe){this._onChange=xe}registerOnTouched(xe){this._onTouched=xe}validate(xe){return this.required&&!0!==xe.value?{required:!0}:null}registerOnValidatorChange(xe){this._validatorOnChange=xe}setDisabledState(xe){this.disabled=xe,this._changeDetectorRef.markForCheck()}toggle(){this.checked=!this.checked,this._onChange(this.checked)}_emitChangeEvent(){this._onChange(this.checked),this.change.emit(this._createChangeEvent(this.checked))}_handleClick(){this.disabled||(this.toggleChange.emit(),this.defaults.disableToggleValue||(this.checked=!this.checked,this._onChange(this.checked),this.change.emit(new Ae(this,this.checked))))}_getAriaLabelledBy(){return this.ariaLabelledby?this.ariaLabelledby:this.ariaLabel?null:this._labelId}static \u0275fac=function(Ee){return new(Ee||G)};static \u0275cmp=d.VBU({type:G,selectors:[["mat-slide-toggle"]],viewQuery:function(Ee,V){if(1&Ee&&d.GBs(A,5),2&Ee){let ce;d.mGM(ce=d.lsd())&&(V._switchElement=ce.first)}},hostAttrs:[1,"mat-mdc-slide-toggle"],hostVars:13,hostBindings:function(Ee,V){2&Ee&&(d.Avn("id",V.id),d.BMQ("tabindex",null)("aria-label",null)("name",null)("aria-labelledby",null),d.HbH(V.color?"mat-"+V.color:""),d.AVh("mat-mdc-slide-toggle-focused",V._focused)("mat-mdc-slide-toggle-checked",V.checked)("_mat-animation-noopable",V._noopAnimations))},inputs:{name:"name",id:"id",labelPosition:"labelPosition",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],required:[2,"required","required",v.L39],color:"color",disabled:[2,"disabled","disabled",v.L39],disableRipple:[2,"disableRipple","disableRipple",v.L39],tabIndex:[2,"tabIndex","tabIndex",xe=>null==xe?0:(0,v.Udg)(xe)],checked:[2,"checked","checked",v.L39],hideIcon:[2,"hideIcon","hideIcon",v.L39],disabledInteractive:[2,"disabledInteractive","disabledInteractive",v.L39]},outputs:{change:"change",toggleChange:"toggleChange"},exportAs:["matSlideToggle"],features:[d.Jv_([{provide:T.kq,useExisting:(0,i.Rfq)(()=>G),multi:!0},{provide:T.cz,useExisting:G,multi:!0}]),d.OA$],ngContentSelectors:Pe,decls:14,vars:27,consts:[["switch",""],["mat-internal-form-field","",3,"labelPosition"],["role","switch","type","button",1,"mdc-switch",3,"click","tabIndex","disabled"],[1,"mat-mdc-slide-toggle-touch-target"],[1,"mdc-switch__track"],[1,"mdc-switch__handle-track"],[1,"mdc-switch__handle"],[1,"mdc-switch__shadow"],[1,"mdc-elevation-overlay"],[1,"mdc-switch__ripple"],["mat-ripple","",1,"mat-mdc-slide-toggle-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mdc-switch__icons"],[1,"mdc-label",3,"click","for"],["viewBox","0 0 24 24","aria-hidden","true",1,"mdc-switch__icon","mdc-switch__icon--on"],["d","M19.69,5.23L8.96,15.96l-4.23-4.23L2.96,13.5l6,6L21.46,7L19.69,5.23z"],["viewBox","0 0 24 24","aria-hidden","true",1,"mdc-switch__icon","mdc-switch__icon--off"],["d","M20 13H4v-2h16v2z"]],template:function(Ee,V){if(1&Ee){const ce=d.RV6();d.NAR(),d.j41(0,"div",1)(1,"button",2,0),d.bIt("click",function(){return i.eBV(ce),i.Njj(V._handleClick())}),d.nrm(3,"div",3)(4,"span",4),d.j41(5,"span",5)(6,"span",6)(7,"span",7),d.nrm(8,"span",8),d.k0s(),d.j41(9,"span",9),d.nrm(10,"span",10),d.k0s(),d.nVh(11,le,5,0,"span",11),d.k0s()()(),d.j41(12,"label",12),d.bIt("click",function(ne){return i.eBV(ce),i.Njj(ne.stopPropagation())}),d.SdG(13),d.k0s()()}if(2&Ee){const ce=d.sdS(2);d.Y8G("labelPosition",V.labelPosition),d.R7$(),d.AVh("mdc-switch--selected",V.checked)("mdc-switch--unselected",!V.checked)("mdc-switch--checked",V.checked)("mdc-switch--disabled",V.disabled)("mat-mdc-slide-toggle-disabled-interactive",V.disabledInteractive),d.Y8G("tabIndex",V.disabled&&!V.disabledInteractive?-1:V.tabIndex)("disabled",V.disabled&&!V.disabledInteractive),d.BMQ("id",V.buttonId)("name",V.name)("aria-label",V.ariaLabel)("aria-labelledby",V._getAriaLabelledBy())("aria-describedby",V.ariaDescribedby)("aria-required",V.required||null)("aria-checked",V.checked)("aria-disabled",V.disabled&&V.disabledInteractive?"true":null),d.R7$(9),d.Y8G("matRippleTrigger",ce)("matRippleDisabled",V.disableRipple||V.disabled)("matRippleCentered",!0),d.R7$(),d.vxM(V.hideIcon?-1:11),d.R7$(),d.Y8G("for",V.buttonId),d.BMQ("id",V._labelId)}},dependencies:[L.r6,C.t],styles:['.mdc-switch{align-items:center;background:none;border:none;cursor:pointer;display:inline-flex;flex-shrink:0;margin:0;outline:none;overflow:visible;padding:0;position:relative;width:var(--mat-slide-toggle-track-width, 52px)}.mdc-switch.mdc-switch--disabled{cursor:default;pointer-events:none}.mdc-switch.mat-mdc-slide-toggle-disabled-interactive{pointer-events:auto}.mdc-switch__track{overflow:hidden;position:relative;width:100%;height:var(--mat-slide-toggle-track-height, 32px);border-radius:var(--mat-slide-toggle-track-shape, var(--mat-sys-corner-full))}.mdc-switch--disabled.mdc-switch .mdc-switch__track{opacity:var(--mat-slide-toggle-disabled-track-opacity, 0.12)}.mdc-switch__track::before,.mdc-switch__track::after{border:1px solid rgba(0,0,0,0);border-radius:inherit;box-sizing:border-box;content:"";height:100%;left:0;position:absolute;width:100%;border-width:var(--mat-slide-toggle-track-outline-width, 2px);border-color:var(--mat-slide-toggle-track-outline-color, var(--mat-sys-outline))}.mdc-switch--selected .mdc-switch__track::before,.mdc-switch--selected .mdc-switch__track::after{border-width:var(--mat-slide-toggle-selected-track-outline-width, 2px);border-color:var(--mat-slide-toggle-selected-track-outline-color, transparent)}.mdc-switch--disabled .mdc-switch__track::before,.mdc-switch--disabled .mdc-switch__track::after{border-width:var(--mat-slide-toggle-disabled-unselected-track-outline-width, 2px);border-color:var(--mat-slide-toggle-disabled-unselected-track-outline-color, var(--mat-sys-on-surface))}@media(forced-colors: active){.mdc-switch__track{border-color:currentColor}}.mdc-switch__track::before{transition:transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);transform:translateX(0);background:var(--mat-slide-toggle-unselected-track-color, var(--mat-sys-surface-variant))}.mdc-switch--selected .mdc-switch__track::before{transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);transform:translateX(100%)}[dir=rtl] .mdc-switch--selected .mdc-switch--selected .mdc-switch__track::before{transform:translateX(-100%)}.mdc-switch--selected .mdc-switch__track::before{opacity:var(--mat-slide-toggle-hidden-track-opacity, 0);transition:var(--mat-slide-toggle-hidden-track-transition, opacity 75ms)}.mdc-switch--unselected .mdc-switch__track::before{opacity:var(--mat-slide-toggle-visible-track-opacity, 1);transition:var(--mat-slide-toggle-visible-track-transition, opacity 75ms)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::before{background:var(--mat-slide-toggle-unselected-hover-track-color, var(--mat-sys-surface-variant))}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::before{background:var(--mat-slide-toggle-unselected-focus-track-color, var(--mat-sys-surface-variant))}.mdc-switch:enabled:active .mdc-switch__track::before{background:var(--mat-slide-toggle-unselected-pressed-track-color, var(--mat-sys-surface-variant))}.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:hover:not(:focus):not(:active) .mdc-switch__track::before,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:focus:not(:active) .mdc-switch__track::before,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:active .mdc-switch__track::before,.mdc-switch.mdc-switch--disabled .mdc-switch__track::before{background:var(--mat-slide-toggle-disabled-unselected-track-color, var(--mat-sys-surface-variant))}.mdc-switch__track::after{transform:translateX(-100%);background:var(--mat-slide-toggle-selected-track-color, var(--mat-sys-primary))}[dir=rtl] .mdc-switch__track::after{transform:translateX(100%)}.mdc-switch--selected .mdc-switch__track::after{transform:translateX(0)}.mdc-switch--selected .mdc-switch__track::after{opacity:var(--mat-slide-toggle-visible-track-opacity, 1);transition:var(--mat-slide-toggle-visible-track-transition, opacity 75ms)}.mdc-switch--unselected .mdc-switch__track::after{opacity:var(--mat-slide-toggle-hidden-track-opacity, 0);transition:var(--mat-slide-toggle-hidden-track-transition, opacity 75ms)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::after{background:var(--mat-slide-toggle-selected-hover-track-color, var(--mat-sys-primary))}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::after{background:var(--mat-slide-toggle-selected-focus-track-color, var(--mat-sys-primary))}.mdc-switch:enabled:active .mdc-switch__track::after{background:var(--mat-slide-toggle-selected-pressed-track-color, var(--mat-sys-primary))}.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:hover:not(:focus):not(:active) .mdc-switch__track::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:focus:not(:active) .mdc-switch__track::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:active .mdc-switch__track::after,.mdc-switch.mdc-switch--disabled .mdc-switch__track::after{background:var(--mat-slide-toggle-disabled-selected-track-color, var(--mat-sys-on-surface))}.mdc-switch__handle-track{height:100%;pointer-events:none;position:absolute;top:0;transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);left:0;right:auto;transform:translateX(0);width:calc(100% - var(--mat-slide-toggle-handle-width))}[dir=rtl] .mdc-switch__handle-track{left:auto;right:0}.mdc-switch--selected .mdc-switch__handle-track{transform:translateX(100%)}[dir=rtl] .mdc-switch--selected .mdc-switch__handle-track{transform:translateX(-100%)}.mdc-switch__handle{display:flex;pointer-events:auto;position:absolute;top:50%;transform:translateY(-50%);left:0;right:auto;transition:width 75ms cubic-bezier(0.4, 0, 0.2, 1),height 75ms cubic-bezier(0.4, 0, 0.2, 1),margin 75ms cubic-bezier(0.4, 0, 0.2, 1);width:var(--mat-slide-toggle-handle-width);height:var(--mat-slide-toggle-handle-height);border-radius:var(--mat-slide-toggle-handle-shape, var(--mat-sys-corner-full))}[dir=rtl] .mdc-switch__handle{left:auto;right:0}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle{width:var(--mat-slide-toggle-unselected-handle-size, 16px);height:var(--mat-slide-toggle-unselected-handle-size, 16px);margin:var(--mat-slide-toggle-unselected-handle-horizontal-margin, 0 8px)}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle:has(.mdc-switch__icons){margin:var(--mat-slide-toggle-unselected-with-icon-handle-horizontal-margin, 0 4px)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle{width:var(--mat-slide-toggle-selected-handle-size, 24px);height:var(--mat-slide-toggle-selected-handle-size, 24px);margin:var(--mat-slide-toggle-selected-handle-horizontal-margin, 0 24px)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle:has(.mdc-switch__icons){margin:var(--mat-slide-toggle-selected-with-icon-handle-horizontal-margin, 0 24px)}.mat-mdc-slide-toggle .mdc-switch__handle:has(.mdc-switch__icons){width:var(--mat-slide-toggle-with-icon-handle-size, 24px);height:var(--mat-slide-toggle-with-icon-handle-size, 24px)}.mat-mdc-slide-toggle .mdc-switch:active:not(.mdc-switch--disabled) .mdc-switch__handle{width:var(--mat-slide-toggle-pressed-handle-size, 28px);height:var(--mat-slide-toggle-pressed-handle-size, 28px)}.mat-mdc-slide-toggle .mdc-switch--selected:active:not(.mdc-switch--disabled) .mdc-switch__handle{margin:var(--mat-slide-toggle-selected-pressed-handle-horizontal-margin, 0 22px)}.mat-mdc-slide-toggle .mdc-switch--unselected:active:not(.mdc-switch--disabled) .mdc-switch__handle{margin:var(--mat-slide-toggle-unselected-pressed-handle-horizontal-margin, 0 2px)}.mdc-switch--disabled.mdc-switch--selected .mdc-switch__handle::after{opacity:var(--mat-slide-toggle-disabled-selected-handle-opacity, 1)}.mdc-switch--disabled.mdc-switch--unselected .mdc-switch__handle::after{opacity:var(--mat-slide-toggle-disabled-unselected-handle-opacity, 0.38)}.mdc-switch__handle::before,.mdc-switch__handle::after{border:1px solid rgba(0,0,0,0);border-radius:inherit;box-sizing:border-box;content:"";width:100%;height:100%;left:0;position:absolute;top:0;transition:background-color 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1),border-color 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);z-index:-1}@media(forced-colors: active){.mdc-switch__handle::before,.mdc-switch__handle::after{border-color:currentColor}}.mdc-switch--selected:enabled .mdc-switch__handle::after{background:var(--mat-slide-toggle-selected-handle-color, var(--mat-sys-on-primary))}.mdc-switch--selected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mat-slide-toggle-selected-hover-handle-color, var(--mat-sys-primary-container))}.mdc-switch--selected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mat-slide-toggle-selected-focus-handle-color, var(--mat-sys-primary-container))}.mdc-switch--selected:enabled:active .mdc-switch__handle::after{background:var(--mat-slide-toggle-selected-pressed-handle-color, var(--mat-sys-primary-container))}.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled.mdc-switch--selected:hover:not(:focus):not(:active) .mdc-switch__handle::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled.mdc-switch--selected:focus:not(:active) .mdc-switch__handle::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled.mdc-switch--selected:active .mdc-switch__handle::after,.mdc-switch--selected.mdc-switch--disabled .mdc-switch__handle::after{background:var(--mat-slide-toggle-disabled-selected-handle-color, var(--mat-sys-surface))}.mdc-switch--unselected:enabled .mdc-switch__handle::after{background:var(--mat-slide-toggle-unselected-handle-color, var(--mat-sys-outline))}.mdc-switch--unselected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mat-slide-toggle-unselected-hover-handle-color, var(--mat-sys-on-surface-variant))}.mdc-switch--unselected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mat-slide-toggle-unselected-focus-handle-color, var(--mat-sys-on-surface-variant))}.mdc-switch--unselected:enabled:active .mdc-switch__handle::after{background:var(--mat-slide-toggle-unselected-pressed-handle-color, var(--mat-sys-on-surface-variant))}.mdc-switch--unselected.mdc-switch--disabled .mdc-switch__handle::after{background:var(--mat-slide-toggle-disabled-unselected-handle-color, var(--mat-sys-on-surface))}.mdc-switch__handle::before{background:var(--mat-slide-toggle-handle-surface-color)}.mdc-switch__shadow{border-radius:inherit;bottom:0;left:0;position:absolute;right:0;top:0}.mdc-switch:enabled .mdc-switch__shadow{box-shadow:var(--mat-slide-toggle-handle-elevation-shadow)}.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:hover:not(:focus):not(:active) .mdc-switch__shadow,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:focus:not(:active) .mdc-switch__shadow,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:active .mdc-switch__shadow,.mdc-switch.mdc-switch--disabled .mdc-switch__shadow{box-shadow:var(--mat-slide-toggle-disabled-handle-elevation-shadow)}.mdc-switch__ripple{left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);z-index:-1;width:var(--mat-slide-toggle-state-layer-size, 40px);height:var(--mat-slide-toggle-state-layer-size, 40px)}.mdc-switch__ripple::after{content:"";opacity:0}.mdc-switch--disabled .mdc-switch__ripple::after{display:none}.mat-mdc-slide-toggle-disabled-interactive .mdc-switch__ripple::after{display:block}.mdc-switch:hover .mdc-switch__ripple::after{transition:75ms opacity cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:enabled:focus .mdc-switch__ripple::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:enabled:active .mdc-switch__ripple::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:enabled:hover:not(:focus) .mdc-switch__ripple::after,.mdc-switch--unselected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background:var(--mat-slide-toggle-unselected-hover-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-slide-toggle-unselected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mdc-switch--unselected:enabled:focus .mdc-switch__ripple::after{background:var(--mat-slide-toggle-unselected-focus-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-slide-toggle-unselected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mdc-switch--unselected:enabled:active .mdc-switch__ripple::after{background:var(--mat-slide-toggle-unselected-pressed-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-slide-toggle-unselected-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity));transition:opacity 75ms linear}.mdc-switch--selected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background:var(--mat-slide-toggle-selected-hover-state-layer-color, var(--mat-sys-primary));opacity:var(--mat-slide-toggle-selected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mdc-switch--selected:enabled:focus .mdc-switch__ripple::after{background:var(--mat-slide-toggle-selected-focus-state-layer-color, var(--mat-sys-primary));opacity:var(--mat-slide-toggle-selected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mdc-switch--selected:enabled:active .mdc-switch__ripple::after{background:var(--mat-slide-toggle-selected-pressed-state-layer-color, var(--mat-sys-primary));opacity:var(--mat-slide-toggle-selected-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity));transition:opacity 75ms linear}.mdc-switch__icons{position:relative;height:100%;width:100%;z-index:1;transform:translateZ(0)}.mdc-switch--disabled.mdc-switch--unselected .mdc-switch__icons{opacity:var(--mat-slide-toggle-disabled-unselected-icon-opacity, 0.38)}.mdc-switch--disabled.mdc-switch--selected .mdc-switch__icons{opacity:var(--mat-slide-toggle-disabled-selected-icon-opacity, 0.38)}.mdc-switch__icon{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;opacity:0;transition:opacity 30ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-switch--unselected .mdc-switch__icon{width:var(--mat-slide-toggle-unselected-icon-size, 16px);height:var(--mat-slide-toggle-unselected-icon-size, 16px);fill:var(--mat-slide-toggle-unselected-icon-color, var(--mat-sys-surface-variant))}.mdc-switch--unselected.mdc-switch--disabled .mdc-switch__icon{fill:var(--mat-slide-toggle-disabled-unselected-icon-color, var(--mat-sys-surface-variant))}.mdc-switch--selected .mdc-switch__icon{width:var(--mat-slide-toggle-selected-icon-size, 16px);height:var(--mat-slide-toggle-selected-icon-size, 16px);fill:var(--mat-slide-toggle-selected-icon-color, var(--mat-sys-on-primary-container))}.mdc-switch--selected.mdc-switch--disabled .mdc-switch__icon{fill:var(--mat-slide-toggle-disabled-selected-icon-color, var(--mat-sys-on-surface))}.mdc-switch--selected .mdc-switch__icon--on,.mdc-switch--unselected .mdc-switch__icon--off{opacity:1;transition:opacity 45ms 30ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-slide-toggle{-webkit-user-select:none;user-select:none;display:inline-block;-webkit-tap-highlight-color:rgba(0,0,0,0);outline:0}.mat-mdc-slide-toggle .mat-mdc-slide-toggle-ripple,.mat-mdc-slide-toggle .mdc-switch__ripple::after{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:50%;pointer-events:none}.mat-mdc-slide-toggle .mat-mdc-slide-toggle-ripple:not(:empty),.mat-mdc-slide-toggle .mdc-switch__ripple::after:not(:empty){transform:translateZ(0)}.mat-mdc-slide-toggle.mat-mdc-slide-toggle-focused .mat-focus-indicator::before{content:""}.mat-mdc-slide-toggle .mat-internal-form-field{color:var(--mat-slide-toggle-label-text-color, var(--mat-sys-on-surface));font-family:var(--mat-slide-toggle-label-text-font, var(--mat-sys-body-medium-font));line-height:var(--mat-slide-toggle-label-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-slide-toggle-label-text-size, var(--mat-sys-body-medium-size));letter-spacing:var(--mat-slide-toggle-label-text-tracking, var(--mat-sys-body-medium-tracking));font-weight:var(--mat-slide-toggle-label-text-weight, var(--mat-sys-body-medium-weight))}.mat-mdc-slide-toggle .mat-ripple-element{opacity:.12}.mat-mdc-slide-toggle .mat-focus-indicator::before{border-radius:50%}.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle-track,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__icon,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle::before,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle::after,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__track::before,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__track::after{transition:none}.mat-mdc-slide-toggle .mdc-switch:enabled+.mdc-label{cursor:pointer}.mat-mdc-slide-toggle .mdc-switch--disabled+label{color:var(--mat-slide-toggle-disabled-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-slide-toggle-touch-target{position:absolute;top:50%;left:50%;height:var(--mat-slide-toggle-touch-target-size, 48px);width:100%;transform:translate(-50%, -50%);display:var(--mat-slide-toggle-touch-target-display, block)}[dir=rtl] .mat-mdc-slide-toggle-touch-target{left:auto;right:50%;transform:translate(50%, -50%)}\n'],encapsulation:2,changeDetection:0})}return G})(),W=(()=>{class G{static \u0275fac=function(Ee){return new(Ee||G)};static \u0275mod=d.$C({type:G});static \u0275inj=i.G2t({imports:[j,B.y,B.y]})}return G})()},5416(Zt,pe,l){"use strict";l.d(pe,{UG:()=>he,_T:()=>lt,x6:()=>_e});var i=l(2615),d=l(3664),v=l(7705),T=l(1413),w=l(7673),e=l(8834),O=l(7094),f=l(9726),u=l(9842),L=l(6939),C=l(1804),B=l(9327),A=l(4330),Pe=l(9338),le=l(6977),Ce=l(2466);function Ae(te,ie){if(1&te){const P=d.RV6();d.j41(0,"div",1)(1,"button",2),d.bIt("click",function(){i.eBV(P);const ve=d.XpG();return i.Njj(ve.action())}),d.EFF(2),d.k0s()()}if(2&te){const P=d.XpG();d.R7$(2),d.SpI(" ",P.data.action," ")}}const j=["label"];function W(te,ie){}const G=Math.pow(2,31)-1;class re{_overlayRef;instance;containerInstance;_afterDismissed=new T.B;_afterOpened=new T.B;_onAction=new T.B;_durationTimeoutId;_dismissedByAction=!1;constructor(ie,P){this._overlayRef=P,this.containerInstance=ie,ie._onExit.subscribe(()=>this._finishDismiss())}dismiss(){this._afterDismissed.closed||this.containerInstance.exit(),clearTimeout(this._durationTimeoutId)}dismissWithAction(){this._onAction.closed||(this._dismissedByAction=!0,this._onAction.next(),this._onAction.complete(),this.dismiss()),clearTimeout(this._durationTimeoutId)}closeWithAction(){this.dismissWithAction()}_dismissAfter(ie){this._durationTimeoutId=setTimeout(()=>this.dismiss(),Math.min(ie,G))}_open(){this._afterOpened.closed||(this._afterOpened.next(),this._afterOpened.complete())}_finishDismiss(){this._overlayRef.dispose(),this._onAction.closed||this._onAction.complete(),this._afterDismissed.next({dismissedByAction:this._dismissedByAction}),this._afterDismissed.complete(),this._dismissedByAction=!1}afterDismissed(){return this._afterDismissed}afterOpened(){return this.containerInstance._onEnter}onAction(){return this._onAction}}const xe=new i.nKC("MatSnackBarData");class Ee{politeness="polite";announcementMessage="";viewContainerRef;duration=0;panelClass;direction;data=null;horizontalPosition="center";verticalPosition="bottom"}let V=(()=>{class te{static \u0275fac=function(F){return new(F||te)};static \u0275dir=d.FsC({type:te,selectors:[["","matSnackBarLabel",""]],hostAttrs:[1,"mat-mdc-snack-bar-label","mdc-snackbar__label"]})}return te})(),ce=(()=>{class te{static \u0275fac=function(F){return new(F||te)};static \u0275dir=d.FsC({type:te,selectors:[["","matSnackBarActions",""]],hostAttrs:[1,"mat-mdc-snack-bar-actions","mdc-snackbar__actions"]})}return te})(),be=(()=>{class te{static \u0275fac=function(F){return new(F||te)};static \u0275dir=d.FsC({type:te,selectors:[["","matSnackBarAction",""]],hostAttrs:[1,"mat-mdc-snack-bar-action","mdc-snackbar__action"]})}return te})(),ne=(()=>{class te{snackBarRef=(0,i.WQX)(re);data=(0,i.WQX)(xe);constructor(){}action(){this.snackBarRef.dismissWithAction()}get hasAction(){return!!this.data.action}static \u0275fac=function(F){return new(F||te)};static \u0275cmp=d.VBU({type:te,selectors:[["simple-snack-bar"]],hostAttrs:[1,"mat-mdc-simple-snack-bar"],exportAs:["matSnackBar"],decls:3,vars:2,consts:[["matSnackBarLabel",""],["matSnackBarActions",""],["matButton","","matSnackBarAction","",3,"click"]],template:function(F,ve){1&F&&(d.j41(0,"div",0),d.EFF(1),d.k0s(),d.nVh(2,Ae,3,1,"div",1)),2&F&&(d.R7$(),d.SpI(" ",ve.data.message,"\n"),d.R7$(),d.vxM(ve.hasAction?2:-1))},dependencies:[e.$z,V,ce,be],styles:[".mat-mdc-simple-snack-bar{display:flex}.mat-mdc-simple-snack-bar .mat-mdc-snack-bar-label{max-height:50vh;overflow:auto}\n"],encapsulation:2,changeDetection:0})}return te})();const J="_mat-snack-bar-enter",De="_mat-snack-bar-exit";let Re=(()=>{class te extends L.lb{_ngZone=(0,i.WQX)(d.SKi);_elementRef=(0,i.WQX)(d.aKT);_changeDetectorRef=(0,i.WQX)(v.gRc);_platform=(0,i.WQX)(u.O);_animationsDisabled=(0,C.Rc)();snackBarConfig=(0,i.WQX)(Ee);_document=(0,i.WQX)(i.qQL);_trackedModals=new Set;_enterFallback;_exitFallback;_injector=(0,i.WQX)(i.zZn);_announceDelay=150;_announceTimeoutId;_destroyed=!1;_portalOutlet;_onAnnounce=new T.B;_onExit=new T.B;_onEnter=new T.B;_animationState="void";_live;_label;_role;_liveElementId=(0,i.WQX)(f.g).getId("mat-snack-bar-container-live-");constructor(){super();const P=this.snackBarConfig;this._live="assertive"!==P.politeness||P.announcementMessage?"off"===P.politeness?"off":"polite":"assertive",this._platform.FIREFOX&&("polite"===this._live&&(this._role="status"),"assertive"===this._live&&(this._role="alert"))}attachComponentPortal(P){this._assertNotAttached();const F=this._portalOutlet.attachComponentPortal(P);return this._afterPortalAttached(),F}attachTemplatePortal(P){this._assertNotAttached();const F=this._portalOutlet.attachTemplatePortal(P);return this._afterPortalAttached(),F}attachDomPortal=P=>{this._assertNotAttached();const F=this._portalOutlet.attachDomPortal(P);return this._afterPortalAttached(),F};onAnimationEnd(P){P===De?this._completeExit():P===J&&(clearTimeout(this._enterFallback),this._ngZone.run(()=>{this._onEnter.next(),this._onEnter.complete()}))}enter(){this._destroyed||(this._animationState="visible",this._changeDetectorRef.markForCheck(),this._changeDetectorRef.detectChanges(),this._screenReaderAnnounce(),this._animationsDisabled?(0,d.mal)(()=>{this._ngZone.run(()=>queueMicrotask(()=>this.onAnimationEnd(J)))},{injector:this._injector}):(clearTimeout(this._enterFallback),this._enterFallback=setTimeout(()=>{this._elementRef.nativeElement.classList.add("mat-snack-bar-fallback-visible"),this.onAnimationEnd(J)},200)))}exit(){return this._destroyed?(0,w.of)(void 0):(this._ngZone.run(()=>{this._animationState="hidden",this._changeDetectorRef.markForCheck(),this._elementRef.nativeElement.setAttribute("mat-exit",""),clearTimeout(this._announceTimeoutId),this._animationsDisabled?(0,d.mal)(()=>{this._ngZone.run(()=>queueMicrotask(()=>this.onAnimationEnd(De)))},{injector:this._injector}):(clearTimeout(this._exitFallback),this._exitFallback=setTimeout(()=>this.onAnimationEnd(De),200))}),this._onExit)}ngOnDestroy(){this._destroyed=!0,this._clearFromModals(),this._completeExit()}_completeExit(){clearTimeout(this._exitFallback),queueMicrotask(()=>{this._onExit.next(),this._onExit.complete()})}_afterPortalAttached(){const P=this._elementRef.nativeElement,F=this.snackBarConfig.panelClass;F&&(Array.isArray(F)?F.forEach($=>P.classList.add($)):P.classList.add(F)),this._exposeToModals();const ve=this._label.nativeElement,H="mdc-snackbar__label";ve.classList.toggle(H,!ve.querySelector(`.${H}`))}_exposeToModals(){const P=this._liveElementId,F=this._document.querySelectorAll('body > .cdk-overlay-container [aria-modal="true"]');for(let ve=0;ve{const F=P.getAttribute("aria-owns");if(F){const ve=F.replace(this._liveElementId,"").trim();ve.length>0?P.setAttribute("aria-owns",ve):P.removeAttribute("aria-owns")}}),this._trackedModals.clear()}_assertNotAttached(){this._portalOutlet.hasAttached()}_screenReaderAnnounce(){this._announceTimeoutId||this._ngZone.runOutsideAngular(()=>{this._announceTimeoutId=setTimeout(()=>{if(this._destroyed)return;const P=this._elementRef.nativeElement,F=P.querySelector("[aria-hidden]"),ve=P.querySelector("[aria-live]");if(F&&ve){let H=null;this._platform.isBrowser&&document.activeElement instanceof HTMLElement&&F.contains(document.activeElement)&&(H=document.activeElement),F.removeAttribute("aria-hidden"),ve.appendChild(F),H?.focus(),this._onAnnounce.next(),this._onAnnounce.complete()}},this._announceDelay)})}static \u0275fac=function(F){return new(F||te)};static \u0275cmp=d.VBU({type:te,selectors:[["mat-snack-bar-container"]],viewQuery:function(F,ve){if(1&F&&(d.GBs(L.I3,7),d.GBs(j,7)),2&F){let H;d.mGM(H=d.lsd())&&(ve._portalOutlet=H.first),d.mGM(H=d.lsd())&&(ve._label=H.first)}},hostAttrs:[1,"mdc-snackbar","mat-mdc-snack-bar-container"],hostVars:6,hostBindings:function(F,ve){1&F&&d.bIt("animationend",function($){return ve.onAnimationEnd($.animationName)})("animationcancel",function($){return ve.onAnimationEnd($.animationName)}),2&F&&d.AVh("mat-snack-bar-container-enter","visible"===ve._animationState)("mat-snack-bar-container-exit","hidden"===ve._animationState)("mat-snack-bar-container-animations-enabled",!ve._animationsDisabled)},features:[d.Vt3],decls:6,vars:3,consts:[["label",""],[1,"mdc-snackbar__surface","mat-mdc-snackbar-surface"],[1,"mat-mdc-snack-bar-label"],["aria-hidden","true"],["cdkPortalOutlet",""]],template:function(F,ve){1&F&&(d.j41(0,"div",1)(1,"div",2,0)(3,"div",3),d.DNE(4,W,0,0,"ng-template",4),d.k0s(),d.nrm(5,"div"),d.k0s()()),2&F&&(d.R7$(5),d.BMQ("aria-live",ve._live)("role",ve._role)("id",ve._liveElementId))},dependencies:[L.I3],styles:["@keyframes _mat-snack-bar-enter{from{transform:scale(0.8);opacity:0}to{transform:scale(1);opacity:1}}@keyframes _mat-snack-bar-exit{from{opacity:1}to{opacity:0}}.mat-mdc-snack-bar-container{display:flex;align-items:center;justify-content:center;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:8px}.mat-mdc-snack-bar-handset .mat-mdc-snack-bar-container{width:100vw}.mat-snack-bar-container-animations-enabled{opacity:0}.mat-snack-bar-container-animations-enabled.mat-snack-bar-fallback-visible{opacity:1}.mat-snack-bar-container-animations-enabled.mat-snack-bar-container-enter{animation:_mat-snack-bar-enter 150ms cubic-bezier(0, 0, 0.2, 1) forwards}.mat-snack-bar-container-animations-enabled.mat-snack-bar-container-exit{animation:_mat-snack-bar-exit 75ms cubic-bezier(0.4, 0, 1, 1) forwards}.mat-mdc-snackbar-surface{box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;padding-left:0;padding-right:8px}[dir=rtl] .mat-mdc-snackbar-surface{padding-right:0;padding-left:8px}.mat-mdc-snack-bar-container .mat-mdc-snackbar-surface{min-width:344px;max-width:672px}.mat-mdc-snack-bar-handset .mat-mdc-snackbar-surface{width:100%;min-width:0}@media(forced-colors: active){.mat-mdc-snackbar-surface{outline:solid 1px}}.mat-mdc-snack-bar-container .mat-mdc-snackbar-surface{color:var(--mat-snack-bar-supporting-text-color, var(--mat-sys-inverse-on-surface));border-radius:var(--mat-snack-bar-container-shape, var(--mat-sys-corner-extra-small));background-color:var(--mat-snack-bar-container-color, var(--mat-sys-inverse-surface))}.mdc-snackbar__label{width:100%;flex-grow:1;box-sizing:border-box;margin:0;padding:14px 8px 14px 16px}[dir=rtl] .mdc-snackbar__label{padding-left:8px;padding-right:16px}.mat-mdc-snack-bar-container .mdc-snackbar__label{font-family:var(--mat-snack-bar-supporting-text-font, var(--mat-sys-body-medium-font));font-size:var(--mat-snack-bar-supporting-text-size, var(--mat-sys-body-medium-size));font-weight:var(--mat-snack-bar-supporting-text-weight, var(--mat-sys-body-medium-weight));line-height:var(--mat-snack-bar-supporting-text-line-height, var(--mat-sys-body-medium-line-height))}.mat-mdc-snack-bar-actions{display:flex;flex-shrink:0;align-items:center;box-sizing:border-box}.mat-mdc-snack-bar-handset,.mat-mdc-snack-bar-container,.mat-mdc-snack-bar-label{flex:1 1 auto}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled){--mat-button-text-state-layer-color: currentColor;--mat-button-text-ripple-color: currentColor}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled).mat-unthemed{color:var(--mat-snack-bar-button-color, var(--mat-sys-inverse-primary))}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled) .mat-ripple-element{opacity:.1}\n"],encapsulation:2})}return te})();const _e=new i.nKC("mat-snack-bar-default-options",{providedIn:"root",factory:function Xe(){return new Ee}});let he=(()=>{class te{_live=(0,i.WQX)(O.Ai);_injector=(0,i.WQX)(i.zZn);_breakpointObserver=(0,i.WQX)(A.Q);_parentSnackBar=(0,i.WQX)(te,{optional:!0,skipSelf:!0});_defaultConfig=(0,i.WQX)(_e);_animationsDisabled=(0,C.Rc)();_snackBarRefAtThisLevel=null;simpleSnackBarComponent=ne;snackBarContainerComponent=Re;handsetCssClass="mat-mdc-snack-bar-handset";get _openedSnackBarRef(){const P=this._parentSnackBar;return P?P._openedSnackBarRef:this._snackBarRefAtThisLevel}set _openedSnackBarRef(P){this._parentSnackBar?this._parentSnackBar._openedSnackBarRef=P:this._snackBarRefAtThisLevel=P}constructor(){}openFromComponent(P,F){return this._attach(P,F)}openFromTemplate(P,F){return this._attach(P,F)}open(P,F="",ve){const H={...this._defaultConfig,...ve};return H.data={message:P,action:F},H.announcementMessage===P&&(H.announcementMessage=void 0),this.openFromComponent(this.simpleSnackBarComponent,H)}dismiss(){this._openedSnackBarRef&&this._openedSnackBarRef.dismiss()}ngOnDestroy(){this._snackBarRefAtThisLevel&&this._snackBarRefAtThisLevel.dismiss()}_attachSnackBarContainer(P,F){const H=i.zZn.create({parent:F&&F.viewContainerRef&&F.viewContainerRef.injector||this._injector,providers:[{provide:Ee,useValue:F}]}),$=new L.A8(this.snackBarContainerComponent,F.viewContainerRef,H),Ke=P.attach($);return Ke.instance.snackBarConfig=F,Ke.instance}_attach(P,F){const ve={...new Ee,...this._defaultConfig,...F},H=this._createOverlay(ve),$=this._attachSnackBarContainer(H,ve),Ke=new re($,H);if(P instanceof d.C4Q){const Vt=new L.VA(P,null,{$implicit:ve.data,snackBarRef:Ke});Ke.instance=$.attachTemplatePortal(Vt)}else{const Vt=this._createInjector(ve,Ke),St=new L.A8(P,void 0,Vt),ot=$.attachComponentPortal(St);Ke.instance=ot.instance}return this._breakpointObserver.observe(B.Rp.HandsetPortrait).pipe((0,le.Q)(H.detachments())).subscribe(Vt=>{H.overlayElement.classList.toggle(this.handsetCssClass,Vt.matches)}),ve.announcementMessage&&$._onAnnounce.subscribe(()=>{this._live.announce(ve.announcementMessage,ve.politeness)}),this._animateSnackBar(Ke,ve),this._openedSnackBarRef=Ke,this._openedSnackBarRef}_animateSnackBar(P,F){P.afterDismissed().subscribe(()=>{this._openedSnackBarRef==P&&(this._openedSnackBarRef=null),F.announcementMessage&&this._live.clear()}),F.duration&&F.duration>0&&P.afterOpened().subscribe(()=>P._dismissAfter(F.duration)),this._openedSnackBarRef?(this._openedSnackBarRef.afterDismissed().subscribe(()=>{P.containerInstance.enter()}),this._openedSnackBarRef.dismiss()):P.containerInstance.enter()}_createOverlay(P){const F=new Pe.rR;F.direction=P.direction;const ve=(0,Pe.uA)(this._injector),H="rtl"===P.direction,$="left"===P.horizontalPosition||"start"===P.horizontalPosition&&!H||"end"===P.horizontalPosition&&H,Ke=!$&&"center"!==P.horizontalPosition;return $?ve.left("0"):Ke?ve.right("0"):ve.centerHorizontally(),"top"===P.verticalPosition?ve.top("0"):ve.bottom("0"),F.positionStrategy=ve,F.disableAnimations=this._animationsDisabled,(0,Pe.Y$)(this._injector,F)}_createInjector(P,F){return i.zZn.create({parent:P&&P.viewContainerRef&&P.viewContainerRef.injector||this._injector,providers:[{provide:re,useValue:F},{provide:xe,useValue:P.data}]})}static \u0275fac=function(F){return new(F||te)};static \u0275prov=i.jDH({token:te,factory:te.\u0275fac,providedIn:"root"})}return te})(),lt=(()=>{class te{static \u0275fac=function(F){return new(F||te)};static \u0275mod=d.$C({type:te});static \u0275inj=i.G2t({providers:[he],imports:[Pe.z_,L.jc,e.Hl,Ce.y,ne,Ce.y]})}return te})()},2042(Zt,pe,l){"use strict";l.d(pe,{B4:()=>xe,NQ:()=>J,aE:()=>ne});var i=l(2615),d=l(3664),v=l(7705),T=l(8617),w=l(6838),e=l(438),O=l(1413),f=l(2771),u=l(7786),L=l(8968),C=l(1804),B=l(2046),A=l(2466);const Pe=["mat-sort-header",""],le=["*"];function Ce(Re,Xe){1&Re&&(d.rj2(0,"div",2),i.qSk(),d.rj2(1,"svg",3),d.Hgh(2,"path",4),d.eux()())}const re=new i.nKC("MAT_SORT_DEFAULT_OPTIONS");let xe=(()=>{class Re{_defaultOptions;_initializedStream=new f.m(1);sortables=new Map;_stateChanges=new O.B;active;start="asc";get direction(){return this._direction}set direction(_e){this._direction=_e}_direction="";disableClear;disabled=!1;sortChange=new d.bkB;initialized=this._initializedStream;constructor(_e){this._defaultOptions=_e}register(_e){this.sortables.set(_e.id,_e)}deregister(_e){this.sortables.delete(_e.id)}sort(_e){this.active!=_e.id?(this.active=_e.id,this.direction=_e.start?_e.start:this.start):this.direction=this.getNextSortDirection(_e),this.sortChange.emit({active:this.active,direction:this.direction})}getNextSortDirection(_e){if(!_e)return"";let Dt=function Ee(Re,Xe){let _e=["asc","desc"];return"desc"==Re&&_e.reverse(),Xe||_e.push(""),_e}(_e.start||this.start,_e?.disableClear??this.disableClear??!!this._defaultOptions?.disableClear),lt=Dt.indexOf(this.direction)+1;return lt>=Dt.length&&(lt=0),Dt[lt]}ngOnInit(){this._initializedStream.next()}ngOnChanges(){this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete(),this._initializedStream.complete()}static \u0275fac=function(he){return new(he||Re)(d.rXU(re,8))};static \u0275dir=d.FsC({type:Re,selectors:[["","matSort",""]],hostAttrs:[1,"mat-sort"],inputs:{active:[0,"matSortActive","active"],start:[0,"matSortStart","start"],direction:[0,"matSortDirection","direction"],disableClear:[2,"matSortDisableClear","disableClear",v.L39],disabled:[2,"matSortDisabled","disabled",v.L39]},outputs:{sortChange:"matSortChange"},exportAs:["matSort"],features:[d.OA$]})}return Re})(),V=(()=>{class Re{changes=new O.B;static \u0275fac=function(he){return new(he||Re)};static \u0275prov=i.jDH({token:Re,factory:Re.\u0275fac,providedIn:"root"})}return Re})();const be={provide:V,deps:[[new d.Xx1,new d.kdw,V]],useFactory:function ce(Re){return Re||new V}};let ne=(()=>{class Re{_intl=(0,i.WQX)(V);_sort=(0,i.WQX)(xe,{optional:!0});_columnDef=(0,i.WQX)("MAT_SORT_HEADER_COLUMN_DEF",{optional:!0});_changeDetectorRef=(0,i.WQX)(v.gRc);_focusMonitor=(0,i.WQX)(w.FN);_elementRef=(0,i.WQX)(d.aKT);_ariaDescriber=(0,i.WQX)(T.vr,{optional:!0});_renderChanges;_animationsDisabled=(0,C.Rc)();_recentlyCleared=(0,i.vPA)(null);_sortButton;id;arrowPosition="after";start;disabled=!1;get sortActionDescription(){return this._sortActionDescription}set sortActionDescription(_e){this._updateSortActionDescription(_e)}_sortActionDescription="Sort";disableClear;constructor(){(0,i.WQX)(L.l).load(B.A);const _e=(0,i.WQX)(re,{optional:!0});_e?.arrowPosition&&(this.arrowPosition=_e?.arrowPosition)}ngOnInit(){!this.id&&this._columnDef&&(this.id=this._columnDef.name),this._sort.register(this),this._renderChanges=(0,u.h)(this._sort._stateChanges,this._sort.sortChange).subscribe(()=>this._changeDetectorRef.markForCheck()),this._sortButton=this._elementRef.nativeElement.querySelector(".mat-sort-header-container"),this._updateSortActionDescription(this._sortActionDescription)}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(()=>{Promise.resolve().then(()=>this._recentlyCleared.set(null))})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._sort.deregister(this),this._renderChanges?.unsubscribe(),this._sortButton&&this._ariaDescriber?.removeDescription(this._sortButton,this._sortActionDescription)}_toggleOnInteraction(){if(!this._isDisabled()){const _e=this._isSorted(),he=this._sort.direction;this._sort.sort(this),this._recentlyCleared.set(_e&&!this._isSorted()?he:null)}}_handleKeydown(_e){(_e.keyCode===e.t6||_e.keyCode===e.Fm)&&(_e.preventDefault(),this._toggleOnInteraction())}_isSorted(){return this._sort.active==this.id&&("asc"===this._sort.direction||"desc"===this._sort.direction)}_isDisabled(){return this._sort.disabled||this.disabled}_getAriaSortAttribute(){return this._isSorted()?"asc"==this._sort.direction?"ascending":"descending":"none"}_renderArrow(){return!this._isDisabled()||this._isSorted()}_updateSortActionDescription(_e){this._sortButton&&(this._ariaDescriber?.removeDescription(this._sortButton,this._sortActionDescription),this._ariaDescriber?.describe(this._sortButton,_e)),this._sortActionDescription=_e}static \u0275fac=function(he){return new(he||Re)};static \u0275cmp=d.VBU({type:Re,selectors:[["","mat-sort-header",""]],hostAttrs:[1,"mat-sort-header"],hostVars:3,hostBindings:function(he,Dt){1&he&&d.bIt("click",function(){return Dt._toggleOnInteraction()})("keydown",function(Le){return Dt._handleKeydown(Le)})("mouseleave",function(){return Dt._recentlyCleared.set(null)}),2&he&&(d.BMQ("aria-sort",Dt._getAriaSortAttribute()),d.AVh("mat-sort-header-disabled",Dt._isDisabled()))},inputs:{id:[0,"mat-sort-header","id"],arrowPosition:"arrowPosition",start:"start",disabled:[2,"disabled","disabled",v.L39],sortActionDescription:"sortActionDescription",disableClear:[2,"disableClear","disableClear",v.L39]},exportAs:["matSortHeader"],attrs:Pe,ngContentSelectors:le,decls:4,vars:17,consts:[[1,"mat-sort-header-container","mat-focus-indicator"],[1,"mat-sort-header-content"],[1,"mat-sort-header-arrow"],["viewBox","0 -960 960 960","focusable","false","aria-hidden","true"],["d","M440-240v-368L296-464l-56-56 240-240 240 240-56 56-144-144v368h-80Z"]],template:function(he,Dt){1&he&&(d.NAR(),d.rj2(0,"div",0)(1,"div",1),d.SdG(2),d.eux(),d.nVh(3,Ce,3,0,"div",2),d.eux()),2&he&&(d.AVh("mat-sort-header-sorted",Dt._isSorted())("mat-sort-header-position-before","before"===Dt.arrowPosition)("mat-sort-header-descending","desc"===Dt._sort.direction)("mat-sort-header-ascending","asc"===Dt._sort.direction)("mat-sort-header-recently-cleared-ascending","asc"===Dt._recentlyCleared())("mat-sort-header-recently-cleared-descending","desc"===Dt._recentlyCleared())("mat-sort-header-animations-disabled",Dt._animationsDisabled),d.BMQ("tabindex",Dt._isDisabled()?null:0)("role",Dt._isDisabled()?null:"button"),d.R7$(3),d.vxM(Dt._renderArrow()?3:-1))},styles:[".mat-sort-header{cursor:pointer}.mat-sort-header-disabled{cursor:default}.mat-sort-header-container{display:flex;align-items:center;letter-spacing:normal;outline:0}[mat-sort-header].cdk-keyboard-focused .mat-sort-header-container,[mat-sort-header].cdk-program-focused .mat-sort-header-container{border-bottom:solid 1px currentColor}.mat-sort-header-container::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-sort-header-content{display:flex;align-items:center}.mat-sort-header-position-before{flex-direction:row-reverse}@keyframes _mat-sort-header-recently-cleared-ascending{from{transform:translateY(0);opacity:1}to{transform:translateY(-25%);opacity:0}}@keyframes _mat-sort-header-recently-cleared-descending{from{transform:translateY(0) rotate(180deg);opacity:1}to{transform:translateY(25%) rotate(180deg);opacity:0}}.mat-sort-header-arrow{height:12px;width:12px;position:relative;transition:transform 225ms cubic-bezier(0.4, 0, 0.2, 1),opacity 225ms cubic-bezier(0.4, 0, 0.2, 1);opacity:0;overflow:visible;color:var(--mat-sort-arrow-color, var(--mat-sys-on-surface))}.mat-sort-header.cdk-keyboard-focused .mat-sort-header-arrow,.mat-sort-header.cdk-program-focused .mat-sort-header-arrow,.mat-sort-header:hover .mat-sort-header-arrow{opacity:.54}.mat-sort-header .mat-sort-header-sorted .mat-sort-header-arrow{opacity:1}.mat-sort-header-descending .mat-sort-header-arrow{transform:rotate(180deg)}.mat-sort-header-recently-cleared-ascending .mat-sort-header-arrow{transform:translateY(-25%)}.mat-sort-header-recently-cleared-ascending .mat-sort-header-arrow{transition:none;animation:_mat-sort-header-recently-cleared-ascending 225ms cubic-bezier(0.4, 0, 0.2, 1) forwards}.mat-sort-header-recently-cleared-descending .mat-sort-header-arrow{transition:none;animation:_mat-sort-header-recently-cleared-descending 225ms cubic-bezier(0.4, 0, 0.2, 1) forwards}.mat-sort-header-animations-disabled .mat-sort-header-arrow{transition-duration:0ms;animation-duration:0ms}.mat-sort-header-arrow svg{width:24px;height:24px;fill:currentColor;position:absolute;top:50%;left:50%;margin:-12px 0 0 -12px;transform:translateZ(0)}.mat-sort-header-arrow,[dir=rtl] .mat-sort-header-position-before .mat-sort-header-arrow{margin:0 0 0 6px}.mat-sort-header-position-before .mat-sort-header-arrow,[dir=rtl] .mat-sort-header-arrow{margin:0 6px 0 0}\n"],encapsulation:2,changeDetection:0})}return Re})(),J=(()=>{class Re{static \u0275fac=function(he){return new(he||Re)};static \u0275mod=d.$C({type:Re});static \u0275inj=i.G2t({providers:[be],imports:[A.y]})}return Re})()},6013(Zt,pe,l){"use strict";l.d(pe,{F7:()=>cn,FR:()=>Ft,M6:()=>rt,Ti:()=>nt,V5:()=>Gt,aP:()=>Sn,xJ:()=>Qe});var i=l(6939),d=l(7768),v=l(2615),T=l(3664),w=l(7705),e=l(6838),O=l(1413),f=l(8359),u=l(2200),L=l(9046),C=l(8968),B=l(2629),A=l(2046),Pe=l(2496),le=l(9842),Ce=l(6354),Ae=l(9172),j=l(5558),W=l(6977),G=l(2709),re=l(1804),xe=l(2466),Ee=l(6881);const V=(h,jt,Ue)=>({index:h,active:jt,optional:Ue});function ce(h,jt){if(1&h&&T.eu8(0,2),2&h){const Ue=T.XpG();T.Y8G("ngTemplateOutlet",Ue.iconOverrides[Ue.state])("ngTemplateOutletContext",T.sMw(2,V,Ue.index,Ue.active,Ue.optional))}}function be(h,jt){if(1&h&&(T.j41(0,"span",7),T.EFF(1),T.k0s()),2&h){const Ue=T.XpG(2);T.R7$(),T.JRh(Ue._getDefaultTextForState(Ue.state))}}function ne(h,jt){if(1&h&&(T.j41(0,"span",8),T.EFF(1),T.k0s()),2&h){const Ue=T.XpG(3);T.R7$(),T.JRh(Ue._intl.completedLabel)}}function J(h,jt){if(1&h&&(T.j41(0,"span",8),T.EFF(1),T.k0s()),2&h){const Ue=T.XpG(3);T.R7$(),T.JRh(Ue._intl.editableLabel)}}function De(h,jt){if(1&h&&(T.nVh(0,ne,2,1,"span",8)(1,J,2,1,"span",8),T.j41(2,"mat-icon",7),T.EFF(3),T.k0s()),2&h){const Ue=T.XpG(2);T.vxM("done"===Ue.state?0:"edit"===Ue.state?1:-1),T.R7$(3),T.JRh(Ue._getDefaultTextForState(Ue.state))}}function Re(h,jt){if(1&h&&T.nVh(0,be,2,1,"span",7)(1,De,4,2),2&h){let Ue;const wt=T.XpG();T.vxM("number"===(Ue=wt.state)?0:1)}}function Xe(h,jt){1&h&&(T.j41(0,"div",4),T.eu8(1,9),T.k0s()),2&h&&(T.R7$(),T.Y8G("ngTemplateOutlet",jt.template))}function _e(h,jt){if(1&h&&(T.j41(0,"div",4),T.EFF(1),T.k0s()),2&h){const Ue=T.XpG();T.R7$(),T.JRh(Ue.label)}}function he(h,jt){if(1&h&&(T.j41(0,"div",5),T.EFF(1),T.k0s()),2&h){const Ue=T.XpG();T.R7$(),T.JRh(Ue._intl.optionalLabel)}}function Dt(h,jt){if(1&h&&(T.j41(0,"div",6),T.EFF(1),T.k0s()),2&h){const Ue=T.XpG();T.R7$(),T.JRh(Ue.errorMessage)}}const lt=["*"];function Le(h,jt){}function te(h,jt){if(1&h&&(T.SdG(0),T.DNE(1,Le,0,0,"ng-template",0)),2&h){const Ue=T.XpG();T.R7$(),T.Y8G("cdkPortalOutlet",Ue._portal)}}const ie=["animatedContainer"],P=h=>({step:h});function F(h,jt){1&h&&T.SdG(0)}function ve(h,jt){1&h&&T.nrm(0,"div",7)}function H(h,jt){if(1&h&&(T.eu8(0,6),T.nVh(1,ve,1,0,"div",7)),2&h){const Ue=jt.$implicit,wt=jt.$index,pt=jt.$count;T.XpG(2);const Pt=T.sdS(4);T.Y8G("ngTemplateOutlet",Pt)("ngTemplateOutletContext",T.eq3(3,P,Ue)),T.R7$(),T.vxM(wt!==pt-1?1:-1)}}function $(h,jt){if(1&h&&(T.j41(0,"div",8,1),T.eu8(2,9),T.k0s()),2&h){const Ue=jt.$implicit,wt=jt.$index,pt=T.XpG(2);T.HbH("mat-horizontal-stepper-content-"+pt._getAnimationDirection(wt)),T.Y8G("id",pt._getStepContentId(wt)),T.BMQ("aria-labelledby",pt._getStepLabelId(wt))("inert",pt.selectedIndex===wt?null:""),T.R7$(2),T.Y8G("ngTemplateOutlet",Ue.content)}}function Ke(h,jt){if(1&h&&(T.j41(0,"div",2)(1,"div",3),T.Z7z(2,H,2,5,null,null,T.fX1),T.k0s(),T.j41(4,"div",4),T.Z7z(5,$,3,6,"div",5,T.fX1),T.k0s()()),2&h){const Ue=T.XpG();T.R7$(2),T.Dyx(Ue.steps),T.R7$(3),T.Dyx(Ue.steps)}}function Vt(h,jt){if(1&h&&(T.j41(0,"div",10),T.eu8(1,6),T.j41(2,"div",11,1)(4,"div",12)(5,"div",13),T.eu8(6,9),T.k0s()()()()),2&h){const Ue=jt.$implicit,wt=jt.$index,pt=jt.$index,Pt=jt.$count,gn=T.XpG(2),ei=T.sdS(4);T.R7$(),T.Y8G("ngTemplateOutlet",ei)("ngTemplateOutletContext",T.eq3(10,P,Ue)),T.R7$(),T.AVh("mat-stepper-vertical-line",pt!==Pt-1)("mat-vertical-content-container-active",gn.selectedIndex===wt),T.BMQ("inert",gn.selectedIndex===wt?null:""),T.R7$(2),T.Y8G("id",gn._getStepContentId(wt)),T.BMQ("aria-labelledby",gn._getStepLabelId(wt)),T.R7$(2),T.Y8G("ngTemplateOutlet",Ue.content)}}function St(h,jt){if(1&h&&T.Z7z(0,Vt,7,12,"div",10,T.fX1),2&h){const Ue=T.XpG();T.Dyx(Ue.steps)}}function ot(h,jt){if(1&h){const Ue=T.RV6();T.j41(0,"mat-step-header",14),T.bIt("click",function(){const pt=v.eBV(Ue).step;return v.Njj(pt.select())})("keydown",function(pt){v.eBV(Ue);const Pt=T.XpG();return v.Njj(Pt._onKeydown(pt))}),T.k0s()}if(2&h){const Ue=jt.step,wt=T.XpG();T.AVh("mat-horizontal-stepper-header","horizontal"===wt.orientation)("mat-vertical-stepper-header","vertical"===wt.orientation),T.Y8G("tabIndex",wt._getFocusIndex()===Ue.index()?0:-1)("id",wt._getStepLabelId(Ue.index()))("index",Ue.index())("state",Ue.indicatorType())("label",Ue.stepLabel||Ue.label)("selected",Ue.isSelected())("active",Ue.isNavigable())("optional",Ue.optional)("errorMessage",Ue.errorMessage)("iconOverrides",wt._iconOverrides)("disableRipple",wt.disableRipple||!Ue.isNavigable())("color",Ue.color||wt.color),T.BMQ("aria-posinset",Ue.index()+1)("aria-setsize",wt.steps.length)("aria-controls",wt._getStepContentId(Ue.index()))("aria-selected",Ue.isSelected())("aria-label",Ue.ariaLabel||null)("aria-labelledby",!Ue.ariaLabel&&Ue.ariaLabelledby?Ue.ariaLabelledby:null)("aria-disabled",!Ue.isNavigable()||null)}}let nt=(()=>{class h extends d.nb{static \u0275fac=(()=>{let Ue;return function(pt){return(Ue||(Ue=T.xGo(h)))(pt||h)}})();static \u0275dir=T.FsC({type:h,selectors:[["","matStepLabel",""]],features:[T.Vt3]})}return h})(),ht=(()=>{class h{changes=new O.B;optionalLabel="Optional";completedLabel="Completed";editableLabel="Editable";static \u0275fac=function(wt){return new(wt||h)};static \u0275prov=v.jDH({token:h,factory:h.\u0275fac,providedIn:"root"})}return h})();const Ye={provide:ht,deps:[[new T.Xx1,new T.kdw,ht]],useFactory:function oe(h){return h||new ht}};let fe=(()=>{class h extends d.oX{_intl=(0,v.WQX)(ht);_focusMonitor=(0,v.WQX)(e.FN);_intlSubscription;state;label;errorMessage;iconOverrides;index;selected;active;optional;disableRipple;color;constructor(){super();const Ue=(0,v.WQX)(C.l);Ue.load(A.A),Ue.load(L.Y);const wt=(0,v.WQX)(w.gRc);this._intlSubscription=this._intl.changes.subscribe(()=>wt.markForCheck())}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._intlSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._elementRef)}focus(Ue,wt){Ue?this._focusMonitor.focusVia(this._elementRef,Ue,wt):this._elementRef.nativeElement.focus(wt)}_stringLabel(){return this.label instanceof nt?null:this.label}_templateLabel(){return this.label instanceof nt?this.label:null}_getHostElement(){return this._elementRef.nativeElement}_getDefaultTextForState(Ue){return"number"==Ue?`${this.index+1}`:"edit"==Ue?"create":"error"==Ue?"warning":Ue}_hasEmptyLabel(){return!(this._stringLabel()||this._templateLabel()||this._hasOptionalLabel()||this._hasErrorLabel())}_hasOptionalLabel(){return this.optional&&"error"!==this.state}_hasErrorLabel(){return"error"===this.state}static \u0275fac=function(wt){return new(wt||h)};static \u0275cmp=T.VBU({type:h,selectors:[["mat-step-header"]],hostAttrs:["role","tab",1,"mat-step-header"],hostVars:4,hostBindings:function(wt,pt){2&wt&&(T.HbH("mat-"+(pt.color||"primary")),T.AVh("mat-step-header-empty-label",pt._hasEmptyLabel()))},inputs:{state:"state",label:"label",errorMessage:"errorMessage",iconOverrides:"iconOverrides",index:"index",selected:"selected",active:"active",optional:"optional",disableRipple:"disableRipple",color:"color"},features:[T.Vt3],decls:10,vars:17,consts:[["matRipple","",1,"mat-step-header-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled"],[1,"mat-step-icon-content"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[1,"mat-step-label"],[1,"mat-step-text-label"],[1,"mat-step-optional"],[1,"mat-step-sub-label-error"],["aria-hidden","true"],[1,"cdk-visually-hidden"],[3,"ngTemplateOutlet"]],template:function(wt,pt){if(1&wt&&(T.nrm(0,"div",0),T.j41(1,"div")(2,"div",1),T.nVh(3,ce,1,6,"ng-container",2)(4,Re,2,1),T.k0s()(),T.j41(5,"div",3),T.nVh(6,Xe,2,1,"div",4)(7,_e,2,1,"div",4),T.nVh(8,he,2,1,"div",5),T.nVh(9,Dt,2,1,"div",6),T.k0s()),2&wt){let Pt;T.Y8G("matRippleTrigger",pt._getHostElement())("matRippleDisabled",pt.disableRipple),T.R7$(),T.HbH(T.VkB("mat-step-icon-state-",pt.state," mat-step-icon")),T.AVh("mat-step-icon-selected",pt.selected),T.R7$(2),T.vxM(pt.iconOverrides&&pt.iconOverrides[pt.state]?3:4),T.R7$(2),T.AVh("mat-step-label-active",pt.active)("mat-step-label-selected",pt.selected)("mat-step-label-error","error"==pt.state),T.R7$(),T.vxM((Pt=pt._templateLabel())?6:pt._stringLabel()?7:-1,Pt),T.R7$(2),T.vxM(pt._hasOptionalLabel()?8:-1),T.R7$(),T.vxM(pt._hasErrorLabel()?9:-1)}},dependencies:[Pe.r6,u.T3,B.An],styles:['.mat-step-header{overflow:hidden;outline:none;cursor:pointer;position:relative;box-sizing:content-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-step-header:focus .mat-focus-indicator::before{content:""}.mat-step-header:hover[aria-disabled=true]{cursor:default}.mat-step-header:hover:not([aria-disabled]),.mat-step-header:hover[aria-disabled=false]{background-color:var(--mat-stepper-header-hover-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent));border-radius:var(--mat-stepper-header-hover-state-layer-shape, var(--mat-sys-corner-medium))}.mat-step-header.cdk-keyboard-focused,.mat-step-header.cdk-program-focused{background-color:var(--mat-stepper-header-focus-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-focus-state-layer-opacity) * 100%), transparent));border-radius:var(--mat-stepper-header-focus-state-layer-shape, var(--mat-sys-corner-medium))}@media(hover: none){.mat-step-header:hover{background:none}}@media(forced-colors: active){.mat-step-header{outline:solid 1px}.mat-step-header[aria-selected=true] .mat-step-label{text-decoration:underline}.mat-step-header[aria-disabled=true]{outline-color:GrayText}.mat-step-header[aria-disabled=true] .mat-step-label,.mat-step-header[aria-disabled=true] .mat-step-icon,.mat-step-header[aria-disabled=true] .mat-step-optional{color:GrayText}}.mat-step-optional{font-size:12px;color:var(--mat-stepper-header-optional-label-text-color, var(--mat-sys-on-surface-variant))}.mat-step-sub-label-error{font-size:12px;font-weight:normal}.mat-step-icon{border-radius:50%;height:24px;width:24px;flex-shrink:0;position:relative;color:var(--mat-stepper-header-icon-foreground-color, var(--mat-sys-surface));background-color:var(--mat-stepper-header-icon-background-color, var(--mat-sys-on-surface-variant))}.mat-step-icon-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);display:flex}.mat-step-icon .mat-icon{font-size:16px;height:16px;width:16px}.mat-step-icon-state-error{background-color:var(--mat-stepper-header-error-state-icon-background-color, transparent);color:var(--mat-stepper-header-error-state-icon-foreground-color, var(--mat-sys-error))}.mat-step-icon-state-error .mat-icon{font-size:24px;height:24px;width:24px}.mat-step-label{display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-width:50px;vertical-align:middle;font-family:var(--mat-stepper-header-label-text-font, var(--mat-sys-title-small-font));font-size:var(--mat-stepper-header-label-text-size, var(--mat-sys-title-small-size));font-weight:var(--mat-stepper-header-label-text-weight, var(--mat-sys-title-small-weight));color:var(--mat-stepper-header-label-text-color, var(--mat-sys-on-surface-variant))}.mat-step-label.mat-step-label-active{color:var(--mat-stepper-header-selected-state-label-text-color, var(--mat-sys-on-surface-variant))}.mat-step-label.mat-step-label-error{color:var(--mat-stepper-header-error-state-label-text-color, var(--mat-sys-error));font-size:var(--mat-stepper-header-error-state-label-text-size, var(--mat-sys-title-small-size))}.mat-step-label.mat-step-label-selected{font-size:var(--mat-stepper-header-selected-state-label-text-size, var(--mat-sys-title-small-size));font-weight:var(--mat-stepper-header-selected-state-label-text-weight, var(--mat-sys-title-small-weight))}.mat-step-header-empty-label .mat-step-label{min-width:0}.mat-step-text-label{text-overflow:ellipsis;overflow:hidden}.mat-step-header .mat-step-header-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-step-icon-selected{background-color:var(--mat-stepper-header-selected-state-icon-background-color, var(--mat-sys-primary));color:var(--mat-stepper-header-selected-state-icon-foreground-color, var(--mat-sys-on-primary))}.mat-step-icon-state-done{background-color:var(--mat-stepper-header-done-state-icon-background-color, var(--mat-sys-primary));color:var(--mat-stepper-header-done-state-icon-foreground-color, var(--mat-sys-on-primary))}.mat-step-icon-state-edit{background-color:var(--mat-stepper-header-edit-state-icon-background-color, var(--mat-sys-primary));color:var(--mat-stepper-header-edit-state-icon-foreground-color, var(--mat-sys-on-primary))}\n'],encapsulation:2,changeDetection:0})}return h})(),Qe=(()=>{class h{templateRef=(0,v.WQX)(T.C4Q);name;constructor(){}static \u0275fac=function(wt){return new(wt||h)};static \u0275dir=T.FsC({type:h,selectors:[["ng-template","matStepperIcon",""]],inputs:{name:[0,"matStepperIcon","name"]}})}return h})(),gt=(()=>{class h{_template=(0,v.WQX)(T.C4Q);constructor(){}static \u0275fac=function(wt){return new(wt||h)};static \u0275dir=T.FsC({type:h,selectors:[["ng-template","matStepContent",""]]})}return h})(),Gt=(()=>{class h extends d.VI{_errorStateMatcher=(0,v.WQX)(G.e,{skipSelf:!0});_viewContainerRef=(0,v.WQX)(T.c1b);_isSelected=f.yU.EMPTY;stepLabel=void 0;color;_lazyContent;_portal;ngAfterContentInit(){this._isSelected=this._stepper.steps.changes.pipe((0,j.n)(()=>this._stepper.selectionChange.pipe((0,Ce.T)(Ue=>Ue.selectedStep===this),(0,Ae.Z)(this._stepper.selected===this)))).subscribe(Ue=>{Ue&&this._lazyContent&&!this._portal&&(this._portal=new i.VA(this._lazyContent._template,this._viewContainerRef))})}ngOnDestroy(){this._isSelected.unsubscribe()}isErrorState(Ue,wt){return this._errorStateMatcher.isErrorState(Ue,wt)||!!(Ue&&Ue.invalid&&this.interacted)}static \u0275fac=(()=>{let Ue;return function(pt){return(Ue||(Ue=T.xGo(h)))(pt||h)}})();static \u0275cmp=T.VBU({type:h,selectors:[["mat-step"]],contentQueries:function(wt,pt,Pt){if(1&wt&&(T.wni(Pt,nt,5),T.wni(Pt,gt,5)),2&wt){let gn;T.mGM(gn=T.lsd())&&(pt.stepLabel=gn.first),T.mGM(gn=T.lsd())&&(pt._lazyContent=gn.first)}},hostAttrs:["hidden",""],inputs:{color:"color"},exportAs:["matStep"],features:[T.Jv_([{provide:G.e,useExisting:h},{provide:d.VI,useExisting:h}]),T.Vt3],ngContentSelectors:lt,decls:1,vars:0,consts:[[3,"cdkPortalOutlet"]],template:function(wt,pt){1&wt&&(T.NAR(),T.DNE(0,te,2,1,"ng-template"))},dependencies:[i.I3],encapsulation:2,changeDetection:0})}return h})(),rt=(()=>{class h extends d.Up{_ngZone=(0,v.WQX)(T.SKi);_renderer=(0,v.WQX)(T.sFG);_animationsDisabled=(0,re.Rc)();_cleanupTransition;_isAnimating=(0,v.vPA)(!1);_stepHeader=void 0;_animatedContainers;_steps=void 0;steps=new T.rOR;_icons;animationDone=new T.bkB;disableRipple;color;labelPosition="end";headerPosition="top";_iconOverrides={};get animationDuration(){return this._animationDuration}set animationDuration(Ue){this._animationDuration=/^\d+$/.test(Ue)?Ue+"ms":Ue}_animationDuration="";_isServer=!(0,v.WQX)(le.O).isBrowser;constructor(){super();const wt=(0,v.WQX)(T.aKT).nativeElement.nodeName.toLowerCase();this.orientation="mat-vertical-stepper"===wt?"vertical":"horizontal"}ngAfterContentInit(){super.ngAfterContentInit(),this._icons.forEach(({name:Ue,templateRef:wt})=>this._iconOverrides[Ue]=wt),this.steps.changes.pipe((0,W.Q)(this._destroyed)).subscribe(()=>this._stateChanged()),this.selectedIndexChange.pipe((0,W.Q)(this._destroyed)).subscribe(()=>{const Ue=this._getAnimationDuration();"0ms"===Ue||"0s"===Ue?this._onAnimationDone():this._isAnimating.set(!0)}),this._ngZone.runOutsideAngular(()=>{this._animationsDisabled||setTimeout(()=>{this._elementRef.nativeElement.classList.add("mat-stepper-animations-enabled"),this._cleanupTransition=this._renderer.listen(this._elementRef.nativeElement,"transitionend",this._handleTransitionend)},200)})}ngAfterViewInit(){if(super.ngAfterViewInit(),"function"==typeof queueMicrotask){let Ue=!1;this._animatedContainers.changes.pipe((0,Ae.Z)(null),(0,W.Q)(this._destroyed)).subscribe(()=>queueMicrotask(()=>{Ue||(Ue=!0,this.animationDone.emit()),this._stateChanged()}))}}ngOnDestroy(){super.ngOnDestroy(),this._cleanupTransition?.()}_getAnimationDuration(){return this._animationsDisabled?"0ms":this.animationDuration?this.animationDuration:"horizontal"===this.orientation?"500ms":"225ms"}_handleTransitionend=Ue=>{const wt=Ue.target;if(!wt)return;const pt="horizontal"===this.orientation&&"transform"===Ue.propertyName&&wt.classList.contains("mat-horizontal-stepper-content-current"),Pt="vertical"===this.orientation&&"grid-template-rows"===Ue.propertyName&&wt.classList.contains("mat-vertical-content-container-active");(pt||Pt)&&this._animatedContainers.find(ei=>ei.nativeElement===wt)&&this._onAnimationDone()};_onAnimationDone(){this._isAnimating.set(!1),this.animationDone.emit()}static \u0275fac=function(wt){return new(wt||h)};static \u0275cmp=T.VBU({type:h,selectors:[["mat-stepper"],["mat-vertical-stepper"],["mat-horizontal-stepper"],["","matStepper",""]],contentQueries:function(wt,pt,Pt){if(1&wt&&(T.wni(Pt,Gt,5),T.wni(Pt,Qe,5)),2&wt){let gn;T.mGM(gn=T.lsd())&&(pt._steps=gn),T.mGM(gn=T.lsd())&&(pt._icons=gn)}},viewQuery:function(wt,pt){if(1&wt&&(T.GBs(fe,5),T.GBs(ie,5)),2&wt){let Pt;T.mGM(Pt=T.lsd())&&(pt._stepHeader=Pt),T.mGM(Pt=T.lsd())&&(pt._animatedContainers=Pt)}},hostAttrs:["role","tablist"],hostVars:15,hostBindings:function(wt,pt){2&wt&&(T.BMQ("aria-orientation",pt.orientation),T.xc7("--mat-stepper-animation-duration",pt._getAnimationDuration()),T.AVh("mat-stepper-horizontal","horizontal"===pt.orientation)("mat-stepper-vertical","vertical"===pt.orientation)("mat-stepper-label-position-end","horizontal"===pt.orientation&&"end"==pt.labelPosition)("mat-stepper-label-position-bottom","horizontal"===pt.orientation&&"bottom"==pt.labelPosition)("mat-stepper-header-position-bottom","bottom"===pt.headerPosition)("mat-stepper-animating",pt._isAnimating()))},inputs:{disableRipple:"disableRipple",color:"color",labelPosition:"labelPosition",headerPosition:"headerPosition",animationDuration:"animationDuration"},outputs:{animationDone:"animationDone"},exportAs:["matStepper","matVerticalStepper","matHorizontalStepper"],features:[T.Jv_([{provide:d.Up,useExisting:h}]),T.Vt3],ngContentSelectors:lt,decls:5,vars:2,consts:[["stepTemplate",""],["animatedContainer",""],[1,"mat-horizontal-stepper-wrapper"],[1,"mat-horizontal-stepper-header-container"],[1,"mat-horizontal-content-container"],["role","tabpanel",1,"mat-horizontal-stepper-content",3,"id","class"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[1,"mat-stepper-horizontal-line"],["role","tabpanel",1,"mat-horizontal-stepper-content",3,"id"],[3,"ngTemplateOutlet"],[1,"mat-step"],[1,"mat-vertical-content-container"],["role","tabpanel",1,"mat-vertical-stepper-content",3,"id"],[1,"mat-vertical-content"],[3,"click","keydown","tabIndex","id","index","state","label","selected","active","optional","errorMessage","iconOverrides","disableRipple","color"]],template:function(wt,pt){if(1&wt&&(T.NAR(),T.nVh(0,F,1,0),T.nVh(1,Ke,7,0,"div",2)(2,St,2,0),T.DNE(3,ot,1,23,"ng-template",null,0,T.C5r)),2&wt){let Pt;T.vxM(pt._isServer?0:-1),T.R7$(),T.vxM("horizontal"===(Pt=pt.orientation)?1:"vertical"===Pt?2:-1)}},dependencies:[u.T3,fe],styles:['.mat-stepper-vertical,.mat-stepper-horizontal{display:block;font-family:var(--mat-stepper-container-text-font, var(--mat-sys-body-medium-font));background:var(--mat-stepper-container-color, var(--mat-sys-surface))}.mat-horizontal-stepper-header-container{white-space:nowrap;display:flex;align-items:center}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header-container{align-items:flex-start}.mat-stepper-header-position-bottom .mat-horizontal-stepper-header-container{order:1}.mat-stepper-horizontal-line{border-top-width:1px;border-top-style:solid;flex:auto;height:0;margin:0 -16px;min-width:32px;border-top-color:var(--mat-stepper-line-color, var(--mat-sys-outline))}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{margin:0;min-width:0;position:relative;top:calc(calc((var(--mat-stepper-header-height, 72px) - 24px) / 2) + 12px)}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::before,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::after,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::after{border-top-width:1px;border-top-style:solid;content:"";display:inline-block;height:0;position:absolute;width:calc(50% - 20px)}.mat-horizontal-stepper-header{display:flex;overflow:hidden;align-items:center;padding:0 24px;height:var(--mat-stepper-header-height, 72px)}.mat-horizontal-stepper-header .mat-step-icon{margin-right:8px;flex:none}[dir=rtl] .mat-horizontal-stepper-header .mat-step-icon{margin-right:0;margin-left:8px}.mat-horizontal-stepper-header.mat-step-header-empty-label .mat-step-icon{margin:0}.mat-horizontal-stepper-header::before,.mat-horizontal-stepper-header::after{border-top-color:var(--mat-stepper-line-color, var(--mat-sys-outline))}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header{padding:calc((var(--mat-stepper-header-height, 72px) - 24px) / 2) 24px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::before,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::after{top:calc(calc((var(--mat-stepper-header-height, 72px) - 24px) / 2) + 12px)}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header{box-sizing:border-box;flex-direction:column;height:auto}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::after,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::after{right:0}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::before{left:0}[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:last-child::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:first-child::after{display:none}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header .mat-step-icon{margin-right:0;margin-left:0}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header .mat-step-label{padding:16px 0 0 0;text-align:center;width:100%}.mat-vertical-stepper-header{display:flex;align-items:center;height:24px;padding:calc((var(--mat-stepper-header-height, 72px) - 24px) / 2) 24px}.mat-vertical-stepper-header .mat-step-icon{margin-right:12px}[dir=rtl] .mat-vertical-stepper-header .mat-step-icon{margin-right:0;margin-left:12px}.mat-horizontal-stepper-wrapper{display:flex;flex-direction:column}.mat-horizontal-stepper-content{visibility:hidden;overflow:hidden;outline:0;height:0}.mat-stepper-animations-enabled .mat-horizontal-stepper-content{transition:transform var(--mat-stepper-animation-duration, 0) cubic-bezier(0.35, 0, 0.25, 1)}.mat-horizontal-stepper-content.mat-horizontal-stepper-content-previous{transform:translate3d(-100%, 0, 0)}.mat-horizontal-stepper-content.mat-horizontal-stepper-content-next{transform:translate3d(100%, 0, 0)}.mat-horizontal-stepper-content.mat-horizontal-stepper-content-current{visibility:visible;transform:none;height:auto}.mat-stepper-horizontal:not(.mat-stepper-animating) .mat-horizontal-stepper-content.mat-horizontal-stepper-content-current{overflow:visible}.mat-horizontal-content-container{overflow:hidden;padding:0 24px 24px 24px}@media(forced-colors: active){.mat-horizontal-content-container{outline:solid 1px}}.mat-stepper-header-position-bottom .mat-horizontal-content-container{padding:24px 24px 0 24px}.mat-vertical-content-container{display:grid;grid-template-rows:0fr;grid-template-columns:100%;margin-left:36px;border:0;position:relative}.mat-stepper-animations-enabled .mat-vertical-content-container{transition:grid-template-rows var(--mat-stepper-animation-duration, 0) cubic-bezier(0.4, 0, 0.2, 1)}.mat-vertical-content-container.mat-vertical-content-container-active{grid-template-rows:1fr}.mat-step:last-child .mat-vertical-content-container{border:none}@media(forced-colors: active){.mat-vertical-content-container{outline:solid 1px}}[dir=rtl] .mat-vertical-content-container{margin-left:0;margin-right:36px}@supports not (grid-template-rows: 0fr){.mat-vertical-content-container{height:0}.mat-vertical-content-container.mat-vertical-content-container-active{height:auto}}.mat-stepper-vertical-line::before{content:"";position:absolute;left:0;border-left-width:1px;border-left-style:solid;border-left-color:var(--mat-stepper-line-color, var(--mat-sys-outline));top:calc(8px - calc((var(--mat-stepper-header-height, 72px) - 24px) / 2));bottom:calc(8px - calc((var(--mat-stepper-header-height, 72px) - 24px) / 2))}[dir=rtl] .mat-stepper-vertical-line::before{left:auto;right:0}.mat-vertical-stepper-content{overflow:hidden;outline:0;visibility:hidden}.mat-stepper-animations-enabled .mat-vertical-stepper-content{transition:visibility var(--mat-stepper-animation-duration, 0) linear}.mat-vertical-content-container-active>.mat-vertical-stepper-content{visibility:visible}.mat-vertical-content{padding:0 24px 24px 24px}\n'],encapsulation:2,changeDetection:0})}return h})(),cn=(()=>{class h extends d.v5{static \u0275fac=(()=>{let Ue;return function(pt){return(Ue||(Ue=T.xGo(h)))(pt||h)}})();static \u0275dir=T.FsC({type:h,selectors:[["button","matStepperNext",""]],hostAttrs:[1,"mat-stepper-next"],hostVars:1,hostBindings:function(wt,pt){2&wt&&T.Avn("type",pt.type)},features:[T.Vt3]})}return h})(),Ft=(()=>{class h extends d.FK{static \u0275fac=(()=>{let Ue;return function(pt){return(Ue||(Ue=T.xGo(h)))(pt||h)}})();static \u0275dir=T.FsC({type:h,selectors:[["button","matStepperPrevious",""]],hostAttrs:[1,"mat-stepper-previous"],hostVars:1,hostBindings:function(wt,pt){2&wt&&T.Avn("type",pt.type)},features:[T.Vt3]})}return h})(),Sn=(()=>{class h{static \u0275fac=function(wt){return new(wt||h)};static \u0275mod=T.$C({type:h});static \u0275inj=v.G2t({providers:[Ye,G.e],imports:[xe.y,i.jc,d.uY,B.m_,Ee.p,rt,fe,xe.y]})}return h})()},2046(Zt,pe,l){"use strict";l.d(pe,{A:()=>d});var i=l(3664);let d=(()=>{class v{static \u0275fac=function(e){return new(e||v)};static \u0275cmp=i.VBU({type:v,selectors:[["structural-styles"]],decls:0,vars:0,template:function(e,O){},styles:['.mat-focus-indicator{position:relative}.mat-focus-indicator::before{top:0;left:0;right:0;bottom:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-focus-indicator-display, none);border-width:var(--mat-focus-indicator-border-width, 3px);border-style:var(--mat-focus-indicator-border-style, solid);border-color:var(--mat-focus-indicator-border-color, transparent);border-radius:var(--mat-focus-indicator-border-radius, 4px)}.mat-focus-indicator:focus::before{content:""}@media(forced-colors: active){html{--mat-focus-indicator-display: block}}\n'],encapsulation:2,changeDetection:0})}return v})()},1676(Zt,pe,l){"use strict";l.d(pe,{$R:()=>Ge,YV:()=>at,cC:()=>Je,Qo:()=>ut,Zq:()=>pn,iF:()=>on,xW:()=>We,KS:()=>Be,tL:()=>qe,YZ:()=>tn,ji:()=>se,NB:()=>un,iL:()=>bt,Zl:()=>Me,I6:()=>Yi,tP:()=>Jn});var i=l(3664),d=l(2615),v=l(7705),T=l(4117),w=l(1413),e=l(4412),O=l(4402),f=l(7673),u=l(6977),C=function(Tt){return Tt[Tt.REPLACED=0]="REPLACED",Tt[Tt.INSERTED=1]="INSERTED",Tt[Tt.MOVED=2]="MOVED",Tt[Tt.REMOVED=3]="REMOVED",Tt}(C||{});const B=new d.nKC("_ViewRepeater");class Pe{applyChanges(At,we,ae,Lt,Ht){At.forEachOperation((_n,fi,bi)=>{let Qi,zi;if(null==_n.previousIndex){const It=ae(_n,fi,bi);Qi=we.createEmbeddedView(It.templateRef,It.context,It.index),zi=C.INSERTED}else null==bi?(we.remove(fi),zi=C.REMOVED):(Qi=we.get(fi),we.move(Qi,bi),zi=C.MOVED);Ht&&Ht({context:Qi?.context,operation:zi,record:_n})})}detach(){}}var le=l(1577),Ce=l(9842),Ae=l(5718);const j=[[["caption"]],[["colgroup"],["col"]],"*"],W=["caption","colgroup, col","*"];function G(Tt,At){1&Tt&&i.SdG(0,2)}function re(Tt,At){1&Tt&&(i.j41(0,"thead",0),i.eu8(1,1),i.k0s(),i.j41(2,"tbody",0),i.eu8(3,2)(4,3),i.k0s(),i.j41(5,"tfoot",0),i.eu8(6,4),i.k0s())}function xe(Tt,At){1&Tt&&i.eu8(0,1)(1,2)(2,3)(3,4)}const ce=new d.nKC("CDK_TABLE");let ne=(()=>{class Tt{template=(0,d.WQX)(i.C4Q);constructor(){}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","cdkCellDef",""]]})}return Tt})(),J=(()=>{class Tt{template=(0,d.WQX)(i.C4Q);constructor(){}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","cdkHeaderCellDef",""]]})}return Tt})(),De=(()=>{class Tt{template=(0,d.WQX)(i.C4Q);constructor(){}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","cdkFooterCellDef",""]]})}return Tt})(),Re=(()=>{class Tt{_table=(0,d.WQX)(ce,{optional:!0});_hasStickyChanged=!1;get name(){return this._name}set name(we){this._setNameInput(we)}_name;get sticky(){return this._sticky}set sticky(we){we!==this._sticky&&(this._sticky=we,this._hasStickyChanged=!0)}_sticky=!1;get stickyEnd(){return this._stickyEnd}set stickyEnd(we){we!==this._stickyEnd&&(this._stickyEnd=we,this._hasStickyChanged=!0)}_stickyEnd=!1;cell;headerCell;footerCell;cssClassFriendlyName;_columnCssClassName;constructor(){}hasStickyChanged(){const we=this._hasStickyChanged;return this.resetStickyChanged(),we}resetStickyChanged(){this._hasStickyChanged=!1}_updateColumnCssClassName(){this._columnCssClassName=[`cdk-column-${this.cssClassFriendlyName}`]}_setNameInput(we){we&&(this._name=we,this.cssClassFriendlyName=we.replace(/[^a-z0-9_-]/gi,"-"),this._updateColumnCssClassName())}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","cdkColumnDef",""]],contentQueries:function(ae,Lt,Ht){if(1&ae&&(i.wni(Ht,ne,5),i.wni(Ht,J,5),i.wni(Ht,De,5)),2&ae){let _n;i.mGM(_n=i.lsd())&&(Lt.cell=_n.first),i.mGM(_n=i.lsd())&&(Lt.headerCell=_n.first),i.mGM(_n=i.lsd())&&(Lt.footerCell=_n.first)}},inputs:{name:[0,"cdkColumnDef","name"],sticky:[2,"sticky","sticky",v.L39],stickyEnd:[2,"stickyEnd","stickyEnd",v.L39]},features:[i.Jv_([{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:Tt}])]})}return Tt})();class Xe{constructor(At,we){we.nativeElement.classList.add(...At._columnCssClassName)}}let _e=(()=>{class Tt extends Xe{constructor(){super((0,d.WQX)(Re),(0,d.WQX)(i.aKT))}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["cdk-header-cell"],["th","cdk-header-cell",""]],hostAttrs:["role","columnheader",1,"cdk-header-cell"],features:[i.Vt3]})}return Tt})(),he=(()=>{class Tt extends Xe{constructor(){const we=(0,d.WQX)(Re),ae=(0,d.WQX)(i.aKT);super(we,ae);const Lt=we._table?._getCellRole();Lt&&ae.nativeElement.setAttribute("role",Lt)}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["cdk-footer-cell"],["td","cdk-footer-cell",""]],hostAttrs:[1,"cdk-footer-cell"],features:[i.Vt3]})}return Tt})(),Dt=(()=>{class Tt extends Xe{constructor(){const we=(0,d.WQX)(Re),ae=(0,d.WQX)(i.aKT);super(we,ae);const Lt=we._table?._getCellRole();Lt&&ae.nativeElement.setAttribute("role",Lt)}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["cdk-cell"],["td","cdk-cell",""]],hostAttrs:[1,"cdk-cell"],features:[i.Vt3]})}return Tt})(),Le=(()=>{class Tt{template=(0,d.WQX)(i.C4Q);_differs=(0,d.WQX)(v._q3);columns;_columnsDiffer;constructor(){}ngOnChanges(we){if(!this._columnsDiffer){const ae=we.columns&&we.columns.currentValue||[];this._columnsDiffer=this._differs.find(ae).create(),this._columnsDiffer.diff(ae)}}getColumnsDiff(){return this._columnsDiffer.diff(this.columns)}extractCellTemplate(we){return this instanceof te?we.headerCell.template:this instanceof ie?we.footerCell.template:we.cell.template}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,features:[i.OA$]})}return Tt})(),te=(()=>{class Tt extends Le{_table=(0,d.WQX)(ce,{optional:!0});_hasStickyChanged=!1;get sticky(){return this._sticky}set sticky(we){we!==this._sticky&&(this._sticky=we,this._hasStickyChanged=!0)}_sticky=!1;constructor(){super((0,d.WQX)(i.C4Q),(0,d.WQX)(v._q3))}ngOnChanges(we){super.ngOnChanges(we)}hasStickyChanged(){const we=this._hasStickyChanged;return this.resetStickyChanged(),we}resetStickyChanged(){this._hasStickyChanged=!1}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","cdkHeaderRowDef",""]],inputs:{columns:[0,"cdkHeaderRowDef","columns"],sticky:[2,"cdkHeaderRowDefSticky","sticky",v.L39]},features:[i.Vt3,i.OA$]})}return Tt})(),ie=(()=>{class Tt extends Le{_table=(0,d.WQX)(ce,{optional:!0});_hasStickyChanged=!1;get sticky(){return this._sticky}set sticky(we){we!==this._sticky&&(this._sticky=we,this._hasStickyChanged=!0)}_sticky=!1;constructor(){super((0,d.WQX)(i.C4Q),(0,d.WQX)(v._q3))}ngOnChanges(we){super.ngOnChanges(we)}hasStickyChanged(){const we=this._hasStickyChanged;return this.resetStickyChanged(),we}resetStickyChanged(){this._hasStickyChanged=!1}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","cdkFooterRowDef",""]],inputs:{columns:[0,"cdkFooterRowDef","columns"],sticky:[2,"cdkFooterRowDefSticky","sticky",v.L39]},features:[i.Vt3,i.OA$]})}return Tt})(),P=(()=>{class Tt extends Le{_table=(0,d.WQX)(ce,{optional:!0});when;constructor(){super((0,d.WQX)(i.C4Q),(0,d.WQX)(v._q3))}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","cdkRowDef",""]],inputs:{columns:[0,"cdkRowDefColumns","columns"],when:[0,"cdkRowDefWhen","when"]},features:[i.Vt3]})}return Tt})(),F=(()=>{class Tt{_viewContainer=(0,d.WQX)(i.c1b);cells;context;static mostRecentCellOutlet=null;constructor(){Tt.mostRecentCellOutlet=this}ngOnDestroy(){Tt.mostRecentCellOutlet===this&&(Tt.mostRecentCellOutlet=null)}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","cdkCellOutlet",""]]})}return Tt})(),ve=(()=>{class Tt{static \u0275fac=function(ae){return new(ae||Tt)};static \u0275cmp=i.VBU({type:Tt,selectors:[["cdk-header-row"],["tr","cdk-header-row",""]],hostAttrs:["role","row",1,"cdk-header-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ae,Lt){1&ae&&i.eu8(0,0)},dependencies:[F],encapsulation:2})}return Tt})(),H=(()=>{class Tt{static \u0275fac=function(ae){return new(ae||Tt)};static \u0275cmp=i.VBU({type:Tt,selectors:[["cdk-footer-row"],["tr","cdk-footer-row",""]],hostAttrs:["role","row",1,"cdk-footer-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ae,Lt){1&ae&&i.eu8(0,0)},dependencies:[F],encapsulation:2})}return Tt})(),$=(()=>{class Tt{static \u0275fac=function(ae){return new(ae||Tt)};static \u0275cmp=i.VBU({type:Tt,selectors:[["cdk-row"],["tr","cdk-row",""]],hostAttrs:["role","row",1,"cdk-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ae,Lt){1&ae&&i.eu8(0,0)},dependencies:[F],encapsulation:2})}return Tt})(),Ke=(()=>{class Tt{templateRef=(0,d.WQX)(i.C4Q);_contentClassNames=["cdk-no-data-row","cdk-row"];_cellClassNames=["cdk-cell","cdk-no-data-cell"];_cellSelector="td, cdk-cell, [cdk-cell], .cdk-cell";constructor(){}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["ng-template","cdkNoDataRow",""]]})}return Tt})();const Vt=["top","bottom","left","right"];class St{_isNativeHtmlTable;_stickCellCss;_isBrowser;_needsPositionStickyOnElement;direction;_positionListener;_tableInjector;_elemSizeCache=new WeakMap;_resizeObserver=globalThis?.ResizeObserver?new globalThis.ResizeObserver(At=>this._updateCachedSizes(At)):null;_updatedStickyColumnsParamsToReplay=[];_stickyColumnsReplayTimeout=null;_cachedCellWidths=[];_borderCellCss;_destroyed=!1;constructor(At,we,ae=!0,Lt=!0,Ht,_n,fi){this._isNativeHtmlTable=At,this._stickCellCss=we,this._isBrowser=ae,this._needsPositionStickyOnElement=Lt,this.direction=Ht,this._positionListener=_n,this._tableInjector=fi,this._borderCellCss={top:`${we}-border-elem-top`,bottom:`${we}-border-elem-bottom`,left:`${we}-border-elem-left`,right:`${we}-border-elem-right`}}clearStickyPositioning(At,we){(we.includes("left")||we.includes("right"))&&this._removeFromStickyColumnReplayQueue(At);const ae=[];for(const Lt of At)Lt.nodeType===Lt.ELEMENT_NODE&&ae.push(Lt,...Array.from(Lt.children));(0,i.mal)({write:()=>{for(const Lt of ae)this._removeStickyStyle(Lt,we)}},{injector:this._tableInjector})}updateStickyColumns(At,we,ae,Lt=!0,Ht=!0){if(!At.length||!this._isBrowser||!we.some(Fn=>Fn)&&!ae.some(Fn=>Fn))return this._positionListener?.stickyColumnsUpdated({sizes:[]}),void this._positionListener?.stickyEndColumnsUpdated({sizes:[]});const _n=At[0],fi=_n.children.length,bi="rtl"===this.direction,Qi=bi?"right":"left",zi=bi?"left":"right",It=we.lastIndexOf(!0),an=ae.indexOf(!0);let Yt,Un,zn;Ht&&this._updateStickyColumnReplayQueue({rows:[...At],stickyStartStates:[...we],stickyEndStates:[...ae]}),(0,i.mal)({earlyRead:()=>{Yt=this._getCellWidths(_n,Lt),Un=this._getStickyStartColumnPositions(Yt,we),zn=this._getStickyEndColumnPositions(Yt,ae)},write:()=>{for(const Fn of At)for(let ci=0;ci!!Fn)&&(this._positionListener.stickyColumnsUpdated({sizes:-1===It?[]:Yt.slice(0,It+1).map((Fn,ci)=>we[ci]?Fn:null)}),this._positionListener.stickyEndColumnsUpdated({sizes:-1===an?[]:Yt.slice(an).map((Fn,ci)=>ae[ci+an]?Fn:null).reverse()}))}},{injector:this._tableInjector})}stickRows(At,we,ae){if(!this._isBrowser)return;const Lt="bottom"===ae?At.slice().reverse():At,Ht="bottom"===ae?we.slice().reverse():we,_n=[],fi=[],bi=[];(0,i.mal)({earlyRead:()=>{for(let Qi=0,zi=0;Qi{const Qi=Ht.lastIndexOf(!0);for(let zi=0;zi{const ae=At.querySelector("tfoot");ae&&(we.some(Lt=>!Lt)?this._removeStickyStyle(ae,["bottom"]):this._addStickyStyle(ae,"bottom",0,!1))}},{injector:this._tableInjector})}destroy(){this._stickyColumnsReplayTimeout&&clearTimeout(this._stickyColumnsReplayTimeout),this._resizeObserver?.disconnect(),this._destroyed=!0}_removeStickyStyle(At,we){if(At.classList.contains(this._stickCellCss)){for(const Lt of we)At.style[Lt]="",At.classList.remove(this._borderCellCss[Lt]);Vt.some(Lt=>-1===we.indexOf(Lt)&&At.style[Lt])?At.style.zIndex=this._getCalculatedZIndex(At):(At.style.zIndex="",this._needsPositionStickyOnElement&&(At.style.position=""),At.classList.remove(this._stickCellCss))}}_addStickyStyle(At,we,ae,Lt){At.classList.add(this._stickCellCss),Lt&&At.classList.add(this._borderCellCss[we]),At.style[we]=`${ae}px`,At.style.zIndex=this._getCalculatedZIndex(At),this._needsPositionStickyOnElement&&(At.style.cssText+="position: -webkit-sticky; position: sticky; ")}_getCalculatedZIndex(At){const we={top:100,bottom:10,left:1,right:1};let ae=0;for(const Lt of Vt)At.style[Lt]&&(ae+=we[Lt]);return ae?`${ae}`:""}_getCellWidths(At,we=!0){if(!we&&this._cachedCellWidths.length)return this._cachedCellWidths;const ae=[],Lt=At.children;for(let Ht=0;Ht0;Ht--)we[Ht]&&(ae[Ht]=Lt,Lt+=At[Ht]);return ae}_retrieveElementSize(At){const we=this._elemSizeCache.get(At);if(we)return we;const ae=At.getBoundingClientRect(),Lt={width:ae.width,height:ae.height};return this._resizeObserver&&(this._elemSizeCache.set(At,Lt),this._resizeObserver.observe(At,{box:"border-box"})),Lt}_updateStickyColumnReplayQueue(At){this._removeFromStickyColumnReplayQueue(At.rows),this._stickyColumnsReplayTimeout||this._updatedStickyColumnsParamsToReplay.push(At)}_removeFromStickyColumnReplayQueue(At){const we=new Set(At);for(const ae of this._updatedStickyColumnsParamsToReplay)ae.rows=ae.rows.filter(Lt=>!we.has(Lt));this._updatedStickyColumnsParamsToReplay=this._updatedStickyColumnsParamsToReplay.filter(ae=>!!ae.rows.length)}_updateCachedSizes(At){let we=!1;for(const ae of At){const Lt=ae.borderBoxSize?.length?{width:ae.borderBoxSize[0].inlineSize,height:ae.borderBoxSize[0].blockSize}:{width:ae.contentRect.width,height:ae.contentRect.height};Lt.width!==this._elemSizeCache.get(ae.target)?.width&&ot(ae.target)&&(we=!0),this._elemSizeCache.set(ae.target,Lt)}we&&this._updatedStickyColumnsParamsToReplay.length&&(this._stickyColumnsReplayTimeout&&clearTimeout(this._stickyColumnsReplayTimeout),this._stickyColumnsReplayTimeout=setTimeout(()=>{if(!this._destroyed){for(const ae of this._updatedStickyColumnsParamsToReplay)this.updateStickyColumns(ae.rows,ae.stickyStartStates,ae.stickyEndStates,!0,!1);this._updatedStickyColumnsParamsToReplay=[],this._stickyColumnsReplayTimeout=null}},0))}}function ot(Tt){return["cdk-cell","cdk-header-cell","cdk-footer-cell"].some(At=>Tt.classList.contains(At))}const rt=new d.nKC("CDK_SPL");let Ft=(()=>{class Tt{viewContainer=(0,d.WQX)(i.c1b);elementRef=(0,d.WQX)(i.aKT);constructor(){const we=(0,d.WQX)(ce);we._rowOutlet=this,we._outletAssigned()}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","rowOutlet",""]]})}return Tt})(),Sn=(()=>{class Tt{viewContainer=(0,d.WQX)(i.c1b);elementRef=(0,d.WQX)(i.aKT);constructor(){const we=(0,d.WQX)(ce);we._headerRowOutlet=this,we._outletAssigned()}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","headerRowOutlet",""]]})}return Tt})(),Qn=(()=>{class Tt{viewContainer=(0,d.WQX)(i.c1b);elementRef=(0,d.WQX)(i.aKT);constructor(){const we=(0,d.WQX)(ce);we._footerRowOutlet=this,we._outletAssigned()}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","footerRowOutlet",""]]})}return Tt})(),h=(()=>{class Tt{viewContainer=(0,d.WQX)(i.c1b);elementRef=(0,d.WQX)(i.aKT);constructor(){const we=(0,d.WQX)(ce);we._noDataRowOutlet=this,we._outletAssigned()}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","noDataRowOutlet",""]]})}return Tt})(),jt=(()=>{class Tt{_differs=(0,d.WQX)(v._q3);_changeDetectorRef=(0,d.WQX)(v.gRc);_elementRef=(0,d.WQX)(i.aKT);_dir=(0,d.WQX)(le.dS,{optional:!0});_platform=(0,d.WQX)(Ce.O);_viewRepeater=(0,d.WQX)(B);_viewportRuler=(0,d.WQX)(Ae.Xj);_stickyPositioningListener=(0,d.WQX)(rt,{optional:!0,skipSelf:!0});_document=(0,d.WQX)(d.qQL);_data;_onDestroy=new w.B;_renderRows;_renderChangeSubscription;_columnDefsByName=new Map;_rowDefs;_headerRowDefs;_footerRowDefs;_dataDiffer;_defaultRowDef;_customColumnDefs=new Set;_customRowDefs=new Set;_customHeaderRowDefs=new Set;_customFooterRowDefs=new Set;_customNoDataRow;_headerRowDefChanged=!0;_footerRowDefChanged=!0;_stickyColumnStylesNeedReset=!0;_forceRecalculateCellWidths=!0;_cachedRenderRowsMap=new Map;_isNativeHtmlTable;_stickyStyler;stickyCssClass="cdk-table-sticky";needsPositionStickyOnElement=!0;_isServer;_isShowingNoDataRow=!1;_hasAllOutlets=!1;_hasInitialized=!1;_getCellRole(){if(void 0===this._cellRoleInternal){const we=this._elementRef.nativeElement.getAttribute("role");return"grid"===we||"treegrid"===we?"gridcell":"cell"}return this._cellRoleInternal}_cellRoleInternal=void 0;get trackBy(){return this._trackByFn}set trackBy(we){this._trackByFn=we}_trackByFn;get dataSource(){return this._dataSource}set dataSource(we){this._dataSource!==we&&this._switchDataSource(we)}_dataSource;get multiTemplateDataRows(){return this._multiTemplateDataRows}set multiTemplateDataRows(we){this._multiTemplateDataRows=we,this._rowOutlet&&this._rowOutlet.viewContainer.length&&(this._forceRenderDataRows(),this.updateStickyColumnStyles())}_multiTemplateDataRows=!1;get fixedLayout(){return this._fixedLayout}set fixedLayout(we){this._fixedLayout=we,this._forceRecalculateCellWidths=!0,this._stickyColumnStylesNeedReset=!0}_fixedLayout=!1;contentChanged=new i.bkB;viewChange=new e.t({start:0,end:Number.MAX_VALUE});_rowOutlet;_headerRowOutlet;_footerRowOutlet;_noDataRowOutlet;_contentColumnDefs;_contentRowDefs;_contentHeaderRowDefs;_contentFooterRowDefs;_noDataRow;_injector=(0,d.WQX)(d.zZn);constructor(){(0,d.WQX)(new v.ES_("role"),{optional:!0})||this._elementRef.nativeElement.setAttribute("role","table"),this._isServer=!this._platform.isBrowser,this._isNativeHtmlTable="TABLE"===this._elementRef.nativeElement.nodeName,this._dataDiffer=this._differs.find([]).create((ae,Lt)=>this.trackBy?this.trackBy(Lt.dataIndex,Lt.data):Lt)}ngOnInit(){this._setupStickyStyler(),this._viewportRuler.change().pipe((0,u.Q)(this._onDestroy)).subscribe(()=>{this._forceRecalculateCellWidths=!0})}ngAfterContentInit(){this._hasInitialized=!0}ngAfterContentChecked(){this._canRender()&&this._render()}ngOnDestroy(){this._stickyStyler?.destroy(),[this._rowOutlet?.viewContainer,this._headerRowOutlet?.viewContainer,this._footerRowOutlet?.viewContainer,this._cachedRenderRowsMap,this._customColumnDefs,this._customRowDefs,this._customHeaderRowDefs,this._customFooterRowDefs,this._columnDefsByName].forEach(we=>{we?.clear()}),this._headerRowDefs=[],this._footerRowDefs=[],this._defaultRowDef=null,this._onDestroy.next(),this._onDestroy.complete(),(0,T.y)(this.dataSource)&&this.dataSource.disconnect(this)}renderRows(){this._renderRows=this._getAllRenderRows();const we=this._dataDiffer.diff(this._renderRows);if(!we)return this._updateNoDataRow(),void this.contentChanged.next();const ae=this._rowOutlet.viewContainer;this._viewRepeater.applyChanges(we,ae,(Lt,Ht,_n)=>this._getEmbeddedViewArgs(Lt.item,_n),Lt=>Lt.item.data,Lt=>{Lt.operation===C.INSERTED&&Lt.context&&this._renderCellTemplateForItem(Lt.record.item.rowDef,Lt.context)}),this._updateRowIndexContext(),we.forEachIdentityChange(Lt=>{ae.get(Lt.currentIndex).context.$implicit=Lt.item.data}),this._updateNoDataRow(),this.contentChanged.next(),this.updateStickyColumnStyles()}addColumnDef(we){this._customColumnDefs.add(we)}removeColumnDef(we){this._customColumnDefs.delete(we)}addRowDef(we){this._customRowDefs.add(we)}removeRowDef(we){this._customRowDefs.delete(we)}addHeaderRowDef(we){this._customHeaderRowDefs.add(we),this._headerRowDefChanged=!0}removeHeaderRowDef(we){this._customHeaderRowDefs.delete(we),this._headerRowDefChanged=!0}addFooterRowDef(we){this._customFooterRowDefs.add(we),this._footerRowDefChanged=!0}removeFooterRowDef(we){this._customFooterRowDefs.delete(we),this._footerRowDefChanged=!0}setNoDataRow(we){this._customNoDataRow=we}updateStickyHeaderRowStyles(){const we=this._getRenderedRows(this._headerRowOutlet);if(this._isNativeHtmlTable){const Lt=wt(this._headerRowOutlet,"thead");Lt&&(Lt.style.display=we.length?"":"none")}const ae=this._headerRowDefs.map(Lt=>Lt.sticky);this._stickyStyler.clearStickyPositioning(we,["top"]),this._stickyStyler.stickRows(we,ae,"top"),this._headerRowDefs.forEach(Lt=>Lt.resetStickyChanged())}updateStickyFooterRowStyles(){const we=this._getRenderedRows(this._footerRowOutlet);if(this._isNativeHtmlTable){const Lt=wt(this._footerRowOutlet,"tfoot");Lt&&(Lt.style.display=we.length?"":"none")}const ae=this._footerRowDefs.map(Lt=>Lt.sticky);this._stickyStyler.clearStickyPositioning(we,["bottom"]),this._stickyStyler.stickRows(we,ae,"bottom"),this._stickyStyler.updateStickyFooterContainer(this._elementRef.nativeElement,ae),this._footerRowDefs.forEach(Lt=>Lt.resetStickyChanged())}updateStickyColumnStyles(){const we=this._getRenderedRows(this._headerRowOutlet),ae=this._getRenderedRows(this._rowOutlet),Lt=this._getRenderedRows(this._footerRowOutlet);(this._isNativeHtmlTable&&!this._fixedLayout||this._stickyColumnStylesNeedReset)&&(this._stickyStyler.clearStickyPositioning([...we,...ae,...Lt],["left","right"]),this._stickyColumnStylesNeedReset=!1),we.forEach((Ht,_n)=>{this._addStickyColumnStyles([Ht],this._headerRowDefs[_n])}),this._rowDefs.forEach(Ht=>{const _n=[];for(let fi=0;fi{this._addStickyColumnStyles([Ht],this._footerRowDefs[_n])}),Array.from(this._columnDefsByName.values()).forEach(Ht=>Ht.resetStickyChanged())}_outletAssigned(){!this._hasAllOutlets&&this._rowOutlet&&this._headerRowOutlet&&this._footerRowOutlet&&this._noDataRowOutlet&&(this._hasAllOutlets=!0,this._canRender()&&this._render())}_canRender(){return this._hasAllOutlets&&this._hasInitialized}_render(){this._cacheRowDefs(),this._cacheColumnDefs();const ae=this._renderUpdatedColumns()||this._headerRowDefChanged||this._footerRowDefChanged;this._stickyColumnStylesNeedReset=this._stickyColumnStylesNeedReset||ae,this._forceRecalculateCellWidths=ae,this._headerRowDefChanged&&(this._forceRenderHeaderRows(),this._headerRowDefChanged=!1),this._footerRowDefChanged&&(this._forceRenderFooterRows(),this._footerRowDefChanged=!1),this.dataSource&&this._rowDefs.length>0&&!this._renderChangeSubscription?this._observeRenderChanges():this._stickyColumnStylesNeedReset&&this.updateStickyColumnStyles(),this._checkStickyStates()}_getAllRenderRows(){const we=[],ae=this._cachedRenderRowsMap;if(this._cachedRenderRowsMap=new Map,!this._data)return we;for(let Lt=0;Lt{const fi=Lt&&Lt.has(_n)?Lt.get(_n):[];if(fi.length){const bi=fi.shift();return bi.dataIndex=ae,bi}return{data:we,rowDef:_n,dataIndex:ae}})}_cacheColumnDefs(){this._columnDefsByName.clear(),Ue(this._getOwnDefs(this._contentColumnDefs),this._customColumnDefs).forEach(ae=>{this._columnDefsByName.has(ae.name),this._columnDefsByName.set(ae.name,ae)})}_cacheRowDefs(){this._headerRowDefs=Ue(this._getOwnDefs(this._contentHeaderRowDefs),this._customHeaderRowDefs),this._footerRowDefs=Ue(this._getOwnDefs(this._contentFooterRowDefs),this._customFooterRowDefs),this._rowDefs=Ue(this._getOwnDefs(this._contentRowDefs),this._customRowDefs);const we=this._rowDefs.filter(ae=>!ae.when);this._defaultRowDef=we[0]}_renderUpdatedColumns(){const we=(_n,fi)=>{const bi=!!fi.getColumnsDiff();return _n||bi},ae=this._rowDefs.reduce(we,!1);ae&&this._forceRenderDataRows();const Lt=this._headerRowDefs.reduce(we,!1);Lt&&this._forceRenderHeaderRows();const Ht=this._footerRowDefs.reduce(we,!1);return Ht&&this._forceRenderFooterRows(),ae||Lt||Ht}_switchDataSource(we){this._data=[],(0,T.y)(this.dataSource)&&this.dataSource.disconnect(this),this._renderChangeSubscription&&(this._renderChangeSubscription.unsubscribe(),this._renderChangeSubscription=null),we||(this._dataDiffer&&this._dataDiffer.diff([]),this._rowOutlet&&this._rowOutlet.viewContainer.clear()),this._dataSource=we}_observeRenderChanges(){if(!this.dataSource)return;let we;(0,T.y)(this.dataSource)?we=this.dataSource.connect(this):(0,O.A)(this.dataSource)?we=this.dataSource:Array.isArray(this.dataSource)&&(we=(0,f.of)(this.dataSource)),this._renderChangeSubscription=we.pipe((0,u.Q)(this._onDestroy)).subscribe(ae=>{this._data=ae||[],this.renderRows()})}_forceRenderHeaderRows(){this._headerRowOutlet.viewContainer.length>0&&this._headerRowOutlet.viewContainer.clear(),this._headerRowDefs.forEach((we,ae)=>this._renderRow(this._headerRowOutlet,we,ae)),this.updateStickyHeaderRowStyles()}_forceRenderFooterRows(){this._footerRowOutlet.viewContainer.length>0&&this._footerRowOutlet.viewContainer.clear(),this._footerRowDefs.forEach((we,ae)=>this._renderRow(this._footerRowOutlet,we,ae)),this.updateStickyFooterRowStyles()}_addStickyColumnStyles(we,ae){const Lt=Array.from(ae?.columns||[]).map(fi=>this._columnDefsByName.get(fi)),Ht=Lt.map(fi=>fi.sticky),_n=Lt.map(fi=>fi.stickyEnd);this._stickyStyler.updateStickyColumns(we,Ht,_n,!this._fixedLayout||this._forceRecalculateCellWidths)}_getRenderedRows(we){const ae=[];for(let Lt=0;Lt!Ht.when||Ht.when(ae,we));else{let Ht=this._rowDefs.find(_n=>_n.when&&_n.when(ae,we))||this._defaultRowDef;Ht&&Lt.push(Ht)}return Lt}_getEmbeddedViewArgs(we,ae){return{templateRef:we.rowDef.template,context:{$implicit:we.data},index:ae}}_renderRow(we,ae,Lt,Ht={}){const _n=we.viewContainer.createEmbeddedView(ae.template,Ht,Lt);return this._renderCellTemplateForItem(ae,Ht),_n}_renderCellTemplateForItem(we,ae){for(let Lt of this._getCellTemplates(we))F.mostRecentCellOutlet&&F.mostRecentCellOutlet._viewContainer.createEmbeddedView(Lt,ae);this._changeDetectorRef.markForCheck()}_updateRowIndexContext(){const we=this._rowOutlet.viewContainer;for(let ae=0,Lt=we.length;ae{const Lt=this._columnDefsByName.get(ae);return we.extractCellTemplate(Lt)}):[]}_forceRenderDataRows(){this._dataDiffer.diff([]),this._rowOutlet.viewContainer.clear(),this.renderRows()}_checkStickyStates(){const we=(ae,Lt)=>ae||Lt.hasStickyChanged();this._headerRowDefs.reduce(we,!1)&&this.updateStickyHeaderRowStyles(),this._footerRowDefs.reduce(we,!1)&&this.updateStickyFooterRowStyles(),Array.from(this._columnDefsByName.values()).reduce(we,!1)&&(this._stickyColumnStylesNeedReset=!0,this.updateStickyColumnStyles())}_setupStickyStyler(){this._stickyStyler=new St(this._isNativeHtmlTable,this.stickyCssClass,this._platform.isBrowser,this.needsPositionStickyOnElement,this._dir?this._dir.value:"ltr",this._stickyPositioningListener,this._injector),(this._dir?this._dir.change:(0,f.of)()).pipe((0,u.Q)(this._onDestroy)).subscribe(ae=>{this._stickyStyler.direction=ae,this.updateStickyColumnStyles()})}_getOwnDefs(we){return we.filter(ae=>!ae._table||ae._table===this)}_updateNoDataRow(){const we=this._customNoDataRow||this._noDataRow;if(!we)return;const ae=0===this._rowOutlet.viewContainer.length;if(ae===this._isShowingNoDataRow)return;const Lt=this._noDataRowOutlet.viewContainer;if(ae){const Ht=Lt.createEmbeddedView(we.templateRef),_n=Ht.rootNodes[0];if(1===Ht.rootNodes.length&&_n?.nodeType===this._document.ELEMENT_NODE){_n.setAttribute("role","row"),_n.classList.add(...we._contentClassNames);const fi=_n.querySelectorAll(we._cellSelector);for(let bi=0;bi{class Tt{static \u0275fac=function(ae){return new(ae||Tt)};static \u0275mod=i.$C({type:Tt});static \u0275inj=d.G2t({imports:[Ae.E9]})}return Tt})();var ei=l(2466),vi=l(7786),Ni=l(4572),kn=l(7847),Ri=l(6354);const vt=[[["caption"]],[["colgroup"],["col"]],"*"],ee=["caption","colgroup, col","*"];function ye(Tt,At){1&Tt&&i.SdG(0,2)}function ke(Tt,At){1&Tt&&(i.j41(0,"thead",0),i.eu8(1,1),i.k0s(),i.j41(2,"tbody",2),i.eu8(3,3)(4,4),i.k0s(),i.j41(5,"tfoot",0),i.eu8(6,5),i.k0s())}function Se(Tt,At){1&Tt&&i.eu8(0,1)(1,3)(2,4)(3,5)}let Me=(()=>{class Tt extends jt{stickyCssClass="mat-mdc-table-sticky";needsPositionStickyOnElement=!1;static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275cmp=i.VBU({type:Tt,selectors:[["mat-table"],["table","mat-table",""]],hostAttrs:[1,"mat-mdc-table","mdc-data-table__table"],hostVars:2,hostBindings:function(ae,Lt){2&ae&&i.AVh("mdc-table-fixed-layout",Lt.fixedLayout)},exportAs:["matTable"],features:[i.Jv_([{provide:jt,useExisting:Tt},{provide:ce,useExisting:Tt},{provide:B,useClass:Pe},{provide:rt,useValue:null}]),i.Vt3],ngContentSelectors:ee,decls:5,vars:2,consts:[["role","rowgroup"],["headerRowOutlet",""],["role","rowgroup",1,"mdc-data-table__content"],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(ae,Lt){1&ae&&(i.NAR(vt),i.SdG(0),i.SdG(1,1),i.nVh(2,ye,1,0),i.nVh(3,ke,7,0)(4,Se,4,0)),2&ae&&(i.R7$(2),i.vxM(Lt._isServer?2:-1),i.R7$(),i.vxM(Lt._isNativeHtmlTable?3:4))},dependencies:[Sn,Ft,h,Qn],styles:[".mat-mdc-table-sticky{position:sticky !important}mat-table{display:block}mat-header-row{min-height:var(--mat-table-header-container-height, 56px)}mat-row{min-height:var(--mat-table-row-item-container-height, 52px)}mat-footer-row{min-height:var(--mat-table-footer-container-height, 52px)}mat-row,mat-header-row,mat-footer-row{display:flex;border-width:0;border-bottom-width:1px;border-style:solid;align-items:center;box-sizing:border-box}mat-cell:first-of-type,mat-header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:24px}[dir=rtl] mat-cell:first-of-type:not(:only-of-type),[dir=rtl] mat-header-cell:first-of-type:not(:only-of-type),[dir=rtl] mat-footer-cell:first-of-type:not(:only-of-type){padding-left:0;padding-right:24px}mat-cell:last-of-type,mat-header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:24px}[dir=rtl] mat-cell:last-of-type:not(:only-of-type),[dir=rtl] mat-header-cell:last-of-type:not(:only-of-type),[dir=rtl] mat-footer-cell:last-of-type:not(:only-of-type){padding-right:0;padding-left:24px}mat-cell,mat-header-cell,mat-footer-cell{flex:1;display:flex;align-items:center;overflow:hidden;word-wrap:break-word;min-height:inherit}.mat-mdc-table{min-width:100%;border:0;border-spacing:0;table-layout:auto;white-space:normal;background-color:var(--mat-table-background-color, var(--mat-sys-surface))}.mdc-data-table__cell{box-sizing:border-box;overflow:hidden;text-align:left;text-overflow:ellipsis}[dir=rtl] .mdc-data-table__cell{text-align:right}.mdc-data-table__cell,.mdc-data-table__header-cell{padding:0 16px}.mat-mdc-header-row{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mat-table-header-container-height, 56px);color:var(--mat-table-header-headline-color, var(--mat-sys-on-surface, rgba(0, 0, 0, 0.87)));font-family:var(--mat-table-header-headline-font, var(--mat-sys-title-small-font, Roboto, sans-serif));line-height:var(--mat-table-header-headline-line-height, var(--mat-sys-title-small-line-height));font-size:var(--mat-table-header-headline-size, var(--mat-sys-title-small-size, 14px));font-weight:var(--mat-table-header-headline-weight, var(--mat-sys-title-small-weight, 500))}.mat-mdc-row{height:var(--mat-table-row-item-container-height, 52px);color:var(--mat-table-row-item-label-text-color, var(--mat-sys-on-surface, rgba(0, 0, 0, 0.87)))}.mat-mdc-row,.mdc-data-table__content{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-table-row-item-label-text-font, var(--mat-sys-body-medium-font, Roboto, sans-serif));line-height:var(--mat-table-row-item-label-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-table-row-item-label-text-size, var(--mat-sys-body-medium-size, 14px));font-weight:var(--mat-table-row-item-label-text-weight, var(--mat-sys-body-medium-weight))}.mat-mdc-footer-row{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mat-table-footer-container-height, 52px);color:var(--mat-table-row-item-label-text-color, var(--mat-sys-on-surface, rgba(0, 0, 0, 0.87)));font-family:var(--mat-table-footer-supporting-text-font, var(--mat-sys-body-medium-font, Roboto, sans-serif));line-height:var(--mat-table-footer-supporting-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-table-footer-supporting-text-size, var(--mat-sys-body-medium-size, 14px));font-weight:var(--mat-table-footer-supporting-text-weight, var(--mat-sys-body-medium-weight));letter-spacing:var(--mat-table-footer-supporting-text-tracking, var(--mat-sys-body-medium-tracking))}.mat-mdc-header-cell{border-bottom-color:var(--mat-table-row-item-outline-color, var(--mat-sys-outline, rgba(0, 0, 0, 0.12)));border-bottom-width:var(--mat-table-row-item-outline-width, 1px);border-bottom-style:solid;letter-spacing:var(--mat-table-header-headline-tracking, var(--mat-sys-title-small-tracking));font-weight:inherit;line-height:inherit;box-sizing:border-box;text-overflow:ellipsis;overflow:hidden;outline:none;text-align:left}[dir=rtl] .mat-mdc-header-cell{text-align:right}.mdc-data-table__row:last-child>.mat-mdc-header-cell{border-bottom:none}.mat-mdc-cell{border-bottom-color:var(--mat-table-row-item-outline-color, var(--mat-sys-outline, rgba(0, 0, 0, 0.12)));border-bottom-width:var(--mat-table-row-item-outline-width, 1px);border-bottom-style:solid;letter-spacing:var(--mat-table-row-item-label-text-tracking, var(--mat-sys-body-medium-tracking));line-height:inherit}.mdc-data-table__row:last-child>.mat-mdc-cell{border-bottom:none}.mat-mdc-footer-cell{letter-spacing:var(--mat-table-row-item-label-text-tracking, var(--mat-sys-body-medium-tracking))}mat-row.mat-mdc-row,mat-header-row.mat-mdc-header-row,mat-footer-row.mat-mdc-footer-row{border-bottom:none}.mat-mdc-table tbody,.mat-mdc-table tfoot,.mat-mdc-table thead,.mat-mdc-cell,.mat-mdc-footer-cell,.mat-mdc-header-row,.mat-mdc-row,.mat-mdc-footer-row,.mat-mdc-table .mat-mdc-header-cell{background:inherit}.mat-mdc-table mat-header-row.mat-mdc-header-row,.mat-mdc-table mat-row.mat-mdc-row,.mat-mdc-table mat-footer-row.mat-mdc-footer-cell{height:unset}mat-header-cell.mat-mdc-header-cell,mat-cell.mat-mdc-cell,mat-footer-cell.mat-mdc-footer-cell{align-self:stretch}\n"],encapsulation:2})}return Tt})(),at=(()=>{class Tt extends ne{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["","matCellDef",""]],features:[i.Jv_([{provide:ne,useExisting:Tt}]),i.Vt3]})}return Tt})(),qe=(()=>{class Tt extends J{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["","matHeaderCellDef",""]],features:[i.Jv_([{provide:J,useExisting:Tt}]),i.Vt3]})}return Tt})(),pn=(()=>{class Tt extends De{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["","matFooterCellDef",""]],features:[i.Jv_([{provide:De,useExisting:Tt}]),i.Vt3]})}return Tt})(),Je=(()=>{class Tt extends Re{get name(){return this._name}set name(we){this._setNameInput(we)}_updateColumnCssClassName(){super._updateColumnCssClassName(),this._columnCssClassName.push(`mat-column-${this.cssClassFriendlyName}`)}static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["","matColumnDef",""]],inputs:{name:[0,"matColumnDef","name"]},features:[i.Jv_([{provide:Re,useExisting:Tt},{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:Tt}]),i.Vt3]})}return Tt})(),Be=(()=>{class Tt extends _e{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["mat-header-cell"],["th","mat-header-cell",""]],hostAttrs:["role","columnheader",1,"mat-mdc-header-cell","mdc-data-table__header-cell"],features:[i.Vt3]})}return Tt})(),ut=(()=>{class Tt extends he{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["mat-footer-cell"],["td","mat-footer-cell",""]],hostAttrs:[1,"mat-mdc-footer-cell","mdc-data-table__cell"],features:[i.Vt3]})}return Tt})(),Ge=(()=>{class Tt extends Dt{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["mat-cell"],["td","mat-cell",""]],hostAttrs:[1,"mat-mdc-cell","mdc-data-table__cell"],features:[i.Vt3]})}return Tt})(),se=(()=>{class Tt extends te{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["","matHeaderRowDef",""]],inputs:{columns:[0,"matHeaderRowDef","columns"],sticky:[2,"matHeaderRowDefSticky","sticky",v.L39]},features:[i.Jv_([{provide:te,useExisting:Tt}]),i.Vt3]})}return Tt})(),We=(()=>{class Tt extends ie{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["","matFooterRowDef",""]],inputs:{columns:[0,"matFooterRowDef","columns"],sticky:[2,"matFooterRowDefSticky","sticky",v.L39]},features:[i.Jv_([{provide:ie,useExisting:Tt}]),i.Vt3]})}return Tt})(),bt=(()=>{class Tt extends P{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["","matRowDef",""]],inputs:{columns:[0,"matRowDefColumns","columns"],when:[0,"matRowDefWhen","when"]},features:[i.Jv_([{provide:P,useExisting:Tt}]),i.Vt3]})}return Tt})(),tn=(()=>{class Tt extends ve{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275cmp=i.VBU({type:Tt,selectors:[["mat-header-row"],["tr","mat-header-row",""]],hostAttrs:["role","row",1,"mat-mdc-header-row","mdc-data-table__header-row"],exportAs:["matHeaderRow"],features:[i.Jv_([{provide:ve,useExisting:Tt}]),i.Vt3],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ae,Lt){1&ae&&i.eu8(0,0)},dependencies:[F],encapsulation:2})}return Tt})(),on=(()=>{class Tt extends H{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275cmp=i.VBU({type:Tt,selectors:[["mat-footer-row"],["tr","mat-footer-row",""]],hostAttrs:["role","row",1,"mat-mdc-footer-row","mdc-data-table__row"],exportAs:["matFooterRow"],features:[i.Jv_([{provide:H,useExisting:Tt}]),i.Vt3],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ae,Lt){1&ae&&i.eu8(0,0)},dependencies:[F],encapsulation:2})}return Tt})(),un=(()=>{class Tt extends ${static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275cmp=i.VBU({type:Tt,selectors:[["mat-row"],["tr","mat-row",""]],hostAttrs:["role","row",1,"mat-mdc-row","mdc-data-table__row"],exportAs:["matRow"],features:[i.Jv_([{provide:$,useExisting:Tt}]),i.Vt3],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ae,Lt){1&ae&&i.eu8(0,0)},dependencies:[F],encapsulation:2})}return Tt})(),Jn=(()=>{class Tt{static \u0275fac=function(ae){return new(ae||Tt)};static \u0275mod=i.$C({type:Tt});static \u0275inj=d.G2t({imports:[ei.y,gn,ei.y]})}return Tt})();class Yi extends T.q{_data;_renderData=new e.t([]);_filter=new e.t("");_internalPageChanges=new w.B;_renderChangesSubscription=null;filteredData;get data(){return this._data.value}set data(At){At=Array.isArray(At)?At:[],this._data.next(At),this._renderChangesSubscription||this._filterData(At)}get filter(){return this._filter.value}set filter(At){this._filter.next(At),this._renderChangesSubscription||this._filterData(this.data)}get sort(){return this._sort}set sort(At){this._sort=At,this._updateChangeSubscription()}_sort;get paginator(){return this._paginator}set paginator(At){this._paginator=At,this._updateChangeSubscription()}_paginator;sortingDataAccessor=(At,we)=>{const ae=At[we];if((0,kn.o1)(ae)){const Lt=Number(ae);return Lt<9007199254740991?Lt:ae}return ae};sortData=(At,we)=>{const ae=we.active,Lt=we.direction;return ae&&""!=Lt?At.sort((Ht,_n)=>{let fi=this.sortingDataAccessor(Ht,ae),bi=this.sortingDataAccessor(_n,ae);const Qi=typeof fi,zi=typeof bi;Qi!==zi&&("number"===Qi&&(fi+=""),"number"===zi&&(bi+=""));let It=0;return null!=fi&&null!=bi?fi>bi?It=1:fi{const ae=we.trim().toLowerCase();return Object.values(At).some(Lt=>`${Lt}`.toLowerCase().includes(ae))};constructor(At=[]){super(),this._data=new e.t(At),this._updateChangeSubscription()}_updateChangeSubscription(){const At=this._sort?(0,vi.h)(this._sort.sortChange,this._sort.initialized):(0,f.of)(null),we=this._paginator?(0,vi.h)(this._paginator.page,this._internalPageChanges,this._paginator.initialized):(0,f.of)(null),Lt=(0,Ni.z)([this._data,this._filter]).pipe((0,Ri.T)(([fi])=>this._filterData(fi))),Ht=(0,Ni.z)([Lt,At]).pipe((0,Ri.T)(([fi])=>this._orderData(fi))),_n=(0,Ni.z)([Ht,we]).pipe((0,Ri.T)(([fi])=>this._pageData(fi)));this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=_n.subscribe(fi=>this._renderData.next(fi))}_filterData(At){return this.filteredData=null==this.filter||""===this.filter?At:At.filter(we=>this.filterPredicate(we,this.filter)),this.paginator&&this._updatePaginator(this.filteredData.length),this.filteredData}_orderData(At){return this.sort?this.sortData(At.slice(),this.sort):At}_pageData(At){if(!this.paginator)return At;const we=this.paginator.pageIndex*this.paginator.pageSize;return At.slice(we,we+this.paginator.pageSize)}_updatePaginator(At){Promise.resolve().then(()=>{const we=this.paginator;if(we&&(we.length=At,we.pageIndex>0)){const ae=Math.ceil(we.length/we.pageSize)-1||0,Lt=Math.min(we.pageIndex,ae);Lt!==we.pageIndex&&(we.pageIndex=Lt,this._internalPageChanges.next())}})}connect(){return this._renderChangesSubscription||this._updateChangeSubscription(),this._renderData}disconnect(){this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=null}}},6850(Zt,pe,l){"use strict";l.d(pe,{Bu:()=>ge,ES:()=>Ft,Ql:()=>N,RI:()=>Me,T8:()=>ke,hQ:()=>Z,mq:()=>Qn});var i=l(6838),d=l(9726),v=l(4123),T=l(1577),w=l(7336),e=l(438),O=l(3610),f=l(9842),u=l(5718),L=l(2615),C=l(3664),B=l(7705),A=l(9295),Pe=l(1985),le=l(1413),Ce=l(4412),Ae=l(8359),j=l(7786),W=l(7673),G=l(1807),re=l(983),xe=l(152),Ee=l(5964),V=l(5245),ce=l(9172),be=l(5558),ne=l(6977),J=l(1804),De=l(6939),Re=l(8968),Xe=l(2046),_e=l(2318),he=l(2496),Dt=l(2466);const lt=["*"];function Le(qe,pn){1&qe&&C.SdG(0)}const te=["tabListContainer"],ie=["tabList"],P=["tabListInner"],F=["nextPaginator"],ve=["previousPaginator"],H=["content"];function $(qe,pn){}const Ke=["tabBodyWrapper"],Vt=["tabHeader"];function St(qe,pn){}function ot(qe,pn){if(1&qe&&C.DNE(0,St,0,0,"ng-template",12),2&qe){const Je=C.XpG().$implicit;C.Y8G("cdkPortalOutlet",Je.templateLabel)}}function nt(qe,pn){if(1&qe&&C.EFF(0),2&qe){const Je=C.XpG().$implicit;C.JRh(Je.textLabel)}}function ht(qe,pn){if(1&qe){const Je=C.RV6();C.j41(0,"div",7,2),C.bIt("click",function(){const ut=L.eBV(Je),Ge=ut.$implicit,Ot=ut.$index,se=C.XpG(),We=C.sdS(1);return L.Njj(se._handleClick(Ge,We,Ot))})("cdkFocusChange",function(ut){const Ge=L.eBV(Je).$index,Ot=C.XpG();return L.Njj(Ot._tabFocusChanged(ut,Ge))}),C.nrm(2,"span",8)(3,"div",9),C.j41(4,"span",10)(5,"span",11),C.nVh(6,ot,1,1,null,12)(7,nt,1,1),C.k0s()()()}if(2&qe){const Je=pn.$implicit,Be=pn.$index,ut=C.sdS(1),Ge=C.XpG();C.HbH(Je.labelClass),C.AVh("mdc-tab--active",Ge.selectedIndex===Be),C.Y8G("id",Ge._getTabLabelId(Je,Be))("disabled",Je.disabled)("fitInkBarToContent",Ge.fitInkBarToContent),C.BMQ("tabIndex",Ge._getTabIndex(Be))("aria-posinset",Be+1)("aria-setsize",Ge._tabs.length)("aria-controls",Ge._getTabContentId(Be))("aria-selected",Ge.selectedIndex===Be)("aria-label",Je.ariaLabel||null)("aria-labelledby",!Je.ariaLabel&&Je.ariaLabelledby?Je.ariaLabelledby:null),C.R7$(3),C.Y8G("matRippleTrigger",ut)("matRippleDisabled",Je.disabled||Ge.disableRipple),C.R7$(3),C.vxM(Je.templateLabel?6:7)}}function oe(qe,pn){1&qe&&C.SdG(0)}function Ye(qe,pn){if(1&qe){const Je=C.RV6();C.j41(0,"mat-tab-body",13),C.bIt("_onCentered",function(){L.eBV(Je);const ut=C.XpG();return L.Njj(ut._removeTabBodyWrapperHeight())})("_onCentering",function(ut){L.eBV(Je);const Ge=C.XpG();return L.Njj(Ge._setTabBodyWrapperHeight(ut))})("_beforeCentering",function(ut){L.eBV(Je);const Ge=C.XpG();return L.Njj(Ge._bodyCentered(ut))}),C.k0s()}if(2&qe){const Je=pn.$implicit,Be=pn.$index,ut=C.XpG();C.HbH(Je.bodyClass),C.Y8G("id",ut._getTabContentId(Be))("content",Je.content)("position",Je.position)("animationDuration",ut.animationDuration)("preserveContent",ut.preserveContent),C.BMQ("tabindex",null!=ut.contentTabIndex&&ut.selectedIndex===Be?ut.contentTabIndex:null)("aria-labelledby",ut._getTabLabelId(Je,Be))("aria-hidden",ut.selectedIndex!==Be)}}const fe=["mat-tab-nav-bar",""],Qe=["mat-tab-link",""],gt=new L.nKC("MatTabContent");let Gt=(()=>{class qe{template=(0,L.WQX)(C.C4Q);constructor(){}static \u0275fac=function(Be){return new(Be||qe)};static \u0275dir=C.FsC({type:qe,selectors:[["","matTabContent",""]],features:[C.Jv_([{provide:gt,useExisting:qe}])]})}return qe})();const rt=new L.nKC("MatTabLabel"),cn=new L.nKC("MAT_TAB");let Ft=(()=>{class qe extends De.bV{_closestTab=(0,L.WQX)(cn,{optional:!0});static \u0275fac=(()=>{let Je;return function(ut){return(Je||(Je=C.xGo(qe)))(ut||qe)}})();static \u0275dir=C.FsC({type:qe,selectors:[["","mat-tab-label",""],["","matTabLabel",""]],features:[C.Jv_([{provide:rt,useExisting:qe}]),C.Vt3]})}return qe})();const Sn=new L.nKC("MAT_TAB_GROUP");let Qn=(()=>{class qe{_viewContainerRef=(0,L.WQX)(C.c1b);_closestTabGroup=(0,L.WQX)(Sn,{optional:!0});disabled=!1;get templateLabel(){return this._templateLabel}set templateLabel(Je){this._setTemplateLabelInput(Je)}_templateLabel;_explicitContent=void 0;_implicitContent;textLabel="";ariaLabel;ariaLabelledby;labelClass;bodyClass;id=null;_contentPortal=null;get content(){return this._contentPortal}_stateChanges=new le.B;position=null;origin=null;isActive=!1;constructor(){(0,L.WQX)(Re.l).load(Xe.A)}ngOnChanges(Je){(Je.hasOwnProperty("textLabel")||Je.hasOwnProperty("disabled"))&&this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete()}ngOnInit(){this._contentPortal=new De.VA(this._explicitContent||this._implicitContent,this._viewContainerRef)}_setTemplateLabelInput(Je){Je&&Je._closestTab===this&&(this._templateLabel=Je)}static \u0275fac=function(Be){return new(Be||qe)};static \u0275cmp=C.VBU({type:qe,selectors:[["mat-tab"]],contentQueries:function(Be,ut,Ge){if(1&Be&&(C.wni(Ge,Ft,5),C.wni(Ge,Gt,7,C.C4Q)),2&Be){let Ot;C.mGM(Ot=C.lsd())&&(ut.templateLabel=Ot.first),C.mGM(Ot=C.lsd())&&(ut._explicitContent=Ot.first)}},viewQuery:function(Be,ut){if(1&Be&&C.GBs(C.C4Q,7),2&Be){let Ge;C.mGM(Ge=C.lsd())&&(ut._implicitContent=Ge.first)}},hostAttrs:["hidden",""],hostVars:1,hostBindings:function(Be,ut){2&Be&&C.BMQ("id",null)},inputs:{disabled:[2,"disabled","disabled",B.L39],textLabel:[0,"label","textLabel"],ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],labelClass:"labelClass",bodyClass:"bodyClass",id:"id"},exportAs:["matTab"],features:[C.Jv_([{provide:cn,useExisting:qe}]),C.OA$],ngContentSelectors:lt,decls:1,vars:0,template:function(Be,ut){1&Be&&(C.NAR(),C.PeT(0,Le,1,0,"ng-template"))},encapsulation:2})}return qe})();const h="mdc-tab-indicator--active",jt="mdc-tab-indicator--no-transition";class Ue{_items;_currentItem;constructor(pn){this._items=pn}hide(){this._items.forEach(pn=>pn.deactivateInkBar()),this._currentItem=void 0}alignToElement(pn){const Je=this._items.find(ut=>ut.elementRef.nativeElement===pn),Be=this._currentItem;if(Je!==Be&&(Be?.deactivateInkBar(),Je)){const ut=Be?.elementRef.nativeElement.getBoundingClientRect?.();Je.activateInkBar(ut),this._currentItem=Je}}}let wt=(()=>{class qe{_elementRef=(0,L.WQX)(C.aKT);_inkBarElement;_inkBarContentElement;_fitToContent=!1;get fitInkBarToContent(){return this._fitToContent}set fitInkBarToContent(Je){this._fitToContent!==Je&&(this._fitToContent=Je,this._inkBarElement&&this._appendInkBarElement())}activateInkBar(Je){const Be=this._elementRef.nativeElement;if(!Je||!Be.getBoundingClientRect||!this._inkBarContentElement)return void Be.classList.add(h);const ut=Be.getBoundingClientRect(),Ge=Je.width/ut.width,Ot=Je.left-ut.left;Be.classList.add(jt),this._inkBarContentElement.style.setProperty("transform",`translateX(${Ot}px) scaleX(${Ge})`),Be.getBoundingClientRect(),Be.classList.remove(jt),Be.classList.add(h),this._inkBarContentElement.style.setProperty("transform","")}deactivateInkBar(){this._elementRef.nativeElement.classList.remove(h)}ngOnInit(){this._createInkBarElement()}ngOnDestroy(){this._inkBarElement?.remove(),this._inkBarElement=this._inkBarContentElement=null}_createInkBarElement(){const Je=this._elementRef.nativeElement.ownerDocument||document,Be=this._inkBarElement=Je.createElement("span"),ut=this._inkBarContentElement=Je.createElement("span");Be.className="mdc-tab-indicator",ut.className="mdc-tab-indicator__content mdc-tab-indicator__content--underline",Be.appendChild(this._inkBarContentElement),this._appendInkBarElement()}_appendInkBarElement(){(this._fitToContent?this._elementRef.nativeElement.querySelector(".mdc-tab__content"):this._elementRef.nativeElement).appendChild(this._inkBarElement)}static \u0275fac=function(Be){return new(Be||qe)};static \u0275dir=C.FsC({type:qe,inputs:{fitInkBarToContent:[2,"fitInkBarToContent","fitInkBarToContent",B.L39]}})}return qe})(),gn=(()=>{class qe extends wt{elementRef=(0,L.WQX)(C.aKT);disabled=!1;focus(){this.elementRef.nativeElement.focus()}getOffsetLeft(){return this.elementRef.nativeElement.offsetLeft}getOffsetWidth(){return this.elementRef.nativeElement.offsetWidth}static \u0275fac=(()=>{let Je;return function(ut){return(Je||(Je=C.xGo(qe)))(ut||qe)}})();static \u0275dir=C.FsC({type:qe,selectors:[["","matTabLabelWrapper",""]],hostVars:3,hostBindings:function(Be,ut){2&Be&&(C.BMQ("aria-disabled",!!ut.disabled),C.AVh("mat-mdc-tab-disabled",ut.disabled))},inputs:{disabled:[2,"disabled","disabled",B.L39]},features:[C.Vt3]})}return qe})();const ei={passive:!0};let kn=(()=>{class qe{_elementRef=(0,L.WQX)(C.aKT);_changeDetectorRef=(0,L.WQX)(B.gRc);_viewportRuler=(0,L.WQX)(u.Xj);_dir=(0,L.WQX)(T.dS,{optional:!0});_ngZone=(0,L.WQX)(C.SKi);_platform=(0,L.WQX)(f.O);_sharedResizeObserver=(0,L.WQX)(O.a);_injector=(0,L.WQX)(L.zZn);_renderer=(0,L.WQX)(C.sFG);_animationsDisabled=(0,J.Rc)();_eventCleanups;_scrollDistance=0;_selectedIndexChanged=!1;_destroyed=new le.B;_showPaginationControls=!1;_disableScrollAfter=!0;_disableScrollBefore=!0;_tabLabelCount;_scrollDistanceChanged;_keyManager;_currentTextContent;_stopScrolling=new le.B;disablePagination=!1;get selectedIndex(){return this._selectedIndex}set selectedIndex(Je){const Be=isNaN(Je)?0:Je;this._selectedIndex!=Be&&(this._selectedIndexChanged=!0,this._selectedIndex=Be,this._keyManager&&this._keyManager.updateActiveItem(Be))}_selectedIndex=0;selectFocusedIndex=new C.bkB;indexFocused=new C.bkB;constructor(){this._eventCleanups=this._ngZone.runOutsideAngular(()=>[this._renderer.listen(this._elementRef.nativeElement,"mouseleave",()=>this._stopInterval())])}ngAfterViewInit(){this._eventCleanups.push(this._renderer.listen(this._previousPaginator.nativeElement,"touchstart",()=>this._handlePaginatorPress("before"),ei),this._renderer.listen(this._nextPaginator.nativeElement,"touchstart",()=>this._handlePaginatorPress("after"),ei))}ngAfterContentInit(){const Je=this._dir?this._dir.change:(0,W.of)("ltr"),Be=this._sharedResizeObserver.observe(this._elementRef.nativeElement).pipe((0,xe.B)(32),(0,ne.Q)(this._destroyed)),ut=this._viewportRuler.change(150).pipe((0,ne.Q)(this._destroyed)),Ge=()=>{this.updatePagination(),this._alignInkBarToSelectedTab()};this._keyManager=new v.B(this._items).withHorizontalOrientation(this._getLayoutDirection()).withHomeAndEnd().withWrap().skipPredicate(()=>!1),this._keyManager.updateActiveItem(Math.max(this._selectedIndex,0)),(0,C.mal)(Ge,{injector:this._injector}),(0,j.h)(Je,ut,Be,this._items.changes,this._itemsResized()).pipe((0,ne.Q)(this._destroyed)).subscribe(()=>{this._ngZone.run(()=>{Promise.resolve().then(()=>{this._scrollDistance=Math.max(0,Math.min(this._getMaxScrollDistance(),this._scrollDistance)),Ge()})}),this._keyManager?.withHorizontalOrientation(this._getLayoutDirection())}),this._keyManager.change.subscribe(Ot=>{this.indexFocused.emit(Ot),this._setTabFocus(Ot)})}_itemsResized(){return"function"!=typeof ResizeObserver?re.w:this._items.changes.pipe((0,ce.Z)(this._items),(0,be.n)(Je=>new Pe.c(Be=>this._ngZone.runOutsideAngular(()=>{const ut=new ResizeObserver(Ge=>Be.next(Ge));return Je.forEach(Ge=>ut.observe(Ge.elementRef.nativeElement)),()=>{ut.disconnect()}}))),(0,V.i)(1),(0,Ee.p)(Je=>Je.some(Be=>Be.contentRect.width>0&&Be.contentRect.height>0)))}ngAfterContentChecked(){this._tabLabelCount!=this._items.length&&(this.updatePagination(),this._tabLabelCount=this._items.length,this._changeDetectorRef.markForCheck()),this._selectedIndexChanged&&(this._scrollToLabel(this._selectedIndex),this._checkScrollingControls(),this._alignInkBarToSelectedTab(),this._selectedIndexChanged=!1,this._changeDetectorRef.markForCheck()),this._scrollDistanceChanged&&(this._updateTabScrollPosition(),this._scrollDistanceChanged=!1,this._changeDetectorRef.markForCheck())}ngOnDestroy(){this._eventCleanups.forEach(Je=>Je()),this._keyManager?.destroy(),this._destroyed.next(),this._destroyed.complete(),this._stopScrolling.complete()}_handleKeydown(Je){if(!(0,w.rp)(Je))switch(Je.keyCode){case e.Fm:case e.t6:if(this.focusIndex!==this.selectedIndex){const Be=this._items.get(this.focusIndex);Be&&!Be.disabled&&(this.selectFocusedIndex.emit(this.focusIndex),this._itemSelected(Je))}break;default:this._keyManager?.onKeydown(Je)}}_onContentChanges(){const Je=this._elementRef.nativeElement.textContent;Je!==this._currentTextContent&&(this._currentTextContent=Je||"",this._ngZone.run(()=>{this.updatePagination(),this._alignInkBarToSelectedTab(),this._changeDetectorRef.markForCheck()}))}updatePagination(){this._checkPaginationEnabled(),this._checkScrollingControls(),this._updateTabScrollPosition()}get focusIndex(){return this._keyManager?this._keyManager.activeItemIndex:0}set focusIndex(Je){!this._isValidIndex(Je)||this.focusIndex===Je||!this._keyManager||this._keyManager.setActiveItem(Je)}_isValidIndex(Je){return!this._items||!!this._items.toArray()[Je]}_setTabFocus(Je){if(this._showPaginationControls&&this._scrollToLabel(Je),this._items&&this._items.length){this._items.toArray()[Je].focus();const Be=this._tabListContainer.nativeElement;Be.scrollLeft="ltr"==this._getLayoutDirection()?0:Be.scrollWidth-Be.offsetWidth}}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_updateTabScrollPosition(){if(this.disablePagination)return;const Je=this.scrollDistance,Be="ltr"===this._getLayoutDirection()?-Je:Je;this._tabList.nativeElement.style.transform=`translateX(${Math.round(Be)}px)`,(this._platform.TRIDENT||this._platform.EDGE)&&(this._tabListContainer.nativeElement.scrollLeft=0)}get scrollDistance(){return this._scrollDistance}set scrollDistance(Je){this._scrollTo(Je)}_scrollHeader(Je){return this._scrollTo(this._scrollDistance+("before"==Je?-1:1)*this._tabListContainer.nativeElement.offsetWidth/3)}_handlePaginatorClick(Je){this._stopInterval(),this._scrollHeader(Je)}_scrollToLabel(Je){if(this.disablePagination)return;const Be=this._items?this._items.toArray()[Je]:null;if(!Be)return;const ut=this._tabListContainer.nativeElement.offsetWidth,{offsetLeft:Ge,offsetWidth:Ot}=Be.elementRef.nativeElement;let se,We;"ltr"==this._getLayoutDirection()?(se=Ge,We=se+Ot):(We=this._tabListInner.nativeElement.offsetWidth-Ge,se=We-Ot);const bt=this.scrollDistance,tn=this.scrollDistance+ut;setn&&(this.scrollDistance+=Math.min(We-tn,se-bt))}_checkPaginationEnabled(){if(this.disablePagination)this._showPaginationControls=!1;else{const ut=this._tabListInner.nativeElement.scrollWidth-this._elementRef.nativeElement.offsetWidth>=5;ut||(this.scrollDistance=0),ut!==this._showPaginationControls&&(this._showPaginationControls=ut,this._changeDetectorRef.markForCheck())}}_checkScrollingControls(){this.disablePagination?this._disableScrollAfter=this._disableScrollBefore=!0:(this._disableScrollBefore=0==this.scrollDistance,this._disableScrollAfter=this.scrollDistance==this._getMaxScrollDistance(),this._changeDetectorRef.markForCheck())}_getMaxScrollDistance(){return this._tabListInner.nativeElement.scrollWidth-this._tabListContainer.nativeElement.offsetWidth||0}_alignInkBarToSelectedTab(){const Je=this._items&&this._items.length?this._items.toArray()[this.selectedIndex]:null,Be=Je?Je.elementRef.nativeElement:null;Be?this._inkBar.alignToElement(Be):this._inkBar.hide()}_stopInterval(){this._stopScrolling.next()}_handlePaginatorPress(Je,Be){Be&&null!=Be.button&&0!==Be.button||(this._stopInterval(),(0,G.O)(650,100).pipe((0,ne.Q)((0,j.h)(this._stopScrolling,this._destroyed))).subscribe(()=>{const{maxScrollDistance:ut,distance:Ge}=this._scrollHeader(Je);(0===Ge||Ge>=ut)&&this._stopInterval()}))}_scrollTo(Je){if(this.disablePagination)return{maxScrollDistance:0,distance:0};const Be=this._getMaxScrollDistance();return this._scrollDistance=Math.max(0,Math.min(Be,Je)),this._scrollDistanceChanged=!0,this._checkScrollingControls(),{maxScrollDistance:Be,distance:this._scrollDistance}}static \u0275fac=function(Be){return new(Be||qe)};static \u0275dir=C.FsC({type:qe,inputs:{disablePagination:[2,"disablePagination","disablePagination",B.L39],selectedIndex:[2,"selectedIndex","selectedIndex",B.Udg]},outputs:{selectFocusedIndex:"selectFocusedIndex",indexFocused:"indexFocused"}})}return qe})(),Ri=(()=>{class qe extends kn{_items;_tabListContainer;_tabList;_tabListInner;_nextPaginator;_previousPaginator;_inkBar;ariaLabel;ariaLabelledby;disableRipple=!1;ngAfterContentInit(){this._inkBar=new Ue(this._items),super.ngAfterContentInit()}_itemSelected(Je){Je.preventDefault()}static \u0275fac=(()=>{let Je;return function(ut){return(Je||(Je=C.xGo(qe)))(ut||qe)}})();static \u0275cmp=C.VBU({type:qe,selectors:[["mat-tab-header"]],contentQueries:function(Be,ut,Ge){if(1&Be&&C.wni(Ge,gn,4),2&Be){let Ot;C.mGM(Ot=C.lsd())&&(ut._items=Ot)}},viewQuery:function(Be,ut){if(1&Be&&(C.GBs(te,7),C.GBs(ie,7),C.GBs(P,7),C.GBs(F,5),C.GBs(ve,5)),2&Be){let Ge;C.mGM(Ge=C.lsd())&&(ut._tabListContainer=Ge.first),C.mGM(Ge=C.lsd())&&(ut._tabList=Ge.first),C.mGM(Ge=C.lsd())&&(ut._tabListInner=Ge.first),C.mGM(Ge=C.lsd())&&(ut._nextPaginator=Ge.first),C.mGM(Ge=C.lsd())&&(ut._previousPaginator=Ge.first)}},hostAttrs:[1,"mat-mdc-tab-header"],hostVars:4,hostBindings:function(Be,ut){2&Be&&C.AVh("mat-mdc-tab-header-pagination-controls-enabled",ut._showPaginationControls)("mat-mdc-tab-header-rtl","rtl"==ut._getLayoutDirection())},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],disableRipple:[2,"disableRipple","disableRipple",B.L39]},features:[C.Vt3],ngContentSelectors:lt,decls:13,vars:10,consts:[["previousPaginator",""],["tabListContainer",""],["tabList",""],["tabListInner",""],["nextPaginator",""],["mat-ripple","",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-before",3,"click","mousedown","touchend","matRippleDisabled"],[1,"mat-mdc-tab-header-pagination-chevron"],[1,"mat-mdc-tab-label-container",3,"keydown"],["role","tablist",1,"mat-mdc-tab-list",3,"cdkObserveContent"],[1,"mat-mdc-tab-labels"],["mat-ripple","",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-after",3,"mousedown","click","touchend","matRippleDisabled"]],template:function(Be,ut){if(1&Be){const Ge=C.RV6();C.NAR(),C.j41(0,"div",5,0),C.bIt("click",function(){return L.eBV(Ge),L.Njj(ut._handlePaginatorClick("before"))})("mousedown",function(se){return L.eBV(Ge),L.Njj(ut._handlePaginatorPress("before",se))})("touchend",function(){return L.eBV(Ge),L.Njj(ut._stopInterval())}),C.nrm(2,"div",6),C.k0s(),C.j41(3,"div",7,1),C.bIt("keydown",function(se){return L.eBV(Ge),L.Njj(ut._handleKeydown(se))}),C.j41(5,"div",8,2),C.bIt("cdkObserveContent",function(){return L.eBV(Ge),L.Njj(ut._onContentChanges())}),C.j41(7,"div",9,3),C.SdG(9),C.k0s()()(),C.j41(10,"div",10,4),C.bIt("mousedown",function(se){return L.eBV(Ge),L.Njj(ut._handlePaginatorPress("after",se))})("click",function(){return L.eBV(Ge),L.Njj(ut._handlePaginatorClick("after"))})("touchend",function(){return L.eBV(Ge),L.Njj(ut._stopInterval())}),C.nrm(12,"div",6),C.k0s()}2&Be&&(C.AVh("mat-mdc-tab-header-pagination-disabled",ut._disableScrollBefore),C.Y8G("matRippleDisabled",ut._disableScrollBefore||ut.disableRipple),C.R7$(3),C.AVh("_mat-animation-noopable",ut._animationsDisabled),C.R7$(2),C.BMQ("aria-label",ut.ariaLabel||null)("aria-labelledby",ut.ariaLabelledby||null),C.R7$(5),C.AVh("mat-mdc-tab-header-pagination-disabled",ut._disableScrollAfter),C.Y8G("matRippleDisabled",ut._disableScrollAfter||ut.disableRipple))},dependencies:[he.r6,_e.Wv],styles:[".mat-mdc-tab-header{display:flex;overflow:hidden;position:relative;flex-shrink:0}.mdc-tab-indicator .mdc-tab-indicator__content{transition-duration:var(--mat-tab-animation-duration, 250ms)}.mat-mdc-tab-header-pagination{-webkit-user-select:none;user-select:none;position:relative;display:none;justify-content:center;align-items:center;min-width:32px;cursor:pointer;z-index:2;-webkit-tap-highlight-color:rgba(0,0,0,0);touch-action:none;box-sizing:content-box;outline:0}.mat-mdc-tab-header-pagination::-moz-focus-inner{border:0}.mat-mdc-tab-header-pagination .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-inactive-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab-header-pagination-controls-enabled .mat-mdc-tab-header-pagination{display:flex}.mat-mdc-tab-header-pagination-before,.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-after{padding-left:4px}.mat-mdc-tab-header-pagination-before .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-after .mat-mdc-tab-header-pagination-chevron{transform:rotate(-135deg)}.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-before,.mat-mdc-tab-header-pagination-after{padding-right:4px}.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-before .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-header-pagination-after .mat-mdc-tab-header-pagination-chevron{transform:rotate(45deg)}.mat-mdc-tab-header-pagination-chevron{border-style:solid;border-width:2px 2px 0 0;height:8px;width:8px;border-color:var(--mat-tab-pagination-icon-color, var(--mat-sys-on-surface))}.mat-mdc-tab-header-pagination-disabled{box-shadow:none;cursor:default;pointer-events:none}.mat-mdc-tab-header-pagination-disabled .mat-mdc-tab-header-pagination-chevron{opacity:.4}.mat-mdc-tab-list{flex-grow:1;position:relative;transition:transform 500ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-mdc-tab-list{transition:none}.mat-mdc-tab-label-container{display:flex;flex-grow:1;overflow:hidden;z-index:1;border-bottom-style:solid;border-bottom-width:var(--mat-tab-divider-height, 1px);border-bottom-color:var(--mat-tab-divider-color, var(--mat-sys-surface-variant))}.mat-mdc-tab-group-inverted-header .mat-mdc-tab-label-container{border-bottom:none;border-top-style:solid;border-top-width:var(--mat-tab-divider-height, 1px);border-top-color:var(--mat-tab-divider-color, var(--mat-sys-surface-variant))}.mat-mdc-tab-labels{display:flex;flex:1 0 auto}[mat-align-tabs=center]>.mat-mdc-tab-header .mat-mdc-tab-labels{justify-content:center}[mat-align-tabs=end]>.mat-mdc-tab-header .mat-mdc-tab-labels{justify-content:flex-end}.cdk-drop-list .mat-mdc-tab-labels,.mat-mdc-tab-labels.cdk-drop-list{min-height:var(--mat-tab-container-height, 48px)}.mat-mdc-tab::before{margin:5px}@media(forced-colors: active){.mat-mdc-tab[aria-disabled=true]{color:GrayText}}\n"],encapsulation:2})}return qe})();const vt=new L.nKC("MAT_TABS_CONFIG");let ee=(()=>{class qe extends De.I3{_host=(0,L.WQX)(ye);_ngZone=(0,L.WQX)(C.SKi);_centeringSub=Ae.yU.EMPTY;_leavingSub=Ae.yU.EMPTY;constructor(){super()}ngOnInit(){super.ngOnInit(),this._centeringSub=this._host._beforeCentering.pipe((0,ce.Z)(this._host._isCenterPosition())).subscribe(Je=>{this._host._content&&Je&&!this.hasAttached()&&this._ngZone.run(()=>{Promise.resolve().then(),this.attach(this._host._content)})}),this._leavingSub=this._host._afterLeavingCenter.subscribe(()=>{this._host.preserveContent||this._ngZone.run(()=>this.detach())})}ngOnDestroy(){super.ngOnDestroy(),this._centeringSub.unsubscribe(),this._leavingSub.unsubscribe()}static \u0275fac=function(Be){return new(Be||qe)};static \u0275dir=C.FsC({type:qe,selectors:[["","matTabBodyHost",""]],features:[C.Vt3]})}return qe})(),ye=(()=>{class qe{_elementRef=(0,L.WQX)(C.aKT);_dir=(0,L.WQX)(T.dS,{optional:!0});_ngZone=(0,L.WQX)(C.SKi);_injector=(0,L.WQX)(L.zZn);_renderer=(0,L.WQX)(C.sFG);_diAnimationsDisabled=(0,J.Rc)();_eventCleanups;_initialized;_fallbackTimer;_positionIndex;_dirChangeSubscription=Ae.yU.EMPTY;_position;_previousPosition;_onCentering=new C.bkB;_beforeCentering=new C.bkB;_afterLeavingCenter=new C.bkB;_onCentered=new C.bkB(!0);_portalHost;_contentElement;_content;animationDuration="500ms";preserveContent=!1;set position(Je){this._positionIndex=Je,this._computePositionAnimationState()}constructor(){if(this._dir){const Je=(0,L.WQX)(B.gRc);this._dirChangeSubscription=this._dir.change.subscribe(Be=>{this._computePositionAnimationState(Be),Je.markForCheck()})}}ngOnInit(){this._bindTransitionEvents(),"center"===this._position&&(this._setActiveClass(!0),(0,C.mal)(()=>this._onCentering.emit(this._elementRef.nativeElement.clientHeight),{injector:this._injector})),this._initialized=!0}ngOnDestroy(){clearTimeout(this._fallbackTimer),this._eventCleanups?.forEach(Je=>Je()),this._dirChangeSubscription.unsubscribe()}_bindTransitionEvents(){this._ngZone.runOutsideAngular(()=>{const Je=this._elementRef.nativeElement,Be=ut=>{ut.target===this._contentElement?.nativeElement&&(this._elementRef.nativeElement.classList.remove("mat-tab-body-animating"),"transitionend"===ut.type&&this._transitionDone())};this._eventCleanups=[this._renderer.listen(Je,"transitionstart",ut=>{ut.target===this._contentElement?.nativeElement&&(this._elementRef.nativeElement.classList.add("mat-tab-body-animating"),this._transitionStarted())}),this._renderer.listen(Je,"transitionend",Be),this._renderer.listen(Je,"transitioncancel",Be)]})}_transitionStarted(){clearTimeout(this._fallbackTimer);const Je="center"===this._position;this._beforeCentering.emit(Je),Je&&this._onCentering.emit(this._elementRef.nativeElement.clientHeight)}_transitionDone(){"center"===this._position?this._onCentered.emit():"center"===this._previousPosition&&this._afterLeavingCenter.emit()}_setActiveClass(Je){this._elementRef.nativeElement.classList.toggle("mat-mdc-tab-body-active",Je)}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_isCenterPosition(){return 0===this._positionIndex}_computePositionAnimationState(Je=this._getLayoutDirection()){this._previousPosition=this._position,this._position=this._positionIndex<0?"ltr"==Je?"left":"right":this._positionIndex>0?"ltr"==Je?"right":"left":"center",this._animationsDisabled()?this._simulateTransitionEvents():this._initialized&&("center"===this._position||"center"===this._previousPosition)&&(clearTimeout(this._fallbackTimer),this._fallbackTimer=this._ngZone.runOutsideAngular(()=>setTimeout(()=>this._simulateTransitionEvents(),100)))}_simulateTransitionEvents(){this._transitionStarted(),(0,C.mal)(()=>this._transitionDone(),{injector:this._injector})}_animationsDisabled(){return this._diAnimationsDisabled||"0ms"===this.animationDuration||"0s"===this.animationDuration}static \u0275fac=function(Be){return new(Be||qe)};static \u0275cmp=C.VBU({type:qe,selectors:[["mat-tab-body"]],viewQuery:function(Be,ut){if(1&Be&&(C.GBs(ee,5),C.GBs(H,5)),2&Be){let Ge;C.mGM(Ge=C.lsd())&&(ut._portalHost=Ge.first),C.mGM(Ge=C.lsd())&&(ut._contentElement=Ge.first)}},hostAttrs:[1,"mat-mdc-tab-body"],hostVars:1,hostBindings:function(Be,ut){2&Be&&C.BMQ("inert","center"===ut._position?null:"")},inputs:{_content:[0,"content","_content"],animationDuration:"animationDuration",preserveContent:"preserveContent",position:"position"},outputs:{_onCentering:"_onCentering",_beforeCentering:"_beforeCentering",_onCentered:"_onCentered"},decls:3,vars:6,consts:[["content",""],["cdkScrollable","",1,"mat-mdc-tab-body-content"],["matTabBodyHost",""]],template:function(Be,ut){1&Be&&(C.j41(0,"div",1,0),C.DNE(2,$,0,0,"ng-template",2),C.k0s()),2&Be&&C.AVh("mat-tab-body-content-left","left"===ut._position)("mat-tab-body-content-right","right"===ut._position)("mat-tab-body-content-can-animate","center"===ut._position||"center"===ut._previousPosition)},dependencies:[ee,u.uv],styles:[".mat-mdc-tab-body{top:0;left:0;right:0;bottom:0;position:absolute;display:block;overflow:hidden;outline:0;flex-basis:100%}.mat-mdc-tab-body.mat-mdc-tab-body-active{position:relative;overflow-x:hidden;overflow-y:auto;z-index:1;flex-grow:1}.mat-mdc-tab-group.mat-mdc-tab-group-dynamic-height .mat-mdc-tab-body.mat-mdc-tab-body-active{overflow-y:hidden}.mat-mdc-tab-body-content{height:100%;overflow:auto;transform:none;visibility:hidden}.mat-tab-body-animating>.mat-mdc-tab-body-content,.mat-mdc-tab-body-active>.mat-mdc-tab-body-content{visibility:visible}.mat-tab-body-animating>.mat-mdc-tab-body-content{min-height:1px}.mat-mdc-tab-group-dynamic-height .mat-mdc-tab-body-content{overflow:hidden}.mat-tab-body-content-can-animate{transition:transform var(--mat-tab-animation-duration) 1ms cubic-bezier(0.35, 0, 0.25, 1)}.mat-mdc-tab-body-wrapper._mat-animation-noopable .mat-tab-body-content-can-animate{transition:none}.mat-tab-body-content-left{transform:translate3d(-100%, 0, 0)}.mat-tab-body-content-right{transform:translate3d(100%, 0, 0)}\n"],encapsulation:2})}return qe})(),ke=(()=>{class qe{_elementRef=(0,L.WQX)(C.aKT);_changeDetectorRef=(0,L.WQX)(B.gRc);_ngZone=(0,L.WQX)(C.SKi);_tabsSubscription=Ae.yU.EMPTY;_tabLabelSubscription=Ae.yU.EMPTY;_tabBodySubscription=Ae.yU.EMPTY;_diAnimationsDisabled=(0,J.Rc)();_allTabs;_tabBodies;_tabBodyWrapper;_tabHeader;_tabs=new C.rOR;_indexToSelect=0;_lastFocusedTabIndex=null;_tabBodyWrapperHeight=0;color;get fitInkBarToContent(){return this._fitInkBarToContent}set fitInkBarToContent(Je){this._fitInkBarToContent=Je,this._changeDetectorRef.markForCheck()}_fitInkBarToContent=!1;stretchTabs=!0;alignTabs=null;dynamicHeight=!1;get selectedIndex(){return this._selectedIndex}set selectedIndex(Je){this._indexToSelect=isNaN(Je)?null:Je}_selectedIndex=null;headerPosition="above";get animationDuration(){return this._animationDuration}set animationDuration(Je){const Be=Je+"";this._animationDuration=/^\d+$/.test(Be)?Je+"ms":Be}_animationDuration;get contentTabIndex(){return this._contentTabIndex}set contentTabIndex(Je){this._contentTabIndex=isNaN(Je)?null:Je}_contentTabIndex;disablePagination=!1;disableRipple=!1;preserveContent=!1;get backgroundColor(){return this._backgroundColor}set backgroundColor(Je){const Be=this._elementRef.nativeElement.classList;Be.remove("mat-tabs-with-background",`mat-background-${this.backgroundColor}`),Je&&Be.add("mat-tabs-with-background",`mat-background-${Je}`),this._backgroundColor=Je}_backgroundColor;ariaLabel;ariaLabelledby;selectedIndexChange=new C.bkB;focusChange=new C.bkB;animationDone=new C.bkB;selectedTabChange=new C.bkB(!0);_groupId;_isServer=!(0,L.WQX)(f.O).isBrowser;constructor(){const Je=(0,L.WQX)(vt,{optional:!0});this._groupId=(0,L.WQX)(d.g).getId("mat-tab-group-"),this.animationDuration=Je&&Je.animationDuration?Je.animationDuration:"500ms",this.disablePagination=!(!Je||null==Je.disablePagination)&&Je.disablePagination,this.dynamicHeight=!(!Je||null==Je.dynamicHeight)&&Je.dynamicHeight,null!=Je?.contentTabIndex&&(this.contentTabIndex=Je.contentTabIndex),this.preserveContent=!!Je?.preserveContent,this.fitInkBarToContent=!(!Je||null==Je.fitInkBarToContent)&&Je.fitInkBarToContent,this.stretchTabs=!Je||null==Je.stretchTabs||Je.stretchTabs,this.alignTabs=Je&&null!=Je.alignTabs?Je.alignTabs:null}ngAfterContentChecked(){const Je=this._indexToSelect=this._clampTabIndex(this._indexToSelect);if(this._selectedIndex!=Je){const Be=null==this._selectedIndex;if(!Be){this.selectedTabChange.emit(this._createChangeEvent(Je));const ut=this._tabBodyWrapper.nativeElement;ut.style.minHeight=ut.clientHeight+"px"}Promise.resolve().then(()=>{this._tabs.forEach((ut,Ge)=>ut.isActive=Ge===Je),Be||(this.selectedIndexChange.emit(Je),this._tabBodyWrapper.nativeElement.style.minHeight="")})}this._tabs.forEach((Be,ut)=>{Be.position=ut-Je,null!=this._selectedIndex&&0==Be.position&&!Be.origin&&(Be.origin=Je-this._selectedIndex)}),this._selectedIndex!==Je&&(this._selectedIndex=Je,this._lastFocusedTabIndex=null,this._changeDetectorRef.markForCheck())}ngAfterContentInit(){this._subscribeToAllTabChanges(),this._subscribeToTabLabels(),this._tabsSubscription=this._tabs.changes.subscribe(()=>{const Je=this._clampTabIndex(this._indexToSelect);if(Je===this._selectedIndex){const Be=this._tabs.toArray();let ut;for(let Ge=0;Ge{Be[Je].isActive=!0,this.selectedTabChange.emit(this._createChangeEvent(Je))})}this._changeDetectorRef.markForCheck()})}ngAfterViewInit(){this._tabBodySubscription=this._tabBodies.changes.subscribe(()=>this._bodyCentered(!0))}_subscribeToAllTabChanges(){this._allTabs.changes.pipe((0,ce.Z)(this._allTabs)).subscribe(Je=>{this._tabs.reset(Je.filter(Be=>Be._closestTabGroup===this||!Be._closestTabGroup)),this._tabs.notifyOnChanges()})}ngOnDestroy(){this._tabs.destroy(),this._tabsSubscription.unsubscribe(),this._tabLabelSubscription.unsubscribe(),this._tabBodySubscription.unsubscribe()}realignInkBar(){this._tabHeader&&this._tabHeader._alignInkBarToSelectedTab()}updatePagination(){this._tabHeader&&this._tabHeader.updatePagination()}focusTab(Je){const Be=this._tabHeader;Be&&(Be.focusIndex=Je)}_focusChanged(Je){this._lastFocusedTabIndex=Je,this.focusChange.emit(this._createChangeEvent(Je))}_createChangeEvent(Je){const Be=new Se;return Be.index=Je,this._tabs&&this._tabs.length&&(Be.tab=this._tabs.toArray()[Je]),Be}_subscribeToTabLabels(){this._tabLabelSubscription&&this._tabLabelSubscription.unsubscribe(),this._tabLabelSubscription=(0,j.h)(...this._tabs.map(Je=>Je._stateChanges)).subscribe(()=>this._changeDetectorRef.markForCheck())}_clampTabIndex(Je){return Math.min(this._tabs.length-1,Math.max(Je||0,0))}_getTabLabelId(Je,Be){return Je.id||`${this._groupId}-label-${Be}`}_getTabContentId(Je){return`${this._groupId}-content-${Je}`}_setTabBodyWrapperHeight(Je){if(!this.dynamicHeight||!this._tabBodyWrapperHeight)return void(this._tabBodyWrapperHeight=Je);const Be=this._tabBodyWrapper.nativeElement;Be.style.height=this._tabBodyWrapperHeight+"px",this._tabBodyWrapper.nativeElement.offsetHeight&&(Be.style.height=Je+"px")}_removeTabBodyWrapperHeight(){const Je=this._tabBodyWrapper.nativeElement;this._tabBodyWrapperHeight=Je.clientHeight,Je.style.height="",this._ngZone.run(()=>this.animationDone.emit())}_handleClick(Je,Be,ut){Be.focusIndex=ut,Je.disabled||(this.selectedIndex=ut)}_getTabIndex(Je){return Je===(this._lastFocusedTabIndex??this.selectedIndex)?0:-1}_tabFocusChanged(Je,Be){Je&&"mouse"!==Je&&"touch"!==Je&&(this._tabHeader.focusIndex=Be)}_bodyCentered(Je){Je&&this._tabBodies?.forEach((Be,ut)=>Be._setActiveClass(ut===this._selectedIndex))}_animationsDisabled(){return this._diAnimationsDisabled||"0"===this.animationDuration||"0ms"===this.animationDuration}static \u0275fac=function(Be){return new(Be||qe)};static \u0275cmp=C.VBU({type:qe,selectors:[["mat-tab-group"]],contentQueries:function(Be,ut,Ge){if(1&Be&&C.wni(Ge,Qn,5),2&Be){let Ot;C.mGM(Ot=C.lsd())&&(ut._allTabs=Ot)}},viewQuery:function(Be,ut){if(1&Be&&(C.GBs(Ke,5),C.GBs(Vt,5),C.GBs(ye,5)),2&Be){let Ge;C.mGM(Ge=C.lsd())&&(ut._tabBodyWrapper=Ge.first),C.mGM(Ge=C.lsd())&&(ut._tabHeader=Ge.first),C.mGM(Ge=C.lsd())&&(ut._tabBodies=Ge)}},hostAttrs:[1,"mat-mdc-tab-group"],hostVars:11,hostBindings:function(Be,ut){2&Be&&(C.BMQ("mat-align-tabs",ut.alignTabs),C.HbH("mat-"+(ut.color||"primary")),C.xc7("--mat-tab-animation-duration",ut.animationDuration),C.AVh("mat-mdc-tab-group-dynamic-height",ut.dynamicHeight)("mat-mdc-tab-group-inverted-header","below"===ut.headerPosition)("mat-mdc-tab-group-stretch-tabs",ut.stretchTabs))},inputs:{color:"color",fitInkBarToContent:[2,"fitInkBarToContent","fitInkBarToContent",B.L39],stretchTabs:[2,"mat-stretch-tabs","stretchTabs",B.L39],alignTabs:[0,"mat-align-tabs","alignTabs"],dynamicHeight:[2,"dynamicHeight","dynamicHeight",B.L39],selectedIndex:[2,"selectedIndex","selectedIndex",B.Udg],headerPosition:"headerPosition",animationDuration:"animationDuration",contentTabIndex:[2,"contentTabIndex","contentTabIndex",B.Udg],disablePagination:[2,"disablePagination","disablePagination",B.L39],disableRipple:[2,"disableRipple","disableRipple",B.L39],preserveContent:[2,"preserveContent","preserveContent",B.L39],backgroundColor:"backgroundColor",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"]},outputs:{selectedIndexChange:"selectedIndexChange",focusChange:"focusChange",animationDone:"animationDone",selectedTabChange:"selectedTabChange"},exportAs:["matTabGroup"],features:[C.Jv_([{provide:Sn,useExisting:qe}])],ngContentSelectors:lt,decls:9,vars:8,consts:[["tabHeader",""],["tabBodyWrapper",""],["tabNode",""],[3,"indexFocused","selectFocusedIndex","selectedIndex","disableRipple","disablePagination","aria-label","aria-labelledby"],["role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",1,"mdc-tab","mat-mdc-tab","mat-focus-indicator",3,"id","mdc-tab--active","class","disabled","fitInkBarToContent"],[1,"mat-mdc-tab-body-wrapper"],["role","tabpanel",3,"id","class","content","position","animationDuration","preserveContent"],["role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",1,"mdc-tab","mat-mdc-tab","mat-focus-indicator",3,"click","cdkFocusChange","id","disabled","fitInkBarToContent"],[1,"mdc-tab__ripple"],["mat-ripple","",1,"mat-mdc-tab-ripple",3,"matRippleTrigger","matRippleDisabled"],[1,"mdc-tab__content"],[1,"mdc-tab__text-label"],[3,"cdkPortalOutlet"],["role","tabpanel",3,"_onCentered","_onCentering","_beforeCentering","id","content","position","animationDuration","preserveContent"]],template:function(Be,ut){if(1&Be){const Ge=C.RV6();C.NAR(),C.j41(0,"mat-tab-header",3,0),C.bIt("indexFocused",function(se){return L.eBV(Ge),L.Njj(ut._focusChanged(se))})("selectFocusedIndex",function(se){return L.eBV(Ge),L.Njj(ut.selectedIndex=se)}),C.Z7z(2,ht,8,17,"div",4,C.fX1),C.k0s(),C.nVh(4,oe,1,0),C.j41(5,"div",5,1),C.Z7z(7,Ye,1,10,"mat-tab-body",6,C.fX1),C.k0s()}2&Be&&(C.Y8G("selectedIndex",ut.selectedIndex||0)("disableRipple",ut.disableRipple)("disablePagination",ut.disablePagination),C.jOp("aria-label",ut.ariaLabel)("aria-labelledby",ut.ariaLabelledby),C.R7$(2),C.Dyx(ut._tabs),C.R7$(2),C.vxM(ut._isServer?4:-1),C.R7$(),C.AVh("_mat-animation-noopable",ut._animationsDisabled()),C.R7$(2),C.Dyx(ut._tabs))},dependencies:[Ri,gn,i.vR,he.r6,De.I3,ye],styles:['.mdc-tab{min-width:90px;padding:0 24px;display:flex;flex:1 0 auto;justify-content:center;box-sizing:border-box;border:none;outline:none;text-align:center;white-space:nowrap;cursor:pointer;z-index:1;touch-action:manipulation}.mdc-tab__content{display:flex;align-items:center;justify-content:center;height:inherit;pointer-events:none}.mdc-tab__text-label{transition:150ms color linear;display:inline-block;line-height:1;z-index:2}.mdc-tab--active .mdc-tab__text-label{transition-delay:100ms}._mat-animation-noopable .mdc-tab__text-label{transition:none}.mdc-tab-indicator{display:flex;position:absolute;top:0;left:0;justify-content:center;width:100%;height:100%;pointer-events:none;z-index:1}.mdc-tab-indicator__content{transition:var(--mat-tab-animation-duration, 250ms) transform cubic-bezier(0.4, 0, 0.2, 1);transform-origin:left;opacity:0}.mdc-tab-indicator__content--underline{align-self:flex-end;box-sizing:border-box;width:100%;border-top-style:solid}.mdc-tab-indicator--active .mdc-tab-indicator__content{opacity:1}._mat-animation-noopable .mdc-tab-indicator__content,.mdc-tab-indicator--no-transition .mdc-tab-indicator__content{transition:none}.mat-mdc-tab-ripple.mat-mdc-tab-ripple{position:absolute;top:0;left:0;bottom:0;right:0;pointer-events:none}.mat-mdc-tab{-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none;background:none;height:var(--mat-tab-container-height, 48px);font-family:var(--mat-tab-label-text-font, var(--mat-sys-title-small-font));font-size:var(--mat-tab-label-text-size, var(--mat-sys-title-small-size));letter-spacing:var(--mat-tab-label-text-tracking, var(--mat-sys-title-small-tracking));line-height:var(--mat-tab-label-text-line-height, var(--mat-sys-title-small-line-height));font-weight:var(--mat-tab-label-text-weight, var(--mat-sys-title-small-weight))}.mat-mdc-tab.mdc-tab{flex-grow:0}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-indicator-color, var(--mat-sys-primary));border-top-width:var(--mat-tab-active-indicator-height, 2px);border-radius:var(--mat-tab-active-indicator-shape, 0)}.mat-mdc-tab:hover .mdc-tab__text-label{color:var(--mat-tab-inactive-hover-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab:focus .mdc-tab__text-label{color:var(--mat-tab-inactive-focus-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab.mdc-tab--active .mdc-tab__text-label{color:var(--mat-tab-active-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab.mdc-tab--active .mdc-tab__ripple::before,.mat-mdc-tab.mdc-tab--active .mat-ripple-element{background-color:var(--mat-tab-active-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab__text-label{color:var(--mat-tab-active-hover-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-hover-indicator-color, var(--mat-sys-primary))}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab__text-label{color:var(--mat-tab-active-focus-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-focus-indicator-color, var(--mat-sys-primary))}.mat-mdc-tab.mat-mdc-tab-disabled{opacity:.4;pointer-events:none}.mat-mdc-tab.mat-mdc-tab-disabled .mdc-tab__content{pointer-events:none}.mat-mdc-tab.mat-mdc-tab-disabled .mdc-tab__ripple::before,.mat-mdc-tab.mat-mdc-tab-disabled .mat-ripple-element{background-color:var(--mat-tab-disabled-ripple-color, var(--mat-sys-on-surface-variant))}.mat-mdc-tab .mdc-tab__ripple::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;pointer-events:none;background-color:var(--mat-tab-inactive-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab .mdc-tab__text-label{color:var(--mat-tab-inactive-label-text-color, var(--mat-sys-on-surface));display:inline-flex;align-items:center}.mat-mdc-tab .mdc-tab__content{position:relative;pointer-events:auto}.mat-mdc-tab:hover .mdc-tab__ripple::before{opacity:.04}.mat-mdc-tab.cdk-program-focused .mdc-tab__ripple::before,.mat-mdc-tab.cdk-keyboard-focused .mdc-tab__ripple::before{opacity:.12}.mat-mdc-tab .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-inactive-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs>.mat-mdc-tab-header .mat-mdc-tab{flex-grow:1}.mat-mdc-tab-group{display:flex;flex-direction:column;max-width:100%}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination{background-color:var(--mat-tab-background-color)}.mat-mdc-tab-group.mat-tabs-with-background.mat-primary>.mat-mdc-tab-header .mat-mdc-tab .mdc-tab__text-label{color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background.mat-primary>.mat-mdc-tab-header .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-header .mat-mdc-tab:not(.mdc-tab--active) .mdc-tab__text-label{color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-header .mat-mdc-tab:not(.mdc-tab--active) .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-focus-indicator::before,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-focus-indicator::before{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-ripple-element,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mdc-tab__ripple::before,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mdc-tab__ripple::before{background-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron{color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-mdc-tab-group-inverted-header{flex-direction:column-reverse}.mat-mdc-tab-group.mat-mdc-tab-group-inverted-header .mdc-tab-indicator__content--underline{align-self:flex-start}.mat-mdc-tab-body-wrapper{position:relative;overflow:hidden;display:flex;transition:height 500ms cubic-bezier(0.35, 0, 0.25, 1)}.mat-mdc-tab-body-wrapper._mat-animation-noopable{transition:none !important;animation:none !important}\n'],encapsulation:2})}return qe})();class Se{index;tab}let ge=(()=>{class qe extends kn{_focusedItem=(0,L.vPA)(null);get fitInkBarToContent(){return this._fitInkBarToContent.value}set fitInkBarToContent(Je){this._fitInkBarToContent.next(Je),this._changeDetectorRef.markForCheck()}_fitInkBarToContent=new Ce.t(!1);stretchTabs=!0;get animationDuration(){return this._animationDuration}set animationDuration(Je){const Be=Je+"";this._animationDuration=/^\d+$/.test(Be)?Je+"ms":Be}_animationDuration;_items;get backgroundColor(){return this._backgroundColor}set backgroundColor(Je){const Be=this._elementRef.nativeElement.classList;Be.remove("mat-tabs-with-background",`mat-background-${this.backgroundColor}`),Je&&Be.add("mat-tabs-with-background",`mat-background-${Je}`),this._backgroundColor=Je}_backgroundColor;get disableRipple(){return this._disableRipple()}set disableRipple(Je){this._disableRipple.set(Je)}_disableRipple=(0,L.vPA)(!1);color="primary";tabPanel;_tabListContainer;_tabList;_tabListInner;_nextPaginator;_previousPaginator;_inkBar;constructor(){const Je=(0,L.WQX)(vt,{optional:!0});super(),this.disablePagination=!(!Je||null==Je.disablePagination)&&Je.disablePagination,this.fitInkBarToContent=!(!Je||null==Je.fitInkBarToContent)&&Je.fitInkBarToContent,this.stretchTabs=!Je||null==Je.stretchTabs||Je.stretchTabs}_itemSelected(){}ngAfterContentInit(){this._inkBar=new Ue(this._items),this._items.changes.pipe((0,ce.Z)(null),(0,ne.Q)(this._destroyed)).subscribe(()=>this.updateActiveLink()),super.ngAfterContentInit(),this._keyManager.change.pipe((0,ce.Z)(null),(0,ne.Q)(this._destroyed)).subscribe(()=>this._focusedItem.set(this._keyManager?.activeItem||null))}ngAfterViewInit(){super.ngAfterViewInit()}updateActiveLink(){if(!this._items)return;const Je=this._items.toArray();for(let Be=0;Be.mat-mdc-tab-link-container .mat-mdc-tab-links{justify-content:center}[mat-align-tabs=end]>.mat-mdc-tab-link-container .mat-mdc-tab-links{justify-content:flex-end}.cdk-drop-list .mat-mdc-tab-links,.mat-mdc-tab-links.cdk-drop-list{min-height:var(--mat-tab-container-height, 48px)}.mat-mdc-tab-link-container{display:flex;flex-grow:1;overflow:hidden;z-index:1;border-bottom-style:solid;border-bottom-width:var(--mat-tab-divider-height, 1px);border-bottom-color:var(--mat-tab-divider-color, var(--mat-sys-surface-variant))}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination{background-color:var(--mat-tab-background-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background.mat-primary>.mat-mdc-tab-link-container .mat-mdc-tab-link .mdc-tab__text-label{color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background.mat-primary>.mat-mdc-tab-link-container .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-link-container .mat-mdc-tab-link:not(.mdc-tab--active) .mdc-tab__text-label{color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-link-container .mat-mdc-tab-link:not(.mdc-tab--active) .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-focus-indicator::before,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-focus-indicator::before{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mdc-tab__ripple::before,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mdc-tab__ripple::before{background-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron{color:var(--mat-tab-foreground-color)}\n"],encapsulation:2})}return qe})(),N=(()=>{class qe extends wt{_tabNavBar=(0,L.WQX)(ge);elementRef=(0,L.WQX)(C.aKT);_focusMonitor=(0,L.WQX)(i.FN);_destroyed=new le.B;_isActive=!1;_tabIndex=(0,A.EW)(()=>this._tabNavBar._focusedItem()===this?this.tabIndex:-1);get active(){return this._isActive}set active(Je){Je!==this._isActive&&(this._isActive=Je,this._tabNavBar.updateActiveLink())}disabled=!1;get disableRipple(){return this._disableRipple()}set disableRipple(Je){this._disableRipple.set(Je)}_disableRipple=(0,L.vPA)(!1);tabIndex=0;rippleConfig;get rippleDisabled(){return this.disabled||this.disableRipple||this._tabNavBar.disableRipple||!!this.rippleConfig.disabled}id=(0,L.WQX)(d.g).getId("mat-tab-link-");constructor(){super(),(0,L.WQX)(Re.l).load(Xe.A);const Je=(0,L.WQX)(he.$E,{optional:!0}),Be=(0,L.WQX)(new B.ES_("tabindex"),{optional:!0});this.rippleConfig=Je||{},this.tabIndex=null==Be?0:parseInt(Be)||0,(0,J.Rc)()&&(this.rippleConfig.animation={enterDuration:0,exitDuration:0}),this._tabNavBar._fitInkBarToContent.pipe((0,ne.Q)(this._destroyed)).subscribe(ut=>{this.fitInkBarToContent=ut})}focus(){this.elementRef.nativeElement.focus()}ngAfterViewInit(){this._focusMonitor.monitor(this.elementRef)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete(),super.ngOnDestroy(),this._focusMonitor.stopMonitoring(this.elementRef)}_handleFocus(){this._tabNavBar.focusIndex=this._tabNavBar._items.toArray().indexOf(this)}_handleKeydown(Je){(Je.keyCode===e.t6||Je.keyCode===e.Fm)&&(this.disabled?Je.preventDefault():this._tabNavBar.tabPanel&&(Je.keyCode===e.t6&&Je.preventDefault(),this.elementRef.nativeElement.click()))}_getAriaControls(){return this._tabNavBar.tabPanel?this._tabNavBar.tabPanel?.id:this.elementRef.nativeElement.getAttribute("aria-controls")}_getAriaSelected(){return this._tabNavBar.tabPanel?this.active?"true":"false":this.elementRef.nativeElement.getAttribute("aria-selected")}_getAriaCurrent(){return this.active&&!this._tabNavBar.tabPanel?"page":null}_getRole(){return this._tabNavBar.tabPanel?"tab":this.elementRef.nativeElement.getAttribute("role")}static \u0275fac=function(Be){return new(Be||qe)};static \u0275cmp=C.VBU({type:qe,selectors:[["","mat-tab-link",""],["","matTabLink",""]],hostAttrs:[1,"mdc-tab","mat-mdc-tab-link","mat-focus-indicator"],hostVars:11,hostBindings:function(Be,ut){1&Be&&C.bIt("focus",function(){return ut._handleFocus()})("keydown",function(Ot){return ut._handleKeydown(Ot)}),2&Be&&(C.BMQ("aria-controls",ut._getAriaControls())("aria-current",ut._getAriaCurrent())("aria-disabled",ut.disabled)("aria-selected",ut._getAriaSelected())("id",ut.id)("tabIndex",ut._tabIndex())("role",ut._getRole()),C.AVh("mat-mdc-tab-disabled",ut.disabled)("mdc-tab--active",ut.active))},inputs:{active:[2,"active","active",B.L39],disabled:[2,"disabled","disabled",B.L39],disableRipple:[2,"disableRipple","disableRipple",B.L39],tabIndex:[2,"tabIndex","tabIndex",Je=>null==Je?0:(0,B.Udg)(Je)],id:"id"},exportAs:["matTabLink"],features:[C.Vt3],attrs:Qe,ngContentSelectors:lt,decls:5,vars:2,consts:[[1,"mdc-tab__ripple"],["mat-ripple","",1,"mat-mdc-tab-ripple",3,"matRippleTrigger","matRippleDisabled"],[1,"mdc-tab__content"],[1,"mdc-tab__text-label"]],template:function(Be,ut){1&Be&&(C.NAR(),C.nrm(0,"span",0)(1,"div",1),C.j41(2,"span",2)(3,"span",3),C.SdG(4),C.k0s()()),2&Be&&(C.R7$(),C.Y8G("matRippleTrigger",ut.elementRef.nativeElement)("matRippleDisabled",ut.rippleDisabled))},dependencies:[he.r6],styles:['.mat-mdc-tab-link{-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none;background:none;height:var(--mat-tab-container-height, 48px);font-family:var(--mat-tab-label-text-font, var(--mat-sys-title-small-font));font-size:var(--mat-tab-label-text-size, var(--mat-sys-title-small-size));letter-spacing:var(--mat-tab-label-text-tracking, var(--mat-sys-title-small-tracking));line-height:var(--mat-tab-label-text-line-height, var(--mat-sys-title-small-line-height));font-weight:var(--mat-tab-label-text-weight, var(--mat-sys-title-small-weight))}.mat-mdc-tab-link.mdc-tab{flex-grow:0}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-indicator-color, var(--mat-sys-primary));border-top-width:var(--mat-tab-active-indicator-height, 2px);border-radius:var(--mat-tab-active-indicator-shape, 0)}.mat-mdc-tab-link:hover .mdc-tab__text-label{color:var(--mat-tab-inactive-hover-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link:focus .mdc-tab__text-label{color:var(--mat-tab-inactive-focus-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link.mdc-tab--active .mdc-tab__text-label{color:var(--mat-tab-active-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link.mdc-tab--active .mdc-tab__ripple::before,.mat-mdc-tab-link.mdc-tab--active .mat-ripple-element{background-color:var(--mat-tab-active-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link.mdc-tab--active:hover .mdc-tab__text-label{color:var(--mat-tab-active-hover-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link.mdc-tab--active:hover .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-hover-indicator-color, var(--mat-sys-primary))}.mat-mdc-tab-link.mdc-tab--active:focus .mdc-tab__text-label{color:var(--mat-tab-active-focus-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link.mdc-tab--active:focus .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-focus-indicator-color, var(--mat-sys-primary))}.mat-mdc-tab-link.mat-mdc-tab-disabled{opacity:.4;pointer-events:none}.mat-mdc-tab-link.mat-mdc-tab-disabled .mdc-tab__content{pointer-events:none}.mat-mdc-tab-link.mat-mdc-tab-disabled .mdc-tab__ripple::before,.mat-mdc-tab-link.mat-mdc-tab-disabled .mat-ripple-element{background-color:var(--mat-tab-disabled-ripple-color, var(--mat-sys-on-surface-variant))}.mat-mdc-tab-link .mdc-tab__ripple::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;pointer-events:none;background-color:var(--mat-tab-inactive-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link .mdc-tab__text-label{color:var(--mat-tab-inactive-label-text-color, var(--mat-sys-on-surface));display:inline-flex;align-items:center}.mat-mdc-tab-link .mdc-tab__content{position:relative;pointer-events:auto}.mat-mdc-tab-link:hover .mdc-tab__ripple::before{opacity:.04}.mat-mdc-tab-link.cdk-program-focused .mdc-tab__ripple::before,.mat-mdc-tab-link.cdk-keyboard-focused .mdc-tab__ripple::before{opacity:.12}.mat-mdc-tab-link .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-inactive-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab-header.mat-mdc-tab-nav-bar-stretch-tabs .mat-mdc-tab-link{flex-grow:1}.mat-mdc-tab-link::before{margin:5px}@media(max-width: 599px){.mat-mdc-tab-link{min-width:72px}}\n'],encapsulation:2,changeDetection:0})}return qe})(),Z=(()=>{class qe{id=(0,L.WQX)(d.g).getId("mat-tab-nav-panel-");_activeTabId;static \u0275fac=function(Be){return new(Be||qe)};static \u0275cmp=C.VBU({type:qe,selectors:[["mat-tab-nav-panel"]],hostAttrs:["role","tabpanel",1,"mat-mdc-tab-nav-panel"],hostVars:2,hostBindings:function(Be,ut){2&Be&&C.BMQ("aria-labelledby",ut._activeTabId)("id",ut.id)},inputs:{id:"id"},exportAs:["matTabNavPanel"],ngContentSelectors:lt,decls:1,vars:0,template:function(Be,ut){1&Be&&(C.NAR(),C.SdG(0))},encapsulation:2,changeDetection:0})}return qe})(),Me=(()=>{class qe{static \u0275fac=function(Be){return new(Be||qe)};static \u0275mod=C.$C({type:qe});static \u0275inj=L.G2t({imports:[Dt.y,Dt.y]})}return qe})()},5911(Zt,pe,l){"use strict";l.d(pe,{KQ:()=>f,s5:()=>L});var i=l(2615),d=l(3664),v=l(9842),T=l(2466);const w=["*",[["mat-toolbar-row"]]],e=["*","mat-toolbar-row"];let O=(()=>{class C{static \u0275fac=function(Pe){return new(Pe||C)};static \u0275dir=d.FsC({type:C,selectors:[["mat-toolbar-row"]],hostAttrs:[1,"mat-toolbar-row"],exportAs:["matToolbarRow"]})}return C})(),f=(()=>{class C{_elementRef=(0,i.WQX)(d.aKT);_platform=(0,i.WQX)(v.O);_document=(0,i.WQX)(i.qQL);color;_toolbarRows;constructor(){}ngAfterViewInit(){this._platform.isBrowser&&(this._checkToolbarMixedModes(),this._toolbarRows.changes.subscribe(()=>this._checkToolbarMixedModes()))}_checkToolbarMixedModes(){}static \u0275fac=function(Pe){return new(Pe||C)};static \u0275cmp=d.VBU({type:C,selectors:[["mat-toolbar"]],contentQueries:function(Pe,le,Ce){if(1&Pe&&d.wni(Ce,O,5),2&Pe){let Ae;d.mGM(Ae=d.lsd())&&(le._toolbarRows=Ae)}},hostAttrs:[1,"mat-toolbar"],hostVars:6,hostBindings:function(Pe,le){2&Pe&&(d.HbH(le.color?"mat-"+le.color:""),d.AVh("mat-toolbar-multiple-rows",le._toolbarRows.length>0)("mat-toolbar-single-row",0===le._toolbarRows.length))},inputs:{color:"color"},exportAs:["matToolbar"],ngContentSelectors:e,decls:2,vars:0,template:function(Pe,le){1&Pe&&(d.NAR(w),d.SdG(0),d.SdG(1,1))},styles:[".mat-toolbar{background:var(--mat-toolbar-container-background-color, var(--mat-sys-surface));color:var(--mat-toolbar-container-text-color, var(--mat-sys-on-surface))}.mat-toolbar,.mat-toolbar h1,.mat-toolbar h2,.mat-toolbar h3,.mat-toolbar h4,.mat-toolbar h5,.mat-toolbar h6{font-family:var(--mat-toolbar-title-text-font, var(--mat-sys-title-large-font));font-size:var(--mat-toolbar-title-text-size, var(--mat-sys-title-large-size));line-height:var(--mat-toolbar-title-text-line-height, var(--mat-sys-title-large-line-height));font-weight:var(--mat-toolbar-title-text-weight, var(--mat-sys-title-large-weight));letter-spacing:var(--mat-toolbar-title-text-tracking, var(--mat-sys-title-large-tracking));margin:0}@media(forced-colors: active){.mat-toolbar{outline:solid 1px}}.mat-toolbar .mat-form-field-underline,.mat-toolbar .mat-form-field-ripple,.mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.mat-toolbar .mat-form-field-label,.mat-toolbar .mat-focused .mat-form-field-label,.mat-toolbar .mat-select-value,.mat-toolbar .mat-select-arrow,.mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.mat-toolbar .mat-input-element{caret-color:currentColor}.mat-toolbar .mat-mdc-button-base.mat-mdc-button-base.mat-unthemed{--mat-button-text-label-text-color: var(--mat-toolbar-container-text-color, var(--mat-sys-on-surface));--mat-button-outlined-label-text-color: var(--mat-toolbar-container-text-color, var(--mat-sys-on-surface))}.mat-toolbar-row,.mat-toolbar-single-row{display:flex;box-sizing:border-box;padding:0 16px;width:100%;flex-direction:row;align-items:center;white-space:nowrap;height:var(--mat-toolbar-standard-height, 64px)}@media(max-width: 599px){.mat-toolbar-row,.mat-toolbar-single-row{height:var(--mat-toolbar-mobile-height, 56px)}}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%;min-height:var(--mat-toolbar-standard-height, 64px)}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:var(--mat-toolbar-mobile-height, 56px)}}\n"],encapsulation:2,changeDetection:0})}return C})(),L=(()=>{class C{static \u0275fac=function(Pe){return new(Pe||C)};static \u0275mod=d.$C({type:C});static \u0275inj=i.G2t({imports:[T.y,T.y]})}return C})()},6156(Zt,pe,l){"use strict";l.d(pe,{u:()=>f});var i=l(2615),d=l(3664),v=l(7094),T=l(9338),w=l(5718),e=l(455),O=l(2466);let f=(()=>{class u{static \u0275fac=function(B){return new(B||u)};static \u0275mod=d.$C({type:u});static \u0275inj=i.G2t({providers:[e.YZ],imports:[v.Pd,T.z_,O.y,O.y,w.Gj]})}return u})()},455(Zt,pe,l){"use strict";l.d(pe,{YZ:()=>ce,oV:()=>lt});var i=l(6977),d=l(4085),v=l(7847),T=l(7336),w=l(438),e=l(2615),O=l(3664),f=l(7705),u=l(2200),L=l(9842),C=l(3300),B=l(8617),A=l(6838),Pe=l(1577),le=l(9338),Ce=l(5718),Ae=l(6939),j=l(1413),W=l(1804);const G=["tooltip"],Ee=new e.nKC("mat-tooltip-scroll-strategy",{providedIn:"root",factory:()=>{const te=(0,e.WQX)(e.zZn);return()=>(0,le.RH)(te,{scrollThrottle:20})}}),ce={provide:Ee,deps:[],useFactory:function V(te){const ie=(0,e.WQX)(e.zZn);return()=>(0,le.RH)(ie,{scrollThrottle:20})}},ne=new e.nKC("mat-tooltip-default-options",{providedIn:"root",factory:function be(){return{showDelay:0,hideDelay:0,touchendHideDelay:1500}}}),De="tooltip-panel",Re=(0,C.B)({passive:!0});let lt=(()=>{class te{_elementRef=(0,e.WQX)(O.aKT);_ngZone=(0,e.WQX)(O.SKi);_platform=(0,e.WQX)(L.O);_ariaDescriber=(0,e.WQX)(B.vr);_focusMonitor=(0,e.WQX)(A.FN);_dir=(0,e.WQX)(Pe.dS);_injector=(0,e.WQX)(e.zZn);_viewContainerRef=(0,e.WQX)(O.c1b);_animationsDisabled=(0,W.Rc)();_defaultOptions=(0,e.WQX)(ne,{optional:!0});_overlayRef;_tooltipInstance;_overlayPanelClass;_portal;_position="below";_positionAtOrigin=!1;_disabled=!1;_tooltipClass;_viewInitialized=!1;_pointerExitEventsInitialized=!1;_tooltipComponent=Le;_viewportMargin=8;_currentPosition;_cssClassPrefix="mat-mdc";_ariaDescriptionPending;_dirSubscribed=!1;get position(){return this._position}set position(P){P!==this._position&&(this._position=P,this._overlayRef&&(this._updatePosition(this._overlayRef),this._tooltipInstance?.show(0),this._overlayRef.updatePosition()))}get positionAtOrigin(){return this._positionAtOrigin}set positionAtOrigin(P){this._positionAtOrigin=(0,d.he)(P),this._detach(),this._overlayRef=null}get disabled(){return this._disabled}set disabled(P){const F=(0,d.he)(P);this._disabled!==F&&(this._disabled=F,F?this.hide(0):this._setupPointerEnterEventsIfNeeded(),this._syncAriaDescription(this.message))}get showDelay(){return this._showDelay}set showDelay(P){this._showDelay=(0,v.OE)(P)}_showDelay;get hideDelay(){return this._hideDelay}set hideDelay(P){this._hideDelay=(0,v.OE)(P),this._tooltipInstance&&(this._tooltipInstance._mouseLeaveHideDelay=this._hideDelay)}_hideDelay;touchGestures="auto";get message(){return this._message}set message(P){const F=this._message;this._message=null!=P?String(P).trim():"",!this._message&&this._isTooltipVisible()?this.hide(0):(this._setupPointerEnterEventsIfNeeded(),this._updateTooltipMessage()),this._syncAriaDescription(F)}_message="";get tooltipClass(){return this._tooltipClass}set tooltipClass(P){this._tooltipClass=P,this._tooltipInstance&&this._setTooltipClass(this._tooltipClass)}_passiveListeners=[];_touchstartTimeout=null;_destroyed=new j.B;_isDestroyed=!1;constructor(){const P=this._defaultOptions;P&&(this._showDelay=P.showDelay,this._hideDelay=P.hideDelay,P.position&&(this.position=P.position),P.positionAtOrigin&&(this.positionAtOrigin=P.positionAtOrigin),P.touchGestures&&(this.touchGestures=P.touchGestures),P.tooltipClass&&(this.tooltipClass=P.tooltipClass)),this._viewportMargin=8}ngAfterViewInit(){this._viewInitialized=!0,this._setupPointerEnterEventsIfNeeded(),this._focusMonitor.monitor(this._elementRef).pipe((0,i.Q)(this._destroyed)).subscribe(P=>{P?"keyboard"===P&&this._ngZone.run(()=>this.show()):this._ngZone.run(()=>this.hide(0))})}ngOnDestroy(){const P=this._elementRef.nativeElement;this._touchstartTimeout&&clearTimeout(this._touchstartTimeout),this._overlayRef&&(this._overlayRef.dispose(),this._tooltipInstance=null),this._passiveListeners.forEach(([F,ve])=>{P.removeEventListener(F,ve,Re)}),this._passiveListeners.length=0,this._destroyed.next(),this._destroyed.complete(),this._isDestroyed=!0,this._ariaDescriber.removeDescription(P,this.message,"tooltip"),this._focusMonitor.stopMonitoring(P)}show(P=this.showDelay,F){if(this.disabled||!this.message||this._isTooltipVisible())return void this._tooltipInstance?._cancelPendingAnimations();const ve=this._createOverlay(F);this._detach(),this._portal=this._portal||new Ae.A8(this._tooltipComponent,this._viewContainerRef);const H=this._tooltipInstance=ve.attach(this._portal).instance;H._triggerElement=this._elementRef.nativeElement,H._mouseLeaveHideDelay=this._hideDelay,H.afterHidden().pipe((0,i.Q)(this._destroyed)).subscribe(()=>this._detach()),this._setTooltipClass(this._tooltipClass),this._updateTooltipMessage(),H.show(P)}hide(P=this.hideDelay){const F=this._tooltipInstance;F&&(F.isVisible()?F.hide(P):(F._cancelPendingAnimations(),this._detach()))}toggle(P){this._isTooltipVisible()?this.hide():this.show(void 0,P)}_isTooltipVisible(){return!!this._tooltipInstance&&this._tooltipInstance.isVisible()}_createOverlay(P){if(this._overlayRef){const $=this._overlayRef.getConfig().positionStrategy;if((!this.positionAtOrigin||!P)&&$._origin instanceof O.aKT)return this._overlayRef;this._detach()}const F=this._injector.get(Ce.R).getAncestorScrollContainers(this._elementRef),ve=`${this._cssClassPrefix}-${De}`,H=(0,le.$M)(this._injector,this.positionAtOrigin&&P||this._elementRef).withTransformOriginOn(`.${this._cssClassPrefix}-tooltip`).withFlexibleDimensions(!1).withViewportMargin(this._viewportMargin).withScrollableContainers(F);return H.positionChanges.pipe((0,i.Q)(this._destroyed)).subscribe($=>{this._updateCurrentPositionClass($.connectionPair),this._tooltipInstance&&$.scrollableViewProperties.isOverlayClipped&&this._tooltipInstance.isVisible()&&this._ngZone.run(()=>this.hide(0))}),this._overlayRef=(0,le.Y$)(this._injector,{direction:this._dir,positionStrategy:H,panelClass:this._overlayPanelClass?[...this._overlayPanelClass,ve]:ve,scrollStrategy:this._injector.get(Ee)(),disableAnimations:this._animationsDisabled}),this._updatePosition(this._overlayRef),this._overlayRef.detachments().pipe((0,i.Q)(this._destroyed)).subscribe(()=>this._detach()),this._overlayRef.outsidePointerEvents().pipe((0,i.Q)(this._destroyed)).subscribe(()=>this._tooltipInstance?._handleBodyInteraction()),this._overlayRef.keydownEvents().pipe((0,i.Q)(this._destroyed)).subscribe($=>{this._isTooltipVisible()&&$.keyCode===w._f&&!(0,T.rp)($)&&($.preventDefault(),$.stopPropagation(),this._ngZone.run(()=>this.hide(0)))}),this._defaultOptions?.disableTooltipInteractivity&&this._overlayRef.addPanelClass(`${this._cssClassPrefix}-tooltip-panel-non-interactive`),this._dirSubscribed||(this._dirSubscribed=!0,this._dir.change.pipe((0,i.Q)(this._destroyed)).subscribe(()=>{this._overlayRef&&this._updatePosition(this._overlayRef)})),this._overlayRef}_detach(){this._overlayRef&&this._overlayRef.hasAttached()&&this._overlayRef.detach(),this._tooltipInstance=null}_updatePosition(P){const F=P.getConfig().positionStrategy,ve=this._getOrigin(),H=this._getOverlayPosition();F.withPositions([this._addOffset({...ve.main,...H.main}),this._addOffset({...ve.fallback,...H.fallback})])}_addOffset(P){const ve=!this._dir||"ltr"==this._dir.value;return"top"===P.originY?P.offsetY=-8:"bottom"===P.originY?P.offsetY=8:"start"===P.originX?P.offsetX=ve?-8:8:"end"===P.originX&&(P.offsetX=ve?8:-8),P}_getOrigin(){const P=!this._dir||"ltr"==this._dir.value,F=this.position;let ve;"above"==F||"below"==F?ve={originX:"center",originY:"above"==F?"top":"bottom"}:"before"==F||"left"==F&&P||"right"==F&&!P?ve={originX:"start",originY:"center"}:("after"==F||"right"==F&&P||"left"==F&&!P)&&(ve={originX:"end",originY:"center"});const{x:H,y:$}=this._invertPosition(ve.originX,ve.originY);return{main:ve,fallback:{originX:H,originY:$}}}_getOverlayPosition(){const P=!this._dir||"ltr"==this._dir.value,F=this.position;let ve;"above"==F?ve={overlayX:"center",overlayY:"bottom"}:"below"==F?ve={overlayX:"center",overlayY:"top"}:"before"==F||"left"==F&&P||"right"==F&&!P?ve={overlayX:"end",overlayY:"center"}:("after"==F||"right"==F&&P||"left"==F&&!P)&&(ve={overlayX:"start",overlayY:"center"});const{x:H,y:$}=this._invertPosition(ve.overlayX,ve.overlayY);return{main:ve,fallback:{overlayX:H,overlayY:$}}}_updateTooltipMessage(){this._tooltipInstance&&(this._tooltipInstance.message=this.message,this._tooltipInstance._markForCheck(),(0,O.mal)(()=>{this._tooltipInstance&&this._overlayRef.updatePosition()},{injector:this._injector}))}_setTooltipClass(P){this._tooltipInstance&&(this._tooltipInstance.tooltipClass=P,this._tooltipInstance._markForCheck())}_invertPosition(P,F){return"above"===this.position||"below"===this.position?"top"===F?F="bottom":"bottom"===F&&(F="top"):"end"===P?P="start":"start"===P&&(P="end"),{x:P,y:F}}_updateCurrentPositionClass(P){const{overlayY:F,originX:ve,originY:H}=P;let $;if($="center"===F?this._dir&&"rtl"===this._dir.value?"end"===ve?"left":"right":"start"===ve?"left":"right":"bottom"===F&&"top"===H?"above":"below",$!==this._currentPosition){const Ke=this._overlayRef;if(Ke){const Vt=`${this._cssClassPrefix}-${De}-`;Ke.removePanelClass(Vt+this._currentPosition),Ke.addPanelClass(Vt+$)}this._currentPosition=$}}_setupPointerEnterEventsIfNeeded(){this._disabled||!this.message||!this._viewInitialized||this._passiveListeners.length||(this._platformSupportsMouseEvents()?this._passiveListeners.push(["mouseenter",P=>{let F;this._setupPointerExitEventsIfNeeded(),void 0!==P.x&&void 0!==P.y&&(F=P),this.show(void 0,F)}]):"off"!==this.touchGestures&&(this._disableNativeGesturesIfNecessary(),this._passiveListeners.push(["touchstart",P=>{const F=P.targetTouches?.[0],ve=F?{x:F.clientX,y:F.clientY}:void 0;this._setupPointerExitEventsIfNeeded(),this._touchstartTimeout&&clearTimeout(this._touchstartTimeout),this._touchstartTimeout=setTimeout(()=>{this._touchstartTimeout=null,this.show(void 0,ve)},this._defaultOptions?.touchLongPressShowDelay??500)}])),this._addListeners(this._passiveListeners))}_setupPointerExitEventsIfNeeded(){if(this._pointerExitEventsInitialized)return;this._pointerExitEventsInitialized=!0;const P=[];if(this._platformSupportsMouseEvents())P.push(["mouseleave",F=>{const ve=F.relatedTarget;(!ve||!this._overlayRef?.overlayElement.contains(ve))&&this.hide()}],["wheel",F=>this._wheelListener(F)]);else if("off"!==this.touchGestures){this._disableNativeGesturesIfNecessary();const F=()=>{this._touchstartTimeout&&clearTimeout(this._touchstartTimeout),this.hide(this._defaultOptions?.touchendHideDelay)};P.push(["touchend",F],["touchcancel",F])}this._addListeners(P),this._passiveListeners.push(...P)}_addListeners(P){P.forEach(([F,ve])=>{this._elementRef.nativeElement.addEventListener(F,ve,Re)})}_platformSupportsMouseEvents(){return!this._platform.IOS&&!this._platform.ANDROID}_wheelListener(P){if(this._isTooltipVisible()){const F=this._injector.get(e.qQL).elementFromPoint(P.clientX,P.clientY),ve=this._elementRef.nativeElement;F!==ve&&!ve.contains(F)&&this.hide()}}_disableNativeGesturesIfNecessary(){const P=this.touchGestures;if("off"!==P){const F=this._elementRef.nativeElement,ve=F.style;("on"===P||"INPUT"!==F.nodeName&&"TEXTAREA"!==F.nodeName)&&(ve.userSelect=ve.msUserSelect=ve.webkitUserSelect=ve.MozUserSelect="none"),("on"===P||!F.draggable)&&(ve.webkitUserDrag="none"),ve.touchAction="none",ve.webkitTapHighlightColor="transparent"}}_syncAriaDescription(P){this._ariaDescriptionPending||(this._ariaDescriptionPending=!0,this._ariaDescriber.removeDescription(this._elementRef.nativeElement,P,"tooltip"),this._isDestroyed||(0,O.mal)({write:()=>{this._ariaDescriptionPending=!1,this.message&&!this.disabled&&this._ariaDescriber.describe(this._elementRef.nativeElement,this.message,"tooltip")}},{injector:this._injector}))}static \u0275fac=function(F){return new(F||te)};static \u0275dir=O.FsC({type:te,selectors:[["","matTooltip",""]],hostAttrs:[1,"mat-mdc-tooltip-trigger"],hostVars:2,hostBindings:function(F,ve){2&F&&O.AVh("mat-mdc-tooltip-disabled",ve.disabled)},inputs:{position:[0,"matTooltipPosition","position"],positionAtOrigin:[0,"matTooltipPositionAtOrigin","positionAtOrigin"],disabled:[0,"matTooltipDisabled","disabled"],showDelay:[0,"matTooltipShowDelay","showDelay"],hideDelay:[0,"matTooltipHideDelay","hideDelay"],touchGestures:[0,"matTooltipTouchGestures","touchGestures"],message:[0,"matTooltip","message"],tooltipClass:[0,"matTooltipClass","tooltipClass"]},exportAs:["matTooltip"]})}return te})(),Le=(()=>{class te{_changeDetectorRef=(0,e.WQX)(f.gRc);_elementRef=(0,e.WQX)(O.aKT);_isMultiline=!1;message;tooltipClass;_showTimeoutId;_hideTimeoutId;_triggerElement;_mouseLeaveHideDelay;_animationsDisabled=(0,W.Rc)();_tooltip;_closeOnInteraction=!1;_isVisible=!1;_onHide=new j.B;_showAnimation="mat-mdc-tooltip-show";_hideAnimation="mat-mdc-tooltip-hide";constructor(){}show(P){null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=setTimeout(()=>{this._toggleVisibility(!0),this._showTimeoutId=void 0},P)}hide(P){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),this._hideTimeoutId=setTimeout(()=>{this._toggleVisibility(!1),this._hideTimeoutId=void 0},P)}afterHidden(){return this._onHide}isVisible(){return this._isVisible}ngOnDestroy(){this._cancelPendingAnimations(),this._onHide.complete(),this._triggerElement=null}_handleBodyInteraction(){this._closeOnInteraction&&this.hide(0)}_markForCheck(){this._changeDetectorRef.markForCheck()}_handleMouseLeave({relatedTarget:P}){(!P||!this._triggerElement.contains(P))&&(this.isVisible()?this.hide(this._mouseLeaveHideDelay):this._finalizeAnimation(!1))}_onShow(){this._isMultiline=this._isTooltipMultiline(),this._markForCheck()}_isTooltipMultiline(){const P=this._elementRef.nativeElement.getBoundingClientRect();return P.height>24&&P.width>=200}_handleAnimationEnd({animationName:P}){(P===this._showAnimation||P===this._hideAnimation)&&this._finalizeAnimation(P===this._showAnimation)}_cancelPendingAnimations(){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=this._hideTimeoutId=void 0}_finalizeAnimation(P){P?this._closeOnInteraction=!0:this.isVisible()||this._onHide.next()}_toggleVisibility(P){const F=this._tooltip.nativeElement,ve=this._showAnimation,H=this._hideAnimation;if(F.classList.remove(P?H:ve),F.classList.add(P?ve:H),this._isVisible!==P&&(this._isVisible=P,this._changeDetectorRef.markForCheck()),P&&!this._animationsDisabled&&"function"==typeof getComputedStyle){const $=getComputedStyle(F);("0s"===$.getPropertyValue("animation-duration")||"none"===$.getPropertyValue("animation-name"))&&(this._animationsDisabled=!0)}P&&this._onShow(),this._animationsDisabled&&(F.classList.add("_mat-animation-noopable"),this._finalizeAnimation(P))}static \u0275fac=function(F){return new(F||te)};static \u0275cmp=O.VBU({type:te,selectors:[["mat-tooltip-component"]],viewQuery:function(F,ve){if(1&F&&O.GBs(G,7),2&F){let H;O.mGM(H=O.lsd())&&(ve._tooltip=H.first)}},hostAttrs:["aria-hidden","true"],hostBindings:function(F,ve){1&F&&O.bIt("mouseleave",function($){return ve._handleMouseLeave($)})},decls:4,vars:4,consts:[["tooltip",""],[1,"mdc-tooltip","mat-mdc-tooltip",3,"animationend","ngClass"],[1,"mat-mdc-tooltip-surface","mdc-tooltip__surface"]],template:function(F,ve){if(1&F){const H=O.RV6();O.j41(0,"div",1,0),O.bIt("animationend",function(Ke){return e.eBV(H),e.Njj(ve._handleAnimationEnd(Ke))}),O.j41(2,"div",2),O.EFF(3),O.k0s()()}2&F&&(O.AVh("mdc-tooltip--multiline",ve._isMultiline),O.Y8G("ngClass",ve.tooltipClass),O.R7$(3),O.JRh(ve.message))},dependencies:[u.YU],styles:['.mat-mdc-tooltip{position:relative;transform:scale(0);display:inline-flex}.mat-mdc-tooltip::before{content:"";top:0;right:0;bottom:0;left:0;z-index:-1;position:absolute}.mat-mdc-tooltip-panel-below .mat-mdc-tooltip::before{top:-8px}.mat-mdc-tooltip-panel-above .mat-mdc-tooltip::before{bottom:-8px}.mat-mdc-tooltip-panel-right .mat-mdc-tooltip::before{left:-8px}.mat-mdc-tooltip-panel-left .mat-mdc-tooltip::before{right:-8px}.mat-mdc-tooltip._mat-animation-noopable{animation:none;transform:scale(1)}.mat-mdc-tooltip-surface{word-break:normal;overflow-wrap:anywhere;padding:4px 8px;min-width:40px;max-width:200px;min-height:24px;max-height:40vh;box-sizing:border-box;overflow:hidden;text-align:center;will-change:transform,opacity;background-color:var(--mat-tooltip-container-color, var(--mat-sys-inverse-surface));color:var(--mat-tooltip-supporting-text-color, var(--mat-sys-inverse-on-surface));border-radius:var(--mat-tooltip-container-shape, var(--mat-sys-corner-extra-small));font-family:var(--mat-tooltip-supporting-text-font, var(--mat-sys-body-small-font));font-size:var(--mat-tooltip-supporting-text-size, var(--mat-sys-body-small-size));font-weight:var(--mat-tooltip-supporting-text-weight, var(--mat-sys-body-small-weight));line-height:var(--mat-tooltip-supporting-text-line-height, var(--mat-sys-body-small-line-height));letter-spacing:var(--mat-tooltip-supporting-text-tracking, var(--mat-sys-body-small-tracking))}.mat-mdc-tooltip-surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}.mdc-tooltip--multiline .mat-mdc-tooltip-surface{text-align:left}[dir=rtl] .mdc-tooltip--multiline .mat-mdc-tooltip-surface{text-align:right}.mat-mdc-tooltip-panel{line-height:normal}.mat-mdc-tooltip-panel.mat-mdc-tooltip-panel-non-interactive{pointer-events:none}@keyframes mat-mdc-tooltip-show{0%{opacity:0;transform:scale(0.8)}100%{opacity:1;transform:scale(1)}}@keyframes mat-mdc-tooltip-hide{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(0.8)}}.mat-mdc-tooltip-show{animation:mat-mdc-tooltip-show 150ms cubic-bezier(0, 0, 0.2, 1) forwards}.mat-mdc-tooltip-hide{animation:mat-mdc-tooltip-hide 75ms cubic-bezier(0.4, 0, 1, 1) forwards}\n'],encapsulation:2,changeDetection:0})}return te})()},7358(Zt,pe,l){"use strict";l.d(pe,{Zh:()=>Ee,d6:()=>B,jH:()=>G,lQ:()=>Ae,pO:()=>j,q1:()=>Pe,wx:()=>Ce,yI:()=>A});var d=l(2279),v=l(2615),T=l(3664),w=l(7705),e=l(2466),O=l(4117),f=l(4412),u=l(7786),L=l(6354);let B=(()=>{class V extends d.xn{get tabIndexInputBinding(){return this._tabIndexInputBinding}set tabIndexInputBinding(be){this._tabIndexInputBinding=be}_tabIndexInputBinding;defaultTabIndex=0;_getTabindexAttribute(){return function C(V){return!!V._isNoopTreeKeyManager}(this._tree._keyManager)?this.tabIndexInputBinding:this._tabindex}get disabled(){return this.isDisabled}set disabled(be){this.isDisabled=be}constructor(){super();const be=(0,v.WQX)(new w.ES_("tabindex"),{optional:!0});this.tabIndexInputBinding=Number(be)||this.defaultTabIndex}ngOnInit(){super.ngOnInit()}ngOnDestroy(){super.ngOnDestroy()}static \u0275fac=function(ne){return new(ne||V)};static \u0275dir=T.FsC({type:V,selectors:[["mat-tree-node"]],hostAttrs:[1,"mat-tree-node"],hostVars:5,hostBindings:function(ne,J){1&ne&&T.bIt("click",function(){return J._focusItem()}),2&ne&&(T.Avn("tabIndex",J._getTabindexAttribute()),T.BMQ("aria-expanded",J._getAriaExpanded())("aria-level",J.level+1)("aria-posinset",J._getPositionInSet())("aria-setsize",J._getSetSize()))},inputs:{tabIndexInputBinding:[2,"tabIndex","tabIndexInputBinding",be=>null==be?0:(0,w.Udg)(be)],disabled:[2,"disabled","disabled",w.L39]},outputs:{activation:"activation",expandedChange:"expandedChange"},exportAs:["matTreeNode"],features:[T.Jv_([{provide:d.xn,useExisting:V}]),T.Vt3]})}return V})(),A=(()=>{class V extends d.Sz{data;static \u0275fac=(()=>{let be;return function(J){return(be||(be=T.xGo(V)))(J||V)}})();static \u0275dir=T.FsC({type:V,selectors:[["","matTreeNodeDef",""]],inputs:{when:[0,"matTreeNodeDefWhen","when"],data:[0,"matTreeNode","data"]},features:[T.Jv_([{provide:d.Sz,useExisting:V}]),T.Vt3]})}return V})(),Pe=(()=>{class V extends d.s3{node;get disabled(){return this.isDisabled}set disabled(be){this.isDisabled=be}get tabIndex(){return this.isDisabled?-1:this._tabIndex}set tabIndex(be){this._tabIndex=be}_tabIndex;ngOnInit(){super.ngOnInit()}ngAfterContentInit(){super.ngAfterContentInit()}ngOnDestroy(){super.ngOnDestroy()}static \u0275fac=(()=>{let be;return function(J){return(be||(be=T.xGo(V)))(J||V)}})();static \u0275dir=T.FsC({type:V,selectors:[["mat-nested-tree-node"]],hostAttrs:[1,"mat-nested-tree-node"],inputs:{node:[0,"matNestedTreeNode","node"],disabled:[2,"disabled","disabled",w.L39],tabIndex:[2,"tabIndex","tabIndex",be=>null==be?0:(0,w.Udg)(be)]},outputs:{activation:"activation",expandedChange:"expandedChange"},exportAs:["matNestedTreeNode"],features:[T.Jv_([{provide:d.s3,useExisting:V},{provide:d.xn,useExisting:V},{provide:d.kZ,useExisting:V}]),T.Vt3]})}return V})(),Ce=(()=>{class V{viewContainer=(0,v.WQX)(T.c1b);_node=(0,v.WQX)(d.kZ,{optional:!0});static \u0275fac=function(ne){return new(ne||V)};static \u0275dir=T.FsC({type:V,selectors:[["","matTreeNodeOutlet",""]],features:[T.Jv_([{provide:d.a$,useExisting:V}])]})}return V})(),Ae=(()=>{class V extends d.NL{_nodeOutlet=void 0;static \u0275fac=(()=>{let be;return function(J){return(be||(be=T.xGo(V)))(J||V)}})();static \u0275cmp=T.VBU({type:V,selectors:[["mat-tree"]],viewQuery:function(ne,J){if(1&ne&&T.GBs(Ce,7),2&ne){let De;T.mGM(De=T.lsd())&&(J._nodeOutlet=De.first)}},hostAttrs:[1,"mat-tree"],exportAs:["matTree"],features:[T.Jv_([{provide:d.NL,useExisting:V}]),T.Vt3],decls:1,vars:0,consts:[["matTreeNodeOutlet",""]],template:function(ne,J){1&ne&&T.eu8(0,0)},dependencies:[Ce],styles:[".mat-tree{display:block;background-color:var(--mat-tree-container-background-color, var(--mat-sys-surface))}.mat-tree-node,.mat-nested-tree-node{color:var(--mat-tree-node-text-color, var(--mat-sys-on-surface));font-family:var(--mat-tree-node-text-font, var(--mat-sys-body-large-font));font-size:var(--mat-tree-node-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-tree-node-text-weight, var(--mat-sys-body-large-weight))}.mat-tree-node{display:flex;align-items:center;flex:1;word-wrap:break-word;min-height:var(--mat-tree-node-min-height, 48px)}.mat-nested-tree-node{border-bottom-width:0}\n"],encapsulation:2})}return V})(),j=(()=>{class V extends d.Hy{static \u0275fac=(()=>{let be;return function(J){return(be||(be=T.xGo(V)))(J||V)}})();static \u0275dir=T.FsC({type:V,selectors:[["","matTreeNodeToggle",""]],inputs:{recursive:[0,"matTreeNodeToggleRecursive","recursive"]},features:[T.Jv_([{provide:d.Hy,useExisting:V}]),T.Vt3]})}return V})(),G=(()=>{class V{static \u0275fac=function(ne){return new(ne||V)};static \u0275mod=T.$C({type:V});static \u0275inj=v.G2t({imports:[d.Dc,e.y,e.y]})}return V})();class Ee extends O.q{get data(){return this._data.value}set data(ce){this._data.next(ce)}_data=new f.t([]);connect(ce){return(0,u.h)(ce.viewChange,this._data).pipe((0,L.T)(()=>this.data))}disconnect(){}}},3393(Zt,pe,l){"use strict";l.d(pe,{CI:()=>A,EU:()=>O,Hl:()=>T,Q5:()=>e,jd:()=>w,mE:()=>ne});var i=l(2615),d=l(7303),v=l(3664);class T{_doc;constructor(Le){this._doc=Le}manager}let w=(()=>{class lt extends T{constructor(te){super(te)}supports(te){return!0}addEventListener(te,ie,P,F){return te.addEventListener(ie,P,F),()=>this.removeEventListener(te,ie,P,F)}removeEventListener(te,ie,P,F){return te.removeEventListener(ie,P,F)}static \u0275fac=function(ie){return new(ie||lt)(i.KVO(i.qQL))};static \u0275prov=i.jDH({token:lt,factory:lt.\u0275fac})}return lt})();const e=new i.nKC("");let O=(()=>{class lt{_zone;_plugins;_eventNameToPlugin=new Map;constructor(te,ie){this._zone=ie,te.forEach(ve=>{ve.manager=this});const P=te.filter(ve=>!(ve instanceof w));this._plugins=P.slice().reverse();const F=te.find(ve=>ve instanceof w);F&&this._plugins.push(F)}addEventListener(te,ie,P,F){return this._findPluginFor(ie).addEventListener(te,ie,P,F)}getZone(){return this._zone}_findPluginFor(te){let ie=this._eventNameToPlugin.get(te);if(ie)return ie;if(ie=this._plugins.find(F=>F.supports(te)),!ie)throw new i.buA(5101,!1);return this._eventNameToPlugin.set(te,ie),ie}static \u0275fac=function(ie){return new(ie||lt)(i.KVO(e),i.KVO(v.SKi))};static \u0275prov=i.jDH({token:lt,factory:lt.\u0275fac})}return lt})();const f="ng-app-id";function u(lt){for(const Le of lt)Le.remove()}function L(lt,Le){const te=Le.createElement("style");return te.textContent=lt,te}function B(lt,Le){const te=Le.createElement("link");return te.setAttribute("rel","stylesheet"),te.setAttribute("href",lt),te}let A=(()=>{class lt{doc;appId;nonce;inline=new Map;external=new Map;hosts=new Set;constructor(te,ie,P,F={}){this.doc=te,this.appId=ie,this.nonce=P,function C(lt,Le,te,ie){const P=lt.head?.querySelectorAll(`style[${f}="${Le}"],link[${f}="${Le}"]`);if(P)for(const F of P)F.removeAttribute(f),F instanceof HTMLLinkElement?ie.set(F.href.slice(F.href.lastIndexOf("/")+1),{usage:0,elements:[F]}):F.textContent&&te.set(F.textContent,{usage:0,elements:[F]})}(te,ie,this.inline,this.external),this.hosts.add(te.head)}addStyles(te,ie){for(const P of te)this.addUsage(P,this.inline,L);ie?.forEach(P=>this.addUsage(P,this.external,B))}removeStyles(te,ie){for(const P of te)this.removeUsage(P,this.inline);ie?.forEach(P=>this.removeUsage(P,this.external))}addUsage(te,ie,P){const F=ie.get(te);F?F.usage++:ie.set(te,{usage:1,elements:[...this.hosts].map(ve=>this.addElement(ve,P(te,this.doc)))})}removeUsage(te,ie){const P=ie.get(te);P&&(P.usage--,P.usage<=0&&(u(P.elements),ie.delete(te)))}ngOnDestroy(){for(const[,{elements:te}]of[...this.inline,...this.external])u(te);this.hosts.clear()}addHost(te){this.hosts.add(te);for(const[ie,{elements:P}]of this.inline)P.push(this.addElement(te,L(ie,this.doc)));for(const[ie,{elements:P}]of this.external)P.push(this.addElement(te,B(ie,this.doc)))}removeHost(te){this.hosts.delete(te)}addElement(te,ie){return this.nonce&&ie.setAttribute("nonce",this.nonce),te.appendChild(ie)}static \u0275fac=function(ie){return new(ie||lt)(i.KVO(i.qQL),i.KVO(v.sZ2),i.KVO(v.BIS,8),i.KVO(v.Agw))};static \u0275prov=i.jDH({token:lt,factory:lt.\u0275fac})}return lt})();const Pe={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/",math:"http://www.w3.org/1998/Math/MathML"},le=/%COMP%/g,j="%COMP%",W=`_nghost-${j}`,G=`_ngcontent-${j}`,xe=new i.nKC("",{providedIn:"root",factory:()=>!0});function ce(lt,Le){return Le.map(te=>te.replace(le,lt))}let ne=(()=>{class lt{eventManager;sharedStylesHost;appId;removeStylesOnCompDestroy;doc;ngZone;nonce;tracingService;rendererByCompId=new Map;defaultRenderer;platformIsServer;constructor(te,ie,P,F,ve,H,$=null,Ke=null){this.eventManager=te,this.sharedStylesHost=ie,this.appId=P,this.removeStylesOnCompDestroy=F,this.doc=ve,this.ngZone=H,this.nonce=$,this.tracingService=Ke,this.platformIsServer=!1,this.defaultRenderer=new J(te,ve,H,this.platformIsServer,this.tracingService)}createRenderer(te,ie){if(!te||!ie)return this.defaultRenderer;const P=this.getOrCreateRenderer(te,ie);return P instanceof Dt?P.applyToHost(te):P instanceof he&&P.applyStyles(),P}getOrCreateRenderer(te,ie){const P=this.rendererByCompId;let F=P.get(ie.id);if(!F){const ve=this.doc,H=this.ngZone,$=this.eventManager,Ke=this.sharedStylesHost,Vt=this.removeStylesOnCompDestroy,St=this.platformIsServer,ot=this.tracingService;switch(ie.encapsulation){case v.gXe.Emulated:F=new Dt($,Ke,ie,this.appId,Vt,ve,H,St,ot);break;case v.gXe.ShadowDom:return new _e($,Ke,te,ie,ve,H,this.nonce,St,ot);default:F=new he($,Ke,ie,Vt,ve,H,St,ot)}P.set(ie.id,F)}return F}ngOnDestroy(){this.rendererByCompId.clear()}componentReplaced(te){this.rendererByCompId.delete(te)}static \u0275fac=function(ie){return new(ie||lt)(i.KVO(O),i.KVO(A),i.KVO(v.sZ2),i.KVO(xe),i.KVO(i.qQL),i.KVO(v.SKi),i.KVO(v.BIS),i.KVO(v.a8H,8))};static \u0275prov=i.jDH({token:lt,factory:lt.\u0275fac})}return lt})();class J{eventManager;doc;ngZone;platformIsServer;tracingService;data=Object.create(null);throwOnSyntheticProps=!0;constructor(Le,te,ie,P,F){this.eventManager=Le,this.doc=te,this.ngZone=ie,this.platformIsServer=P,this.tracingService=F}destroy(){}destroyNode=null;createElement(Le,te){return te?this.doc.createElementNS(Pe[te]||te,Le):this.doc.createElement(Le)}createComment(Le){return this.doc.createComment(Le)}createText(Le){return this.doc.createTextNode(Le)}appendChild(Le,te){(Xe(Le)?Le.content:Le).appendChild(te)}insertBefore(Le,te,ie){Le&&(Xe(Le)?Le.content:Le).insertBefore(te,ie)}removeChild(Le,te){te.remove()}selectRootElement(Le,te){let ie="string"==typeof Le?this.doc.querySelector(Le):Le;if(!ie)throw new i.buA(-5104,!1);return te||(ie.textContent=""),ie}parentNode(Le){return Le.parentNode}nextSibling(Le){return Le.nextSibling}setAttribute(Le,te,ie,P){if(P){te=P+":"+te;const F=Pe[P];F?Le.setAttributeNS(F,te,ie):Le.setAttribute(te,ie)}else Le.setAttribute(te,ie)}removeAttribute(Le,te,ie){if(ie){const P=Pe[ie];P?Le.removeAttributeNS(P,te):Le.removeAttribute(`${ie}:${te}`)}else Le.removeAttribute(te)}addClass(Le,te){Le.classList.add(te)}removeClass(Le,te){Le.classList.remove(te)}setStyle(Le,te,ie,P){P&(v.czy.DashCase|v.czy.Important)?Le.style.setProperty(te,ie,P&v.czy.Important?"important":""):Le.style[te]=ie}removeStyle(Le,te,ie){ie&v.czy.DashCase?Le.style.removeProperty(te):Le.style[te]=""}setProperty(Le,te,ie){null!=Le&&(Le[te]=ie)}setValue(Le,te){Le.nodeValue=te}listen(Le,te,ie,P){if("string"==typeof Le&&!(Le=(0,d.rb)().getGlobalEventTarget(this.doc,Le)))throw new i.buA(5102,!1);let F=this.decoratePreventDefault(ie);return this.tracingService?.wrapEventListener&&(F=this.tracingService.wrapEventListener(Le,te,F)),this.eventManager.addEventListener(Le,te,F,P)}decoratePreventDefault(Le){return te=>{if("__ngUnwrap__"===te)return Le;!1===Le(te)&&te.preventDefault()}}}function Xe(lt){return"TEMPLATE"===lt.tagName&&void 0!==lt.content}class _e extends J{sharedStylesHost;hostEl;shadowRoot;constructor(Le,te,ie,P,F,ve,H,$,Ke){super(Le,F,ve,$,Ke),this.sharedStylesHost=te,this.hostEl=ie,this.shadowRoot=ie.attachShadow({mode:"open"}),this.sharedStylesHost.addHost(this.shadowRoot);let Vt=P.styles;Vt=ce(P.id,Vt);for(const ot of Vt){const nt=document.createElement("style");H&&nt.setAttribute("nonce",H),nt.textContent=ot,this.shadowRoot.appendChild(nt)}const St=P.getExternalStyles?.();if(St)for(const ot of St){const nt=B(ot,F);H&&nt.setAttribute("nonce",H),this.shadowRoot.appendChild(nt)}}nodeOrShadowRoot(Le){return Le===this.hostEl?this.shadowRoot:Le}appendChild(Le,te){return super.appendChild(this.nodeOrShadowRoot(Le),te)}insertBefore(Le,te,ie){return super.insertBefore(this.nodeOrShadowRoot(Le),te,ie)}removeChild(Le,te){return super.removeChild(null,te)}parentNode(Le){return this.nodeOrShadowRoot(super.parentNode(this.nodeOrShadowRoot(Le)))}destroy(){this.sharedStylesHost.removeHost(this.shadowRoot)}}class he extends J{sharedStylesHost;removeStylesOnCompDestroy;styles;styleUrls;constructor(Le,te,ie,P,F,ve,H,$,Ke){super(Le,F,ve,H,$),this.sharedStylesHost=te,this.removeStylesOnCompDestroy=P;let Vt=ie.styles;this.styles=Ke?ce(Ke,Vt):Vt,this.styleUrls=ie.getExternalStyles?.(Ke)}applyStyles(){this.sharedStylesHost.addStyles(this.styles,this.styleUrls)}destroy(){this.removeStylesOnCompDestroy&&0===v.DUP.size&&this.sharedStylesHost.removeStyles(this.styles,this.styleUrls)}}class Dt extends he{contentAttr;hostAttr;constructor(Le,te,ie,P,F,ve,H,$,Ke){const Vt=P+"-"+ie.id;super(Le,te,ie,F,ve,H,$,Ke,Vt),this.contentAttr=function Ee(lt){return G.replace(le,lt)}(Vt),this.hostAttr=function V(lt){return W.replace(le,lt)}(Vt)}applyToHost(Le){this.applyStyles(),this.setAttribute(Le,this.hostAttr,"")}createElement(Le,te){const ie=super.createElement(Le,te);return super.setAttribute(ie,this.contentAttr,""),ie}}},345(Zt,pe,l){"use strict";l.d(pe,{fM:()=>P,hE:()=>ce,up:()=>F});var G=l(2615),re=l(3664),xe=l(3393);let ce=(()=>{class Qe{_doc;constructor(Gt){this._doc=Gt}getTitle(){return this._doc.title}setTitle(Gt){this._doc.title=Gt||""}static \u0275fac=function(rt){return new(rt||Qe)(G.KVO(G.qQL))};static \u0275prov=G.jDH({token:Qe,factory:Qe.\u0275fac,providedIn:"root"})}return Qe})();const Dt={pan:!0,panstart:!0,panmove:!0,panend:!0,pancancel:!0,panleft:!0,panright:!0,panup:!0,pandown:!0,pinch:!0,pinchstart:!0,pinchmove:!0,pinchend:!0,pinchcancel:!0,pinchin:!0,pinchout:!0,press:!0,pressup:!0,rotate:!0,rotatestart:!0,rotatemove:!0,rotateend:!0,rotatecancel:!0,swipe:!0,swipeleft:!0,swiperight:!0,swipeup:!0,swipedown:!0,tap:!0,doubletap:!0},lt=new G.nKC(""),Le=new G.nKC("");let te=(()=>{class Qe{events=[];overrides={};options;buildHammer(Gt){const rt=new Hammer(Gt,this.options);rt.get("pinch").set({enable:!0}),rt.get("rotate").set({enable:!0});for(const cn in this.overrides)rt.get(cn).set(this.overrides[cn]);return rt}static \u0275fac=function(rt){return new(rt||Qe)};static \u0275prov=G.jDH({token:Qe,factory:Qe.\u0275fac})}return Qe})(),ie=(()=>{class Qe extends xe.Hl{_config;_injector;loader;_loaderPromise=null;constructor(Gt,rt,cn,Ft){super(Gt),this._config=rt,this._injector=cn,this.loader=Ft}supports(Gt){return!(!Dt.hasOwnProperty(Gt.toLowerCase())&&!this.isCustomEvent(Gt)||!window.Hammer&&!this.loader)}addEventListener(Gt,rt,cn){const Ft=this.manager.getZone();if(rt=rt.toLowerCase(),!window.Hammer&&this.loader){this._loaderPromise=this._loaderPromise||Ft.runOutsideAngular(()=>this.loader());let Sn=!1,Qn=()=>{Sn=!0};return Ft.runOutsideAngular(()=>this._loaderPromise.then(()=>{window.Hammer?Sn||(Qn=this.addEventListener(Gt,rt,cn)):Qn=()=>{}}).catch(()=>{Qn=()=>{}})),()=>{Qn()}}return Ft.runOutsideAngular(()=>{const Sn=this._config.buildHammer(Gt),Qn=function(h){Ft.runGuarded(function(){cn(h)})};return Sn.on(rt,Qn),()=>{Sn.off(rt,Qn),"function"==typeof Sn.destroy&&Sn.destroy()}})}isCustomEvent(Gt){return this._config.events.indexOf(Gt)>-1}static \u0275fac=function(rt){return new(rt||Qe)(G.KVO(G.qQL),G.KVO(lt),G.KVO(G.zZn),G.KVO(Le,8))};static \u0275prov=G.jDH({token:Qe,factory:Qe.\u0275fac})}return Qe})(),P=(()=>{class Qe{static \u0275fac=function(rt){return new(rt||Qe)};static \u0275mod=re.$C({type:Qe});static \u0275inj=G.G2t({providers:[{provide:xe.Q5,useClass:ie,multi:!0,deps:[G.qQL,lt,G.zZn,[new re.Xx1,Le]]},{provide:lt,useClass:te}]})}return Qe})(),F=(()=>{class Qe{static \u0275fac=function(rt){return new(rt||Qe)};static \u0275prov=G.jDH({token:Qe,factory:function(rt){let cn=null;return cn=rt?new(rt||Qe):G.KVO(ve),cn},providedIn:"root"})}return Qe})(),ve=(()=>{class Qe extends F{_doc;constructor(Gt){super(),this._doc=Gt}sanitize(Gt,rt){if(null==rt)return null;switch(Gt){case re.WPN.NONE:return rt;case re.WPN.HTML:return(0,re.iWE)(rt,"HTML")?(0,re.aCM)(rt):(0,re.wr$)(this._doc,String(rt)).toString();case re.WPN.STYLE:return(0,re.iWE)(rt,"Style")?(0,re.aCM)(rt):rt;case re.WPN.SCRIPT:if((0,re.iWE)(rt,"Script"))return(0,re.aCM)(rt);throw new G.buA(5200,!1);case re.WPN.URL:return(0,re.iWE)(rt,"URL")?(0,re.aCM)(rt):(0,re.gil)(String(rt));case re.WPN.RESOURCE_URL:if((0,re.iWE)(rt,"ResourceURL"))return(0,re.aCM)(rt);throw new G.buA(5201,!1);default:throw new G.buA(5202,!1)}}bypassSecurityTrustHtml(Gt){return(0,re.PYC)(Gt)}bypassSecurityTrustStyle(Gt){return(0,re.rAh)(Gt)}bypassSecurityTrustScript(Gt){return(0,re.p2i)(Gt)}bypassSecurityTrustUrl(Gt){return(0,re.B1s)(Gt)}bypassSecurityTrustResourceUrl(Gt){return(0,re.RPW)(Gt)}static \u0275fac=function(rt){return new(rt||Qe)(G.KVO(G.qQL))};static \u0275prov=G.jDH({token:Qe,factory:Qe.\u0275fac,providedIn:"root"})}return Qe})()},3694(Zt,pe,l){"use strict";l.d(pe,{nX:()=>Ze,Pu:()=>io,Zp:()=>Jt,nU:()=>Ni,wU:()=>Un,c1:()=>fr,XR:()=>Wr,j5:()=>Vn,wF:()=>rn,L6:()=>Bn,lW:()=>ii,mo:()=>Mn,Z:()=>ci,J2:()=>ao,J_:()=>So,bw:()=>fo,gx:()=>qt,tD:()=>zo,Ix:()=>Wo,D$:()=>To,n3:()=>hr,OY:()=>da,Sd:()=>vi,bK:()=>Ys,gk:()=>Ll,Lg:()=>Dr,wO:()=>un,Us:()=>oi,we:()=>pr});var i=l(2615),d=l(7303),v=l(3664),T=l(7705),w=l(9295),e=l(4402),O=l(2806),f=l(7673),u=l(4412),L=l(4572),C=l(9350),B=l(8793),A=l(9030),Pe=l(1203),le=l(8810),Ce=l(983),Ae=l(17),j=l(1413),W=l(1985),G=l(8359),re=l(6354),xe=l(5558),Ee=l(6697),V=l(9172),ce=l(5964),be=l(1397),ne=l(1594),J=l(274),De=l(8141),Re=l(9437),Xe=l(1943),_e=l(9901),he=l(9974),Dt=l(4360);function lt(X){return X<=0?()=>Ce.w:(0,he.N)((de,Q)=>{let me=[];de.subscribe((0,Dt._)(Q,et=>{me.push(et),X{for(const et of me)Q.next(et);Q.complete()},void 0,()=>{me=null}))})}var Le=l(3774),te=l(3669),P=l(980),F=l(9898),ve=l(6977),H=l(345);const $="primary",Ke=Symbol("RouteTitle");class Vt{params;constructor(de){this.params=de||{}}has(de){return Object.prototype.hasOwnProperty.call(this.params,de)}get(de){if(this.has(de)){const Q=this.params[de];return Array.isArray(Q)?Q[0]:Q}return null}getAll(de){if(this.has(de)){const Q=this.params[de];return Array.isArray(Q)?Q:[Q]}return[]}get keys(){return Object.keys(this.params)}}function St(X){return new Vt(X)}function ot(X,de,Q){const me=Q.path.split("/");if(me.length>X.length||"full"===Q.pathMatch&&(de.hasChildren()||me.lengthme[Mt]===et)}return X===de}function fe(X){return X.length>0?X[X.length-1]:null}function Qe(X){return(0,e.A)(X)?X:(0,v.yLl)(X)?(0,O.H)(Promise.resolve(X)):(0,f.of)(X)}const gt={exact:function Ft(X,de,Q){if(!gn(X.segments,de.segments)||!jt(X.segments,de.segments,Q)||X.numberOfChildren!==de.numberOfChildren)return!1;for(const me in de.children)if(!X.children[me]||!Ft(X.children[me],de.children[me],Q))return!1;return!0},subset:Qn},Gt={exact:function cn(X,de){return ht(X,de)},subset:function Sn(X,de){return Object.keys(de).length<=Object.keys(X).length&&Object.keys(de).every(Q=>Ye(X[Q],de[Q]))},ignored:()=>!0};function rt(X,de,Q){return gt[Q.paths](X.root,de.root,Q.matrixParams)&&Gt[Q.queryParams](X.queryParams,de.queryParams)&&!("exact"===Q.fragment&&X.fragment!==de.fragment)}function Qn(X,de,Q){return h(X,de,de.segments,Q)}function h(X,de,Q,me){if(X.segments.length>Q.length){const et=X.segments.slice(0,Q.length);return!(!gn(et,Q)||de.hasChildren()||!jt(et,Q,me))}if(X.segments.length===Q.length){if(!gn(X.segments,Q)||!jt(X.segments,Q,me))return!1;for(const et in de.children)if(!X.children[et]||!Qn(X.children[et],de.children[et],me))return!1;return!0}{const et=Q.slice(0,X.segments.length),Mt=Q.slice(X.segments.length);return!!(gn(X.segments,et)&&jt(X.segments,et,me)&&X.children[$])&&h(X.children[$],de,Mt,me)}}function jt(X,de,Q){return de.every((me,et)=>Gt[Q](X[et].parameters,me.parameters))}class Ue{root;queryParams;fragment;_queryParamMap;constructor(de=new wt([],{}),Q={},me=null){this.root=de,this.queryParams=Q,this.fragment=me}get queryParamMap(){return this._queryParamMap??=St(this.queryParams),this._queryParamMap}toString(){return kn.serialize(this)}}class wt{segments;children;parent=null;constructor(de,Q){this.segments=de,this.children=Q,Object.values(Q).forEach(me=>me.parent=this)}hasChildren(){return this.numberOfChildren>0}get numberOfChildren(){return Object.keys(this.children).length}toString(){return Ri(this)}}class pt{path;parameters;_parameterMap;constructor(de,Q){this.path=de,this.parameters=Q}get parameterMap(){return this._parameterMap??=St(this.parameters),this._parameterMap}toString(){return Z(this)}}function gn(X,de){return X.length===de.length&&X.every((Q,me)=>Q.path===de[me].path)}let vi=(()=>{class X{static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:()=>new Ni,providedIn:"root"})}return X})();class Ni{parse(de){const Q=new We(de);return new Ue(Q.parseRootSegment(),Q.parseQueryParams(),Q.parseFragment())}serialize(de){const Q=`/${vt(de.root,!0)}`,me=function at(X){const de=Object.entries(X).map(([Q,me])=>Array.isArray(me)?me.map(et=>`${ye(Q)}=${ye(et)}`).join("&"):`${ye(Q)}=${ye(me)}`).filter(Q=>Q);return de.length?`?${de.join("&")}`:""}(de.queryParams);return`${Q}${me}${"string"==typeof de.fragment?`#${function ke(X){return encodeURI(X)}(de.fragment)}`:""}`}}const kn=new Ni;function Ri(X){return X.segments.map(de=>Z(de)).join("/")}function vt(X,de){if(!X.hasChildren())return Ri(X);if(de){const Q=X.children[$]?vt(X.children[$],!1):"",me=[];return Object.entries(X.children).forEach(([et,Mt])=>{et!==$&&me.push(`${et}:${vt(Mt,!1)}`)}),me.length>0?`${Q}(${me.join("//")})`:Q}{const Q=function ei(X,de){let Q=[];return Object.entries(X.children).forEach(([me,et])=>{me===$&&(Q=Q.concat(de(et,me)))}),Object.entries(X.children).forEach(([me,et])=>{me!==$&&(Q=Q.concat(de(et,me)))}),Q}(X,(me,et)=>et===$?[vt(X.children[$],!1)]:[`${et}:${vt(me,!1)}`]);return 1===Object.keys(X.children).length&&null!=X.children[$]?`${Ri(X)}/${Q[0]}`:`${Ri(X)}/(${Q.join("//")})`}}function ee(X){return encodeURIComponent(X).replace(/%40/g,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",")}function ye(X){return ee(X).replace(/%3B/gi,";")}function Se(X){return ee(X).replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/%26/gi,"&")}function ge(X){return decodeURIComponent(X)}function N(X){return ge(X.replace(/\+/g,"%20"))}function Z(X){return`${Se(X.path)}${function Me(X){return Object.entries(X).map(([de,Q])=>`;${Se(de)}=${Se(Q)}`).join("")}(X.parameters)}`}const qe=/^[^\/()?;#]+/;function pn(X){const de=X.match(qe);return de?de[0]:""}const Je=/^[^\/()?;=#]+/,ut=/^[^=?&#]+/,Ot=/^[^&#]+/;class We{url;remaining;constructor(de){this.url=de,this.remaining=de}parseRootSegment(){return this.consumeOptional("/"),""===this.remaining||this.peekStartsWith("?")||this.peekStartsWith("#")?new wt([],{}):new wt([],this.parseChildren())}parseQueryParams(){const de={};if(this.consumeOptional("?"))do{this.parseQueryParam(de)}while(this.consumeOptional("&"));return de}parseFragment(){return this.consumeOptional("#")?decodeURIComponent(this.remaining):null}parseChildren(){if(""===this.remaining)return{};this.consumeOptional("/");const de=[];for(this.peekStartsWith("(")||de.push(this.parseSegment());this.peekStartsWith("/")&&!this.peekStartsWith("//")&&!this.peekStartsWith("/(");)this.capture("/"),de.push(this.parseSegment());let Q={};this.peekStartsWith("/(")&&(this.capture("/"),Q=this.parseParens(!0));let me={};return this.peekStartsWith("(")&&(me=this.parseParens(!1)),(de.length>0||Object.keys(Q).length>0)&&(me[$]=new wt(de,Q)),me}parseSegment(){const de=pn(this.remaining);if(""===de&&this.peekStartsWith(";"))throw new i.buA(4009,!1);return this.capture(de),new pt(ge(de),this.parseMatrixParams())}parseMatrixParams(){const de={};for(;this.consumeOptional(";");)this.parseParam(de);return de}parseParam(de){const Q=function Be(X){const de=X.match(Je);return de?de[0]:""}(this.remaining);if(!Q)return;this.capture(Q);let me="";if(this.consumeOptional("=")){const et=pn(this.remaining);et&&(me=et,this.capture(me))}de[ge(Q)]=ge(me)}parseQueryParam(de){const Q=function Ge(X){const de=X.match(ut);return de?de[0]:""}(this.remaining);if(!Q)return;this.capture(Q);let me="";if(this.consumeOptional("=")){const Kt=function se(X){const de=X.match(Ot);return de?de[0]:""}(this.remaining);Kt&&(me=Kt,this.capture(me))}const et=N(Q),Mt=N(me);if(de.hasOwnProperty(et)){let Kt=de[et];Array.isArray(Kt)||(Kt=[Kt],de[et]=Kt),Kt.push(Mt)}else de[et]=Mt}parseParens(de){const Q={};for(this.capture("(");!this.consumeOptional(")")&&this.remaining.length>0;){const me=pn(this.remaining),et=this.remaining[me.length];if("/"!==et&&")"!==et&&";"!==et)throw new i.buA(4010,!1);let Mt;me.indexOf(":")>-1?(Mt=me.slice(0,me.indexOf(":")),this.capture(Mt),this.capture(":")):de&&(Mt=$);const Kt=this.parseChildren();Q[Mt??$]=1===Object.keys(Kt).length&&Kt[$]?Kt[$]:new wt([],Kt),this.consumeOptional("//")}return Q}peekStartsWith(de){return this.remaining.startsWith(de)}consumeOptional(de){return!!this.peekStartsWith(de)&&(this.remaining=this.remaining.substring(de.length),!0)}capture(de){if(!this.consumeOptional(de))throw new i.buA(4011,!1)}}function bt(X){return X.segments.length>0?new wt([],{[$]:X}):X}function tn(X){const de={};for(const[me,et]of Object.entries(X.children)){const Mt=tn(et);if(me===$&&0===Mt.segments.length&&Mt.hasChildren())for(const[Kt,Tn]of Object.entries(Mt.children))de[Kt]=Tn;else(Mt.segments.length>0||Mt.hasChildren())&&(de[me]=Mt)}return function on(X){if(1===X.numberOfChildren&&X.children[$]){const de=X.children[$];return new wt(X.segments.concat(de.segments),de.children)}return X}(new wt(X.segments,de))}function un(X){return X instanceof Ue}function dn(X){let de;const et=bt(function Q(Mt){const Kt={};for(const ai of Mt.children){const Gi=Q(ai);Kt[ai.outlet]=Gi}const Tn=new wt(Mt.url,Kt);return Mt===X&&(de=Tn),Tn}(X.root));return de??et}function xn(X,de,Q,me){let et=X;for(;et.parent;)et=et.parent;if(0===de.length)return Yi(et,et,et,Q,me);const Mt=function we(X){if("string"==typeof X[0]&&1===X.length&&"/"===X[0])return new At(!0,0,X);let de=0,Q=!1;const me=X.reduce((et,Mt,Kt)=>{if("object"==typeof Mt&&null!=Mt){if(Mt.outlets){const Tn={};return Object.entries(Mt.outlets).forEach(([ai,Gi])=>{Tn[ai]="string"==typeof Gi?Gi.split("/"):Gi}),[...et,{outlets:Tn}]}if(Mt.segmentPath)return[...et,Mt.segmentPath]}return"string"!=typeof Mt?[...et,Mt]:0===Kt?(Mt.split("/").forEach((Tn,ai)=>{0==ai&&"."===Tn||(0==ai&&""===Tn?Q=!0:".."===Tn?de++:""!=Tn&&et.push(Tn))}),et):[...et,Mt]},[]);return new At(Q,de,me)}(de);if(Mt.toRoot())return Yi(et,et,new wt([],{}),Q,me);const Kt=function Lt(X,de,Q){if(X.isAbsolute)return new ae(de,!0,0);if(!Q)return new ae(de,!1,NaN);if(null===Q.parent)return new ae(Q,!0,0);const me=Jn(X.commands[0])?0:1;return function Ht(X,de,Q){let me=X,et=de,Mt=Q;for(;Mt>et;){if(Mt-=et,me=me.parent,!me)throw new i.buA(4005,!1);et=me.segments.length}return new ae(me,!1,et-Mt)}(Q,Q.segments.length-1+me,X.numberOfDoubleDots)}(Mt,et,X),Tn=Kt.processChildren?bi(Kt.segmentGroup,Kt.index,Mt.commands):fi(Kt.segmentGroup,Kt.index,Mt.commands);return Yi(et,Kt.segmentGroup,Tn,Q,me)}function Jn(X){return"object"==typeof X&&null!=X&&!X.outlets&&!X.segmentPath}function xi(X){return"object"==typeof X&&null!=X&&X.outlets}function Yi(X,de,Q,me,et){let Kt,Mt={};me&&Object.entries(me).forEach(([ai,Gi])=>{Mt[ai]=Array.isArray(Gi)?Gi.map(La=>`${La}`):`${Gi}`}),Kt=X===de?Q:Tt(X,de,Q);const Tn=bt(tn(Kt));return new Ue(Tn,Mt,et)}function Tt(X,de,Q){const me={};return Object.entries(X.children).forEach(([et,Mt])=>{me[et]=Mt===de?Q:Tt(Mt,de,Q)}),new wt(X.segments,me)}class At{isAbsolute;numberOfDoubleDots;commands;constructor(de,Q,me){if(this.isAbsolute=de,this.numberOfDoubleDots=Q,this.commands=me,de&&me.length>0&&Jn(me[0]))throw new i.buA(4003,!1);const et=me.find(xi);if(et&&et!==fe(me))throw new i.buA(4004,!1)}toRoot(){return this.isAbsolute&&1===this.commands.length&&"/"==this.commands[0]}}class ae{segmentGroup;processChildren;index;constructor(de,Q,me){this.segmentGroup=de,this.processChildren=Q,this.index=me}}function fi(X,de,Q){if(X??=new wt([],{}),0===X.segments.length&&X.hasChildren())return bi(X,de,Q);const me=function Qi(X,de,Q){let me=0,et=de;const Mt={match:!1,pathIndex:0,commandIndex:0};for(;et=Q.length)return Mt;const Kt=X.segments[et],Tn=Q[me];if(xi(Tn))break;const ai=`${Tn}`,Gi=me0&&void 0===ai)break;if(ai&&Gi&&"object"==typeof Gi&&void 0===Gi.outlets){if(!Yt(ai,Gi,Kt))return Mt;me+=2}else{if(!Yt(ai,{},Kt))return Mt;me++}et++}return{match:!0,pathIndex:et,commandIndex:me}}(X,de,Q),et=Q.slice(me.commandIndex);if(me.match&&me.pathIndexMt!==$)&&X.children[$]&&1===X.numberOfChildren&&0===X.children[$].segments.length){const Mt=bi(X.children[$],de,Q);return new wt(X.segments,Mt.children)}return Object.entries(me).forEach(([Mt,Kt])=>{"string"==typeof Kt&&(Kt=[Kt]),null!==Kt&&(et[Mt]=fi(X.children[Mt],de,Kt))}),Object.entries(X.children).forEach(([Mt,Kt])=>{void 0===me[Mt]&&(et[Mt]=Kt)}),new wt(X.segments,et)}}function zi(X,de,Q){const me=X.segments.slice(0,de);let et=0;for(;et{"string"==typeof me&&(me=[me]),null!==me&&(de[Q]=zi(new wt([],{}),0,me))}),de}function an(X){const de={};return Object.entries(X).forEach(([Q,me])=>de[Q]=`${me}`),de}function Yt(X,de,Q){return X==Q.path&&ht(de,Q.parameters)}const Un="imperative";var zn=function(X){return X[X.NavigationStart=0]="NavigationStart",X[X.NavigationEnd=1]="NavigationEnd",X[X.NavigationCancel=2]="NavigationCancel",X[X.NavigationError=3]="NavigationError",X[X.RoutesRecognized=4]="RoutesRecognized",X[X.ResolveStart=5]="ResolveStart",X[X.ResolveEnd=6]="ResolveEnd",X[X.GuardsCheckStart=7]="GuardsCheckStart",X[X.GuardsCheckEnd=8]="GuardsCheckEnd",X[X.RouteConfigLoadStart=9]="RouteConfigLoadStart",X[X.RouteConfigLoadEnd=10]="RouteConfigLoadEnd",X[X.ChildActivationStart=11]="ChildActivationStart",X[X.ChildActivationEnd=12]="ChildActivationEnd",X[X.ActivationStart=13]="ActivationStart",X[X.ActivationEnd=14]="ActivationEnd",X[X.Scroll=15]="Scroll",X[X.NavigationSkipped=16]="NavigationSkipped",X}(zn||{});class Fn{id;url;constructor(de,Q){this.id=de,this.url=Q}}class ci extends Fn{type=zn.NavigationStart;navigationTrigger;restoredState;constructor(de,Q,me="imperative",et=null){super(de,Q),this.navigationTrigger=me,this.restoredState=et}toString(){return`NavigationStart(id: ${this.id}, url: '${this.url}')`}}class rn extends Fn{urlAfterRedirects;type=zn.NavigationEnd;constructor(de,Q,me){super(de,Q),this.urlAfterRedirects=me}toString(){return`NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`}}var In=function(X){return X[X.Redirect=0]="Redirect",X[X.SupersededByNewNavigation=1]="SupersededByNewNavigation",X[X.NoDataFromResolver=2]="NoDataFromResolver",X[X.GuardRejected=3]="GuardRejected",X[X.Aborted=4]="Aborted",X}(In||{}),Mn=function(X){return X[X.IgnoredSameUrlNavigation=0]="IgnoredSameUrlNavigation",X[X.IgnoredByUrlHandlingStrategy=1]="IgnoredByUrlHandlingStrategy",X}(Mn||{});class Vn extends Fn{reason;code;type=zn.NavigationCancel;constructor(de,Q,me,et){super(de,Q),this.reason=me,this.code=et}toString(){return`NavigationCancel(id: ${this.id}, url: '${this.url}')`}}class ii extends Fn{reason;code;type=zn.NavigationSkipped;constructor(de,Q,me,et){super(de,Q),this.reason=me,this.code=et}}class Bn extends Fn{error;target;type=zn.NavigationError;constructor(de,Q,me,et){super(de,Q),this.error=me,this.target=et}toString(){return`NavigationError(id: ${this.id}, url: '${this.url}', error: ${this.error})`}}class ia extends Fn{urlAfterRedirects;state;type=zn.RoutesRecognized;constructor(de,Q,me,et){super(de,Q),this.urlAfterRedirects=me,this.state=et}toString(){return`RoutesRecognized(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class ra extends Fn{urlAfterRedirects;state;type=zn.GuardsCheckStart;constructor(de,Q,me,et){super(de,Q),this.urlAfterRedirects=me,this.state=et}toString(){return`GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class fa extends Fn{urlAfterRedirects;state;shouldActivate;type=zn.GuardsCheckEnd;constructor(de,Q,me,et,Mt){super(de,Q),this.urlAfterRedirects=me,this.state=et,this.shouldActivate=Mt}toString(){return`GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`}}class ha extends Fn{urlAfterRedirects;state;type=zn.ResolveStart;constructor(de,Q,me,et){super(de,Q),this.urlAfterRedirects=me,this.state=et}toString(){return`ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class qt extends Fn{urlAfterRedirects;state;type=zn.ResolveEnd;constructor(de,Q,me,et){super(de,Q),this.urlAfterRedirects=me,this.state=et}toString(){return`ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class En{route;type=zn.RouteConfigLoadStart;constructor(de){this.route=de}toString(){return`RouteConfigLoadStart(path: ${this.route.path})`}}class Wn{route;type=zn.RouteConfigLoadEnd;constructor(de){this.route=de}toString(){return`RouteConfigLoadEnd(path: ${this.route.path})`}}class ri{snapshot;type=zn.ChildActivationStart;constructor(de){this.snapshot=de}toString(){return`ChildActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Rn{snapshot;type=zn.ChildActivationEnd;constructor(de){this.snapshot=de}toString(){return`ChildActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Hn{snapshot;type=zn.ActivationStart;constructor(de){this.snapshot=de}toString(){return`ActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Pi{snapshot;type=zn.ActivationEnd;constructor(de){this.snapshot=de}toString(){return`ActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class da{routerEvent;position;anchor;type=zn.Scroll;constructor(de,Q,me){this.routerEvent=de,this.position=Q,this.anchor=me}toString(){return`Scroll(anchor: '${this.anchor}', position: '${this.position?`${this.position[0]}, ${this.position[1]}`:null}')`}}class Ta{}class en{url;navigationBehaviorOptions;constructor(de,Q){this.url=de,this.navigationBehaviorOptions=Q}}function oi(X){switch(X.type){case zn.ActivationEnd:return`ActivationEnd(path: '${X.snapshot.routeConfig?.path||""}')`;case zn.ActivationStart:return`ActivationStart(path: '${X.snapshot.routeConfig?.path||""}')`;case zn.ChildActivationEnd:return`ChildActivationEnd(path: '${X.snapshot.routeConfig?.path||""}')`;case zn.ChildActivationStart:return`ChildActivationStart(path: '${X.snapshot.routeConfig?.path||""}')`;case zn.GuardsCheckEnd:return`GuardsCheckEnd(id: ${X.id}, url: '${X.url}', urlAfterRedirects: '${X.urlAfterRedirects}', state: ${X.state}, shouldActivate: ${X.shouldActivate})`;case zn.GuardsCheckStart:return`GuardsCheckStart(id: ${X.id}, url: '${X.url}', urlAfterRedirects: '${X.urlAfterRedirects}', state: ${X.state})`;case zn.NavigationCancel:return`NavigationCancel(id: ${X.id}, url: '${X.url}')`;case zn.NavigationSkipped:return`NavigationSkipped(id: ${X.id}, url: '${X.url}')`;case zn.NavigationEnd:return`NavigationEnd(id: ${X.id}, url: '${X.url}', urlAfterRedirects: '${X.urlAfterRedirects}')`;case zn.NavigationError:return`NavigationError(id: ${X.id}, url: '${X.url}', error: ${X.error})`;case zn.NavigationStart:return`NavigationStart(id: ${X.id}, url: '${X.url}')`;case zn.ResolveEnd:return`ResolveEnd(id: ${X.id}, url: '${X.url}', urlAfterRedirects: '${X.urlAfterRedirects}', state: ${X.state})`;case zn.ResolveStart:return`ResolveStart(id: ${X.id}, url: '${X.url}', urlAfterRedirects: '${X.urlAfterRedirects}', state: ${X.state})`;case zn.RouteConfigLoadEnd:return`RouteConfigLoadEnd(path: ${X.route.path})`;case zn.RouteConfigLoadStart:return`RouteConfigLoadStart(path: ${X.route.path})`;case zn.RoutesRecognized:return`RoutesRecognized(id: ${X.id}, url: '${X.url}', urlAfterRedirects: '${X.urlAfterRedirects}', state: ${X.state})`;case zn.Scroll:return`Scroll(anchor: '${X.anchor}', position: '${X.position?`${X.position[0]}, ${X.position[1]}`:null}')`}}function Fe(X){return X.outlet||$}function Ve(X){if(!X)return null;if(X.routeConfig?._injector)return X.routeConfig._injector;for(let de=X.parent;de;de=de.parent){const Q=de.routeConfig;if(Q?._loadedInjector)return Q._loadedInjector;if(Q?._injector)return Q._injector}return null}class Et{rootInjector;outlet=null;route=null;children;attachRef=null;get injector(){return Ve(this.route?.snapshot)??this.rootInjector}constructor(de){this.rootInjector=de,this.children=new Jt(this.rootInjector)}}let Jt=(()=>{class X{rootInjector;contexts=new Map;constructor(Q){this.rootInjector=Q}onChildOutletCreated(Q,me){const et=this.getOrCreateContext(Q);et.outlet=me,this.contexts.set(Q,et)}onChildOutletDestroyed(Q){const me=this.getContext(Q);me&&(me.outlet=null,me.attachRef=null)}onOutletDeactivated(){const Q=this.contexts;return this.contexts=new Map,Q}onOutletReAttached(Q){this.contexts=Q}getOrCreateContext(Q){let me=this.getContext(Q);return me||(me=new Et(this.rootInjector),this.contexts.set(Q,me)),me}getContext(Q){return this.contexts.get(Q)||null}static \u0275fac=function(me){return new(me||X)(i.KVO(i.uvJ))};static \u0275prov=i.jDH({token:X,factory:X.\u0275fac,providedIn:"root"})}return X})();class ti{_root;constructor(de){this._root=de}get root(){return this._root.value}parent(de){const Q=this.pathFromRoot(de);return Q.length>1?Q[Q.length-2]:null}children(de){const Q=di(de,this._root);return Q?Q.children.map(me=>me.value):[]}firstChild(de){const Q=di(de,this._root);return Q&&Q.children.length>0?Q.children[0].value:null}siblings(de){const Q=Ii(de,this._root);return Q.length<2?[]:Q[Q.length-2].children.map(et=>et.value).filter(et=>et!==de)}pathFromRoot(de){return Ii(de,this._root).map(Q=>Q.value)}}function di(X,de){if(X===de.value)return de;for(const Q of de.children){const me=di(X,Q);if(me)return me}return null}function Ii(X,de){if(X===de.value)return[de];for(const Q of de.children){const me=Ii(X,Q);if(me.length)return me.unshift(de),me}return[]}class ca{value;children;constructor(de,Q){this.value=de,this.children=Q}toString(){return`TreeNode(${this.value})`}}function nn(X){const de={};return X&&X.children.forEach(Q=>de[Q.value.outlet]=Q),de}class ni extends ti{snapshot;constructor(de,Q){super(de),this.snapshot=Q,_a(this,de)}toString(){return this.snapshot.toString()}}function U(X){const de=function tt(X){const Mt=new Nn([],{},{},"",{},$,X,null,{});return new Ki("",new ca(Mt,[]))}(X),Q=new u.t([new pt("",{})]),me=new u.t({}),et=new u.t({}),Mt=new u.t({}),Kt=new u.t(""),Tn=new Ze(Q,me,Mt,Kt,et,$,X,de.root);return Tn.snapshot=de.root,new ni(new ca(Tn,[]),de)}class Ze{urlSubject;paramsSubject;queryParamsSubject;fragmentSubject;dataSubject;outlet;component;snapshot;_futureSnapshot;_routerState;_paramMap;_queryParamMap;title;url;params;queryParams;fragment;data;constructor(de,Q,me,et,Mt,Kt,Tn,ai){this.urlSubject=de,this.paramsSubject=Q,this.queryParamsSubject=me,this.fragmentSubject=et,this.dataSubject=Mt,this.outlet=Kt,this.component=Tn,this._futureSnapshot=ai,this.title=this.dataSubject?.pipe((0,re.T)(Gi=>Gi[Ke]))??(0,f.of)(void 0),this.url=de,this.params=Q,this.queryParams=me,this.fragment=et,this.data=Mt}get routeConfig(){return this._futureSnapshot.routeConfig}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap??=this.params.pipe((0,re.T)(de=>St(de))),this._paramMap}get queryParamMap(){return this._queryParamMap??=this.queryParams.pipe((0,re.T)(de=>St(de))),this._queryParamMap}toString(){return this.snapshot?this.snapshot.toString():`Future(${this._futureSnapshot})`}}function Xt(X,de,Q="emptyOnly"){let me;const{routeConfig:et}=X;return me=null===de||"always"!==Q&&""!==et?.path&&(de.component||de.routeConfig?.loadComponent)?{params:{...X.params},data:{...X.data},resolve:{...X.data,...X._resolvedData??{}}}:{params:{...de.params,...X.params},data:{...de.data,...X.data},resolve:{...X.data,...de.data,...et?.data,...X._resolvedData}},et&&Ga(et)&&(me.resolve[Ke]=et.title),me}class Nn{url;params;queryParams;fragment;data;outlet;component;routeConfig;_resolve;_resolvedData;_routerState;_paramMap;_queryParamMap;get title(){return this.data?.[Ke]}constructor(de,Q,me,et,Mt,Kt,Tn,ai,Gi){this.url=de,this.params=Q,this.queryParams=me,this.fragment=et,this.data=Mt,this.outlet=Kt,this.component=Tn,this.routeConfig=ai,this._resolve=Gi}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap??=St(this.params),this._paramMap}get queryParamMap(){return this._queryParamMap??=St(this.queryParams),this._queryParamMap}toString(){return`Route(url:'${this.url.map(me=>me.toString()).join("/")}', path:'${this.routeConfig?this.routeConfig.path:""}')`}}class Ki extends ti{url;constructor(de,Q){super(Q),this.url=de,_a(this,Q)}toString(){return Ua(this._root)}}function _a(X,de){de.value._routerState=X,de.children.forEach(Q=>_a(X,Q))}function Ua(X){const de=X.children.length>0?` { ${X.children.map(Ua).join(", ")} } `:"";return`${X.value}${de}`}function $a(X){if(X.snapshot){const de=X.snapshot,Q=X._futureSnapshot;X.snapshot=Q,ht(de.queryParams,Q.queryParams)||X.queryParamsSubject.next(Q.queryParams),de.fragment!==Q.fragment&&X.fragmentSubject.next(Q.fragment),ht(de.params,Q.params)||X.paramsSubject.next(Q.params),function nt(X,de){if(X.length!==de.length)return!1;for(let Q=0;Qht(Q.parameters,de[me].parameters))}(X.url,de.url);return Q&&!(!X.parent!=!de.parent)&&(!X.parent||ns(X.parent,de.parent))}function Ga(X){return"string"==typeof X.title||null===X.title}const As=new i.nKC("");let hr=(()=>{class X{activated=null;get activatedComponentRef(){return this.activated}_activatedRoute=null;name=$;activateEvents=new v.bkB;deactivateEvents=new v.bkB;attachEvents=new v.bkB;detachEvents=new v.bkB;routerOutletData=(0,T.hFB)();parentContexts=(0,i.WQX)(Jt);location=(0,i.WQX)(v.c1b);changeDetector=(0,i.WQX)(T.gRc);inputBinder=(0,i.WQX)(fr,{optional:!0});supportsBindingToComponentInputs=!0;ngOnChanges(Q){if(Q.name){const{firstChange:me,previousValue:et}=Q.name;if(me)return;this.isTrackedInParentContexts(et)&&(this.deactivate(),this.parentContexts.onChildOutletDestroyed(et)),this.initializeOutletWithName()}}ngOnDestroy(){this.isTrackedInParentContexts(this.name)&&this.parentContexts.onChildOutletDestroyed(this.name),this.inputBinder?.unsubscribeFromRouteData(this)}isTrackedInParentContexts(Q){return this.parentContexts.getContext(Q)?.outlet===this}ngOnInit(){this.initializeOutletWithName()}initializeOutletWithName(){if(this.parentContexts.onChildOutletCreated(this.name,this),this.activated)return;const Q=this.parentContexts.getContext(this.name);Q?.route&&(Q.attachRef?this.attach(Q.attachRef,Q.route):this.activateWith(Q.route,Q.injector))}get isActivated(){return!!this.activated}get component(){if(!this.activated)throw new i.buA(4012,!1);return this.activated.instance}get activatedRoute(){if(!this.activated)throw new i.buA(4012,!1);return this._activatedRoute}get activatedRouteData(){return this._activatedRoute?this._activatedRoute.snapshot.data:{}}detach(){if(!this.activated)throw new i.buA(4012,!1);this.location.detach();const Q=this.activated;return this.activated=null,this._activatedRoute=null,this.detachEvents.emit(Q.instance),Q}attach(Q,me){this.activated=Q,this._activatedRoute=me,this.location.insert(Q.hostView),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.attachEvents.emit(Q.instance)}deactivate(){if(this.activated){const Q=this.component;this.activated.destroy(),this.activated=null,this._activatedRoute=null,this.deactivateEvents.emit(Q)}}activateWith(Q,me){if(this.isActivated)throw new i.buA(4013,!1);this._activatedRoute=Q;const et=this.location,Kt=Q.snapshot.component,Tn=this.parentContexts.getOrCreateContext(this.name).children,ai=new mr(Q,Tn,et.injector,this.routerOutletData);this.activated=et.createComponent(Kt,{index:et.length,injector:ai,environmentInjector:me}),this.changeDetector.markForCheck(),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.activateEvents.emit(this.activated.instance)}static \u0275fac=function(me){return new(me||X)};static \u0275dir=v.FsC({type:X,selectors:[["router-outlet"]],inputs:{name:"name",routerOutletData:[1,"routerOutletData"]},outputs:{activateEvents:"activate",deactivateEvents:"deactivate",attachEvents:"attach",detachEvents:"detach"},exportAs:["outlet"],features:[v.OA$]})}return X})();class mr{route;childContexts;parent;outletData;constructor(de,Q,me,et){this.route=de,this.childContexts=Q,this.parent=me,this.outletData=et}get(de,Q){return de===Ze?this.route:de===Jt?this.childContexts:de===As?this.outletData:this.parent.get(de,Q)}}const fr=new i.nKC("");let zo=(()=>{class X{outletDataSubscriptions=new Map;bindActivatedRouteToOutletComponent(Q){this.unsubscribeFromRouteData(Q),this.subscribeToRouteData(Q)}unsubscribeFromRouteData(Q){this.outletDataSubscriptions.get(Q)?.unsubscribe(),this.outletDataSubscriptions.delete(Q)}subscribeToRouteData(Q){const{activatedRoute:me}=Q,et=(0,L.z)([me.queryParams,me.params,me.data]).pipe((0,xe.n)(([Mt,Kt,Tn],ai)=>(Tn={...Mt,...Kt,...Tn},0===ai?(0,f.of)(Tn):Promise.resolve(Tn)))).subscribe(Mt=>{if(!Q.isActivated||!Q.activatedComponentRef||Q.activatedRoute!==me||null===me.component)return void this.unsubscribeFromRouteData(Q);const Kt=(0,T.HJs)(me.component);if(Kt)for(const{templateName:Tn}of Kt.inputs)Q.activatedComponentRef.setInput(Tn,Mt[Tn]);else this.unsubscribeFromRouteData(Q)});this.outletDataSubscriptions.set(Q,et)}static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:X.\u0275fac})}return X})(),pr=(()=>{class X{static \u0275fac=function(me){return new(me||X)};static \u0275cmp=v.VBU({type:X,selectors:[["ng-component"]],exportAs:["emptyRouterOutlet"],decls:1,vars:0,template:function(me,et){1&me&&v.nrm(0,"router-outlet")},dependencies:[hr],encapsulation:2})}return X})();function gr(X){const de=X.children&&X.children.map(gr),Q=de?{...X,children:de}:{...X};return!Q.component&&!Q.loadComponent&&(de||Q.loadChildren)&&Q.outlet&&Q.outlet!==$&&(Q.component=pr),Q}function Zs(X,de,Q){if(Q&&X.shouldReuseRoute(de.value,Q.value.snapshot)){const me=Q.value;me._futureSnapshot=de.value;const et=function jr(X,de,Q){return de.children.map(me=>{for(const et of Q.children)if(X.shouldReuseRoute(me.value,et.value.snapshot))return Zs(X,me,et);return Zs(X,me)})}(X,de,Q);return new ca(me,et)}{if(X.shouldAttach(de.value)){const Mt=X.retrieve(de.value);if(null!==Mt){const Kt=Mt.route;return Kt.value._futureSnapshot=de.value,Kt.children=de.children.map(Tn=>Zs(X,Tn)),Kt}}const me=function Er(X){return new Ze(new u.t(X.url),new u.t(X.params),new u.t(X.queryParams),new u.t(X.fragment),new u.t(X.data),X.outlet,X.component,X)}(de.value),et=de.children.map(Mt=>Zs(X,Mt));return new ca(me,et)}}class Ka{redirectTo;navigationBehaviorOptions;constructor(de,Q){this.redirectTo=de,this.navigationBehaviorOptions=Q}}const Ps="ngNavigationCancelingError";function kr(X,de){const{redirectTo:Q,navigationBehaviorOptions:me}=un(de)?{redirectTo:de,navigationBehaviorOptions:void 0}:de,et=js(!1,In.Redirect);return et.url=Q,et.navigationBehaviorOptions=me,et}function js(X,de){const Q=new Error(`NavigationCancelingError: ${X||""}`);return Q[Ps]=!0,Q.cancellationCode=de,Q}function Zr(X){return!!X&&X[Ps]}class Co{routeReuseStrategy;futureState;currState;forwardEvent;inputBindingEnabled;constructor(de,Q,me,et,Mt){this.routeReuseStrategy=de,this.futureState=Q,this.currState=me,this.forwardEvent=et,this.inputBindingEnabled=Mt}activate(de){const Q=this.futureState._root,me=this.currState?this.currState._root:null;this.deactivateChildRoutes(Q,me,de),$a(this.futureState.root),this.activateChildRoutes(Q,me,de)}deactivateChildRoutes(de,Q,me){const et=nn(Q);de.children.forEach(Mt=>{const Kt=Mt.value.outlet;this.deactivateRoutes(Mt,et[Kt],me),delete et[Kt]}),Object.values(et).forEach(Mt=>{this.deactivateRouteAndItsChildren(Mt,me)})}deactivateRoutes(de,Q,me){const et=de.value,Mt=Q?Q.value:null;if(et===Mt)if(et.component){const Kt=me.getContext(et.outlet);Kt&&this.deactivateChildRoutes(de,Q,Kt.children)}else this.deactivateChildRoutes(de,Q,me);else Mt&&this.deactivateRouteAndItsChildren(Q,me)}deactivateRouteAndItsChildren(de,Q){de.value.component&&this.routeReuseStrategy.shouldDetach(de.value.snapshot)?this.detachAndStoreRouteSubtree(de,Q):this.deactivateRouteAndOutlet(de,Q)}detachAndStoreRouteSubtree(de,Q){const me=Q.getContext(de.value.outlet),et=me&&de.value.component?me.children:Q,Mt=nn(de);for(const Kt of Object.values(Mt))this.deactivateRouteAndItsChildren(Kt,et);if(me&&me.outlet){const Kt=me.outlet.detach(),Tn=me.children.onOutletDeactivated();this.routeReuseStrategy.store(de.value.snapshot,{componentRef:Kt,route:de,contexts:Tn})}}deactivateRouteAndOutlet(de,Q){const me=Q.getContext(de.value.outlet),et=me&&de.value.component?me.children:Q,Mt=nn(de);for(const Kt of Object.values(Mt))this.deactivateRouteAndItsChildren(Kt,et);me&&(me.outlet&&(me.outlet.deactivate(),me.children.onOutletDeactivated()),me.attachRef=null,me.route=null)}activateChildRoutes(de,Q,me){const et=nn(Q);de.children.forEach(Mt=>{this.activateRoutes(Mt,et[Mt.value.outlet],me),this.forwardEvent(new Pi(Mt.value.snapshot))}),de.children.length&&this.forwardEvent(new Rn(de.value.snapshot))}activateRoutes(de,Q,me){const et=de.value,Mt=Q?Q.value:null;if($a(et),et===Mt)if(et.component){const Kt=me.getOrCreateContext(et.outlet);this.activateChildRoutes(de,Q,Kt.children)}else this.activateChildRoutes(de,Q,me);else if(et.component){const Kt=me.getOrCreateContext(et.outlet);if(this.routeReuseStrategy.shouldAttach(et.snapshot)){const Tn=this.routeReuseStrategy.retrieve(et.snapshot);this.routeReuseStrategy.store(et.snapshot,null),Kt.children.onOutletReAttached(Tn.contexts),Kt.attachRef=Tn.componentRef,Kt.route=Tn.route.value,Kt.outlet&&Kt.outlet.attach(Tn.componentRef,Tn.route.value),$a(Tn.route.value),this.activateChildRoutes(de,null,Kt.children)}else Kt.attachRef=null,Kt.route=et,Kt.outlet&&Kt.outlet.activateWith(et,Kt.injector),this.activateChildRoutes(de,null,Kt.children)}else this.activateChildRoutes(de,null,me)}}class Js{path;route;constructor(de){this.path=de,this.route=this.path[this.path.length-1]}}class _r{component;route;constructor(de,Q){this.component=de,this.route=Q}}function rs(X,de,Q){const me=X._root;return Hs(me,de?de._root:null,Q,[me.value])}function is(X,de){const Q=Symbol(),me=de.get(X,Q);return me===Q?"function"!=typeof X||(0,i.muV)(X)?de.get(X):X:me}function Hs(X,de,Q,me,et={canDeactivateChecks:[],canActivateChecks:[]}){const Mt=nn(de);return X.children.forEach(Kt=>{(function Ws(X,de,Q,me,et={canDeactivateChecks:[],canActivateChecks:[]}){const Mt=X.value,Kt=de?de.value:null,Tn=Q?Q.getContext(X.value.outlet):null;if(Kt&&Mt.routeConfig===Kt.routeConfig){const ai=function Mr(X,de,Q){if("function"==typeof Q)return Q(X,de);switch(Q){case"pathParamsChange":return!gn(X.url,de.url);case"pathParamsOrQueryParamsChange":return!gn(X.url,de.url)||!ht(X.queryParams,de.queryParams);case"always":return!0;case"paramsOrQueryParamsChange":return!ns(X,de)||!ht(X.queryParams,de.queryParams);default:return!ns(X,de)}}(Kt,Mt,Mt.routeConfig.runGuardsAndResolvers);ai?et.canActivateChecks.push(new Js(me)):(Mt.data=Kt.data,Mt._resolvedData=Kt._resolvedData),Hs(X,de,Mt.component?Tn?Tn.children:null:Q,me,et),ai&&Tn&&Tn.outlet&&Tn.outlet.isActivated&&et.canDeactivateChecks.push(new _r(Tn.outlet.component,Kt))}else Kt&&Ui(de,Tn,et),et.canActivateChecks.push(new Js(me)),Hs(X,null,Mt.component?Tn?Tn.children:null:Q,me,et)})(Kt,Mt[Kt.value.outlet],Q,me.concat([Kt.value]),et),delete Mt[Kt.value.outlet]}),Object.entries(Mt).forEach(([Kt,Tn])=>Ui(Tn,Q.getContext(Kt),et)),et}function Ui(X,de,Q){const me=nn(X),et=X.value;Object.entries(me).forEach(([Mt,Kt])=>{Ui(Kt,et.component?de?de.children.getContext(Mt):null:de,Q)}),Q.canDeactivateChecks.push(new _r(et.component&&de&&de.outlet&&de.outlet.isActivated?de.outlet.component:null,et))}function xs(X){return"function"==typeof X}function wa(X){return X instanceof C.G||"EmptyError"===X?.name}const ja=Symbol("INITIAL_VALUE");function Za(){return(0,xe.n)(X=>(0,L.z)(X.map(de=>de.pipe((0,Ee.s)(1),(0,V.Z)(ja)))).pipe((0,re.T)(de=>{for(const Q of de)if(!0!==Q){if(Q===ja)return ja;if(!1===Q||Or(Q))return Q}return!0}),(0,ce.p)(de=>de!==ja),(0,Ee.s)(1)))}function Or(X){return un(X)||X instanceof Ka}function ln(X){return(0,Pe.F)((0,De.M)(de=>{if("boolean"!=typeof de)throw kr(0,de)}),(0,re.T)(de=>!0===de))}class ua{segmentGroup;constructor(de){this.segmentGroup=de||null}}class Es extends Error{urlTree;constructor(de){super(),this.urlTree=de}}function kt(X){return(0,le.$)(new ua(X))}function On(X){return(0,le.$)(new i.buA(4e3,!1))}class mn{urlSerializer;urlTree;constructor(de,Q){this.urlSerializer=de,this.urlTree=Q}lineralizeSegments(de,Q){let me=[],et=Q.root;for(;;){if(me=me.concat(et.segments),0===et.numberOfChildren)return(0,f.of)(me);if(et.numberOfChildren>1||!et.children[$])return On();et=et.children[$]}}applyRedirectCommands(de,Q,me,et,Mt){return function Ln(X,de,Q){if("string"==typeof X)return(0,f.of)(X);const me=X,{queryParams:et,fragment:Mt,routeConfig:Kt,url:Tn,outlet:ai,params:Gi,data:La,title:as}=de;return Qe((0,i.N4e)(Q,()=>me({params:Gi,data:La,queryParams:et,fragment:Mt,routeConfig:Kt,url:Tn,outlet:ai,title:as})))}(Q,et,Mt).pipe((0,re.T)(Kt=>{if(Kt instanceof Ue)throw new Es(Kt);const Tn=this.applyRedirectCreateUrlTree(Kt,this.urlSerializer.parse(Kt),de,me);if("/"===Kt[0])throw new Es(Tn);return Tn}))}applyRedirectCreateUrlTree(de,Q,me,et){const Mt=this.createSegmentGroup(de,Q.root,me,et);return new Ue(Mt,this.createQueryParams(Q.queryParams,this.urlTree.queryParams),Q.fragment)}createQueryParams(de,Q){const me={};return Object.entries(de).forEach(([et,Mt])=>{if("string"==typeof Mt&&":"===Mt[0]){const Tn=Mt.substring(1);me[et]=Q[Tn]}else me[et]=Mt}),me}createSegmentGroup(de,Q,me,et){const Mt=this.createSegments(de,Q.segments,me,et);let Kt={};return Object.entries(Q.children).forEach(([Tn,ai])=>{Kt[Tn]=this.createSegmentGroup(de,ai,me,et)}),new wt(Mt,Kt)}createSegments(de,Q,me,et){return Q.map(Mt=>":"===Mt.path[0]?this.findPosParam(de,Mt,et):this.findOrReturn(Mt,me))}findPosParam(de,Q,me){const et=me[Q.path.substring(1)];if(!et)throw new i.buA(4001,!1);return et}findOrReturn(de,Q){let me=0;for(const et of Q){if(et.path===de.path)return Q.splice(me),et;me++}return de}}const Ei={matched:!1,consumedSegments:[],remainingSegments:[],parameters:{},positionalParamSegments:{}};function xa(X,de,Q,me,et){const Mt=cs(X,de,Q);return Mt.matched?(me=function bn(X,de){return X.providers&&!X._injector&&(X._injector=(0,v.Ol2)(X.providers,de,`Route: ${X.path}`)),X._injector??de}(de,me),function Oi(X,de,Q,me){const et=de.canMatch;if(!et||0===et.length)return(0,f.of)(!0);const Mt=et.map(Kt=>{const Tn=is(Kt,X);return Qe(function Xs(X){return X&&xs(X.canMatch)}(Tn)?Tn.canMatch(de,Q):(0,i.N4e)(X,()=>Tn(de,Q)))});return(0,f.of)(Mt).pipe(Za(),ln())}(me,de,Q).pipe((0,re.T)(Kt=>!0===Kt?Mt:{...Ei}))):(0,f.of)(Mt)}function cs(X,de,Q){if("**"===de.path)return function qr(X){return{matched:!0,parameters:X.length>0?fe(X).parameters:{},consumedSegments:X,remainingSegments:[],positionalParamSegments:{}}}(Q);if(""===de.path)return"full"===de.pathMatch&&(X.hasChildren()||Q.length>0)?{...Ei}:{matched:!0,consumedSegments:[],remainingSegments:Q,parameters:{},positionalParamSegments:{}};const et=(de.matcher||ot)(Q,X,de);if(!et)return{...Ei};const Mt={};Object.entries(et.posParams??{}).forEach(([Tn,ai])=>{Mt[Tn]=ai.path});const Kt=et.consumed.length>0?{...Mt,...et.consumed[et.consumed.length-1].parameters}:Mt;return{matched:!0,consumedSegments:et.consumed,remainingSegments:Q.slice(et.consumed.length),parameters:Kt,positionalParamSegments:et.posParams??{}}}function xo(X,de,Q,me){return Q.length>0&&function Ml(X,de,Q){return Q.some(me=>tr(X,de,me)&&Fe(me)!==$)}(X,Q,me)?{segmentGroup:new wt(de,el(me,new wt(Q,X.children))),slicedSegments:[]}:0===Q.length&&function Ss(X,de,Q){return Q.some(me=>tr(X,de,me))}(X,Q,me)?{segmentGroup:new wt(X.segments,Ms(X,Q,me,X.children)),slicedSegments:Q}:{segmentGroup:new wt(X.segments,X.children),slicedSegments:Q}}function Ms(X,de,Q,me){const et={};for(const Mt of Q)if(tr(X,de,Mt)&&!me[Fe(Mt)]){const Kt=new wt([],{});et[Fe(Mt)]=Kt}return{...me,...et}}function el(X,de){const Q={};Q[$]=de;for(const me of X)if(""===me.path&&Fe(me)!==$){const et=new wt([],{});Q[Fe(me)]=et}return Q}function tr(X,de,Q){return(!(X.hasChildren()||de.length>0)||"full"!==Q.pathMatch)&&""===Q.path}class Mo{}class zl{injector;configLoader;rootComponentType;config;urlTree;paramsInheritanceStrategy;urlSerializer;applyRedirects;absoluteRedirectCount=0;allowRedirects=!0;constructor(de,Q,me,et,Mt,Kt,Tn){this.injector=de,this.configLoader=Q,this.rootComponentType=me,this.config=et,this.urlTree=Mt,this.paramsInheritanceStrategy=Kt,this.urlSerializer=Tn,this.applyRedirects=new mn(this.urlSerializer,this.urlTree)}noMatchError(de){return new i.buA(4002,`'${de.segmentGroup}'`)}recognize(){const de=xo(this.urlTree.root,[],[],this.config).segmentGroup;return this.match(de).pipe((0,re.T)(({children:Q,rootSnapshot:me})=>{const et=new ca(me,Q),Mt=new Ki("",et),Kt=function Nt(X,de,Q=null,me=null){return xn(dn(X),de,Q,me)}(me,[],this.urlTree.queryParams,this.urlTree.fragment);return Kt.queryParams=this.urlTree.queryParams,Mt.url=this.urlSerializer.serialize(Kt),{state:Mt,tree:Kt}}))}match(de){const Q=new Nn([],Object.freeze({}),Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Object.freeze({}),$,this.rootComponentType,null,{});return this.processSegmentGroup(this.injector,this.config,de,$,Q).pipe((0,re.T)(me=>({children:me,rootSnapshot:Q})),(0,Re.W)(me=>{if(me instanceof Es)return this.urlTree=me.urlTree,this.match(me.urlTree.root);throw me instanceof ua?this.noMatchError(me):me}))}processSegmentGroup(de,Q,me,et,Mt){return 0===me.segments.length&&me.hasChildren()?this.processChildren(de,Q,me,Mt):this.processSegment(de,Q,me,me.segments,et,!0,Mt).pipe((0,re.T)(Kt=>Kt instanceof ca?[Kt]:[]))}processChildren(de,Q,me,et){const Mt=[];for(const Kt of Object.keys(me.children))"primary"===Kt?Mt.unshift(Kt):Mt.push(Kt);return(0,O.H)(Mt).pipe((0,J.H)(Kt=>{const Tn=me.children[Kt],ai=function Wt(X,de){const Q=X.filter(me=>Fe(me)===de);return Q.push(...X.filter(me=>Fe(me)!==de)),Q}(Q,Kt);return this.processSegmentGroup(de,ai,Tn,Kt,et)}),(0,Xe.S)((Kt,Tn)=>(Kt.push(...Tn),Kt)),(0,_e.U)(null),function ie(X,de){const Q=arguments.length>=2;return me=>me.pipe(X?(0,ce.p)((et,Mt)=>X(et,Mt,me)):te.D,lt(1),Q?(0,_e.U)(de):(0,Le.v)(()=>new C.G))}(),(0,be.Z)(Kt=>{if(null===Kt)return kt(me);const Tn=mi(Kt);return function ds(X){X.sort((de,Q)=>de.value.outlet===$?-1:Q.value.outlet===$?1:de.value.outlet.localeCompare(Q.value.outlet))}(Tn),(0,f.of)(Tn)}))}processSegment(de,Q,me,et,Mt,Kt,Tn){return(0,O.H)(Q).pipe((0,J.H)(ai=>this.processSegmentAgainstRoute(ai._injector??de,Q,ai,me,et,Mt,Kt,Tn).pipe((0,Re.W)(Gi=>{if(Gi instanceof ua)return(0,f.of)(null);throw Gi}))),(0,ne.$)(ai=>!!ai),(0,Re.W)(ai=>{if(wa(ai))return function Eo(X,de,Q){return 0===de.length&&!X.children[Q]}(me,et,Mt)?(0,f.of)(new Mo):kt(me);throw ai}))}processSegmentAgainstRoute(de,Q,me,et,Mt,Kt,Tn,ai){return Fe(me)===Kt||Kt!==$&&tr(et,Mt,me)?void 0===me.redirectTo?this.matchSegmentAgainstRoute(de,et,me,Mt,Kt,ai):this.allowRedirects&&Tn?this.expandSegmentAgainstRouteUsingRedirect(de,et,Q,me,Mt,Kt,ai):kt(et):kt(et)}expandSegmentAgainstRouteUsingRedirect(de,Q,me,et,Mt,Kt,Tn){const{matched:ai,parameters:Gi,consumedSegments:La,positionalParamSegments:as,remainingSegments:Ns}=cs(Q,et,Mt);if(!ai)return kt(Q);"string"==typeof et.redirectTo&&"/"===et.redirectTo[0]&&(this.absoluteRedirectCount++,this.absoluteRedirectCount>31&&(this.allowRedirects=!1));const il=new Nn(Mt,Gi,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Go(et),Fe(et),et.component??et._loadedComponent??null,et,gl(et)),ar=Xt(il,Tn,this.paramsInheritanceStrategy);return il.params=Object.freeze(ar.params),il.data=Object.freeze(ar.data),this.applyRedirects.applyRedirectCommands(La,et.redirectTo,as,il,de).pipe((0,xe.n)(oo=>this.applyRedirects.lineralizeSegments(et,oo)),(0,be.Z)(oo=>this.processSegment(de,me,Q,oo.concat(Ns),Kt,!1,Tn)))}matchSegmentAgainstRoute(de,Q,me,et,Mt,Kt){const Tn=xa(Q,me,et,de);return"**"===me.path&&(Q.children={}),Tn.pipe((0,xe.n)(ai=>ai.matched?this.getChildConfig(de=me._injector??de,me,et).pipe((0,xe.n)(({routes:Gi})=>{const La=me._loadedInjector??de,{parameters:as,consumedSegments:Ns,remainingSegments:il}=ai,ar=new Nn(Ns,as,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Go(me),Fe(me),me.component??me._loadedComponent??null,me,gl(me)),ro=Xt(ar,Kt,this.paramsInheritanceStrategy);ar.params=Object.freeze(ro.params),ar.data=Object.freeze(ro.data);const{segmentGroup:oo,slicedSegments:Il}=xo(Q,Ns,il,Gi);if(0===Il.length&&oo.hasChildren())return this.processChildren(La,Gi,oo,ar).pipe((0,re.T)(ec=>new ca(ar,ec)));if(0===Gi.length&&0===Il.length)return(0,f.of)(new ca(ar,[]));const mc=Fe(me)===Mt;return this.processSegment(La,Gi,oo,Il,mc?$:Mt,!0,ar).pipe((0,re.T)(ec=>new ca(ar,ec instanceof ca?[ec]:[])))})):kt(Q)))}getChildConfig(de,Q,me){return Q.children?(0,f.of)({routes:Q.children,injector:de}):Q.loadChildren?void 0!==Q._loadedRoutes?(0,f.of)({routes:Q._loadedRoutes,injector:Q._loadedInjector}):function mt(X,de,Q,me){const et=de.canLoad;if(void 0===et||0===et.length)return(0,f.of)(!0);const Mt=et.map(Kt=>{const Tn=is(Kt,X);return Qe(function qs(X){return X&&xs(X.canLoad)}(Tn)?Tn.canLoad(de,Q):(0,i.N4e)(X,()=>Tn(de,Q)))});return(0,f.of)(Mt).pipe(Za(),ln())}(de,Q,me).pipe((0,be.Z)(et=>et?this.configLoader.loadChildren(de,Q).pipe((0,De.M)(Mt=>{Q._loadedRoutes=Mt.routes,Q._loadedInjector=Mt.injector})):function $e(){return(0,le.$)(js(!1,In.GuardRejected))}())):(0,f.of)({routes:[],injector:de})}}function nr(X){const de=X.value.routeConfig;return de&&""===de.path}function mi(X){const de=[],Q=new Set;for(const me of X){if(!nr(me)){de.push(me);continue}const et=de.find(Mt=>me.value.routeConfig===Mt.value.routeConfig);void 0!==et?(et.children.push(...me.children),Q.add(et)):de.push(me)}for(const me of Q){const et=mi(me.children);de.push(new ca(me.value,et))}return de.filter(me=>!Q.has(me))}function Go(X){return X.data||{}}function gl(X){return X.resolve||{}}function mo(X){const de=X.children.map(Q=>mo(Q)).flat();return[X,...de]}function us(X){return(0,xe.n)(de=>{const Q=X(de);return Q?(0,O.H)(Q).pipe((0,re.T)(()=>de)):(0,f.of)(de)})}let Dl=(()=>{class X{buildTitle(Q){let me,et=Q.root;for(;void 0!==et;)me=this.getResolvedTitleForRoute(et)??me,et=et.children.find(Mt=>Mt.outlet===$);return me}getResolvedTitleForRoute(Q){return Q.data[Ke]}static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:()=>(0,i.WQX)(eo),providedIn:"root"})}return X})(),eo=(()=>{class X extends Dl{title;constructor(Q){super(),this.title=Q}updateTitle(Q){const me=this.buildTitle(Q);void 0!==me&&this.title.setTitle(me)}static \u0275fac=function(me){return new(me||X)(i.KVO(H.hE))};static \u0275prov=i.jDH({token:X,factory:X.\u0275fac,providedIn:"root"})}return X})();const So=new i.nKC("",{providedIn:"root",factory:()=>({})}),fo=new i.nKC("");let To=(()=>{class X{componentLoaders=new WeakMap;childrenLoaders=new WeakMap;onLoadStartListener;onLoadEndListener;compiler=(0,i.WQX)(v.Ql9);loadComponent(Q,me){if(this.componentLoaders.get(me))return this.componentLoaders.get(me);if(me._loadedComponent)return(0,f.of)(me._loadedComponent);this.onLoadStartListener&&this.onLoadStartListener(me);const et=Qe((0,i.N4e)(Q,()=>me.loadComponent())).pipe((0,re.T)(to),(0,xe.n)(wl),(0,De.M)(Kt=>{this.onLoadEndListener&&this.onLoadEndListener(me),me._loadedComponent=Kt}),(0,P.j)(()=>{this.componentLoaders.delete(me)})),Mt=new Ae.G(et,()=>new j.B).pipe((0,F.B)());return this.componentLoaders.set(me,Mt),Mt}loadChildren(Q,me){if(this.childrenLoaders.get(me))return this.childrenLoaders.get(me);if(me._loadedRoutes)return(0,f.of)({routes:me._loadedRoutes,injector:me._loadedInjector});this.onLoadStartListener&&this.onLoadStartListener(me);const Mt=function Ho(X,de,Q,me){return Qe((0,i.N4e)(Q,()=>X.loadChildren())).pipe((0,re.T)(to),(0,xe.n)(wl),(0,be.Z)(et=>et instanceof v.PYt||Array.isArray(et)?(0,f.of)(et):(0,O.H)(de.compileModuleAsync(et))),(0,re.T)(et=>{me&&me(X);let Mt,Kt,Tn=!1;return Array.isArray(et)?(Kt=et,!0):(Mt=et.create(Q).injector,Kt=Mt.get(fo,[],{optional:!0,self:!0}).flat()),{routes:Kt.map(gr),injector:Mt}}))}(me,this.compiler,Q,this.onLoadEndListener).pipe((0,P.j)(()=>{this.childrenLoaders.delete(me)})),Kt=new Ae.G(Mt,()=>new j.B).pipe((0,F.B)());return this.childrenLoaders.set(me,Kt),Kt}static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:X.\u0275fac,providedIn:"root"})}return X})();function to(X){return function _l(X){return X&&"object"==typeof X&&"default"in X}(X)?X.default:X}function wl(X){return(0,f.of)(X)}let no=(()=>{class X{static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:()=>(0,i.WQX)(Al),providedIn:"root"})}return X})(),Al=(()=>{class X{shouldProcessUrl(Q){return!0}extract(Q){return Q}merge(Q,me){return Q}static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:X.\u0275fac,providedIn:"root"})}return X})();const io=new i.nKC(""),Ys=new i.nKC("");function Dr(X,de,Q){const me=X.get(Ys),et=X.get(i.qQL);if(!et.startViewTransition||me.skipNextTransition)return me.skipNextTransition=!1,new Promise(Gi=>setTimeout(Gi));let Mt;const Kt=new Promise(Gi=>{Mt=Gi}),Tn=et.startViewTransition(()=>(Mt(),function li(X){return new Promise(de=>{(0,v.mal)({read:()=>setTimeout(de)},{injector:X})})}(X)));Tn.ready.catch(Gi=>{});const{onViewTransitionCreated:ai}=me;return ai&&(0,i.N4e)(X,()=>ai({transition:Tn,from:de,to:Q})),Kt}const Wr=new i.nKC("");let ao=(()=>{class X{currentNavigation=(0,i.vPA)(null,{equal:()=>!1});currentTransition=null;lastSuccessfulNavigation=null;events=new j.B;transitionAbortWithErrorSubject=new j.B;configLoader=(0,i.WQX)(To);environmentInjector=(0,i.WQX)(i.uvJ);destroyRef=(0,i.WQX)(i.abz);urlSerializer=(0,i.WQX)(vi);rootContexts=(0,i.WQX)(Jt);location=(0,i.WQX)(d.aZ);inputBindingEnabled=null!==(0,i.WQX)(fr,{optional:!0});titleStrategy=(0,i.WQX)(Dl);options=(0,i.WQX)(So,{optional:!0})||{};paramsInheritanceStrategy=this.options.paramsInheritanceStrategy||"emptyOnly";urlHandlingStrategy=(0,i.WQX)(no);createViewTransition=(0,i.WQX)(io,{optional:!0});navigationErrorHandler=(0,i.WQX)(Wr,{optional:!0});navigationId=0;get hasRequestedNavigation(){return 0!==this.navigationId}transitions;afterPreactivation=()=>(0,f.of)(void 0);rootComponentType=null;destroyed=!1;constructor(){this.configLoader.onLoadEndListener=et=>this.events.next(new Wn(et)),this.configLoader.onLoadStartListener=et=>this.events.next(new En(et)),this.destroyRef.onDestroy(()=>{this.destroyed=!0})}complete(){this.transitions?.complete()}handleNavigationRequest(Q){const me=++this.navigationId;(0,w.O8)(()=>{this.transitions?.next({...Q,extractedUrl:this.urlHandlingStrategy.extract(Q.rawUrl),targetSnapshot:null,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null,abortController:new AbortController,id:me})})}setupNavigations(Q){return this.transitions=new u.t(null),this.transitions.pipe((0,ce.p)(me=>null!==me),(0,xe.n)(me=>{let et=!1;return(0,f.of)(me).pipe((0,xe.n)(Mt=>{if(this.navigationId>me.id)return this.cancelNavigationTransition(me,"",In.SupersededByNewNavigation),Ce.w;this.currentTransition=me,this.currentNavigation.set({id:Mt.id,initialUrl:Mt.rawUrl,extractedUrl:Mt.extractedUrl,targetBrowserUrl:"string"==typeof Mt.extras.browserUrl?this.urlSerializer.parse(Mt.extras.browserUrl):Mt.extras.browserUrl,trigger:Mt.source,extras:Mt.extras,previousNavigation:this.lastSuccessfulNavigation?{...this.lastSuccessfulNavigation,previousNavigation:null}:null,abort:()=>Mt.abortController.abort()});const Kt=!Q.navigated||this.isUpdatingInternalState()||this.isUpdatedBrowserUrl();if(!Kt&&"reload"!==(Mt.extras.onSameUrlNavigation??Q.onSameUrlNavigation))return this.events.next(new ii(Mt.id,this.urlSerializer.serialize(Mt.rawUrl),"",Mn.IgnoredSameUrlNavigation)),Mt.resolve(!1),Ce.w;if(this.urlHandlingStrategy.shouldProcessUrl(Mt.rawUrl))return(0,f.of)(Mt).pipe((0,xe.n)(ai=>(this.events.next(new ci(ai.id,this.urlSerializer.serialize(ai.extractedUrl),ai.source,ai.restoredState)),ai.id!==this.navigationId?Ce.w:Promise.resolve(ai))),function Tr(X,de,Q,me,et,Mt){return(0,be.Z)(Kt=>function Sl(X,de,Q,me,et,Mt,Kt="emptyOnly"){return new zl(X,de,Q,me,et,Kt,Mt).recognize()}(X,de,Q,me,Kt.extractedUrl,et,Mt).pipe((0,re.T)(({state:Tn,tree:ai})=>({...Kt,targetSnapshot:Tn,urlAfterRedirects:ai}))))}(this.environmentInjector,this.configLoader,this.rootComponentType,Q.config,this.urlSerializer,this.paramsInheritanceStrategy),(0,De.M)(ai=>{me.targetSnapshot=ai.targetSnapshot,me.urlAfterRedirects=ai.urlAfterRedirects,this.currentNavigation.update(La=>(La.finalUrl=ai.urlAfterRedirects,La));const Gi=new ia(ai.id,this.urlSerializer.serialize(ai.extractedUrl),this.urlSerializer.serialize(ai.urlAfterRedirects),ai.targetSnapshot);this.events.next(Gi)}));if(Kt&&this.urlHandlingStrategy.shouldProcessUrl(Mt.currentRawUrl)){const{id:ai,extractedUrl:Gi,source:La,restoredState:as,extras:Ns}=Mt,il=new ci(ai,this.urlSerializer.serialize(Gi),La,as);this.events.next(il);const ar=U(this.rootComponentType).snapshot;return this.currentTransition=me={...Mt,targetSnapshot:ar,urlAfterRedirects:Gi,extras:{...Ns,skipLocationChange:!1,replaceUrl:!1}},this.currentNavigation.update(ro=>(ro.finalUrl=Gi,ro)),(0,f.of)(me)}return this.events.next(new ii(Mt.id,this.urlSerializer.serialize(Mt.extractedUrl),"",Mn.IgnoredByUrlHandlingStrategy)),Mt.resolve(!1),Ce.w}),(0,De.M)(Mt=>{const Kt=new ra(Mt.id,this.urlSerializer.serialize(Mt.extractedUrl),this.urlSerializer.serialize(Mt.urlAfterRedirects),Mt.targetSnapshot);this.events.next(Kt)}),(0,re.T)(Mt=>(this.currentTransition=me={...Mt,guards:rs(Mt.targetSnapshot,Mt.currentSnapshot,this.rootContexts)},me)),function Rr(X,de){return(0,be.Z)(Q=>{const{targetSnapshot:me,currentSnapshot:et,guards:{canActivateChecks:Mt,canDeactivateChecks:Kt}}=Q;return 0===Kt.length&&0===Mt.length?(0,f.of)({...Q,guardsResult:!0}):function Fs(X,de,Q,me){return(0,O.H)(X).pipe((0,be.Z)(et=>function q(X,de,Q,me,et){const Mt=de&&de.routeConfig?de.routeConfig.canDeactivate:null;if(!Mt||0===Mt.length)return(0,f.of)(!0);const Kt=Mt.map(Tn=>{const ai=Ve(de)??et,Gi=is(Tn,ai);return Qe(function er(X){return X&&xs(X.canDeactivate)}(Gi)?Gi.canDeactivate(X,de,Q,me):(0,i.N4e)(ai,()=>Gi(X,de,Q,me))).pipe((0,ne.$)())});return(0,f.of)(Kt).pipe(Za())}(et.component,et.route,Q,de,me)),(0,ne.$)(et=>!0!==et,!0))}(Kt,me,et,X).pipe((0,be.Z)(Tn=>Tn&&function vr(X){return"boolean"==typeof X}(Tn)?function Hr(X,de,Q,me){return(0,O.H)(de).pipe((0,J.H)(et=>(0,B.x)(function Sr(X,de){return null!==X&&de&&de(new ri(X)),(0,f.of)(!0)}(et.route.parent,me),function Ks(X,de){return null!==X&&de&&de(new Hn(X)),(0,f.of)(!0)}(et.route,me),function He(X,de,Q){const me=de[de.length-1],Mt=de.slice(0,de.length-1).reverse().map(Kt=>function ls(X){const de=X.routeConfig?X.routeConfig.canActivateChild:null;return de&&0!==de.length?{node:X,guards:de}:null}(Kt)).filter(Kt=>null!==Kt).map(Kt=>(0,A.v)(()=>{const Tn=Kt.guards.map(ai=>{const Gi=Ve(Kt.node)??Q,La=is(ai,Gi);return Qe(function yr(X){return X&&xs(X.canActivateChild)}(La)?La.canActivateChild(me,X):(0,i.N4e)(Gi,()=>La(me,X))).pipe((0,ne.$)())});return(0,f.of)(Tn).pipe(Za())}));return(0,f.of)(Mt).pipe(Za())}(X,et.path,Q),function Ne(X,de,Q){const me=de.routeConfig?de.routeConfig.canActivate:null;if(!me||0===me.length)return(0,f.of)(!0);const et=me.map(Mt=>(0,A.v)(()=>{const Kt=Ve(de)??Q,Tn=is(Mt,Kt);return Qe(function Pa(X){return X&&xs(X.canActivate)}(Tn)?Tn.canActivate(de,X):(0,i.N4e)(Kt,()=>Tn(de,X))).pipe((0,ne.$)())}));return(0,f.of)(et).pipe(Za())}(X,et.route,Q))),(0,ne.$)(et=>!0!==et,!0))}(me,Mt,X,de):(0,f.of)(Tn)),(0,re.T)(Tn=>({...Q,guardsResult:Tn})))})}(this.environmentInjector,Mt=>this.events.next(Mt)),(0,De.M)(Mt=>{if(me.guardsResult=Mt.guardsResult,Mt.guardsResult&&"boolean"!=typeof Mt.guardsResult)throw kr(0,Mt.guardsResult);const Kt=new fa(Mt.id,this.urlSerializer.serialize(Mt.extractedUrl),this.urlSerializer.serialize(Mt.urlAfterRedirects),Mt.targetSnapshot,!!Mt.guardsResult);this.events.next(Kt)}),(0,ce.p)(Mt=>!!Mt.guardsResult||(this.cancelNavigationTransition(Mt,"",In.GuardRejected),!1)),us(Mt=>{if(0!==Mt.guards.canActivateChecks.length)return(0,f.of)(Mt).pipe((0,De.M)(Kt=>{const Tn=new ha(Kt.id,this.urlSerializer.serialize(Kt.extractedUrl),this.urlSerializer.serialize(Kt.urlAfterRedirects),Kt.targetSnapshot);this.events.next(Tn)}),(0,xe.n)(Kt=>{let Tn=!1;return(0,f.of)(Kt).pipe(function jo(X,de){return(0,be.Z)(Q=>{const{targetSnapshot:me,guards:{canActivateChecks:et}}=Q;if(!et.length)return(0,f.of)(Q);const Mt=new Set(et.map(ai=>ai.route)),Kt=new Set;for(const ai of Mt)if(!Kt.has(ai))for(const Gi of mo(ai))Kt.add(Gi);let Tn=0;return(0,O.H)(Kt).pipe((0,J.H)(ai=>Mt.has(ai)?function Tl(X,de,Q,me){const et=X.routeConfig,Mt=X._resolve;return void 0!==et?.title&&!Ga(et)&&(Mt[Ke]=et.title),(0,A.v)(()=>(X.data=Xt(X,X.parent,Q).resolve,function Vl(X,de,Q,me){const et=oe(X);if(0===et.length)return(0,f.of)({});const Mt={};return(0,O.H)(et).pipe((0,be.Z)(Kt=>function za(X,de,Q,me){const et=Ve(de)??me,Mt=is(X,et);return Qe(Mt.resolve?Mt.resolve(de,Q):(0,i.N4e)(et,()=>Mt(de,Q)))}(X[Kt],de,Q,me).pipe((0,ne.$)(),(0,De.M)(Tn=>{if(Tn instanceof Ka)throw kr(new Ni,Tn);Mt[Kt]=Tn}))),lt(1),(0,re.T)(()=>Mt),(0,Re.W)(Kt=>wa(Kt)?Ce.w:(0,le.$)(Kt)))}(Mt,X,de,me).pipe((0,re.T)(Kt=>(X._resolvedData=Kt,X.data={...X.data,...Kt},null)))))}(ai,me,X,de):(ai.data=Xt(ai,ai.parent,X).resolve,(0,f.of)(void 0))),(0,De.M)(()=>Tn++),lt(1),(0,be.Z)(ai=>Tn===Kt.size?(0,f.of)(Q):Ce.w))})}(this.paramsInheritanceStrategy,this.environmentInjector),(0,De.M)({next:()=>Tn=!0,complete:()=>{Tn||this.cancelNavigationTransition(Kt,"",In.NoDataFromResolver)}}))}),(0,De.M)(Kt=>{const Tn=new qt(Kt.id,this.urlSerializer.serialize(Kt.extractedUrl),this.urlSerializer.serialize(Kt.urlAfterRedirects),Kt.targetSnapshot);this.events.next(Tn)}))}),us(Mt=>{const Kt=Tn=>{const ai=[];if(Tn.routeConfig?.loadComponent){const Gi=Ve(Tn)??this.environmentInjector;ai.push(this.configLoader.loadComponent(Gi,Tn.routeConfig).pipe((0,De.M)(La=>{Tn.component=La}),(0,re.T)(()=>{})))}for(const Gi of Tn.children)ai.push(...Kt(Gi));return ai};return(0,L.z)(Kt(Mt.targetSnapshot.root)).pipe((0,_e.U)(null),(0,Ee.s)(1))}),us(()=>this.afterPreactivation()),(0,xe.n)(()=>{const{currentSnapshot:Mt,targetSnapshot:Kt}=me,Tn=this.createViewTransition?.(this.environmentInjector,Mt.root,Kt.root);return Tn?(0,O.H)(Tn).pipe((0,re.T)(()=>me)):(0,f.of)(me)}),(0,re.T)(Mt=>{const Kt=function bo(X,de,Q){const me=Zs(X,de._root,Q?Q._root:void 0);return new ni(me,de)}(Q.routeReuseStrategy,Mt.targetSnapshot,Mt.currentRouterState);return this.currentTransition=me={...Mt,targetRouterState:Kt},this.currentNavigation.update(Tn=>(Tn.targetRouterState=Kt,Tn)),me}),(0,De.M)(()=>{this.events.next(new Ta)}),((X,de,Q,me)=>(0,re.T)(et=>(new Co(de,et.targetRouterState,et.currentRouterState,Q,me).activate(X),et)))(this.rootContexts,Q.routeReuseStrategy,Mt=>this.events.next(Mt),this.inputBindingEnabled),(0,Ee.s)(1),(0,ve.Q)(new W.c(Mt=>{const Kt=me.abortController.signal,Tn=()=>Mt.next();return Kt.addEventListener("abort",Tn),()=>Kt.removeEventListener("abort",Tn)}).pipe((0,ce.p)(()=>!et&&!me.targetRouterState),(0,De.M)(()=>{this.cancelNavigationTransition(me,me.abortController.signal.reason+"",In.Aborted)}))),(0,De.M)({next:Mt=>{et=!0,this.lastSuccessfulNavigation=(0,w.O8)(this.currentNavigation),this.events.next(new rn(Mt.id,this.urlSerializer.serialize(Mt.extractedUrl),this.urlSerializer.serialize(Mt.urlAfterRedirects))),this.titleStrategy?.updateTitle(Mt.targetRouterState.snapshot),Mt.resolve(!0)},complete:()=>{et=!0}}),(0,ve.Q)(this.transitionAbortWithErrorSubject.pipe((0,De.M)(Mt=>{throw Mt}))),(0,P.j)(()=>{et||this.cancelNavigationTransition(me,"",In.SupersededByNewNavigation),this.currentTransition?.id===me.id&&(this.currentNavigation.set(null),this.currentTransition=null)}),(0,Re.W)(Mt=>{if(this.destroyed)return me.resolve(!1),Ce.w;if(et=!0,Zr(Mt))this.events.next(new Vn(me.id,this.urlSerializer.serialize(me.extractedUrl),Mt.message,Mt.cancellationCode)),function Vo(X){return Zr(X)&&un(X.url)}(Mt)?this.events.next(new en(Mt.url,Mt.navigationBehaviorOptions)):me.resolve(!1);else{const Kt=new Bn(me.id,this.urlSerializer.serialize(me.extractedUrl),Mt,me.targetSnapshot??void 0);try{const Tn=(0,i.N4e)(this.environmentInjector,()=>this.navigationErrorHandler?.(Kt));if(!(Tn instanceof Ka))throw this.events.next(Kt),Mt;{const{message:ai,cancellationCode:Gi}=kr(0,Tn);this.events.next(new Vn(me.id,this.urlSerializer.serialize(me.extractedUrl),ai,Gi)),this.events.next(new en(Tn.redirectTo,Tn.navigationBehaviorOptions))}}catch(Tn){this.options.resolveNavigationPromiseOnError?me.resolve(!1):me.reject(Tn)}}return Ce.w}))}))}cancelNavigationTransition(Q,me,et){const Mt=new Vn(Q.id,this.urlSerializer.serialize(Q.extractedUrl),me,et);this.events.next(Mt),Q.resolve(!1)}isUpdatingInternalState(){return this.currentTransition?.extractedUrl.toString()!==this.currentTransition?.currentUrlTree.toString()}isUpdatedBrowserUrl(){const Q=this.urlHandlingStrategy.extract(this.urlSerializer.parse(this.location.path(!0))),me=(0,w.O8)(this.currentNavigation),et=me?.targetBrowserUrl??me?.extractedUrl;return Q.toString()!==et?.toString()&&!me?.extras.skipLocationChange}static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:X.\u0275fac,providedIn:"root"})}return X})();function Pr(X){return X!==Un}let so=(()=>{class X{static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:()=>(0,i.WQX)(Ul),providedIn:"root"})}return X})();class tl{shouldDetach(de){return!1}store(de,Q){}shouldAttach(de){return!1}retrieve(de){return null}shouldReuseRoute(de,Q){return de.routeConfig===Q.routeConfig}}let Ul=(()=>{class X extends tl{static \u0275fac=(()=>{let Q;return function(et){return(Q||(Q=v.xGo(X)))(et||X)}})();static \u0275prov=i.jDH({token:X,factory:X.\u0275fac,providedIn:"root"})}return X})(),Do=(()=>{class X{urlSerializer=(0,i.WQX)(vi);options=(0,i.WQX)(So,{optional:!0})||{};canceledNavigationResolution=this.options.canceledNavigationResolution||"replace";location=(0,i.WQX)(d.aZ);urlHandlingStrategy=(0,i.WQX)(no);urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred";currentUrlTree=new Ue;getCurrentUrlTree(){return this.currentUrlTree}rawUrlTree=this.currentUrlTree;getRawUrlTree(){return this.rawUrlTree}createBrowserPath({finalUrl:Q,initialUrl:me,targetBrowserUrl:et}){const Mt=void 0!==Q?this.urlHandlingStrategy.merge(Q,me):me,Kt=et??Mt;return Kt instanceof Ue?this.urlSerializer.serialize(Kt):Kt}commitTransition({targetRouterState:Q,finalUrl:me,initialUrl:et}){me&&Q?(this.currentUrlTree=me,this.rawUrlTree=this.urlHandlingStrategy.merge(me,et),this.routerState=Q):this.rawUrlTree=et}routerState=U(null);getRouterState(){return this.routerState}stateMemento=this.createStateMemento();updateStateMemento(){this.stateMemento=this.createStateMemento()}createStateMemento(){return{rawUrlTree:this.rawUrlTree,currentUrlTree:this.currentUrlTree,routerState:this.routerState}}resetInternalState({finalUrl:Q}){this.routerState=this.stateMemento.routerState,this.currentUrlTree=this.stateMemento.currentUrlTree,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,Q??this.rawUrlTree)}static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:()=>(0,i.WQX)(Jl),providedIn:"root"})}return X})(),Jl=(()=>{class X extends Do{currentPageId=0;lastSuccessfulId=-1;restoredState(){return this.location.getState()}get browserPageId(){return"computed"!==this.canceledNavigationResolution?this.currentPageId:this.restoredState()?.\u0275routerPageId??this.currentPageId}registerNonRouterCurrentEntryChangeListener(Q){return this.location.subscribe(me=>{"popstate"===me.type&&setTimeout(()=>{Q(me.url,me.state,"popstate")})})}handleRouterEvent(Q,me){Q instanceof ci?this.updateStateMemento():Q instanceof ii?this.commitTransition(me):Q instanceof ia?"eager"===this.urlUpdateStrategy&&(me.extras.skipLocationChange||this.setBrowserUrl(this.createBrowserPath(me),me)):Q instanceof Ta?(this.commitTransition(me),"deferred"===this.urlUpdateStrategy&&!me.extras.skipLocationChange&&this.setBrowserUrl(this.createBrowserPath(me),me)):Q instanceof Vn&&Q.code!==In.SupersededByNewNavigation&&Q.code!==In.Redirect?this.restoreHistory(me):Q instanceof Bn?this.restoreHistory(me,!0):Q instanceof rn&&(this.lastSuccessfulId=Q.id,this.currentPageId=this.browserPageId)}setBrowserUrl(Q,{extras:me,id:et}){const{replaceUrl:Mt,state:Kt}=me;if(this.location.isCurrentPathEqualTo(Q)||Mt){const Tn=this.browserPageId,ai={...Kt,...this.generateNgRouterState(et,Tn)};this.location.replaceState(Q,"",ai)}else{const Tn={...Kt,...this.generateNgRouterState(et,this.browserPageId+1)};this.location.go(Q,"",Tn)}}restoreHistory(Q,me=!1){if("computed"===this.canceledNavigationResolution){const Mt=this.currentPageId-this.browserPageId;0!==Mt?this.location.historyGo(Mt):this.getCurrentUrlTree()===Q.finalUrl&&0===Mt&&(this.resetInternalState(Q),this.resetUrlToCurrentUrlTree())}else"replace"===this.canceledNavigationResolution&&(me&&this.resetInternalState(Q),this.resetUrlToCurrentUrlTree())}resetUrlToCurrentUrlTree(){this.location.replaceState(this.urlSerializer.serialize(this.getRawUrlTree()),"",this.generateNgRouterState(this.lastSuccessfulId,this.currentPageId))}generateNgRouterState(Q,me){return"computed"===this.canceledNavigationResolution?{navigationId:Q,\u0275routerPageId:me}:{navigationId:Q}}static \u0275fac=(()=>{let Q;return function(et){return(Q||(Q=v.xGo(X)))(et||X)}})();static \u0275prov=i.jDH({token:X,factory:X.\u0275fac,providedIn:"root"})}return X})();function Ll(X,de){X.events.pipe((0,ce.p)(Q=>Q instanceof rn||Q instanceof Vn||Q instanceof Bn||Q instanceof ii),(0,re.T)(Q=>Q instanceof rn||Q instanceof ii?0:Q instanceof Vn&&(Q.code===In.Redirect||Q.code===In.SupersededByNewNavigation)?2:1),(0,ce.p)(Q=>2!==Q),(0,Ee.s)(1)).subscribe(()=>{de()})}const ir={paths:"exact",fragment:"ignored",matrixParams:"ignored",queryParams:"exact"},ql={paths:"subset",fragment:"ignored",matrixParams:"ignored",queryParams:"subset"};let Wo=(()=>{class X{get currentUrlTree(){return this.stateManager.getCurrentUrlTree()}get rawUrlTree(){return this.stateManager.getRawUrlTree()}disposed=!1;nonRouterCurrentEntryChangeSubscription;console=(0,i.WQX)(v.C7A);stateManager=(0,i.WQX)(Do);options=(0,i.WQX)(So,{optional:!0})||{};pendingTasks=(0,i.WQX)(i.rev);urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred";navigationTransitions=(0,i.WQX)(ao);urlSerializer=(0,i.WQX)(vi);location=(0,i.WQX)(d.aZ);urlHandlingStrategy=(0,i.WQX)(no);injector=(0,i.WQX)(i.uvJ);_events=new j.B;get events(){return this._events}get routerState(){return this.stateManager.getRouterState()}navigated=!1;routeReuseStrategy=(0,i.WQX)(so);onSameUrlNavigation=this.options.onSameUrlNavigation||"ignore";config=(0,i.WQX)(fo,{optional:!0})?.flat()??[];componentInputBindingEnabled=!!(0,i.WQX)(fr,{optional:!0});currentNavigation=this.navigationTransitions.currentNavigation.asReadonly();constructor(){this.resetConfig(this.config),this.navigationTransitions.setupNavigations(this).subscribe({error:Q=>{this.console.warn(Q)}}),this.subscribeToNavigationEvents()}eventsSubscription=new G.yU;subscribeToNavigationEvents(){const Q=this.navigationTransitions.events.subscribe(me=>{try{const et=this.navigationTransitions.currentTransition,Mt=(0,w.O8)(this.navigationTransitions.currentNavigation);if(null!==et&&null!==Mt)if(this.stateManager.handleRouterEvent(me,Mt),me instanceof Vn&&me.code!==In.Redirect&&me.code!==In.SupersededByNewNavigation)this.navigated=!0;else if(me instanceof rn)this.navigated=!0;else if(me instanceof en){const Kt=me.navigationBehaviorOptions,Tn=this.urlHandlingStrategy.merge(me.url,et.currentRawUrl),ai={browserUrl:et.extras.browserUrl,info:et.extras.info,skipLocationChange:et.extras.skipLocationChange,replaceUrl:et.extras.replaceUrl||"eager"===this.urlUpdateStrategy||Pr(et.source),...Kt};this.scheduleNavigation(Tn,Un,null,ai,{resolve:et.resolve,reject:et.reject,promise:et.promise})}(function vn(X){return!(X instanceof Ta||X instanceof en)})(me)&&this._events.next(me)}catch(et){this.navigationTransitions.transitionAbortWithErrorSubject.next(et)}});this.eventsSubscription.add(Q)}resetRootComponentType(Q){this.routerState.root.component=Q,this.navigationTransitions.rootComponentType=Q}initialNavigation(){this.setUpLocationChangeListener(),this.navigationTransitions.hasRequestedNavigation||this.navigateToSyncWithBrowser(this.location.path(!0),Un,this.stateManager.restoredState())}setUpLocationChangeListener(){this.nonRouterCurrentEntryChangeSubscription??=this.stateManager.registerNonRouterCurrentEntryChangeListener((Q,me,et)=>{this.navigateToSyncWithBrowser(Q,et,me)})}navigateToSyncWithBrowser(Q,me,et){const Mt={replaceUrl:!0},Kt=et?.navigationId?et:null;if(et){const ai={...et};delete ai.navigationId,delete ai.\u0275routerPageId,0!==Object.keys(ai).length&&(Mt.state=ai)}const Tn=this.parseUrl(Q);this.scheduleNavigation(Tn,me,Kt,Mt).catch(ai=>{this.disposed||this.injector.get(i.ZTf)(ai)})}get url(){return this.serializeUrl(this.currentUrlTree)}getCurrentNavigation(){return(0,w.O8)(this.navigationTransitions.currentNavigation)}get lastSuccessfulNavigation(){return this.navigationTransitions.lastSuccessfulNavigation}resetConfig(Q){this.config=Q.map(gr),this.navigated=!1}ngOnDestroy(){this.dispose()}dispose(){this._events.unsubscribe(),this.navigationTransitions.complete(),this.nonRouterCurrentEntryChangeSubscription&&(this.nonRouterCurrentEntryChangeSubscription.unsubscribe(),this.nonRouterCurrentEntryChangeSubscription=void 0),this.disposed=!0,this.eventsSubscription.unsubscribe()}createUrlTree(Q,me={}){const{relativeTo:et,queryParams:Mt,fragment:Kt,queryParamsHandling:Tn,preserveFragment:ai}=me,Gi=ai?this.currentUrlTree.fragment:Kt;let as,La=null;switch(Tn??this.options.defaultQueryParamsHandling){case"merge":La={...this.currentUrlTree.queryParams,...Mt};break;case"preserve":La=this.currentUrlTree.queryParams;break;default:La=Mt||null}null!==La&&(La=this.removeEmptyProps(La));try{as=dn(et?et.snapshot:this.routerState.snapshot.root)}catch{("string"!=typeof Q[0]||"/"!==Q[0][0])&&(Q=[]),as=this.currentUrlTree.root}return xn(as,Q,La,Gi??null)}navigateByUrl(Q,me={skipLocationChange:!1}){const et=un(Q)?Q:this.parseUrl(Q),Mt=this.urlHandlingStrategy.merge(et,this.rawUrlTree);return this.scheduleNavigation(Mt,Un,null,me)}navigate(Q,me={skipLocationChange:!1}){return function nl(X){for(let de=0;de(null!=Mt&&(me[et]=Mt),me),{})}scheduleNavigation(Q,me,et,Mt,Kt){if(this.disposed)return Promise.resolve(!1);let Tn,ai,Gi;Kt?(Tn=Kt.resolve,ai=Kt.reject,Gi=Kt.promise):Gi=new Promise((as,Ns)=>{Tn=as,ai=Ns});const La=this.pendingTasks.add();return Ll(this,()=>{queueMicrotask(()=>this.pendingTasks.remove(La))}),this.navigationTransitions.handleNavigationRequest({source:me,restoredState:et,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,rawUrl:Q,extras:Mt,resolve:Tn,reject:ai,promise:Gi,currentSnapshot:this.routerState.snapshot,currentRouterState:this.routerState}),Gi.catch(as=>Promise.reject(as))}static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:X.\u0275fac,providedIn:"root"})}return X})()},8132(Zt,pe,l){"use strict";l.d(pe,{Wk:()=>lt,iI:()=>Ni,wQ:()=>Le});var W=l(467),G=l(7303),re=l(177),xe=l(2200),Ee=l(7705),V=l(2615),ce=l(3664),be=l(9295),ne=l(3694),J=l(1413),De=l(2806),Re=l(7673),Xe=l(274),_e=l(5964),he=l(6365),Dt=l(1397);let lt=(()=>{class ge{router;route;tabIndexAttribute;renderer;el;locationStrategy;reactiveHref=(0,V.vPA)(null);get href(){return(0,be.O8)(this.reactiveHref)}set href(Z){this.reactiveHref.set(Z)}target;queryParams;fragment;queryParamsHandling;state;info;relativeTo;isAnchorElement;subscription;onChanges=new J.B;applicationErrorHandler=(0,V.WQX)(V.ZTf);options=(0,V.WQX)(ne.J_,{optional:!0});constructor(Z,Me,at,qe,pn,Je){this.router=Z,this.route=Me,this.tabIndexAttribute=at,this.renderer=qe,this.el=pn,this.locationStrategy=Je,this.reactiveHref.set((0,V.WQX)(new Ee.ES_("href"),{optional:!0}));const Be=pn.nativeElement.tagName?.toLowerCase();this.isAnchorElement="a"===Be||"area"===Be||!("object"!=typeof customElements||!customElements.get(Be)?.observedAttributes?.includes?.("href")),this.isAnchorElement?this.setTabIndexIfNotOnNativeEl("0"):this.subscribeToNavigationEventsIfNecessary()}subscribeToNavigationEventsIfNecessary(){if(void 0!==this.subscription||!this.isAnchorElement)return;let Z=this.preserveFragment;const Me=at=>"merge"===at||"preserve"===at;Z||=Me(this.queryParamsHandling),Z||=!this.queryParamsHandling&&!Me(this.options?.defaultQueryParamsHandling),Z&&(this.subscription=this.router.events.subscribe(at=>{at instanceof ne.wF&&this.updateHref()}))}preserveFragment=!1;skipLocationChange=!1;replaceUrl=!1;setTabIndexIfNotOnNativeEl(Z){null!=this.tabIndexAttribute||this.isAnchorElement||this.applyAttributeValue("tabindex",Z)}ngOnChanges(Z){this.isAnchorElement&&(this.updateHref(),this.subscribeToNavigationEventsIfNecessary()),this.onChanges.next(this)}routerLinkInput=null;set routerLink(Z){null==Z?(this.routerLinkInput=null,this.setTabIndexIfNotOnNativeEl(null)):(this.routerLinkInput=(0,ne.wO)(Z)||Array.isArray(Z)?Z:[Z],this.setTabIndexIfNotOnNativeEl("0"))}onClick(Z,Me,at,qe,pn){const Je=this.urlTree;if(null===Je||this.isAnchorElement&&(0!==Z||Me||at||qe||pn||"string"==typeof this.target&&"_self"!=this.target))return!0;const Be={skipLocationChange:this.skipLocationChange,replaceUrl:this.replaceUrl,state:this.state,info:this.info};return this.router.navigateByUrl(Je,Be)?.catch(ut=>{this.applicationErrorHandler(ut)}),!this.isAnchorElement}ngOnDestroy(){this.subscription?.unsubscribe()}updateHref(){const Z=this.urlTree;this.reactiveHref.set(null!==Z&&this.locationStrategy?this.locationStrategy?.prepareExternalUrl(this.router.serializeUrl(Z))??"":null)}applyAttributeValue(Z,Me){const at=this.renderer,qe=this.el.nativeElement;null!==Me?at.setAttribute(qe,Z,Me):at.removeAttribute(qe,Z)}get urlTree(){return null===this.routerLinkInput?null:(0,ne.wO)(this.routerLinkInput)?this.routerLinkInput:this.router.createUrlTree(this.routerLinkInput,{relativeTo:void 0!==this.relativeTo?this.relativeTo:this.route,queryParams:this.queryParams,fragment:this.fragment,queryParamsHandling:this.queryParamsHandling,preserveFragment:this.preserveFragment})}static \u0275fac=function(Me){return new(Me||ge)(ce.rXU(ne.Ix),ce.rXU(ne.nX),ce.kS0("tabindex"),ce.rXU(ce.sFG),ce.rXU(ce.aKT),ce.rXU(G.hb))};static \u0275dir=ce.FsC({type:ge,selectors:[["","routerLink",""]],hostVars:2,hostBindings:function(Me,at){1&Me&&ce.bIt("click",function(pn){return at.onClick(pn.button,pn.ctrlKey,pn.shiftKey,pn.altKey,pn.metaKey)}),2&Me&&ce.BMQ("href",at.reactiveHref(),ce.n$t)("target",at.target)},inputs:{target:"target",queryParams:"queryParams",fragment:"fragment",queryParamsHandling:"queryParamsHandling",state:"state",info:"info",relativeTo:"relativeTo",preserveFragment:[2,"preserveFragment","preserveFragment",Ee.L39],skipLocationChange:[2,"skipLocationChange","skipLocationChange",Ee.L39],replaceUrl:[2,"replaceUrl","replaceUrl",Ee.L39],routerLink:"routerLink"},features:[ce.OA$]})}return ge})(),Le=(()=>{class ge{router;element;renderer;cdr;link;links;classes=[];routerEventsSubscription;linkInputChangesSubscription;_isActive=!1;get isActive(){return this._isActive}routerLinkActiveOptions={exact:!1};ariaCurrentWhenActive;isActiveChange=new ce.bkB;constructor(Z,Me,at,qe,pn){this.router=Z,this.element=Me,this.renderer=at,this.cdr=qe,this.link=pn,this.routerEventsSubscription=Z.events.subscribe(Je=>{Je instanceof ne.wF&&this.update()})}ngAfterContentInit(){(0,Re.of)(this.links.changes,(0,Re.of)(null)).pipe((0,he.U)()).subscribe(Z=>{this.update(),this.subscribeToEachLinkOnChanges()})}subscribeToEachLinkOnChanges(){this.linkInputChangesSubscription?.unsubscribe();const Z=[...this.links.toArray(),this.link].filter(Me=>!!Me).map(Me=>Me.onChanges);this.linkInputChangesSubscription=(0,De.H)(Z).pipe((0,he.U)()).subscribe(Me=>{this._isActive!==this.isLinkActive(this.router)(Me)&&this.update()})}set routerLinkActive(Z){const Me=Array.isArray(Z)?Z:Z.split(" ");this.classes=Me.filter(at=>!!at)}ngOnChanges(Z){this.update()}ngOnDestroy(){this.routerEventsSubscription.unsubscribe(),this.linkInputChangesSubscription?.unsubscribe()}update(){!this.links||!this.router.navigated||queueMicrotask(()=>{const Z=this.hasActiveLinks();this.classes.forEach(Me=>{Z?this.renderer.addClass(this.element.nativeElement,Me):this.renderer.removeClass(this.element.nativeElement,Me)}),Z&&void 0!==this.ariaCurrentWhenActive?this.renderer.setAttribute(this.element.nativeElement,"aria-current",this.ariaCurrentWhenActive.toString()):this.renderer.removeAttribute(this.element.nativeElement,"aria-current"),this._isActive!==Z&&(this._isActive=Z,this.cdr.markForCheck(),this.isActiveChange.emit(Z))})}isLinkActive(Z){const Me=function te(ge){return!!ge.paths}(this.routerLinkActiveOptions)?this.routerLinkActiveOptions:this.routerLinkActiveOptions.exact||!1;return at=>{const qe=at.urlTree;return!!qe&&Z.isActive(qe,Me)}}hasActiveLinks(){const Z=this.isLinkActive(this.router);return this.link&&Z(this.link)||this.links.some(Z)}static \u0275fac=function(Me){return new(Me||ge)(ce.rXU(ne.Ix),ce.rXU(ce.aKT),ce.rXU(ce.sFG),ce.rXU(Ee.gRc),ce.rXU(lt,8))};static \u0275dir=ce.FsC({type:ge,selectors:[["","routerLinkActive",""]],contentQueries:function(Me,at,qe){if(1&Me&&ce.wni(qe,lt,5),2&Me){let pn;ce.mGM(pn=ce.lsd())&&(at.links=pn)}},inputs:{routerLinkActiveOptions:"routerLinkActiveOptions",ariaCurrentWhenActive:"ariaCurrentWhenActive",routerLinkActive:"routerLinkActive"},outputs:{isActiveChange:"isActiveChange"},exportAs:["routerLinkActive"],features:[ce.OA$]})}return ge})();class ie{}let ve=(()=>{class ge{router;injector;preloadingStrategy;loader;subscription;constructor(Z,Me,at,qe){this.router=Z,this.injector=Me,this.preloadingStrategy=at,this.loader=qe}setUpPreloading(){this.subscription=this.router.events.pipe((0,_e.p)(Z=>Z instanceof ne.wF),(0,Xe.H)(()=>this.preload())).subscribe(()=>{})}preload(){return this.processRoutes(this.injector,this.router.config)}ngOnDestroy(){this.subscription&&this.subscription.unsubscribe()}processRoutes(Z,Me){const at=[];for(const qe of Me){qe.providers&&!qe._injector&&(qe._injector=(0,ce.Ol2)(qe.providers,Z,`Route: ${qe.path}`));const pn=qe._injector??Z,Je=qe._loadedInjector??pn;(qe.loadChildren&&!qe._loadedRoutes&&void 0===qe.canLoad||qe.loadComponent&&!qe._loadedComponent)&&at.push(this.preloadConfig(pn,qe)),(qe.children||qe._loadedRoutes)&&at.push(this.processRoutes(Je,qe.children??qe._loadedRoutes))}return(0,De.H)(at).pipe((0,he.U)())}preloadConfig(Z,Me){return this.preloadingStrategy.preload(Me,()=>{let at;at=Me.loadChildren&&void 0===Me.canLoad?this.loader.loadChildren(Z,Me):(0,Re.of)(null);const qe=at.pipe((0,Dt.Z)(pn=>null===pn?(0,Re.of)(void 0):(Me._loadedRoutes=pn.routes,Me._loadedInjector=pn.injector,this.processRoutes(pn.injector??Z,pn.routes))));if(Me.loadComponent&&!Me._loadedComponent){const pn=this.loader.loadComponent(Z,Me);return(0,De.H)([qe,pn]).pipe((0,he.U)())}return qe})}static \u0275fac=function(Me){return new(Me||ge)(V.KVO(ne.Ix),V.KVO(V.uvJ),V.KVO(ie),V.KVO(ne.D$))};static \u0275prov=V.jDH({token:ge,factory:ge.\u0275fac,providedIn:"root"})}return ge})();const H=new V.nKC("");let $=(()=>{class ge{urlSerializer;transitions;viewportScroller;zone;options;routerEventsSubscription;scrollEventsSubscription;lastId=0;lastSource=ne.wU;restoredId=0;store={};constructor(Z,Me,at,qe,pn={}){this.urlSerializer=Z,this.transitions=Me,this.viewportScroller=at,this.zone=qe,this.options=pn,pn.scrollPositionRestoration||="disabled",pn.anchorScrolling||="disabled"}init(){"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration("manual"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}createScrollEvents(){return this.transitions.events.subscribe(Z=>{Z instanceof ne.Z?(this.store[this.lastId]=this.viewportScroller.getScrollPosition(),this.lastSource=Z.navigationTrigger,this.restoredId=Z.restoredState?Z.restoredState.navigationId:0):Z instanceof ne.wF?(this.lastId=Z.id,this.scheduleScrollEvent(Z,this.urlSerializer.parse(Z.urlAfterRedirects).fragment)):Z instanceof ne.lW&&Z.code===ne.mo.IgnoredSameUrlNavigation&&(this.lastSource=void 0,this.restoredId=0,this.scheduleScrollEvent(Z,this.urlSerializer.parse(Z.url).fragment))})}consumeScrollEvents(){return this.transitions.events.subscribe(Z=>{if(!(Z instanceof ne.OY))return;const Me={behavior:"instant"};Z.position?"top"===this.options.scrollPositionRestoration?this.viewportScroller.scrollToPosition([0,0],Me):"enabled"===this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition(Z.position,Me):Z.anchor&&"enabled"===this.options.anchorScrolling?this.viewportScroller.scrollToAnchor(Z.anchor):"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition([0,0])})}scheduleScrollEvent(Z,Me){var at=this;this.zone.runOutsideAngular((0,W.A)(function*(){yield new Promise(qe=>{setTimeout(qe),typeof requestAnimationFrame<"u"&&requestAnimationFrame(qe)}),at.zone.run(()=>{at.transitions.events.next(new ne.OY(Z,"popstate"===at.lastSource?at.store[at.restoredId]:null,Me))})}))}ngOnDestroy(){this.routerEventsSubscription?.unsubscribe(),this.scrollEventsSubscription?.unsubscribe()}static \u0275fac=function(Me){ce.QTQ()};static \u0275prov=V.jDH({token:ge,factory:ge.\u0275fac})}return ge})();function ht(ge,N){return{\u0275kind:ge,\u0275providers:N}}function gt(){const ge=(0,V.WQX)(V.zZn);return N=>{const Z=ge.get(ce.o8S);if(N!==Z.components[0])return;const Me=ge.get(ne.Ix),at=ge.get(Gt);1===ge.get(rt)&&Me.initialNavigation(),ge.get(Qn,null,{optional:!0})?.setUpPreloading(),ge.get(H,null,{optional:!0})?.init(),Me.resetRootComponentType(Z.componentTypes[0]),at.closed||(at.next(),at.complete(),at.unsubscribe())}}const Gt=new V.nKC("",{factory:()=>new J.B}),rt=new V.nKC("",{providedIn:"root",factory:()=>1}),Qn=new V.nKC("");function h(ge){return ht(0,[{provide:Qn,useExisting:ve},{provide:ie,useExisting:ge}])}function Pt(ge){return(0,ce._jY)("NgRouterViewTransitions"),ht(9,[{provide:ne.Pu,useValue:ne.Lg},{provide:ne.bK,useValue:{skipNextTransition:!!ge?.skipInitialTransition,...ge}}])}const vi=[G.aZ,{provide:ne.Sd,useClass:ne.nU},ne.Ix,ne.Zp,{provide:ne.nX,useFactory:function nt(ge){return ge.routerState.root},deps:[ne.Ix]},ne.D$,[]];let Ni=(()=>{class ge{constructor(){}static forRoot(Z,Me){return{ngModule:ge,providers:[vi,[],{provide:ne.bw,multi:!0,useValue:Z},[],Me?.errorHandler?{provide:ne.XR,useValue:Me.errorHandler}:[],{provide:ne.J_,useValue:Me||{}},Me?.useHash?{provide:G.hb,useClass:xe.fw}:{provide:G.hb,useClass:G.Sm},{provide:H,useFactory:()=>{const ge=(0,V.WQX)(re.Xr),N=(0,V.WQX)(ce.SKi),Z=(0,V.WQX)(ne.J_),Me=(0,V.WQX)(ne.J2),at=(0,V.WQX)(ne.Sd);return Z.scrollOffset&&ge.setOffset(Z.scrollOffset),new $(at,Me,ge,N,Z)}},Me?.preloadingStrategy?h(Me.preloadingStrategy).\u0275providers:[],Me?.initialNavigation?ye(Me):[],Me?.bindToComponentInputs?ht(8,[ne.tD,{provide:ne.c1,useExisting:ne.tD}]).\u0275providers:[],Me?.enableViewTransitions?Pt().\u0275providers:[],[{provide:ke,useFactory:gt},{provide:ce.iLQ,multi:!0,useExisting:ke}]]}}static forChild(Z){return{ngModule:ge,providers:[{provide:ne.bw,multi:!0,useValue:Z}]}}static \u0275fac=function(Me){return new(Me||ge)};static \u0275mod=ce.$C({type:ge});static \u0275inj=V.G2t({})}return ge})();function ye(ge){return["disabled"===ge.initialNavigation?ht(3,[(0,ce.phd)(()=>{(0,V.WQX)(ne.Ix).setUpLocationChangeListener()}),{provide:rt,useValue:2}]).\u0275providers:[],"enabledBlocking"===ge.initialNavigation?ht(2,[{provide:ce.tvf,useValue:!0},{provide:rt,useValue:0},(0,ce.phd)(()=>{const N=(0,V.WQX)(V.zZn);return N.get(G.hj,Promise.resolve()).then(()=>new Promise(Me=>{const at=N.get(ne.Ix),qe=N.get(Gt);(0,ne.gk)(at,()=>{Me(!0)}),N.get(ne.J2).afterPreactivation=()=>(Me(!0),qe.closed?(0,Re.of)(void 0):qe),at.initialNavigation()}))})]).\u0275providers:[]]}const ke=new V.nKC("")},60(Zt,pe,l){"use strict";l.d(pe,{aY:()=>ld,dX:()=>I0});var i=l(2615),d=l(3664),v=l(7705),T=l(9295),w=l(345);function e(Te,dt){(null==dt||dt>Te.length)&&(dt=Te.length);for(var st=0,ft=Array(dt);st=Te.length?{done:!0}:{done:!1,value:Te[ft++]}},e:function(si){throw si},f:$t}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var Cn,Dn=!0,Zn=!1;return{s:function(){st=st.call(Te)},n:function(){var si=st.next();return Dn=si.done,si},e:function(si){Zn=!0,Cn=si},f:function(){try{Dn||null==st.return||st.return()}finally{if(Zn)throw Cn}}}}function A(Te,dt,st){return(dt=ce(dt))in Te?Object.defineProperty(Te,dt,{value:st,enumerable:!0,configurable:!0,writable:!0}):Te[dt]=st,Te}function W(Te,dt){var st=Object.keys(Te);if(Object.getOwnPropertySymbols){var ft=Object.getOwnPropertySymbols(Te);dt&&(ft=ft.filter(function($t){return Object.getOwnPropertyDescriptor(Te,$t).enumerable})),st.push.apply(st,ft)}return st}function G(Te){for(var dt=1;dt0;)dt+="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"[62*Math.random()|0];return dt}function wa(Te){for(var dt=[],st=(Te||[]).length>>>0;st--;)dt[st]=Te[st];return dt}function ja(Te){return Te.classList?wa(Te.classList):(Te.getAttribute("class")||"").split(" ").filter(function(dt){return dt})}function Za(Te){return"".concat(Te).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function Rr(Te){return Object.keys(Te||{}).reduce(function(dt,st){return dt+"".concat(st,": ").concat(Te[st].trim(),";")},"")}function Fs(Te){return Te.size!==Pa.size||Te.x!==Pa.x||Te.y!==Pa.y||Te.rotate!==Pa.rotate||Te.flipX||Te.flipY}function Ne(){var dt=Ki,st=Ui.cssPrefix,ft=Ui.replacementClass,$t=':root, :host {\n --fa-font-solid: normal 900 1em/1 "Font Awesome 7 Free";\n --fa-font-regular: normal 400 1em/1 "Font Awesome 7 Free";\n --fa-font-light: normal 300 1em/1 "Font Awesome 7 Pro";\n --fa-font-thin: normal 100 1em/1 "Font Awesome 7 Pro";\n --fa-font-duotone: normal 900 1em/1 "Font Awesome 7 Duotone";\n --fa-font-duotone-regular: normal 400 1em/1 "Font Awesome 7 Duotone";\n --fa-font-duotone-light: normal 300 1em/1 "Font Awesome 7 Duotone";\n --fa-font-duotone-thin: normal 100 1em/1 "Font Awesome 7 Duotone";\n --fa-font-brands: normal 400 1em/1 "Font Awesome 7 Brands";\n --fa-font-sharp-solid: normal 900 1em/1 "Font Awesome 7 Sharp";\n --fa-font-sharp-regular: normal 400 1em/1 "Font Awesome 7 Sharp";\n --fa-font-sharp-light: normal 300 1em/1 "Font Awesome 7 Sharp";\n --fa-font-sharp-thin: normal 100 1em/1 "Font Awesome 7 Sharp";\n --fa-font-sharp-duotone-solid: normal 900 1em/1 "Font Awesome 7 Sharp Duotone";\n --fa-font-sharp-duotone-regular: normal 400 1em/1 "Font Awesome 7 Sharp Duotone";\n --fa-font-sharp-duotone-light: normal 300 1em/1 "Font Awesome 7 Sharp Duotone";\n --fa-font-sharp-duotone-thin: normal 100 1em/1 "Font Awesome 7 Sharp Duotone";\n --fa-font-slab-regular: normal 400 1em/1 "Font Awesome 7 Slab";\n --fa-font-slab-press-regular: normal 400 1em/1 "Font Awesome 7 Slab Press";\n --fa-font-whiteboard-semibold: normal 600 1em/1 "Font Awesome 7 Whiteboard";\n --fa-font-thumbprint-light: normal 300 1em/1 "Font Awesome 7 Thumbprint";\n --fa-font-notdog-solid: normal 900 1em/1 "Font Awesome 7 Notdog";\n --fa-font-notdog-duo-solid: normal 900 1em/1 "Font Awesome 7 Notdog Duo";\n --fa-font-etch-solid: normal 900 1em/1 "Font Awesome 7 Etch";\n --fa-font-jelly-regular: normal 400 1em/1 "Font Awesome 7 Jelly";\n --fa-font-jelly-fill-regular: normal 400 1em/1 "Font Awesome 7 Jelly Fill";\n --fa-font-jelly-duo-regular: normal 400 1em/1 "Font Awesome 7 Jelly Duo";\n --fa-font-chisel-regular: normal 400 1em/1 "Font Awesome 7 Chisel";\n --fa-font-utility-semibold: normal 600 1em/1 "Font Awesome 7 Utility";\n --fa-font-utility-duo-semibold: normal 600 1em/1 "Font Awesome 7 Utility Duo";\n --fa-font-utility-fill-semibold: normal 600 1em/1 "Font Awesome 7 Utility Fill";\n}\n\n.svg-inline--fa {\n box-sizing: content-box;\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n width: var(--fa-width, 1.25em);\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285714em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left,\n.svg-inline--fa .fa-pull-start {\n float: inline-start;\n margin-inline-end: var(--fa-pull-margin, 0.3em);\n}\n.svg-inline--fa.fa-pull-right,\n.svg-inline--fa .fa-pull-end {\n float: inline-end;\n margin-inline-start: var(--fa-pull-margin, 0.3em);\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n inset-inline-start: calc(-1 * var(--fa-li-width, 2em));\n inset-block-start: 0.25em; /* syncing vertical alignment with Web Font rendering */\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: var(--fa-width, 1.25em);\n}\n.fa-layers .svg-inline--fa {\n inset: 0;\n margin: auto;\n position: absolute;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n transform: scale(var(--fa-counter-scale, 0.25));\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n transform: scale(var(--fa-layers-scale, 0.25));\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n transform: scale(var(--fa-layers-scale, 0.25));\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n transform: scale(var(--fa-layers-scale, 0.25));\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n transform: scale(var(--fa-layers-scale, 0.25));\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: calc(10 / 16 * 1em); /* converts a 10px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 10 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 10 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-xs {\n font-size: calc(12 / 16 * 1em); /* converts a 12px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 12 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 12 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-sm {\n font-size: calc(14 / 16 * 1em); /* converts a 14px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 14 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 14 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-lg {\n font-size: calc(20 / 16 * 1em); /* converts a 20px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 20 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 20 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-xl {\n font-size: calc(24 / 16 * 1em); /* converts a 24px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 24 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 24 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-2xl {\n font-size: calc(32 / 16 * 1em); /* converts a 32px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 32 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 32 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-width-auto {\n --fa-width: auto;\n}\n\n.fa-fw,\n.fa-width-fixed {\n --fa-width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-inline-start: var(--fa-li-margin, 2.5em);\n padding-inline-start: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n inset-inline-start: calc(-1 * var(--fa-li-width, 2em));\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n/* Heads Up: Bordered Icons will not be supported in the future!\n - This feature will be deprecated in the next major release of Font Awesome (v8)!\n - You may continue to use it in this version *v7), but it will not be supported in Font Awesome v8.\n*/\n/* Notes:\n* --@{v.$css-prefix}-border-width = 1/16 by default (to render as ~1px based on a 16px default font-size)\n* --@{v.$css-prefix}-border-padding =\n ** 3/16 for vertical padding (to give ~2px of vertical whitespace around an icon considering it\'s vertical alignment)\n ** 4/16 for horizontal padding (to give ~4px of horizontal whitespace around an icon)\n*/\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.0625em);\n box-sizing: var(--fa-border-box-sizing, content-box);\n padding: var(--fa-border-padding, 0.1875em 0.25em);\n}\n\n.fa-pull-left,\n.fa-pull-start {\n float: inline-start;\n margin-inline-end: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right,\n.fa-pull-end {\n float: inline-end;\n margin-inline-start: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n animation-name: fa-beat;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n animation-name: fa-bounce;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n animation-name: fa-fade;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n animation-name: fa-beat-fade;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n animation-name: fa-flip;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n animation-name: fa-shake;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n animation-name: fa-spin;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 2s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n animation-name: fa-spin;\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n .fa-bounce,\n .fa-fade,\n .fa-beat-fade,\n .fa-flip,\n .fa-pulse,\n .fa-shake,\n .fa-spin,\n .fa-spin-pulse {\n animation: none !important;\n transition: none !important;\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n transform: scale(1);\n }\n 45% {\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-bounce {\n 0% {\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-flip {\n 50% {\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-shake {\n 0% {\n transform: rotate(-15deg);\n }\n 4% {\n transform: rotate(15deg);\n }\n 8%, 24% {\n transform: rotate(-18deg);\n }\n 12%, 28% {\n transform: rotate(18deg);\n }\n 16% {\n transform: rotate(-22deg);\n }\n 20% {\n transform: rotate(22deg);\n }\n 32% {\n transform: rotate(-12deg);\n }\n 36% {\n transform: rotate(12deg);\n }\n 40%, 100% {\n transform: rotate(0deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n transform: rotate(var(--fa-rotate-angle, 0));\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.svg-inline--fa.fa-inverse {\n fill: var(--fa-inverse, #fff);\n}\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n line-height: 2em;\n position: relative;\n vertical-align: middle;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.svg-inline--fa.fa-stack-1x {\n --fa-width: 1.25em;\n height: 1em;\n width: var(--fa-width);\n}\n.svg-inline--fa.fa-stack-2x {\n --fa-width: 2.5em;\n height: 2em;\n width: var(--fa-width);\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n inset: 0;\n margin: auto;\n position: absolute;\n z-index: var(--fa-stack-z-index, auto);\n}';if("fa"!==st||ft!==dt){var Cn=new RegExp("\\.".concat("fa","\\-"),"g"),Dn=new RegExp("\\--".concat("fa","\\-"),"g"),Zn=new RegExp("\\.".concat(dt),"g");$t=$t.replace(Cn,".".concat(st,"-")).replace(Dn,"--".concat(st,"-")).replace(Zn,".".concat(ft))}return $t}var He=!1;function q(){Ui.autoAddCss&&!He&&(function yr(Te){if(Te&&H){var dt=ie.createElement("style");dt.setAttribute("type","text/css"),dt.innerHTML=Te;for(var st=ie.head.childNodes,ft=null,$t=st.length-1;$t>-1;$t--){var Cn=st[$t],Dn=(Cn.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(Dn)>-1&&(ft=Cn)}ie.head.insertBefore(dt,ft)}}(Ne()),He=!0)}var mt={mixout:function(){return{dom:{css:Ne,insertCss:q}}},hooks:function(){return{beforeDOMElementCreation:function(){q()},beforeI2svg:function(){q()}}}},ln=te||{};ln[Ze]||(ln[Ze]={}),ln[Ze].styles||(ln[Ze].styles={}),ln[Ze].hooks||(ln[Ze].hooks={}),ln[Ze].shims||(ln[Ze].shims=[]);var Oi=ln[Ze],ua=[],Es=function(){ie.removeEventListener("DOMContentLoaded",Es),kt=1,ua.map(function(dt){return dt()})},kt=!1;function $e(Te){var dt=Te.tag,st=Te.attributes,ft=void 0===st?{}:st,$t=Te.children,Cn=void 0===$t?[]:$t;return"string"==typeof Te?Za(Te):"<".concat(dt," ").concat(function Or(Te){return Object.keys(Te||{}).reduce(function(dt,st){return dt+"".concat(st,'="').concat(Za(Te[st]),'" ')},"").trim()}(ft),">").concat(Cn.map($e).join(""),"")}function mn(Te,dt,st){if(Te&&Te[dt]&&Te[dt][st])return{prefix:dt,iconName:st,icon:Te[dt][st]}}H&&((kt=(ie.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(ie.readyState))||ie.addEventListener("DOMContentLoaded",Es));var Ei=function(dt,st,ft,$t){var si,_t,ji,Cn=Object.keys(dt),Dn=Cn.length,Zn=void 0!==$t?function(dt,st){return function(ft,$t,Cn,Dn){return dt.call(st,ft,$t,Cn,Dn)}}(st,$t):st;for(void 0===ft?(si=1,ji=dt[Cn[0]]):(si=0,ji=ft);si2&&void 0!==arguments[2]?arguments[2]:{}).skipHooks,$t=void 0!==ft&&ft,Cn=cs(dt);"function"!=typeof Oi.hooks.addPack||$t?Oi.styles[Te]=G(G({},Oi.styles[Te]||{}),Cn):Oi.hooks.addPack(Te,cs(dt)),"fas"===Te&&qr("fa",dt)}var Ss=Oi.styles,tr=Oi.shims,Eo=Object.keys(Ka),Mo=Eo.reduce(function(Te,dt){return Te[dt]=Object.keys(Ka[dt]),Te},{}),Sl=null,pl={},zl={},ds={},nr={},mi={};var gl=function(){var dt=function(Cn){return Ei(Ss,function(Dn,Zn,si){return Dn[si]=Ei(Zn,Cn,{}),Dn},{})};pl=dt(function($t,Cn,Dn){return Cn[3]&&($t[Cn[3]]=Dn),Cn[2]&&Cn[2].filter(function(si){return"number"==typeof si}).forEach(function(si){$t[si.toString(16)]=Dn}),$t}),zl=dt(function($t,Cn,Dn){return $t[Dn]=Dn,Cn[2]&&Cn[2].filter(function(si){return"string"==typeof si}).forEach(function(si){$t[si]=Dn}),$t}),mi=dt(function($t,Cn,Dn){var Zn=Cn[2];return $t[Dn]=Dn,Zn.forEach(function(si){$t[si]=Dn}),$t});var st="far"in Ss||Ui.autoFetchSvg,ft=Ei(tr,function($t,Cn){var Dn=Cn[0],Zn=Cn[1],si=Cn[2];return"far"===Zn&&!st&&(Zn="fas"),"string"==typeof Dn&&($t.names[Dn]={prefix:Zn,iconName:si}),"number"==typeof Dn&&($t.unicodes[Dn.toString(16)]={prefix:Zn,iconName:si}),$t},{names:{},unicodes:{}});ds=ft.names,nr=ft.unicodes,Sl=eo(Ui.styleDefault,{family:Ui.familyDefault})};function Tr(Te,dt){return(pl[Te]||{})[dt]}function mo(Te,dt){return(mi[Te]||{})[dt]}function Tl(Te){return ds[Te]||{prefix:null,iconName:null}}function za(){return Sl}function eo(Te){var st=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).family,ft=void 0===st?oe:st;return ft!==Ye||Te?jr[ft][Te]||jr[ft][bo[ft][Te]]||(Te in Oi.styles?Te:null)||null:"fad"}function fo(Te){return Te.sort().filter(function(dt,st,ft){return ft.indexOf(dt)===st})}(function vr(Te){xs.push(Te)})(function(Te){Sl=eo(Te.styleDefault,{family:Ui.familyDefault})}),gl();var To=di.concat(bt);function Ho(Te){var st=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).skipLookups,ft=void 0!==st&&st,$t=null,Cn=fo(Te.filter(function(Ba){return To.includes(Ba)})),Dn=fo(Te.filter(function(Ba){return!To.includes(Ba)})),_t=xe(Cn.filter(function(Ba){return $t=Ba,!ht.includes(Ba)}),1)[0],ji=void 0===_t?null:_t,Hi=function Dl(Te){var dt=oe,st=Eo.reduce(function(ft,$t){return ft[$t]="".concat(Ui.cssPrefix,"-").concat($t),ft},{});return Be.forEach(function(ft){(Te.includes(st[ft])||Te.some(function($t){return Mo[ft].includes($t)}))&&(dt=ft)}),dt}(Cn),Ja=G(G({},function So(Te){var dt=[],st=null;return Te.forEach(function(ft){var $t=function Go(Te,dt){var st=dt.split("-"),ft=st[0],$t=st.slice(1).join("-");return ft!==Te||""===$t||function Uo(Te){return~_r.indexOf(Te)}($t)?null:$t}(Ui.cssPrefix,ft);$t?st=$t:ft&&dt.push(ft)}),{iconName:st,rest:dt}}(Dn)),{},{prefix:eo(ji,{family:Hi})});return G(G(G({},Ja),function no(Te){var dt=Te.values,st=Te.family,ft=Te.canonical,$t=Te.givenPrefix,Cn=void 0===$t?"":$t,Dn=Te.styles,Zn=void 0===Dn?{}:Dn,si=Te.config,_t=void 0===si?{}:si,ji=st===Ye,Hi=dt.includes("fa-duotone")||dt.includes("fad");if(!ji&&(Hi||"duotone"===_t.familyDefault||("fad"===ft.prefix||"fa-duotone"===ft.prefix))&&(ft.prefix="fad"),(dt.includes("fa-brands")||dt.includes("fab"))&&(ft.prefix="fab"),!ft.prefix&&to.includes(st)&&(Object.keys(Zn).find(function(vs){return wl.includes(vs)})||_t.autoFetchSvg)){var _s=se.get(st).defaultShortPrefixId;ft.prefix=_s,ft.iconName=mo(ft.prefix,ft.iconName)||ft.iconName}return("fa"===ft.prefix||"fa"===Cn)&&(ft.prefix=za()||"fas"),ft}({values:Te,family:Hi,styles:Ss,config:Ui,canonical:Ja,givenPrefix:$t})),function _l(Te,dt,st){var ft=st.prefix,$t=st.iconName;if(Te||!ft||!$t)return{prefix:ft,iconName:$t};var Cn="fa"===dt?Tl($t):{},Dn=mo(ft,$t);return"far"===(ft=Cn.prefix||ft)&&!Ss.far&&Ss.fas&&!Ui.autoFetchSvg&&(ft="fas"),{prefix:ft,iconName:$t=Cn.iconName||Dn||$t}}(ft,$t,Ja))}var to=Be.filter(function(Te){return Te!==oe||Te!==Ye}),wl=Object.keys(Jt).filter(function(Te){return Te!==oe}).map(function(Te){return Object.keys(Jt[Te])}).flat(),Al=function(){return function C(Te,dt,st){return dt&&L(Te.prototype,dt),st&&L(Te,st),Object.defineProperty(Te,"prototype",{writable:!1}),Te}(function Te(){(function u(Te,dt){if(!(Te instanceof dt))throw new TypeError("Cannot call a class as a function")})(this,Te),this.definitions={}},[{key:"add",value:function(){for(var st=this,ft=arguments.length,$t=new Array(ft),Cn=0;Cn0&&ji.forEach(function(Hi){"string"==typeof Hi&&(st[Zn][Hi]=_t)}),st[Zn][si]=_t}),st}}])}(),io=[],Ys={},Dr={},li=Object.keys(Dr);function ao(Te,dt){for(var st=arguments.length,ft=new Array(st>2?st-2:0),$t=2;$t1?dt-1:0),ft=1;ft0&&void 0!==arguments[0]?arguments[0]:{};return H?(Pr("beforeI2svg",dt),so("pseudoElements2svg",dt),so("i2svg",dt)):Promise.reject(new Error("Operation requires a DOM of some kind."))},watch:function(){var dt=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},st=dt.autoReplaceSvgRoot;!1===Ui.autoReplaceSvg&&(Ui.autoReplaceSvg=!0),Ui.observeMutations=!0,function On(Te){H&&(kt?setTimeout(Te,0):ua.push(Te))}(function(){ql({autoReplaceSvgRoot:st}),Pr("watch",dt)})}},ir={noAuto:function(){Ui.autoReplaceSvg=!1,Ui.observeMutations=!1,Pr("noAuto")},config:Ui,dom:Jl,parse:{icon:function(dt){if(null===dt)return null;if("object"===be(dt)&&dt.prefix&&dt.iconName)return{prefix:dt.prefix,iconName:mo(dt.prefix,dt.iconName)||dt.iconName};if(Array.isArray(dt)&&2===dt.length){var st=0===dt[1].indexOf("fa-")?dt[1].slice(3):dt[1],ft=eo(dt[0]);return{prefix:ft,iconName:mo(ft,st)||st}}if("string"==typeof dt&&(dt.indexOf("".concat(Ui.cssPrefix,"-"))>-1||dt.match(js))){var $t=Ho(dt.split(" "),{skipLookups:!0});return{prefix:$t.prefix||za(),iconName:mo($t.prefix,$t.iconName)||$t.iconName}}if("string"==typeof dt){var Cn=za();return{prefix:Cn,iconName:mo(Cn,dt)||dt}}}},library:Ul,findIconDefinition:tl,toHtml:$e},ql=function(){var st=(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}).autoReplaceSvgRoot,ft=void 0===st?ie:st;(Object.keys(Oi.styles).length>0||Ui.autoFetchSvg)&&H&&Ui.autoReplaceSvg&&ir.dom.i2svg({node:ft})};function Wo(Te,dt){return Object.defineProperty(Te,"abstract",{get:dt}),Object.defineProperty(Te,"html",{get:function(){return Te.abstract.map(function(ft){return $e(ft)})}}),Object.defineProperty(Te,"node",{get:function(){if(H){var ft=ie.createElement("div");return ft.innerHTML=Te.html,ft.children}}}),Te}function Q(Te){var dt=Te.icons,st=dt.main,ft=dt.mask,$t=Te.prefix,Cn=Te.iconName,Dn=Te.transform,Zn=Te.symbol,si=Te.maskId,_t=Te.extra,ji=Te.watchable,Hi=void 0!==ji&&ji,Ja=ft.found?ft:st,Ba=Ja.width,wr=Ja.height,_s=[Ui.replacementClass,Cn?"".concat(Ui.cssPrefix,"-").concat(Cn):""].filter(function(sc){return-1===_t.classes.indexOf(sc)}).filter(function(sc){return""!==sc||!!sc}).concat(_t.classes).join(" "),vs={children:[],attributes:G(G({},_t.attributes),{},{"data-prefix":$t,"data-icon":Cn,class:_s,role:_t.attributes.role||"img",viewBox:"0 0 ".concat(Ba," ").concat(wr)})};!function de(Te){return["aria-label","aria-labelledby","title","role"].some(function(st){return st in Te})}(_t.attributes)&&!_t.attributes["aria-hidden"]&&(vs.attributes["aria-hidden"]="true"),Hi&&(vs.attributes[_a]="");var rr=G(G({},vs),{},{prefix:$t,iconName:Cn,main:st,mask:ft,maskId:si,transform:Dn,symbol:Zn,styles:G({},_t.styles)}),Bs=ft.found&&st.found?so("generateAbstractMask",rr)||{children:[],attributes:{}}:so("generateAbstractIcon",rr)||{children:[],attributes:{}},Kr=Bs.attributes;return rr.children=Bs.children,rr.attributes=Kr,Zn?function X(Te){var st=Te.iconName,ft=Te.children,$t=Te.attributes,Cn=Te.symbol,Dn=!0===Cn?"".concat(Te.prefix,"-").concat(Ui.cssPrefix,"-").concat(st):Cn;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:G(G({},$t),{},{id:Dn}),children:ft}]}]}(rr):function nl(Te){var dt=Te.children,st=Te.main,ft=Te.mask,$t=Te.attributes,Cn=Te.styles,Dn=Te.transform;if(Fs(Dn)&&st.found&&!ft.found){var _t={x:st.width/st.height/2,y:.5};$t.style=Rr(G(G({},Cn),{},{"transform-origin":"".concat(_t.x+Dn.x/16,"em ").concat(_t.y+Dn.y/16,"em")}))}return[{tag:"svg",attributes:$t,children:dt}]}(rr)}function me(Te){var dt=Te.content,st=Te.width,ft=Te.height,$t=Te.transform,Cn=Te.extra,Dn=Te.watchable,Zn=void 0!==Dn&&Dn,si=G(G({},Cn.attributes),{},{class:Cn.classes.join(" ")});Zn&&(si[_a]="");var _t=G({},Cn.styles);Fs($t)&&(_t.transform=function Ks(Te){var dt=Te.transform,st=Te.width,$t=Te.height,Cn=void 0===$t?16:$t,Dn=Te.startCentered,Zn=void 0!==Dn&&Dn,si="";return si+=Zn&&$?"translate(".concat(dt.x/16-(void 0===st?16:st)/2,"em, ").concat(dt.y/16-Cn/2,"em) "):Zn?"translate(calc(-50% + ".concat(dt.x/16,"em), calc(-50% + ").concat(dt.y/16,"em)) "):"translate(".concat(dt.x/16,"em, ").concat(dt.y/16,"em) "),(si+="scale(".concat(dt.size/16*(dt.flipX?-1:1),", ").concat(dt.size/16*(dt.flipY?-1:1),") "))+"rotate(".concat(dt.rotate,"deg) ")}({transform:$t,startCentered:!0,width:st,height:ft}),_t["-webkit-transform"]=_t.transform);var ji=Rr(_t);ji.length>0&&(si.style=ji);var Hi=[];return Hi.push({tag:"span",attributes:si,children:[dt]}),Hi}var Mt=Oi.styles;function Kt(Te){var dt=Te[0],st=Te[1],Cn=xe(Te.slice(4),1)[0];return{found:!0,width:dt,height:st,icon:Array.isArray(Cn)?{tag:"g",attributes:{class:"".concat(Ui.cssPrefix,"-").concat(Js_GROUP)},children:[{tag:"path",attributes:{class:"".concat(Ui.cssPrefix,"-").concat(Js_SECONDARY),fill:"currentColor",d:Cn[0]}},{tag:"path",attributes:{class:"".concat(Ui.cssPrefix,"-").concat(Js_PRIMARY),fill:"currentColor",d:Cn[1]}}]}:{tag:"path",attributes:{fill:"currentColor",d:Cn}}}}var Tn={found:!1,width:512,height:512};function Gi(Te,dt){var st=dt;return"fa"===dt&&null!==Ui.styleDefault&&(dt=za()),new Promise(function(ft,$t){if("fa"===st){var Cn=Tl(Te)||{};Te=Cn.iconName||Te,dt=Cn.prefix||dt}if(Te&&dt&&Mt[dt]&&Mt[dt][Te])return ft(Kt(Mt[dt][Te]));(function ai(Te,dt){!zo&&!Ui.showMissingIcons&&Te&&console.error('Icon with name "'.concat(Te,'" and prefix "').concat(dt,'" is missing.'))})(Te,dt),ft(G(G({},Tn),{},{icon:Ui.showMissingIcons&&Te&&so("missingIconAbstract")||{}}))})}var La=function(){},as=Ui.measurePerformance&&F&&F.mark&&F.measure?F:{mark:La,measure:La},Ns='FA "7.1.0"',ro_begin=function(dt){return as.mark("".concat(Ns," ").concat(dt," begins")),function(){return function(dt){as.mark("".concat(Ns," ").concat(dt," ends")),as.measure("".concat(Ns," ").concat(dt),"".concat(Ns," ").concat(dt," begins"),"".concat(Ns," ").concat(dt," ends"))}(dt)}},oo=function(){};function Il(Te){return"string"==typeof(Te.getAttribute?Te.getAttribute(_a):null)}function Xc(Te){return ie.createElementNS("http://www.w3.org/2000/svg",Te)}function po(Te){return ie.createElement(Te)}function fc(Te){var st=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).ceFn,ft=void 0===st?"svg"===Te.tag?Xc:po:st;if("string"==typeof Te)return ie.createTextNode(Te);var $t=ft(Te.tag);return Object.keys(Te.attributes||[]).forEach(function(Dn){$t.setAttribute(Dn,Te.attributes[Dn])}),(Te.children||[]).forEach(function(Dn){$t.appendChild(fc(Dn,{ceFn:ft}))}),$t}var Fr={replace:function(dt){var st=dt[0];if(st.parentNode)if(dt[1].forEach(function($t){st.parentNode.insertBefore(fc($t),st)}),null===st.getAttribute(_a)&&Ui.keepOriginalSource){var ft=ie.createComment(function pc(Te){var dt=" ".concat(Te.outerHTML," ");return"".concat(dt,"Font Awesome fontawesome.com ")}(st));st.parentNode.replaceChild(ft,st)}else st.remove()},nest:function(dt){var st=dt[0],ft=dt[1];if(~ja(st).indexOf(Ui.replacementClass))return Fr.replace(dt);var $t=new RegExp("".concat(Ui.cssPrefix,"-.*"));if(delete ft[0].attributes.id,ft[0].attributes.class){var Cn=ft[0].attributes.class.split(" ").reduce(function(Zn,si){return si===Ui.replacementClass||si.match($t)?Zn.toSvg.push(si):Zn.toNode.push(si),Zn},{toNode:[],toSvg:[]});ft[0].attributes.class=Cn.toSvg.join(" "),0===Cn.toNode.length?st.removeAttribute("class"):st.setAttribute("class",Cn.toNode.join(" "))}var Dn=ft.map(function(Zn){return $e(Zn)}).join("\n");st.setAttribute(_a,""),st.innerHTML=Dn}};function wo(Te){Te()}function od(Te,dt){var st="function"==typeof dt?dt:oo;if(0===Te.length)st();else{var ft=wo;"async"===Ui.mutateApproach&&(ft=te.requestAnimationFrame||wo),ft(function(){var $t=function kl(){return!0===Ui.autoReplaceSvg?Fr.replace:Fr[Ui.autoReplaceSvg]||Fr.replace}(),Cn=ro_begin("mutate");Te.map($t),Cn(),st()})}}var Ao=!1;function Lc(){Ao=!0}function vl(){Ao=!1}var al=null;function Lo(Te){if(P&&Ui.observeMutations){var dt=Te.treeCallback,st=void 0===dt?oo:dt,ft=Te.nodeCallback,$t=void 0===ft?oo:ft,Cn=Te.pseudoElementsCallback,Dn=void 0===Cn?oo:Cn,Zn=Te.observeMutationsRoot,si=void 0===Zn?ie:Zn;al=new P(function(_t){if(!Ao){var ji=za();wa(_t).forEach(function(Hi){if("childList"===Hi.type&&Hi.addedNodes.length>0&&!Il(Hi.addedNodes[0])&&(Ui.searchPseudoElements&&Dn(Hi.target),st(Hi.target)),"attributes"===Hi.type&&Hi.target.parentNode&&Ui.searchPseudoElements&&Dn([Hi.target],!0),"attributes"===Hi.type&&Il(Hi.target)&&~Co.indexOf(Hi.attributeName))if("class"===Hi.attributeName&&function mc(Te){var dt=Te.getAttribute?Te.getAttribute(ns):null,st=Te.getAttribute?Te.getAttribute(Ga):null;return dt&&st}(Hi.target)){var Ja=Ho(ja(Hi.target)),wr=Ja.iconName;Hi.target.setAttribute(ns,Ja.prefix||ji),wr&&Hi.target.setAttribute(Ga,wr)}else(function ec(Te){return Te&&Te.classList&&Te.classList.contains&&Te.classList.contains(Ui.replacementClass)})(Hi.target)&&$t(Hi.target)})}}),H&&al.observe(si,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function Io(Te){var dt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{styleParser:!0},st=function jl(Te){var dt=Te.getAttribute("data-prefix"),st=Te.getAttribute("data-icon"),ft=void 0!==Te.innerText?Te.innerText.trim():"",$t=Ho(ja(Te));return $t.prefix||($t.prefix=za()),dt&&st&&($t.prefix=dt,$t.iconName=st),$t.iconName&&$t.prefix||($t.prefix&&ft.length>0&&($t.iconName=function jo(Te,dt){return(zl[Te]||{})[dt]}($t.prefix,Te.innerText)||Tr($t.prefix,xa(Te.innerText))),!$t.iconName&&Ui.autoFetchSvg&&Te.firstChild&&Te.firstChild.nodeType===Node.TEXT_NODE&&($t.iconName=Te.firstChild.data)),$t}(Te),ft=st.iconName,$t=st.prefix,Cn=st.rest,Dn=function Hl(Te){return wa(Te.attributes).reduce(function(st,ft){return"class"!==st.name&&"style"!==st.name&&(st[ft.name]=ft.value),st},{})}(Te),Zn=ao("parseNodeAttributes",{},Te),si=dt.styleParser?function Gl(Te){var dt=Te.getAttribute("style"),st=[];return dt&&(st=dt.split(";").reduce(function(ft,$t){var Cn=$t.split(":"),Dn=Cn[0],Zn=Cn.slice(1);return Dn&&Zn.length>0&&(ft[Dn]=Zn.join(":").trim()),ft},{})),st}(Te):[];return G({iconName:ft,prefix:$t,transform:Pa,mask:{iconName:null,prefix:null,rest:[]},maskId:null,symbol:!1,extra:{classes:Cn,styles:si,attributes:Dn}},Zn)}var ko=Oi.styles;function Wl(Te){var dt="nest"===Ui.autoReplaceSvg?Io(Te,{styleParser:!1}):Io(Te);return~dt.extra.classes.indexOf(Vo)?so("generateLayersText",Te,dt):so("generateSvgReplacementMutation",Te,dt)}function Ts(Te){var dt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!H)return Promise.resolve();var st=ie.documentElement.classList,ft=function(Hi){return st.add("".concat(As,"-").concat(Hi))},$t=function(Hi){return st.remove("".concat(As,"-").concat(Hi))},Cn=Ui.autoFetchSvg?function sr(){return[].concat(Ee(bt),Ee(di))}():ht.concat(Object.keys(ko));Cn.includes("fa")||Cn.push("fa");var Dn=[".".concat(Vo,":not([").concat(_a,"])")].concat(Cn.map(function(ji){return".".concat(ji,":not([").concat(_a,"])")})).join(", ");if(0===Dn.length)return Promise.resolve();var Zn=[];try{Zn=wa(Te.querySelectorAll(Dn))}catch{}if(!(Zn.length>0))return Promise.resolve();ft("pending"),$t("complete");var si=ro_begin("onTree"),_t=Zn.reduce(function(ji,Hi){try{var Ja=Wl(Hi);Ja&&ji.push(Ja)}catch(Ba){zo||"MissingIcon"===Ba.name&&console.error(Ba)}return ji},[]);return new Promise(function(ji,Hi){Promise.all(_t).then(function(Ja){od(Ja,function(){ft("active"),ft("complete"),$t("pending"),"function"==typeof dt&&dt(),si(),ji()})}).catch(function(Ja){si(),Hi(Ja)})})}function yt(Te){var dt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;Wl(Te).then(function(st){st&&od([st],dt)})}var ct=function(dt){var st=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},ft=st.transform,$t=void 0===ft?Pa:ft,Cn=st.symbol,Dn=void 0!==Cn&&Cn,Zn=st.mask,si=void 0===Zn?null:Zn,_t=st.maskId,ji=void 0===_t?null:_t,Hi=st.classes,Ja=void 0===Hi?[]:Hi,Ba=st.attributes,wr=void 0===Ba?{}:Ba,_s=st.styles,vs=void 0===_s?{}:_s;if(dt){var rr=dt.prefix,Bs=dt.iconName,ol=dt.icon;return Wo(G({type:"icon"},dt),function(){return Pr("beforeDOMElementCreation",{iconDefinition:dt,params:st}),Q({icons:{main:Kt(ol),mask:si?Kt(si.icon):{found:!1,width:null,height:null,icon:{}}},prefix:rr,iconName:Bs,transform:G(G({},Pa),$t),symbol:Dn,maskId:ji,extra:{attributes:wr,styles:vs,classes:Ja}})})}},Qt={mixout:function(){return{icon:(Te=ct,function(dt){var st=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},ft=(dt||{}).icon?dt:tl(dt||{}),$t=st.mask;return $t&&($t=($t||{}).icon?$t:tl($t||{})),Te(ft,G(G({},st),{},{mask:$t}))})};var Te},hooks:function(){return{mutationObserverCallbacks:function(st){return st.treeCallback=Ts,st.nodeCallback=yt,st}}},provides:function(dt){dt.i2svg=function(st){var ft=st.node,Cn=st.callback;return Ts(void 0===ft?ie:ft,void 0===Cn?function(){}:Cn)},dt.generateSvgReplacementMutation=function(st,ft){var $t=ft.iconName,Cn=ft.prefix,Dn=ft.transform,Zn=ft.symbol,si=ft.mask,_t=ft.maskId,ji=ft.extra;return new Promise(function(Hi,Ja){Promise.all([Gi($t,Cn),si.iconName?Gi(si.iconName,si.prefix):Promise.resolve({found:!1,width:512,height:512,icon:{}})]).then(function(Ba){var wr=xe(Ba,2);Hi([st,Q({icons:{main:wr[0],mask:wr[1]},prefix:Cn,iconName:$t,transform:Dn,symbol:Zn,maskId:_t,extra:ji,watchable:!0})])}).catch(Ja)})},dt.generateAbstractIcon=function(st){var _t,ft=st.children,$t=st.attributes,Cn=st.main,Dn=st.transform,si=Rr(st.styles);return si.length>0&&($t.style=si),Fs(Dn)&&(_t=so("generateAbstractTransformGrouping",{main:Cn,transform:Dn,containerWidth:Cn.width,iconWidth:Cn.width})),ft.push(_t||Cn.icon),{children:ft,attributes:$t}}}},Pn={mixout:function(){return{layer:function(st){var ft=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},$t=ft.classes,Cn=void 0===$t?[]:$t;return Wo({type:"layer"},function(){Pr("beforeDOMElementCreation",{assembler:st,params:ft});var Dn=[];return st(function(Zn){Array.isArray(Zn)?Zn.map(function(si){Dn=Dn.concat(si.abstract)}):Dn=Dn.concat(Zn.abstract)}),[{tag:"span",attributes:{class:["".concat(Ui.cssPrefix,"-layers")].concat(Ee(Cn)).join(" ")},children:Dn}]})}}}},$n={mixout:function(){return{counter:function(st){var ft=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},$t=ft.title,Cn=void 0===$t?null:$t,Dn=ft.classes,Zn=void 0===Dn?[]:Dn,si=ft.attributes,_t=void 0===si?{}:si,ji=ft.styles,Hi=void 0===ji?{}:ji;return Wo({type:"counter",content:st},function(){return Pr("beforeDOMElementCreation",{content:st,params:ft}),function et(Te){var dt=Te.content,st=Te.extra,ft=G(G({},st.attributes),{},{class:st.classes.join(" ")}),$t=Rr(st.styles);$t.length>0&&(ft.style=$t);var Cn=[];return Cn.push({tag:"span",attributes:ft,children:[dt]}),Cn}({content:st.toString(),title:Cn,extra:{attributes:_t,styles:Hi,classes:["".concat(Ui.cssPrefix,"-layers-counter")].concat(Ee(Zn))}})})}}}},Ci={mixout:function(){return{text:function(st){var ft=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},$t=ft.transform,Cn=void 0===$t?Pa:$t,Dn=ft.classes,Zn=void 0===Dn?[]:Dn,si=ft.attributes,_t=void 0===si?{}:si,ji=ft.styles,Hi=void 0===ji?{}:ji;return Wo({type:"text",content:st},function(){return Pr("beforeDOMElementCreation",{content:st,params:ft}),me({content:st,transform:G(G({},Pa),Cn),extra:{attributes:_t,styles:Hi,classes:["".concat(Ui.cssPrefix,"-layers-text")].concat(Ee(Zn))}})})}}},provides:function(dt){dt.generateLayersText=function(st,ft){var $t=ft.transform,Cn=ft.extra,Dn=null,Zn=null;if($){var si=parseInt(getComputedStyle(st).fontSize,10),_t=st.getBoundingClientRect();Dn=_t.width/si,Zn=_t.height/si}return Promise.resolve([st,me({content:st.innerHTML,width:Dn,height:Zn,transform:$t,extra:Cn,watchable:!0})])}}},wi=new RegExp('"',"ug"),$i=[1105920,1112319],sa=G(G(G(G({},{FontAwesome:{normal:"fas",400:"fas"}}),{"Font Awesome 7 Free":{900:"fas",400:"far"},"Font Awesome 7 Pro":{900:"fas",400:"far",normal:"far",300:"fal",100:"fat"},"Font Awesome 7 Brands":{400:"fab",normal:"fab"},"Font Awesome 7 Duotone":{900:"fad",400:"fadr",normal:"fadr",300:"fadl",100:"fadt"},"Font Awesome 7 Sharp":{900:"fass",400:"fasr",normal:"fasr",300:"fasl",100:"fast"},"Font Awesome 7 Sharp Duotone":{900:"fasds",400:"fasdr",normal:"fasdr",300:"fasdl",100:"fasdt"},"Font Awesome 7 Jelly":{400:"fajr",normal:"fajr"},"Font Awesome 7 Jelly Fill":{400:"fajfr",normal:"fajfr"},"Font Awesome 7 Jelly Duo":{400:"fajdr",normal:"fajdr"},"Font Awesome 7 Slab":{400:"faslr",normal:"faslr"},"Font Awesome 7 Slab Press":{400:"faslpr",normal:"faslpr"},"Font Awesome 7 Thumbprint":{300:"fatl",normal:"fatl"},"Font Awesome 7 Notdog":{900:"fans",normal:"fans"},"Font Awesome 7 Notdog Duo":{900:"fands",normal:"fands"},"Font Awesome 7 Etch":{900:"faes",normal:"faes"},"Font Awesome 7 Chisel":{400:"facr",normal:"facr"},"Font Awesome 7 Whiteboard":{600:"fawsb",normal:"fawsb"},"Font Awesome 7 Utility":{600:"fausb",normal:"fausb"},"Font Awesome 7 Utility Duo":{600:"faudsb",normal:"faudsb"},"Font Awesome 7 Utility Fill":{600:"faufsb",normal:"faufsb"}}),{"Font Awesome 5 Free":{900:"fas",400:"far"},"Font Awesome 5 Pro":{900:"fas",400:"far",normal:"far",300:"fal"},"Font Awesome 5 Brands":{400:"fab",normal:"fab"},"Font Awesome 5 Duotone":{900:"fad"}}),{"Font Awesome Kit":{400:"fak",normal:"fak"},"Font Awesome Kit Duotone":{400:"fakd",normal:"fakd"}}),va=Object.keys(sa).reduce(function(Te,dt){return Te[dt.toLowerCase()]=sa[dt],Te},{}),oa=Object.keys(va).reduce(function(Te,dt){var st=va[dt];return Te[dt]=st[900]||Ee(Object.entries(st))[0][1],Te},{});function Nr(Te,dt){var st="".concat("data-fa-pseudo-element-pending").concat(dt.replace(":","-"));return new Promise(function(ft,$t){if(null!==Te.getAttribute(st))return ft();var Dn=wa(Te.children).filter(function(ll){return ll.getAttribute(Ua)===dt})[0],Zn=te.getComputedStyle(Te,dt),si=Zn.getPropertyValue("font-family"),_t=si.match(Zr),ji=Zn.getPropertyValue("font-weight"),Hi=Zn.getPropertyValue("content");if(Dn&&!_t)return Te.removeChild(Dn),ft();if(_t&&"none"!==Hi&&""!==Hi){var Ja=Zn.getPropertyValue("content"),Ba=function gi(Te,dt){var st=Te.replace(/^['"]|['"]$/g,"").toLowerCase(),ft=parseInt(dt),$t=isNaN(ft)?"normal":ft;return(va[st]||{})[$t]||oa[st]}(si,ji),wr=function hs(Te){return xa(Ee(Te.replace(wi,""))[0]||"")}(Ja),_s=_t[0].startsWith("FontAwesome"),vs=function Ls(Te){var dt=Te.getPropertyValue("font-feature-settings").includes("ss01"),ft=Te.getPropertyValue("content").replace(wi,""),$t=ft.codePointAt(0);return $t>=$i[0]&&$t<=$i[1]||2===ft.length&&ft[0]===ft[1]||dt}(Zn),rr=Tr(Ba,wr),Bs=rr;if(_s){var ol=function Vl(Te){var dt=nr[Te],st=Tr("fas",Te);return dt||(st?{prefix:"fas",iconName:st}:null)||{prefix:null,iconName:null}}(wr);ol.iconName&&ol.prefix&&(rr=ol.iconName,Ba=ol.prefix)}if(!rr||vs||Dn&&Dn.getAttribute(ns)===Ba&&Dn.getAttribute(Ga)===Bs)ft();else{Te.setAttribute(st,Bs),Dn&&Te.removeChild(Dn);var Kr=function Rl(){return{iconName:null,prefix:null,transform:Pa,symbol:!1,mask:{iconName:null,prefix:null,rest:[]},maskId:null,extra:{classes:[],styles:{},attributes:{}}}}(),sc=Kr.extra;sc.attributes[Ua]=dt,Gi(rr,Ba).then(function(ll){var D4=Q(G(G({},Kr),{},{icons:{main:ll,mask:{prefix:null,iconName:null,rest:[]}},prefix:Ba,iconName:Bs,extra:sc,watchable:!0})),vc=ie.createElementNS("http://www.w3.org/2000/svg","svg");"::before"===dt?Te.insertBefore(vc,Te.firstChild):Te.appendChild(vc),vc.outerHTML=D4.map(function(s2){return $e(s2)}).join("\n"),Te.removeAttribute(st),ft()}).catch($t)}}else ft()})}function Br(Te){return Promise.all([Nr(Te,"::before"),Nr(Te,"::after")])}function Xo(Te){return!(Te.parentNode===document.head||~mr.indexOf(Te.tagName.toUpperCase())||Te.getAttribute(Ua)||Te.parentNode&&"svg"===Te.parentNode.tagName)}var Oo=function(dt){return!!dt&&fr.some(function(st){return dt.includes(st)})},Pl=function(dt){if(!dt)return[];var Cn,st=new Set,ft=dt.split(/,(?![^()]*\))/).map(function(si){return si.trim()}),$t=B(ft=ft.flatMap(function(si){return si.includes("(")?si:si.split(",").map(function(_t){return _t.trim()})}));try{for($t.s();!(Cn=$t.n()).done;){var Dn=Cn.value;if(Oo(Dn)){var Zn=fr.reduce(function(si,_t){return si.replace(_t,"")},Dn);""!==Zn&&"*"!==Zn&&st.add(Zn)}}}catch(si){$t.e(si)}finally{$t.f()}return st};function yl(Te){if(H){var st;if(arguments.length>1&&void 0!==arguments[1]&&arguments[1])st=Te;else if(Ui.searchPseudoElementsFullScan)st=Te.querySelectorAll("*");else{var Cn,ft=new Set,$t=B(document.styleSheets);try{for($t.s();!(Cn=$t.n()).done;){var Dn=Cn.value;try{var si,Zn=B(Dn.cssRules);try{for(Zn.s();!(si=Zn.n()).done;){var Ja,Hi=B(Pl(si.value.selectorText));try{for(Hi.s();!(Ja=Hi.n()).done;)ft.add(Ja.value)}catch(_s){Hi.e(_s)}finally{Hi.f()}}}catch(_s){Zn.e(_s)}finally{Zn.f()}}catch(_s){Ui.searchPseudoElementsWarnings&&console.warn("Font Awesome: cannot parse stylesheet: ".concat(Dn.href," (").concat(_s.message,')\nIf it declares any Font Awesome CSS pseudo-elements, they will not be rendered as SVG icons. Add crossorigin="anonymous" to the , enable searchPseudoElementsFullScan for slower but more thorough DOM parsing, or suppress this warning by setting searchPseudoElementsWarnings to false.'))}}}catch(_s){$t.e(_s)}finally{$t.f()}if(!ft.size)return;var wr=Array.from(ft).join(", ");try{st=Te.querySelectorAll(wr)}catch{}}return new Promise(function(_s,vs){var rr=wa(st).filter(Xo).map(Br),Bs=ro_begin("searchPseudoElements");Lc(),Promise.all(rr).then(function(){Bs(),vl(),_s()}).catch(function(){Bs(),vl(),vs()})})}}var tc=!1,Kc=function(dt){return dt.toLowerCase().split(" ").reduce(function(ft,$t){var Cn=$t.toLowerCase().split("-"),Dn=Cn[0],Zn=Cn.slice(1).join("-");if(Dn&&"h"===Zn)return ft.flipX=!0,ft;if(Dn&&"v"===Zn)return ft.flipY=!0,ft;if(Zn=parseFloat(Zn),isNaN(Zn))return ft;switch(Dn){case"grow":ft.size=ft.size+Zn;break;case"shrink":ft.size=ft.size-Zn;break;case"left":ft.x=ft.x-Zn;break;case"right":ft.x=ft.x+Zn;break;case"up":ft.y=ft.y-Zn;break;case"down":ft.y=ft.y+Zn;break;case"rotate":ft.rotate=ft.rotate+Zn}return ft},{size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0})},gc={x:0,y:0,width:"100%",height:"100%"};function Yc(Te){return Te.attributes&&(Te.attributes.fill||!(arguments.length>1&&void 0!==arguments[1])||arguments[1])&&(Te.attributes.fill="black"),Te}!function Wr(Te,dt){var st=dt.mixoutsTo;io=Te,Ys={},Object.keys(Dr).forEach(function(ft){-1===li.indexOf(ft)&&delete Dr[ft]}),io.forEach(function(ft){var $t=ft.mixout?ft.mixout():{};if(Object.keys($t).forEach(function(Dn){"function"==typeof $t[Dn]&&(st[Dn]=$t[Dn]),"object"===be($t[Dn])&&Object.keys($t[Dn]).forEach(function(Zn){st[Dn]||(st[Dn]={}),st[Dn][Zn]=$t[Dn][Zn]})}),ft.hooks){var Cn=ft.hooks();Object.keys(Cn).forEach(function(Dn){Ys[Dn]||(Ys[Dn]=[]),Ys[Dn].push(Cn[Dn])})}ft.provides&&ft.provides(Dr)})}([mt,Qt,Pn,$n,Ci,{hooks:function(){return{mutationObserverCallbacks:function(st){return st.pseudoElementsCallback=yl,st}}},provides:function(dt){dt.pseudoElements2svg=function(st){var ft=st.node;Ui.searchPseudoElements&&yl(void 0===ft?ie:ft)}}},{mixout:function(){return{dom:{unwatch:function(){Lc(),tc=!0}}}},hooks:function(){return{bootstrap:function(){Lo(ao("mutationObserverCallbacks",{}))},noAuto:function(){!function Ol(){al&&al.disconnect()}()},watch:function(st){var ft=st.observeMutationsRoot;tc?vl():Lo(ao("mutationObserverCallbacks",{observeMutationsRoot:ft}))}}}},{mixout:function(){return{parse:{transform:function(st){return Kc(st)}}}},hooks:function(){return{parseNodeAttributes:function(st,ft){var $t=ft.getAttribute("data-fa-transform");return $t&&(st.transform=Kc($t)),st}}},provides:function(dt){dt.generateAbstractTransformGrouping=function(st){var ft=st.main,$t=st.transform,Dn=st.iconWidth,Zn={transform:"translate(".concat(st.containerWidth/2," 256)")},si="translate(".concat(32*$t.x,", ").concat(32*$t.y,") "),_t="scale(".concat($t.size/16*($t.flipX?-1:1),", ").concat($t.size/16*($t.flipY?-1:1),") "),ji="rotate(".concat($t.rotate," 0 0)"),Ba={outer:Zn,inner:{transform:"".concat(si," ").concat(_t," ").concat(ji)},path:{transform:"translate(".concat(Dn/2*-1," -256)")}};return{tag:"g",attributes:G({},Ba.outer),children:[{tag:"g",attributes:G({},Ba.inner),children:[{tag:ft.icon.tag,children:ft.icon.children,attributes:G(G({},ft.icon.attributes),Ba.path)}]}]}}}},{hooks:function(){return{parseNodeAttributes:function(st,ft){var $t=ft.getAttribute("data-fa-mask"),Cn=$t?Ho($t.split(" ").map(function(Dn){return Dn.trim()})):{prefix:null,iconName:null,rest:[]};return Cn.prefix||(Cn.prefix=za()),st.mask=Cn,st.maskId=ft.getAttribute("data-fa-mask-id"),st}}},provides:function(dt){dt.generateAbstractMask=function(st){var Te,ft=st.children,$t=st.attributes,Cn=st.main,Dn=st.mask,Zn=st.maskId,ji=Cn.icon,Ja=Dn.icon,Ba=function Hr(Te){var dt=Te.transform,ft=Te.iconWidth,$t={transform:"translate(".concat(Te.containerWidth/2," 256)")},Cn="translate(".concat(32*dt.x,", ").concat(32*dt.y,") "),Dn="scale(".concat(dt.size/16*(dt.flipX?-1:1),", ").concat(dt.size/16*(dt.flipY?-1:1),") "),Zn="rotate(".concat(dt.rotate," 0 0)");return{outer:$t,inner:{transform:"".concat(Cn," ").concat(Dn," ").concat(Zn)},path:{transform:"translate(".concat(ft/2*-1," -256)")}}}({transform:st.transform,containerWidth:Dn.width,iconWidth:Cn.width}),wr={tag:"rect",attributes:G(G({},gc),{},{fill:"white"})},_s=ji.children?{children:ji.children.map(Yc)}:{},vs={tag:"g",attributes:G({},Ba.inner),children:[Yc(G({tag:ji.tag,attributes:G(G({},ji.attributes),Ba.path)},_s))]},rr={tag:"g",attributes:G({},Ba.outer),children:[vs]},Bs="mask-".concat(Zn||Xs()),ol="clip-".concat(Zn||Xs()),Kr={tag:"mask",attributes:G(G({},gc),{},{id:Bs,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[wr,rr]},sc={tag:"defs",children:[{tag:"clipPath",attributes:{id:ol},children:(Te=Ja,"g"===Te.tag?Te.children:[Te])},Kr]};return ft.push(sc,{tag:"rect",attributes:G({fill:"currentColor","clip-path":"url(#".concat(ol,")"),mask:"url(#".concat(Bs,")")},gc)}),{children:ft,attributes:$t}}}},{provides:function(dt){var st=!1;te.matchMedia&&(st=te.matchMedia("(prefers-reduced-motion: reduce)").matches),dt.missingIconAbstract=function(){var ft=[],$t={fill:"currentColor"},Cn={attributeType:"XML",repeatCount:"indefinite",dur:"2s"};ft.push({tag:"path",attributes:G(G({},$t),{},{d:"M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"})});var Dn=G(G({},Cn),{},{attributeName:"opacity"}),Zn={tag:"circle",attributes:G(G({},$t),{},{cx:"256",cy:"364",r:"28"}),children:[]};return st||Zn.children.push({tag:"animate",attributes:G(G({},Cn),{},{attributeName:"r",values:"28;14;28;28;14;28;"})},{tag:"animate",attributes:G(G({},Dn),{},{values:"1;0;1;1;0;1;"})}),ft.push(Zn),ft.push({tag:"path",attributes:G(G({},$t),{},{opacity:"1",d:"M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"}),children:st?[]:[{tag:"animate",attributes:G(G({},Dn),{},{values:"1;0;0;0;0;1;"})}]}),st||ft.push({tag:"path",attributes:G(G({},$t),{},{opacity:"0",d:"M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"}),children:[{tag:"animate",attributes:G(G({},Dn),{},{values:"0;0;1;1;0;0;"})}]}),{tag:"g",attributes:{class:"missing"},children:ft}}}},{hooks:function(){return{parseNodeAttributes:function(st,ft){var $t=ft.getAttribute("data-fa-symbol");return st.symbol=null!==$t&&(""===$t||$t),st}}}}],{mixoutsTo:ir});var Oa=ir.config,K=ir.dom,Ie=ir.parse,ui=ir.icon;const S4=["*"];let Qc=(()=>{class Te{defaultPrefix="fas";fallbackIcon=null;fixedWidth;set autoAddCss(st){Oa.autoAddCss=st,this._autoAddCss=st}get autoAddCss(){return this._autoAddCss}_autoAddCss=!0;static \u0275fac=function(ft){return new(ft||Te)};static \u0275prov=i.jDH({token:Te,factory:Te.\u0275fac,providedIn:"root"})}return Te})(),_c=(()=>{class Te{definitions={};addIcons(...st){for(const ft of st){ft.prefix in this.definitions||(this.definitions[ft.prefix]={}),this.definitions[ft.prefix][ft.iconName]=ft;for(const $t of ft.icon[2])"string"==typeof $t&&(this.definitions[ft.prefix][$t]=ft)}}addIconPacks(...st){for(const ft of st){const $t=Object.keys(ft).map(Cn=>ft[Cn]);this.addIcons(...$t)}}getIconDefinition(st,ft){return st in this.definitions&&ft in this.definitions[st]?this.definitions[st][ft]:null}static \u0275fac=function(ft){return new(ft||Te)};static \u0275prov=i.jDH({token:Te,factory:Te.\u0275fac,providedIn:"root"})}return Te})();const $c=Te=>null!=Te&&(90===Te||180===Te||270===Te||"90"===Te||"180"===Te||"270"===Te),n2=Te=>{const dt=$c(Te.rotate),st={[`fa-${Te.animation}`]:null!=Te.animation&&!Te.animation.startsWith("spin"),"fa-spin":"spin"===Te.animation||"spin-reverse"===Te.animation,"fa-spin-pulse":"spin-pulse"===Te.animation||"spin-pulse-reverse"===Te.animation,"fa-spin-reverse":"spin-reverse"===Te.animation||"spin-pulse-reverse"===Te.animation,"fa-pulse":"spin-pulse"===Te.animation||"spin-pulse-reverse"===Te.animation,"fa-fw":Te.fixedWidth,"fa-border":Te.border,"fa-inverse":Te.inverse,"fa-layers-counter":Te.counter,"fa-flip-horizontal":"horizontal"===Te.flip||"both"===Te.flip,"fa-flip-vertical":"vertical"===Te.flip||"both"===Te.flip,[`fa-${Te.size}`]:null!==Te.size,[`fa-rotate-${Te.rotate}`]:dt,"fa-rotate-by":null!=Te.rotate&&!dt,[`fa-pull-${Te.pull}`]:null!==Te.pull,[`fa-stack-${Te.stackItemSize}`]:null!=Te.stackItemSize};return Object.keys(st).map(ft=>st[ft]?ft:null).filter(ft=>null!=ft)},rl=new WeakSet,br="fa-auto-css";let Fl=(()=>{class Te{stackItemSize=(0,v.hFB)("1x");size=(0,v.hFB)();_effect=(0,T.QZ)(()=>{if(this.size())throw new Error('fa-icon is not allowed to customize size when used inside fa-stack. Set size on the enclosing fa-stack instead: ....')});static \u0275fac=function(ft){return new(ft||Te)};static \u0275dir=d.FsC({type:Te,selectors:[["fa-icon","stackItemSize",""],["fa-duotone-icon","stackItemSize",""]],inputs:{stackItemSize:[1,"stackItemSize"],size:[1,"size"]}})}return Te})(),y1=(()=>{class Te{size=(0,v.hFB)();classes=(0,T.EW)(()=>{const st=this.size();return{...st?{[`fa-${st}`]:!0}:{},"fa-stack":!0}});static \u0275fac=function(ft){return new(ft||Te)};static \u0275cmp=d.VBU({type:Te,selectors:[["fa-stack"]],hostVars:2,hostBindings:function(ft,$t){2&ft&&d.HbH($t.classes())},inputs:{size:[1,"size"]},ngContentSelectors:S4,decls:1,vars:0,template:function(ft,$t){1&ft&&(d.NAR(),d.SdG(0))},encapsulation:2,changeDetection:0})}return Te})(),ld=(()=>{class Te{icon=(0,v.geq)();title=(0,v.geq)();animation=(0,v.geq)();mask=(0,v.geq)();flip=(0,v.geq)();size=(0,v.geq)();pull=(0,v.geq)();border=(0,v.geq)();inverse=(0,v.geq)();symbol=(0,v.geq)();rotate=(0,v.geq)();fixedWidth=(0,v.geq)();transform=(0,v.geq)();a11yRole=(0,v.geq)();renderedIconHTML=(0,T.EW)(()=>{const st=this.icon()??this.config.fallbackIcon;if(!st)return(()=>{throw new Error("Property `icon` is required for `fa-icon`/`fa-duotone-icon` components.")})(),"";const ft=this.findIconDefinition(st);if(!ft)return"";const $t=this.buildParams();!function Yo(Te,dt){if(!dt.autoAddCss||rl.has(Te))return;if(null!=Te.getElementById(br))return dt.autoAddCss=!1,void rl.add(Te);const st=Te.createElement("style");st.setAttribute("type","text/css"),st.setAttribute("id",br),st.innerHTML=K.css();const ft=Te.head.childNodes;let $t=null;for(let Cn=ft.length-1;Cn>-1;Cn--){const Dn=ft[Cn],Zn=Dn.nodeName.toUpperCase();["STYLE","LINK"].indexOf(Zn)>-1&&($t=Dn)}Te.head.insertBefore(st,$t),dt.autoAddCss=!1,rl.add(Te)}(this.document,this.config);const Cn=ui(ft,$t);return this.sanitizer.bypassSecurityTrustHtml(Cn.html.join("\n"))});document=(0,i.WQX)(i.qQL);sanitizer=(0,i.WQX)(w.up);config=(0,i.WQX)(Qc);iconLibrary=(0,i.WQX)(_c);stackItem=(0,i.WQX)(Fl,{optional:!0});stack=(0,i.WQX)(y1,{optional:!0});constructor(){null!=this.stack&&null==this.stackItem&&console.error('FontAwesome: fa-icon and fa-duotone-icon elements must specify stackItemSize attribute when wrapped into fa-stack. Example: .')}findIconDefinition(st){const ft=((Te,dt)=>(Te=>void 0!==Te.prefix&&void 0!==Te.iconName)(Te)?Te:Array.isArray(Te)&&2===Te.length?{prefix:Te[0],iconName:Te[1]}:{prefix:dt,iconName:Te})(st,this.config.defaultPrefix);return"icon"in ft?ft:this.iconLibrary.getIconDefinition(ft.prefix,ft.iconName)??((Te=>{throw new Error(`Could not find icon with iconName=${Te.iconName} and prefix=${Te.prefix} in the icon library.`)})(ft),null)}buildParams(){const st=this.fixedWidth(),ft={flip:this.flip(),animation:this.animation(),border:this.border(),inverse:this.inverse(),size:this.size(),pull:this.pull(),rotate:this.rotate(),fixedWidth:"boolean"==typeof st?st:this.config.fixedWidth,stackItemSize:null!=this.stackItem?this.stackItem.stackItemSize():void 0},$t=this.transform(),Cn="string"==typeof $t?Ie.transform($t):$t,Dn=this.mask(),Zn=null!=Dn?this.findIconDefinition(Dn):null,si={},_t=this.a11yRole();null!=_t&&(si.role=_t);const ji={};return null!=ft.rotate&&!$c(ft.rotate)&&(ji["--fa-rotate-angle"]=`${ft.rotate}`),{title:this.title(),transform:Cn,classes:n2(ft),mask:Zn??void 0,symbol:this.symbol(),attributes:si,styles:ji}}static \u0275fac=function(ft){return new(ft||Te)};static \u0275cmp=d.VBU({type:Te,selectors:[["fa-icon"]],hostAttrs:[1,"ng-fa-icon"],hostVars:2,hostBindings:function(ft,$t){2&ft&&(d.Avn("innerHTML",$t.renderedIconHTML(),d.npT),d.BMQ("title",$t.title()??void 0))},inputs:{icon:[1,"icon"],title:[1,"title"],animation:[1,"animation"],mask:[1,"mask"],flip:[1,"flip"],size:[1,"size"],pull:[1,"pull"],border:[1,"border"],inverse:[1,"inverse"],symbol:[1,"symbol"],rotate:[1,"rotate"],fixedWidth:[1,"fixedWidth"],transform:[1,"transform"],a11yRole:[1,"a11yRole"]},outputs:{icon:"iconChange",title:"titleChange",animation:"animationChange",mask:"maskChange",flip:"flipChange",size:"sizeChange",pull:"pullChange",border:"borderChange",inverse:"inverseChange",symbol:"symbolChange",rotate:"rotateChange",fixedWidth:"fixedWidthChange",transform:"transformChange",a11yRole:"a11yRoleChange"},decls:0,vars:0,template:function(ft,$t){},encapsulation:2,changeDetection:0})}return Te})(),I0=(()=>{class Te{static \u0275fac=function(ft){return new(ft||Te)};static \u0275mod=d.$C({type:Te});static \u0275inj=i.G2t({})}return Te})()},5383(Zt,pe,l){"use strict";l.d(pe,{$$g:()=>qa,$Fj:()=>Ch,$sC:()=>Xb,BA1:()=>In,C8j:()=>cd,CQO:()=>r0,Ccf:()=>gs,D6w:()=>t_,DW4:()=>M4,EvL:()=>te,FYJ:()=>We,GR4:()=>wt,GRI:()=>A_,HEq:()=>ki,If6:()=>Yt,Int:()=>f6,JKM:()=>n1,Kcb:()=>Op,M29:()=>ub,McB:()=>Fb,Mf0:()=>mc,MjD:()=>ln,Oh6:()=>cC,QLR:()=>kf,TBz:()=>Hb,Tq9:()=>Ia,Vpi:()=>B,VwO:()=>S_,W1p:()=>vf,WKo:()=>er,WxX:()=>Tc,Xbc:()=>On,_eQ:()=>So,_qq:()=>M_,aAJ:()=>yo,aFw:()=>P6,cbP:()=>g1,dB:()=>c0,e4L:()=>M6,eGi:()=>N3,f6_:()=>Lh,gdJ:()=>_d,hb3:()=>cc,iW_:()=>CC,iy8:()=>Jo,jPR:()=>oy,jTw:()=>J2,k02:()=>Ve,k6j:()=>dg,knH:()=>r3,ld_:()=>Iu,njF:()=>qb,nsx:()=>Vb,o97:()=>Ii,pCJ:()=>dn,pS3:()=>X,peG:()=>Fp,qFF:()=>n0,qIE:()=>SC,s5m:()=>j2,vfE:()=>a7,xiI:()=>Up,ymQ:()=>E,zPk:()=>s1,zjW:()=>A2,zm_:()=>gy,zpE:()=>N8});var B={prefix:"fas",iconName:"dollar-sign",icon:[320,512,[128178,61781,"dollar","usd"],"24","M136 24c0-13.3 10.7-24 24-24s24 10.7 24 24l0 40 56 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-114.9 0c-24.9 0-45.1 20.2-45.1 45.1 0 22.5 16.5 41.5 38.7 44.7l91.6 13.1c53.8 7.7 93.7 53.7 93.7 108 0 60.3-48.9 109.1-109.1 109.1l-10.9 0 0 40c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-40-72 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l130.9 0c24.9 0 45.1-20.2 45.1-45.1 0-22.5-16.5-41.5-38.7-44.7l-91.6-13.1C55.9 273.5 16 227.4 16 173.1 16 112.9 64.9 64 125.1 64l10.9 0 0-40z"]},te={prefix:"fas",iconName:"question",icon:[320,512,[10067,10068,61736],"3f","M64 160c0-53 43-96 96-96s96 43 96 96c0 42.7-27.9 78.9-66.5 91.4-28.4 9.2-61.5 35.3-61.5 76.6l0 24c0 17.7 14.3 32 32 32s32-14.3 32-32l0-24c0-1.7 .6-4.1 3.5-7.3 3-3.3 7.9-6.5 13.7-8.4 64.3-20.7 110.8-81 110.8-152.3 0-88.4-71.6-160-160-160S0 71.6 0 160c0 17.7 14.3 32 32 32s32-14.3 32-32zm96 352c22.1 0 40-17.9 40-40s-17.9-40-40-40-40 17.9-40 40 17.9 40 40 40z"]},wt={prefix:"fas",iconName:"scale-balanced",icon:[640,512,[9878,"balance-scale"],"f24e","M384 32l128 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L398.4 96c-5.2 25.8-22.9 47.1-46.4 57.3l0 294.7 160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-384 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l160 0 0-294.7c-23.5-10.3-41.2-31.6-46.4-57.3L128 96c-17.7 0-32-14.3-32-32s14.3-32 32-32l128 0c14.6-19.4 37.8-32 64-32s49.4 12.6 64 32zm55.6 288L584.4 320 512 195.8 439.6 320zM512 416c-62.9 0-115.2-34-126-78.9-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1-10.8 44.8-63.1 78.9-126 78.9zM126.8 195.8L54.4 320 199.3 320 126.8 195.8zM.9 337.1c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1-10.8 44.8-63.1 78.9-126 78.9S11.7 382 .9 337.1z"]},We={prefix:"fas",iconName:"indian-rupee-sign",icon:[320,512,["indian-rupee","inr"],"e1bc","M0 64C0 46.3 14.3 32 32 32l264 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-76.7 0c17.7 19.8 30.1 44.6 34.7 72l42 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-42 0c-10.4 62.2-60.8 110.9-123.8 118.9L274.6 422c14.4 10.3 17.7 30.3 7.4 44.6s-30.3 17.7-44.6 7.4L13.4 314C2.1 306-2.7 291.5 1.5 278.2S18.1 256 32 256l80 0c35.8 0 66.1-23.5 76.3-56L24 200c-13.3 0-24-10.7-24-24s10.7-24 24-24l164.3 0c-10.2-32.5-40.5-56-76.3-56L32 96C14.3 96 0 81.7 0 64z"]},dn={prefix:"fas",iconName:"user-check",icon:[640,512,[],"f4fc","M286 304c98.5 0 178.3 79.8 178.3 178.3 0 16.4-13.3 29.7-29.7 29.7L78 512c-16.4 0-29.7-13.3-29.7-29.7 0-98.5 79.8-178.3 178.3-178.3l59.4 0zM585.7 105.9c7.8-10.7 22.8-13.1 33.5-5.3s13.1 22.8 5.3 33.5L522.1 274.9c-4.2 5.7-10.7 9.4-17.7 9.8s-14-2.2-18.9-7.3l-46.4-48c-9.2-9.5-9-24.7 .6-33.9 9.5-9.2 24.7-8.9 33.9 .6l26.5 27.4 85.6-117.7zM256.3 248a120 120 0 1 1 0-240 120 120 0 1 1 0 240z"]},Yt={prefix:"fas",iconName:"arrows-turn-to-dots",icon:[448,512,[],"e4c1","M265.4-6.6c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L285.3 64 352 64c53 0 96 43 96 96l0 32c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-32c0-17.7-14.3-32-32-32l-66.7 0 25.4 25.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-80-80c-12.5-12.5-12.5-32.8 0-45.3l80-80zm-82.7 272l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L162.7 400 96 400c-17.7 0-32 14.3-32 32l0 32c0 17.7-14.3 32-32 32S0 481.7 0 464l0-32c0-53 43-96 96-96l66.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0zM320 368a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM64 160a64 64 0 1 1 0-128 64 64 0 1 1 0 128z"]},In={prefix:"fas",iconName:"wallet",icon:[512,512,[],"f555","M64 32C28.7 32 0 60.7 0 96L0 384c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-192c0-35.3-28.7-64-64-64L72 128c-13.3 0-24-10.7-24-24S58.7 80 72 80l384 0c13.3 0 24-10.7 24-24s-10.7-24-24-24L64 32zM416 256a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},Ve={prefix:"fas",iconName:"up-right-from-square",icon:[512,512,["external-link-alt"],"f35d","M290.4 19.8C295.4 7.8 307.1 0 320 0L480 0c17.7 0 32 14.3 32 32l0 160c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9L400 157.3 246.6 310.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L354.7 112 297.4 54.6c-9.2-9.2-11.9-22.9-6.9-34.9zM0 176c0-44.2 35.8-80 80-80l80 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-80 0c-8.8 0-16 7.2-16 16l0 256c0 8.8 7.2 16 16 16l256 0c8.8 0 16-7.2 16-16l0-80c0-17.7 14.3-32 32-32s32 14.3 32 32l0 80c0 44.2-35.8 80-80 80L80 512c-44.2 0-80-35.8-80-80L0 176z"]},Ii={prefix:"fas",iconName:"bars-staggered",icon:[512,512,["reorder","stream"],"f550","M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM64 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L96 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z"]},er={prefix:"fas",iconName:"percent",icon:[448,512,[62101,62785,"percentage"],"25","M192 128a96 96 0 1 0 -192 0 96 96 0 1 0 192 0zM448 384a96 96 0 1 0 -192 0 96 96 0 1 0 192 0zM438.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-384 384c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l384-384z"]},ln={prefix:"fas",iconName:"magnifying-glass",icon:[512,512,[128269,"search"],"f002","M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376C296.3 401.1 253.9 416 208 416 93.1 416 0 322.9 0 208S93.1 0 208 0 416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"]},On={prefix:"fas",iconName:"code-branch",icon:[448,512,[],"f126","M80 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm80-24c0 32.8-19.7 61-48 73.3l0 70.7 176 0c26.5 0 48-21.5 48-48l0-22.7c-28.3-12.3-48-40.5-48-73.3 0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3l0 22.7c0 61.9-50.1 112-112 112l-176 0 0 70.7c28.3 12.3 48 40.5 48 73.3 0 44.2-35.8 80-80 80S0 476.2 0 432c0-32.8 19.7-61 48-73.3l0-205.3C19.7 141 0 112.8 0 80 0 35.8 35.8 0 80 0s80 35.8 80 80zm232 0a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM80 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z"]},So={prefix:"fas",iconName:"paintbrush",icon:[576,512,[128396,"paint-brush"],"f1fc","M480.5 10.3L259.1 158c-29.1 19.4-47.6 50.9-50.6 85.3 62.3 12.8 111.4 61.9 124.3 124.3 34.5-3 65.9-21.5 85.3-50.6L565.7 95.5c6.7-10.1 10.3-21.9 10.3-34.1 0-33.9-27.5-61.4-61.4-61.4-12.1 0-24 3.6-34.1 10.3zM288 400c0-61.9-50.1-112-112-112S64 338.1 64 400c0 3.9 .2 7.8 .6 11.6 1.8 17.5-10.2 36.4-27.8 36.4L32 448c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0c61.9 0 112-50.1 112-112z"]},X={prefix:"fas",iconName:"eye",icon:[576,512,[128065],"f06e","M288 32c-80.8 0-145.5 36.8-192.6 80.6-46.8 43.5-78.1 95.4-93 131.1-3.3 7.9-3.3 16.7 0 24.6 14.9 35.7 46.2 87.7 93 131.1 47.1 43.7 111.8 80.6 192.6 80.6s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1-47.1-43.7-111.8-80.6-192.6-80.6zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64-11.5 0-22.3-3-31.7-8.4-1 10.9-.1 22.1 2.9 33.2 13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-12.2-45.7-55.5-74.8-101.1-70.8 5.3 9.3 8.4 20.1 8.4 31.7z"]},mc={prefix:"fas",iconName:"receipt",icon:[384,512,[129534],"f543","M14 2.2C22.5-1.7 32.5-.3 39.6 5.8L80 40.4 120.4 5.8c9-7.7 22.3-7.7 31.2 0L192 40.4 232.4 5.8c9-7.7 22.2-7.7 31.2 0L304 40.4 344.4 5.8c7.1-6.1 17.1-7.5 25.6-3.6S384 14.6 384 24l0 464c0 9.4-5.5 17.9-14 21.8s-18.5 2.5-25.6-3.6l-40.4-34.6-40.4 34.6c-9 7.7-22.2 7.7-31.2 0l-40.4-34.6-40.4 34.6c-9 7.7-22.3 7.7-31.2 0L80 471.6 39.6 506.2c-7.1 6.1-17.1 7.5-25.6 3.6S0 497.4 0 488L0 24C0 14.6 5.5 6.1 14 2.2zM104 136c-13.3 0-24 10.7-24 24s10.7 24 24 24l176 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-176 0zM80 352c0 13.3 10.7 24 24 24l176 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-176 0c-13.3 0-24 10.7-24 24zm24-120c-13.3 0-24 10.7-24 24s10.7 24 24 24l176 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-176 0z"]},ki={prefix:"fas",iconName:"unlock-keyhole",icon:[384,512,["unlock-alt"],"f13e","M192 32c-35.3 0-64 28.7-64 64l0 64 192 0c35.3 0 64 28.7 64 64l0 224c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 224c0-35.3 28.7-64 64-64l0-64c0-70.7 57.3-128 128-128 63.5 0 116.1 46.1 126.2 106.7 2.9 17.4-8.8 33.9-26.3 36.9s-33.9-8.8-36.9-26.3C250 55.1 223.7 32 192 32zm40 328c13.3 0 24-10.7 24-24s-10.7-24-24-24l-80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l80 0z"]},cd={prefix:"fas",iconName:"infinity",icon:[640,512,[8734,9854],"f534","M0 256c0-88.4 71.6-160 160-160 50.4 0 97.8 23.7 128 64l32 42.7 32-42.7c30.2-40.3 77.6-64 128-64 88.4 0 160 71.6 160 160S568.4 416 480 416c-50.4 0-97.8-23.7-128-64l-32-42.7-32 42.7c-30.2 40.3-77.6 64-128 64-88.4 0-160-71.6-160-160zm280 0l-43.2-57.6c-18.1-24.2-46.6-38.4-76.8-38.4-53 0-96 43-96 96s43 96 96 96c30.2 0 58.7-14.2 76.8-38.4L280 256zm80 0l43.2 57.6c18.1 24.2 46.6 38.4 76.8 38.4 53 0 96-43 96-96s-43-96-96-96c-30.2 0-58.7 14.2-76.8 38.4L360 256z"]},_d={prefix:"fas",iconName:"users",icon:[640,512,[],"f0c0","M320 16a104 104 0 1 1 0 208 104 104 0 1 1 0-208zM96 88a72 72 0 1 1 0 144 72 72 0 1 1 0-144zM0 416c0-70.7 57.3-128 128-128 12.8 0 25.2 1.9 36.9 5.4-32.9 36.8-52.9 85.4-52.9 138.6l0 16c0 11.4 2.4 22.2 6.7 32L32 480c-17.7 0-32-14.3-32-32l0-32zm521.3 64c4.3-9.8 6.7-20.6 6.7-32l0-16c0-53.2-20-101.8-52.9-138.6 11.7-3.5 24.1-5.4 36.9-5.4 70.7 0 128 57.3 128 128l0 32c0 17.7-14.3 32-32 32l-86.7 0zM472 160a72 72 0 1 1 144 0 72 72 0 1 1 -144 0zM160 432c0-88.4 71.6-160 160-160s160 71.6 160 160l0 16c0 17.7-14.3 32-32 32l-256 0c-17.7 0-32-14.3-32-32l0-16z"]},qa={prefix:"fas",iconName:"pen-ruler",icon:[512,512,["pencil-ruler"],"f5ae","M404 0c19.2 0 37.6 7.6 51.1 21.2l35.7 35.7C504.4 70.4 512 88.8 512 108s-7.6 37.6-21.2 51.1L445.9 204 308 66.1 352.9 21.2C366.4 7.6 384.8 0 404 0zM58.9 315.1L274.1 100 412 237.9 196.9 453.1c-10.7 10.7-24.1 18.5-38.7 22.6L30.4 511.1c-8.3 2.3-17.3 0-23.4-6.2s-8.5-15.1-6.2-23.4L36.4 353.8c4.1-14.6 11.8-27.9 22.6-38.7zM225.4 80.8L80.8 225.4 11.7 156.3c-15.6-15.6-15.6-40.9 0-56.6l88-88c15.6-15.6 40.9-15.6 56.6 0l5.9 5.9-56.3 56.3c-7.8 7.8-7.8 20.5 0 28.3s20.5 7.8 28.3 0l56.3-56.3 34.9 34.9zM431.2 286.6l34.9 34.9-56.3 56.3c-7.8 7.8-7.8 20.5 0 28.3s20.5 7.8 28.3 0l56.3-56.3 5.9 5.9c15.6 15.6 15.6 40.9 0 56.6l-88 88c-15.6 15.6-40.9 15.6-56.6 0l-69.1-69.1 144.6-144.6z"]},n1={prefix:"fas",iconName:"won-sign",icon:[512,512,[8361,"krw","won"],"f159","M62.4 53.9C56.8 37.1 38.7 28.1 21.9 33.6S-3.9 57.4 1.7 74.1L56.9 240 32 240c-13.3 0-24 10.7-24 24s10.7 24 24 24l40.9 0 56.7 170.1c4.5 13.5 17.4 22.4 31.6 21.9s26.4-10.4 29.8-24.2L233 288 279 288 321 455.8c3.4 13.8 15.6 23.7 29.8 24.2s27.1-8.4 31.6-21.9L439.1 288 480 288c13.3 0 24-10.7 24-24s-10.7-24-24-24l-24.9 0 55.3-165.9c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2l-62 186.1-54.6 0-45.9-183.8C283.5 42 270.7 32 256 32s-27.5 10-31 24.2L179 240 124.4 240 62.4 53.9zm78 234.1l26.6 0-11.4 45.6-15.2-45.6zM245 240l11-44.1 11 44.1-22 0zm100 48l26.6 0-15.2 45.6-11.4-45.6z"]},A2={prefix:"fas",iconName:"franc-sign",icon:[320,512,[],"e18f","M80 32C62.3 32 48 46.3 48 64l0 256-24 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l24 0 0 80c0 17.7 14.3 32 32 32s32-14.3 32-32l0-80 88 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-88 0 0-64 144 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-144 0 0-96 176 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32z"]},r3={prefix:"fas",iconName:"signs-post",icon:[512,512,["map-signs"],"f277","M256.4 0c-17.7 0-32 14.3-32 32l0 32-160 0c-17.7 0-32 14.3-32 32l0 64c0 17.7 14.3 32 32 32l160 0 0 64-153.4 0c-4.2 0-8.3 1.7-11.3 4.7l-48 48c-6.2 6.2-6.2 16.4 0 22.6l48 48c3 3 7.1 4.7 11.3 4.7l153.4 0 0 96c0 17.7 14.3 32 32 32s32-14.3 32-32l0-96 160 0c17.7 0 32-14.3 32-32l0-64c0-17.7-14.3-32-32-32l-160 0 0-64 153.4 0c4.2 0 8.3-1.7 11.3-4.7l48-48c6.2-6.2 6.2-16.4 0-22.6l-48-48c-3-3-7.1-4.7-11.3-4.7l-153.4 0 0-32c0-17.7-14.3-32-32-32z"]},cc={prefix:"fas",iconName:"turkish-lira-sign",icon:[448,512,["try","turkish-lira"],"e2bb","M160 32c17.7 0 32 14.3 32 32l0 43.6 121.4-34.7c12.7-3.6 26 3.7 29.7 16.5s-3.7 26-16.5 29.7l-134.6 38.5 0 46.1 121.4-34.7c12.7-3.6 26 3.7 29.7 16.5s-3.7 26-16.5 29.7l-134.6 38.5 0 162.5 72 0c53 0 96-43 96-96 0-17.7 14.3-32 32-32s32 14.3 32 32c0 88.4-71.6 160-160 160l-104 0c-17.7 0-32-14.3-32-32l0-176.2-25.4 7.3c-12.7 3.6-26-3.7-29.7-16.5s3.7-26 16.5-29.7l38.6-11 0-46.1-25.4 7.3c-12.7 3.6-26-3.7-29.7-16.5s3.7-26 16.5-29.7l38.6-11 0-61.9c0-17.7 14.3-32 32-32z"]},Iu={prefix:"fas",iconName:"user-clock",icon:[576,512,[],"f4fd","M224 8a120 120 0 1 1 0 240 120 120 0 1 1 0-240zM194.3 304l59.4 0c3.9 0 7.9 .1 11.8 .4-16.2 28.2-25.5 60.8-25.5 95.6 0 41.8 13.4 80.5 36 112L45.7 512C29.3 512 16 498.7 16 482.3 16 383.8 95.8 304 194.3 304zM288 400a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-80c-8.8 0-16 7.2-16 16l0 64c0 8.8 7.2 16 16 16l48 0c8.8 0 16-7.2 16-16s-7.2-16-16-16l-32 0 0-48c0-8.8-7.2-16-16-16z"]},j2={prefix:"fas",iconName:"euro-sign",icon:[448,512,[8364,"eur","euro"],"f153","M73.3 192C100.8 99.5 186.5 32 288 32l64 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-64 0c-65.6 0-122 39.5-146.7 96L272 192c13.3 0 24 10.7 24 24s-10.7 24-24 24l-143.2 0c-.5 5.3-.8 10.6-.8 16s.3 10.7 .8 16L272 272c13.3 0 24 10.7 24 24s-10.7 24-24 24l-130.7 0c24.7 56.5 81.1 96 146.7 96l64 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-64 0c-101.5 0-187.2-67.5-214.7-160L40 320c-13.3 0-24-10.7-24-24s10.7-24 24-24l24.6 0c-.7-10.5-.7-21.5 0-32L40 240c-13.3 0-24-10.7-24-24s10.7-24 24-24l33.3 0z"]},s1={prefix:"fas",iconName:"yen-sign",icon:[384,512,[165,"cny","jpy","rmb","yen"],"f157","M74.9 46.7c-9.6-14.9-29.4-19.2-44.2-9.6S11.5 66.4 21.1 81.3L143.7 272 88 272c-13.3 0-24 10.7-24 24s10.7 24 24 24l72 0 0 32-72 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l72 0 0 48c0 17.7 14.3 32 32 32s32-14.3 32-32l0-48 72 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-72 0 0-32 72 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-55.7 0 122.6-190.7c9.6-14.9 5.3-34.7-9.6-44.2s-34.7-5.3-44.2 9.6L192 228.8 74.9 46.7z"]},Tc={prefix:"fas",iconName:"angles-down",icon:[384,512,["angle-double-down"],"f103","M214.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 402.7 329.4 265.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-160 160zm160-352l-160 160c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 210.7 329.4 73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3z"]},N3={prefix:"fas",iconName:"network-wired",icon:[576,512,[],"f6ff","M248 88l80 0 0 48-80 0 0-48zm-8-56c-26.5 0-48 21.5-48 48l0 64c0 26.5 21.5 48 48 48l16 0 0 32-224 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0 0 32-16 0c-26.5 0-48 21.5-48 48l0 64c0 26.5 21.5 48 48 48l96 0c26.5 0 48-21.5 48-48l0-64c0-26.5-21.5-48-48-48l-16 0 0-32 192 0 0 32-16 0c-26.5 0-48 21.5-48 48l0 64c0 26.5 21.5 48 48 48l96 0c26.5 0 48-21.5 48-48l0-64c0-26.5-21.5-48-48-48l-16 0 0-32 96 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-224 0 0-32 16 0c26.5 0 48-21.5 48-48l0-64c0-26.5-21.5-48-48-48l-96 0zM448 376l8 0 0 48-80 0 0-48 72 0zm-256 0l8 0 0 48-80 0 0-48 72 0z"]},J2={prefix:"fas",iconName:"code",icon:[576,512,[],"f121","M360.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm64.6 136.1c-12.5 12.5-12.5 32.8 0 45.3l73.4 73.4-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0zm-274.7 0c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 150.6 182.6c12.5-12.5 12.5-32.8 0-45.3z"]},n0={prefix:"fas",iconName:"diagram-project",icon:[512,512,["project-diagram"],"f542","M0 80C0 53.5 21.5 32 48 32l96 0c26.5 0 48 21.5 48 48l0 16 128 0 0-16c0-26.5 21.5-48 48-48l96 0c26.5 0 48 21.5 48 48l0 96c0 26.5-21.5 48-48 48l-96 0c-26.5 0-48-21.5-48-48l0-16-128 0 0 16c0 7.3-1.7 14.3-4.6 20.5l68.6 91.5 80 0c26.5 0 48 21.5 48 48l0 96c0 26.5-21.5 48-48 48l-96 0c-26.5 0-48-21.5-48-48l0-96c0-7.3 1.7-14.3 4.6-20.5L128 224 48 224c-26.5 0-48-21.5-48-48L0 80z"]},E={prefix:"fas",iconName:"money-bill-wave",icon:[512,512,[],"f53a","M0 419.6L0 109.5c0-23.2 24.1-38.6 46.3-32 87.7 26.2 149.7 5.5 212.1-15.3 64.5-21.5 129.4-43.1 223.3-13.1 18.5 5.9 30.3 23.8 30.3 43.3l0 310.1c0 23.2-24.1 38.6-46.2 32-87.7-26.2-149.8-5.5-212.1 15.3-64.5 21.5-129.4 43.1-223.3 13.1-18.5-5.9-30.3-23.8-30.3-43.3zM336 256c0-53-35.8-96-80-96s-80 43-80 96 35.8 96 80 96 80-43 80-96zM120 413.6c4.4 0 7.9-3.8 7.2-8.1-4.6-27.8-27-49.5-55.2-53-4.4-.5-8 3.1-8 7.5l0 39.9c0 3.6 2.4 6.8 6 7.7 17.9 4.2 34.3 6.1 50 6.1zm318.5-51.1c5 .8 9.5-3 9.5-8l0-42.6c0-4.4-3.6-8.1-8-7.5-25.2 3.1-45.9 20.9-53.2 44.6-1.4 4.7 2.3 9.1 7.2 9.2 14.2 .4 29 1.7 44.4 4.3zM448 152l0-39.9c0-3.6-2.5-6.8-6-7.7-17.9-4.2-34.3-6.1-50-6.1-4.4 0-7.9 3.8-7.2 8.1 4.6 27.8 27 49.5 55.2 53 4.4 .5 8-3.1 8-7.5zM125.2 162.9c1.4-4.7-2.3-9.1-7.2-9.2-14.2-.4-29-1.7-44.4-4.3-5-.8-9.5 3-9.5 8L64 200c0 4.4 3.6 8.1 8 7.5 25.2-3.1 45.9-20.9 53.2-44.6z"]},Ia={prefix:"fas",iconName:"brazilian-real-sign",icon:[512,512,[],"e46c","M400 16c17.7 0 32 14.3 32 32l0 16 16 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-48.9 0c-26 0-47.1 21.1-47.1 47.1 0 22.5 15.9 41.8 37.9 46.2l32.8 6.6c51.9 10.4 89.3 56 89.3 109 0 50.6-33.8 93.3-80 106.7l0 20.4c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-16-32 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l64.9 0c26 0 47.1-21.1 47.1-47.1 0-22.5-15.9-41.8-37.9-46.2l-32.8-6.6c-51.9-10.4-89.3-56-89.3-109 0-50.6 33.8-93.2 80-106.7L368 48c0-17.7 14.3-32 32-32zM0 64C0 46.3 14.3 32 32 32l80 0c79.5 0 144 64.5 144 144 0 54.3-30 101.5-74.4 126.1l41 136.7c5.1 16.9-4.5 34.8-21.5 39.8s-34.8-4.5-39.8-21.5L120.1 319.8c-2.7 .1-5.4 .2-8.1 .2l-48 0 0 128c0 17.7-14.3 32-32 32S0 465.7 0 448L0 64zM64 256l48 0c44.2 0 80-35.8 80-80s-35.8-80-80-80l-48 0 0 160z"]},r0={prefix:"fas",iconName:"link",icon:[576,512,[128279,"chain"],"f0c1","M419.5 96c-16.6 0-32.7 4.5-46.8 12.7-15.8-16-34.2-29.4-54.5-39.5 28.2-24 64.1-37.2 101.3-37.2 86.4 0 156.5 70 156.5 156.5 0 41.5-16.5 81.3-45.8 110.6l-71.1 71.1c-29.3 29.3-69.1 45.8-110.6 45.8-86.4 0-156.5-70-156.5-156.5 0-1.5 0-3 .1-4.5 .5-17.7 15.2-31.6 32.9-31.1s31.6 15.2 31.1 32.9c0 .9 0 1.8 0 2.6 0 51.1 41.4 92.5 92.5 92.5 24.5 0 48-9.7 65.4-27.1l71.1-71.1c17.3-17.3 27.1-40.9 27.1-65.4 0-51.1-41.4-92.5-92.5-92.5zM275.2 173.3c-1.9-.8-3.8-1.9-5.5-3.1-12.6-6.5-27-10.2-42.1-10.2-24.5 0-48 9.7-65.4 27.1L91.1 258.2c-17.3 17.3-27.1 40.9-27.1 65.4 0 51.1 41.4 92.5 92.5 92.5 16.5 0 32.6-4.4 46.7-12.6 15.8 16 34.2 29.4 54.6 39.5-28.2 23.9-64 37.2-101.3 37.2-86.4 0-156.5-70-156.5-156.5 0-41.5 16.5-81.3 45.8-110.6l71.1-71.1c29.3-29.3 69.1-45.8 110.6-45.8 86.6 0 156.5 70.6 156.5 156.9 0 1.3 0 2.6 0 3.9-.4 17.7-15.1 31.6-32.8 31.2s-31.6-15.1-31.2-32.8c0-.8 0-1.5 0-2.3 0-33.7-18-63.3-44.8-79.6z"]},c0={prefix:"fas",iconName:"gear",icon:[512,512,[9881,"cog"],"f013","M195.1 9.5C198.1-5.3 211.2-16 226.4-16l59.8 0c15.2 0 28.3 10.7 31.3 25.5L332 79.5c14.1 6 27.3 13.7 39.3 22.8l67.8-22.5c14.4-4.8 30.2 1.2 37.8 14.4l29.9 51.8c7.6 13.2 4.9 29.8-6.5 39.9L447 233.3c.9 7.4 1.3 15 1.3 22.7s-.5 15.3-1.3 22.7l53.4 47.5c11.4 10.1 14 26.8 6.5 39.9l-29.9 51.8c-7.6 13.1-23.4 19.2-37.8 14.4l-67.8-22.5c-12.1 9.1-25.3 16.7-39.3 22.8l-14.4 69.9c-3.1 14.9-16.2 25.5-31.3 25.5l-59.8 0c-15.2 0-28.3-10.7-31.3-25.5l-14.4-69.9c-14.1-6-27.2-13.7-39.3-22.8L73.5 432.3c-14.4 4.8-30.2-1.2-37.8-14.4L5.8 366.1c-7.6-13.2-4.9-29.8 6.5-39.9l53.4-47.5c-.9-7.4-1.3-15-1.3-22.7s.5-15.3 1.3-22.7L12.3 185.8c-11.4-10.1-14-26.8-6.5-39.9L35.7 94.1c7.6-13.2 23.4-19.2 37.8-14.4l67.8 22.5c12.1-9.1 25.3-16.7 39.3-22.8L195.1 9.5zM256.3 336a80 80 0 1 0 -.6-160 80 80 0 1 0 .6 160z"]},yo={prefix:"fas",iconName:"user-lock",icon:[576,512,[],"f502","M224 8a120 120 0 1 1 0 240 120 120 0 1 1 0-240zM194.3 304l59.4 0c29.7 0 57.7 7.3 82.3 20.1l0 4.3c-19.6 17.6-32 43.1-32 71.5l0 96c0 5.5 .5 10.9 1.3 16.1L45.7 512C29.3 512 16 498.7 16 482.3 16 383.8 95.8 304 194.3 304zm301.7 .1c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 47.9 64 0 0-47.9zM352 400c0-20.9 13.4-38.7 32-45.3l0-50.6c0-44.2 35.8-80 80-80s80 35.8 80 80l0 50.6c18.6 6.6 32 24.4 32 45.3l0 96c0 26.5-21.5 48-48 48l-128 0c-26.5 0-48-21.5-48-48l0-96z"]},Ch={prefix:"fas",iconName:"chart-bar",icon:[512,512,["bar-chart"],"f080","M32 32c17.7 0 32 14.3 32 32l0 336c0 8.8 7.2 16 16 16l400 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L80 480c-44.2 0-80-35.8-80-80L0 64C0 46.3 14.3 32 32 32zm96 64c0-17.7 14.3-32 32-32l192 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32zm32 80l128 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 112l256 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-256 0c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},Op={prefix:"fas",iconName:"baht-sign",icon:[320,512,[],"e0ac","M136 0c-13.3 0-24 10.7-24 24l0 40-74.4 0C16.8 64 0 80.8 0 101.6L0 406.3c0 23 18.7 41.7 41.7 41.7l70.3 0 0 40c0 13.3 10.7 24 24 24s24-10.7 24-24l0-40 48 0c61.9 0 112-50.1 112-112 0-40.1-21.1-75.3-52.7-95.1 13.1-18.3 20.7-40.7 20.7-64.9 0-61.9-50.1-112-112-112l-16 0 0-40c0-13.3-10.7-24-24-24zM112 128l0 96-48 0 0-96 48 0zm48 96l0-96 16 0c26.5 0 48 21.5 48 48s-21.5 48-48 48l-16 0zm-48 64l0 96-48 0 0-96 48 0zm48 96l0-96 48 0c26.5 0 48 21.5 48 48s-21.5 48-48 48l-48 0z"]},t_={prefix:"fas",iconName:"server",icon:[448,512,[],"f233","M64 32C28.7 32 0 60.7 0 96l0 64c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-64c0-35.3-28.7-64-64-64L64 32zm216 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm56 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM64 288c-35.3 0-64 28.7-64 64l0 64c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-64c0-35.3-28.7-64-64-64L64 288zm216 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm56 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z"]},Fp={prefix:"fas",iconName:"arrows-turn-right",icon:[448,512,[],"e4c0","M313.4-6.6c12.5-12.5 32.8-12.5 45.3 0l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L338.7 128 128 128c-35.3 0-64 28.7-64 64l0 32c0 17.7-14.3 32-32 32S0 241.7 0 224l0-32C0 121.3 57.3 64 128 64l210.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3zm-96 256c12.5-12.5 32.8-12.5 45.3 0l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 384 96 384c-17.7 0-32 14.3-32 32l0 32c0 17.7-14.3 32-32 32S0 465.7 0 448l0-32c0-53 43-96 96-96l146.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3z"]},Up={prefix:"fas",iconName:"gauge-high",icon:[512,512,[62461,"tachometer-alt","tachometer-alt-fast"],"f625","M0 256a256 256 0 1 1 512 0 256 256 0 1 1 -512 0zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM256 416c35.3 0 64-28.7 64-64 0-16.2-6-31.1-16-42.3l69.5-138.9c5.9-11.9 1.1-26.3-10.7-32.2s-26.3-1.1-32.2 10.7L261.1 288.2c-1.7-.1-3.4-.2-5.1-.2-35.3 0-64 28.7-64 64s28.7 64 64 64zM176 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM96 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm352-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"]},M_={prefix:"fas",iconName:"right-left",icon:[512,512,["exchange-alt"],"f362","M502.6 150.6l-96 96c-9.2 9.2-22.9 11.9-34.9 6.9S352 236.9 352 224l0-64-320 0c-17.7 0-32-14.3-32-32S14.3 96 32 96l320 0 0-64c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l96 96c12.5 12.5 12.5 32.8 0 45.3zm-397.3 352l-96-96c-12.5-12.5-12.5-32.8 0-45.3l96-96c9.2-9.2 22.9-11.9 34.9-6.9S160 275.1 160 288l0 64 320 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-320 0 0 64c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9z"]},S_={prefix:"fas",iconName:"dumbbell",icon:[640,512,[],"f44b","M96 112c0-26.5 21.5-48 48-48s48 21.5 48 48l0 112 256 0 0-112c0-26.5 21.5-48 48-48s48 21.5 48 48l0 16 16 0c26.5 0 48 21.5 48 48l0 48c17.7 0 32 14.3 32 32s-14.3 32-32 32l0 48c0 26.5-21.5 48-48 48l-16 0 0 16c0 26.5-21.5 48-48 48s-48-21.5-48-48l0-112-256 0 0 112c0 26.5-21.5 48-48 48s-48-21.5-48-48l0-16-16 0c-26.5 0-48-21.5-48-48l0-48c-17.7 0-32-14.3-32-32s14.3-32 32-32l0-48c0-26.5 21.5-48 48-48l16 0 0-16z"]},A_={prefix:"fas",iconName:"xmark",icon:[384,512,[128473,10005,10006,10060,215,"close","multiply","remove","times"],"f00d","M55.1 73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L147.2 256 9.9 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192.5 301.3 329.9 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.8 256 375.1 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192.5 210.7 55.1 73.4z"]},Lh={prefix:"fas",iconName:"ruble-sign",icon:[448,512,[8381,"rouble","rub","ruble"],"f158","M112 32C94.3 32 80 46.3 80 64l0 208-40 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l40 0 0 48-40 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l40 0 0 32c0 17.7 14.3 32 32 32s32-14.3 32-32l0-32 152 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-152 0 0-48 112 0c79.5 0 144-64.5 144-144S335.5 32 256 32L112 32zM256 256l-112 0 0-160 112 0c44.2 0 80 35.8 80 80s-35.8 80-80 80z"]},f6={prefix:"fas",iconName:"clock-rotate-left",icon:[576,512,["history"],"f1da","M288 64c106 0 192 86 192 192S394 448 288 448c-65.2 0-122.9-32.5-157.6-82.3-10.1-14.5-30.1-18-44.6-7.9s-18 30.1-7.9 44.6C124.1 468.6 201 512 288 512 429.4 512 544 397.4 544 256S429.4 0 288 0C202.3 0 126.5 42.1 80 106.7L80 80c0-17.7-14.3-32-32-32S16 62.3 16 80l0 112c0 17.7 14.3 32 32 32l24.6 0c.5 0 1 0 1.5 0l86 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-38.3 0C154.9 102.6 217 64 288 64zm24 88c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 104c0 6.4 2.5 12.5 7 17l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-65-65 0-94.1z"]},vf={prefix:"fas",iconName:"chart-pie",icon:[576,512,["pie-chart"],"f200","M512.4 240l-176 0c-17.7 0-32-14.3-32-32l0-176c0-17.7 14.4-32.2 31.9-29.9 107 14.2 191.8 99 206 206 2.3 17.5-12.2 31.9-29.9 31.9zM222.6 37.2c18.1-3.8 33.8 11 33.8 29.5l0 197.3c0 5.6 2 11 5.5 15.3L394 438.7c11.7 14.1 9.2 35.4-6.9 44.1-34.1 18.6-73.2 29.2-114.7 29.2-132.5 0-240-107.5-240-240 0-115.5 81.5-211.9 190.2-234.8zM477.8 288l64 0c18.5 0 33.3 15.7 29.5 33.8-10.2 48.4-35 91.4-69.6 124.2-12.3 11.7-31.6 9.2-42.4-3.9L374.9 340.4c-17.3-20.9-2.4-52.4 24.6-52.4l78.2 0z"]},M6={prefix:"fas",iconName:"bullhorn",icon:[512,512,[128226,128363],"f0a1","M461.2 18.9C472.7 24 480 35.4 480 48l0 416c0 12.6-7.3 24-18.8 29.1s-24.8 3.2-34.3-5.1l-46.6-40.7c-43.6-38.1-98.7-60.3-156.4-63l0 95.7c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32l0-96C57.3 384 0 326.7 0 256S57.3 128 128 128l84.5 0c61.8-.2 121.4-22.7 167.9-63.3l46.6-40.7c9.4-8.3 22.9-10.2 34.3-5.1zM224 320l0 .2c70.3 2.7 137.8 28.5 192 73.4l0-275.3c-54.2 44.9-121.7 70.7-192 73.4L224 320z"]},N8={prefix:"fas",iconName:"triangle-exclamation",icon:[512,512,[9888,"exclamation-triangle","warning"],"f071","M256 0c14.7 0 28.2 8.1 35.2 21l216 400c6.7 12.4 6.4 27.4-.8 39.5S486.1 480 472 480L40 480c-14.1 0-27.2-7.4-34.4-19.5s-7.5-27.1-.8-39.5l216-400c7-12.9 20.5-21 35.2-21zm0 352a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm0-192c-18.2 0-32.7 15.5-31.4 33.7l7.4 104c.9 12.5 11.4 22.3 23.9 22.3 12.6 0 23-9.7 23.9-22.3l7.4-104c1.3-18.2-13.1-33.7-31.4-33.7z"]},M4={prefix:"fas",iconName:"lock",icon:[384,512,[128274],"f023","M128 96l0 64 128 0 0-64c0-35.3-28.7-64-64-64s-64 28.7-64 64zM64 160l0-64C64 25.3 121.3-32 192-32S320 25.3 320 96l0 64c35.3 0 64 28.7 64 64l0 224c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 224c0-35.3 28.7-64 64-64z"]},P6={prefix:"fas",iconName:"window-restore",icon:[576,512,[],"f2d2","M512 96L160 96c0-35.3 28.7-64 64-64l288 0c35.3 0 64 28.7 64 64l0 192c0 35.3-28.7 64-64 64l-48 0 0-64 48 0 0-192zM0 224c0-35.3 28.7-64 64-64l288 0c35.3 0 64 28.7 64 64l0 192c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 224zm64 40c0 13.3 10.7 24 24 24l240 0c13.3 0 24-10.7 24-24s-10.7-24-24-24L88 240c-13.3 0-24 10.7-24 24z"]},g1={prefix:"fas",iconName:"download",icon:[448,512,[],"f019","M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 210.7-41.4-41.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 242.7 256 32zM64 320c-35.3 0-64 28.7-64 64l0 32c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-32c0-35.3-28.7-64-64-64l-46.9 0-56.6 56.6c-31.2 31.2-81.9 31.2-113.1 0L110.9 320 64 320zm304 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"]},kf={prefix:"fas",iconName:"plus",icon:[448,512,[10133,61543,"add"],"2b","M256 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 160-160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l160 0 0 160c0 17.7 14.3 32 32 32s32-14.3 32-32l0-160 160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-160 0 0-160z"]},oy={prefix:"fas",iconName:"copy",icon:[448,512,[],"f0c5","M192 0c-35.3 0-64 28.7-64 64l0 256c0 35.3 28.7 64 64 64l192 0c35.3 0 64-28.7 64-64l0-200.6c0-17.4-7.1-34.1-19.7-46.2L370.6 17.8C358.7 6.4 342.8 0 326.3 0L192 0zM64 128c-35.3 0-64 28.7-64 64L0 448c0 35.3 28.7 64 64 64l192 0c35.3 0 64-28.7 64-64l0-16-64 0 0 16-192 0 0-256 16 0 0-64-16 0z"]},gs={prefix:"fas",iconName:"money-bill-1",icon:[512,512,["money-bill-alt"],"f3d1","M64 64C28.7 64 0 92.7 0 128L0 384c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-256c0-35.3-28.7-64-64-64L64 64zm192 80a112 112 0 1 1 0 224 112 112 0 1 1 0-224zM64 184l0-48c0-4.4 3.6-8 8-8l48 0c4.4 0 8.1 3.6 7.5 8-3.6 29-26.6 51.9-55.5 55.5-4.4 .5-8-3.1-8-7.5zm0 144c0-4.4 3.6-8.1 8-7.5 29 3.6 51.9 26.6 55.5 55.5 .5 4.4-3.1 8-7.5 8l-48 0c-4.4 0-8-3.6-8-8l0-48zM440 191.5c-29-3.6-51.9-26.6-55.5-55.5-.5-4.4 3.1-8 7.5-8l48 0c4.4 0 8 3.6 8 8l0 48c0 4.4-3.6 8.1-8 7.5zM448 328l0 48c0 4.4-3.6 8-8 8l-48 0c-4.4 0-8.1-3.6-7.5-8 3.6-29 26.6-51.9 55.5-55.5 4.4-.5 8 3.1 8 7.5zM240 188c-11 0-20 9-20 20 0 9.7 6.9 17.7 16 19.6l0 48.4-4 0c-11 0-20 9-20 20s9 20 20 20l48 0c11 0 20-9 20-20s-9-20-20-20l-4 0 0-68c0-11-9-20-20-20l-16 0z"]},Jo=gs,dg={prefix:"fas",iconName:"eye-slash",icon:[576,512,[],"f070","M41-24.9c-9.4-9.4-24.6-9.4-33.9 0S-2.3-.3 7 9.1l528 528c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-96.4-96.4c2.7-2.4 5.4-4.8 8-7.2 46.8-43.5 78.1-95.4 93-131.1 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1-47.1-43.7-111.8-80.6-192.6-80.6-56.8 0-105.6 18.2-146 44.2L41-24.9zM204.5 138.7c23.5-16.8 52.4-26.7 83.5-26.7 79.5 0 144 64.5 144 144 0 31.1-9.9 59.9-26.7 83.5l-34.7-34.7c12.7-21.4 17-47.7 10.1-73.7-13.7-51.2-66.4-81.6-117.6-67.9-8.6 2.3-16.7 5.7-24 10l-34.7-34.7zM325.3 395.1c-11.9 3.2-24.4 4.9-37.3 4.9-79.5 0-144-64.5-144-144 0-12.9 1.7-25.4 4.9-37.3L69.4 139.2c-32.6 36.8-55 75.8-66.9 104.5-3.3 7.9-3.3 16.7 0 24.6 14.9 35.7 46.2 87.7 93 131.1 47.1 43.7 111.8 80.6 192.6 80.6 37.3 0 71.2-7.9 101.5-20.6l-64.2-64.2z"]},gy={prefix:"fas",iconName:"bolt",icon:[448,512,[9889,"zap"],"f0e7","M338.8-9.9c11.9 8.6 16.3 24.2 10.9 37.8L271.3 224 416 224c13.5 0 25.5 8.4 30.1 21.1s.7 26.9-9.6 35.5l-288 240c-11.3 9.4-27.4 9.9-39.3 1.3s-16.3-24.2-10.9-37.8L176.7 288 32 288c-13.5 0-25.5-8.4-30.1-21.1s-.7-26.9 9.6-35.5l288-240c11.3-9.4 27.4-9.9 39.3-1.3z"]},ub={prefix:"fas",iconName:"burst",icon:[512,512,[],"e4dc","M37.6 4.2C28-2.3 15.2-1.1 7 7S-2.3 28 4.2 37.6l112 163.3-99.6 32.3C6.7 236.4 0 245.6 0 256s6.7 19.6 16.6 22.8l103.1 33.4-52.9 100.6c-4.9 9.3-3.2 20.7 4.3 28.1s18.8 9.2 28.1 4.3l100.6-52.9 33.4 103.1c3.2 9.9 12.4 16.6 22.8 16.6s19.6-6.7 22.8-16.6l33.4-103.1 100.6 52.9c9.3 4.9 20.7 3.2 28.1-4.3s9.2-18.8 4.3-28.1l-52.9-100.6 103.1-33.4c9.9-3.2 16.6-12.4 16.6-22.8s-6.7-19.6-16.6-22.8l-106.5-34.5 25.7-70.4c3.2-8.8 1-18.6-5.6-25.2s-16.4-8.8-25.2-5.6l-70.4 25.7-34.5-106.5C275.6 6.7 266.4 0 256 0s-19.6 6.7-22.8 16.6L200.9 116.2 37.6 4.2z"]},Fb={prefix:"fas",iconName:"user-gear",icon:[640,512,["user-cog"],"f4fe","M256.5 8a120 120 0 1 1 0 240 120 120 0 1 1 0-240zM226.7 304l59.4 0 1.5 0c-12.9 26.8-7.8 58.2 11.5 79.5-20.2 22.3-24.8 55.8-9.4 83.4l22.5 40.4c.9 1.6 1.9 3.2 2.9 4.7l-237 0c-16.4 0-29.7-13.3-29.7-29.7 0-98.5 79.8-178.3 178.3-178.3zm205.9-56.4c0-13.3 10.7-24 24-24l48 0c13.3 0 24 10.7 24 24l0 6.1c0 18.9 24.1 32.8 40.5 23.4l5-2.9c11.6-6.7 26.5-2.6 33 9.1l22.4 40.2c6.2 11.2 2.6 25.2-8.2 32l-4.7 2.9c-16.2 10.1-16.2 39.9 0 50.1l4.6 2.9c10.8 6.8 14.5 20.8 8.3 32L607 483.8c-6.5 11.7-21.4 15.9-33 9.1l-4.9-2.9c-16.4-9.5-40.5 4.5-40.5 23.4l0 6.1c0 13.3-10.7 24-24 24l-48 0c-13.3 0-24-10.7-24-24l0-5.9c0-19-24.2-33-40.7-23.5l-4.8 2.8c-11.6 6.7-26.4 2.6-33-9.1l-22.6-40.4c-6.2-11.2-2.6-25.3 8.3-32.1l4.4-2.7c16.3-10.1 16.3-40.1 0-50.2l-4.5-2.8c-10.9-6.8-14.5-20.9-8.3-32.1l22.5-40.3c6.5-11.7 21.4-15.8 32.9-9.1l4.8 2.8c16.5 9.5 40.7-4.5 40.7-23.5l0-5.9zm99.9 136.2a52 52 0 1 0 -104 0 52 52 0 1 0 104 0z"]},Vb={prefix:"fas",iconName:"screwdriver-wrench",icon:[576,512,["tools"],"f7d9","M70.8-6.7c5.4-5.4 13.8-6.2 20.2-2L209.9 70.5c8.9 5.9 14.2 15.9 14.2 26.6l0 49.6 90.8 90.8c33.3-15 73.9-8.9 101.2 18.5L542.2 382.1c18.7 18.7 18.7 49.1 0 67.9l-60.1 60.1c-18.7 18.7-49.1 18.7-67.9 0L288.1 384c-27.4-27.4-33.5-67.9-18.5-101.2l-90.8-90.8-49.6 0c-10.7 0-20.7-5.3-26.6-14.2L23.4 58.9c-4.2-6.3-3.4-14.8 2-20.2L70.8-6.7zm145 303.5c-6.3 36.9 2.3 75.9 26.2 107.2l-94.9 95c-28.1 28.1-73.7 28.1-101.8 0s-28.1-73.7 0-101.8l135.4-135.5 35.2 35.1zM384.1 0c20.1 0 39.4 3.7 57.1 10.5 10 3.8 11.8 16.5 4.3 24.1L388.8 91.3c-3 3-4.7 7.1-4.7 11.3l0 41.4c0 8.8 7.2 16 16 16l41.4 0c4.2 0 8.3-1.7 11.3-4.7l56.7-56.7c7.6-7.5 20.3-5.7 24.1 4.3 6.8 17.7 10.5 37 10.5 57.1 0 43.2-17.2 82.3-45 111.1l-49.1-49.1c-33.1-33-78.5-45.7-121.1-38.4l-56.8-56.8 0-29.7-.2-5c-.8-12.4-4.4-24.3-10.5-34.9 29.4-35 73.4-57.2 122.7-57.3z"]},Hb={prefix:"fas",iconName:"route",icon:[512,512,[],"f4d7","M512 96c0 50.2-59.1 125.1-84.6 155-3.8 4.4-9.4 6.1-14.5 5L320 256c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0c53 0 96 43 96 96s-43 96-96 96l-276.4 0c8.7-9.9 19.3-22.6 30-36.8 6.3-8.4 12.8-17.6 19-27.2L416 448c17.7 0 32-14.3 32-32s-14.3-32-32-32l-96 0c-53 0-96-43-96-96s43-96 96-96l39.8 0c-21-31.5-39.8-67.7-39.8-96 0-53 43-96 96-96s96 43 96 96zM117.1 489.1c-3.8 4.3-7.2 8.1-10.1 11.3l-1.8 2-.2-.2c-6 4.6-14.6 4-20-1.8-25.2-27.4-85-97.9-85-148.4 0-53 43-96 96-96s96 43 96 96c0 30-21.1 67-43.5 97.9-10.7 14.7-21.7 28-30.8 38.5l-.6 .7zM128 352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM416 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z"]},Xb={prefix:"fas",iconName:"angles-up",icon:[384,512,["angle-double-up"],"f102","M214.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 109.3 329.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160zm160 352l-160-160c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 329.4 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z"]},qb={prefix:"fas",iconName:"eject",icon:[448,512,[9167],"f052","M224 32c13.5 0 26.3 5.6 35.4 15.6l176 192c12.9 14 16.2 34.3 8.6 51.8S419 320 400 320L48 320c-19 0-36.3-11.2-43.9-28.7s-4.3-37.7 8.6-51.8l176-192C197.7 37.6 210.5 32 224 32zM0 432c0-26.5 21.5-48 48-48l352 0c26.5 0 48 21.5 48 48s-21.5 48-48 48L48 480c-26.5 0-48-21.5-48-48z"]},cC={prefix:"fas",iconName:"box-archive",icon:[512,512,["archive"],"f187","M0 64C0 46.3 14.3 32 32 32l448 0c17.7 0 32 14.3 32 32l0 32c0 17.7-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96L0 64zM32 176l448 0 0 240c0 35.3-28.7 64-64 64L96 480c-35.3 0-64-28.7-64-64l0-240zm152 64c-13.3 0-24 10.7-24 24s10.7 24 24 24l144 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-144 0z"]},a7={prefix:"fas",iconName:"sterling-sign",icon:[384,512,[163,"gbp","pound-sign"],"f154","M91.3 288l-34.8 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l21.4 0C37.3 147.3 105.1 42 207.6 42l8.2 0c33.6 0 66.2 11.3 92.5 32.2l16.1 12.7c13.9 11 16.2 31.1 5.2 45s-31.1 16.2-45 5.2l-16.1-12.7c-15-11.9-33.6-18.4-52.8-18.4l-8.2 0c-57.3 0-94.7 59.9-69.7 111.4 3.6 7.4 6.6 14.9 9.1 22.6l149.5 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-141.2 0c1 35.3-8.7 70.6-28.9 100.9l-18.1 27.1 212.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-272 0c-11.8 0-22.6-6.5-28.2-16.9s-5-23 1.6-32.9l51.2-76.8c13.1-19.6 19.2-42.6 18.2-65.4z"]},CC={prefix:"fas",iconName:"circle-info",icon:[512,512,["info-circle"],"f05a","M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512zM224 160a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm-8 64l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l24 0 0-64-24 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z"]},SC={prefix:"fas",iconName:"layer-group",icon:[512,512,[],"f5fd","M232.5 5.2c14.9-6.9 32.1-6.9 47 0l218.6 101c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L13.9 149.8C5.4 145.8 0 137.3 0 128s5.4-17.9 13.9-21.8L232.5 5.2zM48.1 218.4l164.3 75.9c27.7 12.8 59.6 12.8 87.3 0l164.3-75.9 34.1 15.8c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L13.9 277.8C5.4 273.8 0 265.3 0 256s5.4-17.9 13.9-21.8l34.1-15.8zM13.9 362.2l34.1-15.8 164.3 75.9c27.7 12.8 59.6 12.8 87.3 0l164.3-75.9 34.1 15.8c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L13.9 405.8C5.4 401.8 0 393.3 0 384s5.4-17.9 13.9-21.8z"]}},1747(Zt,pe,l){"use strict";l.d(pe,{En:()=>ot,Vm:()=>ye,EH:()=>lt,gp:()=>nt});var i=l(7786),d=l(1985),v=l(1413),T=l(3557),w=l(983),e=l(7673),O=l(8810),f=l(8071);class L{constructor(Z,Me,at){this.kind=Z,this.value=Me,this.error=at,this.hasValue="N"===Z}observe(Z){return C(this,Z)}do(Z,Me,at){const{kind:qe,value:pn,error:Je}=this;return"N"===qe?Z?.(pn):"E"===qe?Me?.(Je):at?.()}accept(Z,Me,at){var qe;return(0,f.T)(null===(qe=Z)||void 0===qe?void 0:qe.next)?this.observe(Z):this.do(Z,Me,at)}toObservable(){const{kind:Z,value:Me,error:at}=this,qe="N"===Z?(0,e.of)(Me):"E"===Z?(0,O.$)(()=>at):"C"===Z?w.w:0;if(!qe)throw new TypeError(`Unexpected notification kind ${Z}`);return qe}static createNext(Z){return new L("N",Z)}static createError(Z){return new L("E",void 0,Z)}static createComplete(){return L.completeNotification}}function C(N,Z){var Me,at,qe;const{kind:pn,value:Je,error:Be}=N;if("string"!=typeof pn)throw new TypeError('Invalid notification, missing "kind"');"N"===pn?null===(Me=Z.next)||void 0===Me||Me.call(Z,Je):"E"===pn?null===(at=Z.error)||void 0===at||at.call(Z,Be):null===(qe=Z.complete)||void 0===qe||qe.call(Z)}L.completeNotification=new L("C");var B=l(9974),A=l(4360),le=l(6354),Ce=l(9437),Ae=l(5964),j=l(8750);function W(N,Z,Me,at){return(0,B.N)((qe,pn)=>{let Je;Z&&"function"!=typeof Z?({duration:Me,element:Je,connector:at}=Z):Je=Z;const Be=new Map,ut=tn=>{Be.forEach(tn),tn(pn)},Ge=tn=>ut(on=>on.error(tn));let Ot=0,se=!1;const We=new A.H(pn,tn=>{try{const on=N(tn);let un=Be.get(on);if(!un){Be.set(on,un=at?at():new v.B);const Nt=function bt(tn,on){const un=new d.c(Nt=>{Ot++;const dn=on.subscribe(Nt);return()=>{dn.unsubscribe(),0===--Ot&&se&&We.unsubscribe()}});return un.key=tn,un}(on,un);if(pn.next(Nt),Me){const dn=(0,A._)(un,()=>{un.complete(),dn?.unsubscribe()},void 0,void 0,()=>Be.delete(on));We.add((0,j.Tg)(Me(Nt)).subscribe(dn))}}un.next(Je?Je(tn):tn)}catch(on){Ge(on)}},()=>ut(tn=>tn.complete()),Ge,()=>Be.clear(),()=>(se=!0,0===Ot));qe.subscribe(We)})}var G=l(1397);function re(N,Z){return Z?Me=>Me.pipe(re((at,qe)=>(0,j.Tg)(N(at,qe)).pipe((0,le.T)((pn,Je)=>Z(at,pn,qe,Je))))):(0,B.N)((Me,at)=>{let qe=0,pn=null,Je=!1;Me.subscribe((0,A._)(at,Be=>{pn||(pn=(0,A._)(at,void 0,()=>{pn=null,Je&&at.complete()}),(0,j.Tg)(N(Be,qe++)).subscribe(pn))},()=>{Je=!0,!pn&&at.complete()}))})}var Ee=l(6697),V=l(2615),ce=l(3664),be=l(9640);const he={dispatch:!0,functional:!1,useEffectsErrorHandler:!0},Dt="__@ngrx/effects_create__";function lt(N,Z={}){const Me=Z.functional?N:N(),at={...he,...Z};return Object.defineProperty(Me,Dt,{value:at}),Me}function P(N){return Object.getPrototypeOf(N)}function ve(N){return"function"==typeof N}function H(N){return N.filter(ve)}function Ke(N,Z,Me){const at=P(N),pn=at&&"Object"!==at.constructor.name?at.constructor.name:null,Je=function ie(N){return function Le(N){return Object.getOwnPropertyNames(N).filter(at=>!(!N[at]||!N[at].hasOwnProperty(Dt))&&N[at][Dt].hasOwnProperty("dispatch")).map(at=>({propertyName:at,...N[at][Dt]}))}(N)}(N).map(({propertyName:Be,dispatch:ut,useEffectsErrorHandler:Ge})=>{const Ot="function"==typeof N[Be]?N[Be]():N[Be],se=Ge?Me(Ot,Z):Ot;return!1===ut?se.pipe((0,T.w)()):se.pipe(function Pe(){return(0,B.N)((N,Z)=>{N.subscribe((0,A._)(Z,Me=>{Z.next(L.createNext(Me))},()=>{Z.next(L.createComplete()),Z.complete()},Me=>{Z.next(L.createError(Me)),Z.complete()}))})}()).pipe((0,le.T)(bt=>({effect:N[Be],notification:bt,propertyName:Be,sourceName:pn,sourceInstance:N})))});return(0,i.h)(...Je)}function St(N,Z,Me=10){return N.pipe((0,Ce.W)(at=>(Z&&Z.handleError(at),Me<=1?N:St(N,Z,Me-1))))}let ot=(()=>{var N;class Z extends d.c{constructor(at){super(),at&&(this.source=at)}lift(at){const qe=new Z;return qe.source=this,qe.operator=at,qe}static#e=N=()=>(this.\u0275fac=function(qe){return new(qe||Z)(V.KVO(be.sA))},this.\u0275prov=V.jDH({token:Z,factory:Z.\u0275fac,providedIn:"root"}))}return N(),Z})();function nt(...N){return(0,Ae.p)(Z=>N.some(Me=>"string"==typeof Me?Me===Z.type:Me.type===Z.type))}const ht=new V.nKC("@ngrx/effects Internal Root Guard"),oe=new V.nKC("@ngrx/effects User Provided Effects"),Ye=new V.nKC("@ngrx/effects Internal Root Effects"),fe=new V.nKC("@ngrx/effects Internal Root Effects Instances"),Qe=new V.nKC("@ngrx/effects Internal Feature Effects"),gt=new V.nKC("@ngrx/effects Internal Feature Effects Instance Groups"),Gt=new V.nKC("@ngrx/effects Effects Error Handler",{providedIn:"root",factory:()=>St}),rt="@ngrx/effects/init";function gn(N){return ei(N,"ngrxOnInitEffects")}function ei(N,Z){return N&&Z in N&&"function"==typeof N[Z]}(0,be.VP)(rt);let vi=(()=>{var N;class Z extends v.B{constructor(at,qe){super(),this.errorHandler=at,this.effectsErrorHandler=qe}addEffects(at){this.next(at)}toActions(){return this.pipe(W(at=>function F(N){return!!N.constructor&&"Object"!==N.constructor.name&&"Function"!==N.constructor.name}(at)?P(at):at),(0,G.Z)(at=>at.pipe(W(Ni))),(0,G.Z)(at=>{const qe=at.pipe(re(Je=>function kn(N,Z){return Me=>{const at=Ke(Me,N,Z);return function pt(N){return ei(N,"ngrxOnRunEffects")}(Me)?Me.ngrxOnRunEffects(at):at}}(this.errorHandler,this.effectsErrorHandler)(Je)),(0,le.T)(Je=>(function Ft(N,Z){if("N"===N.notification.kind){const Me=N.notification.value;!function Sn(N){return"function"!=typeof N&&N&&N.type&&"string"==typeof N.type}(Me)&&Z.handleError(new Error(`Effect ${function Qn({propertyName:N,sourceInstance:Z,sourceName:Me}){const at="function"==typeof Z[N];return Me?`"${Me}.${String(N)}${at?"()":""}"`:`"${String(N)}()"`}(N)} dispatched an invalid action: ${function h(N){try{return JSON.stringify(N)}catch{return N}}(Me)}`))}}(Je,this.errorHandler),Je.notification)),(0,Ae.p)(Je=>"N"===Je.kind&&null!=Je.value),function xe(){return(0,B.N)((N,Z)=>{N.subscribe((0,A._)(Z,Me=>C(Me,Z)))})}()),pn=at.pipe((0,Ee.s)(1),(0,Ae.p)(gn),(0,le.T)(Je=>Je.ngrxOnInitEffects()));return(0,i.h)(qe,pn)}))}static#e=N=()=>(this.\u0275fac=function(qe){return new(qe||Z)(V.KVO(V.zcH),V.KVO(Gt))},this.\u0275prov=V.jDH({token:Z,factory:Z.\u0275fac,providedIn:"root"}))}return N(),Z})();function Ni(N){return function Ue(N){return ei(N,"ngrxOnIdentifyEffects")}(N)?N.ngrxOnIdentifyEffects():""}let Ri=(()=>{var N;class Z{get isStarted(){return!!this.effectsSubscription}constructor(at,qe){this.effectSources=at,this.store=qe,this.effectsSubscription=null}start(){this.effectsSubscription||(this.effectsSubscription=this.effectSources.toActions().subscribe(this.store))}ngOnDestroy(){this.effectsSubscription&&(this.effectsSubscription.unsubscribe(),this.effectsSubscription=null)}static#e=N=()=>(this.\u0275fac=function(qe){return new(qe||Z)(V.KVO(vi),V.KVO(be.il))},this.\u0275prov=V.jDH({token:Z,factory:Z.\u0275fac,providedIn:"root"}))}return N(),Z})(),vt=(()=>{var N;class Z{constructor(at,qe,pn,Je,Be,ut,Ge){this.sources=at,qe.start();for(const Ot of Je)at.addEffects(Ot);pn.dispatch({type:rt})}addEffects(at){this.sources.addEffects(at)}static#e=N=()=>(this.\u0275fac=function(qe){return new(qe||Z)(V.KVO(vi),V.KVO(Ri),V.KVO(be.il),V.KVO(fe),V.KVO(be.wc,8),V.KVO(be.ae,8),V.KVO(ht,8))},this.\u0275mod=ce.$C({type:Z}),this.\u0275inj=V.G2t({}))}return N(),Z})(),ee=(()=>{var N;class Z{constructor(at,qe,pn,Je){const Be=qe.flat();for(const ut of Be)at.addEffects(ut)}static#e=N=()=>(this.\u0275fac=function(qe){return new(qe||Z)(V.KVO(vt),V.KVO(gt),V.KVO(be.wc,8),V.KVO(be.ae,8))},this.\u0275mod=ce.$C({type:Z}),this.\u0275inj=V.G2t({}))}return N(),Z})(),ye=(()=>{var N;class Z{static forFeature(...at){const qe=at.flat(),pn=H(qe);return{ngModule:ee,providers:[pn,{provide:Qe,multi:!0,useValue:qe},{provide:oe,multi:!0,useValue:[]},{provide:gt,multi:!0,useFactory:ke,deps:[Qe,oe]}]}}static forRoot(...at){const qe=at.flat(),pn=H(qe);return{ngModule:vt,providers:[pn,{provide:Ye,useValue:[qe]},{provide:ht,useFactory:Se},{provide:oe,multi:!0,useValue:[]},{provide:fe,useFactory:ke,deps:[Ye,oe]}]}}static#e=N=()=>(this.\u0275fac=function(qe){return new(qe||Z)},this.\u0275mod=ce.$C({type:Z}),this.\u0275inj=V.G2t({}))}return N(),Z})();function ke(N,Z){const Me=[];for(const at of N)Me.push(...at);for(const at of Z)Me.push(...at);return Me.map(at=>function $(N){return N instanceof V.nKC||ve(N)}(at)?(0,V.WQX)(at):at)}function Se(){const N=(0,V.WQX)(Ri,{optional:!0,skipSelf:!0}),Z=(0,V.WQX)(Ye,{self:!0});if((1!==Z.length||0!==Z[0].length)&&N)throw new TypeError("EffectsModule.forRoot() called twice. Feature modules should use EffectsModule.forFeature() instead.");return"guarded"}},9640(Zt,pe,l){"use strict";l.d(pe,{SS:()=>Xe,Zz:()=>Re,N_:()=>lt,Bh:()=>jt,QU:()=>h,sA:()=>Pt,h1:()=>ei,il:()=>Ri,ae:()=>Hn,md:()=>Pi,wc:()=>Rn,q6:()=>Ue,VP:()=>W,UX:()=>Jn,vy:()=>Ta,Mz:()=>Nt,on:()=>da,xk:()=>G});var i=l(2615),d=l(3664),v=l(9295),T=l(7705),w=l(4412),e=l(1985),O=l(1413),f=l(7242),u=l(941),L=l(3993),C=l(1943),B=l(6354),Pe=l(3294),le=l(9079);const Ae={};function W(en,vn){if(Ae[en]=(Ae[en]||0)+1,"function"==typeof vn)return xe(en,(...bn)=>({...vn(...bn),type:en}));switch(vn?vn._as:"empty"){case"empty":return xe(en,()=>({type:en}));case"props":return xe(en,bn=>({...bn,type:en}));default:throw new Error("Unexpected config.")}}function G(){return{_as:"props",_p:void 0}}function xe(en,vn){return Object.defineProperty(vn,"type",{value:en,writable:!1})}const Re="@ngrx/store/init";let Xe=(()=>{var en;class vn extends w.t{constructor(){super({type:Re})}next(bn){if("function"==typeof bn)throw new TypeError("\n Dispatch expected an object, instead it received a function.\n If you're using the createAction function, make sure to invoke the function\n before dispatching the action. For example, someAction should be someAction().");if(typeof bn>"u")throw new TypeError("Actions must be objects");if(typeof bn.type>"u")throw new TypeError("Actions must have a type property");super.next(bn)}complete(){}ngOnDestroy(){super.complete()}static#e=en=()=>(this.\u0275fac=function(Kn){return new(Kn||vn)},this.\u0275prov=i.jDH({token:vn,factory:vn.\u0275fac}))}return en(),vn})();const _e=[Xe],he=new i.nKC("@ngrx/store Internal Root Guard"),Dt=new i.nKC("@ngrx/store Internal Initial State"),lt=new i.nKC("@ngrx/store Initial State"),Le=new i.nKC("@ngrx/store Reducer Factory"),te=new i.nKC("@ngrx/store Internal Reducer Factory Provider"),ie=new i.nKC("@ngrx/store Initial Reducers"),P=new i.nKC("@ngrx/store Internal Initial Reducers"),F=new i.nKC("@ngrx/store Store Features"),ve=new i.nKC("@ngrx/store Internal Store Reducers"),H=new i.nKC("@ngrx/store Internal Feature Reducers"),$=new i.nKC("@ngrx/store Internal Feature Configs"),Ke=new i.nKC("@ngrx/store Internal Store Features"),Vt=new i.nKC("@ngrx/store Internal Feature Reducers Token"),St=new i.nKC("@ngrx/store Feature Reducers"),ot=new i.nKC("@ngrx/store User Provided Meta Reducers"),nt=new i.nKC("@ngrx/store Meta Reducers"),ht=new i.nKC("@ngrx/store Internal Resolved Meta Reducers"),oe=new i.nKC("@ngrx/store User Runtime Checks Config"),Ye=new i.nKC("@ngrx/store Internal User Runtime Checks Config"),fe=new i.nKC("@ngrx/store Internal Runtime Checks"),Qe=new i.nKC("@ngrx/store Check if Action types are unique"),gt=new i.nKC("@ngrx/store Root Store Provider"),Gt=new i.nKC("@ngrx/store Feature State Provider");function rt(en,vn={}){const oi=Object.keys(en),bn={};for(let yi=0;yiyi(Kn),oi(vn))}}function Sn(en,vn){return Array.isArray(vn)&&vn.length>0&&(en=Ft.apply(null,[...vn,en])),(oi,bn)=>{const Kn=en(oi);return(yi,Wi)=>Kn(yi=void 0===yi?bn:yi,Wi)}}class h extends e.c{}class jt extends Xe{}const Ue="@ngrx/store/update-reducers";let wt=(()=>{var en;class vn extends w.t{get currentReducers(){return this.reducers}constructor(bn,Kn,yi,Wi){super(Wi(yi,Kn)),this.dispatcher=bn,this.initialState=Kn,this.reducers=yi,this.reducerFactory=Wi}addFeature(bn){this.addFeatures([bn])}addFeatures(bn){const Kn=bn.reduce((yi,{reducers:Wi,reducerFactory:Ca,metaReducers:Fe,initialState:Wt,key:Ve})=>{const Et="function"==typeof Wi?function Qn(en){const vn=Array.isArray(en)&&en.length>0?Ft(...en):oi=>oi;return(oi,bn)=>(oi=vn(oi),(Kn,yi)=>oi(Kn=void 0===Kn?bn:Kn,yi))}(Fe)(Wi,Wt):Sn(Ca,Fe)(Wi,Wt);return yi[Ve]=Et,yi},{});this.addReducers(Kn)}removeFeature(bn){this.removeFeatures([bn])}removeFeatures(bn){this.removeReducers(bn.map(Kn=>Kn.key))}addReducer(bn,Kn){this.addReducers({[bn]:Kn})}addReducers(bn){this.reducers={...this.reducers,...bn},this.updateReducers(Object.keys(bn))}removeReducer(bn){this.removeReducers([bn])}removeReducers(bn){bn.forEach(Kn=>{this.reducers=function cn(en,vn){return Object.keys(en).filter(oi=>oi!==vn).reduce((oi,bn)=>Object.assign(oi,{[bn]:en[bn]}),{})}(this.reducers,Kn)}),this.updateReducers(bn)}updateReducers(bn){this.next(this.reducerFactory(this.reducers,this.initialState)),this.dispatcher.next({type:Ue,features:bn})}ngOnDestroy(){this.complete()}static#e=en=()=>(this.\u0275fac=function(Kn){return new(Kn||vn)(i.KVO(jt),i.KVO(lt),i.KVO(ie),i.KVO(Le))},this.\u0275prov=i.jDH({token:vn,factory:vn.\u0275fac}))}return en(),vn})();const pt=[wt,{provide:h,useExisting:wt},{provide:jt,useExisting:Xe}];let Pt=(()=>{var en;class vn extends O.B{ngOnDestroy(){this.complete()}static#e=en=()=>(this.\u0275fac=(()=>{let bn;return function(yi){return(bn||(bn=d.xGo(vn)))(yi||vn)}})(),this.\u0275prov=i.jDH({token:vn,factory:vn.\u0275fac}))}return en(),vn})();const gn=[Pt];class ei extends e.c{}let vi=(()=>{var en;class vn extends w.t{constructor(bn,Kn,yi,Wi){super(Wi);const Ve=bn.pipe((0,u.Q)(f.T)).pipe((0,L.E)(Kn)).pipe((0,C.S)(Ni,{state:Wi}));this.stateSubscription=Ve.subscribe(({state:Et,action:Jt})=>{this.next(Et),yi.next(Jt)}),this.state=(0,le.ot)(this,{manualCleanup:!0,requireSync:!0})}ngOnDestroy(){this.stateSubscription.unsubscribe(),this.complete()}static#e=en=()=>(this.INIT=Re,this.\u0275fac=function(Kn){return new(Kn||vn)(i.KVO(Xe),i.KVO(h),i.KVO(Pt),i.KVO(lt))},this.\u0275prov=i.jDH({token:vn,factory:vn.\u0275fac}))}return en(),vn})();function Ni(en={state:void 0},[vn,oi]){const{state:bn}=en;return{state:oi(bn,vn),action:vn}}const kn=[vi,{provide:ei,useExisting:vi}];let Ri=(()=>{var en;class vn extends e.c{constructor(bn,Kn,yi,Wi){super(),this.actionsObserver=Kn,this.reducerManager=yi,this.injector=Wi,this.source=bn,this.state=bn.state}select(bn,...Kn){return ee.call(null,bn,...Kn)(this)}selectSignal(bn,Kn){return(0,v.EW)(()=>bn(this.state()),Kn)}lift(bn){const Kn=new vn(this,this.actionsObserver,this.reducerManager);return Kn.operator=bn,Kn}dispatch(bn,Kn){if("function"==typeof bn)return this.processDispatchFn(bn,Kn);this.actionsObserver.next(bn)}next(bn){this.actionsObserver.next(bn)}error(bn){this.actionsObserver.error(bn)}complete(){this.actionsObserver.complete()}addReducer(bn,Kn){this.reducerManager.addReducer(bn,Kn)}removeReducer(bn){this.reducerManager.removeReducer(bn)}processDispatchFn(bn,Kn){!function ce(en,vn){if(null==en)throw new Error(`${vn} must be defined.`)}(this.injector,"Store Injector");const yi=Kn?.injector??function ye(){try{return(0,i.WQX)(i.zZn)}catch{return}}()??this.injector;return(0,v.QZ)(()=>{const Wi=bn();(0,v.O8)(()=>this.dispatch(Wi))},{injector:yi})}static#e=en=()=>(this.\u0275fac=function(Kn){return new(Kn||vn)(i.KVO(ei),i.KVO(Xe),i.KVO(wt),i.KVO(i.zZn))},this.\u0275prov=i.jDH({token:vn,factory:vn.\u0275fac}))}return en(),vn})();const vt=[Ri];function ee(en,vn,...oi){return function(Kn){let yi;if("string"==typeof en){const Wi=[vn,...oi].filter(Boolean);yi=Kn.pipe(function A(...en){const vn=en.length;if(0===vn)throw new Error("list of properties cannot be empty.");return(0,B.T)(oi=>{let bn=oi;for(let Kn=0;Knen(Wi,vn)))}return yi.pipe((0,Pe.F)())}}const ke="https://ngrx.io/guide/store/configuration/runtime-checks";function Se(en){return void 0===en}function ge(en){return null===en}function N(en){return Array.isArray(en)}function qe(en){return"object"==typeof en&&null!==en}function Be(en){return"function"==typeof en}function bt(en,vn){return en===vn}function un(en,vn=bt,oi=bt){let yi,bn=null,Kn=null;return{memoized:function Wt(){if(void 0!==yi)return yi.result;if(!bn)return Kn=en.apply(null,arguments),bn=arguments,Kn;if(!function tn(en,vn,oi){for(let bn=0;bn"function"==typeof vn)}(bn[0])&&(bn=function Yi(en){const vn=Object.values(en),oi=Object.keys(en);return[...vn,(...Kn)=>oi.reduce((yi,Wi,Ca)=>({...yi,[Wi]:Kn[Ca]}),{})]}(bn[0]));const Kn=bn.slice(0,bn.length-1),yi=bn[bn.length-1],Wi=Kn.filter(Ve=>Ve.release&&"function"==typeof Ve.release),Ca=en(function(...Ve){return yi.apply(null,Ve)}),Fe=un(function(Ve,Et){return vn.stateFn.apply(null,[Ve,Kn,Et,Ca])});return Object.assign(Fe.memoized,{release:function Wt(){Fe.reset(),Ca.reset(),Wi.forEach(Ve=>Ve.release())},projector:Ca.memoized,setResult:Fe.setResult,clearResult:Fe.clearResult})}}(un)(...en)}function dn(en,vn,oi,bn){if(void 0===oi){const yi=vn.map(Wi=>Wi(en));return bn.memoized.apply(null,yi)}const Kn=vn.map(yi=>yi(en,oi));return bn.memoized.apply(null,[...Kn,oi])}function Jn(en){return Nt(vn=>{const oi=vn[en];return(0,T.naY)()&&!(en in vn)&&console.warn(`@ngrx/store: The feature name "${en}" does not exist in the state, therefore createFeatureSelector cannot access it. Be sure it is imported in a loaded module using StoreModule.forRoot('${en}', ...) or StoreModule.forFeature('${en}', ...). If the default state is intended to be undefined, as is the case with router state, this development-only warning message can be ignored.`),oi},vn=>vn)}function ae(en){return en instanceof i.nKC?(0,i.WQX)(en):en}function Lt(en,vn){return vn.map((oi,bn)=>{if(en[bn]instanceof i.nKC){const Kn=(0,i.WQX)(en[bn]);return{key:oi.key,reducerFactory:Kn.reducerFactory?Kn.reducerFactory:rt,metaReducers:Kn.metaReducers?Kn.metaReducers:[],initialState:Kn.initialState}}return oi})}function Ht(en){return en.map(vn=>vn instanceof i.nKC?(0,i.WQX)(vn):vn)}function _n(en){return"function"==typeof en?en():en}function fi(en,vn){return en.concat(vn)}function bi(){if((0,i.WQX)(Ri,{optional:!0,skipSelf:!0}))throw new TypeError("The root Store has been provided more than once. Feature modules should provide feature states instead.");return"guarded"}function zi(en){Object.freeze(en);const vn=Be(en);return Object.getOwnPropertyNames(en).forEach(oi=>{if(!oi.startsWith("\u0275")&&function Ge(en,vn){return Object.prototype.hasOwnProperty.call(en,vn)}(en,oi)&&(!vn||"caller"!==oi&&"callee"!==oi&&"arguments"!==oi)){const bn=en[oi];(qe(bn)||Be(bn))&&!Object.isFrozen(bn)&&zi(bn)}}),en}function an(en,vn=[]){return(Se(en)||ge(en))&&0===vn.length?{path:["root"],value:en}:Object.keys(en).reduce((bn,Kn)=>{if(bn)return bn;const yi=en[Kn];return function ut(en){return Be(en)&&en.hasOwnProperty("\u0275cmp")}(yi)?bn:!(Se(yi)||ge(yi)||function at(en){return"number"==typeof en}(yi)||function Me(en){return"boolean"==typeof en}(yi)||function Z(en){return"string"==typeof en}(yi)||N(yi))&&(function Je(en){if(!function pn(en){return qe(en)&&!N(en)}(en))return!1;const vn=Object.getPrototypeOf(en);return vn===Object.prototype||null===vn}(yi)?an(yi,[...vn,Kn]):{path:[...vn,Kn],value:yi})},!1)}function Yt(en,vn){if(!1===en)return;const oi=en.path.join("."),bn=new Error(`Detected unserializable ${vn} at "${oi}". ${ke}#strict${vn}serializability`);throw bn.value=en.value,bn.unserializablePath=oi,bn}function zn(en){return(0,T.naY)()?{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!0,strictActionImmutability:!0,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1,...en}:{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!1,strictActionImmutability:!1,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1}}function Fn({strictActionSerializability:en,strictStateSerializability:vn}){return oi=>en||vn?function It(en,vn){return function(oi,bn){vn.action(bn)&&Yt(an(bn),"action");const Kn=en(oi,bn);return vn.state()&&Yt(an(Kn),"state"),Kn}}(oi,{action:bn=>en&&!rn(bn),state:()=>vn}):oi}function ci({strictActionImmutability:en,strictStateImmutability:vn}){return oi=>en||vn?function Qi(en,vn){return function(oi,bn){const Kn=vn.action(bn)?zi(bn):bn,yi=en(oi,Kn);return vn.state()?zi(yi):yi}}(oi,{action:bn=>en&&!rn(bn),state:()=>vn}):oi}function rn(en){return en.type.startsWith("@ngrx")}function In({strictActionWithinNgZone:en}){return vn=>en?function Un(en,vn){return function(oi,bn){if(vn.action(bn)&&!d.SKi.isInAngularZone())throw new Error(`Action '${bn.type}' running outside NgZone. ${ke}#strictactionwithinngzone`);return en(oi,bn)}}(vn,{action:oi=>en&&!rn(oi)}):vn}function Mn(en){return[{provide:Ye,useValue:en},{provide:oe,useFactory:ii,deps:[Ye]},{provide:fe,deps:[oe],useFactory:zn},{provide:nt,multi:!0,deps:[fe],useFactory:ci},{provide:nt,multi:!0,deps:[fe],useFactory:Fn},{provide:nt,multi:!0,deps:[fe],useFactory:In}]}function Vn(){return[{provide:Qe,multi:!0,deps:[fe],useFactory:Bn}]}function ii(en){return en}function Bn(en){if(!en.strictActionTypeUniqueness)return;const vn=Object.entries(Ae).filter(([,oi])=>oi>1).map(([oi])=>oi);if(vn.length)throw new Error(`Action types are registered more than once, ${vn.map(oi=>`"${oi}"`).join(", ")}. ${ke}#strictactiontypeuniqueness`)}function ra(en={},vn={}){return[{provide:he,useFactory:bi},{provide:Dt,useValue:vn.initialState},{provide:lt,useFactory:_n,deps:[Dt]},{provide:P,useValue:en},{provide:ve,useExisting:en instanceof i.nKC?en:P},{provide:ie,deps:[P,[new d.y_5(ve)]],useFactory:ae},{provide:ot,useValue:vn.metaReducers?vn.metaReducers:[]},{provide:ht,deps:[nt,ot],useFactory:fi},{provide:te,useValue:vn.reducerFactory?vn.reducerFactory:rt},{provide:Le,deps:[te,ht],useFactory:Sn},_e,pt,gn,kn,vt,Mn(vn.runtimeChecks),Vn()]}function ri(en,vn,oi={}){return[{provide:$,multi:!0,useValue:en instanceof Object?{}:oi},{provide:F,multi:!0,useValue:{key:en instanceof Object?en.name:en,reducerFactory:oi instanceof i.nKC||!oi.reducerFactory?rt:oi.reducerFactory,metaReducers:oi instanceof i.nKC||!oi.metaReducers?[]:oi.metaReducers,initialState:oi instanceof i.nKC||!oi.initialState?void 0:oi.initialState}},{provide:Ke,deps:[$,F],useFactory:Lt},{provide:H,multi:!0,useValue:en instanceof Object?en.reducer:vn},{provide:Vt,multi:!0,useExisting:vn instanceof i.nKC?vn:H},{provide:St,multi:!0,deps:[H,[new d.y_5(Vt)]],useFactory:Ht},Vn()]}(0,i.BCV)(()=>(0,i.WQX)(gt)),(0,i.BCV)(()=>(0,i.WQX)(Gt));let Rn=(()=>{var en;class vn{constructor(bn,Kn,yi,Wi,Ca,Fe){}static#e=en=()=>(this.\u0275fac=function(Kn){return new(Kn||vn)(i.KVO(Xe),i.KVO(h),i.KVO(Pt),i.KVO(Ri),i.KVO(he,8),i.KVO(Qe,8))},this.\u0275mod=d.$C({type:vn}),this.\u0275inj=i.G2t({}))}return en(),vn})(),Hn=(()=>{var en;class vn{constructor(bn,Kn,yi,Wi,Ca){this.features=bn,this.featureReducers=Kn,this.reducerManager=yi;const Fe=bn.map((Wt,Ve)=>{const Jt=Kn.shift()[Ve];return{...Wt,reducers:Jt,initialState:_n(Wt.initialState)}});yi.addFeatures(Fe)}ngOnDestroy(){this.reducerManager.removeFeatures(this.features)}static#e=en=()=>(this.\u0275fac=function(Kn){return new(Kn||vn)(i.KVO(Ke),i.KVO(St),i.KVO(wt),i.KVO(Rn),i.KVO(Qe,8))},this.\u0275mod=d.$C({type:vn}),this.\u0275inj=i.G2t({}))}return en(),vn})(),Pi=(()=>{var en;class vn{static forRoot(bn,Kn){return{ngModule:Rn,providers:[...ra(bn,Kn)]}}static forFeature(bn,Kn,yi={}){return{ngModule:Hn,providers:[...ri(bn,Kn,yi)]}}static#e=en=()=>(this.\u0275fac=function(Kn){return new(Kn||vn)},this.\u0275mod=d.$C({type:vn}),this.\u0275inj=i.G2t({}))}return en(),vn})();function da(...en){return{reducer:en.pop(),types:en.map(bn=>bn.type)}}function Ta(en,...vn){const oi=new Map;for(const bn of vn)for(const Kn of bn.types){const yi=oi.get(Kn);oi.set(Kn,yi?(Ca,Fe)=>bn.reducer(yi(Ca,Fe),Fe):bn.reducer)}return function(bn=en,Kn){const yi=oi.get(Kn.type);return yi?yi(bn,Kn):bn}}},1993(Zt,pe,l){"use strict";l.d(pe,{Dl:()=>bp,L8:()=>hh,dV:()=>p4});var i=l(3664),d=l(2615),v=l(7705),T=l(2200),w=l(177),e=l(1635),O=l(6939),f=l(3726),u=l(152),L=l(1514);function C(){}function B(s){return null==s?C:function(){return this.querySelector(s)}}function le(){return[]}function Ce(s){return null==s?le:function(){return this.querySelectorAll(s)}}function W(s){return function(){return this.matches(s)}}function G(s){return function(g){return g.matches(s)}}var re=Array.prototype.find;function Ee(){return this.firstElementChild}var ce=Array.prototype.filter;function be(){return Array.from(this.children)}function Re(s){return new Array(s.length)}function _e(s,g){this.ownerDocument=s.ownerDocument,this.namespaceURI=s.namespaceURI,this._next=null,this._parent=s,this.__data__=g}function Dt(s,g,c,r,y,x){for(var ue,R=0,xt=g.length,Rt=x.length;Rg?1:s>=g?0:NaN}_e.prototype={constructor:_e,appendChild:function(s){return this._parent.insertBefore(s,this._next)},insertBefore:function(s,g){return this._parent.insertBefore(s,g)},querySelector:function(s){return this._parent.querySelector(s)},querySelectorAll:function(s){return this._parent.querySelectorAll(s)}};var Ye="http://www.w3.org/1999/xhtml";const fe={svg:"http://www.w3.org/2000/svg",xhtml:Ye,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function Qe(s){var g=s+="",c=g.indexOf(":");return c>=0&&"xmlns"!==(g=s.slice(0,c))&&(s=s.slice(c+1)),fe.hasOwnProperty(g)?{space:fe[g],local:s}:s}function gt(s){return function(){this.removeAttribute(s)}}function Gt(s){return function(){this.removeAttributeNS(s.space,s.local)}}function rt(s,g){return function(){this.setAttribute(s,g)}}function cn(s,g){return function(){this.setAttributeNS(s.space,s.local,g)}}function Ft(s,g){return function(){var c=g.apply(this,arguments);null==c?this.removeAttribute(s):this.setAttribute(s,c)}}function Sn(s,g){return function(){var c=g.apply(this,arguments);null==c?this.removeAttributeNS(s.space,s.local):this.setAttributeNS(s.space,s.local,c)}}function h(s){return s.ownerDocument&&s.ownerDocument.defaultView||s.document&&s||s.defaultView}function jt(s){return function(){this.style.removeProperty(s)}}function Ue(s,g,c){return function(){this.style.setProperty(s,g,c)}}function wt(s,g,c){return function(){var r=g.apply(this,arguments);null==r?this.style.removeProperty(s):this.style.setProperty(s,r,c)}}function Pt(s,g){return s.style.getPropertyValue(g)||h(s).getComputedStyle(s,null).getPropertyValue(g)}function gn(s){return function(){delete this[s]}}function ei(s,g){return function(){this[s]=g}}function vi(s,g){return function(){var c=g.apply(this,arguments);null==c?delete this[s]:this[s]=c}}function kn(s){return s.trim().split(/^|\s+/)}function Ri(s){return s.classList||new vt(s)}function vt(s){this._node=s,this._names=kn(s.getAttribute("class")||"")}function ee(s,g){for(var c=Ri(s),r=-1,y=g.length;++r=0&&(this._names.splice(g,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(s){return this._names.indexOf(s)>=0}};var an=[null];function Yt(s,g){this._groups=s,this._parents=g}function Un(){return new Yt([[document.documentElement]],an)}Yt.prototype=Un.prototype={constructor:Yt,select:function A(s){"function"!=typeof s&&(s=B(s));for(var g=this._groups,c=g.length,r=new Array(c),y=0;y=ea&&(ea=pa+1);!(Na=Xn[ea])&&++ea=0;)(R=r[y])&&(x&&4^R.compareDocumentPosition(x)&&x.parentNode.insertBefore(R,x),x=R);return this},sort:function $(s){function g(wn,An){return wn&&An?s(wn.__data__,An.__data__):!wn-!An}s||(s=Ke);for(var c=this._groups,r=c.length,y=new Array(r),x=0;x1?this.each((null==g?jt:"function"==typeof g?wt:Ue)(s,g,c??"")):Pt(this.node(),s)},property:function Ni(s,g){return arguments.length>1?this.each((null==g?gn:"function"==typeof g?vi:ei)(s,g)):this.node()[s]},classed:function N(s,g){var c=kn(s+"");if(arguments.length<2){for(var r=Ri(this.node()),y=-1,x=c.length;++y=0&&(c=g.slice(r+1),g=g.slice(0,r)),{type:g,name:c}})}(s+""),x=r.length;if(!(arguments.length<2)){for(ue=g?Ht:Lt,y=0;y{}};function In(){for(var r,s=0,g=arguments.length,c={};s=0&&(r=c.slice(y+1),c=c.slice(0,y)),c&&!g.hasOwnProperty(c))throw new Error("unknown type: "+c);return{type:c,name:r}})}(s+"",c),x=-1,R=r.length;if(!(arguments.length<2)){if(null!=g&&"function"!=typeof g)throw new Error("invalid callback: "+g);for(;++x0)for(var y,x,c=new Array(y),r=0;r>8&15|g>>4&240,g>>4&15|240&g,(15&g)<<4|15&g,1):8===c?ca(g>>24&255,g>>16&255,g>>8&255,(255&g)/255):4===c?ca(g>>12&15|g>>8&240,g>>8&15|g>>4&240,g>>4&15|240&g,((15&g)<<4|15&g)/255):null):(g=bn.exec(s))?new U(g[1],g[2],g[3],1):(g=Kn.exec(s))?new U(255*g[1]/100,255*g[2]/100,255*g[3]/100,1):(g=yi.exec(s))?ca(g[1],g[2],g[3],g[4]):(g=Wi.exec(s))?ca(255*g[1]/100,255*g[2]/100,255*g[3]/100,g[4]):(g=Ca.exec(s))?Ua(g[1],g[2]/100,g[3]/100,1):(g=Fe.exec(s))?Ua(g[1],g[2]/100,g[3]/100,g[4]):Wt.hasOwnProperty(s)?Ii(Wt[s]):"transparent"===s?new U(NaN,NaN,NaN,0):null}function Ii(s){return new U(s>>16&255,s>>8&255,255&s,1)}function ca(s,g,c,r){return r<=0&&(s=g=c=NaN),new U(s,g,c,r)}function ni(s,g,c,r){return 1===arguments.length?function nn(s){return s instanceof Hn||(s=di(s)),s?new U((s=s.rgb()).r,s.g,s.b,s.opacity):new U}(s):new U(s,g,c,r??1)}function U(s,g,c,r){this.r=+s,this.g=+g,this.b=+c,this.opacity=+r}function tt(){return`#${_a(this.r)}${_a(this.g)}${_a(this.b)}`}function Xt(){const s=Nn(this.opacity);return`${1===s?"rgb(":"rgba("}${Ki(this.r)}, ${Ki(this.g)}, ${Ki(this.b)}${1===s?")":`, ${s})`}`}function Nn(s){return isNaN(s)?1:Math.max(0,Math.min(1,s))}function Ki(s){return Math.max(0,Math.min(255,Math.round(s)||0))}function _a(s){return((s=Ki(s))<16?"0":"")+s.toString(16)}function Ua(s,g,c,r){return r<=0?s=g=c=NaN:c<=0||c>=1?s=g=NaN:g<=0&&(s=NaN),new Ga(s,g,c,r)}function $a(s){if(s instanceof Ga)return new Ga(s.h,s.s,s.l,s.opacity);if(s instanceof Hn||(s=di(s)),!s)return new Ga;if(s instanceof Ga)return s;var g=(s=s.rgb()).r/255,c=s.g/255,r=s.b/255,y=Math.min(g,c,r),x=Math.max(g,c,r),R=NaN,ue=x-y,xt=(x+y)/2;return ue?(R=g===x?(c-r)/ue+6*(c0&&xt<1?0:R,new Ga(R,ue,xt,s.opacity)}function Ga(s,g,c,r){this.h=+s,this.s=+g,this.l=+c,this.opacity=+r}function As(s){return(s=(s||0)%360)<0?s+360:s}function hr(s){return Math.max(0,Math.min(1,s||0))}function mr(s,g,c){return 255*(s<60?g+(c-g)*s/60:s<180?c:s<240?g+(c-g)*(240-s)/60:g)}function fr(s,g,c,r,y){var x=s*s,R=x*s;return((1-3*s+3*x-R)*g+(4-6*x+3*R)*c+(1+3*s+3*x-3*R)*r+R*y)/6}ri(Hn,di,{copy(s){return Object.assign(new this.constructor,this,s)},displayable(){return this.rgb().displayable()},hex:Ve,formatHex:Ve,formatHex8:function Et(){return this.rgb().formatHex8()},formatHsl:function Jt(){return $a(this).formatHsl()},formatRgb:ti,toString:ti}),ri(U,ni,Rn(Hn,{brighter(s){return s=null==s?da:Math.pow(da,s),new U(this.r*s,this.g*s,this.b*s,this.opacity)},darker(s){return s=null==s?.7:Math.pow(.7,s),new U(this.r*s,this.g*s,this.b*s,this.opacity)},rgb(){return this},clamp(){return new U(Ki(this.r),Ki(this.g),Ki(this.b),Nn(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:tt,formatHex:tt,formatHex8:function Ze(){return`#${_a(this.r)}${_a(this.g)}${_a(this.b)}${_a(255*(isNaN(this.opacity)?1:this.opacity))}`},formatRgb:Xt,toString:Xt})),ri(Ga,function ns(s,g,c,r){return 1===arguments.length?$a(s):new Ga(s,g,c,r??1)},Rn(Hn,{brighter(s){return s=null==s?da:Math.pow(da,s),new Ga(this.h,this.s,this.l*s,this.opacity)},darker(s){return s=null==s?.7:Math.pow(.7,s),new Ga(this.h,this.s,this.l*s,this.opacity)},rgb(){var s=this.h%360+360*(this.h<0),g=isNaN(s)||isNaN(this.s)?0:this.s,c=this.l,r=c+(c<.5?c:1-c)*g,y=2*c-r;return new U(mr(s>=240?s-240:s+120,y,r),mr(s,y,r),mr(s<120?s+240:s-120,y,r),this.opacity)},clamp(){return new Ga(As(this.h),hr(this.s),hr(this.l),Nn(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const s=Nn(this.opacity);return`${1===s?"hsl(":"hsla("}${As(this.h)}, ${100*hr(this.s)}%, ${100*hr(this.l)}%${1===s?")":`, ${s})`}`}}));const gr=s=>()=>s;function Ps(s,g){var c=g-s;return c?function Zs(s,g){return function(c){return s+c*g}}(s,c):gr(isNaN(s)?g:s)}const kr=function s(g){var c=function Ka(s){return 1==(s=+s)?Ps:function(g,c){return c-g?function jr(s,g,c){return s=Math.pow(s,c),g=Math.pow(g,c)-s,c=1/c,function(r){return Math.pow(s+r*g,c)}}(g,c,s):gr(isNaN(g)?c:g)}}(g);function r(y,x){var R=c((y=ni(y)).r,(x=ni(x)).r),ue=c(y.g,x.g),xt=c(y.b,x.b),Rt=Ps(y.opacity,x.opacity);return function(sn){return y.r=R(sn),y.g=ue(sn),y.b=xt(sn),y.opacity=Rt(sn),y+""}}return r.gamma=s,r}(1);function js(s){return function(g){var R,ue,c=g.length,r=new Array(c),y=new Array(c),x=new Array(c);for(R=0;R=1?(c=1,g-1):Math.floor(c*g),y=s[r],x=s[r+1];return fr((c-r/g)*g,r>0?s[r-1]:2*y-x,y,x,rc&&(x=g.slice(c,x),ue[R]?ue[R]+=x:ue[++R]=x),(r=r[0])===(y=y[0])?ue[R]?ue[R]+=y:ue[++R]=y:(ue[++R]=null,xt.push({i:R,x:rs(r,y)})),c=Hs.lastIndex;return c=0&&s._call.call(void 0,g),s=s._next;--er}()}finally{er=0,function Es(){for(var s,c,g=Za,r=1/0;g;)g._call?(r>g._time&&(r=g._time),s=g,g=g._next):(c=g._next,g._next=null,g=s?s._next=c:Za=c);Or=s,kt(r)}(),Fs=0}}function ua(){var s=Ks.now(),g=s-Rr;g>1e3&&(Hr-=g,Rr=s)}function kt(s){er||(Xs&&(Xs=clearTimeout(Xs)),s-Fs>24?(s<1/0&&(Xs=setTimeout(Oi,s-Ks.now()-Hr)),wa&&(wa=clearInterval(wa))):(wa||(Rr=Ks.now(),wa=setInterval(ua,1e3)),er=1,Sr(Oi)))}function On(s,g,c){var r=new q;return r.restart(y=>{r.stop(),s(y+g)},g=null==g?0:+g,c),r}q.prototype=mt.prototype={constructor:q,restart:function(s,g,c){if("function"!=typeof s)throw new TypeError("callback is not a function");c=(null==c?Ne():+c)+(null==g?0:+g),!this._next&&Or!==this&&(Or?Or._next=this:Za=this,Or=this),this._call=s,this._time=c,kt()},stop:function(){this._call&&(this._call=null,this._time=1/0,kt())}};var $e=ia("start","end","cancel","interrupt"),mn=[];function el(s,g,c,r,y,x){var R=s.__transition;if(R){if(c in R)return}else s.__transition={};!function Eo(s,g,c){var y,r=s.__transition;function R(Rt){var sn,wn,An,_i;if(1!==c.state)return xt();for(sn in r)if((_i=r[sn]).name===c.name){if(3===_i.state)return On(R);4===_i.state?(_i.state=6,_i.timer.stop(),_i.on.call("interrupt",s,s.__data__,_i.index,_i.group),delete r[sn]):+sn0)throw new Error("too late; already scheduled");return c}function Ss(s,g){var c=tr(s,g);if(c.state>3)throw new Error("too late; already running");return c}function tr(s,g){var c=s.__transition;if(!c||!(c=c[g]))throw new Error("transition not found");return c}var nr,pl=180/Math.PI,zl={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function ds(s,g,c,r,y,x){var R,ue,xt;return(R=Math.sqrt(s*s+g*g))&&(s/=R,g/=R),(xt=s*c+g*r)&&(c-=s*xt,r-=g*xt),(ue=Math.sqrt(c*c+r*r))&&(c/=ue,r/=ue,xt/=ue),s*r180?sn+=360:sn-Rt>180&&(Rt+=360),An.push({i:wn.push(y(wn)+"rotate(",null,r)-2,x:rs(Rt,sn)})):sn&&wn.push(y(wn)+"rotate("+sn+r)}(Rt.rotate,sn.rotate,wn,An),function ue(Rt,sn,wn,An){Rt!==sn?An.push({i:wn.push(y(wn)+"skewX(",null,r)-2,x:rs(Rt,sn)}):sn&&wn.push(y(wn)+"skewX("+sn+r)}(Rt.skewX,sn.skewX,wn,An),function xt(Rt,sn,wn,An,_i,pi){if(Rt!==wn||sn!==An){var Ji=_i.push(y(_i)+"scale(",null,",",null,")");pi.push({i:Ji-4,x:rs(Rt,wn)},{i:Ji-2,x:rs(sn,An)})}else(1!==wn||1!==An)&&_i.push(y(_i)+"scale("+wn+","+An+")")}(Rt.scaleX,Rt.scaleY,sn.scaleX,sn.scaleY,wn,An),Rt=sn=null,function(_i){for(var Xn,pi=-1,Ji=An.length;++pi=0&&(g=g.slice(0,c)),!g||"start"===g})}(g)?Ml:Ss;return function(){var R=x(this,s),ue=R.on;ue!==r&&(y=(r=ue).copy()).on(g,c),R.on=y}}(c,s,g))},attr:function Ho(s,g){var c=Qe(s),r="transform"===c?Tr:za;return this.attrTween(s,"function"==typeof g?(c.local?To:fo)(c,r,Vl(this,"attr."+s,g)):null==g?(c.local?Dl:us)(c):(c.local?So:eo)(c,r,g))},attrTween:function Al(s,g){var c="attr."+s;if(arguments.length<2)return(c=this.tween(c))&&c._value;if(null==g)return this.tween(c,null);if("function"!=typeof g)throw new Error;var r=Qe(s);return this.tween(c,(r.local?wl:no)(r,g))},style:function Gi(s,g,c){var r="transform"==(s+="")?gl:za;return null==g?this.styleTween(s,function et(s,g){var c,r,y;return function(){var x=Pt(this,s),R=(this.style.removeProperty(s),Pt(this,s));return x===R?null:x===c&&R===r?y:y=g(c=x,r=R)}}(s,r)).on("end.style."+s,Mt(s)):"function"==typeof g?this.styleTween(s,function Tn(s,g,c){var r,y,x;return function(){var R=Pt(this,s),ue=c(this),xt=ue+"";return null==ue&&(this.style.removeProperty(s),xt=ue=Pt(this,s)),R===xt?null:R===r&&xt===y?x:(y=xt,x=g(r=R,ue))}}(s,r,Vl(this,"style."+s,g))).each(function ai(s,g){var c,r,y,ue,x="style."+g,R="end."+x;return function(){var xt=Ss(this,s),Rt=xt.on,sn=null==xt.value[x]?ue||(ue=Mt(g)):void 0;(Rt!==c||y!==sn)&&(r=(c=Rt).copy()).on(R,y=sn),xt.on=r}}(this._id,s)):this.styleTween(s,function Kt(s,g,c){var r,x,y=c+"";return function(){var R=Pt(this,s);return R===y?null:R===r?x:x=g(r=R,c)}}(s,r,g),c).on("end.style."+s,null)},styleTween:function Ns(s,g,c){var r="style."+(s+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(null==g)return this.tween(r,null);if("function"!=typeof g)throw new Error;return this.tween(r,function as(s,g,c){var r,y;function x(){var R=g.apply(this,arguments);return R!==y&&(r=(y=R)&&function La(s,g,c){return function(r){this.style.setProperty(s,g.call(this,r),c)}}(s,R,c)),r}return x._value=g,x}(s,g,c??""))},text:function ro(s){return this.tween("text","function"==typeof s?function ar(s){return function(){var g=s(this);this.textContent=g??""}}(Vl(this,"text",s)):function il(s){return function(){this.textContent=s}}(null==s?"":s+""))},textTween:function mc(s){var g="text";if(arguments.length<1)return(g=this.tween(g))&&g._value;if(null==s)return this.tween(g,null);if("function"!=typeof s)throw new Error;return this.tween(g,function Il(s){var g,c;function r(){var y=s.apply(this,arguments);return y!==c&&(g=(c=y)&&function oo(s){return function(g){this.textContent=s.call(this,g)}}(y)),g}return r._value=s,r}(s))},remove:function nl(){return this.on("end.remove",function Wo(s){return function(){var g=this.parentNode;for(var c in this.__transition)if(+c!==s)return;g&&g.removeChild(this)}}(this._id))},tween:function Tl(s,g){var c=this._id;if(s+="",arguments.length<2){for(var R,r=tr(this.node(),c).tween,y=0,x=r.length;y2&&r.state<5,r.state=6,r.timer.stop(),r.on.call(y?"interrupt":"cancel",s,s.__data__,r.index,r.group),delete c[R]):x=!1;x&&delete s.__transition}}(this,s)})},Fn.prototype.transition=function al(s){var g,c;s instanceof po?(g=s._id,s=s._name):(g=pc(),(c=Lc).time=Ne(),s=null==s?null:s+"");for(var r=this._groups,y=r.length,x=0;xg?1:s>=g?0:NaN}function tc(s,g){return null==s||null==g?NaN:gs?1:g>=s?0:NaN}function Xl(s){let g,c,r;function y(ue,xt,Rt=0,sn=ue.length){if(Rt>>1;c(ue[wn],xt)<0?Rt=wn+1:sn=wn}while(RtXr(s(ue),xt),r=(ue,xt)=>s(ue)-xt):(g=s===Xr||s===tc?s:Kc,c=s,r=s),{left:y,center:function R(ue,xt,Rt=0,sn=ue.length){const wn=y(ue,xt,Rt,sn-1);return wn>Rt&&r(ue[wn-1],xt)>-r(ue[wn],xt)?wn-1:wn},right:function x(ue,xt,Rt=0,sn=ue.length){if(Rt>>1;c(ue[wn],xt)<=0?Rt=wn+1:sn=wn}while(Rt=_1?10:x>=gc?5:x>=Yc?2:1;let ue,xt,Rt;return y<0?(Rt=Math.pow(10,-y)/R,ue=Math.round(s*Rt),xt=Math.round(g*Rt),ue/Rtg&&--xt,Rt=-Rt):(Rt=Math.pow(10,y)*R,ue=Math.round(s/Rt),xt=Math.round(g/Rt),ue*Rtg&&--xt),xt(s(x=new Date(+x)),x),y.ceil=x=>(s(x=new Date(x-1)),g(x,1),s(x),x),y.round=x=>{const R=y(x),ue=y.ceil(x);return x-R(g(x=new Date(+x),null==R?1:Math.floor(R)),x),y.range=(x,R,ue)=>{const xt=[];if(x=y.ceil(x),ue=null==ue?1:Math.floor(ue),!(x0))return xt;let Rt;do{xt.push(Rt=new Date(+x)),g(x,ue),s(x)}while(Rtki(R=>{if(R>=R)for(;s(R),!x(R);)R.setTime(R-1)},(R,ue)=>{if(R>=R)if(ue<0)for(;++ue<=0;)for(;g(R,-1),!x(R););else for(;--ue>=0;)for(;g(R,1),!x(R););}),c&&(y.count=(x,R)=>(Gn.setTime(+x),ui.setTime(+R),s(Gn),s(ui),Math.floor(c(Gn,ui))),y.every=x=>(x=Math.floor(x),isFinite(x)&&x>0?x>1?y.filter(r?R=>r(R)%x===0:R=>y.count(0,R)%x===0):y:null)),y}const Wa=ki(()=>{},(s,g)=>{s.setTime(+s+g)},(s,g)=>g-s);Wa.every=s=>(s=Math.floor(s),isFinite(s)&&s>0?s>1?ki(g=>{g.setTime(Math.floor(g/s)*s)},(g,c)=>{g.setTime(+g+c*s)},(g,c)=>(c-g)/s):Wa:null);const Aa=ki(s=>{s.setTime(s-s.getMilliseconds())},(s,g)=>{s.setTime(+s+g*Ha)},(s,g)=>(g-s)/Ha,s=>s.getUTCSeconds()),es=ki(s=>{s.setTime(s-s.getMilliseconds()-s.getSeconds()*Ha)},(s,g)=>{s.setTime(+s+g*Ti)},(s,g)=>(g-s)/Ti,s=>s.getMinutes()),sl=ki(s=>{s.setUTCSeconds(0,0)},(s,g)=>{s.setTime(+s+g*Ti)},(s,g)=>(g-s)/Ti,s=>s.getUTCMinutes()),go=ki(s=>{s.setTime(s-s.getMilliseconds()-s.getSeconds()*Ha-s.getMinutes()*Ti)},(s,g)=>{s.setTime(+s+g*Oa)},(s,g)=>(g-s)/Oa,s=>s.getHours()),t2=ki(s=>{s.setUTCMinutes(0,0,0)},(s,g)=>{s.setTime(+s+g*Oa)},(s,g)=>(g-s)/Oa,s=>s.getUTCHours()),Qc=ki(s=>s.setHours(0,0,0,0),(s,g)=>s.setDate(s.getDate()+g),(s,g)=>(g-s-(g.getTimezoneOffset()-s.getTimezoneOffset())*Ti)/os,s=>s.getDate()-1),Ro=ki(s=>{s.setUTCHours(0,0,0,0)},(s,g)=>{s.setUTCDate(s.getUTCDate()+g)},(s,g)=>(g-s)/os,s=>s.getUTCDate()-1),$c=ki(s=>{s.setUTCHours(0,0,0,0)},(s,g)=>{s.setUTCDate(s.getUTCDate()+g)},(s,g)=>(g-s)/os,s=>Math.floor(s/os));function rl(s){return ki(g=>{g.setDate(g.getDate()-(g.getDay()+7-s)%7),g.setHours(0,0,0,0)},(g,c)=>{g.setDate(g.getDate()+7*c)},(g,c)=>(c-g-(c.getTimezoneOffset()-g.getTimezoneOffset())*Ti)/K)}const br=rl(0),Yo=rl(1),Fl=(rl(2),rl(3),rl(4));function dt(s){return ki(g=>{g.setUTCDate(g.getUTCDate()-(g.getUTCDay()+7-s)%7),g.setUTCHours(0,0,0,0)},(g,c)=>{g.setUTCDate(g.getUTCDate()+7*c)},(g,c)=>(c-g)/K)}rl(5),rl(6);const st=dt(0),ft=dt(1),Dn=(dt(2),dt(3),dt(4)),vs=(dt(5),dt(6),ki(s=>{s.setDate(1),s.setHours(0,0,0,0)},(s,g)=>{s.setMonth(s.getMonth()+g)},(s,g)=>g.getMonth()-s.getMonth()+12*(g.getFullYear()-s.getFullYear()),s=>s.getMonth())),Bs=ki(s=>{s.setUTCDate(1),s.setUTCHours(0,0,0,0)},(s,g)=>{s.setUTCMonth(s.getUTCMonth()+g)},(s,g)=>g.getUTCMonth()-s.getUTCMonth()+12*(g.getUTCFullYear()-s.getUTCFullYear()),s=>s.getUTCMonth()),Kr=ki(s=>{s.setMonth(0,1),s.setHours(0,0,0,0)},(s,g)=>{s.setFullYear(s.getFullYear()+g)},(s,g)=>g.getFullYear()-s.getFullYear(),s=>s.getFullYear());Kr.every=s=>isFinite(s=Math.floor(s))&&s>0?ki(g=>{g.setFullYear(Math.floor(g.getFullYear()/s)*s),g.setMonth(0,1),g.setHours(0,0,0,0)},(g,c)=>{g.setFullYear(g.getFullYear()+c*s)}):null;const ll=ki(s=>{s.setUTCMonth(0,1),s.setUTCHours(0,0,0,0)},(s,g)=>{s.setUTCFullYear(s.getUTCFullYear()+g)},(s,g)=>g.getUTCFullYear()-s.getUTCFullYear(),s=>s.getUTCFullYear());function vc(s,g,c,r,y,x){const R=[[Aa,1,Ha],[Aa,5,5e3],[Aa,15,15e3],[Aa,30,3e4],[x,1,Ti],[x,5,5*Ti],[x,15,15*Ti],[x,30,30*Ti],[y,1,Oa],[y,3,3*Oa],[y,6,6*Oa],[y,12,12*Oa],[r,1,os],[r,2,2*os],[c,1,K],[g,1,Ie],[g,3,3*Ie],[s,1,Ut]];function xt(Rt,sn,wn){const An=Math.abs(sn-Rt)/wn,_i=Xl(([,,Xn])=>Xn).right(R,An);if(_i===R.length)return s.every(lo(Rt/Ut,sn/Ut,wn));if(0===_i)return Wa.every(Math.max(lo(Rt,sn,wn),1));const[pi,Ji]=R[An/R[_i-1][2]isFinite(s=Math.floor(s))&&s>0?ki(g=>{g.setUTCFullYear(Math.floor(g.getUTCFullYear()/s)*s),g.setUTCMonth(0,1),g.setUTCHours(0,0,0,0)},(g,c)=>{g.setUTCFullYear(g.getUTCFullYear()+c*s)}):null;const[s2,Pf]=vc(ll,Bs,st,$c,t2,sl),[Hh,r2]=vc(Kr,vs,br,Qc,go,es);function o2(s){if(0<=s.y&&s.y<100){var g=new Date(-1,s.m,s.d,s.H,s.M,s.S,s.L);return g.setFullYear(s.y),g}return new Date(s.y,s.m,s.d,s.H,s.M,s.S,s.L)}function cd(s){if(0<=s.y&&s.y<100){var g=new Date(Date.UTC(-1,s.m,s.d,s.H,s.M,s.S,s.L));return g.setUTCFullYear(s.y),g}return new Date(Date.UTC(s.y,s.m,s.d,s.H,s.M,s.S,s.L))}function b1(s,g,c){return{y:s,m:g,d:c,H:0,M:0,S:0,L:0}}var k0={"-":"",_:" ",0:"0"},zr=/^\s*\d+/,O0=/^%/,A4=/[\\^$*+?|[\]().{}]/g;function Xa(s,g,c){var r=s<0?"-":"",y=(r?-s:s)+"",x=y.length;return r+(x[g.toLowerCase(),c]))}function l2(s,g,c){var r=zr.exec(g.slice(c,c+1));return r?(s.w=+r[0],c+r[0].length):-1}function Qo(s,g,c){var r=zr.exec(g.slice(c,c+1));return r?(s.u=+r[0],c+r[0].length):-1}function or(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.U=+r[0],c+r[0].length):-1}function dd(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.V=+r[0],c+r[0].length):-1}function cl(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.W=+r[0],c+r[0].length):-1}function bc(s,g,c){var r=zr.exec(g.slice(c,c+4));return r?(s.y=+r[0],c+r[0].length):-1}function ud(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.y=+r[0]+(+r[0]>68?1900:2e3),c+r[0].length):-1}function P0(s,g,c){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(g.slice(c,c+6));return r?(s.Z=r[1]?0:-(r[2]+(r[3]||"00")),c+r[0].length):-1}function c2(s,g,c){var r=zr.exec(g.slice(c,c+1));return r?(s.q=3*r[0]-3,c+r[0].length):-1}function hd(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.m=r[0]-1,c+r[0].length):-1}function Cc(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.d=+r[0],c+r[0].length):-1}function F0(s,g,c){var r=zr.exec(g.slice(c,c+3));return r?(s.m=0,s.d=+r[0],c+r[0].length):-1}function d2(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.H=+r[0],c+r[0].length):-1}function C1(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.M=+r[0],c+r[0].length):-1}function N0(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.S=+r[0],c+r[0].length):-1}function B0(s,g,c){var r=zr.exec(g.slice(c,c+3));return r?(s.L=+r[0],c+r[0].length):-1}function md(s,g,c){var r=zr.exec(g.slice(c,c+6));return r?(s.L=Math.floor(r[0]/1e3),c+r[0].length):-1}function zs(s,g,c){var r=O0.exec(g.slice(c,c+1));return r?c+r[0].length:-1}function Qs(s,g,c){var r=zr.exec(g.slice(c));return r?(s.Q=+r[0],c+r[0].length):-1}function lr(s,g,c){var r=zr.exec(g.slice(c));return r?(s.s=+r[0],c+r[0].length):-1}function Ds(s,g){return Xa(s.getDate(),g,2)}function Jc(s,g){return Xa(s.getHours(),g,2)}function qc(s,g){return Xa(s.getHours()%12||12,g,2)}function fd(s,g){return Xa(1+Qc.count(Kr(s),s),g,3)}function dl(s,g){return Xa(s.getMilliseconds(),g,3)}function pd(s,g){return dl(s,g)+"000"}function u2(s,g){return Xa(s.getMonth()+1,g,2)}function z0(s,g){return Xa(s.getMinutes(),g,2)}function h2(s,g){return Xa(s.getSeconds(),g,2)}function m2(s){var g=s.getDay();return 0===g?7:g}function L4(s,g){return Xa(br.count(Kr(s)-1,s),g,2)}function V0(s){var g=s.getDay();return g>=4||0===g?Fl(s):Fl.ceil(s)}function I4(s,g){return s=V0(s),Xa(Fl.count(Kr(s),s)+(4===Kr(s).getDay()),g,2)}function U0(s){return s.getDay()}function G0(s,g){return Xa(Yo.count(Kr(s)-1,s),g,2)}function Wh(s,g){return Xa(s.getFullYear()%100,g,2)}function x1(s,g){return Xa((s=V0(s)).getFullYear()%100,g,2)}function j0(s,g){return Xa(s.getFullYear()%1e4,g,4)}function gd(s,g){var c=s.getDay();return Xa((s=c>=4||0===c?Fl(s):Fl.ceil(s)).getFullYear()%1e4,g,4)}function H0(s){var g=s.getTimezoneOffset();return(g>0?"-":(g*=-1,"+"))+Xa(g/60|0,"0",2)+Xa(g%60,"0",2)}function f2(s,g){return Xa(s.getUTCDate(),g,2)}function k4(s,g){return Xa(s.getUTCHours(),g,2)}function W0(s,g){return Xa(s.getUTCHours()%12||12,g,2)}function Xh(s,g){return Xa(1+Ro.count(ll(s),s),g,3)}function O4(s,g){return Xa(s.getUTCMilliseconds(),g,3)}function R4(s,g){return O4(s,g)+"000"}function P4(s,g){return Xa(s.getUTCMonth()+1,g,2)}function X0(s,g){return Xa(s.getUTCMinutes(),g,2)}function F4(s,g){return Xa(s.getUTCSeconds(),g,2)}function K0(s){var g=s.getUTCDay();return 0===g?7:g}function N4(s,g){return Xa(st.count(ll(s)-1,s),g,2)}function _d(s){var g=s.getUTCDay();return g>=4||0===g?Dn(s):Dn.ceil(s)}function e1(s,g){return s=_d(s),Xa(Dn.count(ll(s),s)+(4===ll(s).getUTCDay()),g,2)}function Ql(s){return s.getUTCDay()}function Y0(s,g){return Xa(ft.count(ll(s)-1,s),g,2)}function B4(s,g){return Xa(s.getUTCFullYear()%100,g,2)}function Q0(s,g){return Xa((s=_d(s)).getUTCFullYear()%100,g,2)}function Kh(s,g){return Xa(s.getUTCFullYear()%1e4,g,4)}function Yh(s,g){var c=s.getUTCDay();return Xa((s=c>=4||0===c?Dn(s):Dn.ceil(s)).getUTCFullYear()%1e4,g,4)}function p2(){return"+0000"}function E1(){return"%"}function kc(s){return+s}function Oc(s){return Math.floor(+s/1e3)}function Z0(s){return null===s?NaN:+s}!function ul(s){(function w4(s){var g=s.dateTime,c=s.date,r=s.time,y=s.periods,x=s.days,R=s.shortDays,ue=s.months,xt=s.shortMonths,Rt=yc(y),sn=Zc(y),wn=yc(x),An=Zc(x),_i=yc(R),pi=Zc(R),Ji=yc(ue),Xn=Zc(ue),Vi=yc(xt),pa=Zc(xt),ea={a:function dr(ta){return R[ta.getDay()]},A:function ml(ta){return x[ta.getDay()]},b:function ur(ta){return xt[ta.getMonth()]},B:function ss(ta){return ue[ta.getMonth()]},c:null,d:Ds,e:Ds,f:pd,g:x1,G:gd,H:Jc,I:qc,j:fd,L:dl,m:u2,M:z0,p:function Gr(ta){return y[+(ta.getHours()>=12)]},q:function Ar(ta){return 1+~~(ta.getMonth()/3)},Q:kc,s:Oc,S:h2,u:m2,U:L4,V:I4,w:U0,W:G0,x:null,X:null,y:Wh,Y:j0,Z:H0,"%":E1},ga={a:function b0(ta){return R[ta.getUTCDay()]},A:function Hc(ta){return x[ta.getUTCDay()]},b:function nd(ta){return xt[ta.getUTCMonth()]},B:function id(ta){return ue[ta.getUTCMonth()]},c:null,d:f2,e:f2,f:R4,g:Q0,G:Yh,H:k4,I:W0,j:Xh,L:O4,m:P4,M:X0,p:function No(ta){return y[+(ta.getUTCHours()>=12)]},q:function ad(ta){return 1+~~(ta.getUTCMonth()/3)},Q:kc,s:Oc,S:F4,u:K0,U:N4,V:e1,w:Ql,W:Y0,x:null,X:null,y:B4,Y:Kh,Z:p2,"%":E1},Na={a:function bs(ta,ka,Qa){var Li=_i.exec(ka.slice(Qa));return Li?(ta.w=pi.get(Li[0].toLowerCase()),Qa+Li[0].length):-1},A:function Gs(ta,ka,Qa){var Li=wn.exec(ka.slice(Qa));return Li?(ta.w=An.get(Li[0].toLowerCase()),Qa+Li[0].length):-1},b:function Da(ta,ka,Qa){var Li=Vi.exec(ka.slice(Qa));return Li?(ta.m=pa.get(Li[0].toLowerCase()),Qa+Li[0].length):-1},B:function Rs(ta,ka,Qa){var Li=Ji.exec(ka.slice(Qa));return Li?(ta.m=Xn.get(Li[0].toLowerCase()),Qa+Li[0].length):-1},c:function ts(ta,ka,Qa){return Os(ta,g,ka,Qa)},d:Cc,e:Cc,f:md,g:ud,G:bc,H:d2,I:d2,j:F0,L:B0,m:hd,M:C1,p:function Po(ta,ka,Qa){var Li=Rt.exec(ka.slice(Qa));return Li?(ta.p=sn.get(Li[0].toLowerCase()),Qa+Li[0].length):-1},q:c2,Q:Qs,s:lr,S:N0,u:Qo,U:or,V:dd,w:l2,W:cl,x:function Fo(ta,ka,Qa){return Os(ta,c,ka,Qa)},X:function Cr(ta,ka,Qa){return Os(ta,r,ka,Qa)},y:ud,Y:bc,Z:P0,"%":zs};function qi(ta,ka){return function(Qa){var Zo,ba,Ir,Li=[],Lr=-1,Cs=0,fl=ta.length;for(Qa instanceof Date||(Qa=new Date(+Qa));++Lr53)return null;"w"in Li||(Li.w=1),"Z"in Li?(fl=(Cs=cd(b1(Li.y,0,1))).getUTCDay(),Cs=fl>4||0===fl?ft.ceil(Cs):ft(Cs),Cs=Ro.offset(Cs,7*(Li.V-1)),Li.y=Cs.getUTCFullYear(),Li.m=Cs.getUTCMonth(),Li.d=Cs.getUTCDate()+(Li.w+6)%7):(fl=(Cs=o2(b1(Li.y,0,1))).getDay(),Cs=fl>4||0===fl?Yo.ceil(Cs):Yo(Cs),Cs=Qc.offset(Cs,7*(Li.V-1)),Li.y=Cs.getFullYear(),Li.m=Cs.getMonth(),Li.d=Cs.getDate()+(Li.w+6)%7)}else("W"in Li||"U"in Li)&&("w"in Li||(Li.w="u"in Li?Li.u%7:"W"in Li?1:0),fl="Z"in Li?cd(b1(Li.y,0,1)).getUTCDay():o2(b1(Li.y,0,1)).getDay(),Li.m=0,Li.d="W"in Li?(Li.w+6)%7+7*Li.W-(fl+5)%7:Li.w+7*Li.U-(fl+6)%7);return"Z"in Li?(Li.H+=Li.Z/100|0,Li.M+=Li.Z%100,cd(Li)):o2(Li)}}function Os(ta,ka,Qa,Li){for(var Zo,ba,Lr=0,Cs=ka.length,fl=Qa.length;Lr=fl)return-1;if(37===(Zo=ka.charCodeAt(Lr++))){if(Zo=ka.charAt(Lr++),!(ba=Na[Zo in k0?ka.charAt(Lr++):Zo])||(Li=ba(ta,Qa,Li))<0)return-1}else if(Zo!=Qa.charCodeAt(Li++))return-1}return Li}return ea.x=qi(c,ea),ea.X=qi(r,ea),ea.c=qi(g,ea),ga.x=qi(c,ga),ga.X=qi(r,ga),ga.c=qi(g,ga),{format:function(ta){var ka=qi(ta+="",ea);return ka.toString=function(){return ta},ka},parse:function(ta){var ka=ks(ta+="",!1);return ka.toString=function(){return ta},ka},utcFormat:function(ta){var ka=qi(ta+="",ga);return ka.toString=function(){return ta},ka},utcParse:function(ta){var ka=ks(ta+="",!0);return ka.toString=function(){return ta},ka}}})(s)}({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});const U4=Xl(Xr).right,v2=(Xl(Z0),U4);function G4(s,g){return s=+s,g=+g,function(c){return Math.round(s*(1-c)+g*c)}}function H4(s){return+s}var qa=[0,1];function xc(s){return s}function y2(s,g){return(g-=s=+s)?function(c){return(c-s)/g}:function j4(s){return function(){return s}}(isNaN(g)?NaN:.5)}function M1(s,g,c){var r=s[0],y=s[1],x=g[0],R=g[1];return yg&&(c=s,s=g,g=c),function(r){return Math.max(s,Math.min(g,r))}}(s[0],s[An-1])),ue=An>2?W4:M1,xt=Rt=null,wn}function wn(An){return null==An||isNaN(An=+An)?x:(xt||(xt=ue(s.map(r),g,c)))(r(R(An)))}return wn.invert=function(An){return R(y((Rt||(Rt=ue(g,s.map(r),rs)))(An)))},wn.domain=function(An){return arguments.length?(s=Array.from(An,H4),sn()):s.slice()},wn.range=function(An){return arguments.length?(g=Array.from(An),sn()):g.slice()},wn.rangeRound=function(An){return g=Array.from(An),c=G4,sn()},wn.clamp=function(An){return arguments.length?(R=!!An||xc,sn()):R!==xc},wn.interpolate=function(An){return arguments.length?(c=An,sn()):c},wn.unknown=function(An){return arguments.length?(x=An,wn):x},function(An,_i){return r=An,y=_i,sn()}}()(xc,xc)}function t1(s,g){switch(arguments.length){case 0:break;case 1:this.range(s);break;default:this.range(g).domain(s)}return this}var bl,K4=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function Rc(s){if(!(g=K4.exec(s)))throw new Error("invalid format: "+s);var g;return new Ec({fill:g[1],align:g[2],sign:g[3],symbol:g[4],zero:g[5],width:g[6],comma:g[7],precision:g[8]&&g[8].slice(1),trim:g[9],type:g[10]})}function Ec(s){this.fill=void 0===s.fill?" ":s.fill+"",this.align=void 0===s.align?">":s.align+"",this.sign=void 0===s.sign?"-":s.sign+"",this.symbol=void 0===s.symbol?"":s.symbol+"",this.zero=!!s.zero,this.width=void 0===s.width?void 0:+s.width,this.comma=!!s.comma,this.precision=void 0===s.precision?void 0:+s.precision,this.trim=!!s.trim,this.type=void 0===s.type?"":s.type+""}function Cd(s,g){if(!isFinite(s)||0===s)return null;var c=(s=g?s.toExponential(g-1):s.toExponential()).indexOf("e"),r=s.slice(0,c);return[r.length>1?r[0]+r.slice(2):r,+s.slice(c+1)]}function Mc(s){return(s=Cd(Math.abs(s)))?s[1]:NaN}function rc(s,g){var c=Cd(s,g);if(!c)return s+"";var r=c[0],y=c[1];return y<0?"0."+new Array(-y).join("0")+r:r.length>y+1?r.slice(0,y+1)+"."+r.slice(y+1):r+new Array(y-r.length+2).join("0")}Rc.prototype=Ec.prototype,Ec.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};const I1={"%":(s,g)=>(100*s).toFixed(g),b:s=>Math.round(s).toString(2),c:s=>s+"",d:function eu(s){return Math.abs(s=Math.round(s))>=1e21?s.toLocaleString("en").replace(/,/g,""):s.toString(10)},e:(s,g)=>s.toExponential(g),f:(s,g)=>s.toFixed(g),g:(s,g)=>s.toPrecision(g),o:s=>Math.round(s).toString(8),p:(s,g)=>rc(100*s,g),r:rc,s:function L1(s,g){var c=Cd(s,g);if(!c)return bl=void 0,s.toPrecision(g);var r=c[0],y=c[1],x=y-(bl=3*Math.max(-8,Math.min(8,Math.floor(y/3))))+1,R=r.length;return x===R?r:x>R?r+new Array(x-R+1).join("0"):x>0?r.slice(0,x)+"."+r.slice(x):"0."+new Array(1-x).join("0")+Cd(s,Math.max(0,g+x-1))[0]},X:s=>Math.round(s).toString(16).toUpperCase(),x:s=>Math.round(s).toString(16)};function Yr(s){return s}var k1,C2,Y4,n1=Array.prototype.map,su=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"];function $4(s){var g=s.domain;return s.ticks=function(c){var r=g();return function v1(s,g,c){if(!((c=+c)>0))return[];if((s=+s)===(g=+g))return[s];const r=g=y))return[];const ue=x-y+1,xt=new Array(ue);if(r)if(R<0)for(let Rt=0;Rt0;){if((Rt=ic(R,ue,c))===xt)return r[y]=R,r[x]=ue,g(r);if(Rt>0)R=Math.floor(R/Rt)*Rt,ue=Math.ceil(ue/Rt)*Rt;else{if(!(Rt<0))break;R=Math.ceil(R*Rt)/Rt,ue=Math.floor(ue*Rt)/Rt}xt=Rt}return s},s}function lc(){var s=yd();return s.copy=function(){return function S1(s,g){return g.domain(s.domain()).range(s.range()).interpolate(s.interpolate()).clamp(s.clamp()).unknown(s.unknown())}(s,lc())},t1.apply(s,arguments),$4(s)}function ru(s,g,c){s=+s,g=+g,c=(y=arguments.length)<2?(g=s,s=0,1):y<3?1:+c;for(var r=-1,y=0|Math.max(0,Math.ceil((g-s)/c)),x=new Array(y);++r0&&ue>0&&(xt+ue+1>r&&(ue=Math.max(1,r-xt)),x.push(c.substring(y-=ue,y+ue)),!((xt+=ue+1)>r));)ue=s[R=(R+1)%s.length];return x.reverse().join(g)}}(n1.call(s.grouping,Number),s.thousands+""),c=void 0===s.currency?"":s.currency[0]+"",r=void 0===s.currency?"":s.currency[1]+"",y=void 0===s.decimal?".":s.decimal+"",x=void 0===s.numerals?Yr:function iu(s){return function(g){return g.replace(/[0-9]/g,function(c){return s[+c]})}}(n1.call(s.numerals,String)),R=void 0===s.percent?"%":s.percent+"",ue=void 0===s.minus?"\u2212":s.minus+"",xt=void 0===s.nan?"NaN":s.nan+"";function Rt(wn,An){var _i=(wn=Rc(wn)).fill,pi=wn.align,Ji=wn.sign,Xn=wn.symbol,Vi=wn.zero,pa=wn.width,ea=wn.comma,ga=wn.precision,Na=wn.trim,qi=wn.type;"n"===qi?(ea=!0,qi="g"):I1[qi]||(void 0===ga&&(ga=12),Na=!0,qi="g"),(Vi||"0"===_i&&"="===pi)&&(Vi=!0,_i="0",pi="=");var ks=(An&&void 0!==An.prefix?An.prefix:"")+("$"===Xn?c:"#"===Xn&&/[boxX]/.test(qi)?"0"+qi.toLowerCase():""),Os=("$"===Xn?r:/[%p]/.test(qi)?R:"")+(An&&void 0!==An.suffix?An.suffix:""),Po=I1[qi],bs=/[defgprs%]/.test(qi);function Gs(Da){var Fo,Cr,dr,Rs=ks,ts=Os;if("c"===qi)ts=Po(Da)+ts,Da="";else{var ml=(Da=+Da)<0||1/Da<0;if(Da=isNaN(Da)?xt:Po(Math.abs(Da),ga),Na&&(Da=function au(s){e:for(var y,g=s.length,c=1,r=-1;c0&&(r=0)}return r>0?s.slice(0,r)+s.slice(y+1):s}(Da)),ml&&0==+Da&&"+"!==Ji&&(ml=!1),Rs=(ml?"("===Ji?Ji:ue:"-"===Ji||"("===Ji?"":Ji)+Rs,ts=("s"!==qi||isNaN(Da)||void 0===bl?"":su[8+bl/3])+ts+(ml&&"("===Ji?")":""),bs)for(Fo=-1,Cr=Da.length;++Fo(dr=Da.charCodeAt(Fo))||dr>57){ts=(46===dr?y+Da.slice(Fo+1):Da.slice(Fo))+ts,Da=Da.slice(0,Fo);break}}ea&&!Vi&&(Da=g(Da,1/0));var ur=Rs.length+Da.length+ts.length,ss=ur>1)+Rs+Da+ts+ss.slice(ur);break;default:Da=ss+Rs+Da+ts}return x(Da)}return ga=void 0===ga?6:/[gprs]/.test(qi)?Math.max(1,Math.min(21,ga)):Math.max(0,Math.min(20,ga)),Gs.toString=function(){return wn+""},Gs}return{format:Rt,formatPrefix:function sn(wn,An){var _i=3*Math.max(-8,Math.min(8,Math.floor(Mc(An)/3))),pi=Math.pow(10,-_i),Ji=Rt(((wn=Rc(wn)).type="f",wn),{suffix:su[8+_i/3]});return function(Xn){return Ji(pi*Xn)}}}}(s),C2=k1.format,Y4=k1.formatPrefix}({thousands:",",grouping:[3],currency:["$",""]});class ou extends Map{constructor(g,c=cu){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:c}}),null!=g)for(const[r,y]of g)this.set(r,y)}get(g){return super.get(O1(this,g))}has(g){return super.has(O1(this,g))}set(g,c){return super.set(function Ed({_intern:s,_key:g},c){const r=g(c);return s.has(r)?s.get(r):(s.set(r,c),c)}(this,g),c)}delete(g){return super.delete(function Sc({_intern:s,_key:g},c){const r=g(c);return s.has(r)&&(c=s.get(r),s.delete(r)),c}(this,g))}}function O1({_intern:s,_key:g},c){const r=g(c);return s.has(r)?s.get(r):c}function cu(s){return null!==s&&"object"==typeof s?s.valueOf():s}Set;const E2=Symbol("implicit");function Md(){var s=new ou,g=[],c=[],r=E2;function y(x){let R=s.get(x);if(void 0===R){if(r!==E2)return r;s.set(x,R=g.push(x)-1)}return c[R%c.length]}return y.domain=function(x){if(!arguments.length)return g.slice();g=[],s=new ou;for(const R of x)s.has(R)||s.set(R,g.push(R)-1);return y},y.range=function(x){return arguments.length?(c=Array.from(x),y):c.slice()},y.unknown=function(x){return arguments.length?(r=x,y):r},y.copy=function(){return Md(g,c).unknown(r)},t1.apply(y,arguments),y}function Pc(){var x,R,s=Md().unknown(void 0),g=s.domain,c=s.range,r=0,y=1,ue=!1,xt=0,Rt=0,sn=.5;function wn(){var An=g().length,_i=y=1)return+c(s[r-1],r-1,s);var r,y=(r-1)*g,x=Math.floor(y),R=+c(s[x],x,s);return R+(+c(s[x+1],x+1,s)-R)*(y-x)}}function P1(){var r,s=[],g=[],c=[];function y(){var R=0,ue=Math.max(1,g.length);for(c=new Array(ue-1);++R0?c[ue-1]:s[0],ue({model:s});function tm(s,g){}function Mu(s,g){if(1&s&&(i.j41(0,"span"),i.DNE(1,tm,0,0,"ng-template",5),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("ngTemplateOutlet",c.template)("ngTemplateOutletContext",i.eq3(2,Eu,c.context))}}function P2(s,g){if(1&s&&i.nrm(0,"span",6),2&s){const c=i.XpG();i.Y8G("innerHTML",c.title,i.npT)}}function F2(s,g){if(1&s&&(i.j41(0,"header",4)(1,"span",5),i.EFF(2),i.k0s()()),2&s){const c=i.XpG();i.R7$(2),i.JRh(c.title)}}function N2(s,g){if(1&s){const c=i.RV6();i.j41(0,"li",6)(1,"ngx-charts-legend-entry",7),i.bIt("select",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.labelClick.emit(y))})("activate",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.activate(y))})("deactivate",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.deactivate(y))}),i.k0s()()}if(2&s){const c=g.$implicit,r=i.XpG();i.R7$(),i.Y8G("label",c.label)("formattedLabel",c.formattedLabel)("color",c.color)("isActive",r.isActive(c))}}const B2=["*"];function l3(s,g){if(1&s&&i.nrm(0,"ngx-charts-scale-legend",4),2&s){const c=i.XpG();i.Y8G("horizontal",c.legendOptions&&c.legendOptions.position===c.LegendPosition.Below)("valueRange",c.legendOptions.domain)("colors",c.legendOptions.colors)("height",c.view[1])("width",c.legendWidth)}}function c3(s,g){if(1&s){const c=i.RV6();i.j41(0,"ngx-charts-legend",5),i.bIt("labelClick",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.legendLabelClick.emit(y))})("labelActivate",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.legendLabelActivate.emit(y))})("labelDeactivate",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.legendLabelDeactivate.emit(y))}),i.k0s()}if(2&s){const c=i.XpG();i.Y8G("horizontal",c.legendOptions&&c.legendOptions.position===c.LegendPosition.Below)("data",c.legendOptions.domain)("title",c.legendOptions.title)("colors",c.legendOptions.colors)("height",c.view[1])("width",c.legendWidth)("activeEntries",c.activeEntries)}}const d3=["ngx-charts-axis-label",""],Su=["ticksel"],z2=["ngx-charts-x-axis-ticks",""];function u3(s,g){1&s&&(d.qSk(),i.eu8(0))}function wd(s,g){if(1&s&&(d.qSk(),i.j41(0,"tspan",12),i.EFF(1),i.k0s()),2&s){const c=g.$implicit;i.BMQ("y",12*g.index),i.R7$(),i.SpI(" ",c," ")}}function h3(s,g){if(1&s&&(d.qSk(),i.qex(0),i.DNE(1,wd,2,2,"tspan",11),i.bVm()),2&s){const c=g.ngIf;i.R7$(),i.Y8G("ngForOf",c)}}function Ad(s,g){if(1&s&&i.DNE(0,h3,2,1,"ng-container",8),2&s){const c=i.XpG(2).$implicit,r=i.XpG();i.Y8G("ngIf",r.tickChunks(c))}}function Ld(s,g){if(1&s&&i.EFF(0),2&s){const c=i.XpG().ngIf,r=i.XpG(2);i.SpI(" ",r.tickTrim(c)," ")}}function nm(s,g){if(1&s&&(d.qSk(),i.qex(0),i.j41(1,"title"),i.EFF(2),i.k0s(),i.j41(3,"text",9),i.DNE(4,u3,1,0,"ng-container",10),i.k0s(),i.DNE(5,Ad,1,1,"ng-template",null,1,i.C5r)(7,Ld,1,1,"ng-template",null,2,i.C5r),i.bVm()),2&s){const c=g.ngIf,r=i.sdS(6),y=i.sdS(8),x=i.XpG(2);i.R7$(2),i.JRh(c),i.R7$(),i.BMQ("text-anchor",x.textAnchor)("transform",x.textTransform),i.R7$(),i.Y8G("ngIf",x.isWrapTicksSupported)("ngIfThen",r)("ngIfElse",y)}}function Tu(s,g){if(1&s&&(d.qSk(),i.j41(0,"g",7),i.DNE(1,nm,9,6,"ng-container",8),i.k0s()),2&s){const c=g.$implicit,r=i.XpG();i.BMQ("transform",r.tickTransform(c)),i.R7$(),i.Y8G("ngIf",r.tickFormat(c))}}function B1(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.nrm(1,"line",13),i.k0s()),2&s){const c=i.XpG(2);i.BMQ("transform",c.gridLineTransform()),i.R7$(),i.BMQ("y1",-c.gridLineHeight)}}function Id(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.DNE(1,B1,2,2,"g",8),i.k0s()),2&s){const c=g.$implicit,r=i.XpG();i.BMQ("transform",r.tickTransform(c)),i.R7$(),i.Y8G("ngIf",r.showGridLines)}}function m3(s,g){if(1&s&&(d.qSk(),i.nrm(0,"path",14)),2&s){const c=i.XpG();i.BMQ("d",c.referenceAreaPath)("transform",c.gridLineTransform())}}function V2(s,g){if(1&s&&(d.qSk(),i.j41(0,"g")(1,"title"),i.EFF(2),i.k0s(),i.j41(3,"text",17),i.EFF(4),i.k0s()()),2&s){const c=i.XpG(2).$implicit,r=i.XpG();i.R7$(2),i.JRh(r.tickTrim(r.tickFormat(c.value))),i.R7$(2),i.SpI(" ",c.name," ")}}function f3(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.nrm(1,"line",16),i.DNE(2,V2,5,2,"g",8),i.k0s()),2&s){const c=i.XpG().$implicit,r=i.XpG();i.BMQ("transform",r.transform(c.value)),i.R7$(),i.BMQ("y2",25+r.gridLineHeight)("transform",r.gridLineTransform()),i.R7$(),i.Y8G("ngIf",r.showRefLabels)}}function kd(s,g){if(1&s&&(d.qSk(),i.j41(0,"g",15),i.DNE(1,f3,3,4,"g",8),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("ngIf",c.showRefLines)}}const p3=["ngx-charts-x-axis",""];function cc(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",2),i.bIt("dimensionsChanged",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.emitTicksHeight(y))}),i.k0s()}if(2&s){const c=i.XpG();i.Y8G("trimTicks",c.trimTicks)("rotateTicks",c.rotateTicks)("maxTickLength",c.maxTickLength)("tickFormatting",c.tickFormatting)("tickArguments",c.tickArguments)("tickStroke",c.tickStroke)("scale",c.xScale)("orient",c.xOrient)("showGridLines",c.showGridLines)("gridLineHeight",c.dims.height)("referenceLines",c.referenceLines)("showRefLines",c.showRefLines)("showRefLabels",c.showRefLabels)("width",c.dims.width)("tickValues",c.ticks)("wrapTicks",c.wrapTicks)}}function Nc(s,g){if(1&s&&(d.qSk(),i.nrm(0,"g",3)),2&s){const c=i.XpG();i.Y8G("label",c.labelText)("offset",c.labelOffset)("orient",c.orientation.Bottom)("height",c.dims.height)("width",c.dims.width)}}const im=["ngx-charts-y-axis-ticks",""];function am(s,g){1&s&&(d.qSk(),i.eu8(0))}function z1(s,g){if(1&s&&(d.qSk(),i.j41(0,"tspan",13),i.EFF(1),i.k0s()),2&s){const c=g.$implicit,r=g.index,y=i.XpG(6);i.BMQ("y",r*(8+y.tickSpacing)),i.R7$(),i.SpI(" ",c," ")}}function g3(s,g){if(1&s&&(d.qSk(),i.qex(0),i.DNE(1,z1,2,2,"tspan",12),i.bVm()),2&s){const c=i.XpG().ngIf;i.R7$(),i.Y8G("ngForOf",c)}}function Du(s,g){if(1&s&&(d.qSk(),i.qex(0),i.DNE(1,g3,2,1,"ng-container",11),i.bVm()),2&s){const c=g.ngIf;i.XpG(2);const r=i.sdS(8);i.R7$(),i.Y8G("ngIf",c.length>1)("ngIfElse",r)}}function wu(s,g){if(1&s&&i.DNE(0,Du,2,2,"ng-container",8),2&s){const c=i.XpG(2).$implicit,r=i.XpG();i.Y8G("ngIf",r.tickChunks(c))}}function Au(s,g){if(1&s&&i.EFF(0),2&s){const c=i.XpG().ngIf,r=i.XpG(2);i.SpI(" ",r.tickTrim(c)," ")}}function _3(s,g){if(1&s&&(d.qSk(),i.qex(0),i.j41(1,"title"),i.EFF(2),i.k0s(),i.j41(3,"text",9),i.DNE(4,am,1,0,"ng-container",10),i.k0s(),i.DNE(5,wu,1,1,"ng-template",null,1,i.C5r)(7,Au,1,1,"ng-template",null,2,i.C5r),i.bVm()),2&s){const c=g.ngIf,r=i.sdS(6),y=i.sdS(8),x=i.XpG(2);i.R7$(2),i.JRh(c),i.R7$(),i.xc7("font-size","12px"),i.BMQ("dy",x.dy)("x",x.x1)("y",x.y1)("text-anchor",x.textAnchor),i.R7$(),i.Y8G("ngIf",x.wrapTicks)("ngIfThen",r)("ngIfElse",y)}}function Lu(s,g){if(1&s&&(d.qSk(),i.j41(0,"g",7),i.DNE(1,_3,9,10,"ng-container",8),i.k0s()),2&s){const c=g.$implicit,r=i.XpG();i.BMQ("transform",r.transform(c)),i.R7$(),i.Y8G("ngIf",r.tickFormat(c))}}function v3(s,g){if(1&s&&(d.qSk(),i.nrm(0,"path",14)),2&s){const c=i.XpG();i.BMQ("d",c.referenceAreaPath)("transform",c.gridLineTransform())}}function Iu(s,g){if(1&s&&(d.qSk(),i.nrm(0,"line",16)),2&s){const c=i.XpG(3);i.BMQ("x2",c.gridLineWidth)}}function y3(s,g){if(1&s&&(d.qSk(),i.nrm(0,"line",16)),2&s){const c=i.XpG(3);i.BMQ("x2",-c.gridLineWidth)}}function U2(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.DNE(1,Iu,1,1,"line",15)(2,y3,1,1,"line",15),i.k0s()),2&s){const c=i.XpG(2);i.BMQ("transform",c.gridLineTransform()),i.R7$(),i.Y8G("ngIf",c.orient===c.Orientation.Left),i.R7$(),i.Y8G("ngIf",c.orient===c.Orientation.Right)}}function sm(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.DNE(1,U2,3,3,"g",8),i.k0s()),2&s){const c=g.$implicit,r=i.XpG();i.BMQ("transform",r.transform(c)),i.R7$(),i.Y8G("ngIf",r.showGridLines)}}function ku(s,g){if(1&s&&(d.qSk(),i.j41(0,"g")(1,"title"),i.EFF(2),i.k0s(),i.j41(3,"text",19),i.EFF(4),i.k0s()()),2&s){const c=i.XpG(2).$implicit,r=i.XpG();i.R7$(2),i.JRh(r.tickTrim(r.tickFormat(c.value))),i.R7$(),i.BMQ("dy",r.dy)("y",-6)("x",r.gridLineWidth)("text-anchor",r.textAnchor),i.R7$(),i.SpI(" ",c.name," ")}}function rm(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.nrm(1,"line",18),i.DNE(2,ku,5,6,"g",8),i.k0s()),2&s){const c=i.XpG().$implicit,r=i.XpG();i.BMQ("transform",r.transform(c.value)),i.R7$(),i.BMQ("x2",r.gridLineWidth),i.R7$(),i.Y8G("ngIf",r.showRefLabels)}}function G2(s,g){if(1&s&&(d.qSk(),i.j41(0,"g",17),i.DNE(1,rm,3,3,"g",8),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("ngIf",c.showRefLines)}}const j2=["ngx-charts-y-axis",""];function Ff(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",2),i.bIt("dimensionsChanged",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.emitTicksWidth(y))}),i.k0s()}if(2&s){const c=i.XpG();i.Y8G("trimTicks",c.trimTicks)("maxTickLength",c.maxTickLength)("tickFormatting",c.tickFormatting)("tickArguments",c.tickArguments)("tickValues",c.ticks)("tickStroke",c.tickStroke)("scale",c.yScale)("orient",c.yOrient)("showGridLines",c.showGridLines)("gridLineWidth",c.dims.width)("referenceLines",c.referenceLines)("showRefLines",c.showRefLines)("showRefLabels",c.showRefLabels)("height",c.dims.height)("wrapTicks",c.wrapTicks)}}function Vr(s,g){if(1&s&&(d.qSk(),i.nrm(0,"g",3)),2&s){const c=i.XpG();i.Y8G("label",c.labelText)("offset",c.labelOffset)("orient",c.yOrient)("height",c.dims.height)("width",c.dims.width)}}const b3=["ngx-charts-svg-linear-gradient",""];function s1(s,g){if(1&s&&(d.qSk(),i.nrm(0,"stop")),2&s){const c=g.$implicit;i.xc7("stop-color",c.color)("stop-opacity",c.opacity),i.BMQ("offset",c.offset+"%")}}const Fu=["ngx-charts-grid-panel",""],Nu=["ngx-charts-grid-panel-series",""];function Bc(s,g){if(1&s&&(d.qSk(),i.nrm(0,"g",1)),2&s){const c=g.$implicit;i.AVh("grid-panel",!0)("odd","odd"===c.class)("even","even"===c.class),i.Y8G("height",c.height)("width",c.width)("x",c.x)("y",c.y)}}const w3=["tooltipTemplate"],l1=(s,g)=>[s,g],Cl=".ngx-charts-outer{animation:chartFadeIn linear .6s}@keyframes chartFadeIn{0%{opacity:0}20%{opacity:0}to{opacity:1}}.ngx-charts{float:left;overflow:visible}.ngx-charts .circle,.ngx-charts .cell,.ngx-charts .bar,.ngx-charts .node,.ngx-charts .link,.ngx-charts .arc{cursor:pointer}.ngx-charts .bar.active,.ngx-charts .bar:hover,.ngx-charts .cell.active,.ngx-charts .cell:hover,.ngx-charts .arc.active,.ngx-charts .arc:hover,.ngx-charts .node.active,.ngx-charts .node:hover,.ngx-charts .link.active,.ngx-charts .link:hover,.ngx-charts .card.active,.ngx-charts .card:hover{opacity:.8;transition:opacity .1s ease-in-out}.ngx-charts .bar:focus,.ngx-charts .cell:focus,.ngx-charts .arc:focus,.ngx-charts .node:focus,.ngx-charts .link:focus,.ngx-charts .card:focus{outline:none}.ngx-charts .bar.hidden,.ngx-charts .cell.hidden,.ngx-charts .arc.hidden,.ngx-charts .node.hidden,.ngx-charts .link.hidden,.ngx-charts .card.hidden{display:none}.ngx-charts g:focus{outline:none}.ngx-charts .line-series.inactive,.ngx-charts .line-series-range.inactive,.ngx-charts .polar-series-path.inactive,.ngx-charts .polar-series-area.inactive,.ngx-charts .area-series.inactive{transition:opacity .1s ease-in-out;opacity:.2}.ngx-charts .line-highlight{display:none}.ngx-charts .line-highlight.active{display:block}.ngx-charts .area{opacity:.6}.ngx-charts .circle:hover{cursor:pointer}.ngx-charts .label{font-size:12px;font-weight:400}.ngx-charts .tooltip-anchor{fill:#000}.ngx-charts .gridline-path{stroke:#ddd;stroke-width:1;fill:none}.ngx-charts .refline-path{stroke:#a8b2c7;stroke-width:1;stroke-dasharray:5;stroke-dashoffset:5}.ngx-charts .refline-label{font-size:9px}.ngx-charts .reference-area{fill-opacity:.05;fill:#000}.ngx-charts .gridline-path-dotted{stroke:#ddd;stroke-width:1;fill:none;stroke-dasharray:1,20;stroke-dashoffset:3}.ngx-charts .grid-panel rect{fill:none}.ngx-charts .grid-panel.odd rect{fill:#0000000d}\n",O3=["ngx-charts-bar",""];function R3(s,g){if(1&s&&(d.qSk(),i.j41(0,"defs"),i.nrm(1,"g",2),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("orientation",c.orientation)("name",c.gradientId)("stops",c.gradientStops)}}const P3=["ngx-charts-bar-label",""],e0=["ngx-charts-series-vertical",""];function t0(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",2),i.bIt("select",function(y){d.eBV(c);const x=i.XpG(2);return d.Njj(x.onClick(y))})("activate",function(y){d.eBV(c);const x=i.XpG(2);return d.Njj(x.activate.emit(y))})("deactivate",function(y){d.eBV(c);const x=i.XpG(2);return d.Njj(x.deactivate.emit(y))}),i.k0s()}if(2&s){const c=g.$implicit,r=i.XpG(2);i.Y8G("@animationState","active")("@.disabled",!r.animations)("width",c.width)("height",c.height)("x",c.x)("y",c.y)("fill",c.color)("stops",c.gradientStops)("data",c.data)("orientation",r.barOrientation.Vertical)("roundEdges",c.roundEdges)("gradient",r.gradient)("ariaLabel",c.ariaLabel)("isActive",r.isActive(c.data))("tooltipDisabled",r.tooltipDisabled)("tooltipPlacement",r.tooltipPlacement)("tooltipType",r.tooltipType)("tooltipTitle",r.tooltipTemplate?void 0:c.tooltipText)("tooltipTemplate",r.tooltipTemplate)("tooltipContext",c.data)("noBarWhenZero",r.noBarWhenZero)("animations",r.animations)}}function ju(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.DNE(1,t0,1,22,"g",1),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("ngForOf",c.bars)("ngForTrackBy",c.trackBy)}}function ym(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",2),i.bIt("select",function(y){d.eBV(c);const x=i.XpG(2);return d.Njj(x.onClick(y))})("activate",function(y){d.eBV(c);const x=i.XpG(2);return d.Njj(x.activate.emit(y))})("deactivate",function(y){d.eBV(c);const x=i.XpG(2);return d.Njj(x.deactivate.emit(y))}),i.k0s()}if(2&s){const c=g.$implicit,r=i.XpG(2);i.Y8G("width",c.width)("height",c.height)("x",c.x)("y",c.y)("fill",c.color)("stops",c.gradientStops)("data",c.data)("orientation",r.barOrientation.Vertical)("roundEdges",c.roundEdges)("gradient",r.gradient)("ariaLabel",c.ariaLabel)("isActive",r.isActive(c.data))("tooltipDisabled",r.tooltipDisabled)("tooltipPlacement",r.tooltipPlacement)("tooltipType",r.tooltipType)("tooltipTitle",r.tooltipTemplate?void 0:c.tooltipText)("tooltipTemplate",r.tooltipTemplate)("tooltipContext",c.data)("noBarWhenZero",r.noBarWhenZero)("animations",r.animations)}}function bm(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.DNE(1,ym,1,20,"g",1),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("ngForOf",c.bars)("ngForTrackBy",c.trackBy)}}function Hu(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",4),i.bIt("dimensionsChanged",function(y){const x=d.eBV(c).index,R=i.XpG(2);return d.Njj(R.dataLabelHeightChanged.emit({size:y,index:x}))}),i.k0s()}if(2&s){const c=g.$implicit,r=i.XpG(2);i.Y8G("barX",c.x)("barY",c.y)("barWidth",c.width)("barHeight",c.height)("value",c.total)("valueFormatting",r.dataLabelFormatting)("orientation",r.barOrientation.Vertical)}}function Wu(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.DNE(1,Hu,1,7,"g",3),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("ngForOf",c.barsForDataLabels)("ngForTrackBy",c.trackDataLabelBy)}}function Xu(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",5),i.bIt("dimensionsChanged",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.updateXAxisHeight(y))}),i.k0s()}if(2&s){const c=i.XpG();i.Y8G("xScale",c.xScale)("dims",c.dims)("showGridLines",c.showGridLines)("showLabel",c.showXAxisLabel)("labelText",c.xAxisLabel)("trimTicks",c.trimXAxisTicks)("rotateTicks",c.rotateXAxisTicks)("maxTickLength",c.maxXAxisTickLength)("tickFormatting",c.xAxisTickFormatting)("ticks",c.xAxisTicks)("xAxisOffset",c.dataLabelMaxHeight.negative)("wrapTicks",c.wrapTicks)}}function Cm(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",6),i.bIt("dimensionsChanged",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.updateYAxisWidth(y))}),i.k0s()}if(2&s){const c=i.XpG();i.Y8G("yScale",c.yScale)("dims",c.dims)("showGridLines",c.showGridLines)("showLabel",c.showYAxisLabel)("labelText",c.yAxisLabel)("trimTicks",c.trimYAxisTicks)("maxTickLength",c.maxYAxisTickLength)("tickFormatting",c.yAxisTickFormatting)("ticks",c.yAxisTicks)("referenceLines",c.referenceLines)("showRefLines",c.showRefLines)("showRefLabels",c.showRefLabels)("wrapTicks",c.wrapTicks)}}function Ku(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",6),i.bIt("dimensionsChanged",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.updateXAxisHeight(y))}),i.k0s()}if(2&s){const c=i.XpG();i.Y8G("xScale",c.groupScale)("dims",c.dims)("showLabel",c.showXAxisLabel)("labelText",c.xAxisLabel)("trimTicks",c.trimXAxisTicks)("rotateTicks",c.rotateXAxisTicks)("maxTickLength",c.maxXAxisTickLength)("tickFormatting",c.xAxisTickFormatting)("ticks",c.xAxisTicks)("xAxisOffset",c.dataLabelMaxHeight.negative)("wrapTicks",c.wrapTicks)}}function j3(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",7),i.bIt("dimensionsChanged",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.updateYAxisWidth(y))}),i.k0s()}if(2&s){const c=i.XpG();i.Y8G("yScale",c.valueScale)("dims",c.dims)("showGridLines",c.showGridLines)("showLabel",c.showYAxisLabel)("labelText",c.yAxisLabel)("trimTicks",c.trimYAxisTicks)("maxTickLength",c.maxYAxisTickLength)("tickFormatting",c.yAxisTickFormatting)("ticks",c.yAxisTicks)("wrapTicks",c.wrapTicks)}}function xm(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",9),i.bIt("select",function(y){const x=d.eBV(c).$implicit,R=i.XpG(2);return d.Njj(R.onClick(y,x))})("activate",function(y){const x=d.eBV(c).$implicit,R=i.XpG(2);return d.Njj(R.onActivate(y,x))})("deactivate",function(y){const x=d.eBV(c).$implicit,R=i.XpG(2);return d.Njj(R.onDeactivate(y,x))})("dataLabelHeightChanged",function(y){const x=d.eBV(c).index,R=i.XpG(2);return d.Njj(R.onDataLabelMaxHeightChanged(y,x))}),i.k0s()}if(2&s){const c=g.$implicit,r=i.XpG(2);i.Y8G("@animationState","active")("activeEntries",r.activeEntries)("xScale",r.innerScale)("yScale",r.valueScale)("colors",r.colors)("series",c.series)("dims",r.dims)("gradient",r.gradient)("tooltipDisabled",r.tooltipDisabled)("tooltipTemplate",r.tooltipTemplate)("showDataLabel",r.showDataLabel)("dataLabelFormatting",r.dataLabelFormatting)("seriesName",c.name)("roundEdges",r.roundEdges)("animations",r.animations)("noBarWhenZero",r.noBarWhenZero),i.BMQ("transform",r.groupTransform(c))}}function H3(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.DNE(1,xm,1,17,"g",8),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("ngForOf",c.results)("ngForTrackBy",c.trackBy)}}function Yu(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",9),i.bIt("select",function(y){const x=d.eBV(c).$implicit,R=i.XpG(2);return d.Njj(R.onClick(y,x))})("activate",function(y){const x=d.eBV(c).$implicit,R=i.XpG(2);return d.Njj(R.onActivate(y,x))})("deactivate",function(y){const x=d.eBV(c).$implicit,R=i.XpG(2);return d.Njj(R.onDeactivate(y,x))})("dataLabelHeightChanged",function(y){const x=d.eBV(c).index,R=i.XpG(2);return d.Njj(R.onDataLabelMaxHeightChanged(y,x))}),i.k0s()}if(2&s){const c=g.$implicit,r=i.XpG(2);i.Y8G("activeEntries",r.activeEntries)("xScale",r.innerScale)("yScale",r.valueScale)("colors",r.colors)("series",c.series)("dims",r.dims)("gradient",r.gradient)("tooltipDisabled",r.tooltipDisabled)("tooltipTemplate",r.tooltipTemplate)("showDataLabel",r.showDataLabel)("dataLabelFormatting",r.dataLabelFormatting)("seriesName",c.name)("roundEdges",r.roundEdges)("animations",r.animations)("noBarWhenZero",r.noBarWhenZero),i.BMQ("transform",r.groupTransform(c))}}function n0(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.DNE(1,Yu,1,16,"g",8),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("ngForOf",c.results)("ngForTrackBy",c.trackBy)}}function c0(s,g,c){c=c||{};let r,y,x,R=null,ue=0;function xt(){ue=!1===c.leading?0:+new Date,R=null,x=s.apply(r,y)}return function(){const Rt=+new Date;!ue&&!1===c.leading&&(ue=Rt);const sn=g-(Rt-ue);return r=this,y=arguments,sn<=0?(clearTimeout(R),R=null,ue=Rt,x=s.apply(r,y)):!R&&!1!==c.trailing&&(R=setTimeout(xt,sn)),x}}function sp(s,g){return function(r,y,x){return{configurable:!0,enumerable:x.enumerable,get:function(){return Object.defineProperty(this,y,{configurable:!0,enumerable:x.enumerable,value:c0(x.value,s,g)}),this[y]}}}}var Va=function(s){return s.Top="top",s.Bottom="bottom",s.Left="left",s.Right="right",s.Center="center",s}(Va||{});function Sm(s,g,c){return c===Va.Top?s.top-7:c===Va.Bottom?s.top+s.height-g.height+7:c===Va.Center?s.top+s.height/2-g.height/2:void 0}function eh(s,g,c){return c===Va.Left?s.left-7:c===Va.Right?s.left+s.width-g.width+7:c===Va.Center?s.left+s.width/2-g.width/2:void 0}class $o{static calculateVerticalAlignment(g,c,r){let y=Sm(g,c,r);return y+c.height>window.innerHeight&&(y=window.innerHeight-c.height),y}static calculateVerticalCaret(g,c,r,y){let x;y===Va.Top&&(x=g.height/2-r.height/2+7),y===Va.Bottom&&(x=c.height-g.height/2-r.height/2-7),y===Va.Center&&(x=c.height/2-r.height/2);const R=Sm(g,c,y);return R+c.height>window.innerHeight&&(x+=R+c.height-window.innerHeight),x}static calculateHorizontalAlignment(g,c,r){let y=eh(g,c,r);return y+c.width>window.innerWidth&&(y=window.innerWidth-c.width),y}static calculateHorizontalCaret(g,c,r,y){let x;y===Va.Left&&(x=g.width/2-r.width/2+7),y===Va.Right&&(x=c.width-g.width/2-r.width/2-7),y===Va.Center&&(x=c.width/2-r.width/2);const R=eh(g,c,y);return R+c.width>window.innerWidth&&(x+=R+c.width-window.innerWidth),x}static shouldFlip(g,c,r,y){let x=!1;return r===Va.Right&&g.left+g.width+c.width+y>window.innerWidth&&(x=!0),r===Va.Left&&g.left-c.width-y<0&&(x=!0),r===Va.Top&&g.top-c.height-y<0&&(x=!0),r===Va.Bottom&&g.top+g.height+c.height+y>window.innerHeight&&(x=!0),x}static positionCaret(g,c,r,y,x){let R=0,ue=0;return g===Va.Right?(ue=-7,R=$o.calculateVerticalCaret(r,c,y,x)):g===Va.Left?(ue=c.width,R=$o.calculateVerticalCaret(r,c,y,x)):g===Va.Top?(R=c.height,ue=$o.calculateHorizontalCaret(r,c,y,x)):g===Va.Bottom&&(R=-7,ue=$o.calculateHorizontalCaret(r,c,y,x)),{top:R,left:ue}}static positionContent(g,c,r,y,x){let R=0,ue=0;return g===Va.Right?(ue=r.left+r.width+y,R=$o.calculateVerticalAlignment(r,c,x)):g===Va.Left?(ue=r.left-c.width-y,R=$o.calculateVerticalAlignment(r,c,x)):g===Va.Top?(R=r.top-c.height-y,ue=$o.calculateHorizontalAlignment(r,c,x)):g===Va.Bottom&&(R=r.top+r.height+y,ue=$o.calculateHorizontalAlignment(r,c,x)),{top:R,left:ue}}static determinePlacement(g,c,r,y){if($o.shouldFlip(r,c,g,y)){if(g===Va.Right)return Va.Left;if(g===Va.Left)return Va.Right;if(g===Va.Top)return Va.Bottom;if(g===Va.Bottom)return Va.Top}return g}}let rp=(()=>{var s;class g{get cssClasses(){let r="ngx-charts-tooltip-content";return r+=` position-${this.placement}`,r+=` type-${this.type}`,r+=` ${this.cssClass}`,r}constructor(r,y,x){this.element=r,this.renderer=y,this.platformId=x}ngAfterViewInit(){setTimeout(this.position.bind(this))}position(){if(!(0,w.UE)(this.platformId))return;const r=this.element.nativeElement,y=this.host.nativeElement.getBoundingClientRect();if(!y.height&&!y.width)return;const x=r.getBoundingClientRect();this.checkFlip(y,x),this.positionContent(r,y,x),this.showCaret&&this.positionCaret(y,x),setTimeout(()=>this.renderer.addClass(r,"animate"),1)}positionContent(r,y,x){const{top:R,left:ue}=$o.positionContent(this.placement,x,y,this.spacing,this.alignment);this.renderer.setStyle(r,"top",`${R}px`),this.renderer.setStyle(r,"left",`${ue}px`)}positionCaret(r,y){const x=this.caretElm.nativeElement,R=x.getBoundingClientRect(),{top:ue,left:xt}=$o.positionCaret(this.placement,y,r,R,this.alignment);this.renderer.setStyle(x,"top",`${ue}px`),this.renderer.setStyle(x,"left",`${xt}px`)}checkFlip(r,y){this.placement=$o.determinePlacement(this.placement,y,r,this.spacing)}onWindowResize(){this.position()}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.aKT),i.rXU(i.sFG),i.rXU(i.Agw))},this.\u0275cmp=i.VBU({type:g,selectors:[["ngx-tooltip-content"]],viewQuery:function(y,x){if(1&y&&i.GBs(xu,5),2&y){let R;i.mGM(R=i.lsd())&&(x.caretElm=R.first)}},hostVars:2,hostBindings:function(y,x){1&y&&i.bIt("resize",function(){return x.onWindowResize()},i.tSv),2&y&&i.HbH(x.cssClasses)},inputs:{host:"host",showCaret:"showCaret",type:"type",placement:"placement",alignment:"alignment",spacing:"spacing",cssClass:"cssClass",title:"title",template:"template",context:"context"},standalone:!1,decls:6,vars:6,consts:[["caretElm",""],[3,"hidden"],[1,"tooltip-content"],[4,"ngIf"],[3,"innerHTML",4,"ngIf"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[3,"innerHTML"]],template:function(y,x){1&y&&(i.j41(0,"div"),i.nrm(1,"span",1,0),i.j41(3,"div",2),i.DNE(4,Mu,2,4,"span",3)(5,P2,1,1,"span",4),i.k0s()()),2&y&&(i.R7$(),i.HbH(i.VkB("tooltip-caret position-",x.placement)),i.Y8G("hidden",!x.showCaret),i.R7$(3),i.Y8G("ngIf",!x.title),i.R7$(),i.Y8G("ngIf",x.title))},dependencies:[T.bT,T.T3],styles:[".ngx-charts-tooltip-content{position:fixed;border-radius:3px;z-index:5000;display:block;font-weight:400;opacity:0;pointer-events:none!important}.ngx-charts-tooltip-content.type-popover{background:#fff;color:#060709;border:1px solid #72809b;box-shadow:0 1px 3px #0003,0 1px 1px #00000024,0 2px 1px -1px #0000001f;font-size:13px;padding:4px}.ngx-charts-tooltip-content.type-popover .tooltip-caret{position:absolute;z-index:5001;width:0;height:0}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-left{border-top:7px solid transparent;border-bottom:7px solid transparent;border-left:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-top{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-right{border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-bottom{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #fff}.ngx-charts-tooltip-content.type-tooltip{color:#fff;background:#000000bf;font-size:12px;padding:0 10px;text-align:center;pointer-events:auto}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-left{border-top:7px solid transparent;border-bottom:7px solid transparent;border-left:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-top{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-right{border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-bottom{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content .tooltip-label{display:block;line-height:1em;padding:8px 5px 5px;font-size:1em}.ngx-charts-tooltip-content .tooltip-val{display:block;font-size:1.3em;line-height:1em;padding:0 5px 8px}.ngx-charts-tooltip-content .tooltip-caret{position:absolute;z-index:5001;width:0;height:0}.ngx-charts-tooltip-content.position-right{transform:translate3d(10px,0,0)}.ngx-charts-tooltip-content.position-left{transform:translate3d(-10px,0,0)}.ngx-charts-tooltip-content.position-top{transform:translate3d(0,-10px,0)}.ngx-charts-tooltip-content.position-bottom{transform:translate3d(0,10px,0)}.ngx-charts-tooltip-content.animate{opacity:1;transition:opacity .3s,transform .3s;transform:translateZ(0);pointer-events:auto}.area-tooltip-container{padding:5px 0;pointer-events:none}.tooltip-item{text-align:left;line-height:1.2em;padding:5px 0}.tooltip-item .tooltip-item-color{display:inline-block;height:12px;width:12px;margin-right:5px;color:#5b646b;border-radius:3px}\n"],encapsulation:2}))}return s(),(0,e.Cg)([sp(100)],g.prototype,"onWindowResize",null),g})();class Tm{constructor(g){this.injectionService=g,this.defaults={},this.components=new Map}getByType(g=this.type){return this.components.get(g)}create(g){return this.createByType(this.type,g)}createByType(g,c){c=this.assignDefaults(c);const r=this.injectComponent(g,c);return this.register(g,r),r}destroy(g){const c=this.components.get(g.componentType);if(c&&c.length){const r=c.indexOf(g);r>-1&&(c[r].destroy(),c.splice(r,1))}}destroyAll(){this.destroyByType(this.type)}destroyByType(g){const c=this.components.get(g);if(c&&c.length){let r=c.length-1;for(;r>=0;)this.destroy(c[r--])}}injectComponent(g,c){return this.injectionService.appendComponent(g,c)}assignDefaults(g){const c={...this.defaults.inputs},r={...this.defaults.outputs};return!g.inputs&&!g.outputs&&(g={inputs:g}),c&&(g.inputs={...c,...g.inputs}),r&&(g.outputs={...r,...g.outputs}),g}register(g,c){this.components.has(g)||this.components.set(g,[]),this.components.get(g).push(c)}}let qu=(()=>{var s;class g{static setGlobalRootViewContainer(r){g.globalRootViewContainer=r}constructor(r,y){this.applicationRef=r,this.injector=y}getRootViewContainer(){if(this._container)return this._container;if(g.globalRootViewContainer)return g.globalRootViewContainer;if(this.applicationRef.components.length)return this.applicationRef.components[0];throw new Error("View Container not found! ngUpgrade needs to manually set this via setRootViewContainer or setGlobalRootViewContainer.")}setRootViewContainer(r){this._container=r}getComponentRootNode(r){return function Dm(s){return s.element}(r)?r.element.nativeElement:r.hostView&&r.hostView.rootNodes.length>0?r.hostView.rootNodes[0]:r.location.nativeElement}getRootViewContainerNode(r){return this.getComponentRootNode(r)}projectComponentBindings(r,y){if(y){if(void 0!==y.inputs){const x=Object.getOwnPropertyNames(y.inputs);for(const R of x)r.instance[R]=y.inputs[R]}if(void 0!==y.outputs){const x=Object.getOwnPropertyNames(y.outputs);for(const R of x)r.instance[R]=y.outputs[R]}}return r}appendComponent(r,y={},x){x||(x=this.getRootViewContainer());const R=this.getComponentRootNode(x),ue=new O.aI(R,this.applicationRef,this.injector),xt=new O.A8(r),Rt=ue.attach(xt);return this.projectComponentBindings(Rt,y),Rt}static#e=s=()=>(this.globalRootViewContainer=null,this.\u0275fac=function(y){return new(y||g)(d.KVO(i.o8S),d.KVO(d.zZn))},this.\u0275prov=d.jDH({token:g,factory:g.\u0275fac}))}return s(),g})(),d0=(()=>{var s;class g extends Tm{constructor(r){super(r),this.type=rp}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(d.KVO(qu))},this.\u0275prov=d.jDH({token:g,factory:g.\u0275fac}))}return s(),g})();var Ac=function(s){return s.Right="right",s.Below="below",s}(Ac||{}),u0=function(s){return s.ScaleLegend="scaleLegend",s.Legend="legend",s}(u0||{}),ma=function(s){return s.Time="time",s.Linear="linear",s.Ordinal="ordinal",s.Quantile="quantile",s}(ma||{});function Z1(s){return s instanceof Date?s.toLocaleDateString():s.toLocaleString()}let th=(()=>{var s;class g{constructor(){this.isActive=!1,this.select=new i.bkB,this.activate=new i.bkB,this.deactivate=new i.bkB,this.toggle=new i.bkB}get trimmedLabel(){return this.formattedLabel||"(empty)"}onMouseEnter(){this.activate.emit({name:this.label})}onMouseLeave(){this.deactivate.emit({name:this.label})}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275cmp=i.VBU({type:g,selectors:[["ngx-charts-legend-entry"]],hostBindings:function(y,x){1&y&&i.bIt("mouseenter",function(){return x.onMouseEnter()})("mouseleave",function(){return x.onMouseLeave()})},inputs:{color:"color",label:"label",formattedLabel:"formattedLabel",isActive:"isActive"},outputs:{select:"select",activate:"activate",deactivate:"deactivate",toggle:"toggle"},standalone:!1,decls:4,vars:6,consts:[["tabindex","-1",3,"click","title"],[1,"legend-label-color",3,"click"],[1,"legend-label-text"]],template:function(y,x){1&y&&(i.j41(0,"span",0),i.bIt("click",function(){return x.select.emit(x.formattedLabel)}),i.j41(1,"span",1),i.bIt("click",function(){return x.toggle.emit(x.formattedLabel)}),i.k0s(),i.j41(2,"span",2),i.EFF(3),i.k0s()()),2&y&&(i.AVh("active",x.isActive),i.Y8G("title",x.formattedLabel),i.R7$(),i.xc7("background-color",x.color),i.R7$(2),i.SpI(" ",x.trimmedLabel," "))},encapsulation:2,changeDetection:0}))}return s(),g})(),nh=(()=>{var s;class g{constructor(r){this.cd=r,this.horizontal=!1,this.labelClick=new i.bkB,this.labelActivate=new i.bkB,this.labelDeactivate=new i.bkB,this.legendEntries=[]}ngOnChanges(r){this.update()}update(){this.cd.markForCheck(),this.legendEntries=this.getLegendEntries()}getLegendEntries(){const r=[];for(const y of this.data){const x=Z1(y);-1===r.findIndex(ue=>ue.label===x)&&r.push({label:y,formattedLabel:x,color:this.colors.getColor(y)})}return r}isActive(r){return!!this.activeEntries&&void 0!==this.activeEntries.find(x=>r.label===x.name)}activate(r){this.labelActivate.emit(r)}deactivate(r){this.labelDeactivate.emit(r)}trackBy(r,y){return y.label}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(v.gRc))},this.\u0275cmp=i.VBU({type:g,selectors:[["ngx-charts-legend"]],inputs:{data:"data",title:"title",colors:"colors",height:"height",width:"width",activeEntries:"activeEntries",horizontal:"horizontal"},outputs:{labelClick:"labelClick",labelActivate:"labelActivate",labelDeactivate:"labelDeactivate"},standalone:!1,features:[i.OA$],decls:5,vars:9,consts:[["class","legend-title",4,"ngIf"],[1,"legend-wrap"],[1,"legend-labels"],["class","legend-label",4,"ngFor","ngForOf","ngForTrackBy"],[1,"legend-title"],[1,"legend-title-text"],[1,"legend-label"],[3,"select","activate","deactivate","label","formattedLabel","color","isActive"]],template:function(y,x){1&y&&(i.j41(0,"div"),i.DNE(1,F2,3,1,"header",0),i.j41(2,"div",1)(3,"ul",2),i.DNE(4,N2,2,4,"li",3),i.k0s()()()),2&y&&(i.xc7("width",x.width,"px"),i.R7$(),i.Y8G("ngIf",(null==x.title?null:x.title.length)>0),i.R7$(2),i.xc7("max-height",x.height-45,"px"),i.AVh("horizontal-legend",x.horizontal),i.R7$(),i.Y8G("ngForOf",x.legendEntries)("ngForTrackBy",x.trackBy))},dependencies:[T.Sq,T.bT,th],styles:[".chart-legend{display:inline-block;padding:0;width:auto!important}.chart-legend .legend-title{white-space:nowrap;overflow:hidden;margin-left:10px;margin-bottom:5px;font-size:14px;font-weight:700}.chart-legend ul,.chart-legend li{padding:0;margin:0;list-style:none}.chart-legend .horizontal-legend li{display:inline-block}.chart-legend .legend-wrap{width:calc(100% - 10px)}.chart-legend .legend-labels{line-height:85%;list-style:none;text-align:left;float:left;width:100%;border-radius:3px;overflow-y:auto;overflow-x:hidden;white-space:nowrap;background:#0000000d}.chart-legend .legend-label{cursor:pointer;font-size:90%;margin:8px;color:#afb7c8}.chart-legend .legend-label:hover{color:#000;-webkit-transition:.2s;-moz-transition:.2s;transition:.2s}.chart-legend .legend-label .active .legend-label-text{color:#000}.chart-legend .legend-label-color{display:inline-block;height:15px;width:15px;margin-right:5px;color:#5b646b;border-radius:3px}.chart-legend .legend-label-text{display:inline-block;vertical-align:top;line-height:15px;font-size:12px;width:calc(100% - 20px);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.chart-legend .legend-title-text{vertical-align:bottom;display:inline-block;line-height:16px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}\n"],encapsulation:2,changeDetection:0}))}return s(),g})(),wm=(()=>{var s;class g{constructor(){this.horizontal=!1}ngOnChanges(r){const y=this.gradientString(this.colors.range(),this.colors.domain());this.gradient=`linear-gradient(to ${this.horizontal?"right":"bottom"}, ${y})`}gradientString(r,y){y.push(1);const x=[];return r.reverse().forEach((R,ue)=>{x.push(`${R} ${Math.round(100*y[ue])}%`)}),x.join(", ")}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275cmp=i.VBU({type:g,selectors:[["ngx-charts-scale-legend"]],inputs:{valueRange:"valueRange",colors:"colors",height:"height",width:"width",horizontal:"horizontal"},standalone:!1,features:[i.OA$],decls:8,vars:10,consts:[[1,"scale-legend"],[1,"scale-legend-label"],[1,"scale-legend-wrap"]],template:function(y,x){1&y&&(i.j41(0,"div",0)(1,"div",1)(2,"span"),i.EFF(3),i.k0s()(),i.nrm(4,"div",2),i.j41(5,"div",1)(6,"span"),i.EFF(7),i.k0s()()()),2&y&&(i.xc7("height",x.horizontal?void 0:x.height,"px")("width",x.width,"px"),i.AVh("horizontal-legend",x.horizontal),i.R7$(3),i.JRh(x.valueRange[1].toLocaleString()),i.R7$(),i.xc7("background",x.gradient),i.R7$(3),i.JRh(x.valueRange[0].toLocaleString()))},styles:[".chart-legend{display:inline-block;padding:0;width:auto!important}.chart-legend .scale-legend{text-align:center;display:flex;flex-direction:column}.chart-legend .scale-legend-wrap{display:inline-block;flex:1;width:30px;border-radius:5px;margin:0 auto}.chart-legend .scale-legend-label{font-size:12px}.chart-legend .horizontal-legend.scale-legend{flex-direction:row}.chart-legend .horizontal-legend .scale-legend-wrap{width:auto;height:30px;margin:0 16px}\n"],encapsulation:2,changeDetection:0}))}return s(),g})(),ih=(()=>{var s;class g{constructor(){this.showLegend=!1,this.animations=!0,this.legendLabelClick=new i.bkB,this.legendLabelActivate=new i.bkB,this.legendLabelDeactivate=new i.bkB,this.LegendPosition=Ac,this.LegendType=u0}ngOnChanges(r){this.update()}update(){let r=0;this.showLegend&&(this.legendType=this.getLegendType(),(!this.legendOptions||this.legendOptions.position===Ac.Right)&&(r=this.legendType===u0.ScaleLegend?1:2)),this.chartWidth=Math.floor(this.view[0]*(12-r)/12),this.legendWidth=this.legendOptions&&this.legendOptions.position!==Ac.Right?this.chartWidth:Math.floor(this.view[0]*r/12)}getLegendType(){return this.legendOptions.scaleType===ma.Linear?u0.ScaleLegend:u0.Legend}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275cmp=i.VBU({type:g,selectors:[["ngx-charts-chart"]],inputs:{view:"view",showLegend:"showLegend",legendOptions:"legendOptions",legendType:"legendType",activeEntries:"activeEntries",animations:"animations"},outputs:{legendLabelClick:"legendLabelClick",legendLabelActivate:"legendLabelActivate",legendLabelDeactivate:"legendLabelDeactivate"},standalone:!1,features:[i.Jv_([d0]),i.OA$],ngContentSelectors:B2,decls:5,vars:8,consts:[[1,"ngx-charts-outer"],[1,"ngx-charts"],["class","chart-legend",3,"horizontal","valueRange","colors","height","width",4,"ngIf"],["class","chart-legend",3,"horizontal","data","title","colors","height","width","activeEntries","labelClick","labelActivate","labelDeactivate",4,"ngIf"],[1,"chart-legend",3,"horizontal","valueRange","colors","height","width"],[1,"chart-legend",3,"labelClick","labelActivate","labelDeactivate","horizontal","data","title","colors","height","width","activeEntries"]],template:function(y,x){1&y&&(i.NAR(),i.j41(0,"div",0),d.qSk(),i.j41(1,"svg",1),i.SdG(2),i.k0s(),i.DNE(3,l3,1,5,"ngx-charts-scale-legend",2)(4,c3,1,7,"ngx-charts-legend",3),i.k0s()),2&y&&(i.xc7("width",x.view[0],"px")("height",x.view[1],"px"),i.R7$(),i.BMQ("width",x.chartWidth)("height",x.view[1]),i.R7$(2),i.Y8G("ngIf",x.showLegend&&x.legendType===x.LegendType.ScaleLegend),i.R7$(),i.Y8G("ngIf",x.showLegend&&x.legendType===x.LegendType.Legend))},dependencies:[T.bT,nh,wm],encapsulation:2,changeDetection:0}))}return s(),g})(),ah=(()=>{var s;class g{constructor(r,y){this.element=r,this.zone=y,this.visible=new i.bkB,this.isVisible=!1,this.runCheck()}destroy(){clearTimeout(this.timeout)}onVisibilityChange(){this.zone.run(()=>{this.isVisible=!0,this.visible.emit(!0)})}runCheck(){const r=()=>{if(!this.element)return;const{offsetHeight:y,offsetWidth:x}=this.element.nativeElement;y&&x?(clearTimeout(this.timeout),this.onVisibilityChange()):(clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>r(),100)}))};this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>r())})}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.aKT),i.rXU(i.SKi))},this.\u0275dir=i.FsC({type:g,selectors:[["visibility-observer"]],outputs:{visible:"visible"},standalone:!1}))}return s(),g})();function t4(s){return"[object Date]"===toString.call(s)}let h0=(()=>{var s;class g{constructor(r,y,x,R){this.chartElement=r,this.zone=y,this.cd=x,this.platformId=R,this.scheme="cool",this.schemeType=ma.Ordinal,this.animations=!0,this.select=new i.bkB}ngOnInit(){(0,w.Vy)(this.platformId)&&(this.animations=!1)}ngAfterViewInit(){this.bindWindowResizeEvent(),this.visibilityObserver=new ah(this.chartElement,this.zone),this.visibilityObserver.visible.subscribe(this.update.bind(this))}ngOnDestroy(){this.unbindEvents(),this.visibilityObserver&&(this.visibilityObserver.visible.unsubscribe(),this.visibilityObserver.destroy())}ngOnChanges(r){this.update()}update(){if(this.results=this.results?this.cloneData(this.results):[],this.view)this.width=this.view[0],this.height=this.view[1];else{const r=this.getContainerDims();r&&(this.width=r.width,this.height=r.height)}this.width||(this.width=600),this.height||(this.height=400),this.width=Math.floor(this.width),this.height=Math.floor(this.height),this.cd&&this.cd.markForCheck()}getContainerDims(){let r,y;const x=this.chartElement.nativeElement;if((0,w.UE)(this.platformId)&&null!==x.parentNode){const R=x.parentNode.getBoundingClientRect();r=R.width,y=R.height}return r&&y?{width:r,height:y}:null}formatDates(){for(let r=0;r{this.update(),this.cd&&this.cd.markForCheck()});this.resizeSubscription=y}cloneData(r){const y=[];for(const x of r){const R={};if(void 0!==x.name&&(R.name=x.name),void 0!==x.value&&(R.value=x.value),void 0!==x.series){R.series=[];for(const ue of x.series){const xt=Object.assign({},ue);R.series.push(xt)}}void 0!==x.extra&&(R.extra=JSON.parse(JSON.stringify(x.extra))),void 0!==x.source&&(R.source=x.source),void 0!==x.target&&(R.target=x.target),y.push(R)}return y}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.aKT),i.rXU(i.SKi),i.rXU(v.gRc),i.rXU(i.Agw))},this.\u0275cmp=i.VBU({type:g,selectors:[["base-chart"]],inputs:{results:"results",view:"view",scheme:"scheme",schemeType:"schemeType",customColors:"customColors",animations:"animations"},outputs:{select:"select"},standalone:!1,features:[i.OA$],decls:1,vars:0,template:function(y,x){1&y&&i.nrm(0,"div")},encapsulation:2}))}return s(),g})();var Us=function(s){return s.Top="top",s.Bottom="bottom",s.Left="left",s.Right="right",s}(Us||{});let Am=(()=>{var s;class g{constructor(r){this.textHeight=25,this.margin=5,this.element=r.nativeElement}ngOnChanges(r){this.update()}update(){switch(this.strokeWidth="0.01",this.textAnchor="middle",this.transform="",this.orient){case Us.Top:case Us.Bottom:this.y=this.offset,this.x=this.width/2;break;case Us.Left:this.y=-(this.offset+this.textHeight+this.margin),this.x=-this.height/2,this.transform="rotate(270)";break;case Us.Right:this.y=this.offset+this.margin,this.x=-this.height/2,this.transform="rotate(270)"}}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.aKT))},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-axis-label",""]],inputs:{orient:"orient",label:"label",offset:"offset",width:"width",height:"height"},standalone:!1,features:[i.OA$],attrs:d3,decls:2,vars:6,template:function(y,x){1&y&&(d.qSk(),i.j41(0,"text"),i.EFF(1),i.k0s()),2&y&&(i.BMQ("stroke-width",x.strokeWidth)("x",x.x)("y",x.y)("text-anchor",x.textAnchor)("transform",x.transform),i.R7$(),i.SpI(" ",x.label," "))},encapsulation:2,changeDetection:0}))}return s(),g})();function sh(s,g=16){return"string"!=typeof s?"number"==typeof s?s+"":"":(s=s.trim()).length<=g?s:`${s.slice(0,g)}...`}function Lm(s,g){if(s.length>g){const c=[],r=Math.floor(s.length/g);for(let y=0;y{const ue=(x.pop()||"")+" ";return ue.length+R.length>g?[...x,ue.trim(),R.trim()]:[...x,ue+R]},[]);else{let x=0;for(;xc&&(y=y.splice(0,c),y[y.length-1]+="..."),y}var El=function(s){return s.Start="start",s.Middle="middle",s.End="end",s}(El||{});function hc(s,g,c,r,y,[x,R,ue,xt]){let Rt="";return Rt=`M${[s+y,g]}`,Rt+="h"+((c=0===(c=Math.floor(c))?1:c)-2*y),Rt+=R?`a${[y,y]} 0 0 1 ${[y,y]}`:`h${y}v${y}`,Rt+="v"+((r=0===(r=Math.floor(r))?1:r)-2*y),Rt+=xt?`a${[y,y]} 0 0 1 ${[-y,y]}`:`v${y}h${-y}`,Rt+="h"+(2*y-c),Rt+=ue?`a${[y,y]} 0 0 1 ${[-y,-y]}`:`h${-y}v${-y}`,Rt+="v"+(2*y-r),Rt+=x?`a${[y,y]} 0 0 1 ${[y,-y]}`:`v${-y}h${y}`,Rt+="z",Rt}let n4=(()=>{var s;class g{get isWrapTicksSupported(){return this.wrapTicks&&this.scale.step}constructor(r){this.platformId=r,this.tickArguments=[5],this.tickStroke="#ccc",this.trimTicks=!0,this.maxTickLength=16,this.showGridLines=!1,this.rotateTicks=!0,this.wrapTicks=!1,this.showRefLabels=!1,this.showRefLines=!1,this.dimensionsChanged=new i.bkB,this.verticalSpacing=20,this.rotateLabels=!1,this.innerTickSize=6,this.outerTickSize=6,this.tickPadding=3,this.textAnchor=El.Middle,this.maxTicksLength=0,this.maxAllowedLength=16,this.height=0,this.approxHeight=10,this.maxPossibleLengthForTickIfWrapped=16,this.referenceLineLength=0}ngOnChanges(r){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,w.UE)(this.platformId))return void this.dimensionsChanged.emit({height:this.approxHeight});const r=parseInt(this.ticksElement.nativeElement.getBoundingClientRect().height,10);r!==this.height&&(this.height=r,this.dimensionsChanged.emit({height:this.height}),setTimeout(()=>this.updateDims()))}update(){const r=this.scale;this.adjustedScale=this.scale.bandwidth?function(R){return this.scale(R)+.5*this.scale.bandwidth()}:this.scale,this.ticks=this.getTicks();const y=this.orient===Us.Top||this.orient===Us.Right?-1:1;switch(this.tickSpacing=Math.max(this.innerTickSize,0)+this.tickPadding,this.orient){case Us.Bottom:this.transform=function(R){return"translate("+this.adjustedScale(R)+",0)"},this.textAnchor=El.Middle,this.x2=this.innerTickSize*y,this.x1=this.tickSpacing*y,this.dx=y<0?"0em":".71em";break;case Us.Left:this.transform=function(R){return"translate(0,"+this.adjustedScale(R)+")"},this.textAnchor=El.End,this.y2=this.innerTickSize*-y,this.y1=this.tickSpacing*-y,this.dx=".32em";break;case Us.Top:this.transform=function(R){return"translate("+this.adjustedScale(R)+",0)"},this.textAnchor=El.Middle,this.y2=this.innerTickSize*y,this.y1=this.tickSpacing*y,this.dx=y<0?"0em":".71em";break;case Us.Right:this.transform=function(R){return"translate(0,"+this.adjustedScale(R)+")"},this.textAnchor=El.Start,this.x2=this.innerTickSize*-y,this.x1=this.tickSpacing*-y,this.dx=".32em"}this.tickFormat=this.tickFormatting?this.tickFormatting:r.tickFormat?r.tickFormat.apply(r,this.tickArguments):function(R){return"Date"===R.constructor.name?R.toLocaleDateString():R.toLocaleString()};const x=this.rotateTicks?this.getRotationAngle(this.ticks):null;this.textTransform="",x&&0!==x?(this.textTransform=`rotate(${x})`,this.textAnchor=El.End,this.verticalSpacing=10):this.textAnchor=El.Middle,setTimeout(()=>this.updateDims())}setReferencelines(){this.refMin=this.adjustedScale(Math.min.apply(null,this.referenceLines.map(r=>r.value))),this.refMax=this.adjustedScale(Math.max.apply(null,this.referenceLines.map(r=>r.value))),this.referenceLineLength=this.referenceLines.length,this.referenceAreaPath=hc(this.refMax,25-this.gridLineHeight,this.refMin-this.refMax,this.gridLineHeight,0,[!1,!1,!1,!1])}getRotationAngle(r){let y=0;this.maxTicksLength=0;for(let An=0;Anthis.maxTicksLength&&(this.maxTicksLength=pi)}const ue=7*Math.min(this.maxTicksLength,this.maxAllowedLength);let xt=ue;const Rt=Math.floor(this.width/r.length);for(;xt>Rt&&y>-90;)y-=30,xt=Math.cos(y*(Math.PI/180))*ue;let sn=14;if(this.isWrapTicksSupported){const An=this.ticks.reduce((pi,Ji)=>Ji.length>pi.length?Ji:pi,"");sn=14*(this.tickChunks(An).length||1),this.maxPossibleLengthForTickIfWrapped=this.getMaxPossibleLengthForTick(An)}const wn=0!==y?Math.max(Math.abs(Math.sin(y*Math.PI/180))*this.maxTickLength*7,10):sn;return this.approxHeight=Math.min(wn,200),this.showRefLines&&this.referenceLines&&this.setReferencelines(),y}getTicks(){let r;const y=this.getMaxTicks(20),x=this.getMaxTicks(100);return this.tickValues?r=this.tickValues:this.scale.ticks?r=this.scale.ticks.apply(this.scale,[x]):(r=this.scale.domain(),r=Lm(r,y)),r}getMaxTicks(r){return Math.floor(this.width/r)}tickTransform(r){return"translate("+this.adjustedScale(r)+","+this.verticalSpacing+")"}gridLineTransform(){return`translate(0,${-this.verticalSpacing-5})`}tickTrim(r){return this.trimTicks?sh(r,this.maxTickLength):r}getMaxPossibleLengthForTick(r){if(this.scale.bandwidth){const x=Math.floor(this.scale.bandwidth()/7),R=r.slice(0,x);return Math.max(R.length,this.maxTickLength)}return this.maxTickLength}tickChunks(r){if(r.toString().length>this.maxTickLength&&this.scale.bandwidth){let x=this.rotateTicks?Math.floor(this.scale.step()/14):5;if(x<=1)return[this.tickTrim(r)];let R=Math.max(this.maxPossibleLengthForTickIfWrapped,this.maxTickLength);return(0,w.UE)(this.platformId)||(R=Math.floor(Math.min(this.approxHeight/5,Math.max(this.maxPossibleLengthForTickIfWrapped,this.maxTickLength)))),x=Math.min(x,5),rh(r,R,x<1?1:x)}return[this.tickTrim(r)]}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.Agw))},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-x-axis-ticks",""]],viewQuery:function(y,x){if(1&y&&i.GBs(Su,5),2&y){let R;i.mGM(R=i.lsd())&&(x.ticksElement=R.first)}},inputs:{scale:"scale",orient:"orient",tickArguments:"tickArguments",tickValues:"tickValues",tickStroke:"tickStroke",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",gridLineHeight:"gridLineHeight",width:"width",rotateTicks:"rotateTicks",wrapTicks:"wrapTicks",referenceLines:"referenceLines",showRefLabels:"showRefLabels",showRefLines:"showRefLines"},outputs:{dimensionsChanged:"dimensionsChanged"},standalone:!1,features:[i.OA$],attrs:z2,decls:6,vars:4,consts:[["ticksel",""],["tmplMultilineTick",""],["tmplSinglelineTick",""],["class","tick",4,"ngFor","ngForOf"],[4,"ngFor","ngForOf"],["class","reference-area",4,"ngIf"],["class","ref-line",4,"ngFor","ngForOf"],[1,"tick"],[4,"ngIf"],["stroke-width","0.01","font-size","12px"],[4,"ngIf","ngIfThen","ngIfElse"],["x","0",4,"ngFor","ngForOf"],["x","0"],["y2","0",1,"gridline-path","gridline-path-vertical"],[1,"reference-area"],[1,"ref-line"],["y1","25",1,"refline-path","gridline-path-vertical"],["transform","rotate(-270) translate(5, -5)",1,"refline-label"]],template:function(y,x){1&y&&(d.qSk(),i.j41(0,"g",null,0),i.DNE(2,Tu,2,2,"g",3),i.k0s(),i.DNE(3,Id,2,2,"g",4)(4,m3,1,2,"path",5)(5,kd,2,1,"g",6)),2&y&&(i.R7$(2),i.Y8G("ngForOf",x.ticks),i.R7$(),i.Y8G("ngForOf",x.ticks),i.R7$(),i.Y8G("ngIf",x.referenceLineLength>1&&x.refMax&&x.refMin&&x.showRefLines),i.R7$(),i.Y8G("ngForOf",x.referenceLines))},dependencies:[T.Sq,T.bT],encapsulation:2,changeDetection:0}))}return s(),g})(),i4=(()=>{var s;class g{constructor(){this.rotateTicks=!0,this.showGridLines=!1,this.xOrient=Us.Bottom,this.xAxisOffset=0,this.wrapTicks=!1,this.dimensionsChanged=new i.bkB,this.xAxisClassName="x axis",this.labelOffset=0,this.fill="none",this.stroke="stroke",this.tickStroke="#ccc",this.strokeWidth="none",this.padding=5,this.orientation=Us}ngOnChanges(r){this.update()}update(){this.transform=`translate(0,${this.xAxisOffset+this.padding+this.dims.height})`,typeof this.xAxisTickCount<"u"&&(this.tickArguments=[this.xAxisTickCount])}emitTicksHeight({height:r}){const y=r+25+5;y!==this.labelOffset&&(this.labelOffset=y,setTimeout(()=>{this.dimensionsChanged.emit({height:r})},0))}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-x-axis",""]],viewQuery:function(y,x){if(1&y&&i.GBs(n4,5),2&y){let R;i.mGM(R=i.lsd())&&(x.ticksComponent=R.first)}},inputs:{xScale:"xScale",dims:"dims",trimTicks:"trimTicks",rotateTicks:"rotateTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",showLabel:"showLabel",labelText:"labelText",ticks:"ticks",xAxisTickCount:"xAxisTickCount",xOrient:"xOrient",referenceLines:"referenceLines",showRefLines:"showRefLines",showRefLabels:"showRefLabels",xAxisOffset:"xAxisOffset",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},standalone:!1,features:[i.OA$],attrs:p3,decls:3,vars:4,consts:[["ngx-charts-x-axis-ticks","",3,"trimTicks","rotateTicks","maxTickLength","tickFormatting","tickArguments","tickStroke","scale","orient","showGridLines","gridLineHeight","referenceLines","showRefLines","showRefLabels","width","tickValues","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width",4,"ngIf"],["ngx-charts-x-axis-ticks","",3,"dimensionsChanged","trimTicks","rotateTicks","maxTickLength","tickFormatting","tickArguments","tickStroke","scale","orient","showGridLines","gridLineHeight","referenceLines","showRefLines","showRefLabels","width","tickValues","wrapTicks"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(y,x){1&y&&(d.qSk(),i.j41(0,"g"),i.DNE(1,cc,1,16,"g",0)(2,Nc,1,5,"g",1),i.k0s()),2&y&&(i.BMQ("class",x.xAxisClassName)("transform",x.transform),i.R7$(),i.Y8G("ngIf",x.xScale),i.R7$(),i.Y8G("ngIf",x.showLabel))},dependencies:[T.bT,Am,n4],encapsulation:2,changeDetection:0}))}return s(),g})(),oh=(()=>{var s;class g{constructor(r){this.platformId=r,this.tickArguments=[5],this.tickStroke="#ccc",this.trimTicks=!0,this.maxTickLength=16,this.showGridLines=!1,this.showRefLabels=!1,this.showRefLines=!1,this.wrapTicks=!1,this.dimensionsChanged=new i.bkB,this.innerTickSize=6,this.tickPadding=3,this.verticalSpacing=20,this.textAnchor=El.Middle,this.width=0,this.outerTickSize=6,this.rotateLabels=!1,this.referenceLineLength=0,this.Orientation=Us}ngOnChanges(r){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,w.UE)(this.platformId))return this.width=this.getApproximateAxisWidth(),void this.dimensionsChanged.emit({width:this.width});const r=parseInt(this.ticksElement.nativeElement.getBoundingClientRect().width,10);r!==this.width&&(this.width=r,this.dimensionsChanged.emit({width:r}),setTimeout(()=>this.updateDims()))}update(){const r=this.scale,y=this.orient===Us.Top||this.orient===Us.Right?-1:1;switch(this.tickSpacing=Math.max(this.innerTickSize,0)+this.tickPadding,this.ticks=this.getTicks(),this.tickFormat=this.tickFormatting?this.tickFormatting:r.tickFormat?r.tickFormat.apply(r,this.tickArguments):function(x){return"Date"===x.constructor.name?x.toLocaleDateString():x.toLocaleString()},this.adjustedScale=r.bandwidth?x=>{const R=r(x)+.5*r.bandwidth();if(this.wrapTicks&&x.toString().length>this.maxTickLength){const ue=this.tickChunks(x).length;if(1===ue)return R;const sn=.5*r.bandwidth()-8*ue*.5;return r(x)+sn}return R}:r,this.showRefLines&&this.referenceLines&&this.setReferencelines(),this.orient){case Us.Top:case Us.Bottom:this.transform=function(x){return"translate("+this.adjustedScale(x)+",0)"},this.textAnchor=El.Middle,this.y2=this.innerTickSize*y,this.y1=this.tickSpacing*y,this.dy=y<0?"0em":".71em";break;case Us.Left:this.transform=function(x){return"translate(0,"+this.adjustedScale(x)+")"},this.textAnchor=El.End,this.x2=this.innerTickSize*-y,this.x1=this.tickSpacing*-y,this.dy=".32em";break;case Us.Right:this.transform=function(x){return"translate(0,"+this.adjustedScale(x)+")"},this.textAnchor=El.Start,this.x2=this.innerTickSize*-y,this.x1=this.tickSpacing*-y,this.dy=".32em"}setTimeout(()=>this.updateDims())}setReferencelines(){this.refMin=this.adjustedScale(Math.min.apply(null,this.referenceLines.map(r=>r.value))),this.refMax=this.adjustedScale(Math.max.apply(null,this.referenceLines.map(r=>r.value))),this.referenceLineLength=this.referenceLines.length,this.referenceAreaPath=hc(0,this.refMax,this.gridLineWidth,this.refMin-this.refMax,0,[!1,!1,!1,!1])}getTicks(){let r;const y=this.getMaxTicks(20),x=this.getMaxTicks(50);return this.tickValues?r=this.tickValues:this.scale.ticks?r=this.scale.ticks.apply(this.scale,[x]):(r=this.scale.domain(),r=Lm(r,y)),r}getMaxTicks(r){return Math.floor(this.height/r)}tickTransform(r){return`translate(${this.adjustedScale(r)},${this.verticalSpacing})`}gridLineTransform(){return"translate(5,0)"}tickTrim(r){return this.trimTicks?sh(r,this.maxTickLength):r}getApproximateAxisWidth(){return 7*Math.max(...this.ticks.map(x=>this.tickTrim(this.tickFormat(x)).length))}tickChunks(r){if(r.toString().length>this.maxTickLength&&this.scale.bandwidth){const y=this.maxTickLength,x=Math.floor(this.scale.bandwidth()/15);return x<=1?[this.tickTrim(r)]:rh(r,y,Math.min(x,5))}return[this.tickFormat(r)]}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.Agw))},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-y-axis-ticks",""]],viewQuery:function(y,x){if(1&y&&i.GBs(Su,5),2&y){let R;i.mGM(R=i.lsd())&&(x.ticksElement=R.first)}},inputs:{scale:"scale",orient:"orient",tickArguments:"tickArguments",tickValues:"tickValues",tickStroke:"tickStroke",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",gridLineWidth:"gridLineWidth",height:"height",referenceLines:"referenceLines",showRefLabels:"showRefLabels",showRefLines:"showRefLines",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},standalone:!1,features:[i.OA$],attrs:im,decls:6,vars:4,consts:[["ticksel",""],["tmplMultilineTick",""],["tmplSinglelineTick",""],["class","tick",4,"ngFor","ngForOf"],["class","reference-area",4,"ngIf"],[4,"ngFor","ngForOf"],["class","ref-line",4,"ngFor","ngForOf"],[1,"tick"],[4,"ngIf"],["stroke-width","0.01"],[4,"ngIf","ngIfThen","ngIfElse"],[4,"ngIf","ngIfElse"],["x","0",4,"ngFor","ngForOf"],["x","0"],[1,"reference-area"],["class","gridline-path gridline-path-horizontal","x1","0",4,"ngIf"],["x1","0",1,"gridline-path","gridline-path-horizontal"],[1,"ref-line"],["x1","0",1,"refline-path","gridline-path-horizontal"],[1,"refline-label"]],template:function(y,x){1&y&&(d.qSk(),i.j41(0,"g",null,0),i.DNE(2,Lu,2,2,"g",3),i.k0s(),i.DNE(3,v3,1,2,"path",4)(4,sm,2,2,"g",5)(5,G2,2,1,"g",6)),2&y&&(i.R7$(2),i.Y8G("ngForOf",x.ticks),i.R7$(),i.Y8G("ngIf",x.referenceLineLength>1&&x.refMax&&x.refMin&&x.showRefLines),i.R7$(),i.Y8G("ngForOf",x.ticks),i.R7$(),i.Y8G("ngForOf",x.referenceLines))},dependencies:[T.Sq,T.bT],encapsulation:2,changeDetection:0}))}return s(),g})(),lh=(()=>{var s;class g{constructor(){this.showGridLines=!1,this.yOrient=Us.Left,this.yAxisOffset=0,this.wrapTicks=!1,this.dimensionsChanged=new i.bkB,this.yAxisClassName="y axis",this.labelOffset=15,this.fill="none",this.stroke="#CCC",this.tickStroke="#CCC",this.strokeWidth=1,this.padding=5}ngOnChanges(r){this.update()}update(){this.offset=-(this.yAxisOffset+this.padding),this.yOrient===Us.Right?(this.labelOffset=65,this.transform=`translate(${this.offset+this.dims.width} , 0)`):this.transform=`translate(${this.offset} , 0)`,void 0!==this.yAxisTickCount&&(this.tickArguments=[this.yAxisTickCount])}emitTicksWidth({width:r}){r!==this.labelOffset&&this.yOrient===Us.Right?(this.labelOffset=r+this.labelOffset,setTimeout(()=>{this.dimensionsChanged.emit({width:r})},0)):r!==this.labelOffset&&(this.labelOffset=r,setTimeout(()=>{this.dimensionsChanged.emit({width:r})},0))}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-y-axis",""]],viewQuery:function(y,x){if(1&y&&i.GBs(oh,5),2&y){let R;i.mGM(R=i.lsd())&&(x.ticksComponent=R.first)}},inputs:{yScale:"yScale",dims:"dims",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",ticks:"ticks",showGridLines:"showGridLines",showLabel:"showLabel",labelText:"labelText",yAxisTickCount:"yAxisTickCount",yOrient:"yOrient",referenceLines:"referenceLines",showRefLines:"showRefLines",showRefLabels:"showRefLabels",yAxisOffset:"yAxisOffset",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},standalone:!1,features:[i.OA$],attrs:j2,decls:3,vars:4,consts:[["ngx-charts-y-axis-ticks","",3,"trimTicks","maxTickLength","tickFormatting","tickArguments","tickValues","tickStroke","scale","orient","showGridLines","gridLineWidth","referenceLines","showRefLines","showRefLabels","height","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width",4,"ngIf"],["ngx-charts-y-axis-ticks","",3,"dimensionsChanged","trimTicks","maxTickLength","tickFormatting","tickArguments","tickValues","tickStroke","scale","orient","showGridLines","gridLineWidth","referenceLines","showRefLines","showRefLabels","height","wrapTicks"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(y,x){1&y&&(d.qSk(),i.j41(0,"g"),i.DNE(1,Ff,1,15,"g",0)(2,Vr,1,5,"g",1),i.k0s()),2&y&&(i.BMQ("class",x.yAxisClassName)("transform",x.transform),i.R7$(),i.Y8G("ngIf",x.yScale),i.R7$(),i.Y8G("ngIf",x.showLabel))},dependencies:[T.bT,Am,oh],encapsulation:2,changeDetection:0}))}return s(),g})(),Im=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[T.MD]}))}return s(),g})();var Hd=function(s){return s.popover="popover",s.tooltip="tooltip",s}(Hd||{}),J1=function(s){return s[s.all="all"]="all",s[s.focus="focus"]="focus",s[s.mouseover="mouseover"]="mouseover",s}(J1||{});let m0=(()=>{var s;class g{get listensForFocus(){return this.tooltipShowEvent===J1.all||this.tooltipShowEvent===J1.focus}get listensForHover(){return this.tooltipShowEvent===J1.all||this.tooltipShowEvent===J1.mouseover}constructor(r,y,x){this.tooltipService=r,this.viewContainerRef=y,this.renderer=x,this.tooltipCssClass="",this.tooltipAppendToBody=!0,this.tooltipSpacing=10,this.tooltipDisabled=!1,this.tooltipShowCaret=!0,this.tooltipPlacement=Va.Top,this.tooltipAlignment=Va.Center,this.tooltipType=Hd.popover,this.tooltipCloseOnClickOutside=!0,this.tooltipCloseOnMouseLeave=!0,this.tooltipHideTimeout=300,this.tooltipShowTimeout=100,this.tooltipShowEvent=J1.all,this.tooltipImmediateExit=!1,this.show=new i.bkB,this.hide=new i.bkB}ngOnDestroy(){this.hideTooltip(!0)}onFocus(){this.listensForFocus&&this.showTooltip()}onBlur(){this.listensForFocus&&this.hideTooltip(!0)}onMouseEnter(){this.listensForHover&&this.showTooltip()}onMouseLeave(r){if(this.listensForHover&&this.tooltipCloseOnMouseLeave){if(clearTimeout(this.timeout),this.component&&this.component.instance.element.nativeElement.contains(r))return;this.hideTooltip(this.tooltipImmediateExit)}}onMouseClick(){this.listensForHover&&this.hideTooltip(!0)}showTooltip(r){if(this.component||this.tooltipDisabled)return;const y=r?0:this.tooltipShowTimeout+(navigator.userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)?400:0);clearTimeout(this.timeout),this.timeout=setTimeout(()=>{this.tooltipService.destroyAll();const x=this.createBoundOptions();this.component=this.tooltipService.create(x),setTimeout(()=>{this.component&&this.addHideListeners(this.component.instance.element.nativeElement)},10),this.show.emit(!0)},y)}addHideListeners(r){this.mouseEnterContentEvent=this.renderer.listen(r,"mouseenter",()=>{clearTimeout(this.timeout)}),this.tooltipCloseOnMouseLeave&&(this.mouseLeaveContentEvent=this.renderer.listen(r,"mouseleave",()=>{this.hideTooltip(this.tooltipImmediateExit)})),this.tooltipCloseOnClickOutside&&(this.documentClickEvent=this.renderer.listen("window","click",y=>{r.contains(y.target)||this.hideTooltip()}))}hideTooltip(r=!1){if(!this.component)return;const y=()=>{this.mouseLeaveContentEvent&&this.mouseLeaveContentEvent(),this.mouseEnterContentEvent&&this.mouseEnterContentEvent(),this.documentClickEvent&&this.documentClickEvent(),this.hide.emit(!0),this.tooltipService.destroy(this.component),this.component=void 0};clearTimeout(this.timeout),r?y():this.timeout=setTimeout(y,this.tooltipHideTimeout)}createBoundOptions(){return{title:this.tooltipTitle,template:this.tooltipTemplate,host:this.viewContainerRef.element,placement:this.tooltipPlacement,alignment:this.tooltipAlignment,type:this.tooltipType,showCaret:this.tooltipShowCaret,cssClass:this.tooltipCssClass,spacing:this.tooltipSpacing,context:this.tooltipContext}}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(d0),i.rXU(i.c1b),i.rXU(i.sFG))},this.\u0275dir=i.FsC({type:g,selectors:[["","ngx-tooltip",""]],hostBindings:function(y,x){1&y&&i.bIt("focusin",function(){return x.onFocus()})("blur",function(){return x.onBlur()})("mouseenter",function(){return x.onMouseEnter()})("mouseleave",function(ue){return x.onMouseLeave(ue.target)})("click",function(){return x.onMouseClick()})},inputs:{tooltipCssClass:"tooltipCssClass",tooltipTitle:"tooltipTitle",tooltipAppendToBody:"tooltipAppendToBody",tooltipSpacing:"tooltipSpacing",tooltipDisabled:"tooltipDisabled",tooltipShowCaret:"tooltipShowCaret",tooltipPlacement:"tooltipPlacement",tooltipAlignment:"tooltipAlignment",tooltipType:"tooltipType",tooltipCloseOnClickOutside:"tooltipCloseOnClickOutside",tooltipCloseOnMouseLeave:"tooltipCloseOnMouseLeave",tooltipHideTimeout:"tooltipHideTimeout",tooltipShowTimeout:"tooltipShowTimeout",tooltipTemplate:"tooltipTemplate",tooltipShowEvent:"tooltipShowEvent",tooltipContext:"tooltipContext",tooltipImmediateExit:"tooltipImmediateExit"},outputs:{show:"show",hide:"hide"},standalone:!1}))}return s(),g})(),ch=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({providers:[qu,d0],imports:[T.MD]}))}return s(),g})();const f0={};function p0(){let s=("0000"+(Math.random()*Math.pow(36,4)|0).toString(36)).slice(-4);return s=`a${s}`,f0[s]?p0():(f0[s]=!0,s)}var Qr=function(s){return s.Vertical="vertical",s.Horizontal="horizontal",s}(Qr||{});let Wd=(()=>{var s;class g{constructor(){this.orientation=Qr.Vertical}ngOnChanges(r){this.x1="0%",this.x2="0%",this.y1="0%",this.y2="0%",this.orientation===Qr.Horizontal?this.x2="100%":this.orientation===Qr.Vertical&&(this.y1="100%")}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-svg-linear-gradient",""]],inputs:{orientation:"orientation",name:"name",stops:"stops"},standalone:!1,features:[i.OA$],attrs:b3,decls:2,vars:6,consts:[[3,"id"],[3,"stop-color","stop-opacity",4,"ngFor","ngForOf"]],template:function(y,x){1&y&&(d.qSk(),i.j41(0,"linearGradient",0),i.DNE(1,s1,1,5,"stop",1),i.k0s()),2&y&&(i.Y8G("id",x.name),i.BMQ("x1",x.x1)("y1",x.y1)("x2",x.x2)("y2",x.y2),i.R7$(),i.Y8G("ngForOf",x.stops))},dependencies:[T.Sq],encapsulation:2,changeDetection:0}))}return s(),g})(),q1=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-grid-panel",""]],inputs:{width:"width",height:"height",x:"x",y:"y"},standalone:!1,attrs:Fu,decls:1,vars:4,consts:[["stroke","none",1,"gridpanel"]],template:function(y,x){1&y&&(d.qSk(),i.nrm(0,"rect",0)),2&y&&i.BMQ("height",x.height)("width",x.width)("x",x.x)("y",x.y)},encapsulation:2,changeDetection:0}))}return s(),g})();var Gc=function(s){return s.Odd="odd",s.Even="even",s}(Gc||{});let r4,Om=(()=>{var s;class g{ngOnChanges(r){this.update()}update(){this.gridPanels=this.getGridPanels()}getGridPanels(){return this.data.map(r=>{let y,x,R,ue,xt,Rt=Gc.Odd;if(this.orient===Qr.Vertical){const sn=this.xScale(r.name);Number.parseInt((sn/this.xScale.step()).toString(),10)%2==1&&(Rt=Gc.Even),y=this.xScale.bandwidth()*this.xScale.paddingInner(),x=this.xScale.bandwidth()+y,R=this.dims.height,ue=this.xScale(r.name)-y/2,xt=0}else if(this.orient===Qr.Horizontal){const sn=this.yScale(r.name);Number.parseInt((sn/this.yScale.step()).toString(),10)%2==1&&(Rt=Gc.Even),y=this.yScale.bandwidth()*this.yScale.paddingInner(),x=this.dims.width,R=this.yScale.bandwidth()+y,ue=0,xt=this.yScale(r.name)-y/2}return{name:r.name,class:Rt,height:R,width:x,x:ue,y:xt}})}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-grid-panel-series",""]],inputs:{data:"data",dims:"dims",xScale:"xScale",yScale:"yScale",orient:"orient"},standalone:!1,features:[i.OA$],attrs:Nu,decls:1,vars:1,consts:[["ngx-charts-grid-panel","",3,"height","width","x","y","grid-panel","odd","even",4,"ngFor","ngForOf"],["ngx-charts-grid-panel","",3,"height","width","x","y"]],template:function(y,x){1&y&&i.DNE(0,Bc,1,10,"g",0),2&y&&i.Y8G("ngForOf",x.gridPanels)},dependencies:[T.Sq,q1],encapsulation:2,changeDetection:0}))}return s(),g})();typeof window<"u"?r4=window:typeof global<"u"&&(r4=global);let hl=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[T.MD,Im,ch,T.MD,Im,ch]}))}return s(),g})();function Fm({width:s,height:g,margins:c,showXAxis:r=!1,showYAxis:y=!1,xAxisHeight:x=0,yAxisWidth:R=0,showXLabel:ue=!1,showYLabel:xt=!1,showLegend:Rt=!1,legendType:sn=ma.Ordinal,legendPosition:wn=Ac.Right,columns:An=12}){let _i=c[3],pi=s,Ji=g-c[0]-c[2];return Rt&&wn===Ac.Right&&(An-=sn===ma.Ordinal?2:1),pi=pi*An/12,pi=pi-c[1]-c[3],r&&(Ji-=5,Ji-=x,ue&&(Ji-=30)),y&&(pi-=5,pi-=R,_i+=R,_i+=10,xt&&(pi-=30,_i+=30)),pi=Math.max(0,pi),Ji=Math.max(0,Ji),{width:Math.floor(pi),height:Math.floor(Ji),xOffset:Math.floor(_i)}}const hp=[{name:"vivid",selectable:!0,group:ma.Ordinal,domain:["#647c8a","#3f51b5","#2196f3","#00b862","#afdf0a","#a7b61a","#f3e562","#ff9800","#ff5722","#ff4514"]},{name:"natural",selectable:!0,group:ma.Ordinal,domain:["#bf9d76","#e99450","#d89f59","#f2dfa7","#a5d7c6","#7794b1","#afafaf","#707160","#ba9383","#d9d5c3"]},{name:"cool",selectable:!0,group:ma.Ordinal,domain:["#a8385d","#7aa3e5","#a27ea8","#aae3f5","#adcded","#a95963","#8796c0","#7ed3ed","#50abcc","#ad6886"]},{name:"fire",selectable:!0,group:ma.Ordinal,domain:["#ff3d00","#bf360c","#ff8f00","#ff6f00","#ff5722","#e65100","#ffca28","#ffab00"]},{name:"solar",selectable:!0,group:ma.Linear,domain:["#fff8e1","#ffecb3","#ffe082","#ffd54f","#ffca28","#ffc107","#ffb300","#ffa000","#ff8f00","#ff6f00"]},{name:"air",selectable:!0,group:ma.Linear,domain:["#e1f5fe","#b3e5fc","#81d4fa","#4fc3f7","#29b6f6","#03a9f4","#039be5","#0288d1","#0277bd","#01579b"]},{name:"aqua",selectable:!0,group:ma.Linear,domain:["#e0f7fa","#b2ebf2","#80deea","#4dd0e1","#26c6da","#00bcd4","#00acc1","#0097a7","#00838f","#006064"]},{name:"flame",selectable:!1,group:ma.Ordinal,domain:["#A10A28","#D3342D","#EF6D49","#FAAD67","#FDDE90","#DBED91","#A9D770","#6CBA67","#2C9653","#146738"]},{name:"ocean",selectable:!1,group:ma.Ordinal,domain:["#1D68FB","#33C0FC","#4AFFFE","#AFFFFF","#FFFC63","#FDBD2D","#FC8A25","#FA4F1E","#FA141B","#BA38D1"]},{name:"forest",selectable:!1,group:ma.Ordinal,domain:["#55C22D","#C1F33D","#3CC099","#AFFFFF","#8CFC9D","#76CFFA","#BA60FB","#EE6490","#C42A1C","#FC9F32"]},{name:"horizon",selectable:!1,group:ma.Ordinal,domain:["#2597FB","#65EBFD","#99FDD0","#FCEE4B","#FEFCFA","#FDD6E3","#FCB1A8","#EF6F7B","#CB96E8","#EFDEE0"]},{name:"neons",selectable:!1,group:ma.Ordinal,domain:["#FF3333","#FF33FF","#CC33FF","#0000FF","#33CCFF","#33FFFF","#33FF66","#CCFF33","#FFCC00","#FF6600"]},{name:"picnic",selectable:!1,group:ma.Ordinal,domain:["#FAC51D","#66BD6D","#FAA026","#29BB9C","#E96B56","#55ACD2","#B7332F","#2C83C9","#9166B8","#92E7E8"]},{name:"night",selectable:!1,group:ma.Ordinal,domain:["#2B1B5A","#501356","#183356","#28203F","#391B3C","#1E2B3C","#120634","#2D0432","#051932","#453080","#75267D","#2C507D","#4B3880","#752F7D","#35547D"]},{name:"nightLights",selectable:!1,group:ma.Ordinal,domain:["#4e31a5","#9c25a7","#3065ab","#57468b","#904497","#46648b","#32118d","#a00fb3","#1052a2","#6e51bd","#b63cc3","#6c97cb","#8671c1","#b455be","#7496c3"]}];class c4{constructor(g,c,r,y){"string"==typeof g&&(g=hp.find(x=>x.name===g)),this.colorDomain=g.domain,this.scaleType=c,this.domain=r,this.customColors=y,this.scale=this.generateColorScheme(g,c,this.domain)}generateColorScheme(g,c,r){let y;switch("string"==typeof g&&(g=hp.find(x=>x.name===g)),c){case ma.Quantile:y=P1().range(g.domain).domain(r);break;case ma.Ordinal:y=Md().range(g.domain).domain(r);break;case ma.Linear:{const x=[...g.domain];1===x.length&&(x.push(x[0]),this.colorDomain=x);const R=ru(0,1,1/x.length);y=lc().range(x).domain(R)}}return y}getColor(g){if(null==g)throw new Error("Value can not be null");if(this.scaleType===ma.Linear){const c=lc().domain(this.domain).range([0,1]);return this.scale(c(g))}{if("function"==typeof this.customColors)return this.customColors(g);const c=g.toString();let r;return this.customColors&&this.customColors.length>0&&(r=this.customColors.find(y=>y.name.toLowerCase()===c.toLowerCase())),r?r.value:this.scale(g)}}getLinearGradientStops(g,c){void 0===c&&(c=this.domain[0]);const r=lc().domain(this.domain).range([0,1]),y=Pc().domain(this.colorDomain).range([0,1]),x=this.getColor(g),R=r(c),ue=this.getColor(c),xt=r(g);let Rt=1,sn=R;const wn=[];for(wn.push({color:ue,offset:R,originalOffset:R,opacity:1});sn=(xt-y.bandwidth()).toFixed(4))break;wn.push({color:An,offset:_i,opacity:1}),sn=_i,Rt++}}if(wn[wn.length-1].offset<100&&wn.push({color:x,offset:xt,opacity:1}),xt===R)wn[0].offset=0,wn[1].offset=100;else if(100!==wn[wn.length-1].offset)for(const An of wn)An.offset=(An.offset-R)/(xt-R)*100;return wn}}let Bm=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),zm=(()=>{var s;class g{constructor(r){this.roundEdges=!0,this.gradient=!1,this.offset=0,this.isActive=!1,this.animations=!0,this.noBarWhenZero=!0,this.select=new i.bkB,this.activate=new i.bkB,this.deactivate=new i.bkB,this.hasGradient=!1,this.hideBar=!1,this.element=r.nativeElement}ngOnChanges(r){r.roundEdges&&this.loadAnimation(),this.update()}update(){this.gradientId="grad"+p0().toString(),this.gradientFill=`url(#${this.gradientId})`,this.gradient||this.stops?(this.gradientStops=this.getGradient(),this.hasGradient=!0):this.hasGradient=!1,this.updatePathEl(),this.checkToHideBar()}loadAnimation(){this.path=this.getStartingPath(),setTimeout(this.update.bind(this),100)}updatePathEl(){const r=ci(this.element).select(".bar"),y=this.getPath();this.animations?r.transition().duration(500).attr("d",y):r.attr("d",y)}getGradient(){return this.stops?this.stops:[{offset:0,color:this.fill,opacity:this.getStartOpacity()},{offset:100,color:this.fill,opacity:1}]}getStartingPath(){if(!this.animations)return this.getPath();let y,r=this.getRadius();return this.roundEdges?this.orientation===Qr.Vertical?(r=Math.min(this.height,r),y=hc(this.x,this.y+this.height,this.width,1,0,this.edges)):this.orientation===Qr.Horizontal&&(r=Math.min(this.width,r),y=hc(this.x,this.y,1,this.height,0,this.edges)):this.orientation===Qr.Vertical?y=hc(this.x,this.y+this.height,this.width,1,0,this.edges):this.orientation===Qr.Horizontal&&(y=hc(this.x,this.y,1,this.height,0,this.edges)),y}getPath(){let y,r=this.getRadius();return this.roundEdges?this.orientation===Qr.Vertical?(r=Math.min(this.height,r),y=hc(this.x,this.y,this.width,this.height,r,this.edges)):this.orientation===Qr.Horizontal&&(r=Math.min(this.width,r),y=hc(this.x,this.y,this.width,this.height,r,this.edges)):y=hc(this.x,this.y,this.width,this.height,r,this.edges),y}getRadius(){let r=0;return this.roundEdges&&this.height>5&&this.width>5&&(r=Math.floor(Math.min(5,this.height/2,this.width/2))),r}getStartOpacity(){return this.roundEdges?.2:.5}get edges(){let r=[!1,!1,!1,!1];return this.roundEdges&&(this.orientation===Qr.Vertical?r=this.data.value>0?[!0,!0,!1,!1]:[!1,!1,!0,!0]:this.orientation===Qr.Horizontal&&(r=this.data.value>0?[!1,!0,!1,!0]:[!0,!1,!0,!1])),r}onMouseEnter(){this.activate.emit(this.data)}onMouseLeave(){this.deactivate.emit(this.data)}checkToHideBar(){this.hideBar=this.noBarWhenZero&&(this.orientation===Qr.Vertical&&0===this.height||this.orientation===Qr.Horizontal&&0===this.width)}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.aKT))},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-bar",""]],hostBindings:function(y,x){1&y&&i.bIt("mouseenter",function(){return x.onMouseEnter()})("mouseleave",function(){return x.onMouseLeave()})},inputs:{fill:"fill",data:"data",width:"width",height:"height",x:"x",y:"y",orientation:"orientation",roundEdges:"roundEdges",gradient:"gradient",offset:"offset",isActive:"isActive",stops:"stops",animations:"animations",ariaLabel:"ariaLabel",noBarWhenZero:"noBarWhenZero"},outputs:{select:"select",activate:"activate",deactivate:"deactivate"},standalone:!1,features:[i.OA$],attrs:O3,decls:2,vars:8,consts:[[4,"ngIf"],["stroke","none","role","img","tabIndex","-1",1,"bar",3,"click"],["ngx-charts-svg-linear-gradient","",3,"orientation","name","stops"]],template:function(y,x){1&y&&(i.DNE(0,R3,2,3,"defs",0),d.qSk(),i.j41(1,"path",1),i.bIt("click",function(){return x.select.emit(x.data)}),i.k0s()),2&y&&(i.Y8G("ngIf",x.hasGradient),i.R7$(),i.AVh("active",x.isActive)("hidden",x.hideBar),i.BMQ("d",x.path)("aria-label",x.ariaLabel)("fill",x.hasGradient?x.gradientFill:x.fill))},dependencies:[T.bT,Wd],encapsulation:2,changeDetection:0}))}return s(),g})();var jc=function(s){return s.Standard="standard",s.Normalized="normalized",s.Stacked="stacked",s}(jc||{}),f1=function(s){return s.positive="positive",s.negative="negative",s}(f1||{});let d4=(()=>{var s;class g{constructor(r){this.dimensionsChanged=new i.bkB,this.horizontalPadding=2,this.verticalPadding=5,this.element=r.nativeElement}ngOnChanges(r){this.update()}getSize(){return{height:this.element.getBoundingClientRect().height,width:this.element.getBoundingClientRect().width,negative:this.value<0}}ngAfterViewInit(){this.dimensionsChanged.emit(this.getSize())}update(){this.formatedValue=this.valueFormatting?this.valueFormatting(this.value):Z1(this.value),"horizontal"===this.orientation?(this.x=this.barX+this.barWidth,this.value<0?(this.x=this.x-this.horizontalPadding,this.textAnchor="end"):(this.x=this.x+this.horizontalPadding,this.textAnchor="start"),this.y=this.barY+this.barHeight/2):(this.x=this.barX+this.barWidth/2,this.y=this.barY+this.barHeight,this.value<0?(this.y=this.y+this.verticalPadding,this.textAnchor="end"):(this.y=this.y-this.verticalPadding,this.textAnchor="start"),this.transform=`rotate(-45, ${this.x} , ${this.y})`)}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.aKT))},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-bar-label",""]],inputs:{value:"value",valueFormatting:"valueFormatting",barX:"barX",barY:"barY",barWidth:"barWidth",barHeight:"barHeight",orientation:"orientation"},outputs:{dimensionsChanged:"dimensionsChanged"},standalone:!1,features:[i.OA$],attrs:P3,decls:2,vars:5,consts:[["alignment-baseline","middle",1,"textDataLabel"]],template:function(y,x){1&y&&(d.qSk(),i.j41(0,"text",0),i.EFF(1),i.k0s()),2&y&&(i.BMQ("text-anchor",x.textAnchor)("transform",x.transform)("x",x.x)("y",x.y),i.R7$(),i.SpI(" ",x.formatedValue," "))},styles:[".textDataLabel[_ngcontent-%COMP%]{font-size:11px}"],changeDetection:0}))}return s(),g})(),Vm=(()=>{var s;class g{constructor(r){this.platformId=r,this.type=jc.Standard,this.tooltipDisabled=!1,this.animations=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.select=new i.bkB,this.activate=new i.bkB,this.deactivate=new i.bkB,this.dataLabelHeightChanged=new i.bkB,this.barsForDataLabels=[],this.barOrientation=Qr,this.isSSR=!1}ngOnInit(){(0,w.Vy)(this.platformId)&&(this.isSSR=!0)}ngOnChanges(){this.update()}update(){let r;this.updateTooltipSettings(),this.series.length&&(r=this.xScale.bandwidth()),r=Math.round(r);const y=Math.max(this.yScale.domain()[0],0),x={[f1.positive]:0,[f1.negative]:0};let ue,R=f1.positive;this.type===jc.Normalized&&(ue=this.series.map(xt=>xt.value).reduce((xt,Rt)=>xt+Rt,0)),this.bars=this.series.map((xt,Rt)=>{let sn=xt.value;const wn=this.getLabel(xt),An=Z1(wn);R=sn>0?f1.positive:f1.negative;const pi={value:sn,label:wn,roundEdges:this.roundEdges,data:xt,width:r,formattedLabel:An,height:0,x:0,y:0};if(this.type===jc.Standard)pi.height=Math.abs(this.yScale(sn)-this.yScale(y)),pi.x=this.xScale(wn),pi.y=this.yScale(sn<0?0:sn);else if(this.type===jc.Stacked){const Xn=x[R],Vi=Xn+sn;x[R]+=sn,pi.height=this.yScale(Xn)-this.yScale(Vi),pi.x=0,pi.y=this.yScale(Vi),pi.offset0=Xn,pi.offset1=Vi}else if(this.type===jc.Normalized){let Xn=x[R],Vi=Xn+sn;x[R]+=sn,ue>0?(Xn=100*Xn/ue,Vi=100*Vi/ue):(Xn=0,Vi=0),pi.height=this.yScale(Xn)-this.yScale(Vi),pi.x=0,pi.y=this.yScale(Vi),pi.offset0=Xn,pi.offset1=Vi,sn=(Vi-Xn).toFixed(2)+"%"}this.colors.scaleType===ma.Ordinal?pi.color=this.colors.getColor(wn):this.type===jc.Standard?(pi.color=this.colors.getColor(sn),pi.gradientStops=this.colors.getLinearGradientStops(sn)):(pi.color=this.colors.getColor(pi.offset1),pi.gradientStops=this.colors.getLinearGradientStops(pi.offset1,pi.offset0));let Ji=An;return pi.ariaLabel=An+" "+sn.toLocaleString(),null!=this.seriesName&&(Ji=`${this.seriesName} \u2022 ${An}`,pi.data.series=this.seriesName,pi.ariaLabel=this.seriesName+" "+pi.ariaLabel),pi.tooltipText=this.tooltipDisabled?void 0:`\n ${function e4(s){return s.toLocaleString().replace(/[&'`"<>]/g,g=>({"&":"&","'":"'","`":"`",'"':""","<":"<",">":">"}[g]))}(Ji)}\n ${this.dataLabelFormatting?this.dataLabelFormatting(sn):sn.toLocaleString()}\n `,pi}),this.updateDataLabels()}updateDataLabels(){if(this.type===jc.Stacked){this.barsForDataLabels=[];const r={};r.series=this.seriesName;const y=this.series.map(R=>R.value).reduce((R,ue)=>ue>0?R+ue:R,0),x=this.series.map(R=>R.value).reduce((R,ue)=>ue<0?R+ue:R,0);r.total=y+x,r.x=0,r.y=0,r.height=this.yScale(r.total>0?y:x),r.width=this.xScale.bandwidth(),this.barsForDataLabels.push(r)}else this.barsForDataLabels=this.series.map(r=>{const y={};return y.series=this.seriesName??r.label,y.total=r.value,y.x=this.xScale(r.label),y.y=this.yScale(0),y.height=this.yScale(y.total)-this.yScale(0),y.width=this.xScale.bandwidth(),y})}updateTooltipSettings(){this.tooltipPlacement=this.tooltipDisabled?void 0:Va.Top,this.tooltipType=this.tooltipDisabled?void 0:Hd.tooltip}isActive(r){return!!this.activeEntries&&void 0!==this.activeEntries.find(x=>r.name===x.name&&r.value===x.value)}onClick(r){this.select.emit(r)}getLabel(r){return r.label?r.label:r.name}trackBy(r,y){return y.label}trackDataLabelBy(r,y){return r+"#"+y.series+"#"+y.total}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.Agw))},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-series-vertical",""]],inputs:{dims:"dims",type:"type",series:"series",xScale:"xScale",yScale:"yScale",colors:"colors",gradient:"gradient",activeEntries:"activeEntries",seriesName:"seriesName",tooltipDisabled:"tooltipDisabled",tooltipTemplate:"tooltipTemplate",roundEdges:"roundEdges",animations:"animations",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero"},outputs:{select:"select",activate:"activate",deactivate:"deactivate",dataLabelHeightChanged:"dataLabelHeightChanged"},standalone:!1,features:[i.OA$],attrs:e0,decls:3,vars:3,consts:[[4,"ngIf"],["ngx-charts-bar","","ngx-tooltip","",3,"width","height","x","y","fill","stops","data","orientation","roundEdges","gradient","ariaLabel","isActive","tooltipDisabled","tooltipPlacement","tooltipType","tooltipTitle","tooltipTemplate","tooltipContext","noBarWhenZero","animations","select","activate","deactivate",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-bar","","ngx-tooltip","",3,"select","activate","deactivate","width","height","x","y","fill","stops","data","orientation","roundEdges","gradient","ariaLabel","isActive","tooltipDisabled","tooltipPlacement","tooltipType","tooltipTitle","tooltipTemplate","tooltipContext","noBarWhenZero","animations"],["ngx-charts-bar-label","",3,"barX","barY","barWidth","barHeight","value","valueFormatting","orientation","dimensionsChanged",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-bar-label","",3,"dimensionsChanged","barX","barY","barWidth","barHeight","value","valueFormatting","orientation"]],template:function(y,x){1&y&&i.DNE(0,ju,2,2,"g",0)(1,bm,2,2,"g",0)(2,Wu,2,2,"g",0),2&y&&(i.Y8G("ngIf",!x.isSSR),i.R7$(),i.Y8G("ngIf",x.isSSR),i.R7$(),i.Y8G("ngIf",x.showDataLabel))},dependencies:[T.Sq,T.bT,m0,zm,d4],encapsulation:2,data:{animation:[(0,L.hZ)("animationState",[(0,L.kY)(":leave",[(0,L.iF)({opacity:1}),(0,L.i0)(500,(0,L.iF)({opacity:0}))])])]},changeDetection:0}))}return s(),g})(),hh=(()=>{var s;class g extends h0{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=Ac.Right,this.tooltipDisabled=!1,this.showGridLines=!0,this.activeEntries=[],this.trimXAxisTicks=!0,this.trimYAxisTicks=!0,this.rotateXAxisTicks=!0,this.maxXAxisTickLength=16,this.maxYAxisTickLength=16,this.barPadding=8,this.roundDomains=!1,this.roundEdges=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.wrapTicks=!1,this.activate=new i.bkB,this.deactivate=new i.bkB,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive:0}}ngOnChanges(){this.update()}update(){if(super.update(),this.showDataLabel||(this.dataLabelMaxHeight={negative:0,positive:0}),this.margin=[10+this.dataLabelMaxHeight.positive,20,10+this.dataLabelMaxHeight.negative,20],this.dims=Fm({width:this.width,height:this.height,margins:this.margin,showXAxis:this.xAxis,showYAxis:this.yAxis,xAxisHeight:this.xAxisHeight,yAxisWidth:this.yAxisWidth,showXLabel:this.showXAxisLabel,showYLabel:this.showYAxisLabel,showLegend:this.legend,legendType:this.schemeType,legendPosition:this.legendPosition}),this.formatDates(),this.showDataLabel&&(this.dims.height-=this.dataLabelMaxHeight.negative),this.xScale=this.getXScale(),this.yScale=this.getYScale(),this.setColors(),this.legendOptions=this.getLegendOptions(),this.transform=`translate(${this.dims.xOffset} , ${this.margin[0]+this.dataLabelMaxHeight.negative})`,this.showRefLines){const r=ci(this.chartElement.nativeElement).select(".bar-chart").node();ci(this.chartElement.nativeElement).selectAll(".ref-line").nodes().forEach(x=>r.appendChild(x))}}getXScale(){this.xDomain=this.getXDomain();const r=this.xDomain.length/(this.dims.width/this.barPadding+1);return Pc().range([0,this.dims.width]).paddingInner(r).domain(this.xDomain)}getYScale(){this.yDomain=this.getYDomain();const r=lc().range([this.dims.height,0]).domain(this.yDomain);return this.roundDomains?r.nice():r}getXDomain(){return this.results.map(r=>r.label)}getYDomain(){const r=this.results.map(R=>R.value);let y=this.yScaleMin?Math.min(this.yScaleMin,...r):Math.min(0,...r);this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(y=Math.min(y,...this.yAxisTicks));let x=this.yScaleMax?Math.max(this.yScaleMax,...r):Math.max(0,...r);return this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(x=Math.max(x,...this.yAxisTicks)),[y,x]}onClick(r){this.select.emit(r)}setColors(){let r;r=this.schemeType===ma.Ordinal?this.xDomain:this.yDomain,this.colors=new c4(this.scheme,this.schemeType,r,this.customColors)}getLegendOptions(){const r={scaleType:this.schemeType,colors:void 0,domain:[],title:void 0,position:this.legendPosition};return r.scaleType===ma.Ordinal?(r.domain=this.xDomain,r.colors=this.colors,r.title=this.legendTitle):(r.domain=this.yDomain,r.colors=this.colors.scale),r}updateYAxisWidth({width:r}){this.yAxisWidth=r,this.update()}updateXAxisHeight({height:r}){this.xAxisHeight=r,this.update()}onDataLabelMaxHeightChanged(r){r.size.negative?this.dataLabelMaxHeight.negative=Math.max(this.dataLabelMaxHeight.negative,r.size.height):this.dataLabelMaxHeight.positive=Math.max(this.dataLabelMaxHeight.positive,r.size.height),r.index===this.results.length-1&&setTimeout(()=>this.update())}onActivate(r,y=!1){r=this.results.find(R=>y?R.label===r.name:R.name===r.name),!(this.activeEntries.findIndex(R=>R.name===r.name&&R.value===r.value&&R.series===r.series)>-1)&&(this.activeEntries=[r,...this.activeEntries],this.activate.emit({value:r,entries:this.activeEntries}))}onDeactivate(r,y=!1){r=this.results.find(R=>y?R.label===r.name:R.name===r.name);const x=this.activeEntries.findIndex(R=>R.name===r.name&&R.value===r.value&&R.series===r.series);this.activeEntries.splice(x,1),this.activeEntries=[...this.activeEntries],this.deactivate.emit({value:r,entries:this.activeEntries})}static#e=s=()=>(this.\u0275fac=(()=>{let r;return function(x){return(r||(r=i.xGo(g)))(x||g)}})(),this.\u0275cmp=i.VBU({type:g,selectors:[["ngx-charts-bar-vertical"]],contentQueries:function(y,x,R){if(1&y&&i.wni(R,w3,5),2&y){let ue;i.mGM(ue=i.lsd())&&(x.tooltipTemplate=ue.first)}},inputs:{legend:"legend",legendTitle:"legendTitle",legendPosition:"legendPosition",xAxis:"xAxis",yAxis:"yAxis",showXAxisLabel:"showXAxisLabel",showYAxisLabel:"showYAxisLabel",xAxisLabel:"xAxisLabel",yAxisLabel:"yAxisLabel",tooltipDisabled:"tooltipDisabled",gradient:"gradient",referenceLines:"referenceLines",showRefLines:"showRefLines",showRefLabels:"showRefLabels",showGridLines:"showGridLines",activeEntries:"activeEntries",schemeType:"schemeType",trimXAxisTicks:"trimXAxisTicks",trimYAxisTicks:"trimYAxisTicks",rotateXAxisTicks:"rotateXAxisTicks",maxXAxisTickLength:"maxXAxisTickLength",maxYAxisTickLength:"maxYAxisTickLength",xAxisTickFormatting:"xAxisTickFormatting",yAxisTickFormatting:"yAxisTickFormatting",xAxisTicks:"xAxisTicks",yAxisTicks:"yAxisTicks",barPadding:"barPadding",roundDomains:"roundDomains",roundEdges:"roundEdges",yScaleMax:"yScaleMax",yScaleMin:"yScaleMin",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero",wrapTicks:"wrapTicks"},outputs:{activate:"activate",deactivate:"deactivate"},standalone:!1,features:[i.Vt3,i.OA$],decls:5,vars:25,consts:[[3,"legendLabelClick","legendLabelActivate","legendLabelDeactivate","view","showLegend","legendOptions","activeEntries","animations"],[1,"bar-chart","chart"],["ngx-charts-x-axis","",3,"xScale","dims","showGridLines","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","referenceLines","showRefLines","showRefLabels","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-series-vertical","",3,"activate","deactivate","select","dataLabelHeightChanged","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","activeEntries","roundEdges","animations","noBarWhenZero"],["ngx-charts-x-axis","",3,"dimensionsChanged","xScale","dims","showGridLines","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks"],["ngx-charts-y-axis","",3,"dimensionsChanged","yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","referenceLines","showRefLines","showRefLabels","wrapTicks"]],template:function(y,x){1&y&&(i.j41(0,"ngx-charts-chart",0),i.bIt("legendLabelClick",function(ue){return x.onClick(ue)})("legendLabelActivate",function(ue){return x.onActivate(ue,!0)})("legendLabelDeactivate",function(ue){return x.onDeactivate(ue,!0)}),d.qSk(),i.j41(1,"g",1),i.DNE(2,Xu,1,12,"g",2)(3,Cm,1,13,"g",3),i.j41(4,"g",4),i.bIt("activate",function(ue){return x.onActivate(ue)})("deactivate",function(ue){return x.onDeactivate(ue)})("select",function(ue){return x.onClick(ue)})("dataLabelHeightChanged",function(ue){return x.onDataLabelMaxHeightChanged(ue)}),i.k0s()()()),2&y&&(i.Y8G("view",i.l_i(22,l1,x.width,x.height))("showLegend",x.legend)("legendOptions",x.legendOptions)("activeEntries",x.activeEntries)("animations",x.animations),i.R7$(),i.BMQ("transform",x.transform),i.R7$(),i.Y8G("ngIf",x.xAxis),i.R7$(),i.Y8G("ngIf",x.yAxis),i.R7$(),i.Y8G("xScale",x.xScale)("yScale",x.yScale)("colors",x.colors)("series",x.results)("dims",x.dims)("gradient",x.gradient)("tooltipDisabled",x.tooltipDisabled)("tooltipTemplate",x.tooltipTemplate)("showDataLabel",x.showDataLabel)("dataLabelFormatting",x.dataLabelFormatting)("activeEntries",x.activeEntries)("roundEdges",x.roundEdges)("animations",x.animations)("noBarWhenZero",x.noBarWhenZero))},dependencies:[T.bT,i4,lh,ih,Vm],styles:[Cl],encapsulation:2,changeDetection:0}))}return s(),g})(),bp=(()=>{var s;class g extends h0{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=Ac.Right,this.tooltipDisabled=!1,this.scaleType=ma.Ordinal,this.showGridLines=!0,this.activeEntries=[],this.schemeType=ma.Ordinal,this.trimXAxisTicks=!0,this.trimYAxisTicks=!0,this.rotateXAxisTicks=!0,this.maxXAxisTickLength=16,this.maxYAxisTickLength=16,this.groupPadding=16,this.barPadding=8,this.roundDomains=!1,this.roundEdges=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.wrapTicks=!1,this.activate=new i.bkB,this.deactivate=new i.bkB,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive:0},this.isSSR=!1,this.barOrientation=Qr,this.trackBy=(r,y)=>y.name}ngOnInit(){(0,w.Vy)(this.platformId)&&(this.isSSR=!0)}update(){super.update(),this.showDataLabel||(this.dataLabelMaxHeight={negative:0,positive:0}),this.margin=[10+this.dataLabelMaxHeight.positive,20,10+this.dataLabelMaxHeight.negative,20],this.dims=Fm({width:this.width,height:this.height,margins:this.margin,showXAxis:this.xAxis,showYAxis:this.yAxis,xAxisHeight:this.xAxisHeight,yAxisWidth:this.yAxisWidth,showXLabel:this.showXAxisLabel,showYLabel:this.showYAxisLabel,showLegend:this.legend,legendType:this.schemeType,legendPosition:this.legendPosition}),this.showDataLabel&&(this.dims.height-=this.dataLabelMaxHeight.negative),this.formatDates(),this.groupDomain=this.getGroupDomain(),this.innerDomain=this.getInnerDomain(),this.valueDomain=this.getValueDomain(),this.groupScale=this.getGroupScale(),this.innerScale=this.getInnerScale(),this.valueScale=this.getValueScale(),this.setColors(),this.legendOptions=this.getLegendOptions(),this.transform=`translate(${this.dims.xOffset} , ${this.margin[0]+this.dataLabelMaxHeight.negative})`}onDataLabelMaxHeightChanged(r,y){r.size.negative?this.dataLabelMaxHeight.negative=Math.max(this.dataLabelMaxHeight.negative,r.size.height):this.dataLabelMaxHeight.positive=Math.max(this.dataLabelMaxHeight.positive,r.size.height),y===this.results.length-1&&setTimeout(()=>this.update())}getGroupScale(){const r=this.groupDomain.length/(this.dims.height/this.groupPadding+1);return Pc().rangeRound([0,this.dims.width]).paddingInner(r).paddingOuter(r/2).domain(this.groupDomain)}getInnerScale(){const r=this.groupScale.bandwidth(),y=this.innerDomain.length/(r/this.barPadding+1);return Pc().rangeRound([0,r]).paddingInner(y).domain(this.innerDomain)}getValueScale(){const r=lc().range([this.dims.height,0]).domain(this.valueDomain);return this.roundDomains?r.nice():r}getGroupDomain(){const r=[];for(const y of this.results)r.includes(y.label)||r.push(y.label);return r}getInnerDomain(){const r=[];for(const y of this.results)for(const x of y.series)r.includes(x.label)||r.push(x.label);return r}getValueDomain(){const r=[];for(const R of this.results)for(const ue of R.series)r.includes(ue.value)||r.push(ue.value);return[Math.min(0,...r),this.yScaleMax?Math.max(this.yScaleMax,...r):Math.max(0,...r)]}groupTransform(r){return`translate(${this.groupScale(r.label)}, 0)`}onClick(r,y){y&&(r.series=y.name),this.select.emit(r)}setColors(){let r;r=this.schemeType===ma.Ordinal?this.innerDomain:this.valueDomain,this.colors=new c4(this.scheme,this.schemeType,r,this.customColors)}getLegendOptions(){const r={scaleType:this.schemeType,colors:void 0,domain:[],title:void 0,position:this.legendPosition};return r.scaleType===ma.Ordinal?(r.domain=this.innerDomain,r.colors=this.colors,r.title=this.legendTitle):(r.domain=this.valueDomain,r.colors=this.colors.scale),r}updateYAxisWidth({width:r}){this.yAxisWidth=r,this.update()}updateXAxisHeight({height:r}){this.xAxisHeight=r,this.update()}onActivate(r,y,x=!1){const R=Object.assign({},r);y&&(R.series=y.name);const ue=this.results.map(xt=>xt.series).flat().filter(xt=>x?xt.label===R.name:xt.name===R.name&&xt.series===R.series);this.activeEntries=[...ue],this.activate.emit({value:R,entries:this.activeEntries})}onDeactivate(r,y,x=!1){const R=Object.assign({},r);y&&(R.series=y.name),this.activeEntries=this.activeEntries.filter(ue=>x?ue.label!==R.name:!(ue.name===R.name&&ue.series===R.series)),this.deactivate.emit({value:R,entries:this.activeEntries})}static#e=s=()=>(this.\u0275fac=(()=>{let r;return function(x){return(r||(r=i.xGo(g)))(x||g)}})(),this.\u0275cmp=i.VBU({type:g,selectors:[["ngx-charts-bar-vertical-2d"]],contentQueries:function(y,x,R){if(1&y&&i.wni(R,w3,5),2&y){let ue;i.mGM(ue=i.lsd())&&(x.tooltipTemplate=ue.first)}},inputs:{legend:"legend",legendTitle:"legendTitle",legendPosition:"legendPosition",xAxis:"xAxis",yAxis:"yAxis",showXAxisLabel:"showXAxisLabel",showYAxisLabel:"showYAxisLabel",xAxisLabel:"xAxisLabel",yAxisLabel:"yAxisLabel",tooltipDisabled:"tooltipDisabled",scaleType:"scaleType",gradient:"gradient",showGridLines:"showGridLines",activeEntries:"activeEntries",schemeType:"schemeType",trimXAxisTicks:"trimXAxisTicks",trimYAxisTicks:"trimYAxisTicks",rotateXAxisTicks:"rotateXAxisTicks",maxXAxisTickLength:"maxXAxisTickLength",maxYAxisTickLength:"maxYAxisTickLength",xAxisTickFormatting:"xAxisTickFormatting",yAxisTickFormatting:"yAxisTickFormatting",xAxisTicks:"xAxisTicks",yAxisTicks:"yAxisTicks",groupPadding:"groupPadding",barPadding:"barPadding",roundDomains:"roundDomains",roundEdges:"roundEdges",yScaleMax:"yScaleMax",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero",wrapTicks:"wrapTicks"},outputs:{activate:"activate",deactivate:"deactivate"},standalone:!1,features:[i.Vt3],decls:7,vars:18,consts:[[3,"legendLabelActivate","legendLabelDeactivate","legendLabelClick","view","showLegend","legendOptions","activeEntries","animations"],[1,"bar-chart","chart"],["ngx-charts-grid-panel-series","",3,"xScale","yScale","data","dims","orient"],["ngx-charts-x-axis","",3,"xScale","dims","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks","dimensionsChanged",4,"ngIf"],[4,"ngIf"],["ngx-charts-x-axis","",3,"dimensionsChanged","xScale","dims","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks"],["ngx-charts-y-axis","",3,"dimensionsChanged","yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks"],["ngx-charts-series-vertical","",3,"activeEntries","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","seriesName","roundEdges","animations","noBarWhenZero","select","activate","deactivate","dataLabelHeightChanged",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-series-vertical","",3,"select","activate","deactivate","dataLabelHeightChanged","activeEntries","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","seriesName","roundEdges","animations","noBarWhenZero"]],template:function(y,x){1&y&&(i.j41(0,"ngx-charts-chart",0),i.bIt("legendLabelActivate",function(ue){return x.onActivate(ue,void 0,!0)})("legendLabelDeactivate",function(ue){return x.onDeactivate(ue,void 0,!0)})("legendLabelClick",function(ue){return x.onClick(ue)}),d.qSk(),i.j41(1,"g",1),i.nrm(2,"g",2),i.DNE(3,Ku,1,11,"g",3)(4,j3,1,10,"g",4)(5,H3,2,2,"g",5)(6,n0,2,2,"g",5),i.k0s()()),2&y&&(i.Y8G("view",i.l_i(15,l1,x.width,x.height))("showLegend",x.legend)("legendOptions",x.legendOptions)("activeEntries",x.activeEntries)("animations",x.animations),i.R7$(),i.BMQ("transform",x.transform),i.R7$(),i.Y8G("xScale",x.groupScale)("yScale",x.valueScale)("data",x.results)("dims",x.dims)("orient",x.barOrientation.Vertical),i.R7$(),i.Y8G("ngIf",x.xAxis),i.R7$(),i.Y8G("ngIf",x.yAxis),i.R7$(),i.Y8G("ngIf",!x.isSSR),i.R7$(),i.Y8G("ngIf",x.isSSR))},dependencies:[T.Sq,T.bT,i4,lh,ih,Om,Vm],styles:[Cl],encapsulation:2,data:{animation:[(0,L.hZ)("animationState",[(0,L.kY)(":leave",[(0,L.iF)({opacity:1,transform:"*"}),(0,L.i0)(500,(0,L.iF)({opacity:0,transform:"scale(0)"}))])])]},changeDetection:0}))}return s(),g})(),Um=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),mh=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),fh=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),gh=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),Tp=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})();Math;let p1=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),Dp=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl,p1,Tp]}))}return s(),g})(),yo=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),yh=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),bh=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl,p1,Um]}))}return s(),g})(),td=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),p4=(()=>{var s;class g{constructor(){!function Ch(){typeof SVGElement<"u"&&typeof SVGElement.prototype.contains>"u"&&(SVGElement.prototype.contains=HTMLDivElement.prototype.contains)}()}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl,Bm,Um,mh,fh,gh,td,Tp,Dp,yo,p1,yh,bh]}))}return s(),g})()},8288(Zt,pe,l){"use strict";l.d(pe,{Um:()=>A,XK:()=>Pe});var i=l(467),d=l(2200),v=l(2615),T=l(3664),w=l(7705),e=l(8314);function O(le,Ce){if(1&le&&T.nrm(0,"canvas",1),2&le){const Ae=T.XpG();T.HbH(Ae.styleClass),T.Y8G("qrCode",Ae.value)("qrCodeErrorCorrectionLevel",Ae.errorCorrectionLevel)("qrCodeCenterImageSrc",Ae.centerImageSrc)("qrCodeCenterImageWidth",Ae.centerImageSize)("qrCodeCenterImageHeight",Ae.centerImageSize)("qrCodeMargin",Ae.margin)("qrScale",Ae.scale)("qrCodeMaskPattern",Ae.maskPattern)("width",Ae.size)("height",Ae.size)("ngStyle",Ae.style)("darkColor",Ae.darkColor)("lightColor",Ae.lightColor)}}const f=/^#(?:[0-9a-fA-F]{3,4}){1,2}$/,u=/^[0-9.]+$/;let L=(()=>{var le;class Ce{constructor(j){this.viewContainerRef=j,this.errorCorrectionLevel=Ce.DEFAULT_ERROR_CORRECTION_LEVEL,this.darkColor="#000000FF",this.lightColor="#FFFFFFFF",this.margin=16}ngOnChanges(){var j=this;return(0,i.A)(function*(){if(!j.value)return;j.version&&j.version>40?(console.warn("[qrCode] max version is 40, clamping"),j.version=40):j.version&&j.version<1?(console.warn("[qrCode] min version is 1, clamping"),j.version=1):void 0!==j.version&&isNaN(j.version)&&(console.warn("[qrCode] version should be set to a number, defaulting to auto"),j.version=void 0);const W=j.viewContainerRef.element.nativeElement;if(!W)return;const G=W.getContext("2d");G&&G.clearRect(0,0,G.canvas.width,G.canvas.height);const re=j.errorCorrectionLevel??Ce.DEFAULT_ERROR_CORRECTION_LEVEL,xe=j.darkColor&&f.test(j.darkColor)?j.darkColor:void 0,Ee=j.lightColor&&f.test(j.lightColor)?j.lightColor:void 0;(0,w.naY)()&&(!xe&&j.darkColor&&console.error("[ng-qrcode] darkColor set to invalid value, must be RGBA hex color string, eg: #3050A1FF"),!Ee&&j.lightColor&&console.error("[ng-qrcode] lightColor set to invalid value, must be RGBA hex color string, eg: #3050A130")),yield e.toCanvas(W,j.value,{version:j.version,errorCorrectionLevel:re,width:C(j.width),margin:j.margin,scale:j.qrScale,maskPattern:j.qrCodeMaskPattern,color:{dark:xe,light:Ee}});const V=j.centerImageSrc,ce=B(j.centerImageWidth,Ce.DEFAULT_CENTER_IMAGE_SIZE),be=B(j.centerImageHeight,Ce.DEFAULT_CENTER_IMAGE_SIZE);if(V&&G){j.centerImage||(j.centerImage=new Image(ce,be));const ne=j.centerImage;V!==j.centerImage.src&&(ne.src=V),ce!==j.centerImage.width&&(ne.width=ce),be!==j.centerImage.height&&(ne.height=be);const J=()=>{G.drawImage(ne,W.width/2-ce/2,W.height/2-be/2,ce,be)};ne.onload=J,ne.complete&&J()}})()}static#e=le=()=>(this.DEFAULT_ERROR_CORRECTION_LEVEL="M",this.DEFAULT_CENTER_IMAGE_SIZE=40,this.\u0275fac=function(W){return new(W||Ce)(T.rXU(T.c1b))},this.\u0275dir=T.FsC({type:Ce,selectors:[["canvas","qrCode",""]],inputs:{value:[0,"qrCode","value"],version:[0,"qrCodeVersion","version"],errorCorrectionLevel:[0,"qrCodeErrorCorrectionLevel","errorCorrectionLevel"],width:"width",height:"height",darkColor:"darkColor",lightColor:"lightColor",centerImageSrc:[0,"qrCodeCenterImageSrc","centerImageSrc"],centerImageWidth:[0,"qrCodeCenterImageWidth","centerImageWidth"],centerImageHeight:[0,"qrCodeCenterImageHeight","centerImageHeight"],margin:[0,"qrCodeMargin","margin"],qrScale:"qrScale",qrCodeMaskPattern:"qrCodeMaskPattern"},features:[T.OA$]}))}return le(),Ce})();function C(le){if(void 0!==le&&""!==le){if("string"==typeof le){if(!u.test(le))throw new Error(`'${le}' is not a valid number`);return parseFloat(le)}return le}}function B(le,Ce){return void 0===le||""===le?Ce:C(le)}let A=(()=>{var le;class Ce{static#e=le=()=>(this.\u0275fac=function(W){return new(W||Ce)},this.\u0275cmp=T.VBU({type:Ce,selectors:[["qr-code"]],inputs:{value:"value",size:"size",style:"style",styleClass:"styleClass",darkColor:"darkColor",lightColor:"lightColor",errorCorrectionLevel:"errorCorrectionLevel",centerImageSrc:"centerImageSrc",centerImageSize:"centerImageSize",margin:"margin",scale:"scale",maskPattern:"maskPattern"},decls:1,vars:1,consts:[[3,"qrCode","qrCodeErrorCorrectionLevel","qrCodeCenterImageSrc","qrCodeCenterImageWidth","qrCodeCenterImageHeight","qrCodeMargin","qrScale","qrCodeMaskPattern","width","height","class","ngStyle","darkColor","lightColor"],[3,"qrCode","qrCodeErrorCorrectionLevel","qrCodeCenterImageSrc","qrCodeCenterImageWidth","qrCodeCenterImageHeight","qrCodeMargin","qrScale","qrCodeMaskPattern","width","height","ngStyle","darkColor","lightColor"]],template:function(W,G){1&W&&T.nVh(0,O,1,15,"canvas",0),2&W&&T.vxM(G.value?0:-1)},dependencies:[L,d.MD,d.B3],encapsulation:2}))}return le(),Ce})(),Pe=(()=>{var le;class Ce{static#e=le=()=>(this.\u0275fac=function(W){return new(W||Ce)},this.\u0275mod=T.$C({type:Ce}),this.\u0275inj=v.G2t({imports:[d.MD,A]}))}return le(),Ce})()},497(Zt,pe,l){"use strict";l.d(pe,{kU:()=>Me,ZF:()=>ut,Ld:()=>Be,U$:()=>Ot});var i=l(1413),d=l(3726),v=l(7786),T=l(3798),w=l(6977),e=l(3294),O=l(3703),f=l(3664),u=l(7705),L=l(2615),C=l(2200),B=l(177);function A(se){return getComputedStyle(se)}function Pe(se,We){for(var bt in We){var tn=We[bt];"number"==typeof tn&&(tn+="px"),se.style[bt]=tn}return se}function le(se){var We=document.createElement("div");return We.className=se,We}var Ce=typeof Element<"u"&&(Element.prototype.matches||Element.prototype.webkitMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector);function Ae(se,We){if(!Ce)throw new Error("No element matching method supported");return Ce.call(se,We)}function j(se){se.remove?se.remove():se.parentNode&&se.parentNode.removeChild(se)}function W(se,We){return Array.prototype.filter.call(se.children,function(bt){return Ae(bt,We)})}var G_element_thumb=function(se){return"ps__thumb-"+se},G_element_rail=function(se){return"ps__rail-"+se},G_element_consuming="ps__child--consume",G_state_focus="ps--focus",G_state_clicking="ps--clicking",G_state_active=function(se){return"ps--active-"+se},G_state_scrolling=function(se){return"ps--scrolling-"+se},re={x:null,y:null};function xe(se,We){var bt=se.element.classList,tn=G_state_scrolling(We);bt.contains(tn)?clearTimeout(re[We]):bt.add(tn)}function Ee(se,We){re[We]=setTimeout(function(){return se.isAlive&&se.element.classList.remove(G_state_scrolling(We))},se.settings.scrollingThreshold)}var ce=function(We){this.element=We,this.handlers={}},be={isEmpty:{configurable:!0}};ce.prototype.bind=function(We,bt){typeof this.handlers[We]>"u"&&(this.handlers[We]=[]),this.handlers[We].push(bt),this.element.addEventListener(We,bt,!1)},ce.prototype.unbind=function(We,bt){var tn=this;this.handlers[We]=this.handlers[We].filter(function(on){return!(!bt||on===bt)||(tn.element.removeEventListener(We,on,!1),!1)})},ce.prototype.unbindAll=function(){for(var We in this.handlers)this.unbind(We)},be.isEmpty.get=function(){var se=this;return Object.keys(this.handlers).every(function(We){return 0===se.handlers[We].length})},Object.defineProperties(ce.prototype,be);var ne=function(){this.eventElements=[]};function J(se){if("function"==typeof window.CustomEvent)return new CustomEvent(se);var We=document.createEvent("CustomEvent");return We.initCustomEvent(se,!1,!1,void 0),We}function De(se,We,bt,tn,on){var un;if(void 0===tn&&(tn=!0),void 0===on&&(on=!1),"top"===We)un=["contentHeight","containerHeight","scrollTop","y","up","down"];else{if("left"!==We)throw new Error("A proper axis should be provided");un=["contentWidth","containerWidth","scrollLeft","x","left","right"]}!function Re(se,We,bt,tn,on){var un=bt[0],Nt=bt[1],dn=bt[2],xn=bt[3],Jn=bt[4],xi=bt[5];void 0===tn&&(tn=!0),void 0===on&&(on=!1);var Yi=se.element;se.reach[xn]=null,Yi[dn]<1&&(se.reach[xn]="start"),Yi[dn]>se[un]-se[Nt]-1&&(se.reach[xn]="end"),We&&(Yi.dispatchEvent(J("ps-scroll-"+xn)),We<0?Yi.dispatchEvent(J("ps-scroll-"+Jn)):We>0&&Yi.dispatchEvent(J("ps-scroll-"+xi)),tn&&function V(se,We){xe(se,We),Ee(se,We)}(se,xn)),se.reach[xn]&&(We||on)&&Yi.dispatchEvent(J("ps-"+xn+"-reach-"+se.reach[xn]))}(se,bt,un,tn,on)}function Xe(se){return parseInt(se,10)||0}ne.prototype.eventElement=function(We){var bt=this.eventElements.filter(function(tn){return tn.element===We})[0];return bt||(bt=new ce(We),this.eventElements.push(bt)),bt},ne.prototype.bind=function(We,bt,tn){this.eventElement(We).bind(bt,tn)},ne.prototype.unbind=function(We,bt,tn){var on=this.eventElement(We);on.unbind(bt,tn),on.isEmpty&&this.eventElements.splice(this.eventElements.indexOf(on),1)},ne.prototype.unbindAll=function(){this.eventElements.forEach(function(We){return We.unbindAll()}),this.eventElements=[]},ne.prototype.once=function(We,bt,tn){var on=this.eventElement(We),un=function(Nt){on.unbind(bt,un),tn(Nt)};on.bind(bt,un)};var Dt={isWebKit:typeof document<"u"&&"WebkitAppearance"in document.documentElement.style,supportsTouch:typeof window<"u"&&("ontouchstart"in window||"maxTouchPoints"in window.navigator&&window.navigator.maxTouchPoints>0||window.DocumentTouch&&document instanceof window.DocumentTouch),supportsIePointer:typeof navigator<"u"&&navigator.msMaxTouchPoints,isChrome:typeof navigator<"u"&&/Chrome/i.test(navigator&&navigator.userAgent)};function lt(se){var We=se.element,bt=Math.floor(We.scrollTop),tn=We.getBoundingClientRect();se.containerWidth=Math.round(tn.width),se.containerHeight=Math.round(tn.height),se.contentWidth=We.scrollWidth,se.contentHeight=We.scrollHeight,We.contains(se.scrollbarXRail)||(W(We,G_element_rail("x")).forEach(function(on){return j(on)}),We.appendChild(se.scrollbarXRail)),We.contains(se.scrollbarYRail)||(W(We,G_element_rail("y")).forEach(function(on){return j(on)}),We.appendChild(se.scrollbarYRail)),!se.settings.suppressScrollX&&se.containerWidth+se.settings.scrollXMarginOffset=se.railXWidth-se.scrollbarXWidth&&(se.scrollbarXLeft=se.railXWidth-se.scrollbarXWidth),se.scrollbarYTop>=se.railYHeight-se.scrollbarYHeight&&(se.scrollbarYTop=se.railYHeight-se.scrollbarYHeight),function te(se,We){var bt={width:We.railXWidth},tn=Math.floor(se.scrollTop);bt.left=We.isRtl?We.negativeScrollAdjustment+se.scrollLeft+We.containerWidth-We.contentWidth:se.scrollLeft,We.isScrollbarXUsingBottom?bt.bottom=We.scrollbarXBottom-tn:bt.top=We.scrollbarXTop+tn,Pe(We.scrollbarXRail,bt);var on={top:tn,height:We.railYHeight};We.isScrollbarYUsingRight?on.right=We.isRtl?We.contentWidth-(We.negativeScrollAdjustment+se.scrollLeft)-We.scrollbarYRight-We.scrollbarYOuterWidth-9:We.scrollbarYRight-se.scrollLeft:on.left=We.isRtl?We.negativeScrollAdjustment+se.scrollLeft+2*We.containerWidth-We.contentWidth-We.scrollbarYLeft-We.scrollbarYOuterWidth:We.scrollbarYLeft+se.scrollLeft,Pe(We.scrollbarYRail,on),Pe(We.scrollbarX,{left:We.scrollbarXLeft,width:We.scrollbarXWidth-We.railBorderXWidth}),Pe(We.scrollbarY,{top:We.scrollbarYTop,height:We.scrollbarYHeight-We.railBorderYWidth})}(We,se),se.scrollbarXActive?We.classList.add(G_state_active("x")):(We.classList.remove(G_state_active("x")),se.scrollbarXWidth=0,se.scrollbarXLeft=0,We.scrollLeft=!0===se.isRtl?se.contentWidth:0),se.scrollbarYActive?We.classList.add(G_state_active("y")):(We.classList.remove(G_state_active("y")),se.scrollbarYHeight=0,se.scrollbarYTop=0,We.scrollTop=0)}function Le(se,We){return se.settings.minScrollbarLength&&(We=Math.max(We,se.settings.minScrollbarLength)),se.settings.maxScrollbarLength&&(We=Math.min(We,se.settings.maxScrollbarLength)),We}function F(se,We){var bt=We[0],tn=We[1],on=We[2],un=We[3],Nt=We[4],dn=We[5],xn=We[6],Jn=We[7],xi=We[8],Yi=se.element,Tt=null,At=null,we=null;function ae(_n){_n.touches&&_n.touches[0]&&(_n[on]=_n.touches[0].pageY),Yi[xn]=Tt+we*(_n[on]-At),xe(se,Jn),lt(se),_n.stopPropagation(),_n.type.startsWith("touch")&&_n.changedTouches.length>1&&_n.preventDefault()}function Lt(){Ee(se,Jn),se[xi].classList.remove(G_state_clicking),se.event.unbind(se.ownerDocument,"mousemove",ae)}function Ht(_n,fi){Tt=Yi[xn],fi&&_n.touches&&(_n[on]=_n.touches[0].pageY),At=_n[on],we=(se[tn]-se[bt])/(se[un]-se[dn]),fi?se.event.bind(se.ownerDocument,"touchmove",ae):(se.event.bind(se.ownerDocument,"mousemove",ae),se.event.once(se.ownerDocument,"mouseup",Lt),_n.preventDefault()),se[xi].classList.add(G_state_clicking),_n.stopPropagation()}se.event.bind(se[Nt],"mousedown",function(_n){Ht(_n)}),se.event.bind(se[Nt],"touchstart",function(_n){Ht(_n,!0)})}var Vt={"click-rail":function ie(se){se.event.bind(se.scrollbarY,"mousedown",function(bt){return bt.stopPropagation()}),se.event.bind(se.scrollbarYRail,"mousedown",function(bt){var tn=bt.pageY-window.pageYOffset-se.scrollbarYRail.getBoundingClientRect().top;se.element.scrollTop+=(tn>se.scrollbarYTop?1:-1)*se.containerHeight,lt(se),bt.stopPropagation()}),se.event.bind(se.scrollbarX,"mousedown",function(bt){return bt.stopPropagation()}),se.event.bind(se.scrollbarXRail,"mousedown",function(bt){var tn=bt.pageX-window.pageXOffset-se.scrollbarXRail.getBoundingClientRect().left;se.element.scrollLeft+=(tn>se.scrollbarXLeft?1:-1)*se.containerWidth,lt(se),bt.stopPropagation()})},"drag-thumb":function P(se){F(se,["containerWidth","contentWidth","pageX","railXWidth","scrollbarX","scrollbarXWidth","scrollLeft","x","scrollbarXRail"]),F(se,["containerHeight","contentHeight","pageY","railYHeight","scrollbarY","scrollbarYHeight","scrollTop","y","scrollbarYRail"])},keyboard:function ve(se){var We=se.element;se.event.bind(se.ownerDocument,"keydown",function(un){if(!(un.isDefaultPrevented&&un.isDefaultPrevented()||un.defaultPrevented)&&(Ae(We,":hover")||Ae(se.scrollbarX,":focus")||Ae(se.scrollbarY,":focus"))){var Nt=document.activeElement?document.activeElement:se.ownerDocument.activeElement;if(Nt){if("IFRAME"===Nt.tagName)Nt=Nt.contentDocument.activeElement;else for(;Nt.shadowRoot;)Nt=Nt.shadowRoot.activeElement;if(function _e(se){return Ae(se,"input,[contenteditable]")||Ae(se,"select,[contenteditable]")||Ae(se,"textarea,[contenteditable]")||Ae(se,"button,[contenteditable]")}(Nt))return}var dn=0,xn=0;switch(un.which){case 37:dn=un.metaKey?-se.contentWidth:un.altKey?-se.containerWidth:-30;break;case 38:xn=un.metaKey?se.contentHeight:un.altKey?se.containerHeight:30;break;case 39:dn=un.metaKey?se.contentWidth:un.altKey?se.containerWidth:30;break;case 40:xn=un.metaKey?-se.contentHeight:un.altKey?-se.containerHeight:-30;break;case 32:xn=un.shiftKey?se.containerHeight:-se.containerHeight;break;case 33:xn=se.containerHeight;break;case 34:xn=-se.containerHeight;break;case 36:xn=se.contentHeight;break;case 35:xn=-se.contentHeight;break;default:return}se.settings.suppressScrollX&&0!==dn||se.settings.suppressScrollY&&0!==xn||(We.scrollTop-=xn,We.scrollLeft+=dn,lt(se),function on(un,Nt){var dn=Math.floor(We.scrollTop);if(0===un){if(!se.scrollbarYActive)return!1;if(0===dn&&Nt>0||dn>=se.contentHeight-se.containerHeight&&Nt<0)return!se.settings.wheelPropagation}var xn=We.scrollLeft;if(0===Nt){if(!se.scrollbarXActive)return!1;if(0===xn&&un<0||xn>=se.contentWidth-se.containerWidth&&un>0)return!se.settings.wheelPropagation}return!0}(dn,xn)&&un.preventDefault())}})},wheel:function H(se){var We=se.element;function un(Nt){var dn=function tn(Nt){var dn=Nt.deltaX,xn=-1*Nt.deltaY;return(typeof dn>"u"||typeof xn>"u")&&(dn=-1*Nt.wheelDeltaX/6,xn=Nt.wheelDeltaY/6),Nt.deltaMode&&1===Nt.deltaMode&&(dn*=10,xn*=10),dn!=dn&&xn!=xn&&(dn=0,xn=Nt.wheelDelta),Nt.shiftKey?[-xn,-dn]:[dn,xn]}(Nt),xn=dn[0],Jn=dn[1];if(!function on(Nt,dn,xn){if(!Dt.isWebKit&&We.querySelector("select:focus"))return!0;if(!We.contains(Nt))return!1;for(var Jn=Nt;Jn&&Jn!==We;){if(Jn.classList.contains(G_element_consuming))return!0;var xi=A(Jn);if(xn&&xi.overflowY.match(/(scroll|auto)/)){var Yi=Jn.scrollHeight-Jn.clientHeight;if(Yi>0&&(Jn.scrollTop>0&&xn<0||Jn.scrollTop0))return!0}if(dn&&xi.overflowX.match(/(scroll|auto)/)){var Tt=Jn.scrollWidth-Jn.clientWidth;if(Tt>0&&(Jn.scrollLeft>0&&dn<0||Jn.scrollLeft0))return!0}Jn=Jn.parentNode}return!1}(Nt.target,xn,Jn)){var xi=!1;se.settings.useBothWheelAxes?se.scrollbarYActive&&!se.scrollbarXActive?(Jn?We.scrollTop-=Jn*se.settings.wheelSpeed:We.scrollTop+=xn*se.settings.wheelSpeed,xi=!0):se.scrollbarXActive&&!se.scrollbarYActive&&(xn?We.scrollLeft+=xn*se.settings.wheelSpeed:We.scrollLeft-=Jn*se.settings.wheelSpeed,xi=!0):(We.scrollTop-=Jn*se.settings.wheelSpeed,We.scrollLeft+=xn*se.settings.wheelSpeed),lt(se),xi=xi||function bt(Nt,dn){var xn=Math.floor(We.scrollTop),Jn=0===We.scrollTop,xi=xn+We.offsetHeight===We.scrollHeight,Yi=0===We.scrollLeft,Tt=We.scrollLeft+We.offsetWidth===We.scrollWidth;return!(Math.abs(dn)>Math.abs(Nt)?Jn||xi:Yi||Tt)||!se.settings.wheelPropagation}(xn,Jn),xi&&!Nt.ctrlKey&&(Nt.stopPropagation(),Nt.preventDefault())}}typeof window.onwheel<"u"?se.event.bind(We,"wheel",un):typeof window.onmousewheel<"u"&&se.event.bind(We,"mousewheel",un)},touch:function $(se){if(Dt.supportsTouch||Dt.supportsIePointer){var We=se.element,on={},un=0,Nt={},dn=null;Dt.supportsTouch?(se.event.bind(We,"touchstart",xi),se.event.bind(We,"touchmove",Tt),se.event.bind(We,"touchend",At)):Dt.supportsIePointer&&(window.PointerEvent?(se.event.bind(We,"pointerdown",xi),se.event.bind(We,"pointermove",Tt),se.event.bind(We,"pointerup",At)):window.MSPointerEvent&&(se.event.bind(We,"MSPointerDown",xi),se.event.bind(We,"MSPointerMove",Tt),se.event.bind(We,"MSPointerUp",At)))}function tn(we,ae){We.scrollTop-=ae,We.scrollLeft-=we,lt(se)}function xn(we){return we.targetTouches?we.targetTouches[0]:we}function Jn(we){return!(we.pointerType&&"pen"===we.pointerType&&0===we.buttons||!(we.targetTouches&&1===we.targetTouches.length||we.pointerType&&"mouse"!==we.pointerType&&we.pointerType!==we.MSPOINTER_TYPE_MOUSE))}function xi(we){if(Jn(we)){var ae=xn(we);on.pageX=ae.pageX,on.pageY=ae.pageY,un=(new Date).getTime(),null!==dn&&clearInterval(dn)}}function Tt(we){if(Jn(we)){var ae=xn(we),Lt={pageX:ae.pageX,pageY:ae.pageY},Ht=Lt.pageX-on.pageX,_n=Lt.pageY-on.pageY;if(function Yi(we,ae,Lt){if(!We.contains(we))return!1;for(var Ht=we;Ht&&Ht!==We;){if(Ht.classList.contains(G_element_consuming))return!0;var _n=A(Ht);if(Lt&&_n.overflowY.match(/(scroll|auto)/)){var fi=Ht.scrollHeight-Ht.clientHeight;if(fi>0&&(Ht.scrollTop>0&&Lt<0||Ht.scrollTop0))return!0}if(ae&&_n.overflowX.match(/(scroll|auto)/)){var bi=Ht.scrollWidth-Ht.clientWidth;if(bi>0&&(Ht.scrollLeft>0&&ae<0||Ht.scrollLeft0))return!0}Ht=Ht.parentNode}return!1}(we.target,Ht,_n))return;tn(Ht,_n),on=Lt;var fi=(new Date).getTime(),bi=fi-un;bi>0&&(Nt.x=Ht/bi,Nt.y=_n/bi,un=fi),function bt(we,ae){var Lt=Math.floor(We.scrollTop),Ht=We.scrollLeft,_n=Math.abs(we),fi=Math.abs(ae);if(fi>_n){if(ae<0&&Lt===se.contentHeight-se.containerHeight||ae>0&&0===Lt)return 0===window.scrollY&&ae>0&&Dt.isChrome}else if(_n>fi&&(we<0&&Ht===se.contentWidth-se.containerWidth||we>0&&0===Ht))return!0;return!0}(Ht,_n)&&we.preventDefault()}}function At(){se.settings.swipeEasing&&(clearInterval(dn),dn=setInterval(function(){se.isInitialized?clearInterval(dn):Nt.x||Nt.y?Math.abs(Nt.x)<.01&&Math.abs(Nt.y)<.01?clearInterval(dn):se.element?(tn(30*Nt.x,30*Nt.y),Nt.x*=.8,Nt.y*=.8):clearInterval(dn):clearInterval(dn)},10))}}},St=function(We,bt){var tn=this;if(void 0===bt&&(bt={}),"string"==typeof We&&(We=document.querySelector(We)),!We||!We.nodeName)throw new Error("no element is specified to initialize PerfectScrollbar");for(var on in this.element=We,We.classList.add("ps"),this.settings={handlers:["click-rail","drag-thumb","keyboard","wheel","touch"],maxScrollbarLength:null,minScrollbarLength:null,scrollingThreshold:1e3,scrollXMarginOffset:0,scrollYMarginOffset:0,suppressScrollX:!1,suppressScrollY:!1,swipeEasing:!0,useBothWheelAxes:!1,wheelPropagation:!0,wheelSpeed:1},bt)this.settings[on]=bt[on];this.containerWidth=null,this.containerHeight=null,this.contentWidth=null,this.contentHeight=null;var xi,Jn,un=function(){return We.classList.add(G_state_focus)},Nt=function(){return We.classList.remove(G_state_focus)};this.isRtl="rtl"===A(We).direction,!0===this.isRtl&&We.classList.add("ps__rtl"),this.isNegativeScroll=(Jn=We.scrollLeft,We.scrollLeft=-1,xi=We.scrollLeft<0,We.scrollLeft=Jn,xi),this.negativeScrollAdjustment=this.isNegativeScroll?We.scrollWidth-We.clientWidth:0,this.event=new ne,this.ownerDocument=We.ownerDocument||document,this.scrollbarXRail=le(G_element_rail("x")),We.appendChild(this.scrollbarXRail),this.scrollbarX=le(G_element_thumb("x")),this.scrollbarXRail.appendChild(this.scrollbarX),this.scrollbarX.setAttribute("tabindex",0),this.event.bind(this.scrollbarX,"focus",un),this.event.bind(this.scrollbarX,"blur",Nt),this.scrollbarXActive=null,this.scrollbarXWidth=null,this.scrollbarXLeft=null;var dn=A(this.scrollbarXRail);this.scrollbarXBottom=parseInt(dn.bottom,10),isNaN(this.scrollbarXBottom)?(this.isScrollbarXUsingBottom=!1,this.scrollbarXTop=Xe(dn.top)):this.isScrollbarXUsingBottom=!0,this.railBorderXWidth=Xe(dn.borderLeftWidth)+Xe(dn.borderRightWidth),Pe(this.scrollbarXRail,{display:"block"}),this.railXMarginWidth=Xe(dn.marginLeft)+Xe(dn.marginRight),Pe(this.scrollbarXRail,{display:""}),this.railXWidth=null,this.railXRatio=null,this.scrollbarYRail=le(G_element_rail("y")),We.appendChild(this.scrollbarYRail),this.scrollbarY=le(G_element_thumb("y")),this.scrollbarYRail.appendChild(this.scrollbarY),this.scrollbarY.setAttribute("tabindex",0),this.event.bind(this.scrollbarY,"focus",un),this.event.bind(this.scrollbarY,"blur",Nt),this.scrollbarYActive=null,this.scrollbarYHeight=null,this.scrollbarYTop=null;var xn=A(this.scrollbarYRail);this.scrollbarYRight=parseInt(xn.right,10),isNaN(this.scrollbarYRight)?(this.isScrollbarYUsingRight=!1,this.scrollbarYLeft=Xe(xn.left)):this.isScrollbarYUsingRight=!0,this.scrollbarYOuterWidth=this.isRtl?function he(se){var We=A(se);return Xe(We.width)+Xe(We.paddingLeft)+Xe(We.paddingRight)+Xe(We.borderLeftWidth)+Xe(We.borderRightWidth)}(this.scrollbarY):null,this.railBorderYWidth=Xe(xn.borderTopWidth)+Xe(xn.borderBottomWidth),Pe(this.scrollbarYRail,{display:"block"}),this.railYMarginHeight=Xe(xn.marginTop)+Xe(xn.marginBottom),Pe(this.scrollbarYRail,{display:""}),this.railYHeight=null,this.railYRatio=null,this.reach={x:We.scrollLeft<=0?"start":We.scrollLeft>=this.contentWidth-this.containerWidth?"end":null,y:We.scrollTop<=0?"start":We.scrollTop>=this.contentHeight-this.containerHeight?"end":null},this.isAlive=!0,this.settings.handlers.forEach(function(Jn){return Vt[Jn](tn)}),this.lastScrollTop=Math.floor(We.scrollTop),this.lastScrollLeft=We.scrollLeft,this.event.bind(this.element,"scroll",function(Jn){return tn.onScroll(Jn)}),lt(this)};St.prototype.update=function(){this.isAlive&&(this.negativeScrollAdjustment=this.isNegativeScroll?this.element.scrollWidth-this.element.clientWidth:0,Pe(this.scrollbarXRail,{display:"block"}),Pe(this.scrollbarYRail,{display:"block"}),this.railXMarginWidth=Xe(A(this.scrollbarXRail).marginLeft)+Xe(A(this.scrollbarXRail).marginRight),this.railYMarginHeight=Xe(A(this.scrollbarYRail).marginTop)+Xe(A(this.scrollbarYRail).marginBottom),Pe(this.scrollbarXRail,{display:"none"}),Pe(this.scrollbarYRail,{display:"none"}),lt(this),De(this,"top",0,!1,!0),De(this,"left",0,!1,!0),Pe(this.scrollbarXRail,{display:""}),Pe(this.scrollbarYRail,{display:""}))},St.prototype.onScroll=function(We){this.isAlive&&(lt(this),De(this,"top",this.element.scrollTop-this.lastScrollTop),De(this,"left",this.element.scrollLeft-this.lastScrollLeft),this.lastScrollTop=Math.floor(this.element.scrollTop),this.lastScrollLeft=this.element.scrollLeft)},St.prototype.destroy=function(){this.isAlive&&(this.event.unbindAll(),j(this.scrollbarX),j(this.scrollbarY),j(this.scrollbarXRail),j(this.scrollbarYRail),this.removePsClasses(),this.element=null,this.scrollbarX=null,this.scrollbarY=null,this.scrollbarXRail=null,this.scrollbarYRail=null,this.isAlive=!1)},St.prototype.removePsClasses=function(){this.element.className=this.element.className.split(" ").filter(function(We){return!We.match(/^ps([-_].+|)$/)}).join(" ")};const ot=St;var nt=function(){if(typeof Map<"u")return Map;function se(We,bt){var tn=-1;return We.some(function(on,un){return on[0]===bt&&(tn=un,!0)}),tn}return function(){function We(){this.__entries__=[]}return Object.defineProperty(We.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),We.prototype.get=function(bt){var tn=se(this.__entries__,bt),on=this.__entries__[tn];return on&&on[1]},We.prototype.set=function(bt,tn){var on=se(this.__entries__,bt);~on?this.__entries__[on][1]=tn:this.__entries__.push([bt,tn])},We.prototype.delete=function(bt){var tn=this.__entries__,on=se(tn,bt);~on&&tn.splice(on,1)},We.prototype.has=function(bt){return!!~se(this.__entries__,bt)},We.prototype.clear=function(){this.__entries__.splice(0)},We.prototype.forEach=function(bt,tn){void 0===tn&&(tn=null);for(var on=0,un=this.__entries__;on0},se.prototype.connect_=function(){!ht||this.connected_||(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),rt?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},se.prototype.disconnect_=function(){!ht||!this.connected_||(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},se.prototype.onTransitionEnd_=function(We){var bt=We.propertyName,tn=void 0===bt?"":bt;Gt.some(function(un){return!!~tn.indexOf(un)})&&this.refresh()},se.getInstance=function(){return this.instance_||(this.instance_=new se),this.instance_},se.instance_=null,se}(),Ft=function(se,We){for(var bt=0,tn=Object.keys(We);bt"u")&&Element instanceof Object){if(!(We instanceof Sn(We).Element))throw new TypeError('parameter 1 is not of type "Element".');var bt=this.observations_;bt.has(We)||(bt.set(We,new kn(We)),this.controller_.addObserver(this),this.controller_.refresh())}},se.prototype.unobserve=function(We){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if(!(typeof Element>"u")&&Element instanceof Object){if(!(We instanceof Sn(We).Element))throw new TypeError('parameter 1 is not of type "Element".');var bt=this.observations_;bt.has(We)&&(bt.delete(We),bt.size||this.controller_.removeObserver(this))}},se.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},se.prototype.gatherActive=function(){var We=this;this.clearActive(),this.observations_.forEach(function(bt){bt.isActive()&&We.activeObservations_.push(bt)})},se.prototype.broadcastActive=function(){if(this.hasActive()){var We=this.callbackCtx_,bt=this.activeObservations_.map(function(tn){return new Ri(tn.target,tn.broadcastRect())});this.callback_.call(We,bt,We),this.clearActive()}},se.prototype.clearActive=function(){this.activeObservations_.splice(0)},se.prototype.hasActive=function(){return this.activeObservations_.length>0},se}(),ee=typeof WeakMap<"u"?new WeakMap:new nt,ye=function(){return function se(We){if(!(this instanceof se))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var bt=cn.getInstance(),tn=new vt(We,bt,this);ee.set(this,tn)}}();["observe","unobserve","disconnect"].forEach(function(se){ye.prototype[se]=function(){var We;return(We=ee.get(this))[se].apply(We,arguments)}});const Se=typeof oe.ResizeObserver<"u"?oe.ResizeObserver:ye,N=["*"];function Z(se,We){if(1&se&&(f.j41(0,"div",3),f.nrm(1,"div",4)(2,"div",5)(3,"div",6)(4,"div",7),f.k0s()),2&se){const bt=f.XpG();f.AVh("ps-at-top",bt.states.top)("ps-at-left",bt.states.left)("ps-at-right",bt.states.right)("ps-at-bottom",bt.states.bottom),f.R7$(),f.AVh("ps-indicator-show",bt.indicatorY&&bt.interaction),f.R7$(),f.AVh("ps-indicator-show",bt.indicatorX&&bt.interaction),f.R7$(),f.AVh("ps-indicator-show",bt.indicatorX&&bt.interaction),f.R7$(),f.AVh("ps-indicator-show",bt.indicatorY&&bt.interaction)}}const Me=new L.nKC("PERFECT_SCROLLBAR_CONFIG");class at{constructor(We,bt,tn,on){this.x=We,this.y=bt,this.w=tn,this.h=on}}class qe{constructor(We,bt){this.x=We,this.y=bt}}const pn=["psScrollY","psScrollX","psScrollUp","psScrollDown","psScrollLeft","psScrollRight","psYReachEnd","psYReachStart","psXReachEnd","psXReachStart"];class Je{constructor(We={}){this.assign(We)}assign(We={}){for(const bt in We)this[bt]=We[bt]}}let Be=(()=>{class se{constructor(bt,tn,on,un,Nt){this.zone=bt,this.differs=tn,this.elementRef=on,this.platformId=un,this.defaults=Nt,this.instance=null,this.ro=null,this.timeout=null,this.animation=null,this.configDiff=null,this.ngDestroy=new i.B,this.disabled=!1,this.psScrollY=new f.bkB,this.psScrollX=new f.bkB,this.psScrollUp=new f.bkB,this.psScrollDown=new f.bkB,this.psScrollLeft=new f.bkB,this.psScrollRight=new f.bkB,this.psYReachEnd=new f.bkB,this.psYReachStart=new f.bkB,this.psXReachEnd=new f.bkB,this.psXReachStart=new f.bkB}ngOnInit(){if(!this.disabled&&(0,B.UE)(this.platformId)){const bt=new Je(this.defaults);bt.assign(this.config),this.zone.runOutsideAngular(()=>{this.instance=new ot(this.elementRef.nativeElement,bt)}),this.configDiff||(this.configDiff=this.differs.find(this.config||{}).create(),this.configDiff.diff(this.config||{})),this.zone.runOutsideAngular(()=>{this.ro=new Se(()=>{this.update()}),this.elementRef.nativeElement.children[0]&&this.ro.observe(this.elementRef.nativeElement.children[0]),this.ro.observe(this.elementRef.nativeElement)}),this.zone.runOutsideAngular(()=>{pn.forEach(tn=>{const on=tn.replace(/([A-Z])/g,un=>`-${un.toLowerCase()}`);(0,d.R)(this.elementRef.nativeElement,on).pipe((0,T.Z)(20),(0,w.Q)(this.ngDestroy)).subscribe(un=>{this[tn].emit(un)})})})}}ngOnDestroy(){(0,B.UE)(this.platformId)&&(this.ngDestroy.next(),this.ngDestroy.complete(),this.ro&&this.ro.disconnect(),this.timeout&&typeof window<"u"&&window.clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.instance&&this.instance.destroy()}),this.instance=null)}ngDoCheck(){!this.disabled&&this.configDiff&&(0,B.UE)(this.platformId)&&this.configDiff.diff(this.config||{})&&(this.ngOnDestroy(),this.ngOnInit())}ngOnChanges(bt){bt.disabled&&!bt.disabled.isFirstChange()&&(0,B.UE)(this.platformId)&&bt.disabled.currentValue!==bt.disabled.previousValue&&(!0===bt.disabled.currentValue?this.ngOnDestroy():!1===bt.disabled.currentValue&&this.ngOnInit())}ps(){return this.instance}update(){typeof window<"u"&&(this.timeout&&window.clearTimeout(this.timeout),this.timeout=window.setTimeout(()=>{if(!this.disabled&&this.configDiff)try{this.zone.runOutsideAngular(()=>{this.instance&&this.instance.update()})}catch{}},0))}geometry(bt="scroll"){return new at(this.elementRef.nativeElement[bt+"Left"],this.elementRef.nativeElement[bt+"Top"],this.elementRef.nativeElement[bt+"Width"],this.elementRef.nativeElement[bt+"Height"])}position(bt=!1){return!bt&&this.instance?new qe(this.instance.reach.x||0,this.instance.reach.y||0):new qe(this.elementRef.nativeElement.scrollLeft,this.elementRef.nativeElement.scrollTop)}scrollable(bt="any"){const tn=this.elementRef.nativeElement;return"any"===bt?tn.classList.contains("ps--active-x")||tn.classList.contains("ps--active-y"):"both"===bt?tn.classList.contains("ps--active-x")&&tn.classList.contains("ps--active-y"):tn.classList.contains("ps--active-"+bt)}scrollTo(bt,tn,on){this.disabled||(null==tn&&null==on?this.animateScrolling("scrollTop",bt,on):(null!=bt&&this.animateScrolling("scrollLeft",bt,on),null!=tn&&this.animateScrolling("scrollTop",tn,on)))}scrollToX(bt,tn){this.animateScrolling("scrollLeft",bt,tn)}scrollToY(bt,tn){this.animateScrolling("scrollTop",bt,tn)}scrollToTop(bt,tn){this.animateScrolling("scrollTop",bt||0,tn)}scrollToLeft(bt,tn){this.animateScrolling("scrollLeft",bt||0,tn)}scrollToRight(bt,tn){this.animateScrolling("scrollLeft",this.elementRef.nativeElement.scrollWidth-this.elementRef.nativeElement.clientWidth-(bt||0),tn)}scrollToBottom(bt,tn){this.animateScrolling("scrollTop",this.elementRef.nativeElement.scrollHeight-this.elementRef.nativeElement.clientHeight-(bt||0),tn)}scrollToElement(bt,tn,on){if("string"==typeof bt&&(bt=this.elementRef.nativeElement.querySelector(bt)),bt){const un=bt.getBoundingClientRect(),Nt=this.elementRef.nativeElement.getBoundingClientRect();this.elementRef.nativeElement.classList.contains("ps--active-x")&&this.animateScrolling("scrollLeft",un.left-Nt.left+this.elementRef.nativeElement.scrollLeft+(tn||0),on),this.elementRef.nativeElement.classList.contains("ps--active-y")&&this.animateScrolling("scrollTop",un.top-Nt.top+this.elementRef.nativeElement.scrollTop+(tn||0),on)}}animateScrolling(bt,tn,on){if(this.animation&&(window.cancelAnimationFrame(this.animation),this.animation=null),!on||typeof window>"u")this.elementRef.nativeElement[bt]=tn;else if(tn!==this.elementRef.nativeElement[bt]){let un=0,Nt=0,dn=performance.now(),xn=this.elementRef.nativeElement[bt];const Jn=(xn-tn)/2,xi=Yi=>{Nt+=Math.PI/(on/(Yi-dn)),un=Math.round(tn+Jn+Jn*Math.cos(Nt)),this.elementRef.nativeElement[bt]===xn&&(Nt>=Math.PI?this.animateScrolling(bt,tn,0):(this.elementRef.nativeElement[bt]=un,xn=this.elementRef.nativeElement[bt],dn=Yi,this.animation=window.requestAnimationFrame(xi)))};window.requestAnimationFrame(xi)}}}return se.\u0275fac=function(bt){return new(bt||se)(f.rXU(f.SKi),f.rXU(u.MKu),f.rXU(f.aKT),f.rXU(f.Agw),f.rXU(Me,8))},se.\u0275dir=f.FsC({type:se,selectors:[["","perfectScrollbar",""]],inputs:{disabled:"disabled",config:[0,"perfectScrollbar","config"]},outputs:{psScrollY:"psScrollY",psScrollX:"psScrollX",psScrollUp:"psScrollUp",psScrollDown:"psScrollDown",psScrollLeft:"psScrollLeft",psScrollRight:"psScrollRight",psYReachEnd:"psYReachEnd",psYReachStart:"psYReachStart",psXReachEnd:"psXReachEnd",psXReachStart:"psXReachStart"},exportAs:["ngxPerfectScrollbar"],standalone:!1,features:[f.OA$]}),se})(),ut=(()=>{class se{constructor(bt,tn,on){this.zone=bt,this.cdRef=tn,this.platformId=on,this.states={},this.indicatorX=!1,this.indicatorY=!1,this.interaction=!1,this.scrollPositionX=0,this.scrollPositionY=0,this.scrollDirectionX=0,this.scrollDirectionY=0,this.usePropagationX=!1,this.usePropagationY=!1,this.allowPropagationX=!1,this.allowPropagationY=!1,this.stateTimeout=null,this.ngDestroy=new i.B,this.stateUpdate=new i.B,this.disabled=!1,this.usePSClass=!0,this.autoPropagation=!1,this.scrollIndicators=!1,this.psScrollY=new f.bkB,this.psScrollX=new f.bkB,this.psScrollUp=new f.bkB,this.psScrollDown=new f.bkB,this.psScrollLeft=new f.bkB,this.psScrollRight=new f.bkB,this.psYReachEnd=new f.bkB,this.psYReachStart=new f.bkB,this.psXReachEnd=new f.bkB,this.psXReachStart=new f.bkB}ngOnInit(){(0,B.UE)(this.platformId)&&(this.stateUpdate.pipe((0,w.Q)(this.ngDestroy),(0,e.F)((bt,tn)=>bt===tn&&!this.stateTimeout)).subscribe(bt=>{this.stateTimeout&&typeof window<"u"&&(window.clearTimeout(this.stateTimeout),this.stateTimeout=null),"x"===bt||"y"===bt?(this.interaction=!1,"x"===bt?(this.indicatorX=!1,this.states.left=!1,this.states.right=!1,this.autoPropagation&&this.usePropagationX&&(this.allowPropagationX=!1)):"y"===bt&&(this.indicatorY=!1,this.states.top=!1,this.states.bottom=!1,this.autoPropagation&&this.usePropagationY&&(this.allowPropagationY=!1))):("left"===bt||"right"===bt?(this.states.left=!1,this.states.right=!1,this.states[bt]=!0,this.autoPropagation&&this.usePropagationX&&(this.indicatorX=!0)):("top"===bt||"bottom"===bt)&&(this.states.top=!1,this.states.bottom=!1,this.states[bt]=!0,this.autoPropagation&&this.usePropagationY&&(this.indicatorY=!0)),this.autoPropagation&&typeof window<"u"&&(this.stateTimeout=window.setTimeout(()=>{this.indicatorX=!1,this.indicatorY=!1,this.stateTimeout=null,this.interaction&&(this.states.left||this.states.right)&&(this.allowPropagationX=!0),this.interaction&&(this.states.top||this.states.bottom)&&(this.allowPropagationY=!0),this.cdRef.markForCheck()},500))),this.cdRef.markForCheck(),this.cdRef.detectChanges()}),this.zone.runOutsideAngular(()=>{if(this.directiveRef){const bt=this.directiveRef.elementRef.nativeElement;(0,d.R)(bt,"wheel").pipe((0,w.Q)(this.ngDestroy)).subscribe(tn=>{!this.disabled&&this.autoPropagation&&this.checkPropagation(tn,tn.deltaX,tn.deltaY)}),(0,d.R)(bt,"touchmove").pipe((0,w.Q)(this.ngDestroy)).subscribe(tn=>{if(!this.disabled&&this.autoPropagation){const on=tn.touches[0].clientX,un=tn.touches[0].clientY;this.checkPropagation(tn,on-this.scrollPositionX,un-this.scrollPositionY),this.scrollPositionX=on,this.scrollPositionY=un}}),(0,v.h)((0,d.R)(bt,"ps-scroll-x").pipe((0,O.u)("x")),(0,d.R)(bt,"ps-scroll-y").pipe((0,O.u)("y")),(0,d.R)(bt,"ps-x-reach-end").pipe((0,O.u)("right")),(0,d.R)(bt,"ps-y-reach-end").pipe((0,O.u)("bottom")),(0,d.R)(bt,"ps-x-reach-start").pipe((0,O.u)("left")),(0,d.R)(bt,"ps-y-reach-start").pipe((0,O.u)("top"))).pipe((0,w.Q)(this.ngDestroy)).subscribe(tn=>{!this.disabled&&(this.autoPropagation||this.scrollIndicators)&&this.stateUpdate.next(tn)})}}),window.setTimeout(()=>{pn.forEach(bt=>{this.directiveRef&&(this.directiveRef[bt]=this[bt])})},0))}ngOnDestroy(){(0,B.UE)(this.platformId)&&(this.ngDestroy.next(),this.ngDestroy.unsubscribe(),this.stateTimeout&&typeof window<"u"&&window.clearTimeout(this.stateTimeout))}ngDoCheck(){if((0,B.UE)(this.platformId)&&!this.disabled&&this.autoPropagation&&this.directiveRef){const bt=this.directiveRef.elementRef.nativeElement;this.usePropagationX=bt.classList.contains("ps--active-x"),this.usePropagationY=bt.classList.contains("ps--active-y")}}checkPropagation(bt,tn,on){this.interaction=!0;const un=tn<0?-1:1,Nt=on<0?-1:1;(this.usePropagationX&&this.usePropagationY||this.usePropagationX&&(!this.allowPropagationX||this.scrollDirectionX!==un)||this.usePropagationY&&(!this.allowPropagationY||this.scrollDirectionY!==Nt))&&(bt.preventDefault(),bt.stopPropagation()),tn&&(this.scrollDirectionX=un),on&&(this.scrollDirectionY=Nt),this.stateUpdate.next("interaction"),this.cdRef.detectChanges()}}return se.\u0275fac=function(bt){return new(bt||se)(f.rXU(f.SKi),f.rXU(u.gRc),f.rXU(f.Agw))},se.\u0275cmp=f.VBU({type:se,selectors:[["perfect-scrollbar"]],viewQuery:function(bt,tn){if(1&bt&&f.GBs(Be,7),2&bt){let on;f.mGM(on=f.lsd())&&(tn.directiveRef=on.first)}},hostVars:4,hostBindings:function(bt,tn){2&bt&&f.AVh("ps-show-limits",tn.autoPropagation)("ps-show-active",tn.scrollIndicators)},inputs:{disabled:"disabled",usePSClass:"usePSClass",autoPropagation:"autoPropagation",scrollIndicators:"scrollIndicators",config:"config"},outputs:{psScrollY:"psScrollY",psScrollX:"psScrollX",psScrollUp:"psScrollUp",psScrollDown:"psScrollDown",psScrollLeft:"psScrollLeft",psScrollRight:"psScrollRight",psYReachEnd:"psYReachEnd",psYReachStart:"psYReachStart",psXReachEnd:"psXReachEnd",psXReachStart:"psXReachStart"},exportAs:["ngxPerfectScrollbar"],standalone:!1,ngContentSelectors:N,decls:4,vars:5,consts:[[2,"position","static",3,"perfectScrollbar","disabled"],[1,"ps-content"],["class","ps-overlay",3,"ps-at-top","ps-at-left","ps-at-right","ps-at-bottom",4,"ngIf"],[1,"ps-overlay"],[1,"ps-indicator-top"],[1,"ps-indicator-left"],[1,"ps-indicator-right"],[1,"ps-indicator-bottom"]],template:function(bt,tn){1&bt&&(f.NAR(),f.j41(0,"div",0)(1,"div",1),f.SdG(2),f.k0s(),f.DNE(3,Z,5,16,"div",2),f.k0s()),2&bt&&(f.AVh("ps",tn.usePSClass),f.Y8G("perfectScrollbar",tn.config)("disabled",tn.disabled),f.R7$(3),f.Y8G("ngIf",tn.scrollIndicators))},dependencies:[Be,C.bT],styles:["perfect-scrollbar{position:relative;display:block;overflow:hidden;width:100%;height:100%;max-width:100%;max-height:100%}perfect-scrollbar[hidden]{display:none}perfect-scrollbar[fxflex]{display:flex;flex-direction:column;height:auto;min-width:0;min-height:0}perfect-scrollbar[fxflex]>.ps{flex:1 1 auto;width:auto;height:auto;min-width:0;min-height:0;-webkit-box-flex:1}perfect-scrollbar[fxlayout]>.ps,perfect-scrollbar[fxlayout]>.ps>.ps-content{display:flex;flex:1 1 auto;flex-direction:inherit;align-items:inherit;align-content:inherit;justify-content:inherit;width:100%;height:100%;-webkit-box-align:inherit;-webkit-box-flex:1;-webkit-box-pack:inherit}perfect-scrollbar[fxlayout=row]>.ps,perfect-scrollbar[fxlayout=row]>.ps>.ps-content{flex-direction:row!important}perfect-scrollbar[fxlayout=column]>.ps,perfect-scrollbar[fxlayout=column]>.ps>.ps-content{flex-direction:column!important}perfect-scrollbar>.ps{position:static;display:block;width:100%;height:100%;max-width:100%;max-height:100%}perfect-scrollbar>.ps textarea{-ms-overflow-style:scrollbar}perfect-scrollbar>.ps>.ps-overlay{position:absolute;top:0;right:0;bottom:0;left:0;display:block;overflow:hidden;pointer-events:none}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{position:absolute;opacity:0;transition:opacity .3s ease-in-out}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{left:0;min-width:100%;min-height:24px}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right{top:0;min-width:24px;min-height:100%}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top{top:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left{left:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right{right:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{bottom:0}perfect-scrollbar>.ps.ps--active-y>.ps__rail-y{top:0!important;right:0!important;left:auto!important;width:10px;cursor:default;transition:width .2s linear,opacity .2s linear,background-color .2s linear}perfect-scrollbar>.ps.ps--active-y>.ps__rail-y:hover,perfect-scrollbar>.ps.ps--active-y>.ps__rail-y.ps--clicking{width:15px}perfect-scrollbar>.ps.ps--active-x>.ps__rail-x{top:auto!important;bottom:0!important;left:0!important;height:10px;cursor:default;transition:height .2s linear,opacity .2s linear,background-color .2s linear}perfect-scrollbar>.ps.ps--active-x>.ps__rail-x:hover,perfect-scrollbar>.ps.ps--active-x>.ps__rail-x.ps--clicking{height:15px}perfect-scrollbar>.ps.ps--active-x.ps--active-y>.ps__rail-y{margin:0 0 10px}perfect-scrollbar>.ps.ps--active-x.ps--active-y>.ps__rail-x{margin:0 10px 0 0}perfect-scrollbar>.ps.ps--scrolling-y>.ps__rail-y,perfect-scrollbar>.ps.ps--scrolling-x>.ps__rail-x{opacity:.9;background-color:#eee}perfect-scrollbar.ps-show-always>.ps.ps--active-y>.ps__rail-y,perfect-scrollbar.ps-show-always>.ps.ps--active-x>.ps__rail-x{opacity:.6}perfect-scrollbar.ps-show-active>.ps.ps--active-y>.ps-overlay:not(.ps-at-top) .ps-indicator-top{opacity:1;background:linear-gradient(to bottom,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-y>.ps-overlay:not(.ps-at-bottom) .ps-indicator-bottom{opacity:1;background:linear-gradient(to top,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-x>.ps-overlay:not(.ps-at-left) .ps-indicator-left{opacity:1;background:linear-gradient(to right,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-x>.ps-overlay:not(.ps-at-right) .ps-indicator-right{opacity:1;background:linear-gradient(to left,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-top .ps-indicator-top{background:linear-gradient(to bottom,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-bottom .ps-indicator-bottom{background:linear-gradient(to top,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-left .ps-indicator-left{background:linear-gradient(to right,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-right .ps-indicator-right{background:linear-gradient(to left,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-top .ps-indicator-top.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-bottom .ps-indicator-bottom.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-left .ps-indicator-left.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-right .ps-indicator-right.ps-indicator-show{opacity:1}\n",".ps{overflow:hidden!important;overflow-anchor:none;-ms-overflow-style:none;touch-action:auto;-ms-touch-action:auto}.ps__rail-x{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;height:15px;bottom:0px;position:absolute}.ps__rail-y{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;width:15px;right:0;position:absolute}.ps--active-x>.ps__rail-x,.ps--active-y>.ps__rail-y{display:block;background-color:transparent}.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y,.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y{opacity:.6}.ps .ps__rail-x:hover,.ps .ps__rail-y:hover,.ps .ps__rail-x:focus,.ps .ps__rail-y:focus,.ps .ps__rail-x.ps--clicking,.ps .ps__rail-y.ps--clicking{background-color:#eee;opacity:.9}.ps__thumb-x{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,height .2s ease-in-out;-webkit-transition:background-color .2s linear,height .2s ease-in-out;height:6px;bottom:2px;position:absolute}.ps__thumb-y{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,width .2s ease-in-out;-webkit-transition:background-color .2s linear,width .2s ease-in-out;width:6px;right:2px;position:absolute}.ps__rail-x:hover>.ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x,.ps__rail-x.ps--clicking .ps__thumb-x{background-color:#999;height:11px}.ps__rail-y:hover>.ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y,.ps__rail-y.ps--clicking .ps__thumb-y{background-color:#999;width:11px}@supports (-ms-overflow-style: none){.ps{overflow:auto!important}}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.ps{overflow:auto!important}}\n"],encapsulation:2}),se})(),Ot=(()=>{class se{}return se.\u0275fac=function(bt){return new(bt||se)},se.\u0275mod=f.$C({type:se}),se.\u0275inj=L.G2t({imports:[[C.MD],C.MD]}),se})()},467(Zt,pe,l){"use strict";function i(v,T,w,e,O,f,u){try{var L=v[f](u),C=L.value}catch(B){return void w(B)}L.done?T(C):Promise.resolve(C).then(e,O)}function d(v){return function(){var T=this,w=arguments;return new Promise(function(e,O){var f=v.apply(T,w);function u(C){i(f,e,O,u,L,"next",C)}function L(C){i(f,e,O,u,L,"throw",C)}u(void 0)})}}l.d(pe,{A:()=>d})},1635(Zt,pe,l){"use strict";function w(ie,P,F,ve){var Ke,H=arguments.length,$=H<3?P:null===ve?ve=Object.getOwnPropertyDescriptor(P,F):ve;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)$=Reflect.decorate(ie,P,F,ve);else for(var Vt=ie.length-1;Vt>=0;Vt--)(Ke=ie[Vt])&&($=(H<3?Ke($):H>3?Ke(P,F,$):Ke(P,F))||$);return H>3&&$&&Object.defineProperty(P,F,$),$}function B(ie,P,F,ve){return new(F||(F=Promise))(function($,Ke){function Vt(nt){try{ot(ve.next(nt))}catch(ht){Ke(ht)}}function St(nt){try{ot(ve.throw(nt))}catch(ht){Ke(ht)}}function ot(nt){nt.done?$(nt.value):function H($){return $ instanceof F?$:new F(function(Ke){Ke($)})}(nt.value).then(Vt,St)}ot((ve=ve.apply(ie,P||[])).next())})}function re(ie){return this instanceof re?(this.v=ie,this):new re(ie)}function xe(ie,P,F){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var H,ve=F.apply(ie,P||[]),$=[];return H=Object.create(("function"==typeof AsyncIterator?AsyncIterator:Object).prototype),Vt("next"),Vt("throw"),Vt("return",function Ke(Ye){return function(fe){return Promise.resolve(fe).then(Ye,ht)}}),H[Symbol.asyncIterator]=function(){return this},H;function Vt(Ye,fe){ve[Ye]&&(H[Ye]=function(Qe){return new Promise(function(gt,Gt){$.push([Ye,Qe,gt,Gt])>1||St(Ye,Qe)})},fe&&(H[Ye]=fe(H[Ye])))}function St(Ye,fe){try{!function ot(Ye){Ye.value instanceof re?Promise.resolve(Ye.value.v).then(nt,ht):oe($[0][2],Ye)}(ve[Ye](fe))}catch(Qe){oe($[0][3],Qe)}}function nt(Ye){St("next",Ye)}function ht(Ye){St("throw",Ye)}function oe(Ye,fe){Ye(fe),$.shift(),$.length&&St($[0][0],$[0][1])}}function V(ie){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var F,P=ie[Symbol.asyncIterator];return P?P.call(ie):(ie=function Ce(ie){var P="function"==typeof Symbol&&Symbol.iterator,F=P&&ie[P],ve=0;if(F)return F.call(ie);if(ie&&"number"==typeof ie.length)return{next:function(){return ie&&ve>=ie.length&&(ie=void 0),{value:ie&&ie[ve++],done:!ie}}};throw new TypeError(P?"Object is not iterable.":"Symbol.iterator is not defined.")}(ie),F={},ve("next"),ve("throw"),ve("return"),F[Symbol.asyncIterator]=function(){return this},F);function ve($){F[$]=ie[$]&&function(Ke){return new Promise(function(Vt,St){!function H($,Ke,Vt,St){Promise.resolve(St).then(function(ot){$({value:ot,done:Vt})},Ke)}(Vt,St,(Ke=ie[$](Ke)).done,Ke.value)})}}}l.d(pe,{AQ:()=>xe,Cg:()=>w,N3:()=>re,sH:()=>B,xN:()=>V}),"function"==typeof SuppressedError&&SuppressedError}},Zt=>{Zt(Zt.s=599)}]); \ No newline at end of file diff --git a/frontend/main.b6d8f7530c3b0221.js b/frontend/main.b6d8f7530c3b0221.js deleted file mode 100644 index a4aa7a3e..00000000 --- a/frontend/main.b6d8f7530c3b0221.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[792],{3:(Ae,ee,l)=>{"use strict";l.d(ee,{WX:()=>P,xW:()=>g});var i=l(2615),t=l(73664),p=l(19945);const c=/^\d{4}-\d{2}-\d{2}(?:T\d{2}:\d{2}:\d{2}(?:\.\d+)?(?:Z|(?:(?:\+|-)\d{2}:\d{2}))?)?$/,e=/^(\d?\d)[:.](\d?\d)(?:[:.](\d?\d))?\s*(AM|PM)?$/i;function T(j,U){const K=Array(j);for(let q=0;q{class j extends p.MJ{useUtcForDisplay=!1;_matDateLocale=(0,i.WQX)(p.Ju,{optional:!0});constructor(){super();const K=(0,i.WQX)(p.Ju,{optional:!0});void 0!==K&&(this._matDateLocale=K),super.setLocale(this._matDateLocale)}getYear(K){return K.getFullYear()}getMonth(K){return K.getMonth()}getDate(K){return K.getDate()}getDayOfWeek(K){return K.getDay()}getMonthNames(K){const q=new Intl.DateTimeFormat(this.locale,{month:K,timeZone:"utc"});return T(12,G=>this._format(q,new Date(2017,G,1)))}getDateNames(){const K=new Intl.DateTimeFormat(this.locale,{day:"numeric",timeZone:"utc"});return T(31,q=>this._format(K,new Date(2017,0,q+1)))}getDayOfWeekNames(K){const q=new Intl.DateTimeFormat(this.locale,{weekday:K,timeZone:"utc"});return T(7,G=>this._format(q,new Date(2017,0,G+1)))}getYearName(K){const q=new Intl.DateTimeFormat(this.locale,{year:"numeric",timeZone:"utc"});return this._format(q,K)}getFirstDayOfWeek(){if(typeof Intl<"u"&&Intl.Locale){const K=new Intl.Locale(this.locale),q=(K.getWeekInfo?.()||K.weekInfo)?.firstDay??0;return 7===q?0:q}return 0}getNumDaysInMonth(K){return this.getDate(this._createDateWithOverflow(this.getYear(K),this.getMonth(K)+1,0))}clone(K){return new Date(K.getTime())}createDate(K,q,G){let Q=this._createDateWithOverflow(K,q,G);return Q.getMonth(),Q}today(){return new Date}parse(K,q){return"number"==typeof K?new Date(K):K?new Date(Date.parse(K)):null}format(K,q){if(!this.isValid(K))throw Error("NativeDateAdapter: Cannot format invalid date.");const G=new Intl.DateTimeFormat(this.locale,{...q,timeZone:"utc"});return this._format(G,K)}addCalendarYears(K,q){return this.addCalendarMonths(K,12*q)}addCalendarMonths(K,q){let G=this._createDateWithOverflow(this.getYear(K),this.getMonth(K)+q,this.getDate(K));return this.getMonth(G)!=((this.getMonth(K)+q)%12+12)%12&&(G=this._createDateWithOverflow(this.getYear(G),this.getMonth(G),0)),G}addCalendarDays(K,q){return this._createDateWithOverflow(this.getYear(K),this.getMonth(K),this.getDate(K)+q)}toIso8601(K){return[K.getUTCFullYear(),this._2digit(K.getUTCMonth()+1),this._2digit(K.getUTCDate())].join("-")}deserialize(K){if("string"==typeof K){if(!K)return null;if(c.test(K)){let q=new Date(K);if(this.isValid(q))return q}}return super.deserialize(K)}isDateInstance(K){return K instanceof Date}isValid(K){return!isNaN(K.getTime())}invalid(){return new Date(NaN)}setTime(K,q,G,Q){const $=this.clone(K);return $.setHours(q,G,Q,0),$}getHours(K){return K.getHours()}getMinutes(K){return K.getMinutes()}getSeconds(K){return K.getSeconds()}parseTime(K,q){if("string"!=typeof K)return K instanceof Date?new Date(K.getTime()):null;const G=K.trim();if(0===G.length)return null;let Q=this._parseTimeString(G);if(null===Q){const $=G.replace(/[^0-9:(AM|PM)]/gi,"").trim();$.length>0&&(Q=this._parseTimeString($))}return Q||this.invalid()}addSeconds(K,q){return new Date(K.getTime()+1e3*q)}_createDateWithOverflow(K,q,G){const Q=new Date;return Q.setFullYear(K,q,G),Q.setHours(0,0,0,0),Q}_2digit(K){return("00"+K).slice(-2)}_format(K,q){const G=new Date;return G.setUTCFullYear(q.getFullYear(),q.getMonth(),q.getDate()),G.setUTCHours(q.getHours(),q.getMinutes(),q.getSeconds(),q.getMilliseconds()),K.format(G)}_parseTimeString(K){const q=K.toUpperCase().match(e);if(q){let G=parseInt(q[1]);const Q=parseInt(q[2]);let $=null==q[3]?void 0:parseInt(q[3]);const ae=q[4];if(12===G?G="AM"===ae?0:G:"PM"===ae&&(G+=12),d(G,0,23)&&d(Q,0,59)&&(null==$||d($,0,59)))return this.setTime(this.today(),G,Q,$||0)}return null}static \u0275fac=function(q){return new(q||j)};static \u0275prov=i.jDH({token:j,factory:j.\u0275fac})}return j})();function d(j,U,K){return!isNaN(j)&&j>=U&&j<=K}const w={parse:{dateInput:null,timeInput:null},display:{dateInput:{year:"numeric",month:"numeric",day:"numeric"},timeInput:{hour:"numeric",minute:"numeric"},monthYearLabel:{year:"numeric",month:"short"},dateA11yLabel:{year:"numeric",month:"long",day:"numeric"},monthYearA11yLabel:{year:"numeric",month:"long"},timeOptionLabel:{hour:"numeric",minute:"numeric"}}};let P=(()=>{class j{static \u0275fac=function(q){return new(q||j)};static \u0275mod=t.$C({type:j});static \u0275inj=i.G2t({providers:[M()]})}return j})();function M(j=w){return[{provide:p.MJ,useClass:g},{provide:p.de,useValue:j}]}},190:(Ae,ee,l)=>{"use strict";l.d(ee,{$6:()=>_e,$J:()=>B,$Q:()=>Te,As:()=>ge,Br:()=>d,CK:()=>Ee,DI:()=>oe,DY:()=>ue,Do:()=>Be,Dq:()=>ye,Fd:()=>nt,GZ:()=>J,Gy:()=>m,H2:()=>r,Hm:()=>ce,J9:()=>me,Jx:()=>Q,L:()=>_,Lf:()=>pe,NS:()=>T,O8:()=>Oe,Qj:()=>P,SM:()=>ve,Sn:()=>g,T4:()=>te,Uj:()=>dt,Uo:()=>ae,VK:()=>q,WE:()=>Ie,X9:()=>e,XT:()=>Pe,Yi:()=>Qt,Zi:()=>K,_$:()=>Le,aB:()=>ct,ar:()=>n,b1:()=>ke,cR:()=>x,cU:()=>o,dv:()=>D,e8:()=>p,ed:()=>U,fy:()=>b,ij:()=>li,jk:()=>di,kv:()=>le,lg:()=>c,mh:()=>Ke,oX:()=>ze,p1:()=>S,pL:()=>f,sq:()=>M,t0:()=>Mt,t5:()=>re,tG:()=>se,tf:()=>he,uK:()=>Rt,vL:()=>A,w0:()=>k,x1:()=>w,yp:()=>$,z2:()=>h,zU:()=>ht});var i=l(59640),t=l(4416);const p=(0,i.VP)(t.QP.UPDATE_API_CALL_STATUS_LND,(0,i.xk)()),S=(0,i.VP)(t.QP.RESET_LND_STORE),c=(0,i.VP)(t.QP.FETCH_PAGE_SETTINGS_LND),e=(0,i.VP)(t.QP.UPDATE_SELECTED_NODE_OPTIONS),T=(0,i.VP)(t.QP.SET_PAGE_SETTINGS_LND,(0,i.xk)()),g=(0,i.VP)(t.QP.SAVE_PAGE_SETTINGS_LND,(0,i.xk)()),d=(0,i.VP)(t.QP.FETCH_INFO_LND,(0,i.xk)()),w=(0,i.VP)(t.QP.SET_INFO_LND,(0,i.xk)()),m=(0,i.VP)(t.QP.FETCH_PEERS_LND),P=(0,i.VP)(t.QP.SET_PEERS_LND,(0,i.xk)()),M=(0,i.VP)(t.QP.SAVE_NEW_PEER_LND,(0,i.xk)()),U=((0,i.VP)(t.QP.NEWLY_ADDED_PEER_LND,(0,i.xk)()),(0,i.VP)(t.QP.DETACH_PEER_LND,(0,i.xk)())),K=(0,i.VP)(t.QP.REMOVE_PEER_LND,(0,i.xk)()),q=(0,i.VP)(t.QP.SAVE_NEW_INVOICE_LND,(0,i.xk)()),Q=((0,i.VP)(t.QP.NEWLY_SAVED_INVOICE_LND,(0,i.xk)()),(0,i.VP)(t.QP.ADD_INVOICE_LND,(0,i.xk)())),$=(0,i.VP)(t.QP.FETCH_FEES_LND),ae=(0,i.VP)(t.QP.SET_FEES_LND,(0,i.xk)()),ue=(0,i.VP)(t.QP.FETCH_BLOCKCHAIN_BALANCE_LND),oe=(0,i.VP)(t.QP.SET_BLOCKCHAIN_BALANCE_LND,(0,i.xk)()),he=(0,i.VP)(t.QP.FETCH_NETWORK_LND),me=(0,i.VP)(t.QP.SET_NETWORK_LND,(0,i.xk)()),Te=(0,i.VP)(t.QP.FETCH_CHANNELS_LND),D=(0,i.VP)(t.QP.SET_CHANNELS_LND,(0,i.xk)()),n=(0,i.VP)(t.QP.FETCH_PENDING_CHANNELS_LND),o=(0,i.VP)(t.QP.SET_PENDING_CHANNELS_LND,(0,i.xk)()),f=(0,i.VP)(t.QP.FETCH_CLOSED_CHANNELS_LND),h=(0,i.VP)(t.QP.SET_CLOSED_CHANNELS_LND,(0,i.xk)()),b=(0,i.VP)(t.QP.UPDATE_CHANNEL_LND,(0,i.xk)()),A=(0,i.VP)(t.QP.SAVE_NEW_CHANNEL_LND,(0,i.xk)()),k=(0,i.VP)(t.QP.CLOSE_CHANNEL_LND,(0,i.xk)()),x=(0,i.VP)(t.QP.REMOVE_CHANNEL_LND,(0,i.xk)()),r=(0,i.VP)(t.QP.BACKUP_CHANNELS_LND,(0,i.xk)()),_=(0,i.VP)(t.QP.VERIFY_CHANNEL_LND,(0,i.xk)()),B=((0,i.VP)(t.QP.BACKUP_CHANNELS_RES_LND,(0,i.xk)()),(0,i.VP)(t.QP.VERIFY_CHANNEL_RES_LND,(0,i.xk)()),(0,i.VP)(t.QP.RESTORE_CHANNELS_LIST_LND)),re=(0,i.VP)(t.QP.SET_RESTORE_CHANNELS_LIST_LND,(0,i.xk)()),pe=(0,i.VP)(t.QP.RESTORE_CHANNELS_LND,(0,i.xk)()),Be=((0,i.VP)(t.QP.RESTORE_CHANNELS_RES_LND,(0,i.xk)()),(0,i.VP)(t.QP.FETCH_INVOICES_LND,(0,i.xk)())),_e=(0,i.VP)(t.QP.SET_INVOICES_LND,(0,i.xk)()),ye=(0,i.VP)(t.QP.UPDATE_INVOICE_LND,(0,i.xk)()),Le=(0,i.VP)(t.QP.UPDATE_PAYMENT_LND,(0,i.xk)()),Ke=(0,i.VP)(t.QP.FETCH_TRANSACTIONS_LND),ge=(0,i.VP)(t.QP.SET_TRANSACTIONS_LND,(0,i.xk)()),ve=(0,i.VP)(t.QP.FETCH_UTXOS_LND),Oe=(0,i.VP)(t.QP.SET_UTXOS_LND,(0,i.xk)()),Ee=(0,i.VP)(t.QP.FETCH_PAYMENTS_LND,(0,i.xk)()),dt=(0,i.VP)(t.QP.SET_PAYMENTS_LND,(0,i.xk)()),nt=(0,i.VP)(t.QP.SEND_PAYMENT_LND,(0,i.xk)()),Mt=((0,i.VP)(t.QP.SEND_PAYMENT_STATUS_LND,(0,i.xk)()),(0,i.VP)(t.QP.FETCH_GRAPH_NODE_LND,(0,i.xk)())),Pe=((0,i.VP)(t.QP.SET_GRAPH_NODE_LND,(0,i.xk)()),(0,i.VP)(t.QP.GET_NEW_ADDRESS_LND,(0,i.xk)())),ct=((0,i.VP)(t.QP.SET_NEW_ADDRESS_LND,(0,i.xk)()),(0,i.VP)(t.QP.SET_CHANNEL_TRANSACTION_LND,(0,i.xk)())),ze=((0,i.VP)(t.QP.SET_CHANNEL_TRANSACTION_RES_LND,(0,i.xk)()),(0,i.VP)(t.QP.GEN_SEED_LND,(0,i.xk)())),J=((0,i.VP)(t.QP.GEN_SEED_RESPONSE_LND,(0,i.xk)()),(0,i.VP)(t.QP.INIT_WALLET_LND,(0,i.xk)())),Ie=((0,i.VP)(t.QP.INIT_WALLET_RESPONSE_LND,(0,i.xk)()),(0,i.VP)(t.QP.UNLOCK_WALLET_LND,(0,i.xk)())),ht=(0,i.VP)(t.QP.PEER_LOOKUP_LND,(0,i.xk)()),li=(0,i.VP)(t.QP.CHANNEL_LOOKUP_LND,(0,i.xk)()),Qt=(0,i.VP)(t.QP.INVOICE_LOOKUP_LND,(0,i.xk)()),di=(0,i.VP)(t.QP.PAYMENT_LOOKUP_LND,(0,i.xk)()),Rt=((0,i.VP)(t.QP.SET_LOOKUP_LND,(0,i.xk)()),(0,i.VP)(t.QP.GET_FORWARDING_HISTORY_LND,(0,i.xk)())),le=(0,i.VP)(t.QP.SET_FORWARDING_HISTORY_LND,(0,i.xk)()),te=(0,i.VP)(t.QP.GET_QUERY_ROUTES_LND,(0,i.xk)()),ce=(0,i.VP)(t.QP.SET_QUERY_ROUTES_LND,(0,i.xk)()),se=(0,i.VP)(t.QP.GET_ALL_LIGHTNING_TRANSATIONS_LND),ke=(0,i.VP)(t.QP.SET_ALL_LIGHTNING_TRANSATIONS_LND,(0,i.xk)())},283:(Ae,ee,l)=>{"use strict";l.d(ee,{i:()=>he});var i=l(11747),t=l(21413),p=l(7673),S=l(99437),c=l(96354),e=l(31397),T=l(56977),g=l(12462),d=l(8321),w=l(4416),m=l(11771),P=l(28430),M=l(59584),j=l(32142),U=l(2615),K=l(29330),q=l(59640),G=l(53202),Q=l(82571),$=l(98570),ae=l(43694),ue=l(7879),oe=l(57303);let he=(()=>{var me;class Te{constructor(n,o,f,h,b,A,k,x,r){this.actions=n,this.httpClient=o,this.store=f,this.sessionService=h,this.commonService=b,this.logger=A,this.router=k,this.wsService=x,this.location=r,this.CHILD_API_URL=w.H$+"/cln",this.CLN_VERISON="",this.flgInitialized=!1,this.unSubs=[new t.B,new t.B,new t.B],this.infoFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.FETCH_INFO_CLN),(0,e.Z)(_=>(this.flgInitialized=!1,this.store.dispatch((0,m.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,P.no)({payload:{action:"FetchInfo",status:w.wn.INITIATED}})),this.store.dispatch((0,m.mt)({payload:w.MZ.GET_NODE_INFO})),this.httpClient.get(this.CHILD_API_URL+w.rl.GETINFO_API).pipe((0,T.Q)(this.actions.pipe((0,i.gp)(w.aU.SET_SELECTED_NODE))),(0,c.T)(W=>(this.logger.info(W),this.CLN_VERISON=W.version||"",W.chains&&W.chains.length&&W.chains[0]&&"object"==typeof W.chains[0]&&W.chains[0].hasOwnProperty("chain")&&W?.chains[0].chain&&W?.chains[0].chain.toLowerCase().indexOf("bitcoin")<0&&W?.chains[0].chain.toLowerCase().indexOf("liquid")<0?(this.store.dispatch((0,P.no)({payload:{action:"FetchInfo",status:w.wn.COMPLETED}})),this.store.dispatch((0,m.y0)({payload:w.MZ.GET_NODE_INFO})),this.store.dispatch((0,m.Jh)()),setTimeout(()=>{this.store.dispatch((0,m.xO)({payload:{data:{type:w.A$.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}}))},500),{type:w.aU.LOGOUT,payload:"Sorry Not Sorry, RTL is Bitcoin Only!"}):(this.initializeRemainingData(W,_.payload.loadPage),this.store.dispatch((0,P.no)({payload:{action:"FetchInfo",status:w.wn.COMPLETED}})),this.store.dispatch((0,m.y0)({payload:w.MZ.GET_NODE_INFO})),{type:w.TC.SET_INFO_CLN,payload:W||{}}))),(0,S.W)(W=>{const I=this.commonService.extractErrorCode(W),B=503===I?"Unable to Connect to Core Lightning Server.":this.commonService.extractErrorMessage(W);return this.router.navigate(["/error"],{state:{errorCode:I,errorMessage:B}}),this.handleErrorWithoutAlert("FetchInfo",w.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:I,error:B}),(0,p.of)({type:w.aU.VOID})})))))),this.fetchFeeRatesCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.FETCH_FEE_RATES_CLN),(0,e.Z)(_=>(this.store.dispatch((0,P.no)({payload:{action:"FetchFeeRates"+_.payload,status:w.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+w.rl.NETWORK_API+"/feeRates",{style:_.payload}).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,P.no)({payload:{action:"FetchFeeRates"+_.payload,status:w.wn.COMPLETED}})),{type:w.TC.SET_FEE_RATES_CLN,payload:W||{}})),(0,S.W)(W=>(this.handleErrorWithoutAlert("FetchFeeRates"+_.payload,w.MZ.NO_SPINNER,"Fetching Fee Rates Failed.",W),(0,p.of)({type:w.aU.VOID})))))))),this.getNewAddressCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.GET_NEW_ADDRESS_CLN),(0,e.Z)(_=>(this.store.dispatch((0,m.mt)({payload:w.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.post(this.CHILD_API_URL+w.rl.ON_CHAIN_API+"/newaddr",{addresstype:_.payload.addressCode}).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,m.y0)({payload:w.MZ.GENERATE_NEW_ADDRESS})),{type:w.TC.SET_NEW_ADDRESS_CLN,payload:W&&W[_.payload.addressCode]?W[_.payload.addressCode]:{}})),(0,S.W)(W=>(this.handleErrorWithAlert("GenerateNewAddress",w.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+w.rl.ON_CHAIN_API,W),(0,p.of)({type:w.aU.VOID})))))))),this.setNewAddressCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.SET_NEW_ADDRESS_CLN),(0,c.T)(_=>(this.logger.info(_.payload),_.payload))),{dispatch:!1}),this.peersFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.FETCH_PEERS_CLN),(0,e.Z)(()=>(this.store.dispatch((0,P.no)({payload:{action:"FetchPeers",status:w.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+w.rl.PEERS_API).pipe((0,c.T)(_=>(this.logger.info(_),this.store.dispatch((0,P.no)({payload:{action:"FetchPeers",status:w.wn.COMPLETED}})),{type:w.TC.SET_PEERS_CLN,payload:_||[]})),(0,S.W)(_=>(this.handleErrorWithoutAlert("FetchPeers",w.MZ.NO_SPINNER,"Fetching Peers Failed.",_),(0,p.of)({type:w.aU.VOID})))))))),this.saveNewPeerCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.SAVE_NEW_PEER_CLN),(0,e.Z)(_=>(this.store.dispatch((0,m.mt)({payload:w.MZ.CONNECT_PEER})),this.store.dispatch((0,P.no)({payload:{action:"SaveNewPeer",status:w.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+w.rl.PEERS_API,{id:_.payload.id}).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,P.no)({payload:{action:"SaveNewPeer",status:w.wn.COMPLETED}})),this.store.dispatch((0,m.y0)({payload:w.MZ.CONNECT_PEER})),this.store.dispatch((0,P.Qj)({payload:W||[]})),{type:w.TC.NEWLY_ADDED_PEER_CLN,payload:{peer:W.find(I=>0===_.payload.id.indexOf(I.id?I.id:""))}})),(0,S.W)(W=>(this.handleErrorWithoutAlert("SaveNewPeer",w.MZ.CONNECT_PEER,"Peer Connection Failed.",W),(0,p.of)({type:w.aU.VOID})))))))),this.detachPeerCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.DETACH_PEER_CLN),(0,e.Z)(_=>(this.store.dispatch((0,m.mt)({payload:w.MZ.DISCONNECT_PEER})),this.httpClient.post(this.CHILD_API_URL+w.rl.PEERS_API+"/disconnect",{id:_.payload.id,force:_.payload.force}).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,m.y0)({payload:w.MZ.DISCONNECT_PEER})),this.store.dispatch((0,m.UI)({payload:"Peer Disconnected Successfully!"})),{type:w.TC.REMOVE_PEER_CLN,payload:{id:_.payload.id}})),(0,S.W)(W=>(this.handleErrorWithAlert("PeerDisconnect",w.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+w.rl.PEERS_API+"/"+_.payload.id,W),(0,p.of)({type:w.aU.VOID})))))))),this.channelsFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.FETCH_CHANNELS_CLN),(0,e.Z)(()=>(this.store.dispatch((0,P.no)({payload:{action:"FetchChannels",status:w.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+w.rl.CHANNELS_API+"/listPeerChannels"))),(0,c.T)(_=>{this.logger.info(_),this.store.dispatch((0,P.no)({payload:{action:"FetchChannels",status:w.wn.COMPLETED}}));const W={activeChannels:[],pendingChannels:[],inactiveChannels:[]};return _.forEach(I=>{"CHANNELD_NORMAL"===I.state?I.peer_connected?W.activeChannels.push(I):W.inactiveChannels.push(I):W.pendingChannels.push(I)}),{type:w.TC.SET_CHANNELS_CLN,payload:W}}),(0,S.W)(_=>(this.handleErrorWithoutAlert("FetchChannels",w.MZ.NO_SPINNER,"Fetching Channels Failed.",_),(0,p.of)({type:w.aU.VOID}))))),this.openNewChannelCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.SAVE_NEW_CHANNEL_CLN),(0,e.Z)(_=>{this.store.dispatch((0,m.mt)({payload:w.MZ.OPEN_CHANNEL})),this.store.dispatch((0,P.no)({payload:{action:"SaveNewChannel",status:w.wn.INITIATED}}));const W={id:_.payload.peerId,amount:_.payload.amount,feerate:_.payload.feeRate,announce:_.payload.announce};return _.payload.minconf&&(W.minconf=_.payload.minconf),_.payload.utxos&&(W.utxos=_.payload.utxos),_.payload.requestAmount&&(W.request_amt=_.payload.requestAmount),_.payload.compactLease&&(W.compact_lease=_.payload.compactLease),this.httpClient.post(this.CHILD_API_URL+w.rl.CHANNELS_API,W).pipe((0,c.T)(I=>(this.logger.info(I),this.store.dispatch((0,P.no)({payload:{action:"SaveNewChannel",status:w.wn.COMPLETED}})),this.store.dispatch((0,m.y0)({payload:w.MZ.OPEN_CHANNEL})),this.store.dispatch((0,m.UI)({payload:"Channel Added Successfully!"})),this.store.dispatch((0,P.g6)()),{type:w.TC.FETCH_CHANNELS_CLN})),(0,S.W)(I=>(this.handleErrorWithoutAlert("SaveNewChannel",w.MZ.OPEN_CHANNEL,"Opening Channel Failed.",I),(0,p.of)({type:w.aU.VOID}))))}))),this.updateChannelCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.UPDATE_CHANNEL_CLN),(0,e.Z)(_=>(this.store.dispatch((0,m.mt)({payload:w.MZ.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+w.rl.CHANNELS_API+"/setChannelFee",_.payload).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,m.y0)({payload:w.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,m.UI)("all"===_.payload.id?{payload:{message:"All Channels Updated Successfully. Fee policy updates may take some time to reflect on the channel.",duration:5e3}}:{payload:{message:"Channel Updated Successfully. Fee policy updates may take some time to reflect on the channel.",duration:5e3}})),{type:w.TC.FETCH_CHANNELS_CLN})),(0,S.W)(W=>(this.handleErrorWithAlert("UpdateChannel",w.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+w.rl.CHANNELS_API,W),(0,p.of)({type:w.aU.VOID})))))))),this.closeChannelCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.CLOSE_CHANNEL_CLN),(0,e.Z)(_=>(this.store.dispatch((0,m.mt)({payload:_.payload.force?w.MZ.FORCE_CLOSE_CHANNEL:w.MZ.CLOSE_CHANNEL})),this.httpClient.post(this.CHILD_API_URL+w.rl.CHANNELS_API+"/close",{id:_.payload.channelId,unilateraltimeout:_.payload.force?1:null}).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,m.y0)({payload:_.payload.force?w.MZ.FORCE_CLOSE_CHANNEL:w.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,P.$Q)()),this.store.dispatch((0,P.g6)()),this.store.dispatch((0,m.UI)({payload:"Channel Closed Successfully!"})),{type:w.TC.REMOVE_CHANNEL_CLN,payload:_.payload})),(0,S.W)(W=>(this.handleErrorWithAlert("CloseChannel",_.payload.force?w.MZ.FORCE_CLOSE_CHANNEL:w.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+w.rl.CHANNELS_API,W),(0,p.of)({type:w.aU.VOID})))))))),this.paymentsFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.FETCH_PAYMENTS_CLN),(0,e.Z)(()=>(this.store.dispatch((0,P.no)({payload:{action:"FetchPayments",status:w.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+w.rl.PAYMENTS_API))),(0,c.T)(_=>(this.logger.info(_),this.store.dispatch((0,P.no)({payload:{action:"FetchPayments",status:w.wn.COMPLETED}})),{type:w.TC.SET_PAYMENTS_CLN,payload:_||[]})),(0,S.W)(_=>(this.handleErrorWithoutAlert("FetchPayments",w.MZ.NO_SPINNER,"Fetching Payments Failed.",_),(0,p.of)({type:w.aU.VOID}))))),this.fetchOfferInvoiceCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.FETCH_OFFER_INVOICE_CLN),(0,e.Z)(_=>(this.store.dispatch((0,m.mt)({payload:w.MZ.FETCH_INVOICE})),this.store.dispatch((0,P.no)({payload:{action:"FetchOfferInvoice",status:w.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+w.rl.OFFERS_API+"/fetchOfferInvoice",_.payload).pipe((0,c.T)(W=>{this.logger.info(W),setTimeout(()=>{this.store.dispatch((0,P.no)({payload:{action:"FetchOfferInvoice",status:w.wn.COMPLETED}})),this.store.dispatch((0,m.y0)({payload:w.MZ.FETCH_INVOICE})),this.store.dispatch((0,P.GZ)({payload:W||{}}))},500)}),(0,S.W)(W=>(this.handleErrorWithoutAlert("FetchOfferInvoice",w.MZ.FETCH_INVOICE,"Offer Invoice Fetch Failed",W),(0,p.of)({type:w.aU.VOID}))))))),{dispatch:!1}),this.setOfferInvoiceCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.SET_OFFER_INVOICE_CLN),(0,c.T)(_=>(this.logger.info(_.payload),_.payload))),{dispatch:!1}),this.sendPaymentCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.SEND_PAYMENT_CLN),(0,e.Z)(_=>(this.store.dispatch((0,m.mt)({payload:_.payload.uiMessage})),this.store.dispatch((0,P.no)({payload:{action:"SendPayment",status:w.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+w.rl.PAYMENTS_API,_.payload).pipe((0,c.T)(W=>{this.logger.info(W),this.store.dispatch((0,P.no)({payload:{action:"SendPayment",status:w.wn.COMPLETED}}));let I="Payment Sent Successfully!";W.saveToDBError&&(I="Payment Sent Successfully but Offer Saving to Database Failed."),W.saveToDBResponse&&"NA"!==W.saveToDBResponse&&(this.store.dispatch((0,P.Db)({payload:W.saveToDBResponse})),I="Payment Sent Successfully and Offer Saved to Database."),setTimeout(()=>{this.store.dispatch((0,P.$Q)()),this.store.dispatch((0,P.g6)()),this.store.dispatch((0,P.CK)()),this.store.dispatch((0,m.y0)({payload:_.payload.uiMessage})),this.store.dispatch((0,m.UI)({payload:I})),this.store.dispatch((0,P.N4)({payload:W.paymentResponse}))},1e3)}),(0,S.W)(W=>(this.logger.error("Error: "+JSON.stringify(W)),_.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",_.payload.uiMessage,"Send Payment Failed.",W):this.handleErrorWithAlert("SendPayment",_.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+w.rl.PAYMENTS_API,W),(0,p.of)({type:w.aU.VOID}))))))),{dispatch:!1}),this.queryRoutesFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.GET_QUERY_ROUTES_CLN),(0,e.Z)(_=>(this.store.dispatch((0,P.no)({payload:{action:"GetQueryRoutes",status:w.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+w.rl.NETWORK_API+"/getRoute",{id:_.payload.destPubkey,amount_msat:_.payload.amount,riskfactor:0}).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,P.no)({payload:{action:"GetQueryRoutes",status:w.wn.COMPLETED}})),{type:w.TC.SET_QUERY_ROUTES_CLN,payload:W})),(0,S.W)(W=>(this.store.dispatch((0,P.Hm)({payload:{route:[]}})),this.handleErrorWithAlert("GetQueryRoutes",w.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+w.rl.NETWORK_API+"/getRoute",W),(0,p.of)({type:w.aU.VOID})))))))),this.setQueryRoutesCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.SET_QUERY_ROUTES_CLN),(0,c.T)(_=>_.payload)),{dispatch:!1}),this.peerLookupCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.PEER_LOOKUP_CLN),(0,e.Z)(_=>(this.store.dispatch((0,m.mt)({payload:w.MZ.SEARCHING_NODE})),this.store.dispatch((0,P.no)({payload:{action:"Lookup",status:w.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+w.rl.NETWORK_API+"/listNodes",{id:_.payload}).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,P.no)({payload:{action:"Lookup",status:w.wn.COMPLETED}})),this.store.dispatch((0,m.y0)({payload:w.MZ.SEARCHING_NODE})),{type:w.TC.SET_LOOKUP_CLN,payload:W})),(0,S.W)(W=>(this.handleErrorWithAlert("Lookup",w.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+w.rl.NETWORK_API+"/listNodes/"+_.payload,W),(0,p.of)({type:w.aU.VOID})))))))),this.channelLookupCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.CHANNEL_LOOKUP_CLN),(0,e.Z)(_=>(this.store.dispatch((0,m.mt)({payload:_.payload.uiMessage})),this.store.dispatch((0,P.no)({payload:{action:"Lookup",status:w.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+w.rl.NETWORK_API+"/listChannels",{short_channel_id:_.payload.shortChannelID}).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,P.no)({payload:{action:"Lookup",status:w.wn.COMPLETED}})),this.store.dispatch((0,m.y0)({payload:_.payload.uiMessage})),{type:w.TC.SET_LOOKUP_CLN,payload:W})),(0,S.W)(W=>(_.payload.showError?this.handleErrorWithAlert("Lookup",_.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+w.rl.NETWORK_API+"/listChannels/"+_.payload.shortChannelID,W):this.store.dispatch((0,m.y0)({payload:_.payload.uiMessage})),this.store.dispatch((0,P.$J)({payload:[]})),(0,p.of)({type:w.aU.VOID})))))))),this.invoiceLookupCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.INVOICE_LOOKUP_CLN),(0,e.Z)(_=>(this.store.dispatch((0,m.mt)({payload:w.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,P.no)({payload:{action:"Lookup",status:w.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+w.rl.INVOICES_API+"/lookup",{label:_.payload}).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,P.no)({payload:{action:"Lookup",status:w.wn.COMPLETED}})),this.store.dispatch((0,m.y0)({payload:w.MZ.SEARCHING_INVOICE})),W.invoices&&W.invoices.length&&W.invoices.length>0&&this.store.dispatch((0,P.Dq)({payload:W.invoices[0]})),{type:w.TC.SET_LOOKUP_CLN,payload:W.invoices&&W.invoices.length&&W.invoices.length>0?W.invoices[0]:W})),(0,S.W)(W=>(this.handleErrorWithoutAlert("Lookup",w.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",W),this.store.dispatch((0,m.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,p.of)({type:w.aU.VOID})))))))),this.setLookupCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.SET_LOOKUP_CLN),(0,c.T)(_=>(this.logger.info(_.payload),_.payload))),{dispatch:!1}),this.fetchForwardingHistoryCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.GET_FORWARDING_HISTORY_CLN),(0,e.Z)(_=>{const W=_.payload.status.charAt(0).toUpperCase();return this.store.dispatch((0,P.no)({payload:{action:"FetchForwardingHistory"+W,status:w.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+w.rl.CHANNELS_API+"/listForwards",_.payload).pipe((0,c.T)(I=>(this.logger.info(I),this.store.dispatch((0,P.no)({payload:{action:"FetchForwardingHistory"+W,status:w.wn.COMPLETED}})),_.payload.status===w.xk.FAILED?this.store.dispatch((0,P.kv)({payload:{status:w.xk.FAILED,totalForwards:I.length,listForwards:I}})):_.payload.status===w.xk.LOCAL_FAILED?this.store.dispatch((0,P.kv)({payload:{status:w.xk.LOCAL_FAILED,totalForwards:I.length,listForwards:I}})):_.payload.status===w.xk.SETTLED&&this.store.dispatch((0,P.kv)({payload:{status:w.xk.SETTLED,totalForwards:I.length,listForwards:I}})),{type:w.aU.VOID})),(0,S.W)(I=>(this.handleErrorWithAlert("FetchForwardingHistory"+W,w.MZ.NO_SPINNER,"Get "+_.payload.status+" Forwarding History Failed",this.CHILD_API_URL+w.rl.CHANNELS_API+"/listForwards",I),(0,p.of)({type:w.aU.VOID}))))}))),this.deleteExpiredInvoiceCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.DELETE_EXPIRED_INVOICE_CLN),(0,e.Z)(_=>(this.store.dispatch((0,m.mt)({payload:w.MZ.DELETE_INVOICE})),this.httpClient.post(this.CHILD_API_URL+w.rl.INVOICES_API+"/delete",{subsystem:"expiredinvoices",age:w.NG}).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,m.y0)({payload:w.MZ.DELETE_INVOICE})),this.store.dispatch((0,m.UI)({payload:W.status})),{type:w.TC.FETCH_INVOICES_CLN})),(0,S.W)(W=>(this.handleErrorWithAlert("DeleteInvoices",w.MZ.DELETE_INVOICE,"Delete Invoice Failed",this.CHILD_API_URL+w.rl.INVOICES_API,W),(0,p.of)({type:w.aU.VOID})))))))),this.saveNewInvoiceCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.SAVE_NEW_INVOICE_CLN),(0,e.Z)(_=>(this.store.dispatch((0,m.mt)({payload:w.MZ.ADD_INVOICE})),this.store.dispatch((0,P.no)({payload:{action:"SaveNewInvoice",status:w.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+w.rl.INVOICES_API,_.payload).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,P.no)({payload:{action:"SaveNewInvoice",status:w.wn.COMPLETED}})),this.store.dispatch((0,m.y0)({payload:w.MZ.ADD_INVOICE})),W.amount_msat=_.payload.amount_msat,W.label=_.payload.label,W.expires_at=Math.round((new Date).getTime()/1e3+_.payload.expiry),W.description=_.payload.description,W.status="unpaid",setTimeout(()=>{this.store.dispatch((0,m.xO)({payload:{data:{invoice:W,newlyAdded:!0,component:d.y}}}))},200),{type:w.TC.ADD_INVOICE_CLN,payload:W})),(0,S.W)(W=>(this.handleErrorWithoutAlert("SaveNewInvoice",w.MZ.ADD_INVOICE,"Add Invoice Failed.",W),(0,p.of)({type:w.aU.VOID})))))))),this.saveNewOfferCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.SAVE_NEW_OFFER_CLN),(0,e.Z)(_=>(this.store.dispatch((0,m.mt)({payload:w.MZ.CREATE_OFFER})),this.store.dispatch((0,P.no)({payload:{action:"SaveNewOffer",status:w.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+w.rl.OFFERS_API,_.payload).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,P.no)({payload:{action:"SaveNewOffer",status:w.wn.COMPLETED}})),this.store.dispatch((0,m.y0)({payload:w.MZ.CREATE_OFFER})),setTimeout(()=>{this.store.dispatch((0,m.xO)({payload:{data:{offer:W,newlyAdded:!0,component:j.f}}}))},100),{type:w.TC.ADD_OFFER_CLN,payload:W})),(0,S.W)(W=>(this.handleErrorWithoutAlert("SaveNewOffer",w.MZ.CREATE_OFFER,"Create Offer Failed.",W),(0,p.of)({type:w.aU.VOID})))))))),this.invoicesFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.FETCH_INVOICES_CLN),(0,e.Z)(()=>(this.store.dispatch((0,P.no)({payload:{action:"FetchInvoices",status:w.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+w.rl.INVOICES_API+"/lookup",null))),(0,c.T)(_=>(this.logger.info(_),this.store.dispatch((0,P.no)({payload:{action:"FetchInvoices",status:w.wn.COMPLETED}})),{type:w.TC.SET_INVOICES_CLN,payload:_})),(0,S.W)(_=>(this.handleErrorWithoutAlert("FetchInvoices",w.MZ.NO_SPINNER,"Fetching Invoices Failed.",_),(0,p.of)({type:w.aU.VOID}))))),this.offersFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.FETCH_OFFERS_CLN),(0,e.Z)(_=>(this.store.dispatch((0,P.no)({payload:{action:"FetchOffers",status:w.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+w.rl.OFFERS_API).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,P.no)({payload:{action:"FetchOffers",status:w.wn.COMPLETED}})),{type:w.TC.SET_OFFERS_CLN,payload:W.offers?W.offers:[]})),(0,S.W)(W=>(this.handleErrorWithoutAlert("FetchOffers",w.MZ.NO_SPINNER,"Fetching Offers Failed.",W),(0,p.of)({type:w.aU.VOID})))))))),this.offersDisableCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.DISABLE_OFFER_CLN),(0,e.Z)(_=>(this.store.dispatch((0,m.mt)({payload:w.MZ.DISABLE_OFFER})),this.store.dispatch((0,P.no)({payload:{action:"DisableOffer",status:w.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+w.rl.OFFERS_API+"/disableOffer",{offer_id:_.payload.offer_id}).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,P.no)({payload:{action:"DisableOffer",status:w.wn.COMPLETED}})),this.store.dispatch((0,m.y0)({payload:w.MZ.DISABLE_OFFER})),this.store.dispatch((0,m.UI)({payload:"Offer Disabled Successfully!"})),{type:w.TC.UPDATE_OFFER_CLN,payload:{offer:W}})),(0,S.W)(W=>(this.handleErrorWithoutAlert("DisableOffer",w.MZ.DISABLE_OFFER,"Disabling Offer Failed.",W),(0,p.of)({type:w.aU.VOID})))))))),this.offerBookmarksFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.FETCH_OFFER_BOOKMARKS_CLN),(0,e.Z)(_=>(this.store.dispatch((0,P.no)({payload:{action:"FetchOfferBookmarks",status:w.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+w.rl.OFFERS_API+"/offerbookmarks").pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,P.no)({payload:{action:"FetchOfferBookmarks",status:w.wn.COMPLETED}})),{type:w.TC.SET_OFFER_BOOKMARKS_CLN,payload:W||[]})),(0,S.W)(W=>(this.handleErrorWithoutAlert("FetchOfferBookmarks",w.MZ.NO_SPINNER,"Fetching Offer Bookmarks Failed.",W),(0,p.of)({type:w.aU.VOID})))))))),this.peidOffersDeleteCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.DELETE_OFFER_BOOKMARK_CLN),(0,e.Z)(_=>(this.store.dispatch((0,m.mt)({payload:w.MZ.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,P.no)({payload:{action:"DeleteOfferBookmark",status:w.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+w.rl.OFFERS_API+"/offerbookmark/delete",{offer_str:_.payload.bolt12}).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,P.no)({payload:{action:"DeleteOfferBookmark",status:w.wn.COMPLETED}})),this.store.dispatch((0,m.y0)({payload:w.MZ.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,m.UI)({payload:"Offer Bookmark Deleted Successfully!"})),{type:w.TC.REMOVE_OFFER_BOOKMARK_CLN,payload:{bolt12:_.payload.bolt12}})),(0,S.W)(W=>(this.handleErrorWithAlert("DeleteOfferBookmark",w.MZ.DELETE_OFFER_BOOKMARK,"Deleting Offer Bookmark Failed.",this.CHILD_API_URL+w.rl.OFFERS_API+"/offerbookmark/"+_.payload.bolt12,W),(0,p.of)({type:w.aU.VOID})))))))),this.SetChannelTransactionCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.SET_CHANNEL_TRANSACTION_CLN),(0,e.Z)(_=>(this.store.dispatch((0,m.mt)({payload:w.MZ.SEND_FUNDS})),this.store.dispatch((0,P.no)({payload:{action:"SetChannelTransaction",status:w.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+w.rl.ON_CHAIN_API,_.payload).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,P.no)({payload:{action:"SetChannelTransaction",status:w.wn.COMPLETED}})),this.store.dispatch((0,m.y0)({payload:w.MZ.SEND_FUNDS})),this.store.dispatch((0,P.g6)()),{type:w.TC.SET_CHANNEL_TRANSACTION_RES_CLN,payload:W})),(0,S.W)(W=>(this.handleErrorWithoutAlert("SetChannelTransaction",w.MZ.SEND_FUNDS,"Sending Fund Failed.",W),(0,p.of)({type:w.aU.VOID})))))))),this.utxoBalancesFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.FETCH_UTXO_BALANCES_CLN),(0,e.Z)(()=>(this.store.dispatch((0,P.no)({payload:{action:"FetchUTXOBalances",status:w.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+w.rl.ON_CHAIN_API+"/utxos"))),(0,c.T)(_=>(this.logger.info(_),this.store.dispatch((0,P.no)({payload:{action:"FetchUTXOBalances",status:w.wn.COMPLETED}})),{type:w.TC.SET_UTXO_BALANCES_CLN,payload:_})),(0,S.W)(_=>(this.handleErrorWithoutAlert("FetchUTXOBalances",w.MZ.NO_SPINNER,"Fetching UTXO and Balances Failed.",_),(0,p.of)({type:w.aU.VOID}))))),this.pageSettingsFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.FETCH_PAGE_SETTINGS_CLN),(0,e.Z)(()=>(this.store.dispatch((0,P.no)({payload:{action:"FetchPageSettings",status:w.wn.INITIATED}})),this.httpClient.get(w.rl.PAGE_SETTINGS_API).pipe((0,c.T)(_=>(this.logger.info(_),this.store.dispatch((0,P.no)({payload:{action:"FetchPageSettings",status:w.wn.COMPLETED}})),{type:w.TC.SET_PAGE_SETTINGS_CLN,payload:_||[]})),(0,S.W)(_=>(this.handleErrorWithoutAlert("FetchPageSettings",w.MZ.NO_SPINNER,"Fetching Page Settings Failed.",_),(0,p.of)({type:w.aU.VOID})))))))),this.savePageSettingsCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(w.TC.SAVE_PAGE_SETTINGS_CLN),(0,e.Z)(_=>(this.store.dispatch((0,m.mt)({payload:w.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,P.no)({payload:{action:"SavePageSettings",status:w.wn.INITIATED}})),this.httpClient.post(w.rl.PAGE_SETTINGS_API,_.payload).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,P.no)({payload:{action:"SavePageSettings",status:w.wn.COMPLETED}})),this.store.dispatch((0,m.y0)({payload:w.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,m.UI)({payload:"Page Layout Updated Successfully!"})),{type:w.TC.SET_PAGE_SETTINGS_CLN,payload:W||[]})),(0,S.W)(W=>(this.handleErrorWithAlert("SavePageSettings",w.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",w.rl.PAGE_SETTINGS_API,W),(0,p.of)({type:w.aU.VOID})))))))),this.store.select(M.ru).pipe((0,T.Q)(this.unSubs[0])).subscribe(_=>{_.FetchInfo.status!==w.wn.COMPLETED&&_.FetchInfo.status!==w.wn.ERROR||_.FetchChannels.status!==w.wn.COMPLETED&&_.FetchChannels.status!==w.wn.ERROR||_.FetchUTXOBalances.status!==w.wn.COMPLETED&&_.FetchUTXOBalances.status!==w.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,m.y0)({payload:w.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.clWSMessages.pipe((0,T.Q)(this.unSubs[1])).subscribe(_=>{this.logger.info("Received new message from the service: "+JSON.stringify(_)),_&&_.data&&_.data[w.Jr.INVOICE_PAYMENT]&&_.data[w.Jr.INVOICE_PAYMENT].label&&this.store.dispatch((0,P.Dq)({payload:_.data[w.Jr.INVOICE_PAYMENT]}))})}initializeRemainingData(n,o){this.sessionService.setItem("clnUnlocked","true");const f={identity_pubkey:n.id,alias:n.alias,testnet:"testnet"===n.network.toLowerCase(),chains:n.chains,uris:n.uris,version:n.version,api_version:n.api_version,numberOfPendingChannels:n.num_pending_channels};this.store.dispatch((0,m.mt)({payload:w.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,m.Fl)({payload:f}));let h=this.location.path();h.includes("/lnd/")?h=h?.replace("/lnd/","/cln/"):h.includes("/ecl/")&&(h=h?.replace("/ecl/","/cln/")),(h.includes("/login")||h.includes("/error")||""===h||"HOME"===o||h.includes("?access-key="))&&(h="/cln/home"),this.router.navigate([h]),this.store.dispatch((0,P.Do)()),this.store.dispatch((0,P.$Q)()),this.store.dispatch((0,P.g6)()),this.store.dispatch((0,P.kX)({payload:"perkw"})),this.store.dispatch((0,P.kX)({payload:"perkb"})),this.store.dispatch((0,P.Gy)()),this.store.dispatch((0,P.CK)())}handleErrorWithoutAlert(n,o,f,h){if(this.logger.error("ERROR IN: "+n+"\n"+JSON.stringify(h)),401===h.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,m.Jh)()),this.store.dispatch((0,m.ri)({payload:"Authentication Failed: "+JSON.stringify(h.error)}));else{this.store.dispatch((0,m.y0)({payload:o}));const b=this.commonService.extractErrorMessage(h,f);this.store.dispatch((0,P.no)({payload:{action:n,status:w.wn.ERROR,statusCode:h.status.toString(),message:b}}))}}handleErrorWithAlert(n,o,f,h,b){if(this.logger.error(b),401===b.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,m.Jh)()),this.store.dispatch((0,m.ri)({payload:"Authentication Failed: "+JSON.stringify(b.error)})),this.store.dispatch((0,m.UI)({payload:"Authentication Failed: "+b.error}));else{this.store.dispatch((0,m.y0)({payload:o}));const A=this.commonService.extractErrorMessage(b);this.store.dispatch((0,m.xO)({payload:{data:{type:"ERROR",alertTitle:f,message:{code:b.status,message:A,URL:h},component:g.f}}})),this.store.dispatch((0,P.no)({payload:{action:n,status:w.wn.ERROR,statusCode:b.status.toString(),message:A,URL:h}}))}}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#e=me=()=>(this.\u0275fac=function(o){return new(o||Te)(U.KVO(i.En),U.KVO(K.Qq),U.KVO(q.il),U.KVO(G.Q),U.KVO(Q.h),U.KVO($.gP),U.KVO(ae.Ix),U.KVO(ue.I),U.KVO(oe.aZ))},this.\u0275prov=U.jDH({token:Te,factory:Te.\u0275fac}))}return me(),Te})()},345:(Ae,ee,l)=>{"use strict";l.d(ee,{fM:()=>$,hE:()=>e,up:()=>ae});var i=l(2615),t=l(73664),p=l(93393);let e=(()=>{class k{_doc;constructor(r){this._doc=r}getTitle(){return this._doc.title}setTitle(r){this._doc.title=r||""}static \u0275fac=function(_){return new(_||k)(i.KVO(i.qQL))};static \u0275prov=i.jDH({token:k,factory:k.\u0275fac,providedIn:"root"})}return k})();const U={pan:!0,panstart:!0,panmove:!0,panend:!0,pancancel:!0,panleft:!0,panright:!0,panup:!0,pandown:!0,pinch:!0,pinchstart:!0,pinchmove:!0,pinchend:!0,pinchcancel:!0,pinchin:!0,pinchout:!0,press:!0,pressup:!0,rotate:!0,rotatestart:!0,rotatemove:!0,rotateend:!0,rotatecancel:!0,swipe:!0,swipeleft:!0,swiperight:!0,swipeup:!0,swipedown:!0,tap:!0,doubletap:!0},K=new i.nKC(""),q=new i.nKC("");let G=(()=>{class k{events=[];overrides={};options;buildHammer(r){const _=new Hammer(r,this.options);_.get("pinch").set({enable:!0}),_.get("rotate").set({enable:!0});for(const W in this.overrides)_.get(W).set(this.overrides[W]);return _}static \u0275fac=function(_){return new(_||k)};static \u0275prov=i.jDH({token:k,factory:k.\u0275fac})}return k})(),Q=(()=>{class k extends p.Hl{_config;_injector;loader;_loaderPromise=null;constructor(r,_,W,I){super(r),this._config=_,this._injector=W,this.loader=I}supports(r){return!(!U.hasOwnProperty(r.toLowerCase())&&!this.isCustomEvent(r)||!window.Hammer&&!this.loader)}addEventListener(r,_,W){const I=this.manager.getZone();if(_=_.toLowerCase(),!window.Hammer&&this.loader){this._loaderPromise=this._loaderPromise||I.runOutsideAngular(()=>this.loader());let B=!1,re=()=>{B=!0};return I.runOutsideAngular(()=>this._loaderPromise.then(()=>{window.Hammer?B||(re=this.addEventListener(r,_,W)):re=()=>{}}).catch(()=>{re=()=>{}})),()=>{re()}}return I.runOutsideAngular(()=>{const B=this._config.buildHammer(r),re=function(pe){I.runGuarded(function(){W(pe)})};return B.on(_,re),()=>{B.off(_,re),"function"==typeof B.destroy&&B.destroy()}})}isCustomEvent(r){return this._config.events.indexOf(r)>-1}static \u0275fac=function(_){return new(_||k)(i.KVO(i.qQL),i.KVO(K),i.KVO(i.zZn),i.KVO(q,8))};static \u0275prov=i.jDH({token:k,factory:k.\u0275fac})}return k})(),$=(()=>{class k{static \u0275fac=function(_){return new(_||k)};static \u0275mod=t.$C({type:k});static \u0275inj=i.G2t({providers:[{provide:p.Q5,useClass:Q,multi:!0,deps:[i.qQL,K,i.zZn,[new t.Xx1,q]]},{provide:K,useClass:G}]})}return k})(),ae=(()=>{class k{static \u0275fac=function(_){return new(_||k)};static \u0275prov=i.jDH({token:k,factory:function(_){let W=null;return W=_?new(_||k):i.KVO(ue),W},providedIn:"root"})}return k})(),ue=(()=>{class k extends ae{_doc;constructor(r){super(),this._doc=r}sanitize(r,_){if(null==_)return null;switch(r){case t.WPN.NONE:return _;case t.WPN.HTML:return(0,t.iWE)(_,"HTML")?(0,t.aCM)(_):(0,t.wr$)(this._doc,String(_)).toString();case t.WPN.STYLE:return(0,t.iWE)(_,"Style")?(0,t.aCM)(_):_;case t.WPN.SCRIPT:if((0,t.iWE)(_,"Script"))return(0,t.aCM)(_);throw new i.buA(5200,!1);case t.WPN.URL:return(0,t.iWE)(_,"URL")?(0,t.aCM)(_):(0,t.gil)(String(_));case t.WPN.RESOURCE_URL:if((0,t.iWE)(_,"ResourceURL"))return(0,t.aCM)(_);throw new i.buA(5201,!1);default:throw new i.buA(5202,!1)}}bypassSecurityTrustHtml(r){return(0,t.PYC)(r)}bypassSecurityTrustStyle(r){return(0,t.rAh)(r)}bypassSecurityTrustScript(r){return(0,t.p2i)(r)}bypassSecurityTrustUrl(r){return(0,t.B1s)(r)}bypassSecurityTrustResourceUrl(r){return(0,t.RPW)(r)}static \u0275fac=function(_){return new(_||k)(i.KVO(i.qQL))};static \u0275prov=i.jDH({token:k,factory:k.\u0275fac,providedIn:"root"})}return k})()},350:(Ae,ee,l)=>{var i=l(60503),t=l(19307),p=l(27054).Buffer,S=l(91821),c=l(3247),e=l(12375),T=l(18211);function d(j,U,K){c.call(this),this._cache=new m,this._cipher=new e.AES(U),this._prev=p.from(K),this._mode=j,this._autopadding=!0}l(71993)(d,c),d.prototype._update=function(j){this._cache.add(j);for(var U,K,q=[];U=this._cache.get();)K=this._mode.encrypt(this,U),q.push(K);return p.concat(q)};var w=p.alloc(16,16);function m(){this.cache=p.allocUnsafe(0)}function P(j,U,K){var q=i[j.toLowerCase()];if(!q)throw new TypeError("invalid suite type");if("string"==typeof U&&(U=p.from(U)),U.length!==q.key/8)throw new TypeError("invalid key length "+U.length);if("string"==typeof K&&(K=p.from(K)),"GCM"!==q.mode&&K.length!==q.iv)throw new TypeError("invalid iv length "+K.length);return"stream"===q.type?new S(q.module,U,K):"auth"===q.type?new t(q.module,U,K):new d(q.module,U,K)}d.prototype._final=function(){var j=this._cache.flush();if(this._autopadding)return j=this._mode.encrypt(this,j),this._cipher.scrub(),j;if(!j.equals(w))throw this._cipher.scrub(),new Error("data not multiple of block length")},d.prototype.setAutoPadding=function(j){return this._autopadding=!!j,this},m.prototype.add=function(j){this.cache=p.concat([this.cache,j])},m.prototype.get=function(){if(this.cache.length>15){var j=this.cache.slice(0,16);return this.cache=this.cache.slice(16),j}return null},m.prototype.flush=function(){for(var j=16-this.cache.length,U=p.allocUnsafe(j),K=-1;++K{"use strict";var i=l(46758),p=l(12773)("TypedArray.prototype.buffer",!0),S=l(4729);Ae.exports=p||function(e){if(!S(e))throw new i("Not a Typed Array");return e.buffer}},917:function(Ae,ee,l){!function(i,t){"use strict";function p(f,h){if(!f)throw new Error(h||"Assertion failed")}function S(f,h){f.super_=h;var b=function(){};b.prototype=h.prototype,f.prototype=new b,f.prototype.constructor=f}function c(f,h,b){if(c.isBN(f))return f;this.negative=0,this.words=null,this.length=0,this.red=null,null!==f&&(("le"===h||"be"===h)&&(b=h,h=10),this._init(f||0,h||10,b||"be"))}var e;"object"==typeof i?i.exports=c:t.BN=c,c.BN=c,c.wordSize=26;try{e=typeof window<"u"&&typeof window.Buffer<"u"?window.Buffer:l(47790).Buffer}catch{}function T(f,h){var b=f.charCodeAt(h);return b>=48&&b<=57?b-48:b>=65&&b<=70?b-55:b>=97&&b<=102?b-87:void p(!1,"Invalid character in "+f)}function g(f,h,b){var A=T(f,b);return b-1>=h&&(A|=T(f,b-1)<<4),A}function d(f,h,b,A){for(var k=0,x=0,r=Math.min(f.length,b),_=h;_=49?W-49+10:W>=17?W-17+10:W,p(W>=0&&x0?h:b},c.min=function(h,b){return h.cmp(b)<0?h:b},c.prototype._init=function(h,b,A){if("number"==typeof h)return this._initNumber(h,b,A);if("object"==typeof h)return this._initArray(h,b,A);"hex"===b&&(b=16),p(b===(0|b)&&b>=2&&b<=36);var k=0;"-"===(h=h.toString().replace(/\s+/g,""))[0]&&(k++,this.negative=1),k=0;k-=3)this.words[x]|=(r=h[k]|h[k-1]<<8|h[k-2]<<16)<<_&67108863,this.words[x+1]=r>>>26-_&67108863,(_+=24)>=26&&(_-=26,x++);else if("le"===A)for(k=0,x=0;k>>26-_&67108863,(_+=24)>=26&&(_-=26,x++);return this._strip()},c.prototype._parseHex=function(h,b,A){this.length=Math.ceil((h.length-b)/6),this.words=new Array(this.length);for(var k=0;k=b;k-=2)_=g(h,b,k)<=18?(x-=18,this.words[r+=1]|=_>>>26):x+=8;else for(k=(h.length-b)%2==0?b+1:b;k=18?(x-=18,this.words[r+=1]|=_>>>26):x+=8;this._strip()},c.prototype._parseBase=function(h,b,A){this.words=[0],this.length=1;for(var k=0,x=1;x<=67108863;x*=b)k++;k--,x=x/b|0;for(var r=h.length-A,_=r%k,W=Math.min(r,r-_)+A,I=0,B=A;B1&&0===this.words[this.length-1];)this.length--;return this._normSign()},c.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},typeof Symbol<"u"&&"function"==typeof Symbol.for)try{c.prototype[Symbol.for("nodejs.util.inspect.custom")]=m}catch{c.prototype.inspect=m}else c.prototype.inspect=m;function m(){return(this.red?""}var P=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],M=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],j=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function q(f,h,b){b.negative=h.negative^f.negative;var A=f.length+h.length|0;b.length=A,A=A-1|0;var k=0|f.words[0],x=0|h.words[0],r=k*x,W=r/67108864|0;b.words[0]=67108863&r;for(var I=1;I>>26,re=67108863&W,pe=Math.min(I,h.length-1),be=Math.max(0,I-f.length+1);be<=pe;be++)B+=(r=(k=0|f.words[I-be|0])*(x=0|h.words[be])+re)/67108864|0,re=67108863&r;b.words[I]=0|re,W=0|B}return 0!==W?b.words[I]=0|W:b.length--,b._strip()}c.prototype.toString=function(h,b){var A;if(b=0|b||1,16===(h=h||10)||"hex"===h){A="";for(var k=0,x=0,r=0;r>>24-k&16777215,(k+=2)>=26&&(k-=26,r--),A=0!==x||r!==this.length-1?P[6-W.length]+W+A:W+A}for(0!==x&&(A=x.toString(16)+A);A.length%b!==0;)A="0"+A;return 0!==this.negative&&(A="-"+A),A}if(h===(0|h)&&h>=2&&h<=36){var I=M[h],B=j[h];A="";var re=this.clone();for(re.negative=0;!re.isZero();){var pe=re.modrn(B).toString(h);A=(re=re.idivn(B)).isZero()?pe+A:P[I-pe.length]+pe+A}for(this.isZero()&&(A="0"+A);A.length%b!==0;)A="0"+A;return 0!==this.negative&&(A="-"+A),A}p(!1,"Base should be between 2 and 36")},c.prototype.toNumber=function(){var h=this.words[0];return 2===this.length?h+=67108864*this.words[1]:3===this.length&&1===this.words[2]?h+=4503599627370496+67108864*this.words[1]:this.length>2&&p(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-h:h},c.prototype.toJSON=function(){return this.toString(16,2)},e&&(c.prototype.toBuffer=function(h,b){return this.toArrayLike(e,h,b)}),c.prototype.toArray=function(h,b){return this.toArrayLike(Array,h,b)},c.prototype.toArrayLike=function(h,b,A){this._strip();var k=this.byteLength(),x=A||Math.max(1,k);p(k<=x,"byte array longer than desired length"),p(x>0,"Requested array length <= 0");var r=function(h,b){return h.allocUnsafe?h.allocUnsafe(b):new h(b)}(h,x);return this["_toArrayLike"+("le"===b?"LE":"BE")](r,k),r},c.prototype._toArrayLikeLE=function(h,b){for(var A=0,k=0,x=0,r=0;x>8&255),A>16&255),6===r?(A>24&255),k=0,r=0):(k=_>>>24,r+=2)}if(A=0&&(h[A--]=_>>8&255),A>=0&&(h[A--]=_>>16&255),6===r?(A>=0&&(h[A--]=_>>24&255),k=0,r=0):(k=_>>>24,r+=2)}if(A>=0)for(h[A--]=k;A>=0;)h[A--]=0},c.prototype._countBits=Math.clz32?function(h){return 32-Math.clz32(h)}:function(h){var b=h,A=0;return b>=4096&&(A+=13,b>>>=13),b>=64&&(A+=7,b>>>=7),b>=8&&(A+=4,b>>>=4),b>=2&&(A+=2,b>>>=2),A+b},c.prototype._zeroBits=function(h){if(0===h)return 26;var b=h,A=0;return!(8191&b)&&(A+=13,b>>>=13),!(127&b)&&(A+=7,b>>>=7),!(15&b)&&(A+=4,b>>>=4),!(3&b)&&(A+=2,b>>>=2),!(1&b)&&A++,A},c.prototype.bitLength=function(){var b=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+b},c.prototype.zeroBits=function(){if(this.isZero())return 0;for(var h=0,b=0;bh.length?this.clone().ior(h):h.clone().ior(this)},c.prototype.uor=function(h){return this.length>h.length?this.clone().iuor(h):h.clone().iuor(this)},c.prototype.iuand=function(h){var b;b=this.length>h.length?h:this;for(var A=0;Ah.length?this.clone().iand(h):h.clone().iand(this)},c.prototype.uand=function(h){return this.length>h.length?this.clone().iuand(h):h.clone().iuand(this)},c.prototype.iuxor=function(h){var b,A;this.length>h.length?(b=this,A=h):(b=h,A=this);for(var k=0;kh.length?this.clone().ixor(h):h.clone().ixor(this)},c.prototype.uxor=function(h){return this.length>h.length?this.clone().iuxor(h):h.clone().iuxor(this)},c.prototype.inotn=function(h){p("number"==typeof h&&h>=0);var b=0|Math.ceil(h/26),A=h%26;this._expand(b),A>0&&b--;for(var k=0;k0&&(this.words[k]=~this.words[k]&67108863>>26-A),this._strip()},c.prototype.notn=function(h){return this.clone().inotn(h)},c.prototype.setn=function(h,b){p("number"==typeof h&&h>=0);var A=h/26|0,k=h%26;return this._expand(A+1),this.words[A]=b?this.words[A]|1<h.length?(A=this,k=h):(A=h,k=this);for(var x=0,r=0;r>>26;for(;0!==x&&r>>26;if(this.length=A.length,0!==x)this.words[this.length]=x,this.length++;else if(A!==this)for(;rh.length?this.clone().iadd(h):h.clone().iadd(this)},c.prototype.isub=function(h){if(0!==h.negative){h.negative=0;var b=this.iadd(h);return h.negative=1,b._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(h),this.negative=1,this._normSign();var k,x,A=this.cmp(h);if(0===A)return this.negative=0,this.length=1,this.words[0]=0,this;A>0?(k=this,x=h):(k=h,x=this);for(var r=0,_=0;_>26,this.words[_]=67108863&b;for(;0!==r&&_>26,this.words[_]=67108863&b;if(0===r&&_>>13,Be=0|k[1],_e=8191&Be,ye=Be>>>13,Le=0|k[2],Ke=8191&Le,ge=Le>>>13,ve=0|k[3],Oe=8191&ve,Ee=ve>>>13,dt=0|k[4],nt=8191&dt,Ct=dt>>>13,Mt=0|k[5],lt=8191&Mt,Pe=Mt>>>13,Ht=0|k[6],ct=8191&Ht,Ce=Ht>>>13,ze=0|k[7],Z=8191&ze,J=ze>>>13,fe=0|k[8],Ie=8191&fe,ht=fe>>>13,li=0|k[9],Qt=8191&li,di=li>>>13,kt=0|x[0],Rt=8191&kt,le=kt>>>13,te=0|x[1],ce=8191&te,se=te>>>13,ke=0|x[2],Ue=8191&ke,Ne=ke>>>13,Kt=0|x[3],yt=8191&Kt,Vt=Kt>>>13,Zt=0|x[4],ti=8191&Zt,Ye=Zt>>>13,Nt=0|x[5],Et=8191&Nt,Jt=Nt>>>13,qe=0|x[6],$e=8191&qe,tt=qe>>>13,vi=0|x[7],ei=8191&vi,ci=vi>>>13,Hi=0|x[8],oi=8191&Hi,ui=Hi>>>13,ln=0|x[9],nn=8191&ln,dn=ln>>>13;A.negative=h.negative^b.negative,A.length=19;var zn=(_+(W=Math.imul(pe,Rt))|0)+((8191&(I=(I=Math.imul(pe,le))+Math.imul(be,Rt)|0))<<13)|0;_=((B=Math.imul(be,le))+(I>>>13)|0)+(zn>>>26)|0,zn&=67108863,W=Math.imul(_e,Rt),I=(I=Math.imul(_e,le))+Math.imul(ye,Rt)|0,B=Math.imul(ye,le);var It=(_+(W=W+Math.imul(pe,ce)|0)|0)+((8191&(I=(I=I+Math.imul(pe,se)|0)+Math.imul(be,ce)|0))<<13)|0;_=((B=B+Math.imul(be,se)|0)+(I>>>13)|0)+(It>>>26)|0,It&=67108863,W=Math.imul(Ke,Rt),I=(I=Math.imul(Ke,le))+Math.imul(ge,Rt)|0,B=Math.imul(ge,le),W=W+Math.imul(_e,ce)|0,I=(I=I+Math.imul(_e,se)|0)+Math.imul(ye,ce)|0,B=B+Math.imul(ye,se)|0;var Tt=(_+(W=W+Math.imul(pe,Ue)|0)|0)+((8191&(I=(I=I+Math.imul(pe,Ne)|0)+Math.imul(be,Ue)|0))<<13)|0;_=((B=B+Math.imul(be,Ne)|0)+(I>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,W=Math.imul(Oe,Rt),I=(I=Math.imul(Oe,le))+Math.imul(Ee,Rt)|0,B=Math.imul(Ee,le),W=W+Math.imul(Ke,ce)|0,I=(I=I+Math.imul(Ke,se)|0)+Math.imul(ge,ce)|0,B=B+Math.imul(ge,se)|0,W=W+Math.imul(_e,Ue)|0,I=(I=I+Math.imul(_e,Ne)|0)+Math.imul(ye,Ue)|0,B=B+Math.imul(ye,Ne)|0;var Ze=(_+(W=W+Math.imul(pe,yt)|0)|0)+((8191&(I=(I=I+Math.imul(pe,Vt)|0)+Math.imul(be,yt)|0))<<13)|0;_=((B=B+Math.imul(be,Vt)|0)+(I>>>13)|0)+(Ze>>>26)|0,Ze&=67108863,W=Math.imul(nt,Rt),I=(I=Math.imul(nt,le))+Math.imul(Ct,Rt)|0,B=Math.imul(Ct,le),W=W+Math.imul(Oe,ce)|0,I=(I=I+Math.imul(Oe,se)|0)+Math.imul(Ee,ce)|0,B=B+Math.imul(Ee,se)|0,W=W+Math.imul(Ke,Ue)|0,I=(I=I+Math.imul(Ke,Ne)|0)+Math.imul(ge,Ue)|0,B=B+Math.imul(ge,Ne)|0,W=W+Math.imul(_e,yt)|0,I=(I=I+Math.imul(_e,Vt)|0)+Math.imul(ye,yt)|0,B=B+Math.imul(ye,Vt)|0;var Ve=(_+(W=W+Math.imul(pe,ti)|0)|0)+((8191&(I=(I=I+Math.imul(pe,Ye)|0)+Math.imul(be,ti)|0))<<13)|0;_=((B=B+Math.imul(be,Ye)|0)+(I>>>13)|0)+(Ve>>>26)|0,Ve&=67108863,W=Math.imul(lt,Rt),I=(I=Math.imul(lt,le))+Math.imul(Pe,Rt)|0,B=Math.imul(Pe,le),W=W+Math.imul(nt,ce)|0,I=(I=I+Math.imul(nt,se)|0)+Math.imul(Ct,ce)|0,B=B+Math.imul(Ct,se)|0,W=W+Math.imul(Oe,Ue)|0,I=(I=I+Math.imul(Oe,Ne)|0)+Math.imul(Ee,Ue)|0,B=B+Math.imul(Ee,Ne)|0,W=W+Math.imul(Ke,yt)|0,I=(I=I+Math.imul(Ke,Vt)|0)+Math.imul(ge,yt)|0,B=B+Math.imul(ge,Vt)|0,W=W+Math.imul(_e,ti)|0,I=(I=I+Math.imul(_e,Ye)|0)+Math.imul(ye,ti)|0,B=B+Math.imul(ye,Ye)|0;var Fe=(_+(W=W+Math.imul(pe,Et)|0)|0)+((8191&(I=(I=I+Math.imul(pe,Jt)|0)+Math.imul(be,Et)|0))<<13)|0;_=((B=B+Math.imul(be,Jt)|0)+(I>>>13)|0)+(Fe>>>26)|0,Fe&=67108863,W=Math.imul(ct,Rt),I=(I=Math.imul(ct,le))+Math.imul(Ce,Rt)|0,B=Math.imul(Ce,le),W=W+Math.imul(lt,ce)|0,I=(I=I+Math.imul(lt,se)|0)+Math.imul(Pe,ce)|0,B=B+Math.imul(Pe,se)|0,W=W+Math.imul(nt,Ue)|0,I=(I=I+Math.imul(nt,Ne)|0)+Math.imul(Ct,Ue)|0,B=B+Math.imul(Ct,Ne)|0,W=W+Math.imul(Oe,yt)|0,I=(I=I+Math.imul(Oe,Vt)|0)+Math.imul(Ee,yt)|0,B=B+Math.imul(Ee,Vt)|0,W=W+Math.imul(Ke,ti)|0,I=(I=I+Math.imul(Ke,Ye)|0)+Math.imul(ge,ti)|0,B=B+Math.imul(ge,Ye)|0,W=W+Math.imul(_e,Et)|0,I=(I=I+Math.imul(_e,Jt)|0)+Math.imul(ye,Et)|0,B=B+Math.imul(ye,Jt)|0;var it=(_+(W=W+Math.imul(pe,$e)|0)|0)+((8191&(I=(I=I+Math.imul(pe,tt)|0)+Math.imul(be,$e)|0))<<13)|0;_=((B=B+Math.imul(be,tt)|0)+(I>>>13)|0)+(it>>>26)|0,it&=67108863,W=Math.imul(Z,Rt),I=(I=Math.imul(Z,le))+Math.imul(J,Rt)|0,B=Math.imul(J,le),W=W+Math.imul(ct,ce)|0,I=(I=I+Math.imul(ct,se)|0)+Math.imul(Ce,ce)|0,B=B+Math.imul(Ce,se)|0,W=W+Math.imul(lt,Ue)|0,I=(I=I+Math.imul(lt,Ne)|0)+Math.imul(Pe,Ue)|0,B=B+Math.imul(Pe,Ne)|0,W=W+Math.imul(nt,yt)|0,I=(I=I+Math.imul(nt,Vt)|0)+Math.imul(Ct,yt)|0,B=B+Math.imul(Ct,Vt)|0,W=W+Math.imul(Oe,ti)|0,I=(I=I+Math.imul(Oe,Ye)|0)+Math.imul(Ee,ti)|0,B=B+Math.imul(Ee,Ye)|0,W=W+Math.imul(Ke,Et)|0,I=(I=I+Math.imul(Ke,Jt)|0)+Math.imul(ge,Et)|0,B=B+Math.imul(ge,Jt)|0,W=W+Math.imul(_e,$e)|0,I=(I=I+Math.imul(_e,tt)|0)+Math.imul(ye,$e)|0,B=B+Math.imul(ye,tt)|0;var bt=(_+(W=W+Math.imul(pe,ei)|0)|0)+((8191&(I=(I=I+Math.imul(pe,ci)|0)+Math.imul(be,ei)|0))<<13)|0;_=((B=B+Math.imul(be,ci)|0)+(I>>>13)|0)+(bt>>>26)|0,bt&=67108863,W=Math.imul(Ie,Rt),I=(I=Math.imul(Ie,le))+Math.imul(ht,Rt)|0,B=Math.imul(ht,le),W=W+Math.imul(Z,ce)|0,I=(I=I+Math.imul(Z,se)|0)+Math.imul(J,ce)|0,B=B+Math.imul(J,se)|0,W=W+Math.imul(ct,Ue)|0,I=(I=I+Math.imul(ct,Ne)|0)+Math.imul(Ce,Ue)|0,B=B+Math.imul(Ce,Ne)|0,W=W+Math.imul(lt,yt)|0,I=(I=I+Math.imul(lt,Vt)|0)+Math.imul(Pe,yt)|0,B=B+Math.imul(Pe,Vt)|0,W=W+Math.imul(nt,ti)|0,I=(I=I+Math.imul(nt,Ye)|0)+Math.imul(Ct,ti)|0,B=B+Math.imul(Ct,Ye)|0,W=W+Math.imul(Oe,Et)|0,I=(I=I+Math.imul(Oe,Jt)|0)+Math.imul(Ee,Et)|0,B=B+Math.imul(Ee,Jt)|0,W=W+Math.imul(Ke,$e)|0,I=(I=I+Math.imul(Ke,tt)|0)+Math.imul(ge,$e)|0,B=B+Math.imul(ge,tt)|0,W=W+Math.imul(_e,ei)|0,I=(I=I+Math.imul(_e,ci)|0)+Math.imul(ye,ei)|0,B=B+Math.imul(ye,ci)|0;var ut=(_+(W=W+Math.imul(pe,oi)|0)|0)+((8191&(I=(I=I+Math.imul(pe,ui)|0)+Math.imul(be,oi)|0))<<13)|0;_=((B=B+Math.imul(be,ui)|0)+(I>>>13)|0)+(ut>>>26)|0,ut&=67108863,W=Math.imul(Qt,Rt),I=(I=Math.imul(Qt,le))+Math.imul(di,Rt)|0,B=Math.imul(di,le),W=W+Math.imul(Ie,ce)|0,I=(I=I+Math.imul(Ie,se)|0)+Math.imul(ht,ce)|0,B=B+Math.imul(ht,se)|0,W=W+Math.imul(Z,Ue)|0,I=(I=I+Math.imul(Z,Ne)|0)+Math.imul(J,Ue)|0,B=B+Math.imul(J,Ne)|0,W=W+Math.imul(ct,yt)|0,I=(I=I+Math.imul(ct,Vt)|0)+Math.imul(Ce,yt)|0,B=B+Math.imul(Ce,Vt)|0,W=W+Math.imul(lt,ti)|0,I=(I=I+Math.imul(lt,Ye)|0)+Math.imul(Pe,ti)|0,B=B+Math.imul(Pe,Ye)|0,W=W+Math.imul(nt,Et)|0,I=(I=I+Math.imul(nt,Jt)|0)+Math.imul(Ct,Et)|0,B=B+Math.imul(Ct,Jt)|0,W=W+Math.imul(Oe,$e)|0,I=(I=I+Math.imul(Oe,tt)|0)+Math.imul(Ee,$e)|0,B=B+Math.imul(Ee,tt)|0,W=W+Math.imul(Ke,ei)|0,I=(I=I+Math.imul(Ke,ci)|0)+Math.imul(ge,ei)|0,B=B+Math.imul(ge,ci)|0,W=W+Math.imul(_e,oi)|0,I=(I=I+Math.imul(_e,ui)|0)+Math.imul(ye,oi)|0,B=B+Math.imul(ye,ui)|0;var jt=(_+(W=W+Math.imul(pe,nn)|0)|0)+((8191&(I=(I=I+Math.imul(pe,dn)|0)+Math.imul(be,nn)|0))<<13)|0;_=((B=B+Math.imul(be,dn)|0)+(I>>>13)|0)+(jt>>>26)|0,jt&=67108863,W=Math.imul(Qt,ce),I=(I=Math.imul(Qt,se))+Math.imul(di,ce)|0,B=Math.imul(di,se),W=W+Math.imul(Ie,Ue)|0,I=(I=I+Math.imul(Ie,Ne)|0)+Math.imul(ht,Ue)|0,B=B+Math.imul(ht,Ne)|0,W=W+Math.imul(Z,yt)|0,I=(I=I+Math.imul(Z,Vt)|0)+Math.imul(J,yt)|0,B=B+Math.imul(J,Vt)|0,W=W+Math.imul(ct,ti)|0,I=(I=I+Math.imul(ct,Ye)|0)+Math.imul(Ce,ti)|0,B=B+Math.imul(Ce,Ye)|0,W=W+Math.imul(lt,Et)|0,I=(I=I+Math.imul(lt,Jt)|0)+Math.imul(Pe,Et)|0,B=B+Math.imul(Pe,Jt)|0,W=W+Math.imul(nt,$e)|0,I=(I=I+Math.imul(nt,tt)|0)+Math.imul(Ct,$e)|0,B=B+Math.imul(Ct,tt)|0,W=W+Math.imul(Oe,ei)|0,I=(I=I+Math.imul(Oe,ci)|0)+Math.imul(Ee,ei)|0,B=B+Math.imul(Ee,ci)|0,W=W+Math.imul(Ke,oi)|0,I=(I=I+Math.imul(Ke,ui)|0)+Math.imul(ge,oi)|0,B=B+Math.imul(ge,ui)|0;var ai=(_+(W=W+Math.imul(_e,nn)|0)|0)+((8191&(I=(I=I+Math.imul(_e,dn)|0)+Math.imul(ye,nn)|0))<<13)|0;_=((B=B+Math.imul(ye,dn)|0)+(I>>>13)|0)+(ai>>>26)|0,ai&=67108863,W=Math.imul(Qt,Ue),I=(I=Math.imul(Qt,Ne))+Math.imul(di,Ue)|0,B=Math.imul(di,Ne),W=W+Math.imul(Ie,yt)|0,I=(I=I+Math.imul(Ie,Vt)|0)+Math.imul(ht,yt)|0,B=B+Math.imul(ht,Vt)|0,W=W+Math.imul(Z,ti)|0,I=(I=I+Math.imul(Z,Ye)|0)+Math.imul(J,ti)|0,B=B+Math.imul(J,Ye)|0,W=W+Math.imul(ct,Et)|0,I=(I=I+Math.imul(ct,Jt)|0)+Math.imul(Ce,Et)|0,B=B+Math.imul(Ce,Jt)|0,W=W+Math.imul(lt,$e)|0,I=(I=I+Math.imul(lt,tt)|0)+Math.imul(Pe,$e)|0,B=B+Math.imul(Pe,tt)|0,W=W+Math.imul(nt,ei)|0,I=(I=I+Math.imul(nt,ci)|0)+Math.imul(Ct,ei)|0,B=B+Math.imul(Ct,ci)|0,W=W+Math.imul(Oe,oi)|0,I=(I=I+Math.imul(Oe,ui)|0)+Math.imul(Ee,oi)|0,B=B+Math.imul(Ee,ui)|0;var pi=(_+(W=W+Math.imul(Ke,nn)|0)|0)+((8191&(I=(I=I+Math.imul(Ke,dn)|0)+Math.imul(ge,nn)|0))<<13)|0;_=((B=B+Math.imul(ge,dn)|0)+(I>>>13)|0)+(pi>>>26)|0,pi&=67108863,W=Math.imul(Qt,yt),I=(I=Math.imul(Qt,Vt))+Math.imul(di,yt)|0,B=Math.imul(di,Vt),W=W+Math.imul(Ie,ti)|0,I=(I=I+Math.imul(Ie,Ye)|0)+Math.imul(ht,ti)|0,B=B+Math.imul(ht,Ye)|0,W=W+Math.imul(Z,Et)|0,I=(I=I+Math.imul(Z,Jt)|0)+Math.imul(J,Et)|0,B=B+Math.imul(J,Jt)|0,W=W+Math.imul(ct,$e)|0,I=(I=I+Math.imul(ct,tt)|0)+Math.imul(Ce,$e)|0,B=B+Math.imul(Ce,tt)|0,W=W+Math.imul(lt,ei)|0,I=(I=I+Math.imul(lt,ci)|0)+Math.imul(Pe,ei)|0,B=B+Math.imul(Pe,ci)|0,W=W+Math.imul(nt,oi)|0,I=(I=I+Math.imul(nt,ui)|0)+Math.imul(Ct,oi)|0,B=B+Math.imul(Ct,ui)|0;var ki=(_+(W=W+Math.imul(Oe,nn)|0)|0)+((8191&(I=(I=I+Math.imul(Oe,dn)|0)+Math.imul(Ee,nn)|0))<<13)|0;_=((B=B+Math.imul(Ee,dn)|0)+(I>>>13)|0)+(ki>>>26)|0,ki&=67108863,W=Math.imul(Qt,ti),I=(I=Math.imul(Qt,Ye))+Math.imul(di,ti)|0,B=Math.imul(di,Ye),W=W+Math.imul(Ie,Et)|0,I=(I=I+Math.imul(Ie,Jt)|0)+Math.imul(ht,Et)|0,B=B+Math.imul(ht,Jt)|0,W=W+Math.imul(Z,$e)|0,I=(I=I+Math.imul(Z,tt)|0)+Math.imul(J,$e)|0,B=B+Math.imul(J,tt)|0,W=W+Math.imul(ct,ei)|0,I=(I=I+Math.imul(ct,ci)|0)+Math.imul(Ce,ei)|0,B=B+Math.imul(Ce,ci)|0,W=W+Math.imul(lt,oi)|0,I=(I=I+Math.imul(lt,ui)|0)+Math.imul(Pe,oi)|0,B=B+Math.imul(Pe,ui)|0;var Ki=(_+(W=W+Math.imul(nt,nn)|0)|0)+((8191&(I=(I=I+Math.imul(nt,dn)|0)+Math.imul(Ct,nn)|0))<<13)|0;_=((B=B+Math.imul(Ct,dn)|0)+(I>>>13)|0)+(Ki>>>26)|0,Ki&=67108863,W=Math.imul(Qt,Et),I=(I=Math.imul(Qt,Jt))+Math.imul(di,Et)|0,B=Math.imul(di,Jt),W=W+Math.imul(Ie,$e)|0,I=(I=I+Math.imul(Ie,tt)|0)+Math.imul(ht,$e)|0,B=B+Math.imul(ht,tt)|0,W=W+Math.imul(Z,ei)|0,I=(I=I+Math.imul(Z,ci)|0)+Math.imul(J,ei)|0,B=B+Math.imul(J,ci)|0,W=W+Math.imul(ct,oi)|0,I=(I=I+Math.imul(ct,ui)|0)+Math.imul(Ce,oi)|0,B=B+Math.imul(Ce,ui)|0;var Ji=(_+(W=W+Math.imul(lt,nn)|0)|0)+((8191&(I=(I=I+Math.imul(lt,dn)|0)+Math.imul(Pe,nn)|0))<<13)|0;_=((B=B+Math.imul(Pe,dn)|0)+(I>>>13)|0)+(Ji>>>26)|0,Ji&=67108863,W=Math.imul(Qt,$e),I=(I=Math.imul(Qt,tt))+Math.imul(di,$e)|0,B=Math.imul(di,tt),W=W+Math.imul(Ie,ei)|0,I=(I=I+Math.imul(Ie,ci)|0)+Math.imul(ht,ei)|0,B=B+Math.imul(ht,ci)|0,W=W+Math.imul(Z,oi)|0,I=(I=I+Math.imul(Z,ui)|0)+Math.imul(J,oi)|0,B=B+Math.imul(J,ui)|0;var Dn=(_+(W=W+Math.imul(ct,nn)|0)|0)+((8191&(I=(I=I+Math.imul(ct,dn)|0)+Math.imul(Ce,nn)|0))<<13)|0;_=((B=B+Math.imul(Ce,dn)|0)+(I>>>13)|0)+(Dn>>>26)|0,Dn&=67108863,W=Math.imul(Qt,ei),I=(I=Math.imul(Qt,ci))+Math.imul(di,ei)|0,B=Math.imul(di,ci),W=W+Math.imul(Ie,oi)|0,I=(I=I+Math.imul(Ie,ui)|0)+Math.imul(ht,oi)|0,B=B+Math.imul(ht,ui)|0;var En=(_+(W=W+Math.imul(Z,nn)|0)|0)+((8191&(I=(I=I+Math.imul(Z,dn)|0)+Math.imul(J,nn)|0))<<13)|0;_=((B=B+Math.imul(J,dn)|0)+(I>>>13)|0)+(En>>>26)|0,En&=67108863,W=Math.imul(Qt,oi),I=(I=Math.imul(Qt,ui))+Math.imul(di,oi)|0,B=Math.imul(di,ui);var An=(_+(W=W+Math.imul(Ie,nn)|0)|0)+((8191&(I=(I=I+Math.imul(Ie,dn)|0)+Math.imul(ht,nn)|0))<<13)|0;_=((B=B+Math.imul(ht,dn)|0)+(I>>>13)|0)+(An>>>26)|0,An&=67108863;var Fn=(_+(W=Math.imul(Qt,nn))|0)+((8191&(I=(I=Math.imul(Qt,dn))+Math.imul(di,nn)|0))<<13)|0;return _=((B=Math.imul(di,dn))+(I>>>13)|0)+(Fn>>>26)|0,Fn&=67108863,r[0]=zn,r[1]=It,r[2]=Tt,r[3]=Ze,r[4]=Ve,r[5]=Fe,r[6]=it,r[7]=bt,r[8]=ut,r[9]=jt,r[10]=ai,r[11]=pi,r[12]=ki,r[13]=Ki,r[14]=Ji,r[15]=Dn,r[16]=En,r[17]=An,r[18]=Fn,0!==_&&(r[19]=_,A.length++),A};function Q(f,h,b){b.negative=h.negative^f.negative,b.length=f.length+h.length;for(var A=0,k=0,x=0;x>>26)|0)>>>26,r&=67108863}b.words[x]=_,A=r,r=k}return 0!==A?b.words[x]=A:b.length--,b._strip()}function $(f,h,b){return Q(f,h,b)}function ae(f,h){this.x=f,this.y=h}Math.imul||(G=q),c.prototype.mulTo=function(h,b){var k=this.length+h.length;return 10===this.length&&10===h.length?G(this,h,b):k<63?q(this,h,b):k<1024?Q(this,h,b):$(this,h,b)},ae.prototype.makeRBT=function(h){for(var b=new Array(h),A=c.prototype._countBits(h)-1,k=0;k>=1;return k},ae.prototype.permute=function(h,b,A,k,x,r){for(var _=0;_>>=1)x++;return 1<>>=13),x>>>=13;for(r=2*b;r>=26,A+=x/67108864|0,A+=r>>>26,this.words[k]=67108863&r}return 0!==A&&(this.words[k]=A,this.length++),this.length=0===h?1:this.length,b?this.ineg():this},c.prototype.muln=function(h){return this.clone().imuln(h)},c.prototype.sqr=function(){return this.mul(this)},c.prototype.isqr=function(){return this.imul(this.clone())},c.prototype.pow=function(h){var b=function K(f){for(var h=new Array(f.bitLength()),b=0;b>>b%26&1;return h}(h);if(0===b.length)return new c(1);for(var A=this,k=0;k=0);var x,b=h%26,A=(h-b)/26,k=67108863>>>26-b<<26-b;if(0!==b){var r=0;for(x=0;x>>26-b}r&&(this.words[x]=r,this.length++)}if(0!==A){for(x=this.length-1;x>=0;x--)this.words[x+A]=this.words[x];for(x=0;x=0),k=b?(b-b%26)/26:0;var x=h%26,r=Math.min((h-x)/26,this.length),_=67108863^67108863>>>x<r)for(this.length-=r,I=0;I=0&&(0!==B||I>=k);I--){var re=0|this.words[I];this.words[I]=B<<26-x|re>>>x,B=re&_}return W&&0!==B&&(W.words[W.length++]=B),0===this.length&&(this.words[0]=0,this.length=1),this._strip()},c.prototype.ishrn=function(h,b,A){return p(0===this.negative),this.iushrn(h,b,A)},c.prototype.shln=function(h){return this.clone().ishln(h)},c.prototype.ushln=function(h){return this.clone().iushln(h)},c.prototype.shrn=function(h){return this.clone().ishrn(h)},c.prototype.ushrn=function(h){return this.clone().iushrn(h)},c.prototype.testn=function(h){p("number"==typeof h&&h>=0);var b=h%26,A=(h-b)/26;return!(this.length<=A||!(this.words[A]&1<=0);var b=h%26,A=(h-b)/26;return p(0===this.negative,"imaskn works only with positive numbers"),this.length<=A?this:(0!==b&&A++,this.length=Math.min(A,this.length),0!==b&&(this.words[this.length-1]&=67108863^67108863>>>b<=67108864;b++)this.words[b]-=67108864,b===this.length-1?this.words[b+1]=1:this.words[b+1]++;return this.length=Math.max(this.length,b+1),this},c.prototype.isubn=function(h){if(p("number"==typeof h),p(h<67108864),h<0)return this.iaddn(-h);if(0!==this.negative)return this.negative=0,this.iaddn(h),this.negative=1,this;if(this.words[0]-=h,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var b=0;b>26)-(W/67108864|0),this.words[x+A]=67108863&r}for(;x>26,this.words[x+A]=67108863&r;if(0===_)return this._strip();for(p(-1===_),_=0,x=0;x>26,this.words[x]=67108863&r;return this.negative=1,this._strip()},c.prototype._wordDiv=function(h,b){var A,k=this.clone(),x=h,r=0|x.words[x.length-1];0!=(A=26-this._countBits(r))&&(x=x.ushln(A),k.iushln(A),r=0|x.words[x.length-1]);var I,W=k.length-x.length;if("mod"!==b){(I=new c(null)).length=W+1,I.words=new Array(I.length);for(var B=0;B=0;pe--){var be=67108864*(0|k.words[x.length+pe])+(0|k.words[x.length+pe-1]);for(be=Math.min(be/r|0,67108863),k._ishlnsubmul(x,be,pe);0!==k.negative;)be--,k.negative=0,k._ishlnsubmul(x,1,pe),k.isZero()||(k.negative^=1);I&&(I.words[pe]=be)}return I&&I._strip(),k._strip(),"div"!==b&&0!==A&&k.iushrn(A),{div:I||null,mod:k}},c.prototype.divmod=function(h,b,A){return p(!h.isZero()),this.isZero()?{div:new c(0),mod:new c(0)}:0!==this.negative&&0===h.negative?(r=this.neg().divmod(h,b),"mod"!==b&&(k=r.div.neg()),"div"!==b&&(x=r.mod.neg(),A&&0!==x.negative&&x.iadd(h)),{div:k,mod:x}):0===this.negative&&0!==h.negative?(r=this.divmod(h.neg(),b),"mod"!==b&&(k=r.div.neg()),{div:k,mod:r.mod}):0!==(this.negative&h.negative)?(r=this.neg().divmod(h.neg(),b),"div"!==b&&(x=r.mod.neg(),A&&0!==x.negative&&x.isub(h)),{div:r.div,mod:x}):h.length>this.length||this.cmp(h)<0?{div:new c(0),mod:this}:1===h.length?"div"===b?{div:this.divn(h.words[0]),mod:null}:"mod"===b?{div:null,mod:new c(this.modrn(h.words[0]))}:{div:this.divn(h.words[0]),mod:new c(this.modrn(h.words[0]))}:this._wordDiv(h,b);var k,x,r},c.prototype.div=function(h){return this.divmod(h,"div",!1).div},c.prototype.mod=function(h){return this.divmod(h,"mod",!1).mod},c.prototype.umod=function(h){return this.divmod(h,"mod",!0).mod},c.prototype.divRound=function(h){var b=this.divmod(h);if(b.mod.isZero())return b.div;var A=0!==b.div.negative?b.mod.isub(h):b.mod,k=h.ushrn(1),x=h.andln(1),r=A.cmp(k);return r<0||1===x&&0===r?b.div:0!==b.div.negative?b.div.isubn(1):b.div.iaddn(1)},c.prototype.modrn=function(h){var b=h<0;b&&(h=-h),p(h<=67108863);for(var A=(1<<26)%h,k=0,x=this.length-1;x>=0;x--)k=(A*k+(0|this.words[x]))%h;return b?-k:k},c.prototype.modn=function(h){return this.modrn(h)},c.prototype.idivn=function(h){var b=h<0;b&&(h=-h),p(h<=67108863);for(var A=0,k=this.length-1;k>=0;k--){var x=(0|this.words[k])+67108864*A;this.words[k]=x/h|0,A=x%h}return this._strip(),b?this.ineg():this},c.prototype.divn=function(h){return this.clone().idivn(h)},c.prototype.egcd=function(h){p(0===h.negative),p(!h.isZero());var b=this,A=h.clone();b=0!==b.negative?b.umod(h):b.clone();for(var k=new c(1),x=new c(0),r=new c(0),_=new c(1),W=0;b.isEven()&&A.isEven();)b.iushrn(1),A.iushrn(1),++W;for(var I=A.clone(),B=b.clone();!b.isZero();){for(var re=0,pe=1;0===(b.words[0]&pe)&&re<26;++re,pe<<=1);if(re>0)for(b.iushrn(re);re-- >0;)(k.isOdd()||x.isOdd())&&(k.iadd(I),x.isub(B)),k.iushrn(1),x.iushrn(1);for(var be=0,Be=1;0===(A.words[0]&Be)&&be<26;++be,Be<<=1);if(be>0)for(A.iushrn(be);be-- >0;)(r.isOdd()||_.isOdd())&&(r.iadd(I),_.isub(B)),r.iushrn(1),_.iushrn(1);b.cmp(A)>=0?(b.isub(A),k.isub(r),x.isub(_)):(A.isub(b),r.isub(k),_.isub(x))}return{a:r,b:_,gcd:A.iushln(W)}},c.prototype._invmp=function(h){p(0===h.negative),p(!h.isZero());var re,b=this,A=h.clone();b=0!==b.negative?b.umod(h):b.clone();for(var k=new c(1),x=new c(0),r=A.clone();b.cmpn(1)>0&&A.cmpn(1)>0;){for(var _=0,W=1;0===(b.words[0]&W)&&_<26;++_,W<<=1);if(_>0)for(b.iushrn(_);_-- >0;)k.isOdd()&&k.iadd(r),k.iushrn(1);for(var I=0,B=1;0===(A.words[0]&B)&&I<26;++I,B<<=1);if(I>0)for(A.iushrn(I);I-- >0;)x.isOdd()&&x.iadd(r),x.iushrn(1);b.cmp(A)>=0?(b.isub(A),k.isub(x)):(A.isub(b),x.isub(k))}return(re=0===b.cmpn(1)?k:x).cmpn(0)<0&&re.iadd(h),re},c.prototype.gcd=function(h){if(this.isZero())return h.abs();if(h.isZero())return this.abs();var b=this.clone(),A=h.clone();b.negative=0,A.negative=0;for(var k=0;b.isEven()&&A.isEven();k++)b.iushrn(1),A.iushrn(1);for(;;){for(;b.isEven();)b.iushrn(1);for(;A.isEven();)A.iushrn(1);var x=b.cmp(A);if(x<0){var r=b;b=A,A=r}else if(0===x||0===A.cmpn(1))break;b.isub(A)}return A.iushln(k)},c.prototype.invm=function(h){return this.egcd(h).a.umod(h)},c.prototype.isEven=function(){return!(1&this.words[0])},c.prototype.isOdd=function(){return!(1&~this.words[0])},c.prototype.andln=function(h){return this.words[0]&h},c.prototype.bincn=function(h){p("number"==typeof h);var b=h%26,A=(h-b)/26,k=1<>>26,this.words[r]=_&=67108863}return 0!==x&&(this.words[r]=x,this.length++),this},c.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},c.prototype.cmpn=function(h){var A,b=h<0;if(0!==this.negative&&!b)return-1;if(0===this.negative&&b)return 1;if(this._strip(),this.length>1)A=1;else{b&&(h=-h),p(h<=67108863,"Number is too big");var k=0|this.words[0];A=k===h?0:kh.length)return 1;if(this.length=0;A--){var k=0|this.words[A],x=0|h.words[A];if(k!==x){kx&&(b=1);break}}return b},c.prototype.gtn=function(h){return 1===this.cmpn(h)},c.prototype.gt=function(h){return 1===this.cmp(h)},c.prototype.gten=function(h){return this.cmpn(h)>=0},c.prototype.gte=function(h){return this.cmp(h)>=0},c.prototype.ltn=function(h){return-1===this.cmpn(h)},c.prototype.lt=function(h){return-1===this.cmp(h)},c.prototype.lten=function(h){return this.cmpn(h)<=0},c.prototype.lte=function(h){return this.cmp(h)<=0},c.prototype.eqn=function(h){return 0===this.cmpn(h)},c.prototype.eq=function(h){return 0===this.cmp(h)},c.red=function(h){return new n(h)},c.prototype.toRed=function(h){return p(!this.red,"Already a number in reduction context"),p(0===this.negative,"red works only with positives"),h.convertTo(this)._forceRed(h)},c.prototype.fromRed=function(){return p(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},c.prototype._forceRed=function(h){return this.red=h,this},c.prototype.forceRed=function(h){return p(!this.red,"Already a number in reduction context"),this._forceRed(h)},c.prototype.redAdd=function(h){return p(this.red,"redAdd works only with red numbers"),this.red.add(this,h)},c.prototype.redIAdd=function(h){return p(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,h)},c.prototype.redSub=function(h){return p(this.red,"redSub works only with red numbers"),this.red.sub(this,h)},c.prototype.redISub=function(h){return p(this.red,"redISub works only with red numbers"),this.red.isub(this,h)},c.prototype.redShl=function(h){return p(this.red,"redShl works only with red numbers"),this.red.shl(this,h)},c.prototype.redMul=function(h){return p(this.red,"redMul works only with red numbers"),this.red._verify2(this,h),this.red.mul(this,h)},c.prototype.redIMul=function(h){return p(this.red,"redMul works only with red numbers"),this.red._verify2(this,h),this.red.imul(this,h)},c.prototype.redSqr=function(){return p(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},c.prototype.redISqr=function(){return p(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},c.prototype.redSqrt=function(){return p(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},c.prototype.redInvm=function(){return p(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},c.prototype.redNeg=function(){return p(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},c.prototype.redPow=function(h){return p(this.red&&!h.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,h)};var ue={k256:null,p224:null,p192:null,p25519:null};function oe(f,h){this.name=f,this.p=new c(h,16),this.n=this.p.bitLength(),this.k=new c(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function he(){oe.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function me(){oe.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function Te(){oe.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function D(){oe.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function n(f){if("string"==typeof f){var h=c._prime(f);this.m=h.p,this.prime=h}else p(f.gtn(1),"modulus must be greater than 1"),this.m=f,this.prime=null}function o(f){n.call(this,f),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new c(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}oe.prototype._tmp=function(){var h=new c(null);return h.words=new Array(Math.ceil(this.n/13)),h},oe.prototype.ireduce=function(h){var A,b=h;do{this.split(b,this.tmp),A=(b=(b=this.imulK(b)).iadd(this.tmp)).bitLength()}while(A>this.n);var k=A0?b.isub(this.p):void 0!==b.strip?b.strip():b._strip(),b},oe.prototype.split=function(h,b){h.iushrn(this.n,0,b)},oe.prototype.imulK=function(h){return h.imul(this.k)},S(he,oe),he.prototype.split=function(h,b){for(var A=4194303,k=Math.min(h.length,9),x=0;x>>22,r=_}h.words[x-10]=r>>>=22,h.length-=0===r&&h.length>10?10:9},he.prototype.imulK=function(h){h.words[h.length]=0,h.words[h.length+1]=0,h.length+=2;for(var b=0,A=0;A>>=26,h.words[A]=x,b=k}return 0!==b&&(h.words[h.length++]=b),h},c._prime=function(h){if(ue[h])return ue[h];var b;if("k256"===h)b=new he;else if("p224"===h)b=new me;else if("p192"===h)b=new Te;else{if("p25519"!==h)throw new Error("Unknown prime "+h);b=new D}return ue[h]=b,b},n.prototype._verify1=function(h){p(0===h.negative,"red works only with positives"),p(h.red,"red works only with red numbers")},n.prototype._verify2=function(h,b){p(0===(h.negative|b.negative),"red works only with positives"),p(h.red&&h.red===b.red,"red works only with red numbers")},n.prototype.imod=function(h){return this.prime?this.prime.ireduce(h)._forceRed(this):(w(h,h.umod(this.m)._forceRed(this)),h)},n.prototype.neg=function(h){return h.isZero()?h.clone():this.m.sub(h)._forceRed(this)},n.prototype.add=function(h,b){this._verify2(h,b);var A=h.add(b);return A.cmp(this.m)>=0&&A.isub(this.m),A._forceRed(this)},n.prototype.iadd=function(h,b){this._verify2(h,b);var A=h.iadd(b);return A.cmp(this.m)>=0&&A.isub(this.m),A},n.prototype.sub=function(h,b){this._verify2(h,b);var A=h.sub(b);return A.cmpn(0)<0&&A.iadd(this.m),A._forceRed(this)},n.prototype.isub=function(h,b){this._verify2(h,b);var A=h.isub(b);return A.cmpn(0)<0&&A.iadd(this.m),A},n.prototype.shl=function(h,b){return this._verify1(h),this.imod(h.ushln(b))},n.prototype.imul=function(h,b){return this._verify2(h,b),this.imod(h.imul(b))},n.prototype.mul=function(h,b){return this._verify2(h,b),this.imod(h.mul(b))},n.prototype.isqr=function(h){return this.imul(h,h.clone())},n.prototype.sqr=function(h){return this.mul(h,h)},n.prototype.sqrt=function(h){if(h.isZero())return h.clone();var b=this.m.andln(3);if(p(b%2==1),3===b){var A=this.m.add(new c(1)).iushrn(2);return this.pow(h,A)}for(var k=this.m.subn(1),x=0;!k.isZero()&&0===k.andln(1);)x++,k.iushrn(1);p(!k.isZero());var r=new c(1).toRed(this),_=r.redNeg(),W=this.m.subn(1).iushrn(1),I=this.m.bitLength();for(I=new c(2*I*I).toRed(this);0!==this.pow(I,W).cmp(_);)I.redIAdd(_);for(var B=this.pow(I,k),re=this.pow(h,k.addn(1).iushrn(1)),pe=this.pow(h,k),be=x;0!==pe.cmp(r);){for(var Be=pe,_e=0;0!==Be.cmp(r);_e++)Be=Be.redSqr();p(_e=0;x--){for(var B=b.words[x],re=I-1;re>=0;re--){var pe=B>>re&1;r!==k[0]&&(r=this.sqr(r)),0!==pe||0!==_?(_<<=1,_|=pe,(4===++W||0===x&&0===re)&&(r=this.mul(r,k[_]),W=0,_=0)):W=0}I=26}return r},n.prototype.convertTo=function(h){var b=h.umod(this.m);return b===h?b.clone():b},n.prototype.convertFrom=function(h){var b=h.clone();return b.red=null,b},c.mont=function(h){return new o(h)},S(o,n),o.prototype.convertTo=function(h){return this.imod(h.ushln(this.shift))},o.prototype.convertFrom=function(h){var b=this.imod(h.mul(this.rinv));return b.red=null,b},o.prototype.imul=function(h,b){if(h.isZero()||b.isZero())return h.words[0]=0,h.length=1,h;var A=h.imul(b),k=A.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),x=A.isub(k).iushrn(this.shift),r=x;return x.cmp(this.m)>=0?r=x.isub(this.m):x.cmpn(0)<0&&(r=x.iadd(this.m)),r._forceRed(this)},o.prototype.mul=function(h,b){if(h.isZero()||b.isZero())return new c(0)._forceRed(this);var A=h.mul(b),k=A.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),x=A.isub(k).iushrn(this.shift),r=x;return x.cmp(this.m)>=0?r=x.isub(this.m):x.cmpn(0)<0&&(r=x.iadd(this.m)),r._forceRed(this)},o.prototype.invm=function(h){return this.imod(h._invmp(this.m).mul(this.r2))._forceRed(this)}}(Ae=l.nmd(Ae),this)},983:(Ae,ee,l)=>{"use strict";l.d(ee,{w:()=>t});const t=new(l(71985).c)(c=>c.complete())},1001:(Ae,ee,l)=>{"use strict";l.d(ee,{C:()=>t,q:()=>p});var i=l(11514);const t=[(0,i.hZ)("opacityAnimation",[(0,i.kY)(":enter",[(0,i.iF)({opacity:0}),(0,i.i0)("1000ms ease-in",(0,i.iF)({opacity:1}))]),(0,i.kY)(":leave",[(0,i.i0)("0ms",(0,i.iF)({opacity:0}))])])],p=[(0,i.hZ)("fadeIn",[(0,i.kY)("void => *",[]),(0,i.kY)("* => void",[]),(0,i.kY)("* => *",[(0,i.i0)(800,(0,i.i7)([(0,i.iF)({opacity:0,transform:"translateY(100%)"}),(0,i.iF)({opacity:1,transform:"translateY(0%)"})]))])])]},1018:(Ae,ee,l)=>{const i=l(91677),t=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"," ","$","%","*","+","-",".","/",":"];function p(S){this.mode=i.ALPHANUMERIC,this.data=S}p.getBitsLength=function(c){return 11*Math.floor(c/2)+c%2*6},p.prototype.getLength=function(){return this.data.length},p.prototype.getBitsLength=function(){return p.getBitsLength(this.data.length)},p.prototype.write=function(c){let e;for(e=0;e+2<=this.data.length;e+=2){let T=45*t.indexOf(this.data[e]);T+=t.indexOf(this.data[e+1]),c.put(T,11)}this.data.length%2&&c.put(t.indexOf(this.data[e]),6)},Ae.exports=p},1030:(Ae,ee,l)=>{"use strict";var i=Object.keys||function(w){var m=[];for(var P in w)m.push(P);return m};Ae.exports=T;var t=l(61092),p=l(15492);l(71993)(T,t);for(var S=i(p.prototype),c=0;c{"use strict";l.d(ee,{D:()=>It});var i=l(89417),t=l(21413),p=l(56977),S=l(51585),c=l(45383),e=l(1001),T=l(4416),g=l(63536),d=l(73664),w=l(2615),m=l(59640),P=l(4104),M=l(72200),j=l(98570),U=l(43694),K=l(82571),q=l(88834),G=l(25596),Q=l(9454),$=l(12629),ae=l(33746),ue=l(69588),oe=l(67575),he=l(5951),me=l(52920),Te=l(16038),D=l(30450),n=l(40455),o=l(36013),f=l(89587),h=l(71997);const b=Tt=>({"h-5":Tt});function A(Tt,Ze){1&Tt&&d.eu8(0)}function k(Tt,Ze){1&Tt&&d.eu8(0)}function x(Tt,Ze){if(1&Tt&&(d.j41(0,"mat-expansion-panel",3)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",4),d.EFF(4),d.nI1(5,"number"),d.k0s()()(),d.DNE(6,k,1,0,"ng-container",2),d.k0s()),2&Tt){const Ve=d.XpG(),Fe=d.sdS(4);d.Y8G("expanded",Ve.panelExpanded)("ngClass",d.eq3(7,b,!Ve.flgShowPanel)),d.R7$(4),d.Lme("Quote for ",Ve.termCaption," amount (",d.bMT(5,5,Ve.quote.amount)," Sats)"),d.R7$(2),d.Y8G("ngTemplateOutlet",Fe)}}function r(Tt,Ze){if(1&Tt&&(d.j41(0,"div",19)(1,"h4",8),d.EFF(2," Prepay Amount (Sats) "),d.j41(3,"mat-icon",20),d.EFF(4,"info_outline"),d.k0s()(),d.j41(5,"span",10),d.EFF(6),d.nI1(7,"number"),d.k0s()()),2&Tt){const Ve=d.XpG(2);d.R7$(6),d.JRh(d.bMT(7,1,null==Ve.quote?null:Ve.quote.prepay_amt_sat))}}function _(Tt,Ze){1&Tt&&d.nrm(0,"mat-divider",13)}function W(Tt,Ze){if(1&Tt&&(d.j41(0,"div",6)(1,"div",21)(2,"h4",8),d.EFF(3," Swap Server Node Pubkey "),d.j41(4,"mat-icon",22),d.EFF(5,"info_outline"),d.k0s()(),d.j41(6,"span",10),d.EFF(7),d.k0s()()()),2&Tt){const Ve=d.XpG(2);d.R7$(7),d.JRh(null==Ve.quote?null:Ve.quote.swap_payment_dest)}}function I(Tt,Ze){if(1&Tt&&(d.j41(0,"div",5)(1,"div",6)(2,"div",7)(3,"h4",8),d.EFF(4," Swap Fee (Sats) "),d.j41(5,"mat-icon",9),d.EFF(6,"info_outline"),d.k0s()(),d.j41(7,"span",10),d.EFF(8),d.nI1(9,"number"),d.k0s()(),d.j41(10,"div",7)(11,"h4",8),d.EFF(12),d.j41(13,"mat-icon",11),d.EFF(14,"info_outline"),d.k0s()(),d.j41(15,"span",10),d.EFF(16),d.nI1(17,"number"),d.k0s()(),d.DNE(18,r,8,3,"div",12),d.k0s(),d.nrm(19,"mat-divider",13),d.j41(20,"div",6)(21,"div",14)(22,"h4",8),d.EFF(23," Max Off-chain Swap Routing Fee (Sats) "),d.j41(24,"mat-icon",15),d.EFF(25,"info_outline"),d.k0s()(),d.j41(26,"span",10),d.EFF(27),d.nI1(28,"number"),d.k0s()(),d.j41(29,"div",14)(30,"h4",8),d.EFF(31," Max Off-chain Prepay Routing Fee (Sats) "),d.j41(32,"mat-icon",16),d.EFF(33,"info_outline"),d.k0s()(),d.j41(34,"span",10),d.EFF(35,"36"),d.k0s()()(),d.DNE(36,_,1,0,"mat-divider",17)(37,W,8,1,"div",18),d.k0s()),2&Tt){const Ve=d.XpG();d.R7$(2),d.Y8G("ngClass",null!=Ve.quote&&Ve.quote.prepay_amt_sat?"flex-30":"flex-50"),d.R7$(6),d.JRh(d.bMT(9,9,null==Ve.quote?null:Ve.quote.swap_fee_sat)),d.R7$(2),d.Y8G("ngClass",null!=Ve.quote&&Ve.quote.prepay_amt_sat?"flex-35":"flex-50"),d.R7$(2),d.SpI(" ",null!=Ve.quote&&Ve.quote.htlc_sweep_fee_sat?"HTLC Sweep Fee (Sats)":null!=Ve.quote&&Ve.quote.htlc_publish_fee_sat?"HTLC Publish Fee (Sats)":""," "),d.R7$(4),d.JRh(d.bMT(17,11,null!=Ve.quote&&Ve.quote.htlc_sweep_fee_sat?Ve.quote.htlc_sweep_fee_sat:null!=Ve.quote&&Ve.quote.htlc_publish_fee_sat?Ve.quote.htlc_publish_fee_sat:0)),d.R7$(2),d.Y8G("ngIf",null==Ve.quote?null:Ve.quote.prepay_amt_sat),d.R7$(9),d.JRh(d.bMT(28,13,(null==Ve.quote?null:Ve.quote.amount)*((null!=Ve.quote&&Ve.quote.off_chain_swap_routing_fee_percentage?null==Ve.quote?null:Ve.quote.off_chain_swap_routing_fee_percentage:2)/100))),d.R7$(9),d.Y8G("ngIf",""!==(null==Ve.quote?null:Ve.quote.swap_payment_dest)),d.R7$(),d.Y8G("ngIf",""!==(null==Ve.quote?null:Ve.quote.swap_payment_dest))}}let B=(()=>{var Tt;class Ze{constructor(){this.quote={},this.termCaption="",this.showPanel=!0,this.panelExpanded=!1,this.flgShowPanel=!1}ngOnInit(){setTimeout(()=>{this.flgShowPanel=!0},1200)}static#e=Tt=()=>(this.\u0275fac=function(it){return new(it||Ze)},this.\u0275cmp=d.VBU({type:Ze,selectors:[["rtl-loop-quote"]],inputs:{quote:"quote",termCaption:"termCaption",showPanel:"showPanel",panelExpanded:"panelExpanded"},standalone:!1,decls:5,vars:1,consts:[["informationBlock",""],["quoteDetailsBlock",""],[4,"ngTemplateOutlet"],["fxFlex","100",1,"flat-expansion-panel","mb-1",3,"expanded","ngClass"],["fxLayoutAlign","start center","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],[3,"ngClass"],["fxLayoutAlign","start center",1,"font-bold-500"],["matTooltip","Estimated fee charged by the loop server for the swap",1,"info-icon","info-icon-text"],[1,"foreground-secondary-text"],["matTooltip","An estimate of the on-chain fee that needs to be paid to sweep the HTLC",1,"info-icon","info-icon-text"],["fxFlex","35",4,"ngIf"],[1,"w-100","my-1"],["fxFlex","50"],["matTooltip","Maximum off-chain fee that may be paid for routing the payment amount to the server",1,"info-icon","info-icon-text"],["matTooltip","Maximum off-chain fee that may be paid for routing the pre-payment amount to the server","matTooltipPosition","before",1,"info-icon","info-icon-text"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxFlex","35"],["matTooltip","The part of the swap fee that is requested as a prepayment","matTooltipPosition","before",1,"info-icon","info-icon-text"],["fxFlex","100"],["matTooltip","The node pubkey, where the swap payments will be sent",1,"info-icon","info-icon-text"]],template:function(it,bt){if(1&it&&d.DNE(0,A,1,0,"ng-container",2)(1,x,7,9,"ng-template",null,0,d.C5r)(3,I,38,15,"ng-template",null,1,d.C5r),2&it){const ut=d.sdS(2),jt=d.sdS(4);d.Y8G("ngTemplateOutlet",bt.showPanel?ut:jt)}},dependencies:[M.YU,M.bT,M.T3,Q.GK,Q.Z2,Q.WN,$.An,h.q,me.DJ,me.sA,me.UI,Te.PW,n.oV,M.QX],encapsulation:2}))}return Tt(),Ze})();function re(Tt,Ze){1&Tt&&d.eu8(0)}function pe(Tt,Ze){if(1&Tt&&(d.j41(0,"div",3)(1,"span",4),d.EFF(2),d.k0s()()),2&Tt){const Ve=d.XpG();d.R7$(2),d.JRh(null!=Ve.loopStatus&&Ve.loopStatus.error?null==Ve.loopStatus?null:Ve.loopStatus.error:"Unknown Error.")}}function be(Tt,Ze){if(1&Tt&&(d.j41(0,"div",3)(1,"div",5)(2,"div",6)(3,"h4",7),d.EFF(4,"ID"),d.k0s(),d.j41(5,"span",4),d.EFF(6),d.k0s()()(),d.nrm(7,"mat-divider",8),d.j41(8,"div",5)(9,"div",6)(10,"h4",7),d.EFF(11,"HTLC Address"),d.k0s(),d.j41(12,"span",4),d.EFF(13),d.k0s()()()()),2&Tt){const Ve=d.XpG();d.R7$(6),d.JRh(null==Ve.loopStatus?null:Ve.loopStatus.id_bytes),d.R7$(7),d.JRh(null==Ve.loopStatus?null:Ve.loopStatus.htlc_address)}}let Be=(()=>{var Tt;class Ze{constructor(){}static#e=Tt=()=>(this.\u0275fac=function(it){return new(it||Ze)},this.\u0275cmp=d.VBU({type:Ze,selectors:[["rtl-loop-status"]],inputs:{loopStatus:"loopStatus"},standalone:!1,decls:5,vars:1,consts:[["loopFailedBlock",""],["loopSuccessfulBlock",""],[4,"ngTemplateOutlet"],["fxLayout","column"],[1,"foreground-secondary-text"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"]],template:function(it,bt){if(1&it&&d.DNE(0,re,1,0,"ng-container",2)(1,pe,3,1,"ng-template",null,0,d.C5r)(3,be,14,2,"ng-template",null,1,d.C5r),2&it){const ut=d.sdS(2),jt=d.sdS(4);d.Y8G("ngTemplateOutlet",null!=bt.loopStatus&&bt.loopStatus.error?ut:jt)}},dependencies:[M.T3,h.q,me.DJ,me.sA,me.UI],encapsulation:2}))}return Tt(),Ze})();var _e=l(16949);const ye=(Tt,Ze)=>({"small-svg":Tt,"large-svg":Ze});function Le(Tt,Ze){1&Tt&&d.eu8(0)}function Ke(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(it){w.eBV(Ve);const bt=d.XpG();return w.Njj(bt.onSwipe(it))}),w.qSk(),d.j41(1,"svg",7)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),d.nrm(8,"circle",12)(9,"path",13),d.k0s(),d.j41(10,"g",14),d.nrm(11,"ellipse",15)(12,"ellipse",16)(13,"rect",17)(14,"rect",18)(15,"rect",19)(16,"rect",20)(17,"rect",21)(18,"rect",22)(19,"rect",23)(20,"rect",24)(21,"rect",25)(22,"rect",26)(23,"rect",27)(24,"rect",28)(25,"rect",29),d.k0s()()()()(),w.joV(),d.j41(26,"div",30)(27,"mat-card-title"),d.EFF(28,"Loop In explained."),d.k0s()(),d.j41(29,"div",31)(30,"mat-card-subtitle",32),d.EFF(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),d.k0s()()()}if(2&Tt){const Ve=d.XpG();d.Y8G("@sliderAnimation",Ve.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,ye,Ve.screenSize===Ve.screenSizeEnum.XS,Ve.screenSize!==Ve.screenSizeEnum.XS))}}function ge(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(it){w.eBV(Ve);const bt=d.XpG();return w.Njj(bt.onSwipe(it))}),w.qSk(),d.j41(1,"svg",33)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",34),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40),d.nrm(13,"rect",41)(14,"rect",42)(15,"rect",43)(16,"circle",44)(17,"rect",45)(18,"rect",46)(19,"circle",47)(20,"rect",48)(21,"rect",49)(22,"rect",50)(23,"rect",51)(24,"rect",52)(25,"circle",53)(26,"circle",54)(27,"circle",55),d.k0s(),d.j41(28,"g",56)(29,"g",57)(30,"g",58),d.nrm(31,"path",59)(32,"rect",60)(33,"polygon",61),d.j41(34,"g",62),d.nrm(35,"path",63),d.k0s(),d.nrm(36,"rect",64)(37,"rect",65)(38,"rect",66)(39,"rect",67)(40,"rect",68)(41,"rect",69)(42,"rect",70)(43,"path",71)(44,"path",72),d.k0s(),d.j41(45,"g",73),d.nrm(46,"path",74)(47,"path",75)(48,"path",76)(49,"path",77)(50,"path",78)(51,"path",79)(52,"path",80)(53,"path",81)(54,"path",82)(55,"path",83)(56,"path",84)(57,"circle",85)(58,"circle",86),d.k0s(),d.nrm(59,"path",87),d.k0s()()()()()(),w.joV(),d.j41(60,"div",30)(61,"mat-card-title"),d.EFF(62,"Step 1: Deciding to Loop In"),d.k0s()(),d.j41(63,"div",31)(64,"mat-card-subtitle",32),d.EFF(65," Your outgoing capacity is depleted and you want to regain it without opening new channels. "),d.k0s()()()}if(2&Tt){const Ve=d.XpG();d.Y8G("@sliderAnimation",Ve.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,ye,Ve.screenSize===Ve.screenSizeEnum.XS,Ve.screenSize!==Ve.screenSizeEnum.XS))}}function ve(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(it){w.eBV(Ve);const bt=d.XpG();return w.Njj(bt.onSwipe(it))}),w.qSk(),d.j41(1,"svg",88)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",89),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",90)(10,"g",91)(11,"g",92)(12,"g",93)(13,"g",94),d.nrm(14,"circle",95)(15,"path",96),d.j41(16,"g",97),d.nrm(17,"polygon",98)(18,"polygon",99)(19,"path",100),d.k0s(),d.j41(20,"g",101),d.nrm(21,"polygon",102)(22,"path",103)(23,"rect",104)(24,"path",105)(25,"rect",106)(26,"rect",107)(27,"rect",108)(28,"rect",109)(29,"circle",110)(30,"path",111),d.j41(31,"g",112)(32,"g",113),d.nrm(33,"g",114),d.k0s(),d.nrm(34,"g",115),d.k0s()()(),d.j41(35,"g",116)(36,"g",40),d.nrm(37,"rect",117)(38,"rect",42)(39,"rect",43)(40,"circle",118)(41,"rect",45)(42,"rect",46)(43,"circle",119)(44,"rect",48)(45,"rect",49)(46,"rect",50)(47,"rect",51)(48,"rect",52)(49,"circle",120)(50,"circle",54)(51,"circle",55)(52,"circle",121),d.k0s(),d.j41(53,"g",56)(54,"g",57)(55,"g",58),d.nrm(56,"path",59)(57,"rect",60)(58,"polygon",61),d.j41(59,"g",122),d.nrm(60,"path",63),d.k0s(),d.nrm(61,"rect",123)(62,"rect",124)(63,"rect",125)(64,"rect",126)(65,"rect",127)(66,"rect",128)(67,"rect",129)(68,"path",130)(69,"path",72),d.k0s(),d.j41(70,"g",73),d.nrm(71,"path",131)(72,"path",132)(73,"path",133)(74,"path",134)(75,"path",135)(76,"path",136)(77,"path",80)(78,"path",81)(79,"path",137)(80,"path",83)(81,"path",138)(82,"circle",85)(83,"circle",86),d.k0s(),d.nrm(84,"path",139),d.k0s()()()(),d.nrm(85,"path",140)(86,"path",141),d.k0s()()()(),w.joV(),d.j41(87,"div",30)(88,"mat-card-title"),d.EFF(89,"Step 2: Send payment out"),d.k0s()(),d.j41(90,"div",31)(91,"mat-card-subtitle",32),d.EFF(92," Your node sends funds on-chain to loop server to be swapped with off-chain liquidity. "),d.k0s()()()}if(2&Tt){const Ve=d.XpG();d.Y8G("@sliderAnimation",Ve.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,ye,Ve.screenSize===Ve.screenSizeEnum.XS,Ve.screenSize!==Ve.screenSizeEnum.XS))}}function Oe(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(it){w.eBV(Ve);const bt=d.XpG();return w.Njj(bt.onSwipe(it))}),w.qSk(),d.j41(1,"svg",142)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"g",90)(5,"g",143)(6,"g",144)(7,"g")(8,"g",145)(9,"g",146),d.nrm(10,"circle",12)(11,"path",147),d.k0s(),d.j41(12,"g",14),d.nrm(13,"ellipse",148)(14,"ellipse",16)(15,"rect",17)(16,"rect",18)(17,"rect",19)(18,"rect",20)(19,"rect",21)(20,"rect",22)(21,"rect",23)(22,"rect",24)(23,"rect",25)(24,"rect",26)(25,"rect",27)(26,"rect",28)(27,"rect",29),d.k0s()(),d.j41(28,"g",149),d.nrm(29,"polygon",150)(30,"polygon",99)(31,"path",151),d.k0s(),d.j41(32,"g",152),d.nrm(33,"polygon",102)(34,"path",103)(35,"rect",104)(36,"path",105)(37,"rect",106)(38,"rect",107)(39,"rect",108)(40,"rect",109)(41,"circle",110)(42,"path",111),d.j41(43,"g",112)(44,"g",113),d.nrm(45,"g",114),d.k0s(),d.nrm(46,"g",115),d.k0s()()(),d.nrm(47,"path",153),d.k0s()()()(),w.joV(),d.j41(48,"div",30)(49,"mat-card-title"),d.EFF(50,"Step 3: Recieve Funds Off-chain"),d.k0s()(),d.j41(51,"div",31)(52,"mat-card-subtitle",32),d.EFF(53," Loop server sends equivalent funds off-chain to your node by making a lightning payment to you. "),d.k0s()()()}if(2&Tt){const Ve=d.XpG();d.Y8G("@sliderAnimation",Ve.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,ye,Ve.screenSize===Ve.screenSizeEnum.XS,Ve.screenSize!==Ve.screenSizeEnum.XS))}}function Ee(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(it){w.eBV(Ve);const bt=d.XpG();return w.Njj(bt.onSwipe(it))}),w.qSk(),d.j41(1,"svg",154)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",34),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",90)(10,"g",155)(11,"g",156)(12,"g",157)(13,"g",158)(14,"g",40),d.nrm(15,"rect",159)(16,"rect",160)(17,"rect",161)(18,"circle",162)(19,"rect",163)(20,"rect",164)(21,"circle",165)(22,"rect",166)(23,"rect",167)(24,"rect",168)(25,"rect",169)(26,"circle",170)(27,"circle",171),d.k0s(),d.j41(28,"g",172),d.nrm(29,"path",173)(30,"rect",174)(31,"polygon",175)(32,"circle",176)(33,"path",177)(34,"rect",178)(35,"rect",179)(36,"rect",180)(37,"rect",181)(38,"rect",182)(39,"rect",183)(40,"rect",184)(41,"path",185)(42,"path",186),d.k0s(),d.nrm(43,"path",187),d.k0s()(),d.nrm(44,"circle",188),d.k0s()()()(),w.joV(),d.j41(45,"div",30)(46,"mat-card-title"),d.EFF(47,"Done!"),d.k0s()(),d.j41(48,"div",31)(49,"mat-card-subtitle",32),d.EFF(50," You send the payment on-chain from your wallet and also move remote balance to the local side of the node, gaining outgoing capacity. "),d.k0s()()()}if(2&Tt){const Ve=d.XpG();d.Y8G("@sliderAnimation",Ve.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,ye,Ve.screenSize===Ve.screenSizeEnum.XS,Ve.screenSize!==Ve.screenSizeEnum.XS))}}let dt=(()=>{var Tt;class Ze{constructor(Fe){this.commonService=Fe,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new d.bkB,this.screenSize="",this.screenSizeEnum=T.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(Fe){2===Fe.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===Fe.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=Tt=()=>(this.\u0275fac=function(it){return new(it||Ze)(d.rXU(K.h))},this.\u0275cmp=d.VBU({type:Ze,selectors:[["rtl-loop-in-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["loopStepBlock1",""],["loopStepBlock2",""],["loopStepBlock3",""],["loopStepBlock4",""],["loopStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 108 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","Loopv0.2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopIn_Step01","transform","translate(-594.000000, -215.000000)","fill-rule","nonzero"],["id","Loop_Step01","transform","translate(594.000000, 215.000000)"],["id","Group-16","transform","translate(23.000000, 0.000000)"],["id","Oval","cx","42.4877419","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M56.0827415,28.5000036 C60.4468211,28.5000036 63.9999285,25.1343958 63.9999285,21.0000215 C63.9999285,16.8656472 60.4468211,13.5000393 56.0827415,13.5000393 C52.9843297,13.5000393 50.5608889,15.4359631 48.9999642,17.1843872 C47.4390396,15.4359631 45.0155987,13.5000393 41.9171869,13.5000393 C37.5531074,13.5000393 34,16.8656472 34,21.0000215 C34,25.1343958 37.5531074,28.5000036 41.9171869,28.5000036 C45.0155987,28.5000036 47.4390396,26.5640798 48.9999642,24.8156557 C50.5608889,26.5640798 52.9843297,28.5000036 56.0827415,28.5000036 Z M41.9171869,24.0000143 C40.0328073,24.0000143 38.4999893,22.6546959 38.4999893,21.0000286 C38.4999893,19.3453471 40.0328073,18.0000286 41.9171869,18.0000286 C43.707771,18.0000286 45.3577763,19.6921938 46.3234264,21.0000286 C45.3671604,22.2937501 43.7031019,24.0000143 41.9171869,24.0000143 Z M56.0827415,24.0000143 C54.2921574,24.0000143 52.6421522,22.3078492 51.676502,21.0000286 C52.6327681,19.7062929 54.2968266,18.0000286 56.0827415,18.0000286 C57.9671212,18.0000286 59.4999392,19.3453471 59.4999392,21.0000286 C59.4999392,22.6546959 57.9671212,24.0000143 56.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Group-21","transform","translate(0.000000, 36.000000)"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-7"],["id","Oval","opacity","0.1","cx","48.644129","cy","75.1589677","rx","40.8402581","ry","5.55600756",1,"fill-color-27"],["id","Rectangle","x","25.2325161","y","6.09470968","width","54.1068387","height","62.9512258",1,"fill-color-26"],["id","Rectangle","x","20","y","1.24344979e-14","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","20","y","26","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","19.7698065","y","52.9179355","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","67.6335484","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","viewBox","0 0 200 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","0%","id","linearGradient-1"],["stop-color","#808080","stop-opacity","0.25","offset","0%"],["stop-color","#808080","stop-opacity","0.12","offset","54%"],["stop-color","#808080","stop-opacity","0.1","offset","100%"],["id","LoopIn_Step02","transform","translate(-542.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step02","transform","translate(542.000000, 210.000000)"],["id","Group-2"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-11"],["id","Rectangle","x","1.34483737","y","60.660286","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","67.352783","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","31.345208","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","38.0377051","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","2.03013005","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","8.72460769","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Rectangle","x","7.80560248","y","67.352783","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","38.0377051","width","33.2298507","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","8.72460769","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.93434243",1,"fill-color-31"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","45.3719212","r","7.93434243"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","74.6850186","r","7.93434243"],["id","Group-16","transform","translate(55.804478, 34.674627)"],["id","Group-29","transform","translate(0.310627, 0.751284)"],["id","Group"],["d","M132.777455,1.04124409 L82.2582659,1.04124409 L82.2582659,0 L59.3509036,0 L59.3509036,1.04124409 L8.62346042,1.04124409 C7.71715136,1.04124358 6.84796221,1.40127322 6.20710493,2.0421305 C5.56624765,2.68298778 5.20621852,3.55217693 5.20621852,4.45848599 L5.20621852,73.6347918 C5.20621852,74.5411031 5.56624437,75.4102953 6.2071016,76.0511558 C6.84795882,76.6920163 7.71714912,77.0520512 8.62346042,77.0520512 L132.777455,77.0520512 C134.664749,77.0520512 136.194697,75.522091 136.194697,73.6347977 L136.194697,4.45848599 C136.194697,3.55217693 135.834668,2.68298778 135.193811,2.0421305 C134.552953,1.40127322 133.683764,1.04124358 132.777455,1.04124409 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.78769098","y","7.08045867","width","121.825532","height","68.7220946",1,"fill-color-7"],["id","Path","opacity","0.306775484","points","96.7732181 75.8025901 9.78772787 75.8025901 9.78772787 7.08050333",1,"fill-color-27"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary-darker"],["d","M14.5668332,29.1332406 C8.67527117,29.1332406 3.36383033,25.5842492 1.10922733,20.1411555 C-1.14537566,14.6980619 0.100864684,8.43279022 4.26682842,4.26682704 C8.43279215,0.100863866 14.698064,-1.14537564 20.1411573,1.10922807 C25.5842507,3.36383179 29.1332406,8.67527311 29.1332406,14.5668351 C29.124133,22.607864 22.6078621,29.1241341 14.5668332,29.1332406 L14.5668332,29.1332406 Z M14.5668332,0.190838576 C6.62718953,0.190838576 0.190836635,6.62719147 0.190836635,14.5668351 C0.190836635,22.5064788 6.62718953,28.9428317 14.5668332,28.9428317 C22.5064768,28.9428317 28.9428297,22.5064788 28.9428297,14.5668351 C28.9338602,6.63090975 22.5027586,0.199808125 14.5668332,0.190838576 L14.5668332,0.190838576 Z","id","Shape"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-5"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-19"],["d","M139.615294,74.5530572 L127.725913,74.5530572 L127.725913,73.6964356 C127.725915,73.6513884 127.708021,73.6081857 127.676168,73.5763323 C127.644315,73.544479 127.601113,73.5265862 127.556065,73.5265862 L123.479706,73.5265862 C123.434659,73.5265862 123.391457,73.5444797 123.359604,73.5763329 C123.327751,73.6081861 123.309857,73.6513886 123.309859,73.6964356 L123.309859,74.5530572 L120.762134,74.5530572 L120.762134,73.6964356 C120.762135,73.6513886 120.744241,73.6081861 120.712388,73.5763329 C120.680536,73.5444797 120.637333,73.5265862 120.592286,73.5265862 L116.515927,73.5265862 C116.47088,73.5265862 116.427677,73.5444789 116.395824,73.5763322 C116.36397,73.6081855 116.346076,73.6513882 116.346078,73.6964356 L116.346078,74.5530572 L113.798355,74.5530572 L113.798355,73.6964356 C113.798356,73.6513882 113.780462,73.6081855 113.748609,73.5763322 C113.716755,73.5444789 113.673553,73.5265862 113.628505,73.5265862 L109.552146,73.5265862 C109.507099,73.5265862 109.463897,73.5444797 109.432044,73.5763329 C109.400191,73.6081861 109.382297,73.6513886 109.382299,73.6964356 L109.382299,74.5530572 L106.834574,74.5530572 L106.834574,73.6964356 C106.834575,73.6513886 106.816681,73.6081861 106.784828,73.5763329 C106.752975,73.5444797 106.709773,73.5265862 106.664726,73.5265862 L102.588363,73.5265862 C102.543316,73.5265862 102.500113,73.544479 102.46826,73.5763323 C102.436407,73.6081857 102.418513,73.6513884 102.418516,73.6964356 L102.418516,74.5530572 L99.8707946,74.5530572 L99.8707946,73.6964356 C99.8707961,73.6513882 99.8529018,73.6081855 99.8210486,73.5763322 C99.7891953,73.5444789 99.7459925,73.5265862 99.7009452,73.5265862 L95.6245878,73.5265862 C95.5795404,73.5265862 95.5363377,73.5444789 95.5044844,73.5763322 C95.4726311,73.6081855 95.4547369,73.6513882 95.4547384,73.6964356 L95.4547384,74.5530572 L92.9070135,74.5530572 L92.9070135,73.6964356 C92.9070151,73.6513886 92.889121,73.6081861 92.8572682,73.5763329 C92.8254153,73.5444797 92.7822131,73.5265862 92.7371661,73.5265862 L88.6608067,73.5265862 C88.6157597,73.5265862 88.5725575,73.5444797 88.5407046,73.5763329 C88.5088518,73.6081861 88.4909577,73.6513886 88.4909593,73.6964356 L88.4909593,74.5530572 L85.9432383,74.5530572 L85.9432383,73.6964356 C85.9432399,73.6513886 85.9253458,73.6081861 85.893493,73.5763329 C85.8616401,73.5444797 85.8184379,73.5265862 85.7733909,73.5265862 L53.8419073,73.5265862 C53.7968603,73.5265862 53.7536581,73.5444797 53.7218052,73.5763329 C53.6899524,73.6081861 53.6720584,73.6513886 53.6720599,73.6964356 L53.6720599,74.5530572 L51.124335,74.5530572 L51.124335,73.6964356 C51.1243366,73.6513882 51.1064423,73.6081855 51.074589,73.5763322 C51.0427358,73.5444789 50.999533,73.5265862 50.9544857,73.5265862 L46.8781379,73.5265862 C46.8330906,73.5265862 46.7898879,73.5444789 46.7580346,73.5763322 C46.7261813,73.6081855 46.708287,73.6513882 46.7082886,73.6964356 L46.7082886,74.5530572 L44.160554,74.5530572 L44.160554,73.6964356 C44.1605561,73.6513884 44.1426622,73.6081857 44.1108092,73.5763323 C44.0789563,73.544479 44.0357537,73.5265862 43.9907066,73.5265862 L39.9143472,73.5265862 C39.8693002,73.5265862 39.8260979,73.5444797 39.7942451,73.5763329 C39.7623922,73.6081861 39.7444982,73.6513886 39.7444998,73.6964356 L39.7444998,74.5530572 L37.1967749,74.5530572 L37.1967749,73.6964356 C37.1967764,73.6513886 37.1788824,73.6081861 37.1470296,73.5763329 C37.1151767,73.5444797 37.0719745,73.5265862 37.0269275,73.5265862 L32.9505681,73.5265862 C32.9055208,73.5265862 32.862318,73.5444789 32.8304647,73.5763322 C32.7986115,73.6081855 32.7807172,73.6513882 32.7807187,73.6964356 L32.7807187,74.5530572 L30.2329958,74.5530572 L30.2329958,73.6964356 C30.2329973,73.6513882 30.215103,73.6081855 30.1832498,73.5763322 C30.1513965,73.5444789 30.1081938,73.5265862 30.0631464,73.5265862 L25.986787,73.5265862 C25.94174,73.5265862 25.8985378,73.5444797 25.866685,73.5763329 C25.8348321,73.6081861 25.8169381,73.6513886 25.8169396,73.6964356 L25.8169396,74.5530572 L23.2692109,74.5530572 L23.2692109,73.6964356 C23.2692124,73.6513886 23.2513184,73.6081861 23.2194655,73.5763329 C23.1876127,73.5444797 23.1444104,73.5265862 23.0993634,73.5265862 L19.0230079,73.5265862 C18.9779608,73.5265862 18.9347582,73.544479 18.9029053,73.5763323 C18.8710523,73.6081857 18.8531585,73.6513884 18.8531605,73.6964356 L18.8531605,74.5530572 L16.3054357,74.5530572 L16.3054357,73.6964356 C16.3054372,73.6513882 16.2875429,73.6081855 16.2556896,73.5763322 C16.2238364,73.5444789 16.1806336,73.5265862 16.1355863,73.5265862 L12.0592288,73.5265862 C12.0141815,73.5265862 11.9709788,73.5444789 11.9391255,73.5763322 C11.9072722,73.6081855 11.8893779,73.6513882 11.8893795,73.6964356 L11.8893795,74.5530572 L4.07635746,74.5530572 C1.82504753,74.5530594 0,76.3781067 0,78.6294166 L0,80.4726504 C0,82.7239563 1.82505163,84.5489982 4.07635746,84.5489982 L139.615294,84.5489982 C141.8666,84.5489982 143.691654,82.7239566 143.691654,80.4726504 L143.691654,78.6294166 C143.691654,76.3781064 141.866605,74.5530594 139.615294,74.5530572 Z","id","Path",1,"fill-color-20"],["id","Group","transform","translate(14.563343, 25.890388)"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary-darker"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M54.316416,4.55250111 L54.316416,3.34665629 C54.316416,1.49819202 52.8172532,0 50.9687888,0 L3.34762718,0 C1.49916283,0 0,1.49819202 0,3.34665629 L0,5.56999336 L54.316416,4.55250111 Z","id","Path",1,"fill-color-16"],["d","M55.6018738,5.73601547 L55.6018738,39.231705 C55.6018738,39.9999836 55.2966099,40.7367813 54.7532639,41.2799452 C54.2099179,41.8231092 53.4730179,42.1278687 52.7047393,42.1278687 L2.89810531,42.1278687 C1.29897753,42.1273325 0.00291266866,40.8308329 0.00291266866,39.231705 L0.00291266866,2.35926161 C1.43012031,2.88936731 1.43012031,2.88936731 2.89810531,2.84470639 L52.7047393,2.84470639 C54.3025103,2.84470316 55.5986611,4.13824772 55.6018738,5.73601547 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-19"],["d","M55.4601239,18.5459322 L55.4601239,29.2577567 L45.0716057,29.2577567 C42.141738,29.2183086 39.7873207,26.8319777 39.7873207,23.9018444 C39.7873207,20.9717112 42.141738,18.5853803 45.0716057,18.5459322 L55.4601239,18.5459322 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-17"],["id","Oval","opacity","0.1","cx","45.7114219","cy","23.9023299","r","2.08838343",1,"fill-color-27"],["id","Oval","cx","45.8531718","cy","23.6188301","r","2.08838343",1,"fill-color-28"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-30"],["fxFlex","30","viewBox","0 0 364 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","8.86848147e-15%","id","linearGradient-1"],["id","Loopv0.3","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopIn_Step03","transform","translate(-1127.000000, -164.000000)"],["id","LoopIn_Step03","transform","translate(1127.000000, 164.000000)"],["id","Group-21"],["id","Group-35","transform","translate(107.000000, 10.000000)"],["id","Oval","fill-rule","nonzero","cx","214.487742","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M232.082742,28.5000036 C236.446821,28.5000036 239.999928,25.1343958 239.999928,21.0000215 C239.999928,16.8656472 236.446821,13.5000393 232.082742,13.5000393 C228.98433,13.5000393 226.560889,15.4359631 224.999964,17.1843872 C223.43904,15.4359631 221.015599,13.5000393 217.917187,13.5000393 C213.553107,13.5000393 210,16.8656472 210,21.0000215 C210,25.1343958 213.553107,28.5000036 217.917187,28.5000036 C221.015599,28.5000036 223.43904,26.5640798 224.999964,24.8156557 C226.560889,26.5640798 228.98433,28.5000036 232.082742,28.5000036 Z M217.917187,24.0000143 C216.032807,24.0000143 214.499989,22.6546959 214.499989,21.0000286 C214.499989,19.3453471 216.032807,18.0000286 217.917187,18.0000286 C219.707771,18.0000286 221.357776,19.6921938 222.323426,21.0000286 C221.36716,22.2937501 219.703102,24.0000143 217.917187,24.0000143 Z M232.082742,24.0000143 C230.292157,24.0000143 228.642152,22.3078492 227.676502,21.0000286 C228.632768,19.7062929 230.296827,18.0000286 232.082742,18.0000286 C233.967121,18.0000286 235.499939,19.3453471 235.499939,21.0000286 C235.499939,22.6546959 233.967121,24.0000143 232.082742,24.0000143 Z","id","i","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-44","transform","translate(0.000000, 64.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-20"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-23"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-20"],["id","Group-43","transform","translate(152.000000, 35.000000)"],["id","Path","fill-rule","nonzero","points","-9.84073267e-14 7.36243469 92.3919279 7.36243469 92.3919279 70.3073253 -1.13686838e-13 70.3073253",1,"fill-color-23"],["d","M97.5448374,1.70530257e-13 L6.62592538,1.70530257e-13 C6.01615907,0.000922175294 5.52114394,0.495001701 5.52114394,1.104768 L5.52114394,62.57664 C5.52114394,62.8696481 5.63752746,63.150658 5.84471672,63.3578447 C6.05190598,63.5650315 6.3329173,63.681408 6.62592538,63.681408 L97.5448374,63.681408 C97.8378436,63.681408 98.1188523,63.5650282 98.3260389,63.3578415 C98.5332256,63.1506549 98.6496054,62.8696462 98.6496054,62.57664 L98.6496054,1.104768 C98.6496054,0.495005713 98.1545997,0.000926622272 97.5448374,1.70530257e-13 L97.5448374,1.70530257e-13 Z M97.9130952,62.57664 C97.9130952,62.6744022 97.8747043,62.7682496 97.8055756,62.8373783 C97.736447,62.9065069 97.6425996,62.9448978 97.5448374,62.9448978 L6.62592538,62.9448978 C6.52816341,62.9448978 6.4343164,62.906506 6.3651879,62.8373775 C6.29605941,62.768249 6.25766754,62.674402 6.25766754,62.57664 L6.25766754,1.104768 C6.25766754,0.901512883 6.42267026,0.736512 6.62592538,0.736512 L97.5448374,0.736512 C97.7480931,0.736512 97.9130952,0.901512271 97.9130952,1.104768 L97.9130952,62.57664 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","10.3066764","y","43.4358624","width","41.5947948","height","4.78524211","rx","0.5376",1,"fill-color-19"],["d","M89.8141359,39.3872559 L76.5649839,39.3872559 C76.2719769,39.3872559 75.9909677,39.5036372 75.7837792,39.7108232 C75.5765907,39.9180091 75.4602025,40.1990169 75.4602025,40.4920239 L75.4602025,50.7978159 C75.4602025,51.090824 75.576586,51.3718339 75.7837753,51.5790207 C75.9909645,51.7862074 76.2719759,51.9025839 76.5649839,51.9025839 L89.8141359,51.9025839 C90.107143,51.9025839 90.3881533,51.7862079 90.5953406,51.5790206 C90.8025279,51.3718333 90.9189039,51.090823 90.9189039,50.7978159 L90.9189039,40.4920239 C90.9189039,40.199018 90.8025232,39.9180097 90.5953367,39.7108232 C90.3881502,39.5036367 90.1071419,39.3872559 89.8141359,39.3872559 Z M90.1823938,50.7978159 C90.182087,51.0010717 90.0173917,51.165767 89.8141359,51.1660719 L76.5649839,51.1660719 C76.3617256,51.165767 76.1970256,51.0010743 76.19671,50.7978159 L76.19671,40.4920239 C76.1964064,40.3942603 76.2351088,40.3004129 76.30424,40.2312847 C76.3733712,40.1621565 76.4672203,40.1234582 76.5649839,40.1237661 L89.8141359,40.1237661 C89.9118981,40.1234582 90.0057456,40.162157 90.0748742,40.2312857 C90.1440029,40.3004143 90.1827017,40.3942617 90.1823938,40.4920239 L90.1823938,50.7978159 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","41.7652758","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","44.7100416","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","47.6548047","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","11.4109632","y","4.41773875","width","19.1409684","height","8.09810266","rx","0.5376",1,"fill-color-19"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-4"],["d","M50.1798649,51.9764517 C43.6553251,51.9764517 37.7732336,48.0461636 35.2764005,42.0182748 C32.7795674,35.990386 34.1597014,29.0519859 38.773248,24.4384399 C43.3867946,19.824894 50.3251948,18.4447609 56.3530833,20.9415948 C62.3809718,23.4384287 66.3112582,29.3205207 66.3112582,35.8450605 C66.3011721,44.7500015 59.0848059,51.9663668 50.1798649,51.9764517 L50.1798649,51.9764517 Z M50.1798649,19.9245354 C41.3872016,19.9245354 34.2593397,27.0523972 34.2593397,35.8450605 C34.2593397,44.6377237 41.3872016,51.7655856 50.1798649,51.7655856 C58.9725281,51.7655856 66.10039,44.6377237 66.10039,35.8450605 C66.0904567,27.056515 58.9684103,19.9344686 50.1798649,19.9245354 L50.1798649,19.9245354 Z","id","Shape","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-23","transform","translate(5.000000, 0.001193)"],["id","Group-22"],["id","Group","transform","translate(0.378134, 0.000000)"],["id","Group-24","transform","translate(29.048000, 19.712000)"],["id","LoopIn_Step03","fill-rule","nonzero"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-10"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","15.8607624","r","7.93434243"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.35996418",1,"fill-color-31"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-4"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-20"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-20"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-16"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-9"],["d","M93.2292414,91.9116485 L93.2292414,89.7922708 C93.647506,89.8022089 94.0558324,89.8022089 94.4442517,89.8022089 L94.4442517,91.9116485 L95.9779294,91.9116485 L95.9779294,89.7623948 C98.5473303,89.6229527 100.264986,88.975618 100.494057,86.5555973 C100.673282,84.6136241 99.757032,83.7471573 98.3030443,83.3986138 C99.1794183,82.9504733 99.7371558,82.1537275 99.6076827,80.8291821 C99.4383337,79.0166511 97.9497787,78.4091306 95.9778985,78.2398742 L95.9778985,75.7301945 L94.4442208,75.7301945 L94.4442208,78.1701531 C94.0458325,78.1701531 93.6375061,78.1800912 93.2292106,78.1900602 L93.2292106,75.7301945 L91.695502,75.7301945 L91.695502,78.2398742 C91.1316227,78.2569109 90.4748746,78.2485777 88.6181777,78.2398742 L88.6181777,79.8731181 C89.8290831,79.8516987 90.4644118,79.7738914 90.6099957,80.5502979 L90.6099957,87.4220333 C90.517559,88.0380413 90.0245427,87.9493391 88.926907,87.9299259 L88.6181777,89.7524258 L89.5798445,89.7528809 C91.4824304,89.7548325 91.6955329,89.7623948 91.6955329,89.7623948 L91.6955329,91.9116485 L93.2292414,91.9116485 Z M93.2591175,83.0400705 L93.2591175,79.9826533 C94.1255534,79.9826533 96.8343964,79.7137998 96.8343964,81.5163618 C96.8343964,83.2392647 94.1255843,83.0400705 93.2591175,83.0400705 Z M93.2591175,87.9398948 L93.2591175,84.5737791 C94.2948407,84.5737791 97.4665153,84.2849568 97.4665153,86.2568678 C97.4665153,88.1589961 94.2948407,87.9398948 93.2591175,87.9398948 Z","id","b","fill-rule","nonzero","transform","translate(94.567271, 83.820921) rotate(14.000000) translate(-94.567271, -83.820921) ",1,"fill-color-9"],["d","M305.611064,96.181454 L305.611064,94.0620763 C306.029328,94.0720144 306.437655,94.0720144 306.826074,94.0720144 L306.826074,96.181454 L308.359752,96.181454 L308.359752,94.0322003 C310.929153,93.8927582 312.646809,93.2454235 312.875879,90.8254028 C313.055104,88.8834296 312.138854,88.0169628 310.684867,87.6684193 C311.561241,87.2202788 312.118978,86.423533 311.989505,85.0989876 C311.820156,83.2864566 310.331601,82.678936 308.359721,82.5096797 L308.359721,80 L306.826043,80 L306.826043,82.4399586 C306.427655,82.4399586 306.019328,82.4498967 305.611033,82.4598657 L305.611033,80 L304.077324,80 L304.077324,82.5096797 C303.513445,82.5267164 302.856697,82.5183832 301,82.5096797 L301,84.1429236 C302.210905,84.1215042 302.846234,84.0436969 302.991818,84.8201034 L302.991818,91.6918387 C302.899381,92.3078468 302.406365,92.2191446 301.308729,92.1997314 L301,94.0222313 L301.961667,94.0226864 C303.864253,94.024638 304.077355,94.0322003 304.077355,94.0322003 L304.077355,96.181454 L305.611064,96.181454 Z M305.64094,87.309876 L305.64094,84.2524587 C306.507376,84.2524587 309.216219,83.9836053 309.216219,85.7861673 C309.216219,87.5090702 306.507407,87.309876 305.64094,87.309876 Z M305.64094,92.2097003 L305.64094,88.8435846 C306.676663,88.8435846 309.848338,88.5547623 309.848338,90.5266733 C309.848338,92.4288016 306.676663,92.2097003 305.64094,92.2097003 Z","id","b","fill-rule","nonzero","transform","translate(306.949093, 88.090727) rotate(14.000000) translate(-306.949093, -88.090727) ",1,"fill-color-26"],["fxFlex","30","viewBox","0 0 278 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopIn_Step04","transform","translate(-1799.000000, -756.000000)"],["id","LoopIn_Step04","transform","translate(1799.000000, 756.000000)"],["id","Loop","fill-rule","nonzero"],["id","Group-16","transform","translate(24.000000, 0.000000)"],["d","M55.0827415,28.5000036 C59.4468211,28.5000036 62.9999285,25.1343958 62.9999285,21.0000215 C62.9999285,16.8656472 59.4468211,13.5000393 55.0827415,13.5000393 C51.9843297,13.5000393 49.5608889,15.4359631 47.9999642,17.1843872 C46.4390396,15.4359631 44.0155987,13.5000393 40.9171869,13.5000393 C36.5531074,13.5000393 33,16.8656472 33,21.0000215 C33,25.1343958 36.5531074,28.5000036 40.9171869,28.5000036 C44.0155987,28.5000036 46.4390396,26.5640798 47.9999642,24.8156557 C49.5608889,26.5640798 51.9843297,28.5000036 55.0827415,28.5000036 Z M40.9171869,24.0000143 C39.0328073,24.0000143 37.4999893,22.6546959 37.4999893,21.0000286 C37.4999893,19.3453471 39.0328073,18.0000286 40.9171869,18.0000286 C42.707771,18.0000286 44.3577763,19.6921938 45.3234264,21.0000286 C44.3671604,22.2937501 42.7031019,24.0000143 40.9171869,24.0000143 Z M55.0827415,24.0000143 C53.2921574,24.0000143 51.6421522,22.3078492 50.676502,21.0000286 C51.6327681,19.7062929 53.2968266,18.0000286 55.0827415,18.0000286 C56.9671212,18.0000286 58.4999392,19.3453471 58.4999392,21.0000286 C58.4999392,22.6546959 56.9671212,24.0000143 55.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-2"],["id","Group-44","transform","translate(27.000000, 69.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-19"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-19"],["id","Group-43","transform","translate(179.000000, 40.000000)"],["d","M225.805162,92.2474279 C226.071703,92.2474279 226.325569,92.1077892 226.465207,91.8666288 L232.050261,82.2197185 C232.345374,81.7151473 231.980441,81.0773212 231.393376,81.0773212 L227.731346,81.0773212 L229.083201,76.9583506 C229.210134,76.4759989 228.845202,76 228.346983,76 L223.777394,76 C223.396595,76 223.07291,76.2824384 223.022149,76.6600456 L222.006685,84.2760274 C221.946379,84.7329987 222.301798,85.1391782 222.76193,85.1391782 L226.528674,85.1391782 L225.065752,91.3112968 C224.951525,91.7936485 225.319618,92.2474279 225.805162,92.2474279 Z","id","b","fill-rule","nonzero","transform","translate(227.077378, 84.123714) rotate(14.000000) translate(-227.077378, -84.123714) ",1,"fill-color-12"],["fxFlex","30","viewBox","0 0 205 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopIn_Step05","transform","translate(-2386.000000, -764.000000)","fill-rule","nonzero"],["id","LoopIn_Step05","transform","translate(2386.000000, 764.000000)"],["id","Illustration_Step02"],["id","Group-31"],["id","Rectangle","x","0","y","0","width","90.1490688","height","100.616012",1,"fill-color-10"],["id","Rectangle","x","1.48932403","y","67.1775068","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","82.4918815","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","34.712875","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","42.1244006","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","50.0294431","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","2.2482432","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","24","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","42.1244006","width","36.8","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","9.66196224","width","51.2","height","16.0118784",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","50.2465905","r","8.78679245"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","82.7090289","r","8.78679245"],["id","Group","transform","translate(60.115627, 35.744427)"],["d","M133.318807,1.04548939 L82.5936439,1.04548939 L82.5936439,0 L59.5928852,0 L59.5928852,1.04548939 L8.65861943,1.04548939 C7.74861523,1.04548887 6.87588228,1.4069864 6.23241214,2.05045654 C5.58894199,2.69392669 5.22744498,3.56665964 5.22744498,4.47666384 L5.22744498,73.9350108 C5.22744498,74.8450173 5.5889387,75.7177532 6.23240879,76.3612266 C6.87587888,77.0047 7.74861298,77.3662028 8.65861943,77.3662028 L133.318807,77.3662028 C135.213795,77.3662028 136.749981,75.8300048 136.749981,73.9350167 L136.749981,4.47666384 C136.749981,3.56665964 136.388484,2.69392669 135.745014,2.05045654 C135.101544,1.4069864 134.228811,1.04548887 133.318807,1.04548939 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-25"],["id","Path","opacity","0.257273065","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-24"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-25"],["d","M31.5848237,68.0274261 C25.669241,68.0274261 20.3361447,64.4639649 18.0723494,58.9986791 C15.808554,53.5333932 17.0598755,47.2425772 21.2428244,43.0596288 C25.4257733,38.8766804 31.7165895,37.6253598 37.1818751,39.8891559 C42.6471607,42.1529519 46.2106203,47.4860487 46.2106203,53.4016314 C46.2014756,61.4754447 39.6586369,68.0182825 31.5848237,68.0274261 L31.5848237,68.0274261 Z M31.5848237,38.967022 C23.612809,38.967022 17.1502143,45.4296168 17.1502143,53.4016314 C17.1502143,61.3736461 23.612809,67.8362409 31.5848237,67.8362409 C39.5568383,67.8362409 46.0194331,61.3736461 46.0194331,53.4016314 C46.010427,45.4333502 39.5531049,38.9760281 31.5848237,38.967022 L31.5848237,38.967022 Z","id","Shape",1,"fill-color-primary"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","119.89017","y","8.50924347","width","4.7751428","height","4.7751428",1,"fill-color-6"],["d","M126.882344,15.5014148 L121.083948,15.5014148 L121.083948,9.70301894 L126.882344,9.70301894 L126.882344,15.5014148 Z M121.336061,15.2493191 L126.63024,15.2493191 L126.63024,9.95513218 L121.336061,9.95513218 L121.336061,15.2493191 Z","id","Shape",1,"fill-color-19"],["d","M140.184525,74.8570201 L128.246669,74.8570201 L128.246669,73.9969059 C128.246671,73.9516751 128.228704,73.9082962 128.196721,73.876313 C128.164738,73.8443298 128.12136,73.826364 128.076129,73.826364 L123.98315,73.826364 C123.937919,73.826364 123.89454,73.8443305 123.862558,73.8763135 C123.830575,73.9082966 123.812608,73.9516752 123.81261,73.9969059 L123.81261,74.8570201 L121.254497,74.8570201 L121.254497,73.9969059 C121.254499,73.9516752 121.236532,73.9082966 121.204549,73.8763135 C121.172566,73.8443305 121.129188,73.826364 121.083957,73.826364 L116.990978,73.826364 C116.945747,73.826364 116.902368,73.8443297 116.870385,73.8763129 C116.838402,73.908296 116.820435,73.9516749 116.820436,73.9969059 L116.820436,74.8570201 L114.262326,74.8570201 L114.262326,73.9969059 C114.262328,73.9516749 114.24436,73.908296 114.212377,73.8763129 C114.180394,73.8443297 114.137015,73.826364 114.091784,73.826364 L109.998805,73.826364 C109.953574,73.826364 109.910196,73.8443305 109.878213,73.8763135 C109.84623,73.9082966 109.828263,73.9516752 109.828265,73.9969059 L109.828265,74.8570201 L107.270153,74.8570201 L107.270153,73.9969059 C107.270154,73.9516752 107.252187,73.9082966 107.220204,73.8763135 C107.188222,73.8443305 107.144843,73.826364 107.099613,73.826364 L103.00663,73.826364 C102.961399,73.826364 102.91802,73.8443298 102.886037,73.876313 C102.854054,73.9082962 102.836088,73.9516751 102.83609,73.9969059 L102.83609,74.8570201 L100.277981,74.8570201 L100.277981,73.9969059 C100.277983,73.9516749 100.260016,73.908296 100.228032,73.8763129 C100.196049,73.8443297 100.15267,73.826364 100.107439,73.826364 L96.0144621,73.826364 C95.9692311,73.826364 95.9258522,73.8443297 95.8938691,73.8763129 C95.861886,73.908296 95.8439187,73.9516749 95.8439202,73.9969059 L95.8439202,74.8570201 L93.285808,74.8570201 L93.285808,73.9969059 C93.2858095,73.9516752 93.2678425,73.9082966 93.2358598,73.8763135 C93.2038771,73.8443305 93.1604987,73.826364 93.1152681,73.826364 L89.0222888,73.826364 C88.9770581,73.826364 88.9336797,73.8443305 88.901697,73.8763135 C88.8697143,73.9082966 88.8517473,73.9516752 88.8517489,73.9969059 L88.8517489,74.8570201 L86.2936405,74.8570201 L86.2936405,73.9969059 C86.293642,73.9516752 86.2756751,73.9082966 86.2436923,73.8763135 C86.2117096,73.8443305 86.1683312,73.826364 86.1231006,73.826364 L54.061428,73.826364 C54.0161974,73.826364 53.972819,73.8443305 53.9408363,73.8763135 C53.9088536,73.9082966 53.8908866,73.9516752 53.8908881,73.9969059 L53.8908881,74.8570201 L51.3327759,74.8570201 L51.3327759,73.9969059 C51.3327774,73.9516749 51.3148102,73.908296 51.282827,73.8763129 C51.2508439,73.8443297 51.207465,73.826364 51.162234,73.826364 L47.0692664,73.826364 C47.0240354,73.826364 46.9806565,73.8443297 46.9486734,73.8763129 C46.9166903,73.908296 46.898723,73.9516749 46.8987246,73.9969059 L46.8987246,74.8570201 L44.3406025,74.8570201 L44.3406025,73.9969059 C44.3406046,73.9516751 44.3226378,73.9082962 44.290655,73.876313 C44.2586721,73.8443298 44.2152934,73.826364 44.1700626,73.826364 L40.0770834,73.826364 C40.0318527,73.826364 39.9884743,73.8443305 39.9564916,73.8763135 C39.9245089,73.9082966 39.9065419,73.9516752 39.9065435,73.9969059 L39.9065435,74.8570201 L37.3484312,74.8570201 L37.3484312,73.9969059 C37.3484327,73.9516752 37.3304657,73.9082966 37.298483,73.8763135 C37.2665003,73.8443305 37.2231219,73.826364 37.1778913,73.826364 L33.084912,73.826364 C33.039681,73.826364 32.9963021,73.8443297 32.964319,73.8763129 C32.9323358,73.908296 32.9143686,73.9516749 32.9143701,73.9969059 L32.9143701,74.8570201 L30.3562598,74.8570201 L30.3562598,73.9969059 C30.3562614,73.9516749 30.3382941,73.908296 30.306311,73.8763129 C30.2743278,73.8443297 30.2309489,73.826364 30.1857179,73.826364 L26.0927387,73.826364 C26.047508,73.826364 26.0041296,73.8443305 25.9721469,73.8763135 C25.9401642,73.9082966 25.9221972,73.9516752 25.9221988,73.9969059 L25.9221988,74.8570201 L23.3640826,74.8570201 L23.3640826,73.9969059 C23.3640841,73.9516752 23.3461171,73.9082966 23.3141344,73.8763135 C23.2821517,73.8443305 23.2387733,73.826364 23.1935427,73.826364 L19.1005673,73.826364 C19.0553365,73.826364 19.0119578,73.8443298 18.979975,73.876313 C18.9479921,73.9082962 18.9300253,73.9516751 18.9300274,73.9969059 L18.9300274,74.8570201 L16.3719151,74.8570201 L16.3719151,73.9969059 C16.3719167,73.9516749 16.3539494,73.908296 16.3219663,73.8763129 C16.2899831,73.8443297 16.2466042,73.826364 16.2013733,73.826364 L12.1083959,73.826364 C12.0631649,73.826364 12.0197861,73.8443297 11.9878029,73.8763129 C11.9558198,73.908296 11.9378525,73.9516749 11.9378541,73.9969059 L11.9378541,74.8570201 L4.09297732,74.8570201 C1.83248849,74.8570223 0,76.6895106 0,78.9499994 L0,80.8007483 C0,83.061233 1.83249262,84.8937159 4.09297732,84.8937159 L140.184525,84.8937159 C142.44501,84.8937159 144.277504,83.0612333 144.277504,80.8007483 L144.277504,78.9499994 C144.277504,76.6895102 142.445014,74.8570223 140.184525,74.8570201 Z","id","Path",1,"fill-color-20"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-21"],["id","Oval","cx","74.1507041","cy","17.5648113","r","8.15070413",1,"fill-color-primary"]],template:function(it,bt){if(1&it&&d.DNE(0,Le,1,0,"ng-container",5)(1,Ke,32,5,"ng-template",null,0,d.C5r)(3,ge,66,5,"ng-template",null,1,d.C5r)(5,ve,93,5,"ng-template",null,2,d.C5r)(7,Oe,54,5,"ng-template",null,3,d.C5r)(9,Ee,51,5,"ng-template",null,4,d.C5r),2&it){const ut=d.sdS(2),jt=d.sdS(4),ai=d.sdS(6),pi=d.sdS(8),ki=d.sdS(10);d.Y8G("ngTemplateOutlet",1===bt.stepNumber?ut:2===bt.stepNumber?jt:3===bt.stepNumber?ai:4===bt.stepNumber?pi:ki)}},dependencies:[M.YU,M.T3,G.Lc,G.dh,me.DJ,me.sA,me.UI,Te.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[_e.k]}}))}return Tt(),Ze})();const nt=(Tt,Ze)=>({"small-svg":Tt,"large-svg":Ze});function Ct(Tt,Ze){1&Tt&&d.eu8(0)}function Mt(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(it){w.eBV(Ve);const bt=d.XpG();return w.Njj(bt.onSwipe(it))}),w.qSk(),d.j41(1,"svg",7)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),d.nrm(8,"circle",12)(9,"path",13),d.k0s(),d.j41(10,"g",14),d.nrm(11,"ellipse",15)(12,"ellipse",16)(13,"rect",17)(14,"rect",18)(15,"rect",19)(16,"rect",20)(17,"rect",21)(18,"rect",22)(19,"rect",23)(20,"rect",24)(21,"rect",25)(22,"rect",26)(23,"rect",27)(24,"rect",28)(25,"rect",29),d.k0s()()()()(),w.joV(),d.j41(26,"div",30)(27,"mat-card-title"),d.EFF(28,"Loop Out explained."),d.k0s()(),d.j41(29,"div",31)(30,"mat-card-subtitle",32),d.EFF(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),d.k0s()()()}if(2&Tt){const Ve=d.XpG();d.Y8G("@sliderAnimation",Ve.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,nt,Ve.screenSize===Ve.screenSizeEnum.XS,Ve.screenSize!==Ve.screenSizeEnum.XS))}}function lt(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(it){w.eBV(Ve);const bt=d.XpG();return w.Njj(bt.onSwipe(it))}),w.qSk(),d.j41(1,"svg",33)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",34),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40)(13,"g",41)(14,"g",42),d.nrm(15,"rect",43)(16,"rect",44)(17,"rect",45)(18,"circle",46)(19,"rect",47)(20,"rect",48)(21,"circle",49)(22,"rect",50)(23,"rect",51)(24,"rect",52)(25,"rect",53)(26,"circle",54)(27,"circle",55),d.k0s(),d.j41(28,"g",56),d.nrm(29,"path",57)(30,"rect",58)(31,"polygon",59)(32,"circle",60)(33,"path",61)(34,"rect",62)(35,"rect",63)(36,"rect",64)(37,"rect",65)(38,"rect",66)(39,"rect",67)(40,"rect",68)(41,"path",69)(42,"path",70),d.k0s(),d.nrm(43,"path",71),d.k0s()(),d.nrm(44,"circle",72),d.k0s()()()(),w.joV(),d.j41(45,"div",30)(46,"mat-card-title"),d.EFF(47,"Step 1: Deciding to Loop Out"),d.k0s()(),d.j41(48,"div",31)(49,"mat-card-subtitle",32),d.EFF(50," You have a channel with a local balance amount and you want to gain inbound liquidity. "),d.k0s()()()}if(2&Tt){const Ve=d.XpG();d.Y8G("@sliderAnimation",Ve.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,nt,Ve.screenSize===Ve.screenSizeEnum.XS,Ve.screenSize!==Ve.screenSizeEnum.XS))}}function Pe(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(it){w.eBV(Ve);const bt=d.XpG();return w.Njj(bt.onSwipe(it))}),w.qSk(),d.j41(1,"svg",73)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",74),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",8)(10,"g",75)(11,"g",76),d.nrm(12,"circle",77)(13,"path",78),d.j41(14,"g",79),d.nrm(15,"polygon",80)(16,"polygon",81)(17,"path",82),d.k0s(),d.j41(18,"g",83),d.nrm(19,"polygon",84)(20,"path",85)(21,"rect",86)(22,"path",87)(23,"rect",88)(24,"rect",89)(25,"rect",90)(26,"rect",91)(27,"circle",92)(28,"path",93),d.j41(29,"g",94)(30,"g",95),d.nrm(31,"g",96),d.k0s(),d.nrm(32,"g",97),d.k0s(),d.nrm(33,"path",98),d.k0s(),d.j41(34,"g",99)(35,"g",41)(36,"g",42),d.nrm(37,"rect",43)(38,"rect",44)(39,"rect",45)(40,"circle",46)(41,"rect",47)(42,"rect",48)(43,"circle",49)(44,"rect",50)(45,"rect",51)(46,"rect",52)(47,"rect",53)(48,"circle",100)(49,"circle",54)(50,"circle",55)(51,"circle",101),d.k0s(),d.j41(52,"g",56),d.nrm(53,"path",57)(54,"rect",102)(55,"polygon",103)(56,"circle",104)(57,"path",61)(58,"rect",105)(59,"rect",106)(60,"rect",107)(61,"rect",108)(62,"rect",109)(63,"rect",110)(64,"rect",68)(65,"path",69)(66,"path",70),d.k0s(),d.nrm(67,"path",111),d.k0s()()()()()(),w.joV(),d.j41(68,"div",30)(69,"mat-card-title"),d.EFF(70,"Step 2: Send lightning payment"),d.k0s()(),d.j41(71,"div",31)(72,"mat-card-subtitle",32),d.EFF(73," Your node pays a lightning invoice for the amount requested via the loop service. This moves the local balance, for the amount paid, to the remote side of the channel. "),d.k0s()()()}if(2&Tt){const Ve=d.XpG();d.Y8G("@sliderAnimation",Ve.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,nt,Ve.screenSize===Ve.screenSizeEnum.XS,Ve.screenSize!==Ve.screenSizeEnum.XS))}}function Ht(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(it){w.eBV(Ve);const bt=d.XpG();return w.Njj(bt.onSwipe(it))}),w.qSk(),d.j41(1,"svg",112)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"g",8)(5,"g",113)(6,"g",114)(7,"g",115)(8,"g",116),d.nrm(9,"circle",12)(10,"path",117),d.k0s(),d.j41(11,"g",14),d.nrm(12,"ellipse",118)(13,"ellipse",16)(14,"rect",17)(15,"rect",18)(16,"rect",19)(17,"rect",20)(18,"rect",21)(19,"rect",22)(20,"rect",23)(21,"rect",24)(22,"rect",25)(23,"rect",26)(24,"rect",27)(25,"rect",28)(26,"rect",29),d.k0s()(),d.j41(27,"g",119),d.nrm(28,"polygon",80)(29,"polygon",120)(30,"path",82),d.k0s(),d.j41(31,"g",121),d.nrm(32,"polygon",84)(33,"path",85)(34,"rect",86)(35,"path",87)(36,"rect",88)(37,"rect",89)(38,"rect",90)(39,"rect",91)(40,"circle",122)(41,"path",93),d.j41(42,"g",94)(43,"g",95),d.nrm(44,"g",96),d.k0s(),d.nrm(45,"g",97),d.k0s(),d.nrm(46,"path",123),d.k0s()()()()(),w.joV(),d.j41(47,"div",30)(48,"mat-card-title"),d.EFF(49,"Step 3: Receive funds back"),d.k0s()(),d.j41(50,"div",31)(51,"mat-card-subtitle",32),d.EFF(52," Loop service then sends you a payment on-chain for the amount same as the lightning payment minus the fee. "),d.k0s()()()}if(2&Tt){const Ve=d.XpG();d.Y8G("@sliderAnimation",Ve.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,nt,Ve.screenSize===Ve.screenSizeEnum.XS,Ve.screenSize!==Ve.screenSizeEnum.XS))}}function ct(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(it){w.eBV(Ve);const bt=d.XpG();return w.Njj(bt.onSwipe(it))}),w.qSk(),d.j41(1,"svg",124)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",34),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",8)(10,"g",125)(11,"g",126)(12,"g",42),d.nrm(13,"rect",127)(14,"rect",128)(15,"rect",129)(16,"circle",130)(17,"rect",131)(18,"rect",132)(19,"circle",133)(20,"rect",134)(21,"rect",135)(22,"rect",136)(23,"rect",137)(24,"rect",138)(25,"circle",139)(26,"circle",140)(27,"circle",141),d.k0s(),d.j41(28,"g",142)(29,"g",143)(30,"g",144),d.nrm(31,"path",145)(32,"rect",146)(33,"polygon",147),d.j41(34,"g",148),d.nrm(35,"path",149),d.k0s(),d.nrm(36,"rect",150)(37,"rect",151)(38,"rect",152)(39,"rect",153)(40,"rect",154)(41,"rect",155)(42,"rect",156)(43,"path",157)(44,"path",158),d.k0s(),d.j41(45,"g",159),d.nrm(46,"path",160)(47,"path",161)(48,"path",162)(49,"path",163)(50,"path",164)(51,"path",165)(52,"path",166)(53,"path",167)(54,"path",168)(55,"path",169)(56,"path",170)(57,"circle",171)(58,"circle",172),d.k0s(),d.nrm(59,"path",173),d.k0s()()()()()(),w.joV(),d.j41(60,"div",30)(61,"mat-card-title"),d.EFF(62,"Done!"),d.k0s()(),d.j41(63,"div",31)(64,"mat-card-subtitle",32),d.EFF(65," Final settlement occurs when your node sweeps the on-chain payment and the loop server settles the lightning invoice. You receive the payment on-chain in your wallet and also move local balance to the remote side of the channel, gaining inbound capacity. "),d.k0s()()()}if(2&Tt){const Ve=d.XpG();d.Y8G("@sliderAnimation",Ve.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,nt,Ve.screenSize===Ve.screenSizeEnum.XS,Ve.screenSize!==Ve.screenSizeEnum.XS))}}let Ce=(()=>{var Tt;class Ze{constructor(Fe){this.commonService=Fe,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new d.bkB,this.screenSize="",this.screenSizeEnum=T.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(Fe){2===Fe.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===Fe.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=Tt=()=>(this.\u0275fac=function(it){return new(it||Ze)(d.rXU(K.h))},this.\u0275cmp=d.VBU({type:Ze,selectors:[["rtl-loop-out-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["loopStepBlock1",""],["loopStepBlock2",""],["loopStepBlock3",""],["loopStepBlock4",""],["loopStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 108 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","Loopv0.2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopOut_Step01","transform","translate(-594.000000, -215.000000)","fill-rule","nonzero"],["id","Loop_Step01","transform","translate(594.000000, 215.000000)"],["id","Group-16","transform","translate(23.000000, 0.000000)"],["id","Oval","cx","42.4877419","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M56.0827415,28.5000036 C60.4468211,28.5000036 63.9999285,25.1343958 63.9999285,21.0000215 C63.9999285,16.8656472 60.4468211,13.5000393 56.0827415,13.5000393 C52.9843297,13.5000393 50.5608889,15.4359631 48.9999642,17.1843872 C47.4390396,15.4359631 45.0155987,13.5000393 41.9171869,13.5000393 C37.5531074,13.5000393 34,16.8656472 34,21.0000215 C34,25.1343958 37.5531074,28.5000036 41.9171869,28.5000036 C45.0155987,28.5000036 47.4390396,26.5640798 48.9999642,24.8156557 C50.5608889,26.5640798 52.9843297,28.5000036 56.0827415,28.5000036 Z M41.9171869,24.0000143 C40.0328073,24.0000143 38.4999893,22.6546959 38.4999893,21.0000286 C38.4999893,19.3453471 40.0328073,18.0000286 41.9171869,18.0000286 C43.707771,18.0000286 45.3577763,19.6921938 46.3234264,21.0000286 C45.3671604,22.2937501 43.7031019,24.0000143 41.9171869,24.0000143 Z M56.0827415,24.0000143 C54.2921574,24.0000143 52.6421522,22.3078492 51.676502,21.0000286 C52.6327681,19.7062929 54.2968266,18.0000286 56.0827415,18.0000286 C57.9671212,18.0000286 59.4999392,19.3453471 59.4999392,21.0000286 C59.4999392,22.6546959 57.9671212,24.0000143 56.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Group-21","transform","translate(0.000000, 36.000000)"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-7"],["id","Oval","opacity","0.1","cx","48.644129","cy","75.1589677","rx","40.8402581","ry","5.55600756",1,"fill-color-27"],["id","Rectangle","x","25.2325161","y","6.09470968","width","54.1068387","height","62.9512258",1,"fill-color-26"],["id","Rectangle","x","20","y","1.24344979e-14","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","20","y","26","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","19.7698065","y","52.9179355","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","67.6335484","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","viewBox","0 0 205 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","0%","id","linearGradient-1"],["stop-color","#808080","stop-opacity","0.25","offset","0%"],["stop-color","#808080","stop-opacity","0.12","offset","54%"],["stop-color","#808080","stop-opacity","0.1","offset","100%"],["id","LoopOut_Step02","transform","translate(-540.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step02","transform","translate(540.000000, 210.000000)"],["id","Illustration_Step02"],["id","Group-31"],["id","Group-2"],["id","Rectangle","x","0","y","0","width","90.1490688","height","100.616012",1,"fill-color-10"],["id","Rectangle","x","1.48932403","y","67.1775068","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","82.4918815","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","34.712875","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","42.1244006","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","50.0294431","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","2.2482432","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","24","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","42.1244006","width","36.8","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","9.66196224","width","51.2","height","16.0118784",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","50.2465905","r","8.78679245"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","82.7090289","r","8.78679245"],["id","Group","transform","translate(60.115627, 35.744427)"],["d","M133.318807,1.04548939 L82.5936439,1.04548939 L82.5936439,0 L59.5928852,0 L59.5928852,1.04548939 L8.65861943,1.04548939 C7.74861523,1.04548887 6.87588228,1.4069864 6.23241214,2.05045654 C5.58894199,2.69392669 5.22744498,3.56665964 5.22744498,4.47666384 L5.22744498,73.9350108 C5.22744498,74.8450173 5.5889387,75.7177532 6.23240879,76.3612266 C6.87587888,77.0047 7.74861298,77.3662028 8.65861943,77.3662028 L133.318807,77.3662028 C135.213795,77.3662028 136.749981,75.8300048 136.749981,73.9350167 L136.749981,4.47666384 C136.749981,3.56665964 136.388484,2.69392669 135.745014,2.05045654 C135.101544,1.4069864 134.228811,1.04548887 133.318807,1.04548939 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-25"],["id","Path","opacity","0.257273065","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-24"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-25"],["d","M31.5848237,68.0274261 C25.669241,68.0274261 20.3361447,64.4639649 18.0723494,58.9986791 C15.808554,53.5333932 17.0598755,47.2425772 21.2428244,43.0596288 C25.4257733,38.8766804 31.7165895,37.6253598 37.1818751,39.8891559 C42.6471607,42.1529519 46.2106203,47.4860487 46.2106203,53.4016314 C46.2014756,61.4754447 39.6586369,68.0182825 31.5848237,68.0274261 L31.5848237,68.0274261 Z M31.5848237,38.967022 C23.612809,38.967022 17.1502143,45.4296168 17.1502143,53.4016314 C17.1502143,61.3736461 23.612809,67.8362409 31.5848237,67.8362409 C39.5568383,67.8362409 46.0194331,61.3736461 46.0194331,53.4016314 C46.010427,45.4333502 39.5531049,38.9760281 31.5848237,38.967022 L31.5848237,38.967022 Z","id","Shape",1,"fill-color-primary"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","119.89017","y","8.50924347","width","4.7751428","height","4.7751428",1,"fill-color-6"],["d","M126.882344,15.5014148 L121.083948,15.5014148 L121.083948,9.70301894 L126.882344,9.70301894 L126.882344,15.5014148 Z M121.336061,15.2493191 L126.63024,15.2493191 L126.63024,9.95513218 L121.336061,9.95513218 L121.336061,15.2493191 Z","id","Shape",1,"fill-color-19"],["d","M140.184525,74.8570201 L128.246669,74.8570201 L128.246669,73.9969059 C128.246671,73.9516751 128.228704,73.9082962 128.196721,73.876313 C128.164738,73.8443298 128.12136,73.826364 128.076129,73.826364 L123.98315,73.826364 C123.937919,73.826364 123.89454,73.8443305 123.862558,73.8763135 C123.830575,73.9082966 123.812608,73.9516752 123.81261,73.9969059 L123.81261,74.8570201 L121.254497,74.8570201 L121.254497,73.9969059 C121.254499,73.9516752 121.236532,73.9082966 121.204549,73.8763135 C121.172566,73.8443305 121.129188,73.826364 121.083957,73.826364 L116.990978,73.826364 C116.945747,73.826364 116.902368,73.8443297 116.870385,73.8763129 C116.838402,73.908296 116.820435,73.9516749 116.820436,73.9969059 L116.820436,74.8570201 L114.262326,74.8570201 L114.262326,73.9969059 C114.262328,73.9516749 114.24436,73.908296 114.212377,73.8763129 C114.180394,73.8443297 114.137015,73.826364 114.091784,73.826364 L109.998805,73.826364 C109.953574,73.826364 109.910196,73.8443305 109.878213,73.8763135 C109.84623,73.9082966 109.828263,73.9516752 109.828265,73.9969059 L109.828265,74.8570201 L107.270153,74.8570201 L107.270153,73.9969059 C107.270154,73.9516752 107.252187,73.9082966 107.220204,73.8763135 C107.188222,73.8443305 107.144843,73.826364 107.099613,73.826364 L103.00663,73.826364 C102.961399,73.826364 102.91802,73.8443298 102.886037,73.876313 C102.854054,73.9082962 102.836088,73.9516751 102.83609,73.9969059 L102.83609,74.8570201 L100.277981,74.8570201 L100.277981,73.9969059 C100.277983,73.9516749 100.260016,73.908296 100.228032,73.8763129 C100.196049,73.8443297 100.15267,73.826364 100.107439,73.826364 L96.0144621,73.826364 C95.9692311,73.826364 95.9258522,73.8443297 95.8938691,73.8763129 C95.861886,73.908296 95.8439187,73.9516749 95.8439202,73.9969059 L95.8439202,74.8570201 L93.285808,74.8570201 L93.285808,73.9969059 C93.2858095,73.9516752 93.2678425,73.9082966 93.2358598,73.8763135 C93.2038771,73.8443305 93.1604987,73.826364 93.1152681,73.826364 L89.0222888,73.826364 C88.9770581,73.826364 88.9336797,73.8443305 88.901697,73.8763135 C88.8697143,73.9082966 88.8517473,73.9516752 88.8517489,73.9969059 L88.8517489,74.8570201 L86.2936405,74.8570201 L86.2936405,73.9969059 C86.293642,73.9516752 86.2756751,73.9082966 86.2436923,73.8763135 C86.2117096,73.8443305 86.1683312,73.826364 86.1231006,73.826364 L54.061428,73.826364 C54.0161974,73.826364 53.972819,73.8443305 53.9408363,73.8763135 C53.9088536,73.9082966 53.8908866,73.9516752 53.8908881,73.9969059 L53.8908881,74.8570201 L51.3327759,74.8570201 L51.3327759,73.9969059 C51.3327774,73.9516749 51.3148102,73.908296 51.282827,73.8763129 C51.2508439,73.8443297 51.207465,73.826364 51.162234,73.826364 L47.0692664,73.826364 C47.0240354,73.826364 46.9806565,73.8443297 46.9486734,73.8763129 C46.9166903,73.908296 46.898723,73.9516749 46.8987246,73.9969059 L46.8987246,74.8570201 L44.3406025,74.8570201 L44.3406025,73.9969059 C44.3406046,73.9516751 44.3226378,73.9082962 44.290655,73.876313 C44.2586721,73.8443298 44.2152934,73.826364 44.1700626,73.826364 L40.0770834,73.826364 C40.0318527,73.826364 39.9884743,73.8443305 39.9564916,73.8763135 C39.9245089,73.9082966 39.9065419,73.9516752 39.9065435,73.9969059 L39.9065435,74.8570201 L37.3484312,74.8570201 L37.3484312,73.9969059 C37.3484327,73.9516752 37.3304657,73.9082966 37.298483,73.8763135 C37.2665003,73.8443305 37.2231219,73.826364 37.1778913,73.826364 L33.084912,73.826364 C33.039681,73.826364 32.9963021,73.8443297 32.964319,73.8763129 C32.9323358,73.908296 32.9143686,73.9516749 32.9143701,73.9969059 L32.9143701,74.8570201 L30.3562598,74.8570201 L30.3562598,73.9969059 C30.3562614,73.9516749 30.3382941,73.908296 30.306311,73.8763129 C30.2743278,73.8443297 30.2309489,73.826364 30.1857179,73.826364 L26.0927387,73.826364 C26.047508,73.826364 26.0041296,73.8443305 25.9721469,73.8763135 C25.9401642,73.9082966 25.9221972,73.9516752 25.9221988,73.9969059 L25.9221988,74.8570201 L23.3640826,74.8570201 L23.3640826,73.9969059 C23.3640841,73.9516752 23.3461171,73.9082966 23.3141344,73.8763135 C23.2821517,73.8443305 23.2387733,73.826364 23.1935427,73.826364 L19.1005673,73.826364 C19.0553365,73.826364 19.0119578,73.8443298 18.979975,73.876313 C18.9479921,73.9082962 18.9300253,73.9516751 18.9300274,73.9969059 L18.9300274,74.8570201 L16.3719151,74.8570201 L16.3719151,73.9969059 C16.3719167,73.9516749 16.3539494,73.908296 16.3219663,73.8763129 C16.2899831,73.8443297 16.2466042,73.826364 16.2013733,73.826364 L12.1083959,73.826364 C12.0631649,73.826364 12.0197861,73.8443297 11.9878029,73.8763129 C11.9558198,73.908296 11.9378525,73.9516749 11.9378541,73.9969059 L11.9378541,74.8570201 L4.09297732,74.8570201 C1.83248849,74.8570223 0,76.6895106 0,78.9499994 L0,80.8007483 C0,83.061233 1.83249262,84.8937159 4.09297732,84.8937159 L140.184525,84.8937159 C142.44501,84.8937159 144.277504,83.0612333 144.277504,80.8007483 L144.277504,78.9499994 C144.277504,76.6895102 142.445014,74.8570223 140.184525,74.8570201 Z","id","Path",1,"fill-color-20"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-21"],["id","Oval","cx","74.1507041","cy","17.5648113","r","8.15070413",1,"fill-color-primary"],["fxFlex","30","viewBox","0 0 373 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","8.86848147e-15%","id","linearGradient-1"],["id","LoopOut_Step03","transform","translate(-460.000000, -210.000000)"],["id","Loop_Step03","transform","translate(460.000000, 210.000000)"],["id","Oval","fill-rule","nonzero","cx","330.487742","cy","57.4877419","r","42.4877419",1,"fill-color-2"],["d","M345.082742,43.5000036 C349.446821,43.5000036 352.999928,40.1343958 352.999928,36.0000215 C352.999928,31.8656472 349.446821,28.5000393 345.082742,28.5000393 C341.98433,28.5000393 339.560889,30.4359631 337.999964,32.1843872 C336.43904,30.4359631 334.015599,28.5000393 330.917187,28.5000393 C326.553107,28.5000393 323,31.8656472 323,36.0000215 C323,40.1343958 326.553107,43.5000036 330.917187,43.5000036 C334.015599,43.5000036 336.43904,41.5640798 337.999964,39.8156557 C339.560889,41.5640798 341.98433,43.5000036 345.082742,43.5000036 Z M330.917187,39.0000143 C329.032807,39.0000143 327.499989,37.6546959 327.499989,36.0000286 C327.499989,34.3453471 329.032807,33.0000286 330.917187,33.0000286 C332.707771,33.0000286 334.357776,34.6921938 335.323426,36.0000286 C334.36716,37.2937501 332.703102,39.0000143 330.917187,39.0000143 Z M345.082742,39.0000143 C343.292157,39.0000143 341.642152,37.3078492 340.676502,36.0000286 C341.632768,34.7062929 343.296827,33.0000286 345.082742,33.0000286 C346.967121,33.0000286 348.499939,34.3453471 348.499939,36.0000286 C348.499939,37.6546959 346.967121,39.0000143 345.082742,39.0000143 Z","id","i","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-44","transform","translate(113.000000, 79.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-19"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-22"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-19"],["id","Group-43","transform","translate(265.000000, 50.000000)"],["id","Path","fill-rule","nonzero","points","-9.84073267e-14 7.36243469 92.3919279 7.36243469 92.3919279 70.3073253 -1.13686838e-13 70.3073253",1,"fill-color-23"],["d","M97.5448374,1.70530257e-13 L6.62592538,1.70530257e-13 C6.01615907,0.000922175294 5.52114394,0.495001701 5.52114394,1.104768 L5.52114394,62.57664 C5.52114394,62.8696481 5.63752746,63.150658 5.84471672,63.3578447 C6.05190598,63.5650315 6.3329173,63.681408 6.62592538,63.681408 L97.5448374,63.681408 C97.8378436,63.681408 98.1188523,63.5650282 98.3260389,63.3578415 C98.5332256,63.1506549 98.6496054,62.8696462 98.6496054,62.57664 L98.6496054,1.104768 C98.6496054,0.495005713 98.1545997,0.000926622272 97.5448374,1.70530257e-13 L97.5448374,1.70530257e-13 Z M97.9130952,62.57664 C97.9130952,62.6744022 97.8747043,62.7682496 97.8055756,62.8373783 C97.736447,62.9065069 97.6425996,62.9448978 97.5448374,62.9448978 L6.62592538,62.9448978 C6.52816341,62.9448978 6.4343164,62.906506 6.3651879,62.8373775 C6.29605941,62.768249 6.25766754,62.674402 6.25766754,62.57664 L6.25766754,1.104768 C6.25766754,0.901512883 6.42267026,0.736512 6.62592538,0.736512 L97.5448374,0.736512 C97.7480931,0.736512 97.9130952,0.901512271 97.9130952,1.104768 L97.9130952,62.57664 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","10.3066764","y","43.4358624","width","41.5947948","height","4.78524211","rx","0.5376",1,"fill-color-19"],["d","M89.8141359,39.3872559 L76.5649839,39.3872559 C76.2719769,39.3872559 75.9909677,39.5036372 75.7837792,39.7108232 C75.5765907,39.9180091 75.4602025,40.1990169 75.4602025,40.4920239 L75.4602025,50.7978159 C75.4602025,51.090824 75.576586,51.3718339 75.7837753,51.5790207 C75.9909645,51.7862074 76.2719759,51.9025839 76.5649839,51.9025839 L89.8141359,51.9025839 C90.107143,51.9025839 90.3881533,51.7862079 90.5953406,51.5790206 C90.8025279,51.3718333 90.9189039,51.090823 90.9189039,50.7978159 L90.9189039,40.4920239 C90.9189039,40.199018 90.8025232,39.9180097 90.5953367,39.7108232 C90.3881502,39.5036367 90.1071419,39.3872559 89.8141359,39.3872559 Z M90.1823938,50.7978159 C90.182087,51.0010717 90.0173917,51.165767 89.8141359,51.1660719 L76.5649839,51.1660719 C76.3617256,51.165767 76.1970256,51.0010743 76.19671,50.7978159 L76.19671,40.4920239 C76.1964064,40.3942603 76.2351088,40.3004129 76.30424,40.2312847 C76.3733712,40.1621565 76.4672203,40.1234582 76.5649839,40.1237661 L89.8141359,40.1237661 C89.9118981,40.1234582 90.0057456,40.162157 90.0748742,40.2312857 C90.1440029,40.3004143 90.1827017,40.3942617 90.1823938,40.4920239 L90.1823938,50.7978159 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","41.7652758","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","44.7100416","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","47.6548047","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","11.4109632","y","4.41773875","width","19.1409684","height","8.09810266","rx","0.5376",1,"fill-color-19"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-3"],["d","M50.1798649,51.9764517 C43.6553251,51.9764517 37.7732336,48.0461636 35.2764005,42.0182748 C32.7795674,35.990386 34.1597014,29.0519859 38.773248,24.4384399 C43.3867946,19.824894 50.3251948,18.4447609 56.3530833,20.9415948 C62.3809718,23.4384287 66.3112582,29.3205207 66.3112582,35.8450605 C66.3011721,44.7500015 59.0848059,51.9663668 50.1798649,51.9764517 L50.1798649,51.9764517 Z M50.1798649,19.9245354 C41.3872016,19.9245354 34.2593397,27.0523972 34.2593397,35.8450605 C34.2593397,44.6377237 41.3872016,51.7655856 50.1798649,51.7655856 C58.9725281,51.7655856 66.10039,44.6377237 66.10039,35.8450605 C66.0904567,27.056515 58.9684103,19.9344686 50.1798649,19.9245354 L50.1798649,19.9245354 Z","id","Shape","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-23","transform","translate(5.000000, 0.001193)"],["id","Group-22"],["id","Group","transform","translate(0.378134, 0.000000)"],["id","Group-24","transform","translate(29.048000, 19.712000)"],["d","M46.60483,51.432122 C46.8713708,51.432122 47.1252368,51.2924832 47.2648756,51.0513229 L52.8499289,41.4044125 C53.145042,40.8998413 52.7801095,40.2620153 52.1930443,40.2620153 L48.5310139,40.2620153 L49.8828693,36.1430446 C50.0098023,35.6606929 49.6448699,35.184694 49.1466515,35.184694 L44.5770624,35.184694 C44.1962633,35.184694 43.8725779,35.4671324 43.8218171,35.8447396 L42.8063528,43.4607214 C42.7460473,43.9176927 43.1014659,44.3238722 43.5615982,44.3238722 L47.3283421,44.3238722 L45.8654203,50.4959909 C45.751193,50.9783426 46.1192864,51.432122 46.60483,51.432122 Z","id","b","fill-rule","nonzero","transform","translate(47.877046, 43.308408) rotate(14.000000) translate(-47.877046, -43.308408) ",1,"fill-color-12"],["id","Group-34","fill-rule","nonzero"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","17.5648113","r","8.78679245"],["id","Oval","cx","76.317438","cy","17.5648113","r","8.15070413",1,"fill-color-primary"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-8"],["id","Path","opacity","0.222721354","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-18"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-8"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-14"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-12"],["fxFlex","30","viewBox","0 0 278 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopOut_Step04","transform","translate(-503.000000, -212.000000)"],["id","Loop_Step04","transform","translate(503.000000, 212.000000)"],["id","Loop","fill-rule","nonzero"],["id","Group-16","transform","translate(24.000000, 0.000000)"],["d","M55.0827415,28.5000036 C59.4468211,28.5000036 62.9999285,25.1343958 62.9999285,21.0000215 C62.9999285,16.8656472 59.4468211,13.5000393 55.0827415,13.5000393 C51.9843297,13.5000393 49.5608889,15.4359631 47.9999642,17.1843872 C46.4390396,15.4359631 44.0155987,13.5000393 40.9171869,13.5000393 C36.5531074,13.5000393 33,16.8656472 33,21.0000215 C33,25.1343958 36.5531074,28.5000036 40.9171869,28.5000036 C44.0155987,28.5000036 46.4390396,26.5640798 47.9999642,24.8156557 C49.5608889,26.5640798 51.9843297,28.5000036 55.0827415,28.5000036 Z M40.9171869,24.0000143 C39.0328073,24.0000143 37.4999893,22.6546959 37.4999893,21.0000286 C37.4999893,19.3453471 39.0328073,18.0000286 40.9171869,18.0000286 C42.707771,18.0000286 44.3577763,19.6921938 45.3234264,21.0000286 C44.3671604,22.2937501 42.7031019,24.0000143 40.9171869,24.0000143 Z M55.0827415,24.0000143 C53.2921574,24.0000143 51.6421522,22.3078492 50.676502,21.0000286 C51.6327681,19.7062929 53.2968266,18.0000286 55.0827415,18.0000286 C56.9671212,18.0000286 58.4999392,19.3453471 58.4999392,21.0000286 C58.4999392,22.6546959 56.9671212,24.0000143 55.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-2"],["id","Group-44","transform","translate(27.000000, 69.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-23"],["id","Group-43","transform","translate(179.000000, 40.000000)"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-4"],["d","M46.519593,50.6740439 L46.519593,48.5460252 C46.9395628,48.5560039 47.349554,48.5560039 47.739557,48.5560039 L47.739557,50.6740439 L49.2794877,50.6740439 L49.2794877,48.5160274 C51.8593644,48.3760168 53.5840235,47.7260428 53.8140277,45.2961554 C53.9939838,43.3462645 53.0739982,42.476265 51.6140824,42.1263004 C52.4940295,41.6763328 53.054041,40.8763386 52.92404,39.5463928 C52.7540005,37.7264719 51.2593765,37.1164744 49.2794567,36.9465279 L49.2794567,34.4266159 L47.739526,34.4266159 L47.739526,36.8765226 C47.3395134,36.8765226 46.9295222,36.8865012 46.519562,36.8965108 L46.519562,34.4266159 L44.9796003,34.4266159 L44.9796003,36.9465279 C44.413422,36.9636341 43.7539962,36.9552669 41.8897293,36.9465279 L41.8897293,38.5864308 C43.1055717,38.564924 43.7434908,38.4867995 43.8896683,39.2663716 L43.8896683,46.1661239 C43.7968547,46.7846435 43.3018283,46.6955796 42.1997174,46.6760872 L41.8897293,48.5060178 C44.6975648,48.5060178 44.9796313,48.5160274 44.9796313,48.5160274 L44.9796313,50.6740439 L46.519593,50.6740439 Z M46.5495908,41.7662953 L46.5495908,38.6964125 C47.4195593,38.6964125 50.1394466,38.4264629 50.1394466,40.2363742 C50.1394466,41.9663016 47.4195903,41.7662953 46.5495908,41.7662953 Z M46.5495908,46.6860969 L46.5495908,43.306257 C47.5895368,43.306257 50.7741427,43.0162572 50.7741427,44.9962079 C50.7741427,46.9060914 47.5895368,46.6860969 46.5495908,46.6860969 Z","id","B","fill-rule","nonzero","transform","translate(47.863077, 42.550330) rotate(14.000000) translate(-47.863077, -42.550330) ",1,"fill-color-29"],["fxFlex","30","viewBox","0 0 200 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopOut_Step05","transform","translate(-542.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step05","transform","translate(542.000000, 210.000000)"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-11"],["id","Rectangle","x","1.34483737","y","60.660286","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","67.352783","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","31.345208","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","38.0377051","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","2.03013005","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","8.72460769","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Rectangle","x","7.80560248","y","67.352783","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","38.0377051","width","33.2298507","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","8.72460769","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.93434243",1,"fill-color-31"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","45.3719212","r","7.93434243"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","74.6850186","r","7.93434243"],["id","Group-16","transform","translate(55.804478, 34.674627)"],["id","Group-29","transform","translate(0.310627, 0.751284)"],["id","Group"],["d","M132.777455,1.04124409 L82.2582659,1.04124409 L82.2582659,0 L59.3509036,0 L59.3509036,1.04124409 L8.62346042,1.04124409 C7.71715136,1.04124358 6.84796221,1.40127322 6.20710493,2.0421305 C5.56624765,2.68298778 5.20621852,3.55217693 5.20621852,4.45848599 L5.20621852,73.6347918 C5.20621852,74.5411031 5.56624437,75.4102953 6.2071016,76.0511558 C6.84795882,76.6920163 7.71714912,77.0520512 8.62346042,77.0520512 L132.777455,77.0520512 C134.664749,77.0520512 136.194697,75.522091 136.194697,73.6347977 L136.194697,4.45848599 C136.194697,3.55217693 135.834668,2.68298778 135.193811,2.0421305 C134.552953,1.40127322 133.683764,1.04124358 132.777455,1.04124409 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.78769098","y","7.08045867","width","121.825532","height","68.7220946",1,"fill-color-7"],["id","Path","opacity","0.306775484","points","96.7732181 75.8025901 9.78772787 75.8025901 9.78772787 7.08050333",1,"fill-color-27"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary-darker"],["d","M14.5668332,29.1332406 C8.67527117,29.1332406 3.36383033,25.5842492 1.10922733,20.1411555 C-1.14537566,14.6980619 0.100864684,8.43279022 4.26682842,4.26682704 C8.43279215,0.100863866 14.698064,-1.14537564 20.1411573,1.10922807 C25.5842507,3.36383179 29.1332406,8.67527311 29.1332406,14.5668351 C29.124133,22.607864 22.6078621,29.1241341 14.5668332,29.1332406 L14.5668332,29.1332406 Z M14.5668332,0.190838576 C6.62718953,0.190838576 0.190836635,6.62719147 0.190836635,14.5668351 C0.190836635,22.5064788 6.62718953,28.9428317 14.5668332,28.9428317 C22.5064768,28.9428317 28.9428297,22.5064788 28.9428297,14.5668351 C28.9338602,6.63090975 22.5027586,0.199808125 14.5668332,0.190838576 L14.5668332,0.190838576 Z","id","Shape"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-5"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-19"],["d","M139.615294,74.5530572 L127.725913,74.5530572 L127.725913,73.6964356 C127.725915,73.6513884 127.708021,73.6081857 127.676168,73.5763323 C127.644315,73.544479 127.601113,73.5265862 127.556065,73.5265862 L123.479706,73.5265862 C123.434659,73.5265862 123.391457,73.5444797 123.359604,73.5763329 C123.327751,73.6081861 123.309857,73.6513886 123.309859,73.6964356 L123.309859,74.5530572 L120.762134,74.5530572 L120.762134,73.6964356 C120.762135,73.6513886 120.744241,73.6081861 120.712388,73.5763329 C120.680536,73.5444797 120.637333,73.5265862 120.592286,73.5265862 L116.515927,73.5265862 C116.47088,73.5265862 116.427677,73.5444789 116.395824,73.5763322 C116.36397,73.6081855 116.346076,73.6513882 116.346078,73.6964356 L116.346078,74.5530572 L113.798355,74.5530572 L113.798355,73.6964356 C113.798356,73.6513882 113.780462,73.6081855 113.748609,73.5763322 C113.716755,73.5444789 113.673553,73.5265862 113.628505,73.5265862 L109.552146,73.5265862 C109.507099,73.5265862 109.463897,73.5444797 109.432044,73.5763329 C109.400191,73.6081861 109.382297,73.6513886 109.382299,73.6964356 L109.382299,74.5530572 L106.834574,74.5530572 L106.834574,73.6964356 C106.834575,73.6513886 106.816681,73.6081861 106.784828,73.5763329 C106.752975,73.5444797 106.709773,73.5265862 106.664726,73.5265862 L102.588363,73.5265862 C102.543316,73.5265862 102.500113,73.544479 102.46826,73.5763323 C102.436407,73.6081857 102.418513,73.6513884 102.418516,73.6964356 L102.418516,74.5530572 L99.8707946,74.5530572 L99.8707946,73.6964356 C99.8707961,73.6513882 99.8529018,73.6081855 99.8210486,73.5763322 C99.7891953,73.5444789 99.7459925,73.5265862 99.7009452,73.5265862 L95.6245878,73.5265862 C95.5795404,73.5265862 95.5363377,73.5444789 95.5044844,73.5763322 C95.4726311,73.6081855 95.4547369,73.6513882 95.4547384,73.6964356 L95.4547384,74.5530572 L92.9070135,74.5530572 L92.9070135,73.6964356 C92.9070151,73.6513886 92.889121,73.6081861 92.8572682,73.5763329 C92.8254153,73.5444797 92.7822131,73.5265862 92.7371661,73.5265862 L88.6608067,73.5265862 C88.6157597,73.5265862 88.5725575,73.5444797 88.5407046,73.5763329 C88.5088518,73.6081861 88.4909577,73.6513886 88.4909593,73.6964356 L88.4909593,74.5530572 L85.9432383,74.5530572 L85.9432383,73.6964356 C85.9432399,73.6513886 85.9253458,73.6081861 85.893493,73.5763329 C85.8616401,73.5444797 85.8184379,73.5265862 85.7733909,73.5265862 L53.8419073,73.5265862 C53.7968603,73.5265862 53.7536581,73.5444797 53.7218052,73.5763329 C53.6899524,73.6081861 53.6720584,73.6513886 53.6720599,73.6964356 L53.6720599,74.5530572 L51.124335,74.5530572 L51.124335,73.6964356 C51.1243366,73.6513882 51.1064423,73.6081855 51.074589,73.5763322 C51.0427358,73.5444789 50.999533,73.5265862 50.9544857,73.5265862 L46.8781379,73.5265862 C46.8330906,73.5265862 46.7898879,73.5444789 46.7580346,73.5763322 C46.7261813,73.6081855 46.708287,73.6513882 46.7082886,73.6964356 L46.7082886,74.5530572 L44.160554,74.5530572 L44.160554,73.6964356 C44.1605561,73.6513884 44.1426622,73.6081857 44.1108092,73.5763323 C44.0789563,73.544479 44.0357537,73.5265862 43.9907066,73.5265862 L39.9143472,73.5265862 C39.8693002,73.5265862 39.8260979,73.5444797 39.7942451,73.5763329 C39.7623922,73.6081861 39.7444982,73.6513886 39.7444998,73.6964356 L39.7444998,74.5530572 L37.1967749,74.5530572 L37.1967749,73.6964356 C37.1967764,73.6513886 37.1788824,73.6081861 37.1470296,73.5763329 C37.1151767,73.5444797 37.0719745,73.5265862 37.0269275,73.5265862 L32.9505681,73.5265862 C32.9055208,73.5265862 32.862318,73.5444789 32.8304647,73.5763322 C32.7986115,73.6081855 32.7807172,73.6513882 32.7807187,73.6964356 L32.7807187,74.5530572 L30.2329958,74.5530572 L30.2329958,73.6964356 C30.2329973,73.6513882 30.215103,73.6081855 30.1832498,73.5763322 C30.1513965,73.5444789 30.1081938,73.5265862 30.0631464,73.5265862 L25.986787,73.5265862 C25.94174,73.5265862 25.8985378,73.5444797 25.866685,73.5763329 C25.8348321,73.6081861 25.8169381,73.6513886 25.8169396,73.6964356 L25.8169396,74.5530572 L23.2692109,74.5530572 L23.2692109,73.6964356 C23.2692124,73.6513886 23.2513184,73.6081861 23.2194655,73.5763329 C23.1876127,73.5444797 23.1444104,73.5265862 23.0993634,73.5265862 L19.0230079,73.5265862 C18.9779608,73.5265862 18.9347582,73.544479 18.9029053,73.5763323 C18.8710523,73.6081857 18.8531585,73.6513884 18.8531605,73.6964356 L18.8531605,74.5530572 L16.3054357,74.5530572 L16.3054357,73.6964356 C16.3054372,73.6513882 16.2875429,73.6081855 16.2556896,73.5763322 C16.2238364,73.5444789 16.1806336,73.5265862 16.1355863,73.5265862 L12.0592288,73.5265862 C12.0141815,73.5265862 11.9709788,73.5444789 11.9391255,73.5763322 C11.9072722,73.6081855 11.8893779,73.6513882 11.8893795,73.6964356 L11.8893795,74.5530572 L4.07635746,74.5530572 C1.82504753,74.5530594 0,76.3781067 0,78.6294166 L0,80.4726504 C0,82.7239563 1.82505163,84.5489982 4.07635746,84.5489982 L139.615294,84.5489982 C141.8666,84.5489982 143.691654,82.7239566 143.691654,80.4726504 L143.691654,78.6294166 C143.691654,76.3781064 141.866605,74.5530594 139.615294,74.5530572 Z","id","Path",1,"fill-color-20"],["id","Group","transform","translate(14.563343, 25.890388)"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary-darker"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M54.316416,4.55250111 L54.316416,3.34665629 C54.316416,1.49819202 52.8172532,0 50.9687888,0 L3.34762718,0 C1.49916283,0 0,1.49819202 0,3.34665629 L0,5.56999336 L54.316416,4.55250111 Z","id","Path",1,"fill-color-16"],["d","M55.6018738,5.73601547 L55.6018738,39.231705 C55.6018738,39.9999836 55.2966099,40.7367813 54.7532639,41.2799452 C54.2099179,41.8231092 53.4730179,42.1278687 52.7047393,42.1278687 L2.89810531,42.1278687 C1.29897753,42.1273325 0.00291266866,40.8308329 0.00291266866,39.231705 L0.00291266866,2.35926161 C1.43012031,2.88936731 1.43012031,2.88936731 2.89810531,2.84470639 L52.7047393,2.84470639 C54.3025103,2.84470316 55.5986611,4.13824772 55.6018738,5.73601547 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-19"],["d","M55.4601239,18.5459322 L55.4601239,29.2577567 L45.0716057,29.2577567 C42.141738,29.2183086 39.7873207,26.8319777 39.7873207,23.9018444 C39.7873207,20.9717112 42.141738,18.5853803 45.0716057,18.5459322 L55.4601239,18.5459322 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-17"],["id","Oval","opacity","0.1","cx","45.7114219","cy","23.9023299","r","2.08838343",1,"fill-color-27"],["id","Oval","cx","45.8531718","cy","23.6188301","r","2.08838343",1,"fill-color-28"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-30"]],template:function(it,bt){if(1&it&&d.DNE(0,Ct,1,0,"ng-container",5)(1,Mt,32,5,"ng-template",null,0,d.C5r)(3,lt,51,5,"ng-template",null,1,d.C5r)(5,Pe,74,5,"ng-template",null,2,d.C5r)(7,Ht,53,5,"ng-template",null,3,d.C5r)(9,ct,66,5,"ng-template",null,4,d.C5r),2&it){const ut=d.sdS(2),jt=d.sdS(4),ai=d.sdS(6),pi=d.sdS(8),ki=d.sdS(10);d.Y8G("ngTemplateOutlet",1===bt.stepNumber?ut:2===bt.stepNumber?jt:3===bt.stepNumber?ai:4===bt.stepNumber?pi:ki)}},dependencies:[M.YU,M.T3,G.Lc,G.dh,me.DJ,me.sA,me.UI,Te.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[_e.k]}}))}return Tt(),Ze})();const ze=["stepper"],Z=()=>[1,2,3,4,5],J=(Tt,Ze)=>({"dot-primary":Tt,"dot-primary-lighter":Ze});function fe(Tt,Ze){if(1&Tt&&(d.j41(0,"div",49)(1,"p",50)(2,"strong"),d.EFF(3,"Channel Peer:\xa0"),d.k0s(),d.EFF(4),d.nI1(5,"titlecase"),d.k0s(),d.j41(6,"p",51)(7,"strong"),d.EFF(8,"Channel ID:\xa0"),d.k0s(),d.EFF(9),d.k0s(),d.nrm(10,"p",51),d.k0s()),2&Tt){const Ve=d.XpG(2);d.R7$(4),d.JRh(d.bMT(5,2,Ve.channel.remote_alias)),d.R7$(5),d.JRh(Ve.channel.chan_id)}}function Ie(Tt,Ze){if(1&Tt&&d.EFF(0),2&Tt){const Ve=d.XpG(2);d.JRh(Ve.inputFormLabel)}}function ht(Tt,Ze){1&Tt&&(d.j41(0,"mat-error"),d.EFF(1,"Amount is required."),d.k0s())}function li(Tt,Ze){if(1&Tt&&(d.j41(0,"mat-error"),d.EFF(1),d.nI1(2,"number"),d.k0s()),2&Tt){const Ve=d.XpG(2);d.R7$(),d.SpI("Amount must be greater than or equal to ",d.bMT(2,1,Ve.minQuote.amount),".")}}function Qt(Tt,Ze){if(1&Tt&&(d.j41(0,"mat-error"),d.EFF(1),d.nI1(2,"number"),d.k0s()),2&Tt){const Ve=d.XpG(2);d.R7$(),d.SpI("Amount must be less than or equal to ",d.bMT(2,1,Ve.maxQuote.amount),".")}}function di(Tt,Ze){1&Tt&&(d.j41(0,"mat-error"),d.EFF(1,"Confirmation target is required."),d.k0s())}function kt(Tt,Ze){1&Tt&&(d.j41(0,"mat-error"),d.EFF(1,"Confirmation target must be a positive number."),d.k0s())}function Rt(Tt,Ze){1&Tt&&(d.j41(0,"mat-error"),d.EFF(1,"Percentage is required."),d.k0s())}function le(Tt,Ze){1&Tt&&(d.j41(0,"mat-error"),d.EFF(1,"Percentage must be a positive number."),d.k0s())}function te(Tt,Ze){if(1&Tt&&(d.j41(0,"mat-form-field",51)(1,"mat-label"),d.EFF(2,"Max Off-chain Routing Fee (%)"),d.k0s(),d.nrm(3,"input",52),d.DNE(4,Rt,2,0,"mat-error",26)(5,le,2,0,"mat-error",26),d.k0s()),2&Tt){const Ve=d.XpG(2);d.R7$(3),d.Y8G("step",1),d.R7$(),d.Y8G("ngIf",null==Ve.inputFormGroup.controls.routingFeePercent.errors?null:Ve.inputFormGroup.controls.routingFeePercent.errors.required),d.R7$(),d.Y8G("ngIf",null==Ve.inputFormGroup.controls.routingFeePercent.errors?null:Ve.inputFormGroup.controls.routingFeePercent.errors.min)}}function ce(Tt,Ze){1&Tt&&(d.j41(0,"div",53)(1,"mat-slide-toggle",54),d.EFF(2,"Fast"),d.k0s(),d.j41(3,"mat-icon",55),d.EFF(4,"info_outline"),d.k0s()())}function se(Tt,Ze){if(1&Tt&&d.EFF(0),2&Tt){const Ve=d.XpG(2);d.JRh(Ve.quoteFormLabel)}}function ke(Tt,Ze){1&Tt&&(d.j41(0,"p",56)(1,"mat-icon",57),d.EFF(2,"close"),d.k0s(),d.EFF(3,"Local balance amount is insufficient for swap."),d.k0s())}function Ue(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"button",58),d.bIt("click",function(){w.eBV(Ve);const it=d.XpG(2);return w.Njj(it.onValidateAmount())}),d.EFF(1,"Next"),d.k0s()}}function Ne(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"button",59),d.bIt("click",function(){w.eBV(Ve);const it=d.XpG(2);return w.Njj(it.onLoop())}),d.EFF(1),d.k0s()}if(2&Tt){const Ve=d.XpG(2);d.R7$(),d.SpI("Initiate ",Ve.loopDirectionCaption)}}function Kt(Tt,Ze){if(1&Tt&&d.EFF(0),2&Tt){const Ve=d.XpG(3);d.JRh(Ve.addressFormLabel)}}function yt(Tt,Ze){1&Tt&&(d.j41(0,"mat-error"),d.EFF(1,"Address is required."),d.k0s())}function Vt(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"mat-step",16)(1,"form",17),d.DNE(2,Kt,1,1,"ng-template",18),d.j41(3,"div",60)(4,"mat-radio-group",61),d.bIt("change",function(it){w.eBV(Ve);const bt=d.XpG(2);return w.Njj(bt.onAddressTypeChange(it))}),d.j41(5,"mat-radio-button",62),d.EFF(6,"Node Local Address"),d.k0s(),d.j41(7,"mat-radio-button",63),d.EFF(8,"External Address"),d.k0s()(),d.j41(9,"mat-form-field",64)(10,"mat-label"),d.EFF(11,"Address"),d.k0s(),d.nrm(12,"input",65),d.DNE(13,yt,2,0,"mat-error",26),d.k0s()(),d.j41(14,"div",30)(15,"button",66),d.bIt("click",function(){w.eBV(Ve);const it=d.XpG(2);return w.Njj(it.onLoop())}),d.EFF(16),d.k0s()()()()}if(2&Tt){const Ve=d.XpG(2);d.Y8G("stepControl",Ve.addressFormGroup)("editable",Ve.flgEditable),d.R7$(),d.Y8G("formGroup",Ve.addressFormGroup),d.R7$(11),d.Y8G("required","external"===Ve.addressFormGroup.controls.addressType.value),d.R7$(),d.Y8G("ngIf",null==Ve.addressFormGroup.controls.address.errors?null:Ve.addressFormGroup.controls.address.errors.required),d.R7$(3),d.SpI("Initiate ",Ve.loopDirectionCaption)}}function Zt(Tt,Ze){if(1&Tt&&d.EFF(0),2&Tt){const Ve=d.XpG(2);d.SpI("",Ve.loopDirectionCaption," Status")}}function ti(Tt,Ze){if(1&Tt&&(d.j41(0,"mat-icon",67),d.EFF(1),d.k0s()),2&Tt){const Ve=d.XpG(2);d.R7$(),d.JRh(Ve.loopStatus&&null!=Ve.loopStatus&&Ve.loopStatus.id_bytes?"check":"close")}}function Ye(Tt,Ze){1&Tt&&d.nrm(0,"div")}function Nt(Tt,Ze){1&Tt&&d.nrm(0,"mat-progress-bar",68)}function Et(Tt,Ze){if(1&Tt&&(d.j41(0,"h4",69),d.EFF(1),d.k0s()),2&Tt){const Ve=d.XpG(2);d.R7$(),d.JRh(Ve.loopStatus&&Ve.loopStatus.error?Ve.loopDirectionCaption+" failed.":Ve.loopStatus&&Ve.loopStatus.id_bytes&&Ve.channel?Ve.loopDirectionCaption+" request placed successfully. You can check the status of the request on the 'Loop' menu.":Ve.loopDirectionCaption+" request placed successfully.")}}function Jt(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"button",70),d.bIt("click",function(){w.eBV(Ve);const it=d.XpG(2);return w.Njj(it.goToLoop())}),d.EFF(1,"Check Status"),d.k0s()}}function qe(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"button",71),d.bIt("click",function(){w.eBV(Ve);const it=d.XpG(2);return w.Njj(it.onRestart())}),d.EFF(1,"Start Again"),d.k0s()}}function $e(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),d.EFF(5),d.k0s()(),d.j41(6,"div",9)(7,"button",10),d.bIt("click",function(){w.eBV(Ve);const it=d.XpG();return w.Njj(it.showInfo())}),d.EFF(8,"?"),d.k0s(),d.j41(9,"button",11),d.bIt("click",function(){w.eBV(Ve);const it=d.XpG();return w.Njj(it.onClose())}),d.EFF(10,"X"),d.k0s()()(),d.j41(11,"mat-card-content",12)(12,"div",13),d.DNE(13,fe,11,4,"div",14),d.j41(14,"mat-vertical-stepper",15,1),d.bIt("selectionChange",function(it){w.eBV(Ve);const bt=d.XpG();return w.Njj(bt.stepSelectionChanged(it))}),d.j41(16,"mat-step",16)(17,"form",17),d.DNE(18,Ie,1,1,"ng-template",18),d.j41(19,"div",19),d.nrm(20,"rtl-loop-quote",20)(21,"rtl-loop-quote",21),d.k0s(),d.j41(22,"div",22)(23,"mat-form-field",23)(24,"mat-label"),d.EFF(25,"Amount"),d.k0s(),d.nrm(26,"input",24),d.j41(27,"mat-hint"),d.EFF(28),d.nI1(29,"number"),d.nI1(30,"number"),d.k0s(),d.j41(31,"span",25),d.EFF(32,"Sats"),d.k0s(),d.DNE(33,ht,2,0,"mat-error",26)(34,li,3,3,"mat-error",26)(35,Qt,3,3,"mat-error",26),d.k0s(),d.j41(36,"mat-form-field",23)(37,"mat-label"),d.EFF(38,"Sweep Confirmation Target"),d.k0s(),d.nrm(39,"input",27),d.DNE(40,di,2,0,"mat-error",26)(41,kt,2,0,"mat-error",26),d.k0s(),d.DNE(42,te,6,3,"mat-form-field",28),d.k0s(),d.DNE(43,ce,5,0,"div",29),d.j41(44,"div",30)(45,"button",31),d.bIt("click",function(){w.eBV(Ve);const it=d.XpG();return w.Njj(it.onEstimateQuote())}),d.EFF(46,"Estimate Quote"),d.k0s()()()(),d.j41(47,"mat-step",16)(48,"form",17),d.DNE(49,se,1,1,"ng-template",18),d.nrm(50,"rtl-loop-quote",32),d.DNE(51,ke,4,0,"p",33),d.j41(52,"div",30),d.DNE(53,Ue,2,0,"button",34)(54,Ne,2,1,"button",35),d.k0s()()(),d.DNE(55,Vt,17,6,"mat-step",36),d.j41(56,"mat-step",37)(57,"form",17),d.DNE(58,Zt,1,1,"ng-template",18),d.j41(59,"div",38)(60,"mat-expansion-panel",39)(61,"mat-expansion-panel-header")(62,"mat-panel-title")(63,"span",40),d.EFF(64),d.DNE(65,ti,2,1,"mat-icon",41),d.k0s()()(),d.DNE(66,Ye,1,0,"div",42),d.k0s(),d.DNE(67,Nt,1,0,"mat-progress-bar",43),d.k0s(),d.DNE(68,Et,2,1,"h4",44),d.j41(69,"div",30),d.DNE(70,Jt,2,0,"button",45)(71,qe,2,0,"button",46),d.k0s()()()(),d.j41(72,"div",47)(73,"button",48),d.EFF(74,"Close"),d.k0s()()()()()()}if(2&Tt){const Ve=d.XpG(),Fe=d.sdS(2);d.Y8G("@opacityAnimation",void 0),d.R7$(3),d.Y8G("ngClass",Ve.screenSize===Ve.screenSizeEnum.XS||Ve.screenSize===Ve.screenSizeEnum.SM?"flex-83":"flex-91"),d.R7$(2),d.JRh(Ve.channel?"Channel "+Ve.loopDirectionCaption:Ve.loopDirectionCaption),d.R7$(),d.Y8G("ngClass",Ve.screenSize===Ve.screenSizeEnum.XS||Ve.screenSize===Ve.screenSizeEnum.SM?"flex-17":"flex-9"),d.R7$(7),d.Y8G("ngIf",Ve.channel),d.R7$(),d.Y8G("linear",!0),d.R7$(2),d.Y8G("stepControl",Ve.inputFormGroup)("editable",Ve.flgEditable),d.R7$(),d.Y8G("formGroup",Ve.inputFormGroup),d.R7$(3),d.Y8G("quote",Ve.minQuote)("panelExpanded",!1)("showPanel",!0),d.R7$(),d.Y8G("quote",Ve.maxQuote)("panelExpanded",!1)("showPanel",!0),d.R7$(2),d.Y8G("ngClass",Ve.direction===Ve.LoopTypeEnum.LOOP_OUT?"flex-35":"flex-48"),d.R7$(3),d.Y8G("step",1e3),d.R7$(2),d.Lme("Range: ",d.bMT(29,49,Ve.minQuote.amount),"-",d.bMT(30,51,Ve.maxQuote.amount)),d.R7$(5),d.Y8G("ngIf",null==Ve.inputFormGroup.controls.amount.errors?null:Ve.inputFormGroup.controls.amount.errors.required),d.R7$(),d.Y8G("ngIf",null==Ve.inputFormGroup.controls.amount.errors?null:Ve.inputFormGroup.controls.amount.errors.min),d.R7$(),d.Y8G("ngIf",null==Ve.inputFormGroup.controls.amount.errors?null:Ve.inputFormGroup.controls.amount.errors.max),d.R7$(),d.Y8G("ngClass",Ve.direction===Ve.LoopTypeEnum.LOOP_OUT?"flex-30":"flex-48"),d.R7$(3),d.Y8G("step",1),d.R7$(),d.Y8G("ngIf",null==Ve.inputFormGroup.controls.sweepConfTarget.errors?null:Ve.inputFormGroup.controls.sweepConfTarget.errors.required),d.R7$(),d.Y8G("ngIf",null==Ve.inputFormGroup.controls.sweepConfTarget.errors?null:Ve.inputFormGroup.controls.sweepConfTarget.errors.min),d.R7$(),d.Y8G("ngIf",Ve.direction===Ve.LoopTypeEnum.LOOP_OUT),d.R7$(),d.Y8G("ngIf",Ve.direction===Ve.LoopTypeEnum.LOOP_OUT),d.R7$(4),d.Y8G("stepControl",Ve.quoteFormGroup)("editable",Ve.flgEditable),d.R7$(),d.Y8G("formGroup",Ve.quoteFormGroup),d.R7$(2),d.Y8G("quote",Ve.quote)("showPanel",!1),d.R7$(),d.Y8G("ngIf",Ve.inputFormGroup.controls.amount.value>Ve.localBalanceToCompare),d.R7$(2),d.Y8G("ngIf",Ve.direction===Ve.LoopTypeEnum.LOOP_OUT),d.R7$(),d.Y8G("ngIf",Ve.direction===Ve.LoopTypeEnum.LOOP_IN),d.R7$(),d.Y8G("ngIf",Ve.direction===Ve.LoopTypeEnum.LOOP_OUT),d.R7$(),d.Y8G("stepControl",Ve.statusFormGroup),d.R7$(),d.Y8G("formGroup",Ve.statusFormGroup),d.R7$(3),d.Y8G("expanded",!!Ve.loopStatus),d.R7$(4),d.JRh(Ve.loopStatus?Ve.loopStatus.id_bytes?Ve.loopDirectionCaption+" request details":Ve.loopDirectionCaption+" error details":"Waiting for "+Ve.loopDirectionCaption+" request..."),d.R7$(),d.Y8G("ngIf",Ve.loopStatus),d.R7$(),d.Y8G("ngIf",!Ve.loopStatus)("ngIfElse",Fe),d.R7$(),d.Y8G("ngIf",!Ve.loopStatus),d.R7$(),d.Y8G("ngIf",Ve.loopStatus),d.R7$(2),d.Y8G("ngIf",Ve.loopStatus&&Ve.loopStatus.id_bytes&&Ve.channel),d.R7$(),d.Y8G("ngIf",Ve.loopStatus&&(Ve.loopStatus.error||!Ve.loopStatus.id_bytes)),d.R7$(2),d.Y8G("mat-dialog-close",!1)}}function tt(Tt,Ze){if(1&Tt&&d.nrm(0,"rtl-loop-status",72),2&Tt){const Ve=d.XpG();d.Y8G("loopStatus",Ve.loopStatus)}}function vi(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"rtl-loop-out-info-graphics",88),d.mxI("stepNumberChange",function(it){w.eBV(Ve);const bt=d.XpG(2);return d.DH7(bt.stepNumber,it)||(bt.stepNumber=it),w.Njj(it)}),d.k0s()}if(2&Tt){const Ve=d.XpG(2);d.Y8G("animationDirection",Ve.animationDirection),d.R50("stepNumber",Ve.stepNumber)}}function ei(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"rtl-loop-in-info-graphics",88),d.mxI("stepNumberChange",function(it){w.eBV(Ve);const bt=d.XpG(2);return d.DH7(bt.stepNumber,it)||(bt.stepNumber=it),w.Njj(it)}),d.k0s()}if(2&Tt){const Ve=d.XpG(2);d.Y8G("animationDirection",Ve.animationDirection),d.R50("stepNumber",Ve.stepNumber)}}function ci(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"span",89),d.bIt("click",function(){const it=w.eBV(Ve).$implicit,bt=d.XpG(2);return w.Njj(bt.onStepChanged(it))}),d.nrm(1,"p",90),d.k0s()}if(2&Tt){const Ve=Ze.$implicit,Fe=d.XpG(2);d.R7$(),d.Y8G("ngClass",d.l_i(1,J,Fe.stepNumber===Ve,Fe.stepNumber!==Ve))}}function Hi(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"button",91),d.bIt("click",function(){w.eBV(Ve);const it=d.XpG(2);return w.Njj(it.onReadMore())}),d.EFF(1,"Read More"),d.k0s()}}function oi(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"button",92),d.bIt("click",function(){w.eBV(Ve);const it=d.XpG(2);return w.Njj(it.onStepChanged(4))}),d.EFF(1,"Back"),d.k0s()}}function ui(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"button",93),d.bIt("click",function(){w.eBV(Ve);const it=d.XpG(2);return it.flgShowInfo=!1,w.Njj(it.stepNumber=1)}),d.EFF(1,"Close"),d.k0s()}}function ln(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"button",94),d.bIt("click",function(){w.eBV(Ve);const it=d.XpG(2);return it.flgShowInfo=!1,w.Njj(it.stepNumber=1)}),d.EFF(1,"Close"),d.k0s()}}function nn(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"button",95),d.bIt("click",function(){w.eBV(Ve);const it=d.XpG(2);return w.Njj(it.onStepChanged(it.stepNumber-1))}),d.EFF(1,"Back"),d.k0s()}}function dn(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"button",96),d.bIt("click",function(){w.eBV(Ve);const it=d.XpG(2);return w.Njj(it.onStepChanged(it.stepNumber+1))}),d.EFF(1,"Next"),d.k0s()}}function zn(Tt,Ze){if(1&Tt){const Ve=d.RV6();d.j41(0,"div",73)(1,"div",19)(2,"mat-card-header",74)(3,"div",75),d.nrm(4,"span",8),d.k0s(),d.j41(5,"div",76)(6,"button",11),d.bIt("click",function(){w.eBV(Ve);const it=d.XpG();return it.flgShowInfo=!1,w.Njj(it.stepNumber=1)}),d.EFF(7,"X"),d.k0s()()(),d.j41(8,"mat-card-content",77),d.DNE(9,vi,1,2,"rtl-loop-out-info-graphics",78)(10,ei,1,2,"rtl-loop-in-info-graphics",78),d.k0s(),d.j41(11,"div",79),d.DNE(12,ci,2,4,"span",80),d.k0s(),d.j41(13,"div",81),d.DNE(14,Hi,2,0,"button",82)(15,oi,2,0,"button",83)(16,ui,2,0,"button",84)(17,ln,2,0,"button",85)(18,nn,2,0,"button",86)(19,dn,2,0,"button",87),d.k0s()()()}if(2&Tt){const Ve=d.XpG();d.Y8G("@opacityAnimation",void 0),d.R7$(9),d.Y8G("ngIf",Ve.direction===Ve.LoopTypeEnum.LOOP_OUT),d.R7$(),d.Y8G("ngIf",Ve.direction===Ve.LoopTypeEnum.LOOP_IN),d.R7$(2),d.Y8G("ngForOf",d.lJ4(10,Z)),d.R7$(2),d.Y8G("ngIf",5===Ve.stepNumber),d.R7$(),d.Y8G("ngIf",5===Ve.stepNumber),d.R7$(),d.Y8G("ngIf",5===Ve.stepNumber),d.R7$(),d.Y8G("ngIf",Ve.stepNumber<5),d.R7$(),d.Y8G("ngIf",Ve.stepNumber>1&&Ve.stepNumber<5),d.R7$(),d.Y8G("ngIf",Ve.stepNumber<5)}}let It=(()=>{var Tt;class Ze{constructor(Fe,it,bt,ut,jt,ai,pi,ki,Ki){this.dialogRef=Fe,this.data=it,this.store=bt,this.loopService=ut,this.formBuilder=jt,this.decimalPipe=ai,this.logger=pi,this.router=ki,this.commonService=Ki,this.faInfoCircle=c.iW_,this.LoopTypeEnum=T.C7,this.direction=T.C7.LOOP_OUT,this.loopDirectionCaption="Loop out",this.loopStatus=null,this.inputFormLabel="Amount to loop out",this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address",this.prepayRoutingFee=36,this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=T.f7,this.animationDirection="forward",this.flgEditable=!0,this.localBalanceToCompare=null,this.unSubs=[new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.channel=this.data.channel,this.minQuote=this.data.minQuote?this.data.minQuote:{},this.maxQuote=this.data.maxQuote?this.data.maxQuote:{},this.direction=this.data.direction||T.C7.LOOP_OUT,this.loopDirectionCaption=this.direction===T.C7.LOOP_IN?"Loop in":"Loop out",this.inputFormLabel="Amount to "+this.loopDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.minQuote.amount,[i.k0.required,i.k0.min(this.minQuote.amount||0),i.k0.max(this.maxQuote.amount||0)]],sweepConfTarget:[6,[i.k0.required,i.k0.min(1)]],routingFeePercent:[2,[i.k0.required,i.k0.min(0)]],fast:[!1,[i.k0.required]]}),this.inputFormGroup.setErrors({Invalid:!0}),this.quoteFormGroup=this.formBuilder.group({}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[i.k0.required]],address:[{value:"",disabled:!0}]}),this.direction===T.C7.LOOP_OUT&&this.addressFormGroup.setErrors({Invalid:!0}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges(),this.store.select(g.BM).pipe((0,p.Q)(this.unSubs[6])).subscribe(Fe=>{this.localBalanceToCompare=this.channel&&this.channel.local_balance?+this.channel.local_balance:Fe.lightningBalance&&Fe.lightningBalance.local?+Fe.lightningBalance.local:null})}onFormValueChanges(){this.inputFormGroup.valueChanges.pipe((0,p.Q)(this.unSubs[4])).subscribe(Fe=>{this.inputFormGroup.setErrors({Invalid:!0})}),this.direction===T.C7.LOOP_OUT&&this.addressFormGroup.valueChanges.pipe((0,p.Q)(this.unSubs[5])).subscribe(Fe=>{this.addressFormGroup.setErrors({Invalid:!0})})}onAddressTypeChange(Fe){"external"===Fe.value?(this.addressFormGroup.controls.address.setValidators([i.k0.required]),this.addressFormGroup.controls.address.markAsTouched(),this.addressFormGroup.controls.address.enable()):(this.addressFormGroup.controls.address.setValidators(null),this.addressFormGroup.controls.address.markAsPristine(),this.addressFormGroup.controls.address.disable(),this.addressFormGroup.controls.address.setValue("")),this.addressFormGroup.setErrors({Invalid:!0})}onValidateAmount(){this.localBalanceToCompare&&this.inputFormGroup.controls.amount.value<=this.localBalanceToCompare&&this.stepper.next()}onLoop(){if(!this.inputFormGroup.controls.amount.value||this.minQuote.amount&&this.inputFormGroup.controls.amount.valuethis.maxQuote.amount||!this.inputFormGroup.controls.sweepConfTarget.value||this.inputFormGroup.controls.sweepConfTarget.value<2||this.direction===T.C7.LOOP_OUT&&(!this.inputFormGroup.controls.routingFeePercent.value||this.inputFormGroup.controls.routingFeePercent.value<0)||this.direction===T.C7.LOOP_OUT&&"external"===this.addressFormGroup.controls.addressType.value&&(!this.addressFormGroup.controls.address.value||""===this.addressFormGroup.controls.address.value.trim()))return!0;if(this.flgEditable=!1,this.stepper.selected?.stepControl.setErrors(null),this.stepper.next(),this.direction===T.C7.LOOP_IN)this.loopService.loopIn(this.inputFormGroup.controls.amount.value,+(this.quote.swap_fee_sat||0),+(this.quote.htlc_publish_fee_sat||0),"",!0).pipe((0,p.Q)(this.unSubs[0])).subscribe({next:Fe=>{this.loopStatus=Fe,this.loopService.listSwaps(),this.flgEditable=!0},error:Fe=>{this.loopStatus={error:Fe},this.flgEditable=!0,this.logger.error(Fe)}});else{const Fe=Math.ceil(this.inputFormGroup.controls.amount.value*(this.inputFormGroup.controls.routingFeePercent.value/100)),it="external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"",bt=this.inputFormGroup.controls.fast.value?0:(new Date).getTime()+18e5;this.loopService.loopOut(this.inputFormGroup.controls.amount.value,this.channel&&this.channel.chan_id?this.channel.chan_id:"",this.inputFormGroup.controls.sweepConfTarget.value,Fe,+(this.quote.htlc_sweep_fee_sat||0),this.prepayRoutingFee,+(this.quote.prepay_amt_sat||0),+(this.quote.swap_fee_sat||0),bt,it).pipe((0,p.Q)(this.unSubs[1])).subscribe({next:ut=>{this.loopStatus=ut,this.loopService.listSwaps(),this.flgEditable=!0},error:ut=>{this.loopStatus={error:ut},this.flgEditable=!0,this.logger.error(ut)}})}}onEstimateQuote(){if(!this.inputFormGroup.controls.amount.value||this.minQuote.amount&&this.inputFormGroup.controls.amount.valuethis.maxQuote.amount||!this.inputFormGroup.controls.sweepConfTarget.value||this.inputFormGroup.controls.sweepConfTarget.value<2)return!0;const Fe=this.inputFormGroup.controls.fast.value?0:(new Date).getTime()+18e5;this.direction===T.C7.LOOP_IN?this.loopService.getLoopInQuote(this.inputFormGroup.controls.amount.value,this.inputFormGroup.controls.sweepConfTarget.value,Fe).pipe((0,p.Q)(this.unSubs[2])).subscribe(it=>{this.quote=it,this.quote.off_chain_swap_routing_fee_percentage=this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:2}):this.loopService.getLoopOutQuote(this.inputFormGroup.controls.amount.value,this.inputFormGroup.controls.sweepConfTarget.value,Fe).pipe((0,p.Q)(this.unSubs[3])).subscribe(it=>{this.quote=it,this.quote.off_chain_swap_routing_fee_percentage=this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:2}),this.stepper.selected?.stepControl.setErrors(null),this.stepper.next()}stepSelectionChanged(Fe){switch(Fe.selectedIndex){case 0:default:this.inputFormLabel="Amount to "+this.loopDirectionCaption,this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.amount.value||this.inputFormGroup.controls.sweepConfTarget.value?this.direction===T.C7.LOOP_IN?this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6):this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6)+" | Percentage: "+(this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:"2")+" | Fast: "+(this.inputFormGroup.controls.fast.value?"Enabled":"Disabled"):"Amount to "+this.loopDirectionCaption,this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address";break;case 2:this.inputFormLabel=this.inputFormGroup.controls.amount.value||this.inputFormGroup.controls.sweepConfTarget.value?this.direction===T.C7.LOOP_IN?this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6):this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6)+" | Fast: "+(this.inputFormGroup.controls.fast.value?"Enabled":"Disabled"):"Amount to "+this.loopDirectionCaption,this.quoteFormLabel=this.quote&&this.quote.swap_fee_sat&&(this.quote.htlc_sweep_fee_sat||this.quote.htlc_publish_fee_sat)&&this.quote.prepay_amt_sat?"Quote confirmed | Estimated Fees: "+this.decimalPipe.transform(+this.quote.swap_fee_sat+ +(this.quote.htlc_sweep_fee_sat?this.quote.htlc_sweep_fee_sat:this.quote.htlc_publish_fee_sat?this.quote.htlc_publish_fee_sat:0))+" Sats":"Quote confirmed",this.addressFormLabel=this.addressFormGroup.controls.addressType.value?"Withdrawal Address | Type: "+this.addressFormGroup.controls.addressType.value:"Withdrawal Address"}(this.direction===T.C7.LOOP_OUT&&1!==Fe.selectedIndex&&Fe.selectedIndex{Fe.next(null),Fe.complete()})}static#e=Tt=()=>(this.\u0275fac=function(it){return new(it||Ze)(d.rXU(S.CP),d.rXU(S.Vh),d.rXU(m.il),d.rXU(P.Q),d.rXU(i.ze),d.rXU(M.QX),d.rXU(j.gP),d.rXU(U.Ix),d.rXU(K.h))},this.\u0275cmp=d.VBU({type:Ze,selectors:[["rtl-loop-modal"]],viewQuery:function(it,bt){if(1&it&&d.GBs(ze,5),2&it){let ut;d.mGM(ut=d.lsd())&&(bt.stepper=ut.first)}},standalone:!1,decls:4,vars:2,consts:[["loopStatusBlock",""],["stepper",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxLayoutAlign","start start",3,"ngClass"],[1,"page-title"],["fxLayoutAlign","space-between end",3,"ngClass"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["class","padding-gap-large","fxLayout","row wrap","fxLayoutAlign","space-between stretch",4,"ngIf"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["termCaption","min",3,"quote","panelExpanded","showPanel"],["termCaption","max",3,"quote","panelExpanded","showPanel"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],[3,"ngClass"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","amount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["matInput","","type","number","tabindex","2","formControlName","sweepConfTarget","required","",3,"step"],["fxFlex","30",4,"ngIf"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center","class","mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","5","type","button",3,"click"],[3,"quote","showPanel"],["fxFlex","100","class","color-warn mt-2","fxLayoutAlign","start center",4,"ngIf"],["mat-button","","color","primary","tabindex","6","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","7","type","button",3,"click",4,"ngIf"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[4,"ngIf","ngIfElse"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxLayoutAlign","start","class","font-bold-500 mt-2",4,"ngIf"],["mat-button","","color","primary","tabindex","12","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","13","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end end"],["mat-button","","color","primary","tabindex","14","type","button","default","",3,"mat-dialog-close"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch",1,"padding-gap-large"],["fxFlex","40"],["fxFlex","30"],["matInput","","type","number","tabindex","3","formControlName","routingFeePercent","required","",3,"step"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center",1,"mt-1"],["tabindex","4","color","primary","formControlName","fast","fxFlex","none"],["matTooltip","Swap immediately (Might end up paying a higher on-chain fee)","matTooltipPosition","above","fxFlex","none",1,"info-icon"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn","mt-2"],[1,"mr-1","icon-small"],["mat-button","","color","primary","tabindex","6","type","button",3,"click"],["mat-button","","color","primary","tabindex","7","type","button",3,"click"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["color","primary","name","addressType","formControlName","addressType","fxFlex","100","fxLayoutAlign","space-between stretch",3,"change"],["fxFlex","48","tabindex","8","value","local"],["fxFlex","48","tabindex","9","value","external"],["fxLayout","column","fxFlex","100",1,"mt-1"],["matInput","","tabindex","10","formControlName","address",3,"required"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-2"],["mat-button","","color","primary","tabindex","12","type","button",3,"click"],["mat-button","","color","primary","tabindex","13","type","button",3,"click"],["fxLayout","column",3,"loopStatus"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"animationDirection","stepNumber","stepNumberChange",4,"ngIf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","15","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["tabindex","21","fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","15","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(it,bt){1&it&&d.DNE(0,$e,75,53,"div",2)(1,tt,1,1,"ng-template",null,0,d.C5r)(3,zn,20,11,"div",3),2&it&&(d.Y8G("ngIf",!bt.flgShowInfo),d.R7$(3),d.Y8G("ngIf",bt.flgShowInfo))},dependencies:[M.YU,M.Sq,M.bT,i.qT,i.me,i.Q0,i.BC,i.cb,i.YS,i.j4,i.JD,S.tx,q.$z,G.m2,G.MM,Q.GK,Q.Z2,Q.WN,$.An,ae.fg,ue.rl,ue.nJ,ue.MV,ue.TL,ue.yw,oe.HM,he.VT,he._g,me.DJ,me.sA,me.UI,Te.PW,D.sG,n.oV,o.V5,o.Ti,o.M6,f.N,B,Be,dt,Ce,M.QX,M.PV],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[e.C]}}))}return Tt(),Ze})()},1636:Ae=>{"use strict";Ae.exports={rE:"6.6.1"}},1756:Ae=>{"use strict";Ae.exports=EvalError},1807:(Ae,ee,l)=>{"use strict";l.d(ee,{O:()=>c});var i=l(71985),t=l(43236),p=l(79470),S=l(28211);function c(e=0,T,g=t.b){let d=-1;return null!=T&&((0,p.m)(T)?g=T:d=T),new i.c(w=>{let m=(0,S.v)(e)?+e-g.now():e;m<0&&(m=0);let P=0;return g.schedule(function(){w.closed||(w.next(P++),0<=d?this.schedule(void 0,d):w.complete())},m)})}},1975:(Ae,ee,l)=>{"use strict";l.d(ee,{Y:()=>j,k:()=>M});var i=l(18617),t=l(17094),p=l(89726),S=l(2615),c=l(73664),e=l(17705),T=l(88968),g=l(49046),d=l(31804),w=l(22466);const m="mat-badge-content";let P=(()=>{class U{static \u0275fac=function(G){return new(G||U)};static \u0275cmp=c.VBU({type:U,selectors:[["ng-component"]],decls:0,vars:0,template:function(G,Q){},styles:[".mat-badge{position:relative}.mat-badge.mat-badge{overflow:visible}.mat-badge-content{position:absolute;text-align:center;display:inline-block;transition:transform 200ms ease-in-out;transform:scale(0.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;box-sizing:border-box;pointer-events:none;background-color:var(--mat-badge-background-color, var(--mat-sys-error));color:var(--mat-badge-text-color, var(--mat-sys-on-error));font-family:var(--mat-badge-text-font, var(--mat-sys-label-small-font));font-weight:var(--mat-badge-text-weight, var(--mat-sys-label-small-weight));border-radius:var(--mat-badge-container-shape, var(--mat-sys-corner-full))}.mat-badge-above .mat-badge-content{bottom:100%}.mat-badge-below .mat-badge-content{top:100%}.mat-badge-before .mat-badge-content{right:100%}[dir=rtl] .mat-badge-before .mat-badge-content{right:auto;left:100%}.mat-badge-after .mat-badge-content{left:100%}[dir=rtl] .mat-badge-after .mat-badge-content{left:auto;right:100%}@media(forced-colors: active){.mat-badge-content{outline:solid 1px;border-radius:0}}.mat-badge-disabled .mat-badge-content{background-color:var(--mat-badge-disabled-state-background-color, color-mix(in srgb, var(--mat-sys-error) 38%, transparent));color:var(--mat-badge-disabled-state-text-color, var(--mat-sys-on-error))}.mat-badge-hidden .mat-badge-content{display:none}.ng-animate-disabled .mat-badge-content,.mat-badge-content._mat-animation-noopable{transition:none}.mat-badge-content.mat-badge-active{transform:none}.mat-badge-small .mat-badge-content{width:var(--mat-badge-legacy-small-size-container-size, unset);height:var(--mat-badge-legacy-small-size-container-size, unset);min-width:var(--mat-badge-small-size-container-size, 6px);min-height:var(--mat-badge-small-size-container-size, 6px);line-height:var(--mat-badge-small-size-line-height, 6px);padding:var(--mat-badge-small-size-container-padding, 0);font-size:var(--mat-badge-small-size-text-size, 0);margin:var(--mat-badge-small-size-container-offset, -6px 0)}.mat-badge-small.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-small-size-container-overlap-offset, -6px)}.mat-badge-medium .mat-badge-content{width:var(--mat-badge-legacy-container-size, unset);height:var(--mat-badge-legacy-container-size, unset);min-width:var(--mat-badge-container-size, 16px);min-height:var(--mat-badge-container-size, 16px);line-height:var(--mat-badge-line-height, 16px);padding:var(--mat-badge-container-padding, 0 4px);font-size:var(--mat-badge-text-size, var(--mat-sys-label-small-size));margin:var(--mat-badge-container-offset, -12px 0)}.mat-badge-medium.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-container-overlap-offset, -12px)}.mat-badge-large .mat-badge-content{width:var(--mat-badge-legacy-large-size-container-size, unset);height:var(--mat-badge-legacy-large-size-container-size, unset);min-width:var(--mat-badge-large-size-container-size, 16px);min-height:var(--mat-badge-large-size-container-size, 16px);line-height:var(--mat-badge-large-size-line-height, 16px);padding:var(--mat-badge-large-size-container-padding, 0 4px);font-size:var(--mat-badge-large-size-text-size, var(--mat-sys-label-small-size));margin:var(--mat-badge-large-size-container-offset, -12px 0)}.mat-badge-large.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-large-size-container-overlap-offset, -12px)}\n"],encapsulation:2,changeDetection:0})}return U})(),M=(()=>{class U{_ngZone=(0,S.WQX)(c.SKi);_elementRef=(0,S.WQX)(c.aKT);_ariaDescriber=(0,S.WQX)(i.vr);_renderer=(0,S.WQX)(c.sFG);_animationsDisabled=(0,d.Rc)();_idGenerator=(0,S.WQX)(p.g);get color(){return this._color}set color(q){this._setColor(q),this._color=q}_color="primary";overlap=!0;disabled;position="above after";get content(){return this._content}set content(q){this._updateRenderedContent(q)}_content;get description(){return this._description}set description(q){this._updateDescription(q)}_description;size="medium";hidden;_badgeElement;_inlineBadgeDescription;_isInitialized=!1;_interactivityChecker=(0,S.WQX)(t.Z7);_document=(0,S.WQX)(S.qQL);constructor(){const q=(0,S.WQX)(T.l);q.load(P),q.load(g.Y)}isAbove(){return-1===this.position.indexOf("below")}isAfter(){return-1===this.position.indexOf("before")}getBadgeElement(){return this._badgeElement}ngOnInit(){this._clearExistingBadges(),this.content&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement(),this._updateRenderedContent(this.content)),this._isInitialized=!0}ngOnDestroy(){this._renderer.destroyNode&&(this._renderer.destroyNode(this._badgeElement),this._inlineBadgeDescription?.remove()),this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description)}_isHostInteractive(){return this._interactivityChecker.isFocusable(this._elementRef.nativeElement,{ignoreVisibility:!0})}_createBadgeElement(){const q=this._renderer.createElement("span"),G="mat-badge-active";return q.setAttribute("id",this._idGenerator.getId("mat-badge-content-")),q.setAttribute("aria-hidden","true"),q.classList.add(m),this._animationsDisabled&&q.classList.add("_mat-animation-noopable"),this._elementRef.nativeElement.appendChild(q),"function"!=typeof requestAnimationFrame||this._animationsDisabled?q.classList.add(G):this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{q.classList.add(G)})}),q}_updateRenderedContent(q){const G=`${q??""}`.trim();this._isInitialized&&G&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement()),this._badgeElement&&(this._badgeElement.textContent=G),this._content=G}_updateDescription(q){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description),(!q||this._isHostInteractive())&&this._removeInlineDescription(),this._description=q,this._isHostInteractive()?this._ariaDescriber.describe(this._elementRef.nativeElement,q):this._updateInlineDescription()}_updateInlineDescription(){this._inlineBadgeDescription||(this._inlineBadgeDescription=this._document.createElement("span"),this._inlineBadgeDescription.classList.add("cdk-visually-hidden")),this._inlineBadgeDescription.textContent=this.description,this._badgeElement?.appendChild(this._inlineBadgeDescription)}_removeInlineDescription(){this._inlineBadgeDescription?.remove(),this._inlineBadgeDescription=void 0}_setColor(q){const G=this._elementRef.nativeElement.classList;G.remove(`mat-badge-${this._color}`),q&&G.add(`mat-badge-${q}`)}_clearExistingBadges(){const q=this._elementRef.nativeElement.querySelectorAll(`:scope > .${m}`);for(const G of Array.from(q))G!==this._badgeElement&&G.remove()}static \u0275fac=function(G){return new(G||U)};static \u0275dir=c.FsC({type:U,selectors:[["","matBadge",""]],hostAttrs:[1,"mat-badge"],hostVars:20,hostBindings:function(G,Q){2&G&&c.AVh("mat-badge-overlap",Q.overlap)("mat-badge-above",Q.isAbove())("mat-badge-below",!Q.isAbove())("mat-badge-before",!Q.isAfter())("mat-badge-after",Q.isAfter())("mat-badge-small","small"===Q.size)("mat-badge-medium","medium"===Q.size)("mat-badge-large","large"===Q.size)("mat-badge-hidden",Q.hidden||!Q.content)("mat-badge-disabled",Q.disabled)},inputs:{color:[0,"matBadgeColor","color"],overlap:[2,"matBadgeOverlap","overlap",e.L39],disabled:[2,"matBadgeDisabled","disabled",e.L39],position:[0,"matBadgePosition","position"],content:[0,"matBadge","content"],description:[0,"matBadgeDescription","description"],size:[0,"matBadgeSize","size"],hidden:[2,"matBadgeHidden","hidden",e.L39]}})}return U})(),j=(()=>{class U{static \u0275fac=function(G){return new(G||U)};static \u0275mod=c.$C({type:U});static \u0275inj=S.G2t({imports:[t.Pd,w.y,w.y]})}return U})()},2042:(Ae,ee,l)=>{"use strict";l.d(ee,{B4:()=>ue,NQ:()=>n,aE:()=>D});var i=l(2615),t=l(73664),p=l(17705),S=l(76838),c=l(18617),e=l(10438),T=l(21413),g=l(92771),d=l(57786),w=l(88968),m=l(31804),P=l(32046),M=l(22466);const j=["mat-sort-header",""],U=["*"];function K(f,h){1&f&&(t.rj2(0,"div",2),i.qSk(),t.rj2(1,"svg",3),t.Hgh(2,"path",4),t.eux()())}const ae=new i.nKC("MAT_SORT_DEFAULT_OPTIONS");let ue=(()=>{class f{_defaultOptions;_initializedStream=new g.m(1);sortables=new Map;_stateChanges=new T.B;active;start="asc";get direction(){return this._direction}set direction(b){this._direction=b}_direction="";disableClear;disabled=!1;sortChange=new t.bkB;initialized=this._initializedStream;constructor(b){this._defaultOptions=b}register(b){this.sortables.set(b.id,b)}deregister(b){this.sortables.delete(b.id)}sort(b){this.active!=b.id?(this.active=b.id,this.direction=b.start?b.start:this.start):this.direction=this.getNextSortDirection(b),this.sortChange.emit({active:this.active,direction:this.direction})}getNextSortDirection(b){if(!b)return"";let k=function oe(f,h){let b=["asc","desc"];return"desc"==f&&b.reverse(),h||b.push(""),b}(b.start||this.start,b?.disableClear??this.disableClear??!!this._defaultOptions?.disableClear),x=k.indexOf(this.direction)+1;return x>=k.length&&(x=0),k[x]}ngOnInit(){this._initializedStream.next()}ngOnChanges(){this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete(),this._initializedStream.complete()}static \u0275fac=function(A){return new(A||f)(t.rXU(ae,8))};static \u0275dir=t.FsC({type:f,selectors:[["","matSort",""]],hostAttrs:[1,"mat-sort"],inputs:{active:[0,"matSortActive","active"],start:[0,"matSortStart","start"],direction:[0,"matSortDirection","direction"],disableClear:[2,"matSortDisableClear","disableClear",p.L39],disabled:[2,"matSortDisabled","disabled",p.L39]},outputs:{sortChange:"matSortChange"},exportAs:["matSort"],features:[t.OA$]})}return f})(),he=(()=>{class f{changes=new T.B;static \u0275fac=function(A){return new(A||f)};static \u0275prov=i.jDH({token:f,factory:f.\u0275fac,providedIn:"root"})}return f})();const Te={provide:he,deps:[[new t.Xx1,new t.kdw,he]],useFactory:function me(f){return f||new he}};let D=(()=>{class f{_intl=(0,i.WQX)(he);_sort=(0,i.WQX)(ue,{optional:!0});_columnDef=(0,i.WQX)("MAT_SORT_HEADER_COLUMN_DEF",{optional:!0});_changeDetectorRef=(0,i.WQX)(p.gRc);_focusMonitor=(0,i.WQX)(S.FN);_elementRef=(0,i.WQX)(t.aKT);_ariaDescriber=(0,i.WQX)(c.vr,{optional:!0});_renderChanges;_animationsDisabled=(0,m.Rc)();_recentlyCleared=(0,i.vPA)(null);_sortButton;id;arrowPosition="after";start;disabled=!1;get sortActionDescription(){return this._sortActionDescription}set sortActionDescription(b){this._updateSortActionDescription(b)}_sortActionDescription="Sort";disableClear;constructor(){(0,i.WQX)(w.l).load(P.A);const b=(0,i.WQX)(ae,{optional:!0});b?.arrowPosition&&(this.arrowPosition=b?.arrowPosition)}ngOnInit(){!this.id&&this._columnDef&&(this.id=this._columnDef.name),this._sort.register(this),this._renderChanges=(0,d.h)(this._sort._stateChanges,this._sort.sortChange).subscribe(()=>this._changeDetectorRef.markForCheck()),this._sortButton=this._elementRef.nativeElement.querySelector(".mat-sort-header-container"),this._updateSortActionDescription(this._sortActionDescription)}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(()=>{Promise.resolve().then(()=>this._recentlyCleared.set(null))})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._sort.deregister(this),this._renderChanges?.unsubscribe(),this._sortButton&&this._ariaDescriber?.removeDescription(this._sortButton,this._sortActionDescription)}_toggleOnInteraction(){if(!this._isDisabled()){const b=this._isSorted(),A=this._sort.direction;this._sort.sort(this),this._recentlyCleared.set(b&&!this._isSorted()?A:null)}}_handleKeydown(b){(b.keyCode===e.t6||b.keyCode===e.Fm)&&(b.preventDefault(),this._toggleOnInteraction())}_isSorted(){return this._sort.active==this.id&&("asc"===this._sort.direction||"desc"===this._sort.direction)}_isDisabled(){return this._sort.disabled||this.disabled}_getAriaSortAttribute(){return this._isSorted()?"asc"==this._sort.direction?"ascending":"descending":"none"}_renderArrow(){return!this._isDisabled()||this._isSorted()}_updateSortActionDescription(b){this._sortButton&&(this._ariaDescriber?.removeDescription(this._sortButton,this._sortActionDescription),this._ariaDescriber?.describe(this._sortButton,b)),this._sortActionDescription=b}static \u0275fac=function(A){return new(A||f)};static \u0275cmp=t.VBU({type:f,selectors:[["","mat-sort-header",""]],hostAttrs:[1,"mat-sort-header"],hostVars:3,hostBindings:function(A,k){1&A&&t.bIt("click",function(){return k._toggleOnInteraction()})("keydown",function(r){return k._handleKeydown(r)})("mouseleave",function(){return k._recentlyCleared.set(null)}),2&A&&(t.BMQ("aria-sort",k._getAriaSortAttribute()),t.AVh("mat-sort-header-disabled",k._isDisabled()))},inputs:{id:[0,"mat-sort-header","id"],arrowPosition:"arrowPosition",start:"start",disabled:[2,"disabled","disabled",p.L39],sortActionDescription:"sortActionDescription",disableClear:[2,"disableClear","disableClear",p.L39]},exportAs:["matSortHeader"],attrs:j,ngContentSelectors:U,decls:4,vars:17,consts:[[1,"mat-sort-header-container","mat-focus-indicator"],[1,"mat-sort-header-content"],[1,"mat-sort-header-arrow"],["viewBox","0 -960 960 960","focusable","false","aria-hidden","true"],["d","M440-240v-368L296-464l-56-56 240-240 240 240-56 56-144-144v368h-80Z"]],template:function(A,k){1&A&&(t.NAR(),t.rj2(0,"div",0)(1,"div",1),t.SdG(2),t.eux(),t.nVh(3,K,3,0,"div",2),t.eux()),2&A&&(t.AVh("mat-sort-header-sorted",k._isSorted())("mat-sort-header-position-before","before"===k.arrowPosition)("mat-sort-header-descending","desc"===k._sort.direction)("mat-sort-header-ascending","asc"===k._sort.direction)("mat-sort-header-recently-cleared-ascending","asc"===k._recentlyCleared())("mat-sort-header-recently-cleared-descending","desc"===k._recentlyCleared())("mat-sort-header-animations-disabled",k._animationsDisabled),t.BMQ("tabindex",k._isDisabled()?null:0)("role",k._isDisabled()?null:"button"),t.R7$(3),t.vxM(k._renderArrow()?3:-1))},styles:[".mat-sort-header{cursor:pointer}.mat-sort-header-disabled{cursor:default}.mat-sort-header-container{display:flex;align-items:center;letter-spacing:normal;outline:0}[mat-sort-header].cdk-keyboard-focused .mat-sort-header-container,[mat-sort-header].cdk-program-focused .mat-sort-header-container{border-bottom:solid 1px currentColor}.mat-sort-header-container::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-sort-header-content{display:flex;align-items:center}.mat-sort-header-position-before{flex-direction:row-reverse}@keyframes _mat-sort-header-recently-cleared-ascending{from{transform:translateY(0);opacity:1}to{transform:translateY(-25%);opacity:0}}@keyframes _mat-sort-header-recently-cleared-descending{from{transform:translateY(0) rotate(180deg);opacity:1}to{transform:translateY(25%) rotate(180deg);opacity:0}}.mat-sort-header-arrow{height:12px;width:12px;position:relative;transition:transform 225ms cubic-bezier(0.4, 0, 0.2, 1),opacity 225ms cubic-bezier(0.4, 0, 0.2, 1);opacity:0;overflow:visible;color:var(--mat-sort-arrow-color, var(--mat-sys-on-surface))}.mat-sort-header.cdk-keyboard-focused .mat-sort-header-arrow,.mat-sort-header.cdk-program-focused .mat-sort-header-arrow,.mat-sort-header:hover .mat-sort-header-arrow{opacity:.54}.mat-sort-header .mat-sort-header-sorted .mat-sort-header-arrow{opacity:1}.mat-sort-header-descending .mat-sort-header-arrow{transform:rotate(180deg)}.mat-sort-header-recently-cleared-ascending .mat-sort-header-arrow{transform:translateY(-25%)}.mat-sort-header-recently-cleared-ascending .mat-sort-header-arrow{transition:none;animation:_mat-sort-header-recently-cleared-ascending 225ms cubic-bezier(0.4, 0, 0.2, 1) forwards}.mat-sort-header-recently-cleared-descending .mat-sort-header-arrow{transition:none;animation:_mat-sort-header-recently-cleared-descending 225ms cubic-bezier(0.4, 0, 0.2, 1) forwards}.mat-sort-header-animations-disabled .mat-sort-header-arrow{transition-duration:0ms;animation-duration:0ms}.mat-sort-header-arrow svg{width:24px;height:24px;fill:currentColor;position:absolute;top:50%;left:50%;margin:-12px 0 0 -12px;transform:translateZ(0)}.mat-sort-header-arrow,[dir=rtl] .mat-sort-header-position-before .mat-sort-header-arrow{margin:0 0 0 6px}.mat-sort-header-position-before .mat-sort-header-arrow,[dir=rtl] .mat-sort-header-arrow{margin:0 6px 0 0}\n"],encapsulation:2,changeDetection:0})}return f})(),n=(()=>{class f{static \u0275fac=function(A){return new(A||f)};static \u0275mod=t.$C({type:f});static \u0275inj=i.G2t({providers:[Te],imports:[M.y]})}return f})()},2615:(Ae,ee,l)=>{"use strict";let i;function t(){return i}function p(De){const pt=i;return i=De,pt}l.d(ee,{JEi:()=>ao,Isx:()=>Ss,EJG:()=>Ca,Yrj:()=>Aa,VVG:()=>yn,Y20:()=>vn,SKP:()=>Pn,hk6:()=>Dr,eVN:()=>zo,b5C:()=>Ra,rQE:()=>Xa,X5O:()=>tr,qFA:()=>Ri,qQL:()=>pc,abz:()=>Pl,tQN:()=>gr,pcR:()=>pr,oMQ:()=>ka,Mlv:()=>kn,MZA:()=>Fi,M0L:()=>Jn,Z63:()=>ca,VML:()=>Hr,uvJ:()=>Wa,zcH:()=>Fl,Wg1:()=>wt,Yw1:()=>Oa,jgP:()=>Lt,tcA:()=>tn,ID:()=>Sn,YEL:()=>Qn,B9r:()=>mn,GBX:()=>xa,ZTf:()=>Zs,nKC:()=>ct,zZn:()=>Ol,rJ1:()=>us,nfM:()=>Li,s6P:()=>ft,K29:()=>Ii,CQl:()=>se,p9y:()=>yt,zSs:()=>Kt,ONQ:()=>Ht,hmW:()=>Ne,yAH:()=>Pe,KXn:()=>Yl,oTH:()=>qn,Czx:()=>Ka,f7T:()=>ii,wVl:()=>za,GYQ:()=>_c,u5s:()=>ir,rev:()=>Nn,Ds7:()=>vr,e5P:()=>Fa,Iaj:()=>ds,GpT:()=>Un,buA:()=>U,AQb:()=>is,jNX:()=>cr,eDl:()=>rt,qlT:()=>Ui,bm_:()=>_i,RxE:()=>m,r4V:()=>Ea,ok8:()=>j,Evm:()=>$l,Jy$:()=>Do,laP:()=>G,EYC:()=>Ci,ng7:()=>Fn,llW:()=>ji,gsJ:()=>zt,GZS:()=>Os,iYM:()=>be,PEr:()=>yo,z7f:()=>_e,LZP:()=>ye,Xln:()=>k,yzR:()=>qi,TWe:()=>Fo,LIA:()=>A,GWr:()=>B,pbo:()=>re,bBq:()=>Ps,Af3:()=>$r,zQk:()=>bo,oZy:()=>Fs,tF7:()=>Le,ZFY:()=>Ze,cP4:()=>vo,MdC:()=>Ua,XvL:()=>W,KET:()=>Po,Tkx:()=>jl,iw4:()=>x,tdH:()=>Tr,pr_:()=>ge,IAh:()=>_,U45:()=>f,WrV:()=>h,kNT:()=>Ke,MI:()=>ul,biv:()=>dl,ZQF:()=>r,Cv0:()=>b,W0r:()=>As,R2n:()=>ro,O8q:()=>Oo,VKj:()=>Gs,Rom:()=>Ds,z6V:()=>Dn,n$e:()=>he,hjC:()=>ki,Pz9:()=>To,PQT:()=>$e,VX4:()=>tt,_Z$:()=>Ye,N79:()=>_l,xLP:()=>Gi,zuh:()=>le,BI7:()=>Rt,U7d:()=>di,uXy:()=>kt,nZS:()=>Qt,ihb:()=>Eo,ID8:()=>jo,gv8:()=>wl,dwj:()=>ue,Bqz:()=>xi,OsK:()=>q,Rfq:()=>D,c$7:()=>uo,gxQ:()=>Ns,ckz:()=>Vo,kLh:()=>ae,xUg:()=>Mi,KdJ:()=>fl,db4:()=>xs,VPL:()=>Ma,MT:()=>xl,Z9v:()=>Kl,Ab:()=>ri,w7Z:()=>Bs,Mx4:()=>_t,veI:()=>Ut,HaV:()=>wi,Agf:()=>en,znI:()=>lo,wGu:()=>An,ebl:()=>lt,OAn:()=>we,_0$:()=>Co,UaU:()=>So,vaC:()=>Dl,d31:()=>qo,ZRn:()=>Al,phH:()=>mr,WbQ:()=>fi,WB9:()=>ja,d_l:()=>gl,vNG:()=>hs,oyA:()=>Xe,_px:()=>Vr,CpD:()=>hc,XRZ:()=>Ll,klJ:()=>je,Fje:()=>Ys,b$O:()=>$d,SMZ:()=>$,WQX:()=>pi,MzJ:()=>Tt,jXY:()=>Bi,MME:()=>Er,JlV:()=>Rn,Qs1:()=>At,srX:()=>He,vOT:()=>oo,YWB:()=>Zi,EPY:()=>Rs,yoD:()=>mi,P3H:()=>Ur,Jzi:()=>o,rFz:()=>yr,JjR:()=>kl,M6u:()=>Hs,KtD:()=>vl,muV:()=>nt,A0l:()=>st,q$2:()=>Je,yP_:()=>ts,EFk:()=>ea,Hps:()=>rl,UhH:()=>Ho,QuC:()=>Gt,Y3W:()=>pa,n$r:()=>Va,K7h:()=>mt,FRF:()=>vt,ezK:()=>Me,m7n:()=>dd,niQ:()=>ho,krE:()=>jc,bll:()=>al,Hh6:()=>Rr,EmA:()=>gt,blu:()=>el,HAh:()=>wn,WfI:()=>Yi,xbp:()=>fs,jvu:()=>wo,lQ1:()=>cn,BCV:()=>Ft,Rc9:()=>or,E6O:()=>Ai,DyX:()=>pl,eFE:()=>Zt,dMS:()=>Bo,HUe:()=>js,nl4:()=>n,N4e:()=>cs,XaM:()=>te,Kw3:()=>bl,vQI:()=>Zd,RZ9:()=>Go,GA0:()=>Mo,iMd:()=>Di,Pfq:()=>On,xyx:()=>$s,a2B:()=>It,kcM:()=>ht,DFp:()=>Z,P2g:()=>co,cBl:()=>Qs,ypq:()=>Zr,vPA:()=>Ja,HO5:()=>Mn,M_e:()=>hl,B22:()=>Xs,ik5:()=>ml,AsM:()=>oe,PP7:()=>ti,$8:()=>Be,$Hz:()=>ci,zAe:()=>Wl,IvY:()=>so,_gW:()=>Xl,F1c:()=>No,ITl:()=>Il,brz:()=>fn,jRZ:()=>Ws,SX7:()=>Rl,jDH:()=>ve,G2t:()=>Ee,fuf:()=>yl,cSN:()=>zr,KVO:()=>jt,dmw:()=>ai,joV:()=>zs,By9:()=>Ml,qSk:()=>fc,Njj:()=>We,eBV:()=>Re});const c=Symbol("NotFound");function T(De){return De===c||"\u0275NotFound"===De?.name}Error;var g=l(48440),d=l(84412),w=l(71985);class m{full;major;minor;patch;constructor(pt){this.full=pt;const Yt=pt.split(".");this.major=Yt[0],this.minor=Yt[1],this.patch=Yt.slice(2).join(".")}}const j="https://angular.dev/best-practices/security#preventing-cross-site-scripting-xss";class U extends Error{code;constructor(pt,Yt){super(q(pt,Yt)),this.code=pt}}function q(De,pt){return`${function K(De){return`NG0${Math.abs(De)}`}(De)}${pt?": "+pt:""}`}const G=globalThis;function $(){return!1}function ae(De){for(let pt in De)if(De[pt]===ae)return pt;throw Error("")}function ue(De,pt){for(const Yt in pt)pt.hasOwnProperty(Yt)&&!De.hasOwnProperty(Yt)&&(De[Yt]=pt[Yt])}function oe(De){if("string"==typeof De)return De;if(Array.isArray(De))return`[${De.map(oe).join(", ")}]`;if(null==De)return""+De;const pt=De.overriddenName||De.name;if(pt)return`${pt}`;const Yt=De.toString();if(null==Yt)return""+Yt;const Pi=Yt.indexOf("\n");return Pi>=0?Yt.slice(0,Pi):Yt}function he(De,pt){return De?pt?`${De} ${pt}`:De:pt||""}const Te=ae({__forward_ref__:ae});function D(De){return De.__forward_ref__=D,De.toString=function(){return oe(this())},De}function n(De){return o(De)?De():De}function o(De){return"function"==typeof De&&De.hasOwnProperty(Te)&&De.__forward_ref__===D}function f(De,pt){"number"!=typeof De&&Be(pt,typeof De,"number","===")}function h(De,pt,Yt){f(De,"Expected a number"),function I(De,pt,Yt){De<=pt||Be(Yt,De,pt,"<=")}(De,Yt,"Expected number to be less than or equal to"),re(De,pt,"Expected number to be greater than or equal to")}function b(De,pt){"string"!=typeof De&&Be(pt,null===De?"null":typeof De,"string","===")}function A(De,pt){"function"!=typeof De&&Be(pt,null===De?"null":typeof De,"function","===")}function k(De,pt,Yt){De!=pt&&Be(Yt,De,pt,"==")}function x(De,pt,Yt){De==pt&&Be(Yt,De,pt,"!=")}function r(De,pt,Yt){De!==pt&&Be(Yt,De,pt,"===")}function _(De,pt,Yt){De===pt&&Be(Yt,De,pt,"!==")}function W(De,pt,Yt){Dept||Be(Yt,De,pt,">")}function re(De,pt,Yt){De>=pt||Be(Yt,De,pt,">=")}function be(De,pt){null==De&&Be(pt,De,null,"!=")}function Be(De,pt,Yt,Pi){throw new Error(`ASSERTION ERROR: ${De}`+(null==Pi?"":` [Expected=> ${Yt} ${Pi} ${pt} <=Actual]`))}function _e(De){De instanceof Node||Be(`The provided value must be an instance of a DOM Node but got ${oe(De)}`)}function ye(De){De instanceof Element||Be(`The provided value must be an element but got ${oe(De)}`)}function Le(De,pt){be(De,"Array must be defined.");const Yt=De.length;(pt<0||pt>=Yt)&&Be(`Index expected to be less than ${Yt} but got ${pt}`)}function Ke(De,...pt){if(-1!==pt.indexOf(De))return!0;Be(`Expected value to be one of ${JSON.stringify(pt)} but was ${JSON.stringify(De)}.`)}function ge(De){null!==(0,g.nR)()&&Be(`${De}() should never be called in a reactive context.`)}function ve(De){return{token:De.token,providedIn:De.providedIn||null,factory:De.factory,value:void 0}}function Ee(De){return{providers:De.providers||[],imports:De.imports||[]}}function dt(De){return function Ct(De,pt){return De.hasOwnProperty(pt)&&De[pt]||null}(De,Pe)}function nt(De){return null!==dt(De)}function lt(De){return De&&De.hasOwnProperty(Ht)?De[Ht]:null}const Pe=ae({\u0275prov:ae}),Ht=ae({\u0275inj:ae});class ct{_desc;ngMetadataName="InjectionToken";\u0275prov;constructor(pt,Yt){this._desc=pt,this.\u0275prov=void 0,"number"==typeof Yt?this.__NG_ELEMENT_ID__=Yt:void 0!==Yt&&(this.\u0275prov=ve({token:this,providedIn:Yt.providedIn||"root",factory:Yt.factory}))}get multi(){return this}toString(){return`InjectionToken ${this._desc}`}}let Ce;function ze(){return Be("getInjectorProfilerContext should never be called in production mode"),Ce}function Z(De){Be("setInjectorProfilerContext should never be called in production mode");const pt=Ce;return Ce=De,pt}const J=[],fe=()=>{};function ht(De){return Be("setInjectorProfiler should never be called in production mode"),null!==De?(J.includes(De)||J.push(De),()=>function Ie(De){const pt=J.indexOf(De);-1!==pt&&J.splice(pt,1)}(De)):(J.length=0,fe)}function li(De){Be("Injector profiler should never be called in production mode");for(let pt=0;pt1&&(rn=` Path: ${Yt.join(" -> ")}.`);return q(pt,`${De}${Pi?` Source: ${Pi}.`:""}${rn}`)}(De[Jt]||De.message,De[Et],De[qe],pt),De}($e(0,pt),null)}function ci(De,pt){throw new U(-201,!1)}function ui(De,pt,Yt){const Pi=new U(pt,De);return Pi[Et]=pt,Pi[Jt]=De,Yt&&(Pi[qe]=Yt),Pi}let dn;function zn(){return dn}function It(De){const pt=dn;return dn=De,pt}function Tt(De,pt,Yt){const Pi=dt(De);return Pi&&"root"==Pi.providedIn?void 0===Pi.value?Pi.value=Pi.factory():Pi.value:8&Yt?null:void 0!==pt?pt:void ci()}function Ze(De){}const Fe={},it="__NG_DI_FLAG__";class bt{injector;constructor(pt){this.injector=pt}retrieve(pt,Yt){const Pi=ki(Yt)||0;try{return this.injector.get(pt,8&Pi?null:Fe,Pi)}catch(rn){if(T(rn))return rn;throw rn}}}function ut(De,pt=0){const Yt=t();if(void 0===Yt)throw new U(-203,!1);if(null===Yt)return Tt(De,void 0,pt);{const Pi=function Ki(De){return{optional:!!(8&De),host:!!(1&De),self:!!(2&De),skipSelf:!!(4&De)}}(pt),rn=Yt.retrieve(De,Pi);if(T(rn)){if(Pi.optional)return null;throw rn}return rn}}function jt(De,pt=0){return(zn()||ut)(n(De),pt)}function ai(De){throw new U(202,!1)}function pi(De,pt){return jt(De,ki(pt))}function ki(De){return typeof De>"u"||"number"==typeof De?De:0|(De.optional&&8)|(De.host&&1)|(De.self&&2)|(De.skipSelf&&4)}function Ji(De){const pt=[];for(let Yt=0;YtArray.isArray(Yt)?Gi(Yt,pt):pt(Yt))}function Ci(De,pt,Yt){pt>=De.length?De.push(Yt):De.splice(pt,0,Yt)}function Ai(De,pt){return pt>=De.length-1?De.pop():De.splice(pt,1)[0]}function Yi(De,pt){const Yt=[];for(let Pi=0;Pipt;)De[rn]=De[rn-2],rn--;De[pt]=Yt,De[pt+1]=Pi}}function Me(De,pt,Yt){let Pi=vt(De,pt);return Pi>=0?De[1|Pi]=Yt:(Pi=~Pi,ji(De,Pi,pt,Yt)),Pi}function mt(De,pt){const Yt=vt(De,pt);if(Yt>=0)return De[1|Yt]}function vt(De,pt){return function ni(De,pt,Yt){let Pi=0,rn=De.length>>Yt;for(;rn!==Pi;){const In=Pi+(rn-Pi>>1),Qa=De[In<pt?rn=In:Pi=In+1}return~(rn<{Yt.push(Qa)};return Gi(pt,Qa=>{const Ar=Qa;fn(Ar,In,[],Pi)&&(rn||=[],rn.push(Ar))}),void 0!==rn&&Qi(rn,In),Yt}function Qi(De,pt){for(let Yt=0;Yt{pt(In,Pi)})}}function fn(De,pt,Yt,Pi){if(!(De=n(De)))return!1;let rn=null,In=lt(De);const Qa=!In&&Mi(De);if(In||Qa){if(Qa&&!Qa.standalone)return!1;rn=De}else{const $a=De.ngModule;if(In=lt($a),!In)return!1;rn=$a}const Ar=Pi.has(rn);if(Qa){if(Ar)return!1;if(Pi.add(rn),Qa.dependencies){const $a="function"==typeof Qa.dependencies?Qa.dependencies():Qa.dependencies;for(const Za of $a)fn(Za,pt,Yt,Pi)}}else{if(!In)return!1;{if(null!=In.imports&&!Ar){let Za;Pi.add(rn);try{Gi(In.imports,ms=>{fn(ms,pt,Yt,Pi)&&(Za||=[],Za.push(ms))})}finally{}void 0!==Za&&Qi(Za,pt)}if(!Ar){const Za=An(rn)||(()=>new rn);pt({provide:rn,useFactory:Za,deps:kn},rn),pt({provide:mn,useValue:rn,multi:!0},rn),pt({provide:ca,useValue:()=>jt(rn),multi:!0},rn)}const $a=In.providers;if(null!=$a&&!Ar){const Za=De;da($a,ms=>{pt(ms,Za)})}}}return rn!==De&&void 0!==De.providers}function da(De,pt){for(let Yt of De)ce(Yt)&&(Yt=Yt.\u0275providers),Array.isArray(Yt)?da(Yt,pt):pt(Yt)}const ga=ae({provide:String,useValue:ae});function Zn(De){return null!==De&&"object"==typeof De&&ga in De}function pa(De){return"function"==typeof De}function Er(De){return!!De.useClass}const xa=new ct(""),Xr={},Ta={};let wr;function ja(){return void 0===wr&&(wr=new qn),wr}class Wa{}class Fa extends Wa{parent;source;scopes;records=new Map;_ngOnDestroyHooks=new Set;_onDestroyHooks=[];get destroyed(){return this._destroyed}_destroyed=!1;injectorDefTypes;constructor(pt,Yt,Pi,rn){super(),this.parent=Yt,this.source=Pi,this.scopes=rn,ls(pt,Qa=>this.processProvider(Qa)),this.records.set(an,Yr(void 0,this)),rn.has("environment")&&this.records.set(Wa,Yr(void 0,this));const In=this.records.get(xa);null!=In&&"string"==typeof In.value&&this.scopes.add(In.value),this.injectorDefTypes=new Set(this.get(mn,kn,{self:!0}))}retrieve(pt,Yt){const Pi=ki(Yt)||0;try{return this.get(pt,Fe,Pi)}catch(rn){if(T(rn))return rn;throw rn}}destroy(){os(this),this._destroyed=!0;const pt=(0,g.Ht)(null);try{for(const Pi of this._ngOnDestroyHooks)Pi.ngOnDestroy();const Yt=this._onDestroyHooks;this._onDestroyHooks=[];for(const Pi of Yt)Pi()}finally{this.records.clear(),this._ngOnDestroyHooks.clear(),this.injectorDefTypes.clear(),(0,g.Ht)(pt)}}onDestroy(pt){return os(this),this._onDestroyHooks.push(pt),()=>this.removeOnDestroy(pt)}runInContext(pt){os(this);const Yt=p(this),Pi=It(void 0);try{return pt()}finally{p(Yt),It(Pi)}}get(pt,Yt=Fe,Pi){if(os(this),pt.hasOwnProperty(Vt))return pt[Vt](this);const rn=ki(Pi),Qa=p(this),Ar=It(void 0);try{if(!(4&rn)){let Za=this.records.get(pt);if(void 0===Za){const ms=function no(De){return"function"==typeof De||"object"==typeof De&&"InjectionToken"===De.ngMetadataName}(pt)&&dt(pt);Za=ms&&this.injectableDefInScope(ms)?Yr(Br(pt),Xr):null,this.records.set(pt,Za)}if(null!=Za)return this.hydrate(pt,Za,rn)}return(2&rn?ja():this.parent).get(pt,Yt=8&rn&&Yt===Fe?null:Yt)}catch($a){const Za=function ln(De){return De[Et]}($a);throw-200===Za||-201===Za?new U(Za,null):$a}finally{It(Ar),p(Qa)}}resolveInjectorInitializers(){const pt=(0,g.Ht)(null),Yt=p(this),Pi=It(void 0);try{const In=this.get(ca,kn,{self:!0});for(const Qa of In)Qa()}finally{p(Yt),It(Pi),(0,g.Ht)(pt)}}toString(){const pt=[],Yt=this.records;for(const Pi of Yt.keys())pt.push(oe(Pi));return`R3Injector[${pt.join(", ")}]`}processProvider(pt){let Yt=pa(pt=n(pt))?pt:n(pt&&pt.provide);const Pi=function Kr(De){return Zn(De)?Yr(void 0,De.useValue):Yr(or(De),Xr)}(pt);if(!pa(pt)&&!0===pt.multi){let rn=this.records.get(Yt);rn||(rn=Yr(void 0,Xr,!0),rn.factory=()=>Ji(rn.multi),this.records.set(Yt,rn)),Yt=pt,rn.multi.push(pt)}this.records.set(Yt,Pi)}hydrate(pt,Yt,Pi){const rn=(0,g.Ht)(null);try{if(Yt.value===Ta)throw $e(oe(pt));return Yt.value===Xr&&(Yt.value=Ta,Yt.value=Yt.factory(void 0,Pi)),"object"==typeof Yt.value&&Yt.value&&function Qr(De){return null!==De&&"object"==typeof De&&"function"==typeof De.ngOnDestroy}(Yt.value)&&this._ngOnDestroyHooks.add(Yt.value),Yt.value}finally{(0,g.Ht)(rn)}}injectableDefInScope(pt){if(!pt.providedIn)return!1;const Yt=n(pt.providedIn);return"string"==typeof Yt?"any"===Yt||this.scopes.has(Yt):this.injectorDefTypes.has(Yt)}removeOnDestroy(pt){const Yt=this._onDestroyHooks.indexOf(pt);-1!==Yt&&this._onDestroyHooks.splice(Yt,1)}}function Br(De){const pt=dt(De),Yt=null!==pt?pt.factory:An(De);if(null!==Yt)return Yt;if(De instanceof ct)throw new U(204,!1);if(De instanceof Function)return function ys(De){if(De.length>0)throw new U(204,!1);const Yt=function Mt(De){return(De?.[Pe]??null)||null}(De);return null!==Yt?()=>Yt.factory(De):()=>new De}(De);throw new U(204,!1)}function or(De,pt,Yt){let Pi;if(pa(De)){const rn=n(De);return An(rn)||Br(rn)}if(Zn(De))Pi=()=>n(De.useValue);else if(function ia(De){return!(!De||!De.useFactory)}(De))Pi=()=>De.useFactory(...Ji(De.deps||[]));else if(function Sa(De){return!(!De||!De.useExisting)}(De))Pi=(rn,In)=>jt(n(De.useExisting),void 0!==In&&8&In?8:void 0);else{const rn=n(De&&(De.useClass||De.provide));if(!function bs(De){return!!De.deps}(De))return An(rn)||Br(rn);Pi=()=>new rn(...Ji(De.deps))}return Pi}function os(De){if(De.destroyed)throw new U(205,!1)}function Yr(De,pt,Yt=!1){return{factory:De,value:pt,multi:Yt?[]:void 0}}function ls(De,pt){for(const Yt of De)Array.isArray(Yt)?ls(Yt,pt):Yt&&ce(Yt)?ls(Yt.\u0275providers,pt):pt(Yt)}function cs(De,pt){let Yt;De instanceof Fa?(os(De),Yt=De):Yt=new bt(De);const rn=p(Yt),In=It(void 0);try{return pt()}finally{p(rn),It(In)}}function Hs(){return void 0!==zn()||null!=t()}function $r(De){if(!Hs())throw new U(-203,!1)}const Lt=0,rt=1,wt=2,ii=3,Ii=4,Ui=5,tn=6,yn=7,Pn=8,Qn=9,Jn=10,Un=11,Ca=12,Aa=13,tr=14,Ra=15,Xa=16,za=17,vr=18,Sn=19,ka=20,Ka=21,pr=22,gr=23,ds=24,ao=25,Ss=26,Oa=27,Wt=1,Ri=6,ft=7,_i=8,Li=9,vn=10;function Je(De){return Array.isArray(De)&&"object"==typeof De[Wt]}function st(De){return Array.isArray(De)&&!0===De[Wt]}function He(De){return!!(4&De.flags)}function At(De){return De.componentOffset>-1}function mi(De){return!(1&~De.flags)}function Rn(De){return!!De.template}function ea(De){return!!(512&De[wt])}function Rs(De){return!(256&~De[wt])}function Gs(De,pt){Ds(De,pt[rt])}function Oo(De,pt){const Yt=pt+Oa;Le(De,Yt),W(Yt,De[rt].bindingStartIndex,"TNodes should be created before any bindings")}function Ds(De,pt){ro(De);const Yt=pt.data;for(let Pi=Oa;Pi) must have projection slots defined.")}function ul(De,pt){be(De,"Component views should always have a parent view (component's host view)")}function jl(De,pt){Fs(De,pt),Fs(De,pt+8),f(De[pt+0],"injectorIndex should point to a bloom filter"),f(De[pt+1],"injectorIndex should point to a bloom filter"),f(De[pt+2],"injectorIndex should point to a bloom filter"),f(De[pt+3],"injectorIndex should point to a bloom filter"),f(De[pt+4],"injectorIndex should point to a bloom filter"),f(De[pt+5],"injectorIndex should point to a bloom filter"),f(De[pt+6],"injectorIndex should point to a bloom filter"),f(De[pt+7],"injectorIndex should point to a bloom filter"),f(De[pt+8],"injectorIndex should point to parent injector")}const cr="svg",us="math";function so(De){for(;Array.isArray(De);)De=De[Lt];return De}function Wl(De){for(;Array.isArray(De);){if("object"==typeof De[Wt])return De;De=De[Lt]}return null}function Dl(De,pt){return so(pt[De])}function qo(De,pt){return so(pt[De.index])}function Al(De,pt){const Yt=null===De?-1:De.index;return-1!==Yt?so(pt[Yt]):null}function Ll(De,pt){return De.data[pt]}function Rr(De,pt){return De[pt]}function hl(De,pt,Yt,Pi){Yt>=De.data.length&&(De.data[Yt]=null,De.blueprint[Yt]=null),pt[Yt]=Pi}function fl(De,pt){const Yt=pt[De];return Je(Yt)?Yt:Yt[Lt]}function oo(De){return!(4&~De[wt])}function No(De){return!(128&~De[wt])}function Il(De){return st(De[ii])}function xs(De,pt){return null==pt?null:De[pt]}function js(De){De[za]=0}function wn(De){1024&De[wt]||(De[wt]|=1024,No(De)&&el(De))}function Ws(De,pt){for(;De>0;)pt=pt[tr],De--;return pt}function Bo(De){return!!(9216&De[wt]||De[ds]?.dirty)}function Xl(De){De[Jn].changeDetectionScheduler?.notify(8),64&De[wt]&&(De[wt]|=1024),Bo(De)&&el(De)}function el(De){De[Jn].changeDetectionScheduler?.notify(0);let pt=Co(De);for(;null!==pt&&!(8192&pt[wt])&&(pt[wt]|=8192,No(pt));)pt=Co(pt)}function ml(De,pt){if(Rs(De))throw new U(911,!1);null===De[Ka]&&(De[Ka]=[]),De[Ka].push(pt)}function pl(De,pt){if(null===De[Ka])return;const Yt=De[Ka].indexOf(pt);-1!==Yt&&De[Ka].splice(Yt,1)}function Co(De){const pt=De[ii];return st(pt)?pt[ii]:pt}function gl(De){return De[yn]??=[]}function hs(De){return De.cleanup??=[]}function Xs(De,pt,Yt,Pi){const rn=gl(pt);rn.push(Yt),De.firstCreatePass&&hs(De).push(Pi,rn.length-1)}const ta={lFrame:nl(null),bindingsEnabled:!0,skipHydrationRootTNode:null};var zo=function(De){return De[De.Off=0]="Off",De[De.Exhaustive=1]="Exhaustive",De[De.OnlyDirtyViews=2]="OnlyDirtyViews",De}(zo||{});let Uo=0,Ks=!1;function lo(){return ta.lFrame.elementDepthCount}function Ys(){ta.lFrame.elementDepthCount++}function _l(){ta.lFrame.elementDepthCount--}function Vo(){return ta.bindingsEnabled}function vl(){return null!==ta.skipHydrationRootTNode}function Ho(De){return ta.skipHydrationRootTNode===De}function zr(){ta.bindingsEnabled=!0}function yl(){ta.bindingsEnabled=!1}function jc(){ta.skipHydrationRootTNode=null}function we(){return ta.lFrame.lView}function je(){return ta.lFrame.tView}function Re(De){return ta.lFrame.contextLView=De,De[Pn]}function We(De){return ta.lFrame.contextLView=null,De}function _t(){let De=Ut();for(;null!==De&&64===De.type;)De=De.parent;return De}function Ut(){return ta.lFrame.currentTNode}function ri(){const De=ta.lFrame,pt=De.currentTNode;return De.isParent?pt:pt.parent}function Di(De,pt){const Yt=ta.lFrame;Yt.currentTNode=De,Yt.isParent=pt}function Zi(){return ta.lFrame.isParent}function On(){ta.lFrame.isParent=!1}function Ma(){return ta.lFrame.contextLView}function yr(){return Be("Must never be called in production mode"),Uo!==zo.Off}function Ur(){return Be("Must never be called in production mode"),Uo===zo.Exhaustive}function co(De){Be("Must never be called in production mode"),Uo=De}function ts(){return Ks}function Qs(De){const pt=Ks;return Ks=De,pt}function Ns(){const De=ta.lFrame;let pt=De.bindingRootIndex;return-1===pt&&(pt=De.bindingRootIndex=De.tView.bindingStartIndex),pt}function uo(){return ta.lFrame.bindingIndex}function bl(De){return ta.lFrame.bindingIndex=De}function fs(){return ta.lFrame.bindingIndex++}function $d(De){const pt=ta.lFrame,Yt=pt.bindingIndex;return pt.bindingIndex=pt.bindingIndex+De,Yt}function kl(){return ta.lFrame.inI18n}function $s(De){ta.lFrame.inI18n=De}function Zd(De,pt){const Yt=ta.lFrame;Yt.bindingIndex=Yt.bindingRootIndex=De,Go(pt)}function Kl(){return ta.lFrame.currentDirectiveIndex}function Go(De){ta.lFrame.currentDirectiveIndex=De}function xl(De){const pt=ta.lFrame.currentDirectiveIndex;return-1===pt?null:De[pt]}function Bs(){return ta.lFrame.currentQueryIndex}function Mo(De){ta.lFrame.currentQueryIndex=De}function tl(De){const pt=De[rt];return 2===pt.type?pt.declTNode:1===pt.type?De[Ui]:null}function Eo(De,pt,Yt){if(4&Yt){let rn=pt,In=De;for(;!(rn=rn.parent,null!==rn||1&Yt||(rn=tl(In),null===rn||(In=In[tr],10&rn.type))););if(null===rn)return!1;pt=rn,De=In}const Pi=ta.lFrame=il();return Pi.currentTNode=pt,Pi.lView=De,!0}function jo(De){const pt=il(),Yt=De[rt];ta.lFrame=pt,pt.currentTNode=Yt.firstChild,pt.lView=De,pt.tView=Yt,pt.contextLView=De,pt.bindingIndex=Yt.bindingStartIndex,pt.inI18n=!1}function il(){const De=ta.lFrame,pt=null===De?null:De.child;return null===pt?nl(De):pt}function nl(De){const pt={currentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:-1,contextLView:null,elementDepthCount:0,currentNamespace:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:De,child:null,inI18n:!1};return null!==De&&(De.child=pt),pt}function Cl(){const De=ta.lFrame;return ta.lFrame=De.parent,De.currentTNode=null,De.lView=null,De}const ho=Cl;function al(){const De=Cl();De.isParent=!0,De.tView=null,De.selectedIndex=-1,De.contextLView=null,De.elementDepthCount=0,De.currentDirectiveIndex=-1,De.currentNamespace=null,De.bindingRootIndex=-1,De.bindingIndex=-1,De.currentQueryIndex=0}function wo(De){return(ta.lFrame.contextLView=Ws(De,ta.lFrame.contextLView))[Pn]}function Vr(){return ta.lFrame.selectedIndex}function Zr(De){ta.lFrame.selectedIndex=De}function hc(){const De=ta.lFrame;return Ll(De.tView,De.selectedIndex)}function fc(){ta.lFrame.currentNamespace=cr}function Ml(){ta.lFrame.currentNamespace=us}function zs(){!function El(){ta.lFrame.currentNamespace=null}()}function So(){return ta.lFrame.currentNamespace}let hn=!0;function Rl(){return hn}function dd(De){hn=De}function mc(De,pt=null,Yt=null,Pi){const rn=To(De,pt,Yt,Pi);return rn.resolveInjectorInitializers(),rn}function To(De,pt=null,Yt=null,Pi,rn=new Set){const In=[Yt||kn,gi(De)];return Pi=Pi||("object"==typeof De?void 0:oe(De)),new Fa(In,pt||ja(),Pi||null,rn)}class Ol{static THROW_IF_NOT_FOUND=Fe;static NULL=new qn;static create(pt,Yt){if(Array.isArray(pt))return mc({name:""},Yt,pt,"");{const Pi=pt.name??"";return mc({name:Pi},pt.parent,pt.providers,Pi)}}static \u0275prov=ve({token:Ol,providedIn:"any",factory:()=>jt(an)});static __NG_ELEMENT_ID__=-1}const pc=new ct("");let Pl=(()=>class De{static __NG_ELEMENT_ID__=Ql;static __NG_ENV_ID__=Yt=>Yt})();class Yl extends Pl{_lView;constructor(pt){super(),this._lView=pt}get destroyed(){return Rs(this._lView)}onDestroy(pt){const Yt=this._lView;return ml(Yt,pt),()=>pl(Yt,pt)}}function Ql(){return new Yl(we())}class Fl{_console=console;handleError(pt){this._console.error("ERROR",pt)}}const Zs=new ct("",{providedIn:"root",factory:()=>{const De=pi(Wa);let pt;return Yt=>{De.destroyed&&!pt?setTimeout(()=>{throw Yt}):(pt??=De.get(Fl),pt.handleError(Yt))}}}),wl={provide:ca,useValue:()=>{pi(Fl)},multi:!0};function rl(De){return"function"==typeof De&&void 0!==De[g.bh]}function Ja(De,pt){const[Yt,Pi,rn]=(0,g.n5)(De,pt?.equal),In=Yt;return In.set=Pi,In.update=rn,In.asReadonly=Mn.bind(In),In}function Mn(){const De=this[g.bh];if(void 0===De.readonlyFn){const pt=()=>this();pt[g.bh]=De,De.readonlyFn=pt}return De.readonlyFn}function Va(De){return rl(De)&&"function"==typeof De.set}function Tr(De,pt){if(null!==(0,g.nR)())throw new U(-602,!1)}let Ea=(()=>class De{view;node;constructor(Yt,Pi){this.view=Yt,this.node=Pi}static __NG_ELEMENT_ID__=bn})();function bn(){return new Ea(we(),_t())}class Dr{}const $l=new ct("",{providedIn:"root",factory:()=>!1}),_c=new ct("",{providedIn:"root",factory:()=>!1}),Do=new ct(""),is=new ct("");let Nn=(()=>{class De{taskId=0;pendingTasks=new Set;destroyed=!1;pendingTask=new d.t(!1);get hasPendingTasks(){return!this.destroyed&&this.pendingTask.value}get hasPendingTasksObservable(){return this.destroyed?new w.c(Yt=>{Yt.next(!1),Yt.complete()}):this.pendingTask}add(){!this.hasPendingTasks&&!this.destroyed&&this.pendingTask.next(!0);const Yt=this.taskId++;return this.pendingTasks.add(Yt),Yt}has(Yt){return this.pendingTasks.has(Yt)}remove(Yt){this.pendingTasks.delete(Yt),0===this.pendingTasks.size&&this.hasPendingTasks&&this.pendingTask.next(!1)}ngOnDestroy(){this.pendingTasks.clear(),this.hasPendingTasks&&this.pendingTask.next(!1),this.destroyed=!0,this.pendingTask.unsubscribe()}static \u0275prov=ve({token:De,providedIn:"root",factory:()=>new De})}return De})(),ir=(()=>{class De{internalPendingTasks=pi(Nn);scheduler=pi(Dr);errorHandler=pi(Zs);add(){const Yt=this.internalPendingTasks.add();return()=>{this.internalPendingTasks.has(Yt)&&(this.scheduler.notify(11),this.internalPendingTasks.remove(Yt))}}run(Yt){const Pi=this.add();Yt().catch(this.errorHandler).finally(Pi)}static \u0275prov=ve({token:De,providedIn:"root",factory:()=>new De})}return De})();function cn(...De){}let Hr=(()=>{class De{static \u0275prov=ve({token:De,providedIn:"root",factory:()=>new ra})}return De})();class ra{dirtyEffectCount=0;queues=new Map;add(pt){this.enqueue(pt),this.schedule(pt)}schedule(pt){pt.dirty&&this.dirtyEffectCount++}remove(pt){const Pi=this.queues.get(pt.zone);Pi.has(pt)&&(Pi.delete(pt),pt.dirty&&this.dirtyEffectCount--)}enqueue(pt){const Yt=pt.zone;this.queues.has(Yt)||this.queues.set(Yt,new Set);const Pi=this.queues.get(Yt);Pi.has(pt)||Pi.add(pt)}flush(){for(;this.dirtyEffectCount>0;){let pt=!1;for(const[Yt,Pi]of this.queues)pt||=null===Yt?this.flushQueue(Pi):Yt.run(()=>this.flushQueue(Pi));pt||(this.dirtyEffectCount=0)}}flushQueue(pt){let Yt=!1;for(const Pi of pt)Pi.dirty&&(this.dirtyEffectCount--,Yt=!0,Pi.run());return Yt}}},2655:(Ae,ee,l)=>{var i=l(83838),t=i.Buffer;function p(c,e){for(var T in c)e[T]=c[T]}function S(c,e,T){return t(c,e,T)}t.from&&t.alloc&&t.allocUnsafe&&t.allocUnsafeSlow?Ae.exports=i:(p(i,ee),ee.Buffer=S),p(t,S),S.from=function(c,e,T){if("number"==typeof c)throw new TypeError("Argument must not be a number");return t(c,e,T)},S.alloc=function(c,e,T){if("number"!=typeof c)throw new TypeError("Argument must be a number");var g=t(c);return void 0!==e?"string"==typeof T?g.fill(e,T):g.fill(e):g.fill(0),g},S.allocUnsafe=function(c){if("number"!=typeof c)throw new TypeError("Argument must be a number");return t(c)},S.allocUnsafeSlow=function(c){if("number"!=typeof c)throw new TypeError("Argument must be a number");return i.SlowBuffer(c)}},2709:(Ae,ee,l)=>{"use strict";l.d(ee,{e:()=>p});var i=l(2615);let p=(()=>{class S{isErrorState(e,T){return!!(e&&e.invalid&&(e.touched||T&&T.submitted))}static \u0275fac=function(T){return new(T||S)};static \u0275prov=i.jDH({token:S,factory:S.\u0275fac,providedIn:"root"})}return S})()},2909:(Ae,ee,l)=>{"use strict";Ae.exports=S;var i=l(74075),t=Object.create(l(27637));function p(T,g){var d=this._transformState;d.transforming=!1;var w=d.writecb;if(!w)return this.emit("error",new Error("write callback called multiple times"));d.writechunk=null,d.writecb=null,null!=g&&this.push(g),w(T);var m=this._readableState;m.reading=!1,(m.needReadable||m.length{"use strict";var i=l(71993),t=l(70463),p=l(27054).Buffer,S=[1116352408,3609767458,1899447441,602891725,3049323471,3964484399,3921009573,2173295548,961987163,4081628472,1508970993,3053834265,2453635748,2937671579,2870763221,3664609560,3624381080,2734883394,310598401,1164996542,607225278,1323610764,1426881987,3590304994,1925078388,4068182383,2162078206,991336113,2614888103,633803317,3248222580,3479774868,3835390401,2666613458,4022224774,944711139,264347078,2341262773,604807628,2007800933,770255983,1495990901,1249150122,1856431235,1555081692,3175218132,1996064986,2198950837,2554220882,3999719339,2821834349,766784016,2952996808,2566594879,3210313671,3203337956,3336571891,1034457026,3584528711,2466948901,113926993,3758326383,338241895,168717936,666307205,1188179964,773529912,1546045734,1294757372,1522805485,1396182291,2643833823,1695183700,2343527390,1986661051,1014477480,2177026350,1206759142,2456956037,344077627,2730485921,1290863460,2820302411,3158454273,3259730800,3505952657,3345764771,106217008,3516065817,3606008344,3600352804,1432725776,4094571909,1467031594,275423344,851169720,430227734,3100823752,506948616,1363258195,659060556,3750685593,883997877,3785050280,958139571,3318307427,1322822218,3812723403,1537002063,2003034995,1747873779,3602036899,1955562222,1575990012,2024104815,1125592928,2227730452,2716904306,2361852424,442776044,2428436474,593698344,2756734187,3733110249,3204031479,2999351573,3329325298,3815920427,3391569614,3928383900,3515267271,566280711,3940187606,3454069534,4118630271,4000239992,116418474,1914138554,174292421,2731055270,289380356,3203993006,460393269,320620315,685471733,587496836,852142971,1086792851,1017036298,365543100,1126000580,2618297676,1288033470,3409855158,1501505948,4234509866,1607167915,987167468,1816402316,1246189591],c=new Array(160);function e(){this.init(),this._w=c,t.call(this,128,112)}function T(K,q,G){return G^K&(q^G)}function g(K,q,G){return K&q|G&(K|q)}function d(K,q){return(K>>>28|q<<4)^(q>>>2|K<<30)^(q>>>7|K<<25)}function w(K,q){return(K>>>14|q<<18)^(K>>>18|q<<14)^(q>>>9|K<<23)}function m(K,q){return(K>>>1|q<<31)^(K>>>8|q<<24)^K>>>7}function P(K,q){return(K>>>1|q<<31)^(K>>>8|q<<24)^(K>>>7|q<<25)}function M(K,q){return(K>>>19|q<<13)^(q>>>29|K<<3)^K>>>6}function j(K,q){return(K>>>19|q<<13)^(q>>>29|K<<3)^(K>>>6|q<<26)}function U(K,q){return K>>>0>>0?1:0}i(e,t),e.prototype.init=function(){return this._ah=1779033703,this._bh=3144134277,this._ch=1013904242,this._dh=2773480762,this._eh=1359893119,this._fh=2600822924,this._gh=528734635,this._hh=1541459225,this._al=4089235720,this._bl=2227873595,this._cl=4271175723,this._dl=1595750129,this._el=2917565137,this._fl=725511199,this._gl=4215389547,this._hl=327033209,this},e.prototype._update=function(K){for(var q=this._w,G=0|this._ah,Q=0|this._bh,$=0|this._ch,ae=0|this._dh,ue=0|this._eh,oe=0|this._fh,he=0|this._gh,me=0|this._hh,Te=0|this._al,D=0|this._bl,n=0|this._cl,o=0|this._dl,f=0|this._el,h=0|this._fl,b=0|this._gl,A=0|this._hl,k=0;k<32;k+=2)q[k]=K.readInt32BE(4*k),q[k+1]=K.readInt32BE(4*k+4);for(;k<160;k+=2){var x=q[k-30],r=q[k-30+1],_=m(x,r),W=P(r,x),I=M(x=q[k-4],r=q[k-4+1]),B=j(r,x),be=q[k-32],Be=q[k-32+1],_e=W+q[k-14+1]|0,ye=_+q[k-14]+U(_e,W)|0;ye=(ye=ye+I+U(_e=_e+B|0,B)|0)+be+U(_e=_e+Be|0,Be)|0,q[k]=ye,q[k+1]=_e}for(var Le=0;Le<160;Le+=2){ye=q[Le],_e=q[Le+1];var Ke=g(G,Q,$),ge=g(Te,D,n),ve=d(G,Te),Oe=d(Te,G),Ee=w(ue,f),dt=w(f,ue),nt=S[Le],Ct=S[Le+1],Mt=T(ue,oe,he),lt=T(f,h,b),Pe=A+dt|0,Ht=me+Ee+U(Pe,A)|0;Ht=(Ht=(Ht=Ht+Mt+U(Pe=Pe+lt|0,lt)|0)+nt+U(Pe=Pe+Ct|0,Ct)|0)+ye+U(Pe=Pe+_e|0,_e)|0;var ct=Oe+ge|0,Ce=ve+Ke+U(ct,Oe)|0;me=he,A=b,he=oe,b=h,oe=ue,h=f,ue=ae+Ht+U(f=o+Pe|0,o)|0,ae=$,o=n,$=Q,n=D,Q=G,D=Te,G=Ht+Ce+U(Te=Pe+ct|0,Pe)|0}this._al=this._al+Te|0,this._bl=this._bl+D|0,this._cl=this._cl+n|0,this._dl=this._dl+o|0,this._el=this._el+f|0,this._fl=this._fl+h|0,this._gl=this._gl+b|0,this._hl=this._hl+A|0,this._ah=this._ah+G+U(this._al,Te)|0,this._bh=this._bh+Q+U(this._bl,D)|0,this._ch=this._ch+$+U(this._cl,n)|0,this._dh=this._dh+ae+U(this._dl,o)|0,this._eh=this._eh+ue+U(this._el,f)|0,this._fh=this._fh+oe+U(this._fl,h)|0,this._gh=this._gh+he+U(this._gl,b)|0,this._hh=this._hh+me+U(this._hl,A)|0},e.prototype._hash=function(){var K=p.allocUnsafe(64);function q(G,Q,$){K.writeInt32BE(G,$),K.writeInt32BE(Q,$+4)}return q(this._ah,this._al,0),q(this._bh,this._bl,8),q(this._ch,this._cl,16),q(this._dh,this._dl,24),q(this._eh,this._el,32),q(this._fh,this._fl,40),q(this._gh,this._gl,48),q(this._hh,this._hl,56),K},Ae.exports=e},3136:(Ae,ee,l)=>{"use strict";var i=ee,t=l(88723),p=l(39210),S=l(21832);i.assert=p,i.toArray=S.toArray,i.zero2=S.zero2,i.toHex=S.toHex,i.encode=S.encode,i.getNAF=function c(w,m,P){var j,M=new Array(Math.max(w.bitLength(),P)+1);for(j=0;j(U>>1)-1?(U>>1)-G:G):q=0,M[j]=q,K.iushrn(1)}return M},i.getJSF=function e(w,m){var P=[[],[]];w=w.clone(),m=m.clone();for(var U,M=0,j=0;w.cmpn(-M)>0||m.cmpn(-j)>0;){var G,Q,K=w.andln(3)+M&3,q=m.andln(3)+j&3;3===K&&(K=-1),3===q&&(q=-1),G=1&K?3!=(U=w.andln(7)+M&7)&&5!==U||2!==q?K:-K:0,P[0].push(G),Q=1&q?3!=(U=m.andln(7)+j&7)&&5!==U||2!==K?q:-q:0,P[1].push(Q),2*M===G+1&&(M=1-M),2*j===Q+1&&(j=1-j),w.iushrn(1),m.iushrn(1)}return P},i.cachedProperty=function T(w,m,P){var M="_"+m;w.prototype[m]=function(){return void 0!==this[M]?this[M]:this[M]=P.call(this)}},i.parseBytes=function g(w){return"string"==typeof w?i.toArray(w,"hex"):w},i.intFromLE=function d(w){return new t(w,"hex","le")}},3219:Ae=>{"use strict";Ae.exports=JSON.parse('{"aes-128-ecb":{"cipher":"AES","key":128,"iv":0,"mode":"ECB","type":"block"},"aes-192-ecb":{"cipher":"AES","key":192,"iv":0,"mode":"ECB","type":"block"},"aes-256-ecb":{"cipher":"AES","key":256,"iv":0,"mode":"ECB","type":"block"},"aes-128-cbc":{"cipher":"AES","key":128,"iv":16,"mode":"CBC","type":"block"},"aes-192-cbc":{"cipher":"AES","key":192,"iv":16,"mode":"CBC","type":"block"},"aes-256-cbc":{"cipher":"AES","key":256,"iv":16,"mode":"CBC","type":"block"},"aes128":{"cipher":"AES","key":128,"iv":16,"mode":"CBC","type":"block"},"aes192":{"cipher":"AES","key":192,"iv":16,"mode":"CBC","type":"block"},"aes256":{"cipher":"AES","key":256,"iv":16,"mode":"CBC","type":"block"},"aes-128-cfb":{"cipher":"AES","key":128,"iv":16,"mode":"CFB","type":"stream"},"aes-192-cfb":{"cipher":"AES","key":192,"iv":16,"mode":"CFB","type":"stream"},"aes-256-cfb":{"cipher":"AES","key":256,"iv":16,"mode":"CFB","type":"stream"},"aes-128-cfb8":{"cipher":"AES","key":128,"iv":16,"mode":"CFB8","type":"stream"},"aes-192-cfb8":{"cipher":"AES","key":192,"iv":16,"mode":"CFB8","type":"stream"},"aes-256-cfb8":{"cipher":"AES","key":256,"iv":16,"mode":"CFB8","type":"stream"},"aes-128-cfb1":{"cipher":"AES","key":128,"iv":16,"mode":"CFB1","type":"stream"},"aes-192-cfb1":{"cipher":"AES","key":192,"iv":16,"mode":"CFB1","type":"stream"},"aes-256-cfb1":{"cipher":"AES","key":256,"iv":16,"mode":"CFB1","type":"stream"},"aes-128-ofb":{"cipher":"AES","key":128,"iv":16,"mode":"OFB","type":"stream"},"aes-192-ofb":{"cipher":"AES","key":192,"iv":16,"mode":"OFB","type":"stream"},"aes-256-ofb":{"cipher":"AES","key":256,"iv":16,"mode":"OFB","type":"stream"},"aes-128-ctr":{"cipher":"AES","key":128,"iv":16,"mode":"CTR","type":"stream"},"aes-192-ctr":{"cipher":"AES","key":192,"iv":16,"mode":"CTR","type":"stream"},"aes-256-ctr":{"cipher":"AES","key":256,"iv":16,"mode":"CTR","type":"stream"},"aes-128-gcm":{"cipher":"AES","key":128,"iv":12,"mode":"GCM","type":"auth"},"aes-192-gcm":{"cipher":"AES","key":192,"iv":12,"mode":"GCM","type":"auth"},"aes-256-gcm":{"cipher":"AES","key":256,"iv":12,"mode":"GCM","type":"auth"}}')},3247:(Ae,ee,l)=>{"use strict";var i=l(27054).Buffer,t=l(7045).Transform,p=l(78454).I,S=l(71993),c=l(41090);function e(T){t.call(this),this.hashMode="string"==typeof T,this.hashMode?this[T]=this._finalOrDigest:this.final=this._finalOrDigest,this._final&&(this.__final=this._final,this._final=null),this._decoder=null,this._encoding=null}S(e,t),e.prototype.update=function(T,g,d){var w=c(T,g),m=this._update(w);return this.hashMode?this:(d&&(m=this._toString(m,d)),m)},e.prototype.setAutoPadding=function(){},e.prototype.getAuthTag=function(){throw new Error("trying to get auth tag in unsupported state")},e.prototype.setAuthTag=function(){throw new Error("trying to set auth tag in unsupported state")},e.prototype.setAAD=function(){throw new Error("trying to set aad in unsupported state")},e.prototype._transform=function(T,g,d){var w;try{this.hashMode?this._update(T):this.push(this._update(T))}catch(m){w=m}finally{d(w)}},e.prototype._flush=function(T){var g;try{this.push(this.__final())}catch(d){g=d}T(g)},e.prototype._finalOrDigest=function(T){var g=this.__final()||i.alloc(0);return T&&(g=this._toString(g,T,!0)),g},e.prototype._toString=function(T,g,d){if(this._decoder||(this._decoder=new p(g),this._encoding=g),this._encoding!==g)throw new Error("can\u2019t switch encodings");var w=this._decoder.write(T);return d&&(w+=this._decoder.end()),w},Ae.exports=e},3342:(Ae,ee,l)=>{"use strict";var i=65536,S=l(27054).Buffer,c=global.crypto||global.msCrypto;Ae.exports=c&&c.getRandomValues?function e(T,g){if(T>4294967295)throw new RangeError("requested too many random bytes");var d=S.allocUnsafe(T);if(T>0)if(T>i)for(var w=0;w{ee.Patterns={PATTERN000:0,PATTERN001:1,PATTERN010:2,PATTERN011:3,PATTERN100:4,PATTERN101:5,PATTERN110:6,PATTERN111:7};function i(t,p,S){switch(t){case ee.Patterns.PATTERN000:return(p+S)%2==0;case ee.Patterns.PATTERN001:return p%2==0;case ee.Patterns.PATTERN010:return S%3==0;case ee.Patterns.PATTERN011:return(p+S)%3==0;case ee.Patterns.PATTERN100:return(Math.floor(p/2)+Math.floor(S/3))%2==0;case ee.Patterns.PATTERN101:return p*S%2+p*S%3==0;case ee.Patterns.PATTERN110:return(p*S%2+p*S%3)%2==0;case ee.Patterns.PATTERN111:return(p*S%3+(p+S)%2)%2==0;default:throw new Error("bad maskPattern:"+t)}}ee.isValid=function(p){return null!=p&&""!==p&&!isNaN(p)&&p>=0&&p<=7},ee.from=function(p){return ee.isValid(p)?parseInt(p,10):void 0},ee.getPenaltyN1=function(p){const S=p.size;let c=0,e=0,T=0,g=null,d=null;for(let w=0;w=5&&(c+=e-5+3),g=P,e=1),P=p.get(m,w),P===d?T++:(T>=5&&(c+=T-5+3),d=P,T=1)}e>=5&&(c+=e-5+3),T>=5&&(c+=T-5+3)}return c},ee.getPenaltyN2=function(p){const S=p.size;let c=0;for(let e=0;e=10&&(1488===e||93===e)&&c++,T=T<<1&2047|p.get(d,g),d>=10&&(1488===T||93===T)&&c++}return 40*c},ee.getPenaltyN4=function(p){let S=0;const c=p.data.length;for(let T=0;T{"use strict";Ae.exports=Math.floor},3398:Ae=>{function l(i){try{if(!global.localStorage)return!1}catch{return!1}var t=global.localStorage[i];return null!=t&&"true"===String(t).toLowerCase()}Ae.exports=function ee(i,t){if(l("noDeprecation"))return i;var p=!1;return function S(){if(!p){if(l("throwDeprecation"))throw new Error(t);l("traceDeprecation")?console.trace(t):console.warn(t),p=!0}return i.apply(this,arguments)}}},3494:(Ae,ee,l)=>{"use strict";l.d(ee,{s:()=>i});const i="function"==typeof Symbol&&Symbol.observable||"@@observable"},3902:(Ae,ee,l)=>{"use strict";l.d(ee,{Fg:()=>le,YE:()=>J,jt:()=>Z});var i=l(14085),t=l(67847),p=l(2615),S=l(73664),e=(l(17705),l(39842)),g=(l(44522),l(88968)),w=(l(21413),l(18359)),m=l(57786),P=l(12496),M=l(31804),j=l(32046),K=(l(72200),l(72318)),q=l(71997),he=(l(64123),l(83869),l(10438),l(67336),l(89417),l(56977),l(70483)),me=l(22466),Te=l(26881);const D=["*"],o=["unscopedContent"],f=["text"],h=[[["","matListItemAvatar",""],["","matListItemIcon",""]],[["","matListItemTitle",""]],[["","matListItemLine",""]],"*",[["","matListItemMeta",""]],[["mat-divider"]]],b=["[matListItemAvatar],[matListItemIcon]","[matListItemTitle]","[matListItemLine]","*","[matListItemMeta]","mat-divider"],ve=new p.nKC("ListOption");let Oe=(()=>{class te{_elementRef=(0,p.WQX)(S.aKT);constructor(){}static \u0275fac=function(ke){return new(ke||te)};static \u0275dir=S.FsC({type:te,selectors:[["","matListItemTitle",""]],hostAttrs:[1,"mat-mdc-list-item-title","mdc-list-item__primary-text"]})}return te})(),Ee=(()=>{class te{_elementRef=(0,p.WQX)(S.aKT);constructor(){}static \u0275fac=function(ke){return new(ke||te)};static \u0275dir=S.FsC({type:te,selectors:[["","matListItemLine",""]],hostAttrs:[1,"mat-mdc-list-item-line","mdc-list-item__secondary-text"]})}return te})(),dt=(()=>{class te{static \u0275fac=function(ke){return new(ke||te)};static \u0275dir=S.FsC({type:te,selectors:[["","matListItemMeta",""]],hostAttrs:[1,"mat-mdc-list-item-meta","mdc-list-item__end"]})}return te})(),nt=(()=>{class te{_listOption=(0,p.WQX)(ve,{optional:!0});constructor(){}_isAlignedAtStart(){return!this._listOption||"after"===this._listOption?._getTogglePosition()}static \u0275fac=function(ke){return new(ke||te)};static \u0275dir=S.FsC({type:te,hostVars:4,hostBindings:function(ke,Ue){2&ke&&S.AVh("mdc-list-item__start",Ue._isAlignedAtStart())("mdc-list-item__end",!Ue._isAlignedAtStart())}})}return te})(),Ct=(()=>{class te extends nt{static \u0275fac=(()=>{let se;return function(Ue){return(se||(se=S.xGo(te)))(Ue||te)}})();static \u0275dir=S.FsC({type:te,selectors:[["","matListItemAvatar",""]],hostAttrs:[1,"mat-mdc-list-item-avatar"],features:[S.Vt3]})}return te})(),Mt=(()=>{class te extends nt{static \u0275fac=(()=>{let se;return function(Ue){return(se||(se=S.xGo(te)))(Ue||te)}})();static \u0275dir=S.FsC({type:te,selectors:[["","matListItemIcon",""]],hostAttrs:[1,"mat-mdc-list-item-icon"],features:[S.Vt3]})}return te})();const lt=new p.nKC("MAT_LIST_CONFIG");let Pe=(()=>{class te{_isNonInteractive=!0;get disableRipple(){return this._disableRipple}set disableRipple(se){this._disableRipple=(0,i.he)(se)}_disableRipple=!1;get disabled(){return this._disabled()}set disabled(se){this._disabled.set((0,i.he)(se))}_disabled=(0,p.vPA)(!1);_defaultOptions=(0,p.WQX)(lt,{optional:!0});static \u0275fac=function(ke){return new(ke||te)};static \u0275dir=S.FsC({type:te,hostVars:1,hostBindings:function(ke,Ue){2&ke&&S.BMQ("aria-disabled",Ue.disabled)},inputs:{disableRipple:"disableRipple",disabled:"disabled"}})}return te})(),Ht=(()=>{class te{_elementRef=(0,p.WQX)(S.aKT);_ngZone=(0,p.WQX)(S.SKi);_listBase=(0,p.WQX)(Pe,{optional:!0});_platform=(0,p.WQX)(e.O);_hostElement;_isButtonElement;_noopAnimations=(0,M.Rc)();_avatars;_icons;set lines(se){this._explicitLines=(0,t.OE)(se,null),this._updateItemLines(!1)}_explicitLines=null;get disableRipple(){return this.disabled||this._disableRipple||this._noopAnimations||!!this._listBase?.disableRipple}set disableRipple(se){this._disableRipple=(0,i.he)(se)}_disableRipple=!1;get disabled(){return this._disabled()||!!this._listBase?.disabled}set disabled(se){this._disabled.set((0,i.he)(se))}_disabled=(0,p.vPA)(!1);_subscriptions=new w.yU;_rippleRenderer=null;_hasUnscopedTextContent=!1;rippleConfig;get rippleDisabled(){return this.disableRipple||!!this.rippleConfig.disabled}constructor(){(0,p.WQX)(g.l).load(j.A);const se=(0,p.WQX)(P.$E,{optional:!0});this.rippleConfig=se||{},this._hostElement=this._elementRef.nativeElement,this._isButtonElement="button"===this._hostElement.nodeName.toLowerCase(),this._listBase&&!this._listBase._isNonInteractive&&this._initInteractiveListItem(),this._isButtonElement&&!this._hostElement.hasAttribute("type")&&this._hostElement.setAttribute("type","button")}ngAfterViewInit(){this._monitorProjectedLinesAndTitle(),this._updateItemLines(!0)}ngOnDestroy(){this._subscriptions.unsubscribe(),null!==this._rippleRenderer&&this._rippleRenderer._removeTriggerEvents()}_hasIconOrAvatar(){return!(!this._avatars.length&&!this._icons.length)}_initInteractiveListItem(){this._hostElement.classList.add("mat-mdc-list-item-interactive"),this._rippleRenderer=new P.ug(this,this._ngZone,this._hostElement,this._platform,(0,p.WQX)(p.zZn)),this._rippleRenderer.setupTriggerEvents(this._hostElement)}_monitorProjectedLinesAndTitle(){this._ngZone.runOutsideAngular(()=>{this._subscriptions.add((0,m.h)(this._lines.changes,this._titles.changes).subscribe(()=>this._updateItemLines(!1)))})}_updateItemLines(se){if(!this._lines||!this._titles||!this._unscopedContent)return;se&&this._checkDomForUnscopedTextContent();const ke=this._explicitLines??this._inferLinesFromContent(),Ue=this._unscopedContent.nativeElement;if(this._hostElement.classList.toggle("mat-mdc-list-item-single-line",ke<=1),this._hostElement.classList.toggle("mdc-list-item--with-one-line",ke<=1),this._hostElement.classList.toggle("mdc-list-item--with-two-lines",2===ke),this._hostElement.classList.toggle("mdc-list-item--with-three-lines",3===ke),this._hasUnscopedTextContent){const Ne=0===this._titles.length&&1===ke;Ue.classList.toggle("mdc-list-item__primary-text",Ne),Ue.classList.toggle("mdc-list-item__secondary-text",!Ne)}else Ue.classList.remove("mdc-list-item__primary-text"),Ue.classList.remove("mdc-list-item__secondary-text")}_inferLinesFromContent(){let se=this._titles.length+this._lines.length;return this._hasUnscopedTextContent&&(se+=1),se}_checkDomForUnscopedTextContent(){this._hasUnscopedTextContent=Array.from(this._unscopedContent.nativeElement.childNodes).filter(se=>se.nodeType!==se.COMMENT_NODE).some(se=>!(!se.textContent||!se.textContent.trim()))}static \u0275fac=function(ke){return new(ke||te)};static \u0275dir=S.FsC({type:te,contentQueries:function(ke,Ue,Ne){if(1&ke&&(S.wni(Ne,Ct,4),S.wni(Ne,Mt,4)),2&ke){let Kt;S.mGM(Kt=S.lsd())&&(Ue._avatars=Kt),S.mGM(Kt=S.lsd())&&(Ue._icons=Kt)}},hostVars:4,hostBindings:function(ke,Ue){2&ke&&(S.BMQ("aria-disabled",Ue.disabled)("disabled",Ue._isButtonElement&&Ue.disabled||null),S.AVh("mdc-list-item--disabled",Ue.disabled))},inputs:{lines:"lines",disableRipple:"disableRipple",disabled:"disabled"}})}return te})(),Z=(()=>{class te extends Pe{static \u0275fac=(()=>{let se;return function(Ue){return(se||(se=S.xGo(te)))(Ue||te)}})();static \u0275cmp=S.VBU({type:te,selectors:[["mat-list"]],hostAttrs:[1,"mat-mdc-list","mat-mdc-list-base","mdc-list"],exportAs:["matList"],features:[S.Jv_([{provide:Pe,useExisting:te}]),S.Vt3],ngContentSelectors:D,decls:1,vars:0,template:function(ke,Ue){1&ke&&(S.NAR(),S.SdG(0))},styles:['.mdc-list{margin:0;padding:8px 0;list-style-type:none}.mdc-list:focus{outline:none}.mdc-list-item{display:flex;position:relative;justify-content:flex-start;overflow:hidden;padding:0;align-items:stretch;cursor:pointer;padding-left:16px;padding-right:16px;background-color:var(--mat-list-list-item-container-color, transparent);border-radius:var(--mat-list-list-item-container-shape, var(--mat-sys-corner-none))}.mdc-list-item.mdc-list-item--selected{background-color:var(--mat-list-list-item-selected-container-color)}.mdc-list-item:focus{outline:0}.mdc-list-item.mdc-list-item--disabled{cursor:auto}.mdc-list-item.mdc-list-item--with-one-line{height:var(--mat-list-list-item-one-line-container-height, 48px)}.mdc-list-item.mdc-list-item--with-one-line .mdc-list-item__start{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-one-line .mdc-list-item__end{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-two-lines{height:var(--mat-list-list-item-two-line-container-height, 64px)}.mdc-list-item.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--with-two-lines .mdc-list-item__end{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-three-lines{height:var(--mat-list-list-item-three-line-container-height, 88px)}.mdc-list-item.mdc-list-item--with-three-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--selected::before,.mdc-list-item.mdc-list-item--selected:focus::before,.mdc-list-item:not(.mdc-list-item--selected):focus::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;content:"";pointer-events:none}a.mdc-list-item{color:inherit;text-decoration:none}.mdc-list-item__start{fill:currentColor;flex-shrink:0;pointer-events:none}.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mat-list-list-item-leading-icon-color, var(--mat-sys-on-surface-variant));width:var(--mat-list-list-item-leading-icon-size, 24px);height:var(--mat-list-list-item-leading-icon-size, 24px);margin-left:16px;margin-right:32px}[dir=rtl] .mdc-list-item--with-leading-icon .mdc-list-item__start{margin-left:32px;margin-right:16px}.mdc-list-item--with-leading-icon:hover .mdc-list-item__start{color:var(--mat-list-list-item-hover-leading-icon-color)}.mdc-list-item--with-leading-avatar .mdc-list-item__start{width:var(--mat-list-list-item-leading-avatar-size, 40px);height:var(--mat-list-list-item-leading-avatar-size, 40px);margin-left:16px;margin-right:16px;border-radius:50%}.mdc-list-item--with-leading-avatar .mdc-list-item__start,[dir=rtl] .mdc-list-item--with-leading-avatar .mdc-list-item__start{margin-left:16px;margin-right:16px;border-radius:50%}.mdc-list-item__end{flex-shrink:0;pointer-events:none}.mdc-list-item--with-trailing-meta .mdc-list-item__end{font-family:var(--mat-list-list-item-trailing-supporting-text-font, var(--mat-sys-label-small-font));line-height:var(--mat-list-list-item-trailing-supporting-text-line-height, var(--mat-sys-label-small-line-height));font-size:var(--mat-list-list-item-trailing-supporting-text-size, var(--mat-sys-label-small-size));font-weight:var(--mat-list-list-item-trailing-supporting-text-weight, var(--mat-sys-label-small-weight));letter-spacing:var(--mat-list-list-item-trailing-supporting-text-tracking, var(--mat-sys-label-small-tracking))}.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mat-list-list-item-trailing-icon-color, var(--mat-sys-on-surface-variant));width:var(--mat-list-list-item-trailing-icon-size, 24px);height:var(--mat-list-list-item-trailing-icon-size, 24px)}.mdc-list-item--with-trailing-icon:hover .mdc-list-item__end{color:var(--mat-list-list-item-hover-trailing-icon-color)}.mdc-list-item.mdc-list-item--with-trailing-meta .mdc-list-item__end{color:var(--mat-list-list-item-trailing-supporting-text-color, var(--mat-sys-on-surface-variant))}.mdc-list-item--selected.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mat-list-list-item-selected-trailing-icon-color, var(--mat-sys-primary))}.mdc-list-item__content{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;align-self:center;flex:1;pointer-events:none}.mdc-list-item--with-two-lines .mdc-list-item__content,.mdc-list-item--with-three-lines .mdc-list-item__content{align-self:stretch}.mdc-list-item__primary-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:var(--mat-list-list-item-label-text-color, var(--mat-sys-on-surface));font-family:var(--mat-list-list-item-label-text-font, var(--mat-sys-body-large-font));line-height:var(--mat-list-list-item-label-text-line-height, var(--mat-sys-body-large-line-height));font-size:var(--mat-list-list-item-label-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-list-list-item-label-text-weight, var(--mat-sys-body-large-weight));letter-spacing:var(--mat-list-list-item-label-text-tracking, var(--mat-sys-body-large-tracking))}.mdc-list-item:hover .mdc-list-item__primary-text{color:var(--mat-list-list-item-hover-label-text-color, var(--mat-sys-on-surface))}.mdc-list-item:focus .mdc-list-item__primary-text{color:var(--mat-list-list-item-focus-label-text-color, var(--mat-sys-on-surface))}.mdc-list-item--with-two-lines .mdc-list-item__primary-text,.mdc-list-item--with-three-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before,.mdc-list-item--with-three-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after,.mdc-list-item--with-three-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item__secondary-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:block;margin-top:0;color:var(--mat-list-list-item-supporting-text-color, var(--mat-sys-on-surface-variant));font-family:var(--mat-list-list-item-supporting-text-font, var(--mat-sys-body-medium-font));line-height:var(--mat-list-list-item-supporting-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-list-list-item-supporting-text-size, var(--mat-sys-body-medium-size));font-weight:var(--mat-list-list-item-supporting-text-weight, var(--mat-sys-body-medium-weight));letter-spacing:var(--mat-list-list-item-supporting-text-tracking, var(--mat-sys-body-medium-tracking))}.mdc-list-item__secondary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item--with-three-lines .mdc-list-item__secondary-text{white-space:normal;line-height:20px}.mdc-list-item--with-overline .mdc-list-item__secondary-text{white-space:nowrap;line-height:auto}.mdc-list-item--with-leading-radio.mdc-list-item,.mdc-list-item--with-leading-checkbox.mdc-list-item,.mdc-list-item--with-leading-icon.mdc-list-item,.mdc-list-item--with-leading-avatar.mdc-list-item{padding-left:0;padding-right:16px}[dir=rtl] .mdc-list-item--with-leading-radio.mdc-list-item,[dir=rtl] .mdc-list-item--with-leading-checkbox.mdc-list-item,[dir=rtl] .mdc-list-item--with-leading-icon.mdc-list-item,[dir=rtl] .mdc-list-item--with-leading-avatar.mdc-list-item{padding-left:16px;padding-right:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text,.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text,.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before,.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before,.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after,.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after,.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end,.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end,.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before,.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before,.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-trailing-icon.mdc-list-item,[dir=rtl] .mdc-list-item--with-trailing-icon.mdc-list-item{padding-left:0;padding-right:0}.mdc-list-item--with-trailing-icon .mdc-list-item__end{margin-left:16px;margin-right:16px}.mdc-list-item--with-trailing-meta.mdc-list-item{padding-left:16px;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-meta.mdc-list-item{padding-left:0;padding-right:16px}.mdc-list-item--with-trailing-meta .mdc-list-item__end{-webkit-user-select:none;user-select:none;margin-left:28px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-meta .mdc-list-item__end{margin-left:16px;margin-right:28px}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end,.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end{display:block;line-height:normal;align-self:flex-start;margin-top:0}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end::before,.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio .mdc-list-item__start,.mdc-list-item--with-leading-checkbox .mdc-list-item__start{margin-left:8px;margin-right:24px}[dir=rtl] .mdc-list-item--with-leading-radio .mdc-list-item__start,[dir=rtl] .mdc-list-item--with-leading-checkbox .mdc-list-item__start{margin-left:24px;margin-right:8px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__start,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-trailing-radio.mdc-list-item,.mdc-list-item--with-trailing-checkbox.mdc-list-item{padding-left:16px;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-radio.mdc-list-item,[dir=rtl] .mdc-list-item--with-trailing-checkbox.mdc-list-item{padding-left:0;padding-right:16px}.mdc-list-item--with-trailing-radio.mdc-list-item--with-leading-icon,.mdc-list-item--with-trailing-radio.mdc-list-item--with-leading-avatar,.mdc-list-item--with-trailing-checkbox.mdc-list-item--with-leading-icon,.mdc-list-item--with-trailing-checkbox.mdc-list-item--with-leading-avatar{padding-left:0}[dir=rtl] .mdc-list-item--with-trailing-radio.mdc-list-item--with-leading-icon,[dir=rtl] .mdc-list-item--with-trailing-radio.mdc-list-item--with-leading-avatar,[dir=rtl] .mdc-list-item--with-trailing-checkbox.mdc-list-item--with-leading-icon,[dir=rtl] .mdc-list-item--with-trailing-checkbox.mdc-list-item--with-leading-avatar{padding-right:0}.mdc-list-item--with-trailing-radio .mdc-list-item__end,.mdc-list-item--with-trailing-checkbox .mdc-list-item__end{margin-left:24px;margin-right:8px}[dir=rtl] .mdc-list-item--with-trailing-radio .mdc-list-item__end,[dir=rtl] .mdc-list-item--with-trailing-checkbox .mdc-list-item__end{margin-left:8px;margin-right:24px}.mdc-list-item--with-trailing-radio.mdc-list-item--with-three-lines .mdc-list-item__end,.mdc-list-item--with-trailing-checkbox.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:8px}.mdc-list-group__subheader{margin:.75rem 16px}.mdc-list-item--disabled .mdc-list-item__start,.mdc-list-item--disabled .mdc-list-item__content,.mdc-list-item--disabled .mdc-list-item__end{opacity:1}.mdc-list-item--disabled .mdc-list-item__primary-text,.mdc-list-item--disabled .mdc-list-item__secondary-text{opacity:var(--mat-list-list-item-disabled-label-text-opacity, 0.3)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mat-list-list-item-disabled-leading-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-list-list-item-disabled-leading-icon-opacity, 0.38)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mat-list-list-item-disabled-trailing-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-list-list-item-disabled-trailing-icon-opacity, 0.38)}.mat-mdc-list-item.mat-mdc-list-item-both-leading-and-trailing,[dir=rtl] .mat-mdc-list-item.mat-mdc-list-item-both-leading-and-trailing{padding-left:0;padding-right:0}.mdc-list-item.mdc-list-item--disabled .mdc-list-item__primary-text{color:var(--mat-list-list-item-disabled-label-text-color, var(--mat-sys-on-surface))}.mdc-list-item:hover::before{background-color:var(--mat-list-list-item-hover-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-list-list-item-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mdc-list-item.mdc-list-item--disabled::before{background-color:var(--mat-list-list-item-disabled-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-list-list-item-disabled-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mdc-list-item:focus::before{background-color:var(--mat-list-list-item-focus-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-list-list-item-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mdc-list-item--disabled .mdc-radio,.mdc-list-item--disabled .mdc-checkbox{opacity:var(--mat-list-list-item-disabled-label-text-opacity, 0.3)}.mdc-list-item--with-leading-avatar .mat-mdc-list-item-avatar{border-radius:var(--mat-list-list-item-leading-avatar-shape, var(--mat-sys-corner-full));background-color:var(--mat-list-list-item-leading-avatar-color, var(--mat-sys-primary-container))}.mat-mdc-list-item-icon{font-size:var(--mat-list-list-item-leading-icon-size, 24px)}@media(forced-colors: active){a.mdc-list-item--activated::after{content:"";position:absolute;top:50%;right:16px;transform:translateY(-50%);width:10px;height:0;border-bottom:solid 10px;border-radius:10px}a.mdc-list-item--activated [dir=rtl]::after{right:auto;left:16px}}.mat-mdc-list-base{display:block}.mat-mdc-list-base .mdc-list-item__start,.mat-mdc-list-base .mdc-list-item__end,.mat-mdc-list-base .mdc-list-item__content{pointer-events:auto}.mat-mdc-list-item,.mat-mdc-list-option{width:100%;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-list-item:not(.mat-mdc-list-item-interactive),.mat-mdc-list-option:not(.mat-mdc-list-item-interactive){cursor:default}.mat-mdc-list-item .mat-divider-inset,.mat-mdc-list-option .mat-divider-inset{position:absolute;left:0;right:0;bottom:0}.mat-mdc-list-item .mat-mdc-list-item-avatar~.mat-divider-inset,.mat-mdc-list-option .mat-mdc-list-item-avatar~.mat-divider-inset{margin-left:72px}[dir=rtl] .mat-mdc-list-item .mat-mdc-list-item-avatar~.mat-divider-inset,[dir=rtl] .mat-mdc-list-option .mat-mdc-list-item-avatar~.mat-divider-inset{margin-right:72px}.mat-mdc-list-item-interactive::before{top:0;left:0;right:0;bottom:0;position:absolute;content:"";opacity:0;pointer-events:none;border-radius:inherit}.mat-mdc-list-item>.mat-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-mdc-list-item:focus>.mat-focus-indicator::before{content:""}.mat-mdc-list-item.mdc-list-item--with-three-lines .mat-mdc-list-item-line.mdc-list-item__secondary-text{white-space:nowrap;line-height:normal}.mat-mdc-list-item.mdc-list-item--with-three-lines .mat-mdc-list-item-unscoped-content.mdc-list-item__secondary-text{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}mat-action-list button{background:none;color:inherit;border:none;font:inherit;outline:inherit;-webkit-tap-highlight-color:rgba(0,0,0,0);text-align:start}mat-action-list button::-moz-focus-inner{border:0}.mdc-list-item--with-leading-icon .mdc-list-item__start{margin-inline-start:var(--mat-list-list-item-leading-icon-start-space, 16px);margin-inline-end:var(--mat-list-list-item-leading-icon-end-space, 16px)}.mat-mdc-nav-list .mat-mdc-list-item{border-radius:var(--mat-list-active-indicator-shape, var(--mat-sys-corner-full));--mat-focus-indicator-border-radius: var(--mat-list-active-indicator-shape, var(--mat-sys-corner-full))}.mat-mdc-nav-list .mat-mdc-list-item.mdc-list-item--activated{background-color:var(--mat-list-active-indicator-color, var(--mat-sys-secondary-container))}\n'],encapsulation:2,changeDetection:0})}return te})(),J=(()=>{class te extends Ht{_lines;_titles;_meta;_unscopedContent;_itemText;get activated(){return this._activated}set activated(se){this._activated=(0,i.he)(se)}_activated=!1;_getAriaCurrent(){return"A"===this._hostElement.nodeName&&this._activated?"page":null}_hasBothLeadingAndTrailing(){return 0!==this._meta.length&&(0!==this._avatars.length||0!==this._icons.length)}static \u0275fac=(()=>{let se;return function(Ue){return(se||(se=S.xGo(te)))(Ue||te)}})();static \u0275cmp=S.VBU({type:te,selectors:[["mat-list-item"],["a","mat-list-item",""],["button","mat-list-item",""]],contentQueries:function(ke,Ue,Ne){if(1&ke&&(S.wni(Ne,Ee,5),S.wni(Ne,Oe,5),S.wni(Ne,dt,5)),2&ke){let Kt;S.mGM(Kt=S.lsd())&&(Ue._lines=Kt),S.mGM(Kt=S.lsd())&&(Ue._titles=Kt),S.mGM(Kt=S.lsd())&&(Ue._meta=Kt)}},viewQuery:function(ke,Ue){if(1&ke&&(S.GBs(o,5),S.GBs(f,5)),2&ke){let Ne;S.mGM(Ne=S.lsd())&&(Ue._unscopedContent=Ne.first),S.mGM(Ne=S.lsd())&&(Ue._itemText=Ne.first)}},hostAttrs:[1,"mat-mdc-list-item","mdc-list-item"],hostVars:13,hostBindings:function(ke,Ue){2&ke&&(S.BMQ("aria-current",Ue._getAriaCurrent()),S.AVh("mdc-list-item--activated",Ue.activated)("mdc-list-item--with-leading-avatar",0!==Ue._avatars.length)("mdc-list-item--with-leading-icon",0!==Ue._icons.length)("mdc-list-item--with-trailing-meta",0!==Ue._meta.length)("mat-mdc-list-item-both-leading-and-trailing",Ue._hasBothLeadingAndTrailing())("_mat-animation-noopable",Ue._noopAnimations))},inputs:{activated:"activated"},exportAs:["matListItem"],features:[S.Vt3],ngContentSelectors:b,decls:10,vars:0,consts:[["unscopedContent",""],[1,"mdc-list-item__content"],[1,"mat-mdc-list-item-unscoped-content",3,"cdkObserveContent"],[1,"mat-focus-indicator"]],template:function(ke,Ue){if(1&ke){const Ne=S.RV6();S.NAR(h),S.SdG(0),S.j41(1,"span",1),S.SdG(2,1),S.SdG(3,2),S.j41(4,"span",2,0),S.bIt("cdkObserveContent",function(){return p.eBV(Ne),p.Njj(Ue._updateItemLines(!0))}),S.SdG(6,3),S.k0s()(),S.SdG(7,4),S.SdG(8,5),S.nrm(9,"div",3)}},dependencies:[K.Wv],encapsulation:2,changeDetection:0})}return te})(),le=(()=>{class te{static \u0275fac=function(ke){return new(ke||te)};static \u0275mod=S.$C({type:te});static \u0275inj=p.G2t({imports:[K.w5,me.y,Te.p,he.O,q.w]})}return te})()},4104:(Ae,ee,l)=>{"use strict";l.d(ee,{Q:()=>K});var i=l(29330),t=l(21413),p=l(84412),S=l(7673),c=l(18810),e=l(99437),T=l(96354),g=l(56977),d=l(4416),w=l(12462),m=l(11771),P=l(2615),M=l(98570),j=l(59640),U=l(82571);let K=(()=>{var q;class G{constructor($,ae,ue,oe){this.httpClient=$,this.logger=ae,this.store=ue,this.commonService=oe,this.loopUrl="",this.swaps=[],this.swapsChanged=new p.t([]),this.unSubs=[new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B]}getLoopInfo(){return this.loopUrl=d.H$+d.rl.LOOP_API+"/info",this.httpClient.get(this.loopUrl)}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,m.mt)({payload:d.MZ.GET_LOOP_SWAPS})),this.loopUrl=d.H$+d.rl.LOOP_API+"/swaps",this.httpClient.get(this.loopUrl).pipe((0,g.Q)(this.unSubs[0])).subscribe({next:$=>{this.store.dispatch((0,m.y0)({payload:d.MZ.GET_LOOP_SWAPS})),this.swaps=$,this.swapsChanged.next(this.swaps)},error:$=>this.swapsChanged.error(this.handleErrorWithAlert(d.MZ.GET_LOOP_SWAPS,this.loopUrl,$))})}loopOut($,ae,ue,oe,he,me,Te,D,n,o){const f={amount:$,targetConf:ue,swapRoutingFee:oe,minerFee:he,prepayRoutingFee:me,prepayAmt:Te,swapFee:D,swapPublicationDeadline:n,destAddress:o};return""!==ae&&(f.chanId=ae),this.loopUrl=d.H$+d.rl.LOOP_API+"/out",this.httpClient.post(this.loopUrl,f).pipe((0,e.W)(h=>this.handleErrorWithoutAlert("Loop Out for Channel: "+ae,d.MZ.NO_SPINNER,h)))}getLoopOutTerms(){return this.loopUrl=d.H$+d.rl.LOOP_API+"/out/terms",this.httpClient.get(this.loopUrl).pipe((0,e.W)($=>this.handleErrorWithoutAlert("Loop Out Terms",d.MZ.NO_SPINNER,$)))}getLoopOutQuote($,ae,ue){let oe=new i.Nl;return oe=oe.append("targetConf",ae.toString()),oe=oe.append("swapPublicationDeadline",ue.toString()),this.loopUrl=d.H$+d.rl.LOOP_API+"/out/quote/"+$,this.store.dispatch((0,m.mt)({payload:d.MZ.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:oe}).pipe((0,g.Q)(this.unSubs[1]),(0,T.T)(he=>(this.store.dispatch((0,m.y0)({payload:d.MZ.GET_QUOTE})),he)),(0,e.W)(he=>this.handleErrorWithoutAlert("Loop Out Quote",d.MZ.GET_QUOTE,he)))}getLoopOutTermsAndQuotes($){let ae=new i.Nl;return ae=ae.append("targetConf",$.toString()),ae=ae.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=d.H$+d.rl.LOOP_API+"/out/termsAndQuotes",this.store.dispatch((0,m.mt)({payload:d.MZ.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:ae}).pipe((0,g.Q)(this.unSubs[2]),(0,T.T)(ue=>(this.store.dispatch((0,m.y0)({payload:d.MZ.GET_TERMS_QUOTES})),ue)),(0,e.W)(ue=>(0,S.of)(this.handleErrorWithAlert(d.MZ.GET_TERMS_QUOTES,this.loopUrl,ue))))}loopIn($,ae,ue,oe,he){const me={amount:$,swapFee:ae,minerFee:ue,lastHop:oe,externalHtlc:he};return this.loopUrl=d.H$+d.rl.LOOP_API+"/in",this.httpClient.post(this.loopUrl,me).pipe((0,e.W)(Te=>this.handleErrorWithoutAlert("Loop In",d.MZ.NO_SPINNER,Te)))}getLoopInTerms(){return this.loopUrl=d.H$+d.rl.LOOP_API+"/in/terms",this.httpClient.get(this.loopUrl).pipe((0,e.W)($=>this.handleErrorWithoutAlert("Loop In Terms",d.MZ.NO_SPINNER,$)))}getLoopInQuote($,ae,ue){let oe=new i.Nl;return oe=oe.append("targetConf",ae.toString()),oe=oe.append("swapPublicationDeadline",ue.toString()),this.loopUrl=d.H$+d.rl.LOOP_API+"/in/quote/"+$,this.store.dispatch((0,m.mt)({payload:d.MZ.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:oe}).pipe((0,g.Q)(this.unSubs[3]),(0,T.T)(he=>(this.store.dispatch((0,m.y0)({payload:d.MZ.GET_QUOTE})),he)),(0,e.W)(he=>this.handleErrorWithoutAlert("Loop In Qoute",d.MZ.GET_QUOTE,he)))}getLoopInTermsAndQuotes($){let ae=new i.Nl;return ae=ae.append("targetConf",$.toString()),ae=ae.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=d.H$+d.rl.LOOP_API+"/in/termsAndQuotes",this.store.dispatch((0,m.mt)({payload:d.MZ.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:ae}).pipe((0,g.Q)(this.unSubs[4]),(0,T.T)(ue=>(this.store.dispatch((0,m.y0)({payload:d.MZ.GET_TERMS_QUOTES})),ue)),(0,e.W)(ue=>(0,S.of)(this.handleErrorWithAlert(d.MZ.GET_TERMS_QUOTES,this.loopUrl,ue))))}getSwap($){return this.loopUrl=d.H$+d.rl.LOOP_API+"/swap/"+$,this.httpClient.get(this.loopUrl).pipe((0,e.W)(ae=>this.handleErrorWithoutAlert("Loop Get Swap for ID: "+$,d.MZ.NO_SPINNER,ae)))}handleErrorWithoutAlert($,ae,ue){let oe="";return this.logger.error("ERROR IN: "+$+"\n"+JSON.stringify(ue)),this.store.dispatch((0,m.y0)({payload:ae})),401===ue.status?(oe="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,m.ri)({payload:oe}))):503===ue.status?(oe="Unable to Connect to Loop Server.",this.store.dispatch((0,m.xO)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:ue.status,message:"Unable to Connect to Loop Server",URL:$},component:w.f}}}))):oe=this.commonService.extractErrorMessage(ue),(0,c.$)(()=>new Error(oe))}handleErrorWithAlert($,ae,ue){let oe="";if(this.logger.error(ue),this.store.dispatch((0,m.y0)({payload:$})),401===ue.status)oe="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,m.ri)({payload:oe}));else if(503===ue.status)oe="Unable to Connect to Loop Server.",setTimeout(()=>{this.store.dispatch((0,m.xO)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:ue.status,message:"Unable to Connect to Loop Server",URL:ae},component:w.f}}}))},100);else{oe=this.commonService.extractErrorMessage(ue);const he=ue.error&&ue.error.error&&ue.error.error.code?ue.error.error.code:ue.error&&ue.error.code?ue.error.code:ue.code?ue.code:ue.status;setTimeout(()=>{this.store.dispatch((0,m.xO)({payload:{data:{type:d.A$.ERROR,alertTitle:"ERROR",message:{code:he,message:oe,URL:ae},component:w.f}}}))},100)}return{message:oe}}ngOnDestroy(){this.unSubs.forEach($=>{$.next(null),$.complete()})}static#e=q=()=>(this.\u0275fac=function(ae){return new(ae||G)(P.KVO(i.Qq),P.KVO(M.gP),P.KVO(j.il),P.KVO(U.h))},this.\u0275prov=P.jDH({token:G,factory:G.\u0275fac}))}return q(),G})()},4125:(Ae,ee,l)=>{"use strict";l.d(ee,{Z2:()=>P});var i=l(2615),t=l(73664),p=l(21413),S=l(18359),c=l(74402),e=l(7673),T=l(96697),g=l(59096),d=l(8045);class w{_activeItemIndex=-1;_activeItem=null;_shouldActivationFollowFocus=!1;_horizontalOrientation="ltr";_skipPredicateFn=U=>!1;_trackByFn=U=>U;_items=[];_typeahead;_typeaheadSubscription=S.yU.EMPTY;_hasInitialFocused=!1;_initializeFocus(){if(this._hasInitialFocused||0===this._items.length)return;let U=0;for(let q=0;q{this._items=q.toArray(),this._typeahead?.setItems(this._items),this._updateActiveItemIndex(this._items),this._initializeFocus()})):(0,c.A)(U)?U.subscribe(q=>{this._items=q,this._typeahead?.setItems(q),this._updateActiveItemIndex(q),this._initializeFocus()}):(this._items=U,this._initializeFocus()),"boolean"==typeof K.shouldActivationFollowFocus&&(this._shouldActivationFollowFocus=K.shouldActivationFollowFocus),K.horizontalOrientation&&(this._horizontalOrientation=K.horizontalOrientation),K.skipPredicate&&(this._skipPredicateFn=K.skipPredicate),K.trackBy&&(this._trackByFn=K.trackBy),typeof K.typeAheadDebounceInterval<"u"&&this._setTypeAhead(K.typeAheadDebounceInterval)}change=new p.B;destroy(){this._typeaheadSubscription.unsubscribe(),this._typeahead?.destroy(),this.change.complete()}onKeydown(U){switch(U.key){case"Tab":return;case"ArrowDown":this._focusNextItem();break;case"ArrowUp":this._focusPreviousItem();break;case"ArrowRight":"rtl"===this._horizontalOrientation?this._collapseCurrentItem():this._expandCurrentItem();break;case"ArrowLeft":"rtl"===this._horizontalOrientation?this._expandCurrentItem():this._collapseCurrentItem();break;case"Home":this._focusFirstItem();break;case"End":this._focusLastItem();break;case"Enter":case" ":this._activateCurrentItem();break;default:if("*"===U.key){this._expandAllItemsAtCurrentItemLevel();break}return void this._typeahead?.handleKey(U)}this._typeahead?.reset(),U.preventDefault()}getActiveItemIndex(){return this._activeItemIndex}getActiveItem(){return this._activeItem}_focusFirstItem(){this.focusItem(this._findNextAvailableItemIndex(-1))}_focusLastItem(){this.focusItem(this._findPreviousAvailableItemIndex(this._items.length))}_focusNextItem(){this.focusItem(this._findNextAvailableItemIndex(this._activeItemIndex))}_focusPreviousItem(){this.focusItem(this._findPreviousAvailableItemIndex(this._activeItemIndex))}focusItem(U,K={}){K.emitChangeEvent??=!0;let q="number"==typeof U?U:this._items.findIndex($=>this._trackByFn($)===this._trackByFn(U));if(q<0||q>=this._items.length)return;const G=this._items[q];if(null!==this._activeItem&&this._trackByFn(G)===this._trackByFn(this._activeItem))return;const Q=this._activeItem;this._activeItem=G??null,this._activeItemIndex=q,this._typeahead?.setCurrentSelectedItemIndex(q),this._activeItem?.focus(),Q?.unfocus(),K.emitChangeEvent&&this.change.next(this._activeItem),this._shouldActivationFollowFocus&&this._activateCurrentItem()}_updateActiveItemIndex(U){const K=this._activeItem;if(!K)return;const q=U.findIndex(G=>this._trackByFn(G)===this._trackByFn(K));q>-1&&q!==this._activeItemIndex&&(this._activeItemIndex=q,this._typeahead?.setCurrentSelectedItemIndex(q))}_setTypeAhead(U){this._typeahead=new g.i(this._items,{debounceInterval:"number"==typeof U?U:void 0,skipPredicate:K=>this._skipPredicateFn(K)}),this._typeaheadSubscription=this._typeahead.selectedItem.subscribe(K=>{this.focusItem(K)})}_findNextAvailableItemIndex(U){for(let K=U+1;K=0;K--)if(!this._skipPredicateFn(this._items[K]))return K;return U}_collapseCurrentItem(){if(this._activeItem)if(this._isCurrentItemExpanded())this._activeItem.collapse();else{const U=this._activeItem.getParent();if(!U||this._skipPredicateFn(U))return;this.focusItem(U)}}_expandCurrentItem(){this._activeItem&&(this._isCurrentItemExpanded()?(0,d.x)(this._activeItem.getChildren()).pipe((0,T.s)(1)).subscribe(U=>{const K=U.find(q=>!this._skipPredicateFn(q));K&&this.focusItem(K)}):this._activeItem.expand())}_isCurrentItemExpanded(){return!!this._activeItem&&("boolean"==typeof this._activeItem.isExpanded?this._activeItem.isExpanded:this._activeItem.isExpanded())}_isItemDisabled(U){return"boolean"==typeof U.isDisabled?U.isDisabled:U.isDisabled?.()}_expandAllItemsAtCurrentItemLevel(){if(!this._activeItem)return;const U=this._activeItem.getParent();let K;K=U?(0,d.x)(U.getChildren()):(0,e.of)(this._items.filter(q=>null===q.getParent())),K.pipe((0,T.s)(1)).subscribe(q=>{for(const G of q)G.expand()})}_activateCurrentItem(){this._activeItem?.activate()}}const P=new i.nKC("tree-key-manager",{providedIn:"root",factory:function m(){return(j,U)=>new w(j,U)}})},4377:(Ae,ee,l)=>{var i=l(12727),t=l(23241),p=l(94593),c={binary:!0,hex:!0,base64:!0};ee.DiffieHellmanGroup=ee.createDiffieHellmanGroup=ee.getDiffieHellman=function S(T){var g=new Buffer(t[T].prime,"hex"),d=new Buffer(t[T].gen,"hex");return new p(g,d)},ee.createDiffieHellman=ee.DiffieHellman=function e(T,g,d,w){return Buffer.isBuffer(g)||void 0===c[g]?e(T,"binary",g,d):(g=g||"binary",w=w||"binary",d=d||new Buffer([2]),Buffer.isBuffer(d)||(d=new Buffer(d,w)),"number"==typeof T?new p(i(T,d),d,!0):(Buffer.isBuffer(T)||(T=new Buffer(T,g)),new p(T,d,!0)))}},4416:(Ae,ee,l)=>{"use strict";l.d(ee,{A$:()=>Te,A0:()=>m,Ah:()=>Be,BQ:()=>f,Bd:()=>I,Bv:()=>ae,C6:()=>le,C7:()=>W,F7:()=>n,G:()=>$,H$:()=>d,HW:()=>me,Hx:()=>_,It:()=>T,Jd:()=>fe,Jr:()=>oe,KR:()=>re,Ld:()=>q,MZ:()=>ye,NG:()=>e,QP:()=>ve,SY:()=>M,TC:()=>Oe,TH:()=>dt,U1:()=>D,UN:()=>h,Uq:()=>nt,Uu:()=>Ee,WW:()=>Qt,X8:()=>li,XG:()=>G,Y0:()=>Le,ZC:()=>Ie,Zb:()=>r,Zi:()=>kt,Zo:()=>Rt,_1:()=>ht,_U:()=>Ct,aG:()=>k,aR:()=>Ke,aU:()=>ge,bz:()=>c,ck:()=>ue,f7:()=>b,iI:()=>x,jG:()=>Z,k:()=>P,md:()=>U,mu:()=>J,nv:()=>Q,o1:()=>he,oi:()=>ze,on:()=>S,q9:()=>B,rl:()=>w,rs:()=>pe,tj:()=>A,ul:()=>Mt,wn:()=>_e,xk:()=>lt,xp:()=>K,xv:()=>g});var i=l(17705),t=l(96695),p=l(45383);function S(te){const ce=new t.xX;return ce.itemsPerPageLabel=te+" per page:",ce}const c=3600,e=31536e3,T=24*c*7,g="0.15.7-beta",d=(0,i.naY)()?"http://localhost:3000/rtl/api":"./api",w={AUTHENTICATE_API:d+"/authenticate",CONF_API:d+"/conf",PAGE_SETTINGS_API:d+"/pagesettings",BALANCE_API:"/balance",FEES_API:"/fees",PEERS_API:"/peers",CHANNELS_API:"/channels",CHANNELS_BACKUP_API:"/channels/backup",GETINFO_API:"/getinfo",WALLET_API:"/wallet",NETWORK_API:"/network",NEW_ADDRESS_API:"/newaddress",TRANSACTIONS_API:"/transactions",PAYMENTS_API:"/payments",INVOICES_API:"/invoices",SWITCH_API:"/switch",ON_CHAIN_API:"/onchain",MESSAGE_API:"/message",OFFERS_API:"/offers",UTILITY_API:"/utility",LOOP_API:"/loop",BOLTZ_API:"/boltz",Web_SOCKET_API:"/ws"},m=["Sats","BTC"],P={Sats:"1.0-0",BTC:"1.6-6",OTHER:"1.2-2"},M=["SECS","MINS","HOURS","DAYS"],U=10,K=[5,10,25,100],q=[{addressId:"0",addressCode:"bech32",addressTp:"Bech32 (P2WKH)",addressDetails:"Pay to witness key hash"},{addressId:"1",addressCode:"p2sh-segwit",addressTp:"P2SH (NP2WKH)",addressDetails:"Pay to nested witness key hash (default)"},{addressId:"4",addressCode:"p2tr",addressTp:"Taproot (P2TR)",addressDetails:"Pay to taproot pubkey"}],G=[{id:"0",name:"Priority (Default)"},{id:"1",name:"Target Confirmation Blocks"},{id:"2",name:"Fee"}],Q=[{id:"none",name:"No Fee Limit",placeholder:"No Limit"},{id:"fixed",name:"Fixed Limit (Sats)",placeholder:"Fixed Limit in Sats"},{id:"percent",name:"Percentage of Amount",placeholder:"Percentage Limit"}],$=[{feeRateId:"urgent",feeRateType:"Urgent"},{feeRateId:"normal",feeRateType:"Normal"},{feeRateId:"slow",feeRateType:"Slow"},{feeRateId:"customperkb",feeRateType:"Custom"}],ae={themes:[{id:"PURPLE",name:"Diogo"},{id:"TEAL",name:"My2Sats"},{id:"INDIGO",name:"RTL"},{id:"PINK",name:"BK"},{id:"YELLOW",name:"Gold"}],modes:[{id:"DAY",name:"Day"},{id:"NIGHT",name:"Night"}]};var ue=function(te){return te.PAYMENT_RECEIVED="payment-received",te.PAYMENT_RELAYED="payment-relayed",te.PAYMENT_SENT="payment-sent",te.PAYMENT_SETTLING_ONCHAIN="payment-settling-onchain",te.PAYMENT_FAILED="payment-failed",te.CHANNEL_OPENED="channel-opened",te.CHANNEL_STATE_CHANGED="channel-state-changed",te.CHANNEL_CLOSED="channel-closed",te}(ue||{}),oe=function(te){return te.CONNECT="connect",te.DISCONNECT="disconnect",te.WARNING="warning",te.INVOICE_PAYMENT="invoice_payment",te.INVOICE_CREATION="invoice_creation",te.CHANNEL_OPENED="channel_opened",te.CHANNEL_STATE_CHANGED="channel_state_changed",te.SENDPAY_SUCCESS="sendpay_success",te.SENDPAY_FAILURE="sendpay_failure",te.COIN_MOVEMENT="coin_movement",te.BALANCE_SNAPSHOT="balance_snapshot",te.BLOCK_ADDED="block_added",te.OPENCHANNEL_PEER_SIGS="openchannel_peer_sigs",te.CHANNEL_OPEN_FAILED="channel_open_failed",te}(oe||{}),he=function(te){return te.INVOICE="invoice",te}(he||{}),me=function(te){return te.OPERATOR="OPERATOR",te.MERCHANT="MERCHANT",te.ALL="ALL",te}(me||{}),Te=function(te){return te.INFORMATION="Information",te.WARNING="Warning",te.ERROR="Error",te.SUCCESS="Success",te.CONFIRM="Confirm",te}(Te||{}),D=function(te){return te.JWT="JWT",te.PASSWORD="PASSWORD",te}(D||{}),n=function(te){return te.SECS="SECS",te.MINS="MINS",te.HOURS="HOURS",te.DAYS="DAYS",te}(n||{}),f=function(te){return te.SATS="Sats",te.BTC="BTC",te.OTHER="OTHER",te}(f||{}),h=function(te){return te.ARRAY="ARRAY",te.NUMBER="NUMBER",te.STRING="STRING",te.BOOLEAN="BOOLEAN",te.PASSWORD="PASSWORD",te.DATE="DATE",te.DATE_TIME="DATE_TIME",te}(h||{}),b=function(te){return te.XS="XS",te.SM="SM",te.MD="MD",te.LG="LG",te.XL="XL",te}(b||{});const A={COOPERATIVE_CLOSE:{name:"Co-operative Close",tooltip:"Channel closed cooperatively"},LOCAL_FORCE_CLOSE:{name:"Local Force Close",tooltip:"Channel force-closed by the local node"},REMOTE_FORCE_CLOSE:{name:"Remote Force Close",tooltip:"Channel force-closed by the remote node"},BREACH_CLOSE:{name:"Breach Close",tooltip:"Remote node attempted to broadcast a prior revoked channel state"},FUNDING_CANCELED:{name:"Funding Canceled",tooltip:"Channel never fully opened"},ABANDONED:{name:"Abandoned",tooltip:"Channel abandoned by the local node"}},k={WITNESS_PUBKEY_HASH:{name:"Witness Pubkey Hash",tooltip:""},NESTED_PUBKEY_HASH:{name:"Nested Pubkey Hash",tooltip:""},UNUSED_WITNESS_PUBKEY_HASH:{name:"Unused Witness Pubkey Hash",tooltip:""},UNUSED_NESTED_PUBKEY_HASH:{name:"Unused Nested Pubkey Hash",tooltip:""},TAPROOT_PUBKEY:{name:"Taproot Pubkey Hash",tooltip:""}};var x=function(te){return te.WIRE_INVALID_ONION_VERSION="Invalid Onion Version",te.WIRE_INVALID_ONION_HMAC="Invalid Onion HMAC",te.WIRE_INVALID_ONION_KEY="Invalid Onion Key",te.WIRE_TEMPORARY_CHANNEL_FAILURE="Temporary Channel Failure",te.WIRE_PERMANENT_CHANNEL_FAILURE="Permanent Channel Failure",te.WIRE_REQUIRED_CHANNEL_FEATURE_MISSING="Missing Required Channel Feature",te.WIRE_UNKNOWN_NEXT_PEER="Unknown Next Peer",te.WIRE_AMOUNT_BELOW_MINIMUM="Amount Below Minimum",te.WIRE_FEE_INSUFFICIENT="Insufficient Fee",te.WIRE_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",te.WIRE_EXPIRY_TOO_FAR="Expiry Too Far",te.WIRE_EXPIRY_TOO_SOON="Expiry Too Soon",te.WIRE_CHANNEL_DISABLED="Channel Disabled",te.WIRE_INVALID_ONION_PAYLOAD="Invalid Onion Payload",te.WIRE_INVALID_REALM="Invalid Realm",te.WIRE_PERMANENT_NODE_FAILURE="Permanent Node Failure",te.WIRE_TEMPORARY_NODE_FAILURE="Temporary Node Failure",te.WIRE_REQUIRED_NODE_FEATURE_MISSING="Missing Required Node Feature",te.WIRE_INVALID_ONION_BLINDING="Invalid Onion Binding",te.WIRE_INCORRECT_OR_UNKNOWN_PAYMENT_DETAILS="Incorrect or Unknow Payment Details",te.WIRE_MPP_TIMEOUT="MPP Timeout",te.WIRE_FINAL_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",te.WIRE_FINAL_INCORRECT_HTLC_AMOUNT="Incorrect HTLC Amount",te}(x||{}),r=function(te){return te.CHANNELD_NORMAL="Active",te.OPENINGD="Opening",te.CHANNELD_AWAITING_LOCKIN="Pending Open",te.CHANNELD_SHUTTING_DOWN="Shutting Down",te.CLOSINGD_SIGEXCHANGE="Closing: Sig Exchange",te.CLOSINGD_COMPLETE="Closed",te.AWAITING_UNILATERAL="Awaiting Unilateral Close",te.FUNDING_SPEND_SEEN="Funding Spend Seen",te.ONCHAIN="Onchain",te.DUALOPEND_OPEN_INIT="Dual Open Initialized",te.DUALOPEND_AWAITING_LOCKIN="Dual Pending Open",te}(r||{}),_=function(te){return te.INITIATED="Initiated",te.PREIMAGE_REVEALED="Preimage Revealed",te.HTLC_PUBLISHED="HTLC Published",te.SUCCESS="Successful",te.FAILED="Failed",te.INVOICE_SETTLED="Invoice Settled",te}(_||{}),W=function(te){return te.LOOP_OUT="LOOP_OUT",te.LOOP_IN="LOOP_IN",te}(W||{}),I=function(te){return te.SWAP_OUT="SWAP_OUT",te.SWAP_IN="SWAP_IN",te}(I||{}),B=function(te){return te["swap.created"]="Swap Created",te["swap.expired"]="Swap Expired",te["invoice.set"]="Invoice Set",te["invoice.paid"]="Invoice Paid",te["invoice.pending"]="Invoice Pending",te["invoice.settled"]="Invoice Settled",te["invoice.failedToPay"]="Invoice Failed To Pay",te["channel.created"]="Channel Created",te["transaction.failed"]="Transaction Failed",te["transaction.mempool"]="Transaction Mempool",te["transaction.claimed"]="Transaction Claimed",te["transaction.refunded"]="Transaction Refunded",te["transaction.confirmed"]="Transaction Confirmed",te["transaction.lockupFailed"]="Lockup Transaction Failed",te["swap.refunded"]="Swap Refunded",te["swap.abandoned"]="Swap Abandoned",te}(B||{});const re=[{name:"Jan",days:31},{name:"Feb",days:28},{name:"Mar",days:31},{name:"Apr",days:30},{name:"May",days:31},{name:"Jun",days:30},{name:"Jul",days:31},{name:"Aug",days:31},{name:"Sep",days:30},{name:"Oct",days:31},{name:"Nov",days:30},{name:"Dec",days:31}],pe=["MONTHLY","YEARLY"],Be=["password","changeme","moneyprintergobrrr"];var _e=function(te){return te.UN_INITIATED="UN_INITIATED",te.INITIATED="INITIATED",te.COMPLETED="COMPLETED",te.ERROR="ERROR",te}(_e||{});const ye={NO_SPINNER:"No Spinner...",GET_NODE_INFO:"Getting Node Information...",INITALIZE_NODE_DATA:"Initializing Node Data...",GENERATE_NEW_ADDRESS:"Getting New Address...",SEND_FUNDS:"Sending Funds...",UPDATE_CHAN_POLICY:"Updating Channel Policy...",GET_CHAN_POLICY:"Fetching Channel Policy...",GET_REMOTE_POLICY:"Fetching Remote Policy...",CLOSE_CHANNEL:"Closing Channel...",FORCE_CLOSE_CHANNEL:"Force Closing Channel...",OPEN_CHANNEL:"Opening Channel...",CONNECT_PEER:"Connecting Peer...",DISCONNECT_PEER:"Disconnecting Peer...",ADD_INVOICE:"Adding Invoice...",CREATE_INVOICE:"Creating Invoice...",DELETE_INVOICE:"Deleting Invoices...",DECODE_PAYMENT:"Decoding Payment...",DECODE_OFFER:"Decoding Offer...",DECODE_PAYMENTS:"Decoding Payments...",FETCH_INVOICE:"Fetching Invoice...",GET_SENT_PAYMENTS:"Getting Sent Payments...",SEND_PAYMENT:"Sending Payment...",SEND_KEYSEND:"Sending Keysend Payment...",SEARCHING_NODE:"Searching Node...",SEARCHING_CHANNEL:"Searching Channel...",SEARCHING_INVOICE:"Searching Invoice...",SEARCHING_PAYMENT:"Searching Payment...",BACKUP_CHANNEL:"Backup Channels...",VERIFY_CHANNEL:"Verify Channel...",DOWNLOAD_BACKUP_FILE:"Downloading Backup File...",RESTORE_CHANNEL:"Restoring Channels...",GET_TERMS_QUOTES:"Getting Terms and Quotes...",LABEL_UTXO:"Labelling UTXO...",GET_NODE_ADDRESS:"Getting Node Address...",GEN_SEED:"Generating Seed...",INITIALIZE_WALLET:"Initializing Wallet...",UNLOCK_WALLET:"Unlocking Wallet...",WAIT_SYNC_NODE:"Waiting for Node Sync...",UPDATE_BOLTZ_SETTINGS:"Updating Boltz Service Settings...",UPDATE_LOOP_SETTINGS:"Updating Loop Service Settings...",UPDATE_PEERSWAP_SETTINGS:"Updating Peerswap Service Settings...",UPDATE_SETTING:"Updating Setting...",UPDATE_APPLICATION_SETTINGS:"Updating Application Settings...",UPDATE_NODE_SETTINGS:"Updating Node Settings...",UPDATE_SELECTED_NODE:"Updating Selected Node...",OPEN_CONFIG_FILE:"Opening Config File...",GET_BOLTZ_INFO:"Getting Boltz Info...",GET_SERVICE_INFO:"Getting Service Info...",GET_QUOTE:"Getting Quotes...",UPDATE_DEFAULT_NODE_SETTING:"Updating Defaule Node Settings...",GET_BOLTZ_SWAPS:"Getting Boltz Swaps...",SIGN_MESSAGE:"Signing Message...",VERIFY_MESSAGE:"Verifying Message...",BUMP_FEE:"Bumping Fee...",LEASE_UTXO:"Leasing UTXO...",GET_LOOP_INFO:"Getting Loop Info...",GET_LOOP_SWAPS:"Getting List Swaps...",GET_FORWARDING_HISTORY:"Getting Forwarding History...",GET_LOOKUP_DETAILS:"Getting Lookup Details...",GET_RTL_CONFIG:"Getting RTL Config...",VERIFY_TOKEN:"Verify Token...",DISABLE_OFFER:"Disabling Offer...",CREATE_OFFER:"Creating Offer...",DELETE_OFFER_BOOKMARK:"Deleting Bookmark...",GET_FUNDER_POLICY:"Getting Or Updating Funder Policy...",GET_LIST_CONFIGS:"Getting Configurations List...",LIST_NETWORK_NODES:"Getting Network Nodes List...",GET_PAGE_SETTINGS:"Getting Page Settings...",SET_PAGE_SETTINGS:"Setting Page Settings...",UPDATE_PAGE_SETTINGS:"Updating Page Layout...",REBALANCE_CHANNEL:"Rebalancing Channel...",LOG_OUT:"Logging Out..."};var Le=function(te){return te.INVOICE="INVOICE",te.OFFER="OFFER",te.KEYSEND="KEYSEND",te}(Le||{}),Ke=function(te){return te.FEES="FEES",te.EVENTS="EVENTS",te}(Ke||{}),ge=function(te){return te.VOID="VOID",te.SET_API_URL_ECL="SET_API_URL_ECL",te.UPDATE_API_CALL_STATUS_ROOT="UPDATE_API_CALL_STATUS_ROOT",te.RESET_ROOT_STORE="RESET_ROOT_STORE",te.CLOSE_ALL_DIALOGS="CLOSE_ALL_DIALOGS",te.OPEN_SNACK_BAR="OPEN_SNACKBAR",te.OPEN_SPINNER="OPEN_SPINNER",te.CLOSE_SPINNER="CLOSE_SPINNER",te.OPEN_ALERT="OPEN_ALERT",te.CLOSE_ALERT="CLOSE_ALERT",te.OPEN_CONFIRMATION="OPEN_CONFIRMATION",te.CLOSE_CONFIRMATION="CLOSE_CONFIRMATION",te.SHOW_PUBKEY="SHOW_PUBKEY",te.FETCH_CONFIG="FETCH_CONFIG",te.SHOW_CONFIG="SHOW_CONFIG",te.FETCH_STORE="FETCH_STORE",te.SET_STORE="SET_STORE",te.FETCH_APPLICATION_SETTINGS="FETCH_APPLICATION_SETTINGS",te.SET_APPLICATION_SETTINGS="SET_APPLICATION_SETTINGS",te.SAVE_SETTINGS="SAVE_SETTINGS",te.SET_SELECTED_NODE="SET_SELECTED_NODE",te.UPDATE_ROOT_NODE_SETTINGS="UPDATE_ROOT_NODE_SETTINGS",te.UPDATE_APPLICATION_SETTINGS="UPDATE_APPLICATION_SETTINGS",te.UPDATE_NODE_SETTINGS="UPDATE_NODE_SETTINGS",te.SET_SELECTED_NODE_SETTINGS="SET_SELECTED_NODE_SETTINGS",te.SET_NODE_DATA="SET_NODE_DATA",te.IS_AUTHORIZED="IS_AUTHORIZED",te.IS_AUTHORIZED_RES="IS_AUTHORIZED_RES",te.LOGIN="LOGIN",te.VERIFY_TWO_FA="VERIFY_TWO_FA",te.LOGOUT="LOGOUT",te.RESET_PASSWORD="RESET_PASSWORD",te.RESET_PASSWORD_RES="RESET_PASSWORD_RES",te.FETCH_FILE="FETCH_FILE",te.SHOW_FILE="SHOW_FILE",te}(ge||{}),ve=function(te){return te.RESET_LND_STORE="RESET_LND_STORE",te.UPDATE_API_CALL_STATUS_LND="UPDATE_API_CALL_STATUS_LND",te.SET_CHILD_NODE_SETTINGS_LND="SET_CHILD_NODE_SETTINGS_LND",te.UPDATE_SELECTED_NODE_OPTIONS="UPDATE_SELECTED_NODE_OPTIONS",te.FETCH_PAGE_SETTINGS_LND="FETCH_PAGE_SETTINGS_LND",te.SET_PAGE_SETTINGS_LND="SET_PAGE_SETTINGS_LND",te.SAVE_PAGE_SETTINGS_LND="SAVE_PAGE_SETTINGS_LND",te.FETCH_INFO_LND="FETCH_INFO_LND",te.SET_INFO_LND="SET_INFO_LND",te.FETCH_PEERS_LND="FETCH_PEERS_LND",te.SET_PEERS_LND="SET_PEERS_LND",te.SAVE_NEW_PEER_LND="SAVE_NEW_PEER_LND",te.NEWLY_ADDED_PEER_LND="NEWLY_ADDED_PEER_LND",te.DETACH_PEER_LND="DETACH_PEER_LND",te.REMOVE_PEER_LND="REMOVE_PEER_LND",te.SAVE_NEW_INVOICE_LND="SAVE_NEW_INVOICE_LND",te.NEWLY_SAVED_INVOICE_LND="NEWLY_SAVED_INVOICE_LND",te.ADD_INVOICE_LND="ADD_INVOICE_LND",te.FETCH_FEES_LND="FETCH_FEES_LND",te.SET_FEES_LND="SET_FEES_LND",te.FETCH_BLOCKCHAIN_BALANCE_LND="FETCH_BLOCKCHAIN_BALANCE_LND",te.SET_BLOCKCHAIN_BALANCE_LND="SET_BLOCKCHAIN_BALANCE_LND",te.FETCH_NETWORK_LND="FETCH_NETWORK_LND",te.SET_NETWORK_LND="SET_NETWORK_LND",te.FETCH_CHANNELS_LND="FETCH_CHANNELS_LND",te.FETCH_PENDING_CHANNELS_LND="FETCH_PENDING_CHANNELS_LND",te.FETCH_CLOSED_CHANNELS_LND="FETCH_CLOSED_CHANNELS_LND",te.SET_CHANNELS_LND="SET_CHANNELS_LND",te.SET_PENDING_CHANNELS_LND="SET_PENDING_CHANNELS_LND",te.SET_CLOSED_CHANNELS_LND="SET_CLOSED_CHANNELS_LND",te.UPDATE_CHANNEL_LND="UPDATE_CHANNEL_LND",te.SAVE_NEW_CHANNEL_LND="SAVE_NEW_CHANNEL_LND",te.CLOSE_CHANNEL_LND="CLOSE_CHANNEL_LND",te.REMOVE_CHANNEL_LND="REMOVE_CHANNEL_LND",te.BACKUP_CHANNELS_LND="BACKUP_CHANNELS_LND",te.VERIFY_CHANNEL_LND="VERIFY_CHANNEL_LND",te.BACKUP_CHANNELS_RES_LND="BACKUP_CHANNELS_RES_LND",te.VERIFY_CHANNEL_RES_LND="VERIFY_CHANNEL_RES_LND",te.RESTORE_CHANNELS_LIST_LND="RESTORE_CHANNELS_LIST_LND",te.SET_RESTORE_CHANNELS_LIST_LND="SET_RESTORE_CHANNELS_LIST_LND",te.RESTORE_CHANNELS_LND="RESTORE_CHANNELS_LND",te.RESTORE_CHANNELS_RES_LND="RESTORE_CHANNELS_RES_LND",te.FETCH_INVOICES_LND="FETCH_INVOICES_LND",te.SET_INVOICES_LND="SET_INVOICES_LND",te.UPDATE_INVOICE_LND="UPDATE_INVOICE_LND",te.UPDATE_PAYMENT_LND="UPDATE_PAYMENT_LND",te.SET_TOTAL_INVOICES_LND="SET_TOTAL_INVOICES_LND",te.FETCH_TRANSACTIONS_LND="FETCH_TRANSACTIONS_LND",te.SET_TRANSACTIONS_LND="SET_TRANSACTIONS_LND",te.FETCH_UTXOS_LND="FETCH_UTXOS_LND",te.SET_UTXOS_LND="SET_UTXOS_LND",te.FETCH_PAYMENTS_LND="FETCH_PAYMENTS_LND",te.SET_PAYMENTS_LND="SET_PAYMENTS_LND",te.SEND_PAYMENT_LND="SEND_PAYMENT_LND",te.SEND_PAYMENT_STATUS_LND="SEND_PAYMENT_STATUS_LND",te.FETCH_GRAPH_NODE_LND="FETCH_GRAPH_NODE_LND",te.SET_GRAPH_NODE_LND="SET_GRAPH_NODE_LND",te.GET_NEW_ADDRESS_LND="GET_NEW_ADDRESS_LND",te.SET_NEW_ADDRESS_LND="SET_NEW_ADDRESS_LND",te.SET_CHANNEL_TRANSACTION_LND="SET_CHANNEL_TRANSACTION_LND",te.SET_CHANNEL_TRANSACTION_RES_LND="SET_CHANNEL_TRANSACTION_RES_LND",te.GEN_SEED_LND="GEN_SEED_LND",te.GEN_SEED_RESPONSE_LND="GEN_SEED_RESPONSE_LND",te.INIT_WALLET_LND="INIT_WALLET_LND",te.INIT_WALLET_RESPONSE_LND="INIT_WALLET_RESPONSE_LND",te.UNLOCK_WALLET_LND="UNLOCK_WALLET_LND",te.PEER_LOOKUP_LND="PEER_LOOKUP_LND",te.CHANNEL_LOOKUP_LND="CHANNEL_LOOKUP_LND",te.INVOICE_LOOKUP_LND="INVOICE_LOOKUP_LND",te.PAYMENT_LOOKUP_LND="PAYMENT_LOOKUP_LND",te.SET_LOOKUP_LND="SET_LOOKUP_LND",te.GET_FORWARDING_HISTORY_LND="GET_FORWARDING_HISTORY_LND",te.SET_FORWARDING_HISTORY_LND="SET_FORWARDING_HISTORY_LND",te.GET_QUERY_ROUTES_LND="GET_QUERY_ROUTES_LND",te.SET_QUERY_ROUTES_LND="SET_QUERY_ROUTES_LND",te.GET_ALL_LIGHTNING_TRANSATIONS_LND="GET_ALL_LIGHTNING_TRANSATIONS_LND",te.SET_ALL_LIGHTNING_TRANSATIONS_LND="SET_ALL_LIGHTNING_TRANSATIONS_LND",te}(ve||{}),Oe=function(te){return te.RESET_CLN_STORE="RESET_CLN_STORE",te.UPDATE_API_CALL_STATUS_CLN="UPDATE_API_CALL_STATUS_CLN",te.SET_CHILD_NODE_SETTINGS_CLN="SET_CHILD_NODE_SETTINGS_CLN",te.FETCH_PAGE_SETTINGS_CLN="FETCH_PAGE_SETTINGS_CLN",te.SET_PAGE_SETTINGS_CLN="SET_PAGE_SETTINGS_CLN",te.SAVE_PAGE_SETTINGS_CLN="SAVE_PAGE_SETTINGS_CLN",te.FETCH_INFO_CLN="FETCH_INFO_CL_CLN",te.SET_INFO_CLN="SET_INFO_CLN",te.FETCH_FEES_CLN="FETCH_FEES_CLN",te.SET_FEES_CLN="SET_FEES_CLN",te.FETCH_FEE_RATES_CLN="FETCH_FEE_RATES_CLN",te.SET_FEE_RATES_CLN="SET_FEE_RATES_CLN",te.GET_NEW_ADDRESS_CLN="GET_NEW_ADDRESS_CLN",te.SET_NEW_ADDRESS_CLN="SET_NEW_ADDRESS_CLN",te.FETCH_UTXO_BALANCES_CLN="FETCH_UTXO_BALANCES_CLN",te.SET_UTXO_BALANCES_CLN="SET_UTXO_BALANCES_CLN",te.FETCH_PEERS_CLN="FETCH_PEERS_CLN",te.SET_PEERS_CLN="SET_PEERS_CLN",te.SAVE_NEW_PEER_CLN="SAVE_NEW_PEER_CLN",te.NEWLY_ADDED_PEER_CLN="NEWLY_ADDED_PEER_CLN",te.ADD_PEER_CLN="ADD_PEER_CLN",te.DETACH_PEER_CLN="DETACH_PEER_CLN",te.REMOVE_PEER_CLN="REMOVE_PEER_CLN",te.FETCH_CHANNELS_CLN="FETCH_CHANNELS_CLN",te.SET_CHANNELS_CLN="SET_CHANNELS_CLN",te.UPDATE_CHANNEL_CLN="UPDATE_CHANNEL_CLN",te.SAVE_NEW_CHANNEL_CLN="SAVE_NEW_CHANNEL_CLN",te.CLOSE_CHANNEL_CLN="CLOSE_CHANNEL_CLN",te.REMOVE_CHANNEL_CLN="REMOVE_CHANNEL_CLN",te.FETCH_PAYMENTS_CLN="FETCH_PAYMENTS_CLN",te.SET_PAYMENTS_CLN="SET_PAYMENTS_CLN",te.SEND_PAYMENT_CLN="SEND_PAYMENT_CLN",te.SEND_PAYMENT_STATUS_CLN="SEND_PAYMENT_STATUS_CLN",te.GET_QUERY_ROUTES_CLN="GET_QUERY_ROUTES_CLN",te.SET_QUERY_ROUTES_CLN="SET_QUERY_ROUTES_CLN",te.PEER_LOOKUP_CLN="PEER_LOOKUP_CLN",te.CHANNEL_LOOKUP_CLN="CHANNEL_LOOKUP_CLN",te.INVOICE_LOOKUP_CLN="INVOICE_LOOKUP_CLN",te.SET_LOOKUP_CLN="SET_LOOKUP_CLN",te.GET_FORWARDING_HISTORY_CLN="GET_FORWARDING_HISTORY_CLN",te.SET_FORWARDING_HISTORY_CLN="SET_FORWARDING_HISTORY_CLN",te.GET_FAILED_FORWARDING_HISTORY_CLN="GET_FAILED_FORWARDING_HISTORY_CLN",te.SET_FAILED_FORWARDING_HISTORY_CLN="SET_FAILED_FORWARDING_HISTORY_CLN",te.GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",te.SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",te.FETCH_INVOICES_CLN="FETCH_INVOICES_CLN",te.SET_INVOICES_CLN="SET_INVOICES_CLN",te.SAVE_NEW_INVOICE_CLN="SAVE_NEW_INVOICE_CLN",te.ADD_INVOICE_CLN="ADD_INVOICE_CLN",te.UPDATE_INVOICE_CLN="UPDATE_INVOICE_CLN",te.DELETE_EXPIRED_INVOICE_CLN="DELETE_EXPIRED_INVOICE_CLN",te.SET_CHANNEL_TRANSACTION_CLN="SET_CHANNEL_TRANSACTION_CLN",te.SET_CHANNEL_TRANSACTION_RES_CLN="SET_CHANNEL_TRANSACTION_RES_CLN",te.FETCH_OFFER_INVOICE_CLN="FETCH_OFFER_INVOICE_CLN",te.SET_OFFER_INVOICE_CLN="SET_OFFER_INVOICE_CLN",te.FETCH_OFFERS_CLN="FETCH_OFFERS_CLN",te.SET_OFFERS_CLN="SET_OFFERS_CLN",te.SAVE_NEW_OFFER_CLN="SAVE_NEW_OFFER_CLN",te.ADD_OFFER_CLN="ADD_OFFER_CLN",te.DISABLE_OFFER_CLN="DISABLE_OFFER_CLN",te.UPDATE_OFFER_CLN="UPDATE_OFFER_CLN",te.FETCH_OFFER_BOOKMARKS_CLN="FETCH_OFFER_BOOKMARKS_CLN",te.SET_OFFER_BOOKMARKS_CLN="SET_OFFER_BOOKMARKS_CLN",te.ADD_UPDATE_OFFER_BOOKMARK_CLN="ADD_UPDATE_OFFER_BOOKMARK_CLN",te.DELETE_OFFER_BOOKMARK_CLN="DELETE_OFFER_BOOKMARK_CLN",te.REMOVE_OFFER_BOOKMARK_CLN="REMOVE_OFFER_BOOKMARK_CL",te}(Oe||{}),Ee=function(te){return te.RESET_ECL_STORE="RESET_ECL_STORE",te.UPDATE_API_CALL_STATUS_ECL="UPDATE_API_CALL_STATUS_ECL",te.SET_CHILD_NODE_SETTINGS_ECL="SET_CHILD_NODE_SETTINGS_ECL",te.FETCH_PAGE_SETTINGS_ECL="FETCH_PAGE_SETTINGS_ECL",te.SET_PAGE_SETTINGS_ECL="SET_PAGE_SETTINGS_ECL",te.SAVE_PAGE_SETTINGS_ECL="SAVE_PAGE_SETTINGS_ECL",te.FETCH_INFO_ECL="FETCH_INFO_ECL",te.SET_INFO_ECL="SET_INFO_ECL",te.FETCH_FEES_ECL="FETCH_FEES_ECL",te.SET_FEES_ECL="SET_FEES_ECL",te.FETCH_CHANNELS_ECL="FETCH_CHANNELS_ECL",te.SET_ACTIVE_CHANNELS_ECL="SET_ACTIVE_CHANNELS_ECL",te.SET_PENDING_CHANNELS_ECL="SET_PENDING_CHANNELS_ECL",te.SET_INACTIVE_CHANNELS_ECL="SET_INACTIVE_CHANNELS_ECL",te.FETCH_ONCHAIN_BALANCE_ECL="FETCH_ONCHAIN_BALANCE_ECL",te.SET_ONCHAIN_BALANCE_ECL="SET_ONCHAIN_BALANCE_ECL",te.FETCH_LIGHTNING_BALANCE_ECL="FETCH_LIGHTNING_BALANCE_ECL",te.SET_LIGHTNING_BALANCE_ECL="SET_LIGHTNING_BALANCE_ECL",te.SET_CHANNELS_STATUS_ECL="SET_CHANNELS_STATUS_ECL",te.FETCH_PEERS_ECL="FETCH_PEERS_ECL",te.SET_PEERS_ECL="SET_PEERS_ECL",te.SAVE_NEW_PEER_ECL="SAVE_NEW_PEER_ECL",te.NEWLY_ADDED_PEER_ECL="NEWLY_ADDED_PEER_ECL",te.ADD_PEER_ECL="ADD_PEER_ECL",te.DETACH_PEER_ECL="DETACH_PEER_ECL",te.REMOVE_PEER_ECL="REMOVE_PEER_ECL",te.GET_NEW_ADDRESS_ECL="GET_NEW_ADDRESS_ECL",te.SET_NEW_ADDRESS_ECL="SET_NEW_ADDRESS_ECL",te.SAVE_NEW_CHANNEL_ECL="SAVE_NEW_CHANNEL_ECL",te.UPDATE_CHANNEL_ECL="UPDATE_CHANNEL_ECL",te.CLOSE_CHANNEL_ECL="CLOSE_CHANNEL_ECL",te.REMOVE_CHANNEL_ECL="REMOVE_CHANNEL_ECL",te.FETCH_PAYMENTS_ECL="FETCH_PAYMENTS_ECL",te.SET_PAYMENTS_ECL="SET_PAYMENTS_ECL",te.GET_QUERY_ROUTES_ECL="GET_QUERY_ROUTES_ECL",te.SET_QUERY_ROUTES_ECL="SET_QUERY_ROUTES_ECL",te.SEND_PAYMENT_ECL="SEND_PAYMENT_ECL",te.SEND_PAYMENT_STATUS_ECL="SEND_PAYMENT_STATUS_ECL",te.FETCH_TRANSACTIONS_ECL="FETCH_TRANSACTIONS_ECL",te.SET_TRANSACTIONS_ECL="SET_TRANSACTIONS_ECL",te.SEND_ONCHAIN_FUNDS_ECL="SEND_ONCHAIN_FUNDS_ECL",te.SEND_ONCHAIN_FUNDS_RES_ECL="SEND_ONCHAIN_FUNDS_RES_ECL",te.FETCH_INVOICES_ECL="FETCH_INVOICES_ECL",te.SET_INVOICES_ECL="SET_INVOICES_ECL",te.SET_TOTAL_INVOICES_ECL="SET_TOTAL_INVOICES_ECL",te.CREATE_INVOICE_ECL="CREATE_INVOICE_ECL",te.ADD_INVOICE_ECL="ADD_INVOICE_ECL",te.UPDATE_INVOICE_ECL="UPDATE_INVOICE_ECL",te.PEER_LOOKUP_ECL="PEER_LOOKUP_ECL",te.INVOICE_LOOKUP_ECL="INVOICE_LOOKUP_ECL",te.SET_LOOKUP_ECL="SET_LOOKUP_ECL",te.UPDATE_CHANNEL_STATE_ECL="UPDATE_CHANNEL_STATE_ECL",te.UPDATE_RELAYED_PAYMENT_ECL="UPDATE_RELAYED_PAYMENT_ECL",te}(Ee||{});const dt=[{range:{min:0,max:1},description:"Requires or supports extra channel re-establish fields"},{range:{min:4,max:5},description:"Commits to a shutdown script pubkey when opening channel"},{range:{min:6,max:7},description:"More sophisticated gossip control"},{range:{min:8,max:9},description:"Requires/supports variable-length routing onion payloads"},{range:{min:10,max:11},description:"Gossip queries can include additional information"},{range:{min:12,max:13},description:"Static key for remote output"},{range:{min:14,max:15},description:"Node supports payment secret field"},{range:{min:16,max:17},description:"Node can receive basic multi-part payments"},{range:{min:18,max:19},description:"Node can create large channels"},{range:{min:20,max:21},description:"Anchor outputs"},{range:{min:22,max:23},description:"Anchor commitment type with zero fee HTLC transactions"},{range:{min:26,max:27},description:"Future segwit versions allowed in shutdown"},{range:{min:30,max:31},description:"AMP support"},{range:{min:44,max:45},description:"Explicit commitment type"}];var nt=function(te){return te.gossip_queries_ex="Gossip queries including additional information",te.option_anchor_outputs="Anchor outputs",te.option_data_loss_protect="Extra channel re-establish fields",te.var_onion_optin="Variable-length routing onion payloads",te.option_static_remotekey="Static key for remote output",te.option_support_large_channel="Create large channels",te.option_anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",te.payment_secret="Payment secret field",te.option_shutdown_anysegwit="Future segwit versions allowed in shutdown",te.basic_mpp="Basic multi-part payments",te.gossip_queries="More sophisticated gossip control",te.option_upfront_shutdown_script="Shutdown script pubkey when opening channel",te.anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",te.amp="AMP",te}(nt||{}),Ct=function(te){return te["data-loss-protect"]="Extra channel re-establish fields",te["upfront-shutdown-script"]="Shutdown script pubkey when opening channel",te["gossip-queries"]="More sophisticated gossip control",te["tlv-onion"]="Variable-length routing onion payloads",te["ext-gossip-queries"]="Gossip queries can include additional information",te["static-remote-key"]="Static key for remote output",te["payment-addr"]="Payment secret field",te["multi-path-payments"]="Basic multi-part payments",te["wumbo-channels"]="Wumbo Channels",te.anchors="Anchor outputs",te["anchors-zero-fee-htlc-tx"]="Anchor commitment type with zero fee HTLC transactions",te.amp="AMP",te}(Ct||{});const Mt=[{id:"match",placeholder:"Policy Match (%age)",min:0,max:200},{id:"available",placeholder:"Policy Available (%age)",min:0,max:100},{id:"fixed",placeholder:"Fixed Policy (Sats)",min:0,max:100}];var lt=function(te){return te.OFFERED="offered",te.SETTLED="settled",te.FAILED="failed",te.LOCAL_FAILED="local_failed",te}(lt||{}),ze=function(te){return te.ASCENDING="asc",te.DESCENDING="desc",te}(ze||{});const Z=["asc","desc"],J=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:U,sortBy:"blockheight",sortOrder:ze.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]},{tableId:"dust_utxos",recordsPerPage:U,sortBy:"blockheight",sortOrder:ze.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:U,sortBy:"msatoshi_to_us",sortOrder:ze.DESCENDING,columnSelectionSM:["alias","msatoshi_to_us","msatoshi_to_them"],columnSelection:["short_channel_id","alias","msatoshi_to_us","msatoshi_to_them","balancedness"]},{tableId:"pending_inactive_channels",recordsPerPage:U,sortBy:"state",sortOrder:ze.DESCENDING,columnSelectionSM:["alias","state"],columnSelection:["alias","connected","state","msatoshi_total"]},{tableId:"peers",recordsPerPage:U,sortBy:"alias",sortOrder:ze.ASCENDING,columnSelectionSM:["alias","id"],columnSelection:["alias","id","netaddr"]},{tableId:"active_HTLCs",recordsPerPage:U,sortBy:"expiry",sortOrder:ze.DESCENDING,columnSelectionSM:["amount_msat","direction","expiry"],columnSelection:["amount_msat","direction","expiry","state"]}]},{pageId:"liquidity_ads",tables:[{tableId:"liquidity_ads",recordsPerPage:U,sortBy:"channel_opening_fee",sortOrder:ze.ASCENDING,columnSelectionSM:["alias","channel_opening_fee"],columnSelection:["alias","last_timestamp","lease_fee","routing_fee","channel_opening_fee"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:U,sortBy:"created_at",sortOrder:ze.DESCENDING,columnSelectionSM:["created_at","msatoshi"],columnSelection:["created_at","type","payment_hash","msatoshi_sent","msatoshi"]},{tableId:"invoices",recordsPerPage:U,sortBy:"expires_at",sortOrder:ze.DESCENDING,columnSelectionSM:["expires_at","msatoshi"],columnSelection:["expires_at","paid_at","type","description","msatoshi","msatoshi_received"]},{tableId:"offers",recordsPerPage:U,sortBy:"offer_id",sortOrder:ze.DESCENDING,columnSelectionSM:["offer_id","single_use"],columnSelection:["offer_id","single_use","used"]},{tableId:"offer_bookmarks",recordsPerPage:U,sortBy:"lastUpdatedAt",sortOrder:ze.DESCENDING,columnSelectionSM:["lastUpdatedAt","amountMSat"],columnSelection:["lastUpdatedAt","title","description","amountMSat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:U,sortBy:"received_time",sortOrder:ze.DESCENDING,columnSelectionSM:["received_time","in_msatoshi","out_msatoshi"],columnSelection:["received_time","resolved_time","in_channel_alias","out_channel_alias","in_msatoshi","out_msatoshi","fee"]},{tableId:"routing_peers",recordsPerPage:U,sortBy:"total_fee",sortOrder:ze.DESCENDING,columnSelectionSM:["alias","events","total_fee"],columnSelection:["channel_id","alias","events","total_amount","total_fee"]},{tableId:"failed",recordsPerPage:U,sortBy:"received_time",sortOrder:ze.DESCENDING,columnSelectionSM:["received_time","in_channel_alias","in_msatoshi"],columnSelection:["received_time","resolved_time","in_channel_alias","out_channel_alias","in_msatoshi","out_msatoshi","fee"]},{tableId:"local_failed",recordsPerPage:U,sortBy:"received_time",sortOrder:ze.DESCENDING,columnSelectionSM:["received_time","in_channel_alias","in_msatoshi"],columnSelection:["received_time","in_channel_alias","in_msatoshi","style","failreason"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:U,sortBy:"received_time",sortOrder:ze.DESCENDING,columnSelectionSM:["received_time","in_msatoshi","out_msatoshi"],columnSelection:["received_time","resolved_time","in_channel_alias","out_channel_alias","in_msatoshi","out_msatoshi","fee"]},{tableId:"transactions",recordsPerPage:U,sortBy:"date",sortOrder:ze.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]},{pageId:"graph_lookup",tables:[{tableId:"query_routes",recordsPerPage:U,sortBy:"msatoshi",sortOrder:ze.DESCENDING,columnSelectionSM:["alias","direction","msatoshi"],columnSelection:["alias","channel","direction","delay","msatoshi"]}]}],fe={on_chain:{utxos:{maxColumns:7,allowedColumns:[{column:"txid",label:"Transaction ID"},{column:"address"},{column:"scriptpubkey",label:"Script Pubkey"},{column:"output"},{column:"value"},{column:"blockheight"},{column:"reserved"}]},dust_utxos:{maxColumns:7,allowedColumns:[{column:"txid",label:"Transaction ID"},{column:"address"},{column:"scriptpubkey",label:"Script Pubkey"},{column:"output"},{column:"value"},{column:"blockheight"},{column:"reserved"}]}},peers_channels:{open_channels:{maxColumns:8,allowedColumns:[{column:"short_channel_id"},{column:"alias"},{column:"id"},{column:"channel_id"},{column:"funding_txid",label:"Funding Transaction ID"},{column:"connected"},{column:"our_channel_reserve_satoshis",label:"Local Reserve"},{column:"their_channel_reserve_satoshis",label:"Remote Reserve"},{column:"msatoshi_total",label:"Total"},{column:"spendable_msatoshi",label:"Spendable"},{column:"msatoshi_to_us",label:"Local Balance"},{column:"msatoshi_to_them",label:"Remote Balance"},{column:"balancedness",label:"Balance Score"}]},pending_inactive_channels:{maxColumns:8,allowedColumns:[{column:"alias"},{column:"id"},{column:"channel_id"},{column:"funding_txid",label:"Funding Transaction ID"},{column:"connected"},{column:"state"},{column:"our_channel_reserve_satoshis",label:"Local Reserve"},{column:"their_channel_reserve_satoshis",label:"Remote Reserve"},{column:"msatoshi_total",label:"Total"},{column:"spendable_msatoshi",label:"Spendable"},{column:"msatoshi_to_us",label:"Local Balance"},{column:"msatoshi_to_them",label:"Remote Balance"}]},peers:{maxColumns:3,allowedColumns:[{column:"alias"},{column:"id"},{column:"netaddr",label:"Network Address"}]},active_HTLCs:{maxColumns:7,allowedColumns:[{column:"amount_msat",label:"Amount (Sats)"},{column:"direction"},{column:"id",label:"HTLC ID"},{column:"state"},{column:"expiry"},{column:"payment_hash"},{column:"local_trimmed"}]}},liquidity_ads:{liquidity_ads:{maxColumns:8,allowedColumns:[{column:"alias"},{column:"nodeid",label:"Node ID"},{column:"last_timestamp",label:"Last Announcement At"},{column:"compact_lease"},{column:"lease_fee"},{column:"routing_fee"},{column:"channel_opening_fee"},{column:"funding_weight"}]}},transactions:{payments:{maxColumns:7,allowedColumns:[{column:"created_at",label:"Created At"},{column:"type"},{column:"payment_hash"},{column:"bolt11",label:"Invoice"},{column:"destination"},{column:"memo"},{column:"label"},{column:"msatoshi_sent",label:"Sats Sent"},{column:"msatoshi",label:"Sats Received"}]},invoices:{maxColumns:7,allowedColumns:[{column:"expires_at",label:"Expiry Date"},{column:"paid_at",label:"Date Settled"},{column:"type"},{column:"description"},{column:"label"},{column:"payment_hash"},{column:"bolt11",label:"Invoice"},{column:"msatoshi",label:"Amount"},{column:"msatoshi_received",label:"Amount Settled"}]},offers:{maxColumns:4,allowedColumns:[{column:"offer_id",label:"Offer ID"},{column:"single_use"},{column:"used"},{column:"bolt12",label:"Invoice"}]},offer_bookmarks:{maxColumns:6,allowedColumns:[{column:"lastUpdatedAt",label:"Updated At"},{column:"title"},{column:"description"},{column:"issuer"},{column:"bolt12",label:"Invoice"},{column:"amountMSat",label:"Amount"}]}},routing:{forwarding_history:{maxColumns:8,allowedColumns:[{column:"received_time"},{column:"resolved_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"payment_hash"},{column:"in_msatoshi",label:"Amount In"},{column:"out_msatoshi",label:"Amount Out"},{column:"fee"}]},routing_peers:{maxColumns:5,allowedColumns:[{column:"channel_id"},{column:"alias",label:"Peer Alias"},{column:"events"},{column:"total_amount",label:"Amount"},{column:"total_fee",label:"Fee"}]},failed:{maxColumns:7,allowedColumns:[{column:"received_time"},{column:"resolved_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"in_msatoshi",label:"Amount In"},{column:"out_msatoshi",label:"Amount Out"},{column:"fee"}]},local_failed:{maxColumns:6,allowedColumns:[{column:"received_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"in_msatoshi",label:"Amount In"},{column:"style"},{column:"failreason",label:"Fail Reason"}]}},reports:{routing:{maxColumns:8,allowedColumns:[{column:"received_time"},{column:"resolved_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"payment_hash"},{column:"in_msatoshi",label:"Amount In"},{column:"out_msatoshi",label:"Amount Out"},{column:"fee"}]},transactions:{maxColumns:5,allowedColumns:[{column:"date"},{column:"amount_paid"},{column:"num_payments",label:"# Payments"},{column:"amount_received"},{column:"num_invoices",label:"# Invoices"}]}},graph_lookup:{query_routes:{maxColumns:6,allowedColumns:[{column:"id"},{column:"alias"},{column:"channel"},{column:"direction"},{column:"delay"},{column:"msatoshi",label:"Amount"}]}}},Ie=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:U,sortBy:"tx_id",sortOrder:ze.DESCENDING,columnSelectionSM:["output","amount_sat"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]},{tableId:"transactions",recordsPerPage:U,sortBy:"time_stamp",sortOrder:ze.DESCENDING,columnSelectionSM:["time_stamp","amount","num_confirmations"],columnSelection:["time_stamp","label","amount","total_fees","block_height","num_confirmations"]},{tableId:"dust_utxos",recordsPerPage:U,sortBy:"tx_id",sortOrder:ze.DESCENDING,columnSelectionSM:["output","amount_sat"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open",recordsPerPage:U,sortBy:"balancedness",sortOrder:ze.DESCENDING,columnSelectionSM:["remote_alias","local_balance"],columnSelection:["remote_alias","uptime_str","total_satoshis_sent","total_satoshis_received","local_balance","remote_balance","balancedness"]},{tableId:"pending_open",sortBy:"capacity",sortOrder:ze.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","commit_fee","commit_weight","capacity"]},{tableId:"pending_force_closing",sortBy:"limbo_balance",sortOrder:ze.DESCENDING,columnSelectionSM:["remote_alias","limbo_balance"],columnSelection:["remote_alias","recovered_balance","limbo_balance","capacity"]},{tableId:"pending_closing",sortBy:"capacity",sortOrder:ze.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","local_balance","remote_balance","capacity"]},{tableId:"pending_waiting_close",sortBy:"limbo_balance",sortOrder:ze.DESCENDING,columnSelectionSM:["remote_alias","limbo_balance"],columnSelection:["remote_alias","limbo_balance","local_balance","remote_balance"]},{tableId:"closed",recordsPerPage:U,sortBy:"close_type",sortOrder:ze.DESCENDING,columnSelectionSM:["remote_alias","settled_balance"],columnSelection:["close_type","remote_alias","capacity","close_height","settled_balance"]},{tableId:"active_HTLCs",recordsPerPage:U,sortBy:"incoming",sortOrder:ze.ASCENDING,columnSelectionSM:["amount","incoming","expiration_height"],columnSelection:["amount","incoming","expiration_height","hash_lock"]},{tableId:"peers",recordsPerPage:U,sortBy:"alias",sortOrder:ze.DESCENDING,columnSelectionSM:["alias","sat_sent","sat_recv"],columnSelection:["alias","pub_key","sat_sent","sat_recv","ping_time"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:U,sortBy:"creation_date",sortOrder:ze.DESCENDING,columnSelectionSM:["creation_date","fee","value"],columnSelection:["creation_date","payment_hash","fee","value","hops"]},{tableId:"invoices",recordsPerPage:U,sortBy:"creation_date",sortOrder:ze.DESCENDING,columnSelectionSM:["creation_date","settle_date","value"],columnSelection:["creation_date","settle_date","memo","value","amt_paid_sat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:U,sortBy:"timestamp",sortOrder:ze.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"routing_peers",recordsPerPage:U,sortBy:"total_amount",sortOrder:ze.DESCENDING,columnSelectionSM:["alias","events","total_amount"],columnSelection:["chan_id","alias","events","total_amount"]},{tableId:"non_routing_peers",recordsPerPage:U,sortBy:"remote_alias",sortOrder:ze.DESCENDING,columnSelectionSM:["remote_alias","local_balance","remote_balance"],columnSelection:["chan_id","remote_alias","total_satoshis_received","total_satoshis_sent","local_balance","remote_balance"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:U,sortBy:"timestamp",sortOrder:ze.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"transactions",recordsPerPage:U,sortBy:"date",sortOrder:ze.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]},{pageId:"graph_lookup",tables:[{tableId:"query_routes",recordsPerPage:U,sortBy:"hop_sequence",sortOrder:ze.ASCENDING,columnSelectionSM:["hop_sequence","pubkey_alias","fee_msat"],columnSelection:["hop_sequence","pubkey_alias","chan_capacity","amt_to_forward_msat","fee_msat"]}]},{pageId:"loop",tables:[{tableId:"loop",recordsPerPage:U,sortBy:"initiation_time",sortOrder:ze.DESCENDING,columnSelectionSM:["state","amt"],columnSelection:["state","initiation_time","amt","cost_server","cost_offchain","cost_onchain"]}]},{pageId:"boltz",tables:[{tableId:"swap_out",recordsPerPage:U,sortBy:"status",sortOrder:ze.DESCENDING,columnSelectionSM:["status","id","onchainAmount"],columnSelection:["status","id","claimAddress","onchainAmount","timeoutBlockHeight"]},{tableId:"swap_in",recordsPerPage:U,sortBy:"status",sortOrder:ze.DESCENDING,columnSelectionSM:["status","id","expectedAmount"],columnSelection:["status","id","lockupAddress","expectedAmount","timeoutBlockHeight"]}]}],ht={on_chain:{utxos:{maxColumns:7,allowedColumns:[{column:"tx_id",label:"Transaction ID"},{column:"output"},{column:"label"},{column:"address_type"},{column:"address"},{column:"amount_sat",label:"Amount"},{column:"confirmations"}]},transactions:{maxColumns:7,allowedColumns:[{column:"time_stamp",label:"Date/Time"},{column:"label"},{column:"block_hash"},{column:"tx_hash",label:"Transaction Hash"},{column:"amount"},{column:"total_fees",label:"Fees"},{column:"block_height"},{column:"num_confirmations",label:"Confirmations"}]},dust_utxos:{maxColumns:7,allowedColumns:[{column:"tx_id",label:"Transaction ID"},{column:"output"},{column:"label"},{column:"address_type"},{column:"address"},{column:"amount_sat"},{column:"confirmations"}]}},peers_channels:{open:{maxColumns:8,allowedColumns:[{column:"remote_alias",label:"Peer"},{column:"remote_pubkey",label:"Pubkey"},{column:"channel_point"},{column:"chan_id",label:"Channel ID"},{column:"initiator"},{column:"static_remote_key"},{column:"uptime_str",label:"Uptime"},{column:"lifetime_str",label:"Lifetime"},{column:"commit_fee"},{column:"commit_weight"},{column:"fee_per_kw",label:"Fee/KW"},{column:"num_updates",label:"Updates"},{column:"unsettled_balance"},{column:"capacity"},{column:"local_chan_reserve_sat",label:"Local Reserve"},{column:"remote_chan_reserve_sat",label:"Remote Reserve"},{column:"total_satoshis_sent",label:"Sats Sent"},{column:"total_satoshis_received",label:"Sats Received"},{column:"local_balance"},{column:"remote_balance"},{column:"balancedness",label:"Balance Score"}]},pending_open:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"confirmation_height"},{column:"commit_fee"},{column:"commit_weight"},{column:"fee_per_kw",label:"Fee/KW"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},pending_force_closing:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"closing_txid",label:"Closing Tx ID"},{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"limbo_balance"},{column:"maturity_height"},{column:"blocks_til_maturity",label:"Blocks till Maturity"},{column:"recovered_balance"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},pending_closing:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"closing_txid",label:"Closing Tx ID"},{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},pending_waiting_close:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"closing_txid",label:"Closing Tx ID"},{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"limbo_balance"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},closed:{maxColumns:7,allowedColumns:[{column:"close_type"},{column:"remote_alias",label:"Peer"},{column:"remote_pubkey",label:"Pubkey"},{column:"channel_point"},{column:"chan_id",label:"Channel ID"},{column:"closing_tx_hash",label:"Closing Tx Hash"},{column:"chain_hash"},{column:"open_initiator"},{column:"close_initiator"},{column:"time_locked_balance",label:"Timelocked Balance"},{column:"capacity"},{column:"close_height"},{column:"settled_balance"}]},active_HTLCs:{maxColumns:7,allowedColumns:[{column:"amount"},{column:"incoming"},{column:"forwarding_channel"},{column:"htlc_index"},{column:"forwarding_htlc_index"},{column:"expiration_height"},{column:"hash_lock"}]},peers:{maxColumns:8,allowedColumns:[{column:"alias"},{column:"pub_key",label:"Public Key"},{column:"address"},{column:"sync_type"},{column:"inbound"},{column:"bytes_sent"},{column:"bytes_recv",label:"Bytes Received"},{column:"sat_sent",label:"Sats Sent"},{column:"sat_recv",label:"Sats Received"},{column:"ping_time"}]}},transactions:{payments:{maxColumns:8,allowedColumns:[{column:"creation_date"},{column:"payment_hash"},{column:"payment_request"},{column:"payment_preimage"},{column:"description"},{column:"description_hash"},{column:"failure_reason"},{column:"payment_index"},{column:"fee"},{column:"value"},{column:"hops"}]},invoices:{maxColumns:9,allowedColumns:[{column:"private"},{column:"is_keysend",label:"Keysend"},{column:"is_amp",label:"AMP"},{column:"creation_date",label:"Date Created"},{column:"settle_date",label:"Date Settled"},{column:"memo"},{column:"r_preimage",label:"Preimage"},{column:"r_hash",label:"Preimage Hash"},{column:"payment_addr",label:"Payment Address"},{column:"payment_request"},{column:"description_hash"},{column:"expiry"},{column:"cltv_expiry"},{column:"add_index"},{column:"settle_index"},{column:"value",label:"Amount"},{column:"amt_paid_sat",label:"Amount Settled"}]}},routing:{forwarding_history:{maxColumns:6,allowedColumns:[{column:"timestamp"},{column:"alias_in",label:"Inbound Alias"},{column:"chan_id_in",label:"Inbound Channel"},{column:"alias_out",label:"Outbound Alias"},{column:"chan_id_out",label:"Outbound Channel"},{column:"amt_in",label:"Inbound Amount"},{column:"amt_out",label:"Outbound Amount"},{column:"fee_msat",label:"Fee"}]},routing_peers:{maxColumns:4,allowedColumns:[{column:"chan_id",label:"Channel ID"},{column:"alias",label:"Peer Alias"},{column:"events"},{column:"total_amount"}]},non_routing_peers:{maxColumns:8,allowedColumns:[{column:"chan_id",label:"Channel ID"},{column:"remote_alias",label:"Peer Alias"},{column:"remote_pubkey",label:"Peer Pubkey"},{column:"channel_point"},{column:"uptime_str",label:"Uptime"},{column:"lifetime_str",label:"Lifetime"},{column:"commit_fee"},{column:"commit_weight"},{column:"fee_per_kw",label:"Fee/KW"},{column:"num_updates",label:"Updates"},{column:"unsettled_balance"},{column:"capacity"},{column:"local_chan_reserve_sat",label:"Local Reserve"},{column:"remote_chan_reserve_sat",label:"Remote Reserve"},{column:"total_satoshis_sent",label:"Sats Sent"},{column:"total_satoshis_received",label:"Sats Received"},{column:"local_balance"},{column:"remote_balance"}]}},reports:{routing:{maxColumns:6,allowedColumns:[{column:"timestamp"},{column:"alias_in",label:"Inbound Alias"},{column:"chan_id_in",label:"Inbound Channel"},{column:"alias_out",label:"Outbound Alias"},{column:"chan_id_out",label:"Outbound Channel"},{column:"amt_in",label:"Inbound Amount"},{column:"amt_out",label:"Outbound Amount"},{column:"fee_msat",label:"Fee"}]},transactions:{maxColumns:5,allowedColumns:[{column:"date"},{column:"amount_paid"},{column:"num_payments",label:"# Payments"},{column:"amount_received"},{column:"num_invoices",label:"# Invoices"}]}},graph_lookup:{query_routes:{maxColumns:8,disablePageSize:!0,allowedColumns:[{column:"hop_sequence",label:"Hop"},{column:"pubkey_alias",label:"Peer"},{column:"pub_key",label:"Peer Pubkey"},{column:"chan_id",label:"Channel ID"},{column:"tlv_payload"},{column:"expiry"},{column:"chan_capacity",label:"Capacity"},{column:"amt_to_forward_msat",label:"Amount To Fwd"},{column:"fee_msat",label:"Fee"}]}},loop:{loop:{maxColumns:8,allowedColumns:[{column:"state"},{column:"initiation_time"},{column:"last_update_time"},{column:"amt",label:"Amount"},{column:"cost_server"},{column:"cost_offchain"},{column:"cost_onchain"},{column:"htlc_address"},{column:"id"},{column:"id_bytes",label:"ID (Bytes)"}]}},boltz:{swap_out:{maxColumns:7,allowedColumns:[{column:"status"},{column:"id",label:"Swap ID"},{column:"claimAddress",label:"Claim Address"},{column:"onchainAmount",label:"Onchain Amount"},{column:"error"},{column:"privateKey",label:"Private Key"},{column:"preimage"},{column:"redeemScript",label:"Redeem Script"},{column:"invoice"},{column:"timeoutBlockHeight",label:"Timeout Block Height"},{column:"lockupTransactionId",label:"Lockup Tx ID"},{column:"claimTransactionId",label:"Claim Tx ID"}]},swap_in:{maxColumns:7,allowedColumns:[{column:"status"},{column:"id",label:"Swap ID"},{column:"lockupAddress",label:"Lockup Address"},{column:"expectedAmount",label:"Expected Amount"},{column:"error"},{column:"privateKey",label:"Private Key"},{column:"preimage"},{column:"redeemScript",label:"Redeem Script"},{column:"invoice"},{column:"timeoutBlockHeight",label:"Timeout Block Height"},{column:"lockupTransactionId",label:"Lockup Tx ID"},{column:"refundTransactionId",label:"Refund Tx ID"}]}}},li=[{pageId:"on_chain",tables:[{tableId:"transaction",recordsPerPage:U,sortBy:"timestamp",sortOrder:ze.DESCENDING,columnSelectionSM:["timestamp","amount"],columnSelection:["timestamp","address","amount","fees","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:U,sortBy:"alias",sortOrder:ze.DESCENDING,columnSelectionSM:["alias","toLocal","toRemote"],columnSelection:["shortChannelId","alias","feeBaseMsat","feeProportionalMillionths","toLocal","toRemote","balancedness"]},{tableId:"pending_channels",recordsPerPage:U,sortBy:"alias",sortOrder:ze.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","alias","toLocal","toRemote"]},{tableId:"inactive_channels",recordsPerPage:U,sortBy:"alias",sortOrder:ze.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","shortChannelId","alias","toLocal","toRemote","balancedness"]},{tableId:"peers",recordsPerPage:U,sortBy:"alias",sortOrder:ze.ASCENDING,columnSelectionSM:["alias","nodeId"],columnSelection:["alias","nodeId","address","channels"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:U,sortBy:"firstPartTimestamp",sortOrder:ze.DESCENDING,columnSelectionSM:["firstPartTimestamp","recipientAmount"],columnSelection:["firstPartTimestamp","id","recipientNodeAlias","recipientAmount"]},{tableId:"invoices",recordsPerPage:U,sortBy:"receivedAt",sortOrder:ze.DESCENDING,columnSelectionSM:["timestamp","amount","amountSettled"],columnSelection:["timestamp","receivedAt","description","amount","amountSettled"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:U,sortBy:"timestamp",sortOrder:ze.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"routing_peers",recordsPerPage:U,sortBy:"totalFee",sortOrder:ze.DESCENDING,columnSelectionSM:["alias","events","totalFee"],columnSelection:["channelId","alias","events","totalAmount","totalFee"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:U,sortBy:"timestamp",sortOrder:ze.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"transactions",recordsPerPage:U,sortBy:"date",sortOrder:ze.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]}],Qt={on_chain:{transaction:{maxColumns:6,allowedColumns:[{column:"timestamp",label:"Date/Time"},{column:"address"},{column:"blockHash"},{column:"txid",label:"Transaction ID"},{column:"amount"},{column:"fees"},{column:"confirmations"}]}},peers_channels:{open_channels:{maxColumns:8,allowedColumns:[{column:"shortChannelId"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isInitiator",label:"Initiator"},{column:"feeBaseMsat",label:"Base Fee"},{column:"feeProportionalMillionths",label:"Fee Rate"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"},{column:"balancedness",label:"Balance Score"}]},pending_channels:{maxColumns:7,allowedColumns:[{column:"state"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isInitiator",label:"Initiator"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"}]},inactive_channels:{maxColumns:8,allowedColumns:[{column:"state"},{column:"shortChannelId"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isInitiator",label:"Initiator"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"},{column:"balancedness",label:"Balance Score"}]},peers:{maxColumns:4,allowedColumns:[{column:"alias"},{column:"nodeId"},{column:"address",label:"Netwrok Address"},{column:"channels"}]}},transactions:{payments:{maxColumns:7,allowedColumns:[{column:"firstPartTimestamp",label:"Date/Time"},{column:"id"},{column:"recipientNodeId",label:"Destination Node ID"},{column:"recipientNodeAlias",label:"Destination"},{column:"description"},{column:"paymentHash"},{column:"paymentPreimage",label:"Preimage"},{column:"recipientAmount",label:"Amount"}]},invoices:{maxColumns:7,allowedColumns:[{column:"timestamp",label:"Date Created"},{column:"expiresAt",label:"Date Expiry"},{column:"receivedAt",label:"Date Settled"},{column:"nodeId",label:"Node ID"},{column:"description"},{column:"paymentHash"},{column:"amount"},{column:"amountSettled",label:"Amount Settled"}]}},routing:{forwarding_history:{maxColumns:7,allowedColumns:[{column:"timestamp",label:"Date/Time"},{column:"fromChannelId",label:"In Channel ID"},{column:"fromShortChannelId",label:"In Channel Short ID"},{column:"fromChannelAlias",label:"In Channel"},{column:"toChannelId",label:"Out Channel ID"},{column:"toShortChannelId",label:"Out Channel Short ID"},{column:"toChannelAlias",label:"Out Channel"},{column:"paymentHash"},{column:"amountIn"},{column:"amountOut"},{column:"fee",label:"Fee Earned"}]},routing_peers:{maxColumns:5,allowedColumns:[{column:"channelId"},{column:"alias",label:"Peer Alias"},{column:"events"},{column:"totalAmount",label:"Amount"},{column:"totalFee",label:"Fee"}]}},reports:{routing:{maxColumns:7,allowedColumns:[{column:"timestamp",label:"Date/Time"},{column:"fromChannelId",label:"In Channel ID"},{column:"fromShortChannelId",label:"In Channel Short ID"},{column:"fromChannelAlias",label:"In Channel"},{column:"toChannelId",label:"Out Channel ID"},{column:"toShortChannelId",label:"Out Channel Short ID"},{column:"toChannelAlias",label:"Out Channel"},{column:"paymentHash"},{column:"amountIn"},{column:"amountOut"},{column:"fee",label:"Fee Earned"}]},transactions:{maxColumns:5,allowedColumns:[{column:"date"},{column:"amount_paid"},{column:"num_payments",label:"# Payments"},{column:"amount_received"},{column:"num_invoices",label:"# Invoices"}]}}},di_DKK="\n \n \n \n ",kt=[{id:"USD",name:"United States Dollar",iconType:"FA",symbol:p.Vpi},{id:"ARS",name:"Argentina Peso",iconType:"FA",symbol:p.Vpi},{id:"AUD",name:"Australia Dollar",iconType:"FA",symbol:p.Vpi},{id:"BRL",name:"Brazil Real",iconType:"FA",symbol:p.Tq9},{id:"CAD",name:"Canada Dollar",iconType:"FA",symbol:p.Vpi},{id:"CHF",name:"Switzerland Franc",iconType:"FA",symbol:p.zjW},{id:"CLP",name:"Chile Peso",iconType:"FA",symbol:p.Vpi},{id:"CNY",name:"China Yuan Renminbi",iconType:"FA",symbol:p.zPk},{id:"CZK",name:"Czech Republic Koruna",iconType:"SVG",symbol:"\n \n \n \n \n \n \n \n ",class:"currency-icon-x-large"},{id:"DKK",name:"Denmark Krone",iconType:"SVG",symbol:di_DKK,class:"currency-icon-medium"},{id:"EUR",name:"Euro Member Countries",iconType:"FA",symbol:p.s5m},{id:"GBP",name:"United Kingdom Pound",iconType:"FA",symbol:p.vfE},{id:"HKD",name:"Hong Kong Dollar",iconType:"FA",symbol:p.Vpi},{id:"HRK",name:"Croatia Kuna",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/15766/croatia-kuna-currency-symbol --\x3e\n \n \n \n \n \n ',class:"currency-icon-medium"},{id:"HUF",name:"Hungary Forint",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/183602/forint-business-and-finance --\x3e\n \n \n \n \n \n \n ',class:"currency-icon-small"},{id:"INR",name:"India Rupee",iconType:"FA",symbol:p.FYJ},{id:"ISK",name:"Iceland Krona",iconType:"SVG",symbol:di_DKK,class:"currency-icon-medium"},{id:"JPY",name:"Japan Yen",iconType:"FA",symbol:p.zPk},{id:"KRW",name:"Korea (South) Won",iconType:"FA",symbol:p.JKM},{id:"NZD",name:"New Zealand Dollar",iconType:"FA",symbol:p.Vpi},{id:"PLN",name:"Poland Zloty",iconType:"SVG",symbol:"\n \n \n \n \n \n \n ",class:"currency-icon-large"},{id:"RON",name:"Romania Leu",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/64526/romania-lei-currency --\x3e\n \n \n \n \n \n ',class:"currency-icon-medium"},{id:"RUB",name:"Russia Ruble",iconType:"FA",symbol:p.f6_},{id:"SEK",name:"Sweden Krona",iconType:"SVG",symbol:di_DKK,class:"currency-icon-medium"},{id:"SGD",name:"Singapore Dollar",iconType:"FA",symbol:p.Vpi},{id:"THB",name:"Thailand Baht",iconType:"FA",symbol:p.Kcb},{id:"TRY",name:"Turkey Lira",iconType:"FA",symbol:p.hb3},{id:"TWD",name:"Taiwan New Dollar",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/142061/new-taiwan-dollar --\x3e\n \n \n \n \n \n \n ',class:"currency-icon-small"}];function Rt(te){const ce=kt.find(se=>se.id===te);return"SVG"===ce.iconType&&"string"==typeof ce.symbol&&(ce.symbol=ce.symbol.replace('{"use strict";var ee=Object.defineProperty||!1;if(ee)try{ee({},"a",{value:1})}catch{ee=!1}Ae.exports=ee},4729:(Ae,ee,l)=>{"use strict";var i=l(44068);Ae.exports=function(p){return!!i(p)}},4761:(Ae,ee,l)=>{"use strict";l.d(ee,{l:()=>t});const t=function i(){return"function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator"}()},4912:(Ae,ee,l)=>{"use strict";var i=l(85488);Ae.exports=function(p){return i(p)||0===p?p:p<0?-1:1}},5019:Ae=>{"use strict";Ae.exports=["Float16Array","Float32Array","Float64Array","Int8Array","Int16Array","Int32Array","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array"]},5286:Ae=>{"use strict";Ae.exports=URIError},5337:Ae=>{"use strict";Ae.exports=Math.round},5451:(Ae,ee,l)=>{"use strict";var i=l(88723),t=l(3136),p=t.assert,S=t.cachedProperty,c=t.parseBytes;function e(T,g){this.eddsa=T,"object"!=typeof g&&(g=c(g)),Array.isArray(g)&&(p(g.length===2*T.encodingLength,"Signature has invalid size"),g={R:g.slice(0,T.encodingLength),S:g.slice(T.encodingLength)}),p(g.R&&g.S,"Signature without R or S"),T.isPoint(g.R)&&(this._R=g.R),g.S instanceof i&&(this._S=g.S),this._Rencoded=Array.isArray(g.R)?g.R:g.Rencoded,this._Sencoded=Array.isArray(g.S)?g.S:g.Sencoded}S(e,"S",function(){return this.eddsa.decodeInt(this.Sencoded())}),S(e,"R",function(){return this.eddsa.decodePoint(this.Rencoded())}),S(e,"Rencoded",function(){return this.eddsa.encodePoint(this.R())}),S(e,"Sencoded",function(){return this.eddsa.encodeInt(this.S())}),e.prototype.toBytes=function(){return this.Rencoded().concat(this.Sencoded())},e.prototype.toHex=function(){return t.encode(this.toBytes(),"hex").toUpperCase()},Ae.exports=e},5563:(Ae,ee,l)=>{"use strict";var i=l(68283),t=l(27138);function p(){if(!(this instanceof p))return new p;t.call(this),this.h=[3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428]}i.inherits(p,t),Ae.exports=p,p.blockSize=512,p.outSize=224,p.hmacStrength=192,p.padLength=64,p.prototype._digest=function(c){return"hex"===c?i.toHex32(this.h.slice(0,7),"big"):i.split32(this.h.slice(0,7),"big")}},5718:(Ae,ee,l)=>{"use strict";l.d(ee,{uv:()=>pe,Gj:()=>nt,R:()=>re,E9:()=>Ct,Xj:()=>Be});var i=l(2615),t=l(73664),p=l(21413),S=l(7673),c=l(71985),e=l(96780),T=l(18359);const g={schedule(Mt){let lt=requestAnimationFrame,Pe=cancelAnimationFrame;const{delegate:Ht}=g;Ht&&(lt=Ht.requestAnimationFrame,Pe=Ht.cancelAnimationFrame);const ct=lt(Ce=>{Pe=void 0,Mt(Ce)});return new T.yU(()=>Pe?.(ct))},requestAnimationFrame(...Mt){const{delegate:lt}=g;return(lt?.requestAnimationFrame||requestAnimationFrame)(...Mt)},cancelAnimationFrame(...Mt){const{delegate:lt}=g;return(lt?.cancelAnimationFrame||cancelAnimationFrame)(...Mt)},delegate:void 0};var w=l(39687);new class m extends w.q{flush(lt){let Pe;this._active=!0,lt?Pe=lt.id:(Pe=this._scheduled,this._scheduled=void 0);const{actions:Ht}=this;let ct;lt=lt||Ht.shift();do{if(ct=lt.execute(lt.state,lt.delay))break}while((lt=Ht[0])&<.id===Pe&&Ht.shift());if(this._active=!1,ct){for(;(lt=Ht[0])&<.id===Pe&&Ht.shift();)lt.unsubscribe();throw ct}}}(class d extends e.R{constructor(lt,Pe){super(lt,Pe),this.scheduler=lt,this.work=Pe}requestAsyncId(lt,Pe,Ht=0){return null!==Ht&&Ht>0?super.requestAsyncId(lt,Pe,Ht):(lt.actions.push(this),lt._scheduled||(lt._scheduled=g.requestAnimationFrame(()=>lt.flush(void 0))))}recycleAsyncId(lt,Pe,Ht=0){var ct;if(null!=Ht?Ht>0:this.delay>0)return super.recycleAsyncId(lt,Pe,Ht);const{actions:Ce}=lt;null!=Pe&&Pe===lt._scheduled&&(null===(ct=Ce[Ce.length-1])||void 0===ct?void 0:ct.id)!==Pe&&(g.cancelAnimationFrame(Pe),lt._scheduled=void 0)}});let U,j=1;const K={};function q(Mt){return Mt in K&&(delete K[Mt],!0)}const G={setImmediate(Mt){const lt=j++;return K[lt]=!0,U||(U=Promise.resolve()),U.then(()=>q(lt)&&Mt()),lt},clearImmediate(Mt){q(Mt)}},{setImmediate:$,clearImmediate:ae}=G,ue={setImmediate(...Mt){const{delegate:lt}=ue;return(lt?.setImmediate||$)(...Mt)},clearImmediate(Mt){const{delegate:lt}=ue;return(lt?.clearImmediate||ae)(Mt)},delegate:void 0};new class he extends w.q{flush(lt){this._active=!0;const Pe=this._scheduled;this._scheduled=void 0;const{actions:Ht}=this;let ct;lt=lt||Ht.shift();do{if(ct=lt.execute(lt.state,lt.delay))break}while((lt=Ht[0])&<.id===Pe&&Ht.shift());if(this._active=!1,ct){for(;(lt=Ht[0])&<.id===Pe&&Ht.shift();)lt.unsubscribe();throw ct}}}(class oe extends e.R{constructor(lt,Pe){super(lt,Pe),this.scheduler=lt,this.work=Pe}requestAsyncId(lt,Pe,Ht=0){return null!==Ht&&Ht>0?super.requestAsyncId(lt,Pe,Ht):(lt.actions.push(this),lt._scheduled||(lt._scheduled=ue.setImmediate(lt.flush.bind(lt,void 0))))}recycleAsyncId(lt,Pe,Ht=0){var ct;if(null!=Ht?Ht>0:this.delay>0)return super.recycleAsyncId(lt,Pe,Ht);const{actions:Ce}=lt;null!=Pe&&(null===(ct=Ce[Ce.length-1])||void 0===ct?void 0:ct.id)!==Pe&&(ue.clearImmediate(Pe),lt._scheduled===Pe&&(lt._scheduled=void 0))}});var D=l(13798),n=l(5964),o=l(67847),f=l(39842),h=l(61577),b=l(47860),A=l(28203);let re=(()=>{class Mt{_ngZone=(0,i.WQX)(t.SKi);_platform=(0,i.WQX)(f.O);_renderer=(0,i.WQX)(t._9s).createRenderer(null,null);_cleanupGlobalListener;constructor(){}_scrolled=new p.B;_scrolledCount=0;scrollContainers=new Map;register(Pe){this.scrollContainers.has(Pe)||this.scrollContainers.set(Pe,Pe.elementScrolled().subscribe(()=>this._scrolled.next(Pe)))}deregister(Pe){const Ht=this.scrollContainers.get(Pe);Ht&&(Ht.unsubscribe(),this.scrollContainers.delete(Pe))}scrolled(Pe=20){return this._platform.isBrowser?new c.c(Ht=>{this._cleanupGlobalListener||(this._cleanupGlobalListener=this._ngZone.runOutsideAngular(()=>this._renderer.listen("document","scroll",()=>this._scrolled.next())));const ct=Pe>0?this._scrolled.pipe((0,D.Z)(Pe)).subscribe(Ht):this._scrolled.subscribe(Ht);return this._scrolledCount++,()=>{ct.unsubscribe(),this._scrolledCount--,this._scrolledCount||(this._cleanupGlobalListener?.(),this._cleanupGlobalListener=void 0)}}):(0,S.of)()}ngOnDestroy(){this._cleanupGlobalListener?.(),this._cleanupGlobalListener=void 0,this.scrollContainers.forEach((Pe,Ht)=>this.deregister(Ht)),this._scrolled.complete()}ancestorScrolled(Pe,Ht){const ct=this.getAncestorScrollContainers(Pe);return this.scrolled(Ht).pipe((0,n.p)(Ce=>!Ce||ct.indexOf(Ce)>-1))}getAncestorScrollContainers(Pe){const Ht=[];return this.scrollContainers.forEach((ct,Ce)=>{this._scrollableContainsElement(Ce,Pe)&&Ht.push(Ce)}),Ht}_scrollableContainsElement(Pe,Ht){let ct=(0,o.i8)(Ht),Ce=Pe.getElementRef().nativeElement;do{if(ct==Ce)return!0}while(ct=ct.parentElement);return!1}static \u0275fac=function(Ht){return new(Ht||Mt)};static \u0275prov=i.jDH({token:Mt,factory:Mt.\u0275fac,providedIn:"root"})}return Mt})(),pe=(()=>{class Mt{elementRef=(0,i.WQX)(t.aKT);scrollDispatcher=(0,i.WQX)(re);ngZone=(0,i.WQX)(t.SKi);dir=(0,i.WQX)(h.dS,{optional:!0});_scrollElement=this.elementRef.nativeElement;_destroyed=new p.B;_renderer=(0,i.WQX)(t.sFG);_cleanupScroll;_elementScrolled=new p.B;constructor(){}ngOnInit(){this._cleanupScroll=this.ngZone.runOutsideAngular(()=>this._renderer.listen(this._scrollElement,"scroll",Pe=>this._elementScrolled.next(Pe))),this.scrollDispatcher.register(this)}ngOnDestroy(){this._cleanupScroll?.(),this._elementScrolled.complete(),this.scrollDispatcher.deregister(this),this._destroyed.next(),this._destroyed.complete()}elementScrolled(){return this._elementScrolled}getElementRef(){return this.elementRef}scrollTo(Pe){const Ht=this.elementRef.nativeElement,ct=this.dir&&"rtl"==this.dir.value;null==Pe.left&&(Pe.left=ct?Pe.end:Pe.start),null==Pe.right&&(Pe.right=ct?Pe.start:Pe.end),null!=Pe.bottom&&(Pe.top=Ht.scrollHeight-Ht.clientHeight-Pe.bottom),ct&&(0,b.BD)()!=b.r5.NORMAL?(null!=Pe.left&&(Pe.right=Ht.scrollWidth-Ht.clientWidth-Pe.left),(0,b.BD)()==b.r5.INVERTED?Pe.left=Pe.right:(0,b.BD)()==b.r5.NEGATED&&(Pe.left=Pe.right?-Pe.right:Pe.right)):null!=Pe.right&&(Pe.left=Ht.scrollWidth-Ht.clientWidth-Pe.right),this._applyScrollToOptions(Pe)}_applyScrollToOptions(Pe){const Ht=this.elementRef.nativeElement;(0,b.CZ)()?Ht.scrollTo(Pe):(null!=Pe.top&&(Ht.scrollTop=Pe.top),null!=Pe.left&&(Ht.scrollLeft=Pe.left))}measureScrollOffset(Pe){const Ht="left",Ce=this.elementRef.nativeElement;if("top"==Pe)return Ce.scrollTop;if("bottom"==Pe)return Ce.scrollHeight-Ce.clientHeight-Ce.scrollTop;const ze=this.dir&&"rtl"==this.dir.value;return"start"==Pe?Pe=ze?"right":Ht:"end"==Pe&&(Pe=ze?Ht:"right"),ze&&(0,b.BD)()==b.r5.INVERTED?Pe==Ht?Ce.scrollWidth-Ce.clientWidth-Ce.scrollLeft:Ce.scrollLeft:ze&&(0,b.BD)()==b.r5.NEGATED?Pe==Ht?Ce.scrollLeft+Ce.scrollWidth-Ce.clientWidth:-Ce.scrollLeft:Pe==Ht?Ce.scrollLeft:Ce.scrollWidth-Ce.clientWidth-Ce.scrollLeft}static \u0275fac=function(Ht){return new(Ht||Mt)};static \u0275dir=t.FsC({type:Mt,selectors:[["","cdk-scrollable",""],["","cdkScrollable",""]]})}return Mt})(),Be=(()=>{class Mt{_platform=(0,i.WQX)(f.O);_listeners;_viewportSize;_change=new p.B;_document=(0,i.WQX)(i.qQL);constructor(){const Pe=(0,i.WQX)(t.SKi),Ht=(0,i.WQX)(t._9s).createRenderer(null,null);Pe.runOutsideAngular(()=>{if(this._platform.isBrowser){const ct=Ce=>this._change.next(Ce);this._listeners=[Ht.listen("window","resize",ct),Ht.listen("window","orientationchange",ct)]}this.change().subscribe(()=>this._viewportSize=null)})}ngOnDestroy(){this._listeners?.forEach(Pe=>Pe()),this._change.complete()}getViewportSize(){this._viewportSize||this._updateViewportSize();const Pe={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),Pe}getViewportRect(){const Pe=this.getViewportScrollPosition(),{width:Ht,height:ct}=this.getViewportSize();return{top:Pe.top,left:Pe.left,bottom:Pe.top+ct,right:Pe.left+Ht,height:ct,width:Ht}}getViewportScrollPosition(){if(!this._platform.isBrowser)return{top:0,left:0};const Pe=this._document,Ht=this._getWindow(),ct=Pe.documentElement,Ce=ct.getBoundingClientRect();return{top:-Ce.top||Pe.body.scrollTop||Ht.scrollY||ct.scrollTop||0,left:-Ce.left||Pe.body.scrollLeft||Ht.scrollX||ct.scrollLeft||0}}change(Pe=20){return Pe>0?this._change.pipe((0,D.Z)(Pe)):this._change}_getWindow(){return this._document.defaultView||window}_updateViewportSize(){const Pe=this._getWindow();this._viewportSize=this._platform.isBrowser?{width:Pe.innerWidth,height:Pe.innerHeight}:{width:0,height:0}}static \u0275fac=function(Ht){return new(Ht||Mt)};static \u0275prov=i.jDH({token:Mt,factory:Mt.\u0275fac,providedIn:"root"})}return Mt})(),nt=(()=>{class Mt{static \u0275fac=function(Ht){return new(Ht||Mt)};static \u0275mod=t.$C({type:Mt});static \u0275inj=i.G2t({})}return Mt})(),Ct=(()=>{class Mt{static \u0275fac=function(Ht){return new(Ht||Mt)};static \u0275mod=t.$C({type:Mt});static \u0275inj=i.G2t({imports:[A.jI,nt,A.jI,nt]})}return Mt})()},5942:(Ae,ee,l)=>{(ee=Ae.exports=l(19609)).Stream=ee,ee.Readable=ee,ee.Writable=l(47849),ee.Duplex=l(74075),ee.Transform=l(2909),ee.PassThrough=l(18823)},5951:(Ae,ee,l)=>{"use strict";l.d(ee,{VT:()=>oe,Wk:()=>me,_g:()=>he});var i=l(76838),t=l(89726),p=l(18689),S=l(2615),c=l(73664),e=l(17705),T=l(89417),g=l(88968),d=l(31804),w=l(32046),m=l(12496),P=l(53155),M=l(22466),j=l(26881);const U=["input"],K=["formField"],q=["*"];class G{source;value;constructor(D,n){this.source=D,this.value=n}}const Q={provide:T.kq,useExisting:(0,S.Rfq)(()=>oe),multi:!0},$=new S.nKC("MatRadioGroup"),ae=new S.nKC("mat-radio-default-options",{providedIn:"root",factory:function ue(){return{color:"accent",disabledInteractive:!1}}});let oe=(()=>{class Te{_changeDetector=(0,S.WQX)(e.gRc);_value=null;_name=(0,S.WQX)(t.g).getId("mat-radio-group-");_selected=null;_isInitialized=!1;_labelPosition="after";_disabled=!1;_required=!1;_buttonChanges;_controlValueAccessorChangeFn=()=>{};onTouched=()=>{};change=new c.bkB;_radios;color;get name(){return this._name}set name(n){this._name=n,this._updateRadioButtonNames()}get labelPosition(){return this._labelPosition}set labelPosition(n){this._labelPosition="before"===n?"before":"after",this._markRadiosForCheck()}get value(){return this._value}set value(n){this._value!==n&&(this._value=n,this._updateSelectedRadioFromValue(),this._checkSelectedRadioButton())}_checkSelectedRadioButton(){this._selected&&!this._selected.checked&&(this._selected.checked=!0)}get selected(){return this._selected}set selected(n){this._selected=n,this.value=n?n.value:null,this._checkSelectedRadioButton()}get disabled(){return this._disabled}set disabled(n){this._disabled=n,this._markRadiosForCheck()}get required(){return this._required}set required(n){this._required=n,this._markRadiosForCheck()}get disabledInteractive(){return this._disabledInteractive}set disabledInteractive(n){this._disabledInteractive=n,this._markRadiosForCheck()}_disabledInteractive=!1;constructor(){}ngAfterContentInit(){this._isInitialized=!0,this._buttonChanges=this._radios.changes.subscribe(()=>{this.selected&&!this._radios.find(n=>n===this.selected)&&(this._selected=null)})}ngOnDestroy(){this._buttonChanges?.unsubscribe()}_touch(){this.onTouched&&this.onTouched()}_updateRadioButtonNames(){this._radios&&this._radios.forEach(n=>{n.name=this.name,n._markForCheck()})}_updateSelectedRadioFromValue(){this._radios&&(null===this._selected||this._selected.value!==this._value)&&(this._selected=null,this._radios.forEach(o=>{o.checked=this.value===o.value,o.checked&&(this._selected=o)}))}_emitChangeEvent(){this._isInitialized&&this.change.emit(new G(this._selected,this._value))}_markRadiosForCheck(){this._radios&&this._radios.forEach(n=>n._markForCheck())}writeValue(n){this.value=n,this._changeDetector.markForCheck()}registerOnChange(n){this._controlValueAccessorChangeFn=n}registerOnTouched(n){this.onTouched=n}setDisabledState(n){this.disabled=n,this._changeDetector.markForCheck()}static \u0275fac=function(o){return new(o||Te)};static \u0275dir=c.FsC({type:Te,selectors:[["mat-radio-group"]],contentQueries:function(o,f,h){if(1&o&&c.wni(h,he,5),2&o){let b;c.mGM(b=c.lsd())&&(f._radios=b)}},hostAttrs:["role","radiogroup",1,"mat-mdc-radio-group"],inputs:{color:"color",name:"name",labelPosition:"labelPosition",value:"value",selected:"selected",disabled:[2,"disabled","disabled",e.L39],required:[2,"required","required",e.L39],disabledInteractive:[2,"disabledInteractive","disabledInteractive",e.L39]},outputs:{change:"change"},exportAs:["matRadioGroup"],features:[c.Jv_([Q,{provide:$,useExisting:Te}])]})}return Te})(),he=(()=>{class Te{_elementRef=(0,S.WQX)(c.aKT);_changeDetector=(0,S.WQX)(e.gRc);_focusMonitor=(0,S.WQX)(i.FN);_radioDispatcher=(0,S.WQX)(p.z);_defaultOptions=(0,S.WQX)(ae,{optional:!0});_ngZone=(0,S.WQX)(c.SKi);_renderer=(0,S.WQX)(c.sFG);_uniqueId=(0,S.WQX)(t.g).getId("mat-radio-");_cleanupClick;id=this._uniqueId;name;ariaLabel;ariaLabelledby;ariaDescribedby;disableRipple=!1;tabIndex=0;get checked(){return this._checked}set checked(n){this._checked!==n&&(this._checked=n,n&&this.radioGroup&&this.radioGroup.value!==this.value?this.radioGroup.selected=this:!n&&this.radioGroup&&this.radioGroup.value===this.value&&(this.radioGroup.selected=null),n&&this._radioDispatcher.notify(this.id,this.name),this._changeDetector.markForCheck())}get value(){return this._value}set value(n){this._value!==n&&(this._value=n,null!==this.radioGroup&&(this.checked||(this.checked=this.radioGroup.value===n),this.checked&&(this.radioGroup.selected=this)))}get labelPosition(){return this._labelPosition||this.radioGroup&&this.radioGroup.labelPosition||"after"}set labelPosition(n){this._labelPosition=n}_labelPosition;get disabled(){return this._disabled||null!==this.radioGroup&&this.radioGroup.disabled}set disabled(n){this._setDisabled(n)}get required(){return this._required||this.radioGroup&&this.radioGroup.required}set required(n){n!==this._required&&this._changeDetector.markForCheck(),this._required=n}get color(){return this._color||this.radioGroup&&this.radioGroup.color||this._defaultOptions&&this._defaultOptions.color||"accent"}set color(n){this._color=n}_color;get disabledInteractive(){return this._disabledInteractive||null!==this.radioGroup&&this.radioGroup.disabledInteractive}set disabledInteractive(n){this._disabledInteractive=n}_disabledInteractive;change=new c.bkB;radioGroup;get inputId(){return`${this.id||this._uniqueId}-input`}_checked=!1;_disabled;_required;_value=null;_removeUniqueSelectionListener=()=>{};_previousTabIndex;_inputElement;_rippleTrigger;_noopAnimations=(0,d.Rc)();_injector=(0,S.WQX)(S.zZn);constructor(){(0,S.WQX)(g.l).load(w.A);const n=(0,S.WQX)($,{optional:!0}),o=(0,S.WQX)(new e.ES_("tabindex"),{optional:!0});this.radioGroup=n,this._disabledInteractive=this._defaultOptions?.disabledInteractive??!1,o&&(this.tabIndex=(0,e.Udg)(o,0))}focus(n,o){o?this._focusMonitor.focusVia(this._inputElement,o,n):this._inputElement.nativeElement.focus(n)}_markForCheck(){this._changeDetector.markForCheck()}ngOnInit(){this.radioGroup&&(this.checked=this.radioGroup.value===this._value,this.checked&&(this.radioGroup.selected=this),this.name=this.radioGroup.name),this._removeUniqueSelectionListener=this._radioDispatcher.listen((n,o)=>{n!==this.id&&o===this.name&&(this.checked=!1)})}ngDoCheck(){this._updateTabIndex()}ngAfterViewInit(){this._updateTabIndex(),this._focusMonitor.monitor(this._elementRef,!0).subscribe(n=>{!n&&this.radioGroup&&this.radioGroup._touch()}),this._ngZone.runOutsideAngular(()=>{this._cleanupClick=this._renderer.listen(this._inputElement.nativeElement,"click",this._onInputClick)})}ngOnDestroy(){this._cleanupClick?.(),this._focusMonitor.stopMonitoring(this._elementRef),this._removeUniqueSelectionListener()}_emitChangeEvent(){this.change.emit(new G(this,this._value))}_isRippleDisabled(){return this.disableRipple||this.disabled}_onInputInteraction(n){if(n.stopPropagation(),!this.checked&&!this.disabled){const o=this.radioGroup&&this.value!==this.radioGroup.value;this.checked=!0,this._emitChangeEvent(),this.radioGroup&&(this.radioGroup._controlValueAccessorChangeFn(this.value),o&&this.radioGroup._emitChangeEvent())}}_onTouchTargetClick(n){this._onInputInteraction(n),(!this.disabled||this.disabledInteractive)&&this._inputElement?.nativeElement.focus()}_setDisabled(n){this._disabled!==n&&(this._disabled=n,this._changeDetector.markForCheck())}_onInputClick=n=>{this.disabled&&this.disabledInteractive&&n.preventDefault()};_updateTabIndex(){const n=this.radioGroup;let o;if(o=n&&n.selected&&!this.disabled?n.selected===this?this.tabIndex:-1:this.tabIndex,o!==this._previousTabIndex){const f=this._inputElement?.nativeElement;f&&(f.setAttribute("tabindex",o+""),this._previousTabIndex=o,(0,c.mal)(()=>{queueMicrotask(()=>{n&&n.selected&&n.selected!==this&&document.activeElement===f&&(n.selected?._inputElement.nativeElement.focus(),document.activeElement===f&&this._inputElement.nativeElement.blur())})},{injector:this._injector}))}}static \u0275fac=function(o){return new(o||Te)};static \u0275cmp=c.VBU({type:Te,selectors:[["mat-radio-button"]],viewQuery:function(o,f){if(1&o&&(c.GBs(U,5),c.GBs(K,7,c.aKT)),2&o){let h;c.mGM(h=c.lsd())&&(f._inputElement=h.first),c.mGM(h=c.lsd())&&(f._rippleTrigger=h.first)}},hostAttrs:[1,"mat-mdc-radio-button"],hostVars:19,hostBindings:function(o,f){1&o&&c.bIt("focus",function(){return f._inputElement.nativeElement.focus()}),2&o&&(c.BMQ("id",f.id)("tabindex",null)("aria-label",null)("aria-labelledby",null)("aria-describedby",null),c.AVh("mat-primary","primary"===f.color)("mat-accent","accent"===f.color)("mat-warn","warn"===f.color)("mat-mdc-radio-checked",f.checked)("mat-mdc-radio-disabled",f.disabled)("mat-mdc-radio-disabled-interactive",f.disabledInteractive)("_mat-animation-noopable",f._noopAnimations))},inputs:{id:"id",name:"name",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],disableRipple:[2,"disableRipple","disableRipple",e.L39],tabIndex:[2,"tabIndex","tabIndex",n=>null==n?0:(0,e.Udg)(n)],checked:[2,"checked","checked",e.L39],value:"value",labelPosition:"labelPosition",disabled:[2,"disabled","disabled",e.L39],required:[2,"required","required",e.L39],color:"color",disabledInteractive:[2,"disabledInteractive","disabledInteractive",e.L39]},outputs:{change:"change"},exportAs:["matRadioButton"],ngContentSelectors:q,decls:13,vars:17,consts:[["formField",""],["input",""],["mat-internal-form-field","",3,"labelPosition"],[1,"mdc-radio"],[1,"mat-mdc-radio-touch-target",3,"click"],["type","radio","aria-invalid","false",1,"mdc-radio__native-control",3,"change","id","checked","disabled","required"],[1,"mdc-radio__background"],[1,"mdc-radio__outer-circle"],[1,"mdc-radio__inner-circle"],["mat-ripple","",1,"mat-radio-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mat-ripple-element","mat-radio-persistent-ripple"],[1,"mdc-label",3,"for"]],template:function(o,f){if(1&o){const h=c.RV6();c.NAR(),c.j41(0,"div",2,0)(2,"div",3)(3,"div",4),c.bIt("click",function(A){return S.eBV(h),S.Njj(f._onTouchTargetClick(A))}),c.k0s(),c.j41(4,"input",5,1),c.bIt("change",function(A){return S.eBV(h),S.Njj(f._onInputInteraction(A))}),c.k0s(),c.j41(6,"div",6),c.nrm(7,"div",7)(8,"div",8),c.k0s(),c.j41(9,"div",9),c.nrm(10,"div",10),c.k0s()(),c.j41(11,"label",11),c.SdG(12),c.k0s()()}2&o&&(c.Y8G("labelPosition",f.labelPosition),c.R7$(2),c.AVh("mdc-radio--disabled",f.disabled),c.R7$(2),c.Y8G("id",f.inputId)("checked",f.checked)("disabled",f.disabled&&!f.disabledInteractive)("required",f.required),c.BMQ("name",f.name)("value",f.value)("aria-label",f.ariaLabel)("aria-labelledby",f.ariaLabelledby)("aria-describedby",f.ariaDescribedby)("aria-disabled",f.disabled&&f.disabledInteractive?"true":null),c.R7$(5),c.Y8G("matRippleTrigger",f._rippleTrigger.nativeElement)("matRippleDisabled",f._isRippleDisabled())("matRippleCentered",!0),c.R7$(2),c.Y8G("for",f.inputId))},dependencies:[m.r6,P.t],styles:['.mat-mdc-radio-button{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-radio-button .mdc-radio{display:inline-block;position:relative;flex:0 0 auto;box-sizing:content-box;width:20px;height:20px;cursor:pointer;will-change:opacity,transform,border-color,color;padding:calc((var(--mat-radio-state-layer-size, 40px) - 20px)/2)}.mat-mdc-radio-button .mdc-radio:hover>.mdc-radio__native-control:not([disabled]):not(:focus)~.mdc-radio__background::before{opacity:.04;transform:scale(1)}.mat-mdc-radio-button .mdc-radio:hover>.mdc-radio__native-control:not([disabled])~.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-unselected-hover-icon-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button .mdc-radio:hover>.mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-selected-hover-icon-color, var(--mat-sys-primary))}.mat-mdc-radio-button .mdc-radio:hover>.mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-selected-hover-icon-color, var(--mat-sys-primary, currentColor))}.mat-mdc-radio-button .mdc-radio:active>.mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-unselected-pressed-icon-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button .mdc-radio:active>.mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-selected-pressed-icon-color, var(--mat-sys-primary))}.mat-mdc-radio-button .mdc-radio:active>.mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-selected-pressed-icon-color, var(--mat-sys-primary, currentColor))}.mat-mdc-radio-button .mdc-radio__background{display:inline-block;position:relative;box-sizing:border-box;width:20px;height:20px}.mat-mdc-radio-button .mdc-radio__background::before{position:absolute;transform:scale(0, 0);border-radius:50%;opacity:0;pointer-events:none;content:"";transition:opacity 90ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms cubic-bezier(0.4, 0, 0.6, 1);width:var(--mat-radio-state-layer-size, 40px);height:var(--mat-radio-state-layer-size, 40px);top:calc(-1*(var(--mat-radio-state-layer-size, 40px) - 20px)/2);left:calc(-1*(var(--mat-radio-state-layer-size, 40px) - 20px)/2)}.mat-mdc-radio-button .mdc-radio__outer-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;border-width:2px;border-style:solid;border-radius:50%;transition:border-color 90ms cubic-bezier(0.4, 0, 0.6, 1)}.mat-mdc-radio-button .mdc-radio__inner-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;transform:scale(0);border-radius:50%;transition:transform 90ms cubic-bezier(0.4, 0, 0.6, 1),background-color 90ms cubic-bezier(0.4, 0, 0.6, 1)}@media(forced-colors: active){.mat-mdc-radio-button .mdc-radio__inner-circle{background-color:CanvasText !important}}.mat-mdc-radio-button .mdc-radio__native-control{position:absolute;margin:0;padding:0;opacity:0;top:0;right:0;left:0;cursor:inherit;z-index:1;width:var(--mat-radio-state-layer-size, 40px);height:var(--mat-radio-state-layer-size, 40px)}.mat-mdc-radio-button .mdc-radio__native-control:checked+.mdc-radio__background,.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background{transition:opacity 90ms cubic-bezier(0, 0, 0.2, 1),transform 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background>.mdc-radio__outer-circle{transition:border-color 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background>.mdc-radio__inner-circle{transition:transform 90ms cubic-bezier(0, 0, 0.2, 1),background-color 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button .mdc-radio__native-control:focus+.mdc-radio__background::before{transform:scale(1);opacity:.12;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 1),transform 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button .mdc-radio__native-control:disabled:not(:checked)+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-disabled-unselected-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-radio-disabled-unselected-icon-opacity, 0.38)}.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background{cursor:default}.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-disabled-selected-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-radio-disabled-selected-icon-opacity, 0.38)}.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-disabled-selected-icon-color, var(--mat-sys-on-surface, currentColor));opacity:var(--mat-radio-disabled-selected-icon-opacity, 0.38)}.mat-mdc-radio-button .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-unselected-icon-color, var(--mat-sys-on-surface-variant))}.mat-mdc-radio-button .mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-selected-icon-color, var(--mat-sys-primary))}.mat-mdc-radio-button .mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-selected-icon-color, var(--mat-sys-primary, currentColor))}.mat-mdc-radio-button .mdc-radio__native-control:enabled:focus:checked+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-selected-focus-icon-color, var(--mat-sys-primary))}.mat-mdc-radio-button .mdc-radio__native-control:enabled:focus:checked+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-selected-focus-icon-color, var(--mat-sys-primary, currentColor))}.mat-mdc-radio-button .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__inner-circle{transform:scale(0.5);transition:transform 90ms cubic-bezier(0, 0, 0.2, 1),background-color 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled{pointer-events:auto}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control:not(:checked)+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-disabled-unselected-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-radio-disabled-unselected-icon-opacity, 0.38)}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled:hover .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__outer-circle,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control:checked:focus+.mdc-radio__background>.mdc-radio__outer-circle,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-disabled-selected-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-radio-disabled-selected-icon-opacity, 0.38)}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled:hover .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__inner-circle,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control:checked:focus+.mdc-radio__background>.mdc-radio__inner-circle,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-disabled-selected-icon-color, var(--mat-sys-on-surface, currentColor));opacity:var(--mat-radio-disabled-selected-icon-opacity, 0.38)}.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__background::before,.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__outer-circle,.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__inner-circle{transition:none !important}.mat-mdc-radio-button label{cursor:pointer}.mat-mdc-radio-button .mdc-radio__background::before{background-color:var(--mat-radio-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button.mat-mdc-radio-checked .mat-ripple-element,.mat-mdc-radio-button.mat-mdc-radio-checked .mdc-radio__background::before{background-color:var(--mat-radio-checked-ripple-color, var(--mat-sys-primary))}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mat-ripple-element,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__background::before{background-color:var(--mat-radio-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button .mat-internal-form-field{color:var(--mat-radio-label-text-color, var(--mat-sys-on-surface));font-family:var(--mat-radio-label-text-font, var(--mat-sys-body-medium-font));line-height:var(--mat-radio-label-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-radio-label-text-size, var(--mat-sys-body-medium-size));letter-spacing:var(--mat-radio-label-text-tracking, var(--mat-sys-body-medium-tracking));font-weight:var(--mat-radio-label-text-weight, var(--mat-sys-body-medium-weight))}.mat-mdc-radio-button .mdc-radio--disabled+label{color:var(--mat-radio-disabled-label-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-radio-button .mat-radio-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:50%}.mat-mdc-radio-button .mat-radio-ripple>.mat-ripple-element{opacity:.14}.mat-mdc-radio-button .mat-radio-ripple::before{border-radius:50%}.mat-mdc-radio-button .mdc-radio>.mdc-radio__native-control:focus:enabled:not(:checked)~.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-unselected-focus-icon-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button.cdk-focused .mat-focus-indicator::before{content:""}.mat-mdc-radio-disabled{cursor:default;pointer-events:none}.mat-mdc-radio-disabled.mat-mdc-radio-disabled-interactive{pointer-events:auto}.mat-mdc-radio-touch-target{position:absolute;top:50%;left:50%;height:var(--mat-radio-touch-target-size, 48px);width:var(--mat-radio-touch-target-size, 48px);transform:translate(-50%, -50%);display:var(--mat-radio-touch-target-display, block)}[dir=rtl] .mat-mdc-radio-touch-target{left:auto;right:50%;transform:translate(50%, -50%)}\n'],encapsulation:2,changeDetection:0})}return Te})(),me=(()=>{class Te{static \u0275fac=function(o){return new(o||Te)};static \u0275mod=c.$C({type:Te});static \u0275inj=S.G2t({imports:[M.y,j.p,he,M.y]})}return Te})()},5964:(Ae,ee,l)=>{"use strict";l.d(ee,{p:()=>p});var i=l(39974),t=l(54360);function p(S,c){return(0,i.N)((e,T)=>{let g=0;e.subscribe((0,t._)(T,d=>S.call(c,d,g++)&&T.next(d)))})}},6450:(Ae,ee,l)=>{"use strict";l.d(ee,{I:()=>S});var i=l(96354);const{isArray:t}=Array;function S(c){return(0,i.T)(e=>function p(c,e){return t(e)?c(...e):c(e)}(c,e))}},6613:Ae=>{"use strict";Ae.exports=ReferenceError},6846:(Ae,ee,l)=>{"use strict";var i,p=l(30464).F,S=p.ERR_MISSING_ARGS,c=p.ERR_STREAM_DESTROYED;function e(M){if(M)throw M}function d(M){M()}function w(M,j){return M.pipe(j)}Ae.exports=function P(){for(var M=arguments.length,j=new Array(M),U=0;U0,function(oe){q||(q=oe),oe&&G.forEach(d),!ae&&(G.forEach(d),K(q))})});return j.reduce(w)}},7030:(Ae,ee,l)=>{const i=l(47077);ee.render=function(c,e,T){let g=T,d=e;typeof g>"u"&&(!e||!e.getContext)&&(g=e,e=void 0),e||(d=function p(){try{return document.createElement("canvas")}catch{throw new Error("You need to specify a canvas element")}}()),g=i.getOptions(g);const w=i.getImageWidth(c.modules.size,g),m=d.getContext("2d"),P=m.createImageData(w,w);return i.qrToImageData(P.data,c,g),function t(S,c,e){S.clearRect(0,0,c.width,c.height),c.style||(c.style={}),c.height=e,c.width=e,c.style.height=e+"px",c.style.width=e+"px"}(m,d,w),m.putImageData(P,0,0),d},ee.renderToDataURL=function(c,e,T){let g=T;return typeof g>"u"&&(!e||!e.getContext)&&(g=e,e=void 0),g||(g={}),ee.render(c,e,g).toDataURL(g.type||"image/png",(g.rendererOpts||{}).quality)}},7045:(Ae,ee,l)=>{Ae.exports=p;var i=l(44356).EventEmitter;function p(){i.call(this)}l(71993)(p,i),p.Readable=l(61092),p.Writable=l(15492),p.Duplex=l(1030),p.Transform=l(43410),p.PassThrough=l(83824),p.finished=l(57854),p.pipeline=l(6846),p.Stream=p,p.prototype.pipe=function(S,c){var e=this;function T(j){S.writable&&!1===S.write(j)&&e.pause&&e.pause()}function g(){e.readable&&e.resume&&e.resume()}e.on("data",T),S.on("drain",g),!S._isStdio&&(!c||!1!==c.end)&&(e.on("end",w),e.on("close",m));var d=!1;function w(){d||(d=!0,S.end())}function m(){d||(d=!0,"function"==typeof S.destroy&&S.destroy())}function P(j){if(M(),0===i.listenerCount(this,"error"))throw j}function M(){e.removeListener("data",T),S.removeListener("drain",g),e.removeListener("end",w),e.removeListener("close",m),e.removeListener("error",P),S.removeListener("error",P),e.removeListener("end",M),e.removeListener("close",M),S.removeListener("close",M)}return e.on("error",P),S.on("error",P),e.on("end",M),e.on("close",M),S.on("close",M),S.emit("pipe",e),S}},7673:(Ae,ee,l)=>{"use strict";l.d(ee,{of:()=>p});var i=l(9326),t=l(22806);function p(...S){const c=(0,i.lI)(S);return(0,t.H)(S,c)}},7879:(Ae,ee,l)=>{"use strict";l.d(ee,{I:()=>j});var i=l(84412),t=l(21413),p=l(56977),S=l(47707),c=l(71985),e=l(18359),T=l(92771);const g={url:"",deserializer:U=>JSON.parse(U.data),serializer:U=>JSON.stringify(U)};class w extends t.k{constructor(K,q){if(super(),this._socket=null,K instanceof c.c)this.destination=q,this.source=K;else{const G=this._config=Object.assign({},g);if(this._output=new t.B,"string"==typeof K)G.url=K;else for(const Q in K)K.hasOwnProperty(Q)&&(G[Q]=K[Q]);if(!G.WebSocketCtor&&WebSocket)G.WebSocketCtor=WebSocket;else if(!G.WebSocketCtor)throw new Error("no WebSocket constructor can be found");this.destination=new T.m}}lift(K){const q=new w(this._config,this.destination);return q.operator=K,q.source=this,q}_resetState(){this._socket=null,this.source||(this.destination=new T.m),this._output=new t.B}multiplex(K,q,G){const Q=this;return new c.c($=>{try{Q.next(K())}catch(ue){$.error(ue)}const ae=Q.subscribe({next:ue=>{try{G(ue)&&$.next(ue)}catch(oe){$.error(oe)}},error:ue=>$.error(ue),complete:()=>$.complete()});return()=>{try{Q.next(q())}catch(ue){$.error(ue)}ae.unsubscribe()}})}_connectSocket(){const{WebSocketCtor:K,protocol:q,url:G,binaryType:Q}=this._config,$=this._output;let ae=null;try{ae=q?new K(G,q):new K(G),this._socket=ae,Q&&(this._socket.binaryType=Q)}catch(oe){return void $.error(oe)}const ue=new e.yU(()=>{this._socket=null,ae&&1===ae.readyState&&ae.close()});ae.onopen=oe=>{const{_socket:he}=this;if(!he)return ae.close(),void this._resetState();const{openObserver:me}=this._config;me&&me.next(oe);const Te=this.destination;this.destination=S.vU.create(D=>{if(1===ae.readyState)try{const{serializer:n}=this._config;ae.send(n(D))}catch(n){this.destination.error(n)}},D=>{const{closingObserver:n}=this._config;n&&n.next(void 0),D&&D.code?ae.close(D.code,D.reason):$.error(new TypeError("WebSocketSubject.error must be called with an object with an error code, and an optional reason: { code: number, reason: string }")),this._resetState()},()=>{const{closingObserver:D}=this._config;D&&D.next(void 0),ae.close(),this._resetState()}),Te&&Te instanceof T.m&&ue.add(Te.subscribe(this.destination))},ae.onerror=oe=>{this._resetState(),$.error(oe)},ae.onclose=oe=>{ae===this._socket&&this._resetState();const{closeObserver:he}=this._config;he&&he.next(oe),oe.wasClean?$.complete():$.error(oe)},ae.onmessage=oe=>{try{const{deserializer:he}=this._config;$.next(he(oe))}catch(he){$.error(he)}}}_subscribe(K){const{source:q}=this;return q?q.subscribe(K):(this._socket||this._connectSocket(),this._output.subscribe(K),K.add(()=>{const{_socket:G}=this;0===this._output.observers.length&&(G&&(1===G.readyState||0===G.readyState)&&G.close(),this._resetState())}),K)}unsubscribe(){const{_socket:K}=this;K&&(1===K.readyState||0===K.readyState)&&K.close(),this._resetState(),super.unsubscribe()}}var m=l(2615),P=l(98570),M=l(53202);let j=(()=>{var U;class K{constructor(G,Q){this.logger=G,this.sessionService=Q,this.clWSMessages=new i.t(null),this.eclWSMessages=new i.t(null),this.lndWSMessages=new i.t(null),this.wsUrl="",this.nodeIndex="",this.RETRY_SECONDS=5,this.RECONNECT_TIMEOUT=null,this.unSubs=[new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B]}connectWebSocket(G,Q){(!this.socket||this.socket.closed)&&(this.wsUrl=G,this.nodeIndex=Q,this.logger.info("Websocket Url: "+this.wsUrl),this.socket=new w({url:G,protocol:[this.sessionService.getItem("token")||"",Q]}),this.subscribeToMessages())}reconnectOnError(){this.RECONNECT_TIMEOUT||this.socket&&!this.socket.closed||(this.RETRY_SECONDS=this.RETRY_SECONDS>=160?160:2*this.RETRY_SECONDS,this.RECONNECT_TIMEOUT=setTimeout(()=>{this.logger.info("Reconnecting Web Socket."),this.connectWebSocket(this.wsUrl,this.nodeIndex),this.RECONNECT_TIMEOUT=null},1e3*this.RETRY_SECONDS))}closeConnection(){this.socket&&(this.socket.complete(),this.socket=null)}subscribeToMessages(){this.socket?.pipe((0,p.Q)(this.unSubs[1])).subscribe({next:G=>{if((G="string"==typeof G?JSON.parse(G):G).error)this.handleError(G.error);else switch(this.logger.info("Next Message from WS:"+JSON.stringify(G)),G.source){case"LND":this.lndWSMessages.next(G);break;case"CLN":this.clWSMessages.next(G);break;case"ECL":this.eclWSMessages.next(G)}},error:G=>this.handleError(G),complete:()=>{this.logger.info("Web Socket Closed")}})}handleError(G){this.logger.error(G),this.clWSMessages.error(G),this.eclWSMessages.error(G),this.lndWSMessages.error(G),this.reconnectOnError()}ngOnDestroy(){this.closeConnection(),this.clWSMessages.next(null),this.clWSMessages.complete(),this.eclWSMessages.next(null),this.eclWSMessages.complete(),this.lndWSMessages.next(null),this.lndWSMessages.complete()}static#e=U=()=>(this.\u0275fac=function(Q){return new(Q||K)(m.KVO(P.gP),m.KVO(M.Q))},this.\u0275prov=m.jDH({token:K,factory:K.\u0275fac}))}return U(),K})()},8045:(Ae,ee,l)=>{"use strict";l.d(ee,{x:()=>p});var i=l(74402),t=l(7673);function p(S){return(0,i.A)(S)?S:(0,t.of)(S)}},8321:(Ae,ee,l)=>{"use strict";l.d(ee,{y:()=>Ee});var i=l(51585),t=l(45383),p=l(21413),S=l(56977),c=l(4416),e=l(59584),T=l(2615),g=l(73664),d=l(98570),w=l(82571),m=l(95416),P=l(59640),M=l(72200),j=l(20060),U=l(88834),K=l(25596),q=l(71997),G=l(9183),Q=l(52920),$=l(16038),ae=l(40455),ue=l(38288),oe=l(29157),he=l(89587);const me=dt=>({"display-none":dt}),Te=dt=>({"xs-scroll-y":dt}),D=(dt,nt)=>({"mt-2":dt,"mt-1":nt}),n=dt=>({"mr-0":dt}),o=()=>[];function f(dt,nt){if(1&dt&&g.nrm(0,"qr-code",33),2&dt){const Ct=g.XpG();g.Y8G("value",(null==Ct.invoice?null:Ct.invoice.bolt11)||(null==Ct.invoice?null:Ct.invoice.bolt12))("size",Ct.qrWidth)}}function h(dt,nt){1&dt&&(g.j41(0,"span",34),g.EFF(1,"N/A"),g.k0s())}function b(dt,nt){if(1&dt&&g.nrm(0,"span",35),2&dt){const Ct=g.XpG();g.Y8G("ngClass",g.eq3(1,n,Ct.screenSize===Ct.screenSizeEnum.XS))}}function A(dt,nt){if(1&dt&&g.nrm(0,"span",36),2&dt){const Ct=g.XpG();g.Y8G("ngClass",g.eq3(1,n,Ct.screenSize===Ct.screenSizeEnum.XS))}}function k(dt,nt){if(1&dt&&g.nrm(0,"span",37),2&dt){const Ct=g.XpG();g.Y8G("ngClass",g.eq3(1,n,Ct.screenSize===Ct.screenSizeEnum.XS))}}function x(dt,nt){if(1&dt&&g.nrm(0,"qr-code",33),2&dt){const Ct=g.XpG();g.Y8G("value",(null==Ct.invoice?null:Ct.invoice.bolt11)||(null==Ct.invoice?null:Ct.invoice.bolt12))("size",Ct.qrWidth)}}function r(dt,nt){1&dt&&(g.j41(0,"span",38),g.EFF(1,"QR Code Not Applicable"),g.k0s())}function _(dt,nt){1&dt&&g.nrm(0,"mat-divider",39)}function W(dt,nt){if(1&dt&&(g.j41(0,"div",20)(1,"div",40),g.nrm(2,"fa-icon",41),g.j41(3,"span"),g.EFF(4),g.k0s()()()),2&dt){const Ct=g.XpG();g.R7$(2),g.Y8G("icon",Ct.faExclamationTriangle),g.R7$(2),g.JRh(null==Ct.invoice?null:Ct.invoice.warning_capacity)}}function I(dt,nt){1&dt&&(g.qex(0),g.EFF(1," (zero amount) "),g.bVm())}function B(dt,nt){1&dt&&g.nrm(0,"span",47)}function re(dt,nt){if(1&dt&&(g.j41(0,"div",43)(1,"div",44)(2,"span",45),g.EFF(3),g.nI1(4,"number"),g.k0s(),g.DNE(5,B,1,0,"span",46),g.k0s()()),2&dt){const Ct=g.XpG(2);g.R7$(3),g.SpI("",g.bMT(4,2,(null==Ct.invoice?null:Ct.invoice.amount_received_msat)/1e3)," Sats"),g.R7$(2),g.Y8G("ngForOf",g.lJ4(4,o).constructor(35))}}function pe(dt,nt){if(1&dt&&(g.j41(0,"div"),g.EFF(1),g.nI1(2,"number"),g.k0s()),2&dt){const Ct=g.XpG(2);g.R7$(),g.SpI("",g.bMT(2,1,(null==Ct.invoice?null:Ct.invoice.amount_received_msat)/1e3)," Sats")}}function be(dt,nt){if(1&dt&&(g.qex(0),g.DNE(1,re,6,5,"div",42)(2,pe,3,3,"div",24),g.bVm()),2&dt){const Ct=g.XpG();g.R7$(),g.Y8G("ngIf",Ct.flgInvoicePaid),g.R7$(),g.Y8G("ngIf",!Ct.flgInvoicePaid)}}function Be(dt,nt){1&dt&&(g.j41(0,"span"),g.EFF(1,"-"),g.k0s())}function _e(dt,nt){1&dt&&g.nrm(0,"mat-spinner",49),2&dt&&g.Y8G("diameter",20)}function ye(dt,nt){if(1&dt&&(g.qex(0),g.DNE(1,Be,2,0,"span",24)(2,_e,1,1,"mat-spinner",48),g.bVm()),2&dt){const Ct=g.XpG();g.R7$(),g.Y8G("ngIf","unpaid"!==(null==Ct.invoice?null:Ct.invoice.status)),g.R7$(),g.Y8G("ngIf","unpaid"===(null==Ct.invoice?null:Ct.invoice.status))}}function Le(dt,nt){if(1&dt&&(g.j41(0,"div"),g.nrm(1,"mat-divider",26),g.j41(2,"div",20)(3,"div",27)(4,"h4",22),g.EFF(5,"Payment Hash"),g.k0s(),g.j41(6,"span",25),g.EFF(7),g.k0s()()(),g.nrm(8,"mat-divider",26),g.j41(9,"div",20)(10,"div",27)(11,"h4",22),g.EFF(12,"Label"),g.k0s(),g.j41(13,"span",25),g.EFF(14),g.k0s()()(),g.nrm(15,"mat-divider",26),g.k0s()),2&dt){const Ct=g.XpG();g.R7$(7),g.JRh(null==Ct.invoice?null:Ct.invoice.payment_hash),g.R7$(7),g.JRh(null==Ct.invoice?null:Ct.invoice.label)}}function Ke(dt,nt){1&dt&&(g.j41(0,"p"),g.EFF(1,"Show Advanced"),g.k0s())}function ge(dt,nt){1&dt&&(g.j41(0,"p"),g.EFF(1,"Hide Advanced"),g.k0s())}function ve(dt,nt){if(1&dt){const Ct=g.RV6();g.j41(0,"button",50),g.bIt("copied",function(lt){T.eBV(Ct);const Pe=g.XpG();return T.Njj(Pe.onCopyPayment(lt))}),g.EFF(1,"Copy Invoice"),g.k0s()}if(2&dt){const Ct=g.XpG();g.Y8G("payload",(null==Ct.invoice?null:Ct.invoice.bolt11)||(null==Ct.invoice?null:Ct.invoice.bolt12))}}function Oe(dt,nt){if(1&dt){const Ct=g.RV6();g.j41(0,"button",51),g.bIt("click",function(){T.eBV(Ct);const lt=g.XpG();return T.Njj(lt.onClose())}),g.EFF(1,"OK"),g.k0s()}}let Ee=(()=>{var dt;class nt{constructor(Mt,lt,Pe,Ht,ct,Ce){this.dialogRef=Mt,this.data=lt,this.logger=Pe,this.commonService=Ht,this.snackBar=ct,this.store=Ce,this.faReceipt=t.Mf0,this.faExclamationTriangle=t.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.invoiceStatus="",this.qrWidth=240,this.screenSize="",this.screenSizeEnum=c.f7,this.flgInvoicePaid=!1,this.unSubs=[new p.B,new p.B,new p.B,new p.B,new p.B]}ngOnInit(){this.invoice=this.data.invoice,this.invoiceStatus=this.invoice.status,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===c.f7.XS&&(this.qrWidth=220),this.store.select(e.Pj).pipe((0,S.Q)(this.unSubs[1])).subscribe(Mt=>{const Pe=(Mt.listInvoices.invoices||[])?.find(Ht=>Ht.payment_hash===this.invoice.payment_hash)||null;Pe&&(this.invoice=Pe),this.invoiceStatus!==this.invoice.status&&"paid"===this.invoice.status&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(this.invoice),this.logger.info(this.invoiceStatus),this.logger.info(Pe),this.logger.info(Mt)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(Mt){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+Mt)}ngOnDestroy(){this.unSubs.forEach(Mt=>{Mt.next(null),Mt.complete()})}static#e=dt=()=>(this.\u0275fac=function(lt){return new(lt||nt)(g.rXU(i.CP),g.rXU(i.Vh),g.rXU(d.gP),g.rXU(w.h),g.rXU(m.UG),g.rXU(P.il))},this.\u0275cmp=g.VBU({type:nt,selectors:[["rtl-cln-invoice-information"]],standalone:!1,decls:72,vars:49,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["class","dot green ml-1","matTooltip","Paid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow ml-1","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red ml-1","matTooltip","Expired","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"overflow-wrap","foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"font-size-300"],["matTooltip","Paid","matTooltipPosition","right",1,"dot","green","ml-1",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow","ml-1",3,"ngClass"],["matTooltip","Expired","matTooltipPosition","right",1,"dot","red","ml-1",3,"ngClass"],[1,"font-size-120"],[1,"my-1"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(lt,Pe){if(1<){const Ht=g.RV6();g.j41(0,"div",1)(1,"div",2),g.DNE(2,f,1,2,"qr-code",3)(3,h,2,0,"span",4),g.k0s(),g.j41(4,"div",5)(5,"mat-card-header",6)(6,"div",7),g.nrm(7,"fa-icon",8),g.j41(8,"span",9),g.EFF(9),g.DNE(10,b,1,3,"span",10)(11,A,1,3,"span",11)(12,k,1,3,"span",12),g.k0s()(),g.j41(13,"button",13),g.bIt("click",function(){return T.eBV(Ht),T.Njj(Pe.onClose())}),g.EFF(14,"X"),g.k0s()(),g.j41(15,"mat-card-content",14)(16,"div",15)(17,"div",16),g.DNE(18,x,1,2,"qr-code",3)(19,r,2,0,"span",17),g.k0s(),g.DNE(20,_,1,0,"mat-divider",18)(21,W,5,2,"div",19),g.j41(22,"div",20)(23,"div",21)(24,"h4",22),g.EFF(25),g.k0s(),g.j41(26,"span",23),g.EFF(27),g.nI1(28,"number"),g.DNE(29,I,2,0,"ng-container",24),g.k0s()(),g.j41(30,"div",21)(31,"h4",22),g.EFF(32,"Amount Received"),g.k0s(),g.j41(33,"span",25),g.DNE(34,be,3,2,"ng-container",24)(35,ye,3,2,"ng-container",24),g.k0s()()(),g.nrm(36,"mat-divider",26),g.j41(37,"div",20)(38,"div",21)(39,"h4",22),g.EFF(40,"Date Expiry"),g.k0s(),g.j41(41,"span",23),g.EFF(42),g.nI1(43,"date"),g.k0s()(),g.j41(44,"div",21)(45,"h4",22),g.EFF(46,"Date Settled"),g.k0s(),g.j41(47,"span",23),g.EFF(48),g.nI1(49,"date"),g.k0s()()(),g.nrm(50,"mat-divider",26),g.j41(51,"div",20)(52,"div",27)(53,"h4",22),g.EFF(54,"Description"),g.k0s(),g.j41(55,"span",23),g.EFF(56),g.k0s()()(),g.nrm(57,"mat-divider",26),g.j41(58,"div",20)(59,"div",27)(60,"h4",22),g.EFF(61),g.k0s(),g.j41(62,"span",25),g.EFF(63),g.k0s()()(),g.DNE(64,Le,16,2,"div",24),g.j41(65,"div",28)(66,"button",29),g.bIt("click",function(){return T.eBV(Ht),T.Njj(Pe.onShowAdvanced())}),g.DNE(67,Ke,2,0,"p",30)(68,ge,2,0,"ng-template",null,0,g.C5r),g.k0s(),g.DNE(70,ve,2,1,"button",31)(71,Oe,2,0,"button",32),g.k0s()()()()()}if(2<){const Ht=g.sdS(69);g.R7$(),g.Y8G("fxLayoutAlign",null!=Pe.invoice&&Pe.invoice.bolt11&&""!==(null==Pe.invoice?null:Pe.invoice.bolt11)||null!=Pe.invoice&&Pe.invoice.bolt12&&""!==(null==Pe.invoice?null:Pe.invoice.bolt12)?"center start":"center center")("ngClass",g.eq3(40,me,Pe.screenSize===Pe.screenSizeEnum.XS||Pe.screenSize===Pe.screenSizeEnum.SM)),g.R7$(),g.Y8G("ngIf",(null==Pe.invoice?null:Pe.invoice.bolt11)&&""!==(null==Pe.invoice?null:Pe.invoice.bolt11)||(null==Pe.invoice?null:Pe.invoice.bolt12)&&""!==(null==Pe.invoice?null:Pe.invoice.bolt12)),g.R7$(),g.Y8G("ngIf",!(null!=Pe.invoice&&Pe.invoice.bolt11||null!=Pe.invoice&&Pe.invoice.bolt12)),g.R7$(4),g.Y8G("icon",Pe.faReceipt),g.R7$(2),g.SpI(" ",Pe.screenSize===Pe.screenSizeEnum.XS?Pe.newlyAdded?"Created":"Invoice":Pe.newlyAdded?"Invoice Created":"Invoice Information"," "),g.R7$(),g.Y8G("ngIf","paid"===(null==Pe.invoice?null:Pe.invoice.status)),g.R7$(),g.Y8G("ngIf","unpaid"===(null==Pe.invoice?null:Pe.invoice.status)),g.R7$(),g.Y8G("ngIf","expired"===(null==Pe.invoice?null:Pe.invoice.status)),g.R7$(3),g.Y8G("ngClass",g.eq3(42,Te,Pe.screenSize===Pe.screenSizeEnum.XS)),g.R7$(2),g.Y8G("fxLayoutAlign",null!=Pe.invoice&&Pe.invoice.bolt11&&""!==(null==Pe.invoice?null:Pe.invoice.bolt11)||null!=Pe.invoice&&Pe.invoice.bolt12&&""!==(null==Pe.invoice?null:Pe.invoice.bolt12)?"center start":"center center")("ngClass",g.eq3(44,me,Pe.screenSize!==Pe.screenSizeEnum.XS&&Pe.screenSize!==Pe.screenSizeEnum.SM)),g.R7$(),g.Y8G("ngIf",(null==Pe.invoice?null:Pe.invoice.bolt11)&&""!==(null==Pe.invoice?null:Pe.invoice.bolt11)||(null==Pe.invoice?null:Pe.invoice.bolt12)&&""!==(null==Pe.invoice?null:Pe.invoice.bolt12)),g.R7$(),g.Y8G("ngIf",!(null!=Pe.invoice&&Pe.invoice.bolt11||null!=Pe.invoice&&Pe.invoice.bolt12)),g.R7$(),g.Y8G("ngIf",Pe.screenSize===Pe.screenSizeEnum.XS||Pe.screenSize===Pe.screenSizeEnum.SM),g.R7$(),g.Y8G("ngIf",null==Pe.invoice?null:Pe.invoice.warning_capacity),g.R7$(4),g.JRh(Pe.screenSize===Pe.screenSizeEnum.XS?"Amount":"Amount Requested"),g.R7$(2),g.SpI(" ",g.bMT(28,32,(null==Pe.invoice?null:Pe.invoice.amount_msat)/1e3||0)," Sats"),g.R7$(2),g.Y8G("ngIf",!(null!=Pe.invoice&&Pe.invoice.amount_msat)||"0"===(null==Pe.invoice?null:Pe.invoice.amount_msat)||"any"===(null==Pe.invoice?null:Pe.invoice.amount_msat)),g.R7$(5),g.Y8G("ngIf","paid"===(null==Pe.invoice?null:Pe.invoice.status)),g.R7$(),g.Y8G("ngIf","paid"!==(null==Pe.invoice?null:Pe.invoice.status)),g.R7$(7),g.JRh(g.i5U(43,34,1e3*(null==Pe.invoice?null:Pe.invoice.expires_at),"dd/MMM/y HH:mm")),g.R7$(6),g.JRh(g.i5U(49,37,1e3*(null==Pe.invoice?null:Pe.invoice.paid_at),"dd/MMM/y HH:mm")||"-"),g.R7$(8),g.JRh((null==Pe.invoice?null:Pe.invoice.description)||"-"),g.R7$(5),g.SpI("",null!=Pe.invoice&&Pe.invoice.bolt12?"Bolt12":null!=Pe.invoice&&Pe.invoice.bolt11&&!Pe.invoice.label.includes("keysend-")?"Bolt11":"Keysend"," Invoice"),g.R7$(2),g.JRh((null==Pe.invoice?null:Pe.invoice.bolt11)||(null==Pe.invoice?null:Pe.invoice.bolt12)),g.R7$(),g.Y8G("ngIf",Pe.showAdvanced),g.R7$(),g.Y8G("ngClass",g.l_i(46,D,!Pe.showAdvanced,Pe.showAdvanced)),g.R7$(2),g.Y8G("ngIf",!Pe.showAdvanced)("ngIfElse",Ht),g.R7$(3),g.Y8G("ngIf",(null==Pe.invoice?null:Pe.invoice.bolt11)&&""!==(null==Pe.invoice?null:Pe.invoice.bolt11)||(null==Pe.invoice?null:Pe.invoice.bolt12)&&""!==(null==Pe.invoice?null:Pe.invoice.bolt12)),g.R7$(),g.Y8G("ngIf",!(null!=Pe.invoice&&Pe.invoice.bolt11||null!=Pe.invoice&&Pe.invoice.bolt12))}},dependencies:[M.YU,M.Sq,M.bT,j.aY,U.$z,K.m2,K.MM,q.q,G.LG,Q.DJ,Q.sA,Q.UI,$.PW,ae.oV,ue.Um,oe.U,he.N,M.QX,M.vh],encapsulation:2}))}return dt(),nt})()},8729:(Ae,ee,l)=>{"use strict";var i=ee;i.base=l(98828),i.short=l(68075),i.mont=l(64947),i.edwards=l(55537)},9183:(Ae,ee,l)=>{"use strict";l.d(ee,{D6:()=>U,LG:()=>M});var i=l(2615),t=l(73664),p=l(17705),S=l(72200),c=l(31804),e=l(22466);const T=["determinateSpinner"];function g(K,q){if(1&K&&(i.qSk(),t.j41(0,"svg",11),t.nrm(1,"circle",12),t.k0s()),2&K){const G=t.XpG();t.BMQ("viewBox",G._viewBox()),t.R7$(),t.xc7("stroke-dasharray",G._strokeCircumference(),"px")("stroke-dashoffset",G._strokeCircumference()/2,"px")("stroke-width",G._circleStrokeWidth(),"%"),t.BMQ("r",G._circleRadius())}}const d=new i.nKC("mat-progress-spinner-default-options",{providedIn:"root",factory:function w(){return{diameter:m}}}),m=100;let M=(()=>{class K{_elementRef=(0,i.WQX)(t.aKT);_noopAnimations;get color(){return this._color||this._defaultColor}set color(G){this._color=G}_color;_defaultColor="primary";_determinateCircle;constructor(){const G=(0,i.WQX)(d),Q=(0,c._J)(),$=this._elementRef.nativeElement;this._noopAnimations="di-disabled"===Q&&!!G&&!G._forceAnimations,this.mode="mat-spinner"===$.nodeName.toLowerCase()?"indeterminate":"determinate",!this._noopAnimations&&"reduced-motion"===Q&&$.classList.add("mat-progress-spinner-reduced-motion"),G&&(G.color&&(this.color=this._defaultColor=G.color),G.diameter&&(this.diameter=G.diameter),G.strokeWidth&&(this.strokeWidth=G.strokeWidth))}mode;get value(){return"determinate"===this.mode?this._value:0}set value(G){this._value=Math.max(0,Math.min(100,G||0))}_value=0;get diameter(){return this._diameter}set diameter(G){this._diameter=G||0}_diameter=m;get strokeWidth(){return this._strokeWidth??this.diameter/10}set strokeWidth(G){this._strokeWidth=G||0}_strokeWidth;_circleRadius(){return(this.diameter-10)/2}_viewBox(){const G=2*this._circleRadius()+this.strokeWidth;return`0 0 ${G} ${G}`}_strokeCircumference(){return 2*Math.PI*this._circleRadius()}_strokeDashOffset(){return"determinate"===this.mode?this._strokeCircumference()*(100-this._value)/100:null}_circleStrokeWidth(){return this.strokeWidth/this.diameter*100}static \u0275fac=function(Q){return new(Q||K)};static \u0275cmp=t.VBU({type:K,selectors:[["mat-progress-spinner"],["mat-spinner"]],viewQuery:function(Q,$){if(1&Q&&t.GBs(T,5),2&Q){let ae;t.mGM(ae=t.lsd())&&($._determinateCircle=ae.first)}},hostAttrs:["role","progressbar","tabindex","-1",1,"mat-mdc-progress-spinner","mdc-circular-progress"],hostVars:18,hostBindings:function(Q,$){2&Q&&(t.BMQ("aria-valuemin",0)("aria-valuemax",100)("aria-valuenow","determinate"===$.mode?$.value:null)("mode",$.mode),t.HbH("mat-"+$.color),t.xc7("width",$.diameter,"px")("height",$.diameter,"px")("--mat-progress-spinner-size",$.diameter+"px")("--mat-progress-spinner-active-indicator-width",$.diameter+"px"),t.AVh("_mat-animation-noopable",$._noopAnimations)("mdc-circular-progress--indeterminate","indeterminate"===$.mode))},inputs:{color:"color",mode:"mode",value:[2,"value","value",p.Udg],diameter:[2,"diameter","diameter",p.Udg],strokeWidth:[2,"strokeWidth","strokeWidth",p.Udg]},exportAs:["matProgressSpinner"],decls:14,vars:11,consts:[["circle",""],["determinateSpinner",""],["aria-hidden","true",1,"mdc-circular-progress__determinate-container"],["xmlns","http://www.w3.org/2000/svg","focusable","false",1,"mdc-circular-progress__determinate-circle-graphic"],["cx","50%","cy","50%",1,"mdc-circular-progress__determinate-circle"],["aria-hidden","true",1,"mdc-circular-progress__indeterminate-container"],[1,"mdc-circular-progress__spinner-layer"],[1,"mdc-circular-progress__circle-clipper","mdc-circular-progress__circle-left"],[3,"ngTemplateOutlet"],[1,"mdc-circular-progress__gap-patch"],[1,"mdc-circular-progress__circle-clipper","mdc-circular-progress__circle-right"],["xmlns","http://www.w3.org/2000/svg","focusable","false",1,"mdc-circular-progress__indeterminate-circle-graphic"],["cx","50%","cy","50%"]],template:function(Q,$){if(1&Q&&(t.DNE(0,g,2,8,"ng-template",null,0,t.C5r),t.j41(2,"div",2,1),i.qSk(),t.j41(4,"svg",3),t.nrm(5,"circle",4),t.k0s()(),i.joV(),t.j41(6,"div",5)(7,"div",6)(8,"div",7),t.eu8(9,8),t.k0s(),t.j41(10,"div",9),t.eu8(11,8),t.k0s(),t.j41(12,"div",10),t.eu8(13,8),t.k0s()()()),2&Q){const ae=t.sdS(1);t.R7$(4),t.BMQ("viewBox",$._viewBox()),t.R7$(),t.xc7("stroke-dasharray",$._strokeCircumference(),"px")("stroke-dashoffset",$._strokeDashOffset(),"px")("stroke-width",$._circleStrokeWidth(),"%"),t.BMQ("r",$._circleRadius()),t.R7$(4),t.Y8G("ngTemplateOutlet",ae),t.R7$(2),t.Y8G("ngTemplateOutlet",ae),t.R7$(2),t.Y8G("ngTemplateOutlet",ae)}},dependencies:[S.T3],styles:[".mat-mdc-progress-spinner{--mat-progress-spinner-animation-multiplier: 1;display:block;overflow:hidden;line-height:0;position:relative;direction:ltr;transition:opacity 250ms cubic-bezier(0.4, 0, 0.6, 1)}.mat-mdc-progress-spinner circle{stroke-width:var(--mat-progress-spinner-active-indicator-width, 4px)}.mat-mdc-progress-spinner._mat-animation-noopable,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__determinate-circle{transition:none !important}.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-circle-graphic,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__spinner-layer,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-container{animation:none !important}.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-container circle{stroke-dasharray:0 !important}@media(forced-colors: active){.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic,.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle{stroke:currentColor;stroke:CanvasText}}.mat-progress-spinner-reduced-motion{--mat-progress-spinner-animation-multiplier: 1.25}.mdc-circular-progress__determinate-container,.mdc-circular-progress__indeterminate-circle-graphic,.mdc-circular-progress__indeterminate-container,.mdc-circular-progress__spinner-layer{position:absolute;width:100%;height:100%}.mdc-circular-progress__determinate-container{transform:rotate(-90deg)}.mdc-circular-progress--indeterminate .mdc-circular-progress__determinate-container{opacity:0}.mdc-circular-progress__indeterminate-container{font-size:0;letter-spacing:0;white-space:nowrap;opacity:0}.mdc-circular-progress--indeterminate .mdc-circular-progress__indeterminate-container{opacity:1;animation:mdc-circular-progress-container-rotate calc(1568.2352941176ms*var(--mat-progress-spinner-animation-multiplier)) linear infinite}.mdc-circular-progress__determinate-circle-graphic,.mdc-circular-progress__indeterminate-circle-graphic{fill:rgba(0,0,0,0)}.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:var(--mat-progress-spinner-active-indicator-color, var(--mat-sys-primary))}@media(forced-colors: active){.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}.mdc-circular-progress__determinate-circle{transition:stroke-dashoffset 500ms cubic-bezier(0, 0, 0.2, 1)}.mdc-circular-progress__gap-patch{position:absolute;top:0;left:47.5%;box-sizing:border-box;width:5%;height:100%;overflow:hidden}.mdc-circular-progress__gap-patch .mdc-circular-progress__indeterminate-circle-graphic{left:-900%;width:2000%;transform:rotate(180deg)}.mdc-circular-progress__circle-clipper .mdc-circular-progress__indeterminate-circle-graphic{width:200%}.mdc-circular-progress__circle-right .mdc-circular-progress__indeterminate-circle-graphic{left:-100%}.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-left .mdc-circular-progress__indeterminate-circle-graphic{animation:mdc-circular-progress-left-spin calc(1333ms*var(--mat-progress-spinner-animation-multiplier)) cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-right .mdc-circular-progress__indeterminate-circle-graphic{animation:mdc-circular-progress-right-spin calc(1333ms*var(--mat-progress-spinner-animation-multiplier)) cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress__circle-clipper{display:inline-flex;position:relative;width:50%;height:100%;overflow:hidden}.mdc-circular-progress--indeterminate .mdc-circular-progress__spinner-layer{animation:mdc-circular-progress-spinner-layer-rotate calc(5332ms*var(--mat-progress-spinner-animation-multiplier)) cubic-bezier(0.4, 0, 0.2, 1) infinite both}@keyframes mdc-circular-progress-container-rotate{to{transform:rotate(360deg)}}@keyframes mdc-circular-progress-spinner-layer-rotate{12.5%{transform:rotate(135deg)}25%{transform:rotate(270deg)}37.5%{transform:rotate(405deg)}50%{transform:rotate(540deg)}62.5%{transform:rotate(675deg)}75%{transform:rotate(810deg)}87.5%{transform:rotate(945deg)}100%{transform:rotate(1080deg)}}@keyframes mdc-circular-progress-left-spin{from{transform:rotate(265deg)}50%{transform:rotate(130deg)}to{transform:rotate(265deg)}}@keyframes mdc-circular-progress-right-spin{from{transform:rotate(-265deg)}50%{transform:rotate(-130deg)}to{transform:rotate(-265deg)}}\n"],encapsulation:2,changeDetection:0})}return K})(),U=(()=>{class K{static \u0275fac=function(Q){return new(Q||K)};static \u0275mod=t.$C({type:K});static \u0275inj=i.G2t({imports:[e.y]})}return K})()},9326:(Ae,ee,l)=>{"use strict";l.d(ee,{R0:()=>e,lI:()=>c,ms:()=>S});var i=l(98071),t=l(79470);function p(T){return T[T.length-1]}function S(T){return(0,i.T)(p(T))?T.pop():void 0}function c(T){return(0,t.m)(p(T))?T.pop():void 0}function e(T,g){return"number"==typeof p(T)?T.pop():g}},9350:(Ae,ee,l)=>{"use strict";l.d(ee,{G:()=>t});const t=(0,l(81853).L)(p=>function(){p(this),this.name="EmptyError",this.message="no elements in sequence"})},9454:(Ae,ee,l)=>{"use strict";l.d(ee,{BS:()=>be,MY:()=>Be,GK:()=>W,Q6:()=>re,Z2:()=>B,WN:()=>pe});var i=l(73664),t=l(2615),p=l(17705),S=l(21413),c=l(18359),e=l(89726),T=l(18689);const g=new t.nKC("CdkAccordion");let d=(()=>{class Le{_stateChanges=new S.B;_openCloseAllActions=new S.B;id=(0,t.WQX)(e.g).getId("cdk-accordion-");multi=!1;openAll(){this.multi&&this._openCloseAllActions.next(!0)}closeAll(){this._openCloseAllActions.next(!1)}ngOnChanges(ge){this._stateChanges.next(ge)}ngOnDestroy(){this._stateChanges.complete(),this._openCloseAllActions.complete()}static \u0275fac=function(ve){return new(ve||Le)};static \u0275dir=i.FsC({type:Le,selectors:[["cdk-accordion"],["","cdkAccordion",""]],inputs:{multi:[2,"multi","multi",p.L39]},exportAs:["cdkAccordion"],features:[i.Jv_([{provide:g,useExisting:Le}]),i.OA$]})}return Le})(),w=(()=>{class Le{accordion=(0,t.WQX)(g,{optional:!0,skipSelf:!0});_changeDetectorRef=(0,t.WQX)(p.gRc);_expansionDispatcher=(0,t.WQX)(T.z);_openCloseAllSubscription=c.yU.EMPTY;closed=new i.bkB;opened=new i.bkB;destroyed=new i.bkB;expandedChange=new i.bkB;id=(0,t.WQX)(e.g).getId("cdk-accordion-child-");get expanded(){return this._expanded}set expanded(ge){this._expanded!==ge&&(this._expanded=ge,this.expandedChange.emit(ge),ge?(this.opened.emit(),this._expansionDispatcher.notify(this.id,this.accordion?this.accordion.id:this.id)):this.closed.emit(),this._changeDetectorRef.markForCheck())}_expanded=!1;get disabled(){return this._disabled()}set disabled(ge){this._disabled.set(ge)}_disabled=(0,t.vPA)(!1);_removeUniqueSelectionListener=()=>{};constructor(){}ngOnInit(){this._removeUniqueSelectionListener=this._expansionDispatcher.listen((ge,ve)=>{this.accordion&&!this.accordion.multi&&this.accordion.id===ve&&this.id!==ge&&(this.expanded=!1)}),this.accordion&&(this._openCloseAllSubscription=this._subscribeToOpenCloseAllActions())}ngOnDestroy(){this.opened.complete(),this.closed.complete(),this.destroyed.emit(),this.destroyed.complete(),this._removeUniqueSelectionListener(),this._openCloseAllSubscription.unsubscribe()}toggle(){this.disabled||(this.expanded=!this.expanded)}close(){this.disabled||(this.expanded=!1)}open(){this.disabled||(this.expanded=!0)}_subscribeToOpenCloseAllActions(){return this.accordion._openCloseAllActions.subscribe(ge=>{this.disabled||(this.expanded=ge)})}static \u0275fac=function(ve){return new(ve||Le)};static \u0275dir=i.FsC({type:Le,selectors:[["cdk-accordion-item"],["","cdkAccordionItem",""]],inputs:{expanded:[2,"expanded","expanded",p.L39],disabled:[2,"disabled","disabled",p.L39]},outputs:{closed:"closed",opened:"opened",destroyed:"destroyed",expandedChange:"expandedChange"},exportAs:["cdkAccordionItem"],features:[i.Jv_([{provide:g,useValue:void 0}])]})}return Le})(),m=(()=>{class Le{static \u0275fac=function(ve){return new(ve||Le)};static \u0275mod=i.$C({type:Le});static \u0275inj=t.G2t({})}return Le})();var P=l(76939),M=l(76838),j=l(64123),U=l(99172),K=l(5964),q=l(96697),G=l(10438),Q=l(67336),$=l(983),ae=l(57786),ue=l(31804),oe=l(88968),he=l(32046),me=l(22466);const Te=["body"],D=["bodyWrapper"],n=[[["mat-expansion-panel-header"]],"*",[["mat-action-row"]]],o=["mat-expansion-panel-header","*","mat-action-row"];function f(Le,Ke){}const h=[[["mat-panel-title"]],[["mat-panel-description"]],"*"],b=["mat-panel-title","mat-panel-description","*"];function A(Le,Ke){1&Le&&(i.rj2(0,"span",1),t.qSk(),i.rj2(1,"svg",2),i.Hgh(2,"path",3),i.eux()())}const k=new t.nKC("MAT_ACCORDION"),x=new t.nKC("MAT_EXPANSION_PANEL");let r=(()=>{class Le{_template=(0,t.WQX)(i.C4Q);_expansionPanel=(0,t.WQX)(x,{optional:!0});constructor(){}static \u0275fac=function(ve){return new(ve||Le)};static \u0275dir=i.FsC({type:Le,selectors:[["ng-template","matExpansionPanelContent",""]]})}return Le})();const _=new t.nKC("MAT_EXPANSION_PANEL_DEFAULT_OPTIONS");let W=(()=>{class Le extends w{_viewContainerRef=(0,t.WQX)(i.c1b);_animationsDisabled=(0,ue.Rc)();_document=(0,t.WQX)(t.qQL);_ngZone=(0,t.WQX)(i.SKi);_elementRef=(0,t.WQX)(i.aKT);_renderer=(0,t.WQX)(i.sFG);_cleanupTransitionEnd;get hideToggle(){return this._hideToggle||this.accordion&&this.accordion.hideToggle}set hideToggle(ge){this._hideToggle=ge}_hideToggle=!1;get togglePosition(){return this._togglePosition||this.accordion&&this.accordion.togglePosition}set togglePosition(ge){this._togglePosition=ge}_togglePosition;afterExpand=new i.bkB;afterCollapse=new i.bkB;_inputChanges=new S.B;accordion=(0,t.WQX)(k,{optional:!0,skipSelf:!0});_lazyContent;_body;_bodyWrapper;_portal;_headerId=(0,t.WQX)(e.g).getId("mat-expansion-panel-header-");constructor(){super();const ge=(0,t.WQX)(_,{optional:!0});this._expansionDispatcher=(0,t.WQX)(T.z),ge&&(this.hideToggle=ge.hideToggle)}_hasSpacing(){return!!this.accordion&&this.expanded&&"default"===this.accordion.displayMode}_getExpandedState(){return this.expanded?"expanded":"collapsed"}toggle(){this.expanded=!this.expanded}close(){this.expanded=!1}open(){this.expanded=!0}ngAfterContentInit(){this._lazyContent&&this._lazyContent._expansionPanel===this&&this.opened.pipe((0,U.Z)(null),(0,K.p)(()=>this.expanded&&!this._portal),(0,q.s)(1)).subscribe(()=>{this._portal=new P.VA(this._lazyContent._template,this._viewContainerRef)}),this._setupAnimationEvents()}ngOnChanges(ge){this._inputChanges.next(ge)}ngOnDestroy(){super.ngOnDestroy(),this._cleanupTransitionEnd?.(),this._inputChanges.complete()}_containsFocus(){if(this._body){const ge=this._document.activeElement,ve=this._body.nativeElement;return ge===ve||ve.contains(ge)}return!1}_transitionEndListener=({target:ge,propertyName:ve})=>{ge===this._bodyWrapper?.nativeElement&&"grid-template-rows"===ve&&this._ngZone.run(()=>{this.expanded?this.afterExpand.emit():this.afterCollapse.emit()})};_setupAnimationEvents(){this._ngZone.runOutsideAngular(()=>{this._animationsDisabled?(this.opened.subscribe(()=>this._ngZone.run(()=>this.afterExpand.emit())),this.closed.subscribe(()=>this._ngZone.run(()=>this.afterCollapse.emit()))):setTimeout(()=>{const ge=this._elementRef.nativeElement;this._cleanupTransitionEnd=this._renderer.listen(ge,"transitionend",this._transitionEndListener),ge.classList.add("mat-expansion-panel-animations-enabled")},200)})}static \u0275fac=function(ve){return new(ve||Le)};static \u0275cmp=i.VBU({type:Le,selectors:[["mat-expansion-panel"]],contentQueries:function(ve,Oe,Ee){if(1&ve&&i.wni(Ee,r,5),2&ve){let dt;i.mGM(dt=i.lsd())&&(Oe._lazyContent=dt.first)}},viewQuery:function(ve,Oe){if(1&ve&&(i.GBs(Te,5),i.GBs(D,5)),2&ve){let Ee;i.mGM(Ee=i.lsd())&&(Oe._body=Ee.first),i.mGM(Ee=i.lsd())&&(Oe._bodyWrapper=Ee.first)}},hostAttrs:[1,"mat-expansion-panel"],hostVars:4,hostBindings:function(ve,Oe){2&ve&&i.AVh("mat-expanded",Oe.expanded)("mat-expansion-panel-spacing",Oe._hasSpacing())},inputs:{hideToggle:[2,"hideToggle","hideToggle",p.L39],togglePosition:"togglePosition"},outputs:{afterExpand:"afterExpand",afterCollapse:"afterCollapse"},exportAs:["matExpansionPanel"],features:[i.Jv_([{provide:k,useValue:void 0},{provide:x,useExisting:Le}]),i.Vt3,i.OA$],ngContentSelectors:o,decls:9,vars:4,consts:[["bodyWrapper",""],["body",""],[1,"mat-expansion-panel-content-wrapper"],["role","region",1,"mat-expansion-panel-content",3,"id"],[1,"mat-expansion-panel-body"],[3,"cdkPortalOutlet"]],template:function(ve,Oe){1&ve&&(i.NAR(n),i.SdG(0),i.j41(1,"div",2,0)(3,"div",3,1)(5,"div",4),i.SdG(6,1),i.DNE(7,f,0,0,"ng-template",5),i.k0s(),i.SdG(8,2),i.k0s()()),2&ve&&(i.R7$(),i.BMQ("inert",Oe.expanded?null:""),i.R7$(2),i.Y8G("id",Oe.id),i.BMQ("aria-labelledby",Oe._headerId),i.R7$(4),i.Y8G("cdkPortalOutlet",Oe._portal))},dependencies:[P.I3],styles:[".mat-expansion-panel{box-sizing:content-box;display:block;margin:0;overflow:hidden;position:relative;background:var(--mat-expansion-container-background-color, var(--mat-sys-surface));color:var(--mat-expansion-container-text-color, var(--mat-sys-on-surface));border-radius:var(--mat-expansion-container-shape, 12px)}.mat-expansion-panel.mat-expansion-panel-animations-enabled{transition:margin 225ms cubic-bezier(0.4, 0, 0.2, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:var(--mat-expansion-container-elevation-shadow, 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12))}.mat-accordion .mat-expansion-panel:not(.mat-expanded),.mat-accordion .mat-expansion-panel:not(.mat-expansion-panel-spacing){border-radius:0}.mat-accordion .mat-expansion-panel:first-of-type{border-top-right-radius:var(--mat-expansion-container-shape, 12px);border-top-left-radius:var(--mat-expansion-container-shape, 12px)}.mat-accordion .mat-expansion-panel:last-of-type{border-bottom-right-radius:var(--mat-expansion-container-shape, 12px);border-bottom-left-radius:var(--mat-expansion-container-shape, 12px)}@media(forced-colors: active){.mat-expansion-panel{outline:solid 1px}}.mat-expansion-panel-content-wrapper{display:grid;grid-template-rows:0fr;grid-template-columns:100%}.mat-expansion-panel-animations-enabled .mat-expansion-panel-content-wrapper{transition:grid-template-rows 225ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-expansion-panel.mat-expanded>.mat-expansion-panel-content-wrapper{grid-template-rows:1fr}@supports not (grid-template-rows: 0fr){.mat-expansion-panel-content-wrapper{height:0}.mat-expansion-panel.mat-expanded>.mat-expansion-panel-content-wrapper{height:auto}}.mat-expansion-panel-content{display:flex;flex-direction:column;overflow:visible;min-height:0;visibility:hidden;font-family:var(--mat-expansion-container-text-font, var(--mat-sys-body-large-font));font-size:var(--mat-expansion-container-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-expansion-container-text-weight, var(--mat-sys-body-large-weight));line-height:var(--mat-expansion-container-text-line-height, var(--mat-sys-body-large-line-height));letter-spacing:var(--mat-expansion-container-text-tracking, var(--mat-sys-body-large-tracking))}.mat-expansion-panel-animations-enabled .mat-expansion-panel-content{transition:visibility 190ms linear}.mat-expansion-panel.mat-expanded>.mat-expansion-panel-content-wrapper>.mat-expansion-panel-content{visibility:visible}.mat-expansion-panel-body{padding:0 24px 16px}.mat-expansion-panel-spacing{margin:16px 0}.mat-accordion>.mat-expansion-panel-spacing:first-child,.mat-accordion>*:first-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing{margin-top:0}.mat-accordion>.mat-expansion-panel-spacing:last-child,.mat-accordion>*:last-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing{margin-bottom:0}.mat-action-row{border-top-style:solid;border-top-width:1px;display:flex;flex-direction:row;justify-content:flex-end;padding:16px 8px 16px 24px;border-top-color:var(--mat-expansion-actions-divider-color, var(--mat-sys-outline))}.mat-action-row .mat-button-base,.mat-action-row .mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-action-row .mat-button-base,[dir=rtl] .mat-action-row .mat-mdc-button-base{margin-left:0;margin-right:8px}\n"],encapsulation:2,changeDetection:0})}return Le})(),B=(()=>{class Le{panel=(0,t.WQX)(W,{host:!0});_element=(0,t.WQX)(i.aKT);_focusMonitor=(0,t.WQX)(M.FN);_changeDetectorRef=(0,t.WQX)(p.gRc);_parentChangeSubscription=c.yU.EMPTY;constructor(){(0,t.WQX)(oe.l).load(he.A);const ge=this.panel,ve=(0,t.WQX)(_,{optional:!0}),Oe=(0,t.WQX)(new p.ES_("tabindex"),{optional:!0}),Ee=ge.accordion?ge.accordion._stateChanges.pipe((0,K.p)(dt=>!(!dt.hideToggle&&!dt.togglePosition))):$.w;this.tabIndex=parseInt(Oe||"")||0,this._parentChangeSubscription=(0,ae.h)(ge.opened,ge.closed,Ee,ge._inputChanges.pipe((0,K.p)(dt=>!!(dt.hideToggle||dt.disabled||dt.togglePosition)))).subscribe(()=>this._changeDetectorRef.markForCheck()),ge.closed.pipe((0,K.p)(()=>ge._containsFocus())).subscribe(()=>this._focusMonitor.focusVia(this._element,"program")),ve&&(this.expandedHeight=ve.expandedHeight,this.collapsedHeight=ve.collapsedHeight)}expandedHeight;collapsedHeight;tabIndex=0;get disabled(){return this.panel.disabled}_toggle(){this.disabled||this.panel.toggle()}_isExpanded(){return this.panel.expanded}_getExpandedState(){return this.panel._getExpandedState()}_getPanelId(){return this.panel.id}_getTogglePosition(){return this.panel.togglePosition}_showToggle(){return!this.panel.hideToggle&&!this.panel.disabled}_getHeaderHeight(){const ge=this._isExpanded();return ge&&this.expandedHeight?this.expandedHeight:!ge&&this.collapsedHeight?this.collapsedHeight:null}_keydown(ge){switch(ge.keyCode){case G.t6:case G.Fm:(0,Q.rp)(ge)||(ge.preventDefault(),this._toggle());break;default:return void(this.panel.accordion&&this.panel.accordion._handleHeaderKeydown(ge))}}focus(ge,ve){ge?this._focusMonitor.focusVia(this._element,ge,ve):this._element.nativeElement.focus(ve)}ngAfterViewInit(){this._focusMonitor.monitor(this._element).subscribe(ge=>{ge&&this.panel.accordion&&this.panel.accordion._handleHeaderFocus(this)})}ngOnDestroy(){this._parentChangeSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._element)}static \u0275fac=function(ve){return new(ve||Le)};static \u0275cmp=i.VBU({type:Le,selectors:[["mat-expansion-panel-header"]],hostAttrs:["role","button",1,"mat-expansion-panel-header","mat-focus-indicator"],hostVars:13,hostBindings:function(ve,Oe){1&ve&&i.bIt("click",function(){return Oe._toggle()})("keydown",function(dt){return Oe._keydown(dt)}),2&ve&&(i.BMQ("id",Oe.panel._headerId)("tabindex",Oe.disabled?-1:Oe.tabIndex)("aria-controls",Oe._getPanelId())("aria-expanded",Oe._isExpanded())("aria-disabled",Oe.panel.disabled),i.xc7("height",Oe._getHeaderHeight()),i.AVh("mat-expanded",Oe._isExpanded())("mat-expansion-toggle-indicator-after","after"===Oe._getTogglePosition())("mat-expansion-toggle-indicator-before","before"===Oe._getTogglePosition()))},inputs:{expandedHeight:"expandedHeight",collapsedHeight:"collapsedHeight",tabIndex:[2,"tabIndex","tabIndex",ge=>null==ge?0:(0,p.Udg)(ge)]},ngContentSelectors:b,decls:5,vars:3,consts:[[1,"mat-content"],[1,"mat-expansion-indicator"],["xmlns","http://www.w3.org/2000/svg","viewBox","0 -960 960 960","aria-hidden","true","focusable","false"],["d","M480-345 240-585l56-56 184 184 184-184 56 56-240 240Z"]],template:function(ve,Oe){1&ve&&(i.NAR(h),i.rj2(0,"span",0),i.SdG(1),i.SdG(2,1),i.SdG(3,2),i.eux(),i.nVh(4,A,3,0,"span",1)),2&ve&&(i.AVh("mat-content-hide-toggle",!Oe._showToggle()),i.R7$(4),i.vxM(Oe._showToggle()?4:-1))},styles:['.mat-expansion-panel-header{display:flex;flex-direction:row;align-items:center;padding:0 24px;border-radius:inherit;height:var(--mat-expansion-header-collapsed-state-height, 48px);font-family:var(--mat-expansion-header-text-font, var(--mat-sys-title-medium-font));font-size:var(--mat-expansion-header-text-size, var(--mat-sys-title-medium-size));font-weight:var(--mat-expansion-header-text-weight, var(--mat-sys-title-medium-weight));line-height:var(--mat-expansion-header-text-line-height, var(--mat-sys-title-medium-line-height));letter-spacing:var(--mat-expansion-header-text-tracking, var(--mat-sys-title-medium-tracking))}.mat-expansion-panel-animations-enabled .mat-expansion-panel-header{transition:height 225ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-expansion-panel-header::before{border-radius:inherit}.mat-expansion-panel-header.mat-expanded{height:var(--mat-expansion-header-expanded-state-height, 64px)}.mat-expansion-panel-header[aria-disabled=true]{color:var(--mat-expansion-header-disabled-state-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-expansion-panel-header:not([aria-disabled=true]){cursor:pointer}.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover{background:var(--mat-expansion-header-hover-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent))}@media(hover: none){.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover{background:var(--mat-expansion-container-background-color, var(--mat-sys-surface))}}.mat-expansion-panel .mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused,.mat-expansion-panel .mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused{background:var(--mat-expansion-header-focus-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-focus-state-layer-opacity) * 100%), transparent))}.mat-expansion-panel-header._mat-animation-noopable{transition:none}.mat-expansion-panel-header:focus,.mat-expansion-panel-header:hover{outline:none}.mat-expansion-panel-header.mat-expanded:focus,.mat-expansion-panel-header.mat-expanded:hover{background:inherit}.mat-expansion-panel-header.mat-expansion-toggle-indicator-before{flex-direction:row-reverse}.mat-expansion-panel-header.mat-expansion-toggle-indicator-before .mat-expansion-indicator{margin:0 16px 0 0}[dir=rtl] .mat-expansion-panel-header.mat-expansion-toggle-indicator-before .mat-expansion-indicator{margin:0 0 0 16px}.mat-content{display:flex;flex:1;flex-direction:row;overflow:hidden}.mat-content.mat-content-hide-toggle{margin-right:8px}[dir=rtl] .mat-content.mat-content-hide-toggle{margin-right:0;margin-left:8px}.mat-expansion-toggle-indicator-before .mat-content.mat-content-hide-toggle{margin-left:24px;margin-right:0}[dir=rtl] .mat-expansion-toggle-indicator-before .mat-content.mat-content-hide-toggle{margin-right:24px;margin-left:0}.mat-expansion-panel-header-title{color:var(--mat-expansion-header-text-color, var(--mat-sys-on-surface))}.mat-expansion-panel-header-title,.mat-expansion-panel-header-description{display:flex;flex-grow:1;flex-basis:0;margin-right:16px;align-items:center}[dir=rtl] .mat-expansion-panel-header-title,[dir=rtl] .mat-expansion-panel-header-description{margin-right:0;margin-left:16px}.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.mat-expansion-panel-header-description{flex-grow:2;color:var(--mat-expansion-header-description-color, var(--mat-sys-on-surface-variant))}.mat-expansion-panel-animations-enabled .mat-expansion-indicator{transition:transform 225ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-expansion-panel-header.mat-expanded .mat-expansion-indicator{transform:rotate(180deg)}.mat-expansion-indicator::after{border-style:solid;border-width:0 2px 2px 0;content:"";padding:3px;transform:rotate(45deg);vertical-align:middle;color:var(--mat-expansion-header-indicator-color, var(--mat-sys-on-surface-variant));display:var(--mat-expansion-legacy-header-indicator-display, none)}.mat-expansion-indicator svg{width:24px;height:24px;margin:0 -8px;vertical-align:middle;fill:var(--mat-expansion-header-indicator-color, var(--mat-sys-on-surface-variant));display:var(--mat-expansion-header-indicator-display, inline-block)}@media(forced-colors: active){.mat-expansion-panel-content{border-top:1px solid;border-top-left-radius:0;border-top-right-radius:0}}\n'],encapsulation:2,changeDetection:0})}return Le})(),re=(()=>{class Le{static \u0275fac=function(ve){return new(ve||Le)};static \u0275dir=i.FsC({type:Le,selectors:[["mat-panel-description"]],hostAttrs:[1,"mat-expansion-panel-header-description"]})}return Le})(),pe=(()=>{class Le{static \u0275fac=function(ve){return new(ve||Le)};static \u0275dir=i.FsC({type:Le,selectors:[["mat-panel-title"]],hostAttrs:[1,"mat-expansion-panel-header-title"]})}return Le})(),be=(()=>{class Le extends d{_keyManager;_ownHeaders=new i.rOR;_headers;hideToggle=!1;displayMode="default";togglePosition="after";ngAfterContentInit(){this._headers.changes.pipe((0,U.Z)(this._headers)).subscribe(ge=>{this._ownHeaders.reset(ge.filter(ve=>ve.panel.accordion===this)),this._ownHeaders.notifyOnChanges()}),this._keyManager=new j.B(this._ownHeaders).withWrap().withHomeAndEnd()}_handleHeaderKeydown(ge){this._keyManager.onKeydown(ge)}_handleHeaderFocus(ge){this._keyManager.updateActiveItem(ge)}ngOnDestroy(){super.ngOnDestroy(),this._keyManager?.destroy(),this._ownHeaders.destroy()}static \u0275fac=(()=>{let ge;return function(Oe){return(ge||(ge=i.xGo(Le)))(Oe||Le)}})();static \u0275dir=i.FsC({type:Le,selectors:[["mat-accordion"]],contentQueries:function(ve,Oe,Ee){if(1&ve&&i.wni(Ee,B,5),2&ve){let dt;i.mGM(dt=i.lsd())&&(Oe._headers=dt)}},hostAttrs:[1,"mat-accordion"],hostVars:2,hostBindings:function(ve,Oe){2&ve&&i.AVh("mat-accordion-multi",Oe.multi)},inputs:{hideToggle:[2,"hideToggle","hideToggle",p.L39],displayMode:"displayMode",togglePosition:"togglePosition"},exportAs:["matAccordion"],features:[i.Jv_([{provide:k,useExisting:Le}]),i.Vt3]})}return Le})(),Be=(()=>{class Le{static \u0275fac=function(ve){return new(ve||Le)};static \u0275mod=i.$C({type:Le});static \u0275inj=t.G2t({imports:[me.y,m,P.jc]})}return Le})()},9656:Ae=>{"use strict";Ae.exports=typeof process>"u"||!process.version||0===process.version.indexOf("v0.")||0===process.version.indexOf("v1.")&&0!==process.version.indexOf("v1.8.")?{nextTick:function ee(l,i,t,p){if("function"!=typeof l)throw new TypeError('"callback" argument must be a function');var c,e,S=arguments.length;switch(S){case 0:case 1:return process.nextTick(l);case 2:return process.nextTick(function(){l.call(null,i)});case 3:return process.nextTick(function(){l.call(null,i,t)});case 4:return process.nextTick(function(){l.call(null,i,t,p)});default:for(c=new Array(S-1),e=0;e{"use strict";function i(){throw new Error("secure random number generation not supported by this browser\nuse chrome, FireFox or Internet Explorer 11")}var t=l(27054),p=l(3342),S=t.Buffer,c=t.kMaxLength,e=global.crypto||global.msCrypto,T=Math.pow(2,32)-1;function g(M,j){if("number"!=typeof M||M!=M)throw new TypeError("offset must be a number");if(M>T||M<0)throw new TypeError("offset must be a uint32");if(M>c||M>j)throw new RangeError("offset out of range")}function d(M,j,U){if("number"!=typeof M||M!=M)throw new TypeError("size must be a number");if(M>T||M<0)throw new TypeError("size must be a uint32");if(M+j>U||M>c)throw new RangeError("buffer too small")}function m(M,j,U,K){if(process.browser){var G=new Uint8Array(M.buffer,j,U);return e.getRandomValues(G),K?void process.nextTick(function(){K(null,M)}):M}if(!K)return p(U).copy(M,j),M;p(U,function($,ae){if($)return K($);ae.copy(M,j),K(null,M)})}e&&e.getRandomValues||!process.browser?(ee.randomFill=function w(M,j,U,K){if(!(S.isBuffer(M)||M instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');if("function"==typeof j)K=j,j=0,U=M.length;else if("function"==typeof U)K=U,U=M.length-j;else if("function"!=typeof K)throw new TypeError('"cb" argument must be a function');return g(j,M.length),d(U,j,M.length),m(M,j,U,K)},ee.randomFillSync=function P(M,j,U){if(typeof j>"u"&&(j=0),!(S.isBuffer(M)||M instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');return g(j,M.length),void 0===U&&(U=M.length-j),d(U,j,M.length),m(M,j,U)}):(ee.randomFill=i,ee.randomFillSync=i)},9881:(Ae,ee,l)=>{"use strict";l.d(ee,{E:()=>t});var i=l(11514);const t=(0,i.hZ)("routeAnimation",[(0,i.kY)("* => *",[(0,i.P)(":enter, :leave",(0,i.iF)({position:"fixed",width:"100%"}),{optional:!0}),(0,i.Os)([(0,i.P)(":enter",[(0,i.iF)({transform:"translateX(100%)"}),(0,i.i0)("1000ms ease-in-out",(0,i.iF)({transform:"translateX(0%)"}))],{optional:!0}),(0,i.P)(":leave",[(0,i.iF)({transform:"translateX(0%)"}),(0,i.i0)("1000ms ease-in-out",(0,i.iF)({transform:"translateX(-100%)"}))],{optional:!0})])])])},10219:(Ae,ee,l)=>{"use strict";var i=l(39210);function t(p){this.options=p,this.type=this.options.type,this.blockSize=8,this._init(),this.buffer=new Array(this.blockSize),this.bufferOff=0,this.padding=!1!==p.padding}Ae.exports=t,t.prototype._init=function(){},t.prototype.update=function(S){return 0===S.length?[]:"decrypt"===this.type?this._updateDecrypt(S):this._updateEncrypt(S)},t.prototype._buffer=function(S,c){for(var e=Math.min(this.buffer.length-this.bufferOff,S.length-c),T=0;T0;T--)c+=this._buffer(S,c),e+=this._flushBuffer(g,e);return c+=this._buffer(S,c),g},t.prototype.final=function(S){var c,e;return S&&(c=this.update(S)),e="encrypt"===this.type?this._finalEncrypt():this._finalDecrypt(),c?c.concat(e):e},t.prototype._pad=function(S,c){if(0===c)return!1;for(;c{"use strict";l.d(ee,{A:()=>I,A$:()=>g,FX:()=>e,Fm:()=>c,G_:()=>t,Ge:()=>fe,Kp:()=>U,LE:()=>Q,SJ:()=>he,UQ:()=>q,W3:()=>T,Z:()=>J,_f:()=>m,bn:()=>k,dB:()=>j,eg:()=>Fn,f2:()=>me,i7:()=>G,n6:()=>$,t6:()=>P,w_:()=>M,wn:()=>p,yZ:()=>K});const t=8,p=9,c=13,e=16,T=17,g=18,m=27,P=32,M=33,j=34,U=35,K=36,q=37,G=38,Q=39,$=40,he=46,me=48,k=57,I=65,J=90,fe=91,Fn=224},10467:(Ae,ee,l)=>{"use strict";function i(p,S,c,e,T,g,d){try{var w=p[g](d),m=w.value}catch(P){return void c(P)}w.done?S(m):Promise.resolve(m).then(e,T)}function t(p){return function(){var S=this,c=arguments;return new Promise(function(e,T){var g=p.apply(S,c);function d(m){i(g,e,T,d,w,"next",m)}function w(m){i(g,e,T,d,w,"throw",m)}d(void 0)})}}l.d(ee,{A:()=>t})},10497:(Ae,ee,l)=>{"use strict";l.d(ee,{kU:()=>Kt,ZF:()=>Nt,Ld:()=>Ye,U$:()=>Jt});var i=l(21413),t=l(33726),p=l(57786),S=l(13798),c=l(56977),e=l(23294),T=l(73703),g=l(73664),d=l(17705),w=l(2615),m=l(72200),P=l(60177);function M(qe){return getComputedStyle(qe)}function j(qe,$e){for(var tt in $e){var vi=$e[tt];"number"==typeof vi&&(vi+="px"),qe.style[tt]=vi}return qe}function U(qe){var $e=document.createElement("div");return $e.className=qe,$e}var K=typeof Element<"u"&&(Element.prototype.matches||Element.prototype.webkitMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector);function q(qe,$e){if(!K)throw new Error("No element matching method supported");return K.call(qe,$e)}function G(qe){qe.remove?qe.remove():qe.parentNode&&qe.parentNode.removeChild(qe)}function Q(qe,$e){return Array.prototype.filter.call(qe.children,function(tt){return q(tt,$e)})}var $_element_thumb=function(qe){return"ps__thumb-"+qe},$_element_rail=function(qe){return"ps__rail-"+qe},$_element_consuming="ps__child--consume",$_state_focus="ps--focus",$_state_clicking="ps--clicking",$_state_active=function(qe){return"ps--active-"+qe},$_state_scrolling=function(qe){return"ps--scrolling-"+qe},ae={x:null,y:null};function ue(qe,$e){var tt=qe.element.classList,vi=$_state_scrolling($e);tt.contains(vi)?clearTimeout(ae[$e]):tt.add(vi)}function oe(qe,$e){ae[$e]=setTimeout(function(){return qe.isAlive&&qe.element.classList.remove($_state_scrolling($e))},qe.settings.scrollingThreshold)}var me=function($e){this.element=$e,this.handlers={}},Te={isEmpty:{configurable:!0}};me.prototype.bind=function($e,tt){typeof this.handlers[$e]>"u"&&(this.handlers[$e]=[]),this.handlers[$e].push(tt),this.element.addEventListener($e,tt,!1)},me.prototype.unbind=function($e,tt){var vi=this;this.handlers[$e]=this.handlers[$e].filter(function(ei){return!(!tt||ei===tt)||(vi.element.removeEventListener($e,ei,!1),!1)})},me.prototype.unbindAll=function(){for(var $e in this.handlers)this.unbind($e)},Te.isEmpty.get=function(){var qe=this;return Object.keys(this.handlers).every(function($e){return 0===qe.handlers[$e].length})},Object.defineProperties(me.prototype,Te);var D=function(){this.eventElements=[]};function n(qe){if("function"==typeof window.CustomEvent)return new CustomEvent(qe);var $e=document.createEvent("CustomEvent");return $e.initCustomEvent(qe,!1,!1,void 0),$e}function o(qe,$e,tt,vi,ei){var ci;if(void 0===vi&&(vi=!0),void 0===ei&&(ei=!1),"top"===$e)ci=["contentHeight","containerHeight","scrollTop","y","up","down"];else{if("left"!==$e)throw new Error("A proper axis should be provided");ci=["contentWidth","containerWidth","scrollLeft","x","left","right"]}!function f(qe,$e,tt,vi,ei){var ci=tt[0],Hi=tt[1],oi=tt[2],ui=tt[3],ln=tt[4],nn=tt[5];void 0===vi&&(vi=!0),void 0===ei&&(ei=!1);var dn=qe.element;qe.reach[ui]=null,dn[oi]<1&&(qe.reach[ui]="start"),dn[oi]>qe[ci]-qe[Hi]-1&&(qe.reach[ui]="end"),$e&&(dn.dispatchEvent(n("ps-scroll-"+ui)),$e<0?dn.dispatchEvent(n("ps-scroll-"+ln)):$e>0&&dn.dispatchEvent(n("ps-scroll-"+nn)),vi&&function he(qe,$e){ue(qe,$e),oe(qe,$e)}(qe,ui)),qe.reach[ui]&&($e||ei)&&dn.dispatchEvent(n("ps-"+ui+"-reach-"+qe.reach[ui]))}(qe,tt,ci,vi,ei)}function h(qe){return parseInt(qe,10)||0}D.prototype.eventElement=function($e){var tt=this.eventElements.filter(function(vi){return vi.element===$e})[0];return tt||(tt=new me($e),this.eventElements.push(tt)),tt},D.prototype.bind=function($e,tt,vi){this.eventElement($e).bind(tt,vi)},D.prototype.unbind=function($e,tt,vi){var ei=this.eventElement($e);ei.unbind(tt,vi),ei.isEmpty&&this.eventElements.splice(this.eventElements.indexOf(ei),1)},D.prototype.unbindAll=function(){this.eventElements.forEach(function($e){return $e.unbindAll()}),this.eventElements=[]},D.prototype.once=function($e,tt,vi){var ei=this.eventElement($e),ci=function(Hi){ei.unbind(tt,ci),vi(Hi)};ei.bind(tt,ci)};var k={isWebKit:typeof document<"u"&&"WebkitAppearance"in document.documentElement.style,supportsTouch:typeof window<"u"&&("ontouchstart"in window||"maxTouchPoints"in window.navigator&&window.navigator.maxTouchPoints>0||window.DocumentTouch&&document instanceof window.DocumentTouch),supportsIePointer:typeof navigator<"u"&&navigator.msMaxTouchPoints,isChrome:typeof navigator<"u"&&/Chrome/i.test(navigator&&navigator.userAgent)};function x(qe){var $e=qe.element,tt=Math.floor($e.scrollTop),vi=$e.getBoundingClientRect();qe.containerWidth=Math.round(vi.width),qe.containerHeight=Math.round(vi.height),qe.contentWidth=$e.scrollWidth,qe.contentHeight=$e.scrollHeight,$e.contains(qe.scrollbarXRail)||(Q($e,$_element_rail("x")).forEach(function(ei){return G(ei)}),$e.appendChild(qe.scrollbarXRail)),$e.contains(qe.scrollbarYRail)||(Q($e,$_element_rail("y")).forEach(function(ei){return G(ei)}),$e.appendChild(qe.scrollbarYRail)),!qe.settings.suppressScrollX&&qe.containerWidth+qe.settings.scrollXMarginOffset=qe.railXWidth-qe.scrollbarXWidth&&(qe.scrollbarXLeft=qe.railXWidth-qe.scrollbarXWidth),qe.scrollbarYTop>=qe.railYHeight-qe.scrollbarYHeight&&(qe.scrollbarYTop=qe.railYHeight-qe.scrollbarYHeight),function _(qe,$e){var tt={width:$e.railXWidth},vi=Math.floor(qe.scrollTop);tt.left=$e.isRtl?$e.negativeScrollAdjustment+qe.scrollLeft+$e.containerWidth-$e.contentWidth:qe.scrollLeft,$e.isScrollbarXUsingBottom?tt.bottom=$e.scrollbarXBottom-vi:tt.top=$e.scrollbarXTop+vi,j($e.scrollbarXRail,tt);var ei={top:vi,height:$e.railYHeight};$e.isScrollbarYUsingRight?ei.right=$e.isRtl?$e.contentWidth-($e.negativeScrollAdjustment+qe.scrollLeft)-$e.scrollbarYRight-$e.scrollbarYOuterWidth-9:$e.scrollbarYRight-qe.scrollLeft:ei.left=$e.isRtl?$e.negativeScrollAdjustment+qe.scrollLeft+2*$e.containerWidth-$e.contentWidth-$e.scrollbarYLeft-$e.scrollbarYOuterWidth:$e.scrollbarYLeft+qe.scrollLeft,j($e.scrollbarYRail,ei),j($e.scrollbarX,{left:$e.scrollbarXLeft,width:$e.scrollbarXWidth-$e.railBorderXWidth}),j($e.scrollbarY,{top:$e.scrollbarYTop,height:$e.scrollbarYHeight-$e.railBorderYWidth})}($e,qe),qe.scrollbarXActive?$e.classList.add($_state_active("x")):($e.classList.remove($_state_active("x")),qe.scrollbarXWidth=0,qe.scrollbarXLeft=0,$e.scrollLeft=!0===qe.isRtl?qe.contentWidth:0),qe.scrollbarYActive?$e.classList.add($_state_active("y")):($e.classList.remove($_state_active("y")),qe.scrollbarYHeight=0,qe.scrollbarYTop=0,$e.scrollTop=0)}function r(qe,$e){return qe.settings.minScrollbarLength&&($e=Math.max($e,qe.settings.minScrollbarLength)),qe.settings.maxScrollbarLength&&($e=Math.min($e,qe.settings.maxScrollbarLength)),$e}function B(qe,$e){var tt=$e[0],vi=$e[1],ei=$e[2],ci=$e[3],Hi=$e[4],oi=$e[5],ui=$e[6],ln=$e[7],nn=$e[8],dn=qe.element,zn=null,It=null,Tt=null;function Ze(it){it.touches&&it.touches[0]&&(it[ei]=it.touches[0].pageY),dn[ui]=zn+Tt*(it[ei]-It),ue(qe,ln),x(qe),it.stopPropagation(),it.type.startsWith("touch")&&it.changedTouches.length>1&&it.preventDefault()}function Ve(){oe(qe,ln),qe[nn].classList.remove($_state_clicking),qe.event.unbind(qe.ownerDocument,"mousemove",Ze)}function Fe(it,bt){zn=dn[ui],bt&&it.touches&&(it[ei]=it.touches[0].pageY),It=it[ei],Tt=(qe[vi]-qe[tt])/(qe[ci]-qe[oi]),bt?qe.event.bind(qe.ownerDocument,"touchmove",Ze):(qe.event.bind(qe.ownerDocument,"mousemove",Ze),qe.event.once(qe.ownerDocument,"mouseup",Ve),it.preventDefault()),qe[nn].classList.add($_state_clicking),it.stopPropagation()}qe.event.bind(qe[Hi],"mousedown",function(it){Fe(it)}),qe.event.bind(qe[Hi],"touchstart",function(it){Fe(it,!0)})}var _e={"click-rail":function W(qe){qe.event.bind(qe.scrollbarY,"mousedown",function(tt){return tt.stopPropagation()}),qe.event.bind(qe.scrollbarYRail,"mousedown",function(tt){var vi=tt.pageY-window.pageYOffset-qe.scrollbarYRail.getBoundingClientRect().top;qe.element.scrollTop+=(vi>qe.scrollbarYTop?1:-1)*qe.containerHeight,x(qe),tt.stopPropagation()}),qe.event.bind(qe.scrollbarX,"mousedown",function(tt){return tt.stopPropagation()}),qe.event.bind(qe.scrollbarXRail,"mousedown",function(tt){var vi=tt.pageX-window.pageXOffset-qe.scrollbarXRail.getBoundingClientRect().left;qe.element.scrollLeft+=(vi>qe.scrollbarXLeft?1:-1)*qe.containerWidth,x(qe),tt.stopPropagation()})},"drag-thumb":function I(qe){B(qe,["containerWidth","contentWidth","pageX","railXWidth","scrollbarX","scrollbarXWidth","scrollLeft","x","scrollbarXRail"]),B(qe,["containerHeight","contentHeight","pageY","railYHeight","scrollbarY","scrollbarYHeight","scrollTop","y","scrollbarYRail"])},keyboard:function re(qe){var $e=qe.element;qe.event.bind(qe.ownerDocument,"keydown",function(ci){if(!(ci.isDefaultPrevented&&ci.isDefaultPrevented()||ci.defaultPrevented)&&(q($e,":hover")||q(qe.scrollbarX,":focus")||q(qe.scrollbarY,":focus"))){var Hi=document.activeElement?document.activeElement:qe.ownerDocument.activeElement;if(Hi){if("IFRAME"===Hi.tagName)Hi=Hi.contentDocument.activeElement;else for(;Hi.shadowRoot;)Hi=Hi.shadowRoot.activeElement;if(function b(qe){return q(qe,"input,[contenteditable]")||q(qe,"select,[contenteditable]")||q(qe,"textarea,[contenteditable]")||q(qe,"button,[contenteditable]")}(Hi))return}var oi=0,ui=0;switch(ci.which){case 37:oi=ci.metaKey?-qe.contentWidth:ci.altKey?-qe.containerWidth:-30;break;case 38:ui=ci.metaKey?qe.contentHeight:ci.altKey?qe.containerHeight:30;break;case 39:oi=ci.metaKey?qe.contentWidth:ci.altKey?qe.containerWidth:30;break;case 40:ui=ci.metaKey?-qe.contentHeight:ci.altKey?-qe.containerHeight:-30;break;case 32:ui=ci.shiftKey?qe.containerHeight:-qe.containerHeight;break;case 33:ui=qe.containerHeight;break;case 34:ui=-qe.containerHeight;break;case 36:ui=qe.contentHeight;break;case 35:ui=-qe.contentHeight;break;default:return}qe.settings.suppressScrollX&&0!==oi||qe.settings.suppressScrollY&&0!==ui||($e.scrollTop-=ui,$e.scrollLeft+=oi,x(qe),function ei(ci,Hi){var oi=Math.floor($e.scrollTop);if(0===ci){if(!qe.scrollbarYActive)return!1;if(0===oi&&Hi>0||oi>=qe.contentHeight-qe.containerHeight&&Hi<0)return!qe.settings.wheelPropagation}var ui=$e.scrollLeft;if(0===Hi){if(!qe.scrollbarXActive)return!1;if(0===ui&&ci<0||ui>=qe.contentWidth-qe.containerWidth&&ci>0)return!qe.settings.wheelPropagation}return!0}(oi,ui)&&ci.preventDefault())}})},wheel:function pe(qe){var $e=qe.element;function ci(Hi){var oi=function vi(Hi){var oi=Hi.deltaX,ui=-1*Hi.deltaY;return(typeof oi>"u"||typeof ui>"u")&&(oi=-1*Hi.wheelDeltaX/6,ui=Hi.wheelDeltaY/6),Hi.deltaMode&&1===Hi.deltaMode&&(oi*=10,ui*=10),oi!=oi&&ui!=ui&&(oi=0,ui=Hi.wheelDelta),Hi.shiftKey?[-ui,-oi]:[oi,ui]}(Hi),ui=oi[0],ln=oi[1];if(!function ei(Hi,oi,ui){if(!k.isWebKit&&$e.querySelector("select:focus"))return!0;if(!$e.contains(Hi))return!1;for(var ln=Hi;ln&&ln!==$e;){if(ln.classList.contains($_element_consuming))return!0;var nn=M(ln);if(ui&&nn.overflowY.match(/(scroll|auto)/)){var dn=ln.scrollHeight-ln.clientHeight;if(dn>0&&(ln.scrollTop>0&&ui<0||ln.scrollTop0))return!0}if(oi&&nn.overflowX.match(/(scroll|auto)/)){var zn=ln.scrollWidth-ln.clientWidth;if(zn>0&&(ln.scrollLeft>0&&oi<0||ln.scrollLeft0))return!0}ln=ln.parentNode}return!1}(Hi.target,ui,ln)){var nn=!1;qe.settings.useBothWheelAxes?qe.scrollbarYActive&&!qe.scrollbarXActive?(ln?$e.scrollTop-=ln*qe.settings.wheelSpeed:$e.scrollTop+=ui*qe.settings.wheelSpeed,nn=!0):qe.scrollbarXActive&&!qe.scrollbarYActive&&(ui?$e.scrollLeft+=ui*qe.settings.wheelSpeed:$e.scrollLeft-=ln*qe.settings.wheelSpeed,nn=!0):($e.scrollTop-=ln*qe.settings.wheelSpeed,$e.scrollLeft+=ui*qe.settings.wheelSpeed),x(qe),nn=nn||function tt(Hi,oi){var ui=Math.floor($e.scrollTop),ln=0===$e.scrollTop,nn=ui+$e.offsetHeight===$e.scrollHeight,dn=0===$e.scrollLeft,zn=$e.scrollLeft+$e.offsetWidth===$e.scrollWidth;return!(Math.abs(oi)>Math.abs(Hi)?ln||nn:dn||zn)||!qe.settings.wheelPropagation}(ui,ln),nn&&!Hi.ctrlKey&&(Hi.stopPropagation(),Hi.preventDefault())}}typeof window.onwheel<"u"?qe.event.bind($e,"wheel",ci):typeof window.onmousewheel<"u"&&qe.event.bind($e,"mousewheel",ci)},touch:function be(qe){if(k.supportsTouch||k.supportsIePointer){var $e=qe.element,ei={},ci=0,Hi={},oi=null;k.supportsTouch?(qe.event.bind($e,"touchstart",nn),qe.event.bind($e,"touchmove",zn),qe.event.bind($e,"touchend",It)):k.supportsIePointer&&(window.PointerEvent?(qe.event.bind($e,"pointerdown",nn),qe.event.bind($e,"pointermove",zn),qe.event.bind($e,"pointerup",It)):window.MSPointerEvent&&(qe.event.bind($e,"MSPointerDown",nn),qe.event.bind($e,"MSPointerMove",zn),qe.event.bind($e,"MSPointerUp",It)))}function vi(Tt,Ze){$e.scrollTop-=Ze,$e.scrollLeft-=Tt,x(qe)}function ui(Tt){return Tt.targetTouches?Tt.targetTouches[0]:Tt}function ln(Tt){return!(Tt.pointerType&&"pen"===Tt.pointerType&&0===Tt.buttons||!(Tt.targetTouches&&1===Tt.targetTouches.length||Tt.pointerType&&"mouse"!==Tt.pointerType&&Tt.pointerType!==Tt.MSPOINTER_TYPE_MOUSE))}function nn(Tt){if(ln(Tt)){var Ze=ui(Tt);ei.pageX=Ze.pageX,ei.pageY=Ze.pageY,ci=(new Date).getTime(),null!==oi&&clearInterval(oi)}}function zn(Tt){if(ln(Tt)){var Ze=ui(Tt),Ve={pageX:Ze.pageX,pageY:Ze.pageY},Fe=Ve.pageX-ei.pageX,it=Ve.pageY-ei.pageY;if(function dn(Tt,Ze,Ve){if(!$e.contains(Tt))return!1;for(var Fe=Tt;Fe&&Fe!==$e;){if(Fe.classList.contains($_element_consuming))return!0;var it=M(Fe);if(Ve&&it.overflowY.match(/(scroll|auto)/)){var bt=Fe.scrollHeight-Fe.clientHeight;if(bt>0&&(Fe.scrollTop>0&&Ve<0||Fe.scrollTop0))return!0}if(Ze&&it.overflowX.match(/(scroll|auto)/)){var ut=Fe.scrollWidth-Fe.clientWidth;if(ut>0&&(Fe.scrollLeft>0&&Ze<0||Fe.scrollLeft0))return!0}Fe=Fe.parentNode}return!1}(Tt.target,Fe,it))return;vi(Fe,it),ei=Ve;var bt=(new Date).getTime(),ut=bt-ci;ut>0&&(Hi.x=Fe/ut,Hi.y=it/ut,ci=bt),function tt(Tt,Ze){var Ve=Math.floor($e.scrollTop),Fe=$e.scrollLeft,it=Math.abs(Tt),bt=Math.abs(Ze);if(bt>it){if(Ze<0&&Ve===qe.contentHeight-qe.containerHeight||Ze>0&&0===Ve)return 0===window.scrollY&&Ze>0&&k.isChrome}else if(it>bt&&(Tt<0&&Fe===qe.contentWidth-qe.containerWidth||Tt>0&&0===Fe))return!0;return!0}(Fe,it)&&Tt.preventDefault()}}function It(){qe.settings.swipeEasing&&(clearInterval(oi),oi=setInterval(function(){qe.isInitialized?clearInterval(oi):Hi.x||Hi.y?Math.abs(Hi.x)<.01&&Math.abs(Hi.y)<.01?clearInterval(oi):qe.element?(vi(30*Hi.x,30*Hi.y),Hi.x*=.8,Hi.y*=.8):clearInterval(oi):clearInterval(oi)},10))}}},ye=function($e,tt){var vi=this;if(void 0===tt&&(tt={}),"string"==typeof $e&&($e=document.querySelector($e)),!$e||!$e.nodeName)throw new Error("no element is specified to initialize PerfectScrollbar");for(var ei in this.element=$e,$e.classList.add("ps"),this.settings={handlers:["click-rail","drag-thumb","keyboard","wheel","touch"],maxScrollbarLength:null,minScrollbarLength:null,scrollingThreshold:1e3,scrollXMarginOffset:0,scrollYMarginOffset:0,suppressScrollX:!1,suppressScrollY:!1,swipeEasing:!0,useBothWheelAxes:!1,wheelPropagation:!0,wheelSpeed:1},tt)this.settings[ei]=tt[ei];this.containerWidth=null,this.containerHeight=null,this.contentWidth=null,this.contentHeight=null;var nn,ln,ci=function(){return $e.classList.add($_state_focus)},Hi=function(){return $e.classList.remove($_state_focus)};this.isRtl="rtl"===M($e).direction,!0===this.isRtl&&$e.classList.add("ps__rtl"),this.isNegativeScroll=(ln=$e.scrollLeft,$e.scrollLeft=-1,nn=$e.scrollLeft<0,$e.scrollLeft=ln,nn),this.negativeScrollAdjustment=this.isNegativeScroll?$e.scrollWidth-$e.clientWidth:0,this.event=new D,this.ownerDocument=$e.ownerDocument||document,this.scrollbarXRail=U($_element_rail("x")),$e.appendChild(this.scrollbarXRail),this.scrollbarX=U($_element_thumb("x")),this.scrollbarXRail.appendChild(this.scrollbarX),this.scrollbarX.setAttribute("tabindex",0),this.event.bind(this.scrollbarX,"focus",ci),this.event.bind(this.scrollbarX,"blur",Hi),this.scrollbarXActive=null,this.scrollbarXWidth=null,this.scrollbarXLeft=null;var oi=M(this.scrollbarXRail);this.scrollbarXBottom=parseInt(oi.bottom,10),isNaN(this.scrollbarXBottom)?(this.isScrollbarXUsingBottom=!1,this.scrollbarXTop=h(oi.top)):this.isScrollbarXUsingBottom=!0,this.railBorderXWidth=h(oi.borderLeftWidth)+h(oi.borderRightWidth),j(this.scrollbarXRail,{display:"block"}),this.railXMarginWidth=h(oi.marginLeft)+h(oi.marginRight),j(this.scrollbarXRail,{display:""}),this.railXWidth=null,this.railXRatio=null,this.scrollbarYRail=U($_element_rail("y")),$e.appendChild(this.scrollbarYRail),this.scrollbarY=U($_element_thumb("y")),this.scrollbarYRail.appendChild(this.scrollbarY),this.scrollbarY.setAttribute("tabindex",0),this.event.bind(this.scrollbarY,"focus",ci),this.event.bind(this.scrollbarY,"blur",Hi),this.scrollbarYActive=null,this.scrollbarYHeight=null,this.scrollbarYTop=null;var ui=M(this.scrollbarYRail);this.scrollbarYRight=parseInt(ui.right,10),isNaN(this.scrollbarYRight)?(this.isScrollbarYUsingRight=!1,this.scrollbarYLeft=h(ui.left)):this.isScrollbarYUsingRight=!0,this.scrollbarYOuterWidth=this.isRtl?function A(qe){var $e=M(qe);return h($e.width)+h($e.paddingLeft)+h($e.paddingRight)+h($e.borderLeftWidth)+h($e.borderRightWidth)}(this.scrollbarY):null,this.railBorderYWidth=h(ui.borderTopWidth)+h(ui.borderBottomWidth),j(this.scrollbarYRail,{display:"block"}),this.railYMarginHeight=h(ui.marginTop)+h(ui.marginBottom),j(this.scrollbarYRail,{display:""}),this.railYHeight=null,this.railYRatio=null,this.reach={x:$e.scrollLeft<=0?"start":$e.scrollLeft>=this.contentWidth-this.containerWidth?"end":null,y:$e.scrollTop<=0?"start":$e.scrollTop>=this.contentHeight-this.containerHeight?"end":null},this.isAlive=!0,this.settings.handlers.forEach(function(ln){return _e[ln](vi)}),this.lastScrollTop=Math.floor($e.scrollTop),this.lastScrollLeft=$e.scrollLeft,this.event.bind(this.element,"scroll",function(ln){return vi.onScroll(ln)}),x(this)};ye.prototype.update=function(){this.isAlive&&(this.negativeScrollAdjustment=this.isNegativeScroll?this.element.scrollWidth-this.element.clientWidth:0,j(this.scrollbarXRail,{display:"block"}),j(this.scrollbarYRail,{display:"block"}),this.railXMarginWidth=h(M(this.scrollbarXRail).marginLeft)+h(M(this.scrollbarXRail).marginRight),this.railYMarginHeight=h(M(this.scrollbarYRail).marginTop)+h(M(this.scrollbarYRail).marginBottom),j(this.scrollbarXRail,{display:"none"}),j(this.scrollbarYRail,{display:"none"}),x(this),o(this,"top",0,!1,!0),o(this,"left",0,!1,!0),j(this.scrollbarXRail,{display:""}),j(this.scrollbarYRail,{display:""}))},ye.prototype.onScroll=function($e){this.isAlive&&(x(this),o(this,"top",this.element.scrollTop-this.lastScrollTop),o(this,"left",this.element.scrollLeft-this.lastScrollLeft),this.lastScrollTop=Math.floor(this.element.scrollTop),this.lastScrollLeft=this.element.scrollLeft)},ye.prototype.destroy=function(){this.isAlive&&(this.event.unbindAll(),G(this.scrollbarX),G(this.scrollbarY),G(this.scrollbarXRail),G(this.scrollbarYRail),this.removePsClasses(),this.element=null,this.scrollbarX=null,this.scrollbarY=null,this.scrollbarXRail=null,this.scrollbarYRail=null,this.isAlive=!1)},ye.prototype.removePsClasses=function(){this.element.className=this.element.className.split(" ").filter(function($e){return!$e.match(/^ps([-_].+|)$/)}).join(" ")};const Le=ye;var Ke=function(){if(typeof Map<"u")return Map;function qe($e,tt){var vi=-1;return $e.some(function(ei,ci){return ei[0]===tt&&(vi=ci,!0)}),vi}return function(){function $e(){this.__entries__=[]}return Object.defineProperty($e.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),$e.prototype.get=function(tt){var vi=qe(this.__entries__,tt),ei=this.__entries__[vi];return ei&&ei[1]},$e.prototype.set=function(tt,vi){var ei=qe(this.__entries__,tt);~ei?this.__entries__[ei][1]=vi:this.__entries__.push([tt,vi])},$e.prototype.delete=function(tt){var vi=this.__entries__,ei=qe(vi,tt);~ei&&vi.splice(ei,1)},$e.prototype.has=function(tt){return!!~qe(this.__entries__,tt)},$e.prototype.clear=function(){this.__entries__.splice(0)},$e.prototype.forEach=function(tt,vi){void 0===vi&&(vi=null);for(var ei=0,ci=this.__entries__;ei0},qe.prototype.connect_=function(){!ge||this.connected_||(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),Mt?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},qe.prototype.disconnect_=function(){!ge||!this.connected_||(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},qe.prototype.onTransitionEnd_=function($e){var tt=$e.propertyName,vi=void 0===tt?"":tt;Ct.some(function(ci){return!!~vi.indexOf(ci)})&&this.refresh()},qe.getInstance=function(){return this.instance_||(this.instance_=new qe),this.instance_},qe.instance_=null,qe}(),Pe=function(qe,$e){for(var tt=0,vi=Object.keys($e);tt"u")&&Element instanceof Object){if(!($e instanceof Ht($e).Element))throw new TypeError('parameter 1 is not of type "Element".');var tt=this.observations_;tt.has($e)||(tt.set($e,new kt($e)),this.controller_.addObserver(this),this.controller_.refresh())}},qe.prototype.unobserve=function($e){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if(!(typeof Element>"u")&&Element instanceof Object){if(!($e instanceof Ht($e).Element))throw new TypeError('parameter 1 is not of type "Element".');var tt=this.observations_;tt.has($e)&&(tt.delete($e),tt.size||this.controller_.removeObserver(this))}},qe.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},qe.prototype.gatherActive=function(){var $e=this;this.clearActive(),this.observations_.forEach(function(tt){tt.isActive()&&$e.activeObservations_.push(tt)})},qe.prototype.broadcastActive=function(){if(this.hasActive()){var $e=this.callbackCtx_,tt=this.activeObservations_.map(function(vi){return new Rt(vi.target,vi.broadcastRect())});this.callback_.call($e,tt,$e),this.clearActive()}},qe.prototype.clearActive=function(){this.activeObservations_.splice(0)},qe.prototype.hasActive=function(){return this.activeObservations_.length>0},qe}(),te=typeof WeakMap<"u"?new WeakMap:new Ke,ce=function(){return function qe($e){if(!(this instanceof qe))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var tt=lt.getInstance(),vi=new le($e,tt,this);te.set(this,vi)}}();["observe","unobserve","disconnect"].forEach(function(qe){ce.prototype[qe]=function(){var $e;return($e=te.get(this))[qe].apply($e,arguments)}});const ke=typeof ve.ResizeObserver<"u"?ve.ResizeObserver:ce,Ue=["*"];function Ne(qe,$e){if(1&qe&&(g.j41(0,"div",3),g.nrm(1,"div",4)(2,"div",5)(3,"div",6)(4,"div",7),g.k0s()),2&qe){const tt=g.XpG();g.AVh("ps-at-top",tt.states.top)("ps-at-left",tt.states.left)("ps-at-right",tt.states.right)("ps-at-bottom",tt.states.bottom),g.R7$(),g.AVh("ps-indicator-show",tt.indicatorY&&tt.interaction),g.R7$(),g.AVh("ps-indicator-show",tt.indicatorX&&tt.interaction),g.R7$(),g.AVh("ps-indicator-show",tt.indicatorX&&tt.interaction),g.R7$(),g.AVh("ps-indicator-show",tt.indicatorY&&tt.interaction)}}const Kt=new w.nKC("PERFECT_SCROLLBAR_CONFIG");class yt{constructor($e,tt,vi,ei){this.x=$e,this.y=tt,this.w=vi,this.h=ei}}class Vt{constructor($e,tt){this.x=$e,this.y=tt}}const Zt=["psScrollY","psScrollX","psScrollUp","psScrollDown","psScrollLeft","psScrollRight","psYReachEnd","psYReachStart","psXReachEnd","psXReachStart"];class ti{constructor($e={}){this.assign($e)}assign($e={}){for(const tt in $e)this[tt]=$e[tt]}}let Ye=(()=>{class qe{constructor(tt,vi,ei,ci,Hi){this.zone=tt,this.differs=vi,this.elementRef=ei,this.platformId=ci,this.defaults=Hi,this.instance=null,this.ro=null,this.timeout=null,this.animation=null,this.configDiff=null,this.ngDestroy=new i.B,this.disabled=!1,this.psScrollY=new g.bkB,this.psScrollX=new g.bkB,this.psScrollUp=new g.bkB,this.psScrollDown=new g.bkB,this.psScrollLeft=new g.bkB,this.psScrollRight=new g.bkB,this.psYReachEnd=new g.bkB,this.psYReachStart=new g.bkB,this.psXReachEnd=new g.bkB,this.psXReachStart=new g.bkB}ngOnInit(){if(!this.disabled&&(0,P.UE)(this.platformId)){const tt=new ti(this.defaults);tt.assign(this.config),this.zone.runOutsideAngular(()=>{this.instance=new Le(this.elementRef.nativeElement,tt)}),this.configDiff||(this.configDiff=this.differs.find(this.config||{}).create(),this.configDiff.diff(this.config||{})),this.zone.runOutsideAngular(()=>{this.ro=new ke(()=>{this.update()}),this.elementRef.nativeElement.children[0]&&this.ro.observe(this.elementRef.nativeElement.children[0]),this.ro.observe(this.elementRef.nativeElement)}),this.zone.runOutsideAngular(()=>{Zt.forEach(vi=>{const ei=vi.replace(/([A-Z])/g,ci=>`-${ci.toLowerCase()}`);(0,t.R)(this.elementRef.nativeElement,ei).pipe((0,S.Z)(20),(0,c.Q)(this.ngDestroy)).subscribe(ci=>{this[vi].emit(ci)})})})}}ngOnDestroy(){(0,P.UE)(this.platformId)&&(this.ngDestroy.next(),this.ngDestroy.complete(),this.ro&&this.ro.disconnect(),this.timeout&&typeof window<"u"&&window.clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.instance&&this.instance.destroy()}),this.instance=null)}ngDoCheck(){!this.disabled&&this.configDiff&&(0,P.UE)(this.platformId)&&this.configDiff.diff(this.config||{})&&(this.ngOnDestroy(),this.ngOnInit())}ngOnChanges(tt){tt.disabled&&!tt.disabled.isFirstChange()&&(0,P.UE)(this.platformId)&&tt.disabled.currentValue!==tt.disabled.previousValue&&(!0===tt.disabled.currentValue?this.ngOnDestroy():!1===tt.disabled.currentValue&&this.ngOnInit())}ps(){return this.instance}update(){typeof window<"u"&&(this.timeout&&window.clearTimeout(this.timeout),this.timeout=window.setTimeout(()=>{if(!this.disabled&&this.configDiff)try{this.zone.runOutsideAngular(()=>{this.instance&&this.instance.update()})}catch{}},0))}geometry(tt="scroll"){return new yt(this.elementRef.nativeElement[tt+"Left"],this.elementRef.nativeElement[tt+"Top"],this.elementRef.nativeElement[tt+"Width"],this.elementRef.nativeElement[tt+"Height"])}position(tt=!1){return!tt&&this.instance?new Vt(this.instance.reach.x||0,this.instance.reach.y||0):new Vt(this.elementRef.nativeElement.scrollLeft,this.elementRef.nativeElement.scrollTop)}scrollable(tt="any"){const vi=this.elementRef.nativeElement;return"any"===tt?vi.classList.contains("ps--active-x")||vi.classList.contains("ps--active-y"):"both"===tt?vi.classList.contains("ps--active-x")&&vi.classList.contains("ps--active-y"):vi.classList.contains("ps--active-"+tt)}scrollTo(tt,vi,ei){this.disabled||(null==vi&&null==ei?this.animateScrolling("scrollTop",tt,ei):(null!=tt&&this.animateScrolling("scrollLeft",tt,ei),null!=vi&&this.animateScrolling("scrollTop",vi,ei)))}scrollToX(tt,vi){this.animateScrolling("scrollLeft",tt,vi)}scrollToY(tt,vi){this.animateScrolling("scrollTop",tt,vi)}scrollToTop(tt,vi){this.animateScrolling("scrollTop",tt||0,vi)}scrollToLeft(tt,vi){this.animateScrolling("scrollLeft",tt||0,vi)}scrollToRight(tt,vi){this.animateScrolling("scrollLeft",this.elementRef.nativeElement.scrollWidth-this.elementRef.nativeElement.clientWidth-(tt||0),vi)}scrollToBottom(tt,vi){this.animateScrolling("scrollTop",this.elementRef.nativeElement.scrollHeight-this.elementRef.nativeElement.clientHeight-(tt||0),vi)}scrollToElement(tt,vi,ei){if("string"==typeof tt&&(tt=this.elementRef.nativeElement.querySelector(tt)),tt){const ci=tt.getBoundingClientRect(),Hi=this.elementRef.nativeElement.getBoundingClientRect();this.elementRef.nativeElement.classList.contains("ps--active-x")&&this.animateScrolling("scrollLeft",ci.left-Hi.left+this.elementRef.nativeElement.scrollLeft+(vi||0),ei),this.elementRef.nativeElement.classList.contains("ps--active-y")&&this.animateScrolling("scrollTop",ci.top-Hi.top+this.elementRef.nativeElement.scrollTop+(vi||0),ei)}}animateScrolling(tt,vi,ei){if(this.animation&&(window.cancelAnimationFrame(this.animation),this.animation=null),!ei||typeof window>"u")this.elementRef.nativeElement[tt]=vi;else if(vi!==this.elementRef.nativeElement[tt]){let ci=0,Hi=0,oi=performance.now(),ui=this.elementRef.nativeElement[tt];const ln=(ui-vi)/2,nn=dn=>{Hi+=Math.PI/(ei/(dn-oi)),ci=Math.round(vi+ln+ln*Math.cos(Hi)),this.elementRef.nativeElement[tt]===ui&&(Hi>=Math.PI?this.animateScrolling(tt,vi,0):(this.elementRef.nativeElement[tt]=ci,ui=this.elementRef.nativeElement[tt],oi=dn,this.animation=window.requestAnimationFrame(nn)))};window.requestAnimationFrame(nn)}}}return qe.\u0275fac=function(tt){return new(tt||qe)(g.rXU(g.SKi),g.rXU(d.MKu),g.rXU(g.aKT),g.rXU(g.Agw),g.rXU(Kt,8))},qe.\u0275dir=g.FsC({type:qe,selectors:[["","perfectScrollbar",""]],inputs:{disabled:"disabled",config:[0,"perfectScrollbar","config"]},outputs:{psScrollY:"psScrollY",psScrollX:"psScrollX",psScrollUp:"psScrollUp",psScrollDown:"psScrollDown",psScrollLeft:"psScrollLeft",psScrollRight:"psScrollRight",psYReachEnd:"psYReachEnd",psYReachStart:"psYReachStart",psXReachEnd:"psXReachEnd",psXReachStart:"psXReachStart"},exportAs:["ngxPerfectScrollbar"],standalone:!1,features:[g.OA$]}),qe})(),Nt=(()=>{class qe{constructor(tt,vi,ei){this.zone=tt,this.cdRef=vi,this.platformId=ei,this.states={},this.indicatorX=!1,this.indicatorY=!1,this.interaction=!1,this.scrollPositionX=0,this.scrollPositionY=0,this.scrollDirectionX=0,this.scrollDirectionY=0,this.usePropagationX=!1,this.usePropagationY=!1,this.allowPropagationX=!1,this.allowPropagationY=!1,this.stateTimeout=null,this.ngDestroy=new i.B,this.stateUpdate=new i.B,this.disabled=!1,this.usePSClass=!0,this.autoPropagation=!1,this.scrollIndicators=!1,this.psScrollY=new g.bkB,this.psScrollX=new g.bkB,this.psScrollUp=new g.bkB,this.psScrollDown=new g.bkB,this.psScrollLeft=new g.bkB,this.psScrollRight=new g.bkB,this.psYReachEnd=new g.bkB,this.psYReachStart=new g.bkB,this.psXReachEnd=new g.bkB,this.psXReachStart=new g.bkB}ngOnInit(){(0,P.UE)(this.platformId)&&(this.stateUpdate.pipe((0,c.Q)(this.ngDestroy),(0,e.F)((tt,vi)=>tt===vi&&!this.stateTimeout)).subscribe(tt=>{this.stateTimeout&&typeof window<"u"&&(window.clearTimeout(this.stateTimeout),this.stateTimeout=null),"x"===tt||"y"===tt?(this.interaction=!1,"x"===tt?(this.indicatorX=!1,this.states.left=!1,this.states.right=!1,this.autoPropagation&&this.usePropagationX&&(this.allowPropagationX=!1)):"y"===tt&&(this.indicatorY=!1,this.states.top=!1,this.states.bottom=!1,this.autoPropagation&&this.usePropagationY&&(this.allowPropagationY=!1))):("left"===tt||"right"===tt?(this.states.left=!1,this.states.right=!1,this.states[tt]=!0,this.autoPropagation&&this.usePropagationX&&(this.indicatorX=!0)):("top"===tt||"bottom"===tt)&&(this.states.top=!1,this.states.bottom=!1,this.states[tt]=!0,this.autoPropagation&&this.usePropagationY&&(this.indicatorY=!0)),this.autoPropagation&&typeof window<"u"&&(this.stateTimeout=window.setTimeout(()=>{this.indicatorX=!1,this.indicatorY=!1,this.stateTimeout=null,this.interaction&&(this.states.left||this.states.right)&&(this.allowPropagationX=!0),this.interaction&&(this.states.top||this.states.bottom)&&(this.allowPropagationY=!0),this.cdRef.markForCheck()},500))),this.cdRef.markForCheck(),this.cdRef.detectChanges()}),this.zone.runOutsideAngular(()=>{if(this.directiveRef){const tt=this.directiveRef.elementRef.nativeElement;(0,t.R)(tt,"wheel").pipe((0,c.Q)(this.ngDestroy)).subscribe(vi=>{!this.disabled&&this.autoPropagation&&this.checkPropagation(vi,vi.deltaX,vi.deltaY)}),(0,t.R)(tt,"touchmove").pipe((0,c.Q)(this.ngDestroy)).subscribe(vi=>{if(!this.disabled&&this.autoPropagation){const ei=vi.touches[0].clientX,ci=vi.touches[0].clientY;this.checkPropagation(vi,ei-this.scrollPositionX,ci-this.scrollPositionY),this.scrollPositionX=ei,this.scrollPositionY=ci}}),(0,p.h)((0,t.R)(tt,"ps-scroll-x").pipe((0,T.u)("x")),(0,t.R)(tt,"ps-scroll-y").pipe((0,T.u)("y")),(0,t.R)(tt,"ps-x-reach-end").pipe((0,T.u)("right")),(0,t.R)(tt,"ps-y-reach-end").pipe((0,T.u)("bottom")),(0,t.R)(tt,"ps-x-reach-start").pipe((0,T.u)("left")),(0,t.R)(tt,"ps-y-reach-start").pipe((0,T.u)("top"))).pipe((0,c.Q)(this.ngDestroy)).subscribe(vi=>{!this.disabled&&(this.autoPropagation||this.scrollIndicators)&&this.stateUpdate.next(vi)})}}),window.setTimeout(()=>{Zt.forEach(tt=>{this.directiveRef&&(this.directiveRef[tt]=this[tt])})},0))}ngOnDestroy(){(0,P.UE)(this.platformId)&&(this.ngDestroy.next(),this.ngDestroy.unsubscribe(),this.stateTimeout&&typeof window<"u"&&window.clearTimeout(this.stateTimeout))}ngDoCheck(){if((0,P.UE)(this.platformId)&&!this.disabled&&this.autoPropagation&&this.directiveRef){const tt=this.directiveRef.elementRef.nativeElement;this.usePropagationX=tt.classList.contains("ps--active-x"),this.usePropagationY=tt.classList.contains("ps--active-y")}}checkPropagation(tt,vi,ei){this.interaction=!0;const ci=vi<0?-1:1,Hi=ei<0?-1:1;(this.usePropagationX&&this.usePropagationY||this.usePropagationX&&(!this.allowPropagationX||this.scrollDirectionX!==ci)||this.usePropagationY&&(!this.allowPropagationY||this.scrollDirectionY!==Hi))&&(tt.preventDefault(),tt.stopPropagation()),vi&&(this.scrollDirectionX=ci),ei&&(this.scrollDirectionY=Hi),this.stateUpdate.next("interaction"),this.cdRef.detectChanges()}}return qe.\u0275fac=function(tt){return new(tt||qe)(g.rXU(g.SKi),g.rXU(d.gRc),g.rXU(g.Agw))},qe.\u0275cmp=g.VBU({type:qe,selectors:[["perfect-scrollbar"]],viewQuery:function(tt,vi){if(1&tt&&g.GBs(Ye,7),2&tt){let ei;g.mGM(ei=g.lsd())&&(vi.directiveRef=ei.first)}},hostVars:4,hostBindings:function(tt,vi){2&tt&&g.AVh("ps-show-limits",vi.autoPropagation)("ps-show-active",vi.scrollIndicators)},inputs:{disabled:"disabled",usePSClass:"usePSClass",autoPropagation:"autoPropagation",scrollIndicators:"scrollIndicators",config:"config"},outputs:{psScrollY:"psScrollY",psScrollX:"psScrollX",psScrollUp:"psScrollUp",psScrollDown:"psScrollDown",psScrollLeft:"psScrollLeft",psScrollRight:"psScrollRight",psYReachEnd:"psYReachEnd",psYReachStart:"psYReachStart",psXReachEnd:"psXReachEnd",psXReachStart:"psXReachStart"},exportAs:["ngxPerfectScrollbar"],standalone:!1,ngContentSelectors:Ue,decls:4,vars:5,consts:[[2,"position","static",3,"perfectScrollbar","disabled"],[1,"ps-content"],["class","ps-overlay",3,"ps-at-top","ps-at-left","ps-at-right","ps-at-bottom",4,"ngIf"],[1,"ps-overlay"],[1,"ps-indicator-top"],[1,"ps-indicator-left"],[1,"ps-indicator-right"],[1,"ps-indicator-bottom"]],template:function(tt,vi){1&tt&&(g.NAR(),g.j41(0,"div",0)(1,"div",1),g.SdG(2),g.k0s(),g.DNE(3,Ne,5,16,"div",2),g.k0s()),2&tt&&(g.AVh("ps",vi.usePSClass),g.Y8G("perfectScrollbar",vi.config)("disabled",vi.disabled),g.R7$(3),g.Y8G("ngIf",vi.scrollIndicators))},dependencies:[Ye,m.bT],styles:["perfect-scrollbar{position:relative;display:block;overflow:hidden;width:100%;height:100%;max-width:100%;max-height:100%}perfect-scrollbar[hidden]{display:none}perfect-scrollbar[fxflex]{display:flex;flex-direction:column;height:auto;min-width:0;min-height:0}perfect-scrollbar[fxflex]>.ps{flex:1 1 auto;width:auto;height:auto;min-width:0;min-height:0;-webkit-box-flex:1}perfect-scrollbar[fxlayout]>.ps,perfect-scrollbar[fxlayout]>.ps>.ps-content{display:flex;flex:1 1 auto;flex-direction:inherit;align-items:inherit;align-content:inherit;justify-content:inherit;width:100%;height:100%;-webkit-box-align:inherit;-webkit-box-flex:1;-webkit-box-pack:inherit}perfect-scrollbar[fxlayout=row]>.ps,perfect-scrollbar[fxlayout=row]>.ps>.ps-content{flex-direction:row!important}perfect-scrollbar[fxlayout=column]>.ps,perfect-scrollbar[fxlayout=column]>.ps>.ps-content{flex-direction:column!important}perfect-scrollbar>.ps{position:static;display:block;width:100%;height:100%;max-width:100%;max-height:100%}perfect-scrollbar>.ps textarea{-ms-overflow-style:scrollbar}perfect-scrollbar>.ps>.ps-overlay{position:absolute;top:0;right:0;bottom:0;left:0;display:block;overflow:hidden;pointer-events:none}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{position:absolute;opacity:0;transition:opacity .3s ease-in-out}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{left:0;min-width:100%;min-height:24px}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right{top:0;min-width:24px;min-height:100%}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top{top:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left{left:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right{right:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{bottom:0}perfect-scrollbar>.ps.ps--active-y>.ps__rail-y{top:0!important;right:0!important;left:auto!important;width:10px;cursor:default;transition:width .2s linear,opacity .2s linear,background-color .2s linear}perfect-scrollbar>.ps.ps--active-y>.ps__rail-y:hover,perfect-scrollbar>.ps.ps--active-y>.ps__rail-y.ps--clicking{width:15px}perfect-scrollbar>.ps.ps--active-x>.ps__rail-x{top:auto!important;bottom:0!important;left:0!important;height:10px;cursor:default;transition:height .2s linear,opacity .2s linear,background-color .2s linear}perfect-scrollbar>.ps.ps--active-x>.ps__rail-x:hover,perfect-scrollbar>.ps.ps--active-x>.ps__rail-x.ps--clicking{height:15px}perfect-scrollbar>.ps.ps--active-x.ps--active-y>.ps__rail-y{margin:0 0 10px}perfect-scrollbar>.ps.ps--active-x.ps--active-y>.ps__rail-x{margin:0 10px 0 0}perfect-scrollbar>.ps.ps--scrolling-y>.ps__rail-y,perfect-scrollbar>.ps.ps--scrolling-x>.ps__rail-x{opacity:.9;background-color:#eee}perfect-scrollbar.ps-show-always>.ps.ps--active-y>.ps__rail-y,perfect-scrollbar.ps-show-always>.ps.ps--active-x>.ps__rail-x{opacity:.6}perfect-scrollbar.ps-show-active>.ps.ps--active-y>.ps-overlay:not(.ps-at-top) .ps-indicator-top{opacity:1;background:linear-gradient(to bottom,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-y>.ps-overlay:not(.ps-at-bottom) .ps-indicator-bottom{opacity:1;background:linear-gradient(to top,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-x>.ps-overlay:not(.ps-at-left) .ps-indicator-left{opacity:1;background:linear-gradient(to right,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-x>.ps-overlay:not(.ps-at-right) .ps-indicator-right{opacity:1;background:linear-gradient(to left,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-top .ps-indicator-top{background:linear-gradient(to bottom,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-bottom .ps-indicator-bottom{background:linear-gradient(to top,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-left .ps-indicator-left{background:linear-gradient(to right,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-right .ps-indicator-right{background:linear-gradient(to left,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-top .ps-indicator-top.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-bottom .ps-indicator-bottom.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-left .ps-indicator-left.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-right .ps-indicator-right.ps-indicator-show{opacity:1}\n",".ps{overflow:hidden!important;overflow-anchor:none;-ms-overflow-style:none;touch-action:auto;-ms-touch-action:auto}.ps__rail-x{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;height:15px;bottom:0px;position:absolute}.ps__rail-y{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;width:15px;right:0;position:absolute}.ps--active-x>.ps__rail-x,.ps--active-y>.ps__rail-y{display:block;background-color:transparent}.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y,.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y{opacity:.6}.ps .ps__rail-x:hover,.ps .ps__rail-y:hover,.ps .ps__rail-x:focus,.ps .ps__rail-y:focus,.ps .ps__rail-x.ps--clicking,.ps .ps__rail-y.ps--clicking{background-color:#eee;opacity:.9}.ps__thumb-x{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,height .2s ease-in-out;-webkit-transition:background-color .2s linear,height .2s ease-in-out;height:6px;bottom:2px;position:absolute}.ps__thumb-y{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,width .2s ease-in-out;-webkit-transition:background-color .2s linear,width .2s ease-in-out;width:6px;right:2px;position:absolute}.ps__rail-x:hover>.ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x,.ps__rail-x.ps--clicking .ps__thumb-x{background-color:#999;height:11px}.ps__rail-y:hover>.ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y,.ps__rail-y.ps--clicking .ps__thumb-y{background-color:#999;width:11px}@supports (-ms-overflow-style: none){.ps{overflow:auto!important}}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.ps{overflow:auto!important}}\n"],encapsulation:2}),qe})(),Jt=(()=>{class qe{}return qe.\u0275fac=function(tt){return new(tt||qe)},qe.\u0275mod=g.$C({type:qe}),qe.\u0275inj=w.G2t({imports:[[m.MD],m.MD]}),qe})()},10568:(Ae,ee,l)=>{var i=l(16508),t=l(27054).Buffer;Ae.exports=function p(S,c){return t.from(S.toRed(i.mont(c.modulus)).redPow(new i(c.publicExponent)).fromRed().toArray())}},10820:function(Ae){!function(ee){"use strict";var l={bytesToString:function(i){return i.map(function(t){return String.fromCharCode(t)}).join("")},stringToBytes:function(i){return i.split("").map(function(t){return t.charCodeAt(0)})}};l.UTF8={bytesToString:function(i){return decodeURIComponent(escape(l.bytesToString(i)))},stringToBytes:function(i){return l.stringToBytes(unescape(encodeURIComponent(i)))}},Ae.exports?Ae.exports=l:ee.convertString=l}(this)},10827:(Ae,ee,l)=>{"use strict";var i=l(68283),t=l(12901),p=l(39210),S=i.rotr64_hi,c=i.rotr64_lo,e=i.shr64_hi,T=i.shr64_lo,g=i.sum64,d=i.sum64_hi,w=i.sum64_lo,m=i.sum64_4_hi,P=i.sum64_4_lo,M=i.sum64_5_hi,j=i.sum64_5_lo,U=t.BlockHash,K=[1116352408,3609767458,1899447441,602891725,3049323471,3964484399,3921009573,2173295548,961987163,4081628472,1508970993,3053834265,2453635748,2937671579,2870763221,3664609560,3624381080,2734883394,310598401,1164996542,607225278,1323610764,1426881987,3590304994,1925078388,4068182383,2162078206,991336113,2614888103,633803317,3248222580,3479774868,3835390401,2666613458,4022224774,944711139,264347078,2341262773,604807628,2007800933,770255983,1495990901,1249150122,1856431235,1555081692,3175218132,1996064986,2198950837,2554220882,3999719339,2821834349,766784016,2952996808,2566594879,3210313671,3203337956,3336571891,1034457026,3584528711,2466948901,113926993,3758326383,338241895,168717936,666307205,1188179964,773529912,1546045734,1294757372,1522805485,1396182291,2643833823,1695183700,2343527390,1986661051,1014477480,2177026350,1206759142,2456956037,344077627,2730485921,1290863460,2820302411,3158454273,3259730800,3505952657,3345764771,106217008,3516065817,3606008344,3600352804,1432725776,4094571909,1467031594,275423344,851169720,430227734,3100823752,506948616,1363258195,659060556,3750685593,883997877,3785050280,958139571,3318307427,1322822218,3812723403,1537002063,2003034995,1747873779,3602036899,1955562222,1575990012,2024104815,1125592928,2227730452,2716904306,2361852424,442776044,2428436474,593698344,2756734187,3733110249,3204031479,2999351573,3329325298,3815920427,3391569614,3928383900,3515267271,566280711,3940187606,3454069534,4118630271,4000239992,116418474,1914138554,174292421,2731055270,289380356,3203993006,460393269,320620315,685471733,587496836,852142971,1086792851,1017036298,365543100,1126000580,2618297676,1288033470,3409855158,1501505948,4234509866,1607167915,987167468,1816402316,1246189591];function q(){if(!(this instanceof q))return new q;U.call(this),this.h=[1779033703,4089235720,3144134277,2227873595,1013904242,4271175723,2773480762,1595750129,1359893119,2917565137,2600822924,725511199,528734635,4215389547,1541459225,327033209],this.k=K,this.W=new Array(160)}function G(f,h,b,A,k){var x=f&b^~f&k;return x<0&&(x+=4294967296),x}function Q(f,h,b,A,k,x){var r=h&A^~h&x;return r<0&&(r+=4294967296),r}function $(f,h,b,A,k){var x=f&b^f&k^b&k;return x<0&&(x+=4294967296),x}function ae(f,h,b,A,k,x){var r=h&A^h&x^A&x;return r<0&&(r+=4294967296),r}function ue(f,h){var x=S(f,h,28)^S(h,f,2)^S(h,f,7);return x<0&&(x+=4294967296),x}function oe(f,h){var x=c(f,h,28)^c(h,f,2)^c(h,f,7);return x<0&&(x+=4294967296),x}function he(f,h){var x=S(f,h,14)^S(f,h,18)^S(h,f,9);return x<0&&(x+=4294967296),x}function me(f,h){var x=c(f,h,14)^c(f,h,18)^c(h,f,9);return x<0&&(x+=4294967296),x}function Te(f,h){var x=S(f,h,1)^S(f,h,8)^e(f,h,7);return x<0&&(x+=4294967296),x}function D(f,h){var x=c(f,h,1)^c(f,h,8)^T(f,h,7);return x<0&&(x+=4294967296),x}function n(f,h){var x=S(f,h,19)^S(h,f,29)^e(f,h,6);return x<0&&(x+=4294967296),x}function o(f,h){var x=c(f,h,19)^c(h,f,29)^T(f,h,6);return x<0&&(x+=4294967296),x}i.inherits(q,U),Ae.exports=q,q.blockSize=1024,q.outSize=512,q.hmacStrength=192,q.padLength=128,q.prototype._prepareBlock=function(h,b){for(var A=this.W,k=0;k<32;k++)A[k]=h[b+k];for(;k{"use strict";l.d(ee,{E:()=>M});var i=l(2615),t=l(73664),p=l(39842),S=l(44522),c=l(31804),e=l(12496);const T={capture:!0},g=["focus","mousedown","mouseenter","touchstart"],d="mat-ripple-loader-uninitialized",w="mat-ripple-loader-class-name",m="mat-ripple-loader-centered",P="mat-ripple-loader-disabled";let M=(()=>{class j{_document=(0,i.WQX)(i.qQL);_animationsDisabled=(0,c.Rc)();_globalRippleOptions=(0,i.WQX)(e.$E,{optional:!0});_platform=(0,i.WQX)(p.O);_ngZone=(0,i.WQX)(t.SKi);_injector=(0,i.WQX)(i.zZn);_eventCleanups;_hosts=new Map;constructor(){const K=(0,i.WQX)(t._9s).createRenderer(null,null);this._eventCleanups=this._ngZone.runOutsideAngular(()=>g.map(q=>K.listen(this._document,q,this._onInteraction,T)))}ngOnDestroy(){const K=this._hosts.keys();for(const q of K)this.destroyRipple(q);this._eventCleanups.forEach(q=>q())}configureRipple(K,q){K.setAttribute(d,this._globalRippleOptions?.namespace??""),(q.className||!K.hasAttribute(w))&&K.setAttribute(w,q.className||""),q.centered&&K.setAttribute(m,""),q.disabled&&K.setAttribute(P,"")}setDisabled(K,q){const G=this._hosts.get(K);G?(G.target.rippleDisabled=q,!q&&!G.hasSetUpEvents&&(G.hasSetUpEvents=!0,G.renderer.setupTriggerEvents(K))):q?K.setAttribute(P,""):K.removeAttribute(P)}_onInteraction=K=>{const q=(0,S.Fb)(K);if(q instanceof HTMLElement){const G=q.closest(`[${d}="${this._globalRippleOptions?.namespace??""}"]`);G&&this._createRipple(G)}};_createRipple(K){if(!this._document||this._hosts.has(K))return;K.querySelector(".mat-ripple")?.remove();const q=this._document.createElement("span");q.classList.add("mat-ripple",K.getAttribute(w)),K.append(q);const G=this._globalRippleOptions,Q=this._animationsDisabled?0:G?.animation?.enterDuration??e.EX.enterDuration,$=this._animationsDisabled?0:G?.animation?.exitDuration??e.EX.exitDuration,ae={rippleDisabled:this._animationsDisabled||G?.disabled||K.hasAttribute(P),rippleConfig:{centered:K.hasAttribute(m),terminateOnPointerUp:G?.terminateOnPointerUp,animation:{enterDuration:Q,exitDuration:$}}},ue=new e.ug(ae,this._ngZone,q,this._platform,this._injector),oe=!ae.rippleDisabled;oe&&ue.setupTriggerEvents(K),this._hosts.set(K,{target:ae,renderer:ue,hasSetUpEvents:oe}),K.removeAttribute(d)}destroyRipple(K){const q=this._hosts.get(K);q&&(q.renderer._removeTriggerEvents(),this._hosts.delete(K))}static \u0275fac=function(q){return new(q||j)};static \u0275prov=i.jDH({token:j,factory:j.\u0275fac,providedIn:"root"})}return j})()},11514:(Ae,ee,l)=>{"use strict";l.d(ee,{FX:()=>G,If:()=>i,K2:()=>e,Os:()=>c,P:()=>j,PZ:()=>q,hZ:()=>p,i0:()=>S,i7:()=>d,iF:()=>T,kY:()=>w,kp:()=>t,sf:()=>K,wk:()=>g});var i=function(Q){return Q[Q.State=0]="State",Q[Q.Transition=1]="Transition",Q[Q.Sequence=2]="Sequence",Q[Q.Group=3]="Group",Q[Q.Animate=4]="Animate",Q[Q.Keyframes=5]="Keyframes",Q[Q.Style=6]="Style",Q[Q.Trigger=7]="Trigger",Q[Q.Reference=8]="Reference",Q[Q.AnimateChild=9]="AnimateChild",Q[Q.AnimateRef=10]="AnimateRef",Q[Q.Query=11]="Query",Q[Q.Stagger=12]="Stagger",Q}(i||{});const t="*";function p(Q,$){return{type:i.Trigger,name:Q,definitions:$,options:{}}}function S(Q,$=null){return{type:i.Animate,styles:$,timings:Q}}function c(Q,$=null){return{type:i.Group,steps:Q,options:$}}function e(Q,$=null){return{type:i.Sequence,steps:Q,options:$}}function T(Q){return{type:i.Style,styles:Q,offset:null}}function g(Q,$,ae){return{type:i.State,name:Q,styles:$,options:ae}}function d(Q){return{type:i.Keyframes,steps:Q}}function w(Q,$,ae=null){return{type:i.Transition,expr:Q,animation:$,options:ae}}function j(Q,$,ae=null){return{type:i.Query,selector:Q,animation:$,options:ae}}class K{_onDoneFns=[];_onStartFns=[];_onDestroyFns=[];_originalOnDoneFns=[];_originalOnStartFns=[];_started=!1;_destroyed=!1;_finished=!1;_position=0;parentPlayer=null;totalTime;constructor($=0,ae=0){this.totalTime=$+ae}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach($=>$()),this._onDoneFns=[])}onStart($){this._originalOnStartFns.push($),this._onStartFns.push($)}onDone($){this._originalOnDoneFns.push($),this._onDoneFns.push($)}onDestroy($){this._onDestroyFns.push($)}hasStarted(){return this._started}init(){}play(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}triggerMicrotask(){queueMicrotask(()=>this._onFinish())}_onStart(){this._onStartFns.forEach($=>$()),this._onStartFns=[]}pause(){}restart(){}finish(){this._onFinish()}destroy(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach($=>$()),this._onDestroyFns=[])}reset(){this._started=!1,this._finished=!1,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}setPosition($){this._position=this.totalTime?$*this.totalTime:1}getPosition(){return this.totalTime?this._position/this.totalTime:1}triggerCallback($){const ae="start"==$?this._onStartFns:this._onDoneFns;ae.forEach(ue=>ue()),ae.length=0}}class q{_onDoneFns=[];_onStartFns=[];_finished=!1;_started=!1;_destroyed=!1;_onDestroyFns=[];parentPlayer=null;totalTime=0;players;constructor($){this.players=$;let ae=0,ue=0,oe=0;const he=this.players.length;0==he?queueMicrotask(()=>this._onFinish()):this.players.forEach(me=>{me.onDone(()=>{++ae==he&&this._onFinish()}),me.onDestroy(()=>{++ue==he&&this._onDestroy()}),me.onStart(()=>{++oe==he&&this._onStart()})}),this.totalTime=this.players.reduce((me,Te)=>Math.max(me,Te.totalTime),0)}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach($=>$()),this._onDoneFns=[])}init(){this.players.forEach($=>$.init())}onStart($){this._onStartFns.push($)}_onStart(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach($=>$()),this._onStartFns=[])}onDone($){this._onDoneFns.push($)}onDestroy($){this._onDestroyFns.push($)}hasStarted(){return this._started}play(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach($=>$.play())}pause(){this.players.forEach($=>$.pause())}restart(){this.players.forEach($=>$.restart())}finish(){this._onFinish(),this.players.forEach($=>$.finish())}destroy(){this._onDestroy()}_onDestroy(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach($=>$.destroy()),this._onDestroyFns.forEach($=>$()),this._onDestroyFns=[])}reset(){this.players.forEach($=>$.reset()),this._destroyed=!1,this._finished=!1,this._started=!1}setPosition($){const ae=$*this.totalTime;this.players.forEach(ue=>{const oe=ue.totalTime?Math.min(1,ae/ue.totalTime):1;ue.setPosition(oe)})}getPosition(){const $=this.players.reduce((ae,ue)=>null===ae||ue.totalTime>ae.totalTime?ue:ae,null);return null!=$?$.getPosition():0}beforeDestroy(){this.players.forEach($=>{$.beforeDestroy&&$.beforeDestroy()})}triggerCallback($){const ae="start"==$?this._onStartFns:this._onDoneFns;ae.forEach(ue=>ue()),ae.length=0}}const G="!"},11747:(Ae,ee,l)=>{"use strict";l.d(ee,{En:()=>re,Vm:()=>Qt,EH:()=>o,gp:()=>pe});var i=l(57786),t=l(71985),p=l(21413),S=l(73557),c=l(983),e=l(7673),T=l(18810),g=l(98071);class w{constructor(te,ce,se){this.kind=te,this.value=ce,this.error=se,this.hasValue="N"===te}observe(te){return m(this,te)}do(te,ce,se){const{kind:ke,value:Ue,error:Ne}=this;return"N"===ke?te?.(Ue):"E"===ke?ce?.(Ne):se?.()}accept(te,ce,se){var ke;return(0,g.T)(null===(ke=te)||void 0===ke?void 0:ke.next)?this.observe(te):this.do(te,ce,se)}toObservable(){const{kind:te,value:ce,error:se}=this,ke="N"===te?(0,e.of)(ce):"E"===te?(0,T.$)(()=>se):"C"===te?c.w:0;if(!ke)throw new TypeError(`Unexpected notification kind ${te}`);return ke}static createNext(te){return new w("N",te)}static createError(te){return new w("E",void 0,te)}static createComplete(){return w.completeNotification}}function m(le,te){var ce,se,ke;const{kind:Ue,value:Ne,error:Kt}=le;if("string"!=typeof Ue)throw new TypeError('Invalid notification, missing "kind"');"N"===Ue?null===(ce=te.next)||void 0===ce||ce.call(te,Ne):"E"===Ue?null===(se=te.error)||void 0===se||se.call(te,Kt):null===(ke=te.complete)||void 0===ke||ke.call(te)}w.completeNotification=new w("C");var P=l(39974),M=l(54360),U=l(96354),K=l(99437),q=l(5964),G=l(58750);function Q(le,te,ce,se){return(0,P.N)((ke,Ue)=>{let Ne;te&&"function"!=typeof te?({duration:ce,element:Ne,connector:se}=te):Ne=te;const Kt=new Map,yt=Et=>{Kt.forEach(Et),Et(Ue)},Vt=Et=>yt(Jt=>Jt.error(Et));let Zt=0,ti=!1;const Ye=new M.H(Ue,Et=>{try{const Jt=le(Et);let qe=Kt.get(Jt);if(!qe){Kt.set(Jt,qe=se?se():new p.B);const $e=function Nt(Et,Jt){const qe=new t.c($e=>{Zt++;const tt=Jt.subscribe($e);return()=>{tt.unsubscribe(),0===--Zt&&ti&&Ye.unsubscribe()}});return qe.key=Et,qe}(Jt,qe);if(Ue.next($e),ce){const tt=(0,M._)(qe,()=>{qe.complete(),tt?.unsubscribe()},void 0,void 0,()=>Kt.delete(Jt));Ye.add((0,G.Tg)(ce($e)).subscribe(tt))}}qe.next(Ne?Ne(Et):Et)}catch(Jt){Vt(Jt)}},()=>yt(Et=>Et.complete()),Vt,()=>Kt.clear(),()=>(ti=!0,0===Zt));ke.subscribe(Ye)})}var $=l(31397);function ae(le,te){return te?ce=>ce.pipe(ae((se,ke)=>(0,G.Tg)(le(se,ke)).pipe((0,U.T)((Ue,Ne)=>te(se,Ue,ke,Ne))))):(0,P.N)((ce,se)=>{let ke=0,Ue=null,Ne=!1;ce.subscribe((0,M._)(se,Kt=>{Ue||(Ue=(0,M._)(se,void 0,()=>{Ue=null,Ne&&se.complete()}),(0,G.Tg)(le(Kt,ke++)).subscribe(Ue))},()=>{Ne=!0,!Ue&&se.complete()}))})}var oe=l(96697),he=l(2615),me=l(73664),Te=l(59640);const D={dispatch:!0,functional:!1,useEffectsErrorHandler:!0},n="__@ngrx/effects_create__";function o(le,te={}){const ce=te.functional?le:le(),se={...D,...te};return Object.defineProperty(ce,n,{value:se}),ce}function A(le){return Object.getPrototypeOf(le)}function x(le){return"function"==typeof le}function r(le){return le.filter(x)}function W(le,te,ce){const se=A(le),Ue=se&&"Object"!==se.constructor.name?se.constructor.name:null,Ne=function b(le){return function f(le){return Object.getOwnPropertyNames(le).filter(se=>!(!le[se]||!le[se].hasOwnProperty(n))&&le[se][n].hasOwnProperty("dispatch")).map(se=>({propertyName:se,...le[se][n]}))}(le)}(le).map(({propertyName:Kt,dispatch:yt,useEffectsErrorHandler:Vt})=>{const Zt="function"==typeof le[Kt]?le[Kt]():le[Kt],ti=Vt?ce(Zt,te):Zt;return!1===yt?ti.pipe((0,S.w)()):ti.pipe(function j(){return(0,P.N)((le,te)=>{le.subscribe((0,M._)(te,ce=>{te.next(w.createNext(ce))},()=>{te.next(w.createComplete()),te.complete()},ce=>{te.next(w.createError(ce)),te.complete()}))})}()).pipe((0,U.T)(Nt=>({effect:le[Kt],notification:Nt,propertyName:Kt,sourceName:Ue,sourceInstance:le})))});return(0,i.h)(...Ne)}function B(le,te,ce=10){return le.pipe((0,K.W)(se=>(te&&te.handleError(se),ce<=1?le:B(le,te,ce-1))))}let re=(()=>{var le;class te extends t.c{constructor(se){super(),se&&(this.source=se)}lift(se){const ke=new te;return ke.source=this,ke.operator=se,ke}static#e=le=()=>(this.\u0275fac=function(ke){return new(ke||te)(he.KVO(Te.sA))},this.\u0275prov=he.jDH({token:te,factory:te.\u0275fac,providedIn:"root"}))}return le(),te})();function pe(...le){return(0,q.p)(te=>le.some(ce=>"string"==typeof ce?ce===te.type:ce.type===te.type))}const be=new he.nKC("@ngrx/effects Internal Root Guard"),Be=new he.nKC("@ngrx/effects User Provided Effects"),_e=new he.nKC("@ngrx/effects Internal Root Effects"),ye=new he.nKC("@ngrx/effects Internal Root Effects Instances"),Le=new he.nKC("@ngrx/effects Internal Feature Effects"),Ke=new he.nKC("@ngrx/effects Internal Feature Effects Instance Groups"),ge=new he.nKC("@ngrx/effects Effects Error Handler",{providedIn:"root",factory:()=>B}),ve="@ngrx/effects/init";function Ce(le){return ze(le,"ngrxOnInitEffects")}function ze(le,te){return le&&te in le&&"function"==typeof le[te]}(0,Te.VP)(ve);let Z=(()=>{var le;class te extends p.B{constructor(se,ke){super(),this.errorHandler=se,this.effectsErrorHandler=ke}addEffects(se){this.next(se)}toActions(){return this.pipe(Q(se=>function k(le){return!!le.constructor&&"Object"!==le.constructor.name&&"Function"!==le.constructor.name}(se)?A(se):se),(0,$.Z)(se=>se.pipe(Q(J))),(0,$.Z)(se=>{const ke=se.pipe(ae(Ne=>function fe(le,te){return ce=>{const se=W(ce,le,te);return function Ht(le){return ze(le,"ngrxOnRunEffects")}(ce)?ce.ngrxOnRunEffects(se):se}}(this.errorHandler,this.effectsErrorHandler)(Ne)),(0,U.T)(Ne=>(function Ee(le,te){if("N"===le.notification.kind){const ce=le.notification.value;!function dt(le){return"function"!=typeof le&&le&&le.type&&"string"==typeof le.type}(ce)&&te.handleError(new Error(`Effect ${function nt({propertyName:le,sourceInstance:te,sourceName:ce}){const se="function"==typeof te[le];return ce?`"${ce}.${String(le)}${se?"()":""}"`:`"${String(le)}()"`}(le)} dispatched an invalid action: ${function Ct(le){try{return JSON.stringify(le)}catch{return le}}(ce)}`))}}(Ne,this.errorHandler),Ne.notification)),(0,q.p)(Ne=>"N"===Ne.kind&&null!=Ne.value),function ue(){return(0,P.N)((le,te)=>{le.subscribe((0,M._)(te,ce=>m(ce,te)))})}()),Ue=se.pipe((0,oe.s)(1),(0,q.p)(Ce),(0,U.T)(Ne=>Ne.ngrxOnInitEffects()));return(0,i.h)(ke,Ue)}))}static#e=le=()=>(this.\u0275fac=function(ke){return new(ke||te)(he.KVO(he.zcH),he.KVO(ge))},this.\u0275prov=he.jDH({token:te,factory:te.\u0275fac,providedIn:"root"}))}return le(),te})();function J(le){return function lt(le){return ze(le,"ngrxOnIdentifyEffects")}(le)?le.ngrxOnIdentifyEffects():""}let Ie=(()=>{var le;class te{get isStarted(){return!!this.effectsSubscription}constructor(se,ke){this.effectSources=se,this.store=ke,this.effectsSubscription=null}start(){this.effectsSubscription||(this.effectsSubscription=this.effectSources.toActions().subscribe(this.store))}ngOnDestroy(){this.effectsSubscription&&(this.effectsSubscription.unsubscribe(),this.effectsSubscription=null)}static#e=le=()=>(this.\u0275fac=function(ke){return new(ke||te)(he.KVO(Z),he.KVO(Te.il))},this.\u0275prov=he.jDH({token:te,factory:te.\u0275fac,providedIn:"root"}))}return le(),te})(),ht=(()=>{var le;class te{constructor(se,ke,Ue,Ne,Kt,yt,Vt){this.sources=se,ke.start();for(const Zt of Ne)se.addEffects(Zt);Ue.dispatch({type:ve})}addEffects(se){this.sources.addEffects(se)}static#e=le=()=>(this.\u0275fac=function(ke){return new(ke||te)(he.KVO(Z),he.KVO(Ie),he.KVO(Te.il),he.KVO(ye),he.KVO(Te.wc,8),he.KVO(Te.ae,8),he.KVO(be,8))},this.\u0275mod=me.$C({type:te}),this.\u0275inj=he.G2t({}))}return le(),te})(),li=(()=>{var le;class te{constructor(se,ke,Ue,Ne){const Kt=ke.flat();for(const yt of Kt)se.addEffects(yt)}static#e=le=()=>(this.\u0275fac=function(ke){return new(ke||te)(he.KVO(ht),he.KVO(Ke),he.KVO(Te.wc,8),he.KVO(Te.ae,8))},this.\u0275mod=me.$C({type:te}),this.\u0275inj=he.G2t({}))}return le(),te})(),Qt=(()=>{var le;class te{static forFeature(...se){const ke=se.flat(),Ue=r(ke);return{ngModule:li,providers:[Ue,{provide:Le,multi:!0,useValue:ke},{provide:Be,multi:!0,useValue:[]},{provide:Ke,multi:!0,useFactory:di,deps:[Le,Be]}]}}static forRoot(...se){const ke=se.flat(),Ue=r(ke);return{ngModule:ht,providers:[Ue,{provide:_e,useValue:[ke]},{provide:be,useFactory:kt},{provide:Be,multi:!0,useValue:[]},{provide:ye,useFactory:di,deps:[_e,Be]}]}}static#e=le=()=>(this.\u0275fac=function(ke){return new(ke||te)},this.\u0275mod=me.$C({type:te}),this.\u0275inj=he.G2t({}))}return le(),te})();function di(le,te){const ce=[];for(const se of le)ce.push(...se);for(const se of te)ce.push(...se);return ce.map(se=>function _(le){return le instanceof he.nKC||x(le)}(se)?(0,he.WQX)(se):se)}function kt(){const le=(0,he.WQX)(Ie,{optional:!0,skipSelf:!0}),te=(0,he.WQX)(_e,{self:!0});if((1!==te.length||0!==te[0].length)&&le)throw new TypeError("EffectsModule.forRoot() called twice. Feature modules should use EffectsModule.forFeature() instead.");return"guarded"}},11771:(Ae,ee,l)=>{"use strict";l.d(ee,{Dz:()=>U,Fl:()=>he,Gd:()=>c,I1:()=>P,IK:()=>Q,Jh:()=>e,My:()=>S,NU:()=>G,Np:()=>ue,OP:()=>j,Qi:()=>$,R$:()=>m,T$:()=>ae,Tn:()=>q,UI:()=>T,iD:()=>f,mt:()=>g,oz:()=>n,rc:()=>oe,ri:()=>me,t2:()=>b,uP:()=>M,xO:()=>w,xw:()=>Te,y0:()=>d});var i=l(59640),t=l(4416);(0,i.VP)(t.aU.VOID);const S=(0,i.VP)(t.aU.SET_API_URL_ECL,(0,i.xk)()),c=(0,i.VP)(t.aU.UPDATE_API_CALL_STATUS_ROOT,(0,i.xk)()),e=(0,i.VP)(t.aU.CLOSE_ALL_DIALOGS),T=(0,i.VP)(t.aU.OPEN_SNACK_BAR,(0,i.xk)()),g=(0,i.VP)(t.aU.OPEN_SPINNER,(0,i.xk)()),d=(0,i.VP)(t.aU.CLOSE_SPINNER,(0,i.xk)()),w=(0,i.VP)(t.aU.OPEN_ALERT,(0,i.xk)()),m=(0,i.VP)(t.aU.CLOSE_ALERT,(0,i.xk)()),P=(0,i.VP)(t.aU.OPEN_CONFIRMATION,(0,i.xk)()),M=(0,i.VP)(t.aU.CLOSE_CONFIRMATION,(0,i.xk)()),j=(0,i.VP)(t.aU.SHOW_PUBKEY),U=(0,i.VP)(t.aU.FETCH_CONFIG,(0,i.xk)()),q=((0,i.VP)(t.aU.SHOW_CONFIG,(0,i.xk)()),(0,i.VP)(t.aU.RESET_ROOT_STORE,(0,i.xk)())),G=(0,i.VP)(t.aU.FETCH_APPLICATION_SETTINGS),Q=(0,i.VP)(t.aU.SET_APPLICATION_SETTINGS,(0,i.xk)()),$=(0,i.VP)(t.aU.SET_SELECTED_NODE,(0,i.xk)()),ae=(0,i.VP)(t.aU.UPDATE_NODE_SETTINGS,(0,i.xk)()),ue=(0,i.VP)(t.aU.SET_SELECTED_NODE_SETTINGS,(0,i.xk)()),oe=(0,i.VP)(t.aU.UPDATE_APPLICATION_SETTINGS,(0,i.xk)()),he=(0,i.VP)(t.aU.SET_NODE_DATA,(0,i.xk)()),me=(0,i.VP)(t.aU.LOGOUT,(0,i.xk)()),Te=(0,i.VP)(t.aU.RESET_PASSWORD,(0,i.xk)()),n=((0,i.VP)(t.aU.RESET_PASSWORD_RES,(0,i.xk)()),(0,i.VP)(t.aU.IS_AUTHORIZED,(0,i.xk)())),f=((0,i.VP)(t.aU.IS_AUTHORIZED_RES,(0,i.xk)()),(0,i.VP)(t.aU.LOGIN,(0,i.xk)())),b=((0,i.VP)(t.aU.VERIFY_TWO_FA,(0,i.xk)()),(0,i.VP)(t.aU.FETCH_FILE,(0,i.xk)()));(0,i.VP)(t.aU.SHOW_FILE,(0,i.xk)())},12375:(Ae,ee,l)=>{var i=l(27054).Buffer;function t(g){i.isBuffer(g)||(g=i.from(g));for(var d=g.length/4|0,w=new Array(d),m=0;m>>24]^j[G>>>16&255]^U[Q>>>8&255]^K[255&$]^d[me++],ue=M[G>>>24]^j[Q>>>16&255]^U[$>>>8&255]^K[255&q]^d[me++],oe=M[Q>>>24]^j[$>>>16&255]^U[q>>>8&255]^K[255&G]^d[me++],he=M[$>>>24]^j[q>>>16&255]^U[G>>>8&255]^K[255&Q]^d[me++],q=ae,G=ue,Q=oe,$=he;return ae=(m[q>>>24]<<24|m[G>>>16&255]<<16|m[Q>>>8&255]<<8|m[255&$])^d[me++],ue=(m[G>>>24]<<24|m[Q>>>16&255]<<16|m[$>>>8&255]<<8|m[255&q])^d[me++],oe=(m[Q>>>24]<<24|m[$>>>16&255]<<16|m[q>>>8&255]<<8|m[255&G])^d[me++],he=(m[$>>>24]<<24|m[q>>>16&255]<<16|m[G>>>8&255]<<8|m[255&Q])^d[me++],[ae>>>=0,ue>>>=0,oe>>>=0,he>>>=0]}var c=[0,1,2,4,8,16,32,64,128,27,54],e=function(){for(var g=new Array(256),d=0;d<256;d++)g[d]=d<128?d<<1:d<<1^283;for(var w=[],m=[],P=[[],[],[],[]],M=[[],[],[],[]],j=0,U=0,K=0;K<256;++K){var q=U^U<<1^U<<2^U<<3^U<<4;w[j]=q=q>>>8^255&q^99,m[q]=j;var G=g[j],Q=g[G],$=g[Q],ae=257*g[q]^16843008*q;P[0][j]=ae<<24|ae>>>8,P[1][j]=ae<<16|ae>>>16,P[2][j]=ae<<8|ae>>>24,P[3][j]=ae,M[0][q]=(ae=16843009*$^65537*Q^257*G^16843008*j)<<24|ae>>>8,M[1][q]=ae<<16|ae>>>16,M[2][q]=ae<<8|ae>>>24,M[3][q]=ae,0===j?j=U=1:(j=G^g[g[g[$^G]]],U^=g[g[U]])}return{SBOX:w,INV_SBOX:m,SUB_MIX:P,INV_SUB_MIX:M}}();function T(g){this._key=t(g),this._reset()}T.blockSize=16,T.keySize=32,T.prototype.blockSize=T.blockSize,T.prototype.keySize=T.keySize,T.prototype._reset=function(){for(var g=this._key,d=g.length,w=d+6,m=4*(w+1),P=[],M=0;M>>24)>>>24]<<24|e.SBOX[j>>>16&255]<<16|e.SBOX[j>>>8&255]<<8|e.SBOX[255&j],j^=c[M/d|0]<<24):d>6&&M%d===4&&(j=e.SBOX[j>>>24]<<24|e.SBOX[j>>>16&255]<<16|e.SBOX[j>>>8&255]<<8|e.SBOX[255&j]),P[M]=P[M-d]^j}for(var U=[],K=0;K>>24]]^e.INV_SUB_MIX[1][e.SBOX[G>>>16&255]]^e.INV_SUB_MIX[2][e.SBOX[G>>>8&255]]^e.INV_SUB_MIX[3][e.SBOX[255&G]]}this._nRounds=w,this._keySchedule=P,this._invKeySchedule=U},T.prototype.encryptBlockRaw=function(g){return S(g=t(g),this._keySchedule,e.SUB_MIX,e.SBOX,this._nRounds)},T.prototype.encryptBlock=function(g){var d=this.encryptBlockRaw(g),w=i.allocUnsafe(16);return w.writeUInt32BE(d[0],0),w.writeUInt32BE(d[1],4),w.writeUInt32BE(d[2],8),w.writeUInt32BE(d[3],12),w},T.prototype.decryptBlock=function(g){var d=(g=t(g))[1];g[1]=g[3],g[3]=d;var w=S(g,this._invKeySchedule,e.INV_SUB_MIX,e.INV_SBOX,this._nRounds),m=i.allocUnsafe(16);return m.writeUInt32BE(w[0],0),m.writeUInt32BE(w[3],4),m.writeUInt32BE(w[2],8),m.writeUInt32BE(w[1],12),m},T.prototype.scrub=function(){p(this._keySchedule),p(this._invKeySchedule),p(this._key)},Ae.exports.AES=T},12462:(Ae,ee,l)=>{"use strict";l.d(ee,{f:()=>m});var i=l(51585),t=l(73664),p=l(98570),S=l(72200),c=l(88834),e=l(25596),T=l(71997),g=l(52920),d=l(89587);function w(P,M){if(1&P&&(t.j41(0,"p",14),t.EFF(1),t.k0s()),2&P){const j=t.XpG();t.R7$(),t.JRh(j.data.titleMessage)}}let m=(()=>{var P;class M{constructor(U,K,q){this.dialogRef=U,this.data=K,this.logger=q,this.errorMessage=""}ngOnInit(){this.errorMessage=this.data.message&&this.data.message.message&&"object"==typeof this.data.message.message?JSON.stringify(this.data.message.message):this.data.message&&this.data.message.message?this.data.message.message:"",!this.data.message&&!this.data.titleMessage&&!this.data.message&&(this.data.titleMessage="Please Check Server Connection"),this.logger.info(this.data.message)}onClose(){this.dialogRef.close(!1)}static#e=P=()=>(this.\u0275fac=function(K){return new(K||M)(t.rXU(i.CP),t.rXU(i.Vh),t.rXU(p.gP))},this.\u0275cmp=t.VBU({type:M,selectors:[["rtl-error-message"]],standalone:!1,decls:29,vars:6,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large","error-alert-block"],["fxLayout","column"],["fxLayoutAlign","start center","class","pb-1",4,"ngIf"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],[1,"word-break"],["fxLayout","row","fxLayoutAlign","end center"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close"],["fxLayoutAlign","start center",1,"pb-1"]],template:function(K,q){1&K&&(t.j41(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t.EFF(5),t.k0s()(),t.j41(6,"button",5),t.bIt("click",function(){return q.onClose()}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",6)(9,"div",7),t.DNE(10,w,2,1,"p",8),t.j41(11,"h4",9),t.EFF(12,"Error Code"),t.k0s(),t.j41(13,"span"),t.EFF(14),t.k0s(),t.nrm(15,"mat-divider",10),t.j41(16,"h4",9),t.EFF(17,"Error Message"),t.k0s(),t.j41(18,"span",11),t.EFF(19),t.k0s(),t.nrm(20,"mat-divider",10),t.j41(21,"h4",9),t.EFF(22,"API URL"),t.k0s(),t.j41(23,"span",11),t.EFF(24),t.k0s(),t.nrm(25,"mat-divider",10),t.j41(26,"div",12)(27,"button",13),t.EFF(28,"OK"),t.k0s()()()()()()),2&K&&(t.R7$(5),t.JRh(q.data.alertTitle||"ERROR"),t.R7$(5),t.Y8G("ngIf",q.data.titleMessage),t.R7$(4),t.JRh(q.data.message.code),t.R7$(5),t.JRh(q.errorMessage),t.R7$(5),t.JRh(q.data.message.URL),t.R7$(3),t.Y8G("mat-dialog-close",!1))},dependencies:[S.bT,i.tx,c.$z,e.m2,e.MM,T.q,g.DJ,g.sA,g.UI,d.N],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]}))}return P(),M})()},12496:(Ae,ee,l)=>{"use strict";l.d(ee,{$E:()=>ue,EX:()=>j,r6:()=>oe,ug:()=>$});var i=l(39842),t=l(83300),p=l(44522),S=l(73664),c=l(2615),e=l(95735),T=l(67847),g=l(88968),d=l(31804),w=function(he){return he[he.FADING_IN=0]="FADING_IN",he[he.VISIBLE=1]="VISIBLE",he[he.FADING_OUT=2]="FADING_OUT",he[he.HIDDEN=3]="HIDDEN",he}(w||{});class m{_renderer;element;config;_animationForciblyDisabledThroughCss;state=w.HIDDEN;constructor(me,Te,D,n=!1){this._renderer=me,this.element=Te,this.config=D,this._animationForciblyDisabledThroughCss=n}fadeOut(){this._renderer.fadeOutRipple(this)}}const P=(0,t.B)({passive:!0,capture:!0});class M{_events=new Map;addHandler(me,Te,D,n){const o=this._events.get(Te);if(o){const f=o.get(D);f?f.add(n):o.set(D,new Set([n]))}else this._events.set(Te,new Map([[D,new Set([n])]])),me.runOutsideAngular(()=>{document.addEventListener(Te,this._delegateEventHandler,P)})}removeHandler(me,Te,D){const n=this._events.get(me);if(!n)return;const o=n.get(Te);o&&(o.delete(D),0===o.size&&n.delete(Te),0===n.size&&(this._events.delete(me),document.removeEventListener(me,this._delegateEventHandler,P)))}_delegateEventHandler=me=>{const Te=(0,p.Fb)(me);Te&&this._events.get(me.type)?.forEach((D,n)=>{(n===Te||n.contains(Te))&&D.forEach(o=>o.handleEvent(me))})}}const j={enterDuration:225,exitDuration:150},K=(0,t.B)({passive:!0,capture:!0}),q=["mousedown","touchstart"],G=["mouseup","mouseleave","touchend","touchcancel"];let Q=(()=>{class he{static \u0275fac=function(D){return new(D||he)};static \u0275cmp=S.VBU({type:he,selectors:[["ng-component"]],hostAttrs:["mat-ripple-style-loader",""],decls:0,vars:0,template:function(D,n){},styles:[".mat-ripple{overflow:hidden;position:relative}.mat-ripple:not(:empty){transform:translateZ(0)}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0, 0, 0.2, 1);transform:scale3d(0, 0, 0);background-color:var(--mat-ripple-color, color-mix(in srgb, var(--mat-sys-on-surface) 10%, transparent))}@media(forced-colors: active){.mat-ripple-element{display:none}}.cdk-drag-preview .mat-ripple-element,.cdk-drag-placeholder .mat-ripple-element{display:none}\n"],encapsulation:2,changeDetection:0})}return he})();class ${_target;_ngZone;_platform;_containerElement;_triggerElement;_isPointerDown=!1;_activeRipples=new Map;_mostRecentTransientRipple;_lastTouchStartEvent;_pointerUpEventsRegistered=!1;_containerRect;static _eventManager=new M;constructor(me,Te,D,n,o){this._target=me,this._ngZone=Te,this._platform=n,n.isBrowser&&(this._containerElement=(0,T.i8)(D)),o&&o.get(g.l).load(Q)}fadeInRipple(me,Te,D={}){const n=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),o={...j,...D.animation};D.centered&&(me=n.left+n.width/2,Te=n.top+n.height/2);const f=D.radius||function ae(he,me,Te){const D=Math.max(Math.abs(he-Te.left),Math.abs(he-Te.right)),n=Math.max(Math.abs(me-Te.top),Math.abs(me-Te.bottom));return Math.sqrt(D*D+n*n)}(me,Te,n),h=me-n.left,b=Te-n.top,A=o.enterDuration,k=document.createElement("div");k.classList.add("mat-ripple-element"),k.style.left=h-f+"px",k.style.top=b-f+"px",k.style.height=2*f+"px",k.style.width=2*f+"px",null!=D.color&&(k.style.backgroundColor=D.color),k.style.transitionDuration=`${A}ms`,this._containerElement.appendChild(k);const x=window.getComputedStyle(k),_=x.transitionDuration,W="none"===x.transitionProperty||"0s"===_||"0s, 0s"===_||0===n.width&&0===n.height,I=new m(this,k,D,W);k.style.transform="scale3d(1, 1, 1)",I.state=w.FADING_IN,D.persistent||(this._mostRecentTransientRipple=I);let B=null;return!W&&(A||o.exitDuration)&&this._ngZone.runOutsideAngular(()=>{const re=()=>{B&&(B.fallbackTimer=null),clearTimeout(be),this._finishRippleTransition(I)},pe=()=>this._destroyRipple(I),be=setTimeout(pe,A+100);k.addEventListener("transitionend",re),k.addEventListener("transitioncancel",pe),B={onTransitionEnd:re,onTransitionCancel:pe,fallbackTimer:be}}),this._activeRipples.set(I,B),(W||!A)&&this._finishRippleTransition(I),I}fadeOutRipple(me){if(me.state===w.FADING_OUT||me.state===w.HIDDEN)return;const Te=me.element,D={...j,...me.config.animation};Te.style.transitionDuration=`${D.exitDuration}ms`,Te.style.opacity="0",me.state=w.FADING_OUT,(me._animationForciblyDisabledThroughCss||!D.exitDuration)&&this._finishRippleTransition(me)}fadeOutAll(){this._getActiveRipples().forEach(me=>me.fadeOut())}fadeOutAllNonPersistent(){this._getActiveRipples().forEach(me=>{me.config.persistent||me.fadeOut()})}setupTriggerEvents(me){const Te=(0,T.i8)(me);!this._platform.isBrowser||!Te||Te===this._triggerElement||(this._removeTriggerEvents(),this._triggerElement=Te,q.forEach(D=>{$._eventManager.addHandler(this._ngZone,D,Te,this)}))}handleEvent(me){"mousedown"===me.type?this._onMousedown(me):"touchstart"===me.type?this._onTouchStart(me):this._onPointerUp(),this._pointerUpEventsRegistered||(this._ngZone.runOutsideAngular(()=>{G.forEach(Te=>{this._triggerElement.addEventListener(Te,this,K)})}),this._pointerUpEventsRegistered=!0)}_finishRippleTransition(me){me.state===w.FADING_IN?this._startFadeOutTransition(me):me.state===w.FADING_OUT&&this._destroyRipple(me)}_startFadeOutTransition(me){const Te=me===this._mostRecentTransientRipple,{persistent:D}=me.config;me.state=w.VISIBLE,!D&&(!Te||!this._isPointerDown)&&me.fadeOut()}_destroyRipple(me){const Te=this._activeRipples.get(me)??null;this._activeRipples.delete(me),this._activeRipples.size||(this._containerRect=null),me===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),me.state=w.HIDDEN,null!==Te&&(me.element.removeEventListener("transitionend",Te.onTransitionEnd),me.element.removeEventListener("transitioncancel",Te.onTransitionCancel),null!==Te.fallbackTimer&&clearTimeout(Te.fallbackTimer)),me.element.remove()}_onMousedown(me){const Te=(0,e._)(me),D=this._lastTouchStartEvent&&Date.now(){!me.config.persistent&&(me.state===w.VISIBLE||me.config.terminateOnPointerUp&&me.state===w.FADING_IN)&&me.fadeOut()}))}_getActiveRipples(){return Array.from(this._activeRipples.keys())}_removeTriggerEvents(){const me=this._triggerElement;me&&(q.forEach(Te=>$._eventManager.removeHandler(Te,me,this)),this._pointerUpEventsRegistered&&(G.forEach(Te=>me.removeEventListener(Te,this,K)),this._pointerUpEventsRegistered=!1))}}const ue=new c.nKC("mat-ripple-global-options");let oe=(()=>{class he{_elementRef=(0,c.WQX)(S.aKT);_animationsDisabled=(0,d.Rc)();color;unbounded;centered;radius=0;animation;get disabled(){return this._disabled}set disabled(Te){Te&&this.fadeOutAllNonPersistent(),this._disabled=Te,this._setupTriggerEventsIfEnabled()}_disabled=!1;get trigger(){return this._trigger||this._elementRef.nativeElement}set trigger(Te){this._trigger=Te,this._setupTriggerEventsIfEnabled()}_trigger;_rippleRenderer;_globalOptions;_isInitialized=!1;constructor(){const Te=(0,c.WQX)(S.SKi),D=(0,c.WQX)(i.O),n=(0,c.WQX)(ue,{optional:!0}),o=(0,c.WQX)(c.zZn);this._globalOptions=n||{},this._rippleRenderer=new $(this,Te,this._elementRef,D,o)}ngOnInit(){this._isInitialized=!0,this._setupTriggerEventsIfEnabled()}ngOnDestroy(){this._rippleRenderer._removeTriggerEvents()}fadeOutAll(){this._rippleRenderer.fadeOutAll()}fadeOutAllNonPersistent(){this._rippleRenderer.fadeOutAllNonPersistent()}get rippleConfig(){return{centered:this.centered,radius:this.radius,color:this.color,animation:{...this._globalOptions.animation,...this._animationsDisabled?{enterDuration:0,exitDuration:0}:{},...this.animation},terminateOnPointerUp:this._globalOptions.terminateOnPointerUp}}get rippleDisabled(){return this.disabled||!!this._globalOptions.disabled}_setupTriggerEventsIfEnabled(){!this.disabled&&this._isInitialized&&this._rippleRenderer.setupTriggerEvents(this.trigger)}launch(Te,D=0,n){return"number"==typeof Te?this._rippleRenderer.fadeInRipple(Te,D,{...this.rippleConfig,...n}):this._rippleRenderer.fadeInRipple(0,0,{...this.rippleConfig,...Te})}static \u0275fac=function(D){return new(D||he)};static \u0275dir=S.FsC({type:he,selectors:[["","mat-ripple",""],["","matRipple",""]],hostAttrs:[1,"mat-ripple"],hostVars:2,hostBindings:function(D,n){2&D&&S.AVh("mat-ripple-unbounded",n.unbounded)},inputs:{color:[0,"matRippleColor","color"],unbounded:[0,"matRippleUnbounded","unbounded"],centered:[0,"matRippleCentered","centered"],radius:[0,"matRippleRadius","radius"],animation:[0,"matRippleAnimation","animation"],disabled:[0,"matRippleDisabled","disabled"],trigger:[0,"matRippleTrigger","trigger"]},exportAs:["matRipple"]})}return he})()},12593:(Ae,ee,l)=>{"use strict";l.d(ee,{l:()=>d});var i=l(2615),t=l(73664),p=l(59295),S=l(21413),c=l(18359),e=l(59096),T=l(67336),g=l(10438);class d{_items;_activeItemIndex=(0,i.vPA)(-1);_activeItem=(0,i.vPA)(null);_wrap=!1;_typeaheadSubscription=c.yU.EMPTY;_itemChangesSubscription;_vertical=!0;_horizontal;_allowedModifierKeys=[];_homeAndEnd=!1;_pageUpAndDown={enabled:!1,delta:10};_effectRef;_typeahead;_skipPredicateFn=m=>m.disabled;constructor(m,P){this._items=m,m instanceof t.rOR?this._itemChangesSubscription=m.changes.subscribe(M=>this._itemsChanged(M.toArray())):(0,i.Hps)(m)&&(this._effectRef=(0,p.QZ)(()=>this._itemsChanged(m()),{injector:P}))}tabOut=new S.B;change=new S.B;skipPredicate(m){return this._skipPredicateFn=m,this}withWrap(m=!0){return this._wrap=m,this}withVerticalOrientation(m=!0){return this._vertical=m,this}withHorizontalOrientation(m){return this._horizontal=m,this}withAllowedModifierKeys(m){return this._allowedModifierKeys=m,this}withTypeAhead(m=200){this._typeaheadSubscription.unsubscribe();const P=this._getItemsArray();return this._typeahead=new e.i(P,{debounceInterval:"number"==typeof m?m:void 0,skipPredicate:M=>this._skipPredicateFn(M)}),this._typeaheadSubscription=this._typeahead.selectedItem.subscribe(M=>{this.setActiveItem(M)}),this}cancelTypeahead(){return this._typeahead?.reset(),this}withHomeAndEnd(m=!0){return this._homeAndEnd=m,this}withPageUpDown(m=!0,P=10){return this._pageUpAndDown={enabled:m,delta:P},this}setActiveItem(m){const P=this._activeItem();this.updateActiveItem(m),this._activeItem()!==P&&this.change.next(this._activeItemIndex())}onKeydown(m){const P=m.keyCode,j=["altKey","ctrlKey","metaKey","shiftKey"].every(U=>!m[U]||this._allowedModifierKeys.indexOf(U)>-1);switch(P){case g.wn:return void this.tabOut.next();case g.n6:if(this._vertical&&j){this.setNextItemActive();break}return;case g.i7:if(this._vertical&&j){this.setPreviousItemActive();break}return;case g.LE:if(this._horizontal&&j){"rtl"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case g.UQ:if(this._horizontal&&j){"rtl"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;case g.yZ:if(this._homeAndEnd&&j){this.setFirstItemActive();break}return;case g.Kp:if(this._homeAndEnd&&j){this.setLastItemActive();break}return;case g.w_:if(this._pageUpAndDown.enabled&&j){const U=this._activeItemIndex()-this._pageUpAndDown.delta;this._setActiveItemByIndex(U>0?U:0,1);break}return;case g.dB:if(this._pageUpAndDown.enabled&&j){const U=this._activeItemIndex()+this._pageUpAndDown.delta,K=this._getItemsArray().length;this._setActiveItemByIndex(U-1&&M!==this._activeItemIndex()&&(this._activeItemIndex.set(M),this._typeahead?.setCurrentSelectedItemIndex(M))}}}},12601:(Ae,ee,l)=>{Ae.exports=l(44356).EventEmitter},12629:(Ae,ee,l)=>{"use strict";l.d(ee,{An:()=>W,m_:()=>I});var i=l(73664),t=l(2615),p=l(17705),S=l(18359),c=l(96697),e=l(29330),T=l(345),g=l(7673),d=l(18810),w=l(27468),m=l(88141),P=l(96354),M=l(99437),j=l(70980),U=l(97647);let K;function G(B){return function q(){if(void 0===K&&(K=null,typeof window<"u")){const B=window;void 0!==B.trustedTypes&&(K=B.trustedTypes.createPolicy("angular#components",{createHTML:re=>re}))}return K}()?.createHTML(B)||B}function Q(B){return Error(`Unable to find icon with the name "${B}"`)}function ae(B){return Error(`The URL provided to MatIconRegistry was not trusted as a resource URL via Angular's DomSanitizer. Attempted URL was "${B}".`)}function ue(B){return Error(`The literal provided to MatIconRegistry was not trusted as safe HTML by Angular's DomSanitizer. Attempted literal was "${B}".`)}class oe{url;svgText;options;svgElement;constructor(re,pe,be){this.url=re,this.svgText=pe,this.options=be}}let he=(()=>{class B{_httpClient;_sanitizer;_errorHandler;_document;_svgIconConfigs=new Map;_iconSetConfigs=new Map;_cachedIconsByUrl=new Map;_inProgressUrlFetches=new Map;_fontCssClassesByAlias=new Map;_resolvers=[];_defaultFontSetClass=["material-icons","mat-ligature-font"];constructor(pe,be,Be,_e){this._httpClient=pe,this._sanitizer=be,this._errorHandler=_e,this._document=Be}addSvgIcon(pe,be,Be){return this.addSvgIconInNamespace("",pe,be,Be)}addSvgIconLiteral(pe,be,Be){return this.addSvgIconLiteralInNamespace("",pe,be,Be)}addSvgIconInNamespace(pe,be,Be,_e){return this._addSvgIconConfig(pe,be,new oe(Be,null,_e))}addSvgIconResolver(pe){return this._resolvers.push(pe),this}addSvgIconLiteralInNamespace(pe,be,Be,_e){const ye=this._sanitizer.sanitize(i.WPN.HTML,Be);if(!ye)throw ue(Be);const Le=G(ye);return this._addSvgIconConfig(pe,be,new oe("",Le,_e))}addSvgIconSet(pe,be){return this.addSvgIconSetInNamespace("",pe,be)}addSvgIconSetLiteral(pe,be){return this.addSvgIconSetLiteralInNamespace("",pe,be)}addSvgIconSetInNamespace(pe,be,Be){return this._addSvgIconSetConfig(pe,new oe(be,null,Be))}addSvgIconSetLiteralInNamespace(pe,be,Be){const _e=this._sanitizer.sanitize(i.WPN.HTML,be);if(!_e)throw ue(be);const ye=G(_e);return this._addSvgIconSetConfig(pe,new oe("",ye,Be))}registerFontClassAlias(pe,be=pe){return this._fontCssClassesByAlias.set(pe,be),this}classNameForFontAlias(pe){return this._fontCssClassesByAlias.get(pe)||pe}setDefaultFontSetClass(...pe){return this._defaultFontSetClass=pe,this}getDefaultFontSetClass(){return this._defaultFontSetClass}getSvgIconFromUrl(pe){const be=this._sanitizer.sanitize(i.WPN.RESOURCE_URL,pe);if(!be)throw ae(pe);const Be=this._cachedIconsByUrl.get(be);return Be?(0,g.of)(D(Be)):this._loadSvgIconFromConfig(new oe(pe,null)).pipe((0,m.M)(_e=>this._cachedIconsByUrl.set(be,_e)),(0,P.T)(_e=>D(_e)))}getNamedSvgIcon(pe,be=""){const Be=n(be,pe);let _e=this._svgIconConfigs.get(Be);if(_e)return this._getSvgFromConfig(_e);if(_e=this._getIconConfigFromResolvers(be,pe),_e)return this._svgIconConfigs.set(Be,_e),this._getSvgFromConfig(_e);const ye=this._iconSetConfigs.get(be);return ye?this._getSvgFromIconSetConfigs(pe,ye):(0,d.$)(Q(Be))}ngOnDestroy(){this._resolvers=[],this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}_getSvgFromConfig(pe){return pe.svgText?(0,g.of)(D(this._svgElementFromConfig(pe))):this._loadSvgIconFromConfig(pe).pipe((0,P.T)(be=>D(be)))}_getSvgFromIconSetConfigs(pe,be){const Be=this._extractIconWithNameFromAnySet(pe,be);if(Be)return(0,g.of)(Be);const _e=be.filter(ye=>!ye.svgText).map(ye=>this._loadSvgIconSetFromConfig(ye).pipe((0,M.W)(Le=>{const ge=`Loading icon set URL: ${this._sanitizer.sanitize(i.WPN.RESOURCE_URL,ye.url)} failed: ${Le.message}`;return this._errorHandler.handleError(new Error(ge)),(0,g.of)(null)})));return(0,w.p)(_e).pipe((0,P.T)(()=>{const ye=this._extractIconWithNameFromAnySet(pe,be);if(!ye)throw Q(pe);return ye}))}_extractIconWithNameFromAnySet(pe,be){for(let Be=be.length-1;Be>=0;Be--){const _e=be[Be];if(_e.svgText&&_e.svgText.toString().indexOf(pe)>-1){const ye=this._svgElementFromConfig(_e),Le=this._extractSvgIconFromSet(ye,pe,_e.options);if(Le)return Le}}return null}_loadSvgIconFromConfig(pe){return this._fetchIcon(pe).pipe((0,m.M)(be=>pe.svgText=be),(0,P.T)(()=>this._svgElementFromConfig(pe)))}_loadSvgIconSetFromConfig(pe){return pe.svgText?(0,g.of)(null):this._fetchIcon(pe).pipe((0,m.M)(be=>pe.svgText=be))}_extractSvgIconFromSet(pe,be,Be){const _e=pe.querySelector(`[id="${be}"]`);if(!_e)return null;const ye=_e.cloneNode(!0);if(ye.removeAttribute("id"),"svg"===ye.nodeName.toLowerCase())return this._setSvgAttributes(ye,Be);if("symbol"===ye.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(ye),Be);const Le=this._svgElementFromString(G(""));return Le.appendChild(ye),this._setSvgAttributes(Le,Be)}_svgElementFromString(pe){const be=this._document.createElement("DIV");be.innerHTML=pe;const Be=be.querySelector("svg");if(!Be)throw Error(" tag not found");return Be}_toSvgElement(pe){const be=this._svgElementFromString(G("")),Be=pe.attributes;for(let _e=0;_eG(ge)),(0,j.j)(()=>this._inProgressUrlFetches.delete(ye)),(0,U.u)());return this._inProgressUrlFetches.set(ye,Ke),Ke}_addSvgIconConfig(pe,be,Be){return this._svgIconConfigs.set(n(pe,be),Be),this}_addSvgIconSetConfig(pe,be){const Be=this._iconSetConfigs.get(pe);return Be?Be.push(be):this._iconSetConfigs.set(pe,[be]),this}_svgElementFromConfig(pe){if(!pe.svgElement){const be=this._svgElementFromString(pe.svgText);this._setSvgAttributes(be,pe.options),pe.svgElement=be}return pe.svgElement}_getIconConfigFromResolvers(pe,be){for(let Be=0;Bere?re.pathname+re.search:""}}}),x=["clip-path","color-profile","src","cursor","fill","filter","marker","marker-start","marker-mid","marker-end","mask","stroke"],r=x.map(B=>`[${B}]`).join(", "),_=/^url\(['"]?#(.*?)['"]?\)$/;let W=(()=>{class B{_elementRef=(0,t.WQX)(i.aKT);_iconRegistry=(0,t.WQX)(he);_location=(0,t.WQX)(A);_errorHandler=(0,t.WQX)(t.zcH);_defaultColor;get color(){return this._color||this._defaultColor}set color(pe){this._color=pe}_color;inline=!1;get svgIcon(){return this._svgIcon}set svgIcon(pe){pe!==this._svgIcon&&(pe?this._updateSvgIcon(pe):this._svgIcon&&this._clearSvgElement(),this._svgIcon=pe)}_svgIcon;get fontSet(){return this._fontSet}set fontSet(pe){const be=this._cleanupFontValue(pe);be!==this._fontSet&&(this._fontSet=be,this._updateFontIconClasses())}_fontSet;get fontIcon(){return this._fontIcon}set fontIcon(pe){const be=this._cleanupFontValue(pe);be!==this._fontIcon&&(this._fontIcon=be,this._updateFontIconClasses())}_fontIcon;_previousFontSetClass=[];_previousFontIconClass;_svgName;_svgNamespace;_previousPath;_elementsWithExternalReferences;_currentIconFetch=S.yU.EMPTY;constructor(){const pe=(0,t.WQX)(new p.ES_("aria-hidden"),{optional:!0}),be=(0,t.WQX)(b,{optional:!0});be&&(be.color&&(this.color=this._defaultColor=be.color),be.fontSet&&(this.fontSet=be.fontSet)),pe||this._elementRef.nativeElement.setAttribute("aria-hidden","true")}_splitIconName(pe){if(!pe)return["",""];const be=pe.split(":");switch(be.length){case 1:return["",be[0]];case 2:return be;default:throw Error(`Invalid icon name: "${pe}"`)}}ngOnInit(){this._updateFontIconClasses()}ngAfterViewChecked(){const pe=this._elementsWithExternalReferences;if(pe&&pe.size){const be=this._location.getPathname();be!==this._previousPath&&(this._previousPath=be,this._prependPathToReferences(be))}}ngOnDestroy(){this._currentIconFetch.unsubscribe(),this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear()}_usingFontIcon(){return!this.svgIcon}_setSvgElement(pe){this._clearSvgElement();const be=this._location.getPathname();this._previousPath=be,this._cacheChildrenWithExternalReferences(pe),this._prependPathToReferences(be),this._elementRef.nativeElement.appendChild(pe)}_clearSvgElement(){const pe=this._elementRef.nativeElement;let be=pe.childNodes.length;for(this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear();be--;){const Be=pe.childNodes[be];(1!==Be.nodeType||"svg"===Be.nodeName.toLowerCase())&&Be.remove()}}_updateFontIconClasses(){if(!this._usingFontIcon())return;const pe=this._elementRef.nativeElement,be=(this.fontSet?this._iconRegistry.classNameForFontAlias(this.fontSet).split(/ +/):this._iconRegistry.getDefaultFontSetClass()).filter(Be=>Be.length>0);this._previousFontSetClass.forEach(Be=>pe.classList.remove(Be)),be.forEach(Be=>pe.classList.add(Be)),this._previousFontSetClass=be,this.fontIcon!==this._previousFontIconClass&&!be.includes("mat-ligature-font")&&(this._previousFontIconClass&&pe.classList.remove(this._previousFontIconClass),this.fontIcon&&pe.classList.add(this.fontIcon),this._previousFontIconClass=this.fontIcon)}_cleanupFontValue(pe){return"string"==typeof pe?pe.trim().split(" ")[0]:pe}_prependPathToReferences(pe){const be=this._elementsWithExternalReferences;be&&be.forEach((Be,_e)=>{Be.forEach(ye=>{_e.setAttribute(ye.name,`url('${pe}#${ye.value}')`)})})}_cacheChildrenWithExternalReferences(pe){const be=pe.querySelectorAll(r),Be=this._elementsWithExternalReferences=this._elementsWithExternalReferences||new Map;for(let _e=0;_e{const Le=be[_e],Ke=Le.getAttribute(ye),ge=Ke?Ke.match(_):null;if(ge){let ve=Be.get(Le);ve||(ve=[],Be.set(Le,ve)),ve.push({name:ye,value:ge[1]})}})}_updateSvgIcon(pe){if(this._svgNamespace=null,this._svgName=null,this._currentIconFetch.unsubscribe(),pe){const[be,Be]=this._splitIconName(pe);be&&(this._svgNamespace=be),Be&&(this._svgName=Be),this._currentIconFetch=this._iconRegistry.getNamedSvgIcon(Be,be).pipe((0,c.s)(1)).subscribe(_e=>this._setSvgElement(_e),_e=>{this._errorHandler.handleError(new Error(`Error retrieving icon ${be}:${Be}! ${_e.message}`))})}}static \u0275fac=function(be){return new(be||B)};static \u0275cmp=i.VBU({type:B,selectors:[["mat-icon"]],hostAttrs:["role","img",1,"mat-icon","notranslate"],hostVars:10,hostBindings:function(be,Be){2&be&&(i.BMQ("data-mat-icon-type",Be._usingFontIcon()?"font":"svg")("data-mat-icon-name",Be._svgName||Be.fontIcon)("data-mat-icon-namespace",Be._svgNamespace||Be.fontSet)("fontIcon",Be._usingFontIcon()?Be.fontIcon:null),i.HbH(Be.color?"mat-"+Be.color:""),i.AVh("mat-icon-inline",Be.inline)("mat-icon-no-color","primary"!==Be.color&&"accent"!==Be.color&&"warn"!==Be.color))},inputs:{color:"color",inline:[2,"inline","inline",p.L39],svgIcon:"svgIcon",fontSet:"fontSet",fontIcon:"fontIcon"},exportAs:["matIcon"],ngContentSelectors:h,decls:1,vars:0,template:function(be,Be){1&be&&(i.NAR(),i.SdG(0))},styles:["mat-icon,mat-icon.mat-primary,mat-icon.mat-accent,mat-icon.mat-warn{color:var(--mat-icon-color, inherit)}.mat-icon{-webkit-user-select:none;user-select:none;background-repeat:no-repeat;display:inline-block;fill:currentColor;height:24px;width:24px;overflow:hidden}.mat-icon.mat-icon-inline{font-size:inherit;height:inherit;line-height:inherit;width:inherit}.mat-icon.mat-ligature-font[fontIcon]::before{content:attr(fontIcon)}[dir=rtl] .mat-icon-rtl-mirror{transform:scale(-1, 1)}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon{display:block}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button .mat-icon{margin:auto}\n"],encapsulation:2,changeDetection:0})}return B})(),I=(()=>{class B{static \u0275fac=function(be){return new(be||B)};static \u0275mod=i.$C({type:B});static \u0275inj=t.G2t({imports:[f.y,f.y]})}return B})()},12683:(Ae,ee,l)=>{"use strict";var i;function t($,ae,ue){return ae=function p($){var ae=function S($,ae){if("object"!=typeof $||null===$)return $;var ue=$[Symbol.toPrimitive];if(void 0!==ue){var oe=ue.call($,ae||"default");if("object"!=typeof oe)return oe;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===ae?String:Number)($)}($,"string");return"symbol"==typeof ae?ae:String(ae)}(ae),ae in $?Object.defineProperty($,ae,{value:ue,enumerable:!0,configurable:!0,writable:!0}):$[ae]=ue,$}var c=l(57854),e=Symbol("lastResolve"),T=Symbol("lastReject"),g=Symbol("error"),d=Symbol("ended"),w=Symbol("lastPromise"),m=Symbol("handlePromise"),P=Symbol("stream");function M($,ae){return{value:$,done:ae}}function j($){var ae=$[e];if(null!==ae){var ue=$[P].read();null!==ue&&($[w]=null,$[e]=null,$[T]=null,ae(M(ue,!1)))}}function U($){process.nextTick(j,$)}var q=Object.getPrototypeOf(function(){}),G=Object.setPrototypeOf((t(i={get stream(){return this[P]},next:function(){var ae=this,ue=this[g];if(null!==ue)return Promise.reject(ue);if(this[d])return Promise.resolve(M(void 0,!0));if(this[P].destroyed)return new Promise(function(Te,D){process.nextTick(function(){ae[g]?D(ae[g]):Te(M(void 0,!0))})});var he,oe=this[w];if(oe)he=new Promise(function K($,ae){return function(ue,oe){$.then(function(){ae[d]?ue(M(void 0,!0)):ae[m](ue,oe)},oe)}}(oe,this));else{var me=this[P].read();if(null!==me)return Promise.resolve(M(me,!1));he=new Promise(this[m])}return this[w]=he,he}},Symbol.asyncIterator,function(){return this}),t(i,"return",function(){var ae=this;return new Promise(function(ue,oe){ae[P].destroy(null,function(he){he?oe(he):ue(M(void 0,!0))})})}),i),q);Ae.exports=function(ae){var ue,oe=Object.create(G,(t(ue={},P,{value:ae,writable:!0}),t(ue,e,{value:null,writable:!0}),t(ue,T,{value:null,writable:!0}),t(ue,g,{value:null,writable:!0}),t(ue,d,{value:ae._readableState.endEmitted,writable:!0}),t(ue,m,{value:function(me,Te){var D=oe[P].read();D?(oe[w]=null,oe[e]=null,oe[T]=null,me(M(D,!1))):(oe[e]=me,oe[T]=Te)},writable:!0}),ue));return oe[w]=null,c(ae,function(he){if(he&&"ERR_STREAM_PREMATURE_CLOSE"!==he.code){var me=oe[T];return null!==me&&(oe[w]=null,oe[e]=null,oe[T]=null,me(he)),void(oe[g]=he)}var Te=oe[e];null!==Te&&(oe[w]=null,oe[e]=null,oe[T]=null,Te(M(void 0,!0))),oe[d]=!0}),ae.on("readable",U.bind(null,oe)),oe}},12727:(Ae,ee,l)=>{var i=l(3342);Ae.exports=ae,ae.simpleSieve=Q,ae.fermatTest=$;var t=l(38280),p=new t(24),c=new(l(53459)),e=new t(1),T=new t(2),g=new t(5),m=(new t(16),new t(8),new t(10)),P=new t(3),j=(new t(7),new t(11)),U=new t(4),q=(new t(12),null);function Q(ue){for(var oe=function G(){if(null!==q)return q;var oe=[];oe[0]=2;for(var he=1,me=3;me<1048576;me+=2){for(var Te=Math.ceil(Math.sqrt(me)),D=0;Due;)he.ishrn(1);if(he.isEven()&&he.iadd(e),he.testn(1)||he.iadd(T),oe.cmp(T)){if(!oe.cmp(g))for(;he.mod(m).cmp(P);)he.iadd(U)}else for(;he.mod(p).cmp(j);)he.iadd(U);if(Q(me=he.shrn(1))&&Q(he)&&$(me)&&$(he)&&c.test(me)&&c.test(he))return he}}},12773:(Ae,ee,l)=>{"use strict";var i=l(90258),t=l(61885),p=t([i("%String.prototype.indexOf%")]);Ae.exports=function(c,e){var T=i(c,!!e);return"function"==typeof T&&p(c,".prototype.")>-1?t([T]):T}},12901:(Ae,ee,l)=>{"use strict";var i=l(68283),t=l(39210);function p(){this.pending=null,this.pendingTotal=0,this.blockSize=this.constructor.blockSize,this.outSize=this.constructor.outSize,this.hmacStrength=this.constructor.hmacStrength,this.padLength=this.constructor.padLength/8,this.endian="big",this._delta8=this.blockSize/8,this._delta32=this.blockSize/32}ee.BlockHash=p,p.prototype.update=function(c,e){if(c=i.toArray(c,e),this.pending=this.pending?this.pending.concat(c):c,this.pendingTotal+=c.length,this.pending.length>=this._delta8){var T=(c=this.pending).length%this._delta8;this.pending=c.slice(c.length-T,c.length),0===this.pending.length&&(this.pending=null),c=i.join32(c,0,c.length-T,this.endian);for(var g=0;g>>24&255,g[d++]=c>>>16&255,g[d++]=c>>>8&255,g[d++]=255&c}else for(g[d++]=255&c,g[d++]=c>>>8&255,g[d++]=c>>>16&255,g[d++]=c>>>24&255,g[d++]=0,g[d++]=0,g[d++]=0,g[d++]=0,w=8;w{"use strict";l.d(ee,{B:()=>oe});var i=l(11747),t=l(21413),p=l(7673),S=l(99437),c=l(96354),e=l(31397),T=l(56977),g=l(12462),d=l(4416),w=l(11771),m=l(86439),P=l(95428),M=l(72730),j=l(2615),U=l(29330),K=l(59640),q=l(53202),G=l(82571),Q=l(98570),$=l(43694),ae=l(7879),ue=l(57303);let oe=(()=>{var he;class me{constructor(D,n,o,f,h,b,A,k,x){this.actions=D,this.httpClient=n,this.store=o,this.sessionService=f,this.commonService=h,this.logger=b,this.router=A,this.wsService=k,this.location=x,this.CHILD_API_URL=d.H$+"/ecl",this.invoicesPageSettings=d.X8.find(r=>"transactions"===r.pageId)?.tables.find(r=>"invoices"===r.tableId),this.paymentsPageSettings=d.X8.find(r=>"transactions"===r.pageId)?.tables.find(r=>"payments"===r.tableId),this.flgInitialized=!1,this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.rawChannelsList=[],this.unSubs=[new t.B,new t.B,new t.B],this.infoFetchECL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.FETCH_INFO_ECL),(0,e.Z)(r=>(this.flgInitialized=!1,this.store.dispatch((0,w.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,w.mt)({payload:d.MZ.GET_NODE_INFO})),this.store.dispatch((0,P.uL)({payload:{action:"FetchInfo",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.GETINFO_API).pipe((0,T.Q)(this.actions.pipe((0,i.gp)(d.aU.SET_SELECTED_NODE))),(0,c.T)(_=>(this.logger.info(_),this.initializeRemainingData(_,r.payload.loadPage),this.store.dispatch((0,P.uL)({payload:{action:"FetchInfo",status:d.wn.COMPLETED}})),this.store.dispatch((0,w.y0)({payload:d.MZ.GET_NODE_INFO})),{type:d.Uu.SET_INFO_ECL,payload:_||{}})),(0,S.W)(_=>{const W=this.commonService.extractErrorCode(_),I=503===W?"Unable to Connect to Eclair Server.":this.commonService.extractErrorMessage(_);return this.router.navigate(["/error"],{state:{errorCode:W,errorMessage:I}}),this.handleErrorWithoutAlert("FetchInfo",d.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:W,error:I}),(0,p.of)({type:d.aU.VOID})})))))),this.fetchFees=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.FETCH_FEES_ECL),(0,e.Z)(()=>(this.store.dispatch((0,P.uL)({payload:{action:"FetchFees",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.FEES_API+"/fees").pipe((0,c.T)(r=>(this.logger.info(r),this.store.dispatch((0,P.uL)({payload:{action:"FetchFees",status:d.wn.COMPLETED}})),{type:d.Uu.SET_FEES_ECL,payload:r||{}})),(0,S.W)(r=>(this.handleErrorWithoutAlert("FetchFees",d.MZ.NO_SPINNER,"Fetching Fees Failed.",r),(0,p.of)({type:d.aU.VOID})))))))),this.fetchPayments=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.FETCH_PAYMENTS_ECL),(0,e.Z)(r=>(this.store.dispatch((0,P.uL)({payload:{action:"FetchPayments",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.FEES_API+"/payments?count="+r.payload.count+"&skip="+r.payload.skip).pipe((0,c.T)(_=>(this.logger.info(_),this.store.dispatch((0,P.uL)({payload:{action:"FetchPayments",status:d.wn.COMPLETED}})),{type:d.Uu.SET_PAYMENTS_ECL,payload:_||{}})),(0,S.W)(_=>(this.handleErrorWithoutAlert("FetchPayments",d.MZ.NO_SPINNER,"Fetching Payments Failed.",_),(0,p.of)({type:d.aU.VOID})))))))),this.channelsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.FETCH_CHANNELS_ECL),(0,e.Z)(r=>(this.store.dispatch((0,P.uL)({payload:{action:"FetchChannels",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.CHANNELS_API).pipe((0,c.T)(_=>(this.logger.info(_),this.rawChannelsList=_,this.setChannelsAndStatusAndBalances(),this.store.dispatch((0,P.uL)({payload:{action:"FetchChannels",status:d.wn.COMPLETED}})),{type:d.aU.VOID})),(0,S.W)(_=>(this.handleErrorWithoutAlert("FetchChannels",d.MZ.NO_SPINNER,"Fetching Channels Failed.",_),(0,p.of)({type:d.aU.VOID})))))))),this.fetchOnchainBalance=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.FETCH_ONCHAIN_BALANCE_ECL),(0,e.Z)(()=>(this.store.dispatch((0,P.uL)({payload:{action:"FetchOnchainBalance",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.ON_CHAIN_API+"/balance"))),(0,c.T)(r=>(this.logger.info(r),this.store.dispatch((0,P.uL)({payload:{action:"FetchOnchainBalance",status:d.wn.COMPLETED}})),{type:d.Uu.SET_ONCHAIN_BALANCE_ECL,payload:r||{}})),(0,S.W)(r=>(this.handleErrorWithoutAlert("FetchOnchainBalance",d.MZ.NO_SPINNER,"Fetching Onchain Balances Failed.",r),(0,p.of)({type:d.aU.VOID}))))),this.peersFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.FETCH_PEERS_ECL),(0,e.Z)(()=>(this.store.dispatch((0,P.uL)({payload:{action:"FetchPeers",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.PEERS_API).pipe((0,c.T)(r=>(this.logger.info(r),this.store.dispatch((0,P.uL)({payload:{action:"FetchPeers",status:d.wn.COMPLETED}})),{type:d.Uu.SET_PEERS_ECL,payload:r||[]})),(0,S.W)(r=>(this.handleErrorWithoutAlert("FetchPeers",d.MZ.NO_SPINNER,"Fetching Peers Failed.",r),(0,p.of)({type:d.aU.VOID})))))))),this.getNewAddress=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.GET_NEW_ADDRESS_ECL),(0,e.Z)(()=>(this.store.dispatch((0,w.mt)({payload:d.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+d.rl.ON_CHAIN_API).pipe((0,c.T)(r=>(this.logger.info(r),this.store.dispatch((0,w.y0)({payload:d.MZ.GENERATE_NEW_ADDRESS})),{type:d.Uu.SET_NEW_ADDRESS_ECL,payload:r})),(0,S.W)(r=>(this.handleErrorWithAlert("GetNewAddress",d.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+d.rl.ON_CHAIN_API,r),(0,p.of)({type:d.aU.VOID})))))))),this.setNewAddress=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.SET_NEW_ADDRESS_ECL),(0,c.T)(r=>(this.logger.info(r.payload),r.payload))),{dispatch:!1}),this.saveNewPeer=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.SAVE_NEW_PEER_ECL),(0,e.Z)(r=>(this.store.dispatch((0,w.mt)({payload:d.MZ.CONNECT_PEER})),this.store.dispatch((0,P.uL)({payload:{action:"SaveNewPeer",status:d.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.rl.PEERS_API+(r.payload.id.includes("@")?"?uri=":"?nodeId=")+r.payload.id,{}).pipe((0,c.T)(_=>(this.logger.info(_),this.store.dispatch((0,P.uL)({payload:{action:"SaveNewPeer",status:d.wn.COMPLETED}})),_=_||[],this.store.dispatch((0,w.y0)({payload:d.MZ.CONNECT_PEER})),this.store.dispatch((0,P.Qj)({payload:_})),{type:d.Uu.NEWLY_ADDED_PEER_ECL,payload:{peer:_.find(W=>W.nodeId===(r.payload.id.includes("@")?r.payload.id.substring(0,r.payload.id.indexOf("@")):r.payload.id))}})),(0,S.W)(_=>(this.handleErrorWithoutAlert("SaveNewPeer",d.MZ.CONNECT_PEER,"Peer Connection Failed.",_),(0,p.of)({type:d.aU.VOID})))))))),this.detachPeer=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.DETACH_PEER_ECL),(0,e.Z)(r=>(this.store.dispatch((0,w.mt)({payload:d.MZ.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+d.rl.PEERS_API+"/"+r.payload.nodeId).pipe((0,c.T)(_=>(this.logger.info(_),this.store.dispatch((0,w.y0)({payload:d.MZ.DISCONNECT_PEER})),this.store.dispatch((0,w.UI)({payload:"Disconnecting Peer!"})),{type:d.Uu.REMOVE_PEER_ECL,payload:{nodeId:r.payload.nodeId}})),(0,S.W)(_=>(this.handleErrorWithAlert("DisconnectPeer",d.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+d.rl.PEERS_API+"/"+r.payload.nodeId,_),(0,p.of)({type:d.aU.VOID})))))))),this.openNewChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.SAVE_NEW_CHANNEL_ECL),(0,e.Z)(r=>{this.store.dispatch((0,w.mt)({payload:d.MZ.OPEN_CHANNEL})),this.store.dispatch((0,P.uL)({payload:{action:"SaveNewChannel",status:d.wn.INITIATED}}));const _={nodeId:r.payload.nodeId,fundingSatoshis:r.payload.amount,announceChannel:!r.payload.private};return r.payload.feeRate&&r.payload.feeRate>0&&(_.fundingFeerateSatByte=r.payload.feeRate),this.httpClient.post(this.CHILD_API_URL+d.rl.CHANNELS_API,_).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,P.uL)({payload:{action:"SaveNewChannel",status:d.wn.COMPLETED}})),this.store.dispatch((0,P.Gy)()),this.store.dispatch((0,P.jJ)()),this.store.dispatch((0,w.y0)({payload:d.MZ.OPEN_CHANNEL})),this.store.dispatch((0,w.UI)({payload:"Channel Added Successfully!"})),{type:d.Uu.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,S.W)(W=>(this.handleErrorWithoutAlert("SaveNewChannel",d.MZ.OPEN_CHANNEL,"Opening Channel Failed.",W),(0,p.of)({type:d.aU.VOID}))))}))),this.updateChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.UPDATE_CHANNEL_ECL),(0,e.Z)(r=>{this.store.dispatch((0,w.mt)({payload:d.MZ.UPDATE_CHAN_POLICY}));let _="?feeBaseMsat="+r.payload.baseFeeMsat+"&feeProportionalMillionths="+r.payload.feeRate;return _=r.payload.nodeIds?_+"&nodeIds="+r.payload.nodeIds:r.payload.nodeId?_+"&nodeId="+r.payload.nodeId:r.payload.channelIds?_+"&channelIds="+r.payload.channelIds:_+"&channelId="+r.payload.channelId,this.httpClient.post(this.CHILD_API_URL+d.rl.CHANNELS_API+"/updateRelayFee"+_,{}).pipe((0,c.T)(W=>(this.logger.info(W),this.store.dispatch((0,w.y0)({payload:d.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,w.UI)(r.payload.nodeIds||r.payload.channelIds?{payload:"Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:d.Uu.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,S.W)(W=>(this.handleErrorWithAlert("UpdateChannels",d.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+d.rl.CHANNELS_API,W),(0,p.of)({type:d.aU.VOID}))))}))),this.closeChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.CLOSE_CHANNEL_ECL),(0,e.Z)(r=>(this.store.dispatch((0,w.mt)({payload:r.payload.force?d.MZ.FORCE_CLOSE_CHANNEL:d.MZ.CLOSE_CHANNEL})),this.httpClient.delete(this.CHILD_API_URL+d.rl.CHANNELS_API+"?channelId="+r.payload.channelId+"&force="+r.payload.force).pipe((0,c.T)(_=>(this.logger.info(_),setTimeout(()=>{this.store.dispatch((0,w.y0)({payload:r.payload.force?d.MZ.FORCE_CLOSE_CHANNEL:d.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,w.UI)({payload:r.payload.force?"Channel Force Closed Successfully!":"Channel Closed Successfully!"}))},2e3),{type:d.aU.VOID})),(0,S.W)(_=>(this.handleErrorWithAlert("CloseChannel",r.payload.force?d.MZ.FORCE_CLOSE_CHANNEL:d.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+d.rl.CHANNELS_API,_),(0,p.of)({type:d.aU.VOID})))))))),this.queryRoutesFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.GET_QUERY_ROUTES_ECL),(0,e.Z)(r=>this.httpClient.get(this.CHILD_API_URL+d.rl.PAYMENTS_API+"/route?nodeId="+r.payload.nodeId+"&amountMsat="+r.payload.amount).pipe((0,c.T)(_=>(this.logger.info(_),{type:d.Uu.SET_QUERY_ROUTES_ECL,payload:_})),(0,S.W)(_=>(this.store.dispatch((0,P.Hm)({payload:[]})),this.handleErrorWithAlert("GetQueryRoutes",d.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+d.rl.PAYMENTS_API+"/route?nodeId="+r.payload.nodeId+"&amountMsat="+r.payload.amount,_),(0,p.of)({type:d.aU.VOID}))))))),this.setQueryRoutes=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.SET_QUERY_ROUTES_ECL),(0,c.T)(r=>r.payload)),{dispatch:!1}),this.sendPayment=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.SEND_PAYMENT_ECL),(0,e.Z)(r=>(this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.store.dispatch((0,w.mt)({payload:d.MZ.SEND_PAYMENT})),this.store.dispatch((0,P.uL)({payload:{action:"SendPayment",status:d.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.rl.PAYMENTS_API,r.payload).pipe((0,c.T)(_=>(this.logger.info(_),this.latestPaymentRes=_,setTimeout(()=>{this.flgReceivedPaymentUpdateFromWS||this.handleSendPaymentStatus("Payment Submitted!")},3e3),{type:d.aU.VOID})),(0,S.W)(_=>(this.logger.error("Error: "+JSON.stringify(_)),r.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",d.MZ.SEND_PAYMENT,"Send Payment Failed.",_):this.handleErrorWithAlert("SendPayment",d.MZ.SEND_PAYMENT,"Send Payment Failed",this.CHILD_API_URL+d.rl.PAYMENTS_API,_),(0,p.of)({type:d.aU.VOID})))))))),this.transactionsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.FETCH_TRANSACTIONS_ECL),(0,e.Z)(r=>(this.store.dispatch((0,P.uL)({payload:{action:"FetchTransactions",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.ON_CHAIN_API+"/transactions?count="+r.payload.count+"&skip="+r.payload.skip))),(0,c.T)(r=>(this.logger.info(r),this.store.dispatch((0,P.uL)({payload:{action:"FetchTransactions",status:d.wn.COMPLETED}})),{type:d.Uu.SET_TRANSACTIONS_ECL,payload:r||[]})),(0,S.W)(r=>(this.handleErrorWithoutAlert("FetchTransactions",d.MZ.NO_SPINNER,"Fetching Transactions Failed.",r),(0,p.of)({type:d.aU.VOID}))))),this.SendOnchainFunds=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.SEND_ONCHAIN_FUNDS_ECL),(0,e.Z)(r=>(this.store.dispatch((0,w.mt)({payload:d.MZ.SEND_FUNDS})),this.store.dispatch((0,P.uL)({payload:{action:"SendOnchainFunds",status:d.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.rl.ON_CHAIN_API,r.payload).pipe((0,c.T)(_=>(this.logger.info(_),this.store.dispatch((0,P.uL)({payload:{action:"SendOnchainFunds",status:d.wn.COMPLETED}})),this.store.dispatch((0,w.y0)({payload:d.MZ.SEND_FUNDS})),this.store.dispatch((0,P.jJ)()),{type:d.Uu.SEND_ONCHAIN_FUNDS_RES_ECL,payload:_})),(0,S.W)(_=>(this.handleErrorWithoutAlert("SendOnchainFunds",d.MZ.SEND_FUNDS,"Sending Fund Failed.",_),(0,p.of)({type:d.aU.VOID})))))))),this.createInvoice=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.CREATE_INVOICE_ECL),(0,e.Z)(r=>(this.store.dispatch((0,w.mt)({payload:d.MZ.CREATE_INVOICE})),this.store.dispatch((0,P.uL)({payload:{action:"CreateInvoice",status:d.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.rl.INVOICES_API,r.payload).pipe((0,c.T)(_=>(this.logger.info(_),this.store.dispatch((0,P.uL)({payload:{action:"CreateInvoice",status:d.wn.COMPLETED}})),this.store.dispatch((0,w.y0)({payload:d.MZ.CREATE_INVOICE})),_.timestamp=Math.round((new Date).getTime()/1e3),_.expiresAt=Math.round(_.timestamp+r.payload.expireIn),_.description=r.payload.description,_.status="unpaid",setTimeout(()=>{this.store.dispatch((0,w.xO)({payload:{data:{invoice:_,newlyAdded:!0,component:m.Z}}}))},200),{type:d.Uu.ADD_INVOICE_ECL,payload:_})),(0,S.W)(_=>(this.handleErrorWithoutAlert("CreateInvoice",d.MZ.CREATE_INVOICE,"Create Invoice Failed.",_),(0,p.of)({type:d.aU.VOID})))))))),this.invoicesFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.FETCH_INVOICES_ECL),(0,e.Z)(r=>(this.store.dispatch((0,P.uL)({payload:{action:"FetchInvoices",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.INVOICES_API+"?count="+r.payload.count+"&skip="+r.payload.skip).pipe((0,c.T)(_=>(this.logger.info(_),this.store.dispatch((0,P.uL)({payload:{action:"FetchInvoices",status:d.wn.COMPLETED}})),{type:d.Uu.SET_INVOICES_ECL,payload:_})),(0,S.W)(_=>(this.handleErrorWithoutAlert("FetchInvoices",d.MZ.NO_SPINNER,"Fetching Invoices Failed.",_),(0,p.of)({type:d.aU.VOID})))))))),this.peerLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.PEER_LOOKUP_ECL),(0,e.Z)(r=>(this.store.dispatch((0,w.mt)({payload:d.MZ.SEARCHING_NODE})),this.store.dispatch((0,P.uL)({payload:{action:"Lookup",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.NETWORK_API+"/nodes/"+r.payload).pipe((0,c.T)(_=>(this.logger.info(_),this.store.dispatch((0,P.uL)({payload:{action:"Lookup",status:d.wn.COMPLETED}})),this.store.dispatch((0,w.y0)({payload:d.MZ.SEARCHING_NODE})),{type:d.Uu.SET_LOOKUP_ECL,payload:_})),(0,S.W)(_=>(this.handleErrorWithAlert("Lookup",d.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+d.rl.NETWORK_API+"/nodes/"+r.payload,_),(0,p.of)({type:d.aU.VOID})))))))),this.invoiceLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.INVOICE_LOOKUP_ECL),(0,e.Z)(r=>(this.store.dispatch((0,w.mt)({payload:d.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,P.uL)({payload:{action:"Lookup",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.INVOICES_API+"/"+r.payload).pipe((0,c.T)(_=>(this.logger.info(_),this.store.dispatch((0,P.uL)({payload:{action:"Lookup",status:d.wn.COMPLETED}})),this.store.dispatch((0,w.y0)({payload:d.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,P.Dq)({payload:_})),{type:d.Uu.SET_LOOKUP_ECL,payload:_})),(0,S.W)(_=>(this.handleErrorWithoutAlert("Lookup",d.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",_),this.store.dispatch((0,w.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,p.of)({type:d.aU.VOID})))))))),this.setLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.SET_LOOKUP_ECL),(0,c.T)(r=>(this.logger.info(r.payload),r.payload))),{dispatch:!1}),this.pageSettingsFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.FETCH_PAGE_SETTINGS_ECL),(0,e.Z)(()=>(this.store.dispatch((0,P.uL)({payload:{action:"FetchPageSettings",status:d.wn.INITIATED}})),this.httpClient.get(d.rl.PAGE_SETTINGS_API).pipe((0,c.T)(r=>(this.logger.info(r),this.store.dispatch((0,P.uL)({payload:{action:"FetchPageSettings",status:d.wn.COMPLETED}})),this.invoicesPageSettings=r&&Object.keys(r).length>0?r.find(_=>"transactions"===_.pageId)?.tables.find(_=>"invoices"===_.tableId):d.X8.find(_=>"transactions"===_.pageId)?.tables.find(_=>"invoices"===_.tableId),this.paymentsPageSettings=r&&Object.keys(r).length>0?r.find(_=>"transactions"===_.pageId)?.tables.find(_=>"payments"===_.tableId):d.X8.find(_=>"transactions"===_.pageId)?.tables.find(_=>"payments"===_.tableId),{type:d.Uu.SET_PAGE_SETTINGS_ECL,payload:r||[]})),(0,S.W)(r=>(this.handleErrorWithoutAlert("FetchPageSettings",d.MZ.NO_SPINNER,"Fetching Page Settings Failed.",r),(0,p.of)({type:d.aU.VOID})))))))),this.savePageSettingsCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(d.Uu.SAVE_PAGE_SETTINGS_ECL),(0,e.Z)(r=>(this.store.dispatch((0,w.mt)({payload:d.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,P.uL)({payload:{action:"SavePageSettings",status:d.wn.INITIATED}})),this.httpClient.post(d.rl.PAGE_SETTINGS_API,r.payload).pipe((0,c.T)(_=>{this.logger.info(_),this.store.dispatch((0,P.uL)({payload:{action:"SavePageSettings",status:d.wn.COMPLETED}})),this.store.dispatch((0,w.y0)({payload:d.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,w.UI)({payload:"Page Layout Updated Successfully!"}));const W=(_.find(B=>"transactions"===B.pageId)?.tables.find(B=>"invoices"===B.tableId)||d.X8.find(B=>"transactions"===B.pageId)?.tables.find(B=>"invoices"===B.tableId))?.recordsPerPage,I=(_.find(B=>"transactions"===B.pageId)?.tables.find(B=>"payments"===B.tableId)||d.X8.find(B=>"transactions"===B.pageId)?.tables.find(B=>"payments"===B.tableId))?.recordsPerPage;return this.invoicesPageSettings&&W!==this.invoicesPageSettings?.recordsPerPage&&(this.invoicesPageSettings.recordsPerPage=W),this.paymentsPageSettings&&I!==this.paymentsPageSettings?.recordsPerPage&&(this.paymentsPageSettings.recordsPerPage=I),{type:d.Uu.SET_PAGE_SETTINGS_ECL,payload:_||[]}}),(0,S.W)(_=>(this.handleErrorWithAlert("SavePageSettings",d.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",d.rl.PAGE_SETTINGS_API,_),(0,p.of)({type:d.aU.VOID})))))))),this.handleSendPaymentStatus=r=>{this.store.dispatch((0,P.uL)({payload:{action:"SendPayment",status:d.wn.COMPLETED}})),this.store.dispatch((0,w.y0)({payload:d.MZ.SEND_PAYMENT})),this.store.dispatch((0,P.N4)({payload:this.latestPaymentRes})),this.store.dispatch((0,w.UI)({payload:r}))},this.store.select(M.ru).pipe((0,T.Q)(this.unSubs[0])).subscribe(r=>{r.FetchInfo.status!==d.wn.COMPLETED&&r.FetchInfo.status!==d.wn.ERROR||r.FetchFees.status!==d.wn.COMPLETED&&r.FetchFees.status!==d.wn.ERROR||r.FetchOnchainBalance.status!==d.wn.COMPLETED&&r.FetchOnchainBalance.status!==d.wn.ERROR||r.FetchChannels.status!==d.wn.COMPLETED&&r.FetchChannels.status!==d.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,w.y0)({payload:d.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.eclWSMessages.pipe((0,T.Q)(this.unSubs[1])).subscribe(r=>{this.logger.info("Received new message from the service: "+JSON.stringify(r));let _="";if(r)switch(r.type){case d.ck.PAYMENT_SENT:r&&r.id&&this.latestPaymentRes===r.id&&(this.flgReceivedPaymentUpdateFromWS=!0,_="Payment Sent: "+(r.paymentHash?"with payment hash "+r.paymentHash:JSON.stringify(r)),this.handleSendPaymentStatus(_));break;case d.ck.PAYMENT_FAILED:r&&r.id&&this.latestPaymentRes===r.id&&(this.flgReceivedPaymentUpdateFromWS=!0,_="Payment Failed: "+(r.failures&&r.failures.length&&r.failures.length>0&&r.failures[0].t?r.failures[0].t:r.failures&&r.failures.length&&r.failures.length>0&&r.failures[0].e&&r.failures[0].e.failureMessage?r.failures[0].e.failureMessage:JSON.stringify(r)),this.handleSendPaymentStatus(_));break;case d.ck.PAYMENT_RECEIVED:this.store.dispatch((0,P.Dq)({payload:r}));break;case d.ck.PAYMENT_RELAYED:delete r.source,r.amountIn=Math.round((r.amountIn||0)/1e3),r.amountOut=Math.round((r.amountOut||0)/1e3),r.timestamp.unix&&(r.timestamp=1e3*r.timestamp.unix),this.store.dispatch((0,P.yn)({payload:r}));break;case d.ck.CHANNEL_STATE_CHANGED:"NORMAL"===r.currentState||"CLOSED"===r.currentState?(this.rawChannelsList=this.rawChannelsList?.map(W=>(W.channelId===r.channelId&&W.nodeId===r.remoteNodeId&&(W.state=r.currentState),W)),this.setChannelsAndStatusAndBalances()):this.store.dispatch((0,P.gZ)({payload:r}));break;default:this.logger.info("Received Event from WS: "+JSON.stringify(r))}})}setChannelsAndStatusAndBalances(){let D=0,n=0,o=0,f={localBalance:0,remoteBalance:0},h=[];const b=[],A=[],k={active:{channels:0,capacity:0},inactive:{channels:0,capacity:0},pending:{channels:0,capacity:0}};this.rawChannelsList.forEach((x,r)=>{x&&("NORMAL"===x.state?(D=(x.toLocal||0)+(x.toRemote||0),n+=x.toLocal||0,o+=x.toRemote||0,x.balancedness=0===D?1:+(1-Math.abs(((x.toLocal||0)-(x.toRemote||0))/D)).toFixed(3),h.push(x),k.active.channels=k.active.channels+1,k.active.capacity=k.active.capacity+(x.toLocal||0)):x.state?.includes("WAIT")||x.state?.includes("CLOSING")||x.state?.includes("SYNCING")?(x.state=x.state?.replace(/_/g," "),b.push(x),k.pending.channels=k.pending.channels+1,k.pending.capacity=k.pending.capacity+(x.toLocal||0)):(x.state=x.state?.replace(/_/g," "),A.push(x),k.inactive.channels=k.inactive.channels+1,k.inactive.capacity=k.inactive.capacity+(x.toLocal||0)))}),f={localBalance:n,remoteBalance:o},h=this.commonService.sortDescByKey(h,"balancedness"),this.logger.info("Active Channels: "+JSON.stringify(h)),this.logger.info("Pending Channels: "+JSON.stringify(b)),this.logger.info("Inactive Channels: "+JSON.stringify(A)),this.logger.info("Lightning Balances: "+JSON.stringify(f)),this.logger.info("Channels Status: "+JSON.stringify(k)),this.logger.info("Channel, status and balances: "+JSON.stringify({active:h,pending:b,inactive:A,balances:f,status:k})),this.store.dispatch((0,P.Tp)({payload:h})),this.store.dispatch((0,P.cU)({payload:b})),this.store.dispatch((0,P.I6)({payload:A})),this.store.dispatch((0,P.N8)({payload:f})),this.store.dispatch((0,P.ZE)({payload:k}))}initializeRemainingData(D,n){this.sessionService.setItem("eclUnlocked","true");const o={identity_pubkey:D.nodeId,alias:D.alias,testnet:"testnet"===D.network,chains:D.publicAddresses,uris:D.uris,version:D.version,numberOfPendingChannels:0};this.store.dispatch((0,w.mt)({payload:d.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,w.Fl)({payload:o}));let f=this.location.path();f.includes("/lnd/")?f=f?.replace("/lnd/","/ecl/"):f.includes("/cln/")&&(f=f?.replace("/cln/","/ecl/")),(f.includes("/login")||f.includes("/error")||""===f||"HOME"===n||f.includes("?access-key="))&&(f="/ecl/home"),this.router.navigate([f]),this.store.dispatch((0,P.$Q)()),this.store.dispatch((0,P.yp)()),this.store.dispatch((0,P.jJ)()),this.store.dispatch((0,P.Gy)())}handleErrorWithoutAlert(D,n,o,f){this.logger.error("ERROR IN: "+D+"\n"+JSON.stringify(f)),401===f.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,w.Jh)()),this.store.dispatch((0,w.ri)({payload:"Authentication Failed: "+JSON.stringify(f.error)}))):(this.store.dispatch((0,w.y0)({payload:n})),this.store.dispatch((0,P.uL)({payload:{action:D,status:d.wn.ERROR,statusCode:f.status.toString(),message:this.commonService.extractErrorMessage(f,o)}})))}handleErrorWithAlert(D,n,o,f,h){if(this.logger.error(h),401===h.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,w.Jh)()),this.store.dispatch((0,w.ri)({payload:"Authentication Failed: "+JSON.stringify(h.error)}));else{this.store.dispatch((0,w.y0)({payload:n}));const b=this.commonService.extractErrorMessage(h);this.store.dispatch((0,w.xO)({payload:{data:{type:"ERROR",alertTitle:o,message:{code:h.status,message:b,URL:f},component:g.f}}})),this.store.dispatch((0,P.uL)({payload:{action:D,status:d.wn.ERROR,statusCode:h.status.toString(),message:b,URL:f}}))}}ngOnDestroy(){this.unSubs.forEach(D=>{D.next(null),D.complete()})}static#e=he=()=>(this.\u0275fac=function(n){return new(n||me)(j.KVO(i.En),j.KVO(U.Qq),j.KVO(K.il),j.KVO(q.Q),j.KVO(G.h),j.KVO(Q.gP),j.KVO($.Ix),j.KVO(ae.I),j.KVO(ue.aZ))},this.\u0275prov=j.jDH({token:me,factory:me.\u0275fac}))}return he(),me})()},13546:Ae=>{Ae.exports=function(l,i){for(var t=Math.min(l.length,i.length),p=new Buffer(t),S=0;S{"use strict";var i=l(27054).Buffer,t=l(7045).Transform;function S(g){t.call(this),this._block=i.allocUnsafe(g),this._blockSize=g,this._blockOffset=0,this._length=[0,0,0,0],this._finalized=!1}l(71993)(S,t),S.prototype._transform=function(g,d,w){var m=null;try{this.update(g,d)}catch(P){m=P}w(m)},S.prototype._flush=function(g){var d=null;try{this.push(this.digest())}catch(w){d=w}g(d)};var c=typeof Uint8Array<"u",e=typeof ArrayBuffer<"u"&&typeof Uint8Array<"u"&&ArrayBuffer.isView&&(i.prototype instanceof Uint8Array||i.TYPED_ARRAY_SUPPORT);S.prototype.update=function(g,d){if(this._finalized)throw new Error("Digest already called");g=function T(g,d){if(g instanceof i)return g;if("string"==typeof g)return i.from(g,d);if(e&&ArrayBuffer.isView(g)){if(0===g.byteLength)return i.alloc(0);var w=i.from(g.buffer,g.byteOffset,g.byteLength);if(w.byteLength===g.byteLength)return w}if(c&&g instanceof Uint8Array||i.isBuffer(g)&&g.constructor&&"function"==typeof g.constructor.isBuffer&&g.constructor.isBuffer(g))return i.from(g);throw new TypeError('The "data" argument must be of type string or an instance of Buffer, TypedArray, or DataView.')}(g,d);for(var w=this._block,m=0;this._blockOffset+g.length-m>=this._blockSize;){for(var P=this._blockOffset;P0;++M)this._length[M]+=j,(j=this._length[M]/4294967296|0)>0&&(this._length[M]-=4294967296*j);return this},S.prototype._update=function(){throw new Error("_update is not implemented")},S.prototype.digest=function(g){if(this._finalized)throw new Error("Digest already called");this._finalized=!0;var d=this._digest();void 0!==g&&(d=d.toString(g)),this._block.fill(0),this._blockOffset=0;for(var w=0;w<4;++w)this._length[w]=0;return d},S.prototype._digest=function(){throw new Error("_digest is not implemented")},Ae.exports=S},13798:(Ae,ee,l)=>{"use strict";l.d(ee,{Z:()=>T});var i=l(43236),t=l(39974),p=l(58750),S=l(54360),e=l(1807);function T(g,d=i.E){return function c(g){return(0,t.N)((d,w)=>{let m=!1,P=null,M=null,j=!1;const U=()=>{if(M?.unsubscribe(),M=null,m){m=!1;const q=P;P=null,w.next(q)}j&&w.complete()},K=()=>{M=null,j&&w.complete()};d.subscribe((0,S._)(w,q=>{m=!0,P=q,M||(0,p.Tg)(g(q)).subscribe(M=(0,S._)(w,U,K))},()=>{j=!0,(!m||!M||M.closed)&&w.complete()}))})}(()=>(0,e.O)(g,d))}},13981:(Ae,ee)=>{"use strict";ee.byteLength=function T(M){var j=e(M),K=j[1];return 3*(j[0]+K)/4-K},ee.toByteArray=function d(M){var j,ae,U=e(M),K=U[0],q=U[1],G=new t(function g(M,j,U){return 3*(j+U)/4-U}(0,K,q)),Q=0,$=q>0?K-4:K;for(ae=0;ae<$;ae+=4)j=i[M.charCodeAt(ae)]<<18|i[M.charCodeAt(ae+1)]<<12|i[M.charCodeAt(ae+2)]<<6|i[M.charCodeAt(ae+3)],G[Q++]=j>>16&255,G[Q++]=j>>8&255,G[Q++]=255&j;return 2===q&&(j=i[M.charCodeAt(ae)]<<2|i[M.charCodeAt(ae+1)]>>4,G[Q++]=255&j),1===q&&(j=i[M.charCodeAt(ae)]<<10|i[M.charCodeAt(ae+1)]<<4|i[M.charCodeAt(ae+2)]>>2,G[Q++]=j>>8&255,G[Q++]=255&j),G},ee.fromByteArray=function P(M){for(var j,U=M.length,K=U%3,q=[],G=16383,Q=0,$=U-K;Q<$;Q+=G)q.push(m(M,Q,Q+G>$?$:Q+G));return 1===K?q.push(l[(j=M[U-1])>>2]+l[j<<4&63]+"=="):2===K&&q.push(l[(j=(M[U-2]<<8)+M[U-1])>>10]+l[j>>4&63]+l[j<<2&63]+"="),q.join("")};for(var l=[],i=[],t=typeof Uint8Array<"u"?Uint8Array:Array,p="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",S=0;S<64;++S)l[S]=p[S],i[p.charCodeAt(S)]=S;function e(M){var j=M.length;if(j%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var U=M.indexOf("=");return-1===U&&(U=j),[U,U===j?0:4-U%4]}function w(M){return l[M>>18&63]+l[M>>12&63]+l[M>>6&63]+l[63&M]}function m(M,j,U){for(var q=[],G=j;G{"use strict";function i(p){return null!=p&&"false"!=`${p}`}function t(p,S=/\s+/){const c=[];if(null!=p){const e=Array.isArray(p)?p:`${p}`.split(S);for(const T of e){const g=`${T}`.trim();g&&c.push(g)}}return c}l.d(ee,{cc:()=>t,he:()=>i})},14105:(Ae,ee,l)=>{"use strict";var i=l(917),t=l(3342),p=l(27054).Buffer;function S(T){var d,g=T.modulus.byteLength();do{d=new i(t(g))}while(d.cmp(T.modulus)>=0||!d.umod(T.prime1)||!d.umod(T.prime2));return d}function e(T,g){var d=function c(T){var g=S(T);return{blinder:g.toRed(i.mont(T.modulus)).redPow(new i(T.publicExponent)).fromRed(),unblinder:g.invm(T.modulus)}}(g),w=g.modulus.byteLength(),m=new i(T).mul(d.blinder).umod(g.modulus),P=m.toRed(i.mont(g.prime1)),M=m.toRed(i.mont(g.prime2)),j=g.coefficient,U=g.prime1,K=g.prime2,q=P.redPow(g.exponent1).fromRed(),G=M.redPow(g.exponent2).fromRed(),Q=q.isub(G).imul(j).umod(U).imul(K);return G.iadd(Q).imul(d.unblinder).umod(g.modulus).toArrayLike(p,"be",w)}e.getr=S,Ae.exports=e},14117:(Ae,ee,l)=>{"use strict";l.d(ee,{q:()=>t,y:()=>p});var i=l(30017);class t{}function p(S){return S&&"function"==typeof S.connect&&!(S instanceof i.G)}},14981:Ae=>{"use strict";Ae.exports=Math.min},15066:(Ae,ee,l)=>{var i=ee;i.Reporter=l(85697).a,i.DecoderBuffer=l(97290).t,i.EncoderBuffer=l(97290).d,i.Node=l(34320)},15196:(Ae,ee,l)=>{"use strict";l.d(ee,{C:()=>p,U:()=>S});var i=l(31635),t=l(98071);function p(c){return(0,i.AQ)(this,arguments,function*(){const T=c.getReader();try{for(;;){const{value:g,done:d}=yield(0,i.N3)(T.read());if(d)return yield(0,i.N3)(void 0);yield yield(0,i.N3)(g)}}finally{T.releaseLock()}})}function S(c){return(0,t.T)(c?.getReader)}},15283:(Ae,ee,l)=>{"use strict";var i=l(68283),t=l(12901),p=i.rotl32,S=i.sum32,c=i.sum32_3,e=i.sum32_4,T=t.BlockHash;function g(){if(!(this instanceof g))return new g;T.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.endian="little"}function d(K,q,G,Q){return K<=15?q^G^Q:K<=31?q&G|~q&Q:K<=47?(q|~G)^Q:K<=63?q&Q|G&~Q:q^(G|~Q)}function w(K){return K<=15?0:K<=31?1518500249:K<=47?1859775393:K<=63?2400959708:2840853838}function m(K){return K<=15?1352829926:K<=31?1548603684:K<=47?1836072691:K<=63?2053994217:0}i.inherits(g,T),ee.ripemd160=g,g.blockSize=512,g.outSize=160,g.hmacStrength=192,g.padLength=64,g.prototype._update=function(q,G){for(var Q=this.h[0],$=this.h[1],ae=this.h[2],ue=this.h[3],oe=this.h[4],he=Q,me=$,Te=ae,D=ue,n=oe,o=0;o<80;o++){var f=S(p(e(Q,d(o,$,ae,ue),q[P[o]+G],w(o)),j[o]),oe);Q=oe,oe=ue,ue=p(ae,10),ae=$,$=f,f=S(p(e(he,d(79-o,me,Te,D),q[M[o]+G],m(o)),U[o]),n),he=n,n=D,D=p(Te,10),Te=me,me=f}f=c(this.h[1],ae,D),this.h[1]=c(this.h[2],ue,n),this.h[2]=c(this.h[3],oe,he),this.h[3]=c(this.h[4],Q,me),this.h[4]=c(this.h[0],$,Te),this.h[0]=f},g.prototype._digest=function(q){return"hex"===q?i.toHex32(this.h,"little"):i.split32(this.h,"little")};var P=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13],M=[5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11],j=[11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6],U=[8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]},15340:()=>{},15492:(Ae,ee,l)=>{"use strict";function t(Be){var _e=this;this.next=null,this.entry=null,this.finish=function(){!function be(Be,_e,ye){var Le=Be.entry;for(Be.entry=null;Le;){var Ke=Le.callback;_e.pendingcb--,Ke(ye),Le=Le.next}_e.corkedRequestsFree.next=Be}(_e,Be)}}var p;Ae.exports=Te,Te.WritableState=he;var me,S={deprecate:l(3398)},c=l(12601),e=l(83838).Buffer,T=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},w=l(88152),P=l(22827).getHighWaterMark,M=l(30464).F,j=M.ERR_INVALID_ARG_TYPE,U=M.ERR_METHOD_NOT_IMPLEMENTED,K=M.ERR_MULTIPLE_CALLBACK,q=M.ERR_STREAM_CANNOT_PIPE,G=M.ERR_STREAM_DESTROYED,Q=M.ERR_STREAM_NULL_VALUES,$=M.ERR_STREAM_WRITE_AFTER_END,ae=M.ERR_UNKNOWN_ENCODING,ue=w.errorOrDestroy;function oe(){}function he(Be,_e,ye){p=p||l(1030),"boolean"!=typeof ye&&(ye=_e instanceof p),this.objectMode=!!(Be=Be||{}).objectMode,ye&&(this.objectMode=this.objectMode||!!Be.writableObjectMode),this.highWaterMark=P(this,Be,"writableHighWaterMark",ye),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1,this.decodeStrings=!(!1===Be.decodeStrings),this.defaultEncoding=Be.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(Ke){!function k(Be,_e){var ye=Be._writableState,Le=ye.sync,Ke=ye.writecb;if("function"!=typeof Ke)throw new K;if(function A(Be){Be.writing=!1,Be.writecb=null,Be.length-=Be.writelen,Be.writelen=0}(ye),_e)!function b(Be,_e,ye,Le,Ke){--_e.pendingcb,ye?(process.nextTick(Ke,Le),process.nextTick(re,Be,_e),Be._writableState.errorEmitted=!0,ue(Be,Le)):(Ke(Le),Be._writableState.errorEmitted=!0,ue(Be,Le),re(Be,_e))}(Be,ye,Le,_e,Ke);else{var ge=W(ye)||Be.destroyed;!ge&&!ye.corked&&!ye.bufferProcessing&&ye.bufferedRequest&&_(Be,ye),Le?process.nextTick(x,Be,ye,ge,Ke):x(Be,ye,ge,Ke)}}(_e,Ke)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=!1!==Be.emitClose,this.autoDestroy=!!Be.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new t(this)}function Te(Be){var _e=this instanceof(p=p||l(1030));if(!_e&&!me.call(Te,this))return new Te(Be);this._writableState=new he(Be,this,_e),this.writable=!0,Be&&("function"==typeof Be.write&&(this._write=Be.write),"function"==typeof Be.writev&&(this._writev=Be.writev),"function"==typeof Be.destroy&&(this._destroy=Be.destroy),"function"==typeof Be.final&&(this._final=Be.final)),c.call(this)}function h(Be,_e,ye,Le,Ke,ge,ve){_e.writelen=Le,_e.writecb=ve,_e.writing=!0,_e.sync=!0,_e.destroyed?_e.onwrite(new G("write")):ye?Be._writev(Ke,_e.onwrite):Be._write(Ke,ge,_e.onwrite),_e.sync=!1}function x(Be,_e,ye,Le){ye||function r(Be,_e){0===_e.length&&_e.needDrain&&(_e.needDrain=!1,Be.emit("drain"))}(Be,_e),_e.pendingcb--,Le(),re(Be,_e)}function _(Be,_e){_e.bufferProcessing=!0;var ye=_e.bufferedRequest;if(Be._writev&&ye&&ye.next){var Ke=new Array(_e.bufferedRequestCount),ge=_e.corkedRequestsFree;ge.entry=ye;for(var ve=0,Oe=!0;ye;)Ke[ve]=ye,ye.isBuf||(Oe=!1),ye=ye.next,ve+=1;Ke.allBuffers=Oe,h(Be,_e,!0,_e.length,Ke,"",ge.finish),_e.pendingcb++,_e.lastBufferedRequest=null,ge.next?(_e.corkedRequestsFree=ge.next,ge.next=null):_e.corkedRequestsFree=new t(_e),_e.bufferedRequestCount=0}else{for(;ye;){var Ee=ye.chunk;if(h(Be,_e,!1,_e.objectMode?1:Ee.length,Ee,ye.encoding,ye.callback),ye=ye.next,_e.bufferedRequestCount--,_e.writing)break}null===ye&&(_e.lastBufferedRequest=null)}_e.bufferedRequest=ye,_e.bufferProcessing=!1}function W(Be){return Be.ending&&0===Be.length&&null===Be.bufferedRequest&&!Be.finished&&!Be.writing}function I(Be,_e){Be._final(function(ye){_e.pendingcb--,ye&&ue(Be,ye),_e.prefinished=!0,Be.emit("prefinish"),re(Be,_e)})}function re(Be,_e){var ye=W(_e);if(ye&&(function B(Be,_e){!_e.prefinished&&!_e.finalCalled&&("function"!=typeof Be._final||_e.destroyed?(_e.prefinished=!0,Be.emit("prefinish")):(_e.pendingcb++,_e.finalCalled=!0,process.nextTick(I,Be,_e)))}(Be,_e),0===_e.pendingcb&&(_e.finished=!0,Be.emit("finish"),_e.autoDestroy))){var Le=Be._readableState;(!Le||Le.autoDestroy&&Le.endEmitted)&&Be.destroy()}return ye}l(71993)(Te,c),he.prototype.getBuffer=function(){for(var _e=this.bufferedRequest,ye=[];_e;)ye.push(_e),_e=_e.next;return ye},function(){try{Object.defineProperty(he.prototype,"buffer",{get:S.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch{}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(me=Function.prototype[Symbol.hasInstance],Object.defineProperty(Te,Symbol.hasInstance,{value:function(_e){return!!me.call(this,_e)||this===Te&&_e&&_e._writableState instanceof he}})):me=function(_e){return _e instanceof this},Te.prototype.pipe=function(){ue(this,new q)},Te.prototype.write=function(Be,_e,ye){var Le=this._writableState,Ke=!1,ge=!Le.objectMode&&function d(Be){return e.isBuffer(Be)||Be instanceof T}(Be);return ge&&!e.isBuffer(Be)&&(Be=function g(Be){return e.from(Be)}(Be)),"function"==typeof _e&&(ye=_e,_e=null),ge?_e="buffer":_e||(_e=Le.defaultEncoding),"function"!=typeof ye&&(ye=oe),Le.ending?function D(Be,_e){var ye=new $;ue(Be,ye),process.nextTick(_e,ye)}(this,ye):(ge||function n(Be,_e,ye,Le){var Ke;return null===ye?Ke=new Q:"string"!=typeof ye&&!_e.objectMode&&(Ke=new j("chunk",["string","Buffer"],ye)),!Ke||(ue(Be,Ke),process.nextTick(Le,Ke),!1)}(this,Le,Be,ye))&&(Le.pendingcb++,Ke=function f(Be,_e,ye,Le,Ke,ge){if(!ye){var ve=function o(Be,_e,ye){return!Be.objectMode&&!1!==Be.decodeStrings&&"string"==typeof _e&&(_e=e.from(_e,ye)),_e}(_e,Le,Ke);Le!==ve&&(ye=!0,Ke="buffer",Le=ve)}var Oe=_e.objectMode?1:Le.length;_e.length+=Oe;var Ee=_e.length<_e.highWaterMark;if(Ee||(_e.needDrain=!0),_e.writing||_e.corked){var dt=_e.lastBufferedRequest;_e.lastBufferedRequest={chunk:Le,encoding:Ke,isBuf:ye,callback:ge,next:null},dt?dt.next=_e.lastBufferedRequest:_e.bufferedRequest=_e.lastBufferedRequest,_e.bufferedRequestCount+=1}else h(Be,_e,!1,Oe,Le,Ke,ge);return Ee}(this,Le,ge,Be,_e,ye)),Ke},Te.prototype.cork=function(){this._writableState.corked++},Te.prototype.uncork=function(){var Be=this._writableState;Be.corked&&(Be.corked--,!Be.writing&&!Be.corked&&!Be.bufferProcessing&&Be.bufferedRequest&&_(this,Be))},Te.prototype.setDefaultEncoding=function(_e){if("string"==typeof _e&&(_e=_e.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((_e+"").toLowerCase())>-1))throw new ae(_e);return this._writableState.defaultEncoding=_e,this},Object.defineProperty(Te.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(Te.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Te.prototype._write=function(Be,_e,ye){ye(new U("_write()"))},Te.prototype._writev=null,Te.prototype.end=function(Be,_e,ye){var Le=this._writableState;return"function"==typeof Be?(ye=Be,Be=null,_e=null):"function"==typeof _e&&(ye=_e,_e=null),null!=Be&&this.write(Be,_e),Le.corked&&(Le.corked=1,this.uncork()),Le.ending||function pe(Be,_e,ye){_e.ending=!0,re(Be,_e),ye&&(_e.finished?process.nextTick(ye):Be.once("finish",ye)),_e.ended=!0,Be.writable=!1}(this,Le,ye),this},Object.defineProperty(Te.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(Te.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(_e){this._writableState&&(this._writableState.destroyed=_e)}}),Te.prototype.destroy=w.destroy,Te.prototype._undestroy=w.undestroy,Te.prototype._destroy=function(Be,_e){_e(Be)}},15526:(Ae,ee,l)=>{"use strict";Object.defineProperty(ee,"__esModule",{value:!0});var t=function i(c){return c&&"object"==typeof c&&"default"in c?c.default:c}(l(47851));ee.keyDecoder=(c,e)=>t.decode(c).toString(e),ee.keyEncoder=(c,e)=>t.encode(Buffer.from(c,e).toString("ascii")).toString().replace(/=/g,"")},15579:Ae=>{"use strict";Ae.exports=JSON.parse('{"2.16.840.1.101.3.4.1.1":"aes-128-ecb","2.16.840.1.101.3.4.1.2":"aes-128-cbc","2.16.840.1.101.3.4.1.3":"aes-128-ofb","2.16.840.1.101.3.4.1.4":"aes-128-cfb","2.16.840.1.101.3.4.1.21":"aes-192-ecb","2.16.840.1.101.3.4.1.22":"aes-192-cbc","2.16.840.1.101.3.4.1.23":"aes-192-ofb","2.16.840.1.101.3.4.1.24":"aes-192-cfb","2.16.840.1.101.3.4.1.41":"aes-256-ecb","2.16.840.1.101.3.4.1.42":"aes-256-cbc","2.16.840.1.101.3.4.1.43":"aes-256-ofb","2.16.840.1.101.3.4.1.44":"aes-256-cfb"}')},16038:(Ae,ee,l)=>{"use strict";l.d(ee,{Cc:()=>I,PW:()=>Q,eI:()=>r});var i=l(2615),t=l(73664),p=l(17705),S=l(29340),c=l(72200),e=l(60177),d=(l(14085),l(56977),l(345));let K=(()=>{class B extends S.DJ{constructor(pe,be,Be,_e,ye,Le,Ke){super(pe,null,be,Be),this.ngClassInstance=Ke,this.DIRECTIVE_KEY="ngClass",this.ngClassInstance||(this.ngClassInstance=new c.YU(_e,ye,pe,Le)),this.init(),this.setValue("","")}set klass(pe){this.ngClassInstance.klass=pe,this.setValue(pe,"")}updateWithValue(pe){this.ngClassInstance.ngClass=pe,this.ngClassInstance.ngDoCheck()}ngDoCheck(){this.ngClassInstance.ngDoCheck()}}return B.\u0275fac=function(pe){return new(pe||B)(t.rXU(t.aKT),t.rXU(S.ZH),t.rXU(S.qH),t.rXU(p._q3),t.rXU(p.MKu),t.rXU(t.sFG),t.rXU(c.YU,10))},B.\u0275dir=t.FsC({type:B,inputs:{klass:[0,"class","klass"]},standalone:!1,features:[t.Vt3]}),B})();const q=["ngClass","ngClass.xs","ngClass.sm","ngClass.md","ngClass.lg","ngClass.xl","ngClass.lt-sm","ngClass.lt-md","ngClass.lt-lg","ngClass.lt-xl","ngClass.gt-xs","ngClass.gt-sm","ngClass.gt-md","ngClass.gt-lg"];let Q=(()=>{class B extends K{constructor(){super(...arguments),this.inputs=q}}return B.\u0275fac=(()=>{let re;return function(be){return(re||(re=t.xGo(B)))(be||B)}})(),B.\u0275dir=t.FsC({type:B,selectors:[["","ngClass",""],["","ngClass.xs",""],["","ngClass.sm",""],["","ngClass.md",""],["","ngClass.lg",""],["","ngClass.xl",""],["","ngClass.lt-sm",""],["","ngClass.lt-md",""],["","ngClass.lt-lg",""],["","ngClass.lt-xl",""],["","ngClass.gt-xs",""],["","ngClass.gt-sm",""],["","ngClass.gt-md",""],["","ngClass.gt-lg",""]],inputs:{ngClass:"ngClass","ngClass.xs":"ngClass.xs","ngClass.sm":"ngClass.sm","ngClass.md":"ngClass.md","ngClass.lg":"ngClass.lg","ngClass.xl":"ngClass.xl","ngClass.lt-sm":"ngClass.lt-sm","ngClass.lt-md":"ngClass.lt-md","ngClass.lt-lg":"ngClass.lt-lg","ngClass.lt-xl":"ngClass.lt-xl","ngClass.gt-xs":"ngClass.gt-xs","ngClass.gt-sm":"ngClass.gt-sm","ngClass.gt-md":"ngClass.gt-md","ngClass.gt-lg":"ngClass.gt-lg"},standalone:!1,features:[t.Vt3]}),B})();class Te{constructor(re,pe,be=!0){this.key=re,this.value=pe,this.key=be?re.replace(/['"]/g,"").trim():re.trim(),this.value=be?pe.replace(/['"]/g,"").trim():pe.trim(),this.value=this.value.replace(/;/,"")}}function D(B){let re=typeof B;return"object"===re?B.constructor===Array?"array":B.constructor===Set?"set":"object":re}function h(B){const[re,...pe]=B.split(":");return new Te(re,pe.join(":"))}function b(B,re){return re.key&&(B[re.key]=re.value),B}let A=(()=>{class B extends S.DJ{constructor(pe,be,Be,_e,ye,Le,Ke,ge,ve){super(pe,null,be,Be),this.sanitizer=_e,this.ngStyleInstance=Ke,this.DIRECTIVE_KEY="ngStyle",this.ngStyleInstance||(this.ngStyleInstance=new c.B3(pe,ye,Le)),this.init();const Oe=this.nativeElement.getAttribute("style")??"";this.fallbackStyles=this.buildStyleMap(Oe),this.isServer=ge&&(0,e.Vy)(ve)}updateWithValue(pe){const be=this.buildStyleMap(pe);this.ngStyleInstance.ngStyle={...this.fallbackStyles,...be},this.isServer&&this.applyStyleToElement(be),this.ngStyleInstance.ngDoCheck()}clearStyles(){this.ngStyleInstance.ngStyle=this.fallbackStyles,this.ngStyleInstance.ngDoCheck()}buildStyleMap(pe){const be=Be=>this.sanitizer.sanitize(t.WPN.STYLE,Be)??"";if(pe)switch(D(pe)){case"string":return _(function n(B,re=";"){return String(B).trim().split(re).map(pe=>pe.trim()).filter(pe=>""!==pe)}(pe),be);case"array":return _(pe,be);default:return function f(B,re){let pe=[];return"set"===D(B)?B.forEach(be=>pe.push(be)):Object.keys(B).forEach(be=>{pe.push(`${be}:${B[be]}`)}),function o(B,re){return B.map(h).filter(be=>!!be).map(be=>(re&&(be.value=re(be.value)),be)).reduce(b,{})}(pe,re)}(pe,be)}return{}}ngDoCheck(){this.ngStyleInstance.ngDoCheck()}}return B.\u0275fac=function(pe){return new(pe||B)(t.rXU(t.aKT),t.rXU(S.ZH),t.rXU(S.qH),t.rXU(d.up),t.rXU(p.MKu),t.rXU(t.sFG),t.rXU(c.B3,10),t.rXU(S.Ce),t.rXU(t.Agw))},B.\u0275dir=t.FsC({type:B,standalone:!1,features:[t.Vt3]}),B})();const k=["ngStyle","ngStyle.xs","ngStyle.sm","ngStyle.md","ngStyle.lg","ngStyle.xl","ngStyle.lt-sm","ngStyle.lt-md","ngStyle.lt-lg","ngStyle.lt-xl","ngStyle.gt-xs","ngStyle.gt-sm","ngStyle.gt-md","ngStyle.gt-lg"];let r=(()=>{class B extends A{constructor(){super(...arguments),this.inputs=k}}return B.\u0275fac=(()=>{let re;return function(be){return(re||(re=t.xGo(B)))(be||B)}})(),B.\u0275dir=t.FsC({type:B,selectors:[["","ngStyle",""],["","ngStyle.xs",""],["","ngStyle.sm",""],["","ngStyle.md",""],["","ngStyle.lg",""],["","ngStyle.xl",""],["","ngStyle.lt-sm",""],["","ngStyle.lt-md",""],["","ngStyle.lt-lg",""],["","ngStyle.lt-xl",""],["","ngStyle.gt-xs",""],["","ngStyle.gt-sm",""],["","ngStyle.gt-md",""],["","ngStyle.gt-lg",""]],inputs:{ngStyle:"ngStyle","ngStyle.xs":"ngStyle.xs","ngStyle.sm":"ngStyle.sm","ngStyle.md":"ngStyle.md","ngStyle.lg":"ngStyle.lg","ngStyle.xl":"ngStyle.xl","ngStyle.lt-sm":"ngStyle.lt-sm","ngStyle.lt-md":"ngStyle.lt-md","ngStyle.lt-lg":"ngStyle.lt-lg","ngStyle.lt-xl":"ngStyle.lt-xl","ngStyle.gt-xs":"ngStyle.gt-xs","ngStyle.gt-sm":"ngStyle.gt-sm","ngStyle.gt-md":"ngStyle.gt-md","ngStyle.gt-lg":"ngStyle.gt-lg"},standalone:!1,features:[t.Vt3]}),B})();function _(B,re){return B.map(h).filter(be=>!!be).map(be=>(re&&(be.value=re(be.value)),be)).reduce(b,{})}let I=(()=>{class B{}return B.\u0275fac=function(pe){return new(pe||B)},B.\u0275mod=t.$C({type:B}),B.\u0275inj=i.G2t({imports:[S.Ui]}),B})()},16508:function(Ae,ee,l){!function(i,t){"use strict";function p(D,n){if(!D)throw new Error(n||"Assertion failed")}function S(D,n){D.super_=n;var o=function(){};o.prototype=n.prototype,D.prototype=new o,D.prototype.constructor=D}function c(D,n,o){if(c.isBN(D))return D;this.negative=0,this.words=null,this.length=0,this.red=null,null!==D&&(("le"===n||"be"===n)&&(o=n,n=10),this._init(D||0,n||10,o||"be"))}var e;"object"==typeof i?i.exports=c:t.BN=c,c.BN=c,c.wordSize=26;try{e=typeof window<"u"&&typeof window.Buffer<"u"?window.Buffer:l(51069).Buffer}catch{}function T(D,n){var o=D.charCodeAt(n);return o>=65&&o<=70?o-55:o>=97&&o<=102?o-87:o-48&15}function g(D,n,o){var f=T(D,o);return o-1>=n&&(f|=T(D,o-1)<<4),f}function d(D,n,o,f){for(var h=0,b=Math.min(D.length,o),A=n;A=49?k-49+10:k>=17?k-17+10:k}return h}c.isBN=function(n){return n instanceof c||null!==n&&"object"==typeof n&&n.constructor.wordSize===c.wordSize&&Array.isArray(n.words)},c.max=function(n,o){return n.cmp(o)>0?n:o},c.min=function(n,o){return n.cmp(o)<0?n:o},c.prototype._init=function(n,o,f){if("number"==typeof n)return this._initNumber(n,o,f);if("object"==typeof n)return this._initArray(n,o,f);"hex"===o&&(o=16),p(o===(0|o)&&o>=2&&o<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[b]|=(A=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-k&67108863,(k+=24)>=26&&(k-=26,b++);else if("le"===f)for(h=0,b=0;h>>26-k&67108863,(k+=24)>=26&&(k-=26,b++);return this.strip()},c.prototype._parseHex=function(n,o,f){this.length=Math.ceil((n.length-o)/6),this.words=new Array(this.length);for(var h=0;h=o;h-=2)k=g(n,o,h)<=18?(b-=18,this.words[A+=1]|=k>>>26):b+=8;else for(h=(n.length-o)%2==0?o+1:o;h=18?(b-=18,this.words[A+=1]|=k>>>26):b+=8;this.strip()},c.prototype._parseBase=function(n,o,f){this.words=[0],this.length=1;for(var h=0,b=1;b<=67108863;b*=o)h++;h--,b=b/o|0;for(var A=n.length-f,k=A%h,x=Math.min(A,A-k)+f,r=0,_=f;_1&&0===this.words[this.length-1];)this.length--;return this._normSign()},c.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},c.prototype.inspect=function(){return(this.red?""};var w=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],m=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],P=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function j(D,n,o){o.negative=n.negative^D.negative;var f=D.length+n.length|0;o.length=f,f=f-1|0;var h=0|D.words[0],b=0|n.words[0],A=h*b,x=A/67108864|0;o.words[0]=67108863&A;for(var r=1;r>>26,W=67108863&x,I=Math.min(r,n.length-1),B=Math.max(0,r-D.length+1);B<=I;B++)_+=(A=(h=0|D.words[r-B|0])*(b=0|n.words[B])+W)/67108864|0,W=67108863&A;o.words[r]=0|W,x=0|_}return 0!==x?o.words[r]=0|x:o.length--,o.strip()}c.prototype.toString=function(n,o){var f;if(o=0|o||1,16===(n=n||10)||"hex"===n){f="";for(var h=0,b=0,A=0;A>>24-h&16777215,(h+=2)>=26&&(h-=26,A--),f=0!==b||A!==this.length-1?w[6-x.length]+x+f:x+f}for(0!==b&&(f=b.toString(16)+f);f.length%o!==0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}if(n===(0|n)&&n>=2&&n<=36){var r=m[n],_=P[n];f="";var W=this.clone();for(W.negative=0;!W.isZero();){var I=W.modn(_).toString(n);f=(W=W.idivn(_)).isZero()?I+f:w[r-I.length]+I+f}for(this.isZero()&&(f="0"+f);f.length%o!==0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}p(!1,"Base should be between 2 and 36")},c.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&p(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},c.prototype.toJSON=function(){return this.toString(16)},c.prototype.toBuffer=function(n,o){return p(typeof e<"u"),this.toArrayLike(e,n,o)},c.prototype.toArray=function(n,o){return this.toArrayLike(Array,n,o)},c.prototype.toArrayLike=function(n,o,f){var h=this.byteLength(),b=f||Math.max(1,h);p(h<=b,"byte array longer than desired length"),p(b>0,"Requested array length <= 0"),this.strip();var x,r,A="le"===o,k=new n(b),_=this.clone();if(A){for(r=0;!_.isZero();r++)x=_.andln(255),_.iushrn(8),k[r]=x;for(;r=4096&&(f+=13,o>>>=13),o>=64&&(f+=7,o>>>=7),o>=8&&(f+=4,o>>>=4),o>=2&&(f+=2,o>>>=2),f+o},c.prototype._zeroBits=function(n){if(0===n)return 26;var o=n,f=0;return!(8191&o)&&(f+=13,o>>>=13),!(127&o)&&(f+=7,o>>>=7),!(15&o)&&(f+=4,o>>>=4),!(3&o)&&(f+=2,o>>>=2),!(1&o)&&f++,f},c.prototype.bitLength=function(){var o=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+o},c.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,o=0;on.length?this.clone().ior(n):n.clone().ior(this)},c.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},c.prototype.iuand=function(n){var o;o=this.length>n.length?n:this;for(var f=0;fn.length?this.clone().iand(n):n.clone().iand(this)},c.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},c.prototype.iuxor=function(n){var o,f;this.length>n.length?(o=this,f=n):(o=n,f=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},c.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},c.prototype.inotn=function(n){p("number"==typeof n&&n>=0);var o=0|Math.ceil(n/26),f=n%26;this._expand(o),f>0&&o--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-f),this.strip()},c.prototype.notn=function(n){return this.clone().inotn(n)},c.prototype.setn=function(n,o){p("number"==typeof n&&n>=0);var f=n/26|0,h=n%26;return this._expand(f+1),this.words[f]=o?this.words[f]|1<n.length?(f=this,h=n):(f=n,h=this);for(var b=0,A=0;A>>26;for(;0!==b&&A>>26;if(this.length=f.length,0!==b)this.words[this.length]=b,this.length++;else if(f!==this)for(;An.length?this.clone().iadd(n):n.clone().iadd(this)},c.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var o=this.iadd(n);return n.negative=1,o._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,b,f=this.cmp(n);if(0===f)return this.negative=0,this.length=1,this.words[0]=0,this;f>0?(h=this,b=n):(h=n,b=this);for(var A=0,k=0;k>26,this.words[k]=67108863&o;for(;0!==A&&k>26,this.words[k]=67108863&o;if(0===A&&k>>13,re=0|h[1],pe=8191&re,be=re>>>13,Be=0|h[2],_e=8191&Be,ye=Be>>>13,Le=0|h[3],Ke=8191&Le,ge=Le>>>13,ve=0|h[4],Oe=8191&ve,Ee=ve>>>13,dt=0|h[5],nt=8191&dt,Ct=dt>>>13,Mt=0|h[6],lt=8191&Mt,Pe=Mt>>>13,Ht=0|h[7],ct=8191&Ht,Ce=Ht>>>13,ze=0|h[8],Z=8191&ze,J=ze>>>13,fe=0|h[9],Ie=8191&fe,ht=fe>>>13,li=0|b[0],Qt=8191&li,di=li>>>13,kt=0|b[1],Rt=8191&kt,le=kt>>>13,te=0|b[2],ce=8191&te,se=te>>>13,ke=0|b[3],Ue=8191&ke,Ne=ke>>>13,Kt=0|b[4],yt=8191&Kt,Vt=Kt>>>13,Zt=0|b[5],ti=8191&Zt,Ye=Zt>>>13,Nt=0|b[6],Et=8191&Nt,Jt=Nt>>>13,qe=0|b[7],$e=8191&qe,tt=qe>>>13,vi=0|b[8],ei=8191&vi,ci=vi>>>13,Hi=0|b[9],oi=8191&Hi,ui=Hi>>>13;f.negative=n.negative^o.negative,f.length=19;var ln=(k+(x=Math.imul(I,Qt))|0)+((8191&(r=(r=Math.imul(I,di))+Math.imul(B,Qt)|0))<<13)|0;k=((_=Math.imul(B,di))+(r>>>13)|0)+(ln>>>26)|0,ln&=67108863,x=Math.imul(pe,Qt),r=(r=Math.imul(pe,di))+Math.imul(be,Qt)|0,_=Math.imul(be,di);var nn=(k+(x=x+Math.imul(I,Rt)|0)|0)+((8191&(r=(r=r+Math.imul(I,le)|0)+Math.imul(B,Rt)|0))<<13)|0;k=((_=_+Math.imul(B,le)|0)+(r>>>13)|0)+(nn>>>26)|0,nn&=67108863,x=Math.imul(_e,Qt),r=(r=Math.imul(_e,di))+Math.imul(ye,Qt)|0,_=Math.imul(ye,di),x=x+Math.imul(pe,Rt)|0,r=(r=r+Math.imul(pe,le)|0)+Math.imul(be,Rt)|0,_=_+Math.imul(be,le)|0;var dn=(k+(x=x+Math.imul(I,ce)|0)|0)+((8191&(r=(r=r+Math.imul(I,se)|0)+Math.imul(B,ce)|0))<<13)|0;k=((_=_+Math.imul(B,se)|0)+(r>>>13)|0)+(dn>>>26)|0,dn&=67108863,x=Math.imul(Ke,Qt),r=(r=Math.imul(Ke,di))+Math.imul(ge,Qt)|0,_=Math.imul(ge,di),x=x+Math.imul(_e,Rt)|0,r=(r=r+Math.imul(_e,le)|0)+Math.imul(ye,Rt)|0,_=_+Math.imul(ye,le)|0,x=x+Math.imul(pe,ce)|0,r=(r=r+Math.imul(pe,se)|0)+Math.imul(be,ce)|0,_=_+Math.imul(be,se)|0;var zn=(k+(x=x+Math.imul(I,Ue)|0)|0)+((8191&(r=(r=r+Math.imul(I,Ne)|0)+Math.imul(B,Ue)|0))<<13)|0;k=((_=_+Math.imul(B,Ne)|0)+(r>>>13)|0)+(zn>>>26)|0,zn&=67108863,x=Math.imul(Oe,Qt),r=(r=Math.imul(Oe,di))+Math.imul(Ee,Qt)|0,_=Math.imul(Ee,di),x=x+Math.imul(Ke,Rt)|0,r=(r=r+Math.imul(Ke,le)|0)+Math.imul(ge,Rt)|0,_=_+Math.imul(ge,le)|0,x=x+Math.imul(_e,ce)|0,r=(r=r+Math.imul(_e,se)|0)+Math.imul(ye,ce)|0,_=_+Math.imul(ye,se)|0,x=x+Math.imul(pe,Ue)|0,r=(r=r+Math.imul(pe,Ne)|0)+Math.imul(be,Ue)|0,_=_+Math.imul(be,Ne)|0;var It=(k+(x=x+Math.imul(I,yt)|0)|0)+((8191&(r=(r=r+Math.imul(I,Vt)|0)+Math.imul(B,yt)|0))<<13)|0;k=((_=_+Math.imul(B,Vt)|0)+(r>>>13)|0)+(It>>>26)|0,It&=67108863,x=Math.imul(nt,Qt),r=(r=Math.imul(nt,di))+Math.imul(Ct,Qt)|0,_=Math.imul(Ct,di),x=x+Math.imul(Oe,Rt)|0,r=(r=r+Math.imul(Oe,le)|0)+Math.imul(Ee,Rt)|0,_=_+Math.imul(Ee,le)|0,x=x+Math.imul(Ke,ce)|0,r=(r=r+Math.imul(Ke,se)|0)+Math.imul(ge,ce)|0,_=_+Math.imul(ge,se)|0,x=x+Math.imul(_e,Ue)|0,r=(r=r+Math.imul(_e,Ne)|0)+Math.imul(ye,Ue)|0,_=_+Math.imul(ye,Ne)|0,x=x+Math.imul(pe,yt)|0,r=(r=r+Math.imul(pe,Vt)|0)+Math.imul(be,yt)|0,_=_+Math.imul(be,Vt)|0;var Tt=(k+(x=x+Math.imul(I,ti)|0)|0)+((8191&(r=(r=r+Math.imul(I,Ye)|0)+Math.imul(B,ti)|0))<<13)|0;k=((_=_+Math.imul(B,Ye)|0)+(r>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,x=Math.imul(lt,Qt),r=(r=Math.imul(lt,di))+Math.imul(Pe,Qt)|0,_=Math.imul(Pe,di),x=x+Math.imul(nt,Rt)|0,r=(r=r+Math.imul(nt,le)|0)+Math.imul(Ct,Rt)|0,_=_+Math.imul(Ct,le)|0,x=x+Math.imul(Oe,ce)|0,r=(r=r+Math.imul(Oe,se)|0)+Math.imul(Ee,ce)|0,_=_+Math.imul(Ee,se)|0,x=x+Math.imul(Ke,Ue)|0,r=(r=r+Math.imul(Ke,Ne)|0)+Math.imul(ge,Ue)|0,_=_+Math.imul(ge,Ne)|0,x=x+Math.imul(_e,yt)|0,r=(r=r+Math.imul(_e,Vt)|0)+Math.imul(ye,yt)|0,_=_+Math.imul(ye,Vt)|0,x=x+Math.imul(pe,ti)|0,r=(r=r+Math.imul(pe,Ye)|0)+Math.imul(be,ti)|0,_=_+Math.imul(be,Ye)|0;var Ze=(k+(x=x+Math.imul(I,Et)|0)|0)+((8191&(r=(r=r+Math.imul(I,Jt)|0)+Math.imul(B,Et)|0))<<13)|0;k=((_=_+Math.imul(B,Jt)|0)+(r>>>13)|0)+(Ze>>>26)|0,Ze&=67108863,x=Math.imul(ct,Qt),r=(r=Math.imul(ct,di))+Math.imul(Ce,Qt)|0,_=Math.imul(Ce,di),x=x+Math.imul(lt,Rt)|0,r=(r=r+Math.imul(lt,le)|0)+Math.imul(Pe,Rt)|0,_=_+Math.imul(Pe,le)|0,x=x+Math.imul(nt,ce)|0,r=(r=r+Math.imul(nt,se)|0)+Math.imul(Ct,ce)|0,_=_+Math.imul(Ct,se)|0,x=x+Math.imul(Oe,Ue)|0,r=(r=r+Math.imul(Oe,Ne)|0)+Math.imul(Ee,Ue)|0,_=_+Math.imul(Ee,Ne)|0,x=x+Math.imul(Ke,yt)|0,r=(r=r+Math.imul(Ke,Vt)|0)+Math.imul(ge,yt)|0,_=_+Math.imul(ge,Vt)|0,x=x+Math.imul(_e,ti)|0,r=(r=r+Math.imul(_e,Ye)|0)+Math.imul(ye,ti)|0,_=_+Math.imul(ye,Ye)|0,x=x+Math.imul(pe,Et)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(be,Et)|0,_=_+Math.imul(be,Jt)|0;var Ve=(k+(x=x+Math.imul(I,$e)|0)|0)+((8191&(r=(r=r+Math.imul(I,tt)|0)+Math.imul(B,$e)|0))<<13)|0;k=((_=_+Math.imul(B,tt)|0)+(r>>>13)|0)+(Ve>>>26)|0,Ve&=67108863,x=Math.imul(Z,Qt),r=(r=Math.imul(Z,di))+Math.imul(J,Qt)|0,_=Math.imul(J,di),x=x+Math.imul(ct,Rt)|0,r=(r=r+Math.imul(ct,le)|0)+Math.imul(Ce,Rt)|0,_=_+Math.imul(Ce,le)|0,x=x+Math.imul(lt,ce)|0,r=(r=r+Math.imul(lt,se)|0)+Math.imul(Pe,ce)|0,_=_+Math.imul(Pe,se)|0,x=x+Math.imul(nt,Ue)|0,r=(r=r+Math.imul(nt,Ne)|0)+Math.imul(Ct,Ue)|0,_=_+Math.imul(Ct,Ne)|0,x=x+Math.imul(Oe,yt)|0,r=(r=r+Math.imul(Oe,Vt)|0)+Math.imul(Ee,yt)|0,_=_+Math.imul(Ee,Vt)|0,x=x+Math.imul(Ke,ti)|0,r=(r=r+Math.imul(Ke,Ye)|0)+Math.imul(ge,ti)|0,_=_+Math.imul(ge,Ye)|0,x=x+Math.imul(_e,Et)|0,r=(r=r+Math.imul(_e,Jt)|0)+Math.imul(ye,Et)|0,_=_+Math.imul(ye,Jt)|0,x=x+Math.imul(pe,$e)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(be,$e)|0,_=_+Math.imul(be,tt)|0;var Fe=(k+(x=x+Math.imul(I,ei)|0)|0)+((8191&(r=(r=r+Math.imul(I,ci)|0)+Math.imul(B,ei)|0))<<13)|0;k=((_=_+Math.imul(B,ci)|0)+(r>>>13)|0)+(Fe>>>26)|0,Fe&=67108863,x=Math.imul(Ie,Qt),r=(r=Math.imul(Ie,di))+Math.imul(ht,Qt)|0,_=Math.imul(ht,di),x=x+Math.imul(Z,Rt)|0,r=(r=r+Math.imul(Z,le)|0)+Math.imul(J,Rt)|0,_=_+Math.imul(J,le)|0,x=x+Math.imul(ct,ce)|0,r=(r=r+Math.imul(ct,se)|0)+Math.imul(Ce,ce)|0,_=_+Math.imul(Ce,se)|0,x=x+Math.imul(lt,Ue)|0,r=(r=r+Math.imul(lt,Ne)|0)+Math.imul(Pe,Ue)|0,_=_+Math.imul(Pe,Ne)|0,x=x+Math.imul(nt,yt)|0,r=(r=r+Math.imul(nt,Vt)|0)+Math.imul(Ct,yt)|0,_=_+Math.imul(Ct,Vt)|0,x=x+Math.imul(Oe,ti)|0,r=(r=r+Math.imul(Oe,Ye)|0)+Math.imul(Ee,ti)|0,_=_+Math.imul(Ee,Ye)|0,x=x+Math.imul(Ke,Et)|0,r=(r=r+Math.imul(Ke,Jt)|0)+Math.imul(ge,Et)|0,_=_+Math.imul(ge,Jt)|0,x=x+Math.imul(_e,$e)|0,r=(r=r+Math.imul(_e,tt)|0)+Math.imul(ye,$e)|0,_=_+Math.imul(ye,tt)|0,x=x+Math.imul(pe,ei)|0,r=(r=r+Math.imul(pe,ci)|0)+Math.imul(be,ei)|0,_=_+Math.imul(be,ci)|0;var it=(k+(x=x+Math.imul(I,oi)|0)|0)+((8191&(r=(r=r+Math.imul(I,ui)|0)+Math.imul(B,oi)|0))<<13)|0;k=((_=_+Math.imul(B,ui)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,x=Math.imul(Ie,Rt),r=(r=Math.imul(Ie,le))+Math.imul(ht,Rt)|0,_=Math.imul(ht,le),x=x+Math.imul(Z,ce)|0,r=(r=r+Math.imul(Z,se)|0)+Math.imul(J,ce)|0,_=_+Math.imul(J,se)|0,x=x+Math.imul(ct,Ue)|0,r=(r=r+Math.imul(ct,Ne)|0)+Math.imul(Ce,Ue)|0,_=_+Math.imul(Ce,Ne)|0,x=x+Math.imul(lt,yt)|0,r=(r=r+Math.imul(lt,Vt)|0)+Math.imul(Pe,yt)|0,_=_+Math.imul(Pe,Vt)|0,x=x+Math.imul(nt,ti)|0,r=(r=r+Math.imul(nt,Ye)|0)+Math.imul(Ct,ti)|0,_=_+Math.imul(Ct,Ye)|0,x=x+Math.imul(Oe,Et)|0,r=(r=r+Math.imul(Oe,Jt)|0)+Math.imul(Ee,Et)|0,_=_+Math.imul(Ee,Jt)|0,x=x+Math.imul(Ke,$e)|0,r=(r=r+Math.imul(Ke,tt)|0)+Math.imul(ge,$e)|0,_=_+Math.imul(ge,tt)|0,x=x+Math.imul(_e,ei)|0,r=(r=r+Math.imul(_e,ci)|0)+Math.imul(ye,ei)|0,_=_+Math.imul(ye,ci)|0;var bt=(k+(x=x+Math.imul(pe,oi)|0)|0)+((8191&(r=(r=r+Math.imul(pe,ui)|0)+Math.imul(be,oi)|0))<<13)|0;k=((_=_+Math.imul(be,ui)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863,x=Math.imul(Ie,ce),r=(r=Math.imul(Ie,se))+Math.imul(ht,ce)|0,_=Math.imul(ht,se),x=x+Math.imul(Z,Ue)|0,r=(r=r+Math.imul(Z,Ne)|0)+Math.imul(J,Ue)|0,_=_+Math.imul(J,Ne)|0,x=x+Math.imul(ct,yt)|0,r=(r=r+Math.imul(ct,Vt)|0)+Math.imul(Ce,yt)|0,_=_+Math.imul(Ce,Vt)|0,x=x+Math.imul(lt,ti)|0,r=(r=r+Math.imul(lt,Ye)|0)+Math.imul(Pe,ti)|0,_=_+Math.imul(Pe,Ye)|0,x=x+Math.imul(nt,Et)|0,r=(r=r+Math.imul(nt,Jt)|0)+Math.imul(Ct,Et)|0,_=_+Math.imul(Ct,Jt)|0,x=x+Math.imul(Oe,$e)|0,r=(r=r+Math.imul(Oe,tt)|0)+Math.imul(Ee,$e)|0,_=_+Math.imul(Ee,tt)|0,x=x+Math.imul(Ke,ei)|0,r=(r=r+Math.imul(Ke,ci)|0)+Math.imul(ge,ei)|0,_=_+Math.imul(ge,ci)|0;var ut=(k+(x=x+Math.imul(_e,oi)|0)|0)+((8191&(r=(r=r+Math.imul(_e,ui)|0)+Math.imul(ye,oi)|0))<<13)|0;k=((_=_+Math.imul(ye,ui)|0)+(r>>>13)|0)+(ut>>>26)|0,ut&=67108863,x=Math.imul(Ie,Ue),r=(r=Math.imul(Ie,Ne))+Math.imul(ht,Ue)|0,_=Math.imul(ht,Ne),x=x+Math.imul(Z,yt)|0,r=(r=r+Math.imul(Z,Vt)|0)+Math.imul(J,yt)|0,_=_+Math.imul(J,Vt)|0,x=x+Math.imul(ct,ti)|0,r=(r=r+Math.imul(ct,Ye)|0)+Math.imul(Ce,ti)|0,_=_+Math.imul(Ce,Ye)|0,x=x+Math.imul(lt,Et)|0,r=(r=r+Math.imul(lt,Jt)|0)+Math.imul(Pe,Et)|0,_=_+Math.imul(Pe,Jt)|0,x=x+Math.imul(nt,$e)|0,r=(r=r+Math.imul(nt,tt)|0)+Math.imul(Ct,$e)|0,_=_+Math.imul(Ct,tt)|0,x=x+Math.imul(Oe,ei)|0,r=(r=r+Math.imul(Oe,ci)|0)+Math.imul(Ee,ei)|0,_=_+Math.imul(Ee,ci)|0;var jt=(k+(x=x+Math.imul(Ke,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Ke,ui)|0)+Math.imul(ge,oi)|0))<<13)|0;k=((_=_+Math.imul(ge,ui)|0)+(r>>>13)|0)+(jt>>>26)|0,jt&=67108863,x=Math.imul(Ie,yt),r=(r=Math.imul(Ie,Vt))+Math.imul(ht,yt)|0,_=Math.imul(ht,Vt),x=x+Math.imul(Z,ti)|0,r=(r=r+Math.imul(Z,Ye)|0)+Math.imul(J,ti)|0,_=_+Math.imul(J,Ye)|0,x=x+Math.imul(ct,Et)|0,r=(r=r+Math.imul(ct,Jt)|0)+Math.imul(Ce,Et)|0,_=_+Math.imul(Ce,Jt)|0,x=x+Math.imul(lt,$e)|0,r=(r=r+Math.imul(lt,tt)|0)+Math.imul(Pe,$e)|0,_=_+Math.imul(Pe,tt)|0,x=x+Math.imul(nt,ei)|0,r=(r=r+Math.imul(nt,ci)|0)+Math.imul(Ct,ei)|0,_=_+Math.imul(Ct,ci)|0;var ai=(k+(x=x+Math.imul(Oe,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Oe,ui)|0)+Math.imul(Ee,oi)|0))<<13)|0;k=((_=_+Math.imul(Ee,ui)|0)+(r>>>13)|0)+(ai>>>26)|0,ai&=67108863,x=Math.imul(Ie,ti),r=(r=Math.imul(Ie,Ye))+Math.imul(ht,ti)|0,_=Math.imul(ht,Ye),x=x+Math.imul(Z,Et)|0,r=(r=r+Math.imul(Z,Jt)|0)+Math.imul(J,Et)|0,_=_+Math.imul(J,Jt)|0,x=x+Math.imul(ct,$e)|0,r=(r=r+Math.imul(ct,tt)|0)+Math.imul(Ce,$e)|0,_=_+Math.imul(Ce,tt)|0,x=x+Math.imul(lt,ei)|0,r=(r=r+Math.imul(lt,ci)|0)+Math.imul(Pe,ei)|0,_=_+Math.imul(Pe,ci)|0;var pi=(k+(x=x+Math.imul(nt,oi)|0)|0)+((8191&(r=(r=r+Math.imul(nt,ui)|0)+Math.imul(Ct,oi)|0))<<13)|0;k=((_=_+Math.imul(Ct,ui)|0)+(r>>>13)|0)+(pi>>>26)|0,pi&=67108863,x=Math.imul(Ie,Et),r=(r=Math.imul(Ie,Jt))+Math.imul(ht,Et)|0,_=Math.imul(ht,Jt),x=x+Math.imul(Z,$e)|0,r=(r=r+Math.imul(Z,tt)|0)+Math.imul(J,$e)|0,_=_+Math.imul(J,tt)|0,x=x+Math.imul(ct,ei)|0,r=(r=r+Math.imul(ct,ci)|0)+Math.imul(Ce,ei)|0,_=_+Math.imul(Ce,ci)|0;var ki=(k+(x=x+Math.imul(lt,oi)|0)|0)+((8191&(r=(r=r+Math.imul(lt,ui)|0)+Math.imul(Pe,oi)|0))<<13)|0;k=((_=_+Math.imul(Pe,ui)|0)+(r>>>13)|0)+(ki>>>26)|0,ki&=67108863,x=Math.imul(Ie,$e),r=(r=Math.imul(Ie,tt))+Math.imul(ht,$e)|0,_=Math.imul(ht,tt),x=x+Math.imul(Z,ei)|0,r=(r=r+Math.imul(Z,ci)|0)+Math.imul(J,ei)|0,_=_+Math.imul(J,ci)|0;var Ki=(k+(x=x+Math.imul(ct,oi)|0)|0)+((8191&(r=(r=r+Math.imul(ct,ui)|0)+Math.imul(Ce,oi)|0))<<13)|0;k=((_=_+Math.imul(Ce,ui)|0)+(r>>>13)|0)+(Ki>>>26)|0,Ki&=67108863,x=Math.imul(Ie,ei),r=(r=Math.imul(Ie,ci))+Math.imul(ht,ei)|0,_=Math.imul(ht,ci);var Ji=(k+(x=x+Math.imul(Z,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Z,ui)|0)+Math.imul(J,oi)|0))<<13)|0;k=((_=_+Math.imul(J,ui)|0)+(r>>>13)|0)+(Ji>>>26)|0,Ji&=67108863;var Dn=(k+(x=Math.imul(Ie,oi))|0)+((8191&(r=(r=Math.imul(Ie,ui))+Math.imul(ht,oi)|0))<<13)|0;return k=((_=Math.imul(ht,ui))+(r>>>13)|0)+(Dn>>>26)|0,Dn&=67108863,A[0]=ln,A[1]=nn,A[2]=dn,A[3]=zn,A[4]=It,A[5]=Tt,A[6]=Ze,A[7]=Ve,A[8]=Fe,A[9]=it,A[10]=bt,A[11]=ut,A[12]=jt,A[13]=ai,A[14]=pi,A[15]=ki,A[16]=Ki,A[17]=Ji,A[18]=Dn,0!==k&&(A[19]=k,f.length++),f};function q(D,n,o){return(new G).mulp(D,n,o)}function G(D,n){this.x=D,this.y=n}Math.imul||(U=j),c.prototype.mulTo=function(n,o){var f,h=this.length+n.length;return f=10===this.length&&10===n.length?U(this,n,o):h<63?j(this,n,o):h<1024?function K(D,n,o){o.negative=n.negative^D.negative,o.length=D.length+n.length;for(var f=0,h=0,b=0;b>>26)|0)>>>26,A&=67108863}o.words[b]=k,f=A,A=h}return 0!==f?o.words[b]=f:o.length--,o.strip()}(this,n,o):q(this,n,o),f},G.prototype.makeRBT=function(n){for(var o=new Array(n),f=c.prototype._countBits(n)-1,h=0;h>=1;return h},G.prototype.permute=function(n,o,f,h,b,A){for(var k=0;k>>=1)b++;return 1<>>=13),b>>>=13;for(A=2*o;A>=26,o+=h/67108864|0,o+=b>>>26,this.words[f]=67108863&b}return 0!==o&&(this.words[f]=o,this.length++),this.length=0===n?1:this.length,this},c.prototype.muln=function(n){return this.clone().imuln(n)},c.prototype.sqr=function(){return this.mul(this)},c.prototype.isqr=function(){return this.imul(this.clone())},c.prototype.pow=function(n){var o=function M(D){for(var n=new Array(D.bitLength()),o=0;o>>h}return n}(n);if(0===o.length)return new c(1);for(var f=this,h=0;h=0);var b,o=n%26,f=(n-o)/26,h=67108863>>>26-o<<26-o;if(0!==o){var A=0;for(b=0;b>>26-o}A&&(this.words[b]=A,this.length++)}if(0!==f){for(b=this.length-1;b>=0;b--)this.words[b+f]=this.words[b];for(b=0;b=0),h=o?(o-o%26)/26:0;var b=n%26,A=Math.min((n-b)/26,this.length),k=67108863^67108863>>>b<A)for(this.length-=A,r=0;r=0&&(0!==_||r>=h);r--){var W=0|this.words[r];this.words[r]=_<<26-b|W>>>b,_=W&k}return x&&0!==_&&(x.words[x.length++]=_),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},c.prototype.ishrn=function(n,o,f){return p(0===this.negative),this.iushrn(n,o,f)},c.prototype.shln=function(n){return this.clone().ishln(n)},c.prototype.ushln=function(n){return this.clone().iushln(n)},c.prototype.shrn=function(n){return this.clone().ishrn(n)},c.prototype.ushrn=function(n){return this.clone().iushrn(n)},c.prototype.testn=function(n){p("number"==typeof n&&n>=0);var o=n%26,f=(n-o)/26;return!(this.length<=f||!(this.words[f]&1<=0);var o=n%26,f=(n-o)/26;return p(0===this.negative,"imaskn works only with positive numbers"),this.length<=f?this:(0!==o&&f++,this.length=Math.min(f,this.length),0!==o&&(this.words[this.length-1]&=67108863^67108863>>>o<=67108864;o++)this.words[o]-=67108864,o===this.length-1?this.words[o+1]=1:this.words[o+1]++;return this.length=Math.max(this.length,o+1),this},c.prototype.isubn=function(n){if(p("number"==typeof n),p(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var o=0;o>26)-(x/67108864|0),this.words[b+f]=67108863&A}for(;b>26,this.words[b+f]=67108863&A;if(0===k)return this.strip();for(p(-1===k),k=0,b=0;b>26,this.words[b]=67108863&A;return this.negative=1,this.strip()},c.prototype._wordDiv=function(n,o){var f,h=this.clone(),b=n,A=0|b.words[b.length-1];0!=(f=26-this._countBits(A))&&(b=b.ushln(f),h.iushln(f),A=0|b.words[b.length-1]);var r,x=h.length-b.length;if("mod"!==o){(r=new c(null)).length=x+1,r.words=new Array(r.length);for(var _=0;_=0;I--){var B=67108864*(0|h.words[b.length+I])+(0|h.words[b.length+I-1]);for(B=Math.min(B/A|0,67108863),h._ishlnsubmul(b,B,I);0!==h.negative;)B--,h.negative=0,h._ishlnsubmul(b,1,I),h.isZero()||(h.negative^=1);r&&(r.words[I]=B)}return r&&r.strip(),h.strip(),"div"!==o&&0!==f&&h.iushrn(f),{div:r||null,mod:h}},c.prototype.divmod=function(n,o,f){return p(!n.isZero()),this.isZero()?{div:new c(0),mod:new c(0)}:0!==this.negative&&0===n.negative?(A=this.neg().divmod(n,o),"mod"!==o&&(h=A.div.neg()),"div"!==o&&(b=A.mod.neg(),f&&0!==b.negative&&b.iadd(n)),{div:h,mod:b}):0===this.negative&&0!==n.negative?(A=this.divmod(n.neg(),o),"mod"!==o&&(h=A.div.neg()),{div:h,mod:A.mod}):0!==(this.negative&n.negative)?(A=this.neg().divmod(n.neg(),o),"div"!==o&&(b=A.mod.neg(),f&&0!==b.negative&&b.isub(n)),{div:A.div,mod:b}):n.length>this.length||this.cmp(n)<0?{div:new c(0),mod:this}:1===n.length?"div"===o?{div:this.divn(n.words[0]),mod:null}:"mod"===o?{div:null,mod:new c(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new c(this.modn(n.words[0]))}:this._wordDiv(n,o);var h,b,A},c.prototype.div=function(n){return this.divmod(n,"div",!1).div},c.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},c.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},c.prototype.divRound=function(n){var o=this.divmod(n);if(o.mod.isZero())return o.div;var f=0!==o.div.negative?o.mod.isub(n):o.mod,h=n.ushrn(1),b=n.andln(1),A=f.cmp(h);return A<0||1===b&&0===A?o.div:0!==o.div.negative?o.div.isubn(1):o.div.iaddn(1)},c.prototype.modn=function(n){p(n<=67108863);for(var o=(1<<26)%n,f=0,h=this.length-1;h>=0;h--)f=(o*f+(0|this.words[h]))%n;return f},c.prototype.idivn=function(n){p(n<=67108863);for(var o=0,f=this.length-1;f>=0;f--){var h=(0|this.words[f])+67108864*o;this.words[f]=h/n|0,o=h%n}return this.strip()},c.prototype.divn=function(n){return this.clone().idivn(n)},c.prototype.egcd=function(n){p(0===n.negative),p(!n.isZero());var o=this,f=n.clone();o=0!==o.negative?o.umod(n):o.clone();for(var h=new c(1),b=new c(0),A=new c(0),k=new c(1),x=0;o.isEven()&&f.isEven();)o.iushrn(1),f.iushrn(1),++x;for(var r=f.clone(),_=o.clone();!o.isZero();){for(var W=0,I=1;0===(o.words[0]&I)&&W<26;++W,I<<=1);if(W>0)for(o.iushrn(W);W-- >0;)(h.isOdd()||b.isOdd())&&(h.iadd(r),b.isub(_)),h.iushrn(1),b.iushrn(1);for(var B=0,re=1;0===(f.words[0]&re)&&B<26;++B,re<<=1);if(B>0)for(f.iushrn(B);B-- >0;)(A.isOdd()||k.isOdd())&&(A.iadd(r),k.isub(_)),A.iushrn(1),k.iushrn(1);o.cmp(f)>=0?(o.isub(f),h.isub(A),b.isub(k)):(f.isub(o),A.isub(h),k.isub(b))}return{a:A,b:k,gcd:f.iushln(x)}},c.prototype._invmp=function(n){p(0===n.negative),p(!n.isZero());var W,o=this,f=n.clone();o=0!==o.negative?o.umod(n):o.clone();for(var h=new c(1),b=new c(0),A=f.clone();o.cmpn(1)>0&&f.cmpn(1)>0;){for(var k=0,x=1;0===(o.words[0]&x)&&k<26;++k,x<<=1);if(k>0)for(o.iushrn(k);k-- >0;)h.isOdd()&&h.iadd(A),h.iushrn(1);for(var r=0,_=1;0===(f.words[0]&_)&&r<26;++r,_<<=1);if(r>0)for(f.iushrn(r);r-- >0;)b.isOdd()&&b.iadd(A),b.iushrn(1);o.cmp(f)>=0?(o.isub(f),h.isub(b)):(f.isub(o),b.isub(h))}return(W=0===o.cmpn(1)?h:b).cmpn(0)<0&&W.iadd(n),W},c.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var o=this.clone(),f=n.clone();o.negative=0,f.negative=0;for(var h=0;o.isEven()&&f.isEven();h++)o.iushrn(1),f.iushrn(1);for(;;){for(;o.isEven();)o.iushrn(1);for(;f.isEven();)f.iushrn(1);var b=o.cmp(f);if(b<0){var A=o;o=f,f=A}else if(0===b||0===f.cmpn(1))break;o.isub(f)}return f.iushln(h)},c.prototype.invm=function(n){return this.egcd(n).a.umod(n)},c.prototype.isEven=function(){return!(1&this.words[0])},c.prototype.isOdd=function(){return!(1&~this.words[0])},c.prototype.andln=function(n){return this.words[0]&n},c.prototype.bincn=function(n){p("number"==typeof n);var o=n%26,f=(n-o)/26,h=1<>>26,this.words[A]=k&=67108863}return 0!==b&&(this.words[A]=b,this.length++),this},c.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},c.prototype.cmpn=function(n){var f,o=n<0;if(0!==this.negative&&!o)return-1;if(0===this.negative&&o)return 1;if(this.strip(),this.length>1)f=1;else{o&&(n=-n),p(n<=67108863,"Number is too big");var h=0|this.words[0];f=h===n?0:hn.length)return 1;if(this.length=0;f--){var h=0|this.words[f],b=0|n.words[f];if(h!==b){hb&&(o=1);break}}return o},c.prototype.gtn=function(n){return 1===this.cmpn(n)},c.prototype.gt=function(n){return 1===this.cmp(n)},c.prototype.gten=function(n){return this.cmpn(n)>=0},c.prototype.gte=function(n){return this.cmp(n)>=0},c.prototype.ltn=function(n){return-1===this.cmpn(n)},c.prototype.lt=function(n){return-1===this.cmp(n)},c.prototype.lten=function(n){return this.cmpn(n)<=0},c.prototype.lte=function(n){return this.cmp(n)<=0},c.prototype.eqn=function(n){return 0===this.cmpn(n)},c.prototype.eq=function(n){return 0===this.cmp(n)},c.red=function(n){return new me(n)},c.prototype.toRed=function(n){return p(!this.red,"Already a number in reduction context"),p(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},c.prototype.fromRed=function(){return p(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},c.prototype._forceRed=function(n){return this.red=n,this},c.prototype.forceRed=function(n){return p(!this.red,"Already a number in reduction context"),this._forceRed(n)},c.prototype.redAdd=function(n){return p(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},c.prototype.redIAdd=function(n){return p(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},c.prototype.redSub=function(n){return p(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},c.prototype.redISub=function(n){return p(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},c.prototype.redShl=function(n){return p(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},c.prototype.redMul=function(n){return p(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},c.prototype.redIMul=function(n){return p(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},c.prototype.redSqr=function(){return p(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},c.prototype.redISqr=function(){return p(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},c.prototype.redSqrt=function(){return p(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},c.prototype.redInvm=function(){return p(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},c.prototype.redNeg=function(){return p(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},c.prototype.redPow=function(n){return p(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var Q={k256:null,p224:null,p192:null,p25519:null};function $(D,n){this.name=D,this.p=new c(n,16),this.n=this.p.bitLength(),this.k=new c(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ae(){$.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ue(){$.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function oe(){$.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function he(){$.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function me(D){if("string"==typeof D){var n=c._prime(D);this.m=n.p,this.prime=n}else p(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function Te(D){me.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new c(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}$.prototype._tmp=function(){var n=new c(null);return n.words=new Array(Math.ceil(this.n/13)),n},$.prototype.ireduce=function(n){var f,o=n;do{this.split(o,this.tmp),f=(o=(o=this.imulK(o)).iadd(this.tmp)).bitLength()}while(f>this.n);var h=f0?o.isub(this.p):void 0!==o.strip?o.strip():o._strip(),o},$.prototype.split=function(n,o){n.iushrn(this.n,0,o)},$.prototype.imulK=function(n){return n.imul(this.k)},S(ae,$),ae.prototype.split=function(n,o){for(var f=4194303,h=Math.min(n.length,9),b=0;b>>22,A=k}n.words[b-10]=A>>>=22,n.length-=0===A&&n.length>10?10:9},ae.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var o=0,f=0;f>>=26,n.words[f]=b,o=h}return 0!==o&&(n.words[n.length++]=o),n},c._prime=function(n){if(Q[n])return Q[n];var o;if("k256"===n)o=new ae;else if("p224"===n)o=new ue;else if("p192"===n)o=new oe;else{if("p25519"!==n)throw new Error("Unknown prime "+n);o=new he}return Q[n]=o,o},me.prototype._verify1=function(n){p(0===n.negative,"red works only with positives"),p(n.red,"red works only with red numbers")},me.prototype._verify2=function(n,o){p(0===(n.negative|o.negative),"red works only with positives"),p(n.red&&n.red===o.red,"red works only with red numbers")},me.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},me.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},me.prototype.add=function(n,o){this._verify2(n,o);var f=n.add(o);return f.cmp(this.m)>=0&&f.isub(this.m),f._forceRed(this)},me.prototype.iadd=function(n,o){this._verify2(n,o);var f=n.iadd(o);return f.cmp(this.m)>=0&&f.isub(this.m),f},me.prototype.sub=function(n,o){this._verify2(n,o);var f=n.sub(o);return f.cmpn(0)<0&&f.iadd(this.m),f._forceRed(this)},me.prototype.isub=function(n,o){this._verify2(n,o);var f=n.isub(o);return f.cmpn(0)<0&&f.iadd(this.m),f},me.prototype.shl=function(n,o){return this._verify1(n),this.imod(n.ushln(o))},me.prototype.imul=function(n,o){return this._verify2(n,o),this.imod(n.imul(o))},me.prototype.mul=function(n,o){return this._verify2(n,o),this.imod(n.mul(o))},me.prototype.isqr=function(n){return this.imul(n,n.clone())},me.prototype.sqr=function(n){return this.mul(n,n)},me.prototype.sqrt=function(n){if(n.isZero())return n.clone();var o=this.m.andln(3);if(p(o%2==1),3===o){var f=this.m.add(new c(1)).iushrn(2);return this.pow(n,f)}for(var h=this.m.subn(1),b=0;!h.isZero()&&0===h.andln(1);)b++,h.iushrn(1);p(!h.isZero());var A=new c(1).toRed(this),k=A.redNeg(),x=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new c(2*r*r).toRed(this);0!==this.pow(r,x).cmp(k);)r.redIAdd(k);for(var _=this.pow(r,h),W=this.pow(n,h.addn(1).iushrn(1)),I=this.pow(n,h),B=b;0!==I.cmp(A);){for(var re=I,pe=0;0!==re.cmp(A);pe++)re=re.redSqr();p(pe=0;b--){for(var _=o.words[b],W=r-1;W>=0;W--){var I=_>>W&1;A!==h[0]&&(A=this.sqr(A)),0!==I||0!==k?(k<<=1,k|=I,(4===++x||0===b&&0===W)&&(A=this.mul(A,h[k]),x=0,k=0)):x=0}r=26}return A},me.prototype.convertTo=function(n){var o=n.umod(this.m);return o===n?o.clone():o},me.prototype.convertFrom=function(n){var o=n.clone();return o.red=null,o},c.mont=function(n){return new Te(n)},S(Te,me),Te.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},Te.prototype.convertFrom=function(n){var o=this.imod(n.mul(this.rinv));return o.red=null,o},Te.prototype.imul=function(n,o){if(n.isZero()||o.isZero())return n.words[0]=0,n.length=1,n;var f=n.imul(o),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),b=f.isub(h).iushrn(this.shift),A=b;return b.cmp(this.m)>=0?A=b.isub(this.m):b.cmpn(0)<0&&(A=b.iadd(this.m)),A._forceRed(this)},Te.prototype.mul=function(n,o){if(n.isZero()||o.isZero())return new c(0)._forceRed(this);var f=n.mul(o),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),b=f.isub(h).iushrn(this.shift),A=b;return b.cmp(this.m)>=0?A=b.isub(this.m):b.cmpn(0)<0&&(A=b.iadd(this.m)),A._forceRed(this)},Te.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Ae=l.nmd(Ae),this)},16626:(Ae,ee,l)=>{var i=l(49609),t=l(71993);function S(c,e){this.name=c,this.body=e,this.decoders={},this.encoders={}}ee.define=function(e,T){return new S(e,T)},S.prototype._createNamed=function(e){var T;try{T=l(68326).runInThisContext("(function "+this.name+"(entity) {\n this._initNamed(entity);\n})")}catch{T=function(d){this._initNamed(d)}}return t(T,e),T.prototype._initNamed=function(d){e.call(this,d)},new T(this)},S.prototype._getDecoder=function(e){return this.decoders.hasOwnProperty(e=e||"der")||(this.decoders[e]=this._createNamed(i.decoders[e])),this.decoders[e]},S.prototype.decode=function(e,T,g){return this._getDecoder(T).decode(e,g)},S.prototype._getEncoder=function(e){return this.encoders.hasOwnProperty(e=e||"der")||(this.encoders[e]=this._createNamed(i.encoders[e])),this.encoders[e]},S.prototype.encode=function(e,T,g){return this._getEncoder(T).encode(e,g)}},16949:(Ae,ee,l)=>{"use strict";l.d(ee,{k:()=>t});var i=l(11514);const t=[(0,i.hZ)("sliderAnimation",[(0,i.wk)("*",(0,i.iF)({transform:"translateX(0)"})),(0,i.kY)("void => backward",[(0,i.iF)({transform:"translateX(-100%"}),(0,i.i0)("800ms")]),(0,i.kY)("backward => void",[(0,i.i0)("0ms",(0,i.iF)({transform:"translateX(100%)"}))]),(0,i.kY)("void => forward",[(0,i.iF)({transform:"translateX(100%"}),(0,i.i0)("800ms")]),(0,i.kY)("forward => void",[(0,i.i0)("0ms",(0,i.iF)({transform:"translateX(-100%)"}))])])]},17090:(Ae,ee,l)=>{var i=l(27054).Buffer,t=l(13546);function p(S,c,e){var T=c.length,g=t(c,S._cache);return S._cache=S._cache.slice(T),S._prev=i.concat([S._prev,e?c:g]),g}ee.encrypt=function(S,c,e){for(var g,T=i.allocUnsafe(0);c.length;){if(0===S._cache.length&&(S._cache=S._cipher.encryptBlock(S._prev),S._prev=i.allocUnsafe(0)),!(S._cache.length<=c.length)){T=i.concat([T,p(S,c,e)]);break}T=i.concat([T,p(S,c.slice(0,g=S._cache.length),e)]),c=c.slice(g)}return T}},17094:(Ae,ee,l)=>{"use strict";l.d(ee,{Ai:()=>h,GX:()=>me,Pd:()=>W,Q_:()=>_,Z7:()=>m,kB:()=>Te,sp:()=>he});var i=l(2615),t=l(73664),p=l(17705),S=l(39842),c=l(44522),e=l(88968),T=l(49046),g=l(34330),d=l(72318);let m=(()=>{class I{_platform=(0,i.WQX)(S.O);constructor(){}isDisabled(re){return re.hasAttribute("disabled")}isVisible(re){return function M(I){return!!(I.offsetWidth||I.offsetHeight||"function"==typeof I.getClientRects&&I.getClientRects().length)}(re)&&"visible"===getComputedStyle(re).visibility}isTabbable(re){if(!this._platform.isBrowser)return!1;const pe=function P(I){try{return I.frameElement}catch{return null}}(function oe(I){return I.ownerDocument&&I.ownerDocument.defaultView||window}(re));if(pe&&(-1===$(pe)||!this.isVisible(pe)))return!1;let be=re.nodeName.toLowerCase(),Be=$(re);return re.hasAttribute("contenteditable")?-1!==Be:!("iframe"===be||"object"===be||this._platform.WEBKIT&&this._platform.IOS&&!function ae(I){let B=I.nodeName.toLowerCase(),re="input"===B&&I.type;return"text"===re||"password"===re||"select"===B||"textarea"===B}(re))&&("audio"===be?!!re.hasAttribute("controls")&&-1!==Be:"video"===be?-1!==Be&&(null!==Be||this._platform.FIREFOX||re.hasAttribute("controls")):re.tabIndex>=0)}isFocusable(re,pe){return function ue(I){return!function U(I){return function q(I){return"input"==I.nodeName.toLowerCase()}(I)&&"hidden"==I.type}(I)&&(function j(I){let B=I.nodeName.toLowerCase();return"input"===B||"select"===B||"button"===B||"textarea"===B}(I)||function K(I){return function G(I){return"a"==I.nodeName.toLowerCase()}(I)&&I.hasAttribute("href")}(I)||I.hasAttribute("contenteditable")||Q(I))}(re)&&!this.isDisabled(re)&&(pe?.ignoreVisibility||this.isVisible(re))}static \u0275fac=function(pe){return new(pe||I)};static \u0275prov=i.jDH({token:I,factory:I.\u0275fac,providedIn:"root"})}return I})();function Q(I){if(!I.hasAttribute("tabindex")||void 0===I.tabIndex)return!1;let B=I.getAttribute("tabindex");return!(!B||isNaN(parseInt(B,10)))}function $(I){if(!Q(I))return null;const B=parseInt(I.getAttribute("tabindex")||"",10);return isNaN(B)?-1:B}class he{_element;_checker;_ngZone;_document;_injector;_startAnchor;_endAnchor;_hasAttached=!1;startAnchorListener=()=>this.focusLastTabbableElement();endAnchorListener=()=>this.focusFirstTabbableElement();get enabled(){return this._enabled}set enabled(B){this._enabled=B,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(B,this._startAnchor),this._toggleAnchorTabIndex(B,this._endAnchor))}_enabled=!0;constructor(B,re,pe,be,Be=!1,_e){this._element=B,this._checker=re,this._ngZone=pe,this._document=be,this._injector=_e,Be||this.attachAnchors()}destroy(){const B=this._startAnchor,re=this._endAnchor;B&&(B.removeEventListener("focus",this.startAnchorListener),B.remove()),re&&(re.removeEventListener("focus",this.endAnchorListener),re.remove()),this._startAnchor=this._endAnchor=null,this._hasAttached=!1}attachAnchors(){return!!this._hasAttached||(this._ngZone.runOutsideAngular(()=>{this._startAnchor||(this._startAnchor=this._createAnchor(),this._startAnchor.addEventListener("focus",this.startAnchorListener)),this._endAnchor||(this._endAnchor=this._createAnchor(),this._endAnchor.addEventListener("focus",this.endAnchorListener))}),this._element.parentNode&&(this._element.parentNode.insertBefore(this._startAnchor,this._element),this._element.parentNode.insertBefore(this._endAnchor,this._element.nextSibling),this._hasAttached=!0),this._hasAttached)}focusInitialElementWhenReady(B){return new Promise(re=>{this._executeOnStable(()=>re(this.focusInitialElement(B)))})}focusFirstTabbableElementWhenReady(B){return new Promise(re=>{this._executeOnStable(()=>re(this.focusFirstTabbableElement(B)))})}focusLastTabbableElementWhenReady(B){return new Promise(re=>{this._executeOnStable(()=>re(this.focusLastTabbableElement(B)))})}_getRegionBoundary(B){const re=this._element.querySelectorAll(`[cdk-focus-region-${B}], [cdkFocusRegion${B}], [cdk-focus-${B}]`);return"start"==B?re.length?re[0]:this._getFirstTabbableElement(this._element):re.length?re[re.length-1]:this._getLastTabbableElement(this._element)}focusInitialElement(B){const re=this._element.querySelector("[cdk-focus-initial], [cdkFocusInitial]");if(re){if(!this._checker.isFocusable(re)){const pe=this._getFirstTabbableElement(re);return pe?.focus(B),!!pe}return re.focus(B),!0}return this.focusFirstTabbableElement(B)}focusFirstTabbableElement(B){const re=this._getRegionBoundary("start");return re&&re.focus(B),!!re}focusLastTabbableElement(B){const re=this._getRegionBoundary("end");return re&&re.focus(B),!!re}hasAttached(){return this._hasAttached}_getFirstTabbableElement(B){if(this._checker.isFocusable(B)&&this._checker.isTabbable(B))return B;const re=B.children;for(let pe=0;pe=0;pe--){const be=re[pe].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(re[pe]):null;if(be)return be}return null}_createAnchor(){const B=this._document.createElement("div");return this._toggleAnchorTabIndex(this._enabled,B),B.classList.add("cdk-visually-hidden"),B.classList.add("cdk-focus-trap-anchor"),B.setAttribute("aria-hidden","true"),B}_toggleAnchorTabIndex(B,re){B?re.setAttribute("tabindex","0"):re.removeAttribute("tabindex")}toggleAnchors(B){this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(B,this._startAnchor),this._toggleAnchorTabIndex(B,this._endAnchor))}_executeOnStable(B){this._injector?(0,t.mal)(B,{injector:this._injector}):setTimeout(B)}}let me=(()=>{class I{_checker=(0,i.WQX)(m);_ngZone=(0,i.WQX)(t.SKi);_document=(0,i.WQX)(i.qQL);_injector=(0,i.WQX)(i.zZn);constructor(){(0,i.WQX)(e.l).load(T.Y)}create(re,pe=!1){return new he(re,this._checker,this._ngZone,this._document,pe,this._injector)}static \u0275fac=function(pe){return new(pe||I)};static \u0275prov=i.jDH({token:I,factory:I.\u0275fac,providedIn:"root"})}return I})(),Te=(()=>{class I{_elementRef=(0,i.WQX)(t.aKT);_focusTrapFactory=(0,i.WQX)(me);focusTrap;_previouslyFocusedElement=null;get enabled(){return this.focusTrap?.enabled||!1}set enabled(re){this.focusTrap&&(this.focusTrap.enabled=re)}autoCapture;constructor(){(0,i.WQX)(S.O).isBrowser&&(this.focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement,!0))}ngOnDestroy(){this.focusTrap?.destroy(),this._previouslyFocusedElement&&(this._previouslyFocusedElement.focus(),this._previouslyFocusedElement=null)}ngAfterContentInit(){this.focusTrap?.attachAnchors(),this.autoCapture&&this._captureFocus()}ngDoCheck(){this.focusTrap&&!this.focusTrap.hasAttached()&&this.focusTrap.attachAnchors()}ngOnChanges(re){const pe=re.autoCapture;pe&&!pe.firstChange&&this.autoCapture&&this.focusTrap?.hasAttached()&&this._captureFocus()}_captureFocus(){this._previouslyFocusedElement=(0,c.vc)(),this.focusTrap?.focusInitialElementWhenReady()}static \u0275fac=function(pe){return new(pe||I)};static \u0275dir=t.FsC({type:I,selectors:[["","cdkTrapFocus",""]],inputs:{enabled:[2,"cdkTrapFocus","enabled",p.L39],autoCapture:[2,"cdkTrapFocusAutoCapture","autoCapture",p.L39]},exportAs:["cdkTrapFocus"],features:[t.OA$]})}return I})();const D=new i.nKC("liveAnnouncerElement",{providedIn:"root",factory:function n(){return null}}),o=new i.nKC("LIVE_ANNOUNCER_DEFAULT_OPTIONS");let f=0,h=(()=>{class I{_ngZone=(0,i.WQX)(t.SKi);_defaultOptions=(0,i.WQX)(o,{optional:!0});_liveElement;_document=(0,i.WQX)(i.qQL);_previousTimeout;_currentPromise;_currentResolve;constructor(){const re=(0,i.WQX)(D,{optional:!0});this._liveElement=re||this._createLiveElement()}announce(re,...pe){const be=this._defaultOptions;let Be,_e;return 1===pe.length&&"number"==typeof pe[0]?_e=pe[0]:[Be,_e]=pe,this.clear(),clearTimeout(this._previousTimeout),Be||(Be=be&&be.politeness?be.politeness:"polite"),null==_e&&be&&(_e=be.duration),this._liveElement.setAttribute("aria-live",Be),this._liveElement.id&&this._exposeAnnouncerToModals(this._liveElement.id),this._ngZone.runOutsideAngular(()=>(this._currentPromise||(this._currentPromise=new Promise(ye=>this._currentResolve=ye)),clearTimeout(this._previousTimeout),this._previousTimeout=setTimeout(()=>{this._liveElement.textContent=re,"number"==typeof _e&&(this._previousTimeout=setTimeout(()=>this.clear(),_e)),this._currentResolve?.(),this._currentPromise=this._currentResolve=void 0},100),this._currentPromise))}clear(){this._liveElement&&(this._liveElement.textContent="")}ngOnDestroy(){clearTimeout(this._previousTimeout),this._liveElement?.remove(),this._liveElement=null,this._currentResolve?.(),this._currentPromise=this._currentResolve=void 0}_createLiveElement(){const re="cdk-live-announcer-element",pe=this._document.getElementsByClassName(re),be=this._document.createElement("div");for(let Be=0;Be .cdk-overlay-container [aria-modal="true"]');for(let be=0;be{class I{_platform=(0,i.WQX)(S.O);_hasCheckedHighContrastMode;_document=(0,i.WQX)(i.qQL);_breakpointSubscription;constructor(){this._breakpointSubscription=(0,i.WQX)(g.Q).observe("(forced-colors: active)").subscribe(()=>{this._hasCheckedHighContrastMode&&(this._hasCheckedHighContrastMode=!1,this._applyBodyHighContrastModeCssClasses())})}getHighContrastMode(){if(!this._platform.isBrowser)return A.NONE;const re=this._document.createElement("div");re.style.backgroundColor="rgb(1,2,3)",re.style.position="absolute",this._document.body.appendChild(re);const pe=this._document.defaultView||window,be=pe&&pe.getComputedStyle?pe.getComputedStyle(re):null,Be=(be&&be.backgroundColor||"").replace(/ /g,"");switch(re.remove(),Be){case"rgb(0,0,0)":case"rgb(45,50,54)":case"rgb(32,32,32)":return A.WHITE_ON_BLACK;case"rgb(255,255,255)":case"rgb(255,250,239)":return A.BLACK_ON_WHITE}return A.NONE}ngOnDestroy(){this._breakpointSubscription.unsubscribe()}_applyBodyHighContrastModeCssClasses(){if(!this._hasCheckedHighContrastMode&&this._platform.isBrowser&&this._document.body){const re=this._document.body.classList;re.remove(r,k,x),this._hasCheckedHighContrastMode=!0;const pe=this.getHighContrastMode();pe===A.BLACK_ON_WHITE?re.add(r,k):pe===A.WHITE_ON_BLACK&&re.add(r,x)}}static \u0275fac=function(pe){return new(pe||I)};static \u0275prov=i.jDH({token:I,factory:I.\u0275fac,providedIn:"root"})}return I})(),W=(()=>{class I{constructor(){(0,i.WQX)(_)._applyBodyHighContrastModeCssClasses()}static \u0275fac=function(pe){return new(pe||I)};static \u0275mod=t.$C({type:I});static \u0275inj=i.G2t({imports:[d.w5]})}return I})()},17186:(Ae,ee,l)=>{"use strict";l.d(ee,{Wz:()=>T,fe:()=>g,jn:()=>e,q_:()=>c});var i=l(2615),t=l(43694),p=l(53202),S=l(96354);function c(){return()=>{const d=(0,i.WQX)(t.Ix),w=(0,i.WQX)(t.nX),m=(0,i.WQX)(p.Q);return!(!m.getItem("token")||w.snapshot.url&&w.snapshot.url.length&&"settings"!==w.snapshot.url[0].path&&"auth"!==w.snapshot.url[0].path&&"true"===m.getItem("defaultPassword")&&(d.navigate(["/settings/auth"]),1))}}function e(){return()=>!!(0,i.WQX)(p.Q).watchSession().pipe((0,S.T)(w=>w.lndUnlocked))}function T(){return()=>!!(0,i.WQX)(p.Q).watchSession().pipe((0,S.T)(w=>w.clnUnlocked))}function g(){return()=>!!(0,i.WQX)(p.Q).watchSession().pipe((0,S.T)(w=>w.eclUnlocked))}},17705:(Ae,ee,l)=>{"use strict";l.d(ee,{ES_:()=>P,HJs:()=>no,Hbi:()=>oi,L39:()=>Gt,MKu:()=>$e,Udg:()=>gt,_q3:()=>Et,a0P:()=>Qr,cCO:()=>M,ebz:()=>ae,fpN:()=>Hi,gRc:()=>kt,geq:()=>h,hFB:()=>G,naY:()=>Ie,oH4:()=>Mt,sbv:()=>me,uEv:()=>os});var i=l(2615),t=l(48440),p=l(73664),S=l(59295);const c=Symbol("InputSignalNode#UNSET"),e={...t.s0,transformFn:void 0,applyValueToInputSignal(Lt,rt){(0,t.j2)(Lt,rt)}};function g(Lt,rt){const wt=Object.create(e);function ii(){if((0,t.mK)(wt),wt.value===c)throw new i.buA(-950,null);return wt.value}return wt.value=Lt,wt.transformFn=rt?.transform,ii[t.bh]=wt,ii}class P{attributeName;constructor(rt){this.attributeName=rt}__NG_ELEMENT_ID__=()=>(0,p.kS0)(this.attributeName);toString(){return`HostAttributeToken ${this.attributeName}`}}const M=new i.nKC("");function K(Lt,rt){return g(Lt,rt)}M.__NG_ELEMENT_ID__=Lt=>{const rt=(0,i.Mx4)();if(null===rt)throw new i.buA(204,!1);if(2&rt.type)return rt.value;if(8&Lt)return null;throw new i.buA(204,!1)};const G=(K.required=function q(Lt){return g(c,Lt)},K);function Q(Lt,rt){return(0,p.mU9)(rt)}const ae=(Q.required=function $(Lt,rt){return(0,p.hnC)(rt)},Q);function oe(Lt,rt){return(0,p.mU9)(rt)}const me=(oe.required=function he(Lt,rt){return(0,p.hnC)(rt)},oe);function D(Lt,rt){const wt=Object.create(e),ii=new S.Zf;function Ii(){return(0,t.mK)(wt),n(wt.value),wt.value}return wt.value=Lt,Ii[t.bh]=wt,Ii.asReadonly=i.HO5.bind(Ii),Ii.set=Ui=>{wt.equal(wt.value,Ui)||((0,t.j2)(wt,Ui),ii.emit(Ui))},Ii.update=Ui=>{n(wt.value),Ii.set(Ui(wt.value))},Ii.subscribe=ii.subscribe.bind(ii),Ii.destroyRef=ii.destroyRef,Ii}function n(Lt){if(Lt===c)throw new i.buA(952,!1)}function o(Lt,rt){return D(Lt)}const h=(o.required=function f(Lt){return D(c)},o),_e=new i.nKC(""),ye=new i.nKC("");function Le(Lt){return!Lt.moduleRef}let ge;function ve(){ge=Oe}function Oe(Lt,rt){const wt=Lt.injector.get(p.o8S);if(Lt._bootstrapComponents.length>0)Lt._bootstrapComponents.forEach(ii=>wt.bootstrap(ii));else{if(!Lt.instance.ngDoBootstrap)throw new i.buA(-403,!1);Lt.instance.ngDoBootstrap(wt)}rt.push(Lt)}let dt=(()=>{class Lt{_injector;_modules=[];_destroyListeners=[];_destroyed=!1;constructor(wt){this._injector=wt}bootstrapModuleFactory(wt,ii){const Ii=ii?.scheduleInRootZone,tn=ii?.ignoreChangesOutsideZone,yn=[(0,p.SdI)({ngZoneFactory:()=>(0,p.G5x)(ii?.ngZone,{...(0,p.cZr)({eventCoalescing:ii?.ngZoneEventCoalescing,runCoalescing:ii?.ngZoneRunCoalescing}),scheduleInRootZone:Ii}),ignoreChangesOutsideZone:tn}),{provide:i.hk6,useExisting:p.Ts$},i.gv8],Pn=(0,p.VzW)(wt.moduleType,this.injector,yn);return ve(),function Ke(Lt){const rt=Le(Lt)?Lt.r3Injector:Lt.moduleRef.injector,wt=rt.get(p.SKi);return wt.run(()=>{Le(Lt)?Lt.r3Injector.resolveInjectorInitializers():Lt.moduleRef.resolveInjectorInitializers();const ii=rt.get(i.ZTf);let Ii;if(wt.runOutsideAngular(()=>{Ii=wt.onError.subscribe({next:ii})}),Le(Lt)){const Ui=()=>rt.destroy(),tn=Lt.platformInjector.get(_e);tn.add(Ui),rt.onDestroy(()=>{Ii.unsubscribe(),tn.delete(Ui)})}else{const Ui=()=>Lt.moduleRef.destroy(),tn=Lt.platformInjector.get(_e);tn.add(Ui),Lt.moduleRef.onDestroy(()=>{(0,p.TFI)(Lt.allPlatformModules,Lt.moduleRef),Ii.unsubscribe(),tn.delete(Ui)})}return function Ee(Lt,rt,wt){try{const ii=wt();return(0,p.yLl)(ii)?ii.catch(Ii=>{throw rt.runOutsideAngular(()=>Lt(Ii)),Ii}):ii}catch(ii){throw rt.runOutsideAngular(()=>Lt(ii)),ii}}(ii,wt,()=>{const Ui=rt.get(i.rev),tn=Ui.add(),yn=rt.get(p.H1s);return yn.runInitializers(),yn.donePromise.then(()=>{const Pn=rt.get(p.xe9,p.DkB);if((0,p.e6s)(Pn||p.DkB),!rt.get(ye,!0))return Le(Lt)?rt.get(p.o8S):(Lt.allPlatformModules.push(Lt.moduleRef),Lt.moduleRef);if(Le(Lt)){const Jn=rt.get(p.o8S);return void 0!==Lt.rootComponent&&Jn.bootstrap(Lt.rootComponent),Jn}return ge?.(Lt.moduleRef,Lt.allPlatformModules),Lt.moduleRef}).finally(()=>{Ui.remove(tn)})})})}({moduleRef:Pn,allPlatformModules:this._modules,platformInjector:this.injector})}bootstrapModule(wt,ii=[]){const Ii=(0,p.lJT)({},ii);return ve(),function W(Lt,rt,wt){const ii=new p.Co$(wt);return Promise.resolve(ii)}(0,0,wt).then(Ui=>this.bootstrapModuleFactory(Ui,Ii))}onDestroy(wt){this._destroyListeners.push(wt)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new i.buA(404,!1);this._modules.slice().forEach(ii=>ii.destroy()),this._destroyListeners.forEach(ii=>ii());const wt=this._injector.get(_e,null);wt&&(wt.forEach(ii=>ii()),wt.clear()),this._destroyed=!0}get destroyed(){return this._destroyed}static \u0275fac=function(ii){return new(ii||Lt)((0,i.KVO)(i.zZn))};static \u0275prov=(0,i.jDH)({token:Lt,factory:Lt.\u0275fac,providedIn:"platform"})}return Lt})(),nt=null;function Mt(Lt,rt,wt=[]){const ii=`Platform: ${rt}`,Ii=new i.nKC(ii);return(Ui=[])=>{let tn=Ht();if(!tn){const yn=[...wt,...Ui,{provide:Ii,useValue:!0}];tn=Lt?.(yn)??function Ct(Lt){if(Ht())throw new i.buA(400,!1);(0,p.pl0)(),(0,p.ypd)(),nt=Lt;const rt=Lt.get(dt);return function Z(Lt){const rt=Lt.get(p.PLl,null);(0,i.N4e)(Lt,()=>{rt?.forEach(wt=>wt())})}(Lt),rt}(function lt(Lt=[],rt){return i.zZn.create({name:rt,providers:[{provide:i.GBX,useValue:"platform"},{provide:_e,useValue:new Set([()=>nt=null])},...Lt]})}(yn,ii))}return function Pe(){const rt=Ht();if(!rt)throw new i.buA(-401,!1);return rt}()}}function Ht(){return nt?.get(dt)??null}function Ie(){return!1}let kt=(()=>class Lt{static __NG_ELEMENT_ID__=Rt})();function Rt(Lt){return function le(Lt,rt,wt){if((0,i.Qs1)(Lt)&&!wt){const ii=(0,i.KdJ)(Lt.index,rt);return new p.NCX(ii,ii)}return 175&Lt.type?new p.NCX(rt[i.b5C],rt):null}((0,i.Mx4)(),(0,i.OAn)(),!(16&~Lt))}class se{constructor(){}supports(rt){return(0,p.ozJ)(rt)}create(rt){return new Ue(rt)}}const ke=(Lt,rt)=>rt;class Ue{length=0;collection;_linkedRecords=null;_unlinkedRecords=null;_previousItHead=null;_itHead=null;_itTail=null;_additionsHead=null;_additionsTail=null;_movesHead=null;_movesTail=null;_removalsHead=null;_removalsTail=null;_identityChangesHead=null;_identityChangesTail=null;_trackByFn;constructor(rt){this._trackByFn=rt||ke}forEachItem(rt){let wt;for(wt=this._itHead;null!==wt;wt=wt._next)rt(wt)}forEachOperation(rt){let wt=this._itHead,ii=this._removalsHead,Ii=0,Ui=null;for(;wt||ii;){const tn=!ii||wt&&wt.currentIndex{tn=this._trackByFn(Ii,yn),null!==wt&&Object.is(wt.trackById,tn)?(ii&&(wt=this._verifyReinsertion(wt,yn,tn,Ii)),Object.is(wt.item,yn)||this._addIdentityChange(wt,yn)):(wt=this._mismatch(wt,yn,tn,Ii),ii=!0),wt=wt._next,Ii++}),this.length=Ii;return this._truncate(wt),this.collection=rt,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let rt;for(rt=this._previousItHead=this._itHead;null!==rt;rt=rt._next)rt._nextPrevious=rt._next;for(rt=this._additionsHead;null!==rt;rt=rt._nextAdded)rt.previousIndex=rt.currentIndex;for(this._additionsHead=this._additionsTail=null,rt=this._movesHead;null!==rt;rt=rt._nextMoved)rt.previousIndex=rt.currentIndex;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(rt,wt,ii,Ii){let Ui;return null===rt?Ui=this._itTail:(Ui=rt._prev,this._remove(rt)),null!==(rt=null===this._unlinkedRecords?null:this._unlinkedRecords.get(ii,null))?(Object.is(rt.item,wt)||this._addIdentityChange(rt,wt),this._reinsertAfter(rt,Ui,Ii)):null!==(rt=null===this._linkedRecords?null:this._linkedRecords.get(ii,Ii))?(Object.is(rt.item,wt)||this._addIdentityChange(rt,wt),this._moveAfter(rt,Ui,Ii)):rt=this._addAfter(new Ne(wt,ii),Ui,Ii),rt}_verifyReinsertion(rt,wt,ii,Ii){let Ui=null===this._unlinkedRecords?null:this._unlinkedRecords.get(ii,null);return null!==Ui?rt=this._reinsertAfter(Ui,rt._prev,Ii):rt.currentIndex!=Ii&&(rt.currentIndex=Ii,this._addToMoves(rt,Ii)),rt}_truncate(rt){for(;null!==rt;){const wt=rt._next;this._addToRemovals(this._unlink(rt)),rt=wt}null!==this._unlinkedRecords&&this._unlinkedRecords.clear(),null!==this._additionsTail&&(this._additionsTail._nextAdded=null),null!==this._movesTail&&(this._movesTail._nextMoved=null),null!==this._itTail&&(this._itTail._next=null),null!==this._removalsTail&&(this._removalsTail._nextRemoved=null),null!==this._identityChangesTail&&(this._identityChangesTail._nextIdentityChange=null)}_reinsertAfter(rt,wt,ii){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(rt);const Ii=rt._prevRemoved,Ui=rt._nextRemoved;return null===Ii?this._removalsHead=Ui:Ii._nextRemoved=Ui,null===Ui?this._removalsTail=Ii:Ui._prevRemoved=Ii,this._insertAfter(rt,wt,ii),this._addToMoves(rt,ii),rt}_moveAfter(rt,wt,ii){return this._unlink(rt),this._insertAfter(rt,wt,ii),this._addToMoves(rt,ii),rt}_addAfter(rt,wt,ii){return this._insertAfter(rt,wt,ii),this._additionsTail=null===this._additionsTail?this._additionsHead=rt:this._additionsTail._nextAdded=rt,rt}_insertAfter(rt,wt,ii){const Ii=null===wt?this._itHead:wt._next;return rt._next=Ii,rt._prev=wt,null===Ii?this._itTail=rt:Ii._prev=rt,null===wt?this._itHead=rt:wt._next=rt,null===this._linkedRecords&&(this._linkedRecords=new yt),this._linkedRecords.put(rt),rt.currentIndex=ii,rt}_remove(rt){return this._addToRemovals(this._unlink(rt))}_unlink(rt){null!==this._linkedRecords&&this._linkedRecords.remove(rt);const wt=rt._prev,ii=rt._next;return null===wt?this._itHead=ii:wt._next=ii,null===ii?this._itTail=wt:ii._prev=wt,rt}_addToMoves(rt,wt){return rt.previousIndex===wt||(this._movesTail=null===this._movesTail?this._movesHead=rt:this._movesTail._nextMoved=rt),rt}_addToRemovals(rt){return null===this._unlinkedRecords&&(this._unlinkedRecords=new yt),this._unlinkedRecords.put(rt),rt.currentIndex=null,rt._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=rt,rt._prevRemoved=null):(rt._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=rt),rt}_addIdentityChange(rt,wt){return rt.item=wt,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=rt:this._identityChangesTail._nextIdentityChange=rt,rt}}class Ne{item;trackById;currentIndex=null;previousIndex=null;_nextPrevious=null;_prev=null;_next=null;_prevDup=null;_nextDup=null;_prevRemoved=null;_nextRemoved=null;_nextAdded=null;_nextMoved=null;_nextIdentityChange=null;constructor(rt,wt){this.item=rt,this.trackById=wt}}class Kt{_head=null;_tail=null;add(rt){null===this._head?(this._head=this._tail=rt,rt._nextDup=null,rt._prevDup=null):(this._tail._nextDup=rt,rt._prevDup=this._tail,rt._nextDup=null,this._tail=rt)}get(rt,wt){let ii;for(ii=this._head;null!==ii;ii=ii._nextDup)if((null===wt||wt<=ii.currentIndex)&&Object.is(ii.trackById,rt))return ii;return null}remove(rt){const wt=rt._prevDup,ii=rt._nextDup;return null===wt?this._head=ii:wt._nextDup=ii,null===ii?this._tail=wt:ii._prevDup=wt,null===this._head}}class yt{map=new Map;put(rt){const wt=rt.trackById;let ii=this.map.get(wt);ii||(ii=new Kt,this.map.set(wt,ii)),ii.add(rt)}get(rt,wt){const Ii=this.map.get(rt);return Ii?Ii.get(rt,wt):null}remove(rt){const wt=rt.trackById;return this.map.get(wt).remove(rt)&&this.map.delete(wt),rt}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function Vt(Lt,rt,wt){const ii=Lt.previousIndex;if(null===ii)return ii;let Ii=0;return wt&&ii{if(wt&&wt.key===Ii)this._maybeAddToChanges(wt,ii),this._appendAfter=wt,wt=wt._next;else{const Ui=this._getOrCreateRecordForKey(Ii,ii);wt=this._insertBeforeOrAppend(wt,Ui)}}),wt){wt._prev&&(wt._prev._next=null),this._removalsHead=wt;for(let ii=wt;null!==ii;ii=ii._nextRemoved)ii===this._mapHead&&(this._mapHead=null),this._records.delete(ii.key),ii._nextRemoved=ii._next,ii.previousValue=ii.currentValue,ii.currentValue=null,ii._prev=null,ii._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(rt,wt){if(rt){const ii=rt._prev;return wt._next=rt,wt._prev=ii,rt._prev=wt,ii&&(ii._next=wt),rt===this._mapHead&&(this._mapHead=wt),this._appendAfter=rt,rt}return this._appendAfter?(this._appendAfter._next=wt,wt._prev=this._appendAfter):this._mapHead=wt,this._appendAfter=wt,null}_getOrCreateRecordForKey(rt,wt){if(this._records.has(rt)){const Ii=this._records.get(rt);this._maybeAddToChanges(Ii,wt);const Ui=Ii._prev,tn=Ii._next;return Ui&&(Ui._next=tn),tn&&(tn._prev=Ui),Ii._next=null,Ii._prev=null,Ii}const ii=new Ye(rt);return this._records.set(rt,ii),ii.currentValue=wt,this._addToAdditions(ii),ii}_reset(){if(this.isDirty){let rt;for(this._previousMapHead=this._mapHead,rt=this._previousMapHead;null!==rt;rt=rt._next)rt._nextPrevious=rt._next;for(rt=this._changesHead;null!==rt;rt=rt._nextChanged)rt.previousValue=rt.currentValue;for(rt=this._additionsHead;null!=rt;rt=rt._nextAdded)rt.previousValue=rt.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(rt,wt){Object.is(wt,rt.currentValue)||(rt.previousValue=rt.currentValue,rt.currentValue=wt,this._addToChanges(rt))}_addToAdditions(rt){null===this._additionsHead?this._additionsHead=this._additionsTail=rt:(this._additionsTail._nextAdded=rt,this._additionsTail=rt)}_addToChanges(rt){null===this._changesHead?this._changesHead=this._changesTail=rt:(this._changesTail._nextChanged=rt,this._changesTail=rt)}_forEach(rt,wt){rt instanceof Map?rt.forEach(wt):Object.keys(rt).forEach(ii=>wt(rt[ii],ii))}}class Ye{key;previousValue=null;currentValue=null;_nextPrevious=null;_next=null;_prev=null;_nextAdded=null;_nextRemoved=null;_nextChanged=null;constructor(rt){this.key=rt}}function Nt(){return new Et([new se])}let Et=(()=>{class Lt{factories;static \u0275prov=(0,i.jDH)({token:Lt,providedIn:"root",factory:Nt});constructor(wt){this.factories=wt}static create(wt,ii){if(null!=ii){const Ii=ii.factories.slice();wt=wt.concat(Ii)}return new Lt(wt)}static extend(wt){return{provide:Lt,useFactory:()=>{const ii=(0,i.WQX)(Lt,{optional:!0,skipSelf:!0});return Lt.create(wt,ii||Nt())}}}find(wt){const ii=this.factories.find(Ii=>Ii.supports(wt));if(null!=ii)return ii;throw new i.buA(901,!1)}}return Lt})();function qe(){return new $e([new Zt])}let $e=(()=>{class Lt{static \u0275prov=(0,i.jDH)({token:Lt,providedIn:"root",factory:qe});factories;constructor(wt){this.factories=wt}static create(wt,ii){if(ii){const Ii=ii.factories.slice();wt=wt.concat(Ii)}return new Lt(wt)}static extend(wt){return{provide:Lt,useFactory:()=>{const ii=(0,i.WQX)(Lt,{optional:!0,skipSelf:!0});return Lt.create(wt,ii||qe())}}}find(wt){const ii=this.factories.find(Ii=>Ii.supports(wt));if(ii)return ii;throw new i.buA(901,!1)}}return Lt})();const Hi=Mt(null,"core",[]);let oi=(()=>{class Lt{constructor(wt){}static \u0275fac=function(ii){return new(ii||Lt)((0,i.KVO)(p.o8S))};static \u0275mod=(0,p.$C)({type:Lt});static \u0275inj=(0,i.G2t)({})}return Lt})();function Gt(Lt){return"boolean"==typeof Lt?Lt:null!=Lt&&"false"!==Lt}function gt(Lt,rt=NaN){return isNaN(parseFloat(Lt))||isNaN(Number(Lt))?rt:Number(Lt)}const Br=Symbol("NOT_SET"),ys=new Set,Kr={...t.s0,consumerIsAlwaysLive:!0,consumerAllowSignalWrites:!0,value:Br,cleanup:null,consumerMarkedDirty(){if(this.sequence.impl.executing){if(null===this.sequence.lastPhase||this.sequence.lastPhase((0,t.mK)(Qn),Qn.value),Qn.signal[t.bh]=Qn,Qn.registerCleanupFn=Jn=>(Qn.cleanup??=new Set).add(Jn),this.nodes[yn]=Qn,this.hooks[yn]=Jn=>Qn.phaseFn(Jn)}}afterRun(){super.afterRun(),this.lastPhase=null}destroy(){super.destroy();for(const rt of this.nodes)if(rt)try{for(const wt of rt.cleanup??ys)wt()}finally{(0,t.XR)(rt)}}}function os(Lt,rt){const wt=rt?.injector??(0,i.WQX)(i.zZn),ii=wt.get(i.hk6),Ii=wt.get(p.cf$),Ui=wt.get(p.a8H,null,{optional:!0});Ii.impl??=wt.get(p.ziy);let tn=Lt;"function"==typeof tn&&(tn={mixedReadWrite:Lt});const yn=wt.get(i.r4V,null,{optional:!0}),Pn=new or(Ii.impl,[tn.earlyRead,tn.write,tn.mixedReadWrite,tn.read],yn?.view,ii,wt,Ui?.snapshot(null));return Ii.impl.register(Pn),Pn}function Qr(Lt,rt){const wt=(0,i.xUg)(Lt),ii=rt.elementInjector||(0,i.WB9)();return new p.eHC(wt).create(ii,rt.projectableNodes,rt.hostElement,rt.environmentInjector,rt.directives,rt.bindings)}function no(Lt){const rt=(0,i.xUg)(Lt);if(!rt)return null;const wt=new p.eHC(rt);return{get selector(){return wt.selector},get type(){return wt.componentType},get inputs(){return wt.inputs},get outputs(){return wt.outputs},get ngContentSelectors(){return wt.ngContentSelectors},get isStandalone(){return rt.standalone},get isSignal(){return rt.signals}}}},18211:(Ae,ee,l)=>{var i=l(27054).Buffer,t=l(34725);Ae.exports=function p(S,c,e,T){if(i.isBuffer(S)||(S=i.from(S,"binary")),c&&(i.isBuffer(c)||(c=i.from(c,"binary")),8!==c.length))throw new RangeError("salt should be Buffer with 8 byte length");for(var g=e/8,d=i.alloc(g),w=i.alloc(T||0),m=i.alloc(0);g>0||T>0;){var P=new t;P.update(m),P.update(S),c&&P.update(c),m=P.digest();var M=0;if(g>0){var j=d.length-g;M=Math.min(g,m.length),m.copy(d,j,0,M),g-=M}if(M0){var U=w.length-T,K=Math.min(T,m.length-M);m.copy(w,U,M,M+K),T-=K}}return m.fill(0),{key:d,iv:w}}},18342:(Ae,ee,l)=>{Ae.exports=l(44356).EventEmitter},18359:(Ae,ee,l)=>{"use strict";l.d(ee,{Kn:()=>e,yU:()=>c,Uv:()=>T});var i=l(98071);const p=(0,l(81853).L)(d=>function(m){d(this),this.message=m?`${m.length} errors occurred during unsubscription:\n${m.map((P,M)=>`${M+1}) ${P.toString()}`).join("\n ")}`:"",this.name="UnsubscriptionError",this.errors=m});var S=l(57908);class c{constructor(w){this.initialTeardown=w,this.closed=!1,this._parentage=null,this._finalizers=null}unsubscribe(){let w;if(!this.closed){this.closed=!0;const{_parentage:m}=this;if(m)if(this._parentage=null,Array.isArray(m))for(const j of m)j.remove(this);else m.remove(this);const{initialTeardown:P}=this;if((0,i.T)(P))try{P()}catch(j){w=j instanceof p?j.errors:[j]}const{_finalizers:M}=this;if(M){this._finalizers=null;for(const j of M)try{g(j)}catch(U){w=w??[],U instanceof p?w=[...w,...U.errors]:w.push(U)}}if(w)throw new p(w)}}add(w){var m;if(w&&w!==this)if(this.closed)g(w);else{if(w instanceof c){if(w.closed||w._hasParent(this))return;w._addParent(this)}(this._finalizers=null!==(m=this._finalizers)&&void 0!==m?m:[]).push(w)}}_hasParent(w){const{_parentage:m}=this;return m===w||Array.isArray(m)&&m.includes(w)}_addParent(w){const{_parentage:m}=this;this._parentage=Array.isArray(m)?(m.push(w),m):m?[m,w]:w}_removeParent(w){const{_parentage:m}=this;m===w?this._parentage=null:Array.isArray(m)&&(0,S.o)(m,w)}remove(w){const{_finalizers:m}=this;m&&(0,S.o)(m,w),w instanceof c&&w._removeParent(this)}}c.EMPTY=(()=>{const d=new c;return d.closed=!0,d})();const e=c.EMPTY;function T(d){return d instanceof c||d&&"closed"in d&&(0,i.T)(d.remove)&&(0,i.T)(d.add)&&(0,i.T)(d.unsubscribe)}function g(d){(0,i.T)(d)?d():d.unsubscribe()}},18617:(Ae,ee,l)=>{"use strict";l.d(ee,{Ae:()=>m,px:()=>w,vr:()=>q}),l(17094);var t=l(2615),p=l(73664),S=l(39842),c=l(88968),e=l(49046);l(21413),l(4125);const d=" ";function w(n,o,f){const h=P(n,o);f=f.trim(),!h.some(b=>b.trim()===f)&&(h.push(f),n.setAttribute(o,h.join(d)))}function m(n,o,f){const h=P(n,o);f=f.trim();const b=h.filter(A=>A!==f);b.length?n.setAttribute(o,b.join(d)):n.removeAttribute(o)}function P(n,o){return n.getAttribute(o)?.match(/\S+/g)??[]}const j="cdk-describedby-message",U="cdk-describedby-host";let K=0,q=(()=>{class n{_platform=(0,t.WQX)(S.O);_document=(0,t.WQX)(t.qQL);_messageRegistry=new Map;_messagesContainer=null;_id=""+K++;constructor(){(0,t.WQX)(c.l).load(e.Y),this._id=(0,t.WQX)(p.sZ2)+"-"+K++}describe(f,h,b){if(!this._canBeDescribed(f,h))return;const A=G(h,b);"string"!=typeof h?(Q(h,this._id),this._messageRegistry.set(A,{messageElement:h,referenceCount:0})):this._messageRegistry.has(A)||this._createMessageElement(h,b),this._isElementDescribedByMessage(f,A)||this._addMessageReference(f,A)}removeDescription(f,h,b){if(!h||!this._isElementNode(f))return;const A=G(h,b);if(this._isElementDescribedByMessage(f,A)&&this._removeMessageReference(f,A),"string"==typeof h){const k=this._messageRegistry.get(A);k&&0===k.referenceCount&&this._deleteMessageElement(A)}0===this._messagesContainer?.childNodes.length&&(this._messagesContainer.remove(),this._messagesContainer=null)}ngOnDestroy(){const f=this._document.querySelectorAll(`[${U}="${this._id}"]`);for(let h=0;h0!=b.indexOf(j));f.setAttribute("aria-describedby",h.join(" "))}_addMessageReference(f,h){const b=this._messageRegistry.get(h);w(f,"aria-describedby",b.messageElement.id),f.setAttribute(U,this._id),b.referenceCount++}_removeMessageReference(f,h){const b=this._messageRegistry.get(h);b.referenceCount--,m(f,"aria-describedby",b.messageElement.id),f.removeAttribute(U)}_isElementDescribedByMessage(f,h){const b=P(f,"aria-describedby"),A=this._messageRegistry.get(h),k=A&&A.messageElement.id;return!!k&&-1!=b.indexOf(k)}_canBeDescribed(f,h){if(!this._isElementNode(f))return!1;if(h&&"object"==typeof h)return!0;const b=null==h?"":`${h}`.trim(),A=f.getAttribute("aria-label");return!(!b||A&&A.trim()===b)}_isElementNode(f){return f.nodeType===this._document.ELEMENT_NODE}static \u0275fac=function(h){return new(h||n)};static \u0275prov=t.jDH({token:n,factory:n.\u0275fac,providedIn:"root"})}return n})();function G(n,o){return"string"==typeof n?`${o||""}/${n}`:n}function Q(n,o){n.id||(n.id=`${j}-${o}-${K++}`)}},18689:(Ae,ee,l)=>{"use strict";l.d(ee,{z:()=>t});var i=l(2615);let t=(()=>{class p{_listeners=[];notify(c,e){for(let T of this._listeners)T(c,e)}listen(c){return this._listeners.push(c),()=>{this._listeners=this._listeners.filter(e=>c!==e)}}ngOnDestroy(){this._listeners=[]}static \u0275fac=function(e){return new(e||p)};static \u0275prov=i.jDH({token:p,factory:p.\u0275fac,providedIn:"root"})}return p})()},18810:(Ae,ee,l)=>{"use strict";l.d(ee,{$:()=>p});var i=l(71985),t=l(98071);function p(S,c){const e=(0,t.T)(S)?S:()=>S,T=g=>g.error(e());return new i.c(c?g=>c.schedule(T,0,g):T)}},18823:(Ae,ee,l)=>{"use strict";Ae.exports=p;var i=l(2909),t=Object.create(l(27637));function p(S){if(!(this instanceof p))return new p(S);i.call(this,S)}t.inherits=l(71993),t.inherits(p,i),p.prototype._transform=function(S,c,e){e(null,S)}},19029:(Ae,ee,l)=>{"use strict";l.d(ee,{G:()=>Oa});var i=l(72200),t=l(38132),p=l(89417),S=l(20060),c=l(99327),e=l(3),T=l(19945),g=l(51585),d=l(22628),w=l(1975),m=l(88834),P=l(89726),M=l(76838),G=(l(61577),l(83869),l(67336),l(10438),l(88968)),Q=l(73664),$=l(2615),ae=l(17705),ue=l(12496),oe=l(63386),he=l(31804),me=l(32046),Te=l(22466),D=l(26881);const n=["button"],o=["*"];function f(Wt,Ri){if(1&Wt&&(Q.j41(0,"div",2),Q.nrm(1,"mat-pseudo-checkbox",6),Q.k0s()),2&Wt){const ft=Q.XpG();Q.R7$(),Q.Y8G("disabled",ft.disabled)}}const h=new $.nKC("MAT_BUTTON_TOGGLE_DEFAULT_OPTIONS",{providedIn:"root",factory:function b(){return{hideSingleSelectionIndicator:!1,hideMultipleSelectionIndicator:!1,disabledInteractive:!1}}}),A=new $.nKC("MatButtonToggleGroup");class x{source;value;constructor(Ri,ft){this.source=Ri,this.value=ft}}let _=(()=>{class Wt{_changeDetectorRef=(0,$.WQX)(ae.gRc);_elementRef=(0,$.WQX)(Q.aKT);_focusMonitor=(0,$.WQX)(M.FN);_idGenerator=(0,$.WQX)(P.g);_animationDisabled=(0,he.Rc)();_checked=!1;ariaLabel;ariaLabelledby=null;_buttonElement;buttonToggleGroup;get buttonId(){return`${this.id}-button`}id;name;value;get tabIndex(){return this._tabIndex()}set tabIndex(ft){this._tabIndex.set(ft)}_tabIndex;disableRipple;get appearance(){return this.buttonToggleGroup?this.buttonToggleGroup.appearance:this._appearance}set appearance(ft){this._appearance=ft}_appearance;get checked(){return this.buttonToggleGroup?this.buttonToggleGroup._isSelected(this):this._checked}set checked(ft){ft!==this._checked&&(this._checked=ft,this.buttonToggleGroup&&this.buttonToggleGroup._syncButtonToggle(this,this._checked),this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled||this.buttonToggleGroup&&this.buttonToggleGroup.disabled}set disabled(ft){this._disabled=ft}_disabled=!1;get disabledInteractive(){return this._disabledInteractive||null!==this.buttonToggleGroup&&this.buttonToggleGroup.disabledInteractive}set disabledInteractive(ft){this._disabledInteractive=ft}_disabledInteractive;change=new Q.bkB;constructor(){(0,$.WQX)(G.l).load(me.A);const ft=(0,$.WQX)(A,{optional:!0}),_i=(0,$.WQX)(new ae.ES_("tabindex"),{optional:!0})||"",Li=(0,$.WQX)(h,{optional:!0});this._tabIndex=(0,$.vPA)(parseInt(_i)||0),this.buttonToggleGroup=ft,this.appearance=Li&&Li.appearance?Li.appearance:"standard",this.disabledInteractive=Li?.disabledInteractive??!1}ngOnInit(){const ft=this.buttonToggleGroup;this.id=this.id||this._idGenerator.getId("mat-button-toggle-"),ft&&(ft._isPrechecked(this)?this.checked=!0:ft._isSelected(this)!==this._checked&&ft._syncButtonToggle(this,this._checked))}ngAfterViewInit(){this._animationDisabled||this._elementRef.nativeElement.classList.add("mat-button-toggle-animations-enabled"),this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){const ft=this.buttonToggleGroup;this._focusMonitor.stopMonitoring(this._elementRef),ft&&ft._isSelected(this)&&ft._syncButtonToggle(this,!1,!1,!0)}focus(ft){this._buttonElement.nativeElement.focus(ft)}_onButtonClick(){if(this.disabled)return;const ft=!!this.isSingleSelector()||!this._checked;if(ft!==this._checked&&(this._checked=ft,this.buttonToggleGroup&&(this.buttonToggleGroup._syncButtonToggle(this,this._checked,!0),this.buttonToggleGroup._onTouched())),this.isSingleSelector()){const _i=this.buttonToggleGroup._buttonToggles.find(Li=>0===Li.tabIndex);_i&&(_i.tabIndex=-1),this.tabIndex=0}this.change.emit(new x(this,this.value))}_markForCheck(){this._changeDetectorRef.markForCheck()}_getButtonName(){return this.isSingleSelector()?this.buttonToggleGroup.name:this.name||null}isSingleSelector(){return this.buttonToggleGroup&&!this.buttonToggleGroup.multiple}static \u0275fac=function(_i){return new(_i||Wt)};static \u0275cmp=Q.VBU({type:Wt,selectors:[["mat-button-toggle"]],viewQuery:function(_i,Li){if(1&_i&&Q.GBs(n,5),2&_i){let vn;Q.mGM(vn=Q.lsd())&&(Li._buttonElement=vn.first)}},hostAttrs:["role","presentation",1,"mat-button-toggle"],hostVars:14,hostBindings:function(_i,Li){1&_i&&Q.bIt("focus",function(){return Li.focus()}),2&_i&&(Q.BMQ("aria-label",null)("aria-labelledby",null)("id",Li.id)("name",null),Q.AVh("mat-button-toggle-standalone",!Li.buttonToggleGroup)("mat-button-toggle-checked",Li.checked)("mat-button-toggle-disabled",Li.disabled)("mat-button-toggle-disabled-interactive",Li.disabledInteractive)("mat-button-toggle-appearance-standard","standard"===Li.appearance))},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],id:"id",name:"name",value:"value",tabIndex:"tabIndex",disableRipple:[2,"disableRipple","disableRipple",ae.L39],appearance:"appearance",checked:[2,"checked","checked",ae.L39],disabled:[2,"disabled","disabled",ae.L39],disabledInteractive:[2,"disabledInteractive","disabledInteractive",ae.L39]},outputs:{change:"change"},exportAs:["matButtonToggle"],ngContentSelectors:o,decls:7,vars:13,consts:[["button",""],["type","button",1,"mat-button-toggle-button","mat-focus-indicator",3,"click","id","disabled"],[1,"mat-button-toggle-checkbox-wrapper"],[1,"mat-button-toggle-label-content"],[1,"mat-button-toggle-focus-overlay"],["matRipple","",1,"mat-button-toggle-ripple",3,"matRippleTrigger","matRippleDisabled"],["state","checked","aria-hidden","true","appearance","minimal",3,"disabled"]],template:function(_i,Li){if(1&_i){const vn=Q.RV6();Q.NAR(),Q.j41(0,"button",1,0),Q.bIt("click",function(){return $.eBV(vn),$.Njj(Li._onButtonClick())}),Q.nVh(2,f,2,1,"div",2),Q.j41(3,"span",3),Q.SdG(4),Q.k0s()(),Q.nrm(5,"span",4)(6,"span",5)}if(2&_i){const vn=Q.sdS(1);Q.Y8G("id",Li.buttonId)("disabled",Li.disabled&&!Li.disabledInteractive||null),Q.BMQ("role",Li.isSingleSelector()?"radio":"button")("tabindex",Li.disabled&&!Li.disabledInteractive?-1:Li.tabIndex)("aria-pressed",Li.isSingleSelector()?null:Li.checked)("aria-checked",Li.isSingleSelector()?Li.checked:null)("name",Li._getButtonName())("aria-label",Li.ariaLabel)("aria-labelledby",Li.ariaLabelledby)("aria-disabled",Li.disabled&&Li.disabledInteractive?"true":null),Q.R7$(2),Q.vxM(Li.buttonToggleGroup&&(!Li.buttonToggleGroup.multiple&&!Li.buttonToggleGroup.hideSingleSelectionIndicator||Li.buttonToggleGroup.multiple&&!Li.buttonToggleGroup.hideMultipleSelectionIndicator)?2:-1),Q.R7$(4),Q.Y8G("matRippleTrigger",vn)("matRippleDisabled",Li.disableRipple||Li.disabled)}},dependencies:[ue.r6,oe.w],styles:[".mat-button-toggle-standalone,.mat-button-toggle-group{position:relative;display:inline-flex;flex-direction:row;white-space:nowrap;overflow:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0);border-radius:var(--mat-button-toggle-legacy-shape);transform:translateZ(0)}.mat-button-toggle-standalone:not([class*=mat-elevation-z]),.mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12)}@media(forced-colors: active){.mat-button-toggle-standalone,.mat-button-toggle-group{outline:solid 1px}}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.mat-button-toggle-group-appearance-standard{border-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large));border:solid 1px var(--mat-button-toggle-divider-color, var(--mat-sys-outline))}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard .mat-pseudo-checkbox,.mat-button-toggle-group-appearance-standard .mat-pseudo-checkbox{--mat-pseudo-checkbox-minimal-selected-checkmark-color: var(--mat-button-toggle-selected-state-text-color, var(--mat-sys-on-secondary-container))}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}@media(forced-colors: active){.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.mat-button-toggle-group-appearance-standard{outline:0}}.mat-button-toggle-vertical{flex-direction:column}.mat-button-toggle-vertical .mat-button-toggle-label-content{display:block}.mat-button-toggle{white-space:nowrap;position:relative;color:var(--mat-button-toggle-legacy-text-color);font-family:var(--mat-button-toggle-legacy-label-text-font);font-size:var(--mat-button-toggle-legacy-label-text-size);line-height:var(--mat-button-toggle-legacy-label-text-line-height);font-weight:var(--mat-button-toggle-legacy-label-text-weight);letter-spacing:var(--mat-button-toggle-legacy-label-text-tracking);--mat-pseudo-checkbox-minimal-selected-checkmark-color: var(--mat-button-toggle-legacy-selected-state-text-color)}.mat-button-toggle.cdk-keyboard-focused .mat-button-toggle-focus-overlay{opacity:var(--mat-button-toggle-legacy-focus-state-layer-opacity)}.mat-button-toggle .mat-icon svg{vertical-align:top}.mat-button-toggle-checkbox-wrapper{display:inline-block;justify-content:flex-start;align-items:center;width:0;height:18px;line-height:18px;overflow:hidden;box-sizing:border-box;position:absolute;top:50%;left:16px;transform:translate3d(0, -50%, 0)}[dir=rtl] .mat-button-toggle-checkbox-wrapper{left:auto;right:16px}.mat-button-toggle-appearance-standard .mat-button-toggle-checkbox-wrapper{left:12px}[dir=rtl] .mat-button-toggle-appearance-standard .mat-button-toggle-checkbox-wrapper{left:auto;right:12px}.mat-button-toggle-checked .mat-button-toggle-checkbox-wrapper{width:18px}.mat-button-toggle-animations-enabled .mat-button-toggle-checkbox-wrapper{transition:width 150ms 45ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-button-toggle-vertical .mat-button-toggle-checkbox-wrapper{transition:none}.mat-button-toggle-checked{color:var(--mat-button-toggle-legacy-selected-state-text-color);background-color:var(--mat-button-toggle-legacy-selected-state-background-color)}.mat-button-toggle-disabled{pointer-events:none;color:var(--mat-button-toggle-legacy-disabled-state-text-color);background-color:var(--mat-button-toggle-legacy-disabled-state-background-color);--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: var(--mat-button-toggle-legacy-disabled-state-text-color)}.mat-button-toggle-disabled.mat-button-toggle-checked{background-color:var(--mat-button-toggle-legacy-disabled-selected-state-background-color)}.mat-button-toggle-disabled-interactive{pointer-events:auto}.mat-button-toggle-appearance-standard{color:var(--mat-button-toggle-text-color, var(--mat-sys-on-surface));background-color:var(--mat-button-toggle-background-color, transparent);font-family:var(--mat-button-toggle-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-toggle-label-text-size, var(--mat-sys-label-large-size));line-height:var(--mat-button-toggle-label-text-line-height, var(--mat-sys-label-large-line-height));font-weight:var(--mat-button-toggle-label-text-weight, var(--mat-sys-label-large-weight));letter-spacing:var(--mat-button-toggle-label-text-tracking, var(--mat-sys-label-large-tracking))}.mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard+.mat-button-toggle-appearance-standard{border-left:solid 1px var(--mat-button-toggle-divider-color, var(--mat-sys-outline))}[dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard+.mat-button-toggle-appearance-standard{border-left:none;border-right:solid 1px var(--mat-button-toggle-divider-color, var(--mat-sys-outline))}.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle-appearance-standard+.mat-button-toggle-appearance-standard{border-left:none;border-right:none;border-top:solid 1px var(--mat-button-toggle-divider-color, var(--mat-sys-outline))}.mat-button-toggle-appearance-standard.mat-button-toggle-checked{color:var(--mat-button-toggle-selected-state-text-color, var(--mat-sys-on-secondary-container));background-color:var(--mat-button-toggle-selected-state-background-color, var(--mat-sys-secondary-container))}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled{color:var(--mat-button-toggle-disabled-state-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-button-toggle-disabled-state-background-color, transparent)}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled .mat-pseudo-checkbox{--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: var(--mat-button-toggle-disabled-selected-state-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled.mat-button-toggle-checked{color:var(--mat-button-toggle-disabled-selected-state-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-button-toggle-disabled-selected-state-background-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:var(--mat-button-toggle-state-layer-color, var(--mat-sys-on-surface))}.mat-button-toggle-appearance-standard:hover .mat-button-toggle-focus-overlay{opacity:var(--mat-button-toggle-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-button-toggle-appearance-standard.cdk-keyboard-focused .mat-button-toggle-focus-overlay{opacity:var(--mat-button-toggle-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}@media(hover: none){.mat-button-toggle-appearance-standard:hover .mat-button-toggle-focus-overlay{display:none}}.mat-button-toggle-label-content{-webkit-user-select:none;user-select:none;display:inline-block;padding:0 16px;line-height:var(--mat-button-toggle-legacy-height);position:relative}.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{padding:0 12px;line-height:var(--mat-button-toggle-height, 40px)}.mat-button-toggle-label-content>*{vertical-align:middle}.mat-button-toggle-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:inherit;pointer-events:none;opacity:0;background-color:var(--mat-button-toggle-legacy-state-layer-color)}@media(forced-colors: active){.mat-button-toggle-checked .mat-button-toggle-focus-overlay{border-bottom:solid 500px;opacity:.5;height:0}.mat-button-toggle-checked:hover .mat-button-toggle-focus-overlay{opacity:.6}.mat-button-toggle-checked.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{border-bottom:solid 500px}}.mat-button-toggle .mat-button-toggle-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-button-toggle-button{border:0;background:none;color:inherit;padding:0;margin:0;font:inherit;outline:none;width:100%;cursor:pointer}.mat-button-toggle-animations-enabled .mat-button-toggle-button{transition:padding 150ms 45ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-button-toggle-vertical .mat-button-toggle-button{transition:none}.mat-button-toggle-disabled .mat-button-toggle-button{cursor:default}.mat-button-toggle-button::-moz-focus-inner{border:0}.mat-button-toggle-checked .mat-button-toggle-button:has(.mat-button-toggle-checkbox-wrapper){padding-left:30px}[dir=rtl] .mat-button-toggle-checked .mat-button-toggle-button:has(.mat-button-toggle-checkbox-wrapper){padding-left:0;padding-right:30px}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard{--mat-focus-indicator-border-radius: var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large))}.mat-button-toggle-group-appearance-standard:not(.mat-button-toggle-vertical) .mat-button-toggle:last-of-type .mat-button-toggle-button::before{border-top-right-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large));border-bottom-right-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large))}.mat-button-toggle-group-appearance-standard:not(.mat-button-toggle-vertical) .mat-button-toggle:first-of-type .mat-button-toggle-button::before{border-top-left-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large));border-bottom-left-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large))}.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle:last-of-type .mat-button-toggle-button::before{border-bottom-right-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large));border-bottom-left-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large))}.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle:first-of-type .mat-button-toggle-button::before{border-top-right-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large));border-top-left-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large))}\n"],encapsulation:2,changeDetection:0})}return Wt})(),W=(()=>{class Wt{static \u0275fac=function(_i){return new(_i||Wt)};static \u0275mod=Q.$C({type:Wt});static \u0275inj=$.G2t({imports:[Te.y,D.p,_,Te.y]})}return Wt})();var I=l(25596),B=l(82765),re=l(25084),pe=l(9454),be=l(82885),Be=l(12629),_e=l(33746),ye=l(3902),Le=l(59115),Ke=l(96695),ge=l(67575),ve=l(9183),Oe=l(5951),Ee=l(96183),dt=l(90882),nt=l(30450),Ct=l(39842);l(21413);let yt=(()=>{class Wt{static \u0275fac=function(_i){return new(_i||Wt)};static \u0275mod=Q.$C({type:Wt});static \u0275inj=$.G2t({imports:[Te.y,D.p]})}return Wt})();var Vt=l(95416),Zt=l(2042),ti=l(36013),Ye=l(19295),Nt=l(96850),Et=l(55911),Jt=l(86156),qe=l(47358),$e=l(36471),tt=l(29340),vi=l(16038),ei=l(52920);l(14085);let Un=(()=>{class Wt{}return Wt.\u0275fac=function(ft){return new(ft||Wt)},Wt.\u0275mod=Q.$C({type:Wt}),Wt.\u0275inj=$.G2t({imports:[tt.Ui]}),Wt})();var Ca=l(60177);let tr=(()=>{class Wt{constructor(ft,_i){(0,Ca.Vy)(_i)&&!ft&&console.warn("Warning: Flex Layout loaded on the server without FlexLayoutServerModule")}static withConfig(ft,_i=[]){return{ngModule:Wt,providers:ft.serverLoaded?[{provide:tt.EA,useValue:{...tt.PV,...ft}},{provide:tt.SL,useValue:_i,multi:!0},{provide:tt.Ce,useValue:!0}]:[{provide:tt.EA,useValue:{...tt.PV,...ft}},{provide:tt.SL,useValue:_i,multi:!0}]}}}return Wt.\u0275fac=function(ft){return new(ft||Wt)($.KVO(tt.Ce),$.KVO(Q.Agw))},Wt.\u0275mod=Q.$C({type:Wt}),Wt.\u0275inj=$.G2t({imports:[ei.w2,vi.Cc,Un,ei.w2,vi.Cc,Un]}),Wt})();var Ra=l(51993),Xa=l(38288),za=l(10497),vr=l(49338);let Sn=(()=>{var Wt;class Ri extends vr.Sf{constructor(_i,Li){super(_i,Li)}_createContainer(){super._createContainer(),this._containerElement&&(document.querySelector("#rtl-container")||document.body).appendChild(this._containerElement)}ngOnDestroy(){super.ngOnDestroy()}static#e=Wt=()=>(this.\u0275fac=function(Li){return new(Li||Ri)(Q.rXU($.qQL),Q.rXU(Ct.O))},this.\u0275dir=Q.FsC({type:Ri,features:[Q.Vt3]}))}return Wt(),Ri})();var ka=l(98570),Ka=l(4416),pr=l(52929),gr=l(29330);const ds={suppressScrollX:!1,suppressScrollY:!1};let ao=(()=>{var Wt;class Ri extends e.xW{constructor(_i){super(_i)}format(_i,Li){if("input"===Li){let vn=_i.getDate().toString();return vn=+vn<10?"0"+vn:vn,vn+"/"+Ka.KR[_i.getMonth()].name.toUpperCase()+"/"+_i.getFullYear()}return Ka.KR[_i.getMonth()].name.toUpperCase()+" "+_i.getFullYear()}static#e=Wt=()=>(this.\u0275fac=function(Li){return new(Li||Ri)($.KVO(T.Ju,8))},this.\u0275prov=$.jDH({token:Ri,factory:Ri.\u0275fac}))}return Wt(),Ri})();const Ss={parse:{dateInput:{day:"numeric",month:"short",year:"numeric"}},display:{dateInput:"input",monthYearLabel:{month:"short",year:"numeric"},dateA11yLabel:{day:"numeric",month:"short",year:"numeric"},monthYearA11yLabel:{month:"short",year:"numeric"}}};let Oa=(()=>{var Wt;class Ri{static#e=Wt=()=>(this.\u0275fac=function(Li){return new(Li||Ri)},this.\u0275mod=Q.$C({type:Ri}),this.\u0275inj=$.G2t({providers:[{provide:ka.gP,useClass:ka.tU},{provide:za.kU,useValue:ds},{provide:Vt.x6,useValue:{duration:2e3,verticalPosition:"bottom",panelClass:"rtl-snack-bar"}},{provide:g.di,useValue:{hasBackdrop:!0,autoFocus:!0,disableClose:!0,role:"dialog"}},{provide:T.MJ,useClass:ao},{provide:T.de,useValue:Ss},{provide:vr.Sf,useClass:Sn},i.QX,i.PV,i.vh,pr.gZ,pr.ZE,pr.VD,pr.Qu],imports:[i.MD,gr.q1,p.YN,p.X1,S.dX,c.RH,g.hM,m.Hl,W,I.Hu,B.g7,pe.MY,be.Fe,re.X6,e.WX,Be.m_,_e.fS,ye.Fg,Le.Cn,ge.PO,ve.D6,Oe.Wk,qe.jH,tr,$e.YN,Ee.Ve,dt.vg,nt.mV,Zt.NQ,Ye.tP,Et.s5,Jt.u,w.Y,Ke.Ou,ti.aP,yt,Nt.RI,Vt._T,d.jL,Ra.dV,Xa.XK,t.iI,za.U$,p.YN,p.X1,S.dX,c.RH,g.hM,m.Hl,W,I.Hu,B.g7,pe.MY,be.Fe,re.X6,e.WX,Be.m_,_e.fS,ye.Fg,Le.Cn,ge.PO,ve.D6,Oe.Wk,qe.jH,tr,$e.YN,Ee.Ve,dt.vg,nt.mV,Zt.NQ,Ye.tP,Et.s5,Jt.u,w.Y,Ke.Ou,ti.aP,yt,Nt.RI,Vt._T,d.jL,Ra.dV,Xa.XK,za.U$]}))}return Wt(),Ri})()},19089:(Ae,ee)=>{let l;const i=[0,26,44,70,100,134,172,196,242,292,346,404,466,532,581,655,733,815,901,991,1085,1156,1258,1364,1474,1588,1706,1828,1921,2051,2185,2323,2465,2611,2761,2876,3034,3196,3362,3532,3706];ee.getSymbolSize=function(p){if(!p)throw new Error('"version" cannot be null or undefined');if(p<1||p>40)throw new Error('"version" should be in range from 1 to 40');return 4*p+17},ee.getSymbolTotalCodewords=function(p){return i[p]},ee.getBCHDigit=function(t){let p=0;for(;0!==t;)p++,t>>>=1;return p},ee.setToSJISFunction=function(p){if("function"!=typeof p)throw new Error('"toSJISFunc" is not a valid function.');l=p},ee.isKanjiModeEnabled=function(){return typeof l<"u"},ee.toSJIS=function(p){return l(p)}},19270:(Ae,ee,l)=>{"use strict";l.d(ee,{f:()=>i});const i={setTimeout(t,p,...S){const{delegate:c}=i;return c?.setTimeout?c.setTimeout(t,p,...S):setTimeout(t,p,...S)},clearTimeout(t){const{delegate:p}=i;return(p?.clearTimeout||clearTimeout)(t)},delegate:void 0}},19295:(Ae,ee,l)=>{"use strict";l.d(ee,{$R:()=>Jt,YV:()=>Vt,cC:()=>Ye,Qo:()=>Et,Zq:()=>ti,iF:()=>ci,xW:()=>tt,KS:()=>Nt,tL:()=>Zt,YZ:()=>ei,ji:()=>$e,NB:()=>Hi,iL:()=>vi,Zl:()=>yt,I6:()=>zn,tP:()=>nn});var i=l(73664),t=l(2615),p=l(17705),S=l(14117),c=l(21413),e=l(84412),T=l(74402),g=l(7673),d=l(56977),m=function(It){return It[It.REPLACED=0]="REPLACED",It[It.INSERTED=1]="INSERTED",It[It.MOVED=2]="MOVED",It[It.REMOVED=3]="REMOVED",It}(m||{});const P=new t.nKC("_ViewRepeater");class j{applyChanges(Tt,Ze,Ve,Fe,it){Tt.forEachOperation((bt,ut,jt)=>{let ai,pi;if(null==bt.previousIndex){const ki=Ve(bt,ut,jt);ai=Ze.createEmbeddedView(ki.templateRef,ki.context,ki.index),pi=m.INSERTED}else null==jt?(Ze.remove(ut),pi=m.REMOVED):(ai=Ze.get(ut),Ze.move(ai,jt),pi=m.MOVED);it&&it({context:ai?.context,operation:pi,record:bt})})}detach(){}}var U=l(61577),K=l(39842),q=l(5718);const G=[[["caption"]],[["colgroup"],["col"]],"*"],Q=["caption","colgroup, col","*"];function $(It,Tt){1&It&&i.SdG(0,2)}function ae(It,Tt){1&It&&(i.j41(0,"thead",0),i.eu8(1,1),i.k0s(),i.j41(2,"tbody",0),i.eu8(3,2)(4,3),i.k0s(),i.j41(5,"tfoot",0),i.eu8(6,4),i.k0s())}function ue(It,Tt){1&It&&i.eu8(0,1)(1,2)(2,3)(3,4)}const me=new t.nKC("CDK_TABLE");let D=(()=>{class It{template=(0,t.WQX)(i.C4Q);constructor(){}static \u0275fac=function(Ve){return new(Ve||It)};static \u0275dir=i.FsC({type:It,selectors:[["","cdkCellDef",""]]})}return It})(),n=(()=>{class It{template=(0,t.WQX)(i.C4Q);constructor(){}static \u0275fac=function(Ve){return new(Ve||It)};static \u0275dir=i.FsC({type:It,selectors:[["","cdkHeaderCellDef",""]]})}return It})(),o=(()=>{class It{template=(0,t.WQX)(i.C4Q);constructor(){}static \u0275fac=function(Ve){return new(Ve||It)};static \u0275dir=i.FsC({type:It,selectors:[["","cdkFooterCellDef",""]]})}return It})(),f=(()=>{class It{_table=(0,t.WQX)(me,{optional:!0});_hasStickyChanged=!1;get name(){return this._name}set name(Ze){this._setNameInput(Ze)}_name;get sticky(){return this._sticky}set sticky(Ze){Ze!==this._sticky&&(this._sticky=Ze,this._hasStickyChanged=!0)}_sticky=!1;get stickyEnd(){return this._stickyEnd}set stickyEnd(Ze){Ze!==this._stickyEnd&&(this._stickyEnd=Ze,this._hasStickyChanged=!0)}_stickyEnd=!1;cell;headerCell;footerCell;cssClassFriendlyName;_columnCssClassName;constructor(){}hasStickyChanged(){const Ze=this._hasStickyChanged;return this.resetStickyChanged(),Ze}resetStickyChanged(){this._hasStickyChanged=!1}_updateColumnCssClassName(){this._columnCssClassName=[`cdk-column-${this.cssClassFriendlyName}`]}_setNameInput(Ze){Ze&&(this._name=Ze,this.cssClassFriendlyName=Ze.replace(/[^a-z0-9_-]/gi,"-"),this._updateColumnCssClassName())}static \u0275fac=function(Ve){return new(Ve||It)};static \u0275dir=i.FsC({type:It,selectors:[["","cdkColumnDef",""]],contentQueries:function(Ve,Fe,it){if(1&Ve&&(i.wni(it,D,5),i.wni(it,n,5),i.wni(it,o,5)),2&Ve){let bt;i.mGM(bt=i.lsd())&&(Fe.cell=bt.first),i.mGM(bt=i.lsd())&&(Fe.headerCell=bt.first),i.mGM(bt=i.lsd())&&(Fe.footerCell=bt.first)}},inputs:{name:[0,"cdkColumnDef","name"],sticky:[2,"sticky","sticky",p.L39],stickyEnd:[2,"stickyEnd","stickyEnd",p.L39]},features:[i.Jv_([{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:It}])]})}return It})();class h{constructor(Tt,Ze){Ze.nativeElement.classList.add(...Tt._columnCssClassName)}}let b=(()=>{class It extends h{constructor(){super((0,t.WQX)(f),(0,t.WQX)(i.aKT))}static \u0275fac=function(Ve){return new(Ve||It)};static \u0275dir=i.FsC({type:It,selectors:[["cdk-header-cell"],["th","cdk-header-cell",""]],hostAttrs:["role","columnheader",1,"cdk-header-cell"],features:[i.Vt3]})}return It})(),A=(()=>{class It extends h{constructor(){const Ze=(0,t.WQX)(f),Ve=(0,t.WQX)(i.aKT);super(Ze,Ve);const Fe=Ze._table?._getCellRole();Fe&&Ve.nativeElement.setAttribute("role",Fe)}static \u0275fac=function(Ve){return new(Ve||It)};static \u0275dir=i.FsC({type:It,selectors:[["cdk-footer-cell"],["td","cdk-footer-cell",""]],hostAttrs:[1,"cdk-footer-cell"],features:[i.Vt3]})}return It})(),k=(()=>{class It extends h{constructor(){const Ze=(0,t.WQX)(f),Ve=(0,t.WQX)(i.aKT);super(Ze,Ve);const Fe=Ze._table?._getCellRole();Fe&&Ve.nativeElement.setAttribute("role",Fe)}static \u0275fac=function(Ve){return new(Ve||It)};static \u0275dir=i.FsC({type:It,selectors:[["cdk-cell"],["td","cdk-cell",""]],hostAttrs:[1,"cdk-cell"],features:[i.Vt3]})}return It})(),r=(()=>{class It{template=(0,t.WQX)(i.C4Q);_differs=(0,t.WQX)(p._q3);columns;_columnsDiffer;constructor(){}ngOnChanges(Ze){if(!this._columnsDiffer){const Ve=Ze.columns&&Ze.columns.currentValue||[];this._columnsDiffer=this._differs.find(Ve).create(),this._columnsDiffer.diff(Ve)}}getColumnsDiff(){return this._columnsDiffer.diff(this.columns)}extractCellTemplate(Ze){return this instanceof _?Ze.headerCell.template:this instanceof W?Ze.footerCell.template:Ze.cell.template}static \u0275fac=function(Ve){return new(Ve||It)};static \u0275dir=i.FsC({type:It,features:[i.OA$]})}return It})(),_=(()=>{class It extends r{_table=(0,t.WQX)(me,{optional:!0});_hasStickyChanged=!1;get sticky(){return this._sticky}set sticky(Ze){Ze!==this._sticky&&(this._sticky=Ze,this._hasStickyChanged=!0)}_sticky=!1;constructor(){super((0,t.WQX)(i.C4Q),(0,t.WQX)(p._q3))}ngOnChanges(Ze){super.ngOnChanges(Ze)}hasStickyChanged(){const Ze=this._hasStickyChanged;return this.resetStickyChanged(),Ze}resetStickyChanged(){this._hasStickyChanged=!1}static \u0275fac=function(Ve){return new(Ve||It)};static \u0275dir=i.FsC({type:It,selectors:[["","cdkHeaderRowDef",""]],inputs:{columns:[0,"cdkHeaderRowDef","columns"],sticky:[2,"cdkHeaderRowDefSticky","sticky",p.L39]},features:[i.Vt3,i.OA$]})}return It})(),W=(()=>{class It extends r{_table=(0,t.WQX)(me,{optional:!0});_hasStickyChanged=!1;get sticky(){return this._sticky}set sticky(Ze){Ze!==this._sticky&&(this._sticky=Ze,this._hasStickyChanged=!0)}_sticky=!1;constructor(){super((0,t.WQX)(i.C4Q),(0,t.WQX)(p._q3))}ngOnChanges(Ze){super.ngOnChanges(Ze)}hasStickyChanged(){const Ze=this._hasStickyChanged;return this.resetStickyChanged(),Ze}resetStickyChanged(){this._hasStickyChanged=!1}static \u0275fac=function(Ve){return new(Ve||It)};static \u0275dir=i.FsC({type:It,selectors:[["","cdkFooterRowDef",""]],inputs:{columns:[0,"cdkFooterRowDef","columns"],sticky:[2,"cdkFooterRowDefSticky","sticky",p.L39]},features:[i.Vt3,i.OA$]})}return It})(),I=(()=>{class It extends r{_table=(0,t.WQX)(me,{optional:!0});when;constructor(){super((0,t.WQX)(i.C4Q),(0,t.WQX)(p._q3))}static \u0275fac=function(Ve){return new(Ve||It)};static \u0275dir=i.FsC({type:It,selectors:[["","cdkRowDef",""]],inputs:{columns:[0,"cdkRowDefColumns","columns"],when:[0,"cdkRowDefWhen","when"]},features:[i.Vt3]})}return It})(),B=(()=>{class It{_viewContainer=(0,t.WQX)(i.c1b);cells;context;static mostRecentCellOutlet=null;constructor(){It.mostRecentCellOutlet=this}ngOnDestroy(){It.mostRecentCellOutlet===this&&(It.mostRecentCellOutlet=null)}static \u0275fac=function(Ve){return new(Ve||It)};static \u0275dir=i.FsC({type:It,selectors:[["","cdkCellOutlet",""]]})}return It})(),re=(()=>{class It{static \u0275fac=function(Ve){return new(Ve||It)};static \u0275cmp=i.VBU({type:It,selectors:[["cdk-header-row"],["tr","cdk-header-row",""]],hostAttrs:["role","row",1,"cdk-header-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Ve,Fe){1&Ve&&i.eu8(0,0)},dependencies:[B],encapsulation:2})}return It})(),pe=(()=>{class It{static \u0275fac=function(Ve){return new(Ve||It)};static \u0275cmp=i.VBU({type:It,selectors:[["cdk-footer-row"],["tr","cdk-footer-row",""]],hostAttrs:["role","row",1,"cdk-footer-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Ve,Fe){1&Ve&&i.eu8(0,0)},dependencies:[B],encapsulation:2})}return It})(),be=(()=>{class It{static \u0275fac=function(Ve){return new(Ve||It)};static \u0275cmp=i.VBU({type:It,selectors:[["cdk-row"],["tr","cdk-row",""]],hostAttrs:["role","row",1,"cdk-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Ve,Fe){1&Ve&&i.eu8(0,0)},dependencies:[B],encapsulation:2})}return It})(),Be=(()=>{class It{templateRef=(0,t.WQX)(i.C4Q);_contentClassNames=["cdk-no-data-row","cdk-row"];_cellClassNames=["cdk-cell","cdk-no-data-cell"];_cellSelector="td, cdk-cell, [cdk-cell], .cdk-cell";constructor(){}static \u0275fac=function(Ve){return new(Ve||It)};static \u0275dir=i.FsC({type:It,selectors:[["ng-template","cdkNoDataRow",""]]})}return It})();const _e=["top","bottom","left","right"];class ye{_isNativeHtmlTable;_stickCellCss;_isBrowser;_needsPositionStickyOnElement;direction;_positionListener;_tableInjector;_elemSizeCache=new WeakMap;_resizeObserver=globalThis?.ResizeObserver?new globalThis.ResizeObserver(Tt=>this._updateCachedSizes(Tt)):null;_updatedStickyColumnsParamsToReplay=[];_stickyColumnsReplayTimeout=null;_cachedCellWidths=[];_borderCellCss;_destroyed=!1;constructor(Tt,Ze,Ve=!0,Fe=!0,it,bt,ut){this._isNativeHtmlTable=Tt,this._stickCellCss=Ze,this._isBrowser=Ve,this._needsPositionStickyOnElement=Fe,this.direction=it,this._positionListener=bt,this._tableInjector=ut,this._borderCellCss={top:`${Ze}-border-elem-top`,bottom:`${Ze}-border-elem-bottom`,left:`${Ze}-border-elem-left`,right:`${Ze}-border-elem-right`}}clearStickyPositioning(Tt,Ze){(Ze.includes("left")||Ze.includes("right"))&&this._removeFromStickyColumnReplayQueue(Tt);const Ve=[];for(const Fe of Tt)Fe.nodeType===Fe.ELEMENT_NODE&&Ve.push(Fe,...Array.from(Fe.children));(0,i.mal)({write:()=>{for(const Fe of Ve)this._removeStickyStyle(Fe,Ze)}},{injector:this._tableInjector})}updateStickyColumns(Tt,Ze,Ve,Fe=!0,it=!0){if(!Tt.length||!this._isBrowser||!Ze.some(An=>An)&&!Ve.some(An=>An))return this._positionListener?.stickyColumnsUpdated({sizes:[]}),void this._positionListener?.stickyEndColumnsUpdated({sizes:[]});const bt=Tt[0],ut=bt.children.length,jt="rtl"===this.direction,ai=jt?"right":"left",pi=jt?"left":"right",ki=Ze.lastIndexOf(!0),Ki=Ve.indexOf(!0);let Ji,Dn,En;it&&this._updateStickyColumnReplayQueue({rows:[...Tt],stickyStartStates:[...Ze],stickyEndStates:[...Ve]}),(0,i.mal)({earlyRead:()=>{Ji=this._getCellWidths(bt,Fe),Dn=this._getStickyStartColumnPositions(Ji,Ze),En=this._getStickyEndColumnPositions(Ji,Ve)},write:()=>{for(const An of Tt)for(let Fn=0;Fn!!An)&&(this._positionListener.stickyColumnsUpdated({sizes:-1===ki?[]:Ji.slice(0,ki+1).map((An,Fn)=>Ze[Fn]?An:null)}),this._positionListener.stickyEndColumnsUpdated({sizes:-1===Ki?[]:Ji.slice(Ki).map((An,Fn)=>Ve[Fn+Ki]?An:null).reverse()}))}},{injector:this._tableInjector})}stickRows(Tt,Ze,Ve){if(!this._isBrowser)return;const Fe="bottom"===Ve?Tt.slice().reverse():Tt,it="bottom"===Ve?Ze.slice().reverse():Ze,bt=[],ut=[],jt=[];(0,i.mal)({earlyRead:()=>{for(let ai=0,pi=0;ai{const ai=it.lastIndexOf(!0);for(let pi=0;pi{const Ve=Tt.querySelector("tfoot");Ve&&(Ze.some(Fe=>!Fe)?this._removeStickyStyle(Ve,["bottom"]):this._addStickyStyle(Ve,"bottom",0,!1))}},{injector:this._tableInjector})}destroy(){this._stickyColumnsReplayTimeout&&clearTimeout(this._stickyColumnsReplayTimeout),this._resizeObserver?.disconnect(),this._destroyed=!0}_removeStickyStyle(Tt,Ze){if(Tt.classList.contains(this._stickCellCss)){for(const Fe of Ze)Tt.style[Fe]="",Tt.classList.remove(this._borderCellCss[Fe]);_e.some(Fe=>-1===Ze.indexOf(Fe)&&Tt.style[Fe])?Tt.style.zIndex=this._getCalculatedZIndex(Tt):(Tt.style.zIndex="",this._needsPositionStickyOnElement&&(Tt.style.position=""),Tt.classList.remove(this._stickCellCss))}}_addStickyStyle(Tt,Ze,Ve,Fe){Tt.classList.add(this._stickCellCss),Fe&&Tt.classList.add(this._borderCellCss[Ze]),Tt.style[Ze]=`${Ve}px`,Tt.style.zIndex=this._getCalculatedZIndex(Tt),this._needsPositionStickyOnElement&&(Tt.style.cssText+="position: -webkit-sticky; position: sticky; ")}_getCalculatedZIndex(Tt){const Ze={top:100,bottom:10,left:1,right:1};let Ve=0;for(const Fe of _e)Tt.style[Fe]&&(Ve+=Ze[Fe]);return Ve?`${Ve}`:""}_getCellWidths(Tt,Ze=!0){if(!Ze&&this._cachedCellWidths.length)return this._cachedCellWidths;const Ve=[],Fe=Tt.children;for(let it=0;it0;it--)Ze[it]&&(Ve[it]=Fe,Fe+=Tt[it]);return Ve}_retrieveElementSize(Tt){const Ze=this._elemSizeCache.get(Tt);if(Ze)return Ze;const Ve=Tt.getBoundingClientRect(),Fe={width:Ve.width,height:Ve.height};return this._resizeObserver&&(this._elemSizeCache.set(Tt,Fe),this._resizeObserver.observe(Tt,{box:"border-box"})),Fe}_updateStickyColumnReplayQueue(Tt){this._removeFromStickyColumnReplayQueue(Tt.rows),this._stickyColumnsReplayTimeout||this._updatedStickyColumnsParamsToReplay.push(Tt)}_removeFromStickyColumnReplayQueue(Tt){const Ze=new Set(Tt);for(const Ve of this._updatedStickyColumnsParamsToReplay)Ve.rows=Ve.rows.filter(Fe=>!Ze.has(Fe));this._updatedStickyColumnsParamsToReplay=this._updatedStickyColumnsParamsToReplay.filter(Ve=>!!Ve.rows.length)}_updateCachedSizes(Tt){let Ze=!1;for(const Ve of Tt){const Fe=Ve.borderBoxSize?.length?{width:Ve.borderBoxSize[0].inlineSize,height:Ve.borderBoxSize[0].blockSize}:{width:Ve.contentRect.width,height:Ve.contentRect.height};Fe.width!==this._elemSizeCache.get(Ve.target)?.width&&Le(Ve.target)&&(Ze=!0),this._elemSizeCache.set(Ve.target,Fe)}Ze&&this._updatedStickyColumnsParamsToReplay.length&&(this._stickyColumnsReplayTimeout&&clearTimeout(this._stickyColumnsReplayTimeout),this._stickyColumnsReplayTimeout=setTimeout(()=>{if(!this._destroyed){for(const Ve of this._updatedStickyColumnsParamsToReplay)this.updateStickyColumns(Ve.rows,Ve.stickyStartStates,Ve.stickyEndStates,!0,!1);this._updatedStickyColumnsParamsToReplay=[],this._stickyColumnsReplayTimeout=null}},0))}}function Le(It){return["cdk-cell","cdk-header-cell","cdk-footer-cell"].some(Tt=>It.classList.contains(Tt))}const Mt=new t.nKC("CDK_SPL");let Pe=(()=>{class It{viewContainer=(0,t.WQX)(i.c1b);elementRef=(0,t.WQX)(i.aKT);constructor(){const Ze=(0,t.WQX)(me);Ze._rowOutlet=this,Ze._outletAssigned()}static \u0275fac=function(Ve){return new(Ve||It)};static \u0275dir=i.FsC({type:It,selectors:[["","rowOutlet",""]]})}return It})(),Ht=(()=>{class It{viewContainer=(0,t.WQX)(i.c1b);elementRef=(0,t.WQX)(i.aKT);constructor(){const Ze=(0,t.WQX)(me);Ze._headerRowOutlet=this,Ze._outletAssigned()}static \u0275fac=function(Ve){return new(Ve||It)};static \u0275dir=i.FsC({type:It,selectors:[["","headerRowOutlet",""]]})}return It})(),ct=(()=>{class It{viewContainer=(0,t.WQX)(i.c1b);elementRef=(0,t.WQX)(i.aKT);constructor(){const Ze=(0,t.WQX)(me);Ze._footerRowOutlet=this,Ze._outletAssigned()}static \u0275fac=function(Ve){return new(Ve||It)};static \u0275dir=i.FsC({type:It,selectors:[["","footerRowOutlet",""]]})}return It})(),Ce=(()=>{class It{viewContainer=(0,t.WQX)(i.c1b);elementRef=(0,t.WQX)(i.aKT);constructor(){const Ze=(0,t.WQX)(me);Ze._noDataRowOutlet=this,Ze._outletAssigned()}static \u0275fac=function(Ve){return new(Ve||It)};static \u0275dir=i.FsC({type:It,selectors:[["","noDataRowOutlet",""]]})}return It})(),ze=(()=>{class It{_differs=(0,t.WQX)(p._q3);_changeDetectorRef=(0,t.WQX)(p.gRc);_elementRef=(0,t.WQX)(i.aKT);_dir=(0,t.WQX)(U.dS,{optional:!0});_platform=(0,t.WQX)(K.O);_viewRepeater=(0,t.WQX)(P);_viewportRuler=(0,t.WQX)(q.Xj);_stickyPositioningListener=(0,t.WQX)(Mt,{optional:!0,skipSelf:!0});_document=(0,t.WQX)(t.qQL);_data;_onDestroy=new c.B;_renderRows;_renderChangeSubscription;_columnDefsByName=new Map;_rowDefs;_headerRowDefs;_footerRowDefs;_dataDiffer;_defaultRowDef;_customColumnDefs=new Set;_customRowDefs=new Set;_customHeaderRowDefs=new Set;_customFooterRowDefs=new Set;_customNoDataRow;_headerRowDefChanged=!0;_footerRowDefChanged=!0;_stickyColumnStylesNeedReset=!0;_forceRecalculateCellWidths=!0;_cachedRenderRowsMap=new Map;_isNativeHtmlTable;_stickyStyler;stickyCssClass="cdk-table-sticky";needsPositionStickyOnElement=!0;_isServer;_isShowingNoDataRow=!1;_hasAllOutlets=!1;_hasInitialized=!1;_getCellRole(){if(void 0===this._cellRoleInternal){const Ze=this._elementRef.nativeElement.getAttribute("role");return"grid"===Ze||"treegrid"===Ze?"gridcell":"cell"}return this._cellRoleInternal}_cellRoleInternal=void 0;get trackBy(){return this._trackByFn}set trackBy(Ze){this._trackByFn=Ze}_trackByFn;get dataSource(){return this._dataSource}set dataSource(Ze){this._dataSource!==Ze&&this._switchDataSource(Ze)}_dataSource;get multiTemplateDataRows(){return this._multiTemplateDataRows}set multiTemplateDataRows(Ze){this._multiTemplateDataRows=Ze,this._rowOutlet&&this._rowOutlet.viewContainer.length&&(this._forceRenderDataRows(),this.updateStickyColumnStyles())}_multiTemplateDataRows=!1;get fixedLayout(){return this._fixedLayout}set fixedLayout(Ze){this._fixedLayout=Ze,this._forceRecalculateCellWidths=!0,this._stickyColumnStylesNeedReset=!0}_fixedLayout=!1;contentChanged=new i.bkB;viewChange=new e.t({start:0,end:Number.MAX_VALUE});_rowOutlet;_headerRowOutlet;_footerRowOutlet;_noDataRowOutlet;_contentColumnDefs;_contentRowDefs;_contentHeaderRowDefs;_contentFooterRowDefs;_noDataRow;_injector=(0,t.WQX)(t.zZn);constructor(){(0,t.WQX)(new p.ES_("role"),{optional:!0})||this._elementRef.nativeElement.setAttribute("role","table"),this._isServer=!this._platform.isBrowser,this._isNativeHtmlTable="TABLE"===this._elementRef.nativeElement.nodeName,this._dataDiffer=this._differs.find([]).create((Ve,Fe)=>this.trackBy?this.trackBy(Fe.dataIndex,Fe.data):Fe)}ngOnInit(){this._setupStickyStyler(),this._viewportRuler.change().pipe((0,d.Q)(this._onDestroy)).subscribe(()=>{this._forceRecalculateCellWidths=!0})}ngAfterContentInit(){this._hasInitialized=!0}ngAfterContentChecked(){this._canRender()&&this._render()}ngOnDestroy(){this._stickyStyler?.destroy(),[this._rowOutlet?.viewContainer,this._headerRowOutlet?.viewContainer,this._footerRowOutlet?.viewContainer,this._cachedRenderRowsMap,this._customColumnDefs,this._customRowDefs,this._customHeaderRowDefs,this._customFooterRowDefs,this._columnDefsByName].forEach(Ze=>{Ze?.clear()}),this._headerRowDefs=[],this._footerRowDefs=[],this._defaultRowDef=null,this._onDestroy.next(),this._onDestroy.complete(),(0,S.y)(this.dataSource)&&this.dataSource.disconnect(this)}renderRows(){this._renderRows=this._getAllRenderRows();const Ze=this._dataDiffer.diff(this._renderRows);if(!Ze)return this._updateNoDataRow(),void this.contentChanged.next();const Ve=this._rowOutlet.viewContainer;this._viewRepeater.applyChanges(Ze,Ve,(Fe,it,bt)=>this._getEmbeddedViewArgs(Fe.item,bt),Fe=>Fe.item.data,Fe=>{Fe.operation===m.INSERTED&&Fe.context&&this._renderCellTemplateForItem(Fe.record.item.rowDef,Fe.context)}),this._updateRowIndexContext(),Ze.forEachIdentityChange(Fe=>{Ve.get(Fe.currentIndex).context.$implicit=Fe.item.data}),this._updateNoDataRow(),this.contentChanged.next(),this.updateStickyColumnStyles()}addColumnDef(Ze){this._customColumnDefs.add(Ze)}removeColumnDef(Ze){this._customColumnDefs.delete(Ze)}addRowDef(Ze){this._customRowDefs.add(Ze)}removeRowDef(Ze){this._customRowDefs.delete(Ze)}addHeaderRowDef(Ze){this._customHeaderRowDefs.add(Ze),this._headerRowDefChanged=!0}removeHeaderRowDef(Ze){this._customHeaderRowDefs.delete(Ze),this._headerRowDefChanged=!0}addFooterRowDef(Ze){this._customFooterRowDefs.add(Ze),this._footerRowDefChanged=!0}removeFooterRowDef(Ze){this._customFooterRowDefs.delete(Ze),this._footerRowDefChanged=!0}setNoDataRow(Ze){this._customNoDataRow=Ze}updateStickyHeaderRowStyles(){const Ze=this._getRenderedRows(this._headerRowOutlet);if(this._isNativeHtmlTable){const Fe=J(this._headerRowOutlet,"thead");Fe&&(Fe.style.display=Ze.length?"":"none")}const Ve=this._headerRowDefs.map(Fe=>Fe.sticky);this._stickyStyler.clearStickyPositioning(Ze,["top"]),this._stickyStyler.stickRows(Ze,Ve,"top"),this._headerRowDefs.forEach(Fe=>Fe.resetStickyChanged())}updateStickyFooterRowStyles(){const Ze=this._getRenderedRows(this._footerRowOutlet);if(this._isNativeHtmlTable){const Fe=J(this._footerRowOutlet,"tfoot");Fe&&(Fe.style.display=Ze.length?"":"none")}const Ve=this._footerRowDefs.map(Fe=>Fe.sticky);this._stickyStyler.clearStickyPositioning(Ze,["bottom"]),this._stickyStyler.stickRows(Ze,Ve,"bottom"),this._stickyStyler.updateStickyFooterContainer(this._elementRef.nativeElement,Ve),this._footerRowDefs.forEach(Fe=>Fe.resetStickyChanged())}updateStickyColumnStyles(){const Ze=this._getRenderedRows(this._headerRowOutlet),Ve=this._getRenderedRows(this._rowOutlet),Fe=this._getRenderedRows(this._footerRowOutlet);(this._isNativeHtmlTable&&!this._fixedLayout||this._stickyColumnStylesNeedReset)&&(this._stickyStyler.clearStickyPositioning([...Ze,...Ve,...Fe],["left","right"]),this._stickyColumnStylesNeedReset=!1),Ze.forEach((it,bt)=>{this._addStickyColumnStyles([it],this._headerRowDefs[bt])}),this._rowDefs.forEach(it=>{const bt=[];for(let ut=0;ut{this._addStickyColumnStyles([it],this._footerRowDefs[bt])}),Array.from(this._columnDefsByName.values()).forEach(it=>it.resetStickyChanged())}_outletAssigned(){!this._hasAllOutlets&&this._rowOutlet&&this._headerRowOutlet&&this._footerRowOutlet&&this._noDataRowOutlet&&(this._hasAllOutlets=!0,this._canRender()&&this._render())}_canRender(){return this._hasAllOutlets&&this._hasInitialized}_render(){this._cacheRowDefs(),this._cacheColumnDefs();const Ve=this._renderUpdatedColumns()||this._headerRowDefChanged||this._footerRowDefChanged;this._stickyColumnStylesNeedReset=this._stickyColumnStylesNeedReset||Ve,this._forceRecalculateCellWidths=Ve,this._headerRowDefChanged&&(this._forceRenderHeaderRows(),this._headerRowDefChanged=!1),this._footerRowDefChanged&&(this._forceRenderFooterRows(),this._footerRowDefChanged=!1),this.dataSource&&this._rowDefs.length>0&&!this._renderChangeSubscription?this._observeRenderChanges():this._stickyColumnStylesNeedReset&&this.updateStickyColumnStyles(),this._checkStickyStates()}_getAllRenderRows(){const Ze=[],Ve=this._cachedRenderRowsMap;if(this._cachedRenderRowsMap=new Map,!this._data)return Ze;for(let Fe=0;Fe{const ut=Fe&&Fe.has(bt)?Fe.get(bt):[];if(ut.length){const jt=ut.shift();return jt.dataIndex=Ve,jt}return{data:Ze,rowDef:bt,dataIndex:Ve}})}_cacheColumnDefs(){this._columnDefsByName.clear(),Z(this._getOwnDefs(this._contentColumnDefs),this._customColumnDefs).forEach(Ve=>{this._columnDefsByName.has(Ve.name),this._columnDefsByName.set(Ve.name,Ve)})}_cacheRowDefs(){this._headerRowDefs=Z(this._getOwnDefs(this._contentHeaderRowDefs),this._customHeaderRowDefs),this._footerRowDefs=Z(this._getOwnDefs(this._contentFooterRowDefs),this._customFooterRowDefs),this._rowDefs=Z(this._getOwnDefs(this._contentRowDefs),this._customRowDefs);const Ze=this._rowDefs.filter(Ve=>!Ve.when);this._defaultRowDef=Ze[0]}_renderUpdatedColumns(){const Ze=(bt,ut)=>{const jt=!!ut.getColumnsDiff();return bt||jt},Ve=this._rowDefs.reduce(Ze,!1);Ve&&this._forceRenderDataRows();const Fe=this._headerRowDefs.reduce(Ze,!1);Fe&&this._forceRenderHeaderRows();const it=this._footerRowDefs.reduce(Ze,!1);return it&&this._forceRenderFooterRows(),Ve||Fe||it}_switchDataSource(Ze){this._data=[],(0,S.y)(this.dataSource)&&this.dataSource.disconnect(this),this._renderChangeSubscription&&(this._renderChangeSubscription.unsubscribe(),this._renderChangeSubscription=null),Ze||(this._dataDiffer&&this._dataDiffer.diff([]),this._rowOutlet&&this._rowOutlet.viewContainer.clear()),this._dataSource=Ze}_observeRenderChanges(){if(!this.dataSource)return;let Ze;(0,S.y)(this.dataSource)?Ze=this.dataSource.connect(this):(0,T.A)(this.dataSource)?Ze=this.dataSource:Array.isArray(this.dataSource)&&(Ze=(0,g.of)(this.dataSource)),this._renderChangeSubscription=Ze.pipe((0,d.Q)(this._onDestroy)).subscribe(Ve=>{this._data=Ve||[],this.renderRows()})}_forceRenderHeaderRows(){this._headerRowOutlet.viewContainer.length>0&&this._headerRowOutlet.viewContainer.clear(),this._headerRowDefs.forEach((Ze,Ve)=>this._renderRow(this._headerRowOutlet,Ze,Ve)),this.updateStickyHeaderRowStyles()}_forceRenderFooterRows(){this._footerRowOutlet.viewContainer.length>0&&this._footerRowOutlet.viewContainer.clear(),this._footerRowDefs.forEach((Ze,Ve)=>this._renderRow(this._footerRowOutlet,Ze,Ve)),this.updateStickyFooterRowStyles()}_addStickyColumnStyles(Ze,Ve){const Fe=Array.from(Ve?.columns||[]).map(ut=>this._columnDefsByName.get(ut)),it=Fe.map(ut=>ut.sticky),bt=Fe.map(ut=>ut.stickyEnd);this._stickyStyler.updateStickyColumns(Ze,it,bt,!this._fixedLayout||this._forceRecalculateCellWidths)}_getRenderedRows(Ze){const Ve=[];for(let Fe=0;Fe!it.when||it.when(Ve,Ze));else{let it=this._rowDefs.find(bt=>bt.when&&bt.when(Ve,Ze))||this._defaultRowDef;it&&Fe.push(it)}return Fe}_getEmbeddedViewArgs(Ze,Ve){return{templateRef:Ze.rowDef.template,context:{$implicit:Ze.data},index:Ve}}_renderRow(Ze,Ve,Fe,it={}){const bt=Ze.viewContainer.createEmbeddedView(Ve.template,it,Fe);return this._renderCellTemplateForItem(Ve,it),bt}_renderCellTemplateForItem(Ze,Ve){for(let Fe of this._getCellTemplates(Ze))B.mostRecentCellOutlet&&B.mostRecentCellOutlet._viewContainer.createEmbeddedView(Fe,Ve);this._changeDetectorRef.markForCheck()}_updateRowIndexContext(){const Ze=this._rowOutlet.viewContainer;for(let Ve=0,Fe=Ze.length;Ve{const Fe=this._columnDefsByName.get(Ve);return Ze.extractCellTemplate(Fe)}):[]}_forceRenderDataRows(){this._dataDiffer.diff([]),this._rowOutlet.viewContainer.clear(),this.renderRows()}_checkStickyStates(){const Ze=(Ve,Fe)=>Ve||Fe.hasStickyChanged();this._headerRowDefs.reduce(Ze,!1)&&this.updateStickyHeaderRowStyles(),this._footerRowDefs.reduce(Ze,!1)&&this.updateStickyFooterRowStyles(),Array.from(this._columnDefsByName.values()).reduce(Ze,!1)&&(this._stickyColumnStylesNeedReset=!0,this.updateStickyColumnStyles())}_setupStickyStyler(){this._stickyStyler=new ye(this._isNativeHtmlTable,this.stickyCssClass,this._platform.isBrowser,this.needsPositionStickyOnElement,this._dir?this._dir.value:"ltr",this._stickyPositioningListener,this._injector),(this._dir?this._dir.change:(0,g.of)()).pipe((0,d.Q)(this._onDestroy)).subscribe(Ve=>{this._stickyStyler.direction=Ve,this.updateStickyColumnStyles()})}_getOwnDefs(Ze){return Ze.filter(Ve=>!Ve._table||Ve._table===this)}_updateNoDataRow(){const Ze=this._customNoDataRow||this._noDataRow;if(!Ze)return;const Ve=0===this._rowOutlet.viewContainer.length;if(Ve===this._isShowingNoDataRow)return;const Fe=this._noDataRowOutlet.viewContainer;if(Ve){const it=Fe.createEmbeddedView(Ze.templateRef),bt=it.rootNodes[0];if(1===it.rootNodes.length&&bt?.nodeType===this._document.ELEMENT_NODE){bt.setAttribute("role","row"),bt.classList.add(...Ze._contentClassNames);const ut=bt.querySelectorAll(Ze._cellSelector);for(let jt=0;jt{class It{static \u0275fac=function(Ve){return new(Ve||It)};static \u0275mod=i.$C({type:It});static \u0275inj=t.G2t({imports:[q.E9]})}return It})();var li=l(22466),Qt=l(57786),di=l(84572),kt=l(67847),Rt=l(96354);const le=[[["caption"]],[["colgroup"],["col"]],"*"],te=["caption","colgroup, col","*"];function ce(It,Tt){1&It&&i.SdG(0,2)}function se(It,Tt){1&It&&(i.j41(0,"thead",0),i.eu8(1,1),i.k0s(),i.j41(2,"tbody",2),i.eu8(3,3)(4,4),i.k0s(),i.j41(5,"tfoot",0),i.eu8(6,5),i.k0s())}function ke(It,Tt){1&It&&i.eu8(0,1)(1,3)(2,4)(3,5)}let yt=(()=>{class It extends ze{stickyCssClass="mat-mdc-table-sticky";needsPositionStickyOnElement=!1;static \u0275fac=(()=>{let Ze;return function(Fe){return(Ze||(Ze=i.xGo(It)))(Fe||It)}})();static \u0275cmp=i.VBU({type:It,selectors:[["mat-table"],["table","mat-table",""]],hostAttrs:[1,"mat-mdc-table","mdc-data-table__table"],hostVars:2,hostBindings:function(Ve,Fe){2&Ve&&i.AVh("mdc-table-fixed-layout",Fe.fixedLayout)},exportAs:["matTable"],features:[i.Jv_([{provide:ze,useExisting:It},{provide:me,useExisting:It},{provide:P,useClass:j},{provide:Mt,useValue:null}]),i.Vt3],ngContentSelectors:te,decls:5,vars:2,consts:[["role","rowgroup"],["headerRowOutlet",""],["role","rowgroup",1,"mdc-data-table__content"],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(Ve,Fe){1&Ve&&(i.NAR(le),i.SdG(0),i.SdG(1,1),i.nVh(2,ce,1,0),i.nVh(3,se,7,0)(4,ke,4,0)),2&Ve&&(i.R7$(2),i.vxM(Fe._isServer?2:-1),i.R7$(),i.vxM(Fe._isNativeHtmlTable?3:4))},dependencies:[Ht,Pe,Ce,ct],styles:[".mat-mdc-table-sticky{position:sticky !important}mat-table{display:block}mat-header-row{min-height:var(--mat-table-header-container-height, 56px)}mat-row{min-height:var(--mat-table-row-item-container-height, 52px)}mat-footer-row{min-height:var(--mat-table-footer-container-height, 52px)}mat-row,mat-header-row,mat-footer-row{display:flex;border-width:0;border-bottom-width:1px;border-style:solid;align-items:center;box-sizing:border-box}mat-cell:first-of-type,mat-header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:24px}[dir=rtl] mat-cell:first-of-type:not(:only-of-type),[dir=rtl] mat-header-cell:first-of-type:not(:only-of-type),[dir=rtl] mat-footer-cell:first-of-type:not(:only-of-type){padding-left:0;padding-right:24px}mat-cell:last-of-type,mat-header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:24px}[dir=rtl] mat-cell:last-of-type:not(:only-of-type),[dir=rtl] mat-header-cell:last-of-type:not(:only-of-type),[dir=rtl] mat-footer-cell:last-of-type:not(:only-of-type){padding-right:0;padding-left:24px}mat-cell,mat-header-cell,mat-footer-cell{flex:1;display:flex;align-items:center;overflow:hidden;word-wrap:break-word;min-height:inherit}.mat-mdc-table{min-width:100%;border:0;border-spacing:0;table-layout:auto;white-space:normal;background-color:var(--mat-table-background-color, var(--mat-sys-surface))}.mdc-data-table__cell{box-sizing:border-box;overflow:hidden;text-align:left;text-overflow:ellipsis}[dir=rtl] .mdc-data-table__cell{text-align:right}.mdc-data-table__cell,.mdc-data-table__header-cell{padding:0 16px}.mat-mdc-header-row{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mat-table-header-container-height, 56px);color:var(--mat-table-header-headline-color, var(--mat-sys-on-surface, rgba(0, 0, 0, 0.87)));font-family:var(--mat-table-header-headline-font, var(--mat-sys-title-small-font, Roboto, sans-serif));line-height:var(--mat-table-header-headline-line-height, var(--mat-sys-title-small-line-height));font-size:var(--mat-table-header-headline-size, var(--mat-sys-title-small-size, 14px));font-weight:var(--mat-table-header-headline-weight, var(--mat-sys-title-small-weight, 500))}.mat-mdc-row{height:var(--mat-table-row-item-container-height, 52px);color:var(--mat-table-row-item-label-text-color, var(--mat-sys-on-surface, rgba(0, 0, 0, 0.87)))}.mat-mdc-row,.mdc-data-table__content{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-table-row-item-label-text-font, var(--mat-sys-body-medium-font, Roboto, sans-serif));line-height:var(--mat-table-row-item-label-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-table-row-item-label-text-size, var(--mat-sys-body-medium-size, 14px));font-weight:var(--mat-table-row-item-label-text-weight, var(--mat-sys-body-medium-weight))}.mat-mdc-footer-row{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mat-table-footer-container-height, 52px);color:var(--mat-table-row-item-label-text-color, var(--mat-sys-on-surface, rgba(0, 0, 0, 0.87)));font-family:var(--mat-table-footer-supporting-text-font, var(--mat-sys-body-medium-font, Roboto, sans-serif));line-height:var(--mat-table-footer-supporting-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-table-footer-supporting-text-size, var(--mat-sys-body-medium-size, 14px));font-weight:var(--mat-table-footer-supporting-text-weight, var(--mat-sys-body-medium-weight));letter-spacing:var(--mat-table-footer-supporting-text-tracking, var(--mat-sys-body-medium-tracking))}.mat-mdc-header-cell{border-bottom-color:var(--mat-table-row-item-outline-color, var(--mat-sys-outline, rgba(0, 0, 0, 0.12)));border-bottom-width:var(--mat-table-row-item-outline-width, 1px);border-bottom-style:solid;letter-spacing:var(--mat-table-header-headline-tracking, var(--mat-sys-title-small-tracking));font-weight:inherit;line-height:inherit;box-sizing:border-box;text-overflow:ellipsis;overflow:hidden;outline:none;text-align:left}[dir=rtl] .mat-mdc-header-cell{text-align:right}.mdc-data-table__row:last-child>.mat-mdc-header-cell{border-bottom:none}.mat-mdc-cell{border-bottom-color:var(--mat-table-row-item-outline-color, var(--mat-sys-outline, rgba(0, 0, 0, 0.12)));border-bottom-width:var(--mat-table-row-item-outline-width, 1px);border-bottom-style:solid;letter-spacing:var(--mat-table-row-item-label-text-tracking, var(--mat-sys-body-medium-tracking));line-height:inherit}.mdc-data-table__row:last-child>.mat-mdc-cell{border-bottom:none}.mat-mdc-footer-cell{letter-spacing:var(--mat-table-row-item-label-text-tracking, var(--mat-sys-body-medium-tracking))}mat-row.mat-mdc-row,mat-header-row.mat-mdc-header-row,mat-footer-row.mat-mdc-footer-row{border-bottom:none}.mat-mdc-table tbody,.mat-mdc-table tfoot,.mat-mdc-table thead,.mat-mdc-cell,.mat-mdc-footer-cell,.mat-mdc-header-row,.mat-mdc-row,.mat-mdc-footer-row,.mat-mdc-table .mat-mdc-header-cell{background:inherit}.mat-mdc-table mat-header-row.mat-mdc-header-row,.mat-mdc-table mat-row.mat-mdc-row,.mat-mdc-table mat-footer-row.mat-mdc-footer-cell{height:unset}mat-header-cell.mat-mdc-header-cell,mat-cell.mat-mdc-cell,mat-footer-cell.mat-mdc-footer-cell{align-self:stretch}\n"],encapsulation:2})}return It})(),Vt=(()=>{class It extends D{static \u0275fac=(()=>{let Ze;return function(Fe){return(Ze||(Ze=i.xGo(It)))(Fe||It)}})();static \u0275dir=i.FsC({type:It,selectors:[["","matCellDef",""]],features:[i.Jv_([{provide:D,useExisting:It}]),i.Vt3]})}return It})(),Zt=(()=>{class It extends n{static \u0275fac=(()=>{let Ze;return function(Fe){return(Ze||(Ze=i.xGo(It)))(Fe||It)}})();static \u0275dir=i.FsC({type:It,selectors:[["","matHeaderCellDef",""]],features:[i.Jv_([{provide:n,useExisting:It}]),i.Vt3]})}return It})(),ti=(()=>{class It extends o{static \u0275fac=(()=>{let Ze;return function(Fe){return(Ze||(Ze=i.xGo(It)))(Fe||It)}})();static \u0275dir=i.FsC({type:It,selectors:[["","matFooterCellDef",""]],features:[i.Jv_([{provide:o,useExisting:It}]),i.Vt3]})}return It})(),Ye=(()=>{class It extends f{get name(){return this._name}set name(Ze){this._setNameInput(Ze)}_updateColumnCssClassName(){super._updateColumnCssClassName(),this._columnCssClassName.push(`mat-column-${this.cssClassFriendlyName}`)}static \u0275fac=(()=>{let Ze;return function(Fe){return(Ze||(Ze=i.xGo(It)))(Fe||It)}})();static \u0275dir=i.FsC({type:It,selectors:[["","matColumnDef",""]],inputs:{name:[0,"matColumnDef","name"]},features:[i.Jv_([{provide:f,useExisting:It},{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:It}]),i.Vt3]})}return It})(),Nt=(()=>{class It extends b{static \u0275fac=(()=>{let Ze;return function(Fe){return(Ze||(Ze=i.xGo(It)))(Fe||It)}})();static \u0275dir=i.FsC({type:It,selectors:[["mat-header-cell"],["th","mat-header-cell",""]],hostAttrs:["role","columnheader",1,"mat-mdc-header-cell","mdc-data-table__header-cell"],features:[i.Vt3]})}return It})(),Et=(()=>{class It extends A{static \u0275fac=(()=>{let Ze;return function(Fe){return(Ze||(Ze=i.xGo(It)))(Fe||It)}})();static \u0275dir=i.FsC({type:It,selectors:[["mat-footer-cell"],["td","mat-footer-cell",""]],hostAttrs:[1,"mat-mdc-footer-cell","mdc-data-table__cell"],features:[i.Vt3]})}return It})(),Jt=(()=>{class It extends k{static \u0275fac=(()=>{let Ze;return function(Fe){return(Ze||(Ze=i.xGo(It)))(Fe||It)}})();static \u0275dir=i.FsC({type:It,selectors:[["mat-cell"],["td","mat-cell",""]],hostAttrs:[1,"mat-mdc-cell","mdc-data-table__cell"],features:[i.Vt3]})}return It})(),$e=(()=>{class It extends _{static \u0275fac=(()=>{let Ze;return function(Fe){return(Ze||(Ze=i.xGo(It)))(Fe||It)}})();static \u0275dir=i.FsC({type:It,selectors:[["","matHeaderRowDef",""]],inputs:{columns:[0,"matHeaderRowDef","columns"],sticky:[2,"matHeaderRowDefSticky","sticky",p.L39]},features:[i.Jv_([{provide:_,useExisting:It}]),i.Vt3]})}return It})(),tt=(()=>{class It extends W{static \u0275fac=(()=>{let Ze;return function(Fe){return(Ze||(Ze=i.xGo(It)))(Fe||It)}})();static \u0275dir=i.FsC({type:It,selectors:[["","matFooterRowDef",""]],inputs:{columns:[0,"matFooterRowDef","columns"],sticky:[2,"matFooterRowDefSticky","sticky",p.L39]},features:[i.Jv_([{provide:W,useExisting:It}]),i.Vt3]})}return It})(),vi=(()=>{class It extends I{static \u0275fac=(()=>{let Ze;return function(Fe){return(Ze||(Ze=i.xGo(It)))(Fe||It)}})();static \u0275dir=i.FsC({type:It,selectors:[["","matRowDef",""]],inputs:{columns:[0,"matRowDefColumns","columns"],when:[0,"matRowDefWhen","when"]},features:[i.Jv_([{provide:I,useExisting:It}]),i.Vt3]})}return It})(),ei=(()=>{class It extends re{static \u0275fac=(()=>{let Ze;return function(Fe){return(Ze||(Ze=i.xGo(It)))(Fe||It)}})();static \u0275cmp=i.VBU({type:It,selectors:[["mat-header-row"],["tr","mat-header-row",""]],hostAttrs:["role","row",1,"mat-mdc-header-row","mdc-data-table__header-row"],exportAs:["matHeaderRow"],features:[i.Jv_([{provide:re,useExisting:It}]),i.Vt3],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Ve,Fe){1&Ve&&i.eu8(0,0)},dependencies:[B],encapsulation:2})}return It})(),ci=(()=>{class It extends pe{static \u0275fac=(()=>{let Ze;return function(Fe){return(Ze||(Ze=i.xGo(It)))(Fe||It)}})();static \u0275cmp=i.VBU({type:It,selectors:[["mat-footer-row"],["tr","mat-footer-row",""]],hostAttrs:["role","row",1,"mat-mdc-footer-row","mdc-data-table__row"],exportAs:["matFooterRow"],features:[i.Jv_([{provide:pe,useExisting:It}]),i.Vt3],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Ve,Fe){1&Ve&&i.eu8(0,0)},dependencies:[B],encapsulation:2})}return It})(),Hi=(()=>{class It extends be{static \u0275fac=(()=>{let Ze;return function(Fe){return(Ze||(Ze=i.xGo(It)))(Fe||It)}})();static \u0275cmp=i.VBU({type:It,selectors:[["mat-row"],["tr","mat-row",""]],hostAttrs:["role","row",1,"mat-mdc-row","mdc-data-table__row"],exportAs:["matRow"],features:[i.Jv_([{provide:be,useExisting:It}]),i.Vt3],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Ve,Fe){1&Ve&&i.eu8(0,0)},dependencies:[B],encapsulation:2})}return It})(),nn=(()=>{class It{static \u0275fac=function(Ve){return new(Ve||It)};static \u0275mod=i.$C({type:It});static \u0275inj=t.G2t({imports:[li.y,ht,li.y]})}return It})();class zn extends S.q{_data;_renderData=new e.t([]);_filter=new e.t("");_internalPageChanges=new c.B;_renderChangesSubscription=null;filteredData;get data(){return this._data.value}set data(Tt){Tt=Array.isArray(Tt)?Tt:[],this._data.next(Tt),this._renderChangesSubscription||this._filterData(Tt)}get filter(){return this._filter.value}set filter(Tt){this._filter.next(Tt),this._renderChangesSubscription||this._filterData(this.data)}get sort(){return this._sort}set sort(Tt){this._sort=Tt,this._updateChangeSubscription()}_sort;get paginator(){return this._paginator}set paginator(Tt){this._paginator=Tt,this._updateChangeSubscription()}_paginator;sortingDataAccessor=(Tt,Ze)=>{const Ve=Tt[Ze];if((0,kt.o1)(Ve)){const Fe=Number(Ve);return Fe<9007199254740991?Fe:Ve}return Ve};sortData=(Tt,Ze)=>{const Ve=Ze.active,Fe=Ze.direction;return Ve&&""!=Fe?Tt.sort((it,bt)=>{let ut=this.sortingDataAccessor(it,Ve),jt=this.sortingDataAccessor(bt,Ve);const ai=typeof ut,pi=typeof jt;ai!==pi&&("number"===ai&&(ut+=""),"number"===pi&&(jt+=""));let ki=0;return null!=ut&&null!=jt?ut>jt?ki=1:ut{const Ve=Ze.trim().toLowerCase();return Object.values(Tt).some(Fe=>`${Fe}`.toLowerCase().includes(Ve))};constructor(Tt=[]){super(),this._data=new e.t(Tt),this._updateChangeSubscription()}_updateChangeSubscription(){const Tt=this._sort?(0,Qt.h)(this._sort.sortChange,this._sort.initialized):(0,g.of)(null),Ze=this._paginator?(0,Qt.h)(this._paginator.page,this._internalPageChanges,this._paginator.initialized):(0,g.of)(null),Fe=(0,di.z)([this._data,this._filter]).pipe((0,Rt.T)(([ut])=>this._filterData(ut))),it=(0,di.z)([Fe,Tt]).pipe((0,Rt.T)(([ut])=>this._orderData(ut))),bt=(0,di.z)([it,Ze]).pipe((0,Rt.T)(([ut])=>this._pageData(ut)));this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=bt.subscribe(ut=>this._renderData.next(ut))}_filterData(Tt){return this.filteredData=null==this.filter||""===this.filter?Tt:Tt.filter(Ze=>this.filterPredicate(Ze,this.filter)),this.paginator&&this._updatePaginator(this.filteredData.length),this.filteredData}_orderData(Tt){return this.sort?this.sortData(Tt.slice(),this.sort):Tt}_pageData(Tt){if(!this.paginator)return Tt;const Ze=this.paginator.pageIndex*this.paginator.pageSize;return Tt.slice(Ze,Ze+this.paginator.pageSize)}_updatePaginator(Tt){Promise.resolve().then(()=>{const Ze=this.paginator;if(Ze&&(Ze.length=Tt,Ze.pageIndex>0)){const Ve=Math.ceil(Ze.length/Ze.pageSize)-1||0,Fe=Math.min(Ze.pageIndex,Ve);Fe!==Ze.pageIndex&&(Ze.pageIndex=Fe,this._internalPageChanges.next())}})}connect(){return this._renderChangesSubscription||this._updateChangeSubscription(),this._renderData}disconnect(){this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=null}}},19307:(Ae,ee,l)=>{var i=l(12375),t=l(27054).Buffer,p=l(3247),S=l(71993),c=l(85917),e=l(13546),T=l(95725);function w(m,P,M,j){p.call(this);var U=t.alloc(4,0);this._cipher=new i.AES(P);var K=this._cipher.encryptBlock(U);this._ghash=new c(K),M=function d(m,P,M){if(12===P.length)return m._finID=t.concat([P,t.from([0,0,0,1])]),t.concat([P,t.from([0,0,0,2])]);var j=new c(M),U=P.length,K=U%16;j.update(P),K&&j.update(t.alloc(K=16-K,0)),j.update(t.alloc(8,0));var q=8*U,G=t.alloc(8);G.writeUIntBE(q,0,8),j.update(G),m._finID=j.state;var Q=t.from(m._finID);return T(Q),Q}(this,M,K),this._prev=t.from(M),this._cache=t.allocUnsafe(0),this._secCache=t.allocUnsafe(0),this._decrypt=j,this._alen=0,this._len=0,this._mode=m,this._authTag=null,this._called=!1}S(w,p),w.prototype._update=function(m){if(!this._called&&this._alen){var P=16-this._alen%16;P<16&&(P=t.alloc(P,0),this._ghash.update(P))}this._called=!0;var M=this._mode.encrypt(this,m);return this._ghash.update(this._decrypt?m:M),this._len+=m.length,M},w.prototype._final=function(){if(this._decrypt&&!this._authTag)throw new Error("Unsupported state or unable to authenticate data");var m=e(this._ghash.final(8*this._alen,8*this._len),this._cipher.encryptBlock(this._finID));if(this._decrypt&&function g(m,P){var M=0;m.length!==P.length&&M++;for(var j=Math.min(m.length,P.length),U=0;U{"use strict";var i=l(9656);Ae.exports=$;var p,t=l(20053);$.ReadableState=Q,l(44356);var c=function(_e,ye){return _e.listeners(ye).length},e=l(18342),T=l(2655).Buffer,g=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},m=Object.create(l(27637));m.inherits=l(71993);var P=l(79838),M=void 0;M=P&&P.debuglog?P.debuglog("stream"):function(){};var K,j=l(27809),U=l(21509);m.inherits($,e);var q=["error","close","destroy","pause","resume"];function Q(_e,ye){var Le=ye instanceof(p=p||l(74075));this.objectMode=!!(_e=_e||{}).objectMode,Le&&(this.objectMode=this.objectMode||!!_e.readableObjectMode);var Ke=_e.highWaterMark,ge=_e.readableHighWaterMark;this.highWaterMark=Ke||0===Ke?Ke:Le&&(ge||0===ge)?ge:this.objectMode?16:16384,this.highWaterMark=Math.floor(this.highWaterMark),this.buffer=new j,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.destroyed=!1,this.defaultEncoding=_e.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,_e.encoding&&(K||(K=l(78454).I),this.decoder=new K(_e.encoding),this.encoding=_e.encoding)}function $(_e){if(p=p||l(74075),!(this instanceof $))return new $(_e);this._readableState=new Q(_e,this),this.readable=!0,_e&&("function"==typeof _e.read&&(this._read=_e.read),"function"==typeof _e.destroy&&(this._destroy=_e.destroy)),e.call(this)}function ae(_e,ye,Le,Ke,ge){var Oe,ve=_e._readableState;return null===ye?(ve.reading=!1,function n(_e,ye){if(!ye.ended){if(ye.decoder){var Le=ye.decoder.end();Le&&Le.length&&(ye.buffer.push(Le),ye.length+=ye.objectMode?1:Le.length)}ye.ended=!0,o(_e)}}(_e,ve)):(ge||(Oe=function oe(_e,ye){var Le;return!function w(_e){return T.isBuffer(_e)||_e instanceof g}(ye)&&"string"!=typeof ye&&void 0!==ye&&!_e.objectMode&&(Le=new TypeError("Invalid non-string/buffer chunk")),Le}(ve,ye)),Oe?_e.emit("error",Oe):ve.objectMode||ye&&ye.length>0?("string"!=typeof ye&&!ve.objectMode&&Object.getPrototypeOf(ye)!==T.prototype&&(ye=function d(_e){return T.from(_e)}(ye)),Ke?ve.endEmitted?_e.emit("error",new Error("stream.unshift() after end event")):ue(_e,ve,ye,!0):ve.ended?_e.emit("error",new Error("stream.push() after EOF")):(ve.reading=!1,ve.decoder&&!Le?(ye=ve.decoder.write(ye),ve.objectMode||0!==ye.length?ue(_e,ve,ye,!1):h(_e,ve)):ue(_e,ve,ye,!1))):Ke||(ve.reading=!1)),function he(_e){return!_e.ended&&(_e.needReadable||_e.length<_e.highWaterMark||0===_e.length)}(ve)}function ue(_e,ye,Le,Ke){ye.flowing&&0===ye.length&&!ye.sync?(_e.emit("data",Le),_e.read(0)):(ye.length+=ye.objectMode?1:Le.length,Ke?ye.buffer.unshift(Le):ye.buffer.push(Le),ye.needReadable&&o(_e)),h(_e,ye)}function D(_e,ye){return _e<=0||0===ye.length&&ye.ended?0:ye.objectMode?1:_e!=_e?ye.flowing&&ye.length?ye.buffer.head.data.length:ye.length:(_e>ye.highWaterMark&&(ye.highWaterMark=function Te(_e){return _e>=8388608?_e=8388608:(_e--,_e|=_e>>>1,_e|=_e>>>2,_e|=_e>>>4,_e|=_e>>>8,_e|=_e>>>16,_e++),_e}(_e)),_e<=ye.length?_e:ye.ended?ye.length:(ye.needReadable=!0,0))}function o(_e){var ye=_e._readableState;ye.needReadable=!1,ye.emittedReadable||(M("emitReadable",ye.flowing),ye.emittedReadable=!0,ye.sync?i.nextTick(f,_e):f(_e))}function f(_e){M("emit readable"),_e.emit("readable"),_(_e)}function h(_e,ye){ye.readingMore||(ye.readingMore=!0,i.nextTick(b,_e,ye))}function b(_e,ye){for(var Le=ye.length;!ye.reading&&!ye.flowing&&!ye.ended&&ye.length=ye.length?(Le=ye.decoder?ye.buffer.join(""):1===ye.buffer.length?ye.buffer.head.data:ye.buffer.concat(ye.length),ye.buffer.clear()):Le=function I(_e,ye,Le){var Ke;return _eve.length?ve.length:_e;if(ge+=Oe===ve.length?ve:ve.slice(0,_e),0===(_e-=Oe)){Oe===ve.length?(++Ke,ye.head=Le.next?Le.next:ye.tail=null):(ye.head=Le,Le.data=ve.slice(Oe));break}++Ke}return ye.length-=Ke,ge}(_e,ye):function re(_e,ye){var Le=T.allocUnsafe(_e),Ke=ye.head,ge=1;for(Ke.data.copy(Le),_e-=Ke.data.length;Ke=Ke.next;){var ve=Ke.data,Oe=_e>ve.length?ve.length:_e;if(ve.copy(Le,Le.length-_e,0,Oe),0===(_e-=Oe)){Oe===ve.length?(++ge,ye.head=Ke.next?Ke.next:ye.tail=null):(ye.head=Ke,Ke.data=ve.slice(Oe));break}++ge}return ye.length-=ge,Le}(_e,ye),Ke}(_e,ye.buffer,ye.decoder),Le);var Le}function pe(_e){var ye=_e._readableState;if(ye.length>0)throw new Error('"endReadable()" called on non-empty stream');ye.endEmitted||(ye.ended=!0,i.nextTick(be,ye,_e))}function be(_e,ye){!_e.endEmitted&&0===_e.length&&(_e.endEmitted=!0,ye.readable=!1,ye.emit("end"))}function Be(_e,ye){for(var Le=0,Ke=_e.length;Le=ye.highWaterMark||ye.ended))return M("read: emitReadable",ye.length,ye.ended),0===ye.length&&ye.ended?pe(this):o(this),null;if(0===(_e=D(_e,ye))&&ye.ended)return 0===ye.length&&pe(this),null;var ge,Ke=ye.needReadable;return M("need readable",Ke),(0===ye.length||ye.length-_e0?W(_e,ye):null)?(ye.needReadable=!0,_e=0):ye.length-=_e,0===ye.length&&(ye.ended||(ye.needReadable=!0),Le!==_e&&ye.ended&&pe(this)),null!==ge&&this.emit("data",ge),ge},$.prototype._read=function(_e){this.emit("error",new Error("_read() is not implemented"))},$.prototype.pipe=function(_e,ye){var Le=this,Ke=this._readableState;switch(Ke.pipesCount){case 0:Ke.pipes=_e;break;case 1:Ke.pipes=[Ke.pipes,_e];break;default:Ke.pipes.push(_e)}Ke.pipesCount+=1,M("pipe count=%d opts=%j",Ke.pipesCount,ye);var ve=ye&&!1===ye.end||_e===process.stdout||_e===process.stderr?Ce:Ee;function Ee(){M("onend"),_e.end()}Ke.endEmitted?i.nextTick(ve):Le.once("end",ve),_e.on("unpipe",function Oe(ze,Z){M("onunpipe"),ze===Le&&Z&&!1===Z.hasUnpiped&&(Z.hasUnpiped=!0,function Ct(){M("cleanup"),_e.removeListener("close",Ht),_e.removeListener("finish",ct),_e.removeListener("drain",dt),_e.removeListener("error",Pe),_e.removeListener("unpipe",Oe),Le.removeListener("end",Ee),Le.removeListener("end",Ce),Le.removeListener("data",lt),nt=!0,Ke.awaitDrain&&(!_e._writableState||_e._writableState.needDrain)&&dt()}())});var dt=function A(_e){return function(){var ye=_e._readableState;M("pipeOnDrain",ye.awaitDrain),ye.awaitDrain&&ye.awaitDrain--,0===ye.awaitDrain&&c(_e,"data")&&(ye.flowing=!0,_(_e))}}(Le);_e.on("drain",dt);var nt=!1,Mt=!1;function lt(ze){M("ondata"),Mt=!1,!1===_e.write(ze)&&!Mt&&((1===Ke.pipesCount&&Ke.pipes===_e||Ke.pipesCount>1&&-1!==Be(Ke.pipes,_e))&&!nt&&(M("false write response, pause",Ke.awaitDrain),Ke.awaitDrain++,Mt=!0),Le.pause())}function Pe(ze){M("onerror",ze),Ce(),_e.removeListener("error",Pe),0===c(_e,"error")&&_e.emit("error",ze)}function Ht(){_e.removeListener("finish",ct),Ce()}function ct(){M("onfinish"),_e.removeListener("close",Ht),Ce()}function Ce(){M("unpipe"),Le.unpipe(_e)}return Le.on("data",lt),function G(_e,ye,Le){if("function"==typeof _e.prependListener)return _e.prependListener(ye,Le);_e._events&&_e._events[ye]?t(_e._events[ye])?_e._events[ye].unshift(Le):_e._events[ye]=[Le,_e._events[ye]]:_e.on(ye,Le)}(_e,"error",Pe),_e.once("close",Ht),_e.once("finish",ct),_e.emit("pipe",Le),Ke.flowing||(M("pipe resume"),Le.resume()),_e},$.prototype.unpipe=function(_e){var ye=this._readableState,Le={hasUnpiped:!1};if(0===ye.pipesCount)return this;if(1===ye.pipesCount)return _e&&_e!==ye.pipes||(_e||(_e=ye.pipes),ye.pipes=null,ye.pipesCount=0,ye.flowing=!1,_e&&_e.emit("unpipe",this,Le)),this;if(!_e){var Ke=ye.pipes,ge=ye.pipesCount;ye.pipes=null,ye.pipesCount=0,ye.flowing=!1;for(var ve=0;ve{"use strict";var i=l(27054).Buffer,t=l(35696),p=l(5942).Transform;function c(e){p.call(this),this._block=i.allocUnsafe(e),this._blockSize=e,this._blockOffset=0,this._length=[0,0,0,0],this._finalized=!1}l(71993)(c,p),c.prototype._transform=function(e,T,g){var d=null;try{this.update(e,T)}catch(w){d=w}g(d)},c.prototype._flush=function(e){var T=null;try{this.push(this.digest())}catch(g){T=g}e(T)},c.prototype.update=function(e,T){if(this._finalized)throw new Error("Digest already called");for(var g=t(e,T),d=this._block,w=0;this._blockOffset+g.length-w>=this._blockSize;){for(var m=this._blockOffset;m0;++P)this._length[P]+=M,(M=this._length[P]/4294967296|0)>0&&(this._length[P]-=4294967296*M);return this},c.prototype._update=function(){throw new Error("_update is not implemented")},c.prototype.digest=function(e){if(this._finalized)throw new Error("Digest already called");this._finalized=!0;var T=this._digest();void 0!==e&&(T=T.toString(e)),this._block.fill(0),this._blockOffset=0;for(var g=0;g<4;++g)this._length[g]=0;return T},c.prototype._digest=function(){throw new Error("_digest is not implemented")},Ae.exports=c},19900:(Ae,ee,l)=>{"use strict";var i=typeof Symbol<"u"&&Symbol,t=l(45310);Ae.exports=function(){return"function"==typeof i&&"function"==typeof Symbol&&"symbol"==typeof i("foo")&&"symbol"==typeof Symbol("bar")&&t()}},19945:(Ae,ee,l)=>{"use strict";l.d(ee,{Ju:()=>S,MJ:()=>T,de:()=>g});var i=l(2615),t=l(73664),p=l(21413);const S=new i.nKC("MAT_DATE_LOCALE",{providedIn:"root",factory:function c(){return(0,i.WQX)(t.xe9)}}),e="Method not implemented";class T{locale;_localeChanges=new p.B;localeChanges=this._localeChanges;setTime(w,m,P,M){throw new Error(e)}getHours(w){throw new Error(e)}getMinutes(w){throw new Error(e)}getSeconds(w){throw new Error(e)}parseTime(w,m){throw new Error(e)}addSeconds(w,m){throw new Error(e)}getValidDateOrNull(w){return this.isDateInstance(w)&&this.isValid(w)?w:null}deserialize(w){return null==w||this.isDateInstance(w)&&this.isValid(w)?w:this.invalid()}setLocale(w){this.locale=w,this._localeChanges.next()}compareDate(w,m){return this.getYear(w)-this.getYear(m)||this.getMonth(w)-this.getMonth(m)||this.getDate(w)-this.getDate(m)}compareTime(w,m){return this.getHours(w)-this.getHours(m)||this.getMinutes(w)-this.getMinutes(m)||this.getSeconds(w)-this.getSeconds(m)}sameDate(w,m){if(w&&m){let P=this.isValid(w),M=this.isValid(m);return P&&M?!this.compareDate(w,m):P==M}return w==m}sameTime(w,m){if(w&&m){const P=this.isValid(w),M=this.isValid(m);return P&&M?!this.compareTime(w,m):P==M}return w==m}clampDate(w,m,P){return m&&this.compareDate(w,m)<0?m:P&&this.compareDate(w,P)>0?P:w}}const g=new i.nKC("mat-date-formats")},20053:Ae=>{var ee={}.toString;Ae.exports=Array.isArray||function(l){return"[object Array]"==ee.call(l)}},20060:(Ae,ee,l)=>{"use strict";l.d(ee,{aY:()=>Wc,dX:()=>Q1});var i=l(2615),t=l(73664),p=l(17705),S=l(59295),c=l(345);function e(Qe,Dt){(null==Dt||Dt>Qe.length)&&(Dt=Qe.length);for(var St=0,Ot=Array(Dt);St=Qe.length?{done:!0}:{done:!1,value:Qe[Ot++]}},e:function($i){throw $i},f:si}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var ot,Ti=!0,Ni=!1;return{s:function(){St=St.call(Qe)},n:function(){var $i=St.next();return Ti=$i.done,$i},e:function($i){Ni=!0,ot=$i},f:function(){try{Ti||null==St.return||St.return()}finally{if(Ni)throw ot}}}}function M(Qe,Dt,St){return(Dt=me(Dt))in Qe?Object.defineProperty(Qe,Dt,{value:St,enumerable:!0,configurable:!0,writable:!0}):Qe[Dt]=St,Qe}function Q(Qe,Dt){var St=Object.keys(Qe);if(Object.getOwnPropertySymbols){var Ot=Object.getOwnPropertySymbols(Qe);Dt&&(Ot=Ot.filter(function(si){return Object.getOwnPropertyDescriptor(Qe,si).enumerable})),St.push.apply(St,Ot)}return St}function $(Qe){for(var Dt=1;Dt0;)Dt+="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"[62*Math.random()|0];return Dt}function Oa(Qe){for(var Dt=[],St=(Qe||[]).length>>>0;St--;)Dt[St]=Qe[St];return Dt}function Wt(Qe){return Qe.classList?Oa(Qe.classList):(Qe.getAttribute("class")||"").split(" ").filter(function(Dt){return Dt})}function Ri(Qe){return"".concat(Qe).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function _i(Qe){return Object.keys(Qe||{}).reduce(function(Dt,St){return Dt+"".concat(St,": ").concat(Qe[St].trim(),";")},"")}function Li(Qe){return Qe.size!==gr.size||Qe.x!==gr.x||Qe.y!==gr.y||Qe.rotate!==gr.rotate||Qe.flipX||Qe.flipY}function He(){var Dt=Wa,St=Sn.cssPrefix,Ot=Sn.replacementClass,si=':root, :host {\n --fa-font-solid: normal 900 1em/1 "Font Awesome 7 Free";\n --fa-font-regular: normal 400 1em/1 "Font Awesome 7 Free";\n --fa-font-light: normal 300 1em/1 "Font Awesome 7 Pro";\n --fa-font-thin: normal 100 1em/1 "Font Awesome 7 Pro";\n --fa-font-duotone: normal 900 1em/1 "Font Awesome 7 Duotone";\n --fa-font-duotone-regular: normal 400 1em/1 "Font Awesome 7 Duotone";\n --fa-font-duotone-light: normal 300 1em/1 "Font Awesome 7 Duotone";\n --fa-font-duotone-thin: normal 100 1em/1 "Font Awesome 7 Duotone";\n --fa-font-brands: normal 400 1em/1 "Font Awesome 7 Brands";\n --fa-font-sharp-solid: normal 900 1em/1 "Font Awesome 7 Sharp";\n --fa-font-sharp-regular: normal 400 1em/1 "Font Awesome 7 Sharp";\n --fa-font-sharp-light: normal 300 1em/1 "Font Awesome 7 Sharp";\n --fa-font-sharp-thin: normal 100 1em/1 "Font Awesome 7 Sharp";\n --fa-font-sharp-duotone-solid: normal 900 1em/1 "Font Awesome 7 Sharp Duotone";\n --fa-font-sharp-duotone-regular: normal 400 1em/1 "Font Awesome 7 Sharp Duotone";\n --fa-font-sharp-duotone-light: normal 300 1em/1 "Font Awesome 7 Sharp Duotone";\n --fa-font-sharp-duotone-thin: normal 100 1em/1 "Font Awesome 7 Sharp Duotone";\n --fa-font-slab-regular: normal 400 1em/1 "Font Awesome 7 Slab";\n --fa-font-slab-press-regular: normal 400 1em/1 "Font Awesome 7 Slab Press";\n --fa-font-whiteboard-semibold: normal 600 1em/1 "Font Awesome 7 Whiteboard";\n --fa-font-thumbprint-light: normal 300 1em/1 "Font Awesome 7 Thumbprint";\n --fa-font-notdog-solid: normal 900 1em/1 "Font Awesome 7 Notdog";\n --fa-font-notdog-duo-solid: normal 900 1em/1 "Font Awesome 7 Notdog Duo";\n --fa-font-etch-solid: normal 900 1em/1 "Font Awesome 7 Etch";\n --fa-font-jelly-regular: normal 400 1em/1 "Font Awesome 7 Jelly";\n --fa-font-jelly-fill-regular: normal 400 1em/1 "Font Awesome 7 Jelly Fill";\n --fa-font-jelly-duo-regular: normal 400 1em/1 "Font Awesome 7 Jelly Duo";\n --fa-font-chisel-regular: normal 400 1em/1 "Font Awesome 7 Chisel";\n --fa-font-utility-semibold: normal 600 1em/1 "Font Awesome 7 Utility";\n --fa-font-utility-duo-semibold: normal 600 1em/1 "Font Awesome 7 Utility Duo";\n --fa-font-utility-fill-semibold: normal 600 1em/1 "Font Awesome 7 Utility Fill";\n}\n\n.svg-inline--fa {\n box-sizing: content-box;\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n width: var(--fa-width, 1.25em);\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285714em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left,\n.svg-inline--fa .fa-pull-start {\n float: inline-start;\n margin-inline-end: var(--fa-pull-margin, 0.3em);\n}\n.svg-inline--fa.fa-pull-right,\n.svg-inline--fa .fa-pull-end {\n float: inline-end;\n margin-inline-start: var(--fa-pull-margin, 0.3em);\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n inset-inline-start: calc(-1 * var(--fa-li-width, 2em));\n inset-block-start: 0.25em; /* syncing vertical alignment with Web Font rendering */\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: var(--fa-width, 1.25em);\n}\n.fa-layers .svg-inline--fa {\n inset: 0;\n margin: auto;\n position: absolute;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n transform: scale(var(--fa-counter-scale, 0.25));\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n transform: scale(var(--fa-layers-scale, 0.25));\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n transform: scale(var(--fa-layers-scale, 0.25));\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n transform: scale(var(--fa-layers-scale, 0.25));\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n transform: scale(var(--fa-layers-scale, 0.25));\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: calc(10 / 16 * 1em); /* converts a 10px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 10 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 10 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-xs {\n font-size: calc(12 / 16 * 1em); /* converts a 12px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 12 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 12 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-sm {\n font-size: calc(14 / 16 * 1em); /* converts a 14px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 14 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 14 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-lg {\n font-size: calc(20 / 16 * 1em); /* converts a 20px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 20 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 20 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-xl {\n font-size: calc(24 / 16 * 1em); /* converts a 24px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 24 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 24 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-2xl {\n font-size: calc(32 / 16 * 1em); /* converts a 32px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 32 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 32 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-width-auto {\n --fa-width: auto;\n}\n\n.fa-fw,\n.fa-width-fixed {\n --fa-width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-inline-start: var(--fa-li-margin, 2.5em);\n padding-inline-start: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n inset-inline-start: calc(-1 * var(--fa-li-width, 2em));\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n/* Heads Up: Bordered Icons will not be supported in the future!\n - This feature will be deprecated in the next major release of Font Awesome (v8)!\n - You may continue to use it in this version *v7), but it will not be supported in Font Awesome v8.\n*/\n/* Notes:\n* --@{v.$css-prefix}-border-width = 1/16 by default (to render as ~1px based on a 16px default font-size)\n* --@{v.$css-prefix}-border-padding =\n ** 3/16 for vertical padding (to give ~2px of vertical whitespace around an icon considering it\'s vertical alignment)\n ** 4/16 for horizontal padding (to give ~4px of horizontal whitespace around an icon)\n*/\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.0625em);\n box-sizing: var(--fa-border-box-sizing, content-box);\n padding: var(--fa-border-padding, 0.1875em 0.25em);\n}\n\n.fa-pull-left,\n.fa-pull-start {\n float: inline-start;\n margin-inline-end: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right,\n.fa-pull-end {\n float: inline-end;\n margin-inline-start: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n animation-name: fa-beat;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n animation-name: fa-bounce;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n animation-name: fa-fade;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n animation-name: fa-beat-fade;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n animation-name: fa-flip;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n animation-name: fa-shake;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n animation-name: fa-spin;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 2s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n animation-name: fa-spin;\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n .fa-bounce,\n .fa-fade,\n .fa-beat-fade,\n .fa-flip,\n .fa-pulse,\n .fa-shake,\n .fa-spin,\n .fa-spin-pulse {\n animation: none !important;\n transition: none !important;\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n transform: scale(1);\n }\n 45% {\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-bounce {\n 0% {\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-flip {\n 50% {\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-shake {\n 0% {\n transform: rotate(-15deg);\n }\n 4% {\n transform: rotate(15deg);\n }\n 8%, 24% {\n transform: rotate(-18deg);\n }\n 12%, 28% {\n transform: rotate(18deg);\n }\n 16% {\n transform: rotate(-22deg);\n }\n 20% {\n transform: rotate(22deg);\n }\n 32% {\n transform: rotate(-12deg);\n }\n 36% {\n transform: rotate(12deg);\n }\n 40%, 100% {\n transform: rotate(0deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n transform: rotate(var(--fa-rotate-angle, 0));\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.svg-inline--fa.fa-inverse {\n fill: var(--fa-inverse, #fff);\n}\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n line-height: 2em;\n position: relative;\n vertical-align: middle;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.svg-inline--fa.fa-stack-1x {\n --fa-width: 1.25em;\n height: 1em;\n width: var(--fa-width);\n}\n.svg-inline--fa.fa-stack-2x {\n --fa-width: 2.5em;\n height: 2em;\n width: var(--fa-width);\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n inset: 0;\n margin: auto;\n position: absolute;\n z-index: var(--fa-stack-z-index, auto);\n}';if("fa"!==St||Ot!==Dt){var ot=new RegExp("\\.".concat("fa","\\-"),"g"),Ti=new RegExp("\\--".concat("fa","\\-"),"g"),Ni=new RegExp("\\.".concat(Dt),"g");si=si.replace(ot,".".concat(St,"-")).replace(Ti,"--".concat(St,"-")).replace(Ni,".".concat(Ot))}return si}var At=!1;function mi(){Sn.autoAddCss&&!At&&(function ds(Qe){if(Qe&&pe){var Dt=W.createElement("style");Dt.setAttribute("type","text/css"),Dt.innerHTML=Qe;for(var St=W.head.childNodes,Ot=null,si=St.length-1;si>-1;si--){var ot=St[si],Ti=(ot.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(Ti)>-1&&(Ot=ot)}W.head.insertBefore(Dt,Ot)}}(He()),At=!0)}var Rn={mixout:function(){return{dom:{css:He,insertCss:mi}}},hooks:function(){return{beforeDOMElementCreation:function(){mi()},beforeI2svg:function(){mi()}}}},ea=_||{};ea[Ta]||(ea[Ta]={}),ea[Ta].styles||(ea[Ta].styles={}),ea[Ta].hooks||(ea[Ta].hooks={}),ea[Ta].shims||(ea[Ta].shims=[]);var lr=ea[Ta],Ts=[],Rs=function(){W.removeEventListener("DOMContentLoaded",Rs),Gs=1,Ts.map(function(Dt){return Dt()})},Gs=!1;function Ds(Qe){var Dt=Qe.tag,St=Qe.attributes,Ot=void 0===St?{}:St,si=Qe.children,ot=void 0===si?[]:si;return"string"==typeof Qe?Ri(Qe):"<".concat(Dt," ").concat(function ft(Qe){return Object.keys(Qe||{}).reduce(function(Dt,St){return Dt+"".concat(St,'="').concat(Ri(Qe[St]),'" ')},"").trim()}(Ot),">").concat(ot.map(Ds).join(""),"")}function ro(Qe,Dt,St){if(Qe&&Qe[Dt]&&Qe[Dt][St])return{prefix:Dt,iconName:St,icon:Qe[Dt][St]}}pe&&((Gs=(W.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(W.readyState))||W.addEventListener("DOMContentLoaded",Rs));var Os=function(Dt,St,Ot,si){var $i,Tn,Vn,ot=Object.keys(Dt),Ti=ot.length,Ni=void 0!==si?function(Dt,St){return function(Ot,si,ot,Ti){return Dt.call(St,Ot,si,ot,Ti)}}(St,si):St;for(void 0===Ot?($i=1,Vn=Dt[ot[0]]):($i=0,Vn=Ot);$i2&&void 0!==arguments[2]?arguments[2]:{}).skipHooks,si=void 0!==Ot&&Ot,ot=Ps(Dt);"function"!=typeof lr.hooks.addPack||si?lr.styles[Qe]=$($({},lr.styles[Qe]||{}),ot):lr.hooks.addPack(Qe,Ps(Dt)),"fas"===Qe&&vo("fa",Dt)}var yo=lr.styles,bo=lr.shims,Fs=Object.keys(wt),xo=Fs.reduce(function(Qe,Dt){return Qe[Dt]=Object.keys(wt[Dt]),Qe},{}),dl=null,ul={},jl={},cr={},us={},so={};var qo=function(){var Dt=function(ot){return Os(yo,function(Ti,Ni,$i){return Ti[$i]=Os(Ni,ot,{}),Ti},{})};ul=Dt(function(si,ot,Ti){return ot[3]&&(si[ot[3]]=Ti),ot[2]&&ot[2].filter(function($i){return"number"==typeof $i}).forEach(function($i){si[$i.toString(16)]=Ti}),si}),jl=Dt(function(si,ot,Ti){return si[Ti]=Ti,ot[2]&&ot[2].filter(function($i){return"string"==typeof $i}).forEach(function($i){si[$i]=Ti}),si}),so=Dt(function(si,ot,Ti){var Ni=ot[2];return si[Ti]=Ti,Ni.forEach(function($i){si[$i]=Ti}),si});var St="far"in yo||Sn.autoFetchSvg,Ot=Os(bo,function(si,ot){var Ti=ot[0],Ni=ot[1],$i=ot[2];return"far"===Ni&&!St&&(Ni="fas"),"string"==typeof Ti&&(si.names[Ti]={prefix:Ni,iconName:$i}),"number"==typeof Ti&&(si.unicodes[Ti.toString(16)]={prefix:Ni,iconName:$i}),si},{names:{},unicodes:{}});cr=Ot.names,us=Ot.unicodes,dl=xs(Sn.styleDefault,{family:Sn.familyDefault})};function Al(Qe,Dt){return(ul[Qe]||{})[Dt]}function Rr(Qe,Dt){return(so[Qe]||{})[Dt]}function hl(Qe){return cr[Qe]||{prefix:null,iconName:null}}function oo(){return dl}function xs(Qe){var St=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).family,Ot=void 0===St?ve:St;return Ot!==Oe||Qe?Lt[Ot][Qe]||Lt[Ot][Hs[Ot][Qe]]||(Qe in lr.styles?Qe:null)||null:"fad"}function wn(Qe){return Qe.sort().filter(function(Dt,St,Ot){return Ot.indexOf(Dt)===St})}(function Ka(Qe){ka.push(Qe)})(function(Qe){dl=xs(Qe.styleDefault,{family:Sn.familyDefault})}),qo();var Ws=Zn.concat(vi);function Bo(Qe){var St=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).skipLookups,Ot=void 0!==St&&St,si=null,ot=wn(Qe.filter(function(ya){return Ws.includes(ya)})),Ti=wn(Qe.filter(function(ya){return!Ws.includes(ya)})),Tn=ue(ot.filter(function(ya){return si=ya,!ge.includes(ya)}),1)[0],Vn=void 0===Tn?null:Tn,Hn=function Il(Qe){var Dt=ve,St=Fs.reduce(function(Ot,si){return Ot[si]="".concat(Sn.cssPrefix,"-").concat(si),Ot},{});return Nt.forEach(function(Ot){(Qe.includes(St[Ot])||Qe.some(function(si){return xo[Ot].includes(si)}))&&(Dt=Ot)}),Dt}(ot),va=$($({},function js(Qe){var Dt=[],St=null;return Qe.forEach(function(Ot){var si=function Dl(Qe,Dt){var St=Dt.split("-"),Ot=St[0],si=St.slice(1).join("-");return Ot!==Qe||""===si||function Wl(Qe){return~Ca.indexOf(Qe)}(si)?null:si}(Sn.cssPrefix,Ot);si?St=si:Ot&&Dt.push(Ot)}),{iconName:St,rest:Dt}}(Ti)),{},{prefix:xs(Vn,{family:Hn})});return $($($({},va),function pl(Qe){var Dt=Qe.values,St=Qe.family,Ot=Qe.canonical,si=Qe.givenPrefix,ot=void 0===si?"":si,Ti=Qe.styles,Ni=void 0===Ti?{}:Ti,$i=Qe.config,Tn=void 0===$i?{}:$i,Vn=St===Oe,Hn=Dt.includes("fa-duotone")||Dt.includes("fad");if(!Vn&&(Hn||"duotone"===Tn.familyDefault||("fad"===Ot.prefix||"fa-duotone"===Ot.prefix))&&(Ot.prefix="fad"),(Dt.includes("fa-brands")||Dt.includes("fab"))&&(Ot.prefix="fab"),!Ot.prefix&&el.includes(St)&&(Object.keys(Ni).find(function(Ls){return ml.includes(Ls)})||Tn.autoFetchSvg)){var br=$e.get(St).defaultShortPrefixId;Ot.prefix=br,Ot.iconName=Rr(Ot.prefix,Ot.iconName)||Ot.iconName}return("fa"===Ot.prefix||"fa"===ot)&&(Ot.prefix=oo()||"fas"),Ot}({values:Qe,family:Hn,styles:yo,config:Sn,canonical:va,givenPrefix:si})),function Xl(Qe,Dt,St){var Ot=St.prefix,si=St.iconName;if(Qe||!Ot||!si)return{prefix:Ot,iconName:si};var ot="fa"===Dt?hl(si):{},Ti=Rr(Ot,si);return"far"===(Ot=ot.prefix||Ot)&&!yo.far&&yo.fas&&!Sn.autoFetchSvg&&(Ot="fas"),{prefix:Ot,iconName:si=ot.iconName||Ti||si}}(Ot,si,va))}var el=Nt.filter(function(Qe){return Qe!==ve||Qe!==Oe}),ml=Object.keys(da).filter(function(Qe){return Qe!==ve}).map(function(Qe){return Object.keys(da[Qe])}).flat(),Co=function(){return function m(Qe,Dt,St){return Dt&&w(Qe.prototype,Dt),St&&w(Qe,St),Object.defineProperty(Qe,"prototype",{writable:!1}),Qe}(function Qe(){(function d(Qe,Dt){if(!(Qe instanceof Dt))throw new TypeError("Cannot call a class as a function")})(this,Qe),this.definitions={}},[{key:"add",value:function(){for(var St=this,Ot=arguments.length,si=new Array(Ot),ot=0;ot0&&Vn.forEach(function(Hn){"string"==typeof Hn&&(St[Ni][Hn]=Tn)}),St[Ni][$i]=Tn}),St}}])}(),gl=[],hs={},Xs={},ta=Object.keys(Xs);function Uo(Qe,Dt){for(var St=arguments.length,Ot=new Array(St>2?St-2:0),si=2;si1?Dt-1:0),Ot=1;Ot0&&void 0!==arguments[0]?arguments[0]:{};return pe?(Ks("beforeI2svg",Dt),lo("pseudoElements2svg",Dt),lo("i2svg",Dt)):Promise.reject(new Error("Operation requires a DOM of some kind."))},watch:function(){var Dt=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},St=Dt.autoReplaceSvgRoot;!1===Sn.autoReplaceSvg&&(Sn.autoReplaceSvg=!0),Sn.observeMutations=!0,function Oo(Qe){pe&&(Gs?setTimeout(Qe,0):Ts.push(Qe))}(function(){cd({autoReplaceSvgRoot:St}),Ks("watch",Dt)})}},zr={noAuto:function(){Sn.autoReplaceSvg=!1,Sn.observeMutations=!1,Ks("noAuto")},config:Sn,dom:vl,parse:{icon:function(Dt){if(null===Dt)return null;if("object"===Te(Dt)&&Dt.prefix&&Dt.iconName)return{prefix:Dt.prefix,iconName:Rr(Dt.prefix,Dt.iconName)||Dt.iconName};if(Array.isArray(Dt)&&2===Dt.length){var St=0===Dt[1].indexOf("fa-")?Dt[1].slice(3):Dt[1],Ot=xs(Dt[0]);return{prefix:Ot,iconName:Rr(Ot,St)||St}}if("string"==typeof Dt&&(Dt.indexOf("".concat(Sn.cssPrefix,"-"))>-1||Dt.match(Ui))){var si=Bo(Dt.split(" "),{skipLookups:!0});return{prefix:si.prefix||oo(),iconName:Rr(si.prefix,si.iconName)||si.iconName}}if("string"==typeof Dt){var ot=oo();return{prefix:ot,iconName:Rr(ot,Dt)||Dt}}}},library:_l,findIconDefinition:Ys,toHtml:Ds},cd=function(){var St=(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}).autoReplaceSvgRoot,Ot=void 0===St?W:St;(Object.keys(lr.styles).length>0||Sn.autoFetchSvg)&&pe&&Sn.autoReplaceSvg&&zr.dom.i2svg({node:Ot})};function yl(Qe,Dt){return Object.defineProperty(Qe,"abstract",{get:Dt}),Object.defineProperty(Qe,"html",{get:function(){return Qe.abstract.map(function(Ot){return Ds(Ot)})}}),Object.defineProperty(Qe,"node",{get:function(){if(pe){var Ot=W.createElement("div");return Ot.innerHTML=Qe.html,Ot.children}}}),Qe}function Re(Qe){var Dt=Qe.icons,St=Dt.main,Ot=Dt.mask,si=Qe.prefix,ot=Qe.iconName,Ti=Qe.transform,Ni=Qe.symbol,$i=Qe.maskId,Tn=Qe.extra,Vn=Qe.watchable,Hn=void 0!==Vn&&Vn,va=Ot.found?Ot:St,ya=va.width,_r=va.height,br=[Sn.replacementClass,ot?"".concat(Sn.cssPrefix,"-").concat(ot):""].filter(function(ps){return-1===Tn.classes.indexOf(ps)}).filter(function(ps){return""!==ps||!!ps}).concat(Tn.classes).join(" "),Ls={children:[],attributes:$($({},Tn.attributes),{},{"data-prefix":si,"data-icon":ot,class:br,role:Tn.attributes.role||"img",viewBox:"0 0 ".concat(ya," ").concat(_r)})};!function je(Qe){return["aria-label","aria-labelledby","title","role"].some(function(St){return St in Qe})}(Tn.attributes)&&!Tn.attributes["aria-hidden"]&&(Ls.attributes["aria-hidden"]="true"),Hn&&(Ls.attributes[Fa]="");var ns=$($({},Ls),{},{prefix:si,iconName:ot,main:St,mask:Ot,maskId:$i,transform:Ti,symbol:Ni,styles:$({},Tn.styles)}),Js=Ot.found&&St.found?lo("generateAbstractMask",ns)||{children:[],attributes:{}}:lo("generateAbstractIcon",ns)||{children:[],attributes:{}},Ko=Js.attributes;return ns.children=Js.children,ns.attributes=Ko,Ni?function we(Qe){var St=Qe.iconName,Ot=Qe.children,si=Qe.attributes,ot=Qe.symbol,Ti=!0===ot?"".concat(Qe.prefix,"-").concat(Sn.cssPrefix,"-").concat(St):ot;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:$($({},si),{},{id:Ti}),children:Ot}]}]}(ns):function jc(Qe){var Dt=Qe.children,St=Qe.main,Ot=Qe.mask,si=Qe.attributes,ot=Qe.styles,Ti=Qe.transform;if(Li(Ti)&&St.found&&!Ot.found){var Tn={x:St.width/St.height/2,y:.5};si.style=_i($($({},ot),{},{"transform-origin":"".concat(Tn.x+Ti.x/16,"em ").concat(Tn.y+Ti.y/16,"em")}))}return[{tag:"svg",attributes:si,children:Dt}]}(ns)}function We(Qe){var Dt=Qe.content,St=Qe.width,Ot=Qe.height,si=Qe.transform,ot=Qe.extra,Ti=Qe.watchable,Ni=void 0!==Ti&&Ti,$i=$($({},ot.attributes),{},{class:ot.classes.join(" ")});Ni&&($i[Fa]="");var Tn=$({},ot.styles);Li(si)&&(Tn.transform=function Je(Qe){var Dt=Qe.transform,St=Qe.width,si=Qe.height,ot=void 0===si?16:si,Ti=Qe.startCentered,Ni=void 0!==Ti&&Ti,$i="";return $i+=Ni&&be?"translate(".concat(Dt.x/16-(void 0===St?16:St)/2,"em, ").concat(Dt.y/16-ot/2,"em) "):Ni?"translate(calc(-50% + ".concat(Dt.x/16,"em), calc(-50% + ").concat(Dt.y/16,"em)) "):"translate(".concat(Dt.x/16,"em, ").concat(Dt.y/16,"em) "),($i+="scale(".concat(Dt.size/16*(Dt.flipX?-1:1),", ").concat(Dt.size/16*(Dt.flipY?-1:1),") "))+"rotate(".concat(Dt.rotate,"deg) ")}({transform:si,startCentered:!0,width:St,height:Ot}),Tn["-webkit-transform"]=Tn.transform);var Vn=_i(Tn);Vn.length>0&&($i.style=Vn);var Hn=[];return Hn.push({tag:"span",attributes:$i,children:[Dt]}),Hn}var Ut=lr.styles;function ri(Qe){var Dt=Qe[0],St=Qe[1],ot=ue(Qe.slice(4),1)[0];return{found:!0,width:Dt,height:St,icon:Array.isArray(ot)?{tag:"g",attributes:{class:"".concat(Sn.cssPrefix,"-").concat(Un_GROUP)},children:[{tag:"path",attributes:{class:"".concat(Sn.cssPrefix,"-").concat(Un_SECONDARY),fill:"currentColor",d:ot[0]}},{tag:"path",attributes:{class:"".concat(Sn.cssPrefix,"-").concat(Un_PRIMARY),fill:"currentColor",d:ot[1]}}]}:{tag:"path",attributes:{fill:"currentColor",d:ot}}}}var Di={found:!1,width:512,height:512};function On(Qe,Dt){var St=Dt;return"fa"===Dt&&null!==Sn.styleDefault&&(Dt=oo()),new Promise(function(Ot,si){if("fa"===St){var ot=hl(Qe)||{};Qe=ot.iconName||Qe,Dt=ot.prefix||Dt}if(Qe&&Dt&&Ut[Dt]&&Ut[Dt][Qe])return Ot(ri(Ut[Dt][Qe]));(function Zi(Qe,Dt){!no&&!Sn.showMissingIcons&&Qe&&console.error('Icon with name "'.concat(Qe,'" and prefix "').concat(Dt,'" is missing.'))})(Qe,Dt),Ot($($({},Di),{},{icon:Sn.showMissingIcons&&Qe&&lo("missingIconAbstract")||{}}))})}var Ma=function(){},yr=Sn.measurePerformance&&B&&B.mark&&B.measure?B:{mark:Ma,measure:Ma},Ur='FA "7.1.0"',Qs_begin=function(Dt){return yr.mark("".concat(Ur," ").concat(Dt," begins")),function(){return function(Dt){yr.mark("".concat(Ur," ").concat(Dt," ends")),yr.measure("".concat(Ur," ").concat(Dt),"".concat(Ur," ").concat(Dt," begins"),"".concat(Ur," ").concat(Dt," ends"))}(Dt)}},Ns=function(){};function uo(Qe){return"string"==typeof(Qe.getAttribute?Qe.getAttribute(Fa):null)}function kl(Qe){return W.createElementNS("http://www.w3.org/2000/svg",Qe)}function $s(Qe){return W.createElement(Qe)}function Zd(Qe){var St=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).ceFn,Ot=void 0===St?"svg"===Qe.tag?kl:$s:St;if("string"==typeof Qe)return W.createTextNode(Qe);var si=Ot(Qe.tag);return Object.keys(Qe.attributes||[]).forEach(function(Ti){si.setAttribute(Ti,Qe.attributes[Ti])}),(Qe.children||[]).forEach(function(Ti){si.appendChild(Zd(Ti,{ceFn:Ot}))}),si}var Go={replace:function(Dt){var St=Dt[0];if(St.parentNode)if(Dt[1].forEach(function(si){St.parentNode.insertBefore(Zd(si),St)}),null===St.getAttribute(Fa)&&Sn.keepOriginalSource){var Ot=W.createComment(function Kl(Qe){var Dt=" ".concat(Qe.outerHTML," ");return"".concat(Dt,"Font Awesome fontawesome.com ")}(St));St.parentNode.replaceChild(Ot,St)}else St.remove()},nest:function(Dt){var St=Dt[0],Ot=Dt[1];if(~Wt(St).indexOf(Sn.replacementClass))return Go.replace(Dt);var si=new RegExp("".concat(Sn.cssPrefix,"-.*"));if(delete Ot[0].attributes.id,Ot[0].attributes.class){var ot=Ot[0].attributes.class.split(" ").reduce(function(Ni,$i){return $i===Sn.replacementClass||$i.match(si)?Ni.toSvg.push($i):Ni.toNode.push($i),Ni},{toNode:[],toSvg:[]});Ot[0].attributes.class=ot.toSvg.join(" "),0===ot.toNode.length?St.removeAttribute("class"):St.setAttribute("class",ot.toNode.join(" "))}var Ti=Ot.map(function(Ni){return Ds(Ni)}).join("\n");St.setAttribute(Fa,""),St.innerHTML=Ti}};function xl(Qe){Qe()}function Bs(Qe,Dt){var St="function"==typeof Dt?Dt:Ns;if(0===Qe.length)St();else{var Ot=xl;"async"===Sn.mutateApproach&&(Ot=_.requestAnimationFrame||xl),Ot(function(){var si=function $d(){return!0===Sn.autoReplaceSvg?Go.replace:Go[Sn.autoReplaceSvg]||Go.replace}(),ot=Qs_begin("mutate");Qe.map(si),ot(),St()})}}var Mo=!1;function tl(){Mo=!0}function Eo(){Mo=!1}var jo=null;function il(Qe){if(I&&Sn.observeMutations){var Dt=Qe.treeCallback,St=void 0===Dt?Ns:Dt,Ot=Qe.nodeCallback,si=void 0===Ot?Ns:Ot,ot=Qe.pseudoElementsCallback,Ti=void 0===ot?Ns:ot,Ni=Qe.observeMutationsRoot,$i=void 0===Ni?W:Ni;jo=new I(function(Tn){if(!Mo){var Vn=oo();Oa(Tn).forEach(function(Hn){if("childList"===Hn.type&&Hn.addedNodes.length>0&&!uo(Hn.addedNodes[0])&&(Sn.searchPseudoElements&&Ti(Hn.target),St(Hn.target)),"attributes"===Hn.type&&Hn.target.parentNode&&Sn.searchPseudoElements&&Ti([Hn.target],!0),"attributes"===Hn.type&&uo(Hn.target)&&~Jn.indexOf(Hn.attributeName))if("class"===Hn.attributeName&&function bl(Qe){var Dt=Qe.getAttribute?Qe.getAttribute(Kr):null,St=Qe.getAttribute?Qe.getAttribute(or):null;return Dt&&St}(Hn.target)){var va=Bo(Wt(Hn.target)),_r=va.iconName;Hn.target.setAttribute(Kr,va.prefix||Vn),_r&&Hn.target.setAttribute(or,_r)}else(function fs(Qe){return Qe&&Qe.classList&&Qe.classList.contains&&Qe.classList.contains(Sn.replacementClass)})(Hn.target)&&si(Hn.target)})}}),pe&&jo.observe($i,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function Vr(Qe){var Dt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{styleParser:!0},St=function ho(Qe){var Dt=Qe.getAttribute("data-prefix"),St=Qe.getAttribute("data-icon"),Ot=void 0!==Qe.innerText?Qe.innerText.trim():"",si=Bo(Wt(Qe));return si.prefix||(si.prefix=oo()),Dt&&St&&(si.prefix=Dt,si.iconName=St),si.iconName&&si.prefix||(si.prefix&&Ot.length>0&&(si.iconName=function Ll(Qe,Dt){return(jl[Qe]||{})[Dt]}(si.prefix,Qe.innerText)||Al(si.prefix,Po(Qe.innerText))),!si.iconName&&Sn.autoFetchSvg&&Qe.firstChild&&Qe.firstChild.nodeType===Node.TEXT_NODE&&(si.iconName=Qe.firstChild.data)),si}(Qe),Ot=St.iconName,si=St.prefix,ot=St.rest,Ti=function al(Qe){return Oa(Qe.attributes).reduce(function(St,Ot){return"class"!==St.name&&"style"!==St.name&&(St[Ot.name]=Ot.value),St},{})}(Qe),Ni=Uo("parseNodeAttributes",{},Qe),$i=Dt.styleParser?function Cl(Qe){var Dt=Qe.getAttribute("style"),St=[];return Dt&&(St=Dt.split(";").reduce(function(Ot,si){var ot=si.split(":"),Ti=ot[0],Ni=ot.slice(1);return Ti&&Ni.length>0&&(Ot[Ti]=Ni.join(":").trim()),Ot},{})),St}(Qe):[];return $({iconName:Ot,prefix:si,transform:gr,mask:{iconName:null,prefix:null,rest:[]},maskId:null,symbol:!1,extra:{classes:ot,styles:$i,attributes:Ti}},Ni)}var Zr=lr.styles;function hc(Qe){var Dt="nest"===Sn.autoReplaceSvg?Vr(Qe,{styleParser:!1}):Vr(Qe);return~Dt.extra.classes.indexOf(tn)?lo("generateLayersText",Qe,Dt):lo("generateSvgReplacementMutation",Qe,Dt)}function Ml(Qe){var Dt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!pe)return Promise.resolve();var St=W.documentElement.classList,Ot=function(Hn){return St.add("".concat(os,"-").concat(Hn))},si=function(Hn){return St.remove("".concat(os,"-").concat(Hn))},ot=Sn.autoFetchSvg?function fc(){return[].concat(oe(vi),oe(Zn))}():ge.concat(Object.keys(Zr));ot.includes("fa")||ot.push("fa");var Ti=[".".concat(tn,":not([").concat(Fa,"])")].concat(ot.map(function(Vn){return".".concat(Vn,":not([").concat(Fa,"])")})).join(", ");if(0===Ti.length)return Promise.resolve();var Ni=[];try{Ni=Oa(Qe.querySelectorAll(Ti))}catch{}if(!(Ni.length>0))return Promise.resolve();Ot("pending"),si("complete");var $i=Qs_begin("onTree"),Tn=Ni.reduce(function(Vn,Hn){try{var va=hc(Hn);va&&Vn.push(va)}catch(ya){no||"MissingIcon"===ya.name&&console.error(ya)}return Vn},[]);return new Promise(function(Vn,Hn){Promise.all(Tn).then(function(va){Bs(va,function(){Ot("active"),Ot("complete"),si("pending"),"function"==typeof Dt&&Dt(),$i(),Vn()})}).catch(function(va){$i(),Hn(va)})})}function zs(Qe){var Dt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;hc(Qe).then(function(St){St&&Bs([St],Dt)})}var So=function(Dt){var St=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Ot=St.transform,si=void 0===Ot?gr:Ot,ot=St.symbol,Ti=void 0!==ot&&ot,Ni=St.mask,$i=void 0===Ni?null:Ni,Tn=St.maskId,Vn=void 0===Tn?null:Tn,Hn=St.classes,va=void 0===Hn?[]:Hn,ya=St.attributes,_r=void 0===ya?{}:ya,br=St.styles,Ls=void 0===br?{}:br;if(Dt){var ns=Dt.prefix,Js=Dt.iconName,mo=Dt.icon;return yl($({type:"icon"},Dt),function(){return Ks("beforeDOMElementCreation",{iconDefinition:Dt,params:St}),Re({icons:{main:ri(mo),mask:$i?ri($i.icon):{found:!1,width:null,height:null,icon:{}}},prefix:ns,iconName:Js,transform:$($({},gr),si),symbol:Ti,maskId:Vn,extra:{attributes:_r,styles:Ls,classes:va}})})}},hn={mixout:function(){return{icon:(Qe=So,function(Dt){var St=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Ot=(Dt||{}).icon?Dt:Ys(Dt||{}),si=St.mask;return si&&(si=(si||{}).icon?si:Ys(si||{})),Qe(Ot,$($({},St),{},{mask:si}))})};var Qe},hooks:function(){return{mutationObserverCallbacks:function(St){return St.treeCallback=Ml,St.nodeCallback=zs,St}}},provides:function(Dt){Dt.i2svg=function(St){var Ot=St.node,ot=St.callback;return Ml(void 0===Ot?W:Ot,void 0===ot?function(){}:ot)},Dt.generateSvgReplacementMutation=function(St,Ot){var si=Ot.iconName,ot=Ot.prefix,Ti=Ot.transform,Ni=Ot.symbol,$i=Ot.mask,Tn=Ot.maskId,Vn=Ot.extra;return new Promise(function(Hn,va){Promise.all([On(si,ot),$i.iconName?On($i.iconName,$i.prefix):Promise.resolve({found:!1,width:512,height:512,icon:{}})]).then(function(ya){var _r=ue(ya,2);Hn([St,Re({icons:{main:_r[0],mask:_r[1]},prefix:ot,iconName:si,transform:Ti,symbol:Ni,maskId:Tn,extra:Vn,watchable:!0})])}).catch(va)})},Dt.generateAbstractIcon=function(St){var Tn,Ot=St.children,si=St.attributes,ot=St.main,Ti=St.transform,$i=_i(St.styles);return $i.length>0&&(si.style=$i),Li(Ti)&&(Tn=lo("generateAbstractTransformGrouping",{main:ot,transform:Ti,containerWidth:ot.width,iconWidth:ot.width})),Ot.push(Tn||ot.icon),{children:Ot,attributes:si}}}},Rl={mixout:function(){return{layer:function(St){var Ot=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},si=Ot.classes,ot=void 0===si?[]:si;return yl({type:"layer"},function(){Ks("beforeDOMElementCreation",{assembler:St,params:Ot});var Ti=[];return St(function(Ni){Array.isArray(Ni)?Ni.map(function($i){Ti=Ti.concat($i.abstract)}):Ti=Ti.concat(Ni.abstract)}),[{tag:"span",attributes:{class:["".concat(Sn.cssPrefix,"-layers")].concat(oe(ot)).join(" ")},children:Ti}]})}}}},dd={mixout:function(){return{counter:function(St){var Ot=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},si=Ot.title,ot=void 0===si?null:si,Ti=Ot.classes,Ni=void 0===Ti?[]:Ti,$i=Ot.attributes,Tn=void 0===$i?{}:$i,Vn=Ot.styles,Hn=void 0===Vn?{}:Vn;return yl({type:"counter",content:St},function(){return Ks("beforeDOMElementCreation",{content:St,params:Ot}),function _t(Qe){var Dt=Qe.content,St=Qe.extra,Ot=$($({},St.attributes),{},{class:St.classes.join(" ")}),si=_i(St.styles);si.length>0&&(Ot.style=si);var ot=[];return ot.push({tag:"span",attributes:Ot,children:[Dt]}),ot}({content:St.toString(),title:ot,extra:{attributes:Tn,styles:Hn,classes:["".concat(Sn.cssPrefix,"-layers-counter")].concat(oe(Ni))}})})}}}},mc={mixout:function(){return{text:function(St){var Ot=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},si=Ot.transform,ot=void 0===si?gr:si,Ti=Ot.classes,Ni=void 0===Ti?[]:Ti,$i=Ot.attributes,Tn=void 0===$i?{}:$i,Vn=Ot.styles,Hn=void 0===Vn?{}:Vn;return yl({type:"text",content:St},function(){return Ks("beforeDOMElementCreation",{content:St,params:Ot}),We({content:St,transform:$($({},gr),ot),extra:{attributes:Tn,styles:Hn,classes:["".concat(Sn.cssPrefix,"-layers-text")].concat(oe(Ni))}})})}}},provides:function(Dt){Dt.generateLayersText=function(St,Ot){var si=Ot.transform,ot=Ot.extra,Ti=null,Ni=null;if(be){var $i=parseInt(getComputedStyle(St).fontSize,10),Tn=St.getBoundingClientRect();Ti=Tn.width/$i,Ni=Tn.height/$i}return Promise.resolve([St,We({content:St.innerHTML,width:Ti,height:Ni,transform:si,extra:ot,watchable:!0})])}}},To=new RegExp('"',"ug"),Ol=[1105920,1112319],pc=$($($($({},{FontAwesome:{normal:"fas",400:"fas"}}),{"Font Awesome 7 Free":{900:"fas",400:"far"},"Font Awesome 7 Pro":{900:"fas",400:"far",normal:"far",300:"fal",100:"fat"},"Font Awesome 7 Brands":{400:"fab",normal:"fab"},"Font Awesome 7 Duotone":{900:"fad",400:"fadr",normal:"fadr",300:"fadl",100:"fadt"},"Font Awesome 7 Sharp":{900:"fass",400:"fasr",normal:"fasr",300:"fasl",100:"fast"},"Font Awesome 7 Sharp Duotone":{900:"fasds",400:"fasdr",normal:"fasdr",300:"fasdl",100:"fasdt"},"Font Awesome 7 Jelly":{400:"fajr",normal:"fajr"},"Font Awesome 7 Jelly Fill":{400:"fajfr",normal:"fajfr"},"Font Awesome 7 Jelly Duo":{400:"fajdr",normal:"fajdr"},"Font Awesome 7 Slab":{400:"faslr",normal:"faslr"},"Font Awesome 7 Slab Press":{400:"faslpr",normal:"faslpr"},"Font Awesome 7 Thumbprint":{300:"fatl",normal:"fatl"},"Font Awesome 7 Notdog":{900:"fans",normal:"fans"},"Font Awesome 7 Notdog Duo":{900:"fands",normal:"fands"},"Font Awesome 7 Etch":{900:"faes",normal:"faes"},"Font Awesome 7 Chisel":{400:"facr",normal:"facr"},"Font Awesome 7 Whiteboard":{600:"fawsb",normal:"fawsb"},"Font Awesome 7 Utility":{600:"fausb",normal:"fausb"},"Font Awesome 7 Utility Duo":{600:"faudsb",normal:"faudsb"},"Font Awesome 7 Utility Fill":{600:"faufsb",normal:"faufsb"}}),{"Font Awesome 5 Free":{900:"fas",400:"far"},"Font Awesome 5 Pro":{900:"fas",400:"far",normal:"far",300:"fal"},"Font Awesome 5 Brands":{400:"fab",normal:"fab"},"Font Awesome 5 Duotone":{900:"fad"}}),{"Font Awesome Kit":{400:"fak",normal:"fak"},"Font Awesome Kit Duotone":{400:"fakd",normal:"fakd"}}),Pl=Object.keys(pc).reduce(function(Qe,Dt){return Qe[Dt.toLowerCase()]=pc[Dt],Qe},{}),Yl=Object.keys(Pl).reduce(function(Qe,Dt){var St=Pl[Dt];return Qe[Dt]=St[900]||oe(Object.entries(St))[0][1],Qe},{});function wl(Qe,Dt){var St="".concat("data-fa-pseudo-element-pending").concat(Dt.replace(":","-"));return new Promise(function(Ot,si){if(null!==Qe.getAttribute(St))return Ot();var Ti=Oa(Qe.children).filter(function(Jl){return Jl.getAttribute(Br)===Dt})[0],Ni=_.getComputedStyle(Qe,Dt),$i=Ni.getPropertyValue("font-family"),Tn=$i.match(yn),Vn=Ni.getPropertyValue("font-weight"),Hn=Ni.getPropertyValue("content");if(Ti&&!Tn)return Qe.removeChild(Ti),Ot();if(Tn&&"none"!==Hn&&""!==Hn){var va=Ni.getPropertyValue("content"),ya=function Zs(Qe,Dt){var St=Qe.replace(/^['"]|['"]$/g,"").toLowerCase(),Ot=parseInt(Dt),si=isNaN(Ot)?"normal":Ot;return(Pl[St]||{})[si]||Yl[St]}($i,Vn),_r=function Ql(Qe){return Po(oe(Qe.replace(To,""))[0]||"")}(va),br=Tn[0].startsWith("FontAwesome"),Ls=function Fl(Qe){var Dt=Qe.getPropertyValue("font-feature-settings").includes("ss01"),Ot=Qe.getPropertyValue("content").replace(To,""),si=Ot.codePointAt(0);return si>=Ol[0]&&si<=Ol[1]||2===Ot.length&&Ot[0]===Ot[1]||Dt}(Ni),ns=Al(ya,_r),Js=ns;if(br){var mo=function fl(Qe){var Dt=us[Qe],St=Al("fas",Qe);return Dt||(St?{prefix:"fas",iconName:St}:null)||{prefix:null,iconName:null}}(_r);mo.iconName&&mo.prefix&&(ns=mo.iconName,ya=mo.prefix)}if(!ns||Ls||Ti&&Ti.getAttribute(Kr)===ya&&Ti.getAttribute(or)===Js)Ot();else{Qe.setAttribute(St,Js),Ti&&Qe.removeChild(Ti);var Ko=function wo(){return{iconName:null,prefix:null,transform:gr,symbol:!1,mask:{iconName:null,prefix:null,rest:[]},maskId:null,extra:{classes:[],styles:{},attributes:{}}}}(),ps=Ko.extra;ps.attributes[Br]=Dt,On(ns,ya).then(function(Jl){var x2=Re($($({},Ko),{},{icons:{main:Jl,mask:{prefix:null,iconName:null,rest:[]}},prefix:ya,iconName:Js,extra:ps,watchable:!0})),yc=W.createElementNS("http://www.w3.org/2000/svg","svg");"::before"===Dt?Qe.insertBefore(yc,Qe.firstChild):Qe.appendChild(yc),yc.outerHTML=x2.map(function(Zu){return Ds(Zu)}).join("\n"),Qe.removeAttribute(St),Ot()}).catch(si)}}else Ot()})}function ud(Qe){return Promise.all([wl(Qe,"::before"),wl(Qe,"::after")])}function gc(Qe){return!(Qe.parentNode===document.head||~bs.indexOf(Qe.tagName.toUpperCase())||Qe.getAttribute(Br)||Qe.parentNode&&"svg"===Qe.parentNode.tagName)}var rl=function(Dt){return!!Dt&&Qr.some(function(St){return Dt.includes(St)})},Wo=function(Dt){if(!Dt)return[];var ot,St=new Set,Ot=Dt.split(/,(?![^()]*\))/).map(function($i){return $i.trim()}),si=P(Ot=Ot.flatMap(function($i){return $i.includes("(")?$i:$i.split(",").map(function(Tn){return Tn.trim()})}));try{for(si.s();!(ot=si.n()).done;){var Ti=ot.value;if(rl(Ti)){var Ni=Qr.reduce(function($i,Tn){return $i.replace(Tn,"")},Ti);""!==Ni&&"*"!==Ni&&St.add(Ni)}}}catch($i){si.e($i)}finally{si.f()}return St};function Ja(Qe){if(pe){var St;if(arguments.length>1&&void 0!==arguments[1]&&arguments[1])St=Qe;else if(Sn.searchPseudoElementsFullScan)St=Qe.querySelectorAll("*");else{var ot,Ot=new Set,si=P(document.styleSheets);try{for(si.s();!(ot=si.n()).done;){var Ti=ot.value;try{var $i,Ni=P(Ti.cssRules);try{for(Ni.s();!($i=Ni.n()).done;){var va,Hn=P(Wo($i.value.selectorText));try{for(Hn.s();!(va=Hn.n()).done;)Ot.add(va.value)}catch(br){Hn.e(br)}finally{Hn.f()}}}catch(br){Ni.e(br)}finally{Ni.f()}}catch(br){Sn.searchPseudoElementsWarnings&&console.warn("Font Awesome: cannot parse stylesheet: ".concat(Ti.href," (").concat(br.message,')\nIf it declares any Font Awesome CSS pseudo-elements, they will not be rendered as SVG icons. Add crossorigin="anonymous" to the , enable searchPseudoElementsFullScan for slower but more thorough DOM parsing, or suppress this warning by setting searchPseudoElementsWarnings to false.'))}}}catch(br){si.e(br)}finally{si.f()}if(!Ot.size)return;var _r=Array.from(Ot).join(", ");try{St=Qe.querySelectorAll(_r)}catch{}}return new Promise(function(br,Ls){var ns=Oa(St).filter(gc).map(ud),Js=Qs_begin("searchPseudoElements");tl(),Promise.all(ns).then(function(){Js(),Eo(),br()}).catch(function(){Js(),Eo(),Ls()})})}}var Va=!1,Ea=function(Dt){return Dt.toLowerCase().split(" ").reduce(function(Ot,si){var ot=si.toLowerCase().split("-"),Ti=ot[0],Ni=ot.slice(1).join("-");if(Ti&&"h"===Ni)return Ot.flipX=!0,Ot;if(Ti&&"v"===Ni)return Ot.flipY=!0,Ot;if(Ni=parseFloat(Ni),isNaN(Ni))return Ot;switch(Ti){case"grow":Ot.size=Ot.size+Ni;break;case"shrink":Ot.size=Ot.size-Ni;break;case"left":Ot.x=Ot.x-Ni;break;case"right":Ot.x=Ot.x+Ni;break;case"up":Ot.y=Ot.y-Ni;break;case"down":Ot.y=Ot.y+Ni;break;case"rotate":Ot.rotate=Ot.rotate+Ni}return Ot},{size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0})},Dr={x:0,y:0,width:"100%",height:"100%"};function $l(Qe){return Qe.attributes&&(Qe.attributes.fill||!(arguments.length>1&&void 0!==arguments[1])||arguments[1])&&(Qe.attributes.fill="black"),Qe}!function zo(Qe,Dt){var St=Dt.mixoutsTo;gl=Qe,hs={},Object.keys(Xs).forEach(function(Ot){-1===ta.indexOf(Ot)&&delete Xs[Ot]}),gl.forEach(function(Ot){var si=Ot.mixout?Ot.mixout():{};if(Object.keys(si).forEach(function(Ti){"function"==typeof si[Ti]&&(St[Ti]=si[Ti]),"object"===Te(si[Ti])&&Object.keys(si[Ti]).forEach(function(Ni){St[Ti]||(St[Ti]={}),St[Ti][Ni]=si[Ti][Ni]})}),Ot.hooks){var ot=Ot.hooks();Object.keys(ot).forEach(function(Ti){hs[Ti]||(hs[Ti]=[]),hs[Ti].push(ot[Ti])})}Ot.provides&&Ot.provides(Xs)})}([Rn,hn,Rl,dd,mc,{hooks:function(){return{mutationObserverCallbacks:function(St){return St.pseudoElementsCallback=Ja,St}}},provides:function(Dt){Dt.pseudoElements2svg=function(St){var Ot=St.node;Sn.searchPseudoElements&&Ja(void 0===Ot?W:Ot)}}},{mixout:function(){return{dom:{unwatch:function(){tl(),Va=!0}}}},hooks:function(){return{bootstrap:function(){il(Uo("mutationObserverCallbacks",{}))},noAuto:function(){!function nl(){jo&&jo.disconnect()}()},watch:function(St){var Ot=St.observeMutationsRoot;Va?Eo():il(Uo("mutationObserverCallbacks",{observeMutationsRoot:Ot}))}}}},{mixout:function(){return{parse:{transform:function(St){return Ea(St)}}}},hooks:function(){return{parseNodeAttributes:function(St,Ot){var si=Ot.getAttribute("data-fa-transform");return si&&(St.transform=Ea(si)),St}}},provides:function(Dt){Dt.generateAbstractTransformGrouping=function(St){var Ot=St.main,si=St.transform,Ti=St.iconWidth,Ni={transform:"translate(".concat(St.containerWidth/2," 256)")},$i="translate(".concat(32*si.x,", ").concat(32*si.y,") "),Tn="scale(".concat(si.size/16*(si.flipX?-1:1),", ").concat(si.size/16*(si.flipY?-1:1),") "),Vn="rotate(".concat(si.rotate," 0 0)"),ya={outer:Ni,inner:{transform:"".concat($i," ").concat(Tn," ").concat(Vn)},path:{transform:"translate(".concat(Ti/2*-1," -256)")}};return{tag:"g",attributes:$({},ya.outer),children:[{tag:"g",attributes:$({},ya.inner),children:[{tag:Ot.icon.tag,children:Ot.icon.children,attributes:$($({},Ot.icon.attributes),ya.path)}]}]}}}},{hooks:function(){return{parseNodeAttributes:function(St,Ot){var si=Ot.getAttribute("data-fa-mask"),ot=si?Bo(si.split(" ").map(function(Ti){return Ti.trim()})):{prefix:null,iconName:null,rest:[]};return ot.prefix||(ot.prefix=oo()),St.mask=ot,St.maskId=Ot.getAttribute("data-fa-mask-id"),St}}},provides:function(Dt){Dt.generateAbstractMask=function(St){var Qe,Ot=St.children,si=St.attributes,ot=St.main,Ti=St.mask,Ni=St.maskId,Vn=ot.icon,va=Ti.icon,ya=function vn(Qe){var Dt=Qe.transform,Ot=Qe.iconWidth,si={transform:"translate(".concat(Qe.containerWidth/2," 256)")},ot="translate(".concat(32*Dt.x,", ").concat(32*Dt.y,") "),Ti="scale(".concat(Dt.size/16*(Dt.flipX?-1:1),", ").concat(Dt.size/16*(Dt.flipY?-1:1),") "),Ni="rotate(".concat(Dt.rotate," 0 0)");return{outer:si,inner:{transform:"".concat(ot," ").concat(Ti," ").concat(Ni)},path:{transform:"translate(".concat(Ot/2*-1," -256)")}}}({transform:St.transform,containerWidth:Ti.width,iconWidth:ot.width}),_r={tag:"rect",attributes:$($({},Dr),{},{fill:"white"})},br=Vn.children?{children:Vn.children.map($l)}:{},Ls={tag:"g",attributes:$({},ya.inner),children:[$l($({tag:Vn.tag,attributes:$($({},Vn.attributes),ya.path)},br))]},ns={tag:"g",attributes:$({},ya.outer),children:[Ls]},Js="mask-".concat(Ni||Ss()),mo="clip-".concat(Ni||Ss()),Ko={tag:"mask",attributes:$($({},Dr),{},{id:Js,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[_r,ns]},ps={tag:"defs",children:[{tag:"clipPath",attributes:{id:mo},children:(Qe=va,"g"===Qe.tag?Qe.children:[Qe])},Ko]};return Ot.push(ps,{tag:"rect",attributes:$({fill:"currentColor","clip-path":"url(#".concat(mo,")"),mask:"url(#".concat(Js,")")},Dr)}),{children:Ot,attributes:si}}}},{provides:function(Dt){var St=!1;_.matchMedia&&(St=_.matchMedia("(prefers-reduced-motion: reduce)").matches),Dt.missingIconAbstract=function(){var Ot=[],si={fill:"currentColor"},ot={attributeType:"XML",repeatCount:"indefinite",dur:"2s"};Ot.push({tag:"path",attributes:$($({},si),{},{d:"M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"})});var Ti=$($({},ot),{},{attributeName:"opacity"}),Ni={tag:"circle",attributes:$($({},si),{},{cx:"256",cy:"364",r:"28"}),children:[]};return St||Ni.children.push({tag:"animate",attributes:$($({},ot),{},{attributeName:"r",values:"28;14;28;28;14;28;"})},{tag:"animate",attributes:$($({},Ti),{},{values:"1;0;1;1;0;1;"})}),Ot.push(Ni),Ot.push({tag:"path",attributes:$($({},si),{},{opacity:"1",d:"M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"}),children:St?[]:[{tag:"animate",attributes:$($({},Ti),{},{values:"1;0;0;0;0;1;"})}]}),St||Ot.push({tag:"path",attributes:$($({},si),{},{opacity:"0",d:"M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"}),children:[{tag:"animate",attributes:$($({},Ti),{},{values:"0;0;1;1;0;0;"})}]}),{tag:"g",attributes:{class:"missing"},children:Ot}}}},{hooks:function(){return{parseNodeAttributes:function(St,Ot){var si=Ot.getAttribute("data-fa-symbol");return St.symbol=null!==si&&(""===si||si),St}}}}],{mixoutsTo:zr});var Hr=zr.config,De=zr.dom,pt=zr.parse,rn=zr.icon;const $a=["*"];let Za=(()=>{class Qe{defaultPrefix="fas";fallbackIcon=null;fixedWidth;set autoAddCss(St){Hr.autoAddCss=St,this._autoAddCss=St}get autoAddCss(){return this._autoAddCss}_autoAddCss=!0;static \u0275fac=function(Ot){return new(Ot||Qe)};static \u0275prov=i.jDH({token:Qe,factory:Qe.\u0275fac,providedIn:"root"})}return Qe})(),ms=(()=>{class Qe{definitions={};addIcons(...St){for(const Ot of St){Ot.prefix in this.definitions||(this.definitions[Ot.prefix]={}),this.definitions[Ot.prefix][Ot.iconName]=Ot;for(const si of Ot.icon[2])"string"==typeof si&&(this.definitions[Ot.prefix][si]=Ot)}}addIconPacks(...St){for(const Ot of St){const si=Object.keys(Ot).map(ot=>Ot[ot]);this.addIcons(...si)}}getIconDefinition(St,Ot){return St in this.definitions&&Ot in this.definitions[St]?this.definitions[St][Ot]:null}static \u0275fac=function(Ot){return new(Ot||Qe)};static \u0275prov=i.jDH({token:Qe,factory:Qe.\u0275fac,providedIn:"root"})}return Qe})();const Xo=Qe=>null!=Qe&&(90===Qe||180===Qe||270===Qe||"90"===Qe||"180"===Qe||"270"===Qe),fd=Qe=>{const Dt=Xo(Qe.rotate),St={[`fa-${Qe.animation}`]:null!=Qe.animation&&!Qe.animation.startsWith("spin"),"fa-spin":"spin"===Qe.animation||"spin-reverse"===Qe.animation,"fa-spin-pulse":"spin-pulse"===Qe.animation||"spin-pulse-reverse"===Qe.animation,"fa-spin-reverse":"spin-reverse"===Qe.animation||"spin-pulse-reverse"===Qe.animation,"fa-pulse":"spin-pulse"===Qe.animation||"spin-pulse-reverse"===Qe.animation,"fa-fw":Qe.fixedWidth,"fa-border":Qe.border,"fa-inverse":Qe.inverse,"fa-layers-counter":Qe.counter,"fa-flip-horizontal":"horizontal"===Qe.flip||"both"===Qe.flip,"fa-flip-vertical":"vertical"===Qe.flip||"both"===Qe.flip,[`fa-${Qe.size}`]:null!==Qe.size,[`fa-rotate-${Qe.rotate}`]:Dt,"fa-rotate-by":null!=Qe.rotate&&!Dt,[`fa-pull-${Qe.pull}`]:null!==Qe.pull,[`fa-stack-${Qe.stackItemSize}`]:null!=Qe.stackItemSize};return Object.keys(St).map(Ot=>St[Ot]?Ot:null).filter(Ot=>null!=Ot)},Zl=new WeakSet,K1="fa-auto-css";let v2=(()=>{class Qe{stackItemSize=(0,p.hFB)("1x");size=(0,p.hFB)();_effect=(0,S.QZ)(()=>{if(this.size())throw new Error('fa-icon is not allowed to customize size when used inside fa-stack. Set size on the enclosing fa-stack instead: ....')});static \u0275fac=function(Ot){return new(Ot||Qe)};static \u0275dir=t.FsC({type:Qe,selectors:[["fa-icon","stackItemSize",""],["fa-duotone-icon","stackItemSize",""]],inputs:{stackItemSize:[1,"stackItemSize"],size:[1,"size"]}})}return Qe})(),sl=(()=>{class Qe{size=(0,p.hFB)();classes=(0,S.EW)(()=>{const St=this.size();return{...St?{[`fa-${St}`]:!0}:{},"fa-stack":!0}});static \u0275fac=function(Ot){return new(Ot||Qe)};static \u0275cmp=t.VBU({type:Qe,selectors:[["fa-stack"]],hostVars:2,hostBindings:function(Ot,si){2&Ot&&t.HbH(si.classes())},inputs:{size:[1,"size"]},ngContentSelectors:$a,decls:1,vars:0,template:function(Ot,si){1&Ot&&(t.NAR(),t.SdG(0))},encapsulation:2,changeDetection:0})}return Qe})(),Wc=(()=>{class Qe{icon=(0,p.geq)();title=(0,p.geq)();animation=(0,p.geq)();mask=(0,p.geq)();flip=(0,p.geq)();size=(0,p.geq)();pull=(0,p.geq)();border=(0,p.geq)();inverse=(0,p.geq)();symbol=(0,p.geq)();rotate=(0,p.geq)();fixedWidth=(0,p.geq)();transform=(0,p.geq)();a11yRole=(0,p.geq)();renderedIconHTML=(0,S.EW)(()=>{const St=this.icon()??this.config.fallbackIcon;if(!St)return(()=>{throw new Error("Property `icon` is required for `fa-icon`/`fa-duotone-icon` components.")})(),"";const Ot=this.findIconDefinition(St);if(!Ot)return"";const si=this.buildParams();!function Nl(Qe,Dt){if(!Dt.autoAddCss||Zl.has(Qe))return;if(null!=Qe.getElementById(K1))return Dt.autoAddCss=!1,void Zl.add(Qe);const St=Qe.createElement("style");St.setAttribute("type","text/css"),St.setAttribute("id",K1),St.innerHTML=De.css();const Ot=Qe.head.childNodes;let si=null;for(let ot=Ot.length-1;ot>-1;ot--){const Ti=Ot[ot],Ni=Ti.nodeName.toUpperCase();["STYLE","LINK"].indexOf(Ni)>-1&&(si=Ti)}Qe.head.insertBefore(St,si),Dt.autoAddCss=!1,Zl.add(Qe)}(this.document,this.config);const ot=rn(Ot,si);return this.sanitizer.bypassSecurityTrustHtml(ot.html.join("\n"))});document=(0,i.WQX)(i.qQL);sanitizer=(0,i.WQX)(c.up);config=(0,i.WQX)(Za);iconLibrary=(0,i.WQX)(ms);stackItem=(0,i.WQX)(v2,{optional:!0});stack=(0,i.WQX)(sl,{optional:!0});constructor(){null!=this.stack&&null==this.stackItem&&console.error('FontAwesome: fa-icon and fa-duotone-icon elements must specify stackItemSize attribute when wrapped into fa-stack. Example: .')}findIconDefinition(St){const Ot=((Qe,Dt)=>(Qe=>void 0!==Qe.prefix&&void 0!==Qe.iconName)(Qe)?Qe:Array.isArray(Qe)&&2===Qe.length?{prefix:Qe[0],iconName:Qe[1]}:{prefix:Dt,iconName:Qe})(St,this.config.defaultPrefix);return"icon"in Ot?Ot:this.iconLibrary.getIconDefinition(Ot.prefix,Ot.iconName)??((Qe=>{throw new Error(`Could not find icon with iconName=${Qe.iconName} and prefix=${Qe.prefix} in the icon library.`)})(Ot),null)}buildParams(){const St=this.fixedWidth(),Ot={flip:this.flip(),animation:this.animation(),border:this.border(),inverse:this.inverse(),size:this.size(),pull:this.pull(),rotate:this.rotate(),fixedWidth:"boolean"==typeof St?St:this.config.fixedWidth,stackItemSize:null!=this.stackItem?this.stackItem.stackItemSize():void 0},si=this.transform(),ot="string"==typeof si?pt.transform(si):si,Ti=this.mask(),Ni=null!=Ti?this.findIconDefinition(Ti):null,$i={},Tn=this.a11yRole();null!=Tn&&($i.role=Tn);const Vn={};return null!=Ot.rotate&&!Xo(Ot.rotate)&&(Vn["--fa-rotate-angle"]=`${Ot.rotate}`),{title:this.title(),transform:ot,classes:fd(Ot),mask:Ni??void 0,symbol:this.symbol(),attributes:$i,styles:Vn}}static \u0275fac=function(Ot){return new(Ot||Qe)};static \u0275cmp=t.VBU({type:Qe,selectors:[["fa-icon"]],hostAttrs:[1,"ng-fa-icon"],hostVars:2,hostBindings:function(Ot,si){2&Ot&&(t.Avn("innerHTML",si.renderedIconHTML(),t.npT),t.BMQ("title",si.title()??void 0))},inputs:{icon:[1,"icon"],title:[1,"title"],animation:[1,"animation"],mask:[1,"mask"],flip:[1,"flip"],size:[1,"size"],pull:[1,"pull"],border:[1,"border"],inverse:[1,"inverse"],symbol:[1,"symbol"],rotate:[1,"rotate"],fixedWidth:[1,"fixedWidth"],transform:[1,"transform"],a11yRole:[1,"a11yRole"]},outputs:{icon:"iconChange",title:"titleChange",animation:"animationChange",mask:"maskChange",flip:"flipChange",size:"sizeChange",pull:"pullChange",border:"borderChange",inverse:"inverseChange",symbol:"symbolChange",rotate:"rotateChange",fixedWidth:"fixedWidthChange",transform:"transformChange",a11yRole:"a11yRoleChange"},decls:0,vars:0,template:function(Ot,si){},encapsulation:2,changeDetection:0})}return Qe})(),Q1=(()=>{class Qe{static \u0275fac=function(Ot){return new(Ot||Qe)};static \u0275mod=t.$C({type:Qe});static \u0275inj=i.G2t({})}return Qe})()},21270:(Ae,ee,l)=>{"use strict";var i=l(71993),t=l(70463),p=l(27054).Buffer,S=[1518500249,1859775393,-1894007588,-899497514],c=new Array(80);function e(){this.init(),this._w=c,t.call(this,64,56)}function T(m){return m<<1|m>>>31}function g(m){return m<<5|m>>>27}function d(m){return m<<30|m>>>2}function w(m,P,M,j){return 0===m?P&M|~P&j:2===m?P&M|P&j|M&j:P^M^j}i(e,t),e.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},e.prototype._update=function(m){for(var P=this._w,M=0|this._a,j=0|this._b,U=0|this._c,K=0|this._d,q=0|this._e,G=0;G<16;++G)P[G]=m.readInt32BE(4*G);for(;G<80;++G)P[G]=T(P[G-3]^P[G-8]^P[G-14]^P[G-16]);for(var Q=0;Q<80;++Q){var $=~~(Q/20),ae=g(M)+w($,j,U,K)+q+P[Q]+S[$]|0;q=K,K=U,U=d(j),j=M,M=ae}this._a=M+this._a|0,this._b=j+this._b|0,this._c=U+this._c|0,this._d=K+this._d|0,this._e=q+this._e|0},e.prototype._hash=function(){var m=p.allocUnsafe(20);return m.writeInt32BE(0|this._a,0),m.writeInt32BE(0|this._b,4),m.writeInt32BE(0|this._c,8),m.writeInt32BE(0|this._d,12),m.writeInt32BE(0|this._e,16),m},Ae.exports=e},21413:(Ae,ee,l)=>{"use strict";l.d(ee,{k:()=>g,B:()=>T});var i=l(71985),t=l(18359);const S=(0,l(81853).L)(d=>function(){d(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"});var c=l(57908),e=l(49786);let T=(()=>{class d extends i.c{constructor(){super(),this.closed=!1,this.currentObservers=null,this.observers=[],this.isStopped=!1,this.hasError=!1,this.thrownError=null}lift(m){const P=new g(this,this);return P.operator=m,P}_throwIfClosed(){if(this.closed)throw new S}next(m){(0,e.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.currentObservers||(this.currentObservers=Array.from(this.observers));for(const P of this.currentObservers)P.next(m)}})}error(m){(0,e.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.hasError=this.isStopped=!0,this.thrownError=m;const{observers:P}=this;for(;P.length;)P.shift().error(m)}})}complete(){(0,e.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.isStopped=!0;const{observers:m}=this;for(;m.length;)m.shift().complete()}})}unsubscribe(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null}get observed(){var m;return(null===(m=this.observers)||void 0===m?void 0:m.length)>0}_trySubscribe(m){return this._throwIfClosed(),super._trySubscribe(m)}_subscribe(m){return this._throwIfClosed(),this._checkFinalizedStatuses(m),this._innerSubscribe(m)}_innerSubscribe(m){const{hasError:P,isStopped:M,observers:j}=this;return P||M?t.Kn:(this.currentObservers=null,j.push(m),new t.yU(()=>{this.currentObservers=null,(0,c.o)(j,m)}))}_checkFinalizedStatuses(m){const{hasError:P,thrownError:M,isStopped:j}=this;P?m.error(M):j&&m.complete()}asObservable(){const m=new i.c;return m.source=this,m}}return d.create=(w,m)=>new g(w,m),d})();class g extends T{constructor(w,m){super(),this.destination=w,this.source=m}next(w){var m,P;null===(P=null===(m=this.destination)||void 0===m?void 0:m.next)||void 0===P||P.call(m,w)}error(w){var m,P;null===(P=null===(m=this.destination)||void 0===m?void 0:m.error)||void 0===P||P.call(m,w)}complete(){var w,m;null===(m=null===(w=this.destination)||void 0===w?void 0:w.complete)||void 0===m||m.call(w)}_subscribe(w){var m,P;return null!==(P=null===(m=this.source)||void 0===m?void 0:m.subscribe(w))&&void 0!==P?P:t.Kn}}},21509:(Ae,ee,l)=>{"use strict";var i=l(9656);function S(c,e){c.emit("error",e)}Ae.exports={destroy:function t(c,e){var T=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(e?e(c):c&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,i.nextTick(S,this,c)):i.nextTick(S,this,c)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(c||null,function(w){!e&&w?T._writableState?T._writableState.errorEmitted||(T._writableState.errorEmitted=!0,i.nextTick(S,T,w)):i.nextTick(S,T,w):e&&e(w)}),this)},undestroy:function p(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)}}},21832:(Ae,ee)=>{"use strict";var l=ee;function t(S){return 1===S.length?"0"+S:S}function p(S){for(var c="",e=0;e>8,w=255&g;d?e.push(d,w):e.push(w)}return e},l.zero2=t,l.toHex=p,l.encode=function(c,e){return"hex"===e?p(c):c}},22020:(Ae,ee)=>{ee.read=function(l,i,t,p,S){var c,e,T=8*S-p-1,g=(1<>1,w=-7,m=t?S-1:0,P=t?-1:1,M=l[i+m];for(m+=P,c=M&(1<<-w)-1,M>>=-w,w+=T;w>0;c=256*c+l[i+m],m+=P,w-=8);for(e=c&(1<<-w)-1,c>>=-w,w+=p;w>0;e=256*e+l[i+m],m+=P,w-=8);if(0===c)c=1-d;else{if(c===g)return e?NaN:1/0*(M?-1:1);e+=Math.pow(2,p),c-=d}return(M?-1:1)*e*Math.pow(2,c-p)},ee.write=function(l,i,t,p,S,c){var e,T,g,d=8*c-S-1,w=(1<>1,P=23===S?Math.pow(2,-24)-Math.pow(2,-77):0,M=p?0:c-1,j=p?1:-1,U=i<0||0===i&&1/i<0?1:0;for(i=Math.abs(i),isNaN(i)||i===1/0?(T=isNaN(i)?1:0,e=w):(e=Math.floor(Math.log(i)/Math.LN2),i*(g=Math.pow(2,-e))<1&&(e--,g*=2),(i+=e+m>=1?P/g:P*Math.pow(2,1-m))*g>=2&&(e++,g/=2),e+m>=w?(T=0,e=w):e+m>=1?(T=(i*g-1)*Math.pow(2,S),e+=m):(T=i*Math.pow(2,m-1)*Math.pow(2,S),e=0));S>=8;l[t+M]=255&T,M+=j,T/=256,S-=8);for(e=e<0;l[t+M]=255&e,M+=j,e/=256,d-=8);l[t+M-j]|=128*U}},22466:(Ae,ee,l)=>{"use strict";l.d(ee,{y:()=>e});var i=l(17094),t=l(28203),p=l(2615),S=l(73664);let e=(()=>{class T{constructor(){(0,p.WQX)(i.Q_)._applyBodyHighContrastModeCssClasses()}static \u0275fac=function(w){return new(w||T)};static \u0275mod=S.$C({type:T});static \u0275inj=p.G2t({imports:[t.jI,t.jI]})}return T})()},22598:(Ae,ee,l)=>{"use strict";l.d(ee,{iM:()=>M,iY:()=>j});var i=l(73664),t=l(2615),p=l(17705),S=l(76838),c=l(88968),e=l(11048),T=l(32046),g=l(31804);const d=["mat-icon-button",""],w=["*"],m=new t.nKC("MAT_BUTTON_CONFIG");function P(K){return null==K?void 0:(0,p.Udg)(K)}let M=(()=>{class K{_elementRef=(0,t.WQX)(i.aKT);_ngZone=(0,t.WQX)(i.SKi);_animationsDisabled=(0,g.Rc)();_config=(0,t.WQX)(m,{optional:!0});_focusMonitor=(0,t.WQX)(S.FN);_cleanupClick;_renderer=(0,t.WQX)(i.sFG);_rippleLoader=(0,t.WQX)(e.E);_isAnchor;_isFab=!1;color;get disableRipple(){return this._disableRipple}set disableRipple(G){this._disableRipple=G,this._updateRippleDisabled()}_disableRipple=!1;get disabled(){return this._disabled}set disabled(G){this._disabled=G,this._updateRippleDisabled()}_disabled=!1;ariaDisabled;disabledInteractive;tabIndex;set _tabindex(G){this.tabIndex=G}constructor(){(0,t.WQX)(c.l).load(T.A);const G=this._elementRef.nativeElement;this._isAnchor="A"===G.tagName,this.disabledInteractive=this._config?.disabledInteractive??!1,this.color=this._config?.color??null,this._rippleLoader?.configureRipple(G,{className:"mat-mdc-button-ripple"})}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0),this._isAnchor&&this._setupAsAnchor()}ngOnDestroy(){this._cleanupClick?.(),this._focusMonitor.stopMonitoring(this._elementRef),this._rippleLoader?.destroyRipple(this._elementRef.nativeElement)}focus(G="program",Q){G?this._focusMonitor.focusVia(this._elementRef.nativeElement,G,Q):this._elementRef.nativeElement.focus(Q)}_getAriaDisabled(){return null!=this.ariaDisabled?this.ariaDisabled:this._isAnchor?this.disabled||null:!(!this.disabled||!this.disabledInteractive)||null}_getDisabledAttribute(){return!(this.disabledInteractive||!this.disabled)||null}_updateRippleDisabled(){this._rippleLoader?.setDisabled(this._elementRef.nativeElement,this.disableRipple||this.disabled)}_getTabIndex(){return this._isAnchor&&this.disabled&&!this.disabledInteractive?-1:this.tabIndex}_setupAsAnchor(){this._cleanupClick=this._ngZone.runOutsideAngular(()=>this._renderer.listen(this._elementRef.nativeElement,"click",G=>{this.disabled&&(G.preventDefault(),G.stopImmediatePropagation())}))}static \u0275fac=function(Q){return new(Q||K)};static \u0275dir=i.FsC({type:K,hostAttrs:[1,"mat-mdc-button-base"],hostVars:13,hostBindings:function(Q,$){2&Q&&(i.BMQ("disabled",$._getDisabledAttribute())("aria-disabled",$._getAriaDisabled())("tabindex",$._getTabIndex()),i.HbH($.color?"mat-"+$.color:""),i.AVh("mat-mdc-button-disabled",$.disabled)("mat-mdc-button-disabled-interactive",$.disabledInteractive)("mat-unthemed",!$.color)("_mat-animation-noopable",$._animationsDisabled))},inputs:{color:"color",disableRipple:[2,"disableRipple","disableRipple",p.L39],disabled:[2,"disabled","disabled",p.L39],ariaDisabled:[2,"aria-disabled","ariaDisabled",p.L39],disabledInteractive:[2,"disabledInteractive","disabledInteractive",p.L39],tabIndex:[2,"tabIndex","tabIndex",P],_tabindex:[2,"tabindex","_tabindex",P]}})}return K})(),j=(()=>{class K extends M{constructor(){super(),this._rippleLoader.configureRipple(this._elementRef.nativeElement,{centered:!0})}static \u0275fac=function(Q){return new(Q||K)};static \u0275cmp=i.VBU({type:K,selectors:[["button","mat-icon-button",""],["a","mat-icon-button",""],["button","matIconButton",""],["a","matIconButton",""]],hostAttrs:[1,"mdc-icon-button","mat-mdc-icon-button"],exportAs:["matButton","matAnchor"],features:[i.Vt3],attrs:d,ngContentSelectors:w,decls:4,vars:0,consts:[[1,"mat-mdc-button-persistent-ripple","mdc-icon-button__ripple"],[1,"mat-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(Q,$){1&Q&&(i.NAR(),i.Hgh(0,"span",0),i.SdG(1),i.Hgh(2,"span",1)(3,"span",2))},styles:['.mat-mdc-icon-button{-webkit-user-select:none;user-select:none;display:inline-block;position:relative;box-sizing:border-box;border:none;outline:none;background-color:rgba(0,0,0,0);fill:currentColor;text-decoration:none;cursor:pointer;z-index:0;overflow:visible;border-radius:var(--mat-icon-button-container-shape, var(--mat-sys-corner-full, 50%));flex-shrink:0;text-align:center;width:var(--mat-icon-button-state-layer-size, 40px);height:var(--mat-icon-button-state-layer-size, 40px);padding:calc(calc(var(--mat-icon-button-state-layer-size, 40px) - var(--mat-icon-button-icon-size, 24px)) / 2);font-size:var(--mat-icon-button-icon-size, 24px);color:var(--mat-icon-button-icon-color, var(--mat-sys-on-surface-variant));-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-icon-button .mat-mdc-button-ripple,.mat-mdc-icon-button .mat-mdc-button-persistent-ripple,.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-icon-button .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-icon-button .mdc-button__label,.mat-mdc-icon-button .mat-icon{z-index:1;position:relative}.mat-mdc-icon-button .mat-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:inherit}.mat-mdc-icon-button:focus>.mat-focus-indicator::before{content:"";border-radius:inherit}.mat-mdc-icon-button .mat-ripple-element{background-color:var(--mat-icon-button-ripple-color, color-mix(in srgb, var(--mat-sys-on-surface-variant) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-icon-button-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-icon-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-icon-button-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-icon-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-icon-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-icon-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-icon-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-icon-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-icon-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-icon-button-touch-target-size, 48px);display:var(--mat-icon-button-touch-target-display, block);left:50%;width:var(--mat-icon-button-touch-target-size, 48px);transform:translate(-50%, -50%)}.mat-mdc-icon-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-icon-button[disabled],.mat-mdc-icon-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-icon-button-disabled-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-icon-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-icon-button img,.mat-mdc-icon-button svg{width:var(--mat-icon-button-icon-size, 24px);height:var(--mat-icon-button-icon-size, 24px);vertical-align:baseline}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple{border-radius:var(--mat-icon-button-container-shape, var(--mat-sys-corner-full, 50%))}.mat-mdc-icon-button[hidden]{display:none}.mat-mdc-icon-button.mat-unthemed:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-primary:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-accent:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-warn:not(.mdc-ripple-upgraded):focus::before{background:rgba(0,0,0,0);opacity:1}\n',"@media(forced-colors: active){.mat-mdc-button:not(.mdc-button--outlined),.mat-mdc-unelevated-button:not(.mdc-button--outlined),.mat-mdc-raised-button:not(.mdc-button--outlined),.mat-mdc-outlined-button:not(.mdc-button--outlined),.mat-mdc-button-base.mat-tonal-button,.mat-mdc-icon-button.mat-mdc-icon-button,.mat-mdc-outlined-button .mdc-button__ripple{outline:solid 1px}}\n"],encapsulation:2,changeDetection:0})}return K})()},22628:(Ae,ee,l)=>{"use strict";l.d(ee,{$3:()=>Oe,jL:()=>Ht,pN:()=>Pe});var i=l(23029),t=l(73664),p=l(2615),S=l(17705),c=l(5718),e=l(49338),T=l(89726),g=l(99090),d=l(18617),w=l(39842),m=l(44522),P=l(18359),M=l(21413),j=l(57786),U=l(7673),K=l(59030),q=l(71985),G=l(31804),Q=l(61577),$=l(67336),ae=l(10438),ue=l(34330),oe=l(99327),he=l(76939),me=l(80408),Te=l(89417),D=l(5964),n=l(96354),o=l(99172),f=l(25558),h=l(88141),b=l(43236),A=l(28793),k=l(96697),x=l(73557),r=l(73703),_=l(31397),W=l(58750);function I(ct,Ce){return Ce?ze=>(0,A.x)(Ce.pipe((0,k.s)(1),(0,x.w)()),ze.pipe(I(ct))):(0,_.Z)((ze,Z)=>(0,W.Tg)(ct(ze,Z)).pipe((0,k.s)(1),(0,r.u)(ze)))}var B=l(1807);function re(ct,Ce=b.E){const ze=(0,B.O)(ct,Ce);return I(()=>ze)}var pe=l(69588),be=l(40146),Be=l(22466);const _e=["panel"],ye=["*"];function Le(ct,Ce){if(1&ct&&(t.rj2(0,"div",1,0),t.SdG(2),t.eux()),2&ct){const ze=Ce.id,Z=t.XpG();t.HbH(Z._classList),t.AVh("mat-mdc-autocomplete-visible",Z.showPanel)("mat-mdc-autocomplete-hidden",!Z.showPanel)("mat-autocomplete-panel-animations-enabled",!Z._animationsDisabled)("mat-primary","primary"===Z._color)("mat-accent","accent"===Z._color)("mat-warn","warn"===Z._color),t.Avn("id",Z.id),t.BMQ("aria-label",Z.ariaLabel||null)("aria-labelledby",Z._getPanelAriaLabelledby(ze))}}class Ke{source;option;constructor(Ce,ze){this.source=Ce,this.option=ze}}const ge=new p.nKC("mat-autocomplete-default-options",{providedIn:"root",factory:function ve(){return{autoActiveFirstOption:!1,autoSelectActiveOption:!1,hideSingleSelectionIndicator:!1,requireSelection:!1,hasBackdrop:!1}}});let Oe=(()=>{class ct{_changeDetectorRef=(0,p.WQX)(S.gRc);_elementRef=(0,p.WQX)(t.aKT);_defaults=(0,p.WQX)(ge);_animationsDisabled=(0,G.Rc)();_activeOptionChanges=P.yU.EMPTY;_keyManager;showPanel=!1;get isOpen(){return this._isOpen&&this.showPanel}_isOpen=!1;_latestOpeningTrigger;_setColor(ze){this._color=ze,this._changeDetectorRef.markForCheck()}_color;template;panel;options;optionGroups;ariaLabel;ariaLabelledby;displayWith=null;autoActiveFirstOption;autoSelectActiveOption;requireSelection;panelWidth;disableRipple;optionSelected=new t.bkB;opened=new t.bkB;closed=new t.bkB;optionActivated=new t.bkB;set classList(ze){this._classList=ze,this._elementRef.nativeElement.className=""}_classList;get hideSingleSelectionIndicator(){return this._hideSingleSelectionIndicator}set hideSingleSelectionIndicator(ze){this._hideSingleSelectionIndicator=ze,this._syncParentProperties()}_hideSingleSelectionIndicator;_syncParentProperties(){if(this.options)for(const ze of this.options)ze._changeDetectorRef.markForCheck()}id=(0,p.WQX)(T.g).getId("mat-autocomplete-");inertGroups;constructor(){const ze=(0,p.WQX)(w.O);this.inertGroups=ze?.SAFARI||!1,this.autoActiveFirstOption=!!this._defaults.autoActiveFirstOption,this.autoSelectActiveOption=!!this._defaults.autoSelectActiveOption,this.requireSelection=!!this._defaults.requireSelection,this._hideSingleSelectionIndicator=this._defaults.hideSingleSelectionIndicator??!1}ngAfterContentInit(){this._keyManager=new g.A(this.options).withWrap().skipPredicate(this._skipPredicate),this._activeOptionChanges=this._keyManager.change.subscribe(ze=>{this.isOpen&&this.optionActivated.emit({source:this,option:this.options.toArray()[ze]||null})}),this._setVisibility()}ngOnDestroy(){this._keyManager?.destroy(),this._activeOptionChanges.unsubscribe()}_setScrollTop(ze){this.panel&&(this.panel.nativeElement.scrollTop=ze)}_getScrollTop(){return this.panel?this.panel.nativeElement.scrollTop:0}_setVisibility(){this.showPanel=!!this.options?.length,this._changeDetectorRef.markForCheck()}_emitSelectEvent(ze){const Z=new Ke(this,ze);this.optionSelected.emit(Z)}_getPanelAriaLabelledby(ze){return this.ariaLabel?null:this.ariaLabelledby?(ze?ze+" ":"")+this.ariaLabelledby:ze}_skipPredicate(){return!1}static \u0275fac=function(Z){return new(Z||ct)};static \u0275cmp=t.VBU({type:ct,selectors:[["mat-autocomplete"]],contentQueries:function(Z,J,fe){if(1&Z&&(t.wni(fe,i.wT,5),t.wni(fe,i.QC,5)),2&Z){let Ie;t.mGM(Ie=t.lsd())&&(J.options=Ie),t.mGM(Ie=t.lsd())&&(J.optionGroups=Ie)}},viewQuery:function(Z,J){if(1&Z&&(t.GBs(t.C4Q,7),t.GBs(_e,5)),2&Z){let fe;t.mGM(fe=t.lsd())&&(J.template=fe.first),t.mGM(fe=t.lsd())&&(J.panel=fe.first)}},hostAttrs:[1,"mat-mdc-autocomplete"],inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],displayWith:"displayWith",autoActiveFirstOption:[2,"autoActiveFirstOption","autoActiveFirstOption",S.L39],autoSelectActiveOption:[2,"autoSelectActiveOption","autoSelectActiveOption",S.L39],requireSelection:[2,"requireSelection","requireSelection",S.L39],panelWidth:"panelWidth",disableRipple:[2,"disableRipple","disableRipple",S.L39],classList:[0,"class","classList"],hideSingleSelectionIndicator:[2,"hideSingleSelectionIndicator","hideSingleSelectionIndicator",S.L39]},outputs:{optionSelected:"optionSelected",opened:"opened",closed:"closed",optionActivated:"optionActivated"},exportAs:["matAutocomplete"],features:[t.Jv_([{provide:i.is,useExisting:ct}])],ngContentSelectors:ye,decls:1,vars:0,consts:[["panel",""],["role","listbox",1,"mat-mdc-autocomplete-panel","mdc-menu-surface","mdc-menu-surface--open",3,"id"]],template:function(Z,J){1&Z&&(t.NAR(),t.PeT(0,Le,3,17,"ng-template"))},styles:["div.mat-mdc-autocomplete-panel{width:100%;max-height:256px;visibility:hidden;transform-origin:center top;overflow:auto;padding:8px 0;box-sizing:border-box;position:relative;border-radius:var(--mat-autocomplete-container-shape, var(--mat-sys-corner-extra-small));box-shadow:var(--mat-autocomplete-container-elevation-shadow, 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12));background-color:var(--mat-autocomplete-background-color, var(--mat-sys-surface-container))}@media(forced-colors: active){div.mat-mdc-autocomplete-panel{outline:solid 1px}}.cdk-overlay-pane:not(.mat-mdc-autocomplete-panel-above) div.mat-mdc-autocomplete-panel{border-top-left-radius:0;border-top-right-radius:0}.mat-mdc-autocomplete-panel-above div.mat-mdc-autocomplete-panel{border-bottom-left-radius:0;border-bottom-right-radius:0;transform-origin:center bottom}div.mat-mdc-autocomplete-panel.mat-mdc-autocomplete-visible{visibility:visible}div.mat-mdc-autocomplete-panel.mat-mdc-autocomplete-hidden{visibility:hidden;pointer-events:none}@keyframes _mat-autocomplete-enter{from{opacity:0;transform:scaleY(0.8)}to{opacity:1;transform:none}}.mat-autocomplete-panel-animations-enabled{animation:_mat-autocomplete-enter 120ms cubic-bezier(0, 0, 0.2, 1)}mat-autocomplete{display:none}\n"],encapsulation:2,changeDetection:0})}return ct})();const dt={provide:Te.kq,useExisting:(0,p.Rfq)(()=>Pe),multi:!0},Ct=new p.nKC("mat-autocomplete-scroll-strategy",{providedIn:"root",factory:()=>{const ct=(0,p.WQX)(p.zZn);return()=>(0,e.RH)(ct)}}),lt={provide:Ct,deps:[],useFactory:function Mt(ct){const Ce=(0,p.WQX)(p.zZn);return()=>(0,e.RH)(Ce)}};let Pe=(()=>{class ct{_environmentInjector=(0,p.WQX)(p.uvJ);_element=(0,p.WQX)(t.aKT);_injector=(0,p.WQX)(p.zZn);_viewContainerRef=(0,p.WQX)(t.c1b);_zone=(0,p.WQX)(t.SKi);_changeDetectorRef=(0,p.WQX)(S.gRc);_dir=(0,p.WQX)(Q.dS,{optional:!0});_formField=(0,p.WQX)(pe.xb,{optional:!0,host:!0});_viewportRuler=(0,p.WQX)(c.Xj);_scrollStrategy=(0,p.WQX)(Ct);_renderer=(0,p.WQX)(t.sFG);_animationsDisabled=(0,G.Rc)();_defaults=(0,p.WQX)(ge,{optional:!0});_overlayRef;_portal;_componentDestroyed=!1;_initialized=new M.B;_keydownSubscription;_outsideClickSubscription;_cleanupWindowBlur;_previousValue;_valueOnAttach;_valueOnLastKeydown;_positionStrategy;_manuallyFloatingLabel=!1;_closingActionsSubscription;_viewportSubscription=P.yU.EMPTY;_breakpointObserver=(0,p.WQX)(ue.Q);_handsetLandscapeSubscription=P.yU.EMPTY;_canOpenOnNextFocus=!0;_valueBeforeAutoSelection;_pendingAutoselectedOption;_closeKeyEventStream=new M.B;_overlayPanelClass=(0,me.F)(this._defaults?.overlayPanelClass||[]);_windowBlurHandler=()=>{this._canOpenOnNextFocus=this.panelOpen||!this._hasFocus()};_onChange=()=>{};_onTouched=()=>{};autocomplete;position="auto";connectedTo;autocompleteAttribute="off";autocompleteDisabled;constructor(){}_aboveClass="mat-mdc-autocomplete-panel-above";ngAfterViewInit(){this._initialized.next(),this._initialized.complete(),this._cleanupWindowBlur=this._renderer.listen("window","blur",this._windowBlurHandler)}ngOnChanges(ze){ze.position&&this._positionStrategy&&(this._setStrategyPositions(this._positionStrategy),this.panelOpen&&this._overlayRef.updatePosition())}ngOnDestroy(){this._cleanupWindowBlur?.(),this._handsetLandscapeSubscription.unsubscribe(),this._viewportSubscription.unsubscribe(),this._componentDestroyed=!0,this._destroyPanel(),this._closeKeyEventStream.complete(),this._clearFromModal()}get panelOpen(){return this._overlayAttached&&this.autocomplete.showPanel}_overlayAttached=!1;openPanel(){this._openPanelInternal()}closePanel(){this._resetLabel(),this._overlayAttached&&(this.panelOpen&&this._zone.run(()=>{this.autocomplete.closed.emit()}),this.autocomplete._latestOpeningTrigger===this&&(this.autocomplete._isOpen=!1,this.autocomplete._latestOpeningTrigger=null),this._overlayAttached=!1,this._pendingAutoselectedOption=null,this._overlayRef&&this._overlayRef.hasAttached()&&(this._overlayRef.detach(),this._closingActionsSubscription.unsubscribe()),this._updatePanelState(),this._componentDestroyed||this._changeDetectorRef.detectChanges(),this._trackedModal&&(0,d.Ae)(this._trackedModal,"aria-owns",this.autocomplete.id))}updatePosition(){this._overlayAttached&&this._overlayRef.updatePosition()}get panelClosingActions(){return(0,j.h)(this.optionSelections,this.autocomplete._keyManager.tabOut.pipe((0,D.p)(()=>this._overlayAttached)),this._closeKeyEventStream,this._getOutsideClickStream(),this._overlayRef?this._overlayRef.detachments().pipe((0,D.p)(()=>this._overlayAttached)):(0,U.of)()).pipe((0,n.T)(ze=>ze instanceof i.MI?ze:null))}optionSelections=(0,K.v)(()=>{const ze=this.autocomplete?this.autocomplete.options:null;return ze?ze.changes.pipe((0,o.Z)(ze),(0,f.n)(()=>(0,j.h)(...ze.map(Z=>Z.onSelectionChange)))):this._initialized.pipe((0,f.n)(()=>this.optionSelections))});get activeOption(){return this.autocomplete&&this.autocomplete._keyManager?this.autocomplete._keyManager.activeItem:null}_getOutsideClickStream(){return new q.c(ze=>{const Z=fe=>{const Ie=(0,m.Fb)(fe),ht=this._formField?this._formField.getConnectedOverlayOrigin().nativeElement:null,li=this.connectedTo?this.connectedTo.elementRef.nativeElement:null;this._overlayAttached&&Ie!==this._element.nativeElement&&!this._hasFocus()&&(!ht||!ht.contains(Ie))&&(!li||!li.contains(Ie))&&this._overlayRef&&!this._overlayRef.overlayElement.contains(Ie)&&ze.next(fe)},J=[this._renderer.listen("document","click",Z),this._renderer.listen("document","auxclick",Z),this._renderer.listen("document","touchend",Z)];return()=>{J.forEach(fe=>fe())}})}writeValue(ze){Promise.resolve(null).then(()=>this._assignOptionValue(ze))}registerOnChange(ze){this._onChange=ze}registerOnTouched(ze){this._onTouched=ze}setDisabledState(ze){this._element.nativeElement.disabled=ze}_handleKeydown(ze){const Z=ze,J=Z.keyCode,fe=(0,$.rp)(Z);if(J===ae._f&&!fe&&Z.preventDefault(),this._valueOnLastKeydown=this._element.nativeElement.value,this.activeOption&&J===ae.Fm&&this.panelOpen&&!fe)this.activeOption._selectViaInteraction(),this._resetActiveItem(),Z.preventDefault();else if(this.autocomplete){const Ie=this.autocomplete._keyManager.activeItem,ht=J===ae.i7||J===ae.n6;J===ae.wn||ht&&!fe&&this.panelOpen?this.autocomplete._keyManager.onKeydown(Z):ht&&this._canOpen()&&this._openPanelInternal(this._valueOnLastKeydown),(ht||this.autocomplete._keyManager.activeItem!==Ie)&&(this._scrollToOption(this.autocomplete._keyManager.activeItemIndex||0),this.autocomplete.autoSelectActiveOption&&this.activeOption&&(this._pendingAutoselectedOption||(this._valueBeforeAutoSelection=this._valueOnLastKeydown),this._pendingAutoselectedOption=this.activeOption,this._assignOptionValue(this.activeOption.value)))}}_handleInput(ze){let Z=ze.target,J=Z.value;if("number"===Z.type&&(J=""==J?null:parseFloat(J)),this._previousValue!==J){if(this._previousValue=J,this._pendingAutoselectedOption=null,(!this.autocomplete||!this.autocomplete.requireSelection)&&this._onChange(J),J){if(this.panelOpen&&!this.autocomplete.requireSelection){const fe=this.autocomplete.options?.find(Ie=>Ie.selected);fe&&J!==this._getDisplayValue(fe.value)&&fe.deselect(!1)}}else this._clearPreviousSelectedOption(null,!1);if(this._canOpen()&&this._hasFocus()){const fe=this._valueOnLastKeydown??this._element.nativeElement.value;this._valueOnLastKeydown=null,this._openPanelInternal(fe)}}}_handleFocus(){this._canOpenOnNextFocus?this._canOpen()&&(this._previousValue=this._element.nativeElement.value,this._attachOverlay(this._previousValue),this._floatLabel(!0)):this._canOpenOnNextFocus=!0}_handleClick(){this._canOpen()&&!this.panelOpen&&this._openPanelInternal()}_hasFocus(){return(0,m.vc)()===this._element.nativeElement}_floatLabel(ze=!1){this._formField&&"auto"===this._formField.floatLabel&&(ze?this._formField._animateAndLockLabel():this._formField.floatLabel="always",this._manuallyFloatingLabel=!0)}_resetLabel(){this._manuallyFloatingLabel&&(this._formField&&(this._formField.floatLabel="auto"),this._manuallyFloatingLabel=!1)}_subscribeToClosingActions(){const ze=new q.c(J=>{(0,t.mal)(()=>{J.next()},{injector:this._environmentInjector})}),Z=this.autocomplete.options?.changes.pipe((0,h.M)(()=>this._positionStrategy.reapplyLastPosition()),re(0))??(0,U.of)();return(0,j.h)(ze,Z).pipe((0,f.n)(()=>this._zone.run(()=>{const J=this.panelOpen;return this._resetActiveItem(),this._updatePanelState(),this._changeDetectorRef.detectChanges(),this.panelOpen&&this._overlayRef.updatePosition(),J!==this.panelOpen&&(this.panelOpen?this._emitOpened():this.autocomplete.closed.emit()),this.panelClosingActions})),(0,k.s)(1)).subscribe(J=>this._setValueAndClose(J))}_emitOpened(){this.autocomplete.opened.emit()}_destroyPanel(){this._overlayRef&&(this.closePanel(),this._overlayRef.dispose(),this._overlayRef=null)}_getDisplayValue(ze){const Z=this.autocomplete;return Z&&Z.displayWith?Z.displayWith(ze):ze}_assignOptionValue(ze){const Z=this._getDisplayValue(ze);null==ze&&this._clearPreviousSelectedOption(null,!1),this._updateNativeInputValue(Z??"")}_updateNativeInputValue(ze){this._formField?this._formField._control.value=ze:this._element.nativeElement.value=ze,this._previousValue=ze}_setValueAndClose(ze){const Z=this.autocomplete,J=ze?ze.source:this._pendingAutoselectedOption;J?(this._clearPreviousSelectedOption(J),this._assignOptionValue(J.value),this._onChange(J.value),Z._emitSelectEvent(J),this._element.nativeElement.focus()):Z.requireSelection&&this._element.nativeElement.value!==this._valueOnAttach&&(this._clearPreviousSelectedOption(null),this._assignOptionValue(null),this._onChange(null)),this.closePanel()}_clearPreviousSelectedOption(ze,Z){this.autocomplete?.options?.forEach(J=>{J!==ze&&J.selected&&J.deselect(Z)})}_openPanelInternal(ze=this._element.nativeElement.value){this._attachOverlay(ze),this._floatLabel(),this._trackedModal&&(0,d.px)(this._trackedModal,"aria-owns",this.autocomplete.id)}_attachOverlay(ze){let Z=this._overlayRef;Z?(this._positionStrategy.setOrigin(this._getConnectedElement()),Z.updateSize({width:this._getPanelWidth()})):(this._portal=new he.VA(this.autocomplete.template,this._viewContainerRef,{id:this._formField?.getLabelId()}),Z=(0,e.Y$)(this._injector,this._getOverlayConfig()),this._overlayRef=Z,this._viewportSubscription=this._viewportRuler.change().subscribe(()=>{this.panelOpen&&Z&&Z.updateSize({width:this._getPanelWidth()})}),this._handsetLandscapeSubscription=this._breakpointObserver.observe(oe.Rp.HandsetLandscape).subscribe(fe=>{fe.matches?this._positionStrategy.withFlexibleDimensions(!0).withGrowAfterOpen(!0).withViewportMargin(8):this._positionStrategy.withFlexibleDimensions(!1).withGrowAfterOpen(!1).withViewportMargin(0)})),Z&&!Z.hasAttached()&&(Z.attach(this._portal),this._valueOnAttach=ze,this._valueOnLastKeydown=null,this._closingActionsSubscription=this._subscribeToClosingActions());const J=this.panelOpen;this.autocomplete._isOpen=this._overlayAttached=!0,this.autocomplete._latestOpeningTrigger=this,this.autocomplete._setColor(this._formField?.color),this._updatePanelState(),this._applyModalPanelOwnership(),this.panelOpen&&J!==this.panelOpen&&this._emitOpened()}_handlePanelKeydown=ze=>{(ze.keyCode===ae._f&&!(0,$.rp)(ze)||ze.keyCode===ae.i7&&(0,$.rp)(ze,"altKey"))&&(this._pendingAutoselectedOption&&(this._updateNativeInputValue(this._valueBeforeAutoSelection??""),this._pendingAutoselectedOption=null),this._closeKeyEventStream.next(),this._resetActiveItem(),ze.stopPropagation(),ze.preventDefault())};_updatePanelState(){if(this.autocomplete._setVisibility(),this.panelOpen){const ze=this._overlayRef;this._keydownSubscription||(this._keydownSubscription=ze.keydownEvents().subscribe(this._handlePanelKeydown)),this._outsideClickSubscription||(this._outsideClickSubscription=ze.outsidePointerEvents().subscribe())}else this._keydownSubscription?.unsubscribe(),this._outsideClickSubscription?.unsubscribe(),this._keydownSubscription=this._outsideClickSubscription=null}_getOverlayConfig(){return new e.rR({positionStrategy:this._getOverlayPosition(),scrollStrategy:this._scrollStrategy(),width:this._getPanelWidth(),direction:this._dir??void 0,hasBackdrop:this._defaults?.hasBackdrop,backdropClass:this._defaults?.backdropClass||"cdk-overlay-transparent-backdrop",panelClass:this._overlayPanelClass,disableAnimations:this._animationsDisabled})}_getOverlayPosition(){const ze=(0,e.$M)(this._injector,this._getConnectedElement()).withFlexibleDimensions(!1).withPush(!1);return this._setStrategyPositions(ze),this._positionStrategy=ze,ze}_setStrategyPositions(ze){const Z=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"}],J=this._aboveClass,fe=[{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:J},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom",panelClass:J}];let Ie;Ie="above"===this.position?fe:"below"===this.position?Z:[...Z,...fe],ze.withPositions(Ie)}_getConnectedElement(){return this.connectedTo?this.connectedTo.elementRef:this._formField?this._formField.getConnectedOverlayOrigin():this._element}_getPanelWidth(){return this.autocomplete.panelWidth||this._getHostWidth()}_getHostWidth(){return this._getConnectedElement().nativeElement.getBoundingClientRect().width}_resetActiveItem(){const ze=this.autocomplete;if(ze.autoActiveFirstOption){let Z=-1;for(let J=0;J .cdk-overlay-container [aria-modal="true"]');if(!ze)return;const Z=this.autocomplete.id;this._trackedModal&&(0,d.Ae)(this._trackedModal,"aria-owns",Z),(0,d.px)(ze,"aria-owns",Z),this._trackedModal=ze}_clearFromModal(){this._trackedModal&&((0,d.Ae)(this._trackedModal,"aria-owns",this.autocomplete.id),this._trackedModal=null)}static \u0275fac=function(Z){return new(Z||ct)};static \u0275dir=t.FsC({type:ct,selectors:[["input","matAutocomplete",""],["textarea","matAutocomplete",""]],hostAttrs:[1,"mat-mdc-autocomplete-trigger"],hostVars:7,hostBindings:function(Z,J){1&Z&&t.bIt("focusin",function(){return J._handleFocus()})("blur",function(){return J._onTouched()})("input",function(Ie){return J._handleInput(Ie)})("keydown",function(Ie){return J._handleKeydown(Ie)})("click",function(){return J._handleClick()}),2&Z&&t.BMQ("autocomplete",J.autocompleteAttribute)("role",J.autocompleteDisabled?null:"combobox")("aria-autocomplete",J.autocompleteDisabled?null:"list")("aria-activedescendant",J.panelOpen&&J.activeOption?J.activeOption.id:null)("aria-expanded",J.autocompleteDisabled?null:J.panelOpen.toString())("aria-controls",J.autocompleteDisabled||!J.panelOpen||null==J.autocomplete?null:J.autocomplete.id)("aria-haspopup",J.autocompleteDisabled?null:"listbox")},inputs:{autocomplete:[0,"matAutocomplete","autocomplete"],position:[0,"matAutocompletePosition","position"],connectedTo:[0,"matAutocompleteConnectedTo","connectedTo"],autocompleteAttribute:[0,"autocomplete","autocompleteAttribute"],autocompleteDisabled:[2,"matAutocompleteDisabled","autocompleteDisabled",S.L39]},exportAs:["matAutocompleteTrigger"],features:[t.Jv_([dt]),t.OA$]})}return ct})(),Ht=(()=>{class ct{static \u0275fac=function(Z){return new(Z||ct)};static \u0275mod=t.$C({type:ct});static \u0275inj=p.G2t({providers:[lt],imports:[e.z_,be.S,Be.y,c.Gj,be.S,Be.y]})}return ct})()},22714:(Ae,ee,l)=>{var i=ee;i.der=l(72193),i.pem=l(24816)},22806:(Ae,ee,l)=>{"use strict";l.d(ee,{H:()=>oe});var i=l(58750),t=l(40941),p=l(39974);function S(he,me=0){return(0,p.N)((Te,D)=>{D.add(he.schedule(()=>Te.subscribe(D),me))})}var T=l(71985),d=l(4761),w=l(98071),m=l(45225);function M(he,me){if(!he)throw new Error("Iterable cannot be null");return new T.c(Te=>{(0,m.N)(Te,me,()=>{const D=he[Symbol.asyncIterator]();(0,m.N)(Te,me,()=>{D.next().then(n=>{n.done?Te.complete():Te.next(n.value)})},0,!0)})})}var j=l(55055),U=l(59858),K=l(47441),q=l(85397),G=l(37953),Q=l(50591),$=l(15196);function oe(he,me){return me?function ue(he,me){if(null!=he){if((0,j.l)(he))return function c(he,me){return(0,i.Tg)(he).pipe(S(me),(0,t.Q)(me))}(he,me);if((0,K.X)(he))return function g(he,me){return new T.c(Te=>{let D=0;return me.schedule(function(){D===he.length?Te.complete():(Te.next(he[D++]),Te.closed||this.schedule())})})}(he,me);if((0,U.y)(he))return function e(he,me){return(0,i.Tg)(he).pipe(S(me),(0,t.Q)(me))}(he,me);if((0,G.T)(he))return M(he,me);if((0,q.x)(he))return function P(he,me){return new T.c(Te=>{let D;return(0,m.N)(Te,me,()=>{D=he[d.l](),(0,m.N)(Te,me,()=>{let n,o;try{({value:n,done:o}=D.next())}catch(f){return void Te.error(f)}o?Te.complete():Te.next(n)},0,!0)}),()=>(0,w.T)(D?.return)&&D.return()})}(he,me);if((0,$.U)(he))return function ae(he,me){return M((0,$.C)(he),me)}(he,me)}throw(0,Q.L)(he)}(he,me):(0,i.Tg)(he)}},22827:(Ae,ee,l)=>{"use strict";var i=l(30464).F.ERR_INVALID_OPT_VALUE;Ae.exports={getHighWaterMark:function p(S,c,e,T){var g=function t(S,c,e){return null!=S.highWaterMark?S.highWaterMark:c?S[e]:null}(c,T,e);if(null!=g){if(!isFinite(g)||Math.floor(g)!==g||g<0)throw new i(T?e:"highWaterMark",g);return Math.floor(g)}return S.objectMode?16:16384}}},22868:(Ae,ee,l)=>{const i=l(91677),t=l(96628),p=l(1018),S=l(54969),c=l(83264),e=l(99359),T=l(19089),g=l(80243);function d(q){return unescape(encodeURIComponent(q)).length}function w(q,G,Q){const $=[];let ae;for(;null!==(ae=q.exec(Q));)$.push({data:ae[0],index:ae.index,mode:G,length:ae[0].length});return $}function m(q){const G=w(e.NUMERIC,i.NUMERIC,q),Q=w(e.ALPHANUMERIC,i.ALPHANUMERIC,q);let $,ae;return T.isKanjiModeEnabled()?($=w(e.BYTE,i.BYTE,q),ae=w(e.KANJI,i.KANJI,q)):($=w(e.BYTE_KANJI,i.BYTE,q),ae=[]),G.concat(Q,$,ae).sort(function(oe,he){return oe.index-he.index}).map(function(oe){return{data:oe.data,mode:oe.mode,length:oe.length}})}function P(q,G){switch(G){case i.NUMERIC:return t.getBitsLength(q);case i.ALPHANUMERIC:return p.getBitsLength(q);case i.KANJI:return c.getBitsLength(q);case i.BYTE:return S.getBitsLength(q)}}function K(q,G){let Q;const $=i.getBestModeForData(q);if(Q=i.from(G,$),Q!==i.BYTE&&Q.bit<$.bit)throw new Error('"'+q+'" cannot be encoded with mode '+i.toString(Q)+".\n Suggested mode is: "+i.toString($));switch(Q===i.KANJI&&!T.isKanjiModeEnabled()&&(Q=i.BYTE),Q){case i.NUMERIC:return new t(q);case i.ALPHANUMERIC:return new p(q);case i.KANJI:return new c(q);case i.BYTE:return new S(q)}}ee.fromArray=function(G){return G.reduce(function(Q,$){return"string"==typeof $?Q.push(K($,null)):$.data&&Q.push(K($.data,$.mode)),Q},[])},ee.fromString=function(G,Q){const ae=function j(q){const G=[];for(let Q=0;Q=0?G[G.length-1]:null;return $&&$.mode===Q.mode?(G[G.length-1].data+=Q.data,G):(G.push(Q),G)},[])}(he))},ee.rawSplit=function(G){return ee.fromArray(m(G,T.isKanjiModeEnabled()))}},23029:(Ae,ee,l)=>{"use strict";l.d(ee,{MI:()=>he,QC:()=>ue,TL:()=>D,is:()=>ae,jb:()=>Te,wT:()=>me});var i=l(89726),t=l(10438),p=l(67336),S=l(73664),c=l(2615),e=l(17705),T=l(21413),g=l(12496),d=l(63386),w=l(32046),m=l(88968),P=l(49046);const U=["text"],K=[[["mat-icon"]],"*"],q=["mat-icon","*"];function G(n,o){if(1&n&&S.nrm(0,"mat-pseudo-checkbox",1),2&n){const f=S.XpG();S.Y8G("disabled",f.disabled)("state",f.selected?"checked":"unchecked")}}function Q(n,o){if(1&n&&S.nrm(0,"mat-pseudo-checkbox",3),2&n){const f=S.XpG();S.Y8G("disabled",f.disabled)}}function $(n,o){if(1&n&&(S.j41(0,"span",4),S.EFF(1),S.k0s()),2&n){const f=S.XpG();S.R7$(),S.SpI("(",f.group.label,")")}}const ae=new c.nKC("MAT_OPTION_PARENT_COMPONENT"),ue=new c.nKC("MatOptgroup");class he{source;isUserInput;constructor(o,f=!1){this.source=o,this.isUserInput=f}}let me=(()=>{class n{_element=(0,c.WQX)(S.aKT);_changeDetectorRef=(0,c.WQX)(e.gRc);_parent=(0,c.WQX)(ae,{optional:!0});group=(0,c.WQX)(ue,{optional:!0});_signalDisableRipple=!1;_selected=!1;_active=!1;_mostRecentViewValue="";get multiple(){return this._parent&&this._parent.multiple}get selected(){return this._selected}value;id=(0,c.WQX)(i.g).getId("mat-option-");get disabled(){return this.group&&this.group.disabled||this._disabled()}set disabled(f){this._disabled.set(f)}_disabled=(0,c.vPA)(!1);get disableRipple(){return this._signalDisableRipple?this._parent.disableRipple():!!this._parent?.disableRipple}get hideSingleSelectionIndicator(){return!(!this._parent||!this._parent.hideSingleSelectionIndicator)}onSelectionChange=new S.bkB;_text;_stateChanges=new T.B;constructor(){const f=(0,c.WQX)(m.l);f.load(w.A),f.load(P.Y),this._signalDisableRipple=!!this._parent&&(0,c.Hps)(this._parent.disableRipple)}get active(){return this._active}get viewValue(){return(this._text?.nativeElement.textContent||"").trim()}select(f=!0){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),f&&this._emitSelectionChangeEvent())}deselect(f=!0){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),f&&this._emitSelectionChangeEvent())}focus(f,h){const b=this._getHostElement();"function"==typeof b.focus&&b.focus(h)}setActiveStyles(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}setInactiveStyles(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}getLabel(){return this.viewValue}_handleKeydown(f){(f.keyCode===t.Fm||f.keyCode===t.t6)&&!(0,p.rp)(f)&&(this._selectViaInteraction(),f.preventDefault())}_selectViaInteraction(){this.disabled||(this._selected=!this.multiple||!this._selected,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent(!0))}_getTabIndex(){return this.disabled?"-1":"0"}_getHostElement(){return this._element.nativeElement}ngAfterViewChecked(){if(this._selected){const f=this.viewValue;f!==this._mostRecentViewValue&&(this._mostRecentViewValue&&this._stateChanges.next(),this._mostRecentViewValue=f)}}ngOnDestroy(){this._stateChanges.complete()}_emitSelectionChangeEvent(f=!1){this.onSelectionChange.emit(new he(this,f))}static \u0275fac=function(h){return new(h||n)};static \u0275cmp=S.VBU({type:n,selectors:[["mat-option"]],viewQuery:function(h,b){if(1&h&&S.GBs(U,7),2&h){let A;S.mGM(A=S.lsd())&&(b._text=A.first)}},hostAttrs:["role","option",1,"mat-mdc-option","mdc-list-item"],hostVars:11,hostBindings:function(h,b){1&h&&S.bIt("click",function(){return b._selectViaInteraction()})("keydown",function(k){return b._handleKeydown(k)}),2&h&&(S.Avn("id",b.id),S.BMQ("aria-selected",b.selected)("aria-disabled",b.disabled.toString()),S.AVh("mdc-list-item--selected",b.selected)("mat-mdc-option-multiple",b.multiple)("mat-mdc-option-active",b.active)("mdc-list-item--disabled",b.disabled))},inputs:{value:"value",id:"id",disabled:[2,"disabled","disabled",e.L39]},outputs:{onSelectionChange:"onSelectionChange"},exportAs:["matOption"],ngContentSelectors:q,decls:8,vars:5,consts:[["text",""],["aria-hidden","true",1,"mat-mdc-option-pseudo-checkbox",3,"disabled","state"],[1,"mdc-list-item__primary-text"],["state","checked","aria-hidden","true","appearance","minimal",1,"mat-mdc-option-pseudo-checkbox",3,"disabled"],[1,"cdk-visually-hidden"],["aria-hidden","true","mat-ripple","",1,"mat-mdc-option-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled"]],template:function(h,b){1&h&&(S.NAR(K),S.nVh(0,G,1,2,"mat-pseudo-checkbox",1),S.SdG(1),S.j41(2,"span",2,0),S.SdG(4,1),S.k0s(),S.nVh(5,Q,1,1,"mat-pseudo-checkbox",3),S.nVh(6,$,2,1,"span",4),S.nrm(7,"div",5)),2&h&&(S.vxM(b.multiple?0:-1),S.R7$(5),S.vxM(b.multiple||!b.selected||b.hideSingleSelectionIndicator?-1:5),S.R7$(),S.vxM(b.group&&b.group._inert?6:-1),S.R7$(),S.Y8G("matRippleTrigger",b._getHostElement())("matRippleDisabled",b.disabled||b.disableRipple))},dependencies:[d.w,g.r6],styles:['.mat-mdc-option{-webkit-user-select:none;user-select:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;min-height:48px;padding:0 16px;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0);color:var(--mat-option-label-text-color, var(--mat-sys-on-surface));font-family:var(--mat-option-label-text-font, var(--mat-sys-label-large-font));line-height:var(--mat-option-label-text-line-height, var(--mat-sys-label-large-line-height));font-size:var(--mat-option-label-text-size, var(--mat-sys-body-large-size));letter-spacing:var(--mat-option-label-text-tracking, var(--mat-sys-label-large-tracking));font-weight:var(--mat-option-label-text-weight, var(--mat-sys-body-large-weight))}.mat-mdc-option:hover:not(.mdc-list-item--disabled){background-color:var(--mat-option-hover-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent))}.mat-mdc-option:focus.mdc-list-item,.mat-mdc-option.mat-mdc-option-active.mdc-list-item{background-color:var(--mat-option-focus-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-focus-state-layer-opacity) * 100%), transparent));outline:0}.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple){background-color:var(--mat-option-selected-state-layer-color, var(--mat-sys-secondary-container))}.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple) .mdc-list-item__primary-text{color:var(--mat-option-selected-state-label-text-color, var(--mat-sys-on-secondary-container))}.mat-mdc-option .mat-pseudo-checkbox{--mat-pseudo-checkbox-minimal-selected-checkmark-color: var(--mat-option-selected-state-label-text-color, var(--mat-sys-on-secondary-container))}.mat-mdc-option.mdc-list-item{align-items:center;background:rgba(0,0,0,0)}.mat-mdc-option.mdc-list-item--disabled{cursor:default;pointer-events:none}.mat-mdc-option.mdc-list-item--disabled .mat-mdc-option-pseudo-checkbox,.mat-mdc-option.mdc-list-item--disabled .mdc-list-item__primary-text,.mat-mdc-option.mdc-list-item--disabled>mat-icon{opacity:.38}.mat-mdc-optgroup .mat-mdc-option:not(.mat-mdc-option-multiple){padding-left:32px}[dir=rtl] .mat-mdc-optgroup .mat-mdc-option:not(.mat-mdc-option-multiple){padding-left:16px;padding-right:32px}.mat-mdc-option .mat-icon,.mat-mdc-option .mat-pseudo-checkbox-full{margin-right:16px;flex-shrink:0}[dir=rtl] .mat-mdc-option .mat-icon,[dir=rtl] .mat-mdc-option .mat-pseudo-checkbox-full{margin-right:0;margin-left:16px}.mat-mdc-option .mat-pseudo-checkbox-minimal{margin-left:16px;flex-shrink:0}[dir=rtl] .mat-mdc-option .mat-pseudo-checkbox-minimal{margin-right:16px;margin-left:0}.mat-mdc-option .mat-mdc-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-mdc-option .mdc-list-item__primary-text{white-space:normal;font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;font-family:inherit;text-decoration:inherit;text-transform:inherit;margin-right:auto}[dir=rtl] .mat-mdc-option .mdc-list-item__primary-text{margin-right:0;margin-left:auto}@media(forced-colors: active){.mat-mdc-option.mdc-list-item--selected:not(:has(.mat-mdc-option-pseudo-checkbox))::after{content:"";position:absolute;top:50%;right:16px;transform:translateY(-50%);width:10px;height:0;border-bottom:solid 10px;border-radius:10px}[dir=rtl] .mat-mdc-option.mdc-list-item--selected:not(:has(.mat-mdc-option-pseudo-checkbox))::after{right:auto;left:16px}}.mat-mdc-option-multiple{--mat-list-list-item-selected-container-color: var(--mat-list-list-item-container-color, transparent)}.mat-mdc-option-active .mat-focus-indicator::before{content:""}\n'],encapsulation:2,changeDetection:0})}return n})();function Te(n,o,f){if(f.length){let h=o.toArray(),b=f.toArray(),A=0;for(let k=0;kf+h?Math.max(0,n-h+o):f}},23241:Ae=>{"use strict";Ae.exports=JSON.parse('{"modp1":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a63a3620ffffffffffffffff"},"modp2":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece65381ffffffffffffffff"},"modp5":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca237327ffffffffffffffff"},"modp14":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aacaa68ffffffffffffffff"},"modp15":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a93ad2caffffffffffffffff"},"modp16":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c934063199ffffffffffffffff"},"modp17":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dcc4024ffffffffffffffff"},"modp18":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dbe115974a3926f12fee5e438777cb6a932df8cd8bec4d073b931ba3bc832b68d9dd300741fa7bf8afc47ed2576f6936ba424663aab639c5ae4f5683423b4742bf1c978238f16cbe39d652de3fdb8befc848ad922222e04a4037c0713eb57a81a23f0c73473fc646cea306b4bcbc8862f8385ddfa9d4b7fa2c087e879683303ed5bdd3a062b3cf5b3a278a66d2a13f83f44f82ddf310ee074ab6a364597e899a0255dc164f31cc50846851df9ab48195ded7ea1b1d510bd7ee74d73faf36bc31ecfa268359046f4eb879f924009438b481c6cd7889a002ed5ee382bc9190da6fc026e479558e4475677e9aa9e3050e2765694dfc81f56e880b96e7160c980dd98edd3dfffffffffffffffff"}}')},23294:(Ae,ee,l)=>{"use strict";l.d(ee,{F:()=>S});var i=l(33669),t=l(39974),p=l(54360);function S(e,T=i.D){return e=e??c,(0,t.N)((g,d)=>{let w,m=!0;g.subscribe((0,p._)(d,P=>{const M=T(P);(m||!e(w,M))&&(m=!1,w=M,d.next(P))}))})}function c(e,T){return e===T}},23401:(Ae,ee,l)=>{"use strict";var g,i=ee,t=l(52529),p=l(8729),c=l(3136).assert;function e(d){this.curve="short"===d.type?new p.short(d):"edwards"===d.type?new p.edwards(d):new p.mont(d),this.g=this.curve.g,this.n=this.curve.n,this.hash=d.hash,c(this.g.validate(),"Invalid curve"),c(this.g.mul(this.n).isInfinity(),"Invalid curve, G*N != O")}function T(d,w){Object.defineProperty(i,d,{configurable:!0,enumerable:!0,get:function(){var m=new e(w);return Object.defineProperty(i,d,{configurable:!0,enumerable:!0,value:m}),m}})}i.PresetCurve=e,T("p192",{type:"short",prime:"p192",p:"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff",a:"ffffffff ffffffff ffffffff fffffffe ffffffff fffffffc",b:"64210519 e59c80e7 0fa7e9ab 72243049 feb8deec c146b9b1",n:"ffffffff ffffffff ffffffff 99def836 146bc9b1 b4d22831",hash:t.sha256,gRed:!1,g:["188da80e b03090f6 7cbf20eb 43a18800 f4ff0afd 82ff1012","07192b95 ffc8da78 631011ed 6b24cdd5 73f977a1 1e794811"]}),T("p224",{type:"short",prime:"p224",p:"ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001",a:"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff fffffffe",b:"b4050a85 0c04b3ab f5413256 5044b0b7 d7bfd8ba 270b3943 2355ffb4",n:"ffffffff ffffffff ffffffff ffff16a2 e0b8f03e 13dd2945 5c5c2a3d",hash:t.sha256,gRed:!1,g:["b70e0cbd 6bb4bf7f 321390b9 4a03c1d3 56c21122 343280d6 115c1d21","bd376388 b5f723fb 4c22dfe6 cd4375a0 5a074764 44d58199 85007e34"]}),T("p256",{type:"short",prime:null,p:"ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff ffffffff",a:"ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff fffffffc",b:"5ac635d8 aa3a93e7 b3ebbd55 769886bc 651d06b0 cc53b0f6 3bce3c3e 27d2604b",n:"ffffffff 00000000 ffffffff ffffffff bce6faad a7179e84 f3b9cac2 fc632551",hash:t.sha256,gRed:!1,g:["6b17d1f2 e12c4247 f8bce6e5 63a440f2 77037d81 2deb33a0 f4a13945 d898c296","4fe342e2 fe1a7f9b 8ee7eb4a 7c0f9e16 2bce3357 6b315ece cbb64068 37bf51f5"]}),T("p384",{type:"short",prime:null,p:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe ffffffff 00000000 00000000 ffffffff",a:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe ffffffff 00000000 00000000 fffffffc",b:"b3312fa7 e23ee7e4 988e056b e3f82d19 181d9c6e fe814112 0314088f 5013875a c656398d 8a2ed19d 2a85c8ed d3ec2aef",n:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff c7634d81 f4372ddf 581a0db2 48b0a77a ecec196a ccc52973",hash:t.sha384,gRed:!1,g:["aa87ca22 be8b0537 8eb1c71e f320ad74 6e1d3b62 8ba79b98 59f741e0 82542a38 5502f25d bf55296c 3a545e38 72760ab7","3617de4a 96262c6f 5d9e98bf 9292dc29 f8f41dbd 289a147c e9da3113 b5f0b8c0 0a60b1ce 1d7e819d 7a431d7c 90ea0e5f"]}),T("p521",{type:"short",prime:null,p:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff",a:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffc",b:"00000051 953eb961 8e1c9a1f 929a21a0 b68540ee a2da725b 99b315f3 b8b48991 8ef109e1 56193951 ec7e937b 1652c0bd 3bb1bf07 3573df88 3d2c34f1 ef451fd4 6b503f00",n:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffa 51868783 bf2f966b 7fcc0148 f709a5d0 3bb5c9b8 899c47ae bb6fb71e 91386409",hash:t.sha512,gRed:!1,g:["000000c6 858e06b7 0404e9cd 9e3ecb66 2395b442 9c648139 053fb521 f828af60 6b4d3dba a14b5e77 efe75928 fe1dc127 a2ffa8de 3348b3c1 856a429b f97e7e31 c2e5bd66","00000118 39296a78 9a3bc004 5c8a5fb4 2c7d1bd9 98f54449 579b4468 17afbd17 273e662c 97ee7299 5ef42640 c550b901 3fad0761 353c7086 a272c240 88be9476 9fd16650"]}),T("curve25519",{type:"mont",prime:"p25519",p:"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",a:"76d06",b:"1",n:"1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",hash:t.sha256,gRed:!1,g:["9"]}),T("ed25519",{type:"edwards",prime:"p25519",p:"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",a:"-1",c:"1",d:"52036cee2b6ffe73 8cc740797779e898 00700a4d4141d8ab 75eb4dca135978a3",n:"1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",hash:t.sha256,gRed:!1,g:["216936d3cd6e53fec0a4e231fdd6dc5c692cc7609525a7b2c9562d608f25d51a","6666666666666666666666666666666666666666666666666666666666666658"]});try{g=l(51416)}catch{g=void 0}T("secp256k1",{type:"short",prime:"k256",p:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f",a:"0",b:"7",n:"ffffffff ffffffff ffffffff fffffffe baaedce6 af48a03b bfd25e8c d0364141",h:"1",hash:t.sha256,beta:"7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee",lambda:"5363ad4cc05c30e0a5261c028812645a122e22ea20816678df02967c1b23bd72",basis:[{a:"3086d221a7d46bcde86c90e49284eb15",b:"-e4437ed6010e88286f547fa90abfe4c3"},{a:"114ca50f7a8e2f3f657c1108d9d44cfd8",b:"3086d221a7d46bcde86c90e49284eb15"}],gRed:!1,g:["79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798","483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8",g]})},23677:(Ae,ee,l)=>{const i=l(47424),t=[1,1,1,1,1,1,1,1,1,1,2,2,1,2,2,4,1,2,4,4,2,4,4,4,2,4,6,5,2,4,6,6,2,5,8,8,4,5,8,8,4,5,8,11,4,8,10,11,4,9,12,16,4,9,16,16,6,10,12,18,6,10,17,16,6,11,16,19,6,13,18,21,7,14,21,25,8,16,20,25,8,17,23,25,9,17,23,34,9,18,25,30,10,20,27,32,12,21,29,35,12,23,34,37,12,25,34,40,13,26,35,42,14,28,38,45,15,29,40,48,16,31,43,51,17,33,45,54,18,35,48,57,19,37,51,60,19,38,53,63,20,40,56,66,21,43,59,70,22,45,62,74,24,47,65,77,25,49,68,81],p=[7,10,13,17,10,16,22,28,15,26,36,44,20,36,52,64,26,48,72,88,36,64,96,112,40,72,108,130,48,88,132,156,60,110,160,192,72,130,192,224,80,150,224,264,96,176,260,308,104,198,288,352,120,216,320,384,132,240,360,432,144,280,408,480,168,308,448,532,180,338,504,588,196,364,546,650,224,416,600,700,224,442,644,750,252,476,690,816,270,504,750,900,300,560,810,960,312,588,870,1050,336,644,952,1110,360,700,1020,1200,390,728,1050,1260,420,784,1140,1350,450,812,1200,1440,480,868,1290,1530,510,924,1350,1620,540,980,1440,1710,570,1036,1530,1800,570,1064,1590,1890,600,1120,1680,1980,630,1204,1770,2100,660,1260,1860,2220,720,1316,1950,2310,750,1372,2040,2430];ee.getBlocksCount=function(c,e){switch(e){case i.L:return t[4*(c-1)+0];case i.M:return t[4*(c-1)+1];case i.Q:return t[4*(c-1)+2];case i.H:return t[4*(c-1)+3];default:return}},ee.getTotalCodewordsCount=function(c,e){switch(e){case i.L:return p[4*(c-1)+0];case i.M:return p[4*(c-1)+1];case i.Q:return p[4*(c-1)+2];case i.H:return p[4*(c-1)+3];default:return}}},24545:(Ae,ee,l)=>{"use strict";function i(w){for(let m in w){let P=w[m]??"";switch(m){case"display":w.display="flex"===P?["-webkit-flex","flex"]:"inline-flex"===P?["-webkit-inline-flex","inline-flex"]:P;break;case"align-items":case"align-self":case"align-content":case"flex":case"flex-basis":case"flex-flow":case"flex-grow":case"flex-shrink":case"flex-wrap":case"justify-content":w["-webkit-"+m]=P;break;case"flex-direction":w["-webkit-flex-direction"]=P,w["flex-direction"]=P;break;case"order":w.order=w["-webkit-"+m]=isNaN(+P)?"0":P}}return w}l.d(ee,{C5:()=>d,O5:()=>i,Uo:()=>p,Vc:()=>e,uG:()=>S});const t="inline",p=["row","column","row-reverse","column-reverse"];function S(w){let[m,P,M]=c(w);return function g(w,m=null,P=!1){return{display:P?"inline-flex":"flex","box-sizing":"border-box","flex-direction":w,"flex-wrap":m||null}}(m,P,M)}function c(w){w=w?.toLowerCase()??"";let[m,P,M]=w.split(" ");return p.find(j=>j===m)||(m=p[0]),P===t&&(P=M!==t?M:"",M=t),[m,T(P),!!M]}function e(w){let[m]=c(w);return m.indexOf("row")>-1}function T(w){if(w)switch(w.toLowerCase()){case"reverse":case"wrap-reverse":case"reverse-wrap":w="wrap-reverse";break;case"no":case"none":case"nowrap":w="nowrap";break;default:w="wrap"}return w}function d(w,...m){if(null==w)throw TypeError("Cannot convert undefined or null to object");for(let P of m)if(null!=P)for(let M in P)P.hasOwnProperty(M)&&(w[M]=P[M]);return w}},24740:function(Ae){!function(ee){"use strict";var l={bytesToHex:function(p){return function i(p){return p.map(function(S){return function t(p,S){return p.length>S?p:Array(S-p.length+1).join("0")+p}(S.toString(16),2)}).join("")}(p)},hexToBytes:function(p){if(p.length%2==1)throw new Error("hexToBytes can't have a string with an odd number of characters.");return 0===p.indexOf("0x")&&(p=p.slice(2)),p.match(/../g).map(function(S){return parseInt(S,16)})}};Ae.exports?Ae.exports=l:ee.convertHex=l}(this)},24816:(Ae,ee,l)=>{var i=l(71993),t=l(72193);function p(S){t.call(this,S),this.enc="pem"}i(p,t),Ae.exports=p,p.prototype.encode=function(c,e){for(var g=t.prototype.encode.call(this,c).toString("base64"),d=["-----BEGIN "+e.label+"-----"],w=0;w{"use strict";l.d(ee,{Vh:()=>zn,X6:()=>Ai,bU:()=>ut,bZ:()=>it});var i=l(2615),t=l(73664),p=l(17705),S=l(21413),c=l(18359),e=l(57786),T=l(7673),g=l(19945),d=l(76838),w=l(17094),m=l(89726),P=l(61577),M=l(14085),j=l(10438),U=l(67336),K=l(49338),q=l(39842),G=l(44522),Q=l(76939),$=l(5964),ae=l(99172),ue=l(96697),oe=l(72200),he=l(88968),me=l(49046),Te=l(32046),D=l(88834),n=l(22598),o=l(40455),f=l(31804),h=l(89417),b=l(68010),A=l(69588),k=l(5718),x=l(22466);const r=["mat-calendar-body",""];function _(zt,ji){return this._trackRow(ji)}const W=(zt,ji)=>ji.id;function I(zt,ji){if(1&zt&&(t.j41(0,"tr",0)(1,"td",3),t.EFF(2),t.k0s()()),2&zt){const Me=t.XpG();t.R7$(),t.xc7("padding-top",Me._cellPadding)("padding-bottom",Me._cellPadding),t.BMQ("colspan",Me.numCols),t.R7$(),t.SpI(" ",Me.label," ")}}function B(zt,ji){if(1&zt&&(t.j41(0,"td",3),t.EFF(1),t.k0s()),2&zt){const Me=t.XpG(2);t.xc7("padding-top",Me._cellPadding)("padding-bottom",Me._cellPadding),t.BMQ("colspan",Me._firstRowOffset),t.R7$(),t.SpI(" ",Me._firstRowOffset>=Me.labelMinRequiredCells?Me.label:""," ")}}function re(zt,ji){if(1&zt){const Me=t.RV6();t.j41(0,"td",6)(1,"button",7),t.bIt("click",function(vt){const ni=i.eBV(Me).$implicit,Fi=t.XpG(2);return i.Njj(Fi._cellClicked(ni,vt))})("focus",function(vt){const ni=i.eBV(Me).$implicit,Fi=t.XpG(2);return i.Njj(Fi._emitActiveDateChange(ni,vt))}),t.j41(2,"span",8),t.EFF(3),t.k0s(),t.nrm(4,"span",9),t.k0s()()}if(2&zt){const Me=ji.$implicit,mt=ji.$index,vt=t.XpG().$index,ni=t.XpG();t.xc7("width",ni._cellWidth)("padding-top",ni._cellPadding)("padding-bottom",ni._cellPadding),t.BMQ("data-mat-row",vt)("data-mat-col",mt),t.R7$(),t.AVh("mat-calendar-body-disabled",!Me.enabled)("mat-calendar-body-active",ni._isActiveCell(vt,mt))("mat-calendar-body-range-start",ni._isRangeStart(Me.compareValue))("mat-calendar-body-range-end",ni._isRangeEnd(Me.compareValue))("mat-calendar-body-in-range",ni._isInRange(Me.compareValue))("mat-calendar-body-comparison-bridge-start",ni._isComparisonBridgeStart(Me.compareValue,vt,mt))("mat-calendar-body-comparison-bridge-end",ni._isComparisonBridgeEnd(Me.compareValue,vt,mt))("mat-calendar-body-comparison-start",ni._isComparisonStart(Me.compareValue))("mat-calendar-body-comparison-end",ni._isComparisonEnd(Me.compareValue))("mat-calendar-body-in-comparison-range",ni._isInComparisonRange(Me.compareValue))("mat-calendar-body-preview-start",ni._isPreviewStart(Me.compareValue))("mat-calendar-body-preview-end",ni._isPreviewEnd(Me.compareValue))("mat-calendar-body-in-preview",ni._isInPreview(Me.compareValue)),t.Y8G("ngClass",Me.cssClasses)("tabindex",ni._isActiveCell(vt,mt)?0:-1),t.BMQ("aria-label",Me.ariaLabel)("aria-disabled",!Me.enabled||null)("aria-pressed",ni._isSelected(Me.compareValue))("aria-current",ni.todayValue===Me.compareValue?"date":null)("aria-describedby",ni._getDescribedby(Me.compareValue)),t.R7$(),t.AVh("mat-calendar-body-selected",ni._isSelected(Me.compareValue))("mat-calendar-body-comparison-identical",ni._isComparisonIdentical(Me.compareValue))("mat-calendar-body-today",ni.todayValue===Me.compareValue),t.R7$(),t.SpI(" ",Me.displayValue," ")}}function pe(zt,ji){if(1&zt&&(t.j41(0,"tr",1),t.nVh(1,B,2,6,"td",4),t.Z7z(2,re,5,48,"td",5,W),t.k0s()),2&zt){const Me=ji.$implicit,mt=ji.$index,vt=t.XpG();t.R7$(),t.vxM(0===mt&&vt._firstRowOffset?1:-1),t.R7$(),t.Dyx(Me)}}function be(zt,ji){if(1&zt&&(t.j41(0,"th",2)(1,"span",6),t.EFF(2),t.k0s(),t.j41(3,"span",3),t.EFF(4),t.k0s()()),2&zt){const Me=ji.$implicit;t.R7$(2),t.JRh(Me.long),t.R7$(2),t.JRh(Me.narrow)}}const Be=["*"];function _e(zt,ji){}function ye(zt,ji){if(1&zt){const Me=t.RV6();t.j41(0,"mat-month-view",4),t.mxI("activeDateChange",function(vt){i.eBV(Me);const ni=t.XpG();return t.DH7(ni.activeDate,vt)||(ni.activeDate=vt),i.Njj(vt)}),t.bIt("_userSelection",function(vt){i.eBV(Me);const ni=t.XpG();return i.Njj(ni._dateSelected(vt))})("dragStarted",function(vt){i.eBV(Me);const ni=t.XpG();return i.Njj(ni._dragStarted(vt))})("dragEnded",function(vt){i.eBV(Me);const ni=t.XpG();return i.Njj(ni._dragEnded(vt))}),t.k0s()}if(2&zt){const Me=t.XpG();t.R50("activeDate",Me.activeDate),t.Y8G("selected",Me.selected)("dateFilter",Me.dateFilter)("maxDate",Me.maxDate)("minDate",Me.minDate)("dateClass",Me.dateClass)("comparisonStart",Me.comparisonStart)("comparisonEnd",Me.comparisonEnd)("startDateAccessibleName",Me.startDateAccessibleName)("endDateAccessibleName",Me.endDateAccessibleName)("activeDrag",Me._activeDrag)}}function Le(zt,ji){if(1&zt){const Me=t.RV6();t.j41(0,"mat-year-view",5),t.mxI("activeDateChange",function(vt){i.eBV(Me);const ni=t.XpG();return t.DH7(ni.activeDate,vt)||(ni.activeDate=vt),i.Njj(vt)}),t.bIt("monthSelected",function(vt){i.eBV(Me);const ni=t.XpG();return i.Njj(ni._monthSelectedInYearView(vt))})("selectedChange",function(vt){i.eBV(Me);const ni=t.XpG();return i.Njj(ni._goToDateInView(vt,"month"))}),t.k0s()}if(2&zt){const Me=t.XpG();t.R50("activeDate",Me.activeDate),t.Y8G("selected",Me.selected)("dateFilter",Me.dateFilter)("maxDate",Me.maxDate)("minDate",Me.minDate)("dateClass",Me.dateClass)}}function Ke(zt,ji){if(1&zt){const Me=t.RV6();t.j41(0,"mat-multi-year-view",6),t.mxI("activeDateChange",function(vt){i.eBV(Me);const ni=t.XpG();return t.DH7(ni.activeDate,vt)||(ni.activeDate=vt),i.Njj(vt)}),t.bIt("yearSelected",function(vt){i.eBV(Me);const ni=t.XpG();return i.Njj(ni._yearSelectedInMultiYearView(vt))})("selectedChange",function(vt){i.eBV(Me);const ni=t.XpG();return i.Njj(ni._goToDateInView(vt,"year"))}),t.k0s()}if(2&zt){const Me=t.XpG();t.R50("activeDate",Me.activeDate),t.Y8G("selected",Me.selected)("dateFilter",Me.dateFilter)("maxDate",Me.maxDate)("minDate",Me.minDate)("dateClass",Me.dateClass)}}function ge(zt,ji){}const ve=["button"],Oe=[[["","matDatepickerToggleIcon",""]]],Ee=["[matDatepickerToggleIcon]"];function dt(zt,ji){1&zt&&(i.qSk(),t.j41(0,"svg",2),t.nrm(1,"path",3),t.k0s())}let Pe=(()=>{class zt{changes=new S.B;calendarLabel="Calendar";openCalendarLabel="Open calendar";closeCalendarLabel="Close calendar";prevMonthLabel="Previous month";nextMonthLabel="Next month";prevYearLabel="Previous year";nextYearLabel="Next year";prevMultiYearLabel="Previous 24 years";nextMultiYearLabel="Next 24 years";switchToMonthViewLabel="Choose date";switchToMultiYearViewLabel="Choose month and year";startDateLabel="Start date";endDateLabel="End date";comparisonDateLabel="Comparison range";formatYearRange(Me,mt){return`${Me} \u2013 ${mt}`}formatYearRangeLabel(Me,mt){return`${Me} to ${mt}`}static \u0275fac=function(mt){return new(mt||zt)};static \u0275prov=i.jDH({token:zt,factory:zt.\u0275fac,providedIn:"root"})}return zt})(),Ht=0;class ct{value;displayValue;ariaLabel;enabled;cssClasses;compareValue;rawValue;id=Ht++;constructor(ji,Me,mt,vt,ni={},Fi=ji,kn){this.value=ji,this.displayValue=Me,this.ariaLabel=mt,this.enabled=vt,this.cssClasses=ni,this.compareValue=Fi,this.rawValue=kn}}const Ce={passive:!1,capture:!0},ze={passive:!0,capture:!0},Z={passive:!0};let J=(()=>{class zt{_elementRef=(0,i.WQX)(t.aKT);_ngZone=(0,i.WQX)(t.SKi);_platform=(0,i.WQX)(q.O);_intl=(0,i.WQX)(Pe);_eventCleanups;_skipNextFocus;_focusActiveCellAfterViewChecked=!1;label;rows;todayValue;startValue;endValue;labelMinRequiredCells;numCols=7;activeCell=0;ngAfterViewChecked(){this._focusActiveCellAfterViewChecked&&(this._focusActiveCell(),this._focusActiveCellAfterViewChecked=!1)}isRange=!1;cellAspectRatio=1;comparisonStart;comparisonEnd;previewStart=null;previewEnd=null;startDateAccessibleName;endDateAccessibleName;selectedValueChange=new t.bkB;previewChange=new t.bkB;activeDateChange=new t.bkB;dragStarted=new t.bkB;dragEnded=new t.bkB;_firstRowOffset;_cellPadding;_cellWidth;_startDateLabelId;_endDateLabelId;_comparisonStartDateLabelId;_comparisonEndDateLabelId;_didDragSinceMouseDown=!1;_injector=(0,i.WQX)(i.zZn);comparisonDateAccessibleName=this._intl.comparisonDateLabel;_trackRow=Me=>Me;constructor(){const Me=(0,i.WQX)(t.sFG),mt=(0,i.WQX)(m.g);this._startDateLabelId=mt.getId("mat-calendar-body-start-"),this._endDateLabelId=mt.getId("mat-calendar-body-end-"),this._comparisonStartDateLabelId=mt.getId("mat-calendar-body-comparison-start-"),this._comparisonEndDateLabelId=mt.getId("mat-calendar-body-comparison-end-"),(0,i.WQX)(he.l).load(Te.A),this._ngZone.runOutsideAngular(()=>{const vt=this._elementRef.nativeElement,ni=[Me.listen(vt,"touchmove",this._touchmoveHandler,Ce),Me.listen(vt,"mouseenter",this._enterHandler,ze),Me.listen(vt,"focus",this._enterHandler,ze),Me.listen(vt,"mouseleave",this._leaveHandler,ze),Me.listen(vt,"blur",this._leaveHandler,ze),Me.listen(vt,"mousedown",this._mousedownHandler,Z),Me.listen(vt,"touchstart",this._mousedownHandler,Z)];this._platform.isBrowser&&ni.push(Me.listen("window","mouseup",this._mouseupHandler),Me.listen("window","touchend",this._touchendHandler)),this._eventCleanups=ni})}_cellClicked(Me,mt){this._didDragSinceMouseDown||Me.enabled&&this.selectedValueChange.emit({value:Me.value,event:mt})}_emitActiveDateChange(Me,mt){Me.enabled&&this.activeDateChange.emit({value:Me.value,event:mt})}_isSelected(Me){return this.startValue===Me||this.endValue===Me}ngOnChanges(Me){const mt=Me.numCols,{rows:vt,numCols:ni}=this;(Me.rows||mt)&&(this._firstRowOffset=vt&&vt.length&&vt[0].length?ni-vt[0].length:0),(Me.cellAspectRatio||mt||!this._cellPadding)&&(this._cellPadding=50*this.cellAspectRatio/ni+"%"),(mt||!this._cellWidth)&&(this._cellWidth=100/ni+"%")}ngOnDestroy(){this._eventCleanups.forEach(Me=>Me())}_isActiveCell(Me,mt){let vt=Me*this.numCols+mt;return Me&&(vt-=this._firstRowOffset),vt==this.activeCell}_focusActiveCell(Me=!0){(0,t.mal)(()=>{setTimeout(()=>{const mt=this._elementRef.nativeElement.querySelector(".mat-calendar-body-active");mt&&(Me||(this._skipNextFocus=!0),mt.focus())})},{injector:this._injector})}_scheduleFocusActiveCellAfterViewChecked(){this._focusActiveCellAfterViewChecked=!0}_isRangeStart(Me){return ht(Me,this.startValue,this.endValue)}_isRangeEnd(Me){return li(Me,this.startValue,this.endValue)}_isInRange(Me){return Qt(Me,this.startValue,this.endValue,this.isRange)}_isComparisonStart(Me){return ht(Me,this.comparisonStart,this.comparisonEnd)}_isComparisonBridgeStart(Me,mt,vt){if(!this._isComparisonStart(Me)||this._isRangeStart(Me)||!this._isInRange(Me))return!1;let ni=this.rows[mt][vt-1];if(!ni){const Fi=this.rows[mt-1];ni=Fi&&Fi[Fi.length-1]}return ni&&!this._isRangeEnd(ni.compareValue)}_isComparisonBridgeEnd(Me,mt,vt){if(!this._isComparisonEnd(Me)||this._isRangeEnd(Me)||!this._isInRange(Me))return!1;let ni=this.rows[mt][vt+1];if(!ni){const Fi=this.rows[mt+1];ni=Fi&&Fi[0]}return ni&&!this._isRangeStart(ni.compareValue)}_isComparisonEnd(Me){return li(Me,this.comparisonStart,this.comparisonEnd)}_isInComparisonRange(Me){return Qt(Me,this.comparisonStart,this.comparisonEnd,this.isRange)}_isComparisonIdentical(Me){return this.comparisonStart===this.comparisonEnd&&Me===this.comparisonStart}_isPreviewStart(Me){return ht(Me,this.previewStart,this.previewEnd)}_isPreviewEnd(Me){return li(Me,this.previewStart,this.previewEnd)}_isInPreview(Me){return Qt(Me,this.previewStart,this.previewEnd,this.isRange)}_getDescribedby(Me){if(!this.isRange)return null;if(this.startValue===Me&&this.endValue===Me)return`${this._startDateLabelId} ${this._endDateLabelId}`;if(this.startValue===Me)return this._startDateLabelId;if(this.endValue===Me)return this._endDateLabelId;if(null!==this.comparisonStart&&null!==this.comparisonEnd){if(Me===this.comparisonStart&&Me===this.comparisonEnd)return`${this._comparisonStartDateLabelId} ${this._comparisonEndDateLabelId}`;if(Me===this.comparisonStart)return this._comparisonStartDateLabelId;if(Me===this.comparisonEnd)return this._comparisonEndDateLabelId}return null}_enterHandler=Me=>{if(this._skipNextFocus&&"focus"===Me.type)this._skipNextFocus=!1;else if(Me.target&&this.isRange){const mt=this._getCellFromElement(Me.target);mt&&this._ngZone.run(()=>this.previewChange.emit({value:mt.enabled?mt:null,event:Me}))}};_touchmoveHandler=Me=>{if(!this.isRange)return;const mt=di(Me),vt=mt?this._getCellFromElement(mt):null;mt!==Me.target&&(this._didDragSinceMouseDown=!0),Ie(Me.target)&&Me.preventDefault(),this._ngZone.run(()=>this.previewChange.emit({value:vt?.enabled?vt:null,event:Me}))};_leaveHandler=Me=>{null!==this.previewEnd&&this.isRange&&("blur"!==Me.type&&(this._didDragSinceMouseDown=!0),Me.target&&this._getCellFromElement(Me.target)&&(!Me.relatedTarget||!this._getCellFromElement(Me.relatedTarget))&&this._ngZone.run(()=>this.previewChange.emit({value:null,event:Me})))};_mousedownHandler=Me=>{if(!this.isRange)return;this._didDragSinceMouseDown=!1;const mt=Me.target&&this._getCellFromElement(Me.target);!mt||!this._isInRange(mt.compareValue)||this._ngZone.run(()=>{this.dragStarted.emit({value:mt.rawValue,event:Me})})};_mouseupHandler=Me=>{if(!this.isRange)return;const mt=Ie(Me.target);mt?mt.closest(".mat-calendar-body")===this._elementRef.nativeElement&&this._ngZone.run(()=>{const vt=this._getCellFromElement(mt);this.dragEnded.emit({value:vt?.rawValue??null,event:Me})}):this._ngZone.run(()=>{this.dragEnded.emit({value:null,event:Me})})};_touchendHandler=Me=>{const mt=di(Me);mt&&this._mouseupHandler({target:mt})};_getCellFromElement(Me){const mt=Ie(Me);if(mt){const vt=mt.getAttribute("data-mat-row"),ni=mt.getAttribute("data-mat-col");if(vt&&ni)return this.rows[parseInt(vt)]?.[parseInt(ni)]||null}return null}static \u0275fac=function(mt){return new(mt||zt)};static \u0275cmp=t.VBU({type:zt,selectors:[["","mat-calendar-body",""]],hostAttrs:[1,"mat-calendar-body"],inputs:{label:"label",rows:"rows",todayValue:"todayValue",startValue:"startValue",endValue:"endValue",labelMinRequiredCells:"labelMinRequiredCells",numCols:"numCols",activeCell:"activeCell",isRange:"isRange",cellAspectRatio:"cellAspectRatio",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",previewStart:"previewStart",previewEnd:"previewEnd",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName"},outputs:{selectedValueChange:"selectedValueChange",previewChange:"previewChange",activeDateChange:"activeDateChange",dragStarted:"dragStarted",dragEnded:"dragEnded"},exportAs:["matCalendarBody"],features:[t.OA$],attrs:r,decls:11,vars:11,consts:[["aria-hidden","true"],["role","row"],[1,"mat-calendar-body-hidden-label",3,"id"],[1,"mat-calendar-body-label"],[1,"mat-calendar-body-label",3,"paddingTop","paddingBottom"],["role","gridcell",1,"mat-calendar-body-cell-container",3,"width","paddingTop","paddingBottom"],["role","gridcell",1,"mat-calendar-body-cell-container"],["type","button",1,"mat-calendar-body-cell",3,"click","focus","ngClass","tabindex"],[1,"mat-calendar-body-cell-content","mat-focus-indicator"],["aria-hidden","true",1,"mat-calendar-body-cell-preview"]],template:function(mt,vt){1&mt&&(t.nVh(0,I,3,6,"tr",0),t.Z7z(1,pe,4,1,"tr",1,_,!0),t.j41(3,"span",2),t.EFF(4),t.k0s(),t.j41(5,"span",2),t.EFF(6),t.k0s(),t.j41(7,"span",2),t.EFF(8),t.k0s(),t.j41(9,"span",2),t.EFF(10),t.k0s()),2&mt&&(t.vxM(vt._firstRowOffset.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:var(--mat-datepicker-calendar-date-disabled-state-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:var(--mat-datepicker-calendar-date-today-disabled-state-outline-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}@media(forced-colors: active){.mat-calendar-body-disabled{opacity:.5}}.mat-calendar-body-cell-content{top:5%;left:5%;z-index:1;display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:90%;height:90%;line-height:1;border-width:1px;border-style:solid;border-radius:999px;color:var(--mat-datepicker-calendar-date-text-color, var(--mat-sys-on-surface));border-color:var(--mat-datepicker-calendar-date-outline-color, transparent)}.mat-calendar-body-cell-content.mat-focus-indicator{position:absolute}@media(forced-colors: active){.mat-calendar-body-cell-content{border:none}}.cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:var(--mat-datepicker-calendar-date-focus-state-background-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-focus-state-layer-opacity) * 100%), transparent))}@media(hover: hover){.mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:var(--mat-datepicker-calendar-date-hover-state-background-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent))}}.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-state-background-color, var(--mat-sys-primary));color:var(--mat-datepicker-calendar-date-selected-state-text-color, var(--mat-sys-on-primary))}.mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-disabled-state-background-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-calendar-body-selected.mat-calendar-body-today{box-shadow:inset 0 0 0 1px var(--mat-datepicker-calendar-date-today-selected-state-outline-color, var(--mat-sys-primary))}.mat-calendar-body-in-range::before{background:var(--mat-datepicker-calendar-date-in-range-state-background-color, var(--mat-sys-primary-container))}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color, var(--mat-sys-tertiary-container))}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color, var(--mat-sys-tertiary-container))}.mat-calendar-body-comparison-bridge-start::before,[dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, var(--mat-datepicker-calendar-date-in-range-state-background-color, var(--mat-sys-primary-container)) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color, var(--mat-sys-tertiary-container)) 50%)}.mat-calendar-body-comparison-bridge-end::before,[dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, var(--mat-datepicker-calendar-date-in-range-state-background-color, var(--mat-sys-primary-container)) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color, var(--mat-sys-tertiary-container)) 50%)}.mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:var(--mat-datepicker-calendar-date-in-overlap-range-state-background-color, var(--mat-sys-secondary-container))}.mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:var(--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color, var(--mat-sys-secondary))}@media(forced-colors: active){.mat-datepicker-popup:not(:empty),.mat-calendar-body-cell:not(.mat-calendar-body-in-range) .mat-calendar-body-selected{outline:solid 1px}.mat-calendar-body-today{outline:dotted 1px}.mat-calendar-body-cell::before,.mat-calendar-body-cell::after,.mat-calendar-body-selected{background:none}.mat-calendar-body-in-range::before,.mat-calendar-body-comparison-bridge-start::before,.mat-calendar-body-comparison-bridge-end::before{border-top:solid 1px;border-bottom:solid 1px}.mat-calendar-body-range-start::before{border-left:solid 1px}[dir=rtl] .mat-calendar-body-range-start::before{border-left:0;border-right:solid 1px}.mat-calendar-body-range-end::before{border-right:solid 1px}[dir=rtl] .mat-calendar-body-range-end::before{border-right:0;border-left:solid 1px}.mat-calendar-body-in-comparison-range::before{border-top:dashed 1px;border-bottom:dashed 1px}.mat-calendar-body-comparison-start::before{border-left:dashed 1px}[dir=rtl] .mat-calendar-body-comparison-start::before{border-left:0;border-right:dashed 1px}.mat-calendar-body-comparison-end::before{border-right:dashed 1px}[dir=rtl] .mat-calendar-body-comparison-end::before{border-right:0;border-left:dashed 1px}}\n'],encapsulation:2,changeDetection:0})}return zt})();function fe(zt){return"TD"===zt?.nodeName}function Ie(zt){let ji;return fe(zt)?ji=zt:fe(zt.parentNode)?ji=zt.parentNode:fe(zt.parentNode?.parentNode)&&(ji=zt.parentNode.parentNode),null!=ji?.getAttribute("data-mat-row")?ji:null}function ht(zt,ji,Me){return null!==Me&&ji!==Me&&zt=ji&&zt===Me}function Qt(zt,ji,Me,mt){return mt&&null!==ji&&null!==Me&&ji!==Me&&zt>=ji&&zt<=Me}function di(zt){const ji=zt.changedTouches[0];return document.elementFromPoint(ji.clientX,ji.clientY)}class kt{start;end;_disableStructuralEquivalency;constructor(ji,Me){this.start=ji,this.end=Me}}let Rt=(()=>{class zt{selection;_adapter;_selectionChanged=new S.B;selectionChanged=this._selectionChanged;constructor(Me,mt){this.selection=Me,this._adapter=mt,this.selection=Me}updateSelection(Me,mt){const vt=this.selection;this.selection=Me,this._selectionChanged.next({selection:Me,source:mt,oldValue:vt})}ngOnDestroy(){this._selectionChanged.complete()}_isValidDateInstance(Me){return this._adapter.isDateInstance(Me)&&this._adapter.isValid(Me)}static \u0275fac=function(mt){t.QTQ()};static \u0275prov=i.jDH({token:zt,factory:zt.\u0275fac})}return zt})(),le=(()=>{class zt extends Rt{constructor(Me){super(null,Me)}add(Me){super.updateSelection(Me,this)}isValid(){return null!=this.selection&&this._isValidDateInstance(this.selection)}isComplete(){return null!=this.selection}clone(){const Me=new zt(this._adapter);return Me.updateSelection(this.selection,this),Me}static \u0275fac=function(mt){return new(mt||zt)(i.KVO(g.MJ))};static \u0275prov=i.jDH({token:zt,factory:zt.\u0275fac})}return zt})();const se={provide:Rt,deps:[[new t.Xx1,new t.kdw,Rt],g.MJ],useFactory:function ce(zt,ji){return zt||new le(ji)}},Ne=new i.nKC("MAT_DATE_RANGE_SELECTION_STRATEGY");let ti=0,Ye=(()=>{class zt{_changeDetectorRef=(0,i.WQX)(p.gRc);_dateFormats=(0,i.WQX)(g.de,{optional:!0});_dateAdapter=(0,i.WQX)(g.MJ,{optional:!0});_dir=(0,i.WQX)(P.dS,{optional:!0});_rangeStrategy=(0,i.WQX)(Ne,{optional:!0});_rerenderSubscription=c.yU.EMPTY;_selectionKeyPressed;get activeDate(){return this._activeDate}set activeDate(Me){const mt=this._activeDate,vt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(vt,this.minDate,this.maxDate),this._hasSameMonthAndYear(mt,this._activeDate)||this._init()}_activeDate;get selected(){return this._selected}set selected(Me){this._selected=Me instanceof kt?Me:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me)),this._setRanges(this._selected)}_selected;get minDate(){return this._minDate}set minDate(Me){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me))}_minDate;get maxDate(){return this._maxDate}set maxDate(Me){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me))}_maxDate;dateFilter;dateClass;comparisonStart;comparisonEnd;startDateAccessibleName;endDateAccessibleName;activeDrag=null;selectedChange=new t.bkB;_userSelection=new t.bkB;dragStarted=new t.bkB;dragEnded=new t.bkB;activeDateChange=new t.bkB;_matCalendarBody;_monthLabel=(0,i.vPA)("");_weeks=(0,i.vPA)([]);_firstWeekOffset=(0,i.vPA)(0);_rangeStart=(0,i.vPA)(null);_rangeEnd=(0,i.vPA)(null);_comparisonRangeStart=(0,i.vPA)(null);_comparisonRangeEnd=(0,i.vPA)(null);_previewStart=(0,i.vPA)(null);_previewEnd=(0,i.vPA)(null);_isRange=(0,i.vPA)(!1);_todayDate=(0,i.vPA)(null);_weekdays=(0,i.vPA)([]);constructor(){(0,i.WQX)(he.l).load(me.Y),this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,ae.Z)(null)).subscribe(()=>this._init())}ngOnChanges(Me){const mt=Me.comparisonStart||Me.comparisonEnd;mt&&!mt.firstChange&&this._setRanges(this.selected),Me.activeDrag&&!this.activeDrag&&this._clearPreview()}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_dateSelected(Me){const mt=Me.value,vt=this._getDateFromDayOfMonth(mt);let ni,Fi;this._selected instanceof kt?(ni=this._getDateInCurrentMonth(this._selected.start),Fi=this._getDateInCurrentMonth(this._selected.end)):ni=Fi=this._getDateInCurrentMonth(this._selected),(ni!==mt||Fi!==mt)&&this.selectedChange.emit(vt),this._userSelection.emit({value:vt,event:Me.event}),this._clearPreview(),this._changeDetectorRef.markForCheck()}_updateActiveDate(Me){const vt=this._activeDate;this.activeDate=this._getDateFromDayOfMonth(Me.value),this._dateAdapter.compareDate(vt,this.activeDate)&&this.activeDateChange.emit(this._activeDate)}_handleCalendarBodyKeydown(Me){const mt=this._activeDate,vt=this._isRtl();switch(Me.keyCode){case j.UQ:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,vt?1:-1);break;case j.LE:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,vt?-1:1);break;case j.i7:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,-7);break;case j.n6:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,7);break;case j.yZ:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,1-this._dateAdapter.getDate(this._activeDate));break;case j.Kp:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,this._dateAdapter.getNumDaysInMonth(this._activeDate)-this._dateAdapter.getDate(this._activeDate));break;case j.w_:this.activeDate=Me.altKey?this._dateAdapter.addCalendarYears(this._activeDate,-1):this._dateAdapter.addCalendarMonths(this._activeDate,-1);break;case j.dB:this.activeDate=Me.altKey?this._dateAdapter.addCalendarYears(this._activeDate,1):this._dateAdapter.addCalendarMonths(this._activeDate,1);break;case j.Fm:case j.t6:return this._selectionKeyPressed=!0,void(this._canSelect(this._activeDate)&&Me.preventDefault());case j._f:return void(null!=this._previewEnd()&&!(0,U.rp)(Me)&&(this._clearPreview(),this.activeDrag?this.dragEnded.emit({value:null,event:Me}):(this.selectedChange.emit(null),this._userSelection.emit({value:null,event:Me})),Me.preventDefault(),Me.stopPropagation()));default:return}this._dateAdapter.compareDate(mt,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),Me.preventDefault()}_handleCalendarBodyKeyup(Me){(Me.keyCode===j.t6||Me.keyCode===j.Fm)&&(this._selectionKeyPressed&&this._canSelect(this._activeDate)&&this._dateSelected({value:this._dateAdapter.getDate(this._activeDate),event:Me}),this._selectionKeyPressed=!1)}_init(){this._setRanges(this.selected),this._todayDate.set(this._getCellCompareValue(this._dateAdapter.today())),this._monthLabel.set(this._dateFormats.display.monthLabel?this._dateAdapter.format(this.activeDate,this._dateFormats.display.monthLabel):this._dateAdapter.getMonthNames("short")[this._dateAdapter.getMonth(this.activeDate)].toLocaleUpperCase());let Me=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),1);this._firstWeekOffset.set((7+this._dateAdapter.getDayOfWeek(Me)-this._dateAdapter.getFirstDayOfWeek())%7),this._initWeekdays(),this._createWeekCells(),this._changeDetectorRef.markForCheck()}_focusActiveCell(Me){this._matCalendarBody._focusActiveCell(Me)}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_previewChanged({event:Me,value:mt}){if(this._rangeStrategy){const vt=mt?mt.rawValue:null,ni=this._rangeStrategy.createPreview(vt,this.selected,Me);if(this._previewStart.set(this._getCellCompareValue(ni.start)),this._previewEnd.set(this._getCellCompareValue(ni.end)),this.activeDrag&&vt){const Fi=this._rangeStrategy.createDrag?.(this.activeDrag.value,this.selected,vt,Me);Fi&&(this._previewStart.set(this._getCellCompareValue(Fi.start)),this._previewEnd.set(this._getCellCompareValue(Fi.end)))}}}_dragEnded(Me){if(this.activeDrag)if(Me.value){const mt=this._rangeStrategy?.createDrag?.(this.activeDrag.value,this.selected,Me.value,Me.event);this.dragEnded.emit({value:mt??null,event:Me.event})}else this.dragEnded.emit({value:null,event:Me.event})}_getDateFromDayOfMonth(Me){return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),Me)}_initWeekdays(){const Me=this._dateAdapter.getFirstDayOfWeek(),mt=this._dateAdapter.getDayOfWeekNames("narrow"),ni=this._dateAdapter.getDayOfWeekNames("long").map((Fi,kn)=>({long:Fi,narrow:mt[kn],id:ti++}));this._weekdays.set(ni.slice(Me).concat(ni.slice(0,Me)))}_createWeekCells(){const Me=this._dateAdapter.getNumDaysInMonth(this.activeDate),mt=this._dateAdapter.getDateNames(),vt=[[]];for(let ni=0,Fi=this._firstWeekOffset();ni=0)&&(!this.maxDate||this._dateAdapter.compareDate(Me,this.maxDate)<=0)&&(!this.dateFilter||this.dateFilter(Me))}_getDateInCurrentMonth(Me){return Me&&this._hasSameMonthAndYear(Me,this.activeDate)?this._dateAdapter.getDate(Me):null}_hasSameMonthAndYear(Me,mt){return!(!Me||!mt||this._dateAdapter.getMonth(Me)!=this._dateAdapter.getMonth(mt)||this._dateAdapter.getYear(Me)!=this._dateAdapter.getYear(mt))}_getCellCompareValue(Me){if(Me){const mt=this._dateAdapter.getYear(Me),vt=this._dateAdapter.getMonth(Me),ni=this._dateAdapter.getDate(Me);return new Date(mt,vt,ni).getTime()}return null}_isRtl(){return this._dir&&"rtl"===this._dir.value}_setRanges(Me){Me instanceof kt?(this._rangeStart.set(this._getCellCompareValue(Me.start)),this._rangeEnd.set(this._getCellCompareValue(Me.end)),this._isRange.set(!0)):(this._rangeStart.set(this._getCellCompareValue(Me)),this._rangeEnd.set(this._rangeStart()),this._isRange.set(!1)),this._comparisonRangeStart.set(this._getCellCompareValue(this.comparisonStart)),this._comparisonRangeEnd.set(this._getCellCompareValue(this.comparisonEnd))}_canSelect(Me){return!this.dateFilter||this.dateFilter(Me)}_clearPreview(){this._previewStart.set(null),this._previewEnd.set(null)}static \u0275fac=function(mt){return new(mt||zt)};static \u0275cmp=t.VBU({type:zt,selectors:[["mat-month-view"]],viewQuery:function(mt,vt){if(1&mt&&t.GBs(J,5),2&mt){let ni;t.mGM(ni=t.lsd())&&(vt._matCalendarBody=ni.first)}},inputs:{activeDate:"activeDate",selected:"selected",minDate:"minDate",maxDate:"maxDate",dateFilter:"dateFilter",dateClass:"dateClass",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName",activeDrag:"activeDrag"},outputs:{selectedChange:"selectedChange",_userSelection:"_userSelection",dragStarted:"dragStarted",dragEnded:"dragEnded",activeDateChange:"activeDateChange"},exportAs:["matMonthView"],features:[t.OA$],decls:8,vars:14,consts:[["role","grid",1,"mat-calendar-table"],[1,"mat-calendar-table-header"],["scope","col"],["aria-hidden","true"],["colspan","7",1,"mat-calendar-table-header-divider"],["mat-calendar-body","",3,"selectedValueChange","activeDateChange","previewChange","dragStarted","dragEnded","keyup","keydown","label","rows","todayValue","startValue","endValue","comparisonStart","comparisonEnd","previewStart","previewEnd","isRange","labelMinRequiredCells","activeCell","startDateAccessibleName","endDateAccessibleName"],[1,"cdk-visually-hidden"]],template:function(mt,vt){1&mt&&(t.j41(0,"table",0)(1,"thead",1)(2,"tr"),t.Z7z(3,be,5,2,"th",2,W),t.k0s(),t.j41(5,"tr",3),t.nrm(6,"th",4),t.k0s()(),t.j41(7,"tbody",5),t.bIt("selectedValueChange",function(Fi){return vt._dateSelected(Fi)})("activeDateChange",function(Fi){return vt._updateActiveDate(Fi)})("previewChange",function(Fi){return vt._previewChanged(Fi)})("dragStarted",function(Fi){return vt.dragStarted.emit(Fi)})("dragEnded",function(Fi){return vt._dragEnded(Fi)})("keyup",function(Fi){return vt._handleCalendarBodyKeyup(Fi)})("keydown",function(Fi){return vt._handleCalendarBodyKeydown(Fi)}),t.k0s()()),2&mt&&(t.R7$(3),t.Dyx(vt._weekdays()),t.R7$(4),t.Y8G("label",vt._monthLabel())("rows",vt._weeks())("todayValue",vt._todayDate())("startValue",vt._rangeStart())("endValue",vt._rangeEnd())("comparisonStart",vt._comparisonRangeStart())("comparisonEnd",vt._comparisonRangeEnd())("previewStart",vt._previewStart())("previewEnd",vt._previewEnd())("isRange",vt._isRange())("labelMinRequiredCells",3)("activeCell",vt._dateAdapter.getDate(vt.activeDate)-1)("startDateAccessibleName",vt.startDateAccessibleName)("endDateAccessibleName",vt.endDateAccessibleName))},dependencies:[J],encapsulation:2,changeDetection:0})}return zt})(),Jt=(()=>{class zt{_changeDetectorRef=(0,i.WQX)(p.gRc);_dateAdapter=(0,i.WQX)(g.MJ,{optional:!0});_dir=(0,i.WQX)(P.dS,{optional:!0});_rerenderSubscription=c.yU.EMPTY;_selectionKeyPressed;get activeDate(){return this._activeDate}set activeDate(Me){let mt=this._activeDate;const vt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(vt,this.minDate,this.maxDate),qe(this._dateAdapter,mt,this._activeDate,this.minDate,this.maxDate)||this._init()}_activeDate;get selected(){return this._selected}set selected(Me){this._selected=Me instanceof kt?Me:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me)),this._setSelectedYear(Me)}_selected;get minDate(){return this._minDate}set minDate(Me){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me))}_minDate;get maxDate(){return this._maxDate}set maxDate(Me){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me))}_maxDate;dateFilter;dateClass;selectedChange=new t.bkB;yearSelected=new t.bkB;activeDateChange=new t.bkB;_matCalendarBody;_years=(0,i.vPA)([]);_todayYear=(0,i.vPA)(0);_selectedYear=(0,i.vPA)(null);constructor(){this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,ae.Z)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_init(){this._todayYear.set(this._dateAdapter.getYear(this._dateAdapter.today()));const mt=this._dateAdapter.getYear(this._activeDate)-$e(this._dateAdapter,this.activeDate,this.minDate,this.maxDate),vt=[];for(let ni=0,Fi=[];ni<24;ni++)Fi.push(mt+ni),4==Fi.length&&(vt.push(Fi.map(kn=>this._createCellForYear(kn))),Fi=[]);this._years.set(vt),this._changeDetectorRef.markForCheck()}_yearSelected(Me){const mt=Me.value,vt=this._dateAdapter.createDate(mt,0,1),ni=this._getDateFromYear(mt);this.yearSelected.emit(vt),this.selectedChange.emit(ni)}_updateActiveDate(Me){const vt=this._activeDate;this.activeDate=this._getDateFromYear(Me.value),this._dateAdapter.compareDate(vt,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(Me){const mt=this._activeDate,vt=this._isRtl();switch(Me.keyCode){case j.UQ:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,vt?1:-1);break;case j.LE:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,vt?-1:1);break;case j.i7:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-4);break;case j.n6:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,4);break;case j.yZ:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-$e(this._dateAdapter,this.activeDate,this.minDate,this.maxDate));break;case j.Kp:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,24-$e(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)-1);break;case j.w_:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Me.altKey?-240:-24);break;case j.dB:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Me.altKey?240:24);break;case j.Fm:case j.t6:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(mt,this.activeDate)&&this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked(),Me.preventDefault()}_handleCalendarBodyKeyup(Me){(Me.keyCode===j.t6||Me.keyCode===j.Fm)&&(this._selectionKeyPressed&&this._yearSelected({value:this._dateAdapter.getYear(this._activeDate),event:Me}),this._selectionKeyPressed=!1)}_getActiveCell(){return $e(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getDateFromYear(Me){const mt=this._dateAdapter.getMonth(this.activeDate),vt=this._dateAdapter.getNumDaysInMonth(this._dateAdapter.createDate(Me,mt,1));return this._dateAdapter.createDate(Me,mt,Math.min(this._dateAdapter.getDate(this.activeDate),vt))}_createCellForYear(Me){const mt=this._dateAdapter.createDate(Me,0,1),vt=this._dateAdapter.getYearName(mt),ni=this.dateClass?this.dateClass(mt,"multi-year"):void 0;return new ct(Me,vt,vt,this._shouldEnableYear(Me),ni)}_shouldEnableYear(Me){if(null==Me||this.maxDate&&Me>this._dateAdapter.getYear(this.maxDate)||this.minDate&&Me{class zt{_changeDetectorRef=(0,i.WQX)(p.gRc);_dateFormats=(0,i.WQX)(g.de,{optional:!0});_dateAdapter=(0,i.WQX)(g.MJ,{optional:!0});_dir=(0,i.WQX)(P.dS,{optional:!0});_rerenderSubscription=c.yU.EMPTY;_selectionKeyPressed;get activeDate(){return this._activeDate}set activeDate(Me){let mt=this._activeDate;const vt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(vt,this.minDate,this.maxDate),this._dateAdapter.getYear(mt)!==this._dateAdapter.getYear(this._activeDate)&&this._init()}_activeDate;get selected(){return this._selected}set selected(Me){this._selected=Me instanceof kt?Me:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me)),this._setSelectedMonth(Me)}_selected;get minDate(){return this._minDate}set minDate(Me){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me))}_minDate;get maxDate(){return this._maxDate}set maxDate(Me){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me))}_maxDate;dateFilter;dateClass;selectedChange=new t.bkB;monthSelected=new t.bkB;activeDateChange=new t.bkB;_matCalendarBody;_months=(0,i.vPA)([]);_yearLabel=(0,i.vPA)("");_todayMonth=(0,i.vPA)(null);_selectedMonth=(0,i.vPA)(null);constructor(){this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,ae.Z)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_monthSelected(Me){const mt=Me.value,vt=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),mt,1);this.monthSelected.emit(vt);const ni=this._getDateFromMonth(mt);this.selectedChange.emit(ni)}_updateActiveDate(Me){const vt=this._activeDate;this.activeDate=this._getDateFromMonth(Me.value),this._dateAdapter.compareDate(vt,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(Me){const mt=this._activeDate,vt=this._isRtl();switch(Me.keyCode){case j.UQ:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,vt?1:-1);break;case j.LE:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,vt?-1:1);break;case j.i7:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-4);break;case j.n6:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,4);break;case j.yZ:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-this._dateAdapter.getMonth(this._activeDate));break;case j.Kp:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,11-this._dateAdapter.getMonth(this._activeDate));break;case j.w_:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Me.altKey?-10:-1);break;case j.dB:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Me.altKey?10:1);break;case j.Fm:case j.t6:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(mt,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),Me.preventDefault()}_handleCalendarBodyKeyup(Me){(Me.keyCode===j.t6||Me.keyCode===j.Fm)&&(this._selectionKeyPressed&&this._monthSelected({value:this._dateAdapter.getMonth(this._activeDate),event:Me}),this._selectionKeyPressed=!1)}_init(){this._setSelectedMonth(this.selected),this._todayMonth.set(this._getMonthInCurrentYear(this._dateAdapter.today())),this._yearLabel.set(this._dateAdapter.getYearName(this.activeDate));let Me=this._dateAdapter.getMonthNames("short");this._months.set([[0,1,2,3],[4,5,6,7],[8,9,10,11]].map(mt=>mt.map(vt=>this._createCellForMonth(vt,Me[vt])))),this._changeDetectorRef.markForCheck()}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getMonthInCurrentYear(Me){return Me&&this._dateAdapter.getYear(Me)==this._dateAdapter.getYear(this.activeDate)?this._dateAdapter.getMonth(Me):null}_getDateFromMonth(Me){const mt=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),Me,1),vt=this._dateAdapter.getNumDaysInMonth(mt);return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),Me,Math.min(this._dateAdapter.getDate(this.activeDate),vt))}_createCellForMonth(Me,mt){const vt=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),Me,1),ni=this._dateAdapter.format(vt,this._dateFormats.display.monthYearA11yLabel),Fi=this.dateClass?this.dateClass(vt,"year"):void 0;return new ct(Me,mt.toLocaleUpperCase(),ni,this._shouldEnableMonth(Me),Fi)}_shouldEnableMonth(Me){const mt=this._dateAdapter.getYear(this.activeDate);if(null==Me||this._isYearAndMonthAfterMaxDate(mt,Me)||this._isYearAndMonthBeforeMinDate(mt,Me))return!1;if(!this.dateFilter)return!0;for(let ni=this._dateAdapter.createDate(mt,Me,1);this._dateAdapter.getMonth(ni)==Me;ni=this._dateAdapter.addCalendarDays(ni,1))if(this.dateFilter(ni))return!0;return!1}_isYearAndMonthAfterMaxDate(Me,mt){if(this.maxDate){const vt=this._dateAdapter.getYear(this.maxDate),ni=this._dateAdapter.getMonth(this.maxDate);return Me>vt||Me===vt&&mt>ni}return!1}_isYearAndMonthBeforeMinDate(Me,mt){if(this.minDate){const vt=this._dateAdapter.getYear(this.minDate),ni=this._dateAdapter.getMonth(this.minDate);return Me{class zt{_intl=(0,i.WQX)(Pe);calendar=(0,i.WQX)(Hi);_dateAdapter=(0,i.WQX)(g.MJ,{optional:!0});_dateFormats=(0,i.WQX)(g.de,{optional:!0});_periodButtonText;_periodButtonDescription;_periodButtonLabel;_prevButtonLabel;_nextButtonLabel;constructor(){(0,i.WQX)(he.l).load(me.Y);const Me=(0,i.WQX)(p.gRc);this._updateLabels(),this.calendar.stateChanges.subscribe(()=>{this._updateLabels(),Me.markForCheck()})}get periodButtonText(){return this._periodButtonText}get periodButtonDescription(){return this._periodButtonDescription}get periodButtonLabel(){return this._periodButtonLabel}get prevButtonLabel(){return this._prevButtonLabel}get nextButtonLabel(){return this._nextButtonLabel}currentPeriodClicked(){this.calendar.currentView="month"==this.calendar.currentView?"multi-year":"month"}previousClicked(){this.previousEnabled()&&(this.calendar.activeDate="month"==this.calendar.currentView?this._dateAdapter.addCalendarMonths(this.calendar.activeDate,-1):this._dateAdapter.addCalendarYears(this.calendar.activeDate,"year"==this.calendar.currentView?-1:-24))}nextClicked(){this.nextEnabled()&&(this.calendar.activeDate="month"==this.calendar.currentView?this._dateAdapter.addCalendarMonths(this.calendar.activeDate,1):this._dateAdapter.addCalendarYears(this.calendar.activeDate,"year"==this.calendar.currentView?1:24))}previousEnabled(){return!this.calendar.minDate||!this.calendar.minDate||!this._isSameView(this.calendar.activeDate,this.calendar.minDate)}nextEnabled(){return!this.calendar.maxDate||!this._isSameView(this.calendar.activeDate,this.calendar.maxDate)}_updateLabels(){const Me=this.calendar,mt=this._intl,vt=this._dateAdapter;"month"===Me.currentView?(this._periodButtonText=vt.format(Me.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase(),this._periodButtonDescription=vt.format(Me.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase(),this._periodButtonLabel=mt.switchToMultiYearViewLabel,this._prevButtonLabel=mt.prevMonthLabel,this._nextButtonLabel=mt.nextMonthLabel):"year"===Me.currentView?(this._periodButtonText=vt.getYearName(Me.activeDate),this._periodButtonDescription=vt.getYearName(Me.activeDate),this._periodButtonLabel=mt.switchToMonthViewLabel,this._prevButtonLabel=mt.prevYearLabel,this._nextButtonLabel=mt.nextYearLabel):(this._periodButtonText=mt.formatYearRange(...this._formatMinAndMaxYearLabels()),this._periodButtonDescription=mt.formatYearRangeLabel(...this._formatMinAndMaxYearLabels()),this._periodButtonLabel=mt.switchToMonthViewLabel,this._prevButtonLabel=mt.prevMultiYearLabel,this._nextButtonLabel=mt.nextMultiYearLabel)}_isSameView(Me,mt){return"month"==this.calendar.currentView?this._dateAdapter.getYear(Me)==this._dateAdapter.getYear(mt)&&this._dateAdapter.getMonth(Me)==this._dateAdapter.getMonth(mt):"year"==this.calendar.currentView?this._dateAdapter.getYear(Me)==this._dateAdapter.getYear(mt):qe(this._dateAdapter,Me,mt,this.calendar.minDate,this.calendar.maxDate)}_formatMinAndMaxYearLabels(){const mt=this._dateAdapter.getYear(this.calendar.activeDate)-$e(this._dateAdapter,this.calendar.activeDate,this.calendar.minDate,this.calendar.maxDate),vt=mt+24-1;return[this._dateAdapter.getYearName(this._dateAdapter.createDate(mt,0,1)),this._dateAdapter.getYearName(this._dateAdapter.createDate(vt,0,1))]}_periodButtonLabelId=(0,i.WQX)(m.g).getId("mat-calendar-period-label-");static \u0275fac=function(mt){return new(mt||zt)};static \u0275cmp=t.VBU({type:zt,selectors:[["mat-calendar-header"]],exportAs:["matCalendarHeader"],ngContentSelectors:Be,decls:17,vars:13,consts:[[1,"mat-calendar-header"],[1,"mat-calendar-controls"],["aria-live","polite",1,"cdk-visually-hidden",3,"id"],["matButton","","type","button",1,"mat-calendar-period-button",3,"click"],["aria-hidden","true"],["viewBox","0 0 10 5","focusable","false","aria-hidden","true",1,"mat-calendar-arrow"],["points","0,0 5,5 10,0"],[1,"mat-calendar-spacer"],["matIconButton","","type","button","disabledInteractive","",1,"mat-calendar-previous-button",3,"click","disabled","matTooltip"],["viewBox","0 0 24 24","focusable","false","aria-hidden","true"],["d","M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"],["matIconButton","","type","button","disabledInteractive","",1,"mat-calendar-next-button",3,"click","disabled","matTooltip"],["d","M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"]],template:function(mt,vt){1&mt&&(t.NAR(),t.j41(0,"div",0)(1,"div",1)(2,"span",2),t.EFF(3),t.k0s(),t.j41(4,"button",3),t.bIt("click",function(){return vt.currentPeriodClicked()}),t.j41(5,"span",4),t.EFF(6),t.k0s(),i.qSk(),t.j41(7,"svg",5),t.nrm(8,"polygon",6),t.k0s()(),i.joV(),t.nrm(9,"div",7),t.SdG(10),t.j41(11,"button",8),t.bIt("click",function(){return vt.previousClicked()}),i.qSk(),t.j41(12,"svg",9),t.nrm(13,"path",10),t.k0s()(),i.joV(),t.j41(14,"button",11),t.bIt("click",function(){return vt.nextClicked()}),i.qSk(),t.j41(15,"svg",9),t.nrm(16,"path",12),t.k0s()()()()),2&mt&&(t.R7$(2),t.Y8G("id",vt._periodButtonLabelId),t.R7$(),t.JRh(vt.periodButtonDescription),t.R7$(),t.BMQ("aria-label",vt.periodButtonLabel)("aria-describedby",vt._periodButtonLabelId),t.R7$(2),t.JRh(vt.periodButtonText),t.R7$(),t.AVh("mat-calendar-invert","month"!==vt.calendar.currentView),t.R7$(4),t.Y8G("disabled",!vt.previousEnabled())("matTooltip",vt.prevButtonLabel),t.BMQ("aria-label",vt.prevButtonLabel),t.R7$(3),t.Y8G("disabled",!vt.nextEnabled())("matTooltip",vt.nextButtonLabel),t.BMQ("aria-label",vt.nextButtonLabel))},dependencies:[D.$z,n.iY,o.oV],encapsulation:2,changeDetection:0})}return zt})(),Hi=(()=>{class zt{_dateAdapter=(0,i.WQX)(g.MJ,{optional:!0});_dateFormats=(0,i.WQX)(g.de,{optional:!0});_changeDetectorRef=(0,i.WQX)(p.gRc);_elementRef=(0,i.WQX)(t.aKT);headerComponent;_calendarHeaderPortal;_intlChanges;_moveFocusOnNextTick=!1;get startAt(){return this._startAt}set startAt(Me){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me))}_startAt;startView="month";get selected(){return this._selected}set selected(Me){this._selected=Me instanceof kt?Me:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me))}_selected;get minDate(){return this._minDate}set minDate(Me){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me))}_minDate;get maxDate(){return this._maxDate}set maxDate(Me){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me))}_maxDate;dateFilter;dateClass;comparisonStart;comparisonEnd;startDateAccessibleName;endDateAccessibleName;selectedChange=new t.bkB;yearSelected=new t.bkB;monthSelected=new t.bkB;viewChanged=new t.bkB(!0);_userSelection=new t.bkB;_userDragDrop=new t.bkB;monthView;yearView;multiYearView;get activeDate(){return this._clampedActiveDate}set activeDate(Me){this._clampedActiveDate=this._dateAdapter.clampDate(Me,this.minDate,this.maxDate),this.stateChanges.next(),this._changeDetectorRef.markForCheck()}_clampedActiveDate;get currentView(){return this._currentView}set currentView(Me){const mt=this._currentView!==Me?Me:null;this._currentView=Me,this._moveFocusOnNextTick=!0,this._changeDetectorRef.markForCheck(),mt&&(this.stateChanges.next(),this.viewChanged.emit(mt))}_currentView;_activeDrag=null;stateChanges=new S.B;constructor(){this._intlChanges=(0,i.WQX)(Pe).changes.subscribe(()=>{this._changeDetectorRef.markForCheck(),this.stateChanges.next()})}ngAfterContentInit(){this._calendarHeaderPortal=new Q.A8(this.headerComponent||ci),this.activeDate=this.startAt||this._dateAdapter.today(),this._currentView=this.startView}ngAfterViewChecked(){this._moveFocusOnNextTick&&(this._moveFocusOnNextTick=!1,this.focusActiveCell())}ngOnDestroy(){this._intlChanges.unsubscribe(),this.stateChanges.complete()}ngOnChanges(Me){const mt=Me.minDate&&!this._dateAdapter.sameDate(Me.minDate.previousValue,Me.minDate.currentValue)?Me.minDate:void 0,vt=Me.maxDate&&!this._dateAdapter.sameDate(Me.maxDate.previousValue,Me.maxDate.currentValue)?Me.maxDate:void 0,ni=mt||vt||Me.dateFilter;if(ni&&!ni.firstChange){const Fi=this._getCurrentViewComponent();Fi&&(this._elementRef.nativeElement.contains((0,G.vc)())&&(this._moveFocusOnNextTick=!0),this._changeDetectorRef.detectChanges(),Fi._init())}this.stateChanges.next()}focusActiveCell(){this._getCurrentViewComponent()._focusActiveCell(!1)}updateTodaysDate(){this._getCurrentViewComponent()._init()}_dateSelected(Me){const mt=Me.value;(this.selected instanceof kt||mt&&!this._dateAdapter.sameDate(mt,this.selected))&&this.selectedChange.emit(mt),this._userSelection.emit(Me)}_yearSelectedInMultiYearView(Me){this.yearSelected.emit(Me)}_monthSelectedInYearView(Me){this.monthSelected.emit(Me)}_goToDateInView(Me,mt){this.activeDate=Me,this.currentView=mt}_dragStarted(Me){this._activeDrag=Me}_dragEnded(Me){this._activeDrag&&(Me.value&&this._userDragDrop.emit(Me),this._activeDrag=null)}_getCurrentViewComponent(){return this.monthView||this.yearView||this.multiYearView}static \u0275fac=function(mt){return new(mt||zt)};static \u0275cmp=t.VBU({type:zt,selectors:[["mat-calendar"]],viewQuery:function(mt,vt){if(1&mt&&(t.GBs(Ye,5),t.GBs(ei,5),t.GBs(Jt,5)),2&mt){let ni;t.mGM(ni=t.lsd())&&(vt.monthView=ni.first),t.mGM(ni=t.lsd())&&(vt.yearView=ni.first),t.mGM(ni=t.lsd())&&(vt.multiYearView=ni.first)}},hostAttrs:[1,"mat-calendar"],inputs:{headerComponent:"headerComponent",startAt:"startAt",startView:"startView",selected:"selected",minDate:"minDate",maxDate:"maxDate",dateFilter:"dateFilter",dateClass:"dateClass",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName"},outputs:{selectedChange:"selectedChange",yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",_userSelection:"_userSelection",_userDragDrop:"_userDragDrop"},exportAs:["matCalendar"],features:[t.Jv_([se]),t.OA$],decls:5,vars:2,consts:[[3,"cdkPortalOutlet"],["cdkMonitorSubtreeFocus","","tabindex","-1",1,"mat-calendar-content"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName","activeDrag"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass"],[3,"activeDateChange","_userSelection","dragStarted","dragEnded","activeDate","selected","dateFilter","maxDate","minDate","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName","activeDrag"],[3,"activeDateChange","monthSelected","selectedChange","activeDate","selected","dateFilter","maxDate","minDate","dateClass"],[3,"activeDateChange","yearSelected","selectedChange","activeDate","selected","dateFilter","maxDate","minDate","dateClass"]],template:function(mt,vt){if(1&mt&&(t.DNE(0,_e,0,0,"ng-template",0),t.j41(1,"div",1),t.nVh(2,ye,1,11,"mat-month-view",2)(3,Le,1,6,"mat-year-view",3)(4,Ke,1,6,"mat-multi-year-view",3),t.k0s()),2&mt){let ni;t.Y8G("cdkPortalOutlet",vt._calendarHeaderPortal),t.R7$(2),t.vxM("month"===(ni=vt.currentView)?2:"year"===ni?3:"multi-year"===ni?4:-1)}},dependencies:[Q.I3,d.vR,Ye,ei,Jt],styles:['.mat-calendar{display:block;line-height:normal;font-family:var(--mat-datepicker-calendar-text-font, var(--mat-sys-body-medium-font));font-size:var(--mat-datepicker-calendar-text-size, var(--mat-sys-body-medium-size))}.mat-calendar-header{padding:8px 8px 0 8px}.mat-calendar-content{padding:0 8px 8px 8px;outline:none}.mat-calendar-controls{display:flex;align-items:center;margin:5% calc(4.7142857143% - 16px)}.mat-calendar-spacer{flex:1 1 auto}.mat-calendar-period-button{min-width:0;margin:0 8px;font-size:var(--mat-datepicker-calendar-period-button-text-size, var(--mat-sys-title-small-size));font-weight:var(--mat-datepicker-calendar-period-button-text-weight, var(--mat-sys-title-small-weight));--mat-button-text-label-text-color: var(--mat-datepicker-calendar-period-button-text-color, var(--mat-sys-on-surface-variant))}.mat-calendar-arrow{display:inline-block;width:10px;height:5px;margin:0 0 0 5px;vertical-align:middle;fill:var(--mat-datepicker-calendar-period-button-icon-color, var(--mat-sys-on-surface-variant))}.mat-calendar-arrow.mat-calendar-invert{transform:rotate(180deg)}[dir=rtl] .mat-calendar-arrow{margin:0 5px 0 0}@media(forced-colors: active){.mat-calendar-arrow{fill:CanvasText}}.mat-datepicker-content .mat-calendar-previous-button:not(.mat-mdc-button-disabled),.mat-datepicker-content .mat-calendar-next-button:not(.mat-mdc-button-disabled){color:var(--mat-datepicker-calendar-navigation-button-icon-color, var(--mat-sys-on-surface-variant))}[dir=rtl] .mat-calendar-previous-button,[dir=rtl] .mat-calendar-next-button{transform:rotate(180deg)}.mat-calendar-table{border-spacing:0;border-collapse:collapse;width:100%}.mat-calendar-table-header th{text-align:center;padding:0 0 8px 0;color:var(--mat-datepicker-calendar-header-text-color, var(--mat-sys-on-surface-variant));font-size:var(--mat-datepicker-calendar-header-text-size, var(--mat-sys-title-small-size));font-weight:var(--mat-datepicker-calendar-header-text-weight, var(--mat-sys-title-small-weight))}.mat-calendar-table-header-divider{position:relative;height:1px}.mat-calendar-table-header-divider::after{content:"";position:absolute;top:0;left:-8px;right:-8px;height:1px;background:var(--mat-datepicker-calendar-header-divider-color, transparent)}.mat-calendar-body-cell-content::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 3px)*-1)}.mat-calendar-body-cell:focus .mat-focus-indicator::before{content:""}\n'],encapsulation:2,changeDetection:0})}return zt})();const oi=new i.nKC("mat-datepicker-scroll-strategy",{providedIn:"root",factory:()=>{const zt=(0,i.WQX)(i.zZn);return()=>(0,K.RH)(zt)}}),ln={provide:oi,deps:[],useFactory:function ui(zt){const ji=(0,i.WQX)(i.zZn);return()=>(0,K.RH)(ji)}};let nn=(()=>{class zt{_elementRef=(0,i.WQX)(t.aKT);_animationsDisabled=(0,f.Rc)();_changeDetectorRef=(0,i.WQX)(p.gRc);_globalModel=(0,i.WQX)(Rt);_dateAdapter=(0,i.WQX)(g.MJ);_ngZone=(0,i.WQX)(t.SKi);_rangeSelectionStrategy=(0,i.WQX)(Ne,{optional:!0});_stateChanges;_model;_eventCleanups;_animationFallback;_calendar;color;datepicker;comparisonStart;comparisonEnd;startDateAccessibleName;endDateAccessibleName;_isAbove;_animationDone=new S.B;_isAnimating=!1;_closeButtonText;_closeButtonFocused;_actionsPortal=null;_dialogLabelId;constructor(){if((0,i.WQX)(he.l).load(me.Y),this._closeButtonText=(0,i.WQX)(Pe).closeCalendarLabel,!this._animationsDisabled){const Me=this._elementRef.nativeElement,mt=(0,i.WQX)(t.sFG);this._eventCleanups=this._ngZone.runOutsideAngular(()=>[mt.listen(Me,"animationstart",this._handleAnimationEvent),mt.listen(Me,"animationend",this._handleAnimationEvent),mt.listen(Me,"animationcancel",this._handleAnimationEvent)])}}ngAfterViewInit(){this._stateChanges=this.datepicker.stateChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()}),this._calendar.focusActiveCell()}ngOnDestroy(){clearTimeout(this._animationFallback),this._eventCleanups?.forEach(Me=>Me()),this._stateChanges?.unsubscribe(),this._animationDone.complete()}_handleUserSelection(Me){const mt=this._model.selection,vt=Me.value,ni=mt instanceof kt;if(ni&&this._rangeSelectionStrategy){const Fi=this._rangeSelectionStrategy.selectionFinished(vt,mt,Me.event);this._model.updateSelection(Fi,this)}else vt&&(ni||!this._dateAdapter.sameDate(vt,mt))&&this._model.add(vt);(!this._model||this._model.isComplete())&&!this._actionsPortal&&this.datepicker.close()}_handleUserDragDrop(Me){this._model.updateSelection(Me.value,this)}_startExitAnimation(){this._elementRef.nativeElement.classList.add("mat-datepicker-content-exit"),this._animationsDisabled?this._animationDone.next():(clearTimeout(this._animationFallback),this._animationFallback=setTimeout(()=>{this._isAnimating||this._animationDone.next()},200))}_handleAnimationEvent=Me=>{const mt=this._elementRef.nativeElement;Me.target!==mt||!Me.animationName.startsWith("_mat-datepicker-content")||(clearTimeout(this._animationFallback),this._isAnimating="animationstart"===Me.type,mt.classList.toggle("mat-datepicker-content-animating",this._isAnimating),this._isAnimating||this._animationDone.next())};_getSelected(){return this._model.selection}_applyPendingSelection(){this._model!==this._globalModel&&this._globalModel.updateSelection(this._model.selection,this)}_assignActions(Me,mt){this._model=Me?this._globalModel.clone():this._globalModel,this._actionsPortal=Me,mt&&this._changeDetectorRef.detectChanges()}static \u0275fac=function(mt){return new(mt||zt)};static \u0275cmp=t.VBU({type:zt,selectors:[["mat-datepicker-content"]],viewQuery:function(mt,vt){if(1&mt&&t.GBs(Hi,5),2&mt){let ni;t.mGM(ni=t.lsd())&&(vt._calendar=ni.first)}},hostAttrs:[1,"mat-datepicker-content"],hostVars:6,hostBindings:function(mt,vt){2&mt&&(t.HbH(vt.color?"mat-"+vt.color:""),t.AVh("mat-datepicker-content-touch",vt.datepicker.touchUi)("mat-datepicker-content-animations-enabled",!vt._animationsDisabled))},inputs:{color:"color"},exportAs:["matDatepickerContent"],decls:5,vars:26,consts:[["cdkTrapFocus","","role","dialog",1,"mat-datepicker-content-container"],[3,"yearSelected","monthSelected","viewChanged","_userSelection","_userDragDrop","id","startAt","startView","minDate","maxDate","dateFilter","headerComponent","selected","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName"],[3,"cdkPortalOutlet"],["type","button","matButton","elevated",1,"mat-datepicker-close-button",3,"focus","blur","click","color"]],template:function(mt,vt){1&mt&&(t.j41(0,"div",0)(1,"mat-calendar",1),t.bIt("yearSelected",function(Fi){return vt.datepicker._selectYear(Fi)})("monthSelected",function(Fi){return vt.datepicker._selectMonth(Fi)})("viewChanged",function(Fi){return vt.datepicker._viewChanged(Fi)})("_userSelection",function(Fi){return vt._handleUserSelection(Fi)})("_userDragDrop",function(Fi){return vt._handleUserDragDrop(Fi)}),t.k0s(),t.DNE(2,ge,0,0,"ng-template",2),t.j41(3,"button",3),t.bIt("focus",function(){return vt._closeButtonFocused=!0})("blur",function(){return vt._closeButtonFocused=!1})("click",function(){return vt.datepicker.close()}),t.EFF(4),t.k0s()()),2&mt&&(t.AVh("mat-datepicker-content-container-with-custom-header",vt.datepicker.calendarHeaderComponent)("mat-datepicker-content-container-with-actions",vt._actionsPortal),t.BMQ("aria-modal",!0)("aria-labelledby",vt._dialogLabelId??void 0),t.R7$(),t.HbH(vt.datepicker.panelClass),t.Y8G("id",vt.datepicker.id)("startAt",vt.datepicker.startAt)("startView",vt.datepicker.startView)("minDate",vt.datepicker._getMinDate())("maxDate",vt.datepicker._getMaxDate())("dateFilter",vt.datepicker._getDateFilter())("headerComponent",vt.datepicker.calendarHeaderComponent)("selected",vt._getSelected())("dateClass",vt.datepicker.dateClass)("comparisonStart",vt.comparisonStart)("comparisonEnd",vt.comparisonEnd)("startDateAccessibleName",vt.startDateAccessibleName)("endDateAccessibleName",vt.endDateAccessibleName),t.R7$(),t.Y8G("cdkPortalOutlet",vt._actionsPortal),t.R7$(),t.AVh("cdk-visually-hidden",!vt._closeButtonFocused),t.Y8G("color",vt.color||"primary"),t.R7$(),t.JRh(vt._closeButtonText))},dependencies:[w.kB,Hi,Q.I3,D.$z],styles:["@keyframes _mat-datepicker-content-dropdown-enter{from{opacity:0;transform:scaleY(0.8)}to{opacity:1;transform:none}}@keyframes _mat-datepicker-content-dialog-enter{from{opacity:0;transform:scale(0.8)}to{opacity:1;transform:none}}@keyframes _mat-datepicker-content-exit{from{opacity:1}to{opacity:0}}.mat-datepicker-content{display:block;background-color:var(--mat-datepicker-calendar-container-background-color, var(--mat-sys-surface-container-high));color:var(--mat-datepicker-calendar-container-text-color, var(--mat-sys-on-surface));box-shadow:var(--mat-datepicker-calendar-container-elevation-shadow, 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12));border-radius:var(--mat-datepicker-calendar-container-shape, var(--mat-sys-corner-large))}.mat-datepicker-content.mat-datepicker-content-animations-enabled{animation:_mat-datepicker-content-dropdown-enter 120ms cubic-bezier(0, 0, 0.2, 1)}.mat-datepicker-content .mat-calendar{width:296px;height:354px}.mat-datepicker-content .mat-datepicker-content-container-with-custom-header .mat-calendar{height:auto}.mat-datepicker-content .mat-datepicker-close-button{position:absolute;top:100%;left:0;margin-top:8px}.mat-datepicker-content-animating .mat-datepicker-content .mat-datepicker-close-button{display:none}.mat-datepicker-content-container{display:flex;flex-direction:column;justify-content:space-between}.mat-datepicker-content-touch{display:block;max-height:80vh;box-shadow:var(--mat-datepicker-calendar-container-touch-elevation-shadow, 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12));border-radius:var(--mat-datepicker-calendar-container-touch-shape, var(--mat-sys-corner-extra-large));position:relative;overflow:visible}.mat-datepicker-content-touch.mat-datepicker-content-animations-enabled{animation:_mat-datepicker-content-dialog-enter 150ms cubic-bezier(0, 0, 0.2, 1)}.mat-datepicker-content-touch .mat-datepicker-content-container{min-height:312px;max-height:788px;min-width:250px;max-width:750px}.mat-datepicker-content-touch .mat-calendar{width:100%;height:auto}.mat-datepicker-content-exit.mat-datepicker-content-animations-enabled{animation:_mat-datepicker-content-exit 100ms linear}@media all and (orientation: landscape){.mat-datepicker-content-touch .mat-datepicker-content-container{width:64vh;height:80vh}}@media all and (orientation: portrait){.mat-datepicker-content-touch .mat-datepicker-content-container{width:80vw;height:100vw}.mat-datepicker-content-touch .mat-datepicker-content-container-with-actions{height:115vw}}\n"],encapsulation:2,changeDetection:0})}return zt})(),dn=(()=>{class zt{_injector=(0,i.WQX)(i.zZn);_viewContainerRef=(0,i.WQX)(t.c1b);_dateAdapter=(0,i.WQX)(g.MJ,{optional:!0});_dir=(0,i.WQX)(P.dS,{optional:!0});_model=(0,i.WQX)(Rt);_animationsDisabled=(0,f.Rc)();_scrollStrategy=(0,i.WQX)(oi);_inputStateChanges=c.yU.EMPTY;_document=(0,i.WQX)(i.qQL);calendarHeaderComponent;get startAt(){return this._startAt||(this.datepickerInput?this.datepickerInput.getStartValue():null)}set startAt(Me){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me))}_startAt;startView="month";get color(){return this._color||(this.datepickerInput?this.datepickerInput.getThemePalette():void 0)}set color(Me){this._color=Me}_color;touchUi=!1;get disabled(){return void 0===this._disabled&&this.datepickerInput?this.datepickerInput.disabled:!!this._disabled}set disabled(Me){Me!==this._disabled&&(this._disabled=Me,this.stateChanges.next(void 0))}_disabled;xPosition="start";yPosition="below";restoreFocus=!0;yearSelected=new t.bkB;monthSelected=new t.bkB;viewChanged=new t.bkB(!0);dateClass;openedStream=new t.bkB;closedStream=new t.bkB;get panelClass(){return this._panelClass}set panelClass(Me){this._panelClass=(0,M.cc)(Me)}_panelClass;get opened(){return this._opened}set opened(Me){Me?this.open():this.close()}_opened=!1;id=(0,i.WQX)(m.g).getId("mat-datepicker-");_getMinDate(){return this.datepickerInput&&this.datepickerInput.min}_getMaxDate(){return this.datepickerInput&&this.datepickerInput.max}_getDateFilter(){return this.datepickerInput&&this.datepickerInput.dateFilter}_overlayRef;_componentRef;_focusedElementBeforeOpen=null;_backdropHarnessClass=`${this.id}-backdrop`;_actionsPortal;datepickerInput;stateChanges=new S.B;_changeDetectorRef=(0,i.WQX)(p.gRc);constructor(){this._model.selectionChanged.subscribe(()=>{this._changeDetectorRef.markForCheck()})}ngOnChanges(Me){const mt=Me.xPosition||Me.yPosition;if(mt&&!mt.firstChange&&this._overlayRef){const vt=this._overlayRef.getConfig().positionStrategy;vt instanceof K.rW&&(this._setConnectedPositions(vt),this.opened&&this._overlayRef.updatePosition())}this.stateChanges.next(void 0)}ngOnDestroy(){this._destroyOverlay(),this.close(),this._inputStateChanges.unsubscribe(),this.stateChanges.complete()}select(Me){this._model.add(Me)}_selectYear(Me){this.yearSelected.emit(Me)}_selectMonth(Me){this.monthSelected.emit(Me)}_viewChanged(Me){this.viewChanged.emit(Me)}registerInput(Me){return this._inputStateChanges.unsubscribe(),this.datepickerInput=Me,this._inputStateChanges=Me.stateChanges.subscribe(()=>this.stateChanges.next(void 0)),this._model}registerActions(Me){this._actionsPortal=Me,this._componentRef?.instance._assignActions(Me,!0)}removeActions(Me){Me===this._actionsPortal&&(this._actionsPortal=null,this._componentRef?.instance._assignActions(null,!0))}open(){this._opened||this.disabled||this._componentRef?.instance._isAnimating||(this._focusedElementBeforeOpen=(0,G.vc)(),this._openOverlay(),this._opened=!0,this.openedStream.emit())}close(){if(!this._opened||this._componentRef?.instance._isAnimating)return;const Me=this.restoreFocus&&this._focusedElementBeforeOpen&&"function"==typeof this._focusedElementBeforeOpen.focus,mt=()=>{this._opened&&(this._opened=!1,this.closedStream.emit())};if(this._componentRef){const{instance:vt,location:ni}=this._componentRef;vt._animationDone.pipe((0,ue.s)(1)).subscribe(()=>{const Fi=this._document.activeElement;Me&&(!Fi||Fi===this._document.activeElement||ni.nativeElement.contains(Fi))&&this._focusedElementBeforeOpen.focus(),this._focusedElementBeforeOpen=null,this._destroyOverlay()}),vt._startExitAnimation()}Me?setTimeout(mt):mt()}_applyPendingSelection(){this._componentRef?.instance?._applyPendingSelection()}_forwardContentValues(Me){Me.datepicker=this,Me.color=this.color,Me._dialogLabelId=this.datepickerInput.getOverlayLabelId(),Me._assignActions(this._actionsPortal,!1)}_openOverlay(){this._destroyOverlay();const Me=this.touchUi,mt=new Q.A8(nn,this._viewContainerRef),vt=this._overlayRef=(0,K.Y$)(this._injector,new K.rR({positionStrategy:Me?this._getDialogStrategy():this._getDropdownStrategy(),hasBackdrop:!0,backdropClass:[Me?"cdk-overlay-dark-backdrop":"mat-overlay-transparent-backdrop",this._backdropHarnessClass],direction:this._dir||"ltr",scrollStrategy:Me?(0,K.gA)(this._injector):this._scrollStrategy(),panelClass:"mat-datepicker-"+(Me?"dialog":"popup"),disableAnimations:this._animationsDisabled}));this._getCloseStream(vt).subscribe(ni=>{ni&&ni.preventDefault(),this.close()}),vt.keydownEvents().subscribe(ni=>{const Fi=ni.keyCode;(Fi===j.i7||Fi===j.n6||Fi===j.UQ||Fi===j.LE||Fi===j.w_||Fi===j.dB)&&ni.preventDefault()}),this._componentRef=vt.attach(mt),this._forwardContentValues(this._componentRef.instance),Me||(0,t.mal)(()=>{vt.updatePosition()},{injector:this._injector})}_destroyOverlay(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=this._componentRef=null)}_getDialogStrategy(){return(0,K.uA)(this._injector).centerHorizontally().centerVertically()}_getDropdownStrategy(){const Me=(0,K.$M)(this._injector,this.datepickerInput.getConnectedOverlayOrigin()).withTransformOriginOn(".mat-datepicker-content").withFlexibleDimensions(!1).withViewportMargin(8).withLockedPosition();return this._setConnectedPositions(Me)}_setConnectedPositions(Me){const mt="end"===this.xPosition?"end":"start",vt="start"===mt?"end":"start",ni="above"===this.yPosition?"bottom":"top",Fi="top"===ni?"bottom":"top";return Me.withPositions([{originX:mt,originY:Fi,overlayX:mt,overlayY:ni},{originX:mt,originY:ni,overlayX:mt,overlayY:Fi},{originX:vt,originY:Fi,overlayX:vt,overlayY:ni},{originX:vt,originY:ni,overlayX:vt,overlayY:Fi}])}_getCloseStream(Me){const mt=["ctrlKey","shiftKey","metaKey"];return(0,e.h)(Me.backdropClick(),Me.detachments(),Me.keydownEvents().pipe((0,$.p)(vt=>vt.keyCode===j._f&&!(0,U.rp)(vt)||this.datepickerInput&&(0,U.rp)(vt,"altKey")&&vt.keyCode===j.i7&&mt.every(ni=>!(0,U.rp)(vt,ni)))))}static \u0275fac=function(mt){return new(mt||zt)};static \u0275dir=t.FsC({type:zt,inputs:{calendarHeaderComponent:"calendarHeaderComponent",startAt:"startAt",startView:"startView",color:"color",touchUi:[2,"touchUi","touchUi",p.L39],disabled:[2,"disabled","disabled",p.L39],xPosition:"xPosition",yPosition:"yPosition",restoreFocus:[2,"restoreFocus","restoreFocus",p.L39],dateClass:"dateClass",panelClass:"panelClass",opened:[2,"opened","opened",p.L39]},outputs:{yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",openedStream:"opened",closedStream:"closed"},features:[t.OA$]})}return zt})(),zn=(()=>{class zt extends dn{static \u0275fac=(()=>{let Me;return function(vt){return(Me||(Me=t.xGo(zt)))(vt||zt)}})();static \u0275cmp=t.VBU({type:zt,selectors:[["mat-datepicker"]],exportAs:["matDatepicker"],features:[t.Jv_([se,{provide:dn,useExisting:zt}]),t.Vt3],decls:0,vars:0,template:function(mt,vt){},encapsulation:2,changeDetection:0})}return zt})();class It{target;targetElement;value;constructor(ji,Me){this.target=ji,this.targetElement=Me,this.value=this.target.value}}let Tt=(()=>{class zt{_elementRef=(0,i.WQX)(t.aKT);_dateAdapter=(0,i.WQX)(g.MJ,{optional:!0});_dateFormats=(0,i.WQX)(g.de,{optional:!0});_isInitialized;get value(){return this._model?this._getValueFromModel(this._model.selection):this._pendingValue}set value(Me){this._assignValueProgrammatically(Me)}_model;get disabled(){return!!this._disabled||this._parentDisabled()}set disabled(Me){const mt=Me,vt=this._elementRef.nativeElement;this._disabled!==mt&&(this._disabled=mt,this.stateChanges.next(void 0)),mt&&this._isInitialized&&vt.blur&&vt.blur()}_disabled;dateChange=new t.bkB;dateInput=new t.bkB;stateChanges=new S.B;_onTouched=()=>{};_validatorOnChange=()=>{};_cvaOnChange=()=>{};_valueChangesSubscription=c.yU.EMPTY;_localeSubscription=c.yU.EMPTY;_pendingValue;_parseValidator=()=>this._lastValueValid?null:{matDatepickerParse:{text:this._elementRef.nativeElement.value}};_filterValidator=Me=>{const mt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me.value));return!mt||this._matchesFilter(mt)?null:{matDatepickerFilter:!0}};_minValidator=Me=>{const mt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me.value)),vt=this._getMinDate();return!vt||!mt||this._dateAdapter.compareDate(vt,mt)<=0?null:{matDatepickerMin:{min:vt,actual:mt}}};_maxValidator=Me=>{const mt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me.value)),vt=this._getMaxDate();return!vt||!mt||this._dateAdapter.compareDate(vt,mt)>=0?null:{matDatepickerMax:{max:vt,actual:mt}}};_getValidators(){return[this._parseValidator,this._minValidator,this._maxValidator,this._filterValidator]}_registerModel(Me){this._model=Me,this._valueChangesSubscription.unsubscribe(),this._pendingValue&&this._assignValue(this._pendingValue),this._valueChangesSubscription=this._model.selectionChanged.subscribe(mt=>{if(this._shouldHandleChangeEvent(mt)){const vt=this._getValueFromModel(mt.selection);this._lastValueValid=this._isValidValue(vt),this._cvaOnChange(vt),this._onTouched(),this._formatValue(vt),this.dateInput.emit(new It(this,this._elementRef.nativeElement)),this.dateChange.emit(new It(this,this._elementRef.nativeElement))}})}_lastValueValid=!1;constructor(){this._localeSubscription=this._dateAdapter.localeChanges.subscribe(()=>{this._assignValueProgrammatically(this.value)})}ngAfterViewInit(){this._isInitialized=!0}ngOnChanges(Me){(function Ze(zt,ji){const Me=Object.keys(zt);for(let mt of Me){const{previousValue:vt,currentValue:ni}=zt[mt];if(!ji.isDateInstance(vt)||!ji.isDateInstance(ni))return!0;if(!ji.sameDate(vt,ni))return!0}return!1})(Me,this._dateAdapter)&&this.stateChanges.next(void 0)}ngOnDestroy(){this._valueChangesSubscription.unsubscribe(),this._localeSubscription.unsubscribe(),this.stateChanges.complete()}registerOnValidatorChange(Me){this._validatorOnChange=Me}validate(Me){return this._validator?this._validator(Me):null}writeValue(Me){this._assignValueProgrammatically(Me)}registerOnChange(Me){this._cvaOnChange=Me}registerOnTouched(Me){this._onTouched=Me}setDisabledState(Me){this.disabled=Me}_onKeydown(Me){(0,U.rp)(Me,"altKey")&&Me.keyCode===j.n6&&["ctrlKey","shiftKey","metaKey"].every(ni=>!(0,U.rp)(Me,ni))&&!this._elementRef.nativeElement.readOnly&&(this._openPopup(),Me.preventDefault())}_onInput(Me){const mt=Me.target.value,vt=this._lastValueValid;let ni=this._dateAdapter.parse(mt,this._dateFormats.parse.dateInput);this._lastValueValid=this._isValidValue(ni),ni=this._dateAdapter.getValidDateOrNull(ni);const Fi=!this._dateAdapter.sameDate(ni,this.value);!ni||Fi?this._cvaOnChange(ni):(mt&&!this.value&&this._cvaOnChange(ni),vt!==this._lastValueValid&&this._validatorOnChange()),Fi&&(this._assignValue(ni),this.dateInput.emit(new It(this,this._elementRef.nativeElement)))}_onChange(){this.dateChange.emit(new It(this,this._elementRef.nativeElement))}_onBlur(){this.value&&this._formatValue(this.value),this._onTouched()}_formatValue(Me){this._elementRef.nativeElement.value=null!=Me?this._dateAdapter.format(Me,this._dateFormats.display.dateInput):""}_assignValue(Me){this._model?(this._assignValueToModel(Me),this._pendingValue=null):this._pendingValue=Me}_isValidValue(Me){return!Me||this._dateAdapter.isValid(Me)}_parentDisabled(){return!1}_assignValueProgrammatically(Me){Me=this._dateAdapter.deserialize(Me),this._lastValueValid=this._isValidValue(Me),Me=this._dateAdapter.getValidDateOrNull(Me),this._assignValue(Me),this._formatValue(Me)}_matchesFilter(Me){const mt=this._getDateFilter();return!mt||mt(Me)}static \u0275fac=function(mt){return new(mt||zt)};static \u0275dir=t.FsC({type:zt,inputs:{value:"value",disabled:[2,"disabled","disabled",p.L39]},outputs:{dateChange:"dateChange",dateInput:"dateInput"},features:[t.OA$]})}return zt})();const Ve={provide:h.kq,useExisting:(0,i.Rfq)(()=>it),multi:!0},Fe={provide:h.cz,useExisting:(0,i.Rfq)(()=>it),multi:!0};let it=(()=>{class zt extends Tt{_formField=(0,i.WQX)(A.xb,{optional:!0});_closedSubscription=c.yU.EMPTY;_openedSubscription=c.yU.EMPTY;set matDatepicker(Me){Me&&(this._datepicker=Me,this._ariaOwns.set(Me.opened?Me.id:null),this._closedSubscription=Me.closedStream.subscribe(()=>{this._onTouched(),this._ariaOwns.set(null)}),this._openedSubscription=Me.openedStream.subscribe(()=>{this._ariaOwns.set(Me.id)}),this._registerModel(Me.registerInput(this)))}_datepicker;_ariaOwns=(0,i.vPA)(null);get min(){return this._min}set min(Me){const mt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me));this._dateAdapter.sameDate(mt,this._min)||(this._min=mt,this._validatorOnChange())}_min;get max(){return this._max}set max(Me){const mt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Me));this._dateAdapter.sameDate(mt,this._max)||(this._max=mt,this._validatorOnChange())}_max;get dateFilter(){return this._dateFilter}set dateFilter(Me){const mt=this._matchesFilter(this.value);this._dateFilter=Me,this._matchesFilter(this.value)!==mt&&this._validatorOnChange()}_dateFilter;_validator;constructor(){super(),this._validator=h.k0.compose(super._getValidators())}getConnectedOverlayOrigin(){return this._formField?this._formField.getConnectedOverlayOrigin():this._elementRef}getOverlayLabelId(){return this._formField?this._formField.getLabelId():this._elementRef.nativeElement.getAttribute("aria-labelledby")}getThemePalette(){return this._formField?this._formField.color:void 0}getStartValue(){return this.value}ngOnDestroy(){super.ngOnDestroy(),this._closedSubscription.unsubscribe(),this._openedSubscription.unsubscribe()}_openPopup(){this._datepicker&&this._datepicker.open()}_getValueFromModel(Me){return Me}_assignValueToModel(Me){this._model&&this._model.updateSelection(Me,this)}_getMinDate(){return this._min}_getMaxDate(){return this._max}_getDateFilter(){return this._dateFilter}_shouldHandleChangeEvent(Me){return Me.source!==this}static \u0275fac=function(mt){return new(mt||zt)};static \u0275dir=t.FsC({type:zt,selectors:[["input","matDatepicker",""]],hostAttrs:[1,"mat-datepicker-input"],hostVars:6,hostBindings:function(mt,vt){1&mt&&t.bIt("input",function(Fi){return vt._onInput(Fi)})("change",function(){return vt._onChange()})("blur",function(){return vt._onBlur()})("keydown",function(Fi){return vt._onKeydown(Fi)}),2&mt&&(t.Avn("disabled",vt.disabled),t.BMQ("aria-haspopup",vt._datepicker?"dialog":null)("aria-owns",vt._ariaOwns())("min",vt.min?vt._dateAdapter.toIso8601(vt.min):null)("max",vt.max?vt._dateAdapter.toIso8601(vt.max):null)("data-mat-calendar",vt._datepicker?vt._datepicker.id:null))},inputs:{matDatepicker:"matDatepicker",min:"min",max:"max",dateFilter:[0,"matDatepickerFilter","dateFilter"]},exportAs:["matDatepickerInput"],features:[t.Jv_([Ve,Fe,{provide:b.O,useExisting:zt}]),t.Vt3]})}return zt})(),bt=(()=>{class zt{static \u0275fac=function(mt){return new(mt||zt)};static \u0275dir=t.FsC({type:zt,selectors:[["","matDatepickerToggleIcon",""]]})}return zt})(),ut=(()=>{class zt{_intl=(0,i.WQX)(Pe);_changeDetectorRef=(0,i.WQX)(p.gRc);_stateChanges=c.yU.EMPTY;datepicker;tabIndex;ariaLabel;get disabled(){return void 0===this._disabled&&this.datepicker?this.datepicker.disabled:!!this._disabled}set disabled(Me){this._disabled=Me}_disabled;disableRipple;_customIcon;_button;constructor(){const Me=(0,i.WQX)(new p.ES_("tabindex"),{optional:!0}),mt=Number(Me);this.tabIndex=mt||0===mt?mt:null}ngOnChanges(Me){Me.datepicker&&this._watchStateChanges()}ngOnDestroy(){this._stateChanges.unsubscribe()}ngAfterContentInit(){this._watchStateChanges()}_open(Me){this.datepicker&&!this.disabled&&(this.datepicker.open(),Me.stopPropagation())}_watchStateChanges(){const Me=this.datepicker?this.datepicker.stateChanges:(0,T.of)(),mt=this.datepicker&&this.datepicker.datepickerInput?this.datepicker.datepickerInput.stateChanges:(0,T.of)(),vt=this.datepicker?(0,e.h)(this.datepicker.openedStream,this.datepicker.closedStream):(0,T.of)();this._stateChanges.unsubscribe(),this._stateChanges=(0,e.h)(this._intl.changes,Me,mt,vt).subscribe(()=>this._changeDetectorRef.markForCheck())}static \u0275fac=function(mt){return new(mt||zt)};static \u0275cmp=t.VBU({type:zt,selectors:[["mat-datepicker-toggle"]],contentQueries:function(mt,vt,ni){if(1&mt&&t.wni(ni,bt,5),2&mt){let Fi;t.mGM(Fi=t.lsd())&&(vt._customIcon=Fi.first)}},viewQuery:function(mt,vt){if(1&mt&&t.GBs(ve,5),2&mt){let ni;t.mGM(ni=t.lsd())&&(vt._button=ni.first)}},hostAttrs:[1,"mat-datepicker-toggle"],hostVars:8,hostBindings:function(mt,vt){1&mt&&t.bIt("click",function(Fi){return vt._open(Fi)}),2&mt&&(t.BMQ("tabindex",null)("data-mat-calendar",vt.datepicker?vt.datepicker.id:null),t.AVh("mat-datepicker-toggle-active",vt.datepicker&&vt.datepicker.opened)("mat-accent",vt.datepicker&&"accent"===vt.datepicker.color)("mat-warn",vt.datepicker&&"warn"===vt.datepicker.color))},inputs:{datepicker:[0,"for","datepicker"],tabIndex:"tabIndex",ariaLabel:[0,"aria-label","ariaLabel"],disabled:[2,"disabled","disabled",p.L39],disableRipple:"disableRipple"},exportAs:["matDatepickerToggle"],features:[t.OA$],ngContentSelectors:Ee,decls:4,vars:7,consts:[["button",""],["matIconButton","","type","button",3,"tabIndex","disabled","disableRipple"],["viewBox","0 0 24 24","width","24px","height","24px","fill","currentColor","focusable","false","aria-hidden","true",1,"mat-datepicker-toggle-default-icon"],["d","M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"]],template:function(mt,vt){1&mt&&(t.NAR(Oe),t.j41(0,"button",1,0),t.nVh(2,dt,2,0,":svg:svg",2),t.SdG(3),t.k0s()),2&mt&&(t.Y8G("tabIndex",vt.disabled?-1:vt.tabIndex)("disabled",vt.disabled)("disableRipple",vt.disableRipple),t.BMQ("aria-haspopup",vt.datepicker?"dialog":null)("aria-label",vt.ariaLabel||vt._intl.openCalendarLabel)("aria-expanded",vt.datepicker?vt.datepicker.opened:null),t.R7$(2),t.vxM(vt._customIcon?-1:2))},dependencies:[n.iY],styles:[".mat-datepicker-toggle{pointer-events:auto;color:var(--mat-datepicker-toggle-icon-color, var(--mat-sys-on-surface-variant))}.mat-datepicker-toggle button{color:inherit}.mat-datepicker-toggle-active{color:var(--mat-datepicker-toggle-active-state-icon-color, var(--mat-sys-primary))}@media(forced-colors: active){.mat-datepicker-toggle-default-icon{color:CanvasText}}\n"],encapsulation:2,changeDetection:0})}return zt})(),Ai=(()=>{class zt{static \u0275fac=function(mt){return new(mt||zt)};static \u0275mod=t.$C({type:zt});static \u0275inj=i.G2t({providers:[Pe,ln],imports:[D.Hl,K.z_,w.Pd,Q.jc,x.y,nn,ut,ci,k.Gj]})}return zt})()},25443:(Ae,ee,l)=>{"use strict";Ae.exports=function(t){var p=t.toLowerCase(),S=Ae.exports[p];if(!S)throw new Error(p+" is not supported (we accept pull requests)");return new S},Ae.exports.sha=l(48585),Ae.exports.sha1=l(21270),Ae.exports.sha224=l(42709),Ae.exports.sha256=l(32148),Ae.exports.sha384=l(51856),Ae.exports.sha512=l(3121)},25558:(Ae,ee,l)=>{"use strict";l.d(ee,{n:()=>S});var i=l(58750),t=l(39974),p=l(54360);function S(c,e){return(0,t.N)((T,g)=>{let d=null,w=0,m=!1;const P=()=>m&&!d&&g.complete();T.subscribe((0,p._)(g,M=>{d?.unsubscribe();let j=0;const U=w++;(0,i.Tg)(c(M,U)).subscribe(d=(0,p._)(g,K=>g.next(e?e(M,K,U,j++):K),()=>{d=null,P()}))},()=>{m=!0,P()}))})}},25596:(Ae,ee,l)=>{"use strict";l.d(ee,{Hu:()=>me,Lc:()=>j,MM:()=>K,RN:()=>w,dh:()=>m,m2:()=>M});var i=l(2615),t=l(73664),p=l(22466);const S=["*"],T=[[["","mat-card-avatar",""],["","matCardAvatar",""]],[["mat-card-title"],["mat-card-subtitle"],["","mat-card-title",""],["","mat-card-subtitle",""],["","matCardTitle",""],["","matCardSubtitle",""]],"*"],g=["[mat-card-avatar], [matCardAvatar]","mat-card-title, mat-card-subtitle,\n [mat-card-title], [mat-card-subtitle],\n [matCardTitle], [matCardSubtitle]","*"],d=new i.nKC("MAT_CARD_CONFIG");let w=(()=>{class Te{appearance;constructor(){const n=(0,i.WQX)(d,{optional:!0});this.appearance=n?.appearance||"raised"}static \u0275fac=function(o){return new(o||Te)};static \u0275cmp=t.VBU({type:Te,selectors:[["mat-card"]],hostAttrs:[1,"mat-mdc-card","mdc-card"],hostVars:8,hostBindings:function(o,f){2&o&&t.AVh("mat-mdc-card-outlined","outlined"===f.appearance)("mdc-card--outlined","outlined"===f.appearance)("mat-mdc-card-filled","filled"===f.appearance)("mdc-card--filled","filled"===f.appearance)},inputs:{appearance:"appearance"},exportAs:["matCard"],ngContentSelectors:S,decls:1,vars:0,template:function(o,f){1&o&&(t.NAR(),t.SdG(0))},styles:['.mat-mdc-card{display:flex;flex-direction:column;box-sizing:border-box;position:relative;border-style:solid;border-width:0;background-color:var(--mat-card-elevated-container-color, var(--mat-sys-surface-container-low));border-color:var(--mat-card-elevated-container-color, var(--mat-sys-surface-container-low));border-radius:var(--mat-card-elevated-container-shape, var(--mat-sys-corner-medium));box-shadow:var(--mat-card-elevated-container-elevation, var(--mat-sys-level1))}.mat-mdc-card::after{position:absolute;top:0;left:0;width:100%;height:100%;border:solid 1px rgba(0,0,0,0);content:"";display:block;pointer-events:none;box-sizing:border-box;border-radius:var(--mat-card-elevated-container-shape, var(--mat-sys-corner-medium))}.mat-mdc-card-outlined{background-color:var(--mat-card-outlined-container-color, var(--mat-sys-surface));border-radius:var(--mat-card-outlined-container-shape, var(--mat-sys-corner-medium));border-width:var(--mat-card-outlined-outline-width, 1px);border-color:var(--mat-card-outlined-outline-color, var(--mat-sys-outline-variant));box-shadow:var(--mat-card-outlined-container-elevation, var(--mat-sys-level0))}.mat-mdc-card-outlined::after{border:none}.mat-mdc-card-filled{background-color:var(--mat-card-filled-container-color, var(--mat-sys-surface-container-highest));border-radius:var(--mat-card-filled-container-shape, var(--mat-sys-corner-medium));box-shadow:var(--mat-card-filled-container-elevation, var(--mat-sys-level0))}.mdc-card__media{position:relative;box-sizing:border-box;background-repeat:no-repeat;background-position:center;background-size:cover}.mdc-card__media::before{display:block;content:""}.mdc-card__media:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.mdc-card__media:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.mat-mdc-card-actions{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;min-height:52px;padding:8px}.mat-mdc-card-title{font-family:var(--mat-card-title-text-font, var(--mat-sys-title-large-font));line-height:var(--mat-card-title-text-line-height, var(--mat-sys-title-large-line-height));font-size:var(--mat-card-title-text-size, var(--mat-sys-title-large-size));letter-spacing:var(--mat-card-title-text-tracking, var(--mat-sys-title-large-tracking));font-weight:var(--mat-card-title-text-weight, var(--mat-sys-title-large-weight))}.mat-mdc-card-subtitle{color:var(--mat-card-subtitle-text-color, var(--mat-sys-on-surface));font-family:var(--mat-card-subtitle-text-font, var(--mat-sys-title-medium-font));line-height:var(--mat-card-subtitle-text-line-height, var(--mat-sys-title-medium-line-height));font-size:var(--mat-card-subtitle-text-size, var(--mat-sys-title-medium-size));letter-spacing:var(--mat-card-subtitle-text-tracking, var(--mat-sys-title-medium-tracking));font-weight:var(--mat-card-subtitle-text-weight, var(--mat-sys-title-medium-weight))}.mat-mdc-card-title,.mat-mdc-card-subtitle{display:block;margin:0}.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-title,.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-subtitle{padding:16px 16px 0}.mat-mdc-card-header{display:flex;padding:16px 16px 0}.mat-mdc-card-content{display:block;padding:0 16px}.mat-mdc-card-content:first-child{padding-top:16px}.mat-mdc-card-content:last-child{padding-bottom:16px}.mat-mdc-card-title-group{display:flex;justify-content:space-between;width:100%}.mat-mdc-card-avatar{height:40px;width:40px;border-radius:50%;flex-shrink:0;margin-bottom:16px;object-fit:cover}.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-subtitle,.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-title{line-height:normal}.mat-mdc-card-sm-image{width:80px;height:80px}.mat-mdc-card-md-image{width:112px;height:112px}.mat-mdc-card-lg-image{width:152px;height:152px}.mat-mdc-card-xl-image{width:240px;height:240px}.mat-mdc-card-subtitle~.mat-mdc-card-title,.mat-mdc-card-title~.mat-mdc-card-subtitle,.mat-mdc-card-header .mat-mdc-card-header-text .mat-mdc-card-title,.mat-mdc-card-header .mat-mdc-card-header-text .mat-mdc-card-subtitle,.mat-mdc-card-title-group .mat-mdc-card-title,.mat-mdc-card-title-group .mat-mdc-card-subtitle{padding-top:0}.mat-mdc-card-content>:last-child:not(.mat-mdc-card-footer){margin-bottom:0}.mat-mdc-card-actions-align-end{justify-content:flex-end}\n'],encapsulation:2,changeDetection:0})}return Te})(),m=(()=>{class Te{static \u0275fac=function(o){return new(o||Te)};static \u0275dir=t.FsC({type:Te,selectors:[["mat-card-title"],["","mat-card-title",""],["","matCardTitle",""]],hostAttrs:[1,"mat-mdc-card-title"]})}return Te})(),M=(()=>{class Te{static \u0275fac=function(o){return new(o||Te)};static \u0275dir=t.FsC({type:Te,selectors:[["mat-card-content"]],hostAttrs:[1,"mat-mdc-card-content"]})}return Te})(),j=(()=>{class Te{static \u0275fac=function(o){return new(o||Te)};static \u0275dir=t.FsC({type:Te,selectors:[["mat-card-subtitle"],["","mat-card-subtitle",""],["","matCardSubtitle",""]],hostAttrs:[1,"mat-mdc-card-subtitle"]})}return Te})(),K=(()=>{class Te{static \u0275fac=function(o){return new(o||Te)};static \u0275cmp=t.VBU({type:Te,selectors:[["mat-card-header"]],hostAttrs:[1,"mat-mdc-card-header"],ngContentSelectors:g,decls:4,vars:0,consts:[[1,"mat-mdc-card-header-text"]],template:function(o,f){1&o&&(t.NAR(T),t.SdG(0),t.rj2(1,"div",0),t.SdG(2,1),t.eux(),t.SdG(3,2))},encapsulation:2,changeDetection:0})}return Te})(),me=(()=>{class Te{static \u0275fac=function(o){return new(o||Te)};static \u0275mod=t.$C({type:Te});static \u0275inj=i.G2t({imports:[p.y,p.y]})}return Te})()},26254:(Ae,ee,l)=>{const i=l(19089),S=i.getBCHDigit(1335);ee.getEncodedBits=function(e,T){const g=e.bit<<3|T;let d=g<<10;for(;i.getBCHDigit(d)-S>=0;)d^=1335<{"use strict";l.d(ee,{U:()=>p});var i=l(31397),t=l(33669);function p(S=1/0){return(0,i.Z)(t.D,S)}},26881:(Ae,ee,l)=>{"use strict";l.d(ee,{p:()=>S});var i=l(2615),t=l(73664),p=l(22466);let S=(()=>{class c{static \u0275fac=function(g){return new(g||c)};static \u0275mod=t.$C({type:c});static \u0275inj=i.G2t({imports:[p.y,p.y]})}return c})()},27054:(Ae,ee,l)=>{var i=l(83838),t=i.Buffer;function p(c,e){for(var T in c)e[T]=c[T]}function S(c,e,T){return t(c,e,T)}t.from&&t.alloc&&t.allocUnsafe&&t.allocUnsafeSlow?Ae.exports=i:(p(i,ee),ee.Buffer=S),S.prototype=Object.create(t.prototype),p(t,S),S.from=function(c,e,T){if("number"==typeof c)throw new TypeError("Argument must not be a number");return t(c,e,T)},S.alloc=function(c,e,T){if("number"!=typeof c)throw new TypeError("Argument must be a number");var g=t(c);return void 0!==e?"string"==typeof T?g.fill(e,T):g.fill(e):g.fill(0),g},S.allocUnsafe=function(c){if("number"!=typeof c)throw new TypeError("Argument must be a number");return t(c)},S.allocUnsafeSlow=function(c){if("number"!=typeof c)throw new TypeError("Argument must be a number");return i.SlowBuffer(c)}},27138:(Ae,ee,l)=>{"use strict";var i=l(68283),t=l(12901),p=l(95542),S=l(39210),c=i.sum32,e=i.sum32_4,T=i.sum32_5,g=p.ch32,d=p.maj32,w=p.s0_256,m=p.s1_256,P=p.g0_256,M=p.g1_256,j=t.BlockHash,U=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298];function K(){if(!(this instanceof K))return new K;j.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=U,this.W=new Array(64)}i.inherits(K,j),Ae.exports=K,K.blockSize=512,K.outSize=256,K.hmacStrength=192,K.padLength=64,K.prototype._update=function(G,Q){for(var $=this.W,ae=0;ae<16;ae++)$[ae]=G[Q+ae];for(;ae<$.length;ae++)$[ae]=e(M($[ae-2]),$[ae-7],P($[ae-15]),$[ae-16]);var ue=this.h[0],oe=this.h[1],he=this.h[2],me=this.h[3],Te=this.h[4],D=this.h[5],n=this.h[6],o=this.h[7];for(S(this.k.length===$.length),ae=0;ae<$.length;ae++){var f=T(o,m(Te),g(Te,D,n),this.k[ae],$[ae]),h=c(w(ue),d(ue,oe,he));o=n,n=D,D=Te,Te=c(me,f),me=he,he=oe,oe=ue,ue=c(f,h)}this.h[0]=c(this.h[0],ue),this.h[1]=c(this.h[1],oe),this.h[2]=c(this.h[2],he),this.h[3]=c(this.h[3],me),this.h[4]=c(this.h[4],Te),this.h[5]=c(this.h[5],D),this.h[6]=c(this.h[6],n),this.h[7]=c(this.h[7],o)},K.prototype._digest=function(G){return"hex"===G?i.toHex32(this.h,"big"):i.split32(this.h,"big")}},27203:(Ae,ee,l)=>{"use strict";var i=l(65891);Ae.exports=i.getPrototypeOf||null},27468:(Ae,ee,l)=>{"use strict";l.d(ee,{p:()=>g});var i=l(71985),t=l(93073),p=l(58750),S=l(9326),c=l(54360),e=l(6450),T=l(58496);function g(...d){const w=(0,S.ms)(d),{args:m,keys:P}=(0,t.D)(d),M=new i.c(j=>{const{length:U}=m;if(!U)return void j.complete();const K=new Array(U);let q=U,G=U;for(let Q=0;Q{$||($=!0,G--),K[Q]=ae},()=>q--,void 0,()=>{(!q||!$)&&(G||j.next(P?(0,T.e)(P,K):K),j.complete())}))}});return w?M.pipe((0,e.I)(w)):M}},27637:(Ae,ee,l)=>{function U(K){return Object.prototype.toString.call(K)}ee.isArray=function i(K){return Array.isArray?Array.isArray(K):"[object Array]"===U(K)},ee.isBoolean=function t(K){return"boolean"==typeof K},ee.isNull=function p(K){return null===K},ee.isNullOrUndefined=function S(K){return null==K},ee.isNumber=function c(K){return"number"==typeof K},ee.isString=function e(K){return"string"==typeof K},ee.isSymbol=function T(K){return"symbol"==typeof K},ee.isUndefined=function g(K){return void 0===K},ee.isRegExp=function d(K){return"[object RegExp]"===U(K)},ee.isObject=function w(K){return"object"==typeof K&&null!==K},ee.isDate=function m(K){return"[object Date]"===U(K)},ee.isError=function P(K){return"[object Error]"===U(K)||K instanceof Error},ee.isFunction=function M(K){return"function"==typeof K},ee.isPrimitive=function j(K){return null===K||"boolean"==typeof K||"number"==typeof K||"string"==typeof K||"symbol"==typeof K||typeof K>"u"},ee.isBuffer=l(83838).Buffer.isBuffer},27809:(Ae,ee,l)=>{"use strict";var t=l(2655).Buffer,p=l(15340);function S(c,e,T){c.copy(e,T)}Ae.exports=function(){function c(){(function i(c,e){if(!(c instanceof e))throw new TypeError("Cannot call a class as a function")})(this,c),this.head=null,this.tail=null,this.length=0}return c.prototype.push=function(T){var g={data:T,next:null};this.length>0?this.tail.next=g:this.head=g,this.tail=g,++this.length},c.prototype.unshift=function(T){var g={data:T,next:this.head};0===this.length&&(this.tail=g),this.head=g,++this.length},c.prototype.shift=function(){if(0!==this.length){var T=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,T}},c.prototype.clear=function(){this.head=this.tail=null,this.length=0},c.prototype.join=function(T){if(0===this.length)return"";for(var g=this.head,d=""+g.data;g=g.next;)d+=T+g.data;return d},c.prototype.concat=function(T){if(0===this.length)return t.alloc(0);for(var g=t.allocUnsafe(T>>>0),d=this.head,w=0;d;)S(d.data,g,w),w+=d.data.length,d=d.next;return g},c}(),p&&p.inspect&&p.inspect.custom&&(Ae.exports.prototype[p.inspect.custom]=function(){var c=p.inspect({length:this.length});return this.constructor.name+" "+c})},28203:(Ae,ee,l)=>{"use strict";l.d(ee,{jI:()=>S});var i=l(2615),t=l(73664);let S=(()=>{class c{static \u0275fac=function(g){return new(g||c)};static \u0275mod=t.$C({type:c});static \u0275inj=i.G2t({})}return c})()},28211:(Ae,ee,l)=>{"use strict";function i(t){return t instanceof Date&&!isNaN(t)}l.d(ee,{v:()=>i})},28430:(Ae,ee,l)=>{"use strict";l.d(ee,{$6:()=>B,$J:()=>r,$Q:()=>D,Aw:()=>g,C2:()=>m,CK:()=>ae,Db:()=>Ht,Do:()=>I,Dq:()=>be,ED:()=>ct,EM:()=>Ke,Eb:()=>Oe,Ew:()=>ge,Fd:()=>oe,GZ:()=>ve,Gy:()=>j,Gz:()=>Mt,Hm:()=>Te,Jx:()=>pe,Ml:()=>lt,N4:()=>he,NS:()=>e,NU:()=>Ce,Qj:()=>U,Qv:()=>Pe,Sn:()=>T,T4:()=>me,Uj:()=>ue,VK:()=>re,We:()=>G,XT:()=>P,Yi:()=>x,Zi:()=>$,a5:()=>Be,aB:()=>_e,cR:()=>b,dv:()=>n,ed:()=>Q,fy:()=>o,g6:()=>Le,gf:()=>S,ij:()=>k,jQ:()=>Ct,kQ:()=>nt,kX:()=>w,kv:()=>W,lg:()=>c,no:()=>p,qw:()=>Ee,sq:()=>K,uK:()=>_,vL:()=>f,w0:()=>h,x1:()=>d,y0:()=>dt,zU:()=>A});var i=l(59640),t=l(4416);const p=(0,i.VP)(t.TC.UPDATE_API_CALL_STATUS_CLN,(0,i.xk)()),S=(0,i.VP)(t.TC.RESET_CLN_STORE),c=(0,i.VP)(t.TC.FETCH_PAGE_SETTINGS_CLN),e=(0,i.VP)(t.TC.SET_PAGE_SETTINGS_CLN,(0,i.xk)()),T=(0,i.VP)(t.TC.SAVE_PAGE_SETTINGS_CLN,(0,i.xk)()),g=(0,i.VP)(t.TC.FETCH_INFO_CLN,(0,i.xk)()),d=(0,i.VP)(t.TC.SET_INFO_CLN,(0,i.xk)()),w=(0,i.VP)(t.TC.FETCH_FEE_RATES_CLN,(0,i.xk)()),m=(0,i.VP)(t.TC.SET_FEE_RATES_CLN,(0,i.xk)()),P=(0,i.VP)(t.TC.GET_NEW_ADDRESS_CLN,(0,i.xk)()),j=((0,i.VP)(t.TC.SET_NEW_ADDRESS_CLN,(0,i.xk)()),(0,i.VP)(t.TC.FETCH_PEERS_CLN)),U=(0,i.VP)(t.TC.SET_PEERS_CLN,(0,i.xk)()),K=(0,i.VP)(t.TC.SAVE_NEW_PEER_CLN,(0,i.xk)()),G=((0,i.VP)(t.TC.NEWLY_ADDED_PEER_CLN,(0,i.xk)()),(0,i.VP)(t.TC.ADD_PEER_CLN,(0,i.xk)())),Q=(0,i.VP)(t.TC.DETACH_PEER_CLN,(0,i.xk)()),$=(0,i.VP)(t.TC.REMOVE_PEER_CLN,(0,i.xk)()),ae=(0,i.VP)(t.TC.FETCH_PAYMENTS_CLN),ue=(0,i.VP)(t.TC.SET_PAYMENTS_CLN,(0,i.xk)()),oe=(0,i.VP)(t.TC.SEND_PAYMENT_CLN,(0,i.xk)()),he=(0,i.VP)(t.TC.SEND_PAYMENT_STATUS_CLN,(0,i.xk)()),me=(0,i.VP)(t.TC.GET_QUERY_ROUTES_CLN,(0,i.xk)()),Te=(0,i.VP)(t.TC.SET_QUERY_ROUTES_CLN,(0,i.xk)()),D=(0,i.VP)(t.TC.FETCH_CHANNELS_CLN),n=(0,i.VP)(t.TC.SET_CHANNELS_CLN,(0,i.xk)()),o=(0,i.VP)(t.TC.UPDATE_CHANNEL_CLN,(0,i.xk)()),f=(0,i.VP)(t.TC.SAVE_NEW_CHANNEL_CLN,(0,i.xk)()),h=(0,i.VP)(t.TC.CLOSE_CHANNEL_CLN,(0,i.xk)()),b=(0,i.VP)(t.TC.REMOVE_CHANNEL_CLN,(0,i.xk)()),A=(0,i.VP)(t.TC.PEER_LOOKUP_CLN,(0,i.xk)()),k=(0,i.VP)(t.TC.CHANNEL_LOOKUP_CLN,(0,i.xk)()),x=(0,i.VP)(t.TC.INVOICE_LOOKUP_CLN,(0,i.xk)()),r=(0,i.VP)(t.TC.SET_LOOKUP_CLN,(0,i.xk)()),_=(0,i.VP)(t.TC.GET_FORWARDING_HISTORY_CLN,(0,i.xk)()),W=(0,i.VP)(t.TC.SET_FORWARDING_HISTORY_CLN,(0,i.xk)()),I=(0,i.VP)(t.TC.FETCH_INVOICES_CLN),B=(0,i.VP)(t.TC.SET_INVOICES_CLN,(0,i.xk)()),re=(0,i.VP)(t.TC.SAVE_NEW_INVOICE_CLN,(0,i.xk)()),pe=(0,i.VP)(t.TC.ADD_INVOICE_CLN,(0,i.xk)()),be=(0,i.VP)(t.TC.UPDATE_INVOICE_CLN,(0,i.xk)()),Be=(0,i.VP)(t.TC.DELETE_EXPIRED_INVOICE_CLN,(0,i.xk)()),_e=(0,i.VP)(t.TC.SET_CHANNEL_TRANSACTION_CLN,(0,i.xk)()),Le=((0,i.VP)(t.TC.SET_CHANNEL_TRANSACTION_RES_CLN,(0,i.xk)()),(0,i.VP)(t.TC.FETCH_UTXO_BALANCES_CLN)),Ke=(0,i.VP)(t.TC.SET_UTXO_BALANCES_CLN,(0,i.xk)()),ge=(0,i.VP)(t.TC.FETCH_OFFER_INVOICE_CLN,(0,i.xk)()),ve=(0,i.VP)(t.TC.SET_OFFER_INVOICE_CLN,(0,i.xk)()),Oe=(0,i.VP)(t.TC.FETCH_OFFERS_CLN),Ee=(0,i.VP)(t.TC.SET_OFFERS_CLN,(0,i.xk)()),dt=(0,i.VP)(t.TC.SAVE_NEW_OFFER_CLN,(0,i.xk)()),nt=(0,i.VP)(t.TC.ADD_OFFER_CLN,(0,i.xk)()),Ct=(0,i.VP)(t.TC.DISABLE_OFFER_CLN,(0,i.xk)()),Mt=(0,i.VP)(t.TC.UPDATE_OFFER_CLN,(0,i.xk)()),lt=(0,i.VP)(t.TC.FETCH_OFFER_BOOKMARKS_CLN),Pe=(0,i.VP)(t.TC.SET_OFFER_BOOKMARKS_CLN,(0,i.xk)()),Ht=(0,i.VP)(t.TC.ADD_UPDATE_OFFER_BOOKMARK_CLN,(0,i.xk)()),ct=(0,i.VP)(t.TC.DELETE_OFFER_BOOKMARK_CLN,(0,i.xk)()),Ce=(0,i.VP)(t.TC.REMOVE_OFFER_BOOKMARK_CLN,(0,i.xk)())},28793:(Ae,ee,l)=>{"use strict";l.d(ee,{x:()=>c});var i=l(26365),p=l(9326),S=l(22806);function c(...e){return function t(){return(0,i.U)(1)}()((0,S.H)(e,(0,p.lI)(e)))}},29042:(Ae,ee,l)=>{"use strict";var i=l(88723),t=l(33556),p=l(3136),S=l(23401),c=l(35294),e=p.assert,T=l(60541),g=l(40484);function d(w){if(!(this instanceof d))return new d(w);"string"==typeof w&&(e(Object.prototype.hasOwnProperty.call(S,w),"Unknown curve "+w),w=S[w]),w instanceof S.PresetCurve&&(w={curve:w}),this.curve=w.curve.curve,this.n=this.curve.n,this.nh=this.n.ushrn(1),this.g=this.curve.g,this.g=w.curve.g,this.g.precompute(w.curve.n.bitLength()+1),this.hash=w.hash||w.curve.hash}Ae.exports=d,d.prototype.keyPair=function(m){return new T(this,m)},d.prototype.keyFromPrivate=function(m,P){return T.fromPrivate(this,m,P)},d.prototype.keyFromPublic=function(m,P){return T.fromPublic(this,m,P)},d.prototype.genKeyPair=function(m){m||(m={});for(var P=new t({hash:this.hash,pers:m.pers,persEnc:m.persEnc||"utf8",entropy:m.entropy||c(this.hash.hmacStrength),entropyEnc:m.entropy&&m.entropyEnc||"utf8",nonce:this.n.toArray()}),M=this.n.byteLength(),j=this.n.sub(new i(2));;){var U=new i(P.generate(M));if(!(U.cmp(j)>0))return U.iaddn(1),this.keyFromPrivate(U)}},d.prototype._truncateToN=function(m,P,M){var j;if(i.isBN(m)||"number"==typeof m)j=(m=new i(m,16)).byteLength();else if("object"==typeof m)j=m.length,m=new i(m,16);else{var U=m.toString();j=U.length+1>>>1,m=new i(U,16)}"number"!=typeof M&&(M=8*j);var K=M-this.n.bitLength();return K>0&&(m=m.ushrn(K)),!P&&m.cmp(this.n)>=0?m.sub(this.n):m},d.prototype.sign=function(m,P,M,j){if("object"==typeof M&&(j=M,M=null),j||(j={}),"string"!=typeof m&&"number"!=typeof m&&!i.isBN(m)){e("object"==typeof m&&m&&"number"==typeof m.length,"Expected message to be an array-like, a hex string, or a BN instance"),e(m.length>>>0===m.length);for(var U=0;U=0)){var oe=this.g.mul(ue);if(!oe.isInfinity()){var he=oe.getX(),me=he.umod(this.n);if(0!==me.cmpn(0)){var Te=ue.invm(this.n).mul(me.mul(P.getPrivate()).iadd(m));if(0!==(Te=Te.umod(this.n)).cmpn(0)){var D=(oe.getY().isOdd()?1:0)|(0!==he.cmp(me)?2:0);return j.canonical&&Te.cmp(this.nh)>0&&(Te=this.n.sub(Te),D^=1),new g({r:me,s:Te,recoveryParam:D})}}}}}},d.prototype.verify=function(m,P,M,j,U){U||(U={}),m=this._truncateToN(m,!1,U.msgBitLength),M=this.keyFromPublic(M,j);var K=(P=new g(P,"hex")).r,q=P.s;if(K.cmpn(1)<0||K.cmp(this.n)>=0||q.cmpn(1)<0||q.cmp(this.n)>=0)return!1;var ae,G=q.invm(this.n),Q=G.mul(m).umod(this.n),$=G.mul(K).umod(this.n);return this.curve._maxwellTrick?!(ae=this.g.jmulAdd(Q,M.getPublic(),$)).isInfinity()&&ae.eqXToP(K):!(ae=this.g.mulAdd(Q,M.getPublic(),$)).isInfinity()&&0===ae.getX().umod(this.n).cmp(K)},d.prototype.recoverPubKey=function(w,m,P,M){e((3&P)===P,"The recovery param is more than two bits"),m=new g(m,M);var j=this.n,U=new i(w),K=m.r,q=m.s,G=1&P,Q=P>>1;if(K.cmp(this.curve.p.umod(this.curve.n))>=0&&Q)throw new Error("Unable to find sencond key candinate");K=this.curve.pointFromX(Q?K.add(this.curve.n):K,G);var $=m.r.invm(j),ae=j.sub(U).mul($).umod(j),ue=q.mul($).umod(j);return this.g.mulAdd(ae,K,ue)},d.prototype.getKeyRecoveryParam=function(w,m,P,M){if(null!==(m=new g(m,M)).recoveryParam)return m.recoveryParam;for(var j=0;j<4;j++){var U;try{U=this.recoverPubKey(w,m,j)}catch{continue}if(U.eq(P))return j}throw new Error("Unable to find valid recovery factor")}},29157:(Ae,ee,l)=>{"use strict";l.d(ee,{U:()=>t});var i=l(73664);let t=(()=>{var p;class S{constructor(){this.copied=new i.bkB}onClick(e){e.preventDefault(),this.payload&&(navigator.clipboard?this.copyUsingClipboardAPI():this.copyUsingFallbackMethod())}copyUsingFallbackMethod(){const e=document.createElement("textarea");e.value=this.payload,document.body.appendChild(e),e.select();try{document.execCommand("copy")?this.copied.emit(this.payload.toString()):this.copied.emit("Error could not copy text.")}finally{document.body.removeChild(e)}}copyUsingClipboardAPI(){navigator.clipboard.writeText(this.payload.toString()).then(()=>{this.copied.emit(this.payload.toString())}).catch(e=>{this.copied.emit("Error could not copy text: "+JSON.stringify(e))})}static#e=p=()=>(this.\u0275fac=function(T){return new(T||S)},this.\u0275dir=i.FsC({type:S,selectors:[["","rtlClipboard",""]],hostBindings:function(T,g){1&T&&i.bIt("click",function(w){return g.onClick(w)})},inputs:{payload:"payload"},outputs:{copied:"copied"},standalone:!1}))}return p(),S})()},29330:(Ae,ee,l)=>{"use strict";l.d(ee,{$R:()=>ci,Nl:()=>oe,Qq:()=>Le,Sx:()=>ui,ZZ:()=>It,a7:()=>Ht,q1:()=>Ze});var i=l(10467),t=l(2615),p=l(73664),S=l(70274),c=l(5964),e=l(70980),T=l(96354),g=l(25558),d=l(71985),m=(l(22806),l(7673)),P=l(52512);class M{}class j{}class U{headers;normalizedNames=new Map;lazyInit;lazyUpdate=null;constructor(it){it?"string"==typeof it?this.lazyInit=()=>{this.headers=new Map,it.split("\n").forEach(bt=>{const ut=bt.indexOf(":");if(ut>0){const jt=bt.slice(0,ut),ai=bt.slice(ut+1).trim();this.addHeaderEntry(jt,ai)}})}:typeof Headers<"u"&&it instanceof Headers?(this.headers=new Map,it.forEach((bt,ut)=>{this.addHeaderEntry(ut,bt)})):this.lazyInit=()=>{this.headers=new Map,Object.entries(it).forEach(([bt,ut])=>{this.setHeaderEntries(bt,ut)})}:this.headers=new Map}has(it){return this.init(),this.headers.has(it.toLowerCase())}get(it){this.init();const bt=this.headers.get(it.toLowerCase());return bt&&bt.length>0?bt[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(it){return this.init(),this.headers.get(it.toLowerCase())||null}append(it,bt){return this.clone({name:it,value:bt,op:"a"})}set(it,bt){return this.clone({name:it,value:bt,op:"s"})}delete(it,bt){return this.clone({name:it,value:bt,op:"d"})}maybeSetNormalizedName(it,bt){this.normalizedNames.has(bt)||this.normalizedNames.set(bt,it)}init(){this.lazyInit&&(this.lazyInit instanceof U?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(it=>this.applyUpdate(it)),this.lazyUpdate=null))}copyFrom(it){it.init(),Array.from(it.headers.keys()).forEach(bt=>{this.headers.set(bt,it.headers.get(bt)),this.normalizedNames.set(bt,it.normalizedNames.get(bt))})}clone(it){const bt=new U;return bt.lazyInit=this.lazyInit&&this.lazyInit instanceof U?this.lazyInit:this,bt.lazyUpdate=(this.lazyUpdate||[]).concat([it]),bt}applyUpdate(it){const bt=it.name.toLowerCase();switch(it.op){case"a":case"s":let ut=it.value;if("string"==typeof ut&&(ut=[ut]),0===ut.length)return;this.maybeSetNormalizedName(it.name,bt);const jt=("a"===it.op?this.headers.get(bt):void 0)||[];jt.push(...ut),this.headers.set(bt,jt);break;case"d":const ai=it.value;if(ai){let pi=this.headers.get(bt);if(!pi)return;pi=pi.filter(ki=>-1===ai.indexOf(ki)),0===pi.length?(this.headers.delete(bt),this.normalizedNames.delete(bt)):this.headers.set(bt,pi)}else this.headers.delete(bt),this.normalizedNames.delete(bt)}}addHeaderEntry(it,bt){const ut=it.toLowerCase();this.maybeSetNormalizedName(it,ut),this.headers.has(ut)?this.headers.get(ut).push(bt):this.headers.set(ut,[bt])}setHeaderEntries(it,bt){const ut=(Array.isArray(bt)?bt:[bt]).map(ai=>ai.toString()),jt=it.toLowerCase();this.headers.set(jt,ut),this.maybeSetNormalizedName(it,jt)}forEach(it){this.init(),Array.from(this.normalizedNames.keys()).forEach(bt=>it(this.normalizedNames.get(bt),this.headers.get(bt)))}}class q{encodeKey(it){return ae(it)}encodeValue(it){return ae(it)}decodeKey(it){return decodeURIComponent(it)}decodeValue(it){return decodeURIComponent(it)}}const Q=/%(\d[a-f0-9])/gi,$={40:"@","3A":":",24:"$","2C":",","3B":";","3D":"=","3F":"?","2F":"/"};function ae(Fe){return encodeURIComponent(Fe).replace(Q,(it,bt)=>$[bt]??it)}function ue(Fe){return`${Fe}`}class oe{map;encoder;updates=null;cloneFrom=null;constructor(it={}){if(this.encoder=it.encoder||new q,it.fromString){if(it.fromObject)throw new t.buA(2805,!1);this.map=function G(Fe,it){const bt=new Map;return Fe.length>0&&Fe.replace(/^\?/,"").split("&").forEach(jt=>{const ai=jt.indexOf("="),[pi,ki]=-1==ai?[it.decodeKey(jt),""]:[it.decodeKey(jt.slice(0,ai)),it.decodeValue(jt.slice(ai+1))],Ki=bt.get(pi)||[];Ki.push(ki),bt.set(pi,Ki)}),bt}(it.fromString,this.encoder)}else it.fromObject?(this.map=new Map,Object.keys(it.fromObject).forEach(bt=>{const ut=it.fromObject[bt],jt=Array.isArray(ut)?ut.map(ue):[ue(ut)];this.map.set(bt,jt)})):this.map=null}has(it){return this.init(),this.map.has(it)}get(it){this.init();const bt=this.map.get(it);return bt?bt[0]:null}getAll(it){return this.init(),this.map.get(it)||null}keys(){return this.init(),Array.from(this.map.keys())}append(it,bt){return this.clone({param:it,value:bt,op:"a"})}appendAll(it){const bt=[];return Object.keys(it).forEach(ut=>{const jt=it[ut];Array.isArray(jt)?jt.forEach(ai=>{bt.push({param:ut,value:ai,op:"a"})}):bt.push({param:ut,value:jt,op:"a"})}),this.clone(bt)}set(it,bt){return this.clone({param:it,value:bt,op:"s"})}delete(it,bt){return this.clone({param:it,value:bt,op:"d"})}toString(){return this.init(),this.keys().map(it=>{const bt=this.encoder.encodeKey(it);return this.map.get(it).map(ut=>bt+"="+this.encoder.encodeValue(ut)).join("&")}).filter(it=>""!==it).join("&")}clone(it){const bt=new oe({encoder:this.encoder});return bt.cloneFrom=this.cloneFrom||this,bt.updates=(this.updates||[]).concat(it),bt}init(){null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(it=>this.map.set(it,this.cloneFrom.map.get(it))),this.updates.forEach(it=>{switch(it.op){case"a":case"s":const bt=("a"===it.op?this.map.get(it.param):void 0)||[];bt.push(ue(it.value)),this.map.set(it.param,bt);break;case"d":if(void 0===it.value){this.map.delete(it.param);break}{let ut=this.map.get(it.param)||[];const jt=ut.indexOf(ue(it.value));-1!==jt&&ut.splice(jt,1),ut.length>0?this.map.set(it.param,ut):this.map.delete(it.param)}}}),this.cloneFrom=this.updates=null)}}class me{map=new Map;set(it,bt){return this.map.set(it,bt),this}get(it){return this.map.has(it)||this.map.set(it,it.defaultValue()),this.map.get(it)}delete(it){return this.map.delete(it),this}has(it){return this.map.has(it)}keys(){return this.map.keys()}}function D(Fe){return typeof ArrayBuffer<"u"&&Fe instanceof ArrayBuffer}function n(Fe){return typeof Blob<"u"&&Fe instanceof Blob}function o(Fe){return typeof FormData<"u"&&Fe instanceof FormData}const h="Content-Type",b="Accept",A="X-Request-URL",k="text/plain",x="application/json",r=`${x}, ${k}, */*`;class _{url;body=null;headers;context;reportProgress=!1;withCredentials=!1;credentials;keepalive=!1;cache;priority;mode;redirect;referrer;integrity;responseType="json";method;params;urlWithParams;transferCache;timeout;constructor(it,bt,ut,jt){let ai;if(this.url=bt,this.method=it.toUpperCase(),function Te(Fe){switch(Fe){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}(this.method)||jt?(this.body=void 0!==ut?ut:null,ai=jt):ai=ut,ai){if(this.reportProgress=!!ai.reportProgress,this.withCredentials=!!ai.withCredentials,this.keepalive=!!ai.keepalive,ai.responseType&&(this.responseType=ai.responseType),ai.headers&&(this.headers=ai.headers),ai.context&&(this.context=ai.context),ai.params&&(this.params=ai.params),ai.priority&&(this.priority=ai.priority),ai.cache&&(this.cache=ai.cache),ai.credentials&&(this.credentials=ai.credentials),"number"==typeof ai.timeout){if(ai.timeout<1||!Number.isInteger(ai.timeout))throw new t.buA(2822,"");this.timeout=ai.timeout}ai.mode&&(this.mode=ai.mode),ai.redirect&&(this.redirect=ai.redirect),ai.integrity&&(this.integrity=ai.integrity),ai.referrer&&(this.referrer=ai.referrer),this.transferCache=ai.transferCache}if(this.headers??=new U,this.context??=new me,this.params){const pi=this.params.toString();if(0===pi.length)this.urlWithParams=bt;else{const ki=bt.indexOf("?");this.urlWithParams=bt+(-1===ki?"?":kiMe.set(mt,it.setHeaders[mt]),Yi)),it.setParams&&(zt=Object.keys(it.setParams).reduce((Me,mt)=>Me.set(mt,it.setParams[mt]),zt)),new _(bt,ut,Gi,{params:zt,headers:Yi,context:ji,reportProgress:Ai,responseType:jt,withCredentials:Ci,transferCache:Fn,keepalive:ai,cache:ki,priority:pi,timeout:xi,mode:Ki,redirect:Ji,credentials:Dn,referrer:En,integrity:An})}}var W=function(Fe){return Fe[Fe.Sent=0]="Sent",Fe[Fe.UploadProgress=1]="UploadProgress",Fe[Fe.ResponseHeader=2]="ResponseHeader",Fe[Fe.DownloadProgress=3]="DownloadProgress",Fe[Fe.Response=4]="Response",Fe[Fe.User=5]="User",Fe}(W||{});class I{headers;status;statusText;url;ok;type;redirected;constructor(it,bt=200,ut="OK"){this.headers=it.headers||new U,this.status=void 0!==it.status?it.status:bt,this.statusText=it.statusText||ut,this.url=it.url||null,this.redirected=it.redirected,this.ok=this.status>=200&&this.status<300}}class B extends I{constructor(it={}){super(it)}type=W.ResponseHeader;clone(it={}){return new B({headers:it.headers||this.headers,status:void 0!==it.status?it.status:this.status,statusText:it.statusText||this.statusText,url:it.url||this.url||void 0})}}class re extends I{body;constructor(it={}){super(it),this.body=void 0!==it.body?it.body:null}type=W.Response;clone(it={}){return new re({body:void 0!==it.body?it.body:this.body,headers:it.headers||this.headers,status:void 0!==it.status?it.status:this.status,statusText:it.statusText||this.statusText,url:it.url||this.url||void 0,redirected:it.redirected??this.redirected})}}class pe extends I{name="HttpErrorResponse";message;error;ok=!1;constructor(it){super(it,0,"Unknown Error"),this.message=this.status>=200&&this.status<300?`Http failure during parsing for ${it.url||"(unknown url)"}`:`Http failure response for ${it.url||"(unknown url)"}: ${it.status} ${it.statusText}`,this.error=it.error||null}}function ye(Fe,it){return{body:it,headers:Fe.headers,context:Fe.context,observe:Fe.observe,params:Fe.params,reportProgress:Fe.reportProgress,responseType:Fe.responseType,withCredentials:Fe.withCredentials,credentials:Fe.credentials,transferCache:Fe.transferCache,timeout:Fe.timeout,keepalive:Fe.keepalive,priority:Fe.priority,cache:Fe.cache,mode:Fe.mode,redirect:Fe.redirect,integrity:Fe.integrity,referrer:Fe.referrer}}let Le=(()=>{class Fe{handler;constructor(bt){this.handler=bt}request(bt,ut,jt={}){let ai;if(bt instanceof _)ai=bt;else{let Ki,Ji;Ki=jt.headers instanceof U?jt.headers:new U(jt.headers),jt.params&&(Ji=jt.params instanceof oe?jt.params:new oe({fromObject:jt.params})),ai=new _(bt,ut,void 0!==jt.body?jt.body:null,{headers:Ki,context:jt.context,params:Ji,reportProgress:jt.reportProgress,responseType:jt.responseType||"json",withCredentials:jt.withCredentials,transferCache:jt.transferCache,keepalive:jt.keepalive,priority:jt.priority,cache:jt.cache,mode:jt.mode,redirect:jt.redirect,credentials:jt.credentials,referrer:jt.referrer,integrity:jt.integrity,timeout:jt.timeout})}const pi=(0,m.of)(ai).pipe((0,S.H)(Ki=>this.handler.handle(Ki)));if(bt instanceof _||"events"===jt.observe)return pi;const ki=pi.pipe((0,c.p)(Ki=>Ki instanceof re));switch(jt.observe||"body"){case"body":switch(ai.responseType){case"arraybuffer":return ki.pipe((0,T.T)(Ki=>{if(null!==Ki.body&&!(Ki.body instanceof ArrayBuffer))throw new t.buA(2806,!1);return Ki.body}));case"blob":return ki.pipe((0,T.T)(Ki=>{if(null!==Ki.body&&!(Ki.body instanceof Blob))throw new t.buA(2807,!1);return Ki.body}));case"text":return ki.pipe((0,T.T)(Ki=>{if(null!==Ki.body&&"string"!=typeof Ki.body)throw new t.buA(2808,!1);return Ki.body}));default:return ki.pipe((0,T.T)(Ki=>Ki.body))}case"response":return ki;default:throw new t.buA(2809,!1)}}delete(bt,ut={}){return this.request("DELETE",bt,ut)}get(bt,ut={}){return this.request("GET",bt,ut)}head(bt,ut={}){return this.request("HEAD",bt,ut)}jsonp(bt,ut){return this.request("JSONP",bt,{params:(new oe).append(ut,"JSONP_CALLBACK"),observe:"body",responseType:"json"})}options(bt,ut={}){return this.request("OPTIONS",bt,ut)}patch(bt,ut,jt={}){return this.request("PATCH",bt,ye(jt,ut))}post(bt,ut,jt={}){return this.request("POST",bt,ye(jt,ut))}put(bt,ut,jt={}){return this.request("PUT",bt,ye(jt,ut))}static \u0275fac=function(ut){return new(ut||Fe)(t.KVO(M))};static \u0275prov=t.jDH({token:Fe,factory:Fe.\u0275fac})}return Fe})();const Ke=/^\)\]\}',?\n/;function ge(Fe){if(Fe.url)return Fe.url;const it=A.toLocaleLowerCase();return Fe.headers.get(it)}const ve=new t.nKC("");let Oe=(()=>{class Fe{fetchImpl=(0,t.WQX)(Ee,{optional:!0})?.fetch??((...bt)=>globalThis.fetch(...bt));ngZone=(0,t.WQX)(p.SKi);destroyRef=(0,t.WQX)(t.abz);handle(bt){return new d.c(ut=>{const jt=new AbortController;let ai;return this.doRequest(bt,jt.signal,ut).then(dt,pi=>ut.error(new pe({error:pi}))),bt.timeout&&(ai=this.ngZone.runOutsideAngular(()=>setTimeout(()=>{jt.signal.aborted||jt.abort(new DOMException("signal timed out","TimeoutError"))},bt.timeout))),()=>{void 0!==ai&&clearTimeout(ai),jt.abort()}})}doRequest(bt,ut,jt){var ai=this;return(0,i.A)(function*(){const pi=ai.createRequestInit(bt);let ki;try{const Gi=ai.ngZone.runOutsideAngular(()=>ai.fetchImpl(bt.urlWithParams,{signal:ut,...pi}));(function Ct(Fe){Fe.then(dt,dt)})(Gi),jt.next({type:W.Sent}),ki=yield Gi}catch(Gi){return void jt.error(new pe({error:Gi,status:Gi.status??0,statusText:Gi.statusText,url:bt.urlWithParams,headers:Gi.headers}))}const Ki=new U(ki.headers),Ji=ki.statusText,Dn=ge(ki)??bt.urlWithParams;let En=ki.status,An=null;if(bt.reportProgress&&jt.next(new B({headers:Ki,status:En,statusText:Ji,url:Dn})),ki.body){const Gi=ki.headers.get("content-length"),Ci=[],Ai=ki.body.getReader();let zt,ji,Yi=0;const Me=typeof Zone<"u"&&Zone.current;let mt=!1;if(yield ai.ngZone.runOutsideAngular((0,i.A)(function*(){for(;;){if(ai.destroyRef.destroyed){yield Ai.cancel(),mt=!0;break}const{done:ni,value:Fi}=yield Ai.read();if(ni)break;if(Ci.push(Fi),Yi+=Fi.length,bt.reportProgress){ji="text"===bt.responseType?(ji??"")+(zt??=new TextDecoder).decode(Fi,{stream:!0}):void 0;const kn=()=>jt.next({type:W.DownloadProgress,total:Gi?+Gi:void 0,loaded:Yi,partialText:ji});Me?Me.run(kn):kn()}}})),mt)return void jt.complete();const vt=ai.concatChunks(Ci,Yi);try{const ni=ki.headers.get(h)??"";An=ai.parseBody(bt,vt,ni,En)}catch(ni){return void jt.error(new pe({error:ni,headers:new U(ki.headers),status:ki.status,statusText:ki.statusText,url:ge(ki)??bt.urlWithParams}))}}0===En&&(En=An?200:0);const xi=ki.redirected;En>=200&&En<300?(jt.next(new re({body:An,headers:Ki,status:En,statusText:Ji,url:Dn,redirected:xi})),jt.complete()):jt.error(new pe({error:An,headers:Ki,status:En,statusText:Ji,url:Dn,redirected:xi}))})()}parseBody(bt,ut,jt,ai){switch(bt.responseType){case"json":const pi=(new TextDecoder).decode(ut).replace(Ke,"");if(""===pi)return null;try{return JSON.parse(pi)}catch(ki){if(ai<200||ai>=300)return pi;throw ki}case"text":return(new TextDecoder).decode(ut);case"blob":return new Blob([ut],{type:jt});case"arraybuffer":return ut.buffer}}createRequestInit(bt){const ut={};let jt;if(jt=bt.credentials,bt.withCredentials&&(jt="include"),bt.headers.forEach((ai,pi)=>ut[ai]=pi.join(",")),bt.headers.has(b)||(ut[b]=r),!bt.headers.has(h)){const ai=bt.detectContentTypeHeader();null!==ai&&(ut[h]=ai)}return{body:bt.serializeBody(),method:bt.method,headers:ut,credentials:jt,keepalive:bt.keepalive,cache:bt.cache,priority:bt.priority,mode:bt.mode,redirect:bt.redirect,referrer:bt.referrer,integrity:bt.integrity}}concatChunks(bt,ut){const jt=new Uint8Array(ut);let ai=0;for(const pi of bt)jt.set(pi,ai),ai+=pi.length;return jt}static \u0275fac=function(ut){return new(ut||Fe)};static \u0275prov=t.jDH({token:Fe,factory:Fe.\u0275fac})}return Fe})();class Ee{}function dt(){}function Mt(Fe,it){return it(Fe)}function lt(Fe,it){return(bt,ut)=>it.intercept(bt,{handle:jt=>Fe(jt,ut)})}const Ht=new t.nKC(""),ct=new t.nKC(""),Ce=new t.nKC(""),ze=new t.nKC("",{providedIn:"root",factory:()=>!0});function Z(){let Fe=null;return(it,bt)=>{null===Fe&&(Fe=((0,t.WQX)(Ht,{optional:!0})??[]).reduceRight(lt,Mt));const ut=(0,t.WQX)(t.u5s);if((0,t.WQX)(ze)){const ai=ut.add();return Fe(it,bt).pipe((0,e.j)(ai))}return Fe(it,bt)}}let fe=(()=>{class Fe extends M{backend;injector;chain=null;pendingTasks=(0,t.WQX)(t.u5s);contributeToStability=(0,t.WQX)(ze);constructor(bt,ut){super(),this.backend=bt,this.injector=ut}handle(bt){if(null===this.chain){const ut=Array.from(new Set([...this.injector.get(ct),...this.injector.get(Ce,[])]));this.chain=ut.reduceRight((jt,ai)=>function Pe(Fe,it,bt){return(ut,jt)=>(0,t.N4e)(bt,()=>it(ut,ai=>Fe(ai,jt)))}(jt,ai,this.injector),Mt)}if(this.contributeToStability){const ut=this.pendingTasks.add();return this.chain(bt,jt=>this.backend.handle(jt)).pipe((0,e.j)(ut))}return this.chain(bt,ut=>this.backend.handle(ut))}static \u0275fac=function(ut){return new(ut||Fe)(t.KVO(j),t.KVO(t.uvJ))};static \u0275prov=t.jDH({token:Fe,factory:Fe.\u0275fac})}return Fe})();const ke=/^\)\]\}',?\n/,Ue=RegExp(`^${A}:`,"m");let yt=(()=>{class Fe{xhrFactory;constructor(bt){this.xhrFactory=bt}handle(bt){if("JSONP"===bt.method)throw new t.buA(-2800,!1);const ut=this.xhrFactory;return(0,m.of)(null).pipe((0,g.n)(()=>new d.c(ai=>{const pi=ut.build();if(pi.open(bt.method,bt.urlWithParams),bt.withCredentials&&(pi.withCredentials=!0),bt.headers.forEach((Ci,Ai)=>pi.setRequestHeader(Ci,Ai.join(","))),bt.headers.has(b)||pi.setRequestHeader(b,r),!bt.headers.has(h)){const Ci=bt.detectContentTypeHeader();null!==Ci&&pi.setRequestHeader(h,Ci)}if(bt.timeout&&(pi.timeout=bt.timeout),bt.responseType){const Ci=bt.responseType.toLowerCase();pi.responseType="json"!==Ci?Ci:"text"}const ki=bt.serializeBody();let Ki=null;const Ji=()=>{if(null!==Ki)return Ki;const Ci=pi.statusText||"OK",Ai=new U(pi.getAllResponseHeaders()),Yi=function Ne(Fe){return"responseURL"in Fe&&Fe.responseURL?Fe.responseURL:Ue.test(Fe.getAllResponseHeaders())?Fe.getResponseHeader(A):null}(pi)||bt.url;return Ki=new B({headers:Ai,status:pi.status,statusText:Ci,url:Yi}),Ki},Dn=()=>{let{headers:Ci,status:Ai,statusText:Yi,url:zt}=Ji(),ji=null;204!==Ai&&(ji=typeof pi.response>"u"?pi.responseText:pi.response),0===Ai&&(Ai=ji?200:0);let Me=Ai>=200&&Ai<300;if("json"===bt.responseType&&"string"==typeof ji){const mt=ji;ji=ji.replace(ke,"");try{ji=""!==ji?JSON.parse(ji):null}catch(vt){ji=mt,Me&&(Me=!1,ji={error:vt,text:ji})}}Me?(ai.next(new re({body:ji,headers:Ci,status:Ai,statusText:Yi,url:zt||void 0})),ai.complete()):ai.error(new pe({error:ji,headers:Ci,status:Ai,statusText:Yi,url:zt||void 0}))},En=Ci=>{const{url:Ai}=Ji(),Yi=new pe({error:Ci,status:pi.status||0,statusText:pi.statusText||"Unknown Error",url:Ai||void 0});ai.error(Yi)};let An=En;bt.timeout&&(An=Ci=>{const{url:Ai}=Ji(),Yi=new pe({error:new DOMException("Request timed out","TimeoutError"),status:pi.status||0,statusText:pi.statusText||"Request timeout",url:Ai||void 0});ai.error(Yi)});let Fn=!1;const xi=Ci=>{Fn||(ai.next(Ji()),Fn=!0);let Ai={type:W.DownloadProgress,loaded:Ci.loaded};Ci.lengthComputable&&(Ai.total=Ci.total),"text"===bt.responseType&&pi.responseText&&(Ai.partialText=pi.responseText),ai.next(Ai)},Gi=Ci=>{let Ai={type:W.UploadProgress,loaded:Ci.loaded};Ci.lengthComputable&&(Ai.total=Ci.total),ai.next(Ai)};return pi.addEventListener("load",Dn),pi.addEventListener("error",En),pi.addEventListener("timeout",An),pi.addEventListener("abort",En),bt.reportProgress&&(pi.addEventListener("progress",xi),null!==ki&&pi.upload&&pi.upload.addEventListener("progress",Gi)),pi.send(ki),ai.next({type:W.Sent}),()=>{pi.removeEventListener("error",En),pi.removeEventListener("abort",En),pi.removeEventListener("load",Dn),pi.removeEventListener("timeout",An),bt.reportProgress&&(pi.removeEventListener("progress",xi),null!==ki&&pi.upload&&pi.upload.removeEventListener("progress",Gi)),pi.readyState!==pi.DONE&&pi.abort()}})))}static \u0275fac=function(ut){return new(ut||Fe)(t.KVO(P.N))};static \u0275prov=t.jDH({token:Fe,factory:Fe.\u0275fac})}return Fe})();const Vt=new t.nKC(""),ti=new t.nKC("",{providedIn:"root",factory:()=>"XSRF-TOKEN"}),Nt=new t.nKC("",{providedIn:"root",factory:()=>"X-XSRF-TOKEN"});class Et{}let Jt=(()=>{class Fe{doc;cookieName;lastCookieString="";lastToken=null;parseCount=0;constructor(bt,ut){this.doc=bt,this.cookieName=ut}getToken(){const bt=this.doc.cookie||"";return bt!==this.lastCookieString&&(this.parseCount++,this.lastToken=(0,P.b)(bt,this.cookieName),this.lastCookieString=bt),this.lastToken}static \u0275fac=function(ut){return new(ut||Fe)(t.KVO(t.qQL),t.KVO(ti))};static \u0275prov=t.jDH({token:Fe,factory:Fe.\u0275fac})}return Fe})();const qe=/^(?:https?:)?\/\//i;function $e(Fe,it){if(!(0,t.WQX)(Vt)||"GET"===Fe.method||"HEAD"===Fe.method||qe.test(Fe.url))return it(Fe);const bt=(0,t.WQX)(Et).getToken(),ut=(0,t.WQX)(Nt);return null!=bt&&!Fe.headers.has(ut)&&(Fe=Fe.clone({headers:Fe.headers.set(ut,bt)})),it(Fe)}var vi=function(Fe){return Fe[Fe.Interceptors=0]="Interceptors",Fe[Fe.LegacyInterceptors=1]="LegacyInterceptors",Fe[Fe.CustomXsrfConfiguration=2]="CustomXsrfConfiguration",Fe[Fe.NoXsrfProtection=3]="NoXsrfProtection",Fe[Fe.JsonpSupport=4]="JsonpSupport",Fe[Fe.RequestsMadeViaParent=5]="RequestsMadeViaParent",Fe[Fe.Fetch=6]="Fetch",Fe}(vi||{});function ei(Fe,it){return{\u0275kind:Fe,\u0275providers:it}}function ci(...Fe){const it=[Le,yt,fe,{provide:M,useExisting:fe},{provide:j,useFactory:()=>(0,t.WQX)(ve,{optional:!0})??(0,t.WQX)(yt)},{provide:ct,useValue:$e,multi:!0},{provide:Vt,useValue:!0},{provide:Et,useClass:Jt}];for(const bt of Fe)it.push(...bt.\u0275providers);return(0,t.EmA)(it)}const oi=new t.nKC("");function ui(){return ei(vi.LegacyInterceptors,[{provide:oi,useFactory:Z},{provide:ct,useExisting:oi,multi:!0}])}function It(){return ei(vi.Fetch,[Oe,{provide:ve,useExisting:Oe},{provide:j,useExisting:Oe}])}let Ze=(()=>{class Fe{static \u0275fac=function(ut){return new(ut||Fe)};static \u0275mod=p.$C({type:Fe});static \u0275inj=t.G2t({providers:[ci(ui())]})}return Fe})()},29340:(Ae,ee,l)=>{"use strict";l.d(ee,{Ce:()=>Q,DJ:()=>Pe,EA:()=>G,PV:()=>q,SL:()=>$,Ui:()=>j,ZH:()=>oe,cL:()=>di,hN:()=>ht,qH:()=>Mt,r3:()=>ue});var i=l(2615),t=l(73664),p=l(60177),S=l(71985),c=l(21413),e=l(84412),T=l(57786),g=l(24545),d=l(5964),w=l(88141);const P={provide:t.iLQ,useFactory:function m(kt,Rt){return()=>{if((0,p.UE)(Rt)){const le=Array.from(kt.querySelectorAll(`[class*=${M}]`)),te=/\bflex-layout-.+?\b/g;le.forEach(ce=>{ce.classList.contains(`${M}ssr`)&&ce.parentNode?ce.parentNode.removeChild(ce):ce.className.replace(te,"")})}}},deps:[i.qQL,t.Agw],multi:!0},M="flex-layout-";let j=(()=>{class kt{}return kt.\u0275fac=function(le){return new(le||kt)},kt.\u0275mod=t.$C({type:kt}),kt.\u0275inj=i.G2t({providers:[P]}),kt})();class U{constructor(Rt=!1,le="all",te="",ce="",se=0){this.matches=Rt,this.mediaQuery=le,this.mqAlias=te,this.suffix=ce,this.priority=se,this.property=""}clone(){return new U(this.matches,this.mediaQuery,this.mqAlias,this.suffix)}}let K=(()=>{class kt{constructor(){this.stylesheet=new Map}addStyleToElement(le,te,ce){const se=this.stylesheet.get(le);se?se.set(te,ce):this.stylesheet.set(le,new Map([[te,ce]]))}clearStyles(){this.stylesheet.clear()}getStyleForElement(le,te){const ce=this.stylesheet.get(le);let se="";if(ce){const ke=ce.get(te);("number"==typeof ke||"string"==typeof ke)&&(se=ke+"")}return se}}return kt.\u0275fac=function(le){return new(le||kt)},kt.\u0275prov=i.jDH({token:kt,factory:kt.\u0275fac,providedIn:"root"}),kt})();const q={addFlexToParent:!0,addOrientationBps:!1,disableDefaultBps:!1,disableVendorPrefixes:!1,serverLoaded:!1,useColumnBasisZero:!0,printWithBreakpoints:[],mediaTriggerAutoRestore:!0,ssrObserveBreakpoints:[],multiplier:void 0,defaultUnit:"px",detectLayoutDisplay:!1},G=new i.nKC("Flex Layout token, config options for the library",{providedIn:"root",factory:()=>q}),Q=new i.nKC("FlexLayoutServerLoaded",{providedIn:"root",factory:()=>!1}),$=new i.nKC("Flex Layout token, collect all breakpoints into one provider",{providedIn:"root",factory:()=>null});function ae(kt,Rt){return kt=kt?.clone()??new U,Rt&&(kt.mqAlias=Rt.alias,kt.mediaQuery=Rt.mediaQuery,kt.suffix=Rt.suffix,kt.priority=Rt.priority),kt}class ue{constructor(){this.shouldCache=!0}sideEffect(Rt,le,te){}}let oe=(()=>{class kt{constructor(le,te,ce,se){this._serverStylesheet=le,this._serverModuleLoaded=te,this._platformId=ce,this.layoutConfig=se}applyStyleToElement(le,te,ce=null){let se={};"string"==typeof te&&(se[te]=ce,te=se),se=this.layoutConfig.disableVendorPrefixes?te:(0,g.O5)(te),this._applyMultiValueStyleToElement(se,le)}applyStyleToElements(le,te=[]){const ce=this.layoutConfig.disableVendorPrefixes?le:(0,g.O5)(le);te.forEach(se=>{this._applyMultiValueStyleToElement(ce,se)})}getFlowDirection(le){const te="flex-direction";let ce=this.lookupStyle(le,te);return[ce||"row",this.lookupInlineStyle(le,te)||(0,p.Vy)(this._platformId)&&this._serverModuleLoaded?ce:""]}hasWrap(le){return"wrap"===this.lookupStyle(le,"flex-wrap")}lookupAttributeValue(le,te){return le.getAttribute(te)??""}lookupInlineStyle(le,te){return(0,p.UE)(this._platformId)?le.style.getPropertyValue(te):function he(kt,Rt){return D(kt)[Rt]??""}(le,te)}lookupStyle(le,te,ce=!1){let se="";return le&&((se=this.lookupInlineStyle(le,te))||((0,p.UE)(this._platformId)?ce||(se=getComputedStyle(le).getPropertyValue(te)):this._serverModuleLoaded&&(se=this._serverStylesheet.getStyleForElement(le,te)))),se?se.trim():""}_applyMultiValueStyleToElement(le,te){Object.keys(le).sort().forEach(ce=>{const se=le[ce],ke=Array.isArray(se)?se:[se];ke.sort();for(let Ue of ke)Ue=Ue?Ue+"":"",(0,p.UE)(this._platformId)||!this._serverModuleLoaded?(0,p.UE)(this._platformId)?te.style.setProperty(ce,Ue):me(te,ce,Ue):this._serverStylesheet.addStyleToElement(te,ce,Ue)})}}return kt.\u0275fac=function(le){return new(le||kt)(i.KVO(K),i.KVO(Q),i.KVO(t.Agw),i.KVO(G))},kt.\u0275prov=i.jDH({token:kt,factory:kt.\u0275fac,providedIn:"root"}),kt})();function me(kt,Rt,le){Rt=Rt.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();const te=D(kt);te[Rt]=le??"",function Te(kt,Rt){let le="";for(const te in Rt)Rt[te]&&(le+=`${te}:${Rt[te]};`);kt.setAttribute("style",le)}(kt,te)}function D(kt){const Rt={},le=kt.getAttribute("style");if(le){const te=le.split(/;+/g);for(let ce=0;ce0){const ke=se.indexOf(":");if(-1===ke)throw new Error(`Invalid CSS style: ${se}`);Rt[se.substr(0,ke).trim()]=se.substr(ke+1).trim()}}}return Rt}function n(kt,Rt){return(Rt&&Rt.priority||0)-(kt&&kt.priority||0)}function o(kt,Rt){return(kt.priority||0)-(Rt.priority||0)}let f=(()=>{class kt{constructor(le,te,ce){this._zone=le,this._platformId=te,this._document=ce,this.source=new e.t(new U(!0)),this.registry=new Map,this.pendingRemoveListenerFns=[],this._observable$=this.source.asObservable()}get activations(){const le=[];return this.registry.forEach((te,ce)=>{te.matches&&le.push(ce)}),le}isActive(le){return this.registry.get(le)?.matches??this.registerQuery(le).some(ce=>ce.matches)}observe(le,te=!1){if(le&&le.length){const ce=this._observable$.pipe((0,d.p)(ke=>!te||le.indexOf(ke.mediaQuery)>-1)),se=new S.c(ke=>{const Ue=this.registerQuery(le);if(Ue.length){const Ne=Ue.pop();Ue.forEach(Kt=>{ke.next(Kt)}),this.source.next(Ne)}ke.complete()});return(0,T.h)(se,ce)}return this._observable$}registerQuery(le){const te=Array.isArray(le)?le:[le],ce=[];return function b(kt,Rt){const le=kt.filter(te=>!h[te]);if(le.length>0){const te=le.join(", ");try{const ce=Rt.createElement("style");ce.setAttribute("type","text/css"),ce.styleSheet||ce.appendChild(Rt.createTextNode(`\n/*\n @angular/flex-layout - workaround for possible browser quirk with mediaQuery listeners\n see http://bit.ly/2sd4HMP\n*/\n@media ${te} {.fx-query-test{ }}\n`)),Rt.head.appendChild(ce),le.forEach(se=>h[se]=ce)}catch(ce){console.error(ce)}}}(te,this._document),te.forEach(se=>{const ke=Ne=>{this._zone.run(()=>this.source.next(new U(Ne.matches,se)))};let Ue=this.registry.get(se);Ue||(Ue=this.buildMQL(se),Ue.addListener(ke),this.pendingRemoveListenerFns.push(()=>Ue.removeListener(ke)),this.registry.set(se,Ue)),Ue.matches&&ce.push(new U(!0,se))}),ce}ngOnDestroy(){let le;for(;le=this.pendingRemoveListenerFns.pop();)le()}buildMQL(le){return function k(kt,Rt){return Rt&&window.matchMedia("all").addListener?window.matchMedia(kt):function A(kt){const Rt=new EventTarget;return Rt.matches="all"===kt||""===kt,Rt.media=kt,Rt.addListener=()=>{},Rt.removeListener=()=>{},Rt.addEventListener=()=>{},Rt.dispatchEvent=()=>!1,Rt.onchange=null,Rt}(kt)}(le,(0,p.UE)(this._platformId))}}return kt.\u0275fac=function(le){return new(le||kt)(i.KVO(t.SKi),i.KVO(t.Agw),i.KVO(i.qQL))},kt.\u0275prov=i.jDH({token:kt,factory:kt.\u0275fac,providedIn:"root"}),kt})();const h={},x=[{alias:"xs",mediaQuery:"screen and (min-width: 0px) and (max-width: 599.98px)",priority:1e3},{alias:"sm",mediaQuery:"screen and (min-width: 600px) and (max-width: 959.98px)",priority:900},{alias:"md",mediaQuery:"screen and (min-width: 960px) and (max-width: 1279.98px)",priority:800},{alias:"lg",mediaQuery:"screen and (min-width: 1280px) and (max-width: 1919.98px)",priority:700},{alias:"xl",mediaQuery:"screen and (min-width: 1920px) and (max-width: 4999.98px)",priority:600},{alias:"lt-sm",overlapping:!0,mediaQuery:"screen and (max-width: 599.98px)",priority:950},{alias:"lt-md",overlapping:!0,mediaQuery:"screen and (max-width: 959.98px)",priority:850},{alias:"lt-lg",overlapping:!0,mediaQuery:"screen and (max-width: 1279.98px)",priority:750},{alias:"lt-xl",overlapping:!0,priority:650,mediaQuery:"screen and (max-width: 1919.98px)"},{alias:"gt-xs",overlapping:!0,mediaQuery:"screen and (min-width: 600px)",priority:-950},{alias:"gt-sm",overlapping:!0,mediaQuery:"screen and (min-width: 960px)",priority:-850},{alias:"gt-md",overlapping:!0,mediaQuery:"screen and (min-width: 1280px)",priority:-750},{alias:"gt-lg",overlapping:!0,mediaQuery:"screen and (min-width: 1920px)",priority:-650}],r="(orientation: portrait) and (max-width: 599.98px)",_="(orientation: landscape) and (max-width: 959.98px)",W="(orientation: portrait) and (min-width: 600px) and (max-width: 839.98px)",I="(orientation: landscape) and (min-width: 960px) and (max-width: 1279.98px)",B="(orientation: portrait) and (min-width: 840px)",re="(orientation: landscape) and (min-width: 1280px)",pe={HANDSET:`${r}, ${_}`,TABLET:`${W} , ${I}`,WEB:`${B}, ${re} `,HANDSET_PORTRAIT:`${r}`,TABLET_PORTRAIT:`${W} `,WEB_PORTRAIT:`${B}`,HANDSET_LANDSCAPE:`${_}`,TABLET_LANDSCAPE:`${I}`,WEB_LANDSCAPE:`${re}`},be=[{alias:"handset",priority:2e3,mediaQuery:pe.HANDSET},{alias:"handset.landscape",priority:2e3,mediaQuery:pe.HANDSET_LANDSCAPE},{alias:"handset.portrait",priority:2e3,mediaQuery:pe.HANDSET_PORTRAIT},{alias:"tablet",priority:2100,mediaQuery:pe.TABLET},{alias:"tablet.landscape",priority:2100,mediaQuery:pe.TABLET_LANDSCAPE},{alias:"tablet.portrait",priority:2100,mediaQuery:pe.TABLET_PORTRAIT},{alias:"web",priority:2200,mediaQuery:pe.WEB,overlapping:!0},{alias:"web.landscape",priority:2200,mediaQuery:pe.WEB_LANDSCAPE,overlapping:!0},{alias:"web.portrait",priority:2200,mediaQuery:pe.WEB_PORTRAIT,overlapping:!0}],Be=/(\.|-|_)/g;function _e(kt){let Rt=kt.length>0?kt.charAt(0):"",le=kt.length>1?kt.slice(1):"";return Rt.toUpperCase()+le}const ge=new i.nKC("Token (@angular/flex-layout) Breakpoints",{providedIn:"root",factory:()=>{const kt=(0,i.WQX)($),Rt=(0,i.WQX)(G),le=[].concat.apply([],(kt||[]).map(ce=>Array.isArray(ce)?ce:[ce]));return function Ke(kt,Rt=[]){const le={};return kt.forEach(te=>{le[te.alias]=te}),Rt.forEach(te=>{le[te.alias]?(0,g.C5)(le[te.alias],te):le[te.alias]=te}),function Le(kt){return kt.forEach(Rt=>{Rt.suffix||(Rt.suffix=function ye(kt){return kt.replace(Be,"|").split("|").map(_e).join("")}(Rt.alias),Rt.overlapping=!!Rt.overlapping)}),kt}(Object.keys(le).map(te=>le[te]))}((Rt.disableDefaultBps?[]:x).concat(Rt.addOrientationBps?be:[]),le)}});let ve=(()=>{class kt{constructor(le){this.findByMap=new Map,this.items=[...le].sort(o)}findByAlias(le){return le?this.findWithPredicate(le,te=>te.alias===le):null}findByQuery(le){return this.findWithPredicate(le,te=>te.mediaQuery===le)}get overlappings(){return this.items.filter(le=>le.overlapping)}get aliases(){return this.items.map(le=>le.alias)}get suffixes(){return this.items.map(le=>le?.suffix??"")}findWithPredicate(le,te){let ce=this.findByMap.get(le);return ce||(ce=this.items.find(te)??null,this.findByMap.set(le,ce)),ce??null}}return kt.\u0275fac=function(le){return new(le||kt)(i.KVO(ge))},kt.\u0275prov=i.jDH({token:kt,factory:kt.\u0275fac,providedIn:"root"}),kt})();const Oe="print",Ee={alias:Oe,mediaQuery:Oe,priority:1e3};let dt=(()=>{class kt{constructor(le,te,ce){this.breakpoints=le,this.layoutConfig=te,this._document=ce,this.registeredBeforeAfterPrintHooks=!1,this.isPrintingBeforeAfterEvent=!1,this.beforePrintEventListeners=[],this.afterPrintEventListeners=[],this.formerActivations=null,this.isPrinting=!1,this.queue=new nt,this.deactivations=[]}withPrintQuery(le){return[...le,Oe]}isPrintEvent(le){return le.mediaQuery.startsWith(Oe)}get printAlias(){return[...this.layoutConfig.printWithBreakpoints??[]]}get printBreakPoints(){return this.printAlias.map(le=>this.breakpoints.findByAlias(le)).filter(le=>null!==le)}getEventBreakpoints({mediaQuery:le}){const te=this.breakpoints.findByQuery(le);return(te?[...this.printBreakPoints,te]:this.printBreakPoints).sort(n)}updateEvent(le){let te=this.breakpoints.findByQuery(le.mediaQuery);return this.isPrintEvent(le)&&(te=this.getEventBreakpoints(le)[0],le.mediaQuery=te?.mediaQuery??""),ae(le,te)}registerBeforeAfterPrintHooks(le){if(!this._document.defaultView||this.registeredBeforeAfterPrintHooks)return;this.registeredBeforeAfterPrintHooks=!0;const te=()=>{this.isPrinting||(this.isPrintingBeforeAfterEvent=!0,this.startPrinting(le,this.getEventBreakpoints(new U(!0,Oe))),le.updateStyles())},ce=()=>{this.isPrintingBeforeAfterEvent=!1,this.isPrinting&&(this.stopPrinting(le),le.updateStyles())};this._document.defaultView.addEventListener("beforeprint",te),this._document.defaultView.addEventListener("afterprint",ce),this.beforePrintEventListeners.push(te),this.afterPrintEventListeners.push(ce)}interceptEvents(le){return te=>{this.isPrintEvent(te)?te.matches&&!this.isPrinting?(this.startPrinting(le,this.getEventBreakpoints(te)),le.updateStyles()):!te.matches&&this.isPrinting&&!this.isPrintingBeforeAfterEvent&&(this.stopPrinting(le),le.updateStyles()):this.collectActivations(le,te)}}blockPropagation(){return le=>!(this.isPrinting||this.isPrintEvent(le))}startPrinting(le,te){this.isPrinting=!0,this.formerActivations=le.activatedBreakpoints,le.activatedBreakpoints=this.queue.addPrintBreakpoints(te)}stopPrinting(le){le.activatedBreakpoints=this.deactivations,this.deactivations=[],this.formerActivations=null,this.queue.clear(),this.isPrinting=!1}collectActivations(le,te){if(!this.isPrinting||this.isPrintingBeforeAfterEvent){if(!this.isPrintingBeforeAfterEvent)return void(this.deactivations=[]);if(!te.matches){const ce=this.breakpoints.findByQuery(te.mediaQuery);if(ce){const se=this.formerActivations&&this.formerActivations.includes(ce),ke=!this.formerActivations&&le.activatedBreakpoints.includes(ce);(se||ke)&&(this.deactivations.push(ce),this.deactivations.sort(n))}}}}ngOnDestroy(){this._document.defaultView&&(this.beforePrintEventListeners.forEach(le=>this._document.defaultView.removeEventListener("beforeprint",le)),this.afterPrintEventListeners.forEach(le=>this._document.defaultView.removeEventListener("afterprint",le)))}}return kt.\u0275fac=function(le){return new(le||kt)(i.KVO(ve),i.KVO(G),i.KVO(i.qQL))},kt.\u0275prov=i.jDH({token:kt,factory:kt.\u0275fac,providedIn:"root"}),kt})();class nt{constructor(){this.printBreakpoints=[]}addPrintBreakpoints(Rt){return Rt.push(Ee),Rt.sort(n),Rt.forEach(le=>this.addBreakpoint(le)),this.printBreakpoints}addBreakpoint(Rt){Rt&&void 0===this.printBreakpoints.find(te=>te.mediaQuery===Rt.mediaQuery)&&(this.printBreakpoints=function Ct(kt){return kt?.mediaQuery.startsWith(Oe)??!1}(Rt)?[Rt,...this.printBreakpoints]:[...this.printBreakpoints,Rt])}clear(){this.printBreakpoints=[]}}let Mt=(()=>{class kt{constructor(le,te,ce){this.matchMedia=le,this.breakpoints=te,this.hook=ce,this._useFallbacks=!0,this._activatedBreakpoints=[],this.elementMap=new Map,this.elementKeyMap=new WeakMap,this.watcherMap=new WeakMap,this.updateMap=new WeakMap,this.clearMap=new WeakMap,this.subject=new c.B,this.observeActivations()}get activatedAlias(){return this.activatedBreakpoints[0]?.alias??""}set activatedBreakpoints(le){this._activatedBreakpoints=[...le]}get activatedBreakpoints(){return[...this._activatedBreakpoints]}set useFallbacks(le){this._useFallbacks=le}onMediaChange(le){const te=this.findByQuery(le.mediaQuery);if(te){le=ae(le,te);const ce=this.activatedBreakpoints.indexOf(te);le.matches&&-1===ce?(this._activatedBreakpoints.push(te),this._activatedBreakpoints.sort(n),this.updateStyles()):!le.matches&&-1!==ce&&(this._activatedBreakpoints.splice(ce,1),this._activatedBreakpoints.sort(n),this.updateStyles())}}init(le,te,ce,se,ke=[]){lt(this.updateMap,le,te,ce),lt(this.clearMap,le,te,se),this.buildElementKeyMap(le,te),this.watchExtraTriggers(le,te,ke)}getValue(le,te,ce){const se=this.elementMap.get(le);if(se){const ke=void 0!==ce?se.get(ce):this.getActivatedValues(se,te);if(ke)return ke.get(te)}}hasValue(le,te){const ce=this.elementMap.get(le);if(ce){const se=this.getActivatedValues(ce,te);if(se)return void 0!==se.get(te)||!1}return!1}setValue(le,te,ce,se){let ke=this.elementMap.get(le);if(ke){const Ne=(ke.get(se)??new Map).set(te,ce);ke.set(se,Ne),this.elementMap.set(le,ke)}else ke=(new Map).set(se,(new Map).set(te,ce)),this.elementMap.set(le,ke);const Ue=this.getValue(le,te);void 0!==Ue&&this.updateElement(le,te,Ue)}trackValue(le,te){return this.subject.asObservable().pipe((0,d.p)(ce=>ce.element===le&&ce.key===te))}updateStyles(){this.elementMap.forEach((le,te)=>{const ce=new Set(this.elementKeyMap.get(te));let se=this.getActivatedValues(le);se&&se.forEach((ke,Ue)=>{this.updateElement(te,Ue,ke),ce.delete(Ue)}),ce.forEach(ke=>{if(se=this.getActivatedValues(le,ke),se){const Ue=se.get(ke);this.updateElement(te,ke,Ue)}else this.clearElement(te,ke)})})}clearElement(le,te){const ce=this.clearMap.get(le);if(ce){const se=ce.get(te);se&&(se(),this.subject.next({element:le,key:te,value:""}))}}updateElement(le,te,ce){const se=this.updateMap.get(le);if(se){const ke=se.get(te);ke&&(ke(ce),this.subject.next({element:le,key:te,value:ce}))}}releaseElement(le){const te=this.watcherMap.get(le);te&&(te.forEach(se=>se.unsubscribe()),this.watcherMap.delete(le));const ce=this.elementMap.get(le);ce&&(ce.forEach((se,ke)=>ce.delete(ke)),this.elementMap.delete(le))}triggerUpdate(le,te){const ce=this.elementMap.get(le);if(ce){const se=this.getActivatedValues(ce,te);se&&(te?this.updateElement(le,te,se.get(te)):se.forEach((ke,Ue)=>this.updateElement(le,Ue,ke)))}}buildElementKeyMap(le,te){let ce=this.elementKeyMap.get(le);ce||(ce=new Set,this.elementKeyMap.set(le,ce)),ce.add(te)}watchExtraTriggers(le,te,ce){if(ce&&ce.length){let se=this.watcherMap.get(le);if(se||(se=new Map,this.watcherMap.set(le,se)),!se.get(te)){const Ue=(0,T.h)(...ce).subscribe(()=>{const Ne=this.getValue(le,te);this.updateElement(le,te,Ne)});se.set(te,Ue)}}}findByQuery(le){return this.breakpoints.findByQuery(le)}getActivatedValues(le,te){for(let se=0;sete.mediaQuery);this.hook.registerBeforeAfterPrintHooks(this),this.matchMedia.observe(this.hook.withPrintQuery(le)).pipe((0,w.M)(this.hook.interceptEvents(this)),(0,d.p)(this.hook.blockPropagation())).subscribe(this.onMediaChange.bind(this))}}return kt.\u0275fac=function(le){return new(le||kt)(i.KVO(f),i.KVO(ve),i.KVO(dt))},kt.\u0275prov=i.jDH({token:kt,factory:kt.\u0275fac,providedIn:"root"}),kt})();function lt(kt,Rt,le,te){if(void 0!==te){const ce=kt.get(Rt)??new Map;ce.set(le,te),kt.set(Rt,ce)}}let Pe=(()=>{class kt{constructor(le,te,ce,se){this.elementRef=le,this.styleBuilder=te,this.styler=ce,this.marshal=se,this.DIRECTIVE_KEY="",this.inputs=[],this.mru={},this.destroySubject=new c.B,this.styleCache=new Map}get parentElement(){return this.elementRef.nativeElement.parentElement}get nativeElement(){return this.elementRef.nativeElement}get activatedValue(){return this.marshal.getValue(this.nativeElement,this.DIRECTIVE_KEY)}set activatedValue(le){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,le,this.marshal.activatedAlias)}ngOnChanges(le){Object.keys(le).forEach(te=>{if(-1!==this.inputs.indexOf(te)){const ce=te.split(".").slice(1).join(".");this.setValue(le[te].currentValue,ce)}})}ngOnDestroy(){this.destroySubject.next(),this.destroySubject.complete(),this.marshal.releaseElement(this.nativeElement)}init(le=[]){this.marshal.init(this.elementRef.nativeElement,this.DIRECTIVE_KEY,this.updateWithValue.bind(this),this.clearStyles.bind(this),le)}addStyles(le,te){const ce=this.styleBuilder,se=ce.shouldCache;let ke=this.styleCache.get(le);(!ke||!se)&&(ke=ce.buildStyles(le,te),se&&this.styleCache.set(le,ke)),this.mru={...ke},this.applyStyleToElement(ke),ce.sideEffect(le,ke,te)}clearStyles(){Object.keys(this.mru).forEach(le=>{this.mru[le]=""}),this.applyStyleToElement(this.mru),this.mru={},this.currentValue=void 0}triggerUpdate(){this.marshal.triggerUpdate(this.nativeElement,this.DIRECTIVE_KEY)}getFlexFlowDirection(le,te=!1){if(le){const[ce,se]=this.styler.getFlowDirection(le);if(!se&&te){const ke=(0,g.uG)(ce);this.styler.applyStyleToElements(ke,[le])}return ce.trim()}return"row"}hasWrap(le){return this.styler.hasWrap(le)}applyStyleToElement(le,te,ce=this.nativeElement){this.styler.applyStyleToElement(ce,le,te)}setValue(le,te){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,le,te)}updateWithValue(le){this.currentValue!==le&&(this.addStyles(le),this.currentValue=le)}}return kt.\u0275fac=function(le){return new(le||kt)(t.rXU(t.aKT),t.rXU(ue),t.rXU(oe),t.rXU(Mt))},kt.\u0275dir=t.FsC({type:kt,standalone:!1,features:[t.OA$]}),kt})();function ht(kt,Rt="1",le="1"){let te=[Rt,le,kt],ce=kt.indexOf("calc");if(ce>0){te[2]=li(kt.substring(ce).trim());let se=kt.substr(0,ce).trim().split(" ");2==se.length&&(te[0]=se[0],te[1]=se[1])}else if(0==ce)te[2]=li(kt.trim());else{let se=kt.split(" ");te=3===se.length?se:[Rt,le,kt]}return te}function li(kt){return kt.replace(/[\s]/g,"").replace(/[\/\*\+\-]/g," $& ")}EventTarget;const Qt="x";function di(kt,Rt){if(void 0===Rt)return kt;const le=te=>{const ce=+te.slice(0,-Qt.length);return kt.endsWith(Qt)&&!isNaN(ce)?`${ce*Rt.value}${Rt.unit}`:kt};return kt.includes(" ")?kt.split(" ").map(le).join(" "):le(kt)}},30017:(Ae,ee,l)=>{"use strict";l.d(ee,{G:()=>e});var i=l(71985),t=l(18359),p=l(99898),S=l(54360),c=l(39974);class e extends i.c{constructor(g,d){super(),this.source=g,this.subjectFactory=d,this._subject=null,this._refCount=0,this._connection=null,(0,c.S)(g)&&(this.lift=g.lift)}_subscribe(g){return this.getSubject().subscribe(g)}getSubject(){const g=this._subject;return(!g||g.isStopped)&&(this._subject=this.subjectFactory()),this._subject}_teardown(){this._refCount=0;const{_connection:g}=this;this._subject=this._connection=null,g?.unsubscribe()}connect(){let g=this._connection;if(!g){g=this._connection=new t.yU;const d=this.getSubject();g.add(this.source.subscribe((0,S._)(d,void 0,()=>{this._teardown(),d.complete()},w=>{this._teardown(),d.error(w)},()=>this._teardown()))),g.closed&&(this._connection=null,g=t.yU.EMPTY)}return g}refCount(){return(0,p.B)()(this)}}},30450:(Ae,ee,l)=>{"use strict";l.d(ee,{mV:()=>Q,sG:()=>G});var i=l(2615),t=l(73664),p=l(17705),S=l(89417),c=l(76838),e=l(89726),T=l(88968),g=l(31804),d=l(32046),w=l(12496),m=l(53155),P=l(22466);const M=["switch"],j=["*"];function U($,ae){1&$&&(t.j41(0,"span",11),i.qSk(),t.j41(1,"svg",13),t.nrm(2,"path",14),t.k0s(),t.j41(3,"svg",15),t.nrm(4,"path",16),t.k0s()())}const K=new i.nKC("mat-slide-toggle-default-options",{providedIn:"root",factory:()=>({disableToggleValue:!1,hideIcon:!1,disabledInteractive:!1})});class q{source;checked;constructor(ae,ue){this.source=ae,this.checked=ue}}let G=(()=>{class ${_elementRef=(0,i.WQX)(t.aKT);_focusMonitor=(0,i.WQX)(c.FN);_changeDetectorRef=(0,i.WQX)(p.gRc);defaults=(0,i.WQX)(K);_onChange=ue=>{};_onTouched=()=>{};_validatorOnChange=()=>{};_uniqueId;_checked=!1;_createChangeEvent(ue){return new q(this,ue)}_labelId;get buttonId(){return`${this.id||this._uniqueId}-button`}_switchElement;focus(){this._switchElement.nativeElement.focus()}_noopAnimations=(0,g.Rc)();_focused;name=null;id;labelPosition="after";ariaLabel=null;ariaLabelledby=null;ariaDescribedby;required;color;disabled=!1;disableRipple=!1;tabIndex=0;get checked(){return this._checked}set checked(ue){this._checked=ue,this._changeDetectorRef.markForCheck()}hideIcon;disabledInteractive;change=new t.bkB;toggleChange=new t.bkB;get inputId(){return`${this.id||this._uniqueId}-input`}constructor(){(0,i.WQX)(T.l).load(d.A);const ue=(0,i.WQX)(new p.ES_("tabindex"),{optional:!0}),oe=this.defaults;this.tabIndex=null==ue?0:parseInt(ue)||0,this.color=oe.color||"accent",this.id=this._uniqueId=(0,i.WQX)(e.g).getId("mat-mdc-slide-toggle-"),this.hideIcon=oe.hideIcon??!1,this.disabledInteractive=oe.disabledInteractive??!1,this._labelId=this._uniqueId+"-label"}ngAfterContentInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(ue=>{"keyboard"===ue||"program"===ue?(this._focused=!0,this._changeDetectorRef.markForCheck()):ue||Promise.resolve().then(()=>{this._focused=!1,this._onTouched(),this._changeDetectorRef.markForCheck()})})}ngOnChanges(ue){ue.required&&this._validatorOnChange()}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}writeValue(ue){this.checked=!!ue}registerOnChange(ue){this._onChange=ue}registerOnTouched(ue){this._onTouched=ue}validate(ue){return this.required&&!0!==ue.value?{required:!0}:null}registerOnValidatorChange(ue){this._validatorOnChange=ue}setDisabledState(ue){this.disabled=ue,this._changeDetectorRef.markForCheck()}toggle(){this.checked=!this.checked,this._onChange(this.checked)}_emitChangeEvent(){this._onChange(this.checked),this.change.emit(this._createChangeEvent(this.checked))}_handleClick(){this.disabled||(this.toggleChange.emit(),this.defaults.disableToggleValue||(this.checked=!this.checked,this._onChange(this.checked),this.change.emit(new q(this,this.checked))))}_getAriaLabelledBy(){return this.ariaLabelledby?this.ariaLabelledby:this.ariaLabel?null:this._labelId}static \u0275fac=function(oe){return new(oe||$)};static \u0275cmp=t.VBU({type:$,selectors:[["mat-slide-toggle"]],viewQuery:function(oe,he){if(1&oe&&t.GBs(M,5),2&oe){let me;t.mGM(me=t.lsd())&&(he._switchElement=me.first)}},hostAttrs:[1,"mat-mdc-slide-toggle"],hostVars:13,hostBindings:function(oe,he){2&oe&&(t.Avn("id",he.id),t.BMQ("tabindex",null)("aria-label",null)("name",null)("aria-labelledby",null),t.HbH(he.color?"mat-"+he.color:""),t.AVh("mat-mdc-slide-toggle-focused",he._focused)("mat-mdc-slide-toggle-checked",he.checked)("_mat-animation-noopable",he._noopAnimations))},inputs:{name:"name",id:"id",labelPosition:"labelPosition",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],required:[2,"required","required",p.L39],color:"color",disabled:[2,"disabled","disabled",p.L39],disableRipple:[2,"disableRipple","disableRipple",p.L39],tabIndex:[2,"tabIndex","tabIndex",ue=>null==ue?0:(0,p.Udg)(ue)],checked:[2,"checked","checked",p.L39],hideIcon:[2,"hideIcon","hideIcon",p.L39],disabledInteractive:[2,"disabledInteractive","disabledInteractive",p.L39]},outputs:{change:"change",toggleChange:"toggleChange"},exportAs:["matSlideToggle"],features:[t.Jv_([{provide:S.kq,useExisting:(0,i.Rfq)(()=>$),multi:!0},{provide:S.cz,useExisting:$,multi:!0}]),t.OA$],ngContentSelectors:j,decls:14,vars:27,consts:[["switch",""],["mat-internal-form-field","",3,"labelPosition"],["role","switch","type","button",1,"mdc-switch",3,"click","tabIndex","disabled"],[1,"mat-mdc-slide-toggle-touch-target"],[1,"mdc-switch__track"],[1,"mdc-switch__handle-track"],[1,"mdc-switch__handle"],[1,"mdc-switch__shadow"],[1,"mdc-elevation-overlay"],[1,"mdc-switch__ripple"],["mat-ripple","",1,"mat-mdc-slide-toggle-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mdc-switch__icons"],[1,"mdc-label",3,"click","for"],["viewBox","0 0 24 24","aria-hidden","true",1,"mdc-switch__icon","mdc-switch__icon--on"],["d","M19.69,5.23L8.96,15.96l-4.23-4.23L2.96,13.5l6,6L21.46,7L19.69,5.23z"],["viewBox","0 0 24 24","aria-hidden","true",1,"mdc-switch__icon","mdc-switch__icon--off"],["d","M20 13H4v-2h16v2z"]],template:function(oe,he){if(1&oe){const me=t.RV6();t.NAR(),t.j41(0,"div",1)(1,"button",2,0),t.bIt("click",function(){return i.eBV(me),i.Njj(he._handleClick())}),t.nrm(3,"div",3)(4,"span",4),t.j41(5,"span",5)(6,"span",6)(7,"span",7),t.nrm(8,"span",8),t.k0s(),t.j41(9,"span",9),t.nrm(10,"span",10),t.k0s(),t.nVh(11,U,5,0,"span",11),t.k0s()()(),t.j41(12,"label",12),t.bIt("click",function(D){return i.eBV(me),i.Njj(D.stopPropagation())}),t.SdG(13),t.k0s()()}if(2&oe){const me=t.sdS(2);t.Y8G("labelPosition",he.labelPosition),t.R7$(),t.AVh("mdc-switch--selected",he.checked)("mdc-switch--unselected",!he.checked)("mdc-switch--checked",he.checked)("mdc-switch--disabled",he.disabled)("mat-mdc-slide-toggle-disabled-interactive",he.disabledInteractive),t.Y8G("tabIndex",he.disabled&&!he.disabledInteractive?-1:he.tabIndex)("disabled",he.disabled&&!he.disabledInteractive),t.BMQ("id",he.buttonId)("name",he.name)("aria-label",he.ariaLabel)("aria-labelledby",he._getAriaLabelledBy())("aria-describedby",he.ariaDescribedby)("aria-required",he.required||null)("aria-checked",he.checked)("aria-disabled",he.disabled&&he.disabledInteractive?"true":null),t.R7$(9),t.Y8G("matRippleTrigger",me)("matRippleDisabled",he.disableRipple||he.disabled)("matRippleCentered",!0),t.R7$(),t.vxM(he.hideIcon?-1:11),t.R7$(),t.Y8G("for",he.buttonId),t.BMQ("id",he._labelId)}},dependencies:[w.r6,m.t],styles:['.mdc-switch{align-items:center;background:none;border:none;cursor:pointer;display:inline-flex;flex-shrink:0;margin:0;outline:none;overflow:visible;padding:0;position:relative;width:var(--mat-slide-toggle-track-width, 52px)}.mdc-switch.mdc-switch--disabled{cursor:default;pointer-events:none}.mdc-switch.mat-mdc-slide-toggle-disabled-interactive{pointer-events:auto}.mdc-switch__track{overflow:hidden;position:relative;width:100%;height:var(--mat-slide-toggle-track-height, 32px);border-radius:var(--mat-slide-toggle-track-shape, var(--mat-sys-corner-full))}.mdc-switch--disabled.mdc-switch .mdc-switch__track{opacity:var(--mat-slide-toggle-disabled-track-opacity, 0.12)}.mdc-switch__track::before,.mdc-switch__track::after{border:1px solid rgba(0,0,0,0);border-radius:inherit;box-sizing:border-box;content:"";height:100%;left:0;position:absolute;width:100%;border-width:var(--mat-slide-toggle-track-outline-width, 2px);border-color:var(--mat-slide-toggle-track-outline-color, var(--mat-sys-outline))}.mdc-switch--selected .mdc-switch__track::before,.mdc-switch--selected .mdc-switch__track::after{border-width:var(--mat-slide-toggle-selected-track-outline-width, 2px);border-color:var(--mat-slide-toggle-selected-track-outline-color, transparent)}.mdc-switch--disabled .mdc-switch__track::before,.mdc-switch--disabled .mdc-switch__track::after{border-width:var(--mat-slide-toggle-disabled-unselected-track-outline-width, 2px);border-color:var(--mat-slide-toggle-disabled-unselected-track-outline-color, var(--mat-sys-on-surface))}@media(forced-colors: active){.mdc-switch__track{border-color:currentColor}}.mdc-switch__track::before{transition:transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);transform:translateX(0);background:var(--mat-slide-toggle-unselected-track-color, var(--mat-sys-surface-variant))}.mdc-switch--selected .mdc-switch__track::before{transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);transform:translateX(100%)}[dir=rtl] .mdc-switch--selected .mdc-switch--selected .mdc-switch__track::before{transform:translateX(-100%)}.mdc-switch--selected .mdc-switch__track::before{opacity:var(--mat-slide-toggle-hidden-track-opacity, 0);transition:var(--mat-slide-toggle-hidden-track-transition, opacity 75ms)}.mdc-switch--unselected .mdc-switch__track::before{opacity:var(--mat-slide-toggle-visible-track-opacity, 1);transition:var(--mat-slide-toggle-visible-track-transition, opacity 75ms)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::before{background:var(--mat-slide-toggle-unselected-hover-track-color, var(--mat-sys-surface-variant))}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::before{background:var(--mat-slide-toggle-unselected-focus-track-color, var(--mat-sys-surface-variant))}.mdc-switch:enabled:active .mdc-switch__track::before{background:var(--mat-slide-toggle-unselected-pressed-track-color, var(--mat-sys-surface-variant))}.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:hover:not(:focus):not(:active) .mdc-switch__track::before,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:focus:not(:active) .mdc-switch__track::before,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:active .mdc-switch__track::before,.mdc-switch.mdc-switch--disabled .mdc-switch__track::before{background:var(--mat-slide-toggle-disabled-unselected-track-color, var(--mat-sys-surface-variant))}.mdc-switch__track::after{transform:translateX(-100%);background:var(--mat-slide-toggle-selected-track-color, var(--mat-sys-primary))}[dir=rtl] .mdc-switch__track::after{transform:translateX(100%)}.mdc-switch--selected .mdc-switch__track::after{transform:translateX(0)}.mdc-switch--selected .mdc-switch__track::after{opacity:var(--mat-slide-toggle-visible-track-opacity, 1);transition:var(--mat-slide-toggle-visible-track-transition, opacity 75ms)}.mdc-switch--unselected .mdc-switch__track::after{opacity:var(--mat-slide-toggle-hidden-track-opacity, 0);transition:var(--mat-slide-toggle-hidden-track-transition, opacity 75ms)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::after{background:var(--mat-slide-toggle-selected-hover-track-color, var(--mat-sys-primary))}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::after{background:var(--mat-slide-toggle-selected-focus-track-color, var(--mat-sys-primary))}.mdc-switch:enabled:active .mdc-switch__track::after{background:var(--mat-slide-toggle-selected-pressed-track-color, var(--mat-sys-primary))}.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:hover:not(:focus):not(:active) .mdc-switch__track::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:focus:not(:active) .mdc-switch__track::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:active .mdc-switch__track::after,.mdc-switch.mdc-switch--disabled .mdc-switch__track::after{background:var(--mat-slide-toggle-disabled-selected-track-color, var(--mat-sys-on-surface))}.mdc-switch__handle-track{height:100%;pointer-events:none;position:absolute;top:0;transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);left:0;right:auto;transform:translateX(0);width:calc(100% - var(--mat-slide-toggle-handle-width))}[dir=rtl] .mdc-switch__handle-track{left:auto;right:0}.mdc-switch--selected .mdc-switch__handle-track{transform:translateX(100%)}[dir=rtl] .mdc-switch--selected .mdc-switch__handle-track{transform:translateX(-100%)}.mdc-switch__handle{display:flex;pointer-events:auto;position:absolute;top:50%;transform:translateY(-50%);left:0;right:auto;transition:width 75ms cubic-bezier(0.4, 0, 0.2, 1),height 75ms cubic-bezier(0.4, 0, 0.2, 1),margin 75ms cubic-bezier(0.4, 0, 0.2, 1);width:var(--mat-slide-toggle-handle-width);height:var(--mat-slide-toggle-handle-height);border-radius:var(--mat-slide-toggle-handle-shape, var(--mat-sys-corner-full))}[dir=rtl] .mdc-switch__handle{left:auto;right:0}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle{width:var(--mat-slide-toggle-unselected-handle-size, 16px);height:var(--mat-slide-toggle-unselected-handle-size, 16px);margin:var(--mat-slide-toggle-unselected-handle-horizontal-margin, 0 8px)}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle:has(.mdc-switch__icons){margin:var(--mat-slide-toggle-unselected-with-icon-handle-horizontal-margin, 0 4px)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle{width:var(--mat-slide-toggle-selected-handle-size, 24px);height:var(--mat-slide-toggle-selected-handle-size, 24px);margin:var(--mat-slide-toggle-selected-handle-horizontal-margin, 0 24px)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle:has(.mdc-switch__icons){margin:var(--mat-slide-toggle-selected-with-icon-handle-horizontal-margin, 0 24px)}.mat-mdc-slide-toggle .mdc-switch__handle:has(.mdc-switch__icons){width:var(--mat-slide-toggle-with-icon-handle-size, 24px);height:var(--mat-slide-toggle-with-icon-handle-size, 24px)}.mat-mdc-slide-toggle .mdc-switch:active:not(.mdc-switch--disabled) .mdc-switch__handle{width:var(--mat-slide-toggle-pressed-handle-size, 28px);height:var(--mat-slide-toggle-pressed-handle-size, 28px)}.mat-mdc-slide-toggle .mdc-switch--selected:active:not(.mdc-switch--disabled) .mdc-switch__handle{margin:var(--mat-slide-toggle-selected-pressed-handle-horizontal-margin, 0 22px)}.mat-mdc-slide-toggle .mdc-switch--unselected:active:not(.mdc-switch--disabled) .mdc-switch__handle{margin:var(--mat-slide-toggle-unselected-pressed-handle-horizontal-margin, 0 2px)}.mdc-switch--disabled.mdc-switch--selected .mdc-switch__handle::after{opacity:var(--mat-slide-toggle-disabled-selected-handle-opacity, 1)}.mdc-switch--disabled.mdc-switch--unselected .mdc-switch__handle::after{opacity:var(--mat-slide-toggle-disabled-unselected-handle-opacity, 0.38)}.mdc-switch__handle::before,.mdc-switch__handle::after{border:1px solid rgba(0,0,0,0);border-radius:inherit;box-sizing:border-box;content:"";width:100%;height:100%;left:0;position:absolute;top:0;transition:background-color 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1),border-color 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);z-index:-1}@media(forced-colors: active){.mdc-switch__handle::before,.mdc-switch__handle::after{border-color:currentColor}}.mdc-switch--selected:enabled .mdc-switch__handle::after{background:var(--mat-slide-toggle-selected-handle-color, var(--mat-sys-on-primary))}.mdc-switch--selected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mat-slide-toggle-selected-hover-handle-color, var(--mat-sys-primary-container))}.mdc-switch--selected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mat-slide-toggle-selected-focus-handle-color, var(--mat-sys-primary-container))}.mdc-switch--selected:enabled:active .mdc-switch__handle::after{background:var(--mat-slide-toggle-selected-pressed-handle-color, var(--mat-sys-primary-container))}.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled.mdc-switch--selected:hover:not(:focus):not(:active) .mdc-switch__handle::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled.mdc-switch--selected:focus:not(:active) .mdc-switch__handle::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled.mdc-switch--selected:active .mdc-switch__handle::after,.mdc-switch--selected.mdc-switch--disabled .mdc-switch__handle::after{background:var(--mat-slide-toggle-disabled-selected-handle-color, var(--mat-sys-surface))}.mdc-switch--unselected:enabled .mdc-switch__handle::after{background:var(--mat-slide-toggle-unselected-handle-color, var(--mat-sys-outline))}.mdc-switch--unselected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mat-slide-toggle-unselected-hover-handle-color, var(--mat-sys-on-surface-variant))}.mdc-switch--unselected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mat-slide-toggle-unselected-focus-handle-color, var(--mat-sys-on-surface-variant))}.mdc-switch--unselected:enabled:active .mdc-switch__handle::after{background:var(--mat-slide-toggle-unselected-pressed-handle-color, var(--mat-sys-on-surface-variant))}.mdc-switch--unselected.mdc-switch--disabled .mdc-switch__handle::after{background:var(--mat-slide-toggle-disabled-unselected-handle-color, var(--mat-sys-on-surface))}.mdc-switch__handle::before{background:var(--mat-slide-toggle-handle-surface-color)}.mdc-switch__shadow{border-radius:inherit;bottom:0;left:0;position:absolute;right:0;top:0}.mdc-switch:enabled .mdc-switch__shadow{box-shadow:var(--mat-slide-toggle-handle-elevation-shadow)}.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:hover:not(:focus):not(:active) .mdc-switch__shadow,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:focus:not(:active) .mdc-switch__shadow,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:active .mdc-switch__shadow,.mdc-switch.mdc-switch--disabled .mdc-switch__shadow{box-shadow:var(--mat-slide-toggle-disabled-handle-elevation-shadow)}.mdc-switch__ripple{left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);z-index:-1;width:var(--mat-slide-toggle-state-layer-size, 40px);height:var(--mat-slide-toggle-state-layer-size, 40px)}.mdc-switch__ripple::after{content:"";opacity:0}.mdc-switch--disabled .mdc-switch__ripple::after{display:none}.mat-mdc-slide-toggle-disabled-interactive .mdc-switch__ripple::after{display:block}.mdc-switch:hover .mdc-switch__ripple::after{transition:75ms opacity cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:enabled:focus .mdc-switch__ripple::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:enabled:active .mdc-switch__ripple::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:enabled:hover:not(:focus) .mdc-switch__ripple::after,.mdc-switch--unselected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background:var(--mat-slide-toggle-unselected-hover-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-slide-toggle-unselected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mdc-switch--unselected:enabled:focus .mdc-switch__ripple::after{background:var(--mat-slide-toggle-unselected-focus-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-slide-toggle-unselected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mdc-switch--unselected:enabled:active .mdc-switch__ripple::after{background:var(--mat-slide-toggle-unselected-pressed-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-slide-toggle-unselected-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity));transition:opacity 75ms linear}.mdc-switch--selected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background:var(--mat-slide-toggle-selected-hover-state-layer-color, var(--mat-sys-primary));opacity:var(--mat-slide-toggle-selected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mdc-switch--selected:enabled:focus .mdc-switch__ripple::after{background:var(--mat-slide-toggle-selected-focus-state-layer-color, var(--mat-sys-primary));opacity:var(--mat-slide-toggle-selected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mdc-switch--selected:enabled:active .mdc-switch__ripple::after{background:var(--mat-slide-toggle-selected-pressed-state-layer-color, var(--mat-sys-primary));opacity:var(--mat-slide-toggle-selected-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity));transition:opacity 75ms linear}.mdc-switch__icons{position:relative;height:100%;width:100%;z-index:1;transform:translateZ(0)}.mdc-switch--disabled.mdc-switch--unselected .mdc-switch__icons{opacity:var(--mat-slide-toggle-disabled-unselected-icon-opacity, 0.38)}.mdc-switch--disabled.mdc-switch--selected .mdc-switch__icons{opacity:var(--mat-slide-toggle-disabled-selected-icon-opacity, 0.38)}.mdc-switch__icon{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;opacity:0;transition:opacity 30ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-switch--unselected .mdc-switch__icon{width:var(--mat-slide-toggle-unselected-icon-size, 16px);height:var(--mat-slide-toggle-unselected-icon-size, 16px);fill:var(--mat-slide-toggle-unselected-icon-color, var(--mat-sys-surface-variant))}.mdc-switch--unselected.mdc-switch--disabled .mdc-switch__icon{fill:var(--mat-slide-toggle-disabled-unselected-icon-color, var(--mat-sys-surface-variant))}.mdc-switch--selected .mdc-switch__icon{width:var(--mat-slide-toggle-selected-icon-size, 16px);height:var(--mat-slide-toggle-selected-icon-size, 16px);fill:var(--mat-slide-toggle-selected-icon-color, var(--mat-sys-on-primary-container))}.mdc-switch--selected.mdc-switch--disabled .mdc-switch__icon{fill:var(--mat-slide-toggle-disabled-selected-icon-color, var(--mat-sys-on-surface))}.mdc-switch--selected .mdc-switch__icon--on,.mdc-switch--unselected .mdc-switch__icon--off{opacity:1;transition:opacity 45ms 30ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-slide-toggle{-webkit-user-select:none;user-select:none;display:inline-block;-webkit-tap-highlight-color:rgba(0,0,0,0);outline:0}.mat-mdc-slide-toggle .mat-mdc-slide-toggle-ripple,.mat-mdc-slide-toggle .mdc-switch__ripple::after{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:50%;pointer-events:none}.mat-mdc-slide-toggle .mat-mdc-slide-toggle-ripple:not(:empty),.mat-mdc-slide-toggle .mdc-switch__ripple::after:not(:empty){transform:translateZ(0)}.mat-mdc-slide-toggle.mat-mdc-slide-toggle-focused .mat-focus-indicator::before{content:""}.mat-mdc-slide-toggle .mat-internal-form-field{color:var(--mat-slide-toggle-label-text-color, var(--mat-sys-on-surface));font-family:var(--mat-slide-toggle-label-text-font, var(--mat-sys-body-medium-font));line-height:var(--mat-slide-toggle-label-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-slide-toggle-label-text-size, var(--mat-sys-body-medium-size));letter-spacing:var(--mat-slide-toggle-label-text-tracking, var(--mat-sys-body-medium-tracking));font-weight:var(--mat-slide-toggle-label-text-weight, var(--mat-sys-body-medium-weight))}.mat-mdc-slide-toggle .mat-ripple-element{opacity:.12}.mat-mdc-slide-toggle .mat-focus-indicator::before{border-radius:50%}.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle-track,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__icon,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle::before,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle::after,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__track::before,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__track::after{transition:none}.mat-mdc-slide-toggle .mdc-switch:enabled+.mdc-label{cursor:pointer}.mat-mdc-slide-toggle .mdc-switch--disabled+label{color:var(--mat-slide-toggle-disabled-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-slide-toggle-touch-target{position:absolute;top:50%;left:50%;height:var(--mat-slide-toggle-touch-target-size, 48px);width:100%;transform:translate(-50%, -50%);display:var(--mat-slide-toggle-touch-target-display, block)}[dir=rtl] .mat-mdc-slide-toggle-touch-target{left:auto;right:50%;transform:translate(50%, -50%)}\n'],encapsulation:2,changeDetection:0})}return $})(),Q=(()=>{class ${static \u0275fac=function(oe){return new(oe||$)};static \u0275mod=t.$C({type:$});static \u0275inj=i.G2t({imports:[G,P.y,P.y]})}return $})()},30464:Ae=>{"use strict";var l={};function i(e,T,g){g||(g=Error);var w=function(m){function P(M,j,U){return m.call(this,function d(m,P,M){return"string"==typeof T?T:T(m,P,M)}(M,j,U))||this}return function ee(e,T){e.prototype=Object.create(T.prototype),e.prototype.constructor=e,e.__proto__=T}(P,m),P}(g);w.prototype.name=g.name,w.prototype.code=e,l[e]=w}function t(e,T){if(Array.isArray(e)){var g=e.length;return e=e.map(function(d){return String(d)}),g>2?"one of ".concat(T," ").concat(e.slice(0,g-1).join(", "),", or ")+e[g-1]:2===g?"one of ".concat(T," ").concat(e[0]," or ").concat(e[1]):"of ".concat(T," ").concat(e[0])}return"of ".concat(T," ").concat(String(e))}i("ERR_INVALID_OPT_VALUE",function(e,T){return'The value "'+T+'" is invalid for option "'+e+'"'},TypeError),i("ERR_INVALID_ARG_TYPE",function(e,T,g){var d,w;if("string"==typeof T&&function p(e,T,g){return e.substr(!g||g<0?0:+g,T.length)===T}(T,"not ")?(d="must not be",T=T.replace(/^not /,"")):d="must be",function S(e,T,g){return(void 0===g||g>e.length)&&(g=e.length),e.substring(g-T.length,g)===T}(e," argument"))w="The ".concat(e," ").concat(d," ").concat(t(T,"type"));else{var m=function c(e,T,g){return"number"!=typeof g&&(g=0),!(g+T.length>e.length)&&-1!==e.indexOf(T,g)}(e,".")?"property":"argument";w='The "'.concat(e,'" ').concat(m," ").concat(d," ").concat(t(T,"type"))}return w+". Received type ".concat(typeof g)},TypeError),i("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),i("ERR_METHOD_NOT_IMPLEMENTED",function(e){return"The "+e+" method is not implemented"}),i("ERR_STREAM_PREMATURE_CLOSE","Premature close"),i("ERR_STREAM_DESTROYED",function(e){return"Cannot call "+e+" after a stream was destroyed"}),i("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),i("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),i("ERR_STREAM_WRITE_AFTER_END","write after end"),i("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),i("ERR_UNKNOWN_ENCODING",function(e){return"Unknown encoding: "+e},TypeError),i("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),Ae.exports.F=l},30715:(Ae,ee,l)=>{var i=l(67211),t=l(27054).Buffer;function p(S){var c=t.allocUnsafe(4);return c.writeUInt32BE(S,0),c}Ae.exports=function(S,c){for(var g,e=t.alloc(0),T=0;e.length{"use strict";Object.defineProperty(ee,"__esModule",{value:!0});var i=l(94478);Object.keys(i).forEach(function(t){"default"!==t&&Object.defineProperty(ee,t,{enumerable:!0,get:function(){return i[t]}})})},31358:(Ae,ee,l)=>{"use strict";var i=l(90258),t=l(92736),p=l(35861)(),S=l(83798),c=l(46758),e=i("%Math.floor%");Ae.exports=function(g,d){if("function"!=typeof g)throw new c("`fn` is not a function");if("number"!=typeof d||d<0||d>4294967295||e(d)!==d)throw new c("`length` must be a positive 32-bit integer");var w=arguments.length>2&&!!arguments[2],m=!0,P=!0;if("length"in g&&S){var M=S(g,"length");M&&!M.configurable&&(m=!1),M&&!M.writable&&(P=!1)}return(m||P||!w)&&(p?t(g,"length",d,!0,!0):t(g,"length",d)),g}},31397:(Ae,ee,l)=>{"use strict";l.d(ee,{Z:()=>g});var i=l(96354),t=l(58750),p=l(39974),S=l(45225),c=l(54360),T=l(98071);function g(d,w,m=1/0){return(0,T.T)(w)?g((P,M)=>(0,i.T)((j,U)=>w(P,j,M,U))((0,t.Tg)(d(P,M))),m):("number"==typeof w&&(m=w),(0,p.N)((P,M)=>function e(d,w,m,P,M,j,U,K){const q=[];let G=0,Q=0,$=!1;const ae=()=>{$&&!q.length&&!G&&w.complete()},ue=he=>G{j&&w.next(he),G++;let me=!1;(0,t.Tg)(m(he,Q++)).subscribe((0,c._)(w,Te=>{M?.(Te),j?ue(Te):w.next(Te)},()=>{me=!0},void 0,()=>{if(me)try{for(G--;q.length&&Goe(Te)):oe(Te)}ae()}catch(Te){w.error(Te)}}))};return d.subscribe((0,c._)(w,ue,()=>{$=!0,ae()})),()=>{K?.()}}(P,M,d,m)))}},31635:(Ae,ee,l)=>{"use strict";function c(W,I,B,re){var Be,pe=arguments.length,be=pe<3?I:null===re?re=Object.getOwnPropertyDescriptor(I,B):re;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)be=Reflect.decorate(W,I,B,re);else for(var _e=W.length-1;_e>=0;_e--)(Be=W[_e])&&(be=(pe<3?Be(be):pe>3?Be(I,B,be):Be(I,B))||be);return pe>3&&be&&Object.defineProperty(I,B,be),be}function P(W,I,B,re){return new(B||(B=Promise))(function(be,Be){function _e(Ke){try{Le(re.next(Ke))}catch(ge){Be(ge)}}function ye(Ke){try{Le(re.throw(Ke))}catch(ge){Be(ge)}}function Le(Ke){Ke.done?be(Ke.value):function pe(be){return be instanceof B?be:new B(function(Be){Be(be)})}(Ke.value).then(_e,ye)}Le((re=re.apply(W,I||[])).next())})}function ae(W){return this instanceof ae?(this.v=W,this):new ae(W)}function ue(W,I,B){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var pe,re=B.apply(W,I||[]),be=[];return pe=Object.create(("function"==typeof AsyncIterator?AsyncIterator:Object).prototype),_e("next"),_e("throw"),_e("return",function Be(Oe){return function(Ee){return Promise.resolve(Ee).then(Oe,ge)}}),pe[Symbol.asyncIterator]=function(){return this},pe;function _e(Oe,Ee){re[Oe]&&(pe[Oe]=function(dt){return new Promise(function(nt,Ct){be.push([Oe,dt,nt,Ct])>1||ye(Oe,dt)})},Ee&&(pe[Oe]=Ee(pe[Oe])))}function ye(Oe,Ee){try{!function Le(Oe){Oe.value instanceof ae?Promise.resolve(Oe.value.v).then(Ke,ge):ve(be[0][2],Oe)}(re[Oe](Ee))}catch(dt){ve(be[0][3],dt)}}function Ke(Oe){ye("next",Oe)}function ge(Oe){ye("throw",Oe)}function ve(Oe,Ee){Oe(Ee),be.shift(),be.length&&ye(be[0][0],be[0][1])}}function he(W){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var B,I=W[Symbol.asyncIterator];return I?I.call(W):(W=function K(W){var I="function"==typeof Symbol&&Symbol.iterator,B=I&&W[I],re=0;if(B)return B.call(W);if(W&&"number"==typeof W.length)return{next:function(){return W&&re>=W.length&&(W=void 0),{value:W&&W[re++],done:!W}}};throw new TypeError(I?"Object is not iterable.":"Symbol.iterator is not defined.")}(W),B={},re("next"),re("throw"),re("return"),B[Symbol.asyncIterator]=function(){return this},B);function re(be){B[be]=W[be]&&function(Be){return new Promise(function(_e,ye){!function pe(be,Be,_e,ye){Promise.resolve(ye).then(function(Le){be({value:Le,done:_e})},Be)}(_e,ye,(Be=W[be](Be)).done,Be.value)})}}}l.d(ee,{AQ:()=>ue,Cg:()=>c,N3:()=>ae,sH:()=>P,xN:()=>he}),"function"==typeof SuppressedError&&SuppressedError},31804:(Ae,ee,l)=>{"use strict";l.d(ee,{Rc:()=>d,_J:()=>g});var i=l(34330),t=l(2615),p=l(73664);const S=new t.nKC("MATERIAL_ANIMATIONS");let T=null;function g(){return(0,t.WQX)(S,{optional:!0})?.animationsDisabled||"NoopAnimations"===(0,t.WQX)(p.bc$,{optional:!0})?"di-disabled":(T??=(0,t.WQX)(i.D).matchMedia("(prefers-reduced-motion)").matches,T?"reduced-motion":"enabled")}function d(){return"enabled"!==g()}},31943:(Ae,ee,l)=>{"use strict";l.d(ee,{S:()=>p});var i=l(39974),t=l(46649);function p(S,c){return(0,i.N)((0,t.S)(S,c,arguments.length>=2,!0))}},32046:(Ae,ee,l)=>{"use strict";l.d(ee,{A:()=>t});var i=l(73664);let t=(()=>{class p{static \u0275fac=function(e){return new(e||p)};static \u0275cmp=i.VBU({type:p,selectors:[["structural-styles"]],decls:0,vars:0,template:function(e,T){},styles:['.mat-focus-indicator{position:relative}.mat-focus-indicator::before{top:0;left:0;right:0;bottom:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-focus-indicator-display, none);border-width:var(--mat-focus-indicator-border-width, 3px);border-style:var(--mat-focus-indicator-border-style, solid);border-color:var(--mat-focus-indicator-border-color, transparent);border-radius:var(--mat-focus-indicator-border-radius, 4px)}.mat-focus-indicator:focus::before{content:""}@media(forced-colors: active){html{--mat-focus-indicator-display: block}}\n'],encapsulation:2,changeDetection:0})}return p})()},32142:(Ae,ee,l)=>{"use strict";l.d(ee,{f:()=>re});var i=l(51585),t=l(45383),p=l(21413),S=l(56977),c=l(4416),e=l(2615),T=l(73664),g=l(98570),d=l(82571),w=l(95416),m=l(51534),P=l(72200),M=l(20060),j=l(88834),U=l(25596),K=l(71997),q=l(52920),G=l(16038),Q=l(38288),$=l(29157),ae=l(89587);const ue=pe=>({"display-none":pe}),oe=pe=>({"xs-scroll-y":pe}),he=(pe,be)=>({"mt-2":pe,"mt-1":be});function me(pe,be){if(1&pe&&T.nrm(0,"qr-code",28),2&pe){const Be=T.XpG();T.Y8G("value",null==Be.offer?null:Be.offer.bolt12)("size",Be.qrWidth)}}function Te(pe,be){1&pe&&(T.j41(0,"span",29),T.EFF(1,"N/A"),T.k0s())}function D(pe,be){if(1&pe&&T.nrm(0,"qr-code",28),2&pe){const Be=T.XpG();T.Y8G("value",null==Be.offer?null:Be.offer.bolt12)("size",Be.qrWidth)}}function n(pe,be){1&pe&&(T.j41(0,"span",30),T.EFF(1,"QR Code Not Applicable"),T.k0s())}function o(pe,be){1&pe&&T.nrm(0,"mat-divider",31),2&pe&&T.Y8G("inset",!0)}function f(pe,be){1&pe&&T.nrm(0,"mat-divider",20)}function h(pe,be){if(1&pe&&(T.j41(0,"div",16)(1,"div",17)(2,"h4",18),T.EFF(3,"Used"),T.k0s(),T.j41(4,"span",19),T.EFF(5),T.k0s()(),T.j41(6,"div",17)(7,"h4",18),T.EFF(8,"Single Use"),T.k0s(),T.j41(9,"span",19),T.EFF(10),T.k0s()()()),2&pe){const Be=T.XpG(2);T.R7$(5),T.SpI(" ",null!=Be.offer&&Be.offer.used?null!=Be.offer&&Be.offer.used?"Yes":"No":"N/K"," "),T.R7$(5),T.SpI(" ",null!=Be.offer&&Be.offer.single_use?null!=Be.offer&&Be.offer.single_use?"Yes":"No":"N/K"," ")}}function b(pe,be){1&pe&&T.nrm(0,"mat-divider",20)}function A(pe,be){if(1&pe&&(T.j41(0,"div",16)(1,"div",21)(2,"h4",18),T.EFF(3,"Issuer"),T.k0s(),T.j41(4,"span",34),T.EFF(5),T.k0s()()()),2&pe){const Be=T.XpG(2);T.R7$(5),T.JRh(null==Be.offerDecoded?null:Be.offerDecoded.offer_issuer)}}function k(pe,be){1&pe&&T.nrm(0,"mat-divider",20)}function x(pe,be){if(1&pe&&(T.j41(0,"div",16)(1,"div",21)(2,"h4",18),T.EFF(3,"Label"),T.k0s(),T.j41(4,"span",19),T.EFF(5),T.k0s()()()),2&pe){const Be=T.XpG(2);T.R7$(5),T.JRh(Be.offer.label)}}function r(pe,be){if(1&pe&&(T.j41(0,"div"),T.DNE(1,f,1,0,"mat-divider",32)(2,h,11,2,"div",33)(3,b,1,0,"mat-divider",32)(4,A,6,1,"div",33)(5,k,1,0,"mat-divider",32)(6,x,6,1,"div",33),T.nrm(7,"mat-divider",20),T.j41(8,"div",16)(9,"div",21)(10,"h4",18),T.EFF(11,"Offer ID"),T.k0s(),T.j41(12,"span",19),T.EFF(13),T.k0s()()(),T.nrm(14,"mat-divider",20),T.j41(15,"div",16)(16,"div",21)(17,"h4",18),T.EFF(18,"Offer Node ID"),T.k0s(),T.j41(19,"span",19),T.EFF(20),T.k0s()()(),T.nrm(21,"mat-divider",20),T.k0s()),2&pe){const Be=T.XpG();T.R7$(),T.Y8G("ngIf",(null==Be.offer?null:Be.offer.used)||(null==Be.offer?null:Be.offer.single_use)),T.R7$(),T.Y8G("ngIf",(null==Be.offer?null:Be.offer.used)||(null==Be.offer?null:Be.offer.single_use)),T.R7$(),T.Y8G("ngIf",null==Be.offerDecoded?null:Be.offerDecoded.issuer),T.R7$(),T.Y8G("ngIf",null==Be.offerDecoded?null:Be.offerDecoded.issuer),T.R7$(),T.Y8G("ngIf",Be.offer.label),T.R7$(),T.Y8G("ngIf",Be.offer.label),T.R7$(7),T.JRh(Be.offerDecoded.offer_id),T.R7$(7),T.JRh(null==Be.offerDecoded?null:Be.offerDecoded.offer_node_id)}}function _(pe,be){1&pe&&(T.j41(0,"p"),T.EFF(1,"Show Advanced"),T.k0s())}function W(pe,be){1&pe&&(T.j41(0,"p"),T.EFF(1,"Hide Advanced"),T.k0s())}function I(pe,be){if(1&pe){const Be=T.RV6();T.j41(0,"button",35),T.bIt("copied",function(ye){e.eBV(Be);const Le=T.XpG();return e.Njj(Le.onCopyOffer(ye))}),T.EFF(1,"Copy Offer"),T.k0s()}if(2&pe){const Be=T.XpG();T.Y8G("payload",null==Be.offer?null:Be.offer.bolt12)}}function B(pe,be){if(1&pe){const Be=T.RV6();T.j41(0,"button",36),T.bIt("click",function(){e.eBV(Be);const ye=T.XpG();return e.Njj(ye.onClose())}),T.EFF(1,"OK"),T.k0s()}}let re=(()=>{var pe;class be{constructor(_e,ye,Le,Ke,ge,ve){this.dialogRef=_e,this.data=ye,this.logger=Le,this.commonService=Ke,this.snackBar=ge,this.dataService=ve,this.faReceipt=t.Mf0,this.faExclamationTriangle=t.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.offerDecoded={},this.qrWidth=240,this.screenSize="",this.screenSizeEnum=c.f7,this.flgOfferPaid=!1,this.unSubs=[new p.B,new p.B,new p.B,new p.B,new p.B]}ngOnInit(){this.offer=this.data.offer,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===c.f7.XS&&(this.qrWidth=220),this.dataService.decodePayment(this.offer.bolt12,!0).pipe((0,S.Q)(this.unSubs[1])).subscribe(_e=>{this.offerDecoded=_e,this.offerDecoded.offer_id&&!this.offerDecoded.offer_amount_msat&&(this.offerDecoded.offer_amount_msat=0)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyOffer(_e){this.snackBar.open("Offer copied."),this.logger.info("Copied Text: "+_e)}ngOnDestroy(){this.unSubs.forEach(_e=>{_e.next(null),_e.complete()})}static#e=pe=()=>(this.\u0275fac=function(ye){return new(ye||be)(T.rXU(i.CP),T.rXU(i.Vh),T.rXU(g.gP),T.rXU(d.h),T.rXU(w.UG),T.rXU(m.u))},this.\u0275cmp=T.VBU({type:be,selectors:[["rtl-cln-offer-information"]],standalone:!1,decls:52,vars:33,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","100"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"font-size-300"],[1,"font-size-120"],[1,"my-1",3,"inset"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row",4,"ngIf"],[1,"overflow-wrap","foreground-secondary-text"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(ye,Le){if(1&ye){const Ke=T.RV6();T.j41(0,"div",1)(1,"div",2),T.DNE(2,me,1,2,"qr-code",3)(3,Te,2,0,"span",4),T.k0s(),T.j41(4,"div",5)(5,"mat-card-header",6)(6,"div",7),T.nrm(7,"fa-icon",8),T.j41(8,"span",9),T.EFF(9),T.k0s()(),T.j41(10,"button",10),T.bIt("click",function(){return e.eBV(Ke),e.Njj(Le.onClose())}),T.EFF(11,"X"),T.k0s()(),T.j41(12,"mat-card-content",11)(13,"div",12)(14,"div",13),T.DNE(15,D,1,2,"qr-code",3)(16,n,2,0,"span",14),T.k0s(),T.DNE(17,o,1,1,"mat-divider",15),T.j41(18,"div",16)(19,"div",17)(20,"h4",18),T.EFF(21,"Amount Requested (Sats)"),T.k0s(),T.j41(22,"span",19),T.EFF(23),T.nI1(24,"number"),T.k0s()(),T.j41(25,"div",17)(26,"h4",18),T.EFF(27,"Valid"),T.k0s(),T.j41(28,"span",19),T.EFF(29),T.k0s()()(),T.nrm(30,"mat-divider",20),T.j41(31,"div",16)(32,"div",21)(33,"h4",18),T.EFF(34,"Description"),T.k0s(),T.j41(35,"span",19),T.EFF(36),T.k0s()()(),T.nrm(37,"mat-divider",20),T.j41(38,"div",16)(39,"div",21)(40,"h4",18),T.EFF(41,"Offer"),T.k0s(),T.j41(42,"span",19),T.EFF(43),T.k0s()()(),T.DNE(44,r,22,8,"div",22),T.j41(45,"div",23)(46,"button",24),T.bIt("click",function(){return e.eBV(Ke),e.Njj(Le.onShowAdvanced())}),T.DNE(47,_,2,0,"p",25)(48,W,2,0,"ng-template",null,0,T.C5r),T.k0s(),T.DNE(50,I,2,1,"button",26)(51,B,2,0,"button",27),T.k0s()()()()()}if(2&ye){const Ke=T.sdS(49);T.R7$(),T.Y8G("fxLayoutAlign",null!=Le.offer&&Le.offer.bolt12&&""!==(null==Le.offer?null:Le.offer.bolt12)?"center start":"center center")("ngClass",T.eq3(24,ue,Le.screenSize===Le.screenSizeEnum.XS||Le.screenSize===Le.screenSizeEnum.SM)),T.R7$(),T.Y8G("ngIf",(null==Le.offer?null:Le.offer.bolt12)&&""!==(null==Le.offer?null:Le.offer.bolt12)),T.R7$(),T.Y8G("ngIf",!(null!=Le.offer&&Le.offer.bolt12)||""===(null==Le.offer?null:Le.offer.bolt12)),T.R7$(4),T.Y8G("icon",Le.faReceipt),T.R7$(2),T.JRh(Le.screenSize===Le.screenSizeEnum.XS?Le.newlyAdded?"Created":"Offer":Le.newlyAdded?"Offer Created":"Offer Information"),T.R7$(3),T.Y8G("ngClass",T.eq3(26,oe,Le.screenSize===Le.screenSizeEnum.XS)),T.R7$(2),T.Y8G("fxLayoutAlign",null!=Le.offer&&Le.offer.bolt12&&""!==(null==Le.offer?null:Le.offer.bolt12)?"center start":"center center")("ngClass",T.eq3(28,ue,Le.screenSize!==Le.screenSizeEnum.XS&&Le.screenSize!==Le.screenSizeEnum.SM)),T.R7$(),T.Y8G("ngIf",(null==Le.offer?null:Le.offer.bolt12)&&""!==(null==Le.offer?null:Le.offer.bolt12)),T.R7$(),T.Y8G("ngIf",!(null!=Le.offer&&Le.offer.bolt12)||""===(null==Le.offer?null:Le.offer.bolt12)),T.R7$(),T.Y8G("ngIf",Le.screenSize===Le.screenSizeEnum.XS||Le.screenSize===Le.screenSizeEnum.SM),T.R7$(6),T.SpI(" ",null!=Le.offerDecoded&&Le.offerDecoded.offer_amount_msat&&0!==(null==Le.offerDecoded?null:Le.offerDecoded.offer_amount_msat)?T.bMT(24,22,(null==Le.offerDecoded?null:Le.offerDecoded.offer_amount_msat)/1e3):"Open Offer"," "),T.R7$(6),T.SpI(" ",null!=Le.offerDecoded&&Le.offerDecoded.valid?null!=Le.offerDecoded&&Le.offerDecoded.valid?"Yes":"No":"N/K"," "),T.R7$(7),T.SpI(" ",null==Le.offerDecoded?null:Le.offerDecoded.offer_description," "),T.R7$(7),T.JRh(null==Le.offer?null:Le.offer.bolt12),T.R7$(),T.Y8G("ngIf",Le.showAdvanced),T.R7$(),T.Y8G("ngClass",T.l_i(30,he,!Le.showAdvanced,Le.showAdvanced)),T.R7$(2),T.Y8G("ngIf",!Le.showAdvanced)("ngIfElse",Ke),T.R7$(3),T.Y8G("ngIf",(null==Le.offer?null:Le.offer.bolt12)&&""!==(null==Le.offer?null:Le.offer.bolt12)),T.R7$(),T.Y8G("ngIf",!(null!=Le.offer&&Le.offer.bolt12)||""===(null==Le.offer?null:Le.offer.bolt12))}},dependencies:[P.YU,P.bT,M.aY,j.$z,U.m2,U.MM,K.q,q.DJ,q.sA,q.UI,G.PW,Q.Um,$.U,ae.N,P.QX],encapsulation:2}))}return pe(),be})()},32148:(Ae,ee,l)=>{"use strict";var i=l(71993),t=l(70463),p=l(27054).Buffer,S=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],c=new Array(64);function e(){this.init(),this._w=c,t.call(this,64,56)}function T(M,j,U){return U^M&(j^U)}function g(M,j,U){return M&j|U&(M|j)}function d(M){return(M>>>2|M<<30)^(M>>>13|M<<19)^(M>>>22|M<<10)}function w(M){return(M>>>6|M<<26)^(M>>>11|M<<21)^(M>>>25|M<<7)}function m(M){return(M>>>7|M<<25)^(M>>>18|M<<14)^M>>>3}function P(M){return(M>>>17|M<<15)^(M>>>19|M<<13)^M>>>10}i(e,t),e.prototype.init=function(){return this._a=1779033703,this._b=3144134277,this._c=1013904242,this._d=2773480762,this._e=1359893119,this._f=2600822924,this._g=528734635,this._h=1541459225,this},e.prototype._update=function(M){for(var j=this._w,U=0|this._a,K=0|this._b,q=0|this._c,G=0|this._d,Q=0|this._e,$=0|this._f,ae=0|this._g,ue=0|this._h,oe=0;oe<16;++oe)j[oe]=M.readInt32BE(4*oe);for(;oe<64;++oe)j[oe]=P(j[oe-2])+j[oe-7]+m(j[oe-15])+j[oe-16]|0;for(var he=0;he<64;++he){var me=ue+w(Q)+T(Q,$,ae)+S[he]+j[he]|0,Te=d(U)+g(U,K,q)|0;ue=ae,ae=$,$=Q,Q=G+me|0,G=q,q=K,K=U,U=me+Te|0}this._a=U+this._a|0,this._b=K+this._b|0,this._c=q+this._c|0,this._d=G+this._d|0,this._e=Q+this._e|0,this._f=$+this._f|0,this._g=ae+this._g|0,this._h=ue+this._h|0},e.prototype._hash=function(){var M=p.allocUnsafe(32);return M.writeInt32BE(this._a,0),M.writeInt32BE(this._b,4),M.writeInt32BE(this._c,8),M.writeInt32BE(this._d,12),M.writeInt32BE(this._e,16),M.writeInt32BE(this._f,20),M.writeInt32BE(this._g,24),M.writeInt32BE(this._h,28),M},Ae.exports=e},33468:(Ae,ee,l)=>{"use strict";var i=l(68283),t=l(12901),p=l(95542),S=i.rotl32,c=i.sum32,e=i.sum32_5,T=p.ft_1,g=t.BlockHash,d=[1518500249,1859775393,2400959708,3395469782];function w(){if(!(this instanceof w))return new w;g.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}i.inherits(w,g),Ae.exports=w,w.blockSize=512,w.outSize=160,w.hmacStrength=80,w.padLength=64,w.prototype._update=function(P,M){for(var j=this.W,U=0;U<16;U++)j[U]=P[M+U];for(;U{"use strict";var i=l(52529),t=l(21832),p=l(39210);function S(c){if(!(this instanceof S))return new S(c);this.hash=c.hash,this.predResist=!!c.predResist,this.outLen=this.hash.outSize,this.minEntropy=c.minEntropy||this.hash.hmacStrength,this._reseed=null,this.reseedInterval=null,this.K=null,this.V=null;var e=t.toArray(c.entropy,c.entropyEnc||"hex"),T=t.toArray(c.nonce,c.nonceEnc||"hex"),g=t.toArray(c.pers,c.persEnc||"hex");p(e.length>=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._init(e,T,g)}Ae.exports=S,S.prototype._init=function(e,T,g){var d=e.concat(T).concat(g);this.K=new Array(this.outLen/8),this.V=new Array(this.outLen/8);for(var w=0;w=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._update(e.concat(g||[])),this._reseed=1},S.prototype.generate=function(e,T,g,d){if(this._reseed>this.reseedInterval)throw new Error("Reseed is required");"string"!=typeof T&&(d=g,g=T,T=null),g&&(g=t.toArray(g,d||"hex"),this._update(g));for(var w=[];w.length{"use strict";function i(t){return t}l.d(ee,{D:()=>i})},33726:(Ae,ee,l)=>{"use strict";l.d(ee,{R:()=>w});var i=l(58750),t=l(71985),p=l(31397),S=l(47441),c=l(98071),e=l(6450);const T=["addListener","removeListener"],g=["addEventListener","removeEventListener"],d=["on","off"];function w(U,K,q,G){if((0,c.T)(q)&&(G=q,q=void 0),G)return w(U,K,q).pipe((0,e.I)(G));const[Q,$]=function j(U){return(0,c.T)(U.addEventListener)&&(0,c.T)(U.removeEventListener)}(U)?g.map(ae=>ue=>U[ae](K,ue,q)):function P(U){return(0,c.T)(U.addListener)&&(0,c.T)(U.removeListener)}(U)?T.map(m(U,K)):function M(U){return(0,c.T)(U.on)&&(0,c.T)(U.off)}(U)?d.map(m(U,K)):[];if(!Q&&(0,S.X)(U))return(0,p.Z)(ae=>w(ae,K,q))((0,i.Tg)(U));if(!Q)throw new TypeError("Invalid event target");return new t.c(ae=>{const ue=(...oe)=>ae.next(1$(ue)})}function m(U,K){return q=>G=>U[q](K,G)}},33746:(Ae,ee,l)=>{"use strict";l.d(ee,{fg:()=>b,fS:()=>A});var i=l(14085),t=l(39842);let S;const c=["color","button","checkbox","date","datetime-local","email","file","hidden","image","month","number","password","radio","range","reset","search","submit","tel","text","time","url","week"];function e(){if(S)return S;if("object"!=typeof document||!document)return S=new Set(c),S;let k=document.createElement("input");return S=new Set(c.filter(x=>(k.setAttribute("type",x),k.type===x))),S}var T=l(73664),g=l(2615),d=l(983),w=l(21413),m=l(88968),P=l(67847);let M=(()=>{class k{static \u0275fac=function(_){return new(_||k)};static \u0275cmp=T.VBU({type:k,selectors:[["ng-component"]],hostAttrs:["cdk-text-field-style-loader",""],decls:0,vars:0,template:function(_,W){},styles:["textarea.cdk-textarea-autosize{resize:none}textarea.cdk-textarea-autosize-measuring{padding:2px 0 !important;box-sizing:content-box !important;height:auto !important;overflow:hidden !important}textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0 !important;box-sizing:content-box !important;height:0 !important}@keyframes cdk-text-field-autofill-start{/*!*/}@keyframes cdk-text-field-autofill-end{/*!*/}.cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}.cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}\n"],encapsulation:2,changeDetection:0})}return k})();const j={passive:!0};let U=(()=>{class k{_platform=(0,g.WQX)(t.O);_ngZone=(0,g.WQX)(T.SKi);_renderer=(0,g.WQX)(T._9s).createRenderer(null,null);_styleLoader=(0,g.WQX)(m.l);_monitoredElements=new Map;constructor(){}monitor(r){if(!this._platform.isBrowser)return d.w;this._styleLoader.load(M);const _=(0,P.i8)(r),W=this._monitoredElements.get(_);if(W)return W.subject;const I=new w.B,B="cdk-text-field-autofilled",re=be=>{"cdk-text-field-autofill-start"!==be.animationName||_.classList.contains(B)?"cdk-text-field-autofill-end"===be.animationName&&_.classList.contains(B)&&(_.classList.remove(B),this._ngZone.run(()=>I.next({target:be.target,isAutofilled:!1}))):(_.classList.add(B),this._ngZone.run(()=>I.next({target:be.target,isAutofilled:!0})))},pe=this._ngZone.runOutsideAngular(()=>(_.classList.add("cdk-text-field-autofill-monitored"),this._renderer.listen(_,"animationstart",re,j)));return this._monitoredElements.set(_,{subject:I,unlisten:pe}),I}stopMonitoring(r){const _=(0,P.i8)(r),W=this._monitoredElements.get(_);W&&(W.unlisten(),W.subject.complete(),_.classList.remove("cdk-text-field-autofill-monitored"),_.classList.remove("cdk-text-field-autofilled"),this._monitoredElements.delete(_))}ngOnDestroy(){this._monitoredElements.forEach((r,_)=>this.stopMonitoring(_))}static \u0275fac=function(_){return new(_||k)};static \u0275prov=g.jDH({token:k,factory:k.\u0275fac,providedIn:"root"})}return k})(),G=(()=>{class k{static \u0275fac=function(_){return new(_||k)};static \u0275mod=T.$C({type:k});static \u0275inj=g.G2t({})}return k})();var Q=l(59295),$=l(17705),ae=l(89726),ue=l(89417),oe=l(68010),he=l(69588),me=l(2709),Te=l(39336),D=l(71228),n=l(22466);const f=["button","checkbox","file","hidden","image","radio","range","reset","submit"],h=new g.nKC("MAT_INPUT_CONFIG");let b=(()=>{class k{_elementRef=(0,g.WQX)(T.aKT);_platform=(0,g.WQX)(t.O);ngControl=(0,g.WQX)(ue.vO,{optional:!0,self:!0});_autofillMonitor=(0,g.WQX)(U);_ngZone=(0,g.WQX)(T.SKi);_formField=(0,g.WQX)(he.xb,{optional:!0});_renderer=(0,g.WQX)(T.sFG);_uid=(0,g.WQX)(ae.g).getId("mat-input-");_previousNativeValue;_inputValueAccessor;_signalBasedValueAccessor;_previousPlaceholder;_errorStateTracker;_config=(0,g.WQX)(h,{optional:!0});_cleanupIosKeyup;_cleanupWebkitWheel;_isServer;_isNativeSelect;_isTextarea;_isInFormField;focused=!1;stateChanges=new w.B;controlType="mat-input";autofilled=!1;get disabled(){return this._disabled}set disabled(r){this._disabled=(0,i.he)(r),this.focused&&(this.focused=!1,this.stateChanges.next())}_disabled=!1;get id(){return this._id}set id(r){this._id=r||this._uid}_id;placeholder;name;get required(){return this._required??this.ngControl?.control?.hasValidator(ue.k0.required)??!1}set required(r){this._required=(0,i.he)(r)}_required;get type(){return this._type}set type(r){this._type=r||"text",this._validateType(),!this._isTextarea&&e().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}_type="text";get errorStateMatcher(){return this._errorStateTracker.matcher}set errorStateMatcher(r){this._errorStateTracker.matcher=r}userAriaDescribedBy;get value(){return this._signalBasedValueAccessor?this._signalBasedValueAccessor.value():this._inputValueAccessor.value}set value(r){r!==this.value&&(this._signalBasedValueAccessor?this._signalBasedValueAccessor.value.set(r):this._inputValueAccessor.value=r,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(r){this._readonly=(0,i.he)(r)}_readonly=!1;disabledInteractive;get errorState(){return this._errorStateTracker.errorState}set errorState(r){this._errorStateTracker.errorState=r}_neverEmptyInputTypes=["date","datetime","datetime-local","month","time","week"].filter(r=>e().has(r));constructor(){const r=(0,g.WQX)(ue.cV,{optional:!0}),_=(0,g.WQX)(ue.j4,{optional:!0}),W=(0,g.WQX)(me.e),I=(0,g.WQX)(oe.O,{optional:!0,self:!0}),B=this._elementRef.nativeElement,re=B.nodeName.toLowerCase();I?(0,g.Hps)(I.value)?this._signalBasedValueAccessor=I:this._inputValueAccessor=I:this._inputValueAccessor=B,this._previousNativeValue=this.value,this.id=this.id,this._platform.IOS&&this._ngZone.runOutsideAngular(()=>{this._cleanupIosKeyup=this._renderer.listen(B,"keyup",this._iOSKeyupListener)}),this._errorStateTracker=new Te.X(W,this.ngControl,_,r,this.stateChanges),this._isServer=!this._platform.isBrowser,this._isNativeSelect="select"===re,this._isTextarea="textarea"===re,this._isInFormField=!!this._formField,this.disabledInteractive=this._config?.disabledInteractive||!1,this._isNativeSelect&&(this.controlType=B.multiple?"mat-native-select-multiple":"mat-native-select"),this._signalBasedValueAccessor&&(0,Q.QZ)(()=>{this._signalBasedValueAccessor.value(),this.stateChanges.next()})}ngAfterViewInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(r=>{this.autofilled=r.isAutofilled,this.stateChanges.next()})}ngOnChanges(){this.stateChanges.next()}ngOnDestroy(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement),this._cleanupIosKeyup?.(),this._cleanupWebkitWheel?.()}ngDoCheck(){this.ngControl&&(this.updateErrorState(),null!==this.ngControl.disabled&&this.ngControl.disabled!==this.disabled&&(this.disabled=this.ngControl.disabled,this.stateChanges.next())),this._dirtyCheckNativeValue(),this._dirtyCheckPlaceholder()}focus(r){this._elementRef.nativeElement.focus(r)}updateErrorState(){this._errorStateTracker.updateErrorState()}_focusChanged(r){if(r!==this.focused){if(!this._isNativeSelect&&r&&this.disabled&&this.disabledInteractive){const _=this._elementRef.nativeElement;"number"===_.type?(_.type="text",_.setSelectionRange(0,0),_.type="number"):_.setSelectionRange(0,0)}this.focused=r,this.stateChanges.next()}}_onInput(){}_dirtyCheckNativeValue(){const r=this._elementRef.nativeElement.value;this._previousNativeValue!==r&&(this._previousNativeValue=r,this.stateChanges.next())}_dirtyCheckPlaceholder(){const r=this._getPlaceholder();if(r!==this._previousPlaceholder){const _=this._elementRef.nativeElement;this._previousPlaceholder=r,r?_.setAttribute("placeholder",r):_.removeAttribute("placeholder")}}_getPlaceholder(){return this.placeholder||null}_validateType(){f.indexOf(this._type)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let r=this._elementRef.nativeElement.validity;return r&&r.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const r=this._elementRef.nativeElement,_=r.options[0];return this.focused||r.multiple||!this.empty||!!(r.selectedIndex>-1&&_&&_.label)}return this.focused&&!this.disabled||!this.empty}get describedByIds(){return this._elementRef.nativeElement.getAttribute("aria-describedby")?.split(" ")||[]}setDescribedByIds(r){const _=this._elementRef.nativeElement;r.length?_.setAttribute("aria-describedby",r.join(" ")):_.removeAttribute("aria-describedby")}onContainerClick(){this.focused||this.focus()}_isInlineSelect(){const r=this._elementRef.nativeElement;return this._isNativeSelect&&(r.multiple||r.size>1)}_iOSKeyupListener=r=>{const _=r.target;!_.value&&0===_.selectionStart&&0===_.selectionEnd&&(_.setSelectionRange(1,1),_.setSelectionRange(0,0))};_getReadonlyAttribute(){return this._isNativeSelect?null:this.readonly||this.disabled&&this.disabledInteractive?"true":null}static \u0275fac=function(_){return new(_||k)};static \u0275dir=T.FsC({type:k,selectors:[["input","matInput",""],["textarea","matInput",""],["select","matNativeControl",""],["input","matNativeControl",""],["textarea","matNativeControl",""]],hostAttrs:[1,"mat-mdc-input-element"],hostVars:21,hostBindings:function(_,W){1&_&&T.bIt("focus",function(){return W._focusChanged(!0)})("blur",function(){return W._focusChanged(!1)})("input",function(){return W._onInput()}),2&_&&(T.Avn("id",W.id)("disabled",W.disabled&&!W.disabledInteractive)("required",W.required),T.BMQ("name",W.name||null)("readonly",W._getReadonlyAttribute())("aria-disabled",W.disabled&&W.disabledInteractive?"true":null)("aria-invalid",W.empty&&W.required?null:W.errorState)("aria-required",W.required)("id",W.id),T.AVh("mat-input-server",W._isServer)("mat-mdc-form-field-textarea-control",W._isInFormField&&W._isTextarea)("mat-mdc-form-field-input-control",W._isInFormField)("mat-mdc-input-disabled-interactive",W.disabledInteractive)("mdc-text-field__input",W._isInFormField)("mat-mdc-native-select-inline",W._isInlineSelect()))},inputs:{disabled:"disabled",id:"id",placeholder:"placeholder",name:"name",required:"required",type:"type",errorStateMatcher:"errorStateMatcher",userAriaDescribedBy:[0,"aria-describedby","userAriaDescribedBy"],value:"value",readonly:"readonly",disabledInteractive:[2,"disabledInteractive","disabledInteractive",$.L39]},exportAs:["matInput"],features:[T.Jv_([{provide:he.qT,useExisting:k}]),T.OA$]})}return k})(),A=(()=>{class k{static \u0275fac=function(_){return new(_||k)};static \u0275mod=T.$C({type:k});static \u0275inj=g.G2t({imports:[n.y,D.R,D.R,G,n.y]})}return k})()},34133:(Ae,ee,l)=>{var i=l(13546);ee.encrypt=function(t,p){var S=i(p,t._prev);return t._prev=t._cipher.encryptBlock(S),t._prev},ee.decrypt=function(t,p){var S=t._prev;t._prev=p;var c=t._cipher.decryptBlock(p);return i(c,S)}},34320:(Ae,ee,l)=>{var i=l(15066).Reporter,t=l(15066).EncoderBuffer,p=l(15066).DecoderBuffer,S=l(39210),c=["seq","seqof","set","setof","objid","bool","gentime","utctime","null_","enum","int","objDesc","bitstr","bmpstr","charstr","genstr","graphstr","ia5str","iso646str","numstr","octstr","printstr","t61str","unistr","utf8str","videostr"],e=["key","obj","use","optional","explicit","implicit","def","choice","any","contains"].concat(c);function g(w,m){var P={};this._baseState=P,P.enc=w,P.parent=m||null,P.children=null,P.tag=null,P.args=null,P.reverseArgs=null,P.choice=null,P.optional=!1,P.any=!1,P.obj=!1,P.use=null,P.useDecoder=null,P.key=null,P.default=null,P.explicit=null,P.implicit=null,P.contains=null,P.parent||(P.children=[],this._wrap())}Ae.exports=g;var d=["enc","parent","children","tag","args","reverseArgs","choice","optional","any","obj","use","alteredUse","key","default","explicit","implicit","contains"];g.prototype.clone=function(){var m=this._baseState,P={};d.forEach(function(j){P[j]=m[j]});var M=new this.constructor(P.parent);return M._baseState=P,M},g.prototype._wrap=function(){var m=this._baseState;e.forEach(function(P){this[P]=function(){var j=new this.constructor(this);return m.children.push(j),j[P].apply(j,arguments)}},this)},g.prototype._init=function(m){var P=this._baseState;S(null===P.parent),m.call(this),P.children=P.children.filter(function(M){return M._baseState.parent===this},this),S.equal(P.children.length,1,"Root node can have only one child")},g.prototype._useArgs=function(m){var P=this._baseState,M=m.filter(function(j){return j instanceof this.constructor},this);m=m.filter(function(j){return!(j instanceof this.constructor)},this),0!==M.length&&(S(null===P.children),P.children=M,M.forEach(function(j){j._baseState.parent=this},this)),0!==m.length&&(S(null===P.args),P.args=m,P.reverseArgs=m.map(function(j){if("object"!=typeof j||j.constructor!==Object)return j;var U={};return Object.keys(j).forEach(function(K){K==(0|K)&&(K|=0),U[j[K]]=K}),U}))},["_peekTag","_decodeTag","_use","_decodeStr","_decodeObjid","_decodeTime","_decodeNull","_decodeInt","_decodeBool","_decodeList","_encodeComposite","_encodeStr","_encodeObjid","_encodeTime","_encodeNull","_encodeInt","_encodeBool"].forEach(function(w){g.prototype[w]=function(){throw new Error(w+" not implemented for encoding: "+this._baseState.enc)}}),c.forEach(function(w){g.prototype[w]=function(){var P=this._baseState,M=Array.prototype.slice.call(arguments);return S(null===P.tag),P.tag=w,this._useArgs(M),this}}),g.prototype.use=function(m){S(m);var P=this._baseState;return S(null===P.use),P.use=m,this},g.prototype.optional=function(){return this._baseState.optional=!0,this},g.prototype.def=function(m){var P=this._baseState;return S(null===P.default),P.default=m,P.optional=!0,this},g.prototype.explicit=function(m){var P=this._baseState;return S(null===P.explicit&&null===P.implicit),P.explicit=m,this},g.prototype.implicit=function(m){var P=this._baseState;return S(null===P.explicit&&null===P.implicit),P.implicit=m,this},g.prototype.obj=function(){var m=this._baseState,P=Array.prototype.slice.call(arguments);return m.obj=!0,0!==P.length&&this._useArgs(P),this},g.prototype.key=function(m){var P=this._baseState;return S(null===P.key),P.key=m,this},g.prototype.any=function(){return this._baseState.any=!0,this},g.prototype.choice=function(m){var P=this._baseState;return S(null===P.choice),P.choice=m,this._useArgs(Object.keys(m).map(function(M){return m[M]})),this},g.prototype.contains=function(m){var P=this._baseState;return S(null===P.use),P.contains=m,this},g.prototype._decode=function(m,P){var M=this._baseState;if(null===M.parent)return m.wrapResult(M.children[0]._decode(m,P));var Q,j=M.default,U=!0,K=null;if(null!==M.key&&(K=m.enterKey(M.key)),M.optional){var q=null;if(null!==M.explicit?q=M.explicit:null!==M.implicit?q=M.implicit:null!==M.tag&&(q=M.tag),null!==q||M.any){if(U=this._peekTag(m,q,M.any),m.isError(U))return U}else{var G=m.save();try{null===M.choice?this._decodeGeneric(M.tag,m,P):this._decodeChoice(m,P),U=!0}catch{U=!1}m.restore(G)}}if(M.obj&&U&&(Q=m.enterObject()),U){if(null!==M.explicit){var $=this._decodeTag(m,M.explicit);if(m.isError($))return $;m=$}var ae=m.offset;if(null===M.use&&null===M.choice){M.any&&(G=m.save());var ue=this._decodeTag(m,null!==M.implicit?M.implicit:M.tag,M.any);if(m.isError(ue))return ue;M.any?j=m.raw(G):m=ue}if(P&&P.track&&null!==M.tag&&P.track(m.path(),ae,m.length,"tagged"),P&&P.track&&null!==M.tag&&P.track(m.path(),m.offset,m.length,"content"),M.any||(j=null===M.choice?this._decodeGeneric(M.tag,m,P):this._decodeChoice(m,P)),m.isError(j))return j;if(!M.any&&null===M.choice&&null!==M.children&&M.children.forEach(function(me){me._decode(m,P)}),M.contains&&("octstr"===M.tag||"bitstr"===M.tag)){var oe=new p(j);j=this._getUse(M.contains,m._reporterState.obj)._decode(oe,P)}}return M.obj&&U&&(j=m.leaveObject(Q)),null===M.key||null===j&&!0!==U?null!==K&&m.exitKey(K):m.leaveKey(K,M.key,j),j},g.prototype._decodeGeneric=function(m,P,M){var j=this._baseState;return"seq"===m||"set"===m?null:"seqof"===m||"setof"===m?this._decodeList(P,m,j.args[0],M):/str$/.test(m)?this._decodeStr(P,m,M):"objid"===m&&j.args?this._decodeObjid(P,j.args[0],j.args[1],M):"objid"===m?this._decodeObjid(P,null,null,M):"gentime"===m||"utctime"===m?this._decodeTime(P,m,M):"null_"===m?this._decodeNull(P,M):"bool"===m?this._decodeBool(P,M):"objDesc"===m?this._decodeStr(P,m,M):"int"===m||"enum"===m?this._decodeInt(P,j.args&&j.args[0],M):null!==j.use?this._getUse(j.use,P._reporterState.obj)._decode(P,M):P.error("unknown tag: "+m)},g.prototype._getUse=function(m,P){var M=this._baseState;return M.useDecoder=this._use(m,P),S(null===M.useDecoder._baseState.parent),M.useDecoder=M.useDecoder._baseState.children[0],M.implicit!==M.useDecoder._baseState.implicit&&(M.useDecoder=M.useDecoder.clone(),M.useDecoder._baseState.implicit=M.implicit),M.useDecoder},g.prototype._decodeChoice=function(m,P){var M=this._baseState,j=null,U=!1;return Object.keys(M.choice).some(function(K){var q=m.save(),G=M.choice[K];try{var Q=G._decode(m,P);if(m.isError(Q))return!1;j={type:K,value:Q},U=!0}catch{return m.restore(q),!1}return!0},this),U?j:m.error("Choice not matched")},g.prototype._createEncoderBuffer=function(m){return new t(m,this.reporter)},g.prototype._encode=function(m,P,M){var j=this._baseState;if(null===j.default||j.default!==m){var U=this._encodeValue(m,P,M);if(void 0!==U&&!this._skipDefault(U,P,M))return U}},g.prototype._encodeValue=function(m,P,M){var j=this._baseState;if(null===j.parent)return j.children[0]._encode(m,P||new i);var G=null;if(this.reporter=P,j.optional&&void 0===m){if(null===j.default)return;m=j.default}var U=null,K=!1;if(j.any)G=this._createEncoderBuffer(m);else if(j.choice)G=this._encodeChoice(m,P);else if(j.contains)U=this._getUse(j.contains,M)._encode(m,P),K=!0;else if(j.children)U=j.children.map(function(ae){if("null_"===ae._baseState.tag)return ae._encode(null,P,m);if(null===ae._baseState.key)return P.error("Child should have a key");var ue=P.enterKey(ae._baseState.key);if("object"!=typeof m)return P.error("Child expected, but input is not object");var oe=ae._encode(m[ae._baseState.key],P,m);return P.leaveKey(ue),oe},this).filter(function(ae){return ae}),U=this._createEncoderBuffer(U);else if("seqof"===j.tag||"setof"===j.tag){if(!j.args||1!==j.args.length)return P.error("Too many args for : "+j.tag);if(!Array.isArray(m))return P.error("seqof/setof, but data is not Array");var q=this.clone();q._baseState.implicit=null,U=this._createEncoderBuffer(m.map(function(ae){return this._getUse(this._baseState.args[0],m)._encode(ae,P)},q))}else null!==j.use?G=this._getUse(j.use,M)._encode(m,P):(U=this._encodePrimitive(j.tag,m),K=!0);if(!j.any&&null===j.choice){var Q=null!==j.implicit?j.implicit:j.tag,$=null===j.implicit?"universal":"context";null===Q?null===j.use&&P.error("Tag could be omitted only for .use()"):null===j.use&&(G=this._encodeComposite(Q,K,$,U))}return null!==j.explicit&&(G=this._encodeComposite(j.explicit,!1,"context",G)),G},g.prototype._encodeChoice=function(m,P){var M=this._baseState,j=M.choice[m.type];return j||S(!1,m.type+" not found in "+JSON.stringify(Object.keys(M.choice))),j._encode(m.value,P)},g.prototype._encodePrimitive=function(m,P){var M=this._baseState;if(/str$/.test(m))return this._encodeStr(P,m);if("objid"===m&&M.args)return this._encodeObjid(P,M.reverseArgs[0],M.args[1]);if("objid"===m)return this._encodeObjid(P,null,null);if("gentime"===m||"utctime"===m)return this._encodeTime(P,m);if("null_"===m)return this._encodeNull();if("int"===m||"enum"===m)return this._encodeInt(P,M.args&&M.reverseArgs[0]);if("bool"===m)return this._encodeBool(P);if("objDesc"===m)return this._encodeStr(P,m);throw new Error("Unsupported tag: "+m)},g.prototype._isNumstr=function(m){return/^[0-9 ]*$/.test(m)},g.prototype._isPrintstr=function(m){return/^[A-Za-z0-9 '\(\)\+,\-\.\/:=\?]*$/.test(m)}},34330:(Ae,ee,l)=>{"use strict";l.d(ee,{D:()=>q,Q:()=>$});var i=l(2615),t=l(73664),p=l(71985),S=l(21413),c=l(84572),e=l(28793),T=l(70152),g=l(96354),d=l(65245),w=l(99172),m=l(96697),P=l(56977),M=l(39842),j=l(80408);const U=new Set;let K,q=(()=>{class ue{_platform=(0,i.WQX)(M.O);_nonce=(0,i.WQX)(t.BIS,{optional:!0});_matchMedia;constructor(){this._matchMedia=this._platform.isBrowser&&window.matchMedia?window.matchMedia.bind(window):Q}matchMedia(he){return(this._platform.WEBKIT||this._platform.BLINK)&&function G(ue,oe){if(!U.has(ue))try{K||(K=document.createElement("style"),oe&&K.setAttribute("nonce",oe),K.setAttribute("type","text/css"),document.head.appendChild(K)),K.sheet&&(K.sheet.insertRule(`@media ${ue} {body{ }}`,0),U.add(ue))}catch(he){console.error(he)}}(he,this._nonce),this._matchMedia(he)}static \u0275fac=function(me){return new(me||ue)};static \u0275prov=i.jDH({token:ue,factory:ue.\u0275fac,providedIn:"root"})}return ue})();function Q(ue){return{matches:"all"===ue||""===ue,media:ue,addListener:()=>{},removeListener:()=>{}}}let $=(()=>{class ue{_mediaMatcher=(0,i.WQX)(q);_zone=(0,i.WQX)(t.SKi);_queries=new Map;_destroySubject=new S.B;constructor(){}ngOnDestroy(){this._destroySubject.next(),this._destroySubject.complete()}isMatched(he){return ae((0,j.F)(he)).some(Te=>this._registerQuery(Te).mql.matches)}observe(he){const Te=ae((0,j.F)(he)).map(n=>this._registerQuery(n).observable);let D=(0,c.z)(Te);return D=(0,e.x)(D.pipe((0,m.s)(1)),D.pipe((0,d.i)(1),(0,T.B)(0))),D.pipe((0,g.T)(n=>{const o={matches:!1,breakpoints:{}};return n.forEach(({matches:f,query:h})=>{o.matches=o.matches||f,o.breakpoints[h]=f}),o}))}_registerQuery(he){if(this._queries.has(he))return this._queries.get(he);const me=this._mediaMatcher.matchMedia(he),D={observable:new p.c(n=>{const o=f=>this._zone.run(()=>n.next(f));return me.addListener(o),()=>{me.removeListener(o)}}).pipe((0,w.Z)(me),(0,g.T)(({matches:n})=>({query:he,matches:n})),(0,P.Q)(this._destroySubject)),mql:me};return this._queries.set(he,D),D}static \u0275fac=function(me){return new(me||ue)};static \u0275prov=i.jDH({token:ue,factory:ue.\u0275fac,providedIn:"root"})}return ue})();function ae(ue){return ue.map(oe=>oe.split(",")).reduce((oe,he)=>oe.concat(he)).map(oe=>oe.trim())}},34725:(Ae,ee,l)=>{"use strict";var i=l(71993),t=l(13686),p=l(27054).Buffer,S=new Array(16);function c(){t.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878}function e(m,P){return m<>>32-P}function T(m,P,M,j,U,K,q){return e(m+(P&M|~P&j)+U+K|0,q)+P|0}function g(m,P,M,j,U,K,q){return e(m+(P&j|M&~j)+U+K|0,q)+P|0}function d(m,P,M,j,U,K,q){return e(m+(P^M^j)+U+K|0,q)+P|0}function w(m,P,M,j,U,K,q){return e(m+(M^(P|~j))+U+K|0,q)+P|0}i(c,t),c.prototype._update=function(){for(var m=S,P=0;P<16;++P)m[P]=this._block.readInt32LE(4*P);var M=this._a,j=this._b,U=this._c,K=this._d;M=T(M,j,U,K,m[0],3614090360,7),K=T(K,M,j,U,m[1],3905402710,12),U=T(U,K,M,j,m[2],606105819,17),j=T(j,U,K,M,m[3],3250441966,22),M=T(M,j,U,K,m[4],4118548399,7),K=T(K,M,j,U,m[5],1200080426,12),U=T(U,K,M,j,m[6],2821735955,17),j=T(j,U,K,M,m[7],4249261313,22),M=T(M,j,U,K,m[8],1770035416,7),K=T(K,M,j,U,m[9],2336552879,12),U=T(U,K,M,j,m[10],4294925233,17),j=T(j,U,K,M,m[11],2304563134,22),M=T(M,j,U,K,m[12],1804603682,7),K=T(K,M,j,U,m[13],4254626195,12),U=T(U,K,M,j,m[14],2792965006,17),M=g(M,j=T(j,U,K,M,m[15],1236535329,22),U,K,m[1],4129170786,5),K=g(K,M,j,U,m[6],3225465664,9),U=g(U,K,M,j,m[11],643717713,14),j=g(j,U,K,M,m[0],3921069994,20),M=g(M,j,U,K,m[5],3593408605,5),K=g(K,M,j,U,m[10],38016083,9),U=g(U,K,M,j,m[15],3634488961,14),j=g(j,U,K,M,m[4],3889429448,20),M=g(M,j,U,K,m[9],568446438,5),K=g(K,M,j,U,m[14],3275163606,9),U=g(U,K,M,j,m[3],4107603335,14),j=g(j,U,K,M,m[8],1163531501,20),M=g(M,j,U,K,m[13],2850285829,5),K=g(K,M,j,U,m[2],4243563512,9),U=g(U,K,M,j,m[7],1735328473,14),M=d(M,j=g(j,U,K,M,m[12],2368359562,20),U,K,m[5],4294588738,4),K=d(K,M,j,U,m[8],2272392833,11),U=d(U,K,M,j,m[11],1839030562,16),j=d(j,U,K,M,m[14],4259657740,23),M=d(M,j,U,K,m[1],2763975236,4),K=d(K,M,j,U,m[4],1272893353,11),U=d(U,K,M,j,m[7],4139469664,16),j=d(j,U,K,M,m[10],3200236656,23),M=d(M,j,U,K,m[13],681279174,4),K=d(K,M,j,U,m[0],3936430074,11),U=d(U,K,M,j,m[3],3572445317,16),j=d(j,U,K,M,m[6],76029189,23),M=d(M,j,U,K,m[9],3654602809,4),K=d(K,M,j,U,m[12],3873151461,11),U=d(U,K,M,j,m[15],530742520,16),M=w(M,j=d(j,U,K,M,m[2],3299628645,23),U,K,m[0],4096336452,6),K=w(K,M,j,U,m[7],1126891415,10),U=w(U,K,M,j,m[14],2878612391,15),j=w(j,U,K,M,m[5],4237533241,21),M=w(M,j,U,K,m[12],1700485571,6),K=w(K,M,j,U,m[3],2399980690,10),U=w(U,K,M,j,m[10],4293915773,15),j=w(j,U,K,M,m[1],2240044497,21),M=w(M,j,U,K,m[8],1873313359,6),K=w(K,M,j,U,m[15],4264355552,10),U=w(U,K,M,j,m[6],2734768916,15),j=w(j,U,K,M,m[13],1309151649,21),M=w(M,j,U,K,m[4],4149444226,6),K=w(K,M,j,U,m[11],3174756917,10),U=w(U,K,M,j,m[2],718787259,15),j=w(j,U,K,M,m[9],3951481745,21),this._a=this._a+M|0,this._b=this._b+j|0,this._c=this._c+U|0,this._d=this._d+K|0},c.prototype._digest=function(){this._block[this._blockOffset++]=128,this._blockOffset>56&&(this._block.fill(0,this._blockOffset,64),this._update(),this._blockOffset=0),this._block.fill(0,this._blockOffset,56),this._block.writeUInt32LE(this._length[0],56),this._block.writeUInt32LE(this._length[1],60),this._update();var m=p.allocUnsafe(16);return m.writeInt32LE(this._a,0),m.writeInt32LE(this._b,4),m.writeInt32LE(this._c,8),m.writeInt32LE(this._d,12),m},Ae.exports=c},35294:(Ae,ee,l)=>{var i;function t(S){this.rand=S}if(Ae.exports=function(c){return i||(i=new t(null)),i.generate(c)},Ae.exports.Rand=t,t.prototype.generate=function(c){return this._rand(c)},t.prototype._rand=function(c){if(this.rand.getBytes)return this.rand.getBytes(c);for(var e=new Uint8Array(c),T=0;T{"use strict";var i=l(27054).Buffer,t=l(41090),p=typeof Uint8Array<"u",c=p&&typeof ArrayBuffer<"u"&&ArrayBuffer.isView;Ae.exports=function(e,T){if("string"==typeof e||i.isBuffer(e)||p&&e instanceof Uint8Array||c&&c(e))return t(e,T);throw new TypeError('The "data" argument must be a string, a Buffer, a Uint8Array, or a DataView')}},35861:(Ae,ee,l)=>{"use strict";var i=l(4570),t=function(){return!!i};t.hasArrayLengthDefineBug=function(){if(!i)return null;try{return 1!==i([],"length",{value:1}).length}catch{return!0}},Ae.exports=t},35941:Ae=>{function ee(l){if(!l||l<1)throw new Error("BitMatrix size must be defined and greater than 0");this.size=l,this.data=new Uint8Array(l*l),this.reservedBit=new Uint8Array(l*l)}ee.prototype.set=function(l,i,t,p){const S=l*this.size+i;this.data[S]=t,p&&(this.reservedBit[S]=!0)},ee.prototype.get=function(l,i){return this.data[l*this.size+i]},ee.prototype.xor=function(l,i,t){this.data[l*this.size+i]^=t},ee.prototype.isReserved=function(l,i){return this.reservedBit[l*this.size+i]},Ae.exports=ee},36013:(Ae,ee,l)=>{"use strict";l.d(ee,{F7:()=>lt,FR:()=>Pe,M6:()=>Mt,Ti:()=>Ke,V5:()=>Ct,aP:()=>Ht,xJ:()=>dt});var i=l(76939),t=l(97768),p=l(2615),S=l(73664),c=l(17705),e=l(76838),T=l(21413),g=l(18359),d=l(72200),w=l(88968),m=l(49046),P=l(12629),M=l(32046),j=l(12496),U=l(39842),K=l(96354),q=l(99172),G=l(25558),Q=l(56977),$=l(2709),ae=l(31804),ue=l(22466),oe=l(26881);const he=(Ce,ze,Z)=>({index:Ce,active:ze,optional:Z});function me(Ce,ze){if(1&Ce&&S.eu8(0,2),2&Ce){const Z=S.XpG();S.Y8G("ngTemplateOutlet",Z.iconOverrides[Z.state])("ngTemplateOutletContext",S.sMw(2,he,Z.index,Z.active,Z.optional))}}function Te(Ce,ze){if(1&Ce&&(S.j41(0,"span",7),S.EFF(1),S.k0s()),2&Ce){const Z=S.XpG(2);S.R7$(),S.JRh(Z._getDefaultTextForState(Z.state))}}function D(Ce,ze){if(1&Ce&&(S.j41(0,"span",8),S.EFF(1),S.k0s()),2&Ce){const Z=S.XpG(3);S.R7$(),S.JRh(Z._intl.completedLabel)}}function n(Ce,ze){if(1&Ce&&(S.j41(0,"span",8),S.EFF(1),S.k0s()),2&Ce){const Z=S.XpG(3);S.R7$(),S.JRh(Z._intl.editableLabel)}}function o(Ce,ze){if(1&Ce&&(S.nVh(0,D,2,1,"span",8)(1,n,2,1,"span",8),S.j41(2,"mat-icon",7),S.EFF(3),S.k0s()),2&Ce){const Z=S.XpG(2);S.vxM("done"===Z.state?0:"edit"===Z.state?1:-1),S.R7$(3),S.JRh(Z._getDefaultTextForState(Z.state))}}function f(Ce,ze){if(1&Ce&&S.nVh(0,Te,2,1,"span",7)(1,o,4,2),2&Ce){let Z;const J=S.XpG();S.vxM("number"===(Z=J.state)?0:1)}}function h(Ce,ze){1&Ce&&(S.j41(0,"div",4),S.eu8(1,9),S.k0s()),2&Ce&&(S.R7$(),S.Y8G("ngTemplateOutlet",ze.template))}function b(Ce,ze){if(1&Ce&&(S.j41(0,"div",4),S.EFF(1),S.k0s()),2&Ce){const Z=S.XpG();S.R7$(),S.JRh(Z.label)}}function A(Ce,ze){if(1&Ce&&(S.j41(0,"div",5),S.EFF(1),S.k0s()),2&Ce){const Z=S.XpG();S.R7$(),S.JRh(Z._intl.optionalLabel)}}function k(Ce,ze){if(1&Ce&&(S.j41(0,"div",6),S.EFF(1),S.k0s()),2&Ce){const Z=S.XpG();S.R7$(),S.JRh(Z.errorMessage)}}const x=["*"];function r(Ce,ze){}function _(Ce,ze){if(1&Ce&&(S.SdG(0),S.DNE(1,r,0,0,"ng-template",0)),2&Ce){const Z=S.XpG();S.R7$(),S.Y8G("cdkPortalOutlet",Z._portal)}}const W=["animatedContainer"],I=Ce=>({step:Ce});function B(Ce,ze){1&Ce&&S.SdG(0)}function re(Ce,ze){1&Ce&&S.nrm(0,"div",7)}function pe(Ce,ze){if(1&Ce&&(S.eu8(0,6),S.nVh(1,re,1,0,"div",7)),2&Ce){const Z=ze.$implicit,J=ze.$index,fe=ze.$count;S.XpG(2);const Ie=S.sdS(4);S.Y8G("ngTemplateOutlet",Ie)("ngTemplateOutletContext",S.eq3(3,I,Z)),S.R7$(),S.vxM(J!==fe-1?1:-1)}}function be(Ce,ze){if(1&Ce&&(S.j41(0,"div",8,1),S.eu8(2,9),S.k0s()),2&Ce){const Z=ze.$implicit,J=ze.$index,fe=S.XpG(2);S.HbH("mat-horizontal-stepper-content-"+fe._getAnimationDirection(J)),S.Y8G("id",fe._getStepContentId(J)),S.BMQ("aria-labelledby",fe._getStepLabelId(J))("inert",fe.selectedIndex===J?null:""),S.R7$(2),S.Y8G("ngTemplateOutlet",Z.content)}}function Be(Ce,ze){if(1&Ce&&(S.j41(0,"div",2)(1,"div",3),S.Z7z(2,pe,2,5,null,null,S.fX1),S.k0s(),S.j41(4,"div",4),S.Z7z(5,be,3,6,"div",5,S.fX1),S.k0s()()),2&Ce){const Z=S.XpG();S.R7$(2),S.Dyx(Z.steps),S.R7$(3),S.Dyx(Z.steps)}}function _e(Ce,ze){if(1&Ce&&(S.j41(0,"div",10),S.eu8(1,6),S.j41(2,"div",11,1)(4,"div",12)(5,"div",13),S.eu8(6,9),S.k0s()()()()),2&Ce){const Z=ze.$implicit,J=ze.$index,fe=ze.$index,Ie=ze.$count,ht=S.XpG(2),li=S.sdS(4);S.R7$(),S.Y8G("ngTemplateOutlet",li)("ngTemplateOutletContext",S.eq3(10,I,Z)),S.R7$(),S.AVh("mat-stepper-vertical-line",fe!==Ie-1)("mat-vertical-content-container-active",ht.selectedIndex===J),S.BMQ("inert",ht.selectedIndex===J?null:""),S.R7$(2),S.Y8G("id",ht._getStepContentId(J)),S.BMQ("aria-labelledby",ht._getStepLabelId(J)),S.R7$(2),S.Y8G("ngTemplateOutlet",Z.content)}}function ye(Ce,ze){if(1&Ce&&S.Z7z(0,_e,7,12,"div",10,S.fX1),2&Ce){const Z=S.XpG();S.Dyx(Z.steps)}}function Le(Ce,ze){if(1&Ce){const Z=S.RV6();S.j41(0,"mat-step-header",14),S.bIt("click",function(){const fe=p.eBV(Z).step;return p.Njj(fe.select())})("keydown",function(fe){p.eBV(Z);const Ie=S.XpG();return p.Njj(Ie._onKeydown(fe))}),S.k0s()}if(2&Ce){const Z=ze.step,J=S.XpG();S.AVh("mat-horizontal-stepper-header","horizontal"===J.orientation)("mat-vertical-stepper-header","vertical"===J.orientation),S.Y8G("tabIndex",J._getFocusIndex()===Z.index()?0:-1)("id",J._getStepLabelId(Z.index()))("index",Z.index())("state",Z.indicatorType())("label",Z.stepLabel||Z.label)("selected",Z.isSelected())("active",Z.isNavigable())("optional",Z.optional)("errorMessage",Z.errorMessage)("iconOverrides",J._iconOverrides)("disableRipple",J.disableRipple||!Z.isNavigable())("color",Z.color||J.color),S.BMQ("aria-posinset",Z.index()+1)("aria-setsize",J.steps.length)("aria-controls",J._getStepContentId(Z.index()))("aria-selected",Z.isSelected())("aria-label",Z.ariaLabel||null)("aria-labelledby",!Z.ariaLabel&&Z.ariaLabelledby?Z.ariaLabelledby:null)("aria-disabled",!Z.isNavigable()||null)}}let Ke=(()=>{class Ce extends t.nb{static \u0275fac=(()=>{let Z;return function(fe){return(Z||(Z=S.xGo(Ce)))(fe||Ce)}})();static \u0275dir=S.FsC({type:Ce,selectors:[["","matStepLabel",""]],features:[S.Vt3]})}return Ce})(),ge=(()=>{class Ce{changes=new T.B;optionalLabel="Optional";completedLabel="Completed";editableLabel="Editable";static \u0275fac=function(J){return new(J||Ce)};static \u0275prov=p.jDH({token:Ce,factory:Ce.\u0275fac,providedIn:"root"})}return Ce})();const Oe={provide:ge,deps:[[new S.Xx1,new S.kdw,ge]],useFactory:function ve(Ce){return Ce||new ge}};let Ee=(()=>{class Ce extends t.oX{_intl=(0,p.WQX)(ge);_focusMonitor=(0,p.WQX)(e.FN);_intlSubscription;state;label;errorMessage;iconOverrides;index;selected;active;optional;disableRipple;color;constructor(){super();const Z=(0,p.WQX)(w.l);Z.load(M.A),Z.load(m.Y);const J=(0,p.WQX)(c.gRc);this._intlSubscription=this._intl.changes.subscribe(()=>J.markForCheck())}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._intlSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._elementRef)}focus(Z,J){Z?this._focusMonitor.focusVia(this._elementRef,Z,J):this._elementRef.nativeElement.focus(J)}_stringLabel(){return this.label instanceof Ke?null:this.label}_templateLabel(){return this.label instanceof Ke?this.label:null}_getHostElement(){return this._elementRef.nativeElement}_getDefaultTextForState(Z){return"number"==Z?`${this.index+1}`:"edit"==Z?"create":"error"==Z?"warning":Z}_hasEmptyLabel(){return!(this._stringLabel()||this._templateLabel()||this._hasOptionalLabel()||this._hasErrorLabel())}_hasOptionalLabel(){return this.optional&&"error"!==this.state}_hasErrorLabel(){return"error"===this.state}static \u0275fac=function(J){return new(J||Ce)};static \u0275cmp=S.VBU({type:Ce,selectors:[["mat-step-header"]],hostAttrs:["role","tab",1,"mat-step-header"],hostVars:4,hostBindings:function(J,fe){2&J&&(S.HbH("mat-"+(fe.color||"primary")),S.AVh("mat-step-header-empty-label",fe._hasEmptyLabel()))},inputs:{state:"state",label:"label",errorMessage:"errorMessage",iconOverrides:"iconOverrides",index:"index",selected:"selected",active:"active",optional:"optional",disableRipple:"disableRipple",color:"color"},features:[S.Vt3],decls:10,vars:17,consts:[["matRipple","",1,"mat-step-header-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled"],[1,"mat-step-icon-content"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[1,"mat-step-label"],[1,"mat-step-text-label"],[1,"mat-step-optional"],[1,"mat-step-sub-label-error"],["aria-hidden","true"],[1,"cdk-visually-hidden"],[3,"ngTemplateOutlet"]],template:function(J,fe){if(1&J&&(S.nrm(0,"div",0),S.j41(1,"div")(2,"div",1),S.nVh(3,me,1,6,"ng-container",2)(4,f,2,1),S.k0s()(),S.j41(5,"div",3),S.nVh(6,h,2,1,"div",4)(7,b,2,1,"div",4),S.nVh(8,A,2,1,"div",5),S.nVh(9,k,2,1,"div",6),S.k0s()),2&J){let Ie;S.Y8G("matRippleTrigger",fe._getHostElement())("matRippleDisabled",fe.disableRipple),S.R7$(),S.HbH(S.VkB("mat-step-icon-state-",fe.state," mat-step-icon")),S.AVh("mat-step-icon-selected",fe.selected),S.R7$(2),S.vxM(fe.iconOverrides&&fe.iconOverrides[fe.state]?3:4),S.R7$(2),S.AVh("mat-step-label-active",fe.active)("mat-step-label-selected",fe.selected)("mat-step-label-error","error"==fe.state),S.R7$(),S.vxM((Ie=fe._templateLabel())?6:fe._stringLabel()?7:-1,Ie),S.R7$(2),S.vxM(fe._hasOptionalLabel()?8:-1),S.R7$(),S.vxM(fe._hasErrorLabel()?9:-1)}},dependencies:[j.r6,d.T3,P.An],styles:['.mat-step-header{overflow:hidden;outline:none;cursor:pointer;position:relative;box-sizing:content-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-step-header:focus .mat-focus-indicator::before{content:""}.mat-step-header:hover[aria-disabled=true]{cursor:default}.mat-step-header:hover:not([aria-disabled]),.mat-step-header:hover[aria-disabled=false]{background-color:var(--mat-stepper-header-hover-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent));border-radius:var(--mat-stepper-header-hover-state-layer-shape, var(--mat-sys-corner-medium))}.mat-step-header.cdk-keyboard-focused,.mat-step-header.cdk-program-focused{background-color:var(--mat-stepper-header-focus-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-focus-state-layer-opacity) * 100%), transparent));border-radius:var(--mat-stepper-header-focus-state-layer-shape, var(--mat-sys-corner-medium))}@media(hover: none){.mat-step-header:hover{background:none}}@media(forced-colors: active){.mat-step-header{outline:solid 1px}.mat-step-header[aria-selected=true] .mat-step-label{text-decoration:underline}.mat-step-header[aria-disabled=true]{outline-color:GrayText}.mat-step-header[aria-disabled=true] .mat-step-label,.mat-step-header[aria-disabled=true] .mat-step-icon,.mat-step-header[aria-disabled=true] .mat-step-optional{color:GrayText}}.mat-step-optional{font-size:12px;color:var(--mat-stepper-header-optional-label-text-color, var(--mat-sys-on-surface-variant))}.mat-step-sub-label-error{font-size:12px;font-weight:normal}.mat-step-icon{border-radius:50%;height:24px;width:24px;flex-shrink:0;position:relative;color:var(--mat-stepper-header-icon-foreground-color, var(--mat-sys-surface));background-color:var(--mat-stepper-header-icon-background-color, var(--mat-sys-on-surface-variant))}.mat-step-icon-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);display:flex}.mat-step-icon .mat-icon{font-size:16px;height:16px;width:16px}.mat-step-icon-state-error{background-color:var(--mat-stepper-header-error-state-icon-background-color, transparent);color:var(--mat-stepper-header-error-state-icon-foreground-color, var(--mat-sys-error))}.mat-step-icon-state-error .mat-icon{font-size:24px;height:24px;width:24px}.mat-step-label{display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-width:50px;vertical-align:middle;font-family:var(--mat-stepper-header-label-text-font, var(--mat-sys-title-small-font));font-size:var(--mat-stepper-header-label-text-size, var(--mat-sys-title-small-size));font-weight:var(--mat-stepper-header-label-text-weight, var(--mat-sys-title-small-weight));color:var(--mat-stepper-header-label-text-color, var(--mat-sys-on-surface-variant))}.mat-step-label.mat-step-label-active{color:var(--mat-stepper-header-selected-state-label-text-color, var(--mat-sys-on-surface-variant))}.mat-step-label.mat-step-label-error{color:var(--mat-stepper-header-error-state-label-text-color, var(--mat-sys-error));font-size:var(--mat-stepper-header-error-state-label-text-size, var(--mat-sys-title-small-size))}.mat-step-label.mat-step-label-selected{font-size:var(--mat-stepper-header-selected-state-label-text-size, var(--mat-sys-title-small-size));font-weight:var(--mat-stepper-header-selected-state-label-text-weight, var(--mat-sys-title-small-weight))}.mat-step-header-empty-label .mat-step-label{min-width:0}.mat-step-text-label{text-overflow:ellipsis;overflow:hidden}.mat-step-header .mat-step-header-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-step-icon-selected{background-color:var(--mat-stepper-header-selected-state-icon-background-color, var(--mat-sys-primary));color:var(--mat-stepper-header-selected-state-icon-foreground-color, var(--mat-sys-on-primary))}.mat-step-icon-state-done{background-color:var(--mat-stepper-header-done-state-icon-background-color, var(--mat-sys-primary));color:var(--mat-stepper-header-done-state-icon-foreground-color, var(--mat-sys-on-primary))}.mat-step-icon-state-edit{background-color:var(--mat-stepper-header-edit-state-icon-background-color, var(--mat-sys-primary));color:var(--mat-stepper-header-edit-state-icon-foreground-color, var(--mat-sys-on-primary))}\n'],encapsulation:2,changeDetection:0})}return Ce})(),dt=(()=>{class Ce{templateRef=(0,p.WQX)(S.C4Q);name;constructor(){}static \u0275fac=function(J){return new(J||Ce)};static \u0275dir=S.FsC({type:Ce,selectors:[["ng-template","matStepperIcon",""]],inputs:{name:[0,"matStepperIcon","name"]}})}return Ce})(),nt=(()=>{class Ce{_template=(0,p.WQX)(S.C4Q);constructor(){}static \u0275fac=function(J){return new(J||Ce)};static \u0275dir=S.FsC({type:Ce,selectors:[["ng-template","matStepContent",""]]})}return Ce})(),Ct=(()=>{class Ce extends t.VI{_errorStateMatcher=(0,p.WQX)($.e,{skipSelf:!0});_viewContainerRef=(0,p.WQX)(S.c1b);_isSelected=g.yU.EMPTY;stepLabel=void 0;color;_lazyContent;_portal;ngAfterContentInit(){this._isSelected=this._stepper.steps.changes.pipe((0,G.n)(()=>this._stepper.selectionChange.pipe((0,K.T)(Z=>Z.selectedStep===this),(0,q.Z)(this._stepper.selected===this)))).subscribe(Z=>{Z&&this._lazyContent&&!this._portal&&(this._portal=new i.VA(this._lazyContent._template,this._viewContainerRef))})}ngOnDestroy(){this._isSelected.unsubscribe()}isErrorState(Z,J){return this._errorStateMatcher.isErrorState(Z,J)||!!(Z&&Z.invalid&&this.interacted)}static \u0275fac=(()=>{let Z;return function(fe){return(Z||(Z=S.xGo(Ce)))(fe||Ce)}})();static \u0275cmp=S.VBU({type:Ce,selectors:[["mat-step"]],contentQueries:function(J,fe,Ie){if(1&J&&(S.wni(Ie,Ke,5),S.wni(Ie,nt,5)),2&J){let ht;S.mGM(ht=S.lsd())&&(fe.stepLabel=ht.first),S.mGM(ht=S.lsd())&&(fe._lazyContent=ht.first)}},hostAttrs:["hidden",""],inputs:{color:"color"},exportAs:["matStep"],features:[S.Jv_([{provide:$.e,useExisting:Ce},{provide:t.VI,useExisting:Ce}]),S.Vt3],ngContentSelectors:x,decls:1,vars:0,consts:[[3,"cdkPortalOutlet"]],template:function(J,fe){1&J&&(S.NAR(),S.DNE(0,_,2,1,"ng-template"))},dependencies:[i.I3],encapsulation:2,changeDetection:0})}return Ce})(),Mt=(()=>{class Ce extends t.Up{_ngZone=(0,p.WQX)(S.SKi);_renderer=(0,p.WQX)(S.sFG);_animationsDisabled=(0,ae.Rc)();_cleanupTransition;_isAnimating=(0,p.vPA)(!1);_stepHeader=void 0;_animatedContainers;_steps=void 0;steps=new S.rOR;_icons;animationDone=new S.bkB;disableRipple;color;labelPosition="end";headerPosition="top";_iconOverrides={};get animationDuration(){return this._animationDuration}set animationDuration(Z){this._animationDuration=/^\d+$/.test(Z)?Z+"ms":Z}_animationDuration="";_isServer=!(0,p.WQX)(U.O).isBrowser;constructor(){super();const J=(0,p.WQX)(S.aKT).nativeElement.nodeName.toLowerCase();this.orientation="mat-vertical-stepper"===J?"vertical":"horizontal"}ngAfterContentInit(){super.ngAfterContentInit(),this._icons.forEach(({name:Z,templateRef:J})=>this._iconOverrides[Z]=J),this.steps.changes.pipe((0,Q.Q)(this._destroyed)).subscribe(()=>this._stateChanged()),this.selectedIndexChange.pipe((0,Q.Q)(this._destroyed)).subscribe(()=>{const Z=this._getAnimationDuration();"0ms"===Z||"0s"===Z?this._onAnimationDone():this._isAnimating.set(!0)}),this._ngZone.runOutsideAngular(()=>{this._animationsDisabled||setTimeout(()=>{this._elementRef.nativeElement.classList.add("mat-stepper-animations-enabled"),this._cleanupTransition=this._renderer.listen(this._elementRef.nativeElement,"transitionend",this._handleTransitionend)},200)})}ngAfterViewInit(){if(super.ngAfterViewInit(),"function"==typeof queueMicrotask){let Z=!1;this._animatedContainers.changes.pipe((0,q.Z)(null),(0,Q.Q)(this._destroyed)).subscribe(()=>queueMicrotask(()=>{Z||(Z=!0,this.animationDone.emit()),this._stateChanged()}))}}ngOnDestroy(){super.ngOnDestroy(),this._cleanupTransition?.()}_getAnimationDuration(){return this._animationsDisabled?"0ms":this.animationDuration?this.animationDuration:"horizontal"===this.orientation?"500ms":"225ms"}_handleTransitionend=Z=>{const J=Z.target;if(!J)return;const fe="horizontal"===this.orientation&&"transform"===Z.propertyName&&J.classList.contains("mat-horizontal-stepper-content-current"),Ie="vertical"===this.orientation&&"grid-template-rows"===Z.propertyName&&J.classList.contains("mat-vertical-content-container-active");(fe||Ie)&&this._animatedContainers.find(li=>li.nativeElement===J)&&this._onAnimationDone()};_onAnimationDone(){this._isAnimating.set(!1),this.animationDone.emit()}static \u0275fac=function(J){return new(J||Ce)};static \u0275cmp=S.VBU({type:Ce,selectors:[["mat-stepper"],["mat-vertical-stepper"],["mat-horizontal-stepper"],["","matStepper",""]],contentQueries:function(J,fe,Ie){if(1&J&&(S.wni(Ie,Ct,5),S.wni(Ie,dt,5)),2&J){let ht;S.mGM(ht=S.lsd())&&(fe._steps=ht),S.mGM(ht=S.lsd())&&(fe._icons=ht)}},viewQuery:function(J,fe){if(1&J&&(S.GBs(Ee,5),S.GBs(W,5)),2&J){let Ie;S.mGM(Ie=S.lsd())&&(fe._stepHeader=Ie),S.mGM(Ie=S.lsd())&&(fe._animatedContainers=Ie)}},hostAttrs:["role","tablist"],hostVars:15,hostBindings:function(J,fe){2&J&&(S.BMQ("aria-orientation",fe.orientation),S.xc7("--mat-stepper-animation-duration",fe._getAnimationDuration()),S.AVh("mat-stepper-horizontal","horizontal"===fe.orientation)("mat-stepper-vertical","vertical"===fe.orientation)("mat-stepper-label-position-end","horizontal"===fe.orientation&&"end"==fe.labelPosition)("mat-stepper-label-position-bottom","horizontal"===fe.orientation&&"bottom"==fe.labelPosition)("mat-stepper-header-position-bottom","bottom"===fe.headerPosition)("mat-stepper-animating",fe._isAnimating()))},inputs:{disableRipple:"disableRipple",color:"color",labelPosition:"labelPosition",headerPosition:"headerPosition",animationDuration:"animationDuration"},outputs:{animationDone:"animationDone"},exportAs:["matStepper","matVerticalStepper","matHorizontalStepper"],features:[S.Jv_([{provide:t.Up,useExisting:Ce}]),S.Vt3],ngContentSelectors:x,decls:5,vars:2,consts:[["stepTemplate",""],["animatedContainer",""],[1,"mat-horizontal-stepper-wrapper"],[1,"mat-horizontal-stepper-header-container"],[1,"mat-horizontal-content-container"],["role","tabpanel",1,"mat-horizontal-stepper-content",3,"id","class"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[1,"mat-stepper-horizontal-line"],["role","tabpanel",1,"mat-horizontal-stepper-content",3,"id"],[3,"ngTemplateOutlet"],[1,"mat-step"],[1,"mat-vertical-content-container"],["role","tabpanel",1,"mat-vertical-stepper-content",3,"id"],[1,"mat-vertical-content"],[3,"click","keydown","tabIndex","id","index","state","label","selected","active","optional","errorMessage","iconOverrides","disableRipple","color"]],template:function(J,fe){if(1&J&&(S.NAR(),S.nVh(0,B,1,0),S.nVh(1,Be,7,0,"div",2)(2,ye,2,0),S.DNE(3,Le,1,23,"ng-template",null,0,S.C5r)),2&J){let Ie;S.vxM(fe._isServer?0:-1),S.R7$(),S.vxM("horizontal"===(Ie=fe.orientation)?1:"vertical"===Ie?2:-1)}},dependencies:[d.T3,Ee],styles:['.mat-stepper-vertical,.mat-stepper-horizontal{display:block;font-family:var(--mat-stepper-container-text-font, var(--mat-sys-body-medium-font));background:var(--mat-stepper-container-color, var(--mat-sys-surface))}.mat-horizontal-stepper-header-container{white-space:nowrap;display:flex;align-items:center}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header-container{align-items:flex-start}.mat-stepper-header-position-bottom .mat-horizontal-stepper-header-container{order:1}.mat-stepper-horizontal-line{border-top-width:1px;border-top-style:solid;flex:auto;height:0;margin:0 -16px;min-width:32px;border-top-color:var(--mat-stepper-line-color, var(--mat-sys-outline))}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{margin:0;min-width:0;position:relative;top:calc(calc((var(--mat-stepper-header-height, 72px) - 24px) / 2) + 12px)}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::before,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::after,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::after{border-top-width:1px;border-top-style:solid;content:"";display:inline-block;height:0;position:absolute;width:calc(50% - 20px)}.mat-horizontal-stepper-header{display:flex;overflow:hidden;align-items:center;padding:0 24px;height:var(--mat-stepper-header-height, 72px)}.mat-horizontal-stepper-header .mat-step-icon{margin-right:8px;flex:none}[dir=rtl] .mat-horizontal-stepper-header .mat-step-icon{margin-right:0;margin-left:8px}.mat-horizontal-stepper-header.mat-step-header-empty-label .mat-step-icon{margin:0}.mat-horizontal-stepper-header::before,.mat-horizontal-stepper-header::after{border-top-color:var(--mat-stepper-line-color, var(--mat-sys-outline))}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header{padding:calc((var(--mat-stepper-header-height, 72px) - 24px) / 2) 24px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::before,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::after{top:calc(calc((var(--mat-stepper-header-height, 72px) - 24px) / 2) + 12px)}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header{box-sizing:border-box;flex-direction:column;height:auto}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::after,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::after{right:0}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::before{left:0}[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:last-child::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:first-child::after{display:none}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header .mat-step-icon{margin-right:0;margin-left:0}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header .mat-step-label{padding:16px 0 0 0;text-align:center;width:100%}.mat-vertical-stepper-header{display:flex;align-items:center;height:24px;padding:calc((var(--mat-stepper-header-height, 72px) - 24px) / 2) 24px}.mat-vertical-stepper-header .mat-step-icon{margin-right:12px}[dir=rtl] .mat-vertical-stepper-header .mat-step-icon{margin-right:0;margin-left:12px}.mat-horizontal-stepper-wrapper{display:flex;flex-direction:column}.mat-horizontal-stepper-content{visibility:hidden;overflow:hidden;outline:0;height:0}.mat-stepper-animations-enabled .mat-horizontal-stepper-content{transition:transform var(--mat-stepper-animation-duration, 0) cubic-bezier(0.35, 0, 0.25, 1)}.mat-horizontal-stepper-content.mat-horizontal-stepper-content-previous{transform:translate3d(-100%, 0, 0)}.mat-horizontal-stepper-content.mat-horizontal-stepper-content-next{transform:translate3d(100%, 0, 0)}.mat-horizontal-stepper-content.mat-horizontal-stepper-content-current{visibility:visible;transform:none;height:auto}.mat-stepper-horizontal:not(.mat-stepper-animating) .mat-horizontal-stepper-content.mat-horizontal-stepper-content-current{overflow:visible}.mat-horizontal-content-container{overflow:hidden;padding:0 24px 24px 24px}@media(forced-colors: active){.mat-horizontal-content-container{outline:solid 1px}}.mat-stepper-header-position-bottom .mat-horizontal-content-container{padding:24px 24px 0 24px}.mat-vertical-content-container{display:grid;grid-template-rows:0fr;grid-template-columns:100%;margin-left:36px;border:0;position:relative}.mat-stepper-animations-enabled .mat-vertical-content-container{transition:grid-template-rows var(--mat-stepper-animation-duration, 0) cubic-bezier(0.4, 0, 0.2, 1)}.mat-vertical-content-container.mat-vertical-content-container-active{grid-template-rows:1fr}.mat-step:last-child .mat-vertical-content-container{border:none}@media(forced-colors: active){.mat-vertical-content-container{outline:solid 1px}}[dir=rtl] .mat-vertical-content-container{margin-left:0;margin-right:36px}@supports not (grid-template-rows: 0fr){.mat-vertical-content-container{height:0}.mat-vertical-content-container.mat-vertical-content-container-active{height:auto}}.mat-stepper-vertical-line::before{content:"";position:absolute;left:0;border-left-width:1px;border-left-style:solid;border-left-color:var(--mat-stepper-line-color, var(--mat-sys-outline));top:calc(8px - calc((var(--mat-stepper-header-height, 72px) - 24px) / 2));bottom:calc(8px - calc((var(--mat-stepper-header-height, 72px) - 24px) / 2))}[dir=rtl] .mat-stepper-vertical-line::before{left:auto;right:0}.mat-vertical-stepper-content{overflow:hidden;outline:0;visibility:hidden}.mat-stepper-animations-enabled .mat-vertical-stepper-content{transition:visibility var(--mat-stepper-animation-duration, 0) linear}.mat-vertical-content-container-active>.mat-vertical-stepper-content{visibility:visible}.mat-vertical-content{padding:0 24px 24px 24px}\n'],encapsulation:2,changeDetection:0})}return Ce})(),lt=(()=>{class Ce extends t.v5{static \u0275fac=(()=>{let Z;return function(fe){return(Z||(Z=S.xGo(Ce)))(fe||Ce)}})();static \u0275dir=S.FsC({type:Ce,selectors:[["button","matStepperNext",""]],hostAttrs:[1,"mat-stepper-next"],hostVars:1,hostBindings:function(J,fe){2&J&&S.Avn("type",fe.type)},features:[S.Vt3]})}return Ce})(),Pe=(()=>{class Ce extends t.FK{static \u0275fac=(()=>{let Z;return function(fe){return(Z||(Z=S.xGo(Ce)))(fe||Ce)}})();static \u0275dir=S.FsC({type:Ce,selectors:[["button","matStepperPrevious",""]],hostAttrs:[1,"mat-stepper-previous"],hostVars:1,hostBindings:function(J,fe){2&J&&S.Avn("type",fe.type)},features:[S.Vt3]})}return Ce})(),Ht=(()=>{class Ce{static \u0275fac=function(J){return new(J||Ce)};static \u0275mod=S.$C({type:Ce});static \u0275inj=p.G2t({providers:[Oe,$.e],imports:[ue.y,i.jc,t.uY,P.m_,oe.p,Mt,Ee,ue.y]})}return Ce})()},36283:(Ae,ee,l)=>{var i=l(47740);ee.tagClass={0:"universal",1:"application",2:"context",3:"private"},ee.tagClassByName=i._reverse(ee.tagClass),ee.tag={0:"end",1:"bool",2:"int",3:"bitstr",4:"octstr",5:"null_",6:"objid",7:"objDesc",8:"external",9:"real",10:"enum",11:"embed",12:"utf8str",13:"relativeOid",16:"seq",17:"set",18:"numstr",19:"printstr",20:"t61str",21:"videostr",22:"ia5str",23:"utctime",24:"gentime",25:"graphstr",26:"iso646str",27:"genstr",28:"unistr",29:"charstr",30:"bmpstr"},ee.tagByName=i._reverse(ee.tag)},36471:(Ae,ee,l)=>{"use strict";l.d(ee,{Jl:()=>lt,YN:()=>di});var i=l(76838),t=l(89726),S=(l(64123),l(10438)),e=(l(67336),l(88968)),T=l(49046),g=l(2615),d=l(73664),w=l(17705),m=l(21413),P=l(57786),M=l(32046),j=l(12496),U=l(31804),K=l(11048),ue=(l(99172),l(25558),l(56977),l(61577),l(89417),l(2709)),me=(l(39336),l(69588),l(22466)),Te=l(26881);const D=["*",[["mat-chip-avatar"],["","matChipAvatar",""]],[["mat-chip-trailing-icon"],["","matChipRemove",""],["","matChipTrailingIcon",""]]],n=["*","mat-chip-avatar, [matChipAvatar]","mat-chip-trailing-icon,[matChipRemove],[matChipTrailingIcon]"];function o(kt,Rt){1&kt&&(d.j41(0,"span",3),d.SdG(1,1),d.k0s())}function f(kt,Rt){1&kt&&(d.j41(0,"span",6),d.SdG(1,2),d.k0s())}const ye=new g.nKC("mat-chips-default-options",{providedIn:"root",factory:()=>({separatorKeyCodes:[S.Fm]})}),Le=new g.nKC("MatChipAvatar"),Ke=new g.nKC("MatChipTrailingIcon"),ge=new g.nKC("MatChipEdit"),ve=new g.nKC("MatChipRemove"),Oe=new g.nKC("MatChip");let Ee=(()=>{class kt{_elementRef=(0,g.WQX)(d.aKT);_parentChip=(0,g.WQX)(Oe);isInteractive=!0;_isPrimary=!0;_isLeading=!1;get disabled(){return this._disabled||this._parentChip?.disabled||!1}set disabled(le){this._disabled=le}_disabled=!1;tabIndex=-1;_allowFocusWhenDisabled=!1;_getDisabledAttribute(){return this.disabled&&!this._allowFocusWhenDisabled?"":null}_getTabindex(){return this.disabled&&!this._allowFocusWhenDisabled||!this.isInteractive?null:this.tabIndex.toString()}constructor(){(0,g.WQX)(e.l).load(M.A),"BUTTON"===this._elementRef.nativeElement.nodeName&&this._elementRef.nativeElement.setAttribute("type","button")}focus(){this._elementRef.nativeElement.focus()}_handleClick(le){!this.disabled&&this.isInteractive&&this._isPrimary&&(le.preventDefault(),this._parentChip._handlePrimaryActionInteraction())}_handleKeydown(le){(le.keyCode===S.Fm||le.keyCode===S.t6)&&!this.disabled&&this.isInteractive&&this._isPrimary&&!this._parentChip._isEditing&&(le.preventDefault(),this._parentChip._handlePrimaryActionInteraction())}static \u0275fac=function(te){return new(te||kt)};static \u0275dir=d.FsC({type:kt,selectors:[["","matChipAction",""]],hostAttrs:[1,"mdc-evolution-chip__action","mat-mdc-chip-action"],hostVars:11,hostBindings:function(te,ce){1&te&&d.bIt("click",function(ke){return ce._handleClick(ke)})("keydown",function(ke){return ce._handleKeydown(ke)}),2&te&&(d.BMQ("tabindex",ce._getTabindex())("disabled",ce._getDisabledAttribute())("aria-disabled",ce.disabled),d.AVh("mdc-evolution-chip__action--primary",ce._isPrimary)("mdc-evolution-chip__action--presentational",!ce.isInteractive)("mdc-evolution-chip__action--secondary",!ce._isPrimary)("mdc-evolution-chip__action--trailing",!ce._isPrimary&&!ce._isLeading))},inputs:{isInteractive:"isInteractive",disabled:[2,"disabled","disabled",w.L39],tabIndex:[2,"tabIndex","tabIndex",le=>null==le?-1:(0,w.Udg)(le)],_allowFocusWhenDisabled:"_allowFocusWhenDisabled"}})}return kt})(),lt=(()=>{class kt{_changeDetectorRef=(0,g.WQX)(w.gRc);_elementRef=(0,g.WQX)(d.aKT);_tagName=(0,g.WQX)(w.cCO);_ngZone=(0,g.WQX)(d.SKi);_focusMonitor=(0,g.WQX)(i.FN);_globalRippleOptions=(0,g.WQX)(j.$E,{optional:!0});_document=(0,g.WQX)(g.qQL);_onFocus=new m.B;_onBlur=new m.B;_isBasicChip;role=null;_hasFocusInternal=!1;_pendingFocus;_actionChanges;_animationsDisabled=(0,U.Rc)();_allLeadingIcons;_allTrailingIcons;_allEditIcons;_allRemoveIcons;_hasFocus(){return this._hasFocusInternal}id=(0,g.WQX)(t.g).getId("mat-mdc-chip-");ariaLabel=null;ariaDescription=null;_chipListDisabled=!1;_hadFocusOnRemove=!1;_textElement;get value(){return void 0!==this._value?this._value:this._textElement.textContent.trim()}set value(le){this._value=le}_value;color;removable=!0;highlighted=!1;disableRipple=!1;get disabled(){return this._disabled||this._chipListDisabled}set disabled(le){this._disabled=le}_disabled=!1;removed=new d.bkB;destroyed=new d.bkB;basicChipAttrName="mat-basic-chip";leadingIcon;editIcon;trailingIcon;removeIcon;primaryAction;_rippleLoader=(0,g.WQX)(K.E);_injector=(0,g.WQX)(g.zZn);constructor(){const le=(0,g.WQX)(e.l);le.load(M.A),le.load(T.Y),this._monitorFocus(),this._rippleLoader?.configureRipple(this._elementRef.nativeElement,{className:"mat-mdc-chip-ripple",disabled:this._isRippleDisabled()})}ngOnInit(){this._isBasicChip=this._elementRef.nativeElement.hasAttribute(this.basicChipAttrName)||this._tagName.toLowerCase()===this.basicChipAttrName}ngAfterViewInit(){this._textElement=this._elementRef.nativeElement.querySelector(".mat-mdc-chip-action-label"),this._pendingFocus&&(this._pendingFocus=!1,this.focus())}ngAfterContentInit(){this._actionChanges=(0,P.h)(this._allLeadingIcons.changes,this._allTrailingIcons.changes,this._allEditIcons.changes,this._allRemoveIcons.changes).subscribe(()=>this._changeDetectorRef.markForCheck())}ngDoCheck(){this._rippleLoader.setDisabled(this._elementRef.nativeElement,this._isRippleDisabled())}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._rippleLoader?.destroyRipple(this._elementRef.nativeElement),this._actionChanges?.unsubscribe(),this.destroyed.emit({chip:this}),this.destroyed.complete()}remove(){this.removable&&(this._hadFocusOnRemove=this._hasFocus(),this.removed.emit({chip:this}))}_isRippleDisabled(){return this.disabled||this.disableRipple||this._animationsDisabled||this._isBasicChip||!this._hasInteractiveActions()||!!this._globalRippleOptions?.disabled}_hasTrailingIcon(){return!(!this.trailingIcon&&!this.removeIcon)}_handleKeydown(le){(le.keyCode===S.G_&&!le.repeat||le.keyCode===S.SJ)&&(le.preventDefault(),this.remove())}focus(){this.disabled||(this.primaryAction?this.primaryAction.focus():this._pendingFocus=!0)}_getSourceAction(le){return this._getActions().find(te=>{const ce=te._elementRef.nativeElement;return ce===le||ce.contains(le)})}_getActions(){const le=[];return this.editIcon&&le.push(this.editIcon),this.primaryAction&&le.push(this.primaryAction),this.removeIcon&&le.push(this.removeIcon),this.trailingIcon&&le.push(this.trailingIcon),le}_handlePrimaryActionInteraction(){}_hasInteractiveActions(){return this._getActions().some(le=>le.isInteractive)}_edit(le){}_monitorFocus(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(le=>{const te=null!==le;te!==this._hasFocusInternal&&(this._hasFocusInternal=te,te?this._onFocus.next({chip:this}):(this._changeDetectorRef.markForCheck(),setTimeout(()=>this._ngZone.run(()=>this._onBlur.next({chip:this})))))})}static \u0275fac=function(te){return new(te||kt)};static \u0275cmp=d.VBU({type:kt,selectors:[["mat-basic-chip"],["","mat-basic-chip",""],["mat-chip"],["","mat-chip",""]],contentQueries:function(te,ce,se){if(1&te&&(d.wni(se,Le,5),d.wni(se,ge,5),d.wni(se,Ke,5),d.wni(se,ve,5),d.wni(se,Le,5),d.wni(se,Ke,5),d.wni(se,ge,5),d.wni(se,ve,5)),2&te){let ke;d.mGM(ke=d.lsd())&&(ce.leadingIcon=ke.first),d.mGM(ke=d.lsd())&&(ce.editIcon=ke.first),d.mGM(ke=d.lsd())&&(ce.trailingIcon=ke.first),d.mGM(ke=d.lsd())&&(ce.removeIcon=ke.first),d.mGM(ke=d.lsd())&&(ce._allLeadingIcons=ke),d.mGM(ke=d.lsd())&&(ce._allTrailingIcons=ke),d.mGM(ke=d.lsd())&&(ce._allEditIcons=ke),d.mGM(ke=d.lsd())&&(ce._allRemoveIcons=ke)}},viewQuery:function(te,ce){if(1&te&&d.GBs(Ee,5),2&te){let se;d.mGM(se=d.lsd())&&(ce.primaryAction=se.first)}},hostAttrs:[1,"mat-mdc-chip"],hostVars:31,hostBindings:function(te,ce){1&te&&d.bIt("keydown",function(ke){return ce._handleKeydown(ke)}),2&te&&(d.Avn("id",ce.id),d.BMQ("role",ce.role)("aria-label",ce.ariaLabel),d.HbH("mat-"+(ce.color||"primary")),d.AVh("mdc-evolution-chip",!ce._isBasicChip)("mdc-evolution-chip--disabled",ce.disabled)("mdc-evolution-chip--with-trailing-action",ce._hasTrailingIcon())("mdc-evolution-chip--with-primary-graphic",ce.leadingIcon)("mdc-evolution-chip--with-primary-icon",ce.leadingIcon)("mdc-evolution-chip--with-avatar",ce.leadingIcon)("mat-mdc-chip-with-avatar",ce.leadingIcon)("mat-mdc-chip-highlighted",ce.highlighted)("mat-mdc-chip-disabled",ce.disabled)("mat-mdc-basic-chip",ce._isBasicChip)("mat-mdc-standard-chip",!ce._isBasicChip)("mat-mdc-chip-with-trailing-icon",ce._hasTrailingIcon())("_mat-animation-noopable",ce._animationsDisabled))},inputs:{role:"role",id:"id",ariaLabel:[0,"aria-label","ariaLabel"],ariaDescription:[0,"aria-description","ariaDescription"],value:"value",color:"color",removable:[2,"removable","removable",w.L39],highlighted:[2,"highlighted","highlighted",w.L39],disableRipple:[2,"disableRipple","disableRipple",w.L39],disabled:[2,"disabled","disabled",w.L39]},outputs:{removed:"removed",destroyed:"destroyed"},exportAs:["matChip"],features:[d.Jv_([{provide:Oe,useExisting:kt}])],ngContentSelectors:n,decls:8,vars:3,consts:[[1,"mat-mdc-chip-focus-overlay"],[1,"mdc-evolution-chip__cell","mdc-evolution-chip__cell--primary"],["matChipAction","",3,"isInteractive"],[1,"mdc-evolution-chip__graphic","mat-mdc-chip-graphic"],[1,"mdc-evolution-chip__text-label","mat-mdc-chip-action-label"],[1,"mat-mdc-chip-primary-focus-indicator","mat-focus-indicator"],[1,"mdc-evolution-chip__cell","mdc-evolution-chip__cell--trailing"]],template:function(te,ce){1&te&&(d.NAR(D),d.nrm(0,"span",0),d.j41(1,"span",1)(2,"span",2),d.nVh(3,o,2,0,"span",3),d.j41(4,"span",4),d.SdG(5),d.nrm(6,"span",5),d.k0s()()(),d.nVh(7,f,2,0,"span",6)),2&te&&(d.R7$(2),d.Y8G("isInteractive",!1),d.R7$(),d.vxM(ce.leadingIcon?3:-1),d.R7$(4),d.vxM(ce._hasTrailingIcon()?7:-1))},dependencies:[Ee],styles:['.mdc-evolution-chip,.mdc-evolution-chip__cell,.mdc-evolution-chip__action{display:inline-flex;align-items:center}.mdc-evolution-chip{position:relative;max-width:100%}.mdc-evolution-chip__cell,.mdc-evolution-chip__action{height:100%}.mdc-evolution-chip__cell--primary{flex-basis:100%;overflow-x:hidden}.mdc-evolution-chip__cell--trailing{flex:1 0 auto}.mdc-evolution-chip__action{align-items:center;background:none;border:none;box-sizing:content-box;cursor:pointer;display:inline-flex;justify-content:center;outline:none;padding:0;text-decoration:none;color:inherit}.mdc-evolution-chip__action--presentational{cursor:auto}.mdc-evolution-chip--disabled,.mdc-evolution-chip__action:disabled{pointer-events:none}@media(forced-colors: active){.mdc-evolution-chip--disabled,.mdc-evolution-chip__action:disabled{forced-color-adjust:none}}.mdc-evolution-chip__action--primary{font:inherit;letter-spacing:inherit;white-space:inherit;overflow-x:hidden}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary::before{border-width:var(--mat-chip-outline-width, 1px);border-radius:var(--mat-chip-container-shape-radius, 8px);box-sizing:border-box;content:"";height:100%;left:0;position:absolute;pointer-events:none;top:0;width:100%;z-index:1;border-style:solid}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:12px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:0}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__action--primary::before{border-color:var(--mat-chip-outline-color, var(--mat-sys-outline))}.mdc-evolution-chip__action--primary:not(.mdc-evolution-chip__action--presentational):not(.mdc-ripple-upgraded):focus::before{border-color:var(--mat-chip-focus-outline-color, var(--mat-sys-on-surface-variant))}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__action--primary::before{border-color:var(--mat-chip-disabled-outline-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary::before{border-width:var(--mat-chip-flat-selected-outline-width, 0)}.mat-mdc-basic-chip .mdc-evolution-chip__action--primary{font:inherit}.mat-mdc-standard-chip.mdc-evolution-chip--with-leading-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-leading-action .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:0}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:0}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}.mat-mdc-standard-chip.mdc-evolution-chip--with-leading-action.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:0}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}.mdc-evolution-chip__action--secondary{position:relative;overflow:visible}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__action--secondary{color:var(--mat-chip-with-trailing-icon-trailing-icon-color, var(--mat-sys-on-surface-variant))}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__action--secondary{color:var(--mat-chip-with-trailing-icon-disabled-trailing-icon-color, var(--mat-sys-on-surface))}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--secondary{padding-left:8px;padding-right:8px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--secondary{padding-left:8px;padding-right:8px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--secondary{padding-left:8px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--secondary{padding-left:8px;padding-right:8px}.mdc-evolution-chip__text-label{-webkit-user-select:none;user-select:none;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.mat-mdc-standard-chip .mdc-evolution-chip__text-label{font-family:var(--mat-chip-label-text-font, var(--mat-sys-label-large-font));line-height:var(--mat-chip-label-text-line-height, var(--mat-sys-label-large-line-height));font-size:var(--mat-chip-label-text-size, var(--mat-sys-label-large-size));font-weight:var(--mat-chip-label-text-weight, var(--mat-sys-label-large-weight));letter-spacing:var(--mat-chip-label-text-tracking, var(--mat-sys-label-large-tracking))}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__text-label{color:var(--mat-chip-label-text-color, var(--mat-sys-on-surface-variant))}.mat-mdc-standard-chip.mdc-evolution-chip--selected:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__text-label{color:var(--mat-chip-selected-label-text-color, var(--mat-sys-on-secondary-container))}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__text-label,.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled .mdc-evolution-chip__text-label{color:var(--mat-chip-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mdc-evolution-chip__graphic{align-items:center;display:inline-flex;justify-content:center;overflow:hidden;pointer-events:none;position:relative;flex:1 0 auto}.mat-mdc-standard-chip .mdc-evolution-chip__graphic{width:var(--mat-chip-with-avatar-avatar-size, 24px);height:var(--mat-chip-with-avatar-avatar-size, 24px);font-size:var(--mat-chip-with-avatar-avatar-size, 24px)}.mdc-evolution-chip--selecting .mdc-evolution-chip__graphic{transition:width 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--selectable:not(.mdc-evolution-chip--selected):not(.mdc-evolution-chip--with-primary-icon) .mdc-evolution-chip__graphic{width:0}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic{padding-left:6px;padding-right:6px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic{padding-left:4px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic{padding-left:8px;padding-right:4px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic{padding-left:6px;padding-right:6px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic{padding-left:4px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic{padding-left:8px;padding-right:4px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-leading-action .mdc-evolution-chip__graphic{padding-left:0}.mdc-evolution-chip__checkmark{position:absolute;opacity:0;top:50%;left:50%;height:20px;width:20px}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__checkmark{color:var(--mat-chip-with-icon-selected-icon-color, var(--mat-sys-on-secondary-container))}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__checkmark{color:var(--mat-chip-with-icon-disabled-icon-color, var(--mat-sys-on-surface))}.mdc-evolution-chip--selecting .mdc-evolution-chip__checkmark{transition:transform 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1);transform:translate(-75%, -50%)}.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark{transform:translate(-50%, -50%);opacity:1}.mdc-evolution-chip__checkmark-svg{display:block}.mdc-evolution-chip__checkmark-path{stroke-width:2px;stroke-dasharray:29.7833385;stroke-dashoffset:29.7833385;stroke:currentColor}.mdc-evolution-chip--selecting .mdc-evolution-chip__checkmark-path{transition:stroke-dashoffset 150ms 45ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}@media(forced-colors: active){.mdc-evolution-chip__checkmark-path{stroke:CanvasText !important}}.mat-mdc-standard-chip .mdc-evolution-chip__icon--trailing{height:18px;width:18px;font-size:18px}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing.mat-mdc-chip-remove{opacity:calc(var(--mat-chip-trailing-action-opacity, 1)*var(--mat-chip-with-trailing-icon-disabled-trailing-icon-opacity, 0.38))}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing.mat-mdc-chip-remove:focus{opacity:calc(var(--mat-chip-trailing-action-focus-opacity, 1)*var(--mat-chip-with-trailing-icon-disabled-trailing-icon-opacity, 0.38))}.mat-mdc-standard-chip{border-radius:var(--mat-chip-container-shape-radius, 8px);height:var(--mat-chip-container-height, 32px)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled){background-color:var(--mat-chip-elevated-container-color, transparent)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled{background-color:var(--mat-chip-elevated-disabled-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected:not(.mdc-evolution-chip--disabled){background-color:var(--mat-chip-elevated-selected-container-color, var(--mat-sys-secondary-container))}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled{background-color:var(--mat-chip-flat-disabled-selected-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}@media(forced-colors: active){.mat-mdc-standard-chip{outline:solid 1px}}.mat-mdc-standard-chip .mdc-evolution-chip__icon--primary{border-radius:var(--mat-chip-with-avatar-avatar-shape-radius, 24px);width:var(--mat-chip-with-icon-icon-size, 18px);height:var(--mat-chip-with-icon-icon-size, 18px);font-size:var(--mat-chip-with-icon-icon-size, 18px)}.mdc-evolution-chip--selected .mdc-evolution-chip__icon--primary{opacity:0}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__icon--primary{color:var(--mat-chip-with-icon-icon-color, var(--mat-sys-on-surface-variant))}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--primary{color:var(--mat-chip-with-icon-disabled-icon-color, var(--mat-sys-on-surface))}.mat-mdc-chip-highlighted{--mat-chip-with-icon-icon-color: var(--mat-chip-with-icon-selected-icon-color, var(--mat-sys-on-secondary-container));--mat-chip-elevated-container-color: var(--mat-chip-elevated-selected-container-color, var(--mat-sys-secondary-container));--mat-chip-label-text-color: var(--mat-chip-selected-label-text-color, var(--mat-sys-on-secondary-container));--mat-chip-outline-width: var(--mat-chip-flat-selected-outline-width, 0)}.mat-mdc-chip-focus-overlay{background:var(--mat-chip-focus-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-chip-selected .mat-mdc-chip-focus-overlay,.mat-mdc-chip-highlighted .mat-mdc-chip-focus-overlay{background:var(--mat-chip-selected-focus-state-layer-color, var(--mat-sys-on-secondary-container))}.mat-mdc-chip:hover .mat-mdc-chip-focus-overlay{background:var(--mat-chip-hover-state-layer-color, var(--mat-sys-on-surface-variant));opacity:var(--mat-chip-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-chip-focus-overlay .mat-mdc-chip-selected:hover,.mat-mdc-chip-highlighted:hover .mat-mdc-chip-focus-overlay{background:var(--mat-chip-selected-hover-state-layer-color, var(--mat-sys-on-secondary-container));opacity:var(--mat-chip-selected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-chip.cdk-focused .mat-mdc-chip-focus-overlay{background:var(--mat-chip-focus-state-layer-color, var(--mat-sys-on-surface-variant));opacity:var(--mat-chip-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-chip-selected.cdk-focused .mat-mdc-chip-focus-overlay,.mat-mdc-chip-highlighted.cdk-focused .mat-mdc-chip-focus-overlay{background:var(--mat-chip-selected-focus-state-layer-color, var(--mat-sys-on-secondary-container));opacity:var(--mat-chip-selected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mdc-evolution-chip--disabled:not(.mdc-evolution-chip--selected) .mat-mdc-chip-avatar{opacity:var(--mat-chip-with-avatar-disabled-avatar-opacity, 0.38)}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing{opacity:var(--mat-chip-with-trailing-icon-disabled-trailing-icon-opacity, 0.38)}.mdc-evolution-chip--disabled.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark{opacity:var(--mat-chip-with-icon-disabled-icon-opacity, 0.38)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled{opacity:var(--mat-chip-disabled-container-opacity, 1)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__icon--trailing,.mat-mdc-standard-chip.mat-mdc-chip-highlighted .mdc-evolution-chip__icon--trailing{color:var(--mat-chip-selected-trailing-icon-color, var(--mat-sys-on-secondary-container))}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing{color:var(--mat-chip-selected-disabled-trailing-icon-color, var(--mat-sys-on-surface))}.mat-mdc-chip-edit,.mat-mdc-chip-remove{opacity:var(--mat-chip-trailing-action-opacity, 1)}.mat-mdc-chip-edit:focus,.mat-mdc-chip-remove:focus{opacity:var(--mat-chip-trailing-action-focus-opacity, 1)}.mat-mdc-chip-edit::after,.mat-mdc-chip-remove::after{background-color:var(--mat-chip-trailing-action-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-chip-edit:hover::after,.mat-mdc-chip-remove:hover::after{opacity:var(--mat-chip-trailing-action-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-chip-edit:focus::after,.mat-mdc-chip-remove:focus::after{opacity:var(--mat-chip-trailing-action-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-chip-selected .mat-mdc-chip-remove::after,.mat-mdc-chip-highlighted .mat-mdc-chip-remove::after{background-color:var(--mat-chip-selected-trailing-action-state-layer-color, var(--mat-sys-on-secondary-container))}.mat-mdc-standard-chip{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-standard-chip .mdc-evolution-chip__cell--primary,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip .mat-mdc-chip-action-label{overflow:visible}.mat-mdc-standard-chip .mat-mdc-chip-graphic,.mat-mdc-standard-chip .mat-mdc-chip-trailing-icon{box-sizing:content-box}.mat-mdc-standard-chip._mat-animation-noopable,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__graphic,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__checkmark,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__checkmark-path{transition-duration:1ms;animation-duration:1ms}.mat-mdc-chip-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;opacity:0;border-radius:inherit;transition:opacity 150ms linear}._mat-animation-noopable .mat-mdc-chip-focus-overlay{transition:none}.mat-mdc-basic-chip .mat-mdc-chip-focus-overlay{display:none}.mat-mdc-chip .mat-ripple.mat-mdc-chip-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-chip-avatar{text-align:center;line-height:1;color:var(--mat-chip-with-icon-icon-color, currentColor)}.mat-mdc-chip{position:relative;z-index:0}.mat-mdc-chip-action-label{text-align:left;z-index:1}[dir=rtl] .mat-mdc-chip-action-label{text-align:right}.mat-mdc-chip.mdc-evolution-chip--with-trailing-action .mat-mdc-chip-action-label{position:relative}.mat-mdc-chip-action-label .mat-mdc-chip-primary-focus-indicator{position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}.mat-mdc-chip-action-label .mat-focus-indicator::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-chip-edit::before,.mat-mdc-chip-remove::before{margin:calc(var(--mat-focus-indicator-border-width, 3px)*-1);left:8px;right:8px}.mat-mdc-chip-edit::after,.mat-mdc-chip-remove::after{content:"";display:block;opacity:0;position:absolute;top:-3px;bottom:-3px;left:5px;right:5px;border-radius:50%;box-sizing:border-box;padding:12px;margin:-12px;background-clip:content-box}.mat-mdc-chip-edit .mat-icon,.mat-mdc-chip-remove .mat-icon{width:18px;height:18px;font-size:18px;box-sizing:content-box}.mat-chip-edit-input{cursor:text;display:inline-block;color:inherit;outline:0}@media(forced-colors: active){.mat-mdc-chip-selected:not(.mat-mdc-chip-multiple){outline-width:3px}}.mat-mdc-chip-action:focus .mat-focus-indicator::before{content:""}.mdc-evolution-chip__icon,.mat-mdc-chip-edit .mat-icon,.mat-mdc-chip-remove .mat-icon{min-height:fit-content}img.mdc-evolution-chip__icon{min-height:0}\n'],encapsulation:2,changeDetection:0})}return kt})(),di=(()=>{class kt{static \u0275fac=function(te){return new(te||kt)};static \u0275mod=d.$C({type:kt});static \u0275inj=g.G2t({providers:[ue.e,{provide:ye,useValue:{separatorKeyCodes:[S.Fm]}}],imports:[me.y,Te.p,me.y]})}return kt})()},36636:(Ae,ee,l)=>{"use strict";var i=l(83838).Buffer,t=l(71993),p=l(19846),S=new Array(16),c=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13],e=[5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11],T=[11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6],g=[8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11],d=[0,1518500249,1859775393,2400959708,2840853838],w=[1352829926,1548603684,1836072691,2053994217,0];function m(G,Q){return G<>>32-Q}function P(G,Q,$,ae,ue,oe,he,me){return m(G+(Q^$^ae)+oe+he|0,me)+ue|0}function M(G,Q,$,ae,ue,oe,he,me){return m(G+(Q&$|~Q&ae)+oe+he|0,me)+ue|0}function j(G,Q,$,ae,ue,oe,he,me){return m(G+((Q|~$)^ae)+oe+he|0,me)+ue|0}function U(G,Q,$,ae,ue,oe,he,me){return m(G+(Q&ae|$&~ae)+oe+he|0,me)+ue|0}function K(G,Q,$,ae,ue,oe,he,me){return m(G+(Q^($|~ae))+oe+he|0,me)+ue|0}function q(){p.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520}t(q,p),q.prototype._update=function(){for(var G=S,Q=0;Q<16;++Q)G[Q]=this._block.readInt32LE(4*Q);for(var $=0|this._a,ae=0|this._b,ue=0|this._c,oe=0|this._d,he=0|this._e,me=0|this._a,Te=0|this._b,D=0|this._c,n=0|this._d,o=0|this._e,f=0;f<80;f+=1){var h,b;f<16?(h=P($,ae,ue,oe,he,G[c[f]],d[0],T[f]),b=K(me,Te,D,n,o,G[e[f]],w[0],g[f])):f<32?(h=M($,ae,ue,oe,he,G[c[f]],d[1],T[f]),b=U(me,Te,D,n,o,G[e[f]],w[1],g[f])):f<48?(h=j($,ae,ue,oe,he,G[c[f]],d[2],T[f]),b=j(me,Te,D,n,o,G[e[f]],w[2],g[f])):f<64?(h=U($,ae,ue,oe,he,G[c[f]],d[3],T[f]),b=M(me,Te,D,n,o,G[e[f]],w[3],g[f])):(h=K($,ae,ue,oe,he,G[c[f]],d[4],T[f]),b=P(me,Te,D,n,o,G[e[f]],w[4],g[f])),$=he,he=oe,oe=m(ue,10),ue=ae,ae=h,me=o,o=n,n=m(D,10),D=Te,Te=b}var A=this._b+ue+n|0;this._b=this._c+oe+o|0,this._c=this._d+he+me|0,this._d=this._e+$+Te|0,this._e=this._a+ae+D|0,this._a=A},q.prototype._digest=function(){this._block[this._blockOffset]=128,this._blockOffset+=1,this._blockOffset>56&&(this._block.fill(0,this._blockOffset,64),this._update(),this._blockOffset=0),this._block.fill(0,this._blockOffset,56),this._block.writeUInt32LE(this._length[0],56),this._block.writeUInt32LE(this._length[1],60),this._update();var G=i.alloc?i.alloc(20):new i(20);return G.writeInt32LE(this._a,0),G.writeInt32LE(this._b,4),G.writeInt32LE(this._c,8),G.writeInt32LE(this._d,12),G.writeInt32LE(this._e,16),G},Ae.exports=q},37163:(Ae,ee,l)=>{"use strict";var i=l(68283),t=l(39210);function p(S,c,e){if(!(this instanceof p))return new p(S,c,e);this.Hash=S,this.blockSize=S.blockSize/8,this.outSize=S.outSize/8,this.inner=null,this.outer=null,this._init(i.toArray(c,e))}Ae.exports=p,p.prototype._init=function(c){c.length>this.blockSize&&(c=(new this.Hash).update(c).digest()),t(c.length<=this.blockSize);for(var e=c.length;e{Ae.exports=function(l,i){for(var t=l.length,p=-1;++p{ee.encrypt=function(l,i){return l._cipher.encryptBlock(i)},ee.decrypt=function(l,i){return l._cipher.decryptBlock(i)}},37541:(Ae,ee,l)=>{"use strict";l.d(ee,{H:()=>Fn});var i=l(17705),t=l(11747),p=l(21413),S=l(7673),c=l(96354),e=l(96697),T=l(53993),g=l(31397),d=l(99437),w=l(56977),m=l(4416),P=l(51585),M=l(73664),j=l(9183),U=l(52920);let K=(()=>{var xi;class Gi{constructor(Ai,Yi){this.dialogRef=Ai,this.data=Yi}static#e=xi=()=>(this.\u0275fac=function(Yi){return new(Yi||Gi)(M.rXU(P.CP),M.rXU(P.Vh))},this.\u0275cmp=M.VBU({type:Gi,selectors:[["rtl-spinner-dialog"]],standalone:!1,decls:4,vars:1,consts:[["fxLayout","column","fxLayoutAlign","center center",1,"spinner-container"],["color","primary","mode","indeterminate",1,"modal-spinner-message"]],template:function(Yi,zt){1&Yi&&(M.j41(0,"div",0),M.nrm(1,"mat-progress-spinner",1),M.j41(2,"h2"),M.EFF(3),M.k0s()()),2&Yi&&(M.R7$(3),M.JRh(zt.data.titleMessage))},dependencies:[j.LG,U.DJ,U.sA],styles:["h2[_ngcontent-%COMP%]{text-align:center}"]}))}return xi(),Gi})();var q=l(45383),G=l(79647),Q=l(2615),$=l(98570),ae=l(95416),ue=l(82571),oe=l(43694),he=l(59640),me=l(72200),Te=l(20060),D=l(88834),n=l(25596),o=l(12629),f=l(71997),h=l(16038),b=l(40455),A=l(38288),k=l(10497),x=l(29157),r=l(89587);const _=["scrollContainer"],W=xi=>({"display-none":xi}),I=xi=>({"h-40":xi}),B=xi=>({"failed-status":xi});function re(xi,Gi){if(1&xi&&M.nrm(0,"qr-code",19),2&xi){const Ci=M.XpG();M.Y8G("value",Ci.showQRField)("size",200)}}function pe(xi,Gi){1&xi&&M.eu8(0)}function be(xi,Gi){if(1&xi&&(M.qex(0),M.j41(1,"mat-card-content",20,1),M.DNE(3,pe,1,0,"ng-container",21),M.k0s(),M.bVm()),2&xi){const Ci=M.XpG(),Ai=M.sdS(20);M.R7$(),M.Y8G("ngClass",M.eq3(2,I,Ci.data.scrollable)),M.R7$(2),M.Y8G("ngTemplateOutlet",Ai)}}function Be(xi,Gi){1&xi&&M.eu8(0)}function _e(xi,Gi){if(1&xi&&(M.qex(0),M.j41(1,"mat-card-content",22),M.DNE(2,Be,1,0,"ng-container",21),M.k0s(),M.bVm()),2&xi){M.XpG();const Ci=M.sdS(20);M.R7$(2),M.Y8G("ngTemplateOutlet",Ci)}}function ye(xi,Gi){1&xi&&(M.j41(0,"mat-icon",27),M.EFF(1,"arrow_downward"),M.k0s())}function Le(xi,Gi){1&xi&&(M.j41(0,"mat-icon",28),M.EFF(1,"arrow_upward"),M.k0s())}function Ke(xi,Gi){if(1&xi){const Ci=M.RV6();M.j41(0,"div",23)(1,"button",24),M.bIt("click",function(){Q.eBV(Ci);const Yi=M.XpG();return Q.Njj(Yi.onScroll())}),M.DNE(2,ye,2,0,"mat-icon",25)(3,Le,2,0,"mat-icon",26),M.k0s()()}if(2&xi){const Ci=M.XpG();M.R7$(2),M.Y8G("ngIf","DOWN"===Ci.scrollDirection),M.R7$(),M.Y8G("ngIf","UP"===Ci.scrollDirection)}}function ge(xi,Gi){1&xi&&(M.j41(0,"button",29),M.EFF(1,"OK"),M.k0s()),2&xi&&M.Y8G("mat-dialog-close",!1)}function ve(xi,Gi){1&xi&&(M.j41(0,"button",30),M.EFF(1,"Close"),M.k0s()),2&xi&&M.Y8G("mat-dialog-close",!1)}function Oe(xi,Gi){if(1&xi){const Ci=M.RV6();M.j41(0,"button",31),M.bIt("copied",function(Yi){Q.eBV(Ci);const zt=M.XpG();return Q.Njj(zt.onCopyField(Yi))}),M.EFF(1),M.k0s()}if(2&xi){const Ci=M.XpG();M.Y8G("payload",Ci.showCopyField),M.R7$(),M.SpI("Copy ",Ci.showCopyName)}}function Ee(xi,Gi){1&xi&&(M.j41(0,"button",30),M.EFF(1,"Close"),M.k0s()),2&xi&&M.Y8G("mat-dialog-close",!1)}function dt(xi,Gi){if(1&xi){const Ci=M.RV6();M.j41(0,"button",31),M.bIt("copied",function(Yi){Q.eBV(Ci);const zt=M.XpG();return Q.Njj(zt.onCopyField(Yi))}),M.EFF(1),M.k0s()}if(2&xi){const Ci=M.XpG();M.Y8G("payload",Ci.showQRField),M.R7$(),M.SpI("Copy ",Ci.showQRName)}}function nt(xi,Gi){if(1&xi&&M.nrm(0,"qr-code",19),2&xi){const Ci=M.XpG(2);M.Y8G("value",Ci.showQRField)("size",200)}}function Ct(xi,Gi){if(1&xi&&(M.j41(0,"p",37),M.EFF(1),M.k0s()),2&xi){const Ci=M.XpG(2);M.R7$(),M.JRh(Ci.data.titleMessage)}}function Mt(xi,Gi){1&xi&&M.nrm(0,"span",51),2&xi&&M.Y8G("innerHTML",Gi.$implicit,M.npT)}function lt(xi,Gi){if(1&xi&&(M.qex(0),M.j41(1,"span",34),M.DNE(2,Mt,1,1,"span",50),M.k0s(),M.bVm()),2&xi){const Ci=M.XpG(2).$implicit;M.R7$(2),M.Y8G("ngForOf",Ci.value)}}function Pe(xi,Gi){if(1&xi&&(M.qex(0),M.EFF(1),M.nI1(2,"date"),M.bVm()),2&xi){const Ci=M.XpG(2).$implicit;M.R7$(),M.JRh(M.i5U(2,1,1e3*Ci.value,"dd/MMM/y HH:mm"))}}function Ht(xi,Gi){if(1&xi&&(M.qex(0),M.EFF(1),M.nI1(2,"number"),M.bVm()),2&xi){const Ci=M.XpG(2).$implicit;M.R7$(),M.JRh(M.i5U(2,1,Ci.value,Ci.digitsInfo?Ci.digitsInfo:"1.0-3"))}}function ct(xi,Gi){if(1&xi&&(M.qex(0),M.EFF(1),M.bVm()),2&xi){const Ci=M.XpG(2).$implicit;M.R7$(),M.JRh(Ci.value?"True":"False")}}function Ce(xi,Gi){1&xi&&(M.j41(0,"mat-icon",55),M.EFF(1,"info"),M.k0s())}function ze(xi,Gi){if(1&xi&&(M.j41(0,"p",53),M.EFF(1),M.DNE(2,Ce,2,0,"mat-icon",54),M.k0s()),2&xi){const Ci=M.XpG(3).$implicit,Ai=M.XpG(4);M.Y8G("ngClass",M.eq3(3,B,Ci.value===Ai.LoopStateEnum.FAILED)),M.R7$(),M.SpI(" ",Ci.value," "),M.R7$(),M.Y8G("ngIf",Ci.value===Ai.LoopStateEnum.FAILED)}}function Z(xi,Gi){if(1&xi){const Ci=M.RV6();M.j41(0,"p",57),M.bIt("click",function(){Q.eBV(Ci);const Yi=M.XpG(8);return Q.Njj(Yi.onGoToLink())}),M.EFF(1),M.k0s()}if(2&xi){const Ci=M.XpG(4).$implicit,Ai=M.XpG(4);M.Y8G("matTooltip",M.mNQ("Go To "+Ai.goToName)),M.R7$(),M.SpI(" ",Ci.value," ")}}function J(xi,Gi){if(1&xi&&M.EFF(0),2&xi){const Ci=M.XpG(4).$implicit;M.SpI(" ",Ci.value," ")}}function fe(xi,Gi){if(1&xi&&M.DNE(0,Z,2,3,"p",56)(1,J,1,1,"ng-template",null,4,M.C5r),2&xi){const Ci=M.sdS(2),Ai=M.XpG(3).$implicit,Yi=M.XpG(4);M.Y8G("ngIf",Ai.value===Yi.goToFieldValue)("ngIfElse",Ci)}}function Ie(xi,Gi){if(1&xi&&(M.qex(0),M.DNE(1,ze,3,5,"p",52)(2,fe,3,2,"ng-template",null,3,M.C5r),M.bVm()),2&xi){const Ci=M.sdS(3),Ai=M.XpG(2).$implicit,Yi=M.XpG(4);M.R7$(),M.Y8G("ngIf","SWAP"===Yi.data.openedBy&&"state"===Ai.key)("ngIfElse",Ci)}}function ht(xi,Gi){if(1&xi){const Ci=M.RV6();M.j41(0,"fa-icon",58),M.bIt("click",function(){Q.eBV(Ci);const Yi=M.XpG(2).$implicit,zt=M.XpG(4);return Q.Njj(zt.onExplorerClicked(Yi))}),M.k0s()}if(2&xi){const Ci=M.XpG(6);M.Y8G("matTooltip",M.mNQ("Link to "+Ci.selNode.settings.blockExplorerUrl))("icon",Ci.faUpRightFromSquare)}}function li(xi,Gi){if(1&xi&&(M.j41(0,"span")(1,"span",46),M.DNE(2,lt,3,1,"ng-container",47)(3,Pe,3,4,"ng-container",47)(4,Ht,3,4,"ng-container",47)(5,ct,2,1,"ng-container",47)(6,Ie,4,2,"ng-container",48),M.j41(7,"span"),M.DNE(8,ht,1,3,"fa-icon",49),M.k0s()()()),2&xi){const Ci=M.XpG().$implicit,Ai=M.XpG(4);M.R7$(),M.Y8G("ngSwitch",Ci.type),M.R7$(),M.Y8G("ngSwitchCase",Ai.dataTypeEnum.ARRAY),M.R7$(),M.Y8G("ngSwitchCase",Ai.dataTypeEnum.DATE_TIME),M.R7$(),M.Y8G("ngSwitchCase",Ai.dataTypeEnum.NUMBER),M.R7$(),M.Y8G("ngSwitchCase",Ai.dataTypeEnum.BOOLEAN),M.R7$(3),M.Y8G("ngIf",Ci.explorerLink&&""!==Ci.explorerLink)}}function Qt(xi,Gi){1&xi&&(M.j41(0,"span",59),M.EFF(1,"\xa0"),M.k0s())}function di(xi,Gi){if(1&xi&&(M.j41(0,"div",42)(1,"h4",43),M.EFF(2),M.k0s(),M.DNE(3,li,9,6,"span",44)(4,Qt,2,0,"ng-template",null,2,M.C5r),M.nrm(6,"mat-divider",45),M.k0s()),2&xi){const Ci=Gi.$implicit,Ai=M.sdS(5);M.Y8G("fxFlex.gt-md",M.mNQ(Ci.width)),M.R7$(2),M.JRh(Ci.title),M.R7$(),M.Y8G("ngIf",Ci&&(!!Ci.value||0===Ci.value))("ngIfElse",Ai)}}function kt(xi,Gi){if(1&xi&&(M.j41(0,"div")(1,"div",40),M.DNE(2,di,7,5,"div",41),M.k0s()()),2&xi){const Ci=Gi.$implicit;M.R7$(2),M.Y8G("ngForOf",Ci)}}function Rt(xi,Gi){if(1&xi&&(M.j41(0,"div",38),M.DNE(1,kt,3,1,"div",39),M.k0s()),2&xi){const Ci=M.XpG(2);M.R7$(),M.Y8G("ngForOf",Ci.messageObjs)}}function le(xi,Gi){if(1&xi&&(M.j41(0,"div",32)(1,"div",33),M.DNE(2,nt,1,2,"qr-code",7),M.k0s(),M.j41(3,"div",34),M.DNE(4,Ct,2,1,"p",35)(5,Rt,2,1,"div",36),M.k0s()()),2&xi){const Ci=M.XpG();M.R7$(),M.Y8G("ngClass",M.eq3(4,W,""===Ci.showQRField||Ci.screenSize!==Ci.screenSizeEnum.XS&&Ci.screenSize!==Ci.screenSizeEnum.SM)),M.R7$(),M.Y8G("ngIf",""!==Ci.showQRField),M.R7$(2),M.Y8G("ngIf",Ci.data.titleMessage),M.R7$(),M.Y8G("ngIf",(null==Ci.messageObjs?null:Ci.messageObjs.length)>0)}}let te=(()=>{var xi;class Gi{set container(Ai){Ai&&(this.scrollContainer=Ai,this.scrollContainer&&this.scrollContainer.nativeElement&&(this.unlistenEnd=this.renderer.listen(this.scrollContainer.nativeElement,"ps-y-reach-end",Yi=>{this.scrollDirection="UP"}),this.unlistenStart=this.renderer.listen(this.scrollContainer.nativeElement,"ps-y-reach-start",Yi=>{this.scrollDirection="DOWN"})))}constructor(Ai,Yi,zt,ji,Me,mt,vt,ni){this.dialogRef=Ai,this.data=Yi,this.logger=zt,this.snackBar=ji,this.commonService=Me,this.renderer=mt,this.router=vt,this.store=ni,this.faUpRightFromSquare=q.k02,this.LoopStateEnum=m.Hx,this.goToFieldValue="",this.goToName="",this.goToLink="",this.showQRField="",this.showQRName="",this.showCopyName="",this.showCopyField="",this.errorMessage="",this.messageObjs=[],this.alertTypeEnum=m.A$,this.dataTypeEnum=m.UN,this.screenSize="",this.screenSizeEnum=m.f7,this.scrollDirection="DOWN",this.shouldScroll=!0,this.unSubs=[new p.B,new p.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.messageObjs=this.data.message||[],this.goToFieldValue=this.data.goToFieldValue?this.data.goToFieldValue:"",this.goToName=this.data.goToName?this.data.goToName:"",this.goToLink=this.data.goToLink?this.data.goToLink:"",this.showQRField=this.data.showQRField?this.data.showQRField:"",this.showQRName=this.data.showQRName?this.data.showQRName:"",this.showCopyName=this.data.showCopyName?this.data.showCopyName:"",this.showCopyField=this.data.showCopyField?this.data.showCopyField:"",this.data.type===m.A$.ERROR&&!this.data.message&&!this.data.titleMessage&&this.messageObjs.length<=0&&(this.data.titleMessage="Please Check Server Connection"),this.logger.info(this.messageObjs),this.store.select(G._c).pipe((0,w.Q)(this.unSubs[0])).subscribe(Ai=>{this.selNode=Ai,this.logger.info(this.selNode)})}ngAfterViewChecked(){setTimeout(()=>{this.shouldScroll=this.scrollContainer&&this.scrollContainer.nativeElement&&this.scrollContainer.nativeElement.classList.value.includes("ps--active-y")},500)}onScroll(){this.scrollContainer.nativeElement.scrollTop="DOWN"===this.scrollDirection?this.scrollContainer.nativeElement.scrollTop+62.6:this.scrollContainer.nativeElement.scrollTop-62.6}onCopyField(Ai){this.snackBar.open((this.showQRName?this.showQRName:this.showCopyName)+" copied."),this.logger.info("Copied Text: "+Ai)}onClose(){this.dialogRef.close(!1)}onGoToLink(){this.router.navigateByUrl(this.goToLink,{state:{lookupType:"0",lookupValue:this.goToFieldValue}}),this.onClose()}onExplorerClicked(Ai){window.open(this.selNode.settings.blockExplorerUrl+"/"+Ai.explorerLink+"/"+Ai.value,"_blank")}ngOnDestroy(){this.unlistenStart&&this.unlistenStart(),this.unlistenEnd&&this.unlistenEnd(),this.unSubs.forEach(Ai=>{Ai.next(null),Ai.complete()})}static#e=xi=()=>(this.\u0275fac=function(Yi){return new(Yi||Gi)(M.rXU(P.CP),M.rXU(P.Vh),M.rXU($.gP),M.rXU(ae.UG),M.rXU(ue.h),M.rXU(M.sFG),M.rXU(oe.Ix),M.rXU(he.il))},this.\u0275cmp=M.VBU({type:Gi,selectors:[["rtl-alert-message"]],viewQuery:function(Yi,zt){if(1&Yi&&M.GBs(_,5),2&Yi){let ji;M.mGM(ji=M.lsd())&&(zt.container=ji.first)}},standalone:!1,decls:21,vars:14,consts:[["contentBlock",""],["scrollContainer",""],["emptyField",""],["noStyleBlock",""],["noStyleChild",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","30","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large","ml-1",3,"ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],[3,"ngClass"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","start end","class","btn-sticky-container padding-gap-x-large",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close",4,"ngIf"],["class","mr-1","fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",3,"mat-dialog-close",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"padding-gap-x-large",3,"perfectScrollbar","ngClass"],[4,"ngTemplateOutlet"],[1,"padding-gap-x-large"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll","fxLayoutAlign","center center",3,"click"],["class","arrow-downward","fxLayoutAlign","center center",4,"ngIf"],["class","arrow-upward","fxLayoutAlign","center center",4,"ngIf"],["fxLayoutAlign","center center",1,"arrow-downward"],["fxLayoutAlign","center center",1,"arrow-upward"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close"],["fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",1,"mr-1",3,"mat-dialog-close"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large","mb-1",3,"ngClass"],["fxLayout","column","fxFlex","100"],["fxLayoutAlign","start center","class","pb-2",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxLayoutAlign","start center",1,"pb-2"],["fxFlex","100"],[4,"ngFor","ngForOf"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center","fxLayoutAlign.gt-md","space-between start"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md"],["fxLayoutAlign","start",1,"font-bold-500"],[4,"ngIf","ngIfElse"],[1,"w-100","my-1"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",1,"foreground-secondary-text",3,"ngSwitch"],[4,"ngSwitchCase"],[4,"ngSwitchDefault"],["class","ml-1 fa-icon-primary",3,"matTooltip","icon","click",4,"ngIf"],["class","display-block w-100",3,"innerHTML",4,"ngFor","ngForOf"],[1,"display-block","w-100",3,"innerHTML"],["fxLayout","row",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","row",3,"ngClass"],["fxLayoutAlign","end end","class","icon-failed-status",4,"ngIf"],["fxLayoutAlign","end end",1,"icon-failed-status"],["fxLayout","row","class","go-to-link","tabindex","4",3,"matTooltip","click",4,"ngIf","ngIfElse"],["fxLayout","row","tabindex","4",1,"go-to-link",3,"click","matTooltip"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["fxFlex","100",1,"foreground-secondary-text"]],template:function(Yi,zt){if(1&Yi){const ji=M.RV6();M.j41(0,"div",5)(1,"div",6),M.DNE(2,re,1,2,"qr-code",7),M.k0s(),M.j41(3,"div",8)(4,"mat-card-header",9)(5,"div",10)(6,"span",11),M.EFF(7),M.k0s()(),M.j41(8,"button",12),M.bIt("click",function(){return Q.eBV(ji),Q.Njj(zt.onClose())}),M.EFF(9,"X"),M.k0s()(),M.DNE(10,be,4,4,"ng-container",13)(11,_e,3,1,"ng-container",13)(12,Ke,4,2,"div",14),M.j41(13,"div",15),M.DNE(14,ge,2,1,"button",16)(15,ve,2,1,"button",17)(16,Oe,2,2,"button",18)(17,Ee,2,1,"button",17)(18,dt,2,2,"button",18),M.k0s()()(),M.DNE(19,le,6,6,"ng-template",null,0,M.C5r)}2&Yi&&(M.R7$(),M.Y8G("ngClass",M.eq3(12,W,""===zt.showQRField||zt.screenSize===zt.screenSizeEnum.XS||zt.screenSize===zt.screenSizeEnum.SM)),M.R7$(),M.Y8G("ngIf",""!==zt.showQRField),M.R7$(),M.Y8G("ngClass",""===zt.showQRField||zt.screenSize===zt.screenSizeEnum.XS||zt.screenSize===zt.screenSizeEnum.SM?"flex-100":"flex-70"),M.R7$(4),M.JRh(zt.data.alertTitle||zt.alertTypeEnum[zt.data.type]),M.R7$(3),M.Y8G("ngIf",zt.data.scrollable),M.R7$(),M.Y8G("ngIf",!zt.data.scrollable),M.R7$(),M.Y8G("ngIf",zt.data.scrollable&&zt.shouldScroll),M.R7$(2),M.Y8G("ngIf",(!zt.showQRField||""===zt.showQRField)&&""===zt.showCopyName),M.R7$(),M.Y8G("ngIf",""!==zt.showCopyName),M.R7$(),M.Y8G("ngIf",""!==zt.showCopyName),M.R7$(),M.Y8G("ngIf",""!==zt.showQRField),M.R7$(),M.Y8G("ngIf",""!==zt.showQRField))},dependencies:[me.YU,me.Sq,me.bT,me.T3,me.ux,me.e1,me.fG,Te.aY,P.tx,D.$z,D.$0,n.m2,n.MM,o.An,f.q,U.DJ,U.sA,U.UI,h.PW,b.oV,A.Um,k.Ld,x.U,r.N,me.QX,me.vh],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]}))}return xi(),Gi})();var ce=l(11771),se=l(89417),ke=l(33746),Ue=l(69588),Ne=l(56114);function Kt(xi,Gi){if(1&xi&&(M.j41(0,"div",20),M.nrm(1,"fa-icon",21),M.j41(2,"span"),M.EFF(3),M.k0s()()),2&xi){const Ci=M.XpG();M.R7$(),M.Y8G("icon",Ci.faExclamationTriangle),M.R7$(2),M.JRh(Ci.warningMessage)}}function yt(xi,Gi){if(1&xi&&(M.j41(0,"div",22),M.nrm(1,"fa-icon",21),M.j41(2,"span"),M.EFF(3),M.k0s()()),2&xi){const Ci=M.XpG();M.R7$(),M.Y8G("icon",Ci.faInfoCircle),M.R7$(2),M.JRh(Ci.informationMessage)}}function Vt(xi,Gi){if(1&xi&&(M.j41(0,"p",23),M.EFF(1),M.k0s()),2&xi){const Ci=M.XpG();M.R7$(),M.JRh(Ci.data.titleMessage)}}function Zt(xi,Gi){1&xi&&M.nrm(0,"div",37),2&xi&&M.Y8G("innerHTML",Gi.$implicit,M.npT)}function ti(xi,Gi){if(1&xi&&(M.qex(0,35),M.DNE(1,Zt,1,1,"div",36),M.bVm()),2&xi){const Ci=M.XpG(2).$implicit;M.R7$(),M.Y8G("ngForOf",Ci.value)}}function Ye(xi,Gi){if(1&xi&&(M.qex(0),M.EFF(1),M.nI1(2,"date"),M.bVm()),2&xi){const Ci=M.XpG(2).$implicit;M.R7$(),M.JRh(M.i5U(2,1,1e3*Ci.value,"dd/MMM/y HH:mm"))}}function Nt(xi,Gi){if(1&xi&&(M.qex(0),M.EFF(1),M.nI1(2,"number"),M.bVm()),2&xi){const Ci=M.XpG(2).$implicit;M.R7$(),M.JRh(M.i5U(2,1,Ci.value,"1.0-3"))}}function Et(xi,Gi){if(1&xi&&(M.qex(0),M.EFF(1),M.bVm()),2&xi){const Ci=M.XpG(2).$implicit;M.R7$(),M.JRh(!0===Ci.value?"True":"False")}}function Jt(xi,Gi){if(1&xi&&(M.qex(0),M.EFF(1),M.bVm()),2&xi){const Ci=M.XpG(2).$implicit;M.R7$(),M.JRh(Ci.value)}}function qe(xi,Gi){if(1&xi&&(M.j41(0,"span")(1,"span",31),M.DNE(2,ti,2,1,"ng-container",32)(3,Ye,3,4,"ng-container",33)(4,Nt,3,4,"ng-container",33)(5,Et,2,1,"ng-container",33)(6,Jt,2,1,"ng-container",34),M.k0s()()),2&xi){const Ci=M.XpG().$implicit,Ai=M.XpG(3);M.R7$(),M.Y8G("ngSwitch",Ci.type),M.R7$(),M.Y8G("ngSwitchCase",Ai.dataTypeEnum.ARRAY),M.R7$(),M.Y8G("ngSwitchCase",Ai.dataTypeEnum.DATE_TIME),M.R7$(),M.Y8G("ngSwitchCase",Ai.dataTypeEnum.NUMBER),M.R7$(),M.Y8G("ngSwitchCase",Ai.dataTypeEnum.BOOLEAN)}}function $e(xi,Gi){1&xi&&(M.j41(0,"span",38),M.EFF(1,"\xa0"),M.k0s())}function tt(xi,Gi){if(1&xi&&(M.j41(0,"div",27)(1,"h4",28),M.EFF(2),M.k0s(),M.DNE(3,qe,7,5,"span",29)(4,$e,2,0,"ng-template",null,0,M.C5r),M.nrm(6,"mat-divider",30),M.k0s()),2&xi){const Ci=Gi.$implicit,Ai=M.sdS(5);M.Y8G("fxFlex.gt-md",M.mNQ(Ci.width)),M.R7$(2),M.JRh(Ci.title),M.R7$(),M.Y8G("ngIf",Ci&&(!!Ci.value||0===Ci.value))("ngIfElse",Ai)}}function vi(xi,Gi){if(1&xi&&(M.j41(0,"div")(1,"div",25),M.DNE(2,tt,7,5,"div",26),M.k0s()()),2&xi){const Ci=Gi.$implicit;M.R7$(2),M.Y8G("ngForOf",Ci)}}function ei(xi,Gi){if(1&xi&&(M.j41(0,"div"),M.DNE(1,vi,3,1,"div",24),M.k0s()),2&xi){const Ci=M.XpG();M.R7$(),M.Y8G("ngForOf",Ci.messageObjs)}}function ci(xi,Gi){if(1&xi&&(M.j41(0,"p",23),M.EFF(1),M.k0s()),2&xi){const Ci=M.XpG(2);M.R7$(),M.JRh(Ci.data.titleMessage)}}function Hi(xi,Gi){if(1&xi&&(M.j41(0,"mat-error"),M.EFF(1),M.k0s()),2&xi){const Ci=M.XpG(2).$implicit;M.R7$(),M.SpI("",Ci.placeholder," is required.")}}function oi(xi,Gi){if(1&xi){const Ci=M.RV6();M.j41(0,"mat-form-field",42)(1,"mat-label"),M.EFF(2),M.k0s(),M.j41(3,"input",43),M.nI1(4,"lowercase"),M.mxI("ngModelChange",function(Yi){Q.eBV(Ci);const zt=M.XpG().$implicit;return M.DH7(zt.inputValue,Yi)||(zt.inputValue=Yi),Q.Njj(Yi)}),M.k0s(),M.DNE(5,Hi,2,1,"mat-error",13),M.j41(6,"mat-hint"),M.EFF(7),M.k0s()()}if(2&xi){const Ci=M.XpG(),Ai=Ci.$implicit,Yi=Ci.index;M.Y8G("ngClass",Ai.width),M.R7$(2),M.JRh(Ai.placeholder),M.R7$(),M.Y8G("name",M.VkB("input",Yi))("autoFocus",0===Yi)("min",Ai.min)("step",Ai.step)("type",M.bMT(4,12,Ai.inputType))("tabindex",Yi+1),M.R50("ngModel",Ai.inputValue),M.R7$(2),M.Y8G("ngIf",!Ai.inputValue),M.R7$(2),M.JRh(Ai.hintFunction?Ai.hintFunction(Ai.inputValue):Ai.hintText)}}function ui(xi,Gi){if(1&xi&&(M.qex(0),M.DNE(1,oi,8,14,"mat-form-field",41),M.bVm()),2&xi){const Ci=Gi.$implicit,Ai=M.XpG(2);M.R7$(),M.Y8G("ngIf",!Ci.advancedField||Ai.showAdvanced)}}function ln(xi,Gi){if(1&xi&&(M.j41(0,"div",39),M.DNE(1,ci,2,1,"p",12),M.j41(2,"div",40),M.DNE(3,ui,2,1,"ng-container",24),M.k0s()()),2&xi){const Ci=M.XpG();M.R7$(),M.Y8G("ngIf",Ci.data.titleMessage),M.R7$(2),M.Y8G("ngForOf",Ci.getInputs)}}function nn(xi,Gi){1&xi&&(M.j41(0,"p"),M.EFF(1,"Show Advanced"),M.k0s())}function dn(xi,Gi){1&xi&&(M.j41(0,"p"),M.EFF(1,"Hide Advanced"),M.k0s())}function zn(xi,Gi){if(1&xi){const Ci=M.RV6();M.j41(0,"button",44),M.bIt("click",function(){Q.eBV(Ci);const Yi=M.XpG();return Q.Njj(Yi.onShowAdvanced())}),M.DNE(1,nn,2,0,"p",29)(2,dn,2,0,"ng-template",null,1,M.C5r),M.k0s()}if(2&xi){const Ci=M.sdS(3),Ai=M.XpG();M.R7$(),M.Y8G("ngIf",!Ai.showAdvanced)("ngIfElse",Ci)}}function It(xi,Gi){if(1&xi){const Ci=M.RV6();M.j41(0,"button",45),M.bIt("click",function(){Q.eBV(Ci);const Yi=M.XpG();return Q.Njj(Yi.onClose(Yi.getInputs))}),M.EFF(1),M.k0s()}if(2&xi){const Ci=M.XpG();M.R7$(),M.JRh(Ci.yesBtnText)}}function Tt(xi,Gi){if(1&xi){const Ci=M.RV6();M.j41(0,"button",46),M.bIt("click",function(){Q.eBV(Ci);const Yi=M.XpG();return Q.Njj(Yi.onClose(!0))}),M.EFF(1),M.k0s()}if(2&xi){const Ci=M.XpG();M.R7$(),M.JRh(Ci.yesBtnText)}}let Ze=(()=>{var xi;class Gi{constructor(Ai,Yi,zt,ji){this.dialogRef=Ai,this.data=Yi,this.logger=zt,this.store=ji,this.faInfoCircle=q.iW_,this.faExclamationTriangle=q.zpE,this.informationMessage="",this.warningMessage="",this.noBtnText="No",this.yesBtnText="Yes",this.messageObjs=[],this.flgShowInput=!1,this.hasAdvanced=!1,this.alertTypeEnum=m.A$,this.dataTypeEnum=m.UN,this.getInputs=[{placeholder:"",inputType:m.UN.STRING,inputValue:"",hintText:"",hintFunction:null,advancedField:!1}],this.showAdvanced=!1}ngOnInit(){this.informationMessage=this.data.informationMessage||"",this.warningMessage=this.data.warningMessage||"",this.flgShowInput=!!this.data.flgShowInput,this.getInputs=this.data.getInputs||[],this.noBtnText=this.data.noBtnText?this.data.noBtnText:"No",this.yesBtnText=this.data.yesBtnText?this.data.yesBtnText:"Yes",this.hasAdvanced=!!this.data.hasAdvanced&&this.data.hasAdvanced,this.messageObjs=this.data.message,this.data.type===m.A$.ERROR&&!this.data.message&&!this.data.titleMessage&&this.messageObjs.length<=0&&(this.data.titleMessage="Please Check Server Connection")}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onClose(Ai){if(Ai&&this.getInputs&&this.getInputs.some(Yi=>typeof Yi.inputValue>"u"))return!0;!this.showAdvanced&&Ai.length&&(Ai=Ai?.reduce((Yi,zt)=>(zt.advancedField||Yi.push(zt),Yi),[])),this.store.dispatch((0,ce.uP)({payload:Ai}))}static#e=xi=()=>(this.\u0275fac=function(Yi){return new(Yi||Gi)(M.rXU(P.CP),M.rXU(P.Vh),M.rXU($.gP),M.rXU(he.il))},this.\u0275cmp=M.VBU({type:Gi,selectors:[["rtl-confirmation-message"]],standalone:!1,decls:21,vars:10,consts:[["emptyField",""],["hideAdvancedText",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayoutAlign","start center","class","pb-1",4,"ngIf"],[4,"ngIf"],["fxLayout","column","class","bordered-box my-2 p-2",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],["mat-button","","color","primary","type","button","class","mr-1","tabindex","2",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","3","default","",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","4","default","",3,"click",4,"ngIf"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayoutAlign","start center",1,"pb-1"],[4,"ngFor","ngForOf"],["fxLayout","row wrap","fxLayoutAlign","start center","fxLayoutAlign.gt-md","space-between start"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md"],["fxLayoutAlign","start",1,"font-bold-500"],[4,"ngIf","ngIfElse"],[1,"w-100","my-1"],[1,"foreground-secondary-text",3,"ngSwitch"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch",4,"ngSwitchCase"],[4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch"],[3,"innerHTML",4,"ngFor","ngForOf"],[3,"innerHTML"],["fxFlex","100",1,"foreground-secondary-text"],["fxLayout","column",1,"bordered-box","my-2","p-2"],["fxLayout","row wrap","fxLayoutAlign","space-between center"],[3,"ngClass",4,"ngIf"],[3,"ngClass"],["matInput","","required","",3,"ngModelChange","name","autoFocus","min","step","type","tabindex","ngModel"],["mat-button","","color","primary","type","button","tabindex","2",1,"mr-1",3,"click"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","3","default","",3,"click"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","4","default","",3,"click"]],template:function(Yi,zt){1&Yi&&(M.j41(0,"div",2)(1,"div",3)(2,"mat-card-header",4)(3,"div",5)(4,"span",6),M.EFF(5),M.k0s()(),M.j41(6,"button",7),M.bIt("click",function(){return zt.onClose(!1)}),M.EFF(7,"X"),M.k0s()(),M.j41(8,"mat-card-content",8)(9,"form",9),M.DNE(10,Kt,4,2,"div",10)(11,yt,4,2,"div",11)(12,Vt,2,1,"p",12)(13,ei,2,1,"div",13)(14,ln,4,2,"div",14),M.j41(15,"div",15)(16,"button",16),M.bIt("click",function(){return zt.onClose(!1)}),M.EFF(17),M.k0s(),M.DNE(18,zn,4,2,"button",17)(19,It,2,1,"button",18)(20,Tt,2,1,"button",19),M.k0s()()()()()),2&Yi&&(M.R7$(5),M.JRh(zt.data.alertTitle||zt.alertTypeEnum[zt.data.type]),M.R7$(5),M.Y8G("ngIf",zt.warningMessage&&""!==zt.warningMessage),M.R7$(),M.Y8G("ngIf",zt.informationMessage&&""!==zt.informationMessage),M.R7$(),M.Y8G("ngIf",zt.data.titleMessage&&!zt.flgShowInput),M.R7$(),M.Y8G("ngIf",(null==zt.messageObjs?null:zt.messageObjs.length)>0),M.R7$(),M.Y8G("ngIf",zt.flgShowInput),M.R7$(3),M.JRh(zt.noBtnText),M.R7$(),M.Y8G("ngIf",zt.hasAdvanced),M.R7$(),M.Y8G("ngIf",zt.flgShowInput),M.R7$(),M.Y8G("ngIf",!zt.flgShowInput))},dependencies:[me.YU,me.Sq,me.bT,me.ux,me.e1,me.fG,se.qT,se.me,se.BC,se.cb,se.YS,se.vS,se.cV,Te.aY,D.$z,n.m2,n.MM,ke.fg,Ue.rl,Ue.nJ,Ue.MV,Ue.TL,f.q,U.DJ,U.sA,U.UI,h.PW,r.N,Ne.V,me.GH,me.QX,me.vh],encapsulation:2}))}return xi(),Gi})();var Ve=l(12462),Fe=l(96183),it=l(23029);const bt=xi=>({"display-none":xi});function ut(xi,Gi){if(1&xi&&(M.j41(0,"mat-option",23),M.EFF(1),M.k0s()),2&xi){const Ci=Gi.$implicit;M.Y8G("value",Ci),M.R7$(),M.SpI(" ",Ci.infoName," ")}}function jt(xi,Gi){if(1&xi){const Ci=M.RV6();M.j41(0,"div",13)(1,"mat-form-field",20)(2,"mat-select",21),M.mxI("valueChange",function(Yi){Q.eBV(Ci);const zt=M.XpG();return M.DH7(zt.selInfoType,Yi)||(zt.selInfoType=Yi),Q.Njj(Yi)}),M.DNE(3,ut,2,2,"mat-option",22),M.k0s()()()}if(2&xi){const Ci=M.XpG();M.R7$(2),M.R50("value",Ci.selInfoType),M.R7$(),M.Y8G("ngForOf",Ci.infoTypes)}}let ai=(()=>{var xi;class Gi{constructor(Ai,Yi,zt,ji,Me){this.dialogRef=Ai,this.data=Yi,this.logger=zt,this.snackBar=ji,this.commonService=Me,this.faReceipt=q.Mf0,this.infoTypes=[{infoID:0,infoKey:"node pubkey",infoName:"Node pubkey"}],this.selInfoType=this.infoTypes[0],this.qrWidth=210,this.screenSize="",this.screenSizeEnum=m.f7}ngOnInit(){this.information=this.data.information,this.information.uris&&(1===this.information.uris.length?this.infoTypes.push({infoID:1,infoKey:"node URI",infoName:"Node URI"}):this.information.uris.length>1&&this.information.uris.forEach((Ai,Yi)=>{this.infoTypes.push({infoID:Yi+1,infoKey:"node URI "+(Yi+1),infoName:"Node URI "+(Yi+1)})})),this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onCopyPubkey(Ai){this.snackBar.open(this.selInfoType.infoName+" copied."),this.logger.info("Copied Text: "+Ai)}static#e=xi=()=>(this.\u0275fac=function(Yi){return new(Yi||Gi)(M.rXU(P.CP),M.rXU(P.Vh),M.rXU($.gP),M.rXU(ae.UG),M.rXU(ue.h))},this.\u0275cmp=M.VBU({type:Gi,selectors:[["rtl-show-pubkey"]],standalone:!1,decls:26,vars:20,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","30","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],["errorCorrectionLevel","L",3,"value","size"],["fxFlex","100","fxFlex.gt-sm","70"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],["fxLayout","row",4,"ngIf"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","40","fxLayoutAlign","start end"],["tabindex","1",3,"valueChange","value"],[3,"value",4,"ngFor","ngForOf"],[3,"value"]],template:function(Yi,zt){1&Yi&&(M.j41(0,"div",0)(1,"div",1),M.nrm(2,"qr-code",2),M.k0s(),M.j41(3,"div",3)(4,"mat-card-header",4)(5,"div",5),M.nrm(6,"fa-icon",6),M.j41(7,"span",7),M.EFF(8),M.k0s()(),M.j41(9,"button",8),M.bIt("click",function(){return zt.onClose()}),M.EFF(10,"X"),M.k0s()(),M.j41(11,"mat-card-content",9)(12,"div",10)(13,"div",11),M.nrm(14,"qr-code",2),M.k0s(),M.DNE(15,jt,4,2,"div",12),M.j41(16,"div",13)(17,"div",14)(18,"h4",15),M.EFF(19),M.k0s(),M.j41(20,"span",16),M.EFF(21),M.k0s()()(),M.nrm(22,"mat-divider",17),M.j41(23,"div",18)(24,"button",19),M.bIt("copied",function(Me){return zt.onCopyPubkey(Me)}),M.EFF(25),M.k0s()()()()()()),2&Yi&&(M.R7$(),M.Y8G("ngClass",M.eq3(16,bt,zt.screenSize===zt.screenSizeEnum.XS||zt.screenSize===zt.screenSizeEnum.SM)),M.R7$(),M.Y8G("value",M.mNQ(0===zt.selInfoType.infoID?zt.information.identity_pubkey:zt.information.uris[zt.selInfoType.infoID-1]))("size",zt.qrWidth),M.R7$(4),M.Y8G("icon",zt.faReceipt),M.R7$(2),M.JRh(zt.selInfoType.infoName),M.R7$(5),M.Y8G("ngClass",M.eq3(18,bt,zt.screenSize!==zt.screenSizeEnum.XS&&zt.screenSize!==zt.screenSizeEnum.SM)),M.R7$(),M.Y8G("value",M.mNQ(0===zt.selInfoType.infoID?zt.information.identity_pubkey:zt.information.uris[zt.selInfoType.infoID-1]))("size",zt.qrWidth),M.R7$(),M.Y8G("ngIf",zt.information.uris&&zt.information.uris.length>0),M.R7$(4),M.JRh(zt.selInfoType.infoName),M.R7$(2),M.JRh(0===zt.selInfoType.infoID?zt.information.identity_pubkey:zt.information.uris[zt.selInfoType.infoID-1]),M.R7$(3),M.Y8G("payload",M.mNQ(0===zt.selInfoType.infoID?zt.information.identity_pubkey:zt.information.uris[zt.selInfoType.infoID-1])),M.R7$(),M.SpI("Copy ",zt.selInfoType.infoKey))},dependencies:[me.YU,me.Sq,me.bT,Te.aY,D.$z,n.m2,n.MM,Ue.rl,f.q,U.DJ,U.sA,U.UI,h.PW,Fe.VO,it.wT,A.Um,x.U,r.N],encapsulation:2}))}return xi(),Gi})();var pi=l(190),ki=l(28430),Ki=l(95428),Ji=l(29330),Dn=l(7879),En=l(53202),An=l(51534);let Fn=(()=>{var xi;class Gi{constructor(Ai,Yi,zt,ji,Me,mt,vt,ni,Fi,kn,ca){this.actions=Ai,this.httpClient=Yi,this.store=zt,this.logger=ji,this.wsService=Me,this.sessionService=mt,this.commonService=vt,this.dataService=ni,this.dialog=Fi,this.snackBar=kn,this.router=ca,this.screenSize="",this.alertWidth="55%",this.confirmWidth="70%",this.unSubs=[new p.B,new p.B],this.closeAllDialogs=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.CLOSE_ALL_DIALOGS),(0,c.T)(()=>{this.dialog.closeAll()})),{dispatch:!1}),this.openSnackBar=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.OPEN_SNACK_BAR),(0,c.T)(an=>{"string"==typeof an.payload?this.snackBar.open(an.payload):this.snackBar.open(an.payload.message,"","ERROR"===an.payload.type?{duration:an.payload.duration?an.payload.duration:2e3,panelClass:"rtl-warn-snack-bar"}:"WARN"===an.payload.type?{duration:an.payload.duration?an.payload.duration:2e3,panelClass:"rtl-accent-snack-bar"}:{duration:an.payload.duration?an.payload.duration:2e3,panelClass:"rtl-snack-bar"})})),{dispatch:!1}),this.openSpinner=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.OPEN_SPINNER),(0,c.T)(an=>{an.payload!==m.MZ.NO_SPINNER&&(this.dialogRef=this.dialog.open(K,{panelClass:"spinner-dialog-panel",data:{titleMessage:an.payload}}))})),{dispatch:!1}),this.closeSpinner=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.CLOSE_SPINNER),(0,c.T)(an=>{if(an.payload!==m.MZ.NO_SPINNER)try{this.dialogRef&&this.dialogRef.componentInstance&&this.dialogRef.componentInstance.data&&this.dialogRef.componentInstance.data.titleMessage&&this.dialogRef.componentInstance.data.titleMessage===an.payload?this.dialogRef.close():this.dialog.openDialogs.forEach(mn=>{mn.componentInstance&&mn.componentInstance.data&&mn.componentInstance.data.titleMessage&&mn.componentInstance.data.titleMessage===an.payload&&mn.close()})}catch(mn){this.logger.error(mn)}})),{dispatch:!1}),this.openAlert=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.OPEN_ALERT),(0,c.T)(an=>{const mn=JSON.parse(JSON.stringify(an.payload));mn.width||(mn.width=this.alertWidth),this.dialogRef=this.dialog.open(an.payload.data.component?an.payload.data.component:te,mn)})),{dispatch:!1}),this.closeAlert=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.CLOSE_ALERT),(0,c.T)(an=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(an.payload),an.payload))),{dispatch:!1}),this.openConfirm=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.OPEN_CONFIRMATION),(0,c.T)(an=>{const mn=JSON.parse(JSON.stringify(an.payload));mn.width||(mn.width=this.confirmWidth),this.dialogRef=this.dialog.open(Ze,mn)})),{dispatch:!1}),this.closeConfirm=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.CLOSE_CONFIRMATION),(0,e.s)(1),(0,c.T)(an=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(an.payload),an.payload))),{dispatch:!1}),this.showNodePubkey=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.SHOW_PUBKEY),(0,T.E)(this.store.select(G.N)),(0,g.Z)(([an,mn])=>(this.sessionService.getItem("token")&&mn.identity_pubkey?this.store.dispatch((0,ce.xO)({payload:{data:{information:mn,component:ai}}})):this.snackBar.open("Node Pubkey does not exist."),(0,S.of)({type:m.aU.VOID}))))),this.appConfigFetch=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.FETCH_APPLICATION_SETTINGS),(0,g.Z)(()=>(this.screenSize=this.commonService.getScreenSize(),this.screenSize===m.f7.XS||this.screenSize===m.f7.SM?(this.alertWidth="95%",this.confirmWidth="95%"):this.screenSize===m.f7.MD?(this.alertWidth="80%",this.confirmWidth="80%"):(this.alertWidth="50%",this.confirmWidth="53%"),this.store.dispatch((0,ce.mt)({payload:m.MZ.GET_RTL_CONFIG})),this.store.dispatch((0,ce.Gd)({payload:{action:"FetchRTLConfig",status:m.wn.INITIATED}})),this.httpClient.get(m.rl.CONF_API))),(0,c.T)(an=>{this.logger.info(an),this.store.dispatch((0,ce.y0)({payload:m.MZ.GET_RTL_CONFIG})),this.store.dispatch((0,ce.Gd)({payload:{action:"FetchRTLConfig",status:m.wn.COMPLETED}}));let mn=null;return an.nodes.forEach(qn=>{qn.settings.currencyUnits=[...m.A0,qn.settings?.currencyUnit?qn.settings?.currencyUnit:""],+(qn.index||-1)===an.selectedNodeIndex&&(mn=qn)}),mn?(this.store.dispatch((0,ce.Qi)({payload:{uiMessage:m.MZ.NO_SPINNER,prevLnNodeIndex:-1,currentLnNode:mn,isInitialSetup:!0}})),{type:m.aU.SET_APPLICATION_SETTINGS,payload:an}):{type:m.aU.VOID}}),(0,d.W)(an=>(this.handleErrorWithAlert("FetchRTLConfig",m.MZ.GET_RTL_CONFIG,"Fetch RTL Config Failed!",m.rl.CONF_API,an),(0,S.of)({type:m.aU.VOID}))))),this.updateNodeSettings=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.UPDATE_NODE_SETTINGS),(0,g.Z)(an=>(this.store.dispatch((0,ce.mt)({payload:m.MZ.UPDATE_NODE_SETTINGS})),this.store.dispatch((0,ce.Gd)({payload:{action:"updateNodeSettings",status:m.wn.INITIATED}})),an.payload.settings.fiatConversion||delete an.payload.settings.currencyUnit,delete an.payload.settings.currencyUnits,this.httpClient.post(m.rl.CONF_API+"/node",an.payload).pipe((0,c.T)(mn=>(this.store.dispatch((0,ce.Gd)({payload:{action:"updateNodeSettings",status:m.wn.COMPLETED}})),this.store.dispatch((0,ce.y0)({payload:m.MZ.UPDATE_NODE_SETTINGS})),mn.settings.currencyUnits=[...m.A0,mn.settings?.currencyUnit?mn.settings?.currencyUnit:""],this.store.dispatch((0,ce.Np)({payload:mn})),{type:m.aU.OPEN_SNACK_BAR,payload:"Node settings updated successfully!"})),(0,d.W)(mn=>(this.handleErrorWithAlert("updateNodeSettings",m.MZ.UPDATE_NODE_SETTINGS,"Update Node Settings Failed!",m.rl.CONF_API+"/node",mn),(0,S.of)({type:m.aU.VOID})))))))),this.updateApplicationSettings=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.UPDATE_APPLICATION_SETTINGS),(0,g.Z)(an=>(this.store.dispatch((0,ce.mt)({payload:m.MZ.UPDATE_APPLICATION_SETTINGS})),this.store.dispatch((0,ce.Gd)({payload:{action:"updateApplicationSettings",status:m.wn.INITIATED}})),an.payload.config.nodes.forEach(mn=>{delete mn.settings.currencyUnits}),this.httpClient.post(m.rl.CONF_API+"/application",an.payload.config).pipe((0,c.T)(mn=>(this.store.dispatch((0,ce.Gd)({payload:{action:"updateApplicationSettings",status:m.wn.COMPLETED}})),this.store.dispatch((0,ce.y0)({payload:m.MZ.UPDATE_APPLICATION_SETTINGS})),an.payload.showSnackBar&&this.store.dispatch((0,ce.UI)({payload:an.payload.message})),{type:m.aU.SET_APPLICATION_SETTINGS,payload:mn})),(0,d.W)(mn=>(this.handleErrorWithAlert("updateApplicationSettings",m.MZ.UPDATE_APPLICATION_SETTINGS,"Update Application Settings Failed!",m.rl.CONF_API+"/application",mn),(0,S.of)({type:m.aU.VOID})))))))),this.configFetch=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.FETCH_CONFIG),(0,g.Z)(an=>(this.store.dispatch((0,ce.mt)({payload:m.MZ.OPEN_CONFIG_FILE})),this.store.dispatch((0,ce.Gd)({payload:{action:"fetchConfig",status:m.wn.INITIATED}})),this.httpClient.get(m.rl.CONF_API+"/config/"+an.payload).pipe((0,c.T)(mn=>(this.store.dispatch((0,ce.Gd)({payload:{action:"fetchConfig",status:m.wn.COMPLETED}})),this.store.dispatch((0,ce.y0)({payload:m.MZ.OPEN_CONFIG_FILE})),{type:m.aU.SHOW_CONFIG,payload:mn})),(0,d.W)(mn=>(this.handleErrorWithAlert("fetchConfig",m.MZ.OPEN_CONFIG_FILE,"Fetch Config Failed!",m.rl.CONF_API+"/config/"+an.payload,mn),(0,S.of)({type:m.aU.VOID})))))))),this.showLnConfig=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.SHOW_CONFIG),(0,c.T)(an=>an.payload)),{dispatch:!1}),this.isAuthorized=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.IS_AUTHORIZED),(0,g.Z)(an=>(this.store.dispatch((0,ce.Gd)({payload:{action:"IsAuthorized",status:m.wn.INITIATED}})),this.httpClient.post(m.rl.AUTHENTICATE_API,{authenticateWith:an.payload&&""!==an.payload.trim()?m.U1.PASSWORD:m.U1.JWT,authenticationValue:an.payload&&""!==an.payload.trim()?an.payload:this.sessionService.getItem("token")?this.sessionService.getItem("token"):""}).pipe((0,c.T)(mn=>(this.logger.info(mn),this.store.dispatch((0,ce.Gd)({payload:{action:"IsAuthorized",status:m.wn.COMPLETED}})),this.logger.info("Successfully Authorized!"),{type:m.aU.IS_AUTHORIZED_RES,payload:mn})),(0,d.W)(mn=>(this.handleErrorWithAlert("IsAuthorized",m.MZ.NO_SPINNER,"Authorization Failed",m.rl.AUTHENTICATE_API,mn),(0,S.of)({type:m.aU.IS_AUTHORIZED_RES,payload:"ERROR"})))))))),this.isAuthorizedRes=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.IS_AUTHORIZED_RES),(0,c.T)(an=>an.payload)),{dispatch:!1}),this.authLogin=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.LOGIN),(0,T.E)(this.store.select(G.qv)),(0,g.Z)(([an,mn])=>(this.store.dispatch((0,pi.p1)()),this.store.dispatch((0,ki.gf)()),this.store.dispatch((0,Ki.Hh)()),this.store.dispatch((0,ce.Gd)({payload:{action:"Login",status:m.wn.INITIATED}})),this.httpClient.post(m.rl.AUTHENTICATE_API,{authenticateWith:an.payload.password?m.U1.PASSWORD:m.U1.JWT,authenticationValue:an.payload.password?an.payload.password:this.sessionService.getItem("token")?this.sessionService.getItem("token"):"",twoFAToken:an.payload.twoFAToken?an.payload.twoFAToken:""}).pipe((0,c.T)(qn=>{this.logger.info(qn),this.store.dispatch((0,ce.Gd)({payload:{action:"Login",status:m.wn.COMPLETED}})),this.setLoggedInDetails(an.payload.defaultPassword,qn)}),(0,d.W)(qn=>(this.logger.info("Redirecting to Login Error Page"),this.handleErrorWithoutAlert("Login",m.MZ.NO_SPINNER,qn),+mn.SSO.rtlSSO?this.router.navigate(["/error"],{state:{errorCode:"406",errorMessage:qn.error&&qn.error.error?qn.error.error:"Single Sign On Failed!"}}):this.router.navigate(["./login"],{state:{logoutReason:qn.error&&qn.error.error?qn.error.error:"Single Sign On Failed!"}}),(0,S.of)({type:m.aU.VOID}))))))),{dispatch:!1}),this.tokenVerify=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.VERIFY_TWO_FA),(0,g.Z)(an=>(this.store.dispatch((0,ce.mt)({payload:m.MZ.VERIFY_TOKEN})),this.store.dispatch((0,ce.Gd)({payload:{action:"VerifyToken",status:m.wn.INITIATED}})),this.httpClient.post(m.rl.AUTHENTICATE_API+"/token",{authentication2FA:an.payload.token}).pipe((0,c.T)(mn=>{this.logger.info(mn),this.store.dispatch((0,ce.y0)({payload:m.MZ.VERIFY_TOKEN})),this.store.dispatch((0,ce.Gd)({payload:{action:"VerifyToken",status:m.wn.COMPLETED}})),this.logger.info("Token Successfully Verified!"),this.setLoggedInDetails(!1,an.payload.authResponse)}),(0,d.W)(mn=>(this.handleErrorWithAlert("VerifyToken",m.MZ.VERIFY_TOKEN,"Authorization Failed!",m.rl.AUTHENTICATE_API+"/token",mn),(0,S.of)({type:m.aU.VOID}))))))),{dispatch:!1}),this.logOut=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.LOGOUT),(0,T.E)(this.store.select(G.qv)),(0,g.Z)(([an,mn])=>(this.store.dispatch((0,ce.mt)({payload:m.MZ.LOG_OUT})),mn.SSO&&+mn.SSO.rtlSSO?window.location.href=mn.SSO.logoutRedirectLink:this.router.navigate(["./login"],{state:{logoutReason:an.payload}}),this.sessionService.clearAll(),this.store.dispatch((0,ce.Fl)({payload:{}})),this.store.dispatch((0,ce.y0)({payload:m.MZ.LOG_OUT})),this.logger.info("Logged out from browser"),this.httpClient.get(m.rl.AUTHENTICATE_API+"/logout").pipe((0,c.T)(qn=>{this.logger.info(qn),this.store.dispatch((0,ce.y0)({payload:m.MZ.LOG_OUT})),this.logger.info("Logged out from server")}))))),{dispatch:!1}),this.resetPassword=(0,t.EH)(()=>this.actions.pipe((0,w.Q)(this.unSubs[1]),(0,t.gp)(m.aU.RESET_PASSWORD),(0,g.Z)(an=>(this.store.dispatch((0,ce.Gd)({payload:{action:"ResetPassword",status:m.wn.INITIATED}})),this.httpClient.post(m.rl.AUTHENTICATE_API+"/reset",{currPassword:an.payload.currPassword,newPassword:an.payload.newPassword}).pipe((0,w.Q)(this.unSubs[0]),(0,c.T)(mn=>(this.logger.info(mn),this.store.dispatch((0,ce.Gd)({payload:{action:"ResetPassword",status:m.wn.COMPLETED}})),this.sessionService.setItem("defaultPassword",!1),this.logger.info("Password Reset Successful!"),this.store.dispatch((0,ce.UI)({payload:"Password Reset Successful!"})),this.SetToken(mn.token),{type:m.aU.RESET_PASSWORD_RES,payload:mn.token})),(0,d.W)(mn=>(this.handleErrorWithAlert("ResetPassword",m.MZ.NO_SPINNER,"Password Reset Failed!",m.rl.AUTHENTICATE_API+"/reset",mn),(0,S.of)({type:m.aU.VOID})))))))),this.setSelectedNode=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.SET_SELECTED_NODE),(0,g.Z)(an=>(this.store.dispatch((0,ce.mt)({payload:an.payload.uiMessage})),this.store.dispatch((0,ce.Gd)({payload:{action:"UpdateSelNode",status:m.wn.INITIATED}})),this.httpClient.get(m.rl.CONF_API+"/updateSelNode/"+an.payload.currentLnNode?.index+"/"+an.payload.prevLnNodeIndex).pipe((0,c.T)(mn=>(this.logger.info(mn),this.store.dispatch((0,ce.Gd)({payload:{action:"UpdateSelNode",status:m.wn.COMPLETED}})),this.store.dispatch((0,ce.y0)({payload:an.payload.uiMessage})),this.initializeNode(mn,an.payload.isInitialSetup),{type:m.aU.VOID})),(0,d.W)(mn=>(this.handleErrorWithAlert("UpdateSelNode",an.payload.uiMessage,"Update Selected Node Failed!",m.rl.CONF_API+"/updateSelNode",mn),(0,S.of)({type:m.aU.VOID})))))))),this.fetchFile=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.FETCH_FILE),(0,g.Z)(an=>{this.store.dispatch((0,ce.mt)({payload:m.MZ.DOWNLOAD_BACKUP_FILE})),this.store.dispatch((0,ce.Gd)({payload:{action:"FetchFile",status:m.wn.INITIATED}}));const mn="?channel="+an.payload.channelPoint+(an.payload.path?"&path="+an.payload.path:"");return this.httpClient.get(m.rl.CONF_API+"/file"+mn).pipe((0,c.T)(qn=>(this.store.dispatch((0,ce.Gd)({payload:{action:"FetchFile",status:m.wn.COMPLETED}})),this.store.dispatch((0,ce.y0)({payload:m.MZ.DOWNLOAD_BACKUP_FILE})),{type:m.aU.SHOW_FILE,payload:qn})),(0,d.W)(qn=>(this.handleErrorWithAlert("fetchFile",m.MZ.DOWNLOAD_BACKUP_FILE,"Download Backup File Failed!",m.rl.CONF_API+"/file"+mn,{status:this.commonService.extractErrorNumber(qn),error:{error:this.commonService.extractErrorCode(qn)}}),(0,S.of)({type:m.aU.VOID}))))}))),this.showFile=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(m.aU.SHOW_FILE),(0,c.T)(an=>an.payload)),{dispatch:!1})}initializeNode(Ai,Yi){this.logger.info("Initializing node from RTL Effects.");const zt=Yi?"":"HOME";if(this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("clnUnlocked"),this.sessionService.removeItem("eclUnlocked"),Ai.settings.currencyUnits=[...m.A0,Ai.settings?.currencyUnit?Ai.settings?.currencyUnit:""],this.store.dispatch((0,ce.Tn)({payload:Ai})),this.store.dispatch((0,pi.p1)()),this.store.dispatch((0,ki.gf)()),this.store.dispatch((0,Ki.Hh)()),this.sessionService.getItem("token")){const ji=Ai.lnImplementation?Ai.lnImplementation.toUpperCase():"LND";this.dataService.setLnImplementation(ji);const Me=!(0,i.naY)()&&window.location.origin?window.location.origin+"/rtl/api":m.H$;switch(this.wsService.connectWebSocket(Me?.replace(/^http/,"ws")+m.rl.Web_SOCKET_API,Ai.index?Ai.index.toString():"-1"),ji){case"CLN":this.store.dispatch((0,ki.lg)()),this.store.dispatch((0,ki.Aw)({payload:{loadPage:zt}}));break;case"ECL":this.store.dispatch((0,Ki.lg)()),this.store.dispatch((0,Ki.zR)({payload:{loadPage:zt}}));break;default:this.store.dispatch((0,pi.lg)()),this.store.dispatch((0,pi.Br)({payload:{loadPage:zt}}))}}}SetToken(Ai){Ai?(this.sessionService.setItem("lndUnlocked","true"),this.sessionService.setItem("token",Ai)):(this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("token"))}setLoggedInDetails(Ai,Yi){this.logger.info("Successfully Authorized!"),this.SetToken(Yi.token),this.sessionService.setItem("defaultPassword",Ai),Ai?(this.store.dispatch((0,ce.UI)({payload:"Reset your password."})),this.router.navigate(["/settings/auth"])):this.store.dispatch((0,ce.NU)())}handleErrorWithoutAlert(Ai,Yi,zt){this.logger.error("ERROR IN: "+Ai+"\n"+JSON.stringify(zt)),401===zt.status&&"Login"!==Ai?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,ce.Jh)()),this.store.dispatch((0,ce.ri)({payload:"Authentication Failed: "+JSON.stringify(zt.error)}))):(this.store.dispatch((0,ce.y0)({payload:Yi})),this.store.dispatch((0,ce.Gd)({payload:{action:Ai,status:m.wn.ERROR,statusCode:zt.status?zt.status.toString():"",message:this.commonService.extractErrorMessage(zt)}})))}handleErrorWithAlert(Ai,Yi,zt,ji,Me){if(this.logger.error(Me),0===Me.status&&Me.statusText&&"Unknown Error"===Me.statusText&&(Me={status:400,error:{message:"Unknown Error / CORS Origin Not Allowed"}}),401===Me.status&&"Login"!==Ai)this.logger.info("Redirecting to Login"),this.store.dispatch((0,ce.Jh)()),this.store.dispatch((0,ce.ri)({payload:"Authentication Failed: "+JSON.stringify(Me.error)}));else{this.store.dispatch((0,ce.y0)({payload:Yi}));const mt=this.commonService.extractErrorMessage(Me);this.store.dispatch((0,ce.xO)({payload:{data:{type:"ERROR",alertTitle:zt,message:{code:Me.status?Me.status:"Unknown Error",message:mt,URL:ji},component:Ve.f}}})),this.store.dispatch((0,ce.Gd)({payload:{action:Ai,status:m.wn.ERROR,statusCode:Me.status?Me.status.toString():"",message:mt,URL:ji}}))}}ngOnDestroy(){this.unSubs.forEach(Ai=>{Ai.next(null),Ai.complete()})}static#e=xi=()=>(this.\u0275fac=function(Yi){return new(Yi||Gi)(Q.KVO(t.En),Q.KVO(Ji.Qq),Q.KVO(he.il),Q.KVO($.gP),Q.KVO(Dn.I),Q.KVO(En.Q),Q.KVO(ue.h),Q.KVO(An.u),Q.KVO(P.bZ),Q.KVO(ae.UG),Q.KVO(oe.Ix))},this.\u0275prov=Q.jDH({token:Gi,factory:Gi.\u0275fac}))}return xi(),Gi})()},37640:Ae=>{"use strict";Ae.exports=Error},37953:(Ae,ee,l)=>{"use strict";l.d(ee,{T:()=>t});var i=l(98071);function t(p){return Symbol.asyncIterator&&(0,i.T)(p?.[Symbol.asyncIterator])}},38132:(Ae,ee,l)=>{"use strict";l.d(ee,{Wk:()=>q,iI:()=>Ee,wQ:()=>G});var i=l(10467),t=l(57303),p=l(72200),S=l(60177),c=l(2615),e=l(73664),T=l(17705),g=l(59295),d=l(43694),w=l(21413),m=l(22806),P=l(7673),M=l(70274),j=l(5964),U=l(26365),K=l(31397);let q=(()=>{class ct{router;route;tabIndexAttribute;renderer;el;locationStrategy;reactiveHref=(0,c.vPA)(null);get href(){return(0,g.O8)(this.reactiveHref)}set href(ze){this.reactiveHref.set(ze)}target;queryParams;fragment;queryParamsHandling;state;info;relativeTo;isAnchorElement;subscription;onChanges=new w.B;applicationErrorHandler=(0,c.WQX)(c.ZTf);options=(0,c.WQX)(d.J_,{optional:!0});constructor(ze,Z,J,fe,Ie,ht){this.router=ze,this.route=Z,this.tabIndexAttribute=J,this.renderer=fe,this.el=Ie,this.locationStrategy=ht,this.reactiveHref.set((0,c.WQX)(new T.ES_("href"),{optional:!0}));const li=Ie.nativeElement.tagName?.toLowerCase();this.isAnchorElement="a"===li||"area"===li||!("object"!=typeof customElements||!customElements.get(li)?.observedAttributes?.includes?.("href")),this.isAnchorElement?this.setTabIndexIfNotOnNativeEl("0"):this.subscribeToNavigationEventsIfNecessary()}subscribeToNavigationEventsIfNecessary(){if(void 0!==this.subscription||!this.isAnchorElement)return;let ze=this.preserveFragment;const Z=J=>"merge"===J||"preserve"===J;ze||=Z(this.queryParamsHandling),ze||=!this.queryParamsHandling&&!Z(this.options?.defaultQueryParamsHandling),ze&&(this.subscription=this.router.events.subscribe(J=>{J instanceof d.wF&&this.updateHref()}))}preserveFragment=!1;skipLocationChange=!1;replaceUrl=!1;setTabIndexIfNotOnNativeEl(ze){null!=this.tabIndexAttribute||this.isAnchorElement||this.applyAttributeValue("tabindex",ze)}ngOnChanges(ze){this.isAnchorElement&&(this.updateHref(),this.subscribeToNavigationEventsIfNecessary()),this.onChanges.next(this)}routerLinkInput=null;set routerLink(ze){null==ze?(this.routerLinkInput=null,this.setTabIndexIfNotOnNativeEl(null)):(this.routerLinkInput=(0,d.wO)(ze)||Array.isArray(ze)?ze:[ze],this.setTabIndexIfNotOnNativeEl("0"))}onClick(ze,Z,J,fe,Ie){const ht=this.urlTree;if(null===ht||this.isAnchorElement&&(0!==ze||Z||J||fe||Ie||"string"==typeof this.target&&"_self"!=this.target))return!0;const li={skipLocationChange:this.skipLocationChange,replaceUrl:this.replaceUrl,state:this.state,info:this.info};return this.router.navigateByUrl(ht,li)?.catch(Qt=>{this.applicationErrorHandler(Qt)}),!this.isAnchorElement}ngOnDestroy(){this.subscription?.unsubscribe()}updateHref(){const ze=this.urlTree;this.reactiveHref.set(null!==ze&&this.locationStrategy?this.locationStrategy?.prepareExternalUrl(this.router.serializeUrl(ze))??"":null)}applyAttributeValue(ze,Z){const J=this.renderer,fe=this.el.nativeElement;null!==Z?J.setAttribute(fe,ze,Z):J.removeAttribute(fe,ze)}get urlTree(){return null===this.routerLinkInput?null:(0,d.wO)(this.routerLinkInput)?this.routerLinkInput:this.router.createUrlTree(this.routerLinkInput,{relativeTo:void 0!==this.relativeTo?this.relativeTo:this.route,queryParams:this.queryParams,fragment:this.fragment,queryParamsHandling:this.queryParamsHandling,preserveFragment:this.preserveFragment})}static \u0275fac=function(Z){return new(Z||ct)(e.rXU(d.Ix),e.rXU(d.nX),e.kS0("tabindex"),e.rXU(e.sFG),e.rXU(e.aKT),e.rXU(t.hb))};static \u0275dir=e.FsC({type:ct,selectors:[["","routerLink",""]],hostVars:2,hostBindings:function(Z,J){1&Z&&e.bIt("click",function(Ie){return J.onClick(Ie.button,Ie.ctrlKey,Ie.shiftKey,Ie.altKey,Ie.metaKey)}),2&Z&&e.BMQ("href",J.reactiveHref(),e.n$t)("target",J.target)},inputs:{target:"target",queryParams:"queryParams",fragment:"fragment",queryParamsHandling:"queryParamsHandling",state:"state",info:"info",relativeTo:"relativeTo",preserveFragment:[2,"preserveFragment","preserveFragment",T.L39],skipLocationChange:[2,"skipLocationChange","skipLocationChange",T.L39],replaceUrl:[2,"replaceUrl","replaceUrl",T.L39],routerLink:"routerLink"},features:[e.OA$]})}return ct})(),G=(()=>{class ct{router;element;renderer;cdr;link;links;classes=[];routerEventsSubscription;linkInputChangesSubscription;_isActive=!1;get isActive(){return this._isActive}routerLinkActiveOptions={exact:!1};ariaCurrentWhenActive;isActiveChange=new e.bkB;constructor(ze,Z,J,fe,Ie){this.router=ze,this.element=Z,this.renderer=J,this.cdr=fe,this.link=Ie,this.routerEventsSubscription=ze.events.subscribe(ht=>{ht instanceof d.wF&&this.update()})}ngAfterContentInit(){(0,P.of)(this.links.changes,(0,P.of)(null)).pipe((0,U.U)()).subscribe(ze=>{this.update(),this.subscribeToEachLinkOnChanges()})}subscribeToEachLinkOnChanges(){this.linkInputChangesSubscription?.unsubscribe();const ze=[...this.links.toArray(),this.link].filter(Z=>!!Z).map(Z=>Z.onChanges);this.linkInputChangesSubscription=(0,m.H)(ze).pipe((0,U.U)()).subscribe(Z=>{this._isActive!==this.isLinkActive(this.router)(Z)&&this.update()})}set routerLinkActive(ze){const Z=Array.isArray(ze)?ze:ze.split(" ");this.classes=Z.filter(J=>!!J)}ngOnChanges(ze){this.update()}ngOnDestroy(){this.routerEventsSubscription.unsubscribe(),this.linkInputChangesSubscription?.unsubscribe()}update(){!this.links||!this.router.navigated||queueMicrotask(()=>{const ze=this.hasActiveLinks();this.classes.forEach(Z=>{ze?this.renderer.addClass(this.element.nativeElement,Z):this.renderer.removeClass(this.element.nativeElement,Z)}),ze&&void 0!==this.ariaCurrentWhenActive?this.renderer.setAttribute(this.element.nativeElement,"aria-current",this.ariaCurrentWhenActive.toString()):this.renderer.removeAttribute(this.element.nativeElement,"aria-current"),this._isActive!==ze&&(this._isActive=ze,this.cdr.markForCheck(),this.isActiveChange.emit(ze))})}isLinkActive(ze){const Z=function Q(ct){return!!ct.paths}(this.routerLinkActiveOptions)?this.routerLinkActiveOptions:this.routerLinkActiveOptions.exact||!1;return J=>{const fe=J.urlTree;return!!fe&&ze.isActive(fe,Z)}}hasActiveLinks(){const ze=this.isLinkActive(this.router);return this.link&&ze(this.link)||this.links.some(ze)}static \u0275fac=function(Z){return new(Z||ct)(e.rXU(d.Ix),e.rXU(e.aKT),e.rXU(e.sFG),e.rXU(T.gRc),e.rXU(q,8))};static \u0275dir=e.FsC({type:ct,selectors:[["","routerLinkActive",""]],contentQueries:function(Z,J,fe){if(1&Z&&e.wni(fe,q,5),2&Z){let Ie;e.mGM(Ie=e.lsd())&&(J.links=Ie)}},inputs:{routerLinkActiveOptions:"routerLinkActiveOptions",ariaCurrentWhenActive:"ariaCurrentWhenActive",routerLinkActive:"routerLinkActive"},outputs:{isActiveChange:"isActiveChange"},exportAs:["routerLinkActive"],features:[e.OA$]})}return ct})();class ${}let oe=(()=>{class ct{router;injector;preloadingStrategy;loader;subscription;constructor(ze,Z,J,fe){this.router=ze,this.injector=Z,this.preloadingStrategy=J,this.loader=fe}setUpPreloading(){this.subscription=this.router.events.pipe((0,j.p)(ze=>ze instanceof d.wF),(0,M.H)(()=>this.preload())).subscribe(()=>{})}preload(){return this.processRoutes(this.injector,this.router.config)}ngOnDestroy(){this.subscription&&this.subscription.unsubscribe()}processRoutes(ze,Z){const J=[];for(const fe of Z){fe.providers&&!fe._injector&&(fe._injector=(0,e.Ol2)(fe.providers,ze,`Route: ${fe.path}`));const Ie=fe._injector??ze,ht=fe._loadedInjector??Ie;(fe.loadChildren&&!fe._loadedRoutes&&void 0===fe.canLoad||fe.loadComponent&&!fe._loadedComponent)&&J.push(this.preloadConfig(Ie,fe)),(fe.children||fe._loadedRoutes)&&J.push(this.processRoutes(ht,fe.children??fe._loadedRoutes))}return(0,m.H)(J).pipe((0,U.U)())}preloadConfig(ze,Z){return this.preloadingStrategy.preload(Z,()=>{let J;J=Z.loadChildren&&void 0===Z.canLoad?this.loader.loadChildren(ze,Z):(0,P.of)(null);const fe=J.pipe((0,K.Z)(Ie=>null===Ie?(0,P.of)(void 0):(Z._loadedRoutes=Ie.routes,Z._loadedInjector=Ie.injector,this.processRoutes(Ie.injector??ze,Ie.routes))));if(Z.loadComponent&&!Z._loadedComponent){const Ie=this.loader.loadComponent(ze,Z);return(0,m.H)([fe,Ie]).pipe((0,U.U)())}return fe})}static \u0275fac=function(Z){return new(Z||ct)(c.KVO(d.Ix),c.KVO(c.uvJ),c.KVO($),c.KVO(d.D$))};static \u0275prov=c.jDH({token:ct,factory:ct.\u0275fac,providedIn:"root"})}return ct})();const he=new c.nKC("");let me=(()=>{class ct{urlSerializer;transitions;viewportScroller;zone;options;routerEventsSubscription;scrollEventsSubscription;lastId=0;lastSource=d.wU;restoredId=0;store={};constructor(ze,Z,J,fe,Ie={}){this.urlSerializer=ze,this.transitions=Z,this.viewportScroller=J,this.zone=fe,this.options=Ie,Ie.scrollPositionRestoration||="disabled",Ie.anchorScrolling||="disabled"}init(){"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration("manual"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}createScrollEvents(){return this.transitions.events.subscribe(ze=>{ze instanceof d.Z?(this.store[this.lastId]=this.viewportScroller.getScrollPosition(),this.lastSource=ze.navigationTrigger,this.restoredId=ze.restoredState?ze.restoredState.navigationId:0):ze instanceof d.wF?(this.lastId=ze.id,this.scheduleScrollEvent(ze,this.urlSerializer.parse(ze.urlAfterRedirects).fragment)):ze instanceof d.lW&&ze.code===d.mo.IgnoredSameUrlNavigation&&(this.lastSource=void 0,this.restoredId=0,this.scheduleScrollEvent(ze,this.urlSerializer.parse(ze.url).fragment))})}consumeScrollEvents(){return this.transitions.events.subscribe(ze=>{if(!(ze instanceof d.OY))return;const Z={behavior:"instant"};ze.position?"top"===this.options.scrollPositionRestoration?this.viewportScroller.scrollToPosition([0,0],Z):"enabled"===this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition(ze.position,Z):ze.anchor&&"enabled"===this.options.anchorScrolling?this.viewportScroller.scrollToAnchor(ze.anchor):"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition([0,0])})}scheduleScrollEvent(ze,Z){var J=this;this.zone.runOutsideAngular((0,i.A)(function*(){yield new Promise(fe=>{setTimeout(fe),typeof requestAnimationFrame<"u"&&requestAnimationFrame(fe)}),J.zone.run(()=>{J.transitions.events.next(new d.OY(ze,"popstate"===J.lastSource?J.store[J.restoredId]:null,Z))})}))}ngOnDestroy(){this.routerEventsSubscription?.unsubscribe(),this.scrollEventsSubscription?.unsubscribe()}static \u0275fac=function(Z){e.QTQ()};static \u0275prov=c.jDH({token:ct,factory:ct.\u0275fac})}return ct})();function h(ct,Ce){return{\u0275kind:ct,\u0275providers:Ce}}function r(){const ct=(0,c.WQX)(c.zZn);return Ce=>{const ze=ct.get(e.o8S);if(Ce!==ze.components[0])return;const Z=ct.get(d.Ix),J=ct.get(_);1===ct.get(W)&&Z.initialNavigation(),ct.get(pe,null,{optional:!0})?.setUpPreloading(),ct.get(he,null,{optional:!0})?.init(),Z.resetRootComponentType(ze.componentTypes[0]),J.closed||(J.next(),J.complete(),J.unsubscribe())}}const _=new c.nKC("",{factory:()=>new w.B}),W=new c.nKC("",{providedIn:"root",factory:()=>1}),pe=new c.nKC("");function be(ct){return h(0,[{provide:pe,useExisting:oe},{provide:$,useExisting:ct}])}function Ke(ct){return(0,e._jY)("NgRouterViewTransitions"),h(9,[{provide:d.Pu,useValue:d.Lg},{provide:d.bK,useValue:{skipNextTransition:!!ct?.skipInitialTransition,...ct}}])}const Oe=[t.aZ,{provide:d.Sd,useClass:d.nU},d.Ix,d.Zp,{provide:d.nX,useFactory:function f(ct){return ct.routerState.root},deps:[d.Ix]},d.D$,[]];let Ee=(()=>{class ct{constructor(){}static forRoot(ze,Z){return{ngModule:ct,providers:[Oe,[],{provide:d.bw,multi:!0,useValue:ze},[],Z?.errorHandler?{provide:d.XR,useValue:Z.errorHandler}:[],{provide:d.J_,useValue:Z||{}},Z?.useHash?{provide:t.hb,useClass:p.fw}:{provide:t.hb,useClass:t.Sm},{provide:he,useFactory:()=>{const ct=(0,c.WQX)(S.Xr),Ce=(0,c.WQX)(e.SKi),ze=(0,c.WQX)(d.J_),Z=(0,c.WQX)(d.J2),J=(0,c.WQX)(d.Sd);return ze.scrollOffset&&ct.setOffset(ze.scrollOffset),new me(J,Z,ct,Ce,ze)}},Z?.preloadingStrategy?be(Z.preloadingStrategy).\u0275providers:[],Z?.initialNavigation?lt(Z):[],Z?.bindToComponentInputs?h(8,[d.tD,{provide:d.c1,useExisting:d.tD}]).\u0275providers:[],Z?.enableViewTransitions?Ke().\u0275providers:[],[{provide:Pe,useFactory:r},{provide:e.iLQ,multi:!0,useExisting:Pe}]]}}static forChild(ze){return{ngModule:ct,providers:[{provide:d.bw,multi:!0,useValue:ze}]}}static \u0275fac=function(Z){return new(Z||ct)};static \u0275mod=e.$C({type:ct});static \u0275inj=c.G2t({})}return ct})();function lt(ct){return["disabled"===ct.initialNavigation?h(3,[(0,e.phd)(()=>{(0,c.WQX)(d.Ix).setUpLocationChangeListener()}),{provide:W,useValue:2}]).\u0275providers:[],"enabledBlocking"===ct.initialNavigation?h(2,[{provide:e.tvf,useValue:!0},{provide:W,useValue:0},(0,e.phd)(()=>{const Ce=(0,c.WQX)(c.zZn);return Ce.get(t.hj,Promise.resolve()).then(()=>new Promise(Z=>{const J=Ce.get(d.Ix),fe=Ce.get(_);(0,d.gk)(J,()=>{Z(!0)}),Ce.get(d.J2).afterPreactivation=()=>(Z(!0),fe.closed?(0,P.of)(void 0):fe),J.initialNavigation()}))})]).\u0275providers:[]]}const Pe=new c.nKC("")},38280:function(Ae,ee,l){!function(i,t){"use strict";function p(D,n){if(!D)throw new Error(n||"Assertion failed")}function S(D,n){D.super_=n;var o=function(){};o.prototype=n.prototype,D.prototype=new o,D.prototype.constructor=D}function c(D,n,o){if(c.isBN(D))return D;this.negative=0,this.words=null,this.length=0,this.red=null,null!==D&&(("le"===n||"be"===n)&&(o=n,n=10),this._init(D||0,n||10,o||"be"))}var e;"object"==typeof i?i.exports=c:t.BN=c,c.BN=c,c.wordSize=26;try{e=typeof window<"u"&&typeof window.Buffer<"u"?window.Buffer:l(66089).Buffer}catch{}function T(D,n){var o=D.charCodeAt(n);return o>=65&&o<=70?o-55:o>=97&&o<=102?o-87:o-48&15}function g(D,n,o){var f=T(D,o);return o-1>=n&&(f|=T(D,o-1)<<4),f}function d(D,n,o,f){for(var h=0,b=Math.min(D.length,o),A=n;A=49?k-49+10:k>=17?k-17+10:k}return h}c.isBN=function(n){return n instanceof c||null!==n&&"object"==typeof n&&n.constructor.wordSize===c.wordSize&&Array.isArray(n.words)},c.max=function(n,o){return n.cmp(o)>0?n:o},c.min=function(n,o){return n.cmp(o)<0?n:o},c.prototype._init=function(n,o,f){if("number"==typeof n)return this._initNumber(n,o,f);if("object"==typeof n)return this._initArray(n,o,f);"hex"===o&&(o=16),p(o===(0|o)&&o>=2&&o<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[b]|=(A=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-k&67108863,(k+=24)>=26&&(k-=26,b++);else if("le"===f)for(h=0,b=0;h>>26-k&67108863,(k+=24)>=26&&(k-=26,b++);return this.strip()},c.prototype._parseHex=function(n,o,f){this.length=Math.ceil((n.length-o)/6),this.words=new Array(this.length);for(var h=0;h=o;h-=2)k=g(n,o,h)<=18?(b-=18,this.words[A+=1]|=k>>>26):b+=8;else for(h=(n.length-o)%2==0?o+1:o;h=18?(b-=18,this.words[A+=1]|=k>>>26):b+=8;this.strip()},c.prototype._parseBase=function(n,o,f){this.words=[0],this.length=1;for(var h=0,b=1;b<=67108863;b*=o)h++;h--,b=b/o|0;for(var A=n.length-f,k=A%h,x=Math.min(A,A-k)+f,r=0,_=f;_1&&0===this.words[this.length-1];)this.length--;return this._normSign()},c.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},c.prototype.inspect=function(){return(this.red?""};var w=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],m=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],P=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function j(D,n,o){o.negative=n.negative^D.negative;var f=D.length+n.length|0;o.length=f,f=f-1|0;var h=0|D.words[0],b=0|n.words[0],A=h*b,x=A/67108864|0;o.words[0]=67108863&A;for(var r=1;r>>26,W=67108863&x,I=Math.min(r,n.length-1),B=Math.max(0,r-D.length+1);B<=I;B++)_+=(A=(h=0|D.words[r-B|0])*(b=0|n.words[B])+W)/67108864|0,W=67108863&A;o.words[r]=0|W,x=0|_}return 0!==x?o.words[r]=0|x:o.length--,o.strip()}c.prototype.toString=function(n,o){var f;if(o=0|o||1,16===(n=n||10)||"hex"===n){f="";for(var h=0,b=0,A=0;A>>24-h&16777215,(h+=2)>=26&&(h-=26,A--),f=0!==b||A!==this.length-1?w[6-x.length]+x+f:x+f}for(0!==b&&(f=b.toString(16)+f);f.length%o!==0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}if(n===(0|n)&&n>=2&&n<=36){var r=m[n],_=P[n];f="";var W=this.clone();for(W.negative=0;!W.isZero();){var I=W.modn(_).toString(n);f=(W=W.idivn(_)).isZero()?I+f:w[r-I.length]+I+f}for(this.isZero()&&(f="0"+f);f.length%o!==0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}p(!1,"Base should be between 2 and 36")},c.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&p(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},c.prototype.toJSON=function(){return this.toString(16)},c.prototype.toBuffer=function(n,o){return p(typeof e<"u"),this.toArrayLike(e,n,o)},c.prototype.toArray=function(n,o){return this.toArrayLike(Array,n,o)},c.prototype.toArrayLike=function(n,o,f){var h=this.byteLength(),b=f||Math.max(1,h);p(h<=b,"byte array longer than desired length"),p(b>0,"Requested array length <= 0"),this.strip();var x,r,A="le"===o,k=new n(b),_=this.clone();if(A){for(r=0;!_.isZero();r++)x=_.andln(255),_.iushrn(8),k[r]=x;for(;r=4096&&(f+=13,o>>>=13),o>=64&&(f+=7,o>>>=7),o>=8&&(f+=4,o>>>=4),o>=2&&(f+=2,o>>>=2),f+o},c.prototype._zeroBits=function(n){if(0===n)return 26;var o=n,f=0;return!(8191&o)&&(f+=13,o>>>=13),!(127&o)&&(f+=7,o>>>=7),!(15&o)&&(f+=4,o>>>=4),!(3&o)&&(f+=2,o>>>=2),!(1&o)&&f++,f},c.prototype.bitLength=function(){var o=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+o},c.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,o=0;on.length?this.clone().ior(n):n.clone().ior(this)},c.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},c.prototype.iuand=function(n){var o;o=this.length>n.length?n:this;for(var f=0;fn.length?this.clone().iand(n):n.clone().iand(this)},c.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},c.prototype.iuxor=function(n){var o,f;this.length>n.length?(o=this,f=n):(o=n,f=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},c.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},c.prototype.inotn=function(n){p("number"==typeof n&&n>=0);var o=0|Math.ceil(n/26),f=n%26;this._expand(o),f>0&&o--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-f),this.strip()},c.prototype.notn=function(n){return this.clone().inotn(n)},c.prototype.setn=function(n,o){p("number"==typeof n&&n>=0);var f=n/26|0,h=n%26;return this._expand(f+1),this.words[f]=o?this.words[f]|1<n.length?(f=this,h=n):(f=n,h=this);for(var b=0,A=0;A>>26;for(;0!==b&&A>>26;if(this.length=f.length,0!==b)this.words[this.length]=b,this.length++;else if(f!==this)for(;An.length?this.clone().iadd(n):n.clone().iadd(this)},c.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var o=this.iadd(n);return n.negative=1,o._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,b,f=this.cmp(n);if(0===f)return this.negative=0,this.length=1,this.words[0]=0,this;f>0?(h=this,b=n):(h=n,b=this);for(var A=0,k=0;k>26,this.words[k]=67108863&o;for(;0!==A&&k>26,this.words[k]=67108863&o;if(0===A&&k>>13,re=0|h[1],pe=8191&re,be=re>>>13,Be=0|h[2],_e=8191&Be,ye=Be>>>13,Le=0|h[3],Ke=8191&Le,ge=Le>>>13,ve=0|h[4],Oe=8191&ve,Ee=ve>>>13,dt=0|h[5],nt=8191&dt,Ct=dt>>>13,Mt=0|h[6],lt=8191&Mt,Pe=Mt>>>13,Ht=0|h[7],ct=8191&Ht,Ce=Ht>>>13,ze=0|h[8],Z=8191&ze,J=ze>>>13,fe=0|h[9],Ie=8191&fe,ht=fe>>>13,li=0|b[0],Qt=8191&li,di=li>>>13,kt=0|b[1],Rt=8191&kt,le=kt>>>13,te=0|b[2],ce=8191&te,se=te>>>13,ke=0|b[3],Ue=8191&ke,Ne=ke>>>13,Kt=0|b[4],yt=8191&Kt,Vt=Kt>>>13,Zt=0|b[5],ti=8191&Zt,Ye=Zt>>>13,Nt=0|b[6],Et=8191&Nt,Jt=Nt>>>13,qe=0|b[7],$e=8191&qe,tt=qe>>>13,vi=0|b[8],ei=8191&vi,ci=vi>>>13,Hi=0|b[9],oi=8191&Hi,ui=Hi>>>13;f.negative=n.negative^o.negative,f.length=19;var ln=(k+(x=Math.imul(I,Qt))|0)+((8191&(r=(r=Math.imul(I,di))+Math.imul(B,Qt)|0))<<13)|0;k=((_=Math.imul(B,di))+(r>>>13)|0)+(ln>>>26)|0,ln&=67108863,x=Math.imul(pe,Qt),r=(r=Math.imul(pe,di))+Math.imul(be,Qt)|0,_=Math.imul(be,di);var nn=(k+(x=x+Math.imul(I,Rt)|0)|0)+((8191&(r=(r=r+Math.imul(I,le)|0)+Math.imul(B,Rt)|0))<<13)|0;k=((_=_+Math.imul(B,le)|0)+(r>>>13)|0)+(nn>>>26)|0,nn&=67108863,x=Math.imul(_e,Qt),r=(r=Math.imul(_e,di))+Math.imul(ye,Qt)|0,_=Math.imul(ye,di),x=x+Math.imul(pe,Rt)|0,r=(r=r+Math.imul(pe,le)|0)+Math.imul(be,Rt)|0,_=_+Math.imul(be,le)|0;var dn=(k+(x=x+Math.imul(I,ce)|0)|0)+((8191&(r=(r=r+Math.imul(I,se)|0)+Math.imul(B,ce)|0))<<13)|0;k=((_=_+Math.imul(B,se)|0)+(r>>>13)|0)+(dn>>>26)|0,dn&=67108863,x=Math.imul(Ke,Qt),r=(r=Math.imul(Ke,di))+Math.imul(ge,Qt)|0,_=Math.imul(ge,di),x=x+Math.imul(_e,Rt)|0,r=(r=r+Math.imul(_e,le)|0)+Math.imul(ye,Rt)|0,_=_+Math.imul(ye,le)|0,x=x+Math.imul(pe,ce)|0,r=(r=r+Math.imul(pe,se)|0)+Math.imul(be,ce)|0,_=_+Math.imul(be,se)|0;var zn=(k+(x=x+Math.imul(I,Ue)|0)|0)+((8191&(r=(r=r+Math.imul(I,Ne)|0)+Math.imul(B,Ue)|0))<<13)|0;k=((_=_+Math.imul(B,Ne)|0)+(r>>>13)|0)+(zn>>>26)|0,zn&=67108863,x=Math.imul(Oe,Qt),r=(r=Math.imul(Oe,di))+Math.imul(Ee,Qt)|0,_=Math.imul(Ee,di),x=x+Math.imul(Ke,Rt)|0,r=(r=r+Math.imul(Ke,le)|0)+Math.imul(ge,Rt)|0,_=_+Math.imul(ge,le)|0,x=x+Math.imul(_e,ce)|0,r=(r=r+Math.imul(_e,se)|0)+Math.imul(ye,ce)|0,_=_+Math.imul(ye,se)|0,x=x+Math.imul(pe,Ue)|0,r=(r=r+Math.imul(pe,Ne)|0)+Math.imul(be,Ue)|0,_=_+Math.imul(be,Ne)|0;var It=(k+(x=x+Math.imul(I,yt)|0)|0)+((8191&(r=(r=r+Math.imul(I,Vt)|0)+Math.imul(B,yt)|0))<<13)|0;k=((_=_+Math.imul(B,Vt)|0)+(r>>>13)|0)+(It>>>26)|0,It&=67108863,x=Math.imul(nt,Qt),r=(r=Math.imul(nt,di))+Math.imul(Ct,Qt)|0,_=Math.imul(Ct,di),x=x+Math.imul(Oe,Rt)|0,r=(r=r+Math.imul(Oe,le)|0)+Math.imul(Ee,Rt)|0,_=_+Math.imul(Ee,le)|0,x=x+Math.imul(Ke,ce)|0,r=(r=r+Math.imul(Ke,se)|0)+Math.imul(ge,ce)|0,_=_+Math.imul(ge,se)|0,x=x+Math.imul(_e,Ue)|0,r=(r=r+Math.imul(_e,Ne)|0)+Math.imul(ye,Ue)|0,_=_+Math.imul(ye,Ne)|0,x=x+Math.imul(pe,yt)|0,r=(r=r+Math.imul(pe,Vt)|0)+Math.imul(be,yt)|0,_=_+Math.imul(be,Vt)|0;var Tt=(k+(x=x+Math.imul(I,ti)|0)|0)+((8191&(r=(r=r+Math.imul(I,Ye)|0)+Math.imul(B,ti)|0))<<13)|0;k=((_=_+Math.imul(B,Ye)|0)+(r>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,x=Math.imul(lt,Qt),r=(r=Math.imul(lt,di))+Math.imul(Pe,Qt)|0,_=Math.imul(Pe,di),x=x+Math.imul(nt,Rt)|0,r=(r=r+Math.imul(nt,le)|0)+Math.imul(Ct,Rt)|0,_=_+Math.imul(Ct,le)|0,x=x+Math.imul(Oe,ce)|0,r=(r=r+Math.imul(Oe,se)|0)+Math.imul(Ee,ce)|0,_=_+Math.imul(Ee,se)|0,x=x+Math.imul(Ke,Ue)|0,r=(r=r+Math.imul(Ke,Ne)|0)+Math.imul(ge,Ue)|0,_=_+Math.imul(ge,Ne)|0,x=x+Math.imul(_e,yt)|0,r=(r=r+Math.imul(_e,Vt)|0)+Math.imul(ye,yt)|0,_=_+Math.imul(ye,Vt)|0,x=x+Math.imul(pe,ti)|0,r=(r=r+Math.imul(pe,Ye)|0)+Math.imul(be,ti)|0,_=_+Math.imul(be,Ye)|0;var Ze=(k+(x=x+Math.imul(I,Et)|0)|0)+((8191&(r=(r=r+Math.imul(I,Jt)|0)+Math.imul(B,Et)|0))<<13)|0;k=((_=_+Math.imul(B,Jt)|0)+(r>>>13)|0)+(Ze>>>26)|0,Ze&=67108863,x=Math.imul(ct,Qt),r=(r=Math.imul(ct,di))+Math.imul(Ce,Qt)|0,_=Math.imul(Ce,di),x=x+Math.imul(lt,Rt)|0,r=(r=r+Math.imul(lt,le)|0)+Math.imul(Pe,Rt)|0,_=_+Math.imul(Pe,le)|0,x=x+Math.imul(nt,ce)|0,r=(r=r+Math.imul(nt,se)|0)+Math.imul(Ct,ce)|0,_=_+Math.imul(Ct,se)|0,x=x+Math.imul(Oe,Ue)|0,r=(r=r+Math.imul(Oe,Ne)|0)+Math.imul(Ee,Ue)|0,_=_+Math.imul(Ee,Ne)|0,x=x+Math.imul(Ke,yt)|0,r=(r=r+Math.imul(Ke,Vt)|0)+Math.imul(ge,yt)|0,_=_+Math.imul(ge,Vt)|0,x=x+Math.imul(_e,ti)|0,r=(r=r+Math.imul(_e,Ye)|0)+Math.imul(ye,ti)|0,_=_+Math.imul(ye,Ye)|0,x=x+Math.imul(pe,Et)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(be,Et)|0,_=_+Math.imul(be,Jt)|0;var Ve=(k+(x=x+Math.imul(I,$e)|0)|0)+((8191&(r=(r=r+Math.imul(I,tt)|0)+Math.imul(B,$e)|0))<<13)|0;k=((_=_+Math.imul(B,tt)|0)+(r>>>13)|0)+(Ve>>>26)|0,Ve&=67108863,x=Math.imul(Z,Qt),r=(r=Math.imul(Z,di))+Math.imul(J,Qt)|0,_=Math.imul(J,di),x=x+Math.imul(ct,Rt)|0,r=(r=r+Math.imul(ct,le)|0)+Math.imul(Ce,Rt)|0,_=_+Math.imul(Ce,le)|0,x=x+Math.imul(lt,ce)|0,r=(r=r+Math.imul(lt,se)|0)+Math.imul(Pe,ce)|0,_=_+Math.imul(Pe,se)|0,x=x+Math.imul(nt,Ue)|0,r=(r=r+Math.imul(nt,Ne)|0)+Math.imul(Ct,Ue)|0,_=_+Math.imul(Ct,Ne)|0,x=x+Math.imul(Oe,yt)|0,r=(r=r+Math.imul(Oe,Vt)|0)+Math.imul(Ee,yt)|0,_=_+Math.imul(Ee,Vt)|0,x=x+Math.imul(Ke,ti)|0,r=(r=r+Math.imul(Ke,Ye)|0)+Math.imul(ge,ti)|0,_=_+Math.imul(ge,Ye)|0,x=x+Math.imul(_e,Et)|0,r=(r=r+Math.imul(_e,Jt)|0)+Math.imul(ye,Et)|0,_=_+Math.imul(ye,Jt)|0,x=x+Math.imul(pe,$e)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(be,$e)|0,_=_+Math.imul(be,tt)|0;var Fe=(k+(x=x+Math.imul(I,ei)|0)|0)+((8191&(r=(r=r+Math.imul(I,ci)|0)+Math.imul(B,ei)|0))<<13)|0;k=((_=_+Math.imul(B,ci)|0)+(r>>>13)|0)+(Fe>>>26)|0,Fe&=67108863,x=Math.imul(Ie,Qt),r=(r=Math.imul(Ie,di))+Math.imul(ht,Qt)|0,_=Math.imul(ht,di),x=x+Math.imul(Z,Rt)|0,r=(r=r+Math.imul(Z,le)|0)+Math.imul(J,Rt)|0,_=_+Math.imul(J,le)|0,x=x+Math.imul(ct,ce)|0,r=(r=r+Math.imul(ct,se)|0)+Math.imul(Ce,ce)|0,_=_+Math.imul(Ce,se)|0,x=x+Math.imul(lt,Ue)|0,r=(r=r+Math.imul(lt,Ne)|0)+Math.imul(Pe,Ue)|0,_=_+Math.imul(Pe,Ne)|0,x=x+Math.imul(nt,yt)|0,r=(r=r+Math.imul(nt,Vt)|0)+Math.imul(Ct,yt)|0,_=_+Math.imul(Ct,Vt)|0,x=x+Math.imul(Oe,ti)|0,r=(r=r+Math.imul(Oe,Ye)|0)+Math.imul(Ee,ti)|0,_=_+Math.imul(Ee,Ye)|0,x=x+Math.imul(Ke,Et)|0,r=(r=r+Math.imul(Ke,Jt)|0)+Math.imul(ge,Et)|0,_=_+Math.imul(ge,Jt)|0,x=x+Math.imul(_e,$e)|0,r=(r=r+Math.imul(_e,tt)|0)+Math.imul(ye,$e)|0,_=_+Math.imul(ye,tt)|0,x=x+Math.imul(pe,ei)|0,r=(r=r+Math.imul(pe,ci)|0)+Math.imul(be,ei)|0,_=_+Math.imul(be,ci)|0;var it=(k+(x=x+Math.imul(I,oi)|0)|0)+((8191&(r=(r=r+Math.imul(I,ui)|0)+Math.imul(B,oi)|0))<<13)|0;k=((_=_+Math.imul(B,ui)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,x=Math.imul(Ie,Rt),r=(r=Math.imul(Ie,le))+Math.imul(ht,Rt)|0,_=Math.imul(ht,le),x=x+Math.imul(Z,ce)|0,r=(r=r+Math.imul(Z,se)|0)+Math.imul(J,ce)|0,_=_+Math.imul(J,se)|0,x=x+Math.imul(ct,Ue)|0,r=(r=r+Math.imul(ct,Ne)|0)+Math.imul(Ce,Ue)|0,_=_+Math.imul(Ce,Ne)|0,x=x+Math.imul(lt,yt)|0,r=(r=r+Math.imul(lt,Vt)|0)+Math.imul(Pe,yt)|0,_=_+Math.imul(Pe,Vt)|0,x=x+Math.imul(nt,ti)|0,r=(r=r+Math.imul(nt,Ye)|0)+Math.imul(Ct,ti)|0,_=_+Math.imul(Ct,Ye)|0,x=x+Math.imul(Oe,Et)|0,r=(r=r+Math.imul(Oe,Jt)|0)+Math.imul(Ee,Et)|0,_=_+Math.imul(Ee,Jt)|0,x=x+Math.imul(Ke,$e)|0,r=(r=r+Math.imul(Ke,tt)|0)+Math.imul(ge,$e)|0,_=_+Math.imul(ge,tt)|0,x=x+Math.imul(_e,ei)|0,r=(r=r+Math.imul(_e,ci)|0)+Math.imul(ye,ei)|0,_=_+Math.imul(ye,ci)|0;var bt=(k+(x=x+Math.imul(pe,oi)|0)|0)+((8191&(r=(r=r+Math.imul(pe,ui)|0)+Math.imul(be,oi)|0))<<13)|0;k=((_=_+Math.imul(be,ui)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863,x=Math.imul(Ie,ce),r=(r=Math.imul(Ie,se))+Math.imul(ht,ce)|0,_=Math.imul(ht,se),x=x+Math.imul(Z,Ue)|0,r=(r=r+Math.imul(Z,Ne)|0)+Math.imul(J,Ue)|0,_=_+Math.imul(J,Ne)|0,x=x+Math.imul(ct,yt)|0,r=(r=r+Math.imul(ct,Vt)|0)+Math.imul(Ce,yt)|0,_=_+Math.imul(Ce,Vt)|0,x=x+Math.imul(lt,ti)|0,r=(r=r+Math.imul(lt,Ye)|0)+Math.imul(Pe,ti)|0,_=_+Math.imul(Pe,Ye)|0,x=x+Math.imul(nt,Et)|0,r=(r=r+Math.imul(nt,Jt)|0)+Math.imul(Ct,Et)|0,_=_+Math.imul(Ct,Jt)|0,x=x+Math.imul(Oe,$e)|0,r=(r=r+Math.imul(Oe,tt)|0)+Math.imul(Ee,$e)|0,_=_+Math.imul(Ee,tt)|0,x=x+Math.imul(Ke,ei)|0,r=(r=r+Math.imul(Ke,ci)|0)+Math.imul(ge,ei)|0,_=_+Math.imul(ge,ci)|0;var ut=(k+(x=x+Math.imul(_e,oi)|0)|0)+((8191&(r=(r=r+Math.imul(_e,ui)|0)+Math.imul(ye,oi)|0))<<13)|0;k=((_=_+Math.imul(ye,ui)|0)+(r>>>13)|0)+(ut>>>26)|0,ut&=67108863,x=Math.imul(Ie,Ue),r=(r=Math.imul(Ie,Ne))+Math.imul(ht,Ue)|0,_=Math.imul(ht,Ne),x=x+Math.imul(Z,yt)|0,r=(r=r+Math.imul(Z,Vt)|0)+Math.imul(J,yt)|0,_=_+Math.imul(J,Vt)|0,x=x+Math.imul(ct,ti)|0,r=(r=r+Math.imul(ct,Ye)|0)+Math.imul(Ce,ti)|0,_=_+Math.imul(Ce,Ye)|0,x=x+Math.imul(lt,Et)|0,r=(r=r+Math.imul(lt,Jt)|0)+Math.imul(Pe,Et)|0,_=_+Math.imul(Pe,Jt)|0,x=x+Math.imul(nt,$e)|0,r=(r=r+Math.imul(nt,tt)|0)+Math.imul(Ct,$e)|0,_=_+Math.imul(Ct,tt)|0,x=x+Math.imul(Oe,ei)|0,r=(r=r+Math.imul(Oe,ci)|0)+Math.imul(Ee,ei)|0,_=_+Math.imul(Ee,ci)|0;var jt=(k+(x=x+Math.imul(Ke,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Ke,ui)|0)+Math.imul(ge,oi)|0))<<13)|0;k=((_=_+Math.imul(ge,ui)|0)+(r>>>13)|0)+(jt>>>26)|0,jt&=67108863,x=Math.imul(Ie,yt),r=(r=Math.imul(Ie,Vt))+Math.imul(ht,yt)|0,_=Math.imul(ht,Vt),x=x+Math.imul(Z,ti)|0,r=(r=r+Math.imul(Z,Ye)|0)+Math.imul(J,ti)|0,_=_+Math.imul(J,Ye)|0,x=x+Math.imul(ct,Et)|0,r=(r=r+Math.imul(ct,Jt)|0)+Math.imul(Ce,Et)|0,_=_+Math.imul(Ce,Jt)|0,x=x+Math.imul(lt,$e)|0,r=(r=r+Math.imul(lt,tt)|0)+Math.imul(Pe,$e)|0,_=_+Math.imul(Pe,tt)|0,x=x+Math.imul(nt,ei)|0,r=(r=r+Math.imul(nt,ci)|0)+Math.imul(Ct,ei)|0,_=_+Math.imul(Ct,ci)|0;var ai=(k+(x=x+Math.imul(Oe,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Oe,ui)|0)+Math.imul(Ee,oi)|0))<<13)|0;k=((_=_+Math.imul(Ee,ui)|0)+(r>>>13)|0)+(ai>>>26)|0,ai&=67108863,x=Math.imul(Ie,ti),r=(r=Math.imul(Ie,Ye))+Math.imul(ht,ti)|0,_=Math.imul(ht,Ye),x=x+Math.imul(Z,Et)|0,r=(r=r+Math.imul(Z,Jt)|0)+Math.imul(J,Et)|0,_=_+Math.imul(J,Jt)|0,x=x+Math.imul(ct,$e)|0,r=(r=r+Math.imul(ct,tt)|0)+Math.imul(Ce,$e)|0,_=_+Math.imul(Ce,tt)|0,x=x+Math.imul(lt,ei)|0,r=(r=r+Math.imul(lt,ci)|0)+Math.imul(Pe,ei)|0,_=_+Math.imul(Pe,ci)|0;var pi=(k+(x=x+Math.imul(nt,oi)|0)|0)+((8191&(r=(r=r+Math.imul(nt,ui)|0)+Math.imul(Ct,oi)|0))<<13)|0;k=((_=_+Math.imul(Ct,ui)|0)+(r>>>13)|0)+(pi>>>26)|0,pi&=67108863,x=Math.imul(Ie,Et),r=(r=Math.imul(Ie,Jt))+Math.imul(ht,Et)|0,_=Math.imul(ht,Jt),x=x+Math.imul(Z,$e)|0,r=(r=r+Math.imul(Z,tt)|0)+Math.imul(J,$e)|0,_=_+Math.imul(J,tt)|0,x=x+Math.imul(ct,ei)|0,r=(r=r+Math.imul(ct,ci)|0)+Math.imul(Ce,ei)|0,_=_+Math.imul(Ce,ci)|0;var ki=(k+(x=x+Math.imul(lt,oi)|0)|0)+((8191&(r=(r=r+Math.imul(lt,ui)|0)+Math.imul(Pe,oi)|0))<<13)|0;k=((_=_+Math.imul(Pe,ui)|0)+(r>>>13)|0)+(ki>>>26)|0,ki&=67108863,x=Math.imul(Ie,$e),r=(r=Math.imul(Ie,tt))+Math.imul(ht,$e)|0,_=Math.imul(ht,tt),x=x+Math.imul(Z,ei)|0,r=(r=r+Math.imul(Z,ci)|0)+Math.imul(J,ei)|0,_=_+Math.imul(J,ci)|0;var Ki=(k+(x=x+Math.imul(ct,oi)|0)|0)+((8191&(r=(r=r+Math.imul(ct,ui)|0)+Math.imul(Ce,oi)|0))<<13)|0;k=((_=_+Math.imul(Ce,ui)|0)+(r>>>13)|0)+(Ki>>>26)|0,Ki&=67108863,x=Math.imul(Ie,ei),r=(r=Math.imul(Ie,ci))+Math.imul(ht,ei)|0,_=Math.imul(ht,ci);var Ji=(k+(x=x+Math.imul(Z,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Z,ui)|0)+Math.imul(J,oi)|0))<<13)|0;k=((_=_+Math.imul(J,ui)|0)+(r>>>13)|0)+(Ji>>>26)|0,Ji&=67108863;var Dn=(k+(x=Math.imul(Ie,oi))|0)+((8191&(r=(r=Math.imul(Ie,ui))+Math.imul(ht,oi)|0))<<13)|0;return k=((_=Math.imul(ht,ui))+(r>>>13)|0)+(Dn>>>26)|0,Dn&=67108863,A[0]=ln,A[1]=nn,A[2]=dn,A[3]=zn,A[4]=It,A[5]=Tt,A[6]=Ze,A[7]=Ve,A[8]=Fe,A[9]=it,A[10]=bt,A[11]=ut,A[12]=jt,A[13]=ai,A[14]=pi,A[15]=ki,A[16]=Ki,A[17]=Ji,A[18]=Dn,0!==k&&(A[19]=k,f.length++),f};function q(D,n,o){return(new G).mulp(D,n,o)}function G(D,n){this.x=D,this.y=n}Math.imul||(U=j),c.prototype.mulTo=function(n,o){var f,h=this.length+n.length;return f=10===this.length&&10===n.length?U(this,n,o):h<63?j(this,n,o):h<1024?function K(D,n,o){o.negative=n.negative^D.negative,o.length=D.length+n.length;for(var f=0,h=0,b=0;b>>26)|0)>>>26,A&=67108863}o.words[b]=k,f=A,A=h}return 0!==f?o.words[b]=f:o.length--,o.strip()}(this,n,o):q(this,n,o),f},G.prototype.makeRBT=function(n){for(var o=new Array(n),f=c.prototype._countBits(n)-1,h=0;h>=1;return h},G.prototype.permute=function(n,o,f,h,b,A){for(var k=0;k>>=1)b++;return 1<>>=13),b>>>=13;for(A=2*o;A>=26,o+=h/67108864|0,o+=b>>>26,this.words[f]=67108863&b}return 0!==o&&(this.words[f]=o,this.length++),this.length=0===n?1:this.length,this},c.prototype.muln=function(n){return this.clone().imuln(n)},c.prototype.sqr=function(){return this.mul(this)},c.prototype.isqr=function(){return this.imul(this.clone())},c.prototype.pow=function(n){var o=function M(D){for(var n=new Array(D.bitLength()),o=0;o>>h}return n}(n);if(0===o.length)return new c(1);for(var f=this,h=0;h=0);var b,o=n%26,f=(n-o)/26,h=67108863>>>26-o<<26-o;if(0!==o){var A=0;for(b=0;b>>26-o}A&&(this.words[b]=A,this.length++)}if(0!==f){for(b=this.length-1;b>=0;b--)this.words[b+f]=this.words[b];for(b=0;b=0),h=o?(o-o%26)/26:0;var b=n%26,A=Math.min((n-b)/26,this.length),k=67108863^67108863>>>b<A)for(this.length-=A,r=0;r=0&&(0!==_||r>=h);r--){var W=0|this.words[r];this.words[r]=_<<26-b|W>>>b,_=W&k}return x&&0!==_&&(x.words[x.length++]=_),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},c.prototype.ishrn=function(n,o,f){return p(0===this.negative),this.iushrn(n,o,f)},c.prototype.shln=function(n){return this.clone().ishln(n)},c.prototype.ushln=function(n){return this.clone().iushln(n)},c.prototype.shrn=function(n){return this.clone().ishrn(n)},c.prototype.ushrn=function(n){return this.clone().iushrn(n)},c.prototype.testn=function(n){p("number"==typeof n&&n>=0);var o=n%26,f=(n-o)/26;return!(this.length<=f||!(this.words[f]&1<=0);var o=n%26,f=(n-o)/26;return p(0===this.negative,"imaskn works only with positive numbers"),this.length<=f?this:(0!==o&&f++,this.length=Math.min(f,this.length),0!==o&&(this.words[this.length-1]&=67108863^67108863>>>o<=67108864;o++)this.words[o]-=67108864,o===this.length-1?this.words[o+1]=1:this.words[o+1]++;return this.length=Math.max(this.length,o+1),this},c.prototype.isubn=function(n){if(p("number"==typeof n),p(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var o=0;o>26)-(x/67108864|0),this.words[b+f]=67108863&A}for(;b>26,this.words[b+f]=67108863&A;if(0===k)return this.strip();for(p(-1===k),k=0,b=0;b>26,this.words[b]=67108863&A;return this.negative=1,this.strip()},c.prototype._wordDiv=function(n,o){var f,h=this.clone(),b=n,A=0|b.words[b.length-1];0!=(f=26-this._countBits(A))&&(b=b.ushln(f),h.iushln(f),A=0|b.words[b.length-1]);var r,x=h.length-b.length;if("mod"!==o){(r=new c(null)).length=x+1,r.words=new Array(r.length);for(var _=0;_=0;I--){var B=67108864*(0|h.words[b.length+I])+(0|h.words[b.length+I-1]);for(B=Math.min(B/A|0,67108863),h._ishlnsubmul(b,B,I);0!==h.negative;)B--,h.negative=0,h._ishlnsubmul(b,1,I),h.isZero()||(h.negative^=1);r&&(r.words[I]=B)}return r&&r.strip(),h.strip(),"div"!==o&&0!==f&&h.iushrn(f),{div:r||null,mod:h}},c.prototype.divmod=function(n,o,f){return p(!n.isZero()),this.isZero()?{div:new c(0),mod:new c(0)}:0!==this.negative&&0===n.negative?(A=this.neg().divmod(n,o),"mod"!==o&&(h=A.div.neg()),"div"!==o&&(b=A.mod.neg(),f&&0!==b.negative&&b.iadd(n)),{div:h,mod:b}):0===this.negative&&0!==n.negative?(A=this.divmod(n.neg(),o),"mod"!==o&&(h=A.div.neg()),{div:h,mod:A.mod}):0!==(this.negative&n.negative)?(A=this.neg().divmod(n.neg(),o),"div"!==o&&(b=A.mod.neg(),f&&0!==b.negative&&b.isub(n)),{div:A.div,mod:b}):n.length>this.length||this.cmp(n)<0?{div:new c(0),mod:this}:1===n.length?"div"===o?{div:this.divn(n.words[0]),mod:null}:"mod"===o?{div:null,mod:new c(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new c(this.modn(n.words[0]))}:this._wordDiv(n,o);var h,b,A},c.prototype.div=function(n){return this.divmod(n,"div",!1).div},c.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},c.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},c.prototype.divRound=function(n){var o=this.divmod(n);if(o.mod.isZero())return o.div;var f=0!==o.div.negative?o.mod.isub(n):o.mod,h=n.ushrn(1),b=n.andln(1),A=f.cmp(h);return A<0||1===b&&0===A?o.div:0!==o.div.negative?o.div.isubn(1):o.div.iaddn(1)},c.prototype.modn=function(n){p(n<=67108863);for(var o=(1<<26)%n,f=0,h=this.length-1;h>=0;h--)f=(o*f+(0|this.words[h]))%n;return f},c.prototype.idivn=function(n){p(n<=67108863);for(var o=0,f=this.length-1;f>=0;f--){var h=(0|this.words[f])+67108864*o;this.words[f]=h/n|0,o=h%n}return this.strip()},c.prototype.divn=function(n){return this.clone().idivn(n)},c.prototype.egcd=function(n){p(0===n.negative),p(!n.isZero());var o=this,f=n.clone();o=0!==o.negative?o.umod(n):o.clone();for(var h=new c(1),b=new c(0),A=new c(0),k=new c(1),x=0;o.isEven()&&f.isEven();)o.iushrn(1),f.iushrn(1),++x;for(var r=f.clone(),_=o.clone();!o.isZero();){for(var W=0,I=1;0===(o.words[0]&I)&&W<26;++W,I<<=1);if(W>0)for(o.iushrn(W);W-- >0;)(h.isOdd()||b.isOdd())&&(h.iadd(r),b.isub(_)),h.iushrn(1),b.iushrn(1);for(var B=0,re=1;0===(f.words[0]&re)&&B<26;++B,re<<=1);if(B>0)for(f.iushrn(B);B-- >0;)(A.isOdd()||k.isOdd())&&(A.iadd(r),k.isub(_)),A.iushrn(1),k.iushrn(1);o.cmp(f)>=0?(o.isub(f),h.isub(A),b.isub(k)):(f.isub(o),A.isub(h),k.isub(b))}return{a:A,b:k,gcd:f.iushln(x)}},c.prototype._invmp=function(n){p(0===n.negative),p(!n.isZero());var W,o=this,f=n.clone();o=0!==o.negative?o.umod(n):o.clone();for(var h=new c(1),b=new c(0),A=f.clone();o.cmpn(1)>0&&f.cmpn(1)>0;){for(var k=0,x=1;0===(o.words[0]&x)&&k<26;++k,x<<=1);if(k>0)for(o.iushrn(k);k-- >0;)h.isOdd()&&h.iadd(A),h.iushrn(1);for(var r=0,_=1;0===(f.words[0]&_)&&r<26;++r,_<<=1);if(r>0)for(f.iushrn(r);r-- >0;)b.isOdd()&&b.iadd(A),b.iushrn(1);o.cmp(f)>=0?(o.isub(f),h.isub(b)):(f.isub(o),b.isub(h))}return(W=0===o.cmpn(1)?h:b).cmpn(0)<0&&W.iadd(n),W},c.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var o=this.clone(),f=n.clone();o.negative=0,f.negative=0;for(var h=0;o.isEven()&&f.isEven();h++)o.iushrn(1),f.iushrn(1);for(;;){for(;o.isEven();)o.iushrn(1);for(;f.isEven();)f.iushrn(1);var b=o.cmp(f);if(b<0){var A=o;o=f,f=A}else if(0===b||0===f.cmpn(1))break;o.isub(f)}return f.iushln(h)},c.prototype.invm=function(n){return this.egcd(n).a.umod(n)},c.prototype.isEven=function(){return!(1&this.words[0])},c.prototype.isOdd=function(){return!(1&~this.words[0])},c.prototype.andln=function(n){return this.words[0]&n},c.prototype.bincn=function(n){p("number"==typeof n);var o=n%26,f=(n-o)/26,h=1<>>26,this.words[A]=k&=67108863}return 0!==b&&(this.words[A]=b,this.length++),this},c.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},c.prototype.cmpn=function(n){var f,o=n<0;if(0!==this.negative&&!o)return-1;if(0===this.negative&&o)return 1;if(this.strip(),this.length>1)f=1;else{o&&(n=-n),p(n<=67108863,"Number is too big");var h=0|this.words[0];f=h===n?0:hn.length)return 1;if(this.length=0;f--){var h=0|this.words[f],b=0|n.words[f];if(h!==b){hb&&(o=1);break}}return o},c.prototype.gtn=function(n){return 1===this.cmpn(n)},c.prototype.gt=function(n){return 1===this.cmp(n)},c.prototype.gten=function(n){return this.cmpn(n)>=0},c.prototype.gte=function(n){return this.cmp(n)>=0},c.prototype.ltn=function(n){return-1===this.cmpn(n)},c.prototype.lt=function(n){return-1===this.cmp(n)},c.prototype.lten=function(n){return this.cmpn(n)<=0},c.prototype.lte=function(n){return this.cmp(n)<=0},c.prototype.eqn=function(n){return 0===this.cmpn(n)},c.prototype.eq=function(n){return 0===this.cmp(n)},c.red=function(n){return new me(n)},c.prototype.toRed=function(n){return p(!this.red,"Already a number in reduction context"),p(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},c.prototype.fromRed=function(){return p(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},c.prototype._forceRed=function(n){return this.red=n,this},c.prototype.forceRed=function(n){return p(!this.red,"Already a number in reduction context"),this._forceRed(n)},c.prototype.redAdd=function(n){return p(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},c.prototype.redIAdd=function(n){return p(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},c.prototype.redSub=function(n){return p(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},c.prototype.redISub=function(n){return p(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},c.prototype.redShl=function(n){return p(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},c.prototype.redMul=function(n){return p(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},c.prototype.redIMul=function(n){return p(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},c.prototype.redSqr=function(){return p(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},c.prototype.redISqr=function(){return p(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},c.prototype.redSqrt=function(){return p(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},c.prototype.redInvm=function(){return p(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},c.prototype.redNeg=function(){return p(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},c.prototype.redPow=function(n){return p(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var Q={k256:null,p224:null,p192:null,p25519:null};function $(D,n){this.name=D,this.p=new c(n,16),this.n=this.p.bitLength(),this.k=new c(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ae(){$.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ue(){$.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function oe(){$.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function he(){$.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function me(D){if("string"==typeof D){var n=c._prime(D);this.m=n.p,this.prime=n}else p(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function Te(D){me.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new c(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}$.prototype._tmp=function(){var n=new c(null);return n.words=new Array(Math.ceil(this.n/13)),n},$.prototype.ireduce=function(n){var f,o=n;do{this.split(o,this.tmp),f=(o=(o=this.imulK(o)).iadd(this.tmp)).bitLength()}while(f>this.n);var h=f0?o.isub(this.p):void 0!==o.strip?o.strip():o._strip(),o},$.prototype.split=function(n,o){n.iushrn(this.n,0,o)},$.prototype.imulK=function(n){return n.imul(this.k)},S(ae,$),ae.prototype.split=function(n,o){for(var f=4194303,h=Math.min(n.length,9),b=0;b>>22,A=k}n.words[b-10]=A>>>=22,n.length-=0===A&&n.length>10?10:9},ae.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var o=0,f=0;f>>=26,n.words[f]=b,o=h}return 0!==o&&(n.words[n.length++]=o),n},c._prime=function(n){if(Q[n])return Q[n];var o;if("k256"===n)o=new ae;else if("p224"===n)o=new ue;else if("p192"===n)o=new oe;else{if("p25519"!==n)throw new Error("Unknown prime "+n);o=new he}return Q[n]=o,o},me.prototype._verify1=function(n){p(0===n.negative,"red works only with positives"),p(n.red,"red works only with red numbers")},me.prototype._verify2=function(n,o){p(0===(n.negative|o.negative),"red works only with positives"),p(n.red&&n.red===o.red,"red works only with red numbers")},me.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},me.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},me.prototype.add=function(n,o){this._verify2(n,o);var f=n.add(o);return f.cmp(this.m)>=0&&f.isub(this.m),f._forceRed(this)},me.prototype.iadd=function(n,o){this._verify2(n,o);var f=n.iadd(o);return f.cmp(this.m)>=0&&f.isub(this.m),f},me.prototype.sub=function(n,o){this._verify2(n,o);var f=n.sub(o);return f.cmpn(0)<0&&f.iadd(this.m),f._forceRed(this)},me.prototype.isub=function(n,o){this._verify2(n,o);var f=n.isub(o);return f.cmpn(0)<0&&f.iadd(this.m),f},me.prototype.shl=function(n,o){return this._verify1(n),this.imod(n.ushln(o))},me.prototype.imul=function(n,o){return this._verify2(n,o),this.imod(n.imul(o))},me.prototype.mul=function(n,o){return this._verify2(n,o),this.imod(n.mul(o))},me.prototype.isqr=function(n){return this.imul(n,n.clone())},me.prototype.sqr=function(n){return this.mul(n,n)},me.prototype.sqrt=function(n){if(n.isZero())return n.clone();var o=this.m.andln(3);if(p(o%2==1),3===o){var f=this.m.add(new c(1)).iushrn(2);return this.pow(n,f)}for(var h=this.m.subn(1),b=0;!h.isZero()&&0===h.andln(1);)b++,h.iushrn(1);p(!h.isZero());var A=new c(1).toRed(this),k=A.redNeg(),x=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new c(2*r*r).toRed(this);0!==this.pow(r,x).cmp(k);)r.redIAdd(k);for(var _=this.pow(r,h),W=this.pow(n,h.addn(1).iushrn(1)),I=this.pow(n,h),B=b;0!==I.cmp(A);){for(var re=I,pe=0;0!==re.cmp(A);pe++)re=re.redSqr();p(pe=0;b--){for(var _=o.words[b],W=r-1;W>=0;W--){var I=_>>W&1;A!==h[0]&&(A=this.sqr(A)),0!==I||0!==k?(k<<=1,k|=I,(4===++x||0===b&&0===W)&&(A=this.mul(A,h[k]),x=0,k=0)):x=0}r=26}return A},me.prototype.convertTo=function(n){var o=n.umod(this.m);return o===n?o.clone():o},me.prototype.convertFrom=function(n){var o=n.clone();return o.red=null,o},c.mont=function(n){return new Te(n)},S(Te,me),Te.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},Te.prototype.convertFrom=function(n){var o=this.imod(n.mul(this.rinv));return o.red=null,o},Te.prototype.imul=function(n,o){if(n.isZero()||o.isZero())return n.words[0]=0,n.length=1,n;var f=n.imul(o),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),b=f.isub(h).iushrn(this.shift),A=b;return b.cmp(this.m)>=0?A=b.isub(this.m):b.cmpn(0)<0&&(A=b.iadd(this.m)),A._forceRed(this)},Te.prototype.mul=function(n,o){if(n.isZero()||o.isZero())return new c(0)._forceRed(this);var f=n.mul(o),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),b=f.isub(h).iushrn(this.shift),A=b;return b.cmp(this.m)>=0?A=b.isub(this.m):b.cmpn(0)<0&&(A=b.iadd(this.m)),A._forceRed(this)},Te.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Ae=l.nmd(Ae),this)},38288:(Ae,ee,l)=>{"use strict";l.d(ee,{Um:()=>M,XK:()=>j});var i=l(10467),t=l(72200),p=l(2615),S=l(73664),c=l(17705),e=l(68314);function T(U,K){if(1&U&&S.nrm(0,"canvas",1),2&U){const q=S.XpG();S.HbH(q.styleClass),S.Y8G("qrCode",q.value)("qrCodeErrorCorrectionLevel",q.errorCorrectionLevel)("qrCodeCenterImageSrc",q.centerImageSrc)("qrCodeCenterImageWidth",q.centerImageSize)("qrCodeCenterImageHeight",q.centerImageSize)("qrCodeMargin",q.margin)("qrScale",q.scale)("qrCodeMaskPattern",q.maskPattern)("width",q.size)("height",q.size)("ngStyle",q.style)("darkColor",q.darkColor)("lightColor",q.lightColor)}}const g=/^#(?:[0-9a-fA-F]{3,4}){1,2}$/,d=/^[0-9.]+$/;let w=(()=>{var U;class K{constructor(G){this.viewContainerRef=G,this.errorCorrectionLevel=K.DEFAULT_ERROR_CORRECTION_LEVEL,this.darkColor="#000000FF",this.lightColor="#FFFFFFFF",this.margin=16}ngOnChanges(){var G=this;return(0,i.A)(function*(){if(!G.value)return;G.version&&G.version>40?(console.warn("[qrCode] max version is 40, clamping"),G.version=40):G.version&&G.version<1?(console.warn("[qrCode] min version is 1, clamping"),G.version=1):void 0!==G.version&&isNaN(G.version)&&(console.warn("[qrCode] version should be set to a number, defaulting to auto"),G.version=void 0);const Q=G.viewContainerRef.element.nativeElement;if(!Q)return;const $=Q.getContext("2d");$&&$.clearRect(0,0,$.canvas.width,$.canvas.height);const ae=G.errorCorrectionLevel??K.DEFAULT_ERROR_CORRECTION_LEVEL,ue=G.darkColor&&g.test(G.darkColor)?G.darkColor:void 0,oe=G.lightColor&&g.test(G.lightColor)?G.lightColor:void 0;(0,c.naY)()&&(!ue&&G.darkColor&&console.error("[ng-qrcode] darkColor set to invalid value, must be RGBA hex color string, eg: #3050A1FF"),!oe&&G.lightColor&&console.error("[ng-qrcode] lightColor set to invalid value, must be RGBA hex color string, eg: #3050A130")),yield e.toCanvas(Q,G.value,{version:G.version,errorCorrectionLevel:ae,width:m(G.width),margin:G.margin,scale:G.qrScale,maskPattern:G.qrCodeMaskPattern,color:{dark:ue,light:oe}});const he=G.centerImageSrc,me=P(G.centerImageWidth,K.DEFAULT_CENTER_IMAGE_SIZE),Te=P(G.centerImageHeight,K.DEFAULT_CENTER_IMAGE_SIZE);if(he&&$){G.centerImage||(G.centerImage=new Image(me,Te));const D=G.centerImage;he!==G.centerImage.src&&(D.src=he),me!==G.centerImage.width&&(D.width=me),Te!==G.centerImage.height&&(D.height=Te);const n=()=>{$.drawImage(D,Q.width/2-me/2,Q.height/2-Te/2,me,Te)};D.onload=n,D.complete&&n()}})()}static#e=U=()=>(this.DEFAULT_ERROR_CORRECTION_LEVEL="M",this.DEFAULT_CENTER_IMAGE_SIZE=40,this.\u0275fac=function(Q){return new(Q||K)(S.rXU(S.c1b))},this.\u0275dir=S.FsC({type:K,selectors:[["canvas","qrCode",""]],inputs:{value:[0,"qrCode","value"],version:[0,"qrCodeVersion","version"],errorCorrectionLevel:[0,"qrCodeErrorCorrectionLevel","errorCorrectionLevel"],width:"width",height:"height",darkColor:"darkColor",lightColor:"lightColor",centerImageSrc:[0,"qrCodeCenterImageSrc","centerImageSrc"],centerImageWidth:[0,"qrCodeCenterImageWidth","centerImageWidth"],centerImageHeight:[0,"qrCodeCenterImageHeight","centerImageHeight"],margin:[0,"qrCodeMargin","margin"],qrScale:"qrScale",qrCodeMaskPattern:"qrCodeMaskPattern"},features:[S.OA$]}))}return U(),K})();function m(U){if(void 0!==U&&""!==U){if("string"==typeof U){if(!d.test(U))throw new Error(`'${U}' is not a valid number`);return parseFloat(U)}return U}}function P(U,K){return void 0===U||""===U?K:m(U)}let M=(()=>{var U;class K{static#e=U=()=>(this.\u0275fac=function(Q){return new(Q||K)},this.\u0275cmp=S.VBU({type:K,selectors:[["qr-code"]],inputs:{value:"value",size:"size",style:"style",styleClass:"styleClass",darkColor:"darkColor",lightColor:"lightColor",errorCorrectionLevel:"errorCorrectionLevel",centerImageSrc:"centerImageSrc",centerImageSize:"centerImageSize",margin:"margin",scale:"scale",maskPattern:"maskPattern"},decls:1,vars:1,consts:[[3,"qrCode","qrCodeErrorCorrectionLevel","qrCodeCenterImageSrc","qrCodeCenterImageWidth","qrCodeCenterImageHeight","qrCodeMargin","qrScale","qrCodeMaskPattern","width","height","class","ngStyle","darkColor","lightColor"],[3,"qrCode","qrCodeErrorCorrectionLevel","qrCodeCenterImageSrc","qrCodeCenterImageWidth","qrCodeCenterImageHeight","qrCodeMargin","qrScale","qrCodeMaskPattern","width","height","ngStyle","darkColor","lightColor"]],template:function(Q,$){1&Q&&S.nVh(0,T,1,15,"canvas",0),2&Q&&S.vxM($.value?0:-1)},dependencies:[w,t.MD,t.B3],encapsulation:2}))}return U(),K})(),j=(()=>{var U;class K{static#e=U=()=>(this.\u0275fac=function(Q){return new(Q||K)},this.\u0275mod=S.$C({type:K}),this.\u0275inj=p.G2t({imports:[t.MD,M]}))}return U(),K})()},39210:Ae=>{function ee(l,i){if(!l)throw new Error(i||"Assertion failed")}Ae.exports=ee,ee.equal=function(i,t,p){if(i!=t)throw new Error(p||"Assertion failed: "+i+" != "+t)}},39336:(Ae,ee,l)=>{"use strict";l.d(ee,{X:()=>i});class i{_defaultMatcher;ngControl;_parentFormGroup;_parentForm;_stateChanges;errorState=!1;matcher;constructor(p,S,c,e,T){this._defaultMatcher=p,this.ngControl=S,this._parentFormGroup=c,this._parentForm=e,this._stateChanges=T}updateErrorState(){const p=this.errorState,S=this._parentFormGroup||this._parentForm,c=this.matcher||this._defaultMatcher,e=this.ngControl?this.ngControl.control:null,T=c?.isErrorState(e,S)??!1;T!==p&&(this.errorState=T,this._stateChanges.next())}}},39687:(Ae,ee,l)=>{"use strict";l.d(ee,{q:()=>p});var i=l(86129);class t{constructor(c,e=t.now){this.schedulerActionCtor=c,this.now=e}schedule(c,e=0,T){return new this.schedulerActionCtor(this,c).schedule(T,e)}}t.now=i.U.now;class p extends t{constructor(c,e=t.now){super(c,e),this.actions=[],this._active=!1}flush(c){const{actions:e}=this;if(this._active)return void e.push(c);let T;this._active=!0;do{if(T=c.execute(c.state,c.delay))break}while(c=e.shift());if(this._active=!1,T){for(;c=e.shift();)c.unsubscribe();throw T}}}},39799:(Ae,ee,l)=>{var i=l(3247),t=l(71549),p=l(71993),S=l(27054).Buffer,c={"des-ede3-cbc":t.CBC.instantiate(t.EDE),"des-ede3":t.EDE,"des-ede-cbc":t.CBC.instantiate(t.EDE),"des-ede":t.EDE,"des-cbc":t.CBC.instantiate(t.DES),"des-ecb":t.DES};function e(T){i.call(this);var w,g=T.mode.toLowerCase(),d=c[g];w=T.decrypt?"decrypt":"encrypt";var m=T.key;S.isBuffer(m)||(m=S.from(m)),("des-ede"===g||"des-ede-cbc"===g)&&(m=S.concat([m,m.slice(0,8)]));var P=T.iv;S.isBuffer(P)||(P=S.from(P)),this._des=d.create({key:m,iv:P,type:w})}c.des=c["des-cbc"],c.des3=c["des-ede3-cbc"],Ae.exports=e,p(e,i),e.prototype._update=function(T){return S.from(this._des.update(T))},e.prototype._final=function(){return S.from(this._des.final())}},39842:(Ae,ee,l)=>{"use strict";l.d(ee,{O:()=>c});var i=l(2615),t=l(73664),p=l(60177);let S;try{S=typeof Intl<"u"&&Intl.v8BreakIterator}catch{S=!1}let c=(()=>{class e{_platformId=(0,i.WQX)(t.Agw);isBrowser=this._platformId?(0,p.UE)(this._platformId):"object"==typeof document&&!!document;EDGE=this.isBrowser&&/(edge)/i.test(navigator.userAgent);TRIDENT=this.isBrowser&&/(msie|trident)/i.test(navigator.userAgent);BLINK=this.isBrowser&&!(!window.chrome&&!S)&&typeof CSS<"u"&&!this.EDGE&&!this.TRIDENT;WEBKIT=this.isBrowser&&/AppleWebKit/i.test(navigator.userAgent)&&!this.BLINK&&!this.EDGE&&!this.TRIDENT;IOS=this.isBrowser&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!("MSStream"in window);FIREFOX=this.isBrowser&&/(firefox|minefield)/i.test(navigator.userAgent);ANDROID=this.isBrowser&&/android/i.test(navigator.userAgent)&&!this.TRIDENT;SAFARI=this.isBrowser&&/safari/i.test(navigator.userAgent)&&this.WEBKIT;constructor(){}static \u0275fac=function(d){return new(d||e)};static \u0275prov=i.jDH({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})()},39901:(Ae,ee,l)=>{"use strict";l.d(ee,{U:()=>p});var i=l(39974),t=l(54360);function p(S){return(0,i.N)((c,e)=>{let T=!1;c.subscribe((0,t._)(e,g=>{T=!0,e.next(g)},()=>{T||e.next(S),e.complete()}))})}},39974:(Ae,ee,l)=>{"use strict";l.d(ee,{N:()=>p,S:()=>t});var i=l(98071);function t(S){return(0,i.T)(S?.lift)}function p(S){return c=>{if(t(c))return c.lift(function(e){try{return S(e,this)}catch(T){this.error(T)}});throw new TypeError("Unable to lift unknown Observable type")}}},40146:(Ae,ee,l)=>{"use strict";l.d(ee,{S:()=>T});var i=l(2615),t=l(73664),p=l(26881),S=l(70483),c=l(22466),e=l(23029);let T=(()=>{class g{static \u0275fac=function(m){return new(m||g)};static \u0275mod=t.$C({type:g});static \u0275inj=i.G2t({imports:[p.p,c.y,S.O,e.wT]})}return g})()},40455:(Ae,ee,l)=>{"use strict";l.d(ee,{YZ:()=>me,oV:()=>x});var i=l(56977),t=l(14085),p=l(67847),S=l(10438),c=l(67336),e=l(2615),T=l(73664),g=l(17705),d=l(72200),w=l(39842),m=l(83300),P=l(18617),M=l(76838),j=l(61577),U=l(49338),K=l(5718),q=l(76939),G=l(21413),Q=l(31804);const $=["tooltip"],oe=new e.nKC("mat-tooltip-scroll-strategy",{providedIn:"root",factory:()=>{const _=(0,e.WQX)(e.zZn);return()=>(0,U.RH)(_,{scrollThrottle:20})}}),me={provide:oe,deps:[],useFactory:function he(_){const W=(0,e.WQX)(e.zZn);return()=>(0,U.RH)(W,{scrollThrottle:20})}},D=new e.nKC("mat-tooltip-default-options",{providedIn:"root",factory:function Te(){return{showDelay:0,hideDelay:0,touchendHideDelay:1500}}}),o="tooltip-panel",f=(0,m.B)({passive:!0});let x=(()=>{class _{_elementRef=(0,e.WQX)(T.aKT);_ngZone=(0,e.WQX)(T.SKi);_platform=(0,e.WQX)(w.O);_ariaDescriber=(0,e.WQX)(P.vr);_focusMonitor=(0,e.WQX)(M.FN);_dir=(0,e.WQX)(j.dS);_injector=(0,e.WQX)(e.zZn);_viewContainerRef=(0,e.WQX)(T.c1b);_animationsDisabled=(0,Q.Rc)();_defaultOptions=(0,e.WQX)(D,{optional:!0});_overlayRef;_tooltipInstance;_overlayPanelClass;_portal;_position="below";_positionAtOrigin=!1;_disabled=!1;_tooltipClass;_viewInitialized=!1;_pointerExitEventsInitialized=!1;_tooltipComponent=r;_viewportMargin=8;_currentPosition;_cssClassPrefix="mat-mdc";_ariaDescriptionPending;_dirSubscribed=!1;get position(){return this._position}set position(I){I!==this._position&&(this._position=I,this._overlayRef&&(this._updatePosition(this._overlayRef),this._tooltipInstance?.show(0),this._overlayRef.updatePosition()))}get positionAtOrigin(){return this._positionAtOrigin}set positionAtOrigin(I){this._positionAtOrigin=(0,t.he)(I),this._detach(),this._overlayRef=null}get disabled(){return this._disabled}set disabled(I){const B=(0,t.he)(I);this._disabled!==B&&(this._disabled=B,B?this.hide(0):this._setupPointerEnterEventsIfNeeded(),this._syncAriaDescription(this.message))}get showDelay(){return this._showDelay}set showDelay(I){this._showDelay=(0,p.OE)(I)}_showDelay;get hideDelay(){return this._hideDelay}set hideDelay(I){this._hideDelay=(0,p.OE)(I),this._tooltipInstance&&(this._tooltipInstance._mouseLeaveHideDelay=this._hideDelay)}_hideDelay;touchGestures="auto";get message(){return this._message}set message(I){const B=this._message;this._message=null!=I?String(I).trim():"",!this._message&&this._isTooltipVisible()?this.hide(0):(this._setupPointerEnterEventsIfNeeded(),this._updateTooltipMessage()),this._syncAriaDescription(B)}_message="";get tooltipClass(){return this._tooltipClass}set tooltipClass(I){this._tooltipClass=I,this._tooltipInstance&&this._setTooltipClass(this._tooltipClass)}_passiveListeners=[];_touchstartTimeout=null;_destroyed=new G.B;_isDestroyed=!1;constructor(){const I=this._defaultOptions;I&&(this._showDelay=I.showDelay,this._hideDelay=I.hideDelay,I.position&&(this.position=I.position),I.positionAtOrigin&&(this.positionAtOrigin=I.positionAtOrigin),I.touchGestures&&(this.touchGestures=I.touchGestures),I.tooltipClass&&(this.tooltipClass=I.tooltipClass)),this._viewportMargin=8}ngAfterViewInit(){this._viewInitialized=!0,this._setupPointerEnterEventsIfNeeded(),this._focusMonitor.monitor(this._elementRef).pipe((0,i.Q)(this._destroyed)).subscribe(I=>{I?"keyboard"===I&&this._ngZone.run(()=>this.show()):this._ngZone.run(()=>this.hide(0))})}ngOnDestroy(){const I=this._elementRef.nativeElement;this._touchstartTimeout&&clearTimeout(this._touchstartTimeout),this._overlayRef&&(this._overlayRef.dispose(),this._tooltipInstance=null),this._passiveListeners.forEach(([B,re])=>{I.removeEventListener(B,re,f)}),this._passiveListeners.length=0,this._destroyed.next(),this._destroyed.complete(),this._isDestroyed=!0,this._ariaDescriber.removeDescription(I,this.message,"tooltip"),this._focusMonitor.stopMonitoring(I)}show(I=this.showDelay,B){if(this.disabled||!this.message||this._isTooltipVisible())return void this._tooltipInstance?._cancelPendingAnimations();const re=this._createOverlay(B);this._detach(),this._portal=this._portal||new q.A8(this._tooltipComponent,this._viewContainerRef);const pe=this._tooltipInstance=re.attach(this._portal).instance;pe._triggerElement=this._elementRef.nativeElement,pe._mouseLeaveHideDelay=this._hideDelay,pe.afterHidden().pipe((0,i.Q)(this._destroyed)).subscribe(()=>this._detach()),this._setTooltipClass(this._tooltipClass),this._updateTooltipMessage(),pe.show(I)}hide(I=this.hideDelay){const B=this._tooltipInstance;B&&(B.isVisible()?B.hide(I):(B._cancelPendingAnimations(),this._detach()))}toggle(I){this._isTooltipVisible()?this.hide():this.show(void 0,I)}_isTooltipVisible(){return!!this._tooltipInstance&&this._tooltipInstance.isVisible()}_createOverlay(I){if(this._overlayRef){const be=this._overlayRef.getConfig().positionStrategy;if((!this.positionAtOrigin||!I)&&be._origin instanceof T.aKT)return this._overlayRef;this._detach()}const B=this._injector.get(K.R).getAncestorScrollContainers(this._elementRef),re=`${this._cssClassPrefix}-${o}`,pe=(0,U.$M)(this._injector,this.positionAtOrigin&&I||this._elementRef).withTransformOriginOn(`.${this._cssClassPrefix}-tooltip`).withFlexibleDimensions(!1).withViewportMargin(this._viewportMargin).withScrollableContainers(B);return pe.positionChanges.pipe((0,i.Q)(this._destroyed)).subscribe(be=>{this._updateCurrentPositionClass(be.connectionPair),this._tooltipInstance&&be.scrollableViewProperties.isOverlayClipped&&this._tooltipInstance.isVisible()&&this._ngZone.run(()=>this.hide(0))}),this._overlayRef=(0,U.Y$)(this._injector,{direction:this._dir,positionStrategy:pe,panelClass:this._overlayPanelClass?[...this._overlayPanelClass,re]:re,scrollStrategy:this._injector.get(oe)(),disableAnimations:this._animationsDisabled}),this._updatePosition(this._overlayRef),this._overlayRef.detachments().pipe((0,i.Q)(this._destroyed)).subscribe(()=>this._detach()),this._overlayRef.outsidePointerEvents().pipe((0,i.Q)(this._destroyed)).subscribe(()=>this._tooltipInstance?._handleBodyInteraction()),this._overlayRef.keydownEvents().pipe((0,i.Q)(this._destroyed)).subscribe(be=>{this._isTooltipVisible()&&be.keyCode===S._f&&!(0,c.rp)(be)&&(be.preventDefault(),be.stopPropagation(),this._ngZone.run(()=>this.hide(0)))}),this._defaultOptions?.disableTooltipInteractivity&&this._overlayRef.addPanelClass(`${this._cssClassPrefix}-tooltip-panel-non-interactive`),this._dirSubscribed||(this._dirSubscribed=!0,this._dir.change.pipe((0,i.Q)(this._destroyed)).subscribe(()=>{this._overlayRef&&this._updatePosition(this._overlayRef)})),this._overlayRef}_detach(){this._overlayRef&&this._overlayRef.hasAttached()&&this._overlayRef.detach(),this._tooltipInstance=null}_updatePosition(I){const B=I.getConfig().positionStrategy,re=this._getOrigin(),pe=this._getOverlayPosition();B.withPositions([this._addOffset({...re.main,...pe.main}),this._addOffset({...re.fallback,...pe.fallback})])}_addOffset(I){const re=!this._dir||"ltr"==this._dir.value;return"top"===I.originY?I.offsetY=-8:"bottom"===I.originY?I.offsetY=8:"start"===I.originX?I.offsetX=re?-8:8:"end"===I.originX&&(I.offsetX=re?8:-8),I}_getOrigin(){const I=!this._dir||"ltr"==this._dir.value,B=this.position;let re;"above"==B||"below"==B?re={originX:"center",originY:"above"==B?"top":"bottom"}:"before"==B||"left"==B&&I||"right"==B&&!I?re={originX:"start",originY:"center"}:("after"==B||"right"==B&&I||"left"==B&&!I)&&(re={originX:"end",originY:"center"});const{x:pe,y:be}=this._invertPosition(re.originX,re.originY);return{main:re,fallback:{originX:pe,originY:be}}}_getOverlayPosition(){const I=!this._dir||"ltr"==this._dir.value,B=this.position;let re;"above"==B?re={overlayX:"center",overlayY:"bottom"}:"below"==B?re={overlayX:"center",overlayY:"top"}:"before"==B||"left"==B&&I||"right"==B&&!I?re={overlayX:"end",overlayY:"center"}:("after"==B||"right"==B&&I||"left"==B&&!I)&&(re={overlayX:"start",overlayY:"center"});const{x:pe,y:be}=this._invertPosition(re.overlayX,re.overlayY);return{main:re,fallback:{overlayX:pe,overlayY:be}}}_updateTooltipMessage(){this._tooltipInstance&&(this._tooltipInstance.message=this.message,this._tooltipInstance._markForCheck(),(0,T.mal)(()=>{this._tooltipInstance&&this._overlayRef.updatePosition()},{injector:this._injector}))}_setTooltipClass(I){this._tooltipInstance&&(this._tooltipInstance.tooltipClass=I,this._tooltipInstance._markForCheck())}_invertPosition(I,B){return"above"===this.position||"below"===this.position?"top"===B?B="bottom":"bottom"===B&&(B="top"):"end"===I?I="start":"start"===I&&(I="end"),{x:I,y:B}}_updateCurrentPositionClass(I){const{overlayY:B,originX:re,originY:pe}=I;let be;if(be="center"===B?this._dir&&"rtl"===this._dir.value?"end"===re?"left":"right":"start"===re?"left":"right":"bottom"===B&&"top"===pe?"above":"below",be!==this._currentPosition){const Be=this._overlayRef;if(Be){const _e=`${this._cssClassPrefix}-${o}-`;Be.removePanelClass(_e+this._currentPosition),Be.addPanelClass(_e+be)}this._currentPosition=be}}_setupPointerEnterEventsIfNeeded(){this._disabled||!this.message||!this._viewInitialized||this._passiveListeners.length||(this._platformSupportsMouseEvents()?this._passiveListeners.push(["mouseenter",I=>{let B;this._setupPointerExitEventsIfNeeded(),void 0!==I.x&&void 0!==I.y&&(B=I),this.show(void 0,B)}]):"off"!==this.touchGestures&&(this._disableNativeGesturesIfNecessary(),this._passiveListeners.push(["touchstart",I=>{const B=I.targetTouches?.[0],re=B?{x:B.clientX,y:B.clientY}:void 0;this._setupPointerExitEventsIfNeeded(),this._touchstartTimeout&&clearTimeout(this._touchstartTimeout),this._touchstartTimeout=setTimeout(()=>{this._touchstartTimeout=null,this.show(void 0,re)},this._defaultOptions?.touchLongPressShowDelay??500)}])),this._addListeners(this._passiveListeners))}_setupPointerExitEventsIfNeeded(){if(this._pointerExitEventsInitialized)return;this._pointerExitEventsInitialized=!0;const I=[];if(this._platformSupportsMouseEvents())I.push(["mouseleave",B=>{const re=B.relatedTarget;(!re||!this._overlayRef?.overlayElement.contains(re))&&this.hide()}],["wheel",B=>this._wheelListener(B)]);else if("off"!==this.touchGestures){this._disableNativeGesturesIfNecessary();const B=()=>{this._touchstartTimeout&&clearTimeout(this._touchstartTimeout),this.hide(this._defaultOptions?.touchendHideDelay)};I.push(["touchend",B],["touchcancel",B])}this._addListeners(I),this._passiveListeners.push(...I)}_addListeners(I){I.forEach(([B,re])=>{this._elementRef.nativeElement.addEventListener(B,re,f)})}_platformSupportsMouseEvents(){return!this._platform.IOS&&!this._platform.ANDROID}_wheelListener(I){if(this._isTooltipVisible()){const B=this._injector.get(e.qQL).elementFromPoint(I.clientX,I.clientY),re=this._elementRef.nativeElement;B!==re&&!re.contains(B)&&this.hide()}}_disableNativeGesturesIfNecessary(){const I=this.touchGestures;if("off"!==I){const B=this._elementRef.nativeElement,re=B.style;("on"===I||"INPUT"!==B.nodeName&&"TEXTAREA"!==B.nodeName)&&(re.userSelect=re.msUserSelect=re.webkitUserSelect=re.MozUserSelect="none"),("on"===I||!B.draggable)&&(re.webkitUserDrag="none"),re.touchAction="none",re.webkitTapHighlightColor="transparent"}}_syncAriaDescription(I){this._ariaDescriptionPending||(this._ariaDescriptionPending=!0,this._ariaDescriber.removeDescription(this._elementRef.nativeElement,I,"tooltip"),this._isDestroyed||(0,T.mal)({write:()=>{this._ariaDescriptionPending=!1,this.message&&!this.disabled&&this._ariaDescriber.describe(this._elementRef.nativeElement,this.message,"tooltip")}},{injector:this._injector}))}static \u0275fac=function(B){return new(B||_)};static \u0275dir=T.FsC({type:_,selectors:[["","matTooltip",""]],hostAttrs:[1,"mat-mdc-tooltip-trigger"],hostVars:2,hostBindings:function(B,re){2&B&&T.AVh("mat-mdc-tooltip-disabled",re.disabled)},inputs:{position:[0,"matTooltipPosition","position"],positionAtOrigin:[0,"matTooltipPositionAtOrigin","positionAtOrigin"],disabled:[0,"matTooltipDisabled","disabled"],showDelay:[0,"matTooltipShowDelay","showDelay"],hideDelay:[0,"matTooltipHideDelay","hideDelay"],touchGestures:[0,"matTooltipTouchGestures","touchGestures"],message:[0,"matTooltip","message"],tooltipClass:[0,"matTooltipClass","tooltipClass"]},exportAs:["matTooltip"]})}return _})(),r=(()=>{class _{_changeDetectorRef=(0,e.WQX)(g.gRc);_elementRef=(0,e.WQX)(T.aKT);_isMultiline=!1;message;tooltipClass;_showTimeoutId;_hideTimeoutId;_triggerElement;_mouseLeaveHideDelay;_animationsDisabled=(0,Q.Rc)();_tooltip;_closeOnInteraction=!1;_isVisible=!1;_onHide=new G.B;_showAnimation="mat-mdc-tooltip-show";_hideAnimation="mat-mdc-tooltip-hide";constructor(){}show(I){null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=setTimeout(()=>{this._toggleVisibility(!0),this._showTimeoutId=void 0},I)}hide(I){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),this._hideTimeoutId=setTimeout(()=>{this._toggleVisibility(!1),this._hideTimeoutId=void 0},I)}afterHidden(){return this._onHide}isVisible(){return this._isVisible}ngOnDestroy(){this._cancelPendingAnimations(),this._onHide.complete(),this._triggerElement=null}_handleBodyInteraction(){this._closeOnInteraction&&this.hide(0)}_markForCheck(){this._changeDetectorRef.markForCheck()}_handleMouseLeave({relatedTarget:I}){(!I||!this._triggerElement.contains(I))&&(this.isVisible()?this.hide(this._mouseLeaveHideDelay):this._finalizeAnimation(!1))}_onShow(){this._isMultiline=this._isTooltipMultiline(),this._markForCheck()}_isTooltipMultiline(){const I=this._elementRef.nativeElement.getBoundingClientRect();return I.height>24&&I.width>=200}_handleAnimationEnd({animationName:I}){(I===this._showAnimation||I===this._hideAnimation)&&this._finalizeAnimation(I===this._showAnimation)}_cancelPendingAnimations(){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=this._hideTimeoutId=void 0}_finalizeAnimation(I){I?this._closeOnInteraction=!0:this.isVisible()||this._onHide.next()}_toggleVisibility(I){const B=this._tooltip.nativeElement,re=this._showAnimation,pe=this._hideAnimation;if(B.classList.remove(I?pe:re),B.classList.add(I?re:pe),this._isVisible!==I&&(this._isVisible=I,this._changeDetectorRef.markForCheck()),I&&!this._animationsDisabled&&"function"==typeof getComputedStyle){const be=getComputedStyle(B);("0s"===be.getPropertyValue("animation-duration")||"none"===be.getPropertyValue("animation-name"))&&(this._animationsDisabled=!0)}I&&this._onShow(),this._animationsDisabled&&(B.classList.add("_mat-animation-noopable"),this._finalizeAnimation(I))}static \u0275fac=function(B){return new(B||_)};static \u0275cmp=T.VBU({type:_,selectors:[["mat-tooltip-component"]],viewQuery:function(B,re){if(1&B&&T.GBs($,7),2&B){let pe;T.mGM(pe=T.lsd())&&(re._tooltip=pe.first)}},hostAttrs:["aria-hidden","true"],hostBindings:function(B,re){1&B&&T.bIt("mouseleave",function(be){return re._handleMouseLeave(be)})},decls:4,vars:4,consts:[["tooltip",""],[1,"mdc-tooltip","mat-mdc-tooltip",3,"animationend","ngClass"],[1,"mat-mdc-tooltip-surface","mdc-tooltip__surface"]],template:function(B,re){if(1&B){const pe=T.RV6();T.j41(0,"div",1,0),T.bIt("animationend",function(Be){return e.eBV(pe),e.Njj(re._handleAnimationEnd(Be))}),T.j41(2,"div",2),T.EFF(3),T.k0s()()}2&B&&(T.AVh("mdc-tooltip--multiline",re._isMultiline),T.Y8G("ngClass",re.tooltipClass),T.R7$(3),T.JRh(re.message))},dependencies:[d.YU],styles:['.mat-mdc-tooltip{position:relative;transform:scale(0);display:inline-flex}.mat-mdc-tooltip::before{content:"";top:0;right:0;bottom:0;left:0;z-index:-1;position:absolute}.mat-mdc-tooltip-panel-below .mat-mdc-tooltip::before{top:-8px}.mat-mdc-tooltip-panel-above .mat-mdc-tooltip::before{bottom:-8px}.mat-mdc-tooltip-panel-right .mat-mdc-tooltip::before{left:-8px}.mat-mdc-tooltip-panel-left .mat-mdc-tooltip::before{right:-8px}.mat-mdc-tooltip._mat-animation-noopable{animation:none;transform:scale(1)}.mat-mdc-tooltip-surface{word-break:normal;overflow-wrap:anywhere;padding:4px 8px;min-width:40px;max-width:200px;min-height:24px;max-height:40vh;box-sizing:border-box;overflow:hidden;text-align:center;will-change:transform,opacity;background-color:var(--mat-tooltip-container-color, var(--mat-sys-inverse-surface));color:var(--mat-tooltip-supporting-text-color, var(--mat-sys-inverse-on-surface));border-radius:var(--mat-tooltip-container-shape, var(--mat-sys-corner-extra-small));font-family:var(--mat-tooltip-supporting-text-font, var(--mat-sys-body-small-font));font-size:var(--mat-tooltip-supporting-text-size, var(--mat-sys-body-small-size));font-weight:var(--mat-tooltip-supporting-text-weight, var(--mat-sys-body-small-weight));line-height:var(--mat-tooltip-supporting-text-line-height, var(--mat-sys-body-small-line-height));letter-spacing:var(--mat-tooltip-supporting-text-tracking, var(--mat-sys-body-small-tracking))}.mat-mdc-tooltip-surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}.mdc-tooltip--multiline .mat-mdc-tooltip-surface{text-align:left}[dir=rtl] .mdc-tooltip--multiline .mat-mdc-tooltip-surface{text-align:right}.mat-mdc-tooltip-panel{line-height:normal}.mat-mdc-tooltip-panel.mat-mdc-tooltip-panel-non-interactive{pointer-events:none}@keyframes mat-mdc-tooltip-show{0%{opacity:0;transform:scale(0.8)}100%{opacity:1;transform:scale(1)}}@keyframes mat-mdc-tooltip-hide{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(0.8)}}.mat-mdc-tooltip-show{animation:mat-mdc-tooltip-show 150ms cubic-bezier(0, 0, 0.2, 1) forwards}.mat-mdc-tooltip-hide{animation:mat-mdc-tooltip-hide 75ms cubic-bezier(0.4, 0, 1, 1) forwards}\n'],encapsulation:2,changeDetection:0})}return _})()},40484:(Ae,ee,l)=>{"use strict";var i=l(88723),t=l(3136),p=t.assert;function S(d,w){if(d instanceof S)return d;this._importDER(d,w)||(p(d.r&&d.s,"Signature without r or s"),this.r=new i(d.r,16),this.s=new i(d.s,16),this.recoveryParam=void 0===d.recoveryParam?null:d.recoveryParam)}function c(){this.place=0}function e(d,w){var m=d[w.place++];if(!(128&m))return m;var P=15&m;if(0===P||P>4||0===d[w.place])return!1;for(var M=0,j=0,U=w.place;j>>=0;return!(M<=127)&&(w.place=U,M)}function T(d){for(var w=0,m=d.length-1;!d[w]&&!(128&d[w+1])&&w>>3);for(d.push(128|m);--m;)d.push(w>>>(m<<3)&255);d.push(w)}}Ae.exports=S,S.prototype._importDER=function(w,m){w=t.toArray(w,m);var P=new c;if(48!==w[P.place++])return!1;var M=e(w,P);if(!1===M||M+P.place!==w.length||2!==w[P.place++])return!1;var j=e(w,P);if(!1===j||128&w[P.place])return!1;var U=w.slice(P.place,j+P.place);if(P.place+=j,2!==w[P.place++])return!1;var K=e(w,P);if(!1===K||w.length!==K+P.place||128&w[P.place])return!1;var q=w.slice(P.place,K+P.place);if(0===U[0]){if(!(128&U[1]))return!1;U=U.slice(1)}if(0===q[0]){if(!(128&q[1]))return!1;q=q.slice(1)}return this.r=new i(U),this.s=new i(q),this.recoveryParam=null,!0},S.prototype.toDER=function(w){var m=this.r.toArray(),P=this.s.toArray();for(128&m[0]&&(m=[0].concat(m)),128&P[0]&&(P=[0].concat(P)),m=T(m),P=T(P);!(P[0]||128&P[1]);)P=P.slice(1);var M=[2];g(M,m.length),(M=M.concat(m)).push(2),g(M,P.length);var j=M.concat(P),U=[48];return g(U,j.length),U=U.concat(j),t.encode(U,w)}},40941:(Ae,ee,l)=>{"use strict";l.d(ee,{Q:()=>S});var i=l(45225),t=l(39974),p=l(54360);function S(c,e=0){return(0,t.N)((T,g)=>{T.subscribe((0,p._)(g,d=>(0,i.N)(g,c,()=>g.next(d),e),()=>(0,i.N)(g,c,()=>g.complete(),e),d=>(0,i.N)(g,c,()=>g.error(d),e)))})}},41026:(Ae,ee,l)=>{"use strict";l.d(ee,{$:()=>i});const i={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1}},41090:(Ae,ee,l)=>{"use strict";var i=l(27054).Buffer,t=l(56471),p=l(573),S=ArrayBuffer.isView||function(d){try{return p(d),!0}catch{return!1}},c=typeof Uint8Array<"u",e=typeof ArrayBuffer<"u"&&typeof Uint8Array<"u",T=e&&(i.prototype instanceof Uint8Array||i.TYPED_ARRAY_SUPPORT);Ae.exports=function(d,w){if(i.isBuffer(d))return d.constructor&&!("isBuffer"in d)?i.from(d):d;if("string"==typeof d)return i.from(d,w);if(e&&S(d)){if(0===d.byteLength)return i.alloc(0);if(T){var m=i.from(d.buffer,d.byteOffset,d.byteLength);if(m.byteLength===d.byteLength)return m}var P=d instanceof Uint8Array?d:new Uint8Array(d.buffer,d.byteOffset,d.byteLength),M=i.from(P);if(M.length===d.byteLength)return M}if(c&&d instanceof Uint8Array)return i.from(d);var j=t(d);if(j)for(var U=0;U255||~~K!==K)throw new RangeError("Array items must be numbers in the range 0-255.")}if(j||i.isBuffer(d)&&d.constructor&&"function"==typeof d.constructor.isBuffer&&d.constructor.isBuffer(d))return i.from(d);throw new TypeError('The "data" argument must be a string, an Array, a Buffer, a Uint8Array, or a DataView.')}},41876:(Ae,ee)=>{"use strict";var i=[255,255,26,27,28,29,30,31,255,255,255,255,255,255,255,255,255,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,255,255,255,255,255,255,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,255,255,255,255,255];ee.encode=function(p){Buffer.isBuffer(p)||(p=new Buffer(p));for(var S=0,c=0,e=0,T=0,g=new Buffer(8*function t(p){var S=Math.floor(p.length/5);return p.length%5==0?S:S+1}(p));S3?(T=(T=d&255>>e)<<(e=(e+5)%8)|(S+1>8-e,S++):(T=d>>8-(e+5)&31,0==(e=(e+5)%8)&&S++),g[c]="ABCDEFGHIJKLMNOPQRSTUVWXYZ234567".charCodeAt(T),c++}for(S=c;S>>(S=(S+5)%8),T++,e=255&c<<8-S)}return g.slice(0,T)}},42709:(Ae,ee,l)=>{"use strict";var i=l(71993),t=l(32148),p=l(70463),S=l(27054).Buffer,c=new Array(64);function e(){this.init(),this._w=c,p.call(this,64,56)}i(e,t),e.prototype.init=function(){return this._a=3238371032,this._b=914150663,this._c=812702999,this._d=4144912697,this._e=4290775857,this._f=1750603025,this._g=1694076839,this._h=3204075428,this},e.prototype._hash=function(){var T=S.allocUnsafe(28);return T.writeInt32BE(this._a,0),T.writeInt32BE(this._b,4),T.writeInt32BE(this._c,8),T.writeInt32BE(this._d,12),T.writeInt32BE(this._e,16),T.writeInt32BE(this._f,20),T.writeInt32BE(this._g,24),T},Ae.exports=e},43150:(Ae,ee,l)=>{"use strict";var i=l(27054).Buffer,t=l(56432),p=l(14105),S=l(90518).ec,c=l(917),e=l(65667),T=l(64589);function M(G,Q,$,ae){if((G=i.from(G.toArray())).length0&&$.ishrn(ae),$}function K(G,Q,$){var ae,ue;do{for(ae=i.alloc(0);8*ae.length{"use strict";l.d(ee,{E:()=>p,b:()=>S});var i=l(96780);const p=new(l(39687).q)(i.R),S=p},43388:(Ae,ee,l)=>{var i=l(350),t=l(60102),p=l(3219);ee.createCipher=ee.Cipher=i.createCipher,ee.createCipheriv=ee.Cipheriv=i.createCipheriv,ee.createDecipher=ee.Decipher=t.createDecipher,ee.createDecipheriv=ee.Decipheriv=t.createDecipheriv,ee.listCiphers=ee.getCiphers=function S(){return Object.keys(p)}},43410:(Ae,ee,l)=>{"use strict";Ae.exports=g;var i=l(30464).F,t=i.ERR_METHOD_NOT_IMPLEMENTED,p=i.ERR_MULTIPLE_CALLBACK,S=i.ERR_TRANSFORM_ALREADY_TRANSFORMING,c=i.ERR_TRANSFORM_WITH_LENGTH_0,e=l(1030);function T(m,P){var M=this._transformState;M.transforming=!1;var j=M.writecb;if(null===j)return this.emit("error",new p);M.writechunk=null,M.writecb=null,null!=P&&this.push(P),j(m);var U=this._readableState;U.reading=!1,(U.needReadable||U.length{"use strict";l.d(ee,{nX:()=>Ta,Pu:()=>gl,Zp:()=>da,nU:()=>di,wU:()=>Dn,c1:()=>Qr,XR:()=>zo,j5:()=>Ai,wF:()=>xi,L6:()=>zt,lW:()=>Yi,mo:()=>Ci,Z:()=>Fn,J2:()=>Uo,J_:()=>js,bw:()=>wn,gx:()=>ni,tD:()=>no,Ix:()=>yl,D$:()=>Ws,n3:()=>Yr,OY:()=>mr,Sd:()=>Qt,bK:()=>hs,gk:()=>Ho,Lg:()=>Xs,wO:()=>Hi,Us:()=>wi,we:()=>ls});var i=l(2615),t=l(57303),p=l(73664),S=l(17705),c=l(59295),e=l(74402),T=l(22806),g=l(7673),d=l(84412),w=l(84572),m=l(9350),P=l(28793),M=l(59030),j=l(71203),U=l(18810),K=l(983),q=l(30017),G=l(21413),Q=l(71985),$=l(18359),ae=l(96354),ue=l(25558),oe=l(96697),he=l(99172),me=l(5964),Te=l(31397),D=l(61594),n=l(70274),o=l(88141),f=l(99437),h=l(31943),b=l(39901),A=l(39974),k=l(54360);function x(we){return we<=0?()=>K.w:(0,A.N)((je,Re)=>{let We=[];je.subscribe((0,k._)(Re,_t=>{We.push(_t),we{for(const _t of We)Re.next(_t);Re.complete()},void 0,()=>{We=null}))})}var r=l(93774),_=l(33669),I=l(70980),B=l(99898),re=l(56977),pe=l(345);const be="primary",Be=Symbol("RouteTitle");class _e{params;constructor(je){this.params=je||{}}has(je){return Object.prototype.hasOwnProperty.call(this.params,je)}get(je){if(this.has(je)){const Re=this.params[je];return Array.isArray(Re)?Re[0]:Re}return null}getAll(je){if(this.has(je)){const Re=this.params[je];return Array.isArray(Re)?Re:[Re]}return[]}get keys(){return Object.keys(this.params)}}function ye(we){return new _e(we)}function Le(we,je,Re){const We=Re.path.split("/");if(We.length>we.length||"full"===Re.pathMatch&&(je.hasChildren()||We.lengthWe[Ut]===_t)}return we===je}function Ee(we){return we.length>0?we[we.length-1]:null}function dt(we){return(0,e.A)(we)?we:(0,p.yLl)(we)?(0,T.H)(Promise.resolve(we)):(0,g.of)(we)}const nt={exact:function Pe(we,je,Re){if(!ht(we.segments,je.segments)||!ze(we.segments,je.segments,Re)||we.numberOfChildren!==je.numberOfChildren)return!1;for(const We in je.children)if(!we.children[We]||!Pe(we.children[We],je.children[We],Re))return!1;return!0},subset:ct},Ct={exact:function lt(we,je){return ge(we,je)},subset:function Ht(we,je){return Object.keys(je).length<=Object.keys(we).length&&Object.keys(je).every(Re=>Oe(we[Re],je[Re]))},ignored:()=>!0};function Mt(we,je,Re){return nt[Re.paths](we.root,je.root,Re.matrixParams)&&Ct[Re.queryParams](we.queryParams,je.queryParams)&&!("exact"===Re.fragment&&we.fragment!==je.fragment)}function ct(we,je,Re){return Ce(we,je,je.segments,Re)}function Ce(we,je,Re,We){if(we.segments.length>Re.length){const _t=we.segments.slice(0,Re.length);return!(!ht(_t,Re)||je.hasChildren()||!ze(_t,Re,We))}if(we.segments.length===Re.length){if(!ht(we.segments,Re)||!ze(we.segments,Re,We))return!1;for(const _t in je.children)if(!we.children[_t]||!ct(we.children[_t],je.children[_t],We))return!1;return!0}{const _t=Re.slice(0,we.segments.length),Ut=Re.slice(we.segments.length);return!!(ht(we.segments,_t)&&ze(we.segments,_t,We)&&we.children[be])&&Ce(we.children[be],je,Ut,We)}}function ze(we,je,Re){return je.every((We,_t)=>Ct[Re](we[_t].parameters,We.parameters))}class Z{root;queryParams;fragment;_queryParamMap;constructor(je=new J([],{}),Re={},We=null){this.root=je,this.queryParams=Re,this.fragment=We}get queryParamMap(){return this._queryParamMap??=ye(this.queryParams),this._queryParamMap}toString(){return kt.serialize(this)}}class J{segments;children;parent=null;constructor(je,Re){this.segments=je,this.children=Re,Object.values(Re).forEach(We=>We.parent=this)}hasChildren(){return this.numberOfChildren>0}get numberOfChildren(){return Object.keys(this.children).length}toString(){return Rt(this)}}class fe{path;parameters;_parameterMap;constructor(je,Re){this.path=je,this.parameters=Re}get parameterMap(){return this._parameterMap??=ye(this.parameters),this._parameterMap}toString(){return Kt(this)}}function ht(we,je){return we.length===je.length&&we.every((Re,We)=>Re.path===je[We].path)}let Qt=(()=>{class we{static \u0275fac=function(We){return new(We||we)};static \u0275prov=i.jDH({token:we,factory:()=>new di,providedIn:"root"})}return we})();class di{parse(je){const Re=new tt(je);return new Z(Re.parseRootSegment(),Re.parseQueryParams(),Re.parseFragment())}serialize(je){const Re=`/${le(je.root,!0)}`,We=function Vt(we){const je=Object.entries(we).map(([Re,We])=>Array.isArray(We)?We.map(_t=>`${ce(Re)}=${ce(_t)}`).join("&"):`${ce(Re)}=${ce(We)}`).filter(Re=>Re);return je.length?`?${je.join("&")}`:""}(je.queryParams);return`${Re}${We}${"string"==typeof je.fragment?`#${function se(we){return encodeURI(we)}(je.fragment)}`:""}`}}const kt=new di;function Rt(we){return we.segments.map(je=>Kt(je)).join("/")}function le(we,je){if(!we.hasChildren())return Rt(we);if(je){const Re=we.children[be]?le(we.children[be],!1):"",We=[];return Object.entries(we.children).forEach(([_t,Ut])=>{_t!==be&&We.push(`${_t}:${le(Ut,!1)}`)}),We.length>0?`${Re}(${We.join("//")})`:Re}{const Re=function li(we,je){let Re=[];return Object.entries(we.children).forEach(([We,_t])=>{We===be&&(Re=Re.concat(je(_t,We)))}),Object.entries(we.children).forEach(([We,_t])=>{We!==be&&(Re=Re.concat(je(_t,We)))}),Re}(we,(We,_t)=>_t===be?[le(we.children[be],!1)]:[`${_t}:${le(We,!1)}`]);return 1===Object.keys(we.children).length&&null!=we.children[be]?`${Rt(we)}/${Re[0]}`:`${Rt(we)}/(${Re.join("//")})`}}function te(we){return encodeURIComponent(we).replace(/%40/g,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",")}function ce(we){return te(we).replace(/%3B/gi,";")}function ke(we){return te(we).replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/%26/gi,"&")}function Ue(we){return decodeURIComponent(we)}function Ne(we){return Ue(we.replace(/\+/g,"%20"))}function Kt(we){return`${ke(we.path)}${function yt(we){return Object.entries(we).map(([je,Re])=>`;${ke(je)}=${ke(Re)}`).join("")}(we.parameters)}`}const Zt=/^[^\/()?;#]+/;function ti(we){const je=we.match(Zt);return je?je[0]:""}const Ye=/^[^\/()?;=#]+/,Et=/^[^=?&#]+/,qe=/^[^&#]+/;class tt{url;remaining;constructor(je){this.url=je,this.remaining=je}parseRootSegment(){return this.consumeOptional("/"),""===this.remaining||this.peekStartsWith("?")||this.peekStartsWith("#")?new J([],{}):new J([],this.parseChildren())}parseQueryParams(){const je={};if(this.consumeOptional("?"))do{this.parseQueryParam(je)}while(this.consumeOptional("&"));return je}parseFragment(){return this.consumeOptional("#")?decodeURIComponent(this.remaining):null}parseChildren(){if(""===this.remaining)return{};this.consumeOptional("/");const je=[];for(this.peekStartsWith("(")||je.push(this.parseSegment());this.peekStartsWith("/")&&!this.peekStartsWith("//")&&!this.peekStartsWith("/(");)this.capture("/"),je.push(this.parseSegment());let Re={};this.peekStartsWith("/(")&&(this.capture("/"),Re=this.parseParens(!0));let We={};return this.peekStartsWith("(")&&(We=this.parseParens(!1)),(je.length>0||Object.keys(Re).length>0)&&(We[be]=new J(je,Re)),We}parseSegment(){const je=ti(this.remaining);if(""===je&&this.peekStartsWith(";"))throw new i.buA(4009,!1);return this.capture(je),new fe(Ue(je),this.parseMatrixParams())}parseMatrixParams(){const je={};for(;this.consumeOptional(";");)this.parseParam(je);return je}parseParam(je){const Re=function Nt(we){const je=we.match(Ye);return je?je[0]:""}(this.remaining);if(!Re)return;this.capture(Re);let We="";if(this.consumeOptional("=")){const _t=ti(this.remaining);_t&&(We=_t,this.capture(We))}je[Ue(Re)]=Ue(We)}parseQueryParam(je){const Re=function Jt(we){const je=we.match(Et);return je?je[0]:""}(this.remaining);if(!Re)return;this.capture(Re);let We="";if(this.consumeOptional("=")){const ri=function $e(we){const je=we.match(qe);return je?je[0]:""}(this.remaining);ri&&(We=ri,this.capture(We))}const _t=Ne(Re),Ut=Ne(We);if(je.hasOwnProperty(_t)){let ri=je[_t];Array.isArray(ri)||(ri=[ri],je[_t]=ri),ri.push(Ut)}else je[_t]=Ut}parseParens(je){const Re={};for(this.capture("(");!this.consumeOptional(")")&&this.remaining.length>0;){const We=ti(this.remaining),_t=this.remaining[We.length];if("/"!==_t&&")"!==_t&&";"!==_t)throw new i.buA(4010,!1);let Ut;We.indexOf(":")>-1?(Ut=We.slice(0,We.indexOf(":")),this.capture(Ut),this.capture(":")):je&&(Ut=be);const ri=this.parseChildren();Re[Ut??be]=1===Object.keys(ri).length&&ri[be]?ri[be]:new J([],ri),this.consumeOptional("//")}return Re}peekStartsWith(je){return this.remaining.startsWith(je)}consumeOptional(je){return!!this.peekStartsWith(je)&&(this.remaining=this.remaining.substring(je.length),!0)}capture(je){if(!this.consumeOptional(je))throw new i.buA(4011,!1)}}function vi(we){return we.segments.length>0?new J([],{[be]:we}):we}function ei(we){const je={};for(const[We,_t]of Object.entries(we.children)){const Ut=ei(_t);if(We===be&&0===Ut.segments.length&&Ut.hasChildren())for(const[ri,Di]of Object.entries(Ut.children))je[ri]=Di;else(Ut.segments.length>0||Ut.hasChildren())&&(je[We]=Ut)}return function ci(we){if(1===we.numberOfChildren&&we.children[be]){const je=we.children[be];return new J(we.segments.concat(je.segments),je.children)}return we}(new J(we.segments,je))}function Hi(we){return we instanceof Z}function ui(we){let je;const _t=vi(function Re(Ut){const ri={};for(const Zi of Ut.children){const On=Re(Zi);ri[Zi.outlet]=On}const Di=new J(Ut.url,ri);return Ut===we&&(je=Di),Di}(we.root));return je??_t}function ln(we,je,Re,We){let _t=we;for(;_t.parent;)_t=_t.parent;if(0===je.length)return zn(_t,_t,_t,Re,We);const Ut=function Ze(we){if("string"==typeof we[0]&&1===we.length&&"/"===we[0])return new Tt(!0,0,we);let je=0,Re=!1;const We=we.reduce((_t,Ut,ri)=>{if("object"==typeof Ut&&null!=Ut){if(Ut.outlets){const Di={};return Object.entries(Ut.outlets).forEach(([Zi,On])=>{Di[Zi]="string"==typeof On?On.split("/"):On}),[..._t,{outlets:Di}]}if(Ut.segmentPath)return[..._t,Ut.segmentPath]}return"string"!=typeof Ut?[..._t,Ut]:0===ri?(Ut.split("/").forEach((Di,Zi)=>{0==Zi&&"."===Di||(0==Zi&&""===Di?Re=!0:".."===Di?je++:""!=Di&&_t.push(Di))}),_t):[..._t,Ut]},[]);return new Tt(Re,je,We)}(je);if(Ut.toRoot())return zn(_t,_t,new J([],{}),Re,We);const ri=function Fe(we,je,Re){if(we.isAbsolute)return new Ve(je,!0,0);if(!Re)return new Ve(je,!1,NaN);if(null===Re.parent)return new Ve(Re,!0,0);const We=nn(we.commands[0])?0:1;return function it(we,je,Re){let We=we,_t=je,Ut=Re;for(;Ut>_t;){if(Ut-=_t,We=We.parent,!We)throw new i.buA(4005,!1);_t=We.segments.length}return new Ve(We,!1,_t-Ut)}(Re,Re.segments.length-1+We,we.numberOfDoubleDots)}(Ut,_t,we),Di=ri.processChildren?jt(ri.segmentGroup,ri.index,Ut.commands):ut(ri.segmentGroup,ri.index,Ut.commands);return zn(_t,ri.segmentGroup,Di,Re,We)}function nn(we){return"object"==typeof we&&null!=we&&!we.outlets&&!we.segmentPath}function dn(we){return"object"==typeof we&&null!=we&&we.outlets}function zn(we,je,Re,We,_t){let ri,Ut={};We&&Object.entries(We).forEach(([Zi,On])=>{Ut[Zi]=Array.isArray(On)?On.map(Ma=>`${Ma}`):`${On}`}),ri=we===je?Re:It(we,je,Re);const Di=vi(ei(ri));return new Z(Di,Ut,_t)}function It(we,je,Re){const We={};return Object.entries(we.children).forEach(([_t,Ut])=>{We[_t]=Ut===je?Re:It(Ut,je,Re)}),new J(we.segments,We)}class Tt{isAbsolute;numberOfDoubleDots;commands;constructor(je,Re,We){if(this.isAbsolute=je,this.numberOfDoubleDots=Re,this.commands=We,je&&We.length>0&&nn(We[0]))throw new i.buA(4003,!1);const _t=We.find(dn);if(_t&&_t!==Ee(We))throw new i.buA(4004,!1)}toRoot(){return this.isAbsolute&&1===this.commands.length&&"/"==this.commands[0]}}class Ve{segmentGroup;processChildren;index;constructor(je,Re,We){this.segmentGroup=je,this.processChildren=Re,this.index=We}}function ut(we,je,Re){if(we??=new J([],{}),0===we.segments.length&&we.hasChildren())return jt(we,je,Re);const We=function ai(we,je,Re){let We=0,_t=je;const Ut={match:!1,pathIndex:0,commandIndex:0};for(;_t=Re.length)return Ut;const ri=we.segments[_t],Di=Re[We];if(dn(Di))break;const Zi=`${Di}`,On=We0&&void 0===Zi)break;if(Zi&&On&&"object"==typeof On&&void 0===On.outlets){if(!Ji(Zi,On,ri))return Ut;We+=2}else{if(!Ji(Zi,{},ri))return Ut;We++}_t++}return{match:!0,pathIndex:_t,commandIndex:We}}(we,je,Re),_t=Re.slice(We.commandIndex);if(We.match&&We.pathIndexUt!==be)&&we.children[be]&&1===we.numberOfChildren&&0===we.children[be].segments.length){const Ut=jt(we.children[be],je,Re);return new J(we.segments,Ut.children)}return Object.entries(We).forEach(([Ut,ri])=>{"string"==typeof ri&&(ri=[ri]),null!==ri&&(_t[Ut]=ut(we.children[Ut],je,ri))}),Object.entries(we.children).forEach(([Ut,ri])=>{void 0===We[Ut]&&(_t[Ut]=ri)}),new J(we.segments,_t)}}function pi(we,je,Re){const We=we.segments.slice(0,je);let _t=0;for(;_t{"string"==typeof We&&(We=[We]),null!==We&&(je[Re]=pi(new J([],{}),0,We))}),je}function Ki(we){const je={};return Object.entries(we).forEach(([Re,We])=>je[Re]=`${We}`),je}function Ji(we,je,Re){return we==Re.path&&ge(je,Re.parameters)}const Dn="imperative";var En=function(we){return we[we.NavigationStart=0]="NavigationStart",we[we.NavigationEnd=1]="NavigationEnd",we[we.NavigationCancel=2]="NavigationCancel",we[we.NavigationError=3]="NavigationError",we[we.RoutesRecognized=4]="RoutesRecognized",we[we.ResolveStart=5]="ResolveStart",we[we.ResolveEnd=6]="ResolveEnd",we[we.GuardsCheckStart=7]="GuardsCheckStart",we[we.GuardsCheckEnd=8]="GuardsCheckEnd",we[we.RouteConfigLoadStart=9]="RouteConfigLoadStart",we[we.RouteConfigLoadEnd=10]="RouteConfigLoadEnd",we[we.ChildActivationStart=11]="ChildActivationStart",we[we.ChildActivationEnd=12]="ChildActivationEnd",we[we.ActivationStart=13]="ActivationStart",we[we.ActivationEnd=14]="ActivationEnd",we[we.Scroll=15]="Scroll",we[we.NavigationSkipped=16]="NavigationSkipped",we}(En||{});class An{id;url;constructor(je,Re){this.id=je,this.url=Re}}class Fn extends An{type=En.NavigationStart;navigationTrigger;restoredState;constructor(je,Re,We="imperative",_t=null){super(je,Re),this.navigationTrigger=We,this.restoredState=_t}toString(){return`NavigationStart(id: ${this.id}, url: '${this.url}')`}}class xi extends An{urlAfterRedirects;type=En.NavigationEnd;constructor(je,Re,We){super(je,Re),this.urlAfterRedirects=We}toString(){return`NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`}}var Gi=function(we){return we[we.Redirect=0]="Redirect",we[we.SupersededByNewNavigation=1]="SupersededByNewNavigation",we[we.NoDataFromResolver=2]="NoDataFromResolver",we[we.GuardRejected=3]="GuardRejected",we[we.Aborted=4]="Aborted",we}(Gi||{}),Ci=function(we){return we[we.IgnoredSameUrlNavigation=0]="IgnoredSameUrlNavigation",we[we.IgnoredByUrlHandlingStrategy=1]="IgnoredByUrlHandlingStrategy",we}(Ci||{});class Ai extends An{reason;code;type=En.NavigationCancel;constructor(je,Re,We,_t){super(je,Re),this.reason=We,this.code=_t}toString(){return`NavigationCancel(id: ${this.id}, url: '${this.url}')`}}class Yi extends An{reason;code;type=En.NavigationSkipped;constructor(je,Re,We,_t){super(je,Re),this.reason=We,this.code=_t}}class zt extends An{error;target;type=En.NavigationError;constructor(je,Re,We,_t){super(je,Re),this.error=We,this.target=_t}toString(){return`NavigationError(id: ${this.id}, url: '${this.url}', error: ${this.error})`}}class ji extends An{urlAfterRedirects;state;type=En.RoutesRecognized;constructor(je,Re,We,_t){super(je,Re),this.urlAfterRedirects=We,this.state=_t}toString(){return`RoutesRecognized(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Me extends An{urlAfterRedirects;state;type=En.GuardsCheckStart;constructor(je,Re,We,_t){super(je,Re),this.urlAfterRedirects=We,this.state=_t}toString(){return`GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class mt extends An{urlAfterRedirects;state;shouldActivate;type=En.GuardsCheckEnd;constructor(je,Re,We,_t,Ut){super(je,Re),this.urlAfterRedirects=We,this.state=_t,this.shouldActivate=Ut}toString(){return`GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`}}class vt extends An{urlAfterRedirects;state;type=En.ResolveStart;constructor(je,Re,We,_t){super(je,Re),this.urlAfterRedirects=We,this.state=_t}toString(){return`ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class ni extends An{urlAfterRedirects;state;type=En.ResolveEnd;constructor(je,Re,We,_t){super(je,Re),this.urlAfterRedirects=We,this.state=_t}toString(){return`ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Fi{route;type=En.RouteConfigLoadStart;constructor(je){this.route=je}toString(){return`RouteConfigLoadStart(path: ${this.route.path})`}}class kn{route;type=En.RouteConfigLoadEnd;constructor(je){this.route=je}toString(){return`RouteConfigLoadEnd(path: ${this.route.path})`}}class ca{snapshot;type=En.ChildActivationStart;constructor(je){this.snapshot=je}toString(){return`ChildActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class an{snapshot;type=En.ChildActivationEnd;constructor(je){this.snapshot=je}toString(){return`ChildActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class mn{snapshot;type=En.ActivationStart;constructor(je){this.snapshot=je}toString(){return`ActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class qn{snapshot;type=En.ActivationEnd;constructor(je){this.snapshot=je}toString(){return`ActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class mr{routerEvent;position;anchor;type=En.Scroll;constructor(je,Re,We){this.routerEvent=je,this.position=Re,this.anchor=We}toString(){return`Scroll(anchor: '${this.anchor}', position: '${this.position?`${this.position[0]}, ${this.position[1]}`:null}')`}}class fi{}class Mi{url;navigationBehaviorOptions;constructor(je,Re){this.url=je,this.navigationBehaviorOptions=Re}}function wi(we){switch(we.type){case En.ActivationEnd:return`ActivationEnd(path: '${we.snapshot.routeConfig?.path||""}')`;case En.ActivationStart:return`ActivationStart(path: '${we.snapshot.routeConfig?.path||""}')`;case En.ChildActivationEnd:return`ChildActivationEnd(path: '${we.snapshot.routeConfig?.path||""}')`;case En.ChildActivationStart:return`ChildActivationStart(path: '${we.snapshot.routeConfig?.path||""}')`;case En.GuardsCheckEnd:return`GuardsCheckEnd(id: ${we.id}, url: '${we.url}', urlAfterRedirects: '${we.urlAfterRedirects}', state: ${we.state}, shouldActivate: ${we.shouldActivate})`;case En.GuardsCheckStart:return`GuardsCheckStart(id: ${we.id}, url: '${we.url}', urlAfterRedirects: '${we.urlAfterRedirects}', state: ${we.state})`;case En.NavigationCancel:return`NavigationCancel(id: ${we.id}, url: '${we.url}')`;case En.NavigationSkipped:return`NavigationSkipped(id: ${we.id}, url: '${we.url}')`;case En.NavigationEnd:return`NavigationEnd(id: ${we.id}, url: '${we.url}', urlAfterRedirects: '${we.urlAfterRedirects}')`;case En.NavigationError:return`NavigationError(id: ${we.id}, url: '${we.url}', error: ${we.error})`;case En.NavigationStart:return`NavigationStart(id: ${we.id}, url: '${we.url}')`;case En.ResolveEnd:return`ResolveEnd(id: ${we.id}, url: '${we.url}', urlAfterRedirects: '${we.urlAfterRedirects}', state: ${we.state})`;case En.ResolveStart:return`ResolveStart(id: ${we.id}, url: '${we.url}', urlAfterRedirects: '${we.urlAfterRedirects}', state: ${we.state})`;case En.RouteConfigLoadEnd:return`RouteConfigLoadEnd(path: ${we.route.path})`;case En.RouteConfigLoadStart:return`RouteConfigLoadStart(path: ${we.route.path})`;case En.RoutesRecognized:return`RoutesRecognized(id: ${we.id}, url: '${we.url}', urlAfterRedirects: '${we.urlAfterRedirects}', state: ${we.state})`;case En.Scroll:return`Scroll(anchor: '${we.anchor}', position: '${we.position?`${we.position[0]}, ${we.position[1]}`:null}')`}}function Bi(we){return we.outlet||be}function fn(we){if(!we)return null;if(we.routeConfig?._injector)return we.routeConfig._injector;for(let je=we.parent;je;je=je.parent){const Re=je.routeConfig;if(Re?._loadedInjector)return Re._loadedInjector;if(Re?._injector)return Re._injector}return null}class ma{rootInjector;outlet=null;route=null;children;attachRef=null;get injector(){return fn(this.route?.snapshot)??this.rootInjector}constructor(je){this.rootInjector=je,this.children=new da(this.rootInjector)}}let da=(()=>{class we{rootInjector;contexts=new Map;constructor(Re){this.rootInjector=Re}onChildOutletCreated(Re,We){const _t=this.getOrCreateContext(Re);_t.outlet=We,this.contexts.set(Re,_t)}onChildOutletDestroyed(Re){const We=this.getContext(Re);We&&(We.outlet=null,We.attachRef=null)}onOutletDeactivated(){const Re=this.contexts;return this.contexts=new Map,Re}onOutletReAttached(Re){this.contexts=Re}getOrCreateContext(Re){let We=this.getContext(Re);return We||(We=new ma(this.rootInjector),this.contexts.set(Re,We)),We}getContext(Re){return this.contexts.get(Re)||null}static \u0275fac=function(We){return new(We||we)(i.KVO(i.uvJ))};static \u0275prov=i.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})();class ga{_root;constructor(je){this._root=je}get root(){return this._root.value}parent(je){const Re=this.pathFromRoot(je);return Re.length>1?Re[Re.length-2]:null}children(je){const Re=Zn(je,this._root);return Re?Re.children.map(We=>We.value):[]}firstChild(je){const Re=Zn(je,this._root);return Re&&Re.children.length>0?Re.children[0].value:null}siblings(je){const Re=Sa(je,this._root);return Re.length<2?[]:Re[Re.length-2].children.map(_t=>_t.value).filter(_t=>_t!==je)}pathFromRoot(je){return Sa(je,this._root).map(Re=>Re.value)}}function Zn(we,je){if(we===je.value)return je;for(const Re of je.children){const We=Zn(we,Re);if(We)return We}return null}function Sa(we,je){if(we===je.value)return[je];for(const Re of je.children){const We=Sa(we,Re);if(We.length)return We.unshift(je),We}return[]}class ia{value;children;constructor(je,Re){this.value=je,this.children=Re}toString(){return`TreeNode(${this.value})`}}function pa(we){const je={};return we&&we.children.forEach(Re=>je[Re.value.outlet]=Re),je}class Er extends ga{snapshot;constructor(je,Re){super(je),this.snapshot=Re,Fa(this,je)}toString(){return this.snapshot.toString()}}function xa(we){const je=function Xr(we){const Ut=new ja([],{},{},"",{},be,we,null,{});return new Wa("",new ia(Ut,[]))}(we),Re=new d.t([new fe("",{})]),We=new d.t({}),_t=new d.t({}),Ut=new d.t({}),ri=new d.t(""),Di=new Ta(Re,We,Ut,ri,_t,be,we,je.root);return Di.snapshot=je.root,new Er(new ia(Di,[]),je)}class Ta{urlSubject;paramsSubject;queryParamsSubject;fragmentSubject;dataSubject;outlet;component;snapshot;_futureSnapshot;_routerState;_paramMap;_queryParamMap;title;url;params;queryParams;fragment;data;constructor(je,Re,We,_t,Ut,ri,Di,Zi){this.urlSubject=je,this.paramsSubject=Re,this.queryParamsSubject=We,this.fragmentSubject=_t,this.dataSubject=Ut,this.outlet=ri,this.component=Di,this._futureSnapshot=Zi,this.title=this.dataSubject?.pipe((0,ae.T)(On=>On[Be]))??(0,g.of)(void 0),this.url=je,this.params=Re,this.queryParams=We,this.fragment=_t,this.data=Ut}get routeConfig(){return this._futureSnapshot.routeConfig}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap??=this.params.pipe((0,ae.T)(je=>ye(je))),this._paramMap}get queryParamMap(){return this._queryParamMap??=this.queryParams.pipe((0,ae.T)(je=>ye(je))),this._queryParamMap}toString(){return this.snapshot?this.snapshot.toString():`Future(${this._futureSnapshot})`}}function wr(we,je,Re="emptyOnly"){let We;const{routeConfig:_t}=we;return We=null===je||"always"!==Re&&""!==_t?.path&&(je.component||je.routeConfig?.loadComponent)?{params:{...we.params},data:{...we.data},resolve:{...we.data,...we._resolvedData??{}}}:{params:{...je.params,...we.params},data:{...je.data,...we.data},resolve:{...we.data,...je.data,..._t?.data,...we._resolvedData}},_t&&or(_t)&&(We.resolve[Be]=_t.title),We}class ja{url;params;queryParams;fragment;data;outlet;component;routeConfig;_resolve;_resolvedData;_routerState;_paramMap;_queryParamMap;get title(){return this.data?.[Be]}constructor(je,Re,We,_t,Ut,ri,Di,Zi,On){this.url=je,this.params=Re,this.queryParams=We,this.fragment=_t,this.data=Ut,this.outlet=ri,this.component=Di,this.routeConfig=Zi,this._resolve=On}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap??=ye(this.params),this._paramMap}get queryParamMap(){return this._queryParamMap??=ye(this.queryParams),this._queryParamMap}toString(){return`Route(url:'${this.url.map(We=>We.toString()).join("/")}', path:'${this.routeConfig?this.routeConfig.path:""}')`}}class Wa extends ga{url;constructor(je,Re){super(Re),this.url=je,Fa(this,Re)}toString(){return Br(this._root)}}function Fa(we,je){je.value._routerState=we,je.children.forEach(Re=>Fa(we,Re))}function Br(we){const je=we.children.length>0?` { ${we.children.map(Br).join(", ")} } `:"";return`${we.value}${je}`}function ys(we){if(we.snapshot){const je=we.snapshot,Re=we._futureSnapshot;we.snapshot=Re,ge(je.queryParams,Re.queryParams)||we.queryParamsSubject.next(Re.queryParams),je.fragment!==Re.fragment&&we.fragmentSubject.next(Re.fragment),ge(je.params,Re.params)||we.paramsSubject.next(Re.params),function Ke(we,je){if(we.length!==je.length)return!1;for(let Re=0;Rege(Re.parameters,je[We].parameters))}(we.url,je.url);return Re&&!(!we.parent!=!je.parent)&&(!we.parent||Kr(we.parent,je.parent))}function or(we){return"string"==typeof we.title||null===we.title}const os=new i.nKC("");let Yr=(()=>{class we{activated=null;get activatedComponentRef(){return this.activated}_activatedRoute=null;name=be;activateEvents=new p.bkB;deactivateEvents=new p.bkB;attachEvents=new p.bkB;detachEvents=new p.bkB;routerOutletData=(0,S.hFB)();parentContexts=(0,i.WQX)(da);location=(0,i.WQX)(p.c1b);changeDetector=(0,i.WQX)(S.gRc);inputBinder=(0,i.WQX)(Qr,{optional:!0});supportsBindingToComponentInputs=!0;ngOnChanges(Re){if(Re.name){const{firstChange:We,previousValue:_t}=Re.name;if(We)return;this.isTrackedInParentContexts(_t)&&(this.deactivate(),this.parentContexts.onChildOutletDestroyed(_t)),this.initializeOutletWithName()}}ngOnDestroy(){this.isTrackedInParentContexts(this.name)&&this.parentContexts.onChildOutletDestroyed(this.name),this.inputBinder?.unsubscribeFromRouteData(this)}isTrackedInParentContexts(Re){return this.parentContexts.getContext(Re)?.outlet===this}ngOnInit(){this.initializeOutletWithName()}initializeOutletWithName(){if(this.parentContexts.onChildOutletCreated(this.name,this),this.activated)return;const Re=this.parentContexts.getContext(this.name);Re?.route&&(Re.attachRef?this.attach(Re.attachRef,Re.route):this.activateWith(Re.route,Re.injector))}get isActivated(){return!!this.activated}get component(){if(!this.activated)throw new i.buA(4012,!1);return this.activated.instance}get activatedRoute(){if(!this.activated)throw new i.buA(4012,!1);return this._activatedRoute}get activatedRouteData(){return this._activatedRoute?this._activatedRoute.snapshot.data:{}}detach(){if(!this.activated)throw new i.buA(4012,!1);this.location.detach();const Re=this.activated;return this.activated=null,this._activatedRoute=null,this.detachEvents.emit(Re.instance),Re}attach(Re,We){this.activated=Re,this._activatedRoute=We,this.location.insert(Re.hostView),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.attachEvents.emit(Re.instance)}deactivate(){if(this.activated){const Re=this.component;this.activated.destroy(),this.activated=null,this._activatedRoute=null,this.deactivateEvents.emit(Re)}}activateWith(Re,We){if(this.isActivated)throw new i.buA(4013,!1);this._activatedRoute=Re;const _t=this.location,ri=Re.snapshot.component,Di=this.parentContexts.getOrCreateContext(this.name).children,Zi=new bs(Re,Di,_t.injector,this.routerOutletData);this.activated=_t.createComponent(ri,{index:_t.length,injector:Zi,environmentInjector:We}),this.changeDetector.markForCheck(),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.activateEvents.emit(this.activated.instance)}static \u0275fac=function(We){return new(We||we)};static \u0275dir=p.FsC({type:we,selectors:[["router-outlet"]],inputs:{name:"name",routerOutletData:[1,"routerOutletData"]},outputs:{activateEvents:"activate",deactivateEvents:"deactivate",attachEvents:"attach",detachEvents:"detach"},exportAs:["outlet"],features:[p.OA$]})}return we})();class bs{route;childContexts;parent;outletData;constructor(je,Re,We,_t){this.route=je,this.childContexts=Re,this.parent=We,this.outletData=_t}get(je,Re){return je===Ta?this.route:je===da?this.childContexts:je===os?this.outletData:this.parent.get(je,Re)}}const Qr=new i.nKC("");let no=(()=>{class we{outletDataSubscriptions=new Map;bindActivatedRouteToOutletComponent(Re){this.unsubscribeFromRouteData(Re),this.subscribeToRouteData(Re)}unsubscribeFromRouteData(Re){this.outletDataSubscriptions.get(Re)?.unsubscribe(),this.outletDataSubscriptions.delete(Re)}subscribeToRouteData(Re){const{activatedRoute:We}=Re,_t=(0,w.z)([We.queryParams,We.params,We.data]).pipe((0,ue.n)(([Ut,ri,Di],Zi)=>(Di={...Ut,...ri,...Di},0===Zi?(0,g.of)(Di):Promise.resolve(Di)))).subscribe(Ut=>{if(!Re.isActivated||!Re.activatedComponentRef||Re.activatedRoute!==We||null===We.component)return void this.unsubscribeFromRouteData(Re);const ri=(0,S.HJs)(We.component);if(ri)for(const{templateName:Di}of ri.inputs)Re.activatedComponentRef.setInput(Di,Ut[Di]);else this.unsubscribeFromRouteData(Re)});this.outletDataSubscriptions.set(Re,_t)}static \u0275fac=function(We){return new(We||we)};static \u0275prov=i.jDH({token:we,factory:we.\u0275fac})}return we})(),ls=(()=>{class we{static \u0275fac=function(We){return new(We||we)};static \u0275cmp=p.VBU({type:we,selectors:[["ng-component"]],exportAs:["emptyRouterOutlet"],decls:1,vars:0,template:function(We,_t){1&We&&p.nrm(0,"router-outlet")},dependencies:[Yr],encapsulation:2})}return we})();function cs(we){const je=we.children&&we.children.map(cs),Re=je?{...we,children:je}:{...we};return!Re.component&&!Re.loadComponent&&(je||Re.loadChildren)&&Re.outlet&&Re.outlet!==be&&(Re.component=ls),Re}function $r(we,je,Re){if(Re&&we.shouldReuseRoute(je.value,Re.value.snapshot)){const We=Re.value;We._futureSnapshot=je.value;const _t=function Lt(we,je,Re){return je.children.map(We=>{for(const _t of Re.children)if(we.shouldReuseRoute(We.value,_t.value.snapshot))return $r(we,We,_t);return $r(we,We)})}(we,je,Re);return new ia(We,_t)}{if(we.shouldAttach(je.value)){const Ut=we.retrieve(je.value);if(null!==Ut){const ri=Ut.route;return ri.value._futureSnapshot=je.value,ri.children=je.children.map(Di=>$r(we,Di)),ri}}const We=function rt(we){return new Ta(new d.t(we.url),new d.t(we.params),new d.t(we.queryParams),new d.t(we.fragment),new d.t(we.data),we.outlet,we.component,we)}(je.value),_t=je.children.map(Ut=>$r(we,Ut));return new ia(We,_t)}}class wt{redirectTo;navigationBehaviorOptions;constructor(je,Re){this.redirectTo=je,this.navigationBehaviorOptions=Re}}const ii="ngNavigationCancelingError";function Ii(we,je){const{redirectTo:Re,navigationBehaviorOptions:We}=Hi(je)?{redirectTo:je,navigationBehaviorOptions:void 0}:je,_t=Ui(!1,Gi.Redirect);return _t.url=Re,_t.navigationBehaviorOptions=We,_t}function Ui(we,je){const Re=new Error(`NavigationCancelingError: ${we||""}`);return Re[ii]=!0,Re.cancellationCode=je,Re}function yn(we){return!!we&&we[ii]}class Jn{routeReuseStrategy;futureState;currState;forwardEvent;inputBindingEnabled;constructor(je,Re,We,_t,Ut){this.routeReuseStrategy=je,this.futureState=Re,this.currState=We,this.forwardEvent=_t,this.inputBindingEnabled=Ut}activate(je){const Re=this.futureState._root,We=this.currState?this.currState._root:null;this.deactivateChildRoutes(Re,We,je),ys(this.futureState.root),this.activateChildRoutes(Re,We,je)}deactivateChildRoutes(je,Re,We){const _t=pa(Re);je.children.forEach(Ut=>{const ri=Ut.value.outlet;this.deactivateRoutes(Ut,_t[ri],We),delete _t[ri]}),Object.values(_t).forEach(Ut=>{this.deactivateRouteAndItsChildren(Ut,We)})}deactivateRoutes(je,Re,We){const _t=je.value,Ut=Re?Re.value:null;if(_t===Ut)if(_t.component){const ri=We.getContext(_t.outlet);ri&&this.deactivateChildRoutes(je,Re,ri.children)}else this.deactivateChildRoutes(je,Re,We);else Ut&&this.deactivateRouteAndItsChildren(Re,We)}deactivateRouteAndItsChildren(je,Re){je.value.component&&this.routeReuseStrategy.shouldDetach(je.value.snapshot)?this.detachAndStoreRouteSubtree(je,Re):this.deactivateRouteAndOutlet(je,Re)}detachAndStoreRouteSubtree(je,Re){const We=Re.getContext(je.value.outlet),_t=We&&je.value.component?We.children:Re,Ut=pa(je);for(const ri of Object.values(Ut))this.deactivateRouteAndItsChildren(ri,_t);if(We&&We.outlet){const ri=We.outlet.detach(),Di=We.children.onOutletDeactivated();this.routeReuseStrategy.store(je.value.snapshot,{componentRef:ri,route:je,contexts:Di})}}deactivateRouteAndOutlet(je,Re){const We=Re.getContext(je.value.outlet),_t=We&&je.value.component?We.children:Re,Ut=pa(je);for(const ri of Object.values(Ut))this.deactivateRouteAndItsChildren(ri,_t);We&&(We.outlet&&(We.outlet.deactivate(),We.children.onOutletDeactivated()),We.attachRef=null,We.route=null)}activateChildRoutes(je,Re,We){const _t=pa(Re);je.children.forEach(Ut=>{this.activateRoutes(Ut,_t[Ut.value.outlet],We),this.forwardEvent(new qn(Ut.value.snapshot))}),je.children.length&&this.forwardEvent(new an(je.value.snapshot))}activateRoutes(je,Re,We){const _t=je.value,Ut=Re?Re.value:null;if(ys(_t),_t===Ut)if(_t.component){const ri=We.getOrCreateContext(_t.outlet);this.activateChildRoutes(je,Re,ri.children)}else this.activateChildRoutes(je,Re,We);else if(_t.component){const ri=We.getOrCreateContext(_t.outlet);if(this.routeReuseStrategy.shouldAttach(_t.snapshot)){const Di=this.routeReuseStrategy.retrieve(_t.snapshot);this.routeReuseStrategy.store(_t.snapshot,null),ri.children.onOutletReAttached(Di.contexts),ri.attachRef=Di.componentRef,ri.route=Di.route.value,ri.outlet&&ri.outlet.attach(Di.componentRef,Di.route.value),ys(Di.route.value),this.activateChildRoutes(je,null,ri.children)}else ri.attachRef=null,ri.route=_t,ri.outlet&&ri.outlet.activateWith(_t,ri.injector),this.activateChildRoutes(je,null,ri.children)}else this.activateChildRoutes(je,null,We)}}class Un{path;route;constructor(je){this.path=je,this.route=this.path[this.path.length-1]}}class Ca{component;route;constructor(je,Re){this.component=je,this.route=Re}}function Aa(we,je,Re){const We=we._root;return Xa(We,je?je._root:null,Re,[We.value])}function Ra(we,je){const Re=Symbol(),We=je.get(we,Re);return We===Re?"function"!=typeof we||(0,i.muV)(we)?je.get(we):we:We}function Xa(we,je,Re,We,_t={canDeactivateChecks:[],canActivateChecks:[]}){const Ut=pa(je);return we.children.forEach(ri=>{(function za(we,je,Re,We,_t={canDeactivateChecks:[],canActivateChecks:[]}){const Ut=we.value,ri=je?je.value:null,Di=Re?Re.getContext(we.value.outlet):null;if(ri&&Ut.routeConfig===ri.routeConfig){const Zi=function vr(we,je,Re){if("function"==typeof Re)return Re(we,je);switch(Re){case"pathParamsChange":return!ht(we.url,je.url);case"pathParamsOrQueryParamsChange":return!ht(we.url,je.url)||!ge(we.queryParams,je.queryParams);case"always":return!0;case"paramsOrQueryParamsChange":return!Kr(we,je)||!ge(we.queryParams,je.queryParams);default:return!Kr(we,je)}}(ri,Ut,Ut.routeConfig.runGuardsAndResolvers);Zi?_t.canActivateChecks.push(new Un(We)):(Ut.data=ri.data,Ut._resolvedData=ri._resolvedData),Xa(we,je,Ut.component?Di?Di.children:null:Re,We,_t),Zi&&Di&&Di.outlet&&Di.outlet.isActivated&&_t.canDeactivateChecks.push(new Ca(Di.outlet.component,ri))}else ri&&Sn(je,Di,_t),_t.canActivateChecks.push(new Un(We)),Xa(we,null,Ut.component?Di?Di.children:null:Re,We,_t)})(ri,Ut[ri.value.outlet],Re,We.concat([ri.value]),_t),delete Ut[ri.value.outlet]}),Object.entries(Ut).forEach(([ri,Di])=>Sn(Di,Re.getContext(ri),_t)),_t}function Sn(we,je,Re){const We=pa(we),_t=we.value;Object.entries(We).forEach(([Ut,ri])=>{Sn(ri,_t.component?je?je.children.getContext(Ut):null:je,Re)}),Re.canDeactivateChecks.push(new Ca(_t.component&&je&&je.outlet&&je.outlet.isActivated?je.outlet.component:null,_t))}function ka(we){return"function"==typeof we}function Oa(we){return we instanceof m.G||"EmptyError"===we?.name}const Wt=Symbol("INITIAL_VALUE");function Ri(){return(0,ue.n)(we=>(0,w.z)(we.map(je=>je.pipe((0,oe.s)(1),(0,he.Z)(Wt)))).pipe((0,ae.T)(je=>{for(const Re of je)if(!0!==Re){if(Re===Wt)return Wt;if(!1===Re||ft(Re))return Re}return!0}),(0,me.p)(je=>je!==Wt),(0,oe.s)(1)))}function ft(we){return Hi(we)||we instanceof wt}function ea(we){return(0,j.F)((0,o.M)(je=>{if("boolean"!=typeof je)throw Ii(0,je)}),(0,ae.T)(je=>!0===je))}class Ts{segmentGroup;constructor(je){this.segmentGroup=je||null}}class Rs extends Error{urlTree;constructor(je){super(),this.urlTree=je}}function Gs(we){return(0,U.$)(new Ts(we))}function Oo(we){return(0,U.$)(new i.buA(4e3,!1))}class ro{urlSerializer;urlTree;constructor(je,Re){this.urlSerializer=je,this.urlTree=Re}lineralizeSegments(je,Re){let We=[],_t=Re.root;for(;;){if(We=We.concat(_t.segments),0===_t.numberOfChildren)return(0,g.of)(We);if(_t.numberOfChildren>1||!_t.children[be])return Oo();_t=_t.children[be]}}applyRedirectCommands(je,Re,We,_t,Ut){return function As(we,je,Re){if("string"==typeof we)return(0,g.of)(we);const We=we,{queryParams:_t,fragment:Ut,routeConfig:ri,url:Di,outlet:Zi,params:On,data:Ma,title:yr}=je;return dt((0,i.N4e)(Re,()=>We({params:On,data:Ma,queryParams:_t,fragment:Ut,routeConfig:ri,url:Di,outlet:Zi,title:yr})))}(Re,_t,Ut).pipe((0,ae.T)(ri=>{if(ri instanceof Z)throw new Rs(ri);const Di=this.applyRedirectCreateUrlTree(ri,this.urlSerializer.parse(ri),je,We);if("/"===ri[0])throw new Rs(Di);return Di}))}applyRedirectCreateUrlTree(je,Re,We,_t){const Ut=this.createSegmentGroup(je,Re.root,We,_t);return new Z(Ut,this.createQueryParams(Re.queryParams,this.urlTree.queryParams),Re.fragment)}createQueryParams(je,Re){const We={};return Object.entries(je).forEach(([_t,Ut])=>{if("string"==typeof Ut&&":"===Ut[0]){const Di=Ut.substring(1);We[_t]=Re[Di]}else We[_t]=Ut}),We}createSegmentGroup(je,Re,We,_t){const Ut=this.createSegments(je,Re.segments,We,_t);let ri={};return Object.entries(Re.children).forEach(([Di,Zi])=>{ri[Di]=this.createSegmentGroup(je,Zi,We,_t)}),new J(Ut,ri)}createSegments(je,Re,We,_t){return Re.map(Ut=>":"===Ut.path[0]?this.findPosParam(je,Ut,_t):this.findOrReturn(Ut,We))}findPosParam(je,Re,We){const _t=We[Re.path.substring(1)];if(!_t)throw new i.buA(4001,!1);return _t}findOrReturn(je,Re){let We=0;for(const _t of Re){if(_t.path===je.path)return Re.splice(We),_t;We++}return je}}const Os={matched:!1,consumedSegments:[],remainingSegments:[],parameters:{},positionalParamSegments:{}};function Po(we,je,Re,We,_t){const Ut=Ps(we,je,Re);return Ut.matched?(We=function Xe(we,je){return we.providers&&!we._injector&&(we._injector=(0,p.Ol2)(we.providers,je,`Route: ${we.path}`)),we._injector??je}(je,We),function lr(we,je,Re,We){const _t=je.canMatch;if(!_t||0===_t.length)return(0,g.of)(!0);const Ut=_t.map(ri=>{const Di=Ra(ri,we);return dt(function Ss(we){return we&&ka(we.canMatch)}(Di)?Di.canMatch(je,Re):(0,i.N4e)(we,()=>Di(je,Re)))});return(0,g.of)(Ut).pipe(Ri(),ea())}(We,je,Re).pipe((0,ae.T)(ri=>!0===ri?Ut:{...Os}))):(0,g.of)(Ut)}function Ps(we,je,Re){if("**"===je.path)return function vo(we){return{matched:!0,parameters:we.length>0?Ee(we).parameters:{},consumedSegments:we,remainingSegments:[],positionalParamSegments:{}}}(Re);if(""===je.path)return"full"===je.pathMatch&&(we.hasChildren()||Re.length>0)?{...Os}:{matched:!0,consumedSegments:[],remainingSegments:Re,parameters:{},positionalParamSegments:{}};const _t=(je.matcher||Le)(Re,we,je);if(!_t)return{...Os};const Ut={};Object.entries(_t.posParams??{}).forEach(([Di,Zi])=>{Ut[Di]=Zi.path});const ri=_t.consumed.length>0?{...Ut,..._t.consumed[_t.consumed.length-1].parameters}:Ut;return{matched:!0,consumedSegments:_t.consumed,remainingSegments:Re.slice(_t.consumed.length),parameters:ri,positionalParamSegments:_t.posParams??{}}}function Sr(we,je,Re,We){return Re.length>0&&function Fo(we,je,Re){return Re.some(We=>bo(we,je,We)&&Bi(We)!==be)}(we,Re,We)?{segmentGroup:new J(je,qi(We,new J(Re,we.children))),slicedSegments:[]}:0===Re.length&&function yo(we,je,Re){return Re.some(We=>bo(we,je,We))}(we,Re,We)?{segmentGroup:new J(we.segments,Ua(we,Re,We,we.children)),slicedSegments:Re}:{segmentGroup:new J(we.segments,we.children),slicedSegments:Re}}function Ua(we,je,Re,We){const _t={};for(const Ut of Re)if(bo(we,je,Ut)&&!We[Bi(Ut)]){const ri=new J([],{});_t[Bi(Ut)]=ri}return{...We,..._t}}function qi(we,je){const Re={};Re[be]=je;for(const We of we)if(""===We.path&&Bi(We)!==be){const _t=new J([],{});Re[Bi(We)]=_t}return Re}function bo(we,je,Re){return(!(we.hasChildren()||je.length>0)||"full"!==Re.pathMatch)&&""===Re.path}class xo{}class jl{injector;configLoader;rootComponentType;config;urlTree;paramsInheritanceStrategy;urlSerializer;applyRedirects;absoluteRedirectCount=0;allowRedirects=!0;constructor(je,Re,We,_t,Ut,ri,Di){this.injector=je,this.configLoader=Re,this.rootComponentType=We,this.config=_t,this.urlTree=Ut,this.paramsInheritanceStrategy=ri,this.urlSerializer=Di,this.applyRedirects=new ro(this.urlSerializer,this.urlTree)}noMatchError(je){return new i.buA(4002,`'${je.segmentGroup}'`)}recognize(){const je=Sr(this.urlTree.root,[],[],this.config).segmentGroup;return this.match(je).pipe((0,ae.T)(({children:Re,rootSnapshot:We})=>{const _t=new ia(We,Re),Ut=new Wa("",_t),ri=function oi(we,je,Re=null,We=null){return ln(ui(we),je,Re,We)}(We,[],this.urlTree.queryParams,this.urlTree.fragment);return ri.queryParams=this.urlTree.queryParams,Ut.url=this.urlSerializer.serialize(ri),{state:Ut,tree:ri}}))}match(je){const Re=new ja([],Object.freeze({}),Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Object.freeze({}),be,this.rootComponentType,null,{});return this.processSegmentGroup(this.injector,this.config,je,be,Re).pipe((0,ae.T)(We=>({children:We,rootSnapshot:Re})),(0,f.W)(We=>{if(We instanceof Rs)return this.urlTree=We.urlTree,this.match(We.urlTree.root);throw We instanceof Ts?this.noMatchError(We):We}))}processSegmentGroup(je,Re,We,_t,Ut){return 0===We.segments.length&&We.hasChildren()?this.processChildren(je,Re,We,Ut):this.processSegment(je,Re,We,We.segments,_t,!0,Ut).pipe((0,ae.T)(ri=>ri instanceof ia?[ri]:[]))}processChildren(je,Re,We,_t){const Ut=[];for(const ri of Object.keys(We.children))"primary"===ri?Ut.unshift(ri):Ut.push(ri);return(0,T.H)(Ut).pipe((0,n.H)(ri=>{const Di=We.children[ri],Zi=function Qi(we,je){const Re=we.filter(We=>Bi(We)===je);return Re.push(...we.filter(We=>Bi(We)!==je)),Re}(Re,ri);return this.processSegmentGroup(je,Zi,Di,ri,_t)}),(0,h.S)((ri,Di)=>(ri.push(...Di),ri)),(0,b.U)(null),function W(we,je){const Re=arguments.length>=2;return We=>We.pipe(we?(0,me.p)((_t,Ut)=>we(_t,Ut,We)):_.D,x(1),Re?(0,b.U)(je):(0,r.v)(()=>new m.G))}(),(0,Te.Z)(ri=>{if(null===ri)return Gs(We);const Di=so(ri);return function cr(we){we.sort((je,Re)=>je.value.outlet===be?-1:Re.value.outlet===be?1:je.value.outlet.localeCompare(Re.value.outlet))}(Di),(0,g.of)(Di)}))}processSegment(je,Re,We,_t,Ut,ri,Di){return(0,T.H)(Re).pipe((0,n.H)(Zi=>this.processSegmentAgainstRoute(Zi._injector??je,Re,Zi,We,_t,Ut,ri,Di).pipe((0,f.W)(On=>{if(On instanceof Ts)return(0,g.of)(null);throw On}))),(0,D.$)(Zi=>!!Zi),(0,f.W)(Zi=>{if(Oa(Zi))return function Fs(we,je,Re){return 0===je.length&&!we.children[Re]}(We,_t,Ut)?(0,g.of)(new xo):Gs(We);throw Zi}))}processSegmentAgainstRoute(je,Re,We,_t,Ut,ri,Di,Zi){return Bi(We)===ri||ri!==be&&bo(_t,Ut,We)?void 0===We.redirectTo?this.matchSegmentAgainstRoute(je,_t,We,Ut,ri,Zi):this.allowRedirects&&Di?this.expandSegmentAgainstRouteUsingRedirect(je,_t,Re,We,Ut,ri,Zi):Gs(_t):Gs(_t)}expandSegmentAgainstRouteUsingRedirect(je,Re,We,_t,Ut,ri,Di){const{matched:Zi,parameters:On,consumedSegments:Ma,positionalParamSegments:yr,remainingSegments:Ur}=Ps(Re,_t,Ut);if(!Zi)return Gs(Re);"string"==typeof _t.redirectTo&&"/"===_t.redirectTo[0]&&(this.absoluteRedirectCount++,this.absoluteRedirectCount>31&&(this.allowRedirects=!1));const co=new ja(Ut,On,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Dl(_t),Bi(_t),_t.component??_t._loadedComponent??null,_t,qo(_t)),ts=wr(co,Di,this.paramsInheritanceStrategy);return co.params=Object.freeze(ts.params),co.data=Object.freeze(ts.data),this.applyRedirects.applyRedirectCommands(Ma,_t.redirectTo,yr,co,je).pipe((0,ue.n)(Ns=>this.applyRedirects.lineralizeSegments(_t,Ns)),(0,Te.Z)(Ns=>this.processSegment(je,We,Re,Ns.concat(Ur),ri,!1,Di)))}matchSegmentAgainstRoute(je,Re,We,_t,Ut,ri){const Di=Po(Re,We,_t,je);return"**"===We.path&&(Re.children={}),Di.pipe((0,ue.n)(Zi=>Zi.matched?this.getChildConfig(je=We._injector??je,We,_t).pipe((0,ue.n)(({routes:On})=>{const Ma=We._loadedInjector??je,{parameters:yr,consumedSegments:Ur,remainingSegments:co}=Zi,ts=new ja(Ur,yr,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Dl(We),Bi(We),We.component??We._loadedComponent??null,We,qo(We)),Qs=wr(ts,ri,this.paramsInheritanceStrategy);ts.params=Object.freeze(Qs.params),ts.data=Object.freeze(Qs.data);const{segmentGroup:Ns,slicedSegments:uo}=Sr(Re,Ur,co,On);if(0===uo.length&&Ns.hasChildren())return this.processChildren(Ma,On,Ns,ts).pipe((0,ae.T)(fs=>new ia(ts,fs)));if(0===On.length&&0===uo.length)return(0,g.of)(new ia(ts,[]));const bl=Bi(We)===Ut;return this.processSegment(Ma,On,Ns,uo,bl?be:Ut,!0,ts).pipe((0,ae.T)(fs=>new ia(ts,fs instanceof ia?[fs]:[])))})):Gs(Re)))}getChildConfig(je,Re,We){return Re.children?(0,g.of)({routes:Re.children,injector:je}):Re.loadChildren?void 0!==Re._loadedRoutes?(0,g.of)({routes:Re._loadedRoutes,injector:Re._loadedInjector}):function Rn(we,je,Re,We){const _t=je.canLoad;if(void 0===_t||0===_t.length)return(0,g.of)(!0);const Ut=_t.map(ri=>{const Di=Ra(ri,we);return dt(function pr(we){return we&&ka(we.canLoad)}(Di)?Di.canLoad(je,Re):(0,i.N4e)(we,()=>Di(je,Re)))});return(0,g.of)(Ut).pipe(Ri(),ea())}(je,Re,We).pipe((0,Te.Z)(_t=>_t?this.configLoader.loadChildren(je,Re).pipe((0,o.M)(Ut=>{Re._loadedRoutes=Ut.routes,Re._loadedInjector=Ut.injector})):function Ds(){return(0,U.$)(Ui(!1,Gi.GuardRejected))}())):(0,g.of)({routes:[],injector:je})}}function us(we){const je=we.value.routeConfig;return je&&""===je.path}function so(we){const je=[],Re=new Set;for(const We of we){if(!us(We)){je.push(We);continue}const _t=je.find(Ut=>We.value.routeConfig===Ut.value.routeConfig);void 0!==_t?(_t.children.push(...We.children),Re.add(_t)):je.push(We)}for(const We of Re){const _t=so(We.children);je.push(new ia(We.value,_t))}return je.filter(We=>!Re.has(We))}function Dl(we){return we.data||{}}function qo(we){return we.resolve||{}}function Rr(we){const je=we.children.map(Re=>Rr(Re)).flat();return[we,...je]}function No(we){return(0,ue.n)(je=>{const Re=we(je);return Re?(0,T.H)(Re).pipe((0,ae.T)(()=>je)):(0,g.of)(je)})}let Il=(()=>{class we{buildTitle(Re){let We,_t=Re.root;for(;void 0!==_t;)We=this.getResolvedTitleForRoute(_t)??We,_t=_t.children.find(Ut=>Ut.outlet===be);return We}getResolvedTitleForRoute(Re){return Re.data[Be]}static \u0275fac=function(We){return new(We||we)};static \u0275prov=i.jDH({token:we,factory:()=>(0,i.WQX)(xs),providedIn:"root"})}return we})(),xs=(()=>{class we extends Il{title;constructor(Re){super(),this.title=Re}updateTitle(Re){const We=this.buildTitle(Re);void 0!==We&&this.title.setTitle(We)}static \u0275fac=function(We){return new(We||we)(i.KVO(pe.hE))};static \u0275prov=i.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})();const js=new i.nKC("",{providedIn:"root",factory:()=>({})}),wn=new i.nKC("");let Ws=(()=>{class we{componentLoaders=new WeakMap;childrenLoaders=new WeakMap;onLoadStartListener;onLoadEndListener;compiler=(0,i.WQX)(p.Ql9);loadComponent(Re,We){if(this.componentLoaders.get(We))return this.componentLoaders.get(We);if(We._loadedComponent)return(0,g.of)(We._loadedComponent);this.onLoadStartListener&&this.onLoadStartListener(We);const _t=dt((0,i.N4e)(Re,()=>We.loadComponent())).pipe((0,ae.T)(el),(0,ue.n)(ml),(0,o.M)(ri=>{this.onLoadEndListener&&this.onLoadEndListener(We),We._loadedComponent=ri}),(0,I.j)(()=>{this.componentLoaders.delete(We)})),Ut=new q.G(_t,()=>new G.B).pipe((0,B.B)());return this.componentLoaders.set(We,Ut),Ut}loadChildren(Re,We){if(this.childrenLoaders.get(We))return this.childrenLoaders.get(We);if(We._loadedRoutes)return(0,g.of)({routes:We._loadedRoutes,injector:We._loadedInjector});this.onLoadStartListener&&this.onLoadStartListener(We);const Ut=function Bo(we,je,Re,We){return dt((0,i.N4e)(Re,()=>we.loadChildren())).pipe((0,ae.T)(el),(0,ue.n)(ml),(0,Te.Z)(_t=>_t instanceof p.PYt||Array.isArray(_t)?(0,g.of)(_t):(0,T.H)(je.compileModuleAsync(_t))),(0,ae.T)(_t=>{We&&We(we);let Ut,ri,Di=!1;return Array.isArray(_t)?(ri=_t,!0):(Ut=_t.create(Re).injector,ri=Ut.get(wn,[],{optional:!0,self:!0}).flat()),{routes:ri.map(cs),injector:Ut}}))}(We,this.compiler,Re,this.onLoadEndListener).pipe((0,I.j)(()=>{this.childrenLoaders.delete(We)})),ri=new q.G(Ut,()=>new G.B).pipe((0,B.B)());return this.childrenLoaders.set(We,ri),ri}static \u0275fac=function(We){return new(We||we)};static \u0275prov=i.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})();function el(we){return function Xl(we){return we&&"object"==typeof we&&"default"in we}(we)?we.default:we}function ml(we){return(0,g.of)(we)}let pl=(()=>{class we{static \u0275fac=function(We){return new(We||we)};static \u0275prov=i.jDH({token:we,factory:()=>(0,i.WQX)(Co),providedIn:"root"})}return we})(),Co=(()=>{class we{shouldProcessUrl(Re){return!0}extract(Re){return Re}merge(Re,We){return Re}static \u0275fac=function(We){return new(We||we)};static \u0275prov=i.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})();const gl=new i.nKC(""),hs=new i.nKC("");function Xs(we,je,Re){const We=we.get(hs),_t=we.get(i.qQL);if(!_t.startViewTransition||We.skipNextTransition)return We.skipNextTransition=!1,new Promise(On=>setTimeout(On));let Ut;const ri=new Promise(On=>{Ut=On}),Di=_t.startViewTransition(()=>(Ut(),function ta(we){return new Promise(je=>{(0,p.mal)({read:()=>setTimeout(je)},{injector:we})})}(we)));Di.ready.catch(On=>{});const{onViewTransitionCreated:Zi}=We;return Zi&&(0,i.N4e)(we,()=>Zi({transition:Di,from:je,to:Re})),ri}const zo=new i.nKC("");let Uo=(()=>{class we{currentNavigation=(0,i.vPA)(null,{equal:()=>!1});currentTransition=null;lastSuccessfulNavigation=null;events=new G.B;transitionAbortWithErrorSubject=new G.B;configLoader=(0,i.WQX)(Ws);environmentInjector=(0,i.WQX)(i.uvJ);destroyRef=(0,i.WQX)(i.abz);urlSerializer=(0,i.WQX)(Qt);rootContexts=(0,i.WQX)(da);location=(0,i.WQX)(t.aZ);inputBindingEnabled=null!==(0,i.WQX)(Qr,{optional:!0});titleStrategy=(0,i.WQX)(Il);options=(0,i.WQX)(js,{optional:!0})||{};paramsInheritanceStrategy=this.options.paramsInheritanceStrategy||"emptyOnly";urlHandlingStrategy=(0,i.WQX)(pl);createViewTransition=(0,i.WQX)(gl,{optional:!0});navigationErrorHandler=(0,i.WQX)(zo,{optional:!0});navigationId=0;get hasRequestedNavigation(){return 0!==this.navigationId}transitions;afterPreactivation=()=>(0,g.of)(void 0);rootComponentType=null;destroyed=!1;constructor(){this.configLoader.onLoadEndListener=_t=>this.events.next(new kn(_t)),this.configLoader.onLoadStartListener=_t=>this.events.next(new Fi(_t)),this.destroyRef.onDestroy(()=>{this.destroyed=!0})}complete(){this.transitions?.complete()}handleNavigationRequest(Re){const We=++this.navigationId;(0,c.O8)(()=>{this.transitions?.next({...Re,extractedUrl:this.urlHandlingStrategy.extract(Re.rawUrl),targetSnapshot:null,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null,abortController:new AbortController,id:We})})}setupNavigations(Re){return this.transitions=new d.t(null),this.transitions.pipe((0,me.p)(We=>null!==We),(0,ue.n)(We=>{let _t=!1;return(0,g.of)(We).pipe((0,ue.n)(Ut=>{if(this.navigationId>We.id)return this.cancelNavigationTransition(We,"",Gi.SupersededByNewNavigation),K.w;this.currentTransition=We,this.currentNavigation.set({id:Ut.id,initialUrl:Ut.rawUrl,extractedUrl:Ut.extractedUrl,targetBrowserUrl:"string"==typeof Ut.extras.browserUrl?this.urlSerializer.parse(Ut.extras.browserUrl):Ut.extras.browserUrl,trigger:Ut.source,extras:Ut.extras,previousNavigation:this.lastSuccessfulNavigation?{...this.lastSuccessfulNavigation,previousNavigation:null}:null,abort:()=>Ut.abortController.abort()});const ri=!Re.navigated||this.isUpdatingInternalState()||this.isUpdatedBrowserUrl();if(!ri&&"reload"!==(Ut.extras.onSameUrlNavigation??Re.onSameUrlNavigation))return this.events.next(new Yi(Ut.id,this.urlSerializer.serialize(Ut.rawUrl),"",Ci.IgnoredSameUrlNavigation)),Ut.resolve(!1),K.w;if(this.urlHandlingStrategy.shouldProcessUrl(Ut.rawUrl))return(0,g.of)(Ut).pipe((0,ue.n)(Zi=>(this.events.next(new Fn(Zi.id,this.urlSerializer.serialize(Zi.extractedUrl),Zi.source,Zi.restoredState)),Zi.id!==this.navigationId?K.w:Promise.resolve(Zi))),function Al(we,je,Re,We,_t,Ut){return(0,Te.Z)(ri=>function dl(we,je,Re,We,_t,Ut,ri="emptyOnly"){return new jl(we,je,Re,We,_t,ri,Ut).recognize()}(we,je,Re,We,ri.extractedUrl,_t,Ut).pipe((0,ae.T)(({state:Di,tree:Zi})=>({...ri,targetSnapshot:Di,urlAfterRedirects:Zi}))))}(this.environmentInjector,this.configLoader,this.rootComponentType,Re.config,this.urlSerializer,this.paramsInheritanceStrategy),(0,o.M)(Zi=>{We.targetSnapshot=Zi.targetSnapshot,We.urlAfterRedirects=Zi.urlAfterRedirects,this.currentNavigation.update(Ma=>(Ma.finalUrl=Zi.urlAfterRedirects,Ma));const On=new ji(Zi.id,this.urlSerializer.serialize(Zi.extractedUrl),this.urlSerializer.serialize(Zi.urlAfterRedirects),Zi.targetSnapshot);this.events.next(On)}));if(ri&&this.urlHandlingStrategy.shouldProcessUrl(Ut.currentRawUrl)){const{id:Zi,extractedUrl:On,source:Ma,restoredState:yr,extras:Ur}=Ut,co=new Fn(Zi,this.urlSerializer.serialize(On),Ma,yr);this.events.next(co);const ts=xa(this.rootComponentType).snapshot;return this.currentTransition=We={...Ut,targetSnapshot:ts,urlAfterRedirects:On,extras:{...Ur,skipLocationChange:!1,replaceUrl:!1}},this.currentNavigation.update(Qs=>(Qs.finalUrl=On,Qs)),(0,g.of)(We)}return this.events.next(new Yi(Ut.id,this.urlSerializer.serialize(Ut.extractedUrl),"",Ci.IgnoredByUrlHandlingStrategy)),Ut.resolve(!1),K.w}),(0,o.M)(Ut=>{const ri=new Me(Ut.id,this.urlSerializer.serialize(Ut.extractedUrl),this.urlSerializer.serialize(Ut.urlAfterRedirects),Ut.targetSnapshot);this.events.next(ri)}),(0,ae.T)(Ut=>(this.currentTransition=We={...Ut,guards:Aa(Ut.targetSnapshot,Ut.currentSnapshot,this.rootContexts)},We)),function _i(we,je){return(0,Te.Z)(Re=>{const{targetSnapshot:We,currentSnapshot:_t,guards:{canActivateChecks:Ut,canDeactivateChecks:ri}}=Re;return 0===ri.length&&0===Ut.length?(0,g.of)({...Re,guardsResult:!0}):function Li(we,je,Re,We){return(0,T.H)(we).pipe((0,Te.Z)(_t=>function mi(we,je,Re,We,_t){const Ut=je&&je.routeConfig?je.routeConfig.canDeactivate:null;if(!Ut||0===Ut.length)return(0,g.of)(!0);const ri=Ut.map(Di=>{const Zi=fn(je)??_t,On=Ra(Di,Zi);return dt(function ao(we){return we&&ka(we.canDeactivate)}(On)?On.canDeactivate(we,je,Re,We):(0,i.N4e)(Zi,()=>On(we,je,Re,We))).pipe((0,D.$)())});return(0,g.of)(ri).pipe(Ri())}(_t.component,_t.route,Re,je,We)),(0,D.$)(_t=>!0!==_t,!0))}(ri,We,_t,we).pipe((0,Te.Z)(Di=>Di&&function Ka(we){return"boolean"==typeof we}(Di)?function vn(we,je,Re,We){return(0,T.H)(je).pipe((0,n.H)(_t=>(0,P.x)(function st(we,je){return null!==we&&je&&je(new ca(we)),(0,g.of)(!0)}(_t.route.parent,We),function Je(we,je){return null!==we&&je&&je(new mn(we)),(0,g.of)(!0)}(_t.route,We),function At(we,je,Re){const We=je[je.length-1],Ut=je.slice(0,je.length-1).reverse().map(ri=>function tr(we){const je=we.routeConfig?we.routeConfig.canActivateChild:null;return je&&0!==je.length?{node:we,guards:je}:null}(ri)).filter(ri=>null!==ri).map(ri=>(0,M.v)(()=>{const Di=ri.guards.map(Zi=>{const On=fn(ri.node)??Re,Ma=Ra(Zi,On);return dt(function ds(we){return we&&ka(we.canActivateChild)}(Ma)?Ma.canActivateChild(We,we):(0,i.N4e)(On,()=>Ma(We,we))).pipe((0,D.$)())});return(0,g.of)(Di).pipe(Ri())}));return(0,g.of)(Ut).pipe(Ri())}(we,_t.path,Re),function He(we,je,Re){const We=je.routeConfig?je.routeConfig.canActivate:null;if(!We||0===We.length)return(0,g.of)(!0);const _t=We.map(Ut=>(0,M.v)(()=>{const ri=fn(je)??Re,Di=Ra(Ut,ri);return dt(function gr(we){return we&&ka(we.canActivate)}(Di)?Di.canActivate(je,we):(0,i.N4e)(ri,()=>Di(je,we))).pipe((0,D.$)())}));return(0,g.of)(_t).pipe(Ri())}(we,_t.route,Re))),(0,D.$)(_t=>!0!==_t,!0))}(We,Ut,we,je):(0,g.of)(Di)),(0,ae.T)(Di=>({...Re,guardsResult:Di})))})}(this.environmentInjector,Ut=>this.events.next(Ut)),(0,o.M)(Ut=>{if(We.guardsResult=Ut.guardsResult,Ut.guardsResult&&"boolean"!=typeof Ut.guardsResult)throw Ii(0,Ut.guardsResult);const ri=new mt(Ut.id,this.urlSerializer.serialize(Ut.extractedUrl),this.urlSerializer.serialize(Ut.urlAfterRedirects),Ut.targetSnapshot,!!Ut.guardsResult);this.events.next(ri)}),(0,me.p)(Ut=>!!Ut.guardsResult||(this.cancelNavigationTransition(Ut,"",Gi.GuardRejected),!1)),No(Ut=>{if(0!==Ut.guards.canActivateChecks.length)return(0,g.of)(Ut).pipe((0,o.M)(ri=>{const Di=new vt(ri.id,this.urlSerializer.serialize(ri.extractedUrl),this.urlSerializer.serialize(ri.urlAfterRedirects),ri.targetSnapshot);this.events.next(Di)}),(0,ue.n)(ri=>{let Di=!1;return(0,g.of)(ri).pipe(function Ll(we,je){return(0,Te.Z)(Re=>{const{targetSnapshot:We,guards:{canActivateChecks:_t}}=Re;if(!_t.length)return(0,g.of)(Re);const Ut=new Set(_t.map(Zi=>Zi.route)),ri=new Set;for(const Zi of Ut)if(!ri.has(Zi))for(const On of Rr(Zi))ri.add(On);let Di=0;return(0,T.H)(ri).pipe((0,n.H)(Zi=>Ut.has(Zi)?function hl(we,je,Re,We){const _t=we.routeConfig,Ut=we._resolve;return void 0!==_t?.title&&!or(_t)&&(Ut[Be]=_t.title),(0,M.v)(()=>(we.data=wr(we,we.parent,Re).resolve,function fl(we,je,Re,We){const _t=ve(we);if(0===_t.length)return(0,g.of)({});const Ut={};return(0,T.H)(_t).pipe((0,Te.Z)(ri=>function oo(we,je,Re,We){const _t=fn(je)??We,Ut=Ra(we,_t);return dt(Ut.resolve?Ut.resolve(je,Re):(0,i.N4e)(_t,()=>Ut(je,Re)))}(we[ri],je,Re,We).pipe((0,D.$)(),(0,o.M)(Di=>{if(Di instanceof wt)throw Ii(new di,Di);Ut[ri]=Di}))),x(1),(0,ae.T)(()=>Ut),(0,f.W)(ri=>Oa(ri)?K.w:(0,U.$)(ri)))}(Ut,we,je,We).pipe((0,ae.T)(ri=>(we._resolvedData=ri,we.data={...we.data,...ri},null)))))}(Zi,We,we,je):(Zi.data=wr(Zi,Zi.parent,we).resolve,(0,g.of)(void 0))),(0,o.M)(()=>Di++),x(1),(0,Te.Z)(Zi=>Di===ri.size?(0,g.of)(Re):K.w))})}(this.paramsInheritanceStrategy,this.environmentInjector),(0,o.M)({next:()=>Di=!0,complete:()=>{Di||this.cancelNavigationTransition(ri,"",Gi.NoDataFromResolver)}}))}),(0,o.M)(ri=>{const Di=new ni(ri.id,this.urlSerializer.serialize(ri.extractedUrl),this.urlSerializer.serialize(ri.urlAfterRedirects),ri.targetSnapshot);this.events.next(Di)}))}),No(Ut=>{const ri=Di=>{const Zi=[];if(Di.routeConfig?.loadComponent){const On=fn(Di)??this.environmentInjector;Zi.push(this.configLoader.loadComponent(On,Di.routeConfig).pipe((0,o.M)(Ma=>{Di.component=Ma}),(0,ae.T)(()=>{})))}for(const On of Di.children)Zi.push(...ri(On));return Zi};return(0,w.z)(ri(Ut.targetSnapshot.root)).pipe((0,b.U)(null),(0,oe.s)(1))}),No(()=>this.afterPreactivation()),(0,ue.n)(()=>{const{currentSnapshot:Ut,targetSnapshot:ri}=We,Di=this.createViewTransition?.(this.environmentInjector,Ut.root,ri.root);return Di?(0,T.H)(Di).pipe((0,ae.T)(()=>We)):(0,g.of)(We)}),(0,ae.T)(Ut=>{const ri=function Hs(we,je,Re){const We=$r(we,je._root,Re?Re._root:void 0);return new Er(We,je)}(Re.routeReuseStrategy,Ut.targetSnapshot,Ut.currentRouterState);return this.currentTransition=We={...Ut,targetRouterState:ri},this.currentNavigation.update(Di=>(Di.targetRouterState=ri,Di)),We}),(0,o.M)(()=>{this.events.next(new fi)}),((we,je,Re,We)=>(0,ae.T)(_t=>(new Jn(je,_t.targetRouterState,_t.currentRouterState,Re,We).activate(we),_t)))(this.rootContexts,Re.routeReuseStrategy,Ut=>this.events.next(Ut),this.inputBindingEnabled),(0,oe.s)(1),(0,re.Q)(new Q.c(Ut=>{const ri=We.abortController.signal,Di=()=>Ut.next();return ri.addEventListener("abort",Di),()=>ri.removeEventListener("abort",Di)}).pipe((0,me.p)(()=>!_t&&!We.targetRouterState),(0,o.M)(()=>{this.cancelNavigationTransition(We,We.abortController.signal.reason+"",Gi.Aborted)}))),(0,o.M)({next:Ut=>{_t=!0,this.lastSuccessfulNavigation=(0,c.O8)(this.currentNavigation),this.events.next(new xi(Ut.id,this.urlSerializer.serialize(Ut.extractedUrl),this.urlSerializer.serialize(Ut.urlAfterRedirects))),this.titleStrategy?.updateTitle(Ut.targetRouterState.snapshot),Ut.resolve(!0)},complete:()=>{_t=!0}}),(0,re.Q)(this.transitionAbortWithErrorSubject.pipe((0,o.M)(Ut=>{throw Ut}))),(0,I.j)(()=>{_t||this.cancelNavigationTransition(We,"",Gi.SupersededByNewNavigation),this.currentTransition?.id===We.id&&(this.currentNavigation.set(null),this.currentTransition=null)}),(0,f.W)(Ut=>{if(this.destroyed)return We.resolve(!1),K.w;if(_t=!0,yn(Ut))this.events.next(new Ai(We.id,this.urlSerializer.serialize(We.extractedUrl),Ut.message,Ut.cancellationCode)),function tn(we){return yn(we)&&Hi(we.url)}(Ut)?this.events.next(new Mi(Ut.url,Ut.navigationBehaviorOptions)):We.resolve(!1);else{const ri=new zt(We.id,this.urlSerializer.serialize(We.extractedUrl),Ut,We.targetSnapshot??void 0);try{const Di=(0,i.N4e)(this.environmentInjector,()=>this.navigationErrorHandler?.(ri));if(!(Di instanceof wt))throw this.events.next(ri),Ut;{const{message:Zi,cancellationCode:On}=Ii(0,Di);this.events.next(new Ai(We.id,this.urlSerializer.serialize(We.extractedUrl),Zi,On)),this.events.next(new Mi(Di.redirectTo,Di.navigationBehaviorOptions))}}catch(Di){this.options.resolveNavigationPromiseOnError?We.resolve(!1):We.reject(Di)}}return K.w}))}))}cancelNavigationTransition(Re,We,_t){const Ut=new Ai(Re.id,this.urlSerializer.serialize(Re.extractedUrl),We,_t);this.events.next(Ut),Re.resolve(!1)}isUpdatingInternalState(){return this.currentTransition?.extractedUrl.toString()!==this.currentTransition?.currentUrlTree.toString()}isUpdatedBrowserUrl(){const Re=this.urlHandlingStrategy.extract(this.urlSerializer.parse(this.location.path(!0))),We=(0,c.O8)(this.currentNavigation),_t=We?.targetBrowserUrl??We?.extractedUrl;return Re.toString()!==_t?.toString()&&!We?.extras.skipLocationChange}static \u0275fac=function(We){return new(We||we)};static \u0275prov=i.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})();function Ks(we){return we!==Dn}let lo=(()=>{class we{static \u0275fac=function(We){return new(We||we)};static \u0275prov=i.jDH({token:we,factory:()=>(0,i.WQX)(_l),providedIn:"root"})}return we})();class Ys{shouldDetach(je){return!1}store(je,Re){}shouldAttach(je){return!1}retrieve(je){return null}shouldReuseRoute(je,Re){return je.routeConfig===Re.routeConfig}}let _l=(()=>{class we extends Ys{static \u0275fac=(()=>{let Re;return function(_t){return(Re||(Re=p.xGo(we)))(_t||we)}})();static \u0275prov=i.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})(),Vo=(()=>{class we{urlSerializer=(0,i.WQX)(Qt);options=(0,i.WQX)(js,{optional:!0})||{};canceledNavigationResolution=this.options.canceledNavigationResolution||"replace";location=(0,i.WQX)(t.aZ);urlHandlingStrategy=(0,i.WQX)(pl);urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred";currentUrlTree=new Z;getCurrentUrlTree(){return this.currentUrlTree}rawUrlTree=this.currentUrlTree;getRawUrlTree(){return this.rawUrlTree}createBrowserPath({finalUrl:Re,initialUrl:We,targetBrowserUrl:_t}){const Ut=void 0!==Re?this.urlHandlingStrategy.merge(Re,We):We,ri=_t??Ut;return ri instanceof Z?this.urlSerializer.serialize(ri):ri}commitTransition({targetRouterState:Re,finalUrl:We,initialUrl:_t}){We&&Re?(this.currentUrlTree=We,this.rawUrlTree=this.urlHandlingStrategy.merge(We,_t),this.routerState=Re):this.rawUrlTree=_t}routerState=xa(null);getRouterState(){return this.routerState}stateMemento=this.createStateMemento();updateStateMemento(){this.stateMemento=this.createStateMemento()}createStateMemento(){return{rawUrlTree:this.rawUrlTree,currentUrlTree:this.currentUrlTree,routerState:this.routerState}}resetInternalState({finalUrl:Re}){this.routerState=this.stateMemento.routerState,this.currentUrlTree=this.stateMemento.currentUrlTree,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,Re??this.rawUrlTree)}static \u0275fac=function(We){return new(We||we)};static \u0275prov=i.jDH({token:we,factory:()=>(0,i.WQX)(vl),providedIn:"root"})}return we})(),vl=(()=>{class we extends Vo{currentPageId=0;lastSuccessfulId=-1;restoredState(){return this.location.getState()}get browserPageId(){return"computed"!==this.canceledNavigationResolution?this.currentPageId:this.restoredState()?.\u0275routerPageId??this.currentPageId}registerNonRouterCurrentEntryChangeListener(Re){return this.location.subscribe(We=>{"popstate"===We.type&&setTimeout(()=>{Re(We.url,We.state,"popstate")})})}handleRouterEvent(Re,We){Re instanceof Fn?this.updateStateMemento():Re instanceof Yi?this.commitTransition(We):Re instanceof ji?"eager"===this.urlUpdateStrategy&&(We.extras.skipLocationChange||this.setBrowserUrl(this.createBrowserPath(We),We)):Re instanceof fi?(this.commitTransition(We),"deferred"===this.urlUpdateStrategy&&!We.extras.skipLocationChange&&this.setBrowserUrl(this.createBrowserPath(We),We)):Re instanceof Ai&&Re.code!==Gi.SupersededByNewNavigation&&Re.code!==Gi.Redirect?this.restoreHistory(We):Re instanceof zt?this.restoreHistory(We,!0):Re instanceof xi&&(this.lastSuccessfulId=Re.id,this.currentPageId=this.browserPageId)}setBrowserUrl(Re,{extras:We,id:_t}){const{replaceUrl:Ut,state:ri}=We;if(this.location.isCurrentPathEqualTo(Re)||Ut){const Di=this.browserPageId,Zi={...ri,...this.generateNgRouterState(_t,Di)};this.location.replaceState(Re,"",Zi)}else{const Di={...ri,...this.generateNgRouterState(_t,this.browserPageId+1)};this.location.go(Re,"",Di)}}restoreHistory(Re,We=!1){if("computed"===this.canceledNavigationResolution){const Ut=this.currentPageId-this.browserPageId;0!==Ut?this.location.historyGo(Ut):this.getCurrentUrlTree()===Re.finalUrl&&0===Ut&&(this.resetInternalState(Re),this.resetUrlToCurrentUrlTree())}else"replace"===this.canceledNavigationResolution&&(We&&this.resetInternalState(Re),this.resetUrlToCurrentUrlTree())}resetUrlToCurrentUrlTree(){this.location.replaceState(this.urlSerializer.serialize(this.getRawUrlTree()),"",this.generateNgRouterState(this.lastSuccessfulId,this.currentPageId))}generateNgRouterState(Re,We){return"computed"===this.canceledNavigationResolution?{navigationId:Re,\u0275routerPageId:We}:{navigationId:Re}}static \u0275fac=(()=>{let Re;return function(_t){return(Re||(Re=p.xGo(we)))(_t||we)}})();static \u0275prov=i.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})();function Ho(we,je){we.events.pipe((0,me.p)(Re=>Re instanceof xi||Re instanceof Ai||Re instanceof zt||Re instanceof Yi),(0,ae.T)(Re=>Re instanceof xi||Re instanceof Yi?0:Re instanceof Ai&&(Re.code===Gi.Redirect||Re.code===Gi.SupersededByNewNavigation)?2:1),(0,me.p)(Re=>2!==Re),(0,oe.s)(1)).subscribe(()=>{je()})}const zr={paths:"exact",fragment:"ignored",matrixParams:"ignored",queryParams:"exact"},cd={paths:"subset",fragment:"ignored",matrixParams:"ignored",queryParams:"subset"};let yl=(()=>{class we{get currentUrlTree(){return this.stateManager.getCurrentUrlTree()}get rawUrlTree(){return this.stateManager.getRawUrlTree()}disposed=!1;nonRouterCurrentEntryChangeSubscription;console=(0,i.WQX)(p.C7A);stateManager=(0,i.WQX)(Vo);options=(0,i.WQX)(js,{optional:!0})||{};pendingTasks=(0,i.WQX)(i.rev);urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred";navigationTransitions=(0,i.WQX)(Uo);urlSerializer=(0,i.WQX)(Qt);location=(0,i.WQX)(t.aZ);urlHandlingStrategy=(0,i.WQX)(pl);injector=(0,i.WQX)(i.uvJ);_events=new G.B;get events(){return this._events}get routerState(){return this.stateManager.getRouterState()}navigated=!1;routeReuseStrategy=(0,i.WQX)(lo);onSameUrlNavigation=this.options.onSameUrlNavigation||"ignore";config=(0,i.WQX)(wn,{optional:!0})?.flat()??[];componentInputBindingEnabled=!!(0,i.WQX)(Qr,{optional:!0});currentNavigation=this.navigationTransitions.currentNavigation.asReadonly();constructor(){this.resetConfig(this.config),this.navigationTransitions.setupNavigations(this).subscribe({error:Re=>{this.console.warn(Re)}}),this.subscribeToNavigationEvents()}eventsSubscription=new $.yU;subscribeToNavigationEvents(){const Re=this.navigationTransitions.events.subscribe(We=>{try{const _t=this.navigationTransitions.currentTransition,Ut=(0,c.O8)(this.navigationTransitions.currentNavigation);if(null!==_t&&null!==Ut)if(this.stateManager.handleRouterEvent(We,Ut),We instanceof Ai&&We.code!==Gi.Redirect&&We.code!==Gi.SupersededByNewNavigation)this.navigated=!0;else if(We instanceof xi)this.navigated=!0;else if(We instanceof Mi){const ri=We.navigationBehaviorOptions,Di=this.urlHandlingStrategy.merge(We.url,_t.currentRawUrl),Zi={browserUrl:_t.extras.browserUrl,info:_t.extras.info,skipLocationChange:_t.extras.skipLocationChange,replaceUrl:_t.extras.replaceUrl||"eager"===this.urlUpdateStrategy||Ks(_t.source),...ri};this.scheduleNavigation(Di,Dn,null,Zi,{resolve:_t.resolve,reject:_t.reject,promise:_t.promise})}(function en(we){return!(we instanceof fi||we instanceof Mi)})(We)&&this._events.next(We)}catch(_t){this.navigationTransitions.transitionAbortWithErrorSubject.next(_t)}});this.eventsSubscription.add(Re)}resetRootComponentType(Re){this.routerState.root.component=Re,this.navigationTransitions.rootComponentType=Re}initialNavigation(){this.setUpLocationChangeListener(),this.navigationTransitions.hasRequestedNavigation||this.navigateToSyncWithBrowser(this.location.path(!0),Dn,this.stateManager.restoredState())}setUpLocationChangeListener(){this.nonRouterCurrentEntryChangeSubscription??=this.stateManager.registerNonRouterCurrentEntryChangeListener((Re,We,_t)=>{this.navigateToSyncWithBrowser(Re,_t,We)})}navigateToSyncWithBrowser(Re,We,_t){const Ut={replaceUrl:!0},ri=_t?.navigationId?_t:null;if(_t){const Zi={..._t};delete Zi.navigationId,delete Zi.\u0275routerPageId,0!==Object.keys(Zi).length&&(Ut.state=Zi)}const Di=this.parseUrl(Re);this.scheduleNavigation(Di,We,ri,Ut).catch(Zi=>{this.disposed||this.injector.get(i.ZTf)(Zi)})}get url(){return this.serializeUrl(this.currentUrlTree)}getCurrentNavigation(){return(0,c.O8)(this.navigationTransitions.currentNavigation)}get lastSuccessfulNavigation(){return this.navigationTransitions.lastSuccessfulNavigation}resetConfig(Re){this.config=Re.map(cs),this.navigated=!1}ngOnDestroy(){this.dispose()}dispose(){this._events.unsubscribe(),this.navigationTransitions.complete(),this.nonRouterCurrentEntryChangeSubscription&&(this.nonRouterCurrentEntryChangeSubscription.unsubscribe(),this.nonRouterCurrentEntryChangeSubscription=void 0),this.disposed=!0,this.eventsSubscription.unsubscribe()}createUrlTree(Re,We={}){const{relativeTo:_t,queryParams:Ut,fragment:ri,queryParamsHandling:Di,preserveFragment:Zi}=We,On=Zi?this.currentUrlTree.fragment:ri;let yr,Ma=null;switch(Di??this.options.defaultQueryParamsHandling){case"merge":Ma={...this.currentUrlTree.queryParams,...Ut};break;case"preserve":Ma=this.currentUrlTree.queryParams;break;default:Ma=Ut||null}null!==Ma&&(Ma=this.removeEmptyProps(Ma));try{yr=ui(_t?_t.snapshot:this.routerState.snapshot.root)}catch{("string"!=typeof Re[0]||"/"!==Re[0][0])&&(Re=[]),yr=this.currentUrlTree.root}return ln(yr,Re,Ma,On??null)}navigateByUrl(Re,We={skipLocationChange:!1}){const _t=Hi(Re)?Re:this.parseUrl(Re),Ut=this.urlHandlingStrategy.merge(_t,this.rawUrlTree);return this.scheduleNavigation(Ut,Dn,null,We)}navigate(Re,We={skipLocationChange:!1}){return function jc(we){for(let je=0;je(null!=Ut&&(We[_t]=Ut),We),{})}scheduleNavigation(Re,We,_t,Ut,ri){if(this.disposed)return Promise.resolve(!1);let Di,Zi,On;ri?(Di=ri.resolve,Zi=ri.reject,On=ri.promise):On=new Promise((yr,Ur)=>{Di=yr,Zi=Ur});const Ma=this.pendingTasks.add();return Ho(this,()=>{queueMicrotask(()=>this.pendingTasks.remove(Ma))}),this.navigationTransitions.handleNavigationRequest({source:We,restoredState:_t,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,rawUrl:Re,extras:Ut,resolve:Di,reject:Zi,promise:On,currentSnapshot:this.routerState.snapshot,currentRouterState:this.routerState}),On.catch(yr=>Promise.reject(yr))}static \u0275fac=function(We){return new(We||we)};static \u0275prov=i.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})()},44068:(Ae,ee,l)=>{"use strict";var i=l(89999),t=l(97594),p=l(48128),S=l(12773),c=l(83798),e=l(91627),T=S("Object.prototype.toString"),g=l(88779)(),d=typeof globalThis>"u"?global:globalThis,w=t(),m=S("String.prototype.slice"),P=S("Array.prototype.indexOf",!0)||function(q,G){for(var Q=0;Q-1?G:"Object"===G&&function(q){var G=!1;return i(M,function(Q,$){if(!G)try{Q(q),G=m($,1)}catch{}}),G}(q)}return c?function(q){var G=!1;return i(M,function(Q,$){if(!G)try{"$"+Q(q)===$&&(G=m($,1))}catch{}}),G}(q):null}},44356:Ae=>{"use strict";var i,ee="object"==typeof Reflect?Reflect:null,l=ee&&"function"==typeof ee.apply?ee.apply:function($,ae,ue){return Function.prototype.apply.call($,ae,ue)};i=ee&&"function"==typeof ee.ownKeys?ee.ownKeys:Object.getOwnPropertySymbols?function($){return Object.getOwnPropertyNames($).concat(Object.getOwnPropertySymbols($))}:function($){return Object.getOwnPropertyNames($)};var p=Number.isNaN||function($){return $!=$};function S(){S.init.call(this)}Ae.exports=S,Ae.exports.once=function K(Q,$){return new Promise(function(ae,ue){function oe(me){Q.removeListener($,he),ue(me)}function he(){"function"==typeof Q.removeListener&&Q.removeListener("error",oe),ae([].slice.call(arguments))}G(Q,$,he,{once:!0}),"error"!==$&&function q(Q,$,ae){"function"==typeof Q.on&&G(Q,"error",$,ae)}(Q,oe,{once:!0})})},S.EventEmitter=S,S.prototype._events=void 0,S.prototype._eventsCount=0,S.prototype._maxListeners=void 0;var c=10;function e(Q){if("function"!=typeof Q)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof Q)}function T(Q){return void 0===Q._maxListeners?S.defaultMaxListeners:Q._maxListeners}function g(Q,$,ae,ue){var oe,he,me;if(e(ae),void 0===(he=Q._events)?(he=Q._events=Object.create(null),Q._eventsCount=0):(void 0!==he.newListener&&(Q.emit("newListener",$,ae.listener?ae.listener:ae),he=Q._events),me=he[$]),void 0===me)me=he[$]=ae,++Q._eventsCount;else if("function"==typeof me?me=he[$]=ue?[ae,me]:[me,ae]:ue?me.unshift(ae):me.push(ae),(oe=T(Q))>0&&me.length>oe&&!me.warned){me.warned=!0;var Te=new Error("Possible EventEmitter memory leak detected. "+me.length+" "+String($)+" listeners added. Use emitter.setMaxListeners() to increase limit");Te.name="MaxListenersExceededWarning",Te.emitter=Q,Te.type=$,Te.count=me.length,function t(Q){console&&console.warn&&console.warn(Q)}(Te)}return Q}function d(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function w(Q,$,ae){var ue={fired:!1,wrapFn:void 0,target:Q,type:$,listener:ae},oe=d.bind(ue);return oe.listener=ae,ue.wrapFn=oe,oe}function m(Q,$,ae){var ue=Q._events;if(void 0===ue)return[];var oe=ue[$];return void 0===oe?[]:"function"==typeof oe?ae?[oe.listener||oe]:[oe]:ae?function U(Q){for(var $=new Array(Q.length),ae=0;ae<$.length;++ae)$[ae]=Q[ae].listener||Q[ae];return $}(oe):M(oe,oe.length)}function P(Q){var $=this._events;if(void 0!==$){var ae=$[Q];if("function"==typeof ae)return 1;if(void 0!==ae)return ae.length}return 0}function M(Q,$){for(var ae=new Array($),ue=0;ue<$;++ue)ae[ue]=Q[ue];return ae}function G(Q,$,ae,ue){if("function"==typeof Q.on)ue.once?Q.once($,ae):Q.on($,ae);else{if("function"!=typeof Q.addEventListener)throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof Q);Q.addEventListener($,function oe(he){ue.once&&Q.removeEventListener($,oe),ae(he)})}}Object.defineProperty(S,"defaultMaxListeners",{enumerable:!0,get:function(){return c},set:function(Q){if("number"!=typeof Q||Q<0||p(Q))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+Q+".");c=Q}}),S.init=function(){(void 0===this._events||this._events===Object.getPrototypeOf(this)._events)&&(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},S.prototype.setMaxListeners=function($){if("number"!=typeof $||$<0||p($))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+$+".");return this._maxListeners=$,this},S.prototype.getMaxListeners=function(){return T(this)},S.prototype.emit=function($){for(var ae=[],ue=1;ue0&&(me=ae[0]),me instanceof Error)throw me;var Te=new Error("Unhandled error."+(me?" ("+me.message+")":""));throw Te.context=me,Te}var D=he[$];if(void 0===D)return!1;if("function"==typeof D)l(D,this,ae);else{var n=D.length,o=M(D,n);for(ue=0;ue=0;me--)if(ue[me]===ae||ue[me].listener===ae){Te=ue[me].listener,he=me;break}if(he<0)return this;0===he?ue.shift():function j(Q,$){for(;$+1=0;oe--)this.removeListener($,ae[oe]);return this},S.prototype.listeners=function($){return m(this,$,!0)},S.prototype.rawListeners=function($){return m(this,$,!1)},S.listenerCount=function(Q,$){return"function"==typeof Q.listenerCount?Q.listenerCount($):P.call(Q,$)},S.prototype.listenerCount=P,S.prototype.eventNames=function(){return this._eventsCount>0?i(this._events):[]}},44522:(Ae,ee,l)=>{"use strict";let i;function p(e){if(function t(){if(null==i){const e=typeof document<"u"?document.head:null;i=!(!e||!e.createShadowRoot&&!e.attachShadow)}return i}()){const T=e.getRootNode?e.getRootNode():null;if(typeof ShadowRoot<"u"&&ShadowRoot&&T instanceof ShadowRoot)return T}return null}function S(){let e=typeof document<"u"&&document?document.activeElement:null;for(;e&&e.shadowRoot;){const T=e.shadowRoot.activeElement;if(T===e)break;e=T}return e}function c(e){return e.composedPath?e.composedPath()[0]:e.target}l.d(ee,{Fb:()=>c,KT:()=>p,vc:()=>S})},45225:(Ae,ee,l)=>{"use strict";function i(t,p,S,c=0,e=!1){const T=p.schedule(function(){S(),e?t.add(this.schedule(null,c)):this.unsubscribe()},c);if(t.add(T),!e)return T}l.d(ee,{N:()=>i})},45310:Ae=>{"use strict";Ae.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var l={},i=Symbol("test"),t=Object(i);if("string"==typeof i||"[object Symbol]"!==Object.prototype.toString.call(i)||"[object Symbol]"!==Object.prototype.toString.call(t))return!1;for(var S in l[i]=42,l)return!1;if("function"==typeof Object.keys&&0!==Object.keys(l).length||"function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(l).length)return!1;var c=Object.getOwnPropertySymbols(l);if(1!==c.length||c[0]!==i||!Object.prototype.propertyIsEnumerable.call(l,i))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var e=Object.getOwnPropertyDescriptor(l,i);if(42!==e.value||!0!==e.enumerable)return!1}return!0}},45334:(Ae,ee,l)=>{"use strict";l.d(ee,{m:()=>p});var i=l(41026),t=l(19270);function p(S){t.f.setTimeout(()=>{const{onUnhandledError:c}=i.$;if(!c)throw S;c(S)})}},45383:(Ae,ee,l)=>{"use strict";l.d(ee,{$$g:()=>f1,$Fj:()=>Hc,$sC:()=>Qy,BA1:()=>Gi,C8j:()=>Lr,CQO:()=>K0,Ccf:()=>o9,D6w:()=>g5,DW4:()=>n_,EvL:()=>_,FYJ:()=>tt,GR4:()=>J,GRI:()=>Zf,HEq:()=>In,If6:()=>Ji,Int:()=>v8,JKM:()=>Dc,Kcb:()=>ba,M29:()=>my,McB:()=>zy,Mf0:()=>bl,MjD:()=>ea,Oh6:()=>hb,QLR:()=>a9,TBz:()=>Ky,Tq9:()=>Pu,Vpi:()=>P,VwO:()=>yp,W1p:()=>rm,WKo:()=>ao,WxX:()=>Mu,Xbc:()=>Oo,_eQ:()=>js,_qq:()=>_p,aAJ:()=>Ya,aFw:()=>h_,cbP:()=>Yd,dB:()=>m3,e4L:()=>c6,eGi:()=>df,f6_:()=>X1,gdJ:()=>$c,hb3:()=>kd,iW_:()=>Eb,iy8:()=>oy,jPR:()=>q9,jTw:()=>hf,k02:()=>fn,k6j:()=>dy,knH:()=>Td,ld_:()=>B0,njF:()=>ib,nsx:()=>Gy,o97:()=>Sa,pCJ:()=>ui,pS3:()=>we,peG:()=>wg,qFF:()=>Ru,qIE:()=>Db,s5m:()=>S1,vfE:()=>K_,xiI:()=>hp,ymQ:()=>oa,zPk:()=>nd,zjW:()=>w0,zm_:()=>l9,zpE:()=>$8});var P={prefix:"fas",iconName:"dollar-sign",icon:[320,512,[128178,61781,"dollar","usd"],"24","M136 24c0-13.3 10.7-24 24-24s24 10.7 24 24l0 40 56 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-114.9 0c-24.9 0-45.1 20.2-45.1 45.1 0 22.5 16.5 41.5 38.7 44.7l91.6 13.1c53.8 7.7 93.7 53.7 93.7 108 0 60.3-48.9 109.1-109.1 109.1l-10.9 0 0 40c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-40-72 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l130.9 0c24.9 0 45.1-20.2 45.1-45.1 0-22.5-16.5-41.5-38.7-44.7l-91.6-13.1C55.9 273.5 16 227.4 16 173.1 16 112.9 64.9 64 125.1 64l10.9 0 0-40z"]},_={prefix:"fas",iconName:"question",icon:[320,512,[10067,10068,61736],"3f","M64 160c0-53 43-96 96-96s96 43 96 96c0 42.7-27.9 78.9-66.5 91.4-28.4 9.2-61.5 35.3-61.5 76.6l0 24c0 17.7 14.3 32 32 32s32-14.3 32-32l0-24c0-1.7 .6-4.1 3.5-7.3 3-3.3 7.9-6.5 13.7-8.4 64.3-20.7 110.8-81 110.8-152.3 0-88.4-71.6-160-160-160S0 71.6 0 160c0 17.7 14.3 32 32 32s32-14.3 32-32zm96 352c22.1 0 40-17.9 40-40s-17.9-40-40-40-40 17.9-40 40 17.9 40 40 40z"]},J={prefix:"fas",iconName:"scale-balanced",icon:[640,512,[9878,"balance-scale"],"f24e","M384 32l128 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L398.4 96c-5.2 25.8-22.9 47.1-46.4 57.3l0 294.7 160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-384 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l160 0 0-294.7c-23.5-10.3-41.2-31.6-46.4-57.3L128 96c-17.7 0-32-14.3-32-32s14.3-32 32-32l128 0c14.6-19.4 37.8-32 64-32s49.4 12.6 64 32zm55.6 288L584.4 320 512 195.8 439.6 320zM512 416c-62.9 0-115.2-34-126-78.9-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1-10.8 44.8-63.1 78.9-126 78.9zM126.8 195.8L54.4 320 199.3 320 126.8 195.8zM.9 337.1c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1-10.8 44.8-63.1 78.9-126 78.9S11.7 382 .9 337.1z"]},tt={prefix:"fas",iconName:"indian-rupee-sign",icon:[320,512,["indian-rupee","inr"],"e1bc","M0 64C0 46.3 14.3 32 32 32l264 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-76.7 0c17.7 19.8 30.1 44.6 34.7 72l42 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-42 0c-10.4 62.2-60.8 110.9-123.8 118.9L274.6 422c14.4 10.3 17.7 30.3 7.4 44.6s-30.3 17.7-44.6 7.4L13.4 314C2.1 306-2.7 291.5 1.5 278.2S18.1 256 32 256l80 0c35.8 0 66.1-23.5 76.3-56L24 200c-13.3 0-24-10.7-24-24s10.7-24 24-24l164.3 0c-10.2-32.5-40.5-56-76.3-56L32 96C14.3 96 0 81.7 0 64z"]},ui={prefix:"fas",iconName:"user-check",icon:[640,512,[],"f4fc","M286 304c98.5 0 178.3 79.8 178.3 178.3 0 16.4-13.3 29.7-29.7 29.7L78 512c-16.4 0-29.7-13.3-29.7-29.7 0-98.5 79.8-178.3 178.3-178.3l59.4 0zM585.7 105.9c7.8-10.7 22.8-13.1 33.5-5.3s13.1 22.8 5.3 33.5L522.1 274.9c-4.2 5.7-10.7 9.4-17.7 9.8s-14-2.2-18.9-7.3l-46.4-48c-9.2-9.5-9-24.7 .6-33.9 9.5-9.2 24.7-8.9 33.9 .6l26.5 27.4 85.6-117.7zM256.3 248a120 120 0 1 1 0-240 120 120 0 1 1 0 240z"]},Ji={prefix:"fas",iconName:"arrows-turn-to-dots",icon:[448,512,[],"e4c1","M265.4-6.6c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L285.3 64 352 64c53 0 96 43 96 96l0 32c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-32c0-17.7-14.3-32-32-32l-66.7 0 25.4 25.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-80-80c-12.5-12.5-12.5-32.8 0-45.3l80-80zm-82.7 272l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L162.7 400 96 400c-17.7 0-32 14.3-32 32l0 32c0 17.7-14.3 32-32 32S0 481.7 0 464l0-32c0-53 43-96 96-96l66.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0zM320 368a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM64 160a64 64 0 1 1 0-128 64 64 0 1 1 0 128z"]},Gi={prefix:"fas",iconName:"wallet",icon:[512,512,[],"f555","M64 32C28.7 32 0 60.7 0 96L0 384c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-192c0-35.3-28.7-64-64-64L72 128c-13.3 0-24-10.7-24-24S58.7 80 72 80l384 0c13.3 0 24-10.7 24-24s-10.7-24-24-24L64 32zM416 256a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},fn={prefix:"fas",iconName:"up-right-from-square",icon:[512,512,["external-link-alt"],"f35d","M290.4 19.8C295.4 7.8 307.1 0 320 0L480 0c17.7 0 32 14.3 32 32l0 160c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9L400 157.3 246.6 310.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L354.7 112 297.4 54.6c-9.2-9.2-11.9-22.9-6.9-34.9zM0 176c0-44.2 35.8-80 80-80l80 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-80 0c-8.8 0-16 7.2-16 16l0 256c0 8.8 7.2 16 16 16l256 0c8.8 0 16-7.2 16-16l0-80c0-17.7 14.3-32 32-32s32 14.3 32 32l0 80c0 44.2-35.8 80-80 80L80 512c-44.2 0-80-35.8-80-80L0 176z"]},Sa={prefix:"fas",iconName:"bars-staggered",icon:[512,512,["reorder","stream"],"f550","M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM64 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L96 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z"]},ao={prefix:"fas",iconName:"percent",icon:[448,512,[62101,62785,"percentage"],"25","M192 128a96 96 0 1 0 -192 0 96 96 0 1 0 192 0zM448 384a96 96 0 1 0 -192 0 96 96 0 1 0 192 0zM438.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-384 384c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l384-384z"]},ea={prefix:"fas",iconName:"magnifying-glass",icon:[512,512,[128269,"search"],"f002","M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376C296.3 401.1 253.9 416 208 416 93.1 416 0 322.9 0 208S93.1 0 208 0 416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"]},Oo={prefix:"fas",iconName:"code-branch",icon:[448,512,[],"f126","M80 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm80-24c0 32.8-19.7 61-48 73.3l0 70.7 176 0c26.5 0 48-21.5 48-48l0-22.7c-28.3-12.3-48-40.5-48-73.3 0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3l0 22.7c0 61.9-50.1 112-112 112l-176 0 0 70.7c28.3 12.3 48 40.5 48 73.3 0 44.2-35.8 80-80 80S0 476.2 0 432c0-32.8 19.7-61 48-73.3l0-205.3C19.7 141 0 112.8 0 80 0 35.8 35.8 0 80 0s80 35.8 80 80zm232 0a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM80 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z"]},js={prefix:"fas",iconName:"paintbrush",icon:[576,512,[128396,"paint-brush"],"f1fc","M480.5 10.3L259.1 158c-29.1 19.4-47.6 50.9-50.6 85.3 62.3 12.8 111.4 61.9 124.3 124.3 34.5-3 65.9-21.5 85.3-50.6L565.7 95.5c6.7-10.1 10.3-21.9 10.3-34.1 0-33.9-27.5-61.4-61.4-61.4-12.1 0-24 3.6-34.1 10.3zM288 400c0-61.9-50.1-112-112-112S64 338.1 64 400c0 3.9 .2 7.8 .6 11.6 1.8 17.5-10.2 36.4-27.8 36.4L32 448c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0c61.9 0 112-50.1 112-112z"]},we={prefix:"fas",iconName:"eye",icon:[576,512,[128065],"f06e","M288 32c-80.8 0-145.5 36.8-192.6 80.6-46.8 43.5-78.1 95.4-93 131.1-3.3 7.9-3.3 16.7 0 24.6 14.9 35.7 46.2 87.7 93 131.1 47.1 43.7 111.8 80.6 192.6 80.6s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1-47.1-43.7-111.8-80.6-192.6-80.6zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64-11.5 0-22.3-3-31.7-8.4-1 10.9-.1 22.1 2.9 33.2 13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-12.2-45.7-55.5-74.8-101.1-70.8 5.3 9.3 8.4 20.1 8.4 31.7z"]},bl={prefix:"fas",iconName:"receipt",icon:[384,512,[129534],"f543","M14 2.2C22.5-1.7 32.5-.3 39.6 5.8L80 40.4 120.4 5.8c9-7.7 22.3-7.7 31.2 0L192 40.4 232.4 5.8c9-7.7 22.2-7.7 31.2 0L304 40.4 344.4 5.8c7.1-6.1 17.1-7.5 25.6-3.6S384 14.6 384 24l0 464c0 9.4-5.5 17.9-14 21.8s-18.5 2.5-25.6-3.6l-40.4-34.6-40.4 34.6c-9 7.7-22.2 7.7-31.2 0l-40.4-34.6-40.4 34.6c-9 7.7-22.3 7.7-31.2 0L80 471.6 39.6 506.2c-7.1 6.1-17.1 7.5-25.6 3.6S0 497.4 0 488L0 24C0 14.6 5.5 6.1 14 2.2zM104 136c-13.3 0-24 10.7-24 24s10.7 24 24 24l176 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-176 0zM80 352c0 13.3 10.7 24 24 24l176 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-176 0c-13.3 0-24 10.7-24 24zm24-120c-13.3 0-24 10.7-24 24s10.7 24 24 24l176 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-176 0z"]},In={prefix:"fas",iconName:"unlock-keyhole",icon:[384,512,["unlock-alt"],"f13e","M192 32c-35.3 0-64 28.7-64 64l0 64 192 0c35.3 0 64 28.7 64 64l0 224c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 224c0-35.3 28.7-64 64-64l0-64c0-70.7 57.3-128 128-128 63.5 0 116.1 46.1 126.2 106.7 2.9 17.4-8.8 33.9-26.3 36.9s-33.9-8.8-36.9-26.3C250 55.1 223.7 32 192 32zm40 328c13.3 0 24-10.7 24-24s-10.7-24-24-24l-80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l80 0z"]},Lr={prefix:"fas",iconName:"infinity",icon:[640,512,[8734,9854],"f534","M0 256c0-88.4 71.6-160 160-160 50.4 0 97.8 23.7 128 64l32 42.7 32-42.7c30.2-40.3 77.6-64 128-64 88.4 0 160 71.6 160 160S568.4 416 480 416c-50.4 0-97.8-23.7-128-64l-32-42.7-32 42.7c-30.2 40.3-77.6 64-128 64-88.4 0-160-71.6-160-160zm280 0l-43.2-57.6c-18.1-24.2-46.6-38.4-76.8-38.4-53 0-96 43-96 96s43 96 96 96c30.2 0 58.7-14.2 76.8-38.4L280 256zm80 0l43.2 57.6c18.1 24.2 46.6 38.4 76.8 38.4 53 0 96-43 96-96s-43-96-96-96c-30.2 0-58.7 14.2-76.8 38.4L360 256z"]},$c={prefix:"fas",iconName:"users",icon:[640,512,[],"f0c0","M320 16a104 104 0 1 1 0 208 104 104 0 1 1 0-208zM96 88a72 72 0 1 1 0 144 72 72 0 1 1 0-144zM0 416c0-70.7 57.3-128 128-128 12.8 0 25.2 1.9 36.9 5.4-32.9 36.8-52.9 85.4-52.9 138.6l0 16c0 11.4 2.4 22.2 6.7 32L32 480c-17.7 0-32-14.3-32-32l0-32zm521.3 64c4.3-9.8 6.7-20.6 6.7-32l0-16c0-53.2-20-101.8-52.9-138.6 11.7-3.5 24.1-5.4 36.9-5.4 70.7 0 128 57.3 128 128l0 32c0 17.7-14.3 32-32 32l-86.7 0zM472 160a72 72 0 1 1 144 0 72 72 0 1 1 -144 0zM160 432c0-88.4 71.6-160 160-160s160 71.6 160 160l0 16c0 17.7-14.3 32-32 32l-256 0c-17.7 0-32-14.3-32-32l0-16z"]},f1={prefix:"fas",iconName:"pen-ruler",icon:[512,512,["pencil-ruler"],"f5ae","M404 0c19.2 0 37.6 7.6 51.1 21.2l35.7 35.7C504.4 70.4 512 88.8 512 108s-7.6 37.6-21.2 51.1L445.9 204 308 66.1 352.9 21.2C366.4 7.6 384.8 0 404 0zM58.9 315.1L274.1 100 412 237.9 196.9 453.1c-10.7 10.7-24.1 18.5-38.7 22.6L30.4 511.1c-8.3 2.3-17.3 0-23.4-6.2s-8.5-15.1-6.2-23.4L36.4 353.8c4.1-14.6 11.8-27.9 22.6-38.7zM225.4 80.8L80.8 225.4 11.7 156.3c-15.6-15.6-15.6-40.9 0-56.6l88-88c15.6-15.6 40.9-15.6 56.6 0l5.9 5.9-56.3 56.3c-7.8 7.8-7.8 20.5 0 28.3s20.5 7.8 28.3 0l56.3-56.3 34.9 34.9zM431.2 286.6l34.9 34.9-56.3 56.3c-7.8 7.8-7.8 20.5 0 28.3s20.5 7.8 28.3 0l56.3-56.3 5.9 5.9c15.6 15.6 15.6 40.9 0 56.6l-88 88c-15.6 15.6-40.9 15.6-56.6 0l-69.1-69.1 144.6-144.6z"]},Dc={prefix:"fas",iconName:"won-sign",icon:[512,512,[8361,"krw","won"],"f159","M62.4 53.9C56.8 37.1 38.7 28.1 21.9 33.6S-3.9 57.4 1.7 74.1L56.9 240 32 240c-13.3 0-24 10.7-24 24s10.7 24 24 24l40.9 0 56.7 170.1c4.5 13.5 17.4 22.4 31.6 21.9s26.4-10.4 29.8-24.2L233 288 279 288 321 455.8c3.4 13.8 15.6 23.7 29.8 24.2s27.1-8.4 31.6-21.9L439.1 288 480 288c13.3 0 24-10.7 24-24s-10.7-24-24-24l-24.9 0 55.3-165.9c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2l-62 186.1-54.6 0-45.9-183.8C283.5 42 270.7 32 256 32s-27.5 10-31 24.2L179 240 124.4 240 62.4 53.9zm78 234.1l26.6 0-11.4 45.6-15.2-45.6zM245 240l11-44.1 11 44.1-22 0zm100 48l26.6 0-15.2 45.6-11.4-45.6z"]},w0={prefix:"fas",iconName:"franc-sign",icon:[320,512,[],"e18f","M80 32C62.3 32 48 46.3 48 64l0 256-24 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l24 0 0 80c0 17.7 14.3 32 32 32s32-14.3 32-32l0-80 88 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-88 0 0-64 144 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-144 0 0-96 176 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32z"]},Td={prefix:"fas",iconName:"signs-post",icon:[512,512,["map-signs"],"f277","M256.4 0c-17.7 0-32 14.3-32 32l0 32-160 0c-17.7 0-32 14.3-32 32l0 64c0 17.7 14.3 32 32 32l160 0 0 64-153.4 0c-4.2 0-8.3 1.7-11.3 4.7l-48 48c-6.2 6.2-6.2 16.4 0 22.6l48 48c3 3 7.1 4.7 11.3 4.7l153.4 0 0 96c0 17.7 14.3 32 32 32s32-14.3 32-32l0-96 160 0c17.7 0 32-14.3 32-32l0-64c0-17.7-14.3-32-32-32l-160 0 0-64 153.4 0c4.2 0 8.3-1.7 11.3-4.7l48-48c6.2-6.2 6.2-16.4 0-22.6l-48-48c-3-3-7.1-4.7-11.3-4.7l-153.4 0 0-32c0-17.7-14.3-32-32-32z"]},kd={prefix:"fas",iconName:"turkish-lira-sign",icon:[448,512,["try","turkish-lira"],"e2bb","M160 32c17.7 0 32 14.3 32 32l0 43.6 121.4-34.7c12.7-3.6 26 3.7 29.7 16.5s-3.7 26-16.5 29.7l-134.6 38.5 0 46.1 121.4-34.7c12.7-3.6 26 3.7 29.7 16.5s-3.7 26-16.5 29.7l-134.6 38.5 0 162.5 72 0c53 0 96-43 96-96 0-17.7 14.3-32 32-32s32 14.3 32 32c0 88.4-71.6 160-160 160l-104 0c-17.7 0-32-14.3-32-32l0-176.2-25.4 7.3c-12.7 3.6-26-3.7-29.7-16.5s3.7-26 16.5-29.7l38.6-11 0-46.1-25.4 7.3c-12.7 3.6-26-3.7-29.7-16.5s3.7-26 16.5-29.7l38.6-11 0-61.9c0-17.7 14.3-32 32-32z"]},B0={prefix:"fas",iconName:"user-clock",icon:[576,512,[],"f4fd","M224 8a120 120 0 1 1 0 240 120 120 0 1 1 0-240zM194.3 304l59.4 0c3.9 0 7.9 .1 11.8 .4-16.2 28.2-25.5 60.8-25.5 95.6 0 41.8 13.4 80.5 36 112L45.7 512C29.3 512 16 498.7 16 482.3 16 383.8 95.8 304 194.3 304zM288 400a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-80c-8.8 0-16 7.2-16 16l0 64c0 8.8 7.2 16 16 16l48 0c8.8 0 16-7.2 16-16s-7.2-16-16-16l-32 0 0-48c0-8.8-7.2-16-16-16z"]},S1={prefix:"fas",iconName:"euro-sign",icon:[448,512,[8364,"eur","euro"],"f153","M73.3 192C100.8 99.5 186.5 32 288 32l64 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-64 0c-65.6 0-122 39.5-146.7 96L272 192c13.3 0 24 10.7 24 24s-10.7 24-24 24l-143.2 0c-.5 5.3-.8 10.6-.8 16s.3 10.7 .8 16L272 272c13.3 0 24 10.7 24 24s-10.7 24-24 24l-130.7 0c24.7 56.5 81.1 96 146.7 96l64 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-64 0c-101.5 0-187.2-67.5-214.7-160L40 320c-13.3 0-24-10.7-24-24s10.7-24 24-24l24.6 0c-.7-10.5-.7-21.5 0-32L40 240c-13.3 0-24-10.7-24-24s10.7-24 24-24l33.3 0z"]},nd={prefix:"fas",iconName:"yen-sign",icon:[384,512,[165,"cny","jpy","rmb","yen"],"f157","M74.9 46.7c-9.6-14.9-29.4-19.2-44.2-9.6S11.5 66.4 21.1 81.3L143.7 272 88 272c-13.3 0-24 10.7-24 24s10.7 24 24 24l72 0 0 32-72 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l72 0 0 48c0 17.7 14.3 32 32 32s32-14.3 32-32l0-48 72 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-72 0 0-32 72 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-55.7 0 122.6-190.7c9.6-14.9 5.3-34.7-9.6-44.2s-34.7-5.3-44.2 9.6L192 228.8 74.9 46.7z"]},Mu={prefix:"fas",iconName:"angles-down",icon:[384,512,["angle-double-down"],"f103","M214.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 402.7 329.4 265.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-160 160zm160-352l-160 160c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 210.7 329.4 73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3z"]},df={prefix:"fas",iconName:"network-wired",icon:[576,512,[],"f6ff","M248 88l80 0 0 48-80 0 0-48zm-8-56c-26.5 0-48 21.5-48 48l0 64c0 26.5 21.5 48 48 48l16 0 0 32-224 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0 0 32-16 0c-26.5 0-48 21.5-48 48l0 64c0 26.5 21.5 48 48 48l96 0c26.5 0 48-21.5 48-48l0-64c0-26.5-21.5-48-48-48l-16 0 0-32 192 0 0 32-16 0c-26.5 0-48 21.5-48 48l0 64c0 26.5 21.5 48 48 48l96 0c26.5 0 48-21.5 48-48l0-64c0-26.5-21.5-48-48-48l-16 0 0-32 96 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-224 0 0-32 16 0c26.5 0 48-21.5 48-48l0-64c0-26.5-21.5-48-48-48l-96 0zM448 376l8 0 0 48-80 0 0-48 72 0zm-256 0l8 0 0 48-80 0 0-48 72 0z"]},hf={prefix:"fas",iconName:"code",icon:[576,512,[],"f121","M360.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm64.6 136.1c-12.5 12.5-12.5 32.8 0 45.3l73.4 73.4-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0zm-274.7 0c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 150.6 182.6c12.5-12.5 12.5-32.8 0-45.3z"]},Ru={prefix:"fas",iconName:"diagram-project",icon:[512,512,["project-diagram"],"f542","M0 80C0 53.5 21.5 32 48 32l96 0c26.5 0 48 21.5 48 48l0 16 128 0 0-16c0-26.5 21.5-48 48-48l96 0c26.5 0 48 21.5 48 48l0 96c0 26.5-21.5 48-48 48l-96 0c-26.5 0-48-21.5-48-48l0-16-128 0 0 16c0 7.3-1.7 14.3-4.6 20.5l68.6 91.5 80 0c26.5 0 48 21.5 48 48l0 96c0 26.5-21.5 48-48 48l-96 0c-26.5 0-48-21.5-48-48l0-96c0-7.3 1.7-14.3 4.6-20.5L128 224 48 224c-26.5 0-48-21.5-48-48L0 80z"]},oa={prefix:"fas",iconName:"money-bill-wave",icon:[512,512,[],"f53a","M0 419.6L0 109.5c0-23.2 24.1-38.6 46.3-32 87.7 26.2 149.7 5.5 212.1-15.3 64.5-21.5 129.4-43.1 223.3-13.1 18.5 5.9 30.3 23.8 30.3 43.3l0 310.1c0 23.2-24.1 38.6-46.2 32-87.7-26.2-149.8-5.5-212.1 15.3-64.5 21.5-129.4 43.1-223.3 13.1-18.5-5.9-30.3-23.8-30.3-43.3zM336 256c0-53-35.8-96-80-96s-80 43-80 96 35.8 96 80 96 80-43 80-96zM120 413.6c4.4 0 7.9-3.8 7.2-8.1-4.6-27.8-27-49.5-55.2-53-4.4-.5-8 3.1-8 7.5l0 39.9c0 3.6 2.4 6.8 6 7.7 17.9 4.2 34.3 6.1 50 6.1zm318.5-51.1c5 .8 9.5-3 9.5-8l0-42.6c0-4.4-3.6-8.1-8-7.5-25.2 3.1-45.9 20.9-53.2 44.6-1.4 4.7 2.3 9.1 7.2 9.2 14.2 .4 29 1.7 44.4 4.3zM448 152l0-39.9c0-3.6-2.5-6.8-6-7.7-17.9-4.2-34.3-6.1-50-6.1-4.4 0-7.9 3.8-7.2 8.1 4.6 27.8 27 49.5 55.2 53 4.4 .5 8-3.1 8-7.5zM125.2 162.9c1.4-4.7-2.3-9.1-7.2-9.2-14.2-.4-29-1.7-44.4-4.3-5-.8-9.5 3-9.5 8L64 200c0 4.4 3.6 8.1 8 7.5 25.2-3.1 45.9-20.9 53.2-44.6z"]},Pu={prefix:"fas",iconName:"brazilian-real-sign",icon:[512,512,[],"e46c","M400 16c17.7 0 32 14.3 32 32l0 16 16 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-48.9 0c-26 0-47.1 21.1-47.1 47.1 0 22.5 15.9 41.8 37.9 46.2l32.8 6.6c51.9 10.4 89.3 56 89.3 109 0 50.6-33.8 93.3-80 106.7l0 20.4c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-16-32 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l64.9 0c26 0 47.1-21.1 47.1-47.1 0-22.5-15.9-41.8-37.9-46.2l-32.8-6.6c-51.9-10.4-89.3-56-89.3-109 0-50.6 33.8-93.2 80-106.7L368 48c0-17.7 14.3-32 32-32zM0 64C0 46.3 14.3 32 32 32l80 0c79.5 0 144 64.5 144 144 0 54.3-30 101.5-74.4 126.1l41 136.7c5.1 16.9-4.5 34.8-21.5 39.8s-34.8-4.5-39.8-21.5L120.1 319.8c-2.7 .1-5.4 .2-8.1 .2l-48 0 0 128c0 17.7-14.3 32-32 32S0 465.7 0 448L0 64zM64 256l48 0c44.2 0 80-35.8 80-80s-35.8-80-80-80l-48 0 0 160z"]},K0={prefix:"fas",iconName:"link",icon:[576,512,[128279,"chain"],"f0c1","M419.5 96c-16.6 0-32.7 4.5-46.8 12.7-15.8-16-34.2-29.4-54.5-39.5 28.2-24 64.1-37.2 101.3-37.2 86.4 0 156.5 70 156.5 156.5 0 41.5-16.5 81.3-45.8 110.6l-71.1 71.1c-29.3 29.3-69.1 45.8-110.6 45.8-86.4 0-156.5-70-156.5-156.5 0-1.5 0-3 .1-4.5 .5-17.7 15.2-31.6 32.9-31.1s31.6 15.2 31.1 32.9c0 .9 0 1.8 0 2.6 0 51.1 41.4 92.5 92.5 92.5 24.5 0 48-9.7 65.4-27.1l71.1-71.1c17.3-17.3 27.1-40.9 27.1-65.4 0-51.1-41.4-92.5-92.5-92.5zM275.2 173.3c-1.9-.8-3.8-1.9-5.5-3.1-12.6-6.5-27-10.2-42.1-10.2-24.5 0-48 9.7-65.4 27.1L91.1 258.2c-17.3 17.3-27.1 40.9-27.1 65.4 0 51.1 41.4 92.5 92.5 92.5 16.5 0 32.6-4.4 46.7-12.6 15.8 16 34.2 29.4 54.6 39.5-28.2 23.9-64 37.2-101.3 37.2-86.4 0-156.5-70-156.5-156.5 0-41.5 16.5-81.3 45.8-110.6l71.1-71.1c29.3-29.3 69.1-45.8 110.6-45.8 86.6 0 156.5 70.6 156.5 156.9 0 1.3 0 2.6 0 3.9-.4 17.7-15.1 31.6-32.8 31.2s-31.6-15.1-31.2-32.8c0-.8 0-1.5 0-2.3 0-33.7-18-63.3-44.8-79.6z"]},m3={prefix:"fas",iconName:"gear",icon:[512,512,[9881,"cog"],"f013","M195.1 9.5C198.1-5.3 211.2-16 226.4-16l59.8 0c15.2 0 28.3 10.7 31.3 25.5L332 79.5c14.1 6 27.3 13.7 39.3 22.8l67.8-22.5c14.4-4.8 30.2 1.2 37.8 14.4l29.9 51.8c7.6 13.2 4.9 29.8-6.5 39.9L447 233.3c.9 7.4 1.3 15 1.3 22.7s-.5 15.3-1.3 22.7l53.4 47.5c11.4 10.1 14 26.8 6.5 39.9l-29.9 51.8c-7.6 13.1-23.4 19.2-37.8 14.4l-67.8-22.5c-12.1 9.1-25.3 16.7-39.3 22.8l-14.4 69.9c-3.1 14.9-16.2 25.5-31.3 25.5l-59.8 0c-15.2 0-28.3-10.7-31.3-25.5l-14.4-69.9c-14.1-6-27.2-13.7-39.3-22.8L73.5 432.3c-14.4 4.8-30.2-1.2-37.8-14.4L5.8 366.1c-7.6-13.2-4.9-29.8 6.5-39.9l53.4-47.5c-.9-7.4-1.3-15-1.3-22.7s.5-15.3 1.3-22.7L12.3 185.8c-11.4-10.1-14-26.8-6.5-39.9L35.7 94.1c7.6-13.2 23.4-19.2 37.8-14.4l67.8 22.5c12.1-9.1 25.3-16.7 39.3-22.8L195.1 9.5zM256.3 336a80 80 0 1 0 -.6-160 80 80 0 1 0 .6 160z"]},Ya={prefix:"fas",iconName:"user-lock",icon:[576,512,[],"f502","M224 8a120 120 0 1 1 0 240 120 120 0 1 1 0-240zM194.3 304l59.4 0c29.7 0 57.7 7.3 82.3 20.1l0 4.3c-19.6 17.6-32 43.1-32 71.5l0 96c0 5.5 .5 10.9 1.3 16.1L45.7 512C29.3 512 16 498.7 16 482.3 16 383.8 95.8 304 194.3 304zm301.7 .1c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 47.9 64 0 0-47.9zM352 400c0-20.9 13.4-38.7 32-45.3l0-50.6c0-44.2 35.8-80 80-80s80 35.8 80 80l0 50.6c18.6 6.6 32 24.4 32 45.3l0 96c0 26.5-21.5 48-48 48l-128 0c-26.5 0-48-21.5-48-48l0-96z"]},Hc={prefix:"fas",iconName:"chart-bar",icon:[512,512,["bar-chart"],"f080","M32 32c17.7 0 32 14.3 32 32l0 336c0 8.8 7.2 16 16 16l400 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L80 480c-44.2 0-80-35.8-80-80L0 64C0 46.3 14.3 32 32 32zm96 64c0-17.7 14.3-32 32-32l192 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32zm32 80l128 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 112l256 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-256 0c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},ba={prefix:"fas",iconName:"baht-sign",icon:[320,512,[],"e0ac","M136 0c-13.3 0-24 10.7-24 24l0 40-74.4 0C16.8 64 0 80.8 0 101.6L0 406.3c0 23 18.7 41.7 41.7 41.7l70.3 0 0 40c0 13.3 10.7 24 24 24s24-10.7 24-24l0-40 48 0c61.9 0 112-50.1 112-112 0-40.1-21.1-75.3-52.7-95.1 13.1-18.3 20.7-40.7 20.7-64.9 0-61.9-50.1-112-112-112l-16 0 0-40c0-13.3-10.7-24-24-24zM112 128l0 96-48 0 0-96 48 0zm48 96l0-96 16 0c26.5 0 48 21.5 48 48s-21.5 48-48 48l-16 0zm-48 64l0 96-48 0 0-96 48 0zm48 96l0-96 48 0c26.5 0 48 21.5 48 48s-21.5 48-48 48l-48 0z"]},g5={prefix:"fas",iconName:"server",icon:[448,512,[],"f233","M64 32C28.7 32 0 60.7 0 96l0 64c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-64c0-35.3-28.7-64-64-64L64 32zm216 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm56 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM64 288c-35.3 0-64 28.7-64 64l0 64c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-64c0-35.3-28.7-64-64-64L64 288zm216 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm56 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z"]},wg={prefix:"fas",iconName:"arrows-turn-right",icon:[448,512,[],"e4c0","M313.4-6.6c12.5-12.5 32.8-12.5 45.3 0l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L338.7 128 128 128c-35.3 0-64 28.7-64 64l0 32c0 17.7-14.3 32-32 32S0 241.7 0 224l0-32C0 121.3 57.3 64 128 64l210.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3zm-96 256c12.5-12.5 32.8-12.5 45.3 0l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 384 96 384c-17.7 0-32 14.3-32 32l0 32c0 17.7-14.3 32-32 32S0 465.7 0 448l0-32c0-53 43-96 96-96l146.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3z"]},hp={prefix:"fas",iconName:"gauge-high",icon:[512,512,[62461,"tachometer-alt","tachometer-alt-fast"],"f625","M0 256a256 256 0 1 1 512 0 256 256 0 1 1 -512 0zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM256 416c35.3 0 64-28.7 64-64 0-16.2-6-31.1-16-42.3l69.5-138.9c5.9-11.9 1.1-26.3-10.7-32.2s-26.3-1.1-32.2 10.7L261.1 288.2c-1.7-.1-3.4-.2-5.1-.2-35.3 0-64 28.7-64 64s28.7 64 64 64zM176 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM96 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm352-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"]},_p={prefix:"fas",iconName:"right-left",icon:[512,512,["exchange-alt"],"f362","M502.6 150.6l-96 96c-9.2 9.2-22.9 11.9-34.9 6.9S352 236.9 352 224l0-64-320 0c-17.7 0-32-14.3-32-32S14.3 96 32 96l320 0 0-64c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l96 96c12.5 12.5 12.5 32.8 0 45.3zm-397.3 352l-96-96c-12.5-12.5-12.5-32.8 0-45.3l96-96c9.2-9.2 22.9-11.9 34.9-6.9S160 275.1 160 288l0 64 320 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-320 0 0 64c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9z"]},yp={prefix:"fas",iconName:"dumbbell",icon:[640,512,[],"f44b","M96 112c0-26.5 21.5-48 48-48s48 21.5 48 48l0 112 256 0 0-112c0-26.5 21.5-48 48-48s48 21.5 48 48l0 16 16 0c26.5 0 48 21.5 48 48l0 48c17.7 0 32 14.3 32 32s-14.3 32-32 32l0 48c0 26.5-21.5 48-48 48l-16 0 0 16c0 26.5-21.5 48-48 48s-48-21.5-48-48l0-112-256 0 0 112c0 26.5-21.5 48-48 48s-48-21.5-48-48l0-16-16 0c-26.5 0-48-21.5-48-48l0-48c-17.7 0-32-14.3-32-32s14.3-32 32-32l0-48c0-26.5 21.5-48 48-48l16 0 0-16z"]},Zf={prefix:"fas",iconName:"xmark",icon:[384,512,[128473,10005,10006,10060,215,"close","multiply","remove","times"],"f00d","M55.1 73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L147.2 256 9.9 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192.5 301.3 329.9 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.8 256 375.1 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192.5 210.7 55.1 73.4z"]},X1={prefix:"fas",iconName:"ruble-sign",icon:[448,512,[8381,"rouble","rub","ruble"],"f158","M112 32C94.3 32 80 46.3 80 64l0 208-40 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l40 0 0 48-40 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l40 0 0 32c0 17.7 14.3 32 32 32s32-14.3 32-32l0-32 152 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-152 0 0-48 112 0c79.5 0 144-64.5 144-144S335.5 32 256 32L112 32zM256 256l-112 0 0-160 112 0c44.2 0 80 35.8 80 80s-35.8 80-80 80z"]},v8={prefix:"fas",iconName:"clock-rotate-left",icon:[576,512,["history"],"f1da","M288 64c106 0 192 86 192 192S394 448 288 448c-65.2 0-122.9-32.5-157.6-82.3-10.1-14.5-30.1-18-44.6-7.9s-18 30.1-7.9 44.6C124.1 468.6 201 512 288 512 429.4 512 544 397.4 544 256S429.4 0 288 0C202.3 0 126.5 42.1 80 106.7L80 80c0-17.7-14.3-32-32-32S16 62.3 16 80l0 112c0 17.7 14.3 32 32 32l24.6 0c.5 0 1 0 1.5 0l86 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-38.3 0C154.9 102.6 217 64 288 64zm24 88c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 104c0 6.4 2.5 12.5 7 17l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-65-65 0-94.1z"]},rm={prefix:"fas",iconName:"chart-pie",icon:[576,512,["pie-chart"],"f200","M512.4 240l-176 0c-17.7 0-32-14.3-32-32l0-176c0-17.7 14.4-32.2 31.9-29.9 107 14.2 191.8 99 206 206 2.3 17.5-12.2 31.9-29.9 31.9zM222.6 37.2c18.1-3.8 33.8 11 33.8 29.5l0 197.3c0 5.6 2 11 5.5 15.3L394 438.7c11.7 14.1 9.2 35.4-6.9 44.1-34.1 18.6-73.2 29.2-114.7 29.2-132.5 0-240-107.5-240-240 0-115.5 81.5-211.9 190.2-234.8zM477.8 288l64 0c18.5 0 33.3 15.7 29.5 33.8-10.2 48.4-35 91.4-69.6 124.2-12.3 11.7-31.6 9.2-42.4-3.9L374.9 340.4c-17.3-20.9-2.4-52.4 24.6-52.4l78.2 0z"]},c6={prefix:"fas",iconName:"bullhorn",icon:[512,512,[128226,128363],"f0a1","M461.2 18.9C472.7 24 480 35.4 480 48l0 416c0 12.6-7.3 24-18.8 29.1s-24.8 3.2-34.3-5.1l-46.6-40.7c-43.6-38.1-98.7-60.3-156.4-63l0 95.7c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32l0-96C57.3 384 0 326.7 0 256S57.3 128 128 128l84.5 0c61.8-.2 121.4-22.7 167.9-63.3l46.6-40.7c9.4-8.3 22.9-10.2 34.3-5.1zM224 320l0 .2c70.3 2.7 137.8 28.5 192 73.4l0-275.3c-54.2 44.9-121.7 70.7-192 73.4L224 320z"]},$8={prefix:"fas",iconName:"triangle-exclamation",icon:[512,512,[9888,"exclamation-triangle","warning"],"f071","M256 0c14.7 0 28.2 8.1 35.2 21l216 400c6.7 12.4 6.4 27.4-.8 39.5S486.1 480 472 480L40 480c-14.1 0-27.2-7.4-34.4-19.5s-7.5-27.1-.8-39.5l216-400c7-12.9 20.5-21 35.2-21zm0 352a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm0-192c-18.2 0-32.7 15.5-31.4 33.7l7.4 104c.9 12.5 11.4 22.3 23.9 22.3 12.6 0 23-9.7 23.9-22.3l7.4-104c1.3-18.2-13.1-33.7-31.4-33.7z"]},n_={prefix:"fas",iconName:"lock",icon:[384,512,[128274],"f023","M128 96l0 64 128 0 0-64c0-35.3-28.7-64-64-64s-64 28.7-64 64zM64 160l0-64C64 25.3 121.3-32 192-32S320 25.3 320 96l0 64c35.3 0 64 28.7 64 64l0 224c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 224c0-35.3 28.7-64 64-64z"]},h_={prefix:"fas",iconName:"window-restore",icon:[576,512,[],"f2d2","M512 96L160 96c0-35.3 28.7-64 64-64l288 0c35.3 0 64 28.7 64 64l0 192c0 35.3-28.7 64-64 64l-48 0 0-64 48 0 0-192zM0 224c0-35.3 28.7-64 64-64l288 0c35.3 0 64 28.7 64 64l0 192c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 224zm64 40c0 13.3 10.7 24 24 24l240 0c13.3 0 24-10.7 24-24s-10.7-24-24-24L88 240c-13.3 0-24 10.7-24 24z"]},Yd={prefix:"fas",iconName:"download",icon:[448,512,[],"f019","M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 210.7-41.4-41.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 242.7 256 32zM64 320c-35.3 0-64 28.7-64 64l0 32c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-32c0-35.3-28.7-64-64-64l-46.9 0-56.6 56.6c-31.2 31.2-81.9 31.2-113.1 0L110.9 320 64 320zm304 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"]},a9={prefix:"fas",iconName:"plus",icon:[448,512,[10133,61543,"add"],"2b","M256 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 160-160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l160 0 0 160c0 17.7 14.3 32 32 32s32-14.3 32-32l0-160 160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-160 0 0-160z"]},q9={prefix:"fas",iconName:"copy",icon:[448,512,[],"f0c5","M192 0c-35.3 0-64 28.7-64 64l0 256c0 35.3 28.7 64 64 64l192 0c35.3 0 64-28.7 64-64l0-200.6c0-17.4-7.1-34.1-19.7-46.2L370.6 17.8C358.7 6.4 342.8 0 326.3 0L192 0zM64 128c-35.3 0-64 28.7-64 64L0 448c0 35.3 28.7 64 64 64l192 0c35.3 0 64-28.7 64-64l0-16-64 0 0 16-192 0 0-256 16 0 0-64-16 0z"]},o9={prefix:"fas",iconName:"money-bill-1",icon:[512,512,["money-bill-alt"],"f3d1","M64 64C28.7 64 0 92.7 0 128L0 384c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-256c0-35.3-28.7-64-64-64L64 64zm192 80a112 112 0 1 1 0 224 112 112 0 1 1 0-224zM64 184l0-48c0-4.4 3.6-8 8-8l48 0c4.4 0 8.1 3.6 7.5 8-3.6 29-26.6 51.9-55.5 55.5-4.4 .5-8-3.1-8-7.5zm0 144c0-4.4 3.6-8.1 8-7.5 29 3.6 51.9 26.6 55.5 55.5 .5 4.4-3.1 8-7.5 8l-48 0c-4.4 0-8-3.6-8-8l0-48zM440 191.5c-29-3.6-51.9-26.6-55.5-55.5-.5-4.4 3.1-8 7.5-8l48 0c4.4 0 8 3.6 8 8l0 48c0 4.4-3.6 8.1-8 7.5zM448 328l0 48c0 4.4-3.6 8-8 8l-48 0c-4.4 0-8.1-3.6-7.5-8 3.6-29 26.6-51.9 55.5-55.5 4.4-.5 8 3.1 8 7.5zM240 188c-11 0-20 9-20 20 0 9.7 6.9 17.7 16 19.6l0 48.4-4 0c-11 0-20 9-20 20s9 20 20 20l48 0c11 0 20-9 20-20s-9-20-20-20l-4 0 0-68c0-11-9-20-20-20l-16 0z"]},oy=o9,dy={prefix:"fas",iconName:"eye-slash",icon:[576,512,[],"f070","M41-24.9c-9.4-9.4-24.6-9.4-33.9 0S-2.3-.3 7 9.1l528 528c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-96.4-96.4c2.7-2.4 5.4-4.8 8-7.2 46.8-43.5 78.1-95.4 93-131.1 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1-47.1-43.7-111.8-80.6-192.6-80.6-56.8 0-105.6 18.2-146 44.2L41-24.9zM204.5 138.7c23.5-16.8 52.4-26.7 83.5-26.7 79.5 0 144 64.5 144 144 0 31.1-9.9 59.9-26.7 83.5l-34.7-34.7c12.7-21.4 17-47.7 10.1-73.7-13.7-51.2-66.4-81.6-117.6-67.9-8.6 2.3-16.7 5.7-24 10l-34.7-34.7zM325.3 395.1c-11.9 3.2-24.4 4.9-37.3 4.9-79.5 0-144-64.5-144-144 0-12.9 1.7-25.4 4.9-37.3L69.4 139.2c-32.6 36.8-55 75.8-66.9 104.5-3.3 7.9-3.3 16.7 0 24.6 14.9 35.7 46.2 87.7 93 131.1 47.1 43.7 111.8 80.6 192.6 80.6 37.3 0 71.2-7.9 101.5-20.6l-64.2-64.2z"]},l9={prefix:"fas",iconName:"bolt",icon:[448,512,[9889,"zap"],"f0e7","M338.8-9.9c11.9 8.6 16.3 24.2 10.9 37.8L271.3 224 416 224c13.5 0 25.5 8.4 30.1 21.1s.7 26.9-9.6 35.5l-288 240c-11.3 9.4-27.4 9.9-39.3 1.3s-16.3-24.2-10.9-37.8L176.7 288 32 288c-13.5 0-25.5-8.4-30.1-21.1s-.7-26.9 9.6-35.5l288-240c11.3-9.4 27.4-9.9 39.3-1.3z"]},my={prefix:"fas",iconName:"burst",icon:[512,512,[],"e4dc","M37.6 4.2C28-2.3 15.2-1.1 7 7S-2.3 28 4.2 37.6l112 163.3-99.6 32.3C6.7 236.4 0 245.6 0 256s6.7 19.6 16.6 22.8l103.1 33.4-52.9 100.6c-4.9 9.3-3.2 20.7 4.3 28.1s18.8 9.2 28.1 4.3l100.6-52.9 33.4 103.1c3.2 9.9 12.4 16.6 22.8 16.6s19.6-6.7 22.8-16.6l33.4-103.1 100.6 52.9c9.3 4.9 20.7 3.2 28.1-4.3s9.2-18.8 4.3-28.1l-52.9-100.6 103.1-33.4c9.9-3.2 16.6-12.4 16.6-22.8s-6.7-19.6-16.6-22.8l-106.5-34.5 25.7-70.4c3.2-8.8 1-18.6-5.6-25.2s-16.4-8.8-25.2-5.6l-70.4 25.7-34.5-106.5C275.6 6.7 266.4 0 256 0s-19.6 6.7-22.8 16.6L200.9 116.2 37.6 4.2z"]},zy={prefix:"fas",iconName:"user-gear",icon:[640,512,["user-cog"],"f4fe","M256.5 8a120 120 0 1 1 0 240 120 120 0 1 1 0-240zM226.7 304l59.4 0 1.5 0c-12.9 26.8-7.8 58.2 11.5 79.5-20.2 22.3-24.8 55.8-9.4 83.4l22.5 40.4c.9 1.6 1.9 3.2 2.9 4.7l-237 0c-16.4 0-29.7-13.3-29.7-29.7 0-98.5 79.8-178.3 178.3-178.3zm205.9-56.4c0-13.3 10.7-24 24-24l48 0c13.3 0 24 10.7 24 24l0 6.1c0 18.9 24.1 32.8 40.5 23.4l5-2.9c11.6-6.7 26.5-2.6 33 9.1l22.4 40.2c6.2 11.2 2.6 25.2-8.2 32l-4.7 2.9c-16.2 10.1-16.2 39.9 0 50.1l4.6 2.9c10.8 6.8 14.5 20.8 8.3 32L607 483.8c-6.5 11.7-21.4 15.9-33 9.1l-4.9-2.9c-16.4-9.5-40.5 4.5-40.5 23.4l0 6.1c0 13.3-10.7 24-24 24l-48 0c-13.3 0-24-10.7-24-24l0-5.9c0-19-24.2-33-40.7-23.5l-4.8 2.8c-11.6 6.7-26.4 2.6-33-9.1l-22.6-40.4c-6.2-11.2-2.6-25.3 8.3-32.1l4.4-2.7c16.3-10.1 16.3-40.1 0-50.2l-4.5-2.8c-10.9-6.8-14.5-20.9-8.3-32.1l22.5-40.3c6.5-11.7 21.4-15.8 32.9-9.1l4.8 2.8c16.5 9.5 40.7-4.5 40.7-23.5l0-5.9zm99.9 136.2a52 52 0 1 0 -104 0 52 52 0 1 0 104 0z"]},Gy={prefix:"fas",iconName:"screwdriver-wrench",icon:[576,512,["tools"],"f7d9","M70.8-6.7c5.4-5.4 13.8-6.2 20.2-2L209.9 70.5c8.9 5.9 14.2 15.9 14.2 26.6l0 49.6 90.8 90.8c33.3-15 73.9-8.9 101.2 18.5L542.2 382.1c18.7 18.7 18.7 49.1 0 67.9l-60.1 60.1c-18.7 18.7-49.1 18.7-67.9 0L288.1 384c-27.4-27.4-33.5-67.9-18.5-101.2l-90.8-90.8-49.6 0c-10.7 0-20.7-5.3-26.6-14.2L23.4 58.9c-4.2-6.3-3.4-14.8 2-20.2L70.8-6.7zm145 303.5c-6.3 36.9 2.3 75.9 26.2 107.2l-94.9 95c-28.1 28.1-73.7 28.1-101.8 0s-28.1-73.7 0-101.8l135.4-135.5 35.2 35.1zM384.1 0c20.1 0 39.4 3.7 57.1 10.5 10 3.8 11.8 16.5 4.3 24.1L388.8 91.3c-3 3-4.7 7.1-4.7 11.3l0 41.4c0 8.8 7.2 16 16 16l41.4 0c4.2 0 8.3-1.7 11.3-4.7l56.7-56.7c7.6-7.5 20.3-5.7 24.1 4.3 6.8 17.7 10.5 37 10.5 57.1 0 43.2-17.2 82.3-45 111.1l-49.1-49.1c-33.1-33-78.5-45.7-121.1-38.4l-56.8-56.8 0-29.7-.2-5c-.8-12.4-4.4-24.3-10.5-34.9 29.4-35 73.4-57.2 122.7-57.3z"]},Ky={prefix:"fas",iconName:"route",icon:[512,512,[],"f4d7","M512 96c0 50.2-59.1 125.1-84.6 155-3.8 4.4-9.4 6.1-14.5 5L320 256c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0c53 0 96 43 96 96s-43 96-96 96l-276.4 0c8.7-9.9 19.3-22.6 30-36.8 6.3-8.4 12.8-17.6 19-27.2L416 448c17.7 0 32-14.3 32-32s-14.3-32-32-32l-96 0c-53 0-96-43-96-96s43-96 96-96l39.8 0c-21-31.5-39.8-67.7-39.8-96 0-53 43-96 96-96s96 43 96 96zM117.1 489.1c-3.8 4.3-7.2 8.1-10.1 11.3l-1.8 2-.2-.2c-6 4.6-14.6 4-20-1.8-25.2-27.4-85-97.9-85-148.4 0-53 43-96 96-96s96 43 96 96c0 30-21.1 67-43.5 97.9-10.7 14.7-21.7 28-30.8 38.5l-.6 .7zM128 352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM416 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z"]},Qy={prefix:"fas",iconName:"angles-up",icon:[384,512,["angle-double-up"],"f102","M214.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 109.3 329.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160zm160 352l-160-160c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 329.4 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z"]},ib={prefix:"fas",iconName:"eject",icon:[448,512,[9167],"f052","M224 32c13.5 0 26.3 5.6 35.4 15.6l176 192c12.9 14 16.2 34.3 8.6 51.8S419 320 400 320L48 320c-19 0-36.3-11.2-43.9-28.7s-4.3-37.7 8.6-51.8l176-192C197.7 37.6 210.5 32 224 32zM0 432c0-26.5 21.5-48 48-48l352 0c26.5 0 48 21.5 48 48s-21.5 48-48 48L48 480c-26.5 0-48-21.5-48-48z"]},hb={prefix:"fas",iconName:"box-archive",icon:[512,512,["archive"],"f187","M0 64C0 46.3 14.3 32 32 32l448 0c17.7 0 32 14.3 32 32l0 32c0 17.7-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96L0 64zM32 176l448 0 0 240c0 35.3-28.7 64-64 64L96 480c-35.3 0-64-28.7-64-64l0-240zm152 64c-13.3 0-24 10.7-24 24s10.7 24 24 24l144 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-144 0z"]},K_={prefix:"fas",iconName:"sterling-sign",icon:[384,512,[163,"gbp","pound-sign"],"f154","M91.3 288l-34.8 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l21.4 0C37.3 147.3 105.1 42 207.6 42l8.2 0c33.6 0 66.2 11.3 92.5 32.2l16.1 12.7c13.9 11 16.2 31.1 5.2 45s-31.1 16.2-45 5.2l-16.1-12.7c-15-11.9-33.6-18.4-52.8-18.4l-8.2 0c-57.3 0-94.7 59.9-69.7 111.4 3.6 7.4 6.6 14.9 9.1 22.6l149.5 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-141.2 0c1 35.3-8.7 70.6-28.9 100.9l-18.1 27.1 212.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-272 0c-11.8 0-22.6-6.5-28.2-16.9s-5-23 1.6-32.9l51.2-76.8c13.1-19.6 19.2-42.6 18.2-65.4z"]},Eb={prefix:"fas",iconName:"circle-info",icon:[512,512,["info-circle"],"f05a","M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512zM224 160a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm-8 64l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l24 0 0-64-24 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z"]},Db={prefix:"fas",iconName:"layer-group",icon:[512,512,[],"f5fd","M232.5 5.2c14.9-6.9 32.1-6.9 47 0l218.6 101c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L13.9 149.8C5.4 145.8 0 137.3 0 128s5.4-17.9 13.9-21.8L232.5 5.2zM48.1 218.4l164.3 75.9c27.7 12.8 59.6 12.8 87.3 0l164.3-75.9 34.1 15.8c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L13.9 277.8C5.4 273.8 0 265.3 0 256s5.4-17.9 13.9-21.8l34.1-15.8zM13.9 362.2l34.1-15.8 164.3 75.9c27.7 12.8 59.6 12.8 87.3 0l164.3-75.9 34.1 15.8c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L13.9 405.8C5.4 401.8 0 393.3 0 384s5.4-17.9 13.9-21.8z"]}},45392:Ae=>{"use strict";var ee;ee=global.process&&global.process.browser?"utf-8":global.process&&global.process.version?parseInt(process.version.split(".")[0].slice(1),10)>=6?"utf-8":"binary":"utf-8",Ae.exports=ee},46391:(Ae,ee,l)=>{"use strict";l.d(ee,{H:()=>ct});var i=l(51585),t=l(45383),p=l(21413),S=l(56977),c=l(4416),e=l(63536),T=l(2615),g=l(73664),d=l(98570),w=l(82571),m=l(95416),P=l(59640),M=l(72200),j=l(20060),U=l(88834),K=l(25596),q=l(9454),G=l(12629),Q=l(71997),$=l(9183),ae=l(52920),ue=l(16038),oe=l(40455),he=l(38288),me=l(29157),Te=l(89587);const D=["scrollContainer"],n=Ce=>({"display-none":Ce}),o=Ce=>({"xs-scroll-y":Ce}),f=Ce=>({"h-50":Ce}),h=()=>[],b=Ce=>({"mr-0":Ce});function A(Ce,ze){if(1&Ce&&g.nrm(0,"qr-code",33),2&Ce){const Z=g.XpG();g.Y8G("value",null==Z.invoice?null:Z.invoice.payment_request)("size",Z.qrWidth)}}function k(Ce,ze){1&Ce&&(g.j41(0,"span",34),g.EFF(1,"N/A"),g.k0s())}function x(Ce,ze){if(1&Ce&&g.nrm(0,"qr-code",33),2&Ce){const Z=g.XpG();g.Y8G("value",null==Z.invoice?null:Z.invoice.payment_request)("size",Z.qrWidth)}}function r(Ce,ze){1&Ce&&(g.j41(0,"span",35),g.EFF(1,"QR Code Not Applicable"),g.k0s())}function _(Ce,ze){1&Ce&&g.nrm(0,"mat-divider",24),2&Ce&&g.Y8G("inset",!0)}function W(Ce,ze){1&Ce&&(g.qex(0),g.EFF(1," (zero amount) "),g.bVm())}function I(Ce,ze){1&Ce&&g.nrm(0,"span",41)}function B(Ce,ze){if(1&Ce&&(g.j41(0,"div",37)(1,"div",38)(2,"span",39),g.EFF(3),g.nI1(4,"number"),g.k0s(),g.DNE(5,I,1,0,"span",40),g.k0s()()),2&Ce){const Z=g.XpG(2);g.R7$(3),g.SpI("",g.bMT(4,2,null==Z.invoice?null:Z.invoice.amt_paid_sat)," Sats"),g.R7$(2),g.Y8G("ngForOf",g.lJ4(4,h).constructor(35))}}function re(Ce,ze){if(1&Ce&&(g.j41(0,"div"),g.EFF(1),g.nI1(2,"number"),g.k0s()),2&Ce){const Z=g.XpG(2);g.R7$(),g.SpI("",g.bMT(2,1,null==Z.invoice?null:Z.invoice.amt_paid_sat)," Sats")}}function pe(Ce,ze){if(1&Ce&&(g.qex(0),g.DNE(1,B,6,5,"div",36)(2,re,3,3,"div",23),g.bVm()),2&Ce){const Z=g.XpG();g.R7$(),g.Y8G("ngIf",Z.flgInvoicePaid),g.R7$(),g.Y8G("ngIf",!Z.flgInvoicePaid)}}function be(Ce,ze){1&Ce&&(g.j41(0,"span"),g.EFF(1,"-"),g.k0s())}function Be(Ce,ze){1&Ce&&g.nrm(0,"mat-spinner",43),2&Ce&&g.Y8G("diameter",20)}function _e(Ce,ze){if(1&Ce&&(g.qex(0),g.DNE(1,be,2,0,"span",23)(2,Be,1,1,"mat-spinner",42),g.bVm()),2&Ce){const Z=g.XpG();g.R7$(),g.Y8G("ngIf","OPEN"!==(null==Z.invoice?null:Z.invoice.state)||!Z.flgVersionCompatible),g.R7$(),g.Y8G("ngIf","OPEN"===(null==Z.invoice?null:Z.invoice.state)&&Z.flgVersionCompatible)}}function ye(Ce,ze){1&Ce&&g.eu8(0)}function Le(Ce,ze){if(1&Ce&&(g.j41(0,"div"),g.DNE(1,ye,1,0,"ng-container",44),g.k0s()),2&Ce){g.XpG();const Z=g.sdS(79);g.R7$(),g.Y8G("ngTemplateOutlet",Z)}}function Ke(Ce,ze){if(1&Ce){const Z=g.RV6();g.j41(0,"div",45)(1,"button",46),g.bIt("click",function(){T.eBV(Z);const fe=g.XpG();return T.Njj(fe.onScrollDown())}),g.j41(2,"mat-icon",47),g.EFF(3,"arrow_downward"),g.k0s()()()}}function ge(Ce,ze){1&Ce&&(g.j41(0,"p"),g.EFF(1,"Show Advanced"),g.k0s())}function ve(Ce,ze){1&Ce&&(g.j41(0,"p"),g.EFF(1,"Hide Advanced"),g.k0s())}function Oe(Ce,ze){if(1&Ce){const Z=g.RV6();g.j41(0,"button",48),g.bIt("copied",function(fe){T.eBV(Z);const Ie=g.XpG();return T.Njj(Ie.onCopyPayment(fe))}),g.EFF(1),g.k0s()}if(2&Ce){const Z=g.XpG();g.Y8G("payload",null==Z.invoice?null:Z.invoice.payment_request),g.R7$(),g.JRh(Z.screenSize===Z.screenSizeEnum.XS?"Copy Payment":"Copy Payment Request")}}function Ee(Ce,ze){if(1&Ce){const Z=g.RV6();g.j41(0,"button",49),g.bIt("click",function(){T.eBV(Z);const fe=g.XpG();return T.Njj(fe.onClose())}),g.EFF(1,"OK"),g.k0s()}}function dt(Ce,ze){if(1&Ce&&g.nrm(0,"span",64),2&Ce){const Z=g.XpG(4);g.Y8G("ngClass",g.eq3(1,b,Z.screenSize===Z.screenSizeEnum.XS))}}function nt(Ce,ze){if(1&Ce&&g.nrm(0,"span",65),2&Ce){const Z=g.XpG(4);g.Y8G("ngClass",g.eq3(1,b,Z.screenSize===Z.screenSizeEnum.XS))}}function Ct(Ce,ze){if(1&Ce&&g.nrm(0,"span",66),2&Ce){const Z=g.XpG(4);g.Y8G("ngClass",g.eq3(1,b,Z.screenSize===Z.screenSizeEnum.XS))}}function Mt(Ce,ze){if(1&Ce&&(g.j41(0,"div",53)(1,"div",58)(2,"span",59),g.DNE(3,dt,1,3,"span",60)(4,nt,1,3,"span",61)(5,Ct,1,3,"span",62),g.EFF(6),g.k0s(),g.j41(7,"span",63),g.EFF(8),g.nI1(9,"number"),g.k0s()(),g.nrm(10,"mat-divider",24),g.k0s()),2&Ce){const Z=ze.$implicit,J=g.XpG(3);g.R7$(3),g.Y8G("ngIf","SETTLED"===Z.state),g.R7$(),g.Y8G("ngIf","ACCEPTED"===Z.state),g.R7$(),g.Y8G("ngIf","CANCELED"===Z.state),g.R7$(),g.SpI(" ",Z.chan_id," "),g.R7$(2),g.JRh(g.i5U(9,6,+Z.amt_msat/1e3||0,J.getDecimalFormat(Z))),g.R7$(2),g.Y8G("inset",!0)}}function lt(Ce,ze){if(1&Ce){const Z=g.RV6();g.j41(0,"div",19)(1,"mat-expansion-panel",51),g.bIt("opened",function(){T.eBV(Z);const fe=g.XpG(2);return T.Njj(fe.flgOpened=!0)})("closed",function(){T.eBV(Z);const fe=g.XpG(2);return T.Njj(fe.onExpansionClosed())}),g.j41(2,"mat-expansion-panel-header")(3,"mat-panel-title")(4,"h4",52),g.EFF(5,"HTLCs"),g.k0s()()(),g.j41(6,"div",53)(7,"div",54)(8,"span",55),g.EFF(9,"Channel ID"),g.k0s(),g.j41(10,"span",56),g.EFF(11,"Amount (Sats)"),g.k0s()(),g.nrm(12,"mat-divider",24),g.DNE(13,Mt,11,9,"div",57),g.k0s()()()}if(2&Ce){const Z=g.XpG(2);g.R7$(12),g.Y8G("inset",!0),g.R7$(),g.Y8G("ngForOf",null==Z.invoice?null:Z.invoice.htlcs)}}function Pe(Ce,ze){1&Ce&&g.nrm(0,"mat-divider",24),2&Ce&&g.Y8G("inset",!0)}function Ht(Ce,ze){if(1&Ce&&(g.nrm(0,"mat-divider",24),g.j41(1,"div",19)(2,"div",25)(3,"h4",21),g.EFF(4,"Preimage"),g.k0s(),g.j41(5,"span",26),g.EFF(6),g.k0s()()(),g.nrm(7,"mat-divider",24),g.j41(8,"div",19)(9,"div",20)(10,"h4",21),g.EFF(11,"State"),g.k0s(),g.j41(12,"span",26),g.EFF(13),g.k0s()(),g.j41(14,"div",20)(15,"h4",21),g.EFF(16,"Expiry"),g.k0s(),g.j41(17,"span",26),g.EFF(18),g.nI1(19,"date"),g.k0s()()(),g.nrm(20,"mat-divider",24),g.j41(21,"div",19)(22,"div",20)(23,"h4",21),g.EFF(24,"Private Routing Hints"),g.k0s(),g.j41(25,"span",26),g.EFF(26),g.k0s()(),g.j41(27,"div",20)(28,"h4",21),g.EFF(29,"AMP Invoice"),g.k0s(),g.j41(30,"span",26),g.EFF(31),g.k0s()()(),g.nrm(32,"mat-divider",24),g.DNE(33,lt,14,2,"div",50)(34,Pe,1,1,"mat-divider",17)),2&Ce){const Z=g.XpG();g.Y8G("inset",!0),g.R7$(6),g.JRh((null==Z.invoice?null:Z.invoice.r_preimage)||"-"),g.R7$(),g.Y8G("inset",!0),g.R7$(6),g.JRh(null==Z.invoice?null:Z.invoice.state),g.R7$(5),g.JRh(g.i5U(19,11,1e3*(+(null==Z.invoice?null:Z.invoice.creation_date)+ +(null==Z.invoice?null:Z.invoice.expiry)),"dd/MMM/y HH:mm")),g.R7$(2),g.Y8G("inset",!0),g.R7$(6),g.JRh(null!=Z.invoice&&Z.invoice.private?"Yes":"No"),g.R7$(5),g.JRh(null!=Z.invoice&&Z.invoice.is_amp?"Yes":"No"),g.R7$(),g.Y8G("inset",!0),g.R7$(),g.Y8G("ngIf",(null==Z.invoice?null:Z.invoice.htlcs)&&(null==Z.invoice?null:Z.invoice.htlcs.length)>0),g.R7$(),g.Y8G("ngIf",(null==Z.invoice?null:Z.invoice.htlcs)&&(null==Z.invoice?null:Z.invoice.htlcs.length)>0)}}let ct=(()=>{var Ce;class ze{set container(J){J&&(this.scrollContainer=J)}constructor(J,fe,Ie,ht,li,Qt){this.dialogRef=J,this.data=fe,this.logger=Ie,this.commonService=ht,this.snackBar=li,this.store=Qt,this.faReceipt=t.Mf0,this.showAdvanced=!1,this.newlyAdded=!1,this.invoice=null,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=c.f7,this.flgOpened=!1,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new p.B,new p.B,new p.B,new p.B,new p.B]}ngOnInit(){this.invoice=JSON.parse(JSON.stringify(this.data.invoice)),this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===c.f7.XS&&(this.qrWidth=220),this.store.select(e.pI).pipe((0,S.Q)(this.unSubs[0])).subscribe(fe=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(fe.version,"0.11.0")});const J=JSON.parse(JSON.stringify(this.invoice));this.store.select(e.rN).pipe((0,S.Q)(this.unSubs[1])).subscribe(fe=>{const Ie=this.invoice?.state,li=(fe.listInvoices.invoices||[]).find(Qt=>Qt.r_hash===J.r_hash)||null;li&&(this.invoice=li),Ie!==this.invoice?.state&&"SETTLED"===this.invoice?.state&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(fe)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced,this.flgOpened=!1}onScrollDown(){this.scrollContainer.nativeElement.scrollTop=this.scrollContainer.nativeElement.scrollTop+60}onExpansionClosed(){this.flgOpened=!1,this.scrollContainer.nativeElement.scrollTop=0}onCopyPayment(J){this.snackBar.open("Payment request copied."),this.logger.info("Copied Text: "+J)}getDecimalFormat(J){return J.amt_msat<1e3?"1.0-4":"1.0-0"}ngOnDestroy(){this.unSubs.forEach(J=>{J.next(null),J.complete()})}static#e=Ce=()=>(this.\u0275fac=function(fe){return new(fe||ze)(g.rXU(i.CP),g.rXU(i.Vh),g.rXU(d.gP),g.rXU(w.h),g.rXU(m.UG),g.rXU(P.il))},this.\u0275cmp=g.VBU({type:ze,selectors:[["rtl-invoice-information"]],viewQuery:function(fe,Ie){if(1&fe&&g.GBs(D,5),2&fe){let ht;g.mGM(ht=g.lsd())&&(Ie.container=ht.first)}},standalone:!1,decls:80,vars:49,consts:[["scrollContainer",""],["hideAdvancedText",""],["advancedBlock",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxLayout","column","fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],[3,"ngClass"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"my-1",3,"inset"],["fxFlex","100"],[1,"overflow-wrap","foreground-secondary-text"],["fxLayout","row","fxLayoutAlign","start end","class","btn-sticky-container padding-gap-x-large",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"font-size-300"],[1,"font-size-120"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],[4,"ngTemplateOutlet"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll Down","fxLayoutAlign","center center",3,"click"],["fxLayoutAlign","center center"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"flat-expansion-panel",3,"opened","closed"],["fxLayoutAlign","start center","fxFlex","100",1,"font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100",1,"mt-minus-1"],["fxFlex","60",1,"foreground-secondary-text","font-bold-500"],["fxFlex","40",1,"foreground-secondary-text","font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100"],["fxFlex","60",1,"foreground-secondary-text"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Cancelled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["fxFlex","40",1,"foreground-secondary-text"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Cancelled","matTooltipPosition","right",1,"dot","red",3,"ngClass"]],template:function(fe,Ie){if(1&fe){const ht=g.RV6();g.j41(0,"div",3)(1,"div",4),g.DNE(2,A,1,2,"qr-code",5)(3,k,2,0,"span",6),g.k0s(),g.j41(4,"div",7)(5,"mat-card-header",8)(6,"div",9),g.nrm(7,"fa-icon",10),g.j41(8,"span",11),g.EFF(9),g.k0s()(),g.j41(10,"button",12),g.bIt("click",function(){return T.eBV(ht),T.Njj(Ie.onClose())}),g.EFF(11,"X"),g.k0s()(),g.j41(12,"mat-card-content",13)(13,"div",14)(14,"div",15),g.DNE(15,x,1,2,"qr-code",5)(16,r,2,0,"span",16),g.k0s(),g.DNE(17,_,1,1,"mat-divider",17),g.j41(18,"div",18,0)(20,"div",19)(21,"div",20)(22,"h4",21),g.EFF(23),g.k0s(),g.j41(24,"span",22),g.EFF(25),g.nI1(26,"number"),g.DNE(27,W,2,0,"ng-container",23),g.k0s()(),g.j41(28,"div",20)(29,"h4",21),g.EFF(30,"Amount Settled"),g.k0s(),g.j41(31,"span",22),g.DNE(32,pe,3,2,"ng-container",23)(33,_e,3,2,"ng-container",23),g.k0s()()(),g.nrm(34,"mat-divider",24),g.j41(35,"div",19)(36,"div",20)(37,"h4",21),g.EFF(38,"Date Created"),g.k0s(),g.j41(39,"span",22),g.EFF(40),g.nI1(41,"date"),g.k0s()(),g.j41(42,"div",20)(43,"h4",21),g.EFF(44,"Date Settled"),g.k0s(),g.j41(45,"span",22),g.EFF(46),g.nI1(47,"date"),g.k0s()()(),g.nrm(48,"mat-divider",24),g.j41(49,"div",19)(50,"div",25)(51,"h4",21),g.EFF(52,"Memo"),g.k0s(),g.j41(53,"span",22),g.EFF(54),g.k0s()()(),g.nrm(55,"mat-divider",24),g.j41(56,"div",19)(57,"div",25)(58,"h4",21),g.EFF(59,"Payment Request"),g.k0s(),g.j41(60,"span",26),g.EFF(61),g.k0s()()(),g.nrm(62,"mat-divider",24),g.j41(63,"div",19)(64,"div",25)(65,"h4",21),g.EFF(66,"Payment Hash"),g.k0s(),g.j41(67,"span",26),g.EFF(68),g.k0s()()(),g.DNE(69,Le,2,1,"div",23),g.k0s()()(),g.DNE(70,Ke,4,0,"div",27),g.j41(71,"div",28)(72,"button",29),g.bIt("click",function(){return T.eBV(ht),T.Njj(Ie.onShowAdvanced())}),g.DNE(73,ge,2,0,"p",30)(74,ve,2,0,"ng-template",null,1,g.C5r),g.k0s(),g.DNE(76,Oe,2,2,"button",31)(77,Ee,2,0,"button",32),g.k0s()()(),g.DNE(78,Ht,35,14,"ng-template",null,2,g.C5r)}if(2&fe){const ht=g.sdS(75);g.R7$(),g.Y8G("fxLayoutAlign",null!=Ie.invoice&&Ie.invoice.payment_request&&""!==(null==Ie.invoice?null:Ie.invoice.payment_request)?"center start":"center center")("ngClass",g.eq3(41,n,Ie.screenSize===Ie.screenSizeEnum.XS||Ie.screenSize===Ie.screenSizeEnum.SM)),g.R7$(),g.Y8G("ngIf",(null==Ie.invoice?null:Ie.invoice.payment_request)&&""!==(null==Ie.invoice?null:Ie.invoice.payment_request)),g.R7$(),g.Y8G("ngIf",!(null!=Ie.invoice&&Ie.invoice.payment_request)||""===(null==Ie.invoice?null:Ie.invoice.payment_request)),g.R7$(4),g.Y8G("icon",Ie.faReceipt),g.R7$(2),g.JRh(Ie.screenSize===Ie.screenSizeEnum.XS?Ie.newlyAdded?"Created":"Invoice":Ie.newlyAdded?"Invoice Created":"Invoice Information"),g.R7$(3),g.Y8G("ngClass",g.eq3(43,o,Ie.screenSize===Ie.screenSizeEnum.XS)),g.R7$(2),g.Y8G("fxLayoutAlign",null!=Ie.invoice&&Ie.invoice.payment_request&&""!==(null==Ie.invoice?null:Ie.invoice.payment_request)?"center start":"center center")("ngClass",g.eq3(45,n,Ie.screenSize!==Ie.screenSizeEnum.XS&&Ie.screenSize!==Ie.screenSizeEnum.SM)),g.R7$(),g.Y8G("ngIf",(null==Ie.invoice?null:Ie.invoice.payment_request)&&""!==(null==Ie.invoice?null:Ie.invoice.payment_request)),g.R7$(),g.Y8G("ngIf",!(null!=Ie.invoice&&Ie.invoice.payment_request)||""===(null==Ie.invoice?null:Ie.invoice.payment_request)),g.R7$(),g.Y8G("ngIf",Ie.screenSize===Ie.screenSizeEnum.XS||Ie.screenSize===Ie.screenSizeEnum.SM),g.R7$(),g.Y8G("ngClass",g.eq3(47,f,(null==Ie.invoice?null:Ie.invoice.htlcs)&&(null==Ie.invoice?null:Ie.invoice.htlcs.length)>0&&Ie.showAdvanced)),g.R7$(5),g.JRh(Ie.screenSize===Ie.screenSizeEnum.XS?"Amount":"Amount Requested"),g.R7$(2),g.SpI("",g.bMT(26,33,(null==Ie.invoice?null:Ie.invoice.value)||0)," Sats"),g.R7$(2),g.Y8G("ngIf",!(null!=Ie.invoice&&Ie.invoice.value)||"0"===(null==Ie.invoice?null:Ie.invoice.value)),g.R7$(5),g.Y8G("ngIf",(null==Ie.invoice?null:Ie.invoice.amt_paid_sat)&&"OPEN"!==(null==Ie.invoice?null:Ie.invoice.state)),g.R7$(),g.Y8G("ngIf",!(null!=Ie.invoice&&Ie.invoice.amt_paid_sat)||"0"===(null==Ie.invoice?null:Ie.invoice.amt_paid_sat)),g.R7$(),g.Y8G("inset",!0),g.R7$(6),g.JRh(g.i5U(41,35,1e3*(null==Ie.invoice?null:Ie.invoice.creation_date),"dd/MMM/y HH:mm")),g.R7$(6),g.JRh(0!=+(null==Ie.invoice?null:Ie.invoice.settle_date)?g.i5U(47,38,1e3*+(null==Ie.invoice?null:Ie.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),g.R7$(2),g.Y8G("inset",!0),g.R7$(6),g.JRh(null==Ie.invoice?null:Ie.invoice.memo),g.R7$(),g.Y8G("inset",!0),g.R7$(6),g.JRh((null==Ie.invoice?null:Ie.invoice.payment_request)||"N/A"),g.R7$(),g.Y8G("inset",!0),g.R7$(6),g.JRh((null==Ie.invoice?null:Ie.invoice.r_hash)||""),g.R7$(),g.Y8G("ngIf",Ie.showAdvanced),g.R7$(),g.Y8G("ngIf",(null==Ie.invoice?null:Ie.invoice.htlcs)&&(null==Ie.invoice?null:Ie.invoice.htlcs.length)>0&&Ie.showAdvanced&&Ie.flgOpened),g.R7$(3),g.Y8G("ngIf",!Ie.showAdvanced)("ngIfElse",ht),g.R7$(3),g.Y8G("ngIf",(null==Ie.invoice?null:Ie.invoice.payment_request)&&""!==(null==Ie.invoice?null:Ie.invoice.payment_request)),g.R7$(),g.Y8G("ngIf",!(null!=Ie.invoice&&Ie.invoice.payment_request)||""===(null==Ie.invoice?null:Ie.invoice.payment_request))}},dependencies:[M.YU,M.Sq,M.bT,M.T3,j.aY,U.$z,U.$0,K.m2,K.MM,q.GK,q.Z2,q.WN,G.An,Q.q,$.LG,ae.DJ,ae.sA,ae.UI,ue.PW,oe.oV,he.Um,me.U,Te.N,M.QX,M.vh],encapsulation:2}))}return Ce(),ze})()},46649:(Ae,ee,l)=>{"use strict";l.d(ee,{S:()=>t});var i=l(54360);function t(p,S,c,e,T){return(g,d)=>{let w=c,m=S,P=0;g.subscribe((0,i._)(d,M=>{const j=P++;m=w?p(m,M,j):(w=!0,M),e&&d.next(m)},T&&(()=>{w&&d.next(m),d.complete()})))}}},46758:Ae=>{"use strict";Ae.exports=TypeError},46854:(Ae,ee,l)=>{var i=l(13546);function t(p){return p._prev=p._cipher.encryptBlock(p._prev),p._prev}ee.encrypt=function(p,S){for(;p._cache.length{function l(i){if("number"==typeof i&&(i=i.toString()),"string"!=typeof i)throw new Error("Color should be defined as hex string");let t=i.slice().replace("#","").split("");if(t.length<3||5===t.length||t.length>8)throw new Error("Invalid hex color: "+i);(3===t.length||4===t.length)&&(t=Array.prototype.concat.apply([],t.map(function(S){return[S,S]}))),6===t.length&&t.push("F","F");const p=parseInt(t.join(""),16);return{r:p>>24&255,g:p>>16&255,b:p>>8&255,a:255&p,hex:"#"+t.slice(0,6).join("")}}ee.getOptions=function(t){t||(t={}),t.color||(t.color={});const S=t.width&&t.width>=21?t.width:void 0;return{width:S,scale:S?4:t.scale||4,margin:typeof t.margin>"u"||null===t.margin||t.margin<0?4:t.margin,color:{dark:l(t.color.dark||"#000000ff"),light:l(t.color.light||"#ffffffff")},type:t.type,rendererOpts:t.rendererOpts||{}}},ee.getScale=function(t,p){return p.width&&p.width>=t+2*p.margin?p.width/(t+2*p.margin):p.scale},ee.getImageWidth=function(t,p){const S=ee.getScale(t,p);return Math.floor((t+2*p.margin)*S)},ee.qrToImageData=function(t,p,S){const c=p.modules.size,e=p.modules.data,T=ee.getScale(c,S),g=Math.floor((c+2*S.margin)*T),d=S.margin*T,w=[S.color.light,S.color.dark];for(let m=0;m=d&&P>=d&&m{"use strict";l.d(ee,{T:()=>c});var i=l(96780),p=l(39687);const c=new class S extends p.q{}(class t extends i.R{constructor(g,d){super(g,d),this.scheduler=g,this.work=d}schedule(g,d=0){return d>0?super.schedule(g,d):(this.delay=d,this.state=g,this.scheduler.flush(this),this)}execute(g,d){return d>0||this.closed?super.execute(g,d):this._execute(g,d)}requestAsyncId(g,d,w=0){return null!=w&&w>0||null==w&&this.delay>0?super.requestAsyncId(g,d,w):(g.flush(this),0)}})},47358:(Ae,ee,l)=>{"use strict";l.d(ee,{Zh:()=>ue,d6:()=>m,jH:()=>Q,lQ:()=>K,pO:()=>q,q1:()=>M,wx:()=>U,yI:()=>P});var i=l(72279),t=l(2615),p=l(73664),S=l(17705),c=l(22466),e=l(14117),T=l(84412),g=l(57786),d=l(96354);let m=(()=>{class oe extends i.xn{get tabIndexInputBinding(){return this._tabIndexInputBinding}set tabIndexInputBinding(me){this._tabIndexInputBinding=me}_tabIndexInputBinding;defaultTabIndex=0;_getTabindexAttribute(){return function w(oe){return!!oe._isNoopTreeKeyManager}(this._tree._keyManager)?this.tabIndexInputBinding:this._tabindex}get disabled(){return this.isDisabled}set disabled(me){this.isDisabled=me}constructor(){super();const me=(0,t.WQX)(new S.ES_("tabindex"),{optional:!0});this.tabIndexInputBinding=Number(me)||this.defaultTabIndex}ngOnInit(){super.ngOnInit()}ngOnDestroy(){super.ngOnDestroy()}static \u0275fac=function(Te){return new(Te||oe)};static \u0275dir=p.FsC({type:oe,selectors:[["mat-tree-node"]],hostAttrs:[1,"mat-tree-node"],hostVars:5,hostBindings:function(Te,D){1&Te&&p.bIt("click",function(){return D._focusItem()}),2&Te&&(p.Avn("tabIndex",D._getTabindexAttribute()),p.BMQ("aria-expanded",D._getAriaExpanded())("aria-level",D.level+1)("aria-posinset",D._getPositionInSet())("aria-setsize",D._getSetSize()))},inputs:{tabIndexInputBinding:[2,"tabIndex","tabIndexInputBinding",me=>null==me?0:(0,S.Udg)(me)],disabled:[2,"disabled","disabled",S.L39]},outputs:{activation:"activation",expandedChange:"expandedChange"},exportAs:["matTreeNode"],features:[p.Jv_([{provide:i.xn,useExisting:oe}]),p.Vt3]})}return oe})(),P=(()=>{class oe extends i.Sz{data;static \u0275fac=(()=>{let me;return function(D){return(me||(me=p.xGo(oe)))(D||oe)}})();static \u0275dir=p.FsC({type:oe,selectors:[["","matTreeNodeDef",""]],inputs:{when:[0,"matTreeNodeDefWhen","when"],data:[0,"matTreeNode","data"]},features:[p.Jv_([{provide:i.Sz,useExisting:oe}]),p.Vt3]})}return oe})(),M=(()=>{class oe extends i.s3{node;get disabled(){return this.isDisabled}set disabled(me){this.isDisabled=me}get tabIndex(){return this.isDisabled?-1:this._tabIndex}set tabIndex(me){this._tabIndex=me}_tabIndex;ngOnInit(){super.ngOnInit()}ngAfterContentInit(){super.ngAfterContentInit()}ngOnDestroy(){super.ngOnDestroy()}static \u0275fac=(()=>{let me;return function(D){return(me||(me=p.xGo(oe)))(D||oe)}})();static \u0275dir=p.FsC({type:oe,selectors:[["mat-nested-tree-node"]],hostAttrs:[1,"mat-nested-tree-node"],inputs:{node:[0,"matNestedTreeNode","node"],disabled:[2,"disabled","disabled",S.L39],tabIndex:[2,"tabIndex","tabIndex",me=>null==me?0:(0,S.Udg)(me)]},outputs:{activation:"activation",expandedChange:"expandedChange"},exportAs:["matNestedTreeNode"],features:[p.Jv_([{provide:i.s3,useExisting:oe},{provide:i.xn,useExisting:oe},{provide:i.kZ,useExisting:oe}]),p.Vt3]})}return oe})(),U=(()=>{class oe{viewContainer=(0,t.WQX)(p.c1b);_node=(0,t.WQX)(i.kZ,{optional:!0});static \u0275fac=function(Te){return new(Te||oe)};static \u0275dir=p.FsC({type:oe,selectors:[["","matTreeNodeOutlet",""]],features:[p.Jv_([{provide:i.a$,useExisting:oe}])]})}return oe})(),K=(()=>{class oe extends i.NL{_nodeOutlet=void 0;static \u0275fac=(()=>{let me;return function(D){return(me||(me=p.xGo(oe)))(D||oe)}})();static \u0275cmp=p.VBU({type:oe,selectors:[["mat-tree"]],viewQuery:function(Te,D){if(1&Te&&p.GBs(U,7),2&Te){let n;p.mGM(n=p.lsd())&&(D._nodeOutlet=n.first)}},hostAttrs:[1,"mat-tree"],exportAs:["matTree"],features:[p.Jv_([{provide:i.NL,useExisting:oe}]),p.Vt3],decls:1,vars:0,consts:[["matTreeNodeOutlet",""]],template:function(Te,D){1&Te&&p.eu8(0,0)},dependencies:[U],styles:[".mat-tree{display:block;background-color:var(--mat-tree-container-background-color, var(--mat-sys-surface))}.mat-tree-node,.mat-nested-tree-node{color:var(--mat-tree-node-text-color, var(--mat-sys-on-surface));font-family:var(--mat-tree-node-text-font, var(--mat-sys-body-large-font));font-size:var(--mat-tree-node-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-tree-node-text-weight, var(--mat-sys-body-large-weight))}.mat-tree-node{display:flex;align-items:center;flex:1;word-wrap:break-word;min-height:var(--mat-tree-node-min-height, 48px)}.mat-nested-tree-node{border-bottom-width:0}\n"],encapsulation:2})}return oe})(),q=(()=>{class oe extends i.Hy{static \u0275fac=(()=>{let me;return function(D){return(me||(me=p.xGo(oe)))(D||oe)}})();static \u0275dir=p.FsC({type:oe,selectors:[["","matTreeNodeToggle",""]],inputs:{recursive:[0,"matTreeNodeToggleRecursive","recursive"]},features:[p.Jv_([{provide:i.Hy,useExisting:oe}]),p.Vt3]})}return oe})(),Q=(()=>{class oe{static \u0275fac=function(Te){return new(Te||oe)};static \u0275mod=p.$C({type:oe});static \u0275inj=t.G2t({imports:[i.Dc,c.y,c.y]})}return oe})();class ue extends e.q{get data(){return this._data.value}set data(he){this._data.next(he)}_data=new T.t([]);connect(he){return(0,g.h)(he.viewChange,this._data).pipe((0,d.T)(()=>this.data))}disconnect(){}}},47424:(Ae,ee)=>{ee.L={bit:1},ee.M={bit:0},ee.Q={bit:3},ee.H={bit:2},ee.isValid=function(t){return t&&typeof t.bit<"u"&&t.bit>=0&&t.bit<4},ee.from=function(t,p){if(ee.isValid(t))return t;try{return function l(i){if("string"!=typeof i)throw new Error("Param is not a string");switch(i.toLowerCase()){case"l":case"low":return ee.L;case"m":case"medium":return ee.M;case"q":case"quartile":return ee.Q;case"h":case"high":return ee.H;default:throw new Error("Unknown EC Level: "+i)}}(t)}catch{return p}}},47441:(Ae,ee,l)=>{"use strict";l.d(ee,{X:()=>i});const i=t=>t&&"number"==typeof t.length&&"function"!=typeof t},47707:(Ae,ee,l)=>{"use strict";l.d(ee,{Ms:()=>K,vU:()=>P});var i=l(98071),t=l(18359),p=l(41026),S=l(45334),c=l(85343);const e=d("C",void 0,void 0);function d(ae,ue,oe){return{kind:ae,value:ue,error:oe}}var w=l(19270),m=l(49786);class P extends t.yU{constructor(ue){super(),this.isStopped=!1,ue?(this.destination=ue,(0,t.Uv)(ue)&&ue.add(this)):this.destination=$}static create(ue,oe,he){return new K(ue,oe,he)}next(ue){this.isStopped?Q(function g(ae){return d("N",ae,void 0)}(ue),this):this._next(ue)}error(ue){this.isStopped?Q(function T(ae){return d("E",void 0,ae)}(ue),this):(this.isStopped=!0,this._error(ue))}complete(){this.isStopped?Q(e,this):(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe(),this.destination=null)}_next(ue){this.destination.next(ue)}_error(ue){try{this.destination.error(ue)}finally{this.unsubscribe()}}_complete(){try{this.destination.complete()}finally{this.unsubscribe()}}}const M=Function.prototype.bind;function j(ae,ue){return M.call(ae,ue)}class U{constructor(ue){this.partialObserver=ue}next(ue){const{partialObserver:oe}=this;if(oe.next)try{oe.next(ue)}catch(he){q(he)}}error(ue){const{partialObserver:oe}=this;if(oe.error)try{oe.error(ue)}catch(he){q(he)}else q(ue)}complete(){const{partialObserver:ue}=this;if(ue.complete)try{ue.complete()}catch(oe){q(oe)}}}class K extends P{constructor(ue,oe,he){let me;if(super(),(0,i.T)(ue)||!ue)me={next:ue??void 0,error:oe??void 0,complete:he??void 0};else{let Te;this&&p.$.useDeprecatedNextContext?(Te=Object.create(ue),Te.unsubscribe=()=>this.unsubscribe(),me={next:ue.next&&j(ue.next,Te),error:ue.error&&j(ue.error,Te),complete:ue.complete&&j(ue.complete,Te)}):me=ue}this.destination=new U(me)}}function q(ae){p.$.useDeprecatedSynchronousErrorHandling?(0,m.l)(ae):(0,S.m)(ae)}function Q(ae,ue){const{onStoppedNotification:oe}=p.$;oe&&w.f.setTimeout(()=>oe(ae,ue))}const $={closed:!0,next:c.l,error:function G(ae){throw ae},complete:c.l}},47740:(Ae,ee,l)=>{var i=ee;i._reverse=function(p){var S={};return Object.keys(p).forEach(function(c){(0|c)==c&&(c|=0),S[p[c]]=c}),S},i.der=l(36283)},47765:Ae=>{Ae.exports=function(){throw new Error("Readable.from is not available in the browser")}},47790:()=>{},47849:(Ae,ee,l)=>{"use strict";var i=l(9656);function p(x){var r=this;this.next=null,this.entry=null,this.finish=function(){!function k(x,r,_){var W=x.entry;for(x.entry=null;W;){var I=W.callback;r.pendingcb--,I(_),W=W.next}r.corkedRequestsFree.next=x}(r,x)}}Ae.exports=q;var c,S=!process.browser&&["v0.10","v0.9."].indexOf(process.version.slice(0,5))>-1?setImmediate:i.nextTick;q.WritableState=U;var e=Object.create(l(27637));e.inherits=l(71993);var K,T={deprecate:l(3398)},g=l(18342),d=l(2655).Buffer,w=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},M=l(21509);function j(){}function U(x,r){c=c||l(74075);var _=r instanceof c;this.objectMode=!!(x=x||{}).objectMode,_&&(this.objectMode=this.objectMode||!!x.writableObjectMode);var W=x.highWaterMark,I=x.writableHighWaterMark;this.highWaterMark=W||0===W?W:_&&(I||0===I)?I:this.objectMode?16:16384,this.highWaterMark=Math.floor(this.highWaterMark),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1,this.decodeStrings=!(!1===x.decodeStrings),this.defaultEncoding=x.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(pe){!function me(x,r){var _=x._writableState,W=_.sync,I=_.writecb;if(function he(x){x.writing=!1,x.writecb=null,x.length-=x.writelen,x.writelen=0}(_),r)!function oe(x,r,_,W,I){--r.pendingcb,_?(i.nextTick(I,W),i.nextTick(b,x,r),x._writableState.errorEmitted=!0,x.emit("error",W)):(I(W),x._writableState.errorEmitted=!0,x.emit("error",W),b(x,r))}(x,_,W,r,I);else{var B=o(_);!B&&!_.corked&&!_.bufferProcessing&&_.bufferedRequest&&n(x,_),W?S(Te,x,_,B,I):Te(x,_,B,I)}}(r,pe)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.bufferedRequestCount=0,this.corkedRequestsFree=new p(this)}function q(x){if(c=c||l(74075),!(K.call(q,this)||this instanceof c))return new q(x);this._writableState=new U(x,this),this.writable=!0,x&&("function"==typeof x.write&&(this._write=x.write),"function"==typeof x.writev&&(this._writev=x.writev),"function"==typeof x.destroy&&(this._destroy=x.destroy),"function"==typeof x.final&&(this._final=x.final)),g.call(this)}function ue(x,r,_,W,I,B,re){r.writelen=W,r.writecb=re,r.writing=!0,r.sync=!0,_?x._writev(I,r.onwrite):x._write(I,B,r.onwrite),r.sync=!1}function Te(x,r,_,W){_||function D(x,r){0===r.length&&r.needDrain&&(r.needDrain=!1,x.emit("drain"))}(x,r),r.pendingcb--,W(),b(x,r)}function n(x,r){r.bufferProcessing=!0;var _=r.bufferedRequest;if(x._writev&&_&&_.next){var I=new Array(r.bufferedRequestCount),B=r.corkedRequestsFree;B.entry=_;for(var re=0,pe=!0;_;)I[re]=_,_.isBuf||(pe=!1),_=_.next,re+=1;I.allBuffers=pe,ue(x,r,!0,r.length,I,"",B.finish),r.pendingcb++,r.lastBufferedRequest=null,B.next?(r.corkedRequestsFree=B.next,B.next=null):r.corkedRequestsFree=new p(r),r.bufferedRequestCount=0}else{for(;_;){var be=_.chunk;if(ue(x,r,!1,r.objectMode?1:be.length,be,_.encoding,_.callback),_=_.next,r.bufferedRequestCount--,r.writing)break}null===_&&(r.lastBufferedRequest=null)}r.bufferedRequest=_,r.bufferProcessing=!1}function o(x){return x.ending&&0===x.length&&null===x.bufferedRequest&&!x.finished&&!x.writing}function f(x,r){x._final(function(_){r.pendingcb--,_&&x.emit("error",_),r.prefinished=!0,x.emit("prefinish"),b(x,r)})}function b(x,r){var _=o(r);return _&&(function h(x,r){!r.prefinished&&!r.finalCalled&&("function"==typeof x._final?(r.pendingcb++,r.finalCalled=!0,i.nextTick(f,x,r)):(r.prefinished=!0,x.emit("prefinish")))}(x,r),0===r.pendingcb&&(r.finished=!0,x.emit("finish"))),_}e.inherits(q,g),U.prototype.getBuffer=function(){for(var r=this.bufferedRequest,_=[];r;)_.push(r),r=r.next;return _},function(){try{Object.defineProperty(U.prototype,"buffer",{get:T.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch{}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(K=Function.prototype[Symbol.hasInstance],Object.defineProperty(q,Symbol.hasInstance,{value:function(x){return!!K.call(this,x)||this===q&&x&&x._writableState instanceof U}})):K=function(x){return x instanceof this},q.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))},q.prototype.write=function(x,r,_){var W=this._writableState,I=!1,B=!W.objectMode&&function P(x){return d.isBuffer(x)||x instanceof w}(x);return B&&!d.isBuffer(x)&&(x=function m(x){return d.from(x)}(x)),"function"==typeof r&&(_=r,r=null),B?r="buffer":r||(r=W.defaultEncoding),"function"!=typeof _&&(_=j),W.ended?function G(x,r){var _=new Error("write after end");x.emit("error",_),i.nextTick(r,_)}(this,_):(B||function Q(x,r,_,W){var I=!0,B=!1;return null===_?B=new TypeError("May not write null values to stream"):"string"!=typeof _&&void 0!==_&&!r.objectMode&&(B=new TypeError("Invalid non-string/buffer chunk")),B&&(x.emit("error",B),i.nextTick(W,B),I=!1),I}(this,W,x,_))&&(W.pendingcb++,I=function ae(x,r,_,W,I,B){if(!_){var re=function $(x,r,_){return!x.objectMode&&!1!==x.decodeStrings&&"string"==typeof r&&(r=d.from(r,_)),r}(r,W,I);W!==re&&(_=!0,I="buffer",W=re)}var pe=r.objectMode?1:W.length;r.length+=pe;var be=r.length-1))throw new TypeError("Unknown encoding: "+r);return this._writableState.defaultEncoding=r,this},Object.defineProperty(q.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),q.prototype._write=function(x,r,_){_(new Error("_write() is not implemented"))},q.prototype._writev=null,q.prototype.end=function(x,r,_){var W=this._writableState;"function"==typeof x?(_=x,x=null,r=null):"function"==typeof r&&(_=r,r=null),null!=x&&this.write(x,r),W.corked&&(W.corked=1,this.uncork()),W.ending||function A(x,r,_){r.ending=!0,b(x,r),_&&(r.finished?i.nextTick(_):x.once("finish",_)),r.ended=!0,x.writable=!1}(this,W,_)},Object.defineProperty(q.prototype,"destroyed",{get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(x){this._writableState&&(this._writableState.destroyed=x)}}),q.prototype.destroy=M.destroy,q.prototype._undestroy=M.undestroy,q.prototype._destroy=function(x,r){this.end(),r(x)}},47851:(Ae,ee,l)=>{var i=l(41876);ee.encode=i.encode,ee.decode=i.decode},47860:(Ae,ee,l)=>{"use strict";l.d(ee,{BD:()=>c,CZ:()=>S,r5:()=>i});var i=function(e){return e[e.NORMAL=0]="NORMAL",e[e.NEGATED=1]="NEGATED",e[e.INVERTED=2]="INVERTED",e}(i||{});let t,p;function S(){if(null==p){if("object"!=typeof document||!document||"function"!=typeof Element||!Element)return p=!1,p;if(document.documentElement?.style&&"scrollBehavior"in document.documentElement.style)p=!0;else{const e=Element.prototype.scrollTo;p=!!e&&!/\{\s*\[native code\]\s*\}/.test(e.toString())}}return p}function c(){if("object"!=typeof document||!document)return i.NORMAL;if(null==t){const e=document.createElement("div"),T=e.style;e.dir="rtl",T.width="1px",T.overflow="auto",T.visibility="hidden",T.pointerEvents="none",T.position="absolute";const g=document.createElement("div"),d=g.style;d.width="2px",d.height="1px",e.appendChild(g),document.body.appendChild(e),t=i.NORMAL,0===e.scrollLeft&&(e.scrollLeft=1,t=0===e.scrollLeft?i.NEGATED:i.INVERTED),e.remove()}return t}},48128:(Ae,ee,l)=>{"use strict";var i=l(31358),t=l(4570),p=l(61885),S=l(98910);Ae.exports=function(e){var T=p(arguments),g=e.length-(arguments.length-1);return i(T,1+(g>0?g:0),!0)},t?t(Ae.exports,"apply",{value:S}):Ae.exports.apply=S},48440:(Ae,ee,l)=>{"use strict";l.d(ee,{Ag:()=>b,Bg:()=>G,EF:()=>k,H8:()=>f,Ht:()=>e,JC:()=>M,KE:()=>g,KO:()=>I,KZ:()=>h,Ny:()=>A,TO:()=>q,Wu:()=>$,XR:()=>oe,a7:()=>D,bh:()=>c,j2:()=>Be,mC:()=>_e,mK:()=>m,n5:()=>re,nR:()=>T,pL:()=>w,s0:()=>Le,si:()=>ue});let i=null,t=!1,p=1,S=null;const c=Symbol("SIGNAL");function e(ge){const ve=i;return i=ge,ve}function T(){return i}function g(){return t}const w={version:0,lastCleanEpoch:0,dirty:!1,producers:void 0,producersTail:void 0,consumers:void 0,consumersTail:void 0,recomputing:!1,consumerAllowSignalWrites:!1,consumerIsAlwaysLive:!1,kind:"unknown",producerMustRecompute:()=>!1,producerRecomputeValue:()=>{},consumerMarkedDirty:()=>{},consumerOnSignalRead:()=>{}};function m(ge){if(t)throw new Error("");if(null===i)return;i.consumerOnSignalRead(ge);const ve=i.producersTail;if(void 0!==ve&&ve.producer===ge)return;let Oe;const Ee=i.recomputing;if(Ee&&(Oe=void 0!==ve?ve.nextProducer:i.producers,void 0!==Oe&&Oe.producer===ge))return i.producersTail=Oe,void(Oe.lastReadVersion=ge.version);const dt=ge.consumersTail;if(void 0!==dt&&dt.consumer===i&&(!Ee||function o(ge,ve){const Oe=ve.producersTail;if(void 0!==Oe){let Ee=ve.producers;do{if(Ee===ge)return!0;if(Ee===Oe)break;Ee=Ee.nextProducer}while(void 0!==Ee)}return!1}(dt,i)))return;const nt=Te(i),Ct={producer:ge,consumer:i,nextProducer:Oe,prevConsumer:dt,lastReadVersion:ge.version,nextConsumer:void 0};i.producersTail=Ct,void 0!==ve?ve.nextProducer=Ct:i.producers=Ct,nt&&he(ge,Ct)}function M(ge){if((!Te(ge)||ge.dirty)&&(ge.dirty||ge.lastCleanEpoch!==p)){if(!ge.producerMustRecompute(ge)&&!ue(ge))return void q(ge);ge.producerRecomputeValue(ge),q(ge)}}function j(ge){if(void 0===ge.consumers)return;const ve=t;t=!0;try{for(let Oe=ge.consumers;void 0!==Oe;Oe=Oe.nextConsumer){const Ee=Oe.consumer;Ee.dirty||K(Ee)}}finally{t=ve}}function U(){return!1!==i?.consumerAllowSignalWrites}function K(ge){ge.dirty=!0,j(ge),ge.consumerMarkedDirty?.(ge)}function q(ge){ge.dirty=!1,ge.lastCleanEpoch=p}function G(ge){return ge&&function Q(ge){ge.producersTail=void 0,ge.recomputing=!0}(ge),e(ge)}function $(ge,ve){e(ve),ge&&function ae(ge){ge.recomputing=!1;const ve=ge.producersTail;let Oe=void 0!==ve?ve.nextProducer:ge.producers;if(void 0!==Oe){if(Te(ge))do{Oe=me(Oe)}while(void 0!==Oe);void 0!==ve?ve.nextProducer=void 0:ge.producers=void 0}}(ge)}function ue(ge){for(let ve=ge.producers;void 0!==ve;ve=ve.nextProducer){const Oe=ve.producer,Ee=ve.lastReadVersion;if(Ee!==Oe.version||(M(Oe),Ee!==Oe.version))return!0}return!1}function oe(ge){if(Te(ge)){let ve=ge.producers;for(;void 0!==ve;)ve=me(ve)}ge.producers=void 0,ge.producersTail=void 0,ge.consumers=void 0,ge.consumersTail=void 0}function he(ge,ve){const Oe=ge.consumersTail,Ee=Te(ge);if(void 0!==Oe?(ve.nextConsumer=Oe.nextConsumer,Oe.nextConsumer=ve):(ve.nextConsumer=void 0,ge.consumers=ve),ve.prevConsumer=Oe,ge.consumersTail=ve,!Ee)for(let dt=ge.producers;void 0!==dt;dt=dt.nextProducer)he(dt.producer,dt)}function me(ge){const ve=ge.producer,Oe=ge.nextProducer,Ee=ge.nextConsumer,dt=ge.prevConsumer;if(ge.nextConsumer=void 0,ge.prevConsumer=void 0,void 0!==Ee?Ee.prevConsumer=dt:ve.consumersTail=dt,void 0!==dt)dt.nextConsumer=Ee;else if(ve.consumers=Ee,!Te(ve)){let nt=ve.producers;for(;void 0!==nt;)nt=me(nt)}return Oe}function Te(ge){return ge.consumerIsAlwaysLive||void 0!==ge.consumers}function D(ge){S?.(ge)}function f(ge,ve){return Object.is(ge,ve)}function h(ge,ve){const Oe=Object.create(x);Oe.computation=ge,void 0!==ve&&(Oe.equal=ve);const Ee=()=>{if(M(Oe),m(Oe),Oe.value===k)throw Oe.error;return Oe.value};return Ee[c]=Oe,D(Oe),Ee}const b=Symbol("UNSET"),A=Symbol("COMPUTING"),k=Symbol("ERRORED"),x={...w,value:b,dirty:!0,error:null,equal:f,kind:"computed",producerMustRecompute:ge=>ge.value===b||ge.value===A,producerRecomputeValue(ge){if(ge.value===A)throw new Error("");const ve=ge.value;ge.value=A;const Oe=G(ge);let Ee,dt=!1;try{Ee=ge.computation(),e(null),dt=ve!==b&&ve!==k&&Ee!==k&&ge.equal(ve,Ee)}catch(nt){Ee=k,ge.error=nt}finally{$(ge,Oe)}dt?ge.value=ve:(ge.value=Ee,ge.version++)}};let _=function r(){throw new Error};function W(ge){_(ge)}function I(ge){_=ge}let B=null;function re(ge,ve){const Oe=Object.create(Le);Oe.value=ge,void 0!==ve&&(Oe.equal=ve);const Ee=()=>function be(ge){return m(ge),ge.value}(Oe);return Ee[c]=Oe,D(Oe),[Ee,Ct=>Be(Oe,Ct),Ct=>_e(Oe,Ct)]}function Be(ge,ve){U()||W(ge),ge.equal(ge.value,ve)||(ge.value=ve,function Ke(ge){ge.version++,function P(){p++}(),j(ge),B?.(ge)}(ge))}function _e(ge,ve){U()||W(ge),Be(ge,ve(ge.value))}const Le={...w,equal:f,value:void 0,kind:"signal"}},48585:(Ae,ee,l)=>{"use strict";var i=l(71993),t=l(70463),p=l(27054).Buffer,S=[1518500249,1859775393,-1894007588,-899497514],c=new Array(80);function e(){this.init(),this._w=c,t.call(this,64,56)}function T(w){return w<<5|w>>>27}function g(w){return w<<30|w>>>2}function d(w,m,P,M){return 0===w?m&P|~m&M:2===w?m&P|m&M|P&M:m^P^M}i(e,t),e.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},e.prototype._update=function(w){for(var m=this._w,P=0|this._a,M=0|this._b,j=0|this._c,U=0|this._d,K=0|this._e,q=0;q<16;++q)m[q]=w.readInt32BE(4*q);for(;q<80;++q)m[q]=m[q-3]^m[q-8]^m[q-14]^m[q-16];for(var G=0;G<80;++G){var Q=~~(G/20),$=T(P)+d(Q,M,j,U)+K+m[G]+S[Q]|0;K=U,U=j,j=g(M),M=P,P=$}this._a=P+this._a|0,this._b=M+this._b|0,this._c=j+this._c|0,this._d=U+this._d|0,this._e=K+this._e|0},e.prototype._hash=function(){var w=p.allocUnsafe(20);return w.writeInt32BE(0|this._a,0),w.writeInt32BE(0|this._b,4),w.writeInt32BE(0|this._c,8),w.writeInt32BE(0|this._d,12),w.writeInt32BE(0|this._e,16),w},Ae.exports=e},49046:(Ae,ee,l)=>{"use strict";l.d(ee,{Y:()=>t});var i=l(73664);let t=(()=>{class p{static \u0275fac=function(e){return new(e||p)};static \u0275cmp=i.VBU({type:p,selectors:[["ng-component"]],exportAs:["cdkVisuallyHidden"],decls:0,vars:0,template:function(e,T){},styles:[".cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .cdk-visually-hidden{left:auto;right:0}\n"],encapsulation:2,changeDetection:0})}return p})()},49132:Ae=>{"use strict";var l=Object.prototype.toString,i=Math.max,p=function(T,g){for(var d=[],w=0;w{"use strict";l.d(ee,{WB:()=>kt,$Q:()=>di,rW:()=>Ct,rR:()=>W,Sf:()=>ge,z_:()=>te,yY:()=>Oe,gA:()=>Te,$M:()=>nt,uA:()=>Z,Y$:()=>Ie,RH:()=>x});var i=l(2615),t=l(73664),p=l(17705),S=l(57303),c=l(39842),e=l(44522);function T(){return typeof __karma__<"u"&&!!__karma__||typeof jasmine<"u"&&!!jasmine||typeof jest<"u"&&!!jest||typeof Mocha<"u"&&!!Mocha}var g=l(88968),d=l(21413),w=l(18359);function m(ce){return null==ce?"":"string"==typeof ce?ce:`${ce}px`}var P=l(80408),M=l(5718),j=l(76939),U=l(47860),K=l(5964),q=l(39974),G=l(54360),$=l(89726),ae=l(61577),ue=l(10438),oe=l(67336),he=l(28203);const me=(0,U.CZ)();function Te(ce){return new D(ce.get(M.Xj),ce.get(i.qQL))}class D{_viewportRuler;_previousHTMLStyles={top:"",left:""};_previousScrollPosition;_isEnabled=!1;_document;constructor(se,ke){this._viewportRuler=se,this._document=ke}attach(){}enable(){if(this._canBeEnabled()){const se=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=se.style.left||"",this._previousHTMLStyles.top=se.style.top||"",se.style.left=m(-this._previousScrollPosition.left),se.style.top=m(-this._previousScrollPosition.top),se.classList.add("cdk-global-scrollblock"),this._isEnabled=!0}}disable(){if(this._isEnabled){const se=this._document.documentElement,Ue=se.style,Ne=this._document.body.style,Kt=Ue.scrollBehavior||"",yt=Ne.scrollBehavior||"";this._isEnabled=!1,Ue.left=this._previousHTMLStyles.left,Ue.top=this._previousHTMLStyles.top,se.classList.remove("cdk-global-scrollblock"),me&&(Ue.scrollBehavior=Ne.scrollBehavior="auto"),window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),me&&(Ue.scrollBehavior=Kt,Ne.scrollBehavior=yt)}}_canBeEnabled(){if(this._document.documentElement.classList.contains("cdk-global-scrollblock")||this._isEnabled)return!1;const ke=this._document.documentElement,Ue=this._viewportRuler.getViewportSize();return ke.scrollHeight>Ue.height||ke.scrollWidth>Ue.width}}class f{_scrollDispatcher;_ngZone;_viewportRuler;_config;_scrollSubscription=null;_overlayRef;_initialScrollPosition;constructor(se,ke,Ue,Ne){this._scrollDispatcher=se,this._ngZone=ke,this._viewportRuler=Ue,this._config=Ne}attach(se){this._overlayRef=se}enable(){if(this._scrollSubscription)return;const se=this._scrollDispatcher.scrolled(0).pipe((0,K.p)(ke=>!ke||!this._overlayRef.overlayElement.contains(ke.getElementRef().nativeElement)));this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=se.subscribe(()=>{const ke=this._viewportRuler.getViewportScrollPosition().top;Math.abs(ke-this._initialScrollPosition)>this._config.threshold?this._detach():this._overlayRef.updatePosition()})):this._scrollSubscription=se.subscribe(this._detach)}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}_detach=()=>{this.disable(),this._overlayRef.hasAttached()&&this._ngZone.run(()=>this._overlayRef.detach())}}class b{enable(){}disable(){}attach(){}}function A(ce,se){return se.some(ke=>ce.bottomke.bottom||ce.rightke.right)}function k(ce,se){return se.some(ke=>ce.topke.bottom||ce.leftke.right)}function x(ce,se){return new r(ce.get(M.R),ce.get(M.Xj),ce.get(t.SKi),se)}class r{_scrollDispatcher;_viewportRuler;_ngZone;_config;_scrollSubscription=null;_overlayRef;constructor(se,ke,Ue,Ne){this._scrollDispatcher=se,this._viewportRuler=ke,this._ngZone=Ue,this._config=Ne}attach(se){this._overlayRef=se}enable(){this._scrollSubscription||(this._scrollSubscription=this._scrollDispatcher.scrolled(this._config?this._config.scrollThrottle:0).subscribe(()=>{if(this._overlayRef.updatePosition(),this._config&&this._config.autoClose){const ke=this._overlayRef.overlayElement.getBoundingClientRect(),{width:Ue,height:Ne}=this._viewportRuler.getViewportSize();A(ke,[{width:Ue,height:Ne,bottom:Ne,right:Ue,top:0,left:0}])&&(this.disable(),this._ngZone.run(()=>this._overlayRef.detach()))}}))}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}let _=(()=>{class ce{_injector=(0,i.WQX)(i.zZn);constructor(){}noop=()=>new b;close=ke=>function o(ce,se){return new f(ce.get(M.R),ce.get(t.SKi),ce.get(M.Xj),se)}(this._injector,ke);block=()=>Te(this._injector);reposition=ke=>x(this._injector,ke);static \u0275fac=function(Ue){return new(Ue||ce)};static \u0275prov=i.jDH({token:ce,factory:ce.\u0275fac,providedIn:"root"})}return ce})();class W{positionStrategy;scrollStrategy=new b;panelClass="";hasBackdrop=!1;backdropClass="cdk-overlay-dark-backdrop";disableAnimations;width;height;minWidth;minHeight;maxWidth;maxHeight;direction;disposeOnNavigation=!1;constructor(se){if(se){const ke=Object.keys(se);for(const Ue of ke)void 0!==se[Ue]&&(this[Ue]=se[Ue])}}}class re{connectionPair;scrollableViewProperties;constructor(se,ke){this.connectionPair=se,this.scrollableViewProperties=ke}}let Be=(()=>{class ce{_attachedOverlays=[];_document=(0,i.WQX)(i.qQL);_isAttached;constructor(){}ngOnDestroy(){this.detach()}add(ke){this.remove(ke),this._attachedOverlays.push(ke)}remove(ke){const Ue=this._attachedOverlays.indexOf(ke);Ue>-1&&this._attachedOverlays.splice(Ue,1),0===this._attachedOverlays.length&&this.detach()}static \u0275fac=function(Ue){return new(Ue||ce)};static \u0275prov=i.jDH({token:ce,factory:ce.\u0275fac,providedIn:"root"})}return ce})(),_e=(()=>{class ce extends Be{_ngZone=(0,i.WQX)(t.SKi);_renderer=(0,i.WQX)(t._9s).createRenderer(null,null);_cleanupKeydown;add(ke){super.add(ke),this._isAttached||(this._ngZone.runOutsideAngular(()=>{this._cleanupKeydown=this._renderer.listen("body","keydown",this._keydownListener)}),this._isAttached=!0)}detach(){this._isAttached&&(this._cleanupKeydown?.(),this._isAttached=!1)}_keydownListener=ke=>{const Ue=this._attachedOverlays;for(let Ne=Ue.length-1;Ne>-1;Ne--)if(Ue[Ne]._keydownEvents.observers.length>0){this._ngZone.run(()=>Ue[Ne]._keydownEvents.next(ke));break}};static \u0275fac=(()=>{let ke;return function(Ne){return(ke||(ke=t.xGo(ce)))(Ne||ce)}})();static \u0275prov=i.jDH({token:ce,factory:ce.\u0275fac,providedIn:"root"})}return ce})(),ye=(()=>{class ce extends Be{_platform=(0,i.WQX)(c.O);_ngZone=(0,i.WQX)(t.SKi);_renderer=(0,i.WQX)(t._9s).createRenderer(null,null);_cursorOriginalValue;_cursorStyleIsSet=!1;_pointerDownEventTarget;_cleanups;add(ke){if(super.add(ke),!this._isAttached){const Ue=this._document.body,Ne={capture:!0},Kt=this._renderer;this._cleanups=this._ngZone.runOutsideAngular(()=>[Kt.listen(Ue,"pointerdown",this._pointerDownListener,Ne),Kt.listen(Ue,"click",this._clickListener,Ne),Kt.listen(Ue,"auxclick",this._clickListener,Ne),Kt.listen(Ue,"contextmenu",this._clickListener,Ne)]),this._platform.IOS&&!this._cursorStyleIsSet&&(this._cursorOriginalValue=Ue.style.cursor,Ue.style.cursor="pointer",this._cursorStyleIsSet=!0),this._isAttached=!0}}detach(){this._isAttached&&(this._cleanups?.forEach(ke=>ke()),this._cleanups=void 0,this._platform.IOS&&this._cursorStyleIsSet&&(this._document.body.style.cursor=this._cursorOriginalValue,this._cursorStyleIsSet=!1),this._isAttached=!1)}_pointerDownListener=ke=>{this._pointerDownEventTarget=(0,e.Fb)(ke)};_clickListener=ke=>{const Ue=(0,e.Fb)(ke),Ne="click"===ke.type&&this._pointerDownEventTarget?this._pointerDownEventTarget:Ue;this._pointerDownEventTarget=null;const Kt=this._attachedOverlays.slice();for(let yt=Kt.length-1;yt>-1;yt--){const Vt=Kt[yt];if(Vt._outsidePointerEvents.observers.length<1||!Vt.hasAttached())continue;if(Le(Vt.overlayElement,Ue)||Le(Vt.overlayElement,Ne))break;const Zt=Vt._outsidePointerEvents;this._ngZone?this._ngZone.run(()=>Zt.next(ke)):Zt.next(ke)}};static \u0275fac=(()=>{let ke;return function(Ne){return(ke||(ke=t.xGo(ce)))(Ne||ce)}})();static \u0275prov=i.jDH({token:ce,factory:ce.\u0275fac,providedIn:"root"})}return ce})();function Le(ce,se){const ke=typeof ShadowRoot<"u"&&ShadowRoot;let Ue=se;for(;Ue;){if(Ue===ce)return!0;Ue=ke&&Ue instanceof ShadowRoot?Ue.host:Ue.parentNode}return!1}let Ke=(()=>{class ce{static \u0275fac=function(Ue){return new(Ue||ce)};static \u0275cmp=t.VBU({type:ce,selectors:[["ng-component"]],hostAttrs:["cdk-overlay-style-loader",""],decls:0,vars:0,template:function(Ue,Ne){},styles:[".cdk-overlay-container,.cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed}@layer cdk-overlay{.cdk-overlay-container{z-index:1000}}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper{display:flex;position:absolute}@layer cdk-overlay{.cdk-global-overlay-wrapper{z-index:1000}}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;display:flex;max-width:100%;max-height:100%}@layer cdk-overlay{.cdk-overlay-pane{z-index:1000}}.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;pointer-events:auto;-webkit-tap-highlight-color:rgba(0,0,0,0);opacity:0;touch-action:manipulation}@layer cdk-overlay{.cdk-overlay-backdrop{z-index:1000;transition:opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}}@media(prefers-reduced-motion){.cdk-overlay-backdrop{transition-duration:1ms}}.cdk-overlay-backdrop-showing{opacity:1}@media(forced-colors: active){.cdk-overlay-backdrop-showing{opacity:.6}}@layer cdk-overlay{.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}}.cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing,.cdk-high-contrast-active .cdk-overlay-transparent-backdrop{opacity:0;visibility:visible}.cdk-overlay-backdrop-noop-animation{transition:none}.cdk-overlay-connected-position-bounding-box{position:absolute;display:flex;flex-direction:column;min-width:1px;min-height:1px}@layer cdk-overlay{.cdk-overlay-connected-position-bounding-box{z-index:1000}}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}\n"],encapsulation:2,changeDetection:0})}return ce})(),ge=(()=>{class ce{_platform=(0,i.WQX)(c.O);_containerElement;_document=(0,i.WQX)(i.qQL);_styleLoader=(0,i.WQX)(g.l);constructor(){}ngOnDestroy(){this._containerElement?.remove()}getContainerElement(){return this._loadStyles(),this._containerElement||this._createContainer(),this._containerElement}_createContainer(){const ke="cdk-overlay-container";if(this._platform.isBrowser||T()){const Ne=this._document.querySelectorAll(`.${ke}[platform="server"], .${ke}[platform="test"]`);for(let Kt=0;Kt{const se=this.element;clearTimeout(this._fallbackTimeout),this._cleanupTransitionEnd?.(),this._cleanupTransitionEnd=this._renderer.listen(se,"transitionend",this.dispose),this._fallbackTimeout=setTimeout(this.dispose,500),se.style.pointerEvents="none",se.classList.remove("cdk-overlay-backdrop-showing")})}dispose=()=>{clearTimeout(this._fallbackTimeout),this._cleanupClick?.(),this._cleanupTransitionEnd?.(),this._cleanupClick=this._cleanupTransitionEnd=this._fallbackTimeout=void 0,this.element.remove()}}class Oe{_portalOutlet;_host;_pane;_config;_ngZone;_keyboardDispatcher;_document;_location;_outsideClickDispatcher;_animationsDisabled;_injector;_renderer;_backdropClick=new d.B;_attachments=new d.B;_detachments=new d.B;_positionStrategy;_scrollStrategy;_locationChanges=w.yU.EMPTY;_backdropRef=null;_detachContentMutationObserver;_detachContentAfterRenderRef;_previousHostParent;_keydownEvents=new d.B;_outsidePointerEvents=new d.B;_afterNextRenderRef;constructor(se,ke,Ue,Ne,Kt,yt,Vt,Zt,ti,Ye=!1,Nt,Et){this._portalOutlet=se,this._host=ke,this._pane=Ue,this._config=Ne,this._ngZone=Kt,this._keyboardDispatcher=yt,this._document=Vt,this._location=Zt,this._outsideClickDispatcher=ti,this._animationsDisabled=Ye,this._injector=Nt,this._renderer=Et,Ne.scrollStrategy&&(this._scrollStrategy=Ne.scrollStrategy,this._scrollStrategy.attach(this)),this._positionStrategy=Ne.positionStrategy}get overlayElement(){return this._pane}get backdropElement(){return this._backdropRef?.element||null}get hostElement(){return this._host}attach(se){!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host);const ke=this._portalOutlet.attach(se);return this._positionStrategy&&this._positionStrategy.attach(this),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._scrollStrategy&&this._scrollStrategy.enable(),this._afterNextRenderRef?.destroy(),this._afterNextRenderRef=(0,t.mal)(()=>{this.hasAttached()&&this.updatePosition()},{injector:this._injector}),this._togglePointerEvents(!0),this._config.hasBackdrop&&this._attachBackdrop(),this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!0),this._attachments.next(),this._completeDetachContent(),this._keyboardDispatcher.add(this),this._config.disposeOnNavigation&&(this._locationChanges=this._location.subscribe(()=>this.dispose())),this._outsideClickDispatcher.add(this),"function"==typeof ke?.onDestroy&&ke.onDestroy(()=>{this.hasAttached()&&this._ngZone.runOutsideAngular(()=>Promise.resolve().then(()=>this.detach()))}),ke}detach(){if(!this.hasAttached())return;this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._scrollStrategy&&this._scrollStrategy.disable();const se=this._portalOutlet.detach();return this._detachments.next(),this._completeDetachContent(),this._keyboardDispatcher.remove(this),this._detachContentWhenEmpty(),this._locationChanges.unsubscribe(),this._outsideClickDispatcher.remove(this),se}dispose(){const se=this.hasAttached();this._positionStrategy&&this._positionStrategy.dispose(),this._disposeScrollStrategy(),this._backdropRef?.dispose(),this._locationChanges.unsubscribe(),this._keyboardDispatcher.remove(this),this._portalOutlet.dispose(),this._attachments.complete(),this._backdropClick.complete(),this._keydownEvents.complete(),this._outsidePointerEvents.complete(),this._outsideClickDispatcher.remove(this),this._host?.remove(),this._afterNextRenderRef?.destroy(),this._previousHostParent=this._pane=this._host=this._backdropRef=null,se&&this._detachments.next(),this._detachments.complete(),this._completeDetachContent()}hasAttached(){return this._portalOutlet.hasAttached()}backdropClick(){return this._backdropClick}attachments(){return this._attachments}detachments(){return this._detachments}keydownEvents(){return this._keydownEvents}outsidePointerEvents(){return this._outsidePointerEvents}getConfig(){return this._config}updatePosition(){this._positionStrategy&&this._positionStrategy.apply()}updatePositionStrategy(se){se!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=se,this.hasAttached()&&(se.attach(this),this.updatePosition()))}updateSize(se){this._config={...this._config,...se},this._updateElementSize()}setDirection(se){this._config={...this._config,direction:se},this._updateElementDirection()}addPanelClass(se){this._pane&&this._toggleClasses(this._pane,se,!0)}removePanelClass(se){this._pane&&this._toggleClasses(this._pane,se,!1)}getDirection(){const se=this._config.direction;return se?"string"==typeof se?se:se.value:"ltr"}updateScrollStrategy(se){se!==this._scrollStrategy&&(this._disposeScrollStrategy(),this._scrollStrategy=se,this.hasAttached()&&(se.attach(this),se.enable()))}_updateElementDirection(){this._host.setAttribute("dir",this.getDirection())}_updateElementSize(){if(!this._pane)return;const se=this._pane.style;se.width=m(this._config.width),se.height=m(this._config.height),se.minWidth=m(this._config.minWidth),se.minHeight=m(this._config.minHeight),se.maxWidth=m(this._config.maxWidth),se.maxHeight=m(this._config.maxHeight)}_togglePointerEvents(se){this._pane.style.pointerEvents=se?"":"none"}_attachBackdrop(){const se="cdk-overlay-backdrop-showing";this._backdropRef?.dispose(),this._backdropRef=new ve(this._document,this._renderer,this._ngZone,ke=>{this._backdropClick.next(ke)}),this._animationsDisabled&&this._backdropRef.element.classList.add("cdk-overlay-backdrop-noop-animation"),this._config.backdropClass&&this._toggleClasses(this._backdropRef.element,this._config.backdropClass,!0),this._host.parentElement.insertBefore(this._backdropRef.element,this._host),!this._animationsDisabled&&typeof requestAnimationFrame<"u"?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>this._backdropRef?.element.classList.add(se))}):this._backdropRef.element.classList.add(se)}_updateStackingOrder(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)}detachBackdrop(){this._animationsDisabled?(this._backdropRef?.dispose(),this._backdropRef=null):this._backdropRef?.detach()}_toggleClasses(se,ke,Ue){const Ne=(0,P.F)(ke||[]).filter(Kt=>!!Kt);Ne.length&&(Ue?se.classList.add(...Ne):se.classList.remove(...Ne))}_detachContentWhenEmpty(){let se=!1;try{this._detachContentAfterRenderRef=(0,t.mal)(()=>{se=!0,this._detachContent()},{injector:this._injector})}catch(ke){if(se)throw ke;this._detachContent()}globalThis.MutationObserver&&this._pane&&(this._detachContentMutationObserver||=new globalThis.MutationObserver(()=>{this._detachContent()}),this._detachContentMutationObserver.observe(this._pane,{childList:!0}))}_detachContent(){(!this._pane||!this._host||0===this._pane.children.length)&&(this._pane&&this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!1),this._host&&this._host.parentElement&&(this._previousHostParent=this._host.parentElement,this._host.remove()),this._completeDetachContent())}_completeDetachContent(){this._detachContentAfterRenderRef?.destroy(),this._detachContentAfterRenderRef=void 0,this._detachContentMutationObserver?.disconnect()}_disposeScrollStrategy(){const se=this._scrollStrategy;se?.disable(),se?.detach?.()}}const Ee="cdk-overlay-connected-position-bounding-box",dt=/([A-Za-z%]+)$/;function nt(ce,se){return new Ct(se,ce.get(M.Xj),ce.get(i.qQL),ce.get(c.O),ce.get(ge))}class Ct{_viewportRuler;_document;_platform;_overlayContainer;_overlayRef;_isInitialRender;_lastBoundingBoxSize={width:0,height:0};_isPushed=!1;_canPush=!0;_growAfterOpen=!1;_hasFlexibleDimensions=!0;_positionLocked=!1;_originRect;_overlayRect;_viewportRect;_containerRect;_viewportMargin=0;_scrollables=[];_preferredPositions=[];_origin;_pane;_isDisposed;_boundingBox;_lastPosition;_lastScrollVisibility;_positionChanges=new d.B;_resizeSubscription=w.yU.EMPTY;_offsetX=0;_offsetY=0;_transformOriginSelector;_appliedPanelClasses=[];_previousPushAmount;positionChanges=this._positionChanges;get positions(){return this._preferredPositions}constructor(se,ke,Ue,Ne,Kt){this._viewportRuler=ke,this._document=Ue,this._platform=Ne,this._overlayContainer=Kt,this.setOrigin(se)}attach(se){this._validatePositions(),se.hostElement.classList.add(Ee),this._overlayRef=se,this._boundingBox=se.hostElement,this._pane=se.overlayElement,this._isDisposed=!1,this._isInitialRender=!0,this._lastPosition=null,this._resizeSubscription.unsubscribe(),this._resizeSubscription=this._viewportRuler.change().subscribe(()=>{this._isInitialRender=!0,this.apply()})}apply(){if(this._isDisposed||!this._platform.isBrowser)return;if(!this._isInitialRender&&this._positionLocked&&this._lastPosition)return void this.reapplyLastPosition();this._clearPanelClasses(),this._resetOverlayElementStyles(),this._resetBoundingBoxStyles(),this._viewportRect=this._getNarrowedViewportRect(),this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const se=this._originRect,ke=this._overlayRect,Ue=this._viewportRect,Ne=this._containerRect,Kt=[];let yt;for(let Vt of this._preferredPositions){let Zt=this._getOriginPoint(se,Ne,Vt),ti=this._getOverlayPoint(Zt,ke,Vt),Ye=this._getOverlayFit(ti,ke,Ue,Vt);if(Ye.isCompletelyWithinViewport)return this._isPushed=!1,void this._applyPosition(Vt,Zt);this._canFitWithFlexibleDimensions(Ye,ti,Ue)?Kt.push({position:Vt,origin:Zt,overlayRect:ke,boundingBoxRect:this._calculateBoundingBoxRect(Zt,Vt)}):(!yt||yt.overlayFit.visibleAreaZt&&(Zt=Ye,Vt=ti)}return this._isPushed=!1,void this._applyPosition(Vt.position,Vt.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(yt.position,yt.originPoint);this._applyPosition(yt.position,yt.originPoint)}detach(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}dispose(){this._isDisposed||(this._boundingBox&&Mt(this._boundingBox.style,{top:"",left:"",right:"",bottom:"",height:"",width:"",alignItems:"",justifyContent:""}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(Ee),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}reapplyLastPosition(){if(this._isDisposed||!this._platform.isBrowser)return;const se=this._lastPosition;if(se){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const ke=this._getOriginPoint(this._originRect,this._containerRect,se);this._applyPosition(se,ke)}else this.apply()}withScrollableContainers(se){return this._scrollables=se,this}withPositions(se){return this._preferredPositions=se,-1===se.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}withViewportMargin(se){return this._viewportMargin=se,this}withFlexibleDimensions(se=!0){return this._hasFlexibleDimensions=se,this}withGrowAfterOpen(se=!0){return this._growAfterOpen=se,this}withPush(se=!0){return this._canPush=se,this}withLockedPosition(se=!0){return this._positionLocked=se,this}setOrigin(se){return this._origin=se,this}withDefaultOffsetX(se){return this._offsetX=se,this}withDefaultOffsetY(se){return this._offsetY=se,this}withTransformOriginOn(se){return this._transformOriginSelector=se,this}_getOriginPoint(se,ke,Ue){let Ne,Kt;if("center"==Ue.originX)Ne=se.left+se.width/2;else{const yt=this._isRtl()?se.right:se.left,Vt=this._isRtl()?se.left:se.right;Ne="start"==Ue.originX?yt:Vt}return ke.left<0&&(Ne-=ke.left),Kt="center"==Ue.originY?se.top+se.height/2:"top"==Ue.originY?se.top:se.bottom,ke.top<0&&(Kt-=ke.top),{x:Ne,y:Kt}}_getOverlayPoint(se,ke,Ue){let Ne,Kt;return Ne="center"==Ue.overlayX?-ke.width/2:"start"===Ue.overlayX?this._isRtl()?-ke.width:0:this._isRtl()?0:-ke.width,Kt="center"==Ue.overlayY?-ke.height/2:"top"==Ue.overlayY?0:-ke.height,{x:se.x+Ne,y:se.y+Kt}}_getOverlayFit(se,ke,Ue,Ne){const Kt=Pe(ke);let{x:yt,y:Vt}=se,Zt=this._getOffset(Ne,"x"),ti=this._getOffset(Ne,"y");Zt&&(yt+=Zt),ti&&(Vt+=ti);let Et=0-Vt,Jt=Vt+Kt.height-Ue.height,qe=this._subtractOverflows(Kt.width,0-yt,yt+Kt.width-Ue.width),$e=this._subtractOverflows(Kt.height,Et,Jt),tt=qe*$e;return{visibleArea:tt,isCompletelyWithinViewport:Kt.width*Kt.height===tt,fitsInViewportVertically:$e===Kt.height,fitsInViewportHorizontally:qe==Kt.width}}_canFitWithFlexibleDimensions(se,ke,Ue){if(this._hasFlexibleDimensions){const Ne=Ue.bottom-ke.y,Kt=Ue.right-ke.x,yt=lt(this._overlayRef.getConfig().minHeight),Vt=lt(this._overlayRef.getConfig().minWidth);return(se.fitsInViewportVertically||null!=yt&&yt<=Ne)&&(se.fitsInViewportHorizontally||null!=Vt&&Vt<=Kt)}return!1}_pushOverlayOnScreen(se,ke,Ue){if(this._previousPushAmount&&this._positionLocked)return{x:se.x+this._previousPushAmount.x,y:se.y+this._previousPushAmount.y};const Ne=Pe(ke),Kt=this._viewportRect,yt=Math.max(se.x+Ne.width-Kt.width,0),Vt=Math.max(se.y+Ne.height-Kt.height,0),Zt=Math.max(Kt.top-Ue.top-se.y,0),ti=Math.max(Kt.left-Ue.left-se.x,0);let Ye=0,Nt=0;return Ye=Ne.width<=Kt.width?ti||-yt:se.xqe&&!this._isInitialRender&&!this._growAfterOpen&&(yt=se.y-qe/2)}if("end"===ke.overlayX&&!Ne||"start"===ke.overlayX&&Ne)Et=Ue.width-se.x+2*this._viewportMargin,Ye=se.x-this._viewportMargin;else if("start"===ke.overlayX&&!Ne||"end"===ke.overlayX&&Ne)Nt=se.x,Ye=Ue.right-se.x;else{const Jt=Math.min(Ue.right-se.x+Ue.left,se.x),qe=this._lastBoundingBoxSize.width;Ye=2*Jt,Nt=se.x-Jt,Ye>qe&&!this._isInitialRender&&!this._growAfterOpen&&(Nt=se.x-qe/2)}return{top:yt,left:Nt,bottom:Vt,right:Et,width:Ye,height:Kt}}_setBoundingBoxStyles(se,ke){const Ue=this._calculateBoundingBoxRect(se,ke);!this._isInitialRender&&!this._growAfterOpen&&(Ue.height=Math.min(Ue.height,this._lastBoundingBoxSize.height),Ue.width=Math.min(Ue.width,this._lastBoundingBoxSize.width));const Ne={};if(this._hasExactPosition())Ne.top=Ne.left="0",Ne.bottom=Ne.right=Ne.maxHeight=Ne.maxWidth="",Ne.width=Ne.height="100%";else{const Kt=this._overlayRef.getConfig().maxHeight,yt=this._overlayRef.getConfig().maxWidth;Ne.height=m(Ue.height),Ne.top=m(Ue.top),Ne.bottom=m(Ue.bottom),Ne.width=m(Ue.width),Ne.left=m(Ue.left),Ne.right=m(Ue.right),Ne.alignItems="center"===ke.overlayX?"center":"end"===ke.overlayX?"flex-end":"flex-start",Ne.justifyContent="center"===ke.overlayY?"center":"bottom"===ke.overlayY?"flex-end":"flex-start",Kt&&(Ne.maxHeight=m(Kt)),yt&&(Ne.maxWidth=m(yt))}this._lastBoundingBoxSize=Ue,Mt(this._boundingBox.style,Ne)}_resetBoundingBoxStyles(){Mt(this._boundingBox.style,{top:"0",left:"0",right:"0",bottom:"0",height:"",width:"",alignItems:"",justifyContent:""})}_resetOverlayElementStyles(){Mt(this._pane.style,{top:"",left:"",bottom:"",right:"",position:"",transform:""})}_setOverlayElementStyles(se,ke){const Ue={},Ne=this._hasExactPosition(),Kt=this._hasFlexibleDimensions,yt=this._overlayRef.getConfig();if(Ne){const Ye=this._viewportRuler.getViewportScrollPosition();Mt(Ue,this._getExactOverlayY(ke,se,Ye)),Mt(Ue,this._getExactOverlayX(ke,se,Ye))}else Ue.position="static";let Vt="",Zt=this._getOffset(ke,"x"),ti=this._getOffset(ke,"y");Zt&&(Vt+=`translateX(${Zt}px) `),ti&&(Vt+=`translateY(${ti}px)`),Ue.transform=Vt.trim(),yt.maxHeight&&(Ne?Ue.maxHeight=m(yt.maxHeight):Kt&&(Ue.maxHeight="")),yt.maxWidth&&(Ne?Ue.maxWidth=m(yt.maxWidth):Kt&&(Ue.maxWidth="")),Mt(this._pane.style,Ue)}_getExactOverlayY(se,ke,Ue){let Ne={top:"",bottom:""},Kt=this._getOverlayPoint(ke,this._overlayRect,se);return this._isPushed&&(Kt=this._pushOverlayOnScreen(Kt,this._overlayRect,Ue)),"bottom"===se.overlayY?Ne.bottom=this._document.documentElement.clientHeight-(Kt.y+this._overlayRect.height)+"px":Ne.top=m(Kt.y),Ne}_getExactOverlayX(se,ke,Ue){let yt,Ne={left:"",right:""},Kt=this._getOverlayPoint(ke,this._overlayRect,se);return this._isPushed&&(Kt=this._pushOverlayOnScreen(Kt,this._overlayRect,Ue)),yt=this._isRtl()?"end"===se.overlayX?"left":"right":"end"===se.overlayX?"right":"left","right"===yt?Ne.right=this._document.documentElement.clientWidth-(Kt.x+this._overlayRect.width)+"px":Ne.left=m(Kt.x),Ne}_getScrollVisibility(){const se=this._getOriginRect(),ke=this._pane.getBoundingClientRect(),Ue=this._scrollables.map(Ne=>Ne.getElementRef().nativeElement.getBoundingClientRect());return{isOriginClipped:k(se,Ue),isOriginOutsideView:A(se,Ue),isOverlayClipped:k(ke,Ue),isOverlayOutsideView:A(ke,Ue)}}_subtractOverflows(se,...ke){return ke.reduce((Ue,Ne)=>Ue-Math.max(Ne,0),se)}_getNarrowedViewportRect(){const se=this._document.documentElement.clientWidth,ke=this._document.documentElement.clientHeight,Ue=this._viewportRuler.getViewportScrollPosition();return{top:Ue.top+this._viewportMargin,left:Ue.left+this._viewportMargin,right:Ue.left+se-this._viewportMargin,bottom:Ue.top+ke-this._viewportMargin,width:se-2*this._viewportMargin,height:ke-2*this._viewportMargin}}_isRtl(){return"rtl"===this._overlayRef.getDirection()}_hasExactPosition(){return!this._hasFlexibleDimensions||this._isPushed}_getOffset(se,ke){return"x"===ke?null==se.offsetX?this._offsetX:se.offsetX:null==se.offsetY?this._offsetY:se.offsetY}_validatePositions(){}_addPanelClasses(se){this._pane&&(0,P.F)(se).forEach(ke=>{""!==ke&&-1===this._appliedPanelClasses.indexOf(ke)&&(this._appliedPanelClasses.push(ke),this._pane.classList.add(ke))})}_clearPanelClasses(){this._pane&&(this._appliedPanelClasses.forEach(se=>{this._pane.classList.remove(se)}),this._appliedPanelClasses=[])}_getOriginRect(){const se=this._origin;if(se instanceof t.aKT)return se.nativeElement.getBoundingClientRect();if(se instanceof Element)return se.getBoundingClientRect();const ke=se.width||0,Ue=se.height||0;return{top:se.y,bottom:se.y+Ue,left:se.x,right:se.x+ke,height:Ue,width:ke}}}function Mt(ce,se){for(let ke in se)se.hasOwnProperty(ke)&&(ce[ke]=se[ke]);return ce}function lt(ce){if("number"!=typeof ce&&null!=ce){const[se,ke]=ce.split(dt);return ke&&"px"!==ke?null:parseFloat(se)}return ce||null}function Pe(ce){return{top:Math.floor(ce.top),right:Math.floor(ce.right),bottom:Math.floor(ce.bottom),left:Math.floor(ce.left),width:Math.floor(ce.width),height:Math.floor(ce.height)}}const ze="cdk-global-overlay-wrapper";function Z(ce){return new J}class J{_overlayRef;_cssPosition="static";_topOffset="";_bottomOffset="";_alignItems="";_xPosition="";_xOffset="";_width="";_height="";_isDisposed=!1;attach(se){const ke=se.getConfig();this._overlayRef=se,this._width&&!ke.width&&se.updateSize({width:this._width}),this._height&&!ke.height&&se.updateSize({height:this._height}),se.hostElement.classList.add(ze),this._isDisposed=!1}top(se=""){return this._bottomOffset="",this._topOffset=se,this._alignItems="flex-start",this}left(se=""){return this._xOffset=se,this._xPosition="left",this}bottom(se=""){return this._topOffset="",this._bottomOffset=se,this._alignItems="flex-end",this}right(se=""){return this._xOffset=se,this._xPosition="right",this}start(se=""){return this._xOffset=se,this._xPosition="start",this}end(se=""){return this._xOffset=se,this._xPosition="end",this}width(se=""){return this._overlayRef?this._overlayRef.updateSize({width:se}):this._width=se,this}height(se=""){return this._overlayRef?this._overlayRef.updateSize({height:se}):this._height=se,this}centerHorizontally(se=""){return this.left(se),this._xPosition="center",this}centerVertically(se=""){return this.top(se),this._alignItems="center",this}apply(){if(!this._overlayRef||!this._overlayRef.hasAttached())return;const se=this._overlayRef.overlayElement.style,ke=this._overlayRef.hostElement.style,Ue=this._overlayRef.getConfig(),{width:Ne,height:Kt,maxWidth:yt,maxHeight:Vt}=Ue,Zt=!("100%"!==Ne&&"100vw"!==Ne||yt&&"100%"!==yt&&"100vw"!==yt),ti=!("100%"!==Kt&&"100vh"!==Kt||Vt&&"100%"!==Vt&&"100vh"!==Vt),Ye=this._xPosition,Nt=this._xOffset,Et="rtl"===this._overlayRef.getConfig().direction;let Jt="",qe="",$e="";Zt?$e="flex-start":"center"===Ye?($e="center",Et?qe=Nt:Jt=Nt):Et?"left"===Ye||"end"===Ye?($e="flex-end",Jt=Nt):("right"===Ye||"start"===Ye)&&($e="flex-start",qe=Nt):"left"===Ye||"start"===Ye?($e="flex-start",Jt=Nt):("right"===Ye||"end"===Ye)&&($e="flex-end",qe=Nt),se.position=this._cssPosition,se.marginLeft=Zt?"0":Jt,se.marginTop=ti?"0":this._topOffset,se.marginBottom=this._bottomOffset,se.marginRight=Zt?"0":qe,ke.justifyContent=$e,ke.alignItems=ti?"flex-start":this._alignItems}dispose(){if(this._isDisposed||!this._overlayRef)return;const se=this._overlayRef.overlayElement.style,ke=this._overlayRef.hostElement,Ue=ke.style;ke.classList.remove(ze),Ue.justifyContent=Ue.alignItems=se.marginTop=se.marginBottom=se.marginLeft=se.marginRight=se.position="",this._overlayRef=null,this._isDisposed=!0}}let fe=(()=>{class ce{_injector=(0,i.WQX)(i.zZn);constructor(){}global(){return Z()}flexibleConnectedTo(ke){return nt(this._injector,ke)}static \u0275fac=function(Ue){return new(Ue||ce)};static \u0275prov=i.jDH({token:ce,factory:ce.\u0275fac,providedIn:"root"})}return ce})();function Ie(ce,se){ce.get(g.l).load(Ke);const ke=ce.get(ge),Ue=ce.get(i.qQL),Ne=ce.get($.g),Kt=ce.get(t.o8S),yt=ce.get(ae.dS),Vt=Ue.createElement("div"),Zt=Ue.createElement("div");Zt.id=Ne.getId("cdk-overlay-"),Zt.classList.add("cdk-overlay-pane"),Vt.appendChild(Zt),ke.getContainerElement().appendChild(Vt);const ti=new j.aI(Zt,Kt,ce),Ye=new W(se),Nt=ce.get(t.sFG,null,{optional:!0})||ce.get(t._9s).createRenderer(null,null);return Ye.direction=Ye.direction||yt.value,new Oe(ti,Vt,Zt,Ye,ce.get(t.SKi),ce.get(_e),Ue,ce.get(S.aZ),ce.get(ye),se?.disableAnimations??"NoopAnimations"===ce.get(t.bc$,null,{optional:!0}),ce.get(i.uvJ),Nt)}let ht=(()=>{class ce{scrollStrategies=(0,i.WQX)(_);_positionBuilder=(0,i.WQX)(fe);_injector=(0,i.WQX)(i.zZn);constructor(){}create(ke){return Ie(this._injector,ke)}position(){return this._positionBuilder}static \u0275fac=function(Ue){return new(Ue||ce)};static \u0275prov=i.jDH({token:ce,factory:ce.\u0275fac,providedIn:"root"})}return ce})();const li=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom"},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"}],Qt=new i.nKC("cdk-connected-overlay-scroll-strategy",{providedIn:"root",factory:()=>{const ce=(0,i.WQX)(i.zZn);return()=>x(ce)}});let di=(()=>{class ce{elementRef=(0,i.WQX)(t.aKT);constructor(){}static \u0275fac=function(Ue){return new(Ue||ce)};static \u0275dir=t.FsC({type:ce,selectors:[["","cdk-overlay-origin",""],["","overlay-origin",""],["","cdkOverlayOrigin",""]],exportAs:["cdkOverlayOrigin"]})}return ce})(),kt=(()=>{class ce{_dir=(0,i.WQX)(ae.dS,{optional:!0});_injector=(0,i.WQX)(i.zZn);_overlayRef;_templatePortal;_backdropSubscription=w.yU.EMPTY;_attachSubscription=w.yU.EMPTY;_detachSubscription=w.yU.EMPTY;_positionSubscription=w.yU.EMPTY;_offsetX;_offsetY;_position;_scrollStrategyFactory=(0,i.WQX)(Qt);_disposeOnNavigation=!1;_ngZone=(0,i.WQX)(t.SKi);origin;positions;positionStrategy;get offsetX(){return this._offsetX}set offsetX(ke){this._offsetX=ke,this._position&&this._updatePositionStrategy(this._position)}get offsetY(){return this._offsetY}set offsetY(ke){this._offsetY=ke,this._position&&this._updatePositionStrategy(this._position)}width;height;minWidth;minHeight;backdropClass;panelClass;viewportMargin=0;scrollStrategy;open=!1;disableClose=!1;transformOriginSelector;hasBackdrop=!1;lockPosition=!1;flexibleDimensions=!1;growAfterOpen=!1;push=!1;get disposeOnNavigation(){return this._disposeOnNavigation}set disposeOnNavigation(ke){this._disposeOnNavigation=ke}backdropClick=new t.bkB;positionChange=new t.bkB;attach=new t.bkB;detach=new t.bkB;overlayKeydown=new t.bkB;overlayOutsideClick=new t.bkB;constructor(){const ke=(0,i.WQX)(t.C4Q),Ue=(0,i.WQX)(t.c1b);this._templatePortal=new j.VA(ke,Ue),this.scrollStrategy=this._scrollStrategyFactory()}get overlayRef(){return this._overlayRef}get dir(){return this._dir?this._dir.value:"ltr"}ngOnDestroy(){this._attachSubscription.unsubscribe(),this._detachSubscription.unsubscribe(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this._overlayRef?.dispose()}ngOnChanges(ke){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef?.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),ke.origin&&this.open&&this._position.apply()),ke.open&&(this.open?this.attachOverlay():this.detachOverlay())}_createOverlay(){(!this.positions||!this.positions.length)&&(this.positions=li);const ke=this._overlayRef=Ie(this._injector,this._buildConfig());this._attachSubscription=ke.attachments().subscribe(()=>this.attach.emit()),this._detachSubscription=ke.detachments().subscribe(()=>this.detach.emit()),ke.keydownEvents().subscribe(Ue=>{this.overlayKeydown.next(Ue),Ue.keyCode===ue._f&&!this.disableClose&&!(0,oe.rp)(Ue)&&(Ue.preventDefault(),this.detachOverlay())}),this._overlayRef.outsidePointerEvents().subscribe(Ue=>{const Ne=this._getOriginElement(),Kt=(0,e.Fb)(Ue);(!Ne||Ne!==Kt&&!Ne.contains(Kt))&&this.overlayOutsideClick.next(Ue)})}_buildConfig(){const ke=this._position=this.positionStrategy||this._createPositionStrategy(),Ue=new W({direction:this._dir||"ltr",positionStrategy:ke,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop,disposeOnNavigation:this.disposeOnNavigation});return(this.width||0===this.width)&&(Ue.width=this.width),(this.height||0===this.height)&&(Ue.height=this.height),(this.minWidth||0===this.minWidth)&&(Ue.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(Ue.minHeight=this.minHeight),this.backdropClass&&(Ue.backdropClass=this.backdropClass),this.panelClass&&(Ue.panelClass=this.panelClass),Ue}_updatePositionStrategy(ke){const Ue=this.positions.map(Ne=>({originX:Ne.originX,originY:Ne.originY,overlayX:Ne.overlayX,overlayY:Ne.overlayY,offsetX:Ne.offsetX||this.offsetX,offsetY:Ne.offsetY||this.offsetY,panelClass:Ne.panelClass||void 0}));return ke.setOrigin(this._getOrigin()).withPositions(Ue).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}_createPositionStrategy(){const ke=nt(this._injector,this._getOrigin());return this._updatePositionStrategy(ke),ke}_getOrigin(){return this.origin instanceof di?this.origin.elementRef:this.origin}_getOriginElement(){return this.origin instanceof di?this.origin.elementRef.nativeElement:this.origin instanceof t.aKT?this.origin.nativeElement:typeof Element<"u"&&this.origin instanceof Element?this.origin:null}attachOverlay(){this._overlayRef?this._overlayRef.getConfig().hasBackdrop=this.hasBackdrop:this._createOverlay(),this._overlayRef.hasAttached()||this._overlayRef.attach(this._templatePortal),this.hasBackdrop?this._backdropSubscription=this._overlayRef.backdropClick().subscribe(ke=>{this.backdropClick.emit(ke)}):this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this.positionChange.observers.length>0&&(this._positionSubscription=this._position.positionChanges.pipe(function Q(ce,se=!1){return(0,q.N)((ke,Ue)=>{let Ne=0;ke.subscribe((0,G._)(Ue,Kt=>{const yt=ce(Kt,Ne++);(yt||se)&&Ue.next(Kt),!yt&&Ue.complete()}))})}(()=>this.positionChange.observers.length>0)).subscribe(ke=>{this._ngZone.run(()=>this.positionChange.emit(ke)),0===this.positionChange.observers.length&&this._positionSubscription.unsubscribe()})),this.open=!0}detachOverlay(){this._overlayRef?.detach(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this.open=!1}static \u0275fac=function(Ue){return new(Ue||ce)};static \u0275dir=t.FsC({type:ce,selectors:[["","cdk-connected-overlay",""],["","connected-overlay",""],["","cdkConnectedOverlay",""]],inputs:{origin:[0,"cdkConnectedOverlayOrigin","origin"],positions:[0,"cdkConnectedOverlayPositions","positions"],positionStrategy:[0,"cdkConnectedOverlayPositionStrategy","positionStrategy"],offsetX:[0,"cdkConnectedOverlayOffsetX","offsetX"],offsetY:[0,"cdkConnectedOverlayOffsetY","offsetY"],width:[0,"cdkConnectedOverlayWidth","width"],height:[0,"cdkConnectedOverlayHeight","height"],minWidth:[0,"cdkConnectedOverlayMinWidth","minWidth"],minHeight:[0,"cdkConnectedOverlayMinHeight","minHeight"],backdropClass:[0,"cdkConnectedOverlayBackdropClass","backdropClass"],panelClass:[0,"cdkConnectedOverlayPanelClass","panelClass"],viewportMargin:[0,"cdkConnectedOverlayViewportMargin","viewportMargin"],scrollStrategy:[0,"cdkConnectedOverlayScrollStrategy","scrollStrategy"],open:[0,"cdkConnectedOverlayOpen","open"],disableClose:[0,"cdkConnectedOverlayDisableClose","disableClose"],transformOriginSelector:[0,"cdkConnectedOverlayTransformOriginOn","transformOriginSelector"],hasBackdrop:[2,"cdkConnectedOverlayHasBackdrop","hasBackdrop",p.L39],lockPosition:[2,"cdkConnectedOverlayLockPosition","lockPosition",p.L39],flexibleDimensions:[2,"cdkConnectedOverlayFlexibleDimensions","flexibleDimensions",p.L39],growAfterOpen:[2,"cdkConnectedOverlayGrowAfterOpen","growAfterOpen",p.L39],push:[2,"cdkConnectedOverlayPush","push",p.L39],disposeOnNavigation:[2,"cdkConnectedOverlayDisposeOnNavigation","disposeOnNavigation",p.L39]},outputs:{backdropClick:"backdropClick",positionChange:"positionChange",attach:"attach",detach:"detach",overlayKeydown:"overlayKeydown",overlayOutsideClick:"overlayOutsideClick"},exportAs:["cdkConnectedOverlay"],features:[t.OA$]})}return ce})();const le={provide:Qt,useFactory:function Rt(ce){const se=(0,i.WQX)(i.zZn);return()=>x(se)}};let te=(()=>{class ce{static \u0275fac=function(Ue){return new(Ue||ce)};static \u0275mod=t.$C({type:ce});static \u0275inj=i.G2t({providers:[ht,le],imports:[he.jI,j.jc,M.E9,M.E9]})}return ce})()},49609:(Ae,ee,l)=>{var i=ee;i.bignum=l(96867),i.define=l(16626).define,i.base=l(15066),i.constants=l(47740),i.decoders=l(91558),i.encoders=l(22714)},49786:(Ae,ee,l)=>{"use strict";l.d(ee,{Y:()=>p,l:()=>S});var i=l(41026);let t=null;function p(c){if(i.$.useDeprecatedSynchronousErrorHandling){const e=!t;if(e&&(t={errorThrown:!1,error:null}),c(),e){const{errorThrown:T,error:g}=t;if(t=null,T)throw g}}else c()}function S(c){i.$.useDeprecatedSynchronousErrorHandling&&t&&(t.errorThrown=!0,t.error=c)}},50591:(Ae,ee,l)=>{"use strict";function i(t){return new TypeError(`You provided ${null!==t&&"object"==typeof t?"an invalid object":`'${t}'`} where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`)}l.d(ee,{L:()=>i})},51069:()=>{},51416:Ae=>{Ae.exports={doubles:{step:4,points:[["e60fce93b59e9ec53011aabc21c23e97b2a31369b87a5ae9c44ee89e2a6dec0a","f7e3507399e595929db99f34f57937101296891e44d23f0be1f32cce69616821"],["8282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508","11f8a8098557dfe45e8256e830b60ace62d613ac2f7b17bed31b6eaff6e26caf"],["175e159f728b865a72f99cc6c6fc846de0b93833fd2222ed73fce5b551e5b739","d3506e0d9e3c79eba4ef97a51ff71f5eacb5955add24345c6efa6ffee9fed695"],["363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640","4e273adfc732221953b445397f3363145b9a89008199ecb62003c7f3bee9de9"],["8b4b5f165df3c2be8c6244b5b745638843e4a781a15bcd1b69f79a55dffdf80c","4aad0a6f68d308b4b3fbd7813ab0da04f9e336546162ee56b3eff0c65fd4fd36"],["723cbaa6e5db996d6bf771c00bd548c7b700dbffa6c0e77bcb6115925232fcda","96e867b5595cc498a921137488824d6e2660a0653779494801dc069d9eb39f5f"],["eebfa4d493bebf98ba5feec812c2d3b50947961237a919839a533eca0e7dd7fa","5d9a8ca3970ef0f269ee7edaf178089d9ae4cdc3a711f712ddfd4fdae1de8999"],["100f44da696e71672791d0a09b7bde459f1215a29b3c03bfefd7835b39a48db0","cdd9e13192a00b772ec8f3300c090666b7ff4a18ff5195ac0fbd5cd62bc65a09"],["e1031be262c7ed1b1dc9227a4a04c017a77f8d4464f3b3852c8acde6e534fd2d","9d7061928940405e6bb6a4176597535af292dd419e1ced79a44f18f29456a00d"],["feea6cae46d55b530ac2839f143bd7ec5cf8b266a41d6af52d5e688d9094696d","e57c6b6c97dce1bab06e4e12bf3ecd5c981c8957cc41442d3155debf18090088"],["da67a91d91049cdcb367be4be6ffca3cfeed657d808583de33fa978bc1ec6cb1","9bacaa35481642bc41f463f7ec9780e5dec7adc508f740a17e9ea8e27a68be1d"],["53904faa0b334cdda6e000935ef22151ec08d0f7bb11069f57545ccc1a37b7c0","5bc087d0bc80106d88c9eccac20d3c1c13999981e14434699dcb096b022771c8"],["8e7bcd0bd35983a7719cca7764ca906779b53a043a9b8bcaeff959f43ad86047","10b7770b2a3da4b3940310420ca9514579e88e2e47fd68b3ea10047e8460372a"],["385eed34c1cdff21e6d0818689b81bde71a7f4f18397e6690a841e1599c43862","283bebc3e8ea23f56701de19e9ebf4576b304eec2086dc8cc0458fe5542e5453"],["6f9d9b803ecf191637c73a4413dfa180fddf84a5947fbc9c606ed86c3fac3a7","7c80c68e603059ba69b8e2a30e45c4d47ea4dd2f5c281002d86890603a842160"],["3322d401243c4e2582a2147c104d6ecbf774d163db0f5e5313b7e0e742d0e6bd","56e70797e9664ef5bfb019bc4ddaf9b72805f63ea2873af624f3a2e96c28b2a0"],["85672c7d2de0b7da2bd1770d89665868741b3f9af7643397721d74d28134ab83","7c481b9b5b43b2eb6374049bfa62c2e5e77f17fcc5298f44c8e3094f790313a6"],["948bf809b1988a46b06c9f1919413b10f9226c60f668832ffd959af60c82a0a","53a562856dcb6646dc6b74c5d1c3418c6d4dff08c97cd2bed4cb7f88d8c8e589"],["6260ce7f461801c34f067ce0f02873a8f1b0e44dfc69752accecd819f38fd8e8","bc2da82b6fa5b571a7f09049776a1ef7ecd292238051c198c1a84e95b2b4ae17"],["e5037de0afc1d8d43d8348414bbf4103043ec8f575bfdc432953cc8d2037fa2d","4571534baa94d3b5f9f98d09fb990bddbd5f5b03ec481f10e0e5dc841d755bda"],["e06372b0f4a207adf5ea905e8f1771b4e7e8dbd1c6a6c5b725866a0ae4fce725","7a908974bce18cfe12a27bb2ad5a488cd7484a7787104870b27034f94eee31dd"],["213c7a715cd5d45358d0bbf9dc0ce02204b10bdde2a3f58540ad6908d0559754","4b6dad0b5ae462507013ad06245ba190bb4850f5f36a7eeddff2c27534b458f2"],["4e7c272a7af4b34e8dbb9352a5419a87e2838c70adc62cddf0cc3a3b08fbd53c","17749c766c9d0b18e16fd09f6def681b530b9614bff7dd33e0b3941817dcaae6"],["fea74e3dbe778b1b10f238ad61686aa5c76e3db2be43057632427e2840fb27b6","6e0568db9b0b13297cf674deccb6af93126b596b973f7b77701d3db7f23cb96f"],["76e64113f677cf0e10a2570d599968d31544e179b760432952c02a4417bdde39","c90ddf8dee4e95cf577066d70681f0d35e2a33d2b56d2032b4b1752d1901ac01"],["c738c56b03b2abe1e8281baa743f8f9a8f7cc643df26cbee3ab150242bcbb891","893fb578951ad2537f718f2eacbfbbbb82314eef7880cfe917e735d9699a84c3"],["d895626548b65b81e264c7637c972877d1d72e5f3a925014372e9f6588f6c14b","febfaa38f2bc7eae728ec60818c340eb03428d632bb067e179363ed75d7d991f"],["b8da94032a957518eb0f6433571e8761ceffc73693e84edd49150a564f676e03","2804dfa44805a1e4d7c99cc9762808b092cc584d95ff3b511488e4e74efdf6e7"],["e80fea14441fb33a7d8adab9475d7fab2019effb5156a792f1a11778e3c0df5d","eed1de7f638e00771e89768ca3ca94472d155e80af322ea9fcb4291b6ac9ec78"],["a301697bdfcd704313ba48e51d567543f2a182031efd6915ddc07bbcc4e16070","7370f91cfb67e4f5081809fa25d40f9b1735dbf7c0a11a130c0d1a041e177ea1"],["90ad85b389d6b936463f9d0512678de208cc330b11307fffab7ac63e3fb04ed4","e507a3620a38261affdcbd9427222b839aefabe1582894d991d4d48cb6ef150"],["8f68b9d2f63b5f339239c1ad981f162ee88c5678723ea3351b7b444c9ec4c0da","662a9f2dba063986de1d90c2b6be215dbbea2cfe95510bfdf23cbf79501fff82"],["e4f3fb0176af85d65ff99ff9198c36091f48e86503681e3e6686fd5053231e11","1e63633ad0ef4f1c1661a6d0ea02b7286cc7e74ec951d1c9822c38576feb73bc"],["8c00fa9b18ebf331eb961537a45a4266c7034f2f0d4e1d0716fb6eae20eae29e","efa47267fea521a1a9dc343a3736c974c2fadafa81e36c54e7d2a4c66702414b"],["e7a26ce69dd4829f3e10cec0a9e98ed3143d084f308b92c0997fddfc60cb3e41","2a758e300fa7984b471b006a1aafbb18d0a6b2c0420e83e20e8a9421cf2cfd51"],["b6459e0ee3662ec8d23540c223bcbdc571cbcb967d79424f3cf29eb3de6b80ef","67c876d06f3e06de1dadf16e5661db3c4b3ae6d48e35b2ff30bf0b61a71ba45"],["d68a80c8280bb840793234aa118f06231d6f1fc67e73c5a5deda0f5b496943e8","db8ba9fff4b586d00c4b1f9177b0e28b5b0e7b8f7845295a294c84266b133120"],["324aed7df65c804252dc0270907a30b09612aeb973449cea4095980fc28d3d5d","648a365774b61f2ff130c0c35aec1f4f19213b0c7e332843967224af96ab7c84"],["4df9c14919cde61f6d51dfdbe5fee5dceec4143ba8d1ca888e8bd373fd054c96","35ec51092d8728050974c23a1d85d4b5d506cdc288490192ebac06cad10d5d"],["9c3919a84a474870faed8a9c1cc66021523489054d7f0308cbfc99c8ac1f98cd","ddb84f0f4a4ddd57584f044bf260e641905326f76c64c8e6be7e5e03d4fc599d"],["6057170b1dd12fdf8de05f281d8e06bb91e1493a8b91d4cc5a21382120a959e5","9a1af0b26a6a4807add9a2daf71df262465152bc3ee24c65e899be932385a2a8"],["a576df8e23a08411421439a4518da31880cef0fba7d4df12b1a6973eecb94266","40a6bf20e76640b2c92b97afe58cd82c432e10a7f514d9f3ee8be11ae1b28ec8"],["7778a78c28dec3e30a05fe9629de8c38bb30d1f5cf9a3a208f763889be58ad71","34626d9ab5a5b22ff7098e12f2ff580087b38411ff24ac563b513fc1fd9f43ac"],["928955ee637a84463729fd30e7afd2ed5f96274e5ad7e5cb09eda9c06d903ac","c25621003d3f42a827b78a13093a95eeac3d26efa8a8d83fc5180e935bcd091f"],["85d0fef3ec6db109399064f3a0e3b2855645b4a907ad354527aae75163d82751","1f03648413a38c0be29d496e582cf5663e8751e96877331582c237a24eb1f962"],["ff2b0dce97eece97c1c9b6041798b85dfdfb6d8882da20308f5404824526087e","493d13fef524ba188af4c4dc54d07936c7b7ed6fb90e2ceb2c951e01f0c29907"],["827fbbe4b1e880ea9ed2b2e6301b212b57f1ee148cd6dd28780e5e2cf856e241","c60f9c923c727b0b71bef2c67d1d12687ff7a63186903166d605b68baec293ec"],["eaa649f21f51bdbae7be4ae34ce6e5217a58fdce7f47f9aa7f3b58fa2120e2b3","be3279ed5bbbb03ac69a80f89879aa5a01a6b965f13f7e59d47a5305ba5ad93d"],["e4a42d43c5cf169d9391df6decf42ee541b6d8f0c9a137401e23632dda34d24f","4d9f92e716d1c73526fc99ccfb8ad34ce886eedfa8d8e4f13a7f7131deba9414"],["1ec80fef360cbdd954160fadab352b6b92b53576a88fea4947173b9d4300bf19","aeefe93756b5340d2f3a4958a7abbf5e0146e77f6295a07b671cdc1cc107cefd"],["146a778c04670c2f91b00af4680dfa8bce3490717d58ba889ddb5928366642be","b318e0ec3354028add669827f9d4b2870aaa971d2f7e5ed1d0b297483d83efd0"],["fa50c0f61d22e5f07e3acebb1aa07b128d0012209a28b9776d76a8793180eef9","6b84c6922397eba9b72cd2872281a68a5e683293a57a213b38cd8d7d3f4f2811"],["da1d61d0ca721a11b1a5bf6b7d88e8421a288ab5d5bba5220e53d32b5f067ec2","8157f55a7c99306c79c0766161c91e2966a73899d279b48a655fba0f1ad836f1"],["a8e282ff0c9706907215ff98e8fd416615311de0446f1e062a73b0610d064e13","7f97355b8db81c09abfb7f3c5b2515888b679a3e50dd6bd6cef7c73111f4cc0c"],["174a53b9c9a285872d39e56e6913cab15d59b1fa512508c022f382de8319497c","ccc9dc37abfc9c1657b4155f2c47f9e6646b3a1d8cb9854383da13ac079afa73"],["959396981943785c3d3e57edf5018cdbe039e730e4918b3d884fdff09475b7ba","2e7e552888c331dd8ba0386a4b9cd6849c653f64c8709385e9b8abf87524f2fd"],["d2a63a50ae401e56d645a1153b109a8fcca0a43d561fba2dbb51340c9d82b151","e82d86fb6443fcb7565aee58b2948220a70f750af484ca52d4142174dcf89405"],["64587e2335471eb890ee7896d7cfdc866bacbdbd3839317b3436f9b45617e073","d99fcdd5bf6902e2ae96dd6447c299a185b90a39133aeab358299e5e9faf6589"],["8481bde0e4e4d885b3a546d3e549de042f0aa6cea250e7fd358d6c86dd45e458","38ee7b8cba5404dd84a25bf39cecb2ca900a79c42b262e556d64b1b59779057e"],["13464a57a78102aa62b6979ae817f4637ffcfed3c4b1ce30bcd6303f6caf666b","69be159004614580ef7e433453ccb0ca48f300a81d0942e13f495a907f6ecc27"],["bc4a9df5b713fe2e9aef430bcc1dc97a0cd9ccede2f28588cada3a0d2d83f366","d3a81ca6e785c06383937adf4b798caa6e8a9fbfa547b16d758d666581f33c1"],["8c28a97bf8298bc0d23d8c749452a32e694b65e30a9472a3954ab30fe5324caa","40a30463a3305193378fedf31f7cc0eb7ae784f0451cb9459e71dc73cbef9482"],["8ea9666139527a8c1dd94ce4f071fd23c8b350c5a4bb33748c4ba111faccae0","620efabbc8ee2782e24e7c0cfb95c5d735b783be9cf0f8e955af34a30e62b945"],["dd3625faef5ba06074669716bbd3788d89bdde815959968092f76cc4eb9a9787","7a188fa3520e30d461da2501045731ca941461982883395937f68d00c644a573"],["f710d79d9eb962297e4f6232b40e8f7feb2bc63814614d692c12de752408221e","ea98e67232d3b3295d3b535532115ccac8612c721851617526ae47a9c77bfc82"]]},naf:{wnd:7,points:[["f9308a019258c31049344f85f89d5229b531c845836f99b08601f113bce036f9","388f7b0f632de8140fe337e62a37f3566500a99934c2231b6cb9fd7584b8e672"],["2f8bde4d1a07209355b4a7250a5c5128e88b84bddc619ab7cba8d569b240efe4","d8ac222636e5e3d6d4dba9dda6c9c426f788271bab0d6840dca87d3aa6ac62d6"],["5cbdf0646e5db4eaa398f365f2ea7a0e3d419b7e0330e39ce92bddedcac4f9bc","6aebca40ba255960a3178d6d861a54dba813d0b813fde7b5a5082628087264da"],["acd484e2f0c7f65309ad178a9f559abde09796974c57e714c35f110dfc27ccbe","cc338921b0a7d9fd64380971763b61e9add888a4375f8e0f05cc262ac64f9c37"],["774ae7f858a9411e5ef4246b70c65aac5649980be5c17891bbec17895da008cb","d984a032eb6b5e190243dd56d7b7b365372db1e2dff9d6a8301d74c9c953c61b"],["f28773c2d975288bc7d1d205c3748651b075fbc6610e58cddeeddf8f19405aa8","ab0902e8d880a89758212eb65cdaf473a1a06da521fa91f29b5cb52db03ed81"],["d7924d4f7d43ea965a465ae3095ff41131e5946f3c85f79e44adbcf8e27e080e","581e2872a86c72a683842ec228cc6defea40af2bd896d3a5c504dc9ff6a26b58"],["defdea4cdb677750a420fee807eacf21eb9898ae79b9768766e4faa04a2d4a34","4211ab0694635168e997b0ead2a93daeced1f4a04a95c0f6cfb199f69e56eb77"],["2b4ea0a797a443d293ef5cff444f4979f06acfebd7e86d277475656138385b6c","85e89bc037945d93b343083b5a1c86131a01f60c50269763b570c854e5c09b7a"],["352bbf4a4cdd12564f93fa332ce333301d9ad40271f8107181340aef25be59d5","321eb4075348f534d59c18259dda3e1f4a1b3b2e71b1039c67bd3d8bcf81998c"],["2fa2104d6b38d11b0230010559879124e42ab8dfeff5ff29dc9cdadd4ecacc3f","2de1068295dd865b64569335bd5dd80181d70ecfc882648423ba76b532b7d67"],["9248279b09b4d68dab21a9b066edda83263c3d84e09572e269ca0cd7f5453714","73016f7bf234aade5d1aa71bdea2b1ff3fc0de2a887912ffe54a32ce97cb3402"],["daed4f2be3a8bf278e70132fb0beb7522f570e144bf615c07e996d443dee8729","a69dce4a7d6c98e8d4a1aca87ef8d7003f83c230f3afa726ab40e52290be1c55"],["c44d12c7065d812e8acf28d7cbb19f9011ecd9e9fdf281b0e6a3b5e87d22e7db","2119a460ce326cdc76c45926c982fdac0e106e861edf61c5a039063f0e0e6482"],["6a245bf6dc698504c89a20cfded60853152b695336c28063b61c65cbd269e6b4","e022cf42c2bd4a708b3f5126f16a24ad8b33ba48d0423b6efd5e6348100d8a82"],["1697ffa6fd9de627c077e3d2fe541084ce13300b0bec1146f95ae57f0d0bd6a5","b9c398f186806f5d27561506e4557433a2cf15009e498ae7adee9d63d01b2396"],["605bdb019981718b986d0f07e834cb0d9deb8360ffb7f61df982345ef27a7479","2972d2de4f8d20681a78d93ec96fe23c26bfae84fb14db43b01e1e9056b8c49"],["62d14dab4150bf497402fdc45a215e10dcb01c354959b10cfe31c7e9d87ff33d","80fc06bd8cc5b01098088a1950eed0db01aa132967ab472235f5642483b25eaf"],["80c60ad0040f27dade5b4b06c408e56b2c50e9f56b9b8b425e555c2f86308b6f","1c38303f1cc5c30f26e66bad7fe72f70a65eed4cbe7024eb1aa01f56430bd57a"],["7a9375ad6167ad54aa74c6348cc54d344cc5dc9487d847049d5eabb0fa03c8fb","d0e3fa9eca8726909559e0d79269046bdc59ea10c70ce2b02d499ec224dc7f7"],["d528ecd9b696b54c907a9ed045447a79bb408ec39b68df504bb51f459bc3ffc9","eecf41253136e5f99966f21881fd656ebc4345405c520dbc063465b521409933"],["49370a4b5f43412ea25f514e8ecdad05266115e4a7ecb1387231808f8b45963","758f3f41afd6ed428b3081b0512fd62a54c3f3afbb5b6764b653052a12949c9a"],["77f230936ee88cbbd73df930d64702ef881d811e0e1498e2f1c13eb1fc345d74","958ef42a7886b6400a08266e9ba1b37896c95330d97077cbbe8eb3c7671c60d6"],["f2dac991cc4ce4b9ea44887e5c7c0bce58c80074ab9d4dbaeb28531b7739f530","e0dedc9b3b2f8dad4da1f32dec2531df9eb5fbeb0598e4fd1a117dba703a3c37"],["463b3d9f662621fb1b4be8fbbe2520125a216cdfc9dae3debcba4850c690d45b","5ed430d78c296c3543114306dd8622d7c622e27c970a1de31cb377b01af7307e"],["f16f804244e46e2a09232d4aff3b59976b98fac14328a2d1a32496b49998f247","cedabd9b82203f7e13d206fcdf4e33d92a6c53c26e5cce26d6579962c4e31df6"],["caf754272dc84563b0352b7a14311af55d245315ace27c65369e15f7151d41d1","cb474660ef35f5f2a41b643fa5e460575f4fa9b7962232a5c32f908318a04476"],["2600ca4b282cb986f85d0f1709979d8b44a09c07cb86d7c124497bc86f082120","4119b88753c15bd6a693b03fcddbb45d5ac6be74ab5f0ef44b0be9475a7e4b40"],["7635ca72d7e8432c338ec53cd12220bc01c48685e24f7dc8c602a7746998e435","91b649609489d613d1d5e590f78e6d74ecfc061d57048bad9e76f302c5b9c61"],["754e3239f325570cdbbf4a87deee8a66b7f2b33479d468fbc1a50743bf56cc18","673fb86e5bda30fb3cd0ed304ea49a023ee33d0197a695d0c5d98093c536683"],["e3e6bd1071a1e96aff57859c82d570f0330800661d1c952f9fe2694691d9b9e8","59c9e0bba394e76f40c0aa58379a3cb6a5a2283993e90c4167002af4920e37f5"],["186b483d056a033826ae73d88f732985c4ccb1f32ba35f4b4cc47fdcf04aa6eb","3b952d32c67cf77e2e17446e204180ab21fb8090895138b4a4a797f86e80888b"],["df9d70a6b9876ce544c98561f4be4f725442e6d2b737d9c91a8321724ce0963f","55eb2dafd84d6ccd5f862b785dc39d4ab157222720ef9da217b8c45cf2ba2417"],["5edd5cc23c51e87a497ca815d5dce0f8ab52554f849ed8995de64c5f34ce7143","efae9c8dbc14130661e8cec030c89ad0c13c66c0d17a2905cdc706ab7399a868"],["290798c2b6476830da12fe02287e9e777aa3fba1c355b17a722d362f84614fba","e38da76dcd440621988d00bcf79af25d5b29c094db2a23146d003afd41943e7a"],["af3c423a95d9f5b3054754efa150ac39cd29552fe360257362dfdecef4053b45","f98a3fd831eb2b749a93b0e6f35cfb40c8cd5aa667a15581bc2feded498fd9c6"],["766dbb24d134e745cccaa28c99bf274906bb66b26dcf98df8d2fed50d884249a","744b1152eacbe5e38dcc887980da38b897584a65fa06cedd2c924f97cbac5996"],["59dbf46f8c94759ba21277c33784f41645f7b44f6c596a58ce92e666191abe3e","c534ad44175fbc300f4ea6ce648309a042ce739a7919798cd85e216c4a307f6e"],["f13ada95103c4537305e691e74e9a4a8dd647e711a95e73cb62dc6018cfd87b8","e13817b44ee14de663bf4bc808341f326949e21a6a75c2570778419bdaf5733d"],["7754b4fa0e8aced06d4167a2c59cca4cda1869c06ebadfb6488550015a88522c","30e93e864e669d82224b967c3020b8fa8d1e4e350b6cbcc537a48b57841163a2"],["948dcadf5990e048aa3874d46abef9d701858f95de8041d2a6828c99e2262519","e491a42537f6e597d5d28a3224b1bc25df9154efbd2ef1d2cbba2cae5347d57e"],["7962414450c76c1689c7b48f8202ec37fb224cf5ac0bfa1570328a8a3d7c77ab","100b610ec4ffb4760d5c1fc133ef6f6b12507a051f04ac5760afa5b29db83437"],["3514087834964b54b15b160644d915485a16977225b8847bb0dd085137ec47ca","ef0afbb2056205448e1652c48e8127fc6039e77c15c2378b7e7d15a0de293311"],["d3cc30ad6b483e4bc79ce2c9dd8bc54993e947eb8df787b442943d3f7b527eaf","8b378a22d827278d89c5e9be8f9508ae3c2ad46290358630afb34db04eede0a4"],["1624d84780732860ce1c78fcbfefe08b2b29823db913f6493975ba0ff4847610","68651cf9b6da903e0914448c6cd9d4ca896878f5282be4c8cc06e2a404078575"],["733ce80da955a8a26902c95633e62a985192474b5af207da6df7b4fd5fc61cd4","f5435a2bd2badf7d485a4d8b8db9fcce3e1ef8e0201e4578c54673bc1dc5ea1d"],["15d9441254945064cf1a1c33bbd3b49f8966c5092171e699ef258dfab81c045c","d56eb30b69463e7234f5137b73b84177434800bacebfc685fc37bbe9efe4070d"],["a1d0fcf2ec9de675b612136e5ce70d271c21417c9d2b8aaaac138599d0717940","edd77f50bcb5a3cab2e90737309667f2641462a54070f3d519212d39c197a629"],["e22fbe15c0af8ccc5780c0735f84dbe9a790badee8245c06c7ca37331cb36980","a855babad5cd60c88b430a69f53a1a7a38289154964799be43d06d77d31da06"],["311091dd9860e8e20ee13473c1155f5f69635e394704eaa74009452246cfa9b3","66db656f87d1f04fffd1f04788c06830871ec5a64feee685bd80f0b1286d8374"],["34c1fd04d301be89b31c0442d3e6ac24883928b45a9340781867d4232ec2dbdf","9414685e97b1b5954bd46f730174136d57f1ceeb487443dc5321857ba73abee"],["f219ea5d6b54701c1c14de5b557eb42a8d13f3abbcd08affcc2a5e6b049b8d63","4cb95957e83d40b0f73af4544cccf6b1f4b08d3c07b27fb8d8c2962a400766d1"],["d7b8740f74a8fbaab1f683db8f45de26543a5490bca627087236912469a0b448","fa77968128d9c92ee1010f337ad4717eff15db5ed3c049b3411e0315eaa4593b"],["32d31c222f8f6f0ef86f7c98d3a3335ead5bcd32abdd94289fe4d3091aa824bf","5f3032f5892156e39ccd3d7915b9e1da2e6dac9e6f26e961118d14b8462e1661"],["7461f371914ab32671045a155d9831ea8793d77cd59592c4340f86cbc18347b5","8ec0ba238b96bec0cbdddcae0aa442542eee1ff50c986ea6b39847b3cc092ff6"],["ee079adb1df1860074356a25aa38206a6d716b2c3e67453d287698bad7b2b2d6","8dc2412aafe3be5c4c5f37e0ecc5f9f6a446989af04c4e25ebaac479ec1c8c1e"],["16ec93e447ec83f0467b18302ee620f7e65de331874c9dc72bfd8616ba9da6b5","5e4631150e62fb40d0e8c2a7ca5804a39d58186a50e497139626778e25b0674d"],["eaa5f980c245f6f038978290afa70b6bd8855897f98b6aa485b96065d537bd99","f65f5d3e292c2e0819a528391c994624d784869d7e6ea67fb18041024edc07dc"],["78c9407544ac132692ee1910a02439958ae04877151342ea96c4b6b35a49f51","f3e0319169eb9b85d5404795539a5e68fa1fbd583c064d2462b675f194a3ddb4"],["494f4be219a1a77016dcd838431aea0001cdc8ae7a6fc688726578d9702857a5","42242a969283a5f339ba7f075e36ba2af925ce30d767ed6e55f4b031880d562c"],["a598a8030da6d86c6bc7f2f5144ea549d28211ea58faa70ebf4c1e665c1fe9b5","204b5d6f84822c307e4b4a7140737aec23fc63b65b35f86a10026dbd2d864e6b"],["c41916365abb2b5d09192f5f2dbeafec208f020f12570a184dbadc3e58595997","4f14351d0087efa49d245b328984989d5caf9450f34bfc0ed16e96b58fa9913"],["841d6063a586fa475a724604da03bc5b92a2e0d2e0a36acfe4c73a5514742881","73867f59c0659e81904f9a1c7543698e62562d6744c169ce7a36de01a8d6154"],["5e95bb399a6971d376026947f89bde2f282b33810928be4ded112ac4d70e20d5","39f23f366809085beebfc71181313775a99c9aed7d8ba38b161384c746012865"],["36e4641a53948fd476c39f8a99fd974e5ec07564b5315d8bf99471bca0ef2f66","d2424b1b1abe4eb8164227b085c9aa9456ea13493fd563e06fd51cf5694c78fc"],["336581ea7bfbbb290c191a2f507a41cf5643842170e914faeab27c2c579f726","ead12168595fe1be99252129b6e56b3391f7ab1410cd1e0ef3dcdcabd2fda224"],["8ab89816dadfd6b6a1f2634fcf00ec8403781025ed6890c4849742706bd43ede","6fdcef09f2f6d0a044e654aef624136f503d459c3e89845858a47a9129cdd24e"],["1e33f1a746c9c5778133344d9299fcaa20b0938e8acff2544bb40284b8c5fb94","60660257dd11b3aa9c8ed618d24edff2306d320f1d03010e33a7d2057f3b3b6"],["85b7c1dcb3cec1b7ee7f30ded79dd20a0ed1f4cc18cbcfcfa410361fd8f08f31","3d98a9cdd026dd43f39048f25a8847f4fcafad1895d7a633c6fed3c35e999511"],["29df9fbd8d9e46509275f4b125d6d45d7fbe9a3b878a7af872a2800661ac5f51","b4c4fe99c775a606e2d8862179139ffda61dc861c019e55cd2876eb2a27d84b"],["a0b1cae06b0a847a3fea6e671aaf8adfdfe58ca2f768105c8082b2e449fce252","ae434102edde0958ec4b19d917a6a28e6b72da1834aff0e650f049503a296cf2"],["4e8ceafb9b3e9a136dc7ff67e840295b499dfb3b2133e4ba113f2e4c0e121e5","cf2174118c8b6d7a4b48f6d534ce5c79422c086a63460502b827ce62a326683c"],["d24a44e047e19b6f5afb81c7ca2f69080a5076689a010919f42725c2b789a33b","6fb8d5591b466f8fc63db50f1c0f1c69013f996887b8244d2cdec417afea8fa3"],["ea01606a7a6c9cdd249fdfcfacb99584001edd28abbab77b5104e98e8e3b35d4","322af4908c7312b0cfbfe369f7a7b3cdb7d4494bc2823700cfd652188a3ea98d"],["af8addbf2b661c8a6c6328655eb96651252007d8c5ea31be4ad196de8ce2131f","6749e67c029b85f52a034eafd096836b2520818680e26ac8f3dfbcdb71749700"],["e3ae1974566ca06cc516d47e0fb165a674a3dabcfca15e722f0e3450f45889","2aeabe7e4531510116217f07bf4d07300de97e4874f81f533420a72eeb0bd6a4"],["591ee355313d99721cf6993ffed1e3e301993ff3ed258802075ea8ced397e246","b0ea558a113c30bea60fc4775460c7901ff0b053d25ca2bdeee98f1a4be5d196"],["11396d55fda54c49f19aa97318d8da61fa8584e47b084945077cf03255b52984","998c74a8cd45ac01289d5833a7beb4744ff536b01b257be4c5767bea93ea57a4"],["3c5d2a1ba39c5a1790000738c9e0c40b8dcdfd5468754b6405540157e017aa7a","b2284279995a34e2f9d4de7396fc18b80f9b8b9fdd270f6661f79ca4c81bd257"],["cc8704b8a60a0defa3a99a7299f2e9c3fbc395afb04ac078425ef8a1793cc030","bdd46039feed17881d1e0862db347f8cf395b74fc4bcdc4e940b74e3ac1f1b13"],["c533e4f7ea8555aacd9777ac5cad29b97dd4defccc53ee7ea204119b2889b197","6f0a256bc5efdf429a2fb6242f1a43a2d9b925bb4a4b3a26bb8e0f45eb596096"],["c14f8f2ccb27d6f109f6d08d03cc96a69ba8c34eec07bbcf566d48e33da6593","c359d6923bb398f7fd4473e16fe1c28475b740dd098075e6c0e8649113dc3a38"],["a6cbc3046bc6a450bac24789fa17115a4c9739ed75f8f21ce441f72e0b90e6ef","21ae7f4680e889bb130619e2c0f95a360ceb573c70603139862afd617fa9b9f"],["347d6d9a02c48927ebfb86c1359b1caf130a3c0267d11ce6344b39f99d43cc38","60ea7f61a353524d1c987f6ecec92f086d565ab687870cb12689ff1e31c74448"],["da6545d2181db8d983f7dcb375ef5866d47c67b1bf31c8cf855ef7437b72656a","49b96715ab6878a79e78f07ce5680c5d6673051b4935bd897fea824b77dc208a"],["c40747cc9d012cb1a13b8148309c6de7ec25d6945d657146b9d5994b8feb1111","5ca560753be2a12fc6de6caf2cb489565db936156b9514e1bb5e83037e0fa2d4"],["4e42c8ec82c99798ccf3a610be870e78338c7f713348bd34c8203ef4037f3502","7571d74ee5e0fb92a7a8b33a07783341a5492144cc54bcc40a94473693606437"],["3775ab7089bc6af823aba2e1af70b236d251cadb0c86743287522a1b3b0dedea","be52d107bcfa09d8bcb9736a828cfa7fac8db17bf7a76a2c42ad961409018cf7"],["cee31cbf7e34ec379d94fb814d3d775ad954595d1314ba8846959e3e82f74e26","8fd64a14c06b589c26b947ae2bcf6bfa0149ef0be14ed4d80f448a01c43b1c6d"],["b4f9eaea09b6917619f6ea6a4eb5464efddb58fd45b1ebefcdc1a01d08b47986","39e5c9925b5a54b07433a4f18c61726f8bb131c012ca542eb24a8ac07200682a"],["d4263dfc3d2df923a0179a48966d30ce84e2515afc3dccc1b77907792ebcc60e","62dfaf07a0f78feb30e30d6295853ce189e127760ad6cf7fae164e122a208d54"],["48457524820fa65a4f8d35eb6930857c0032acc0a4a2de422233eeda897612c4","25a748ab367979d98733c38a1fa1c2e7dc6cc07db2d60a9ae7a76aaa49bd0f77"],["dfeeef1881101f2cb11644f3a2afdfc2045e19919152923f367a1767c11cceda","ecfb7056cf1de042f9420bab396793c0c390bde74b4bbdff16a83ae09a9a7517"],["6d7ef6b17543f8373c573f44e1f389835d89bcbc6062ced36c82df83b8fae859","cd450ec335438986dfefa10c57fea9bcc521a0959b2d80bbf74b190dca712d10"],["e75605d59102a5a2684500d3b991f2e3f3c88b93225547035af25af66e04541f","f5c54754a8f71ee540b9b48728473e314f729ac5308b06938360990e2bfad125"],["eb98660f4c4dfaa06a2be453d5020bc99a0c2e60abe388457dd43fefb1ed620c","6cb9a8876d9cb8520609af3add26cd20a0a7cd8a9411131ce85f44100099223e"],["13e87b027d8514d35939f2e6892b19922154596941888336dc3563e3b8dba942","fef5a3c68059a6dec5d624114bf1e91aac2b9da568d6abeb2570d55646b8adf1"],["ee163026e9fd6fe017c38f06a5be6fc125424b371ce2708e7bf4491691e5764a","1acb250f255dd61c43d94ccc670d0f58f49ae3fa15b96623e5430da0ad6c62b2"],["b268f5ef9ad51e4d78de3a750c2dc89b1e626d43505867999932e5db33af3d80","5f310d4b3c99b9ebb19f77d41c1dee018cf0d34fd4191614003e945a1216e423"],["ff07f3118a9df035e9fad85eb6c7bfe42b02f01ca99ceea3bf7ffdba93c4750d","438136d603e858a3a5c440c38eccbaddc1d2942114e2eddd4740d098ced1f0d8"],["8d8b9855c7c052a34146fd20ffb658bea4b9f69e0d825ebec16e8c3ce2b526a1","cdb559eedc2d79f926baf44fb84ea4d44bcf50fee51d7ceb30e2e7f463036758"],["52db0b5384dfbf05bfa9d472d7ae26dfe4b851ceca91b1eba54263180da32b63","c3b997d050ee5d423ebaf66a6db9f57b3180c902875679de924b69d84a7b375"],["e62f9490d3d51da6395efd24e80919cc7d0f29c3f3fa48c6fff543becbd43352","6d89ad7ba4876b0b22c2ca280c682862f342c8591f1daf5170e07bfd9ccafa7d"],["7f30ea2476b399b4957509c88f77d0191afa2ff5cb7b14fd6d8e7d65aaab1193","ca5ef7d4b231c94c3b15389a5f6311e9daff7bb67b103e9880ef4bff637acaec"],["5098ff1e1d9f14fb46a210fada6c903fef0fb7b4a1dd1d9ac60a0361800b7a00","9731141d81fc8f8084d37c6e7542006b3ee1b40d60dfe5362a5b132fd17ddc0"],["32b78c7de9ee512a72895be6b9cbefa6e2f3c4ccce445c96b9f2c81e2778ad58","ee1849f513df71e32efc3896ee28260c73bb80547ae2275ba497237794c8753c"],["e2cb74fddc8e9fbcd076eef2a7c72b0ce37d50f08269dfc074b581550547a4f7","d3aa2ed71c9dd2247a62df062736eb0baddea9e36122d2be8641abcb005cc4a4"],["8438447566d4d7bedadc299496ab357426009a35f235cb141be0d99cd10ae3a8","c4e1020916980a4da5d01ac5e6ad330734ef0d7906631c4f2390426b2edd791f"],["4162d488b89402039b584c6fc6c308870587d9c46f660b878ab65c82c711d67e","67163e903236289f776f22c25fb8a3afc1732f2b84b4e95dbda47ae5a0852649"],["3fad3fa84caf0f34f0f89bfd2dcf54fc175d767aec3e50684f3ba4a4bf5f683d","cd1bc7cb6cc407bb2f0ca647c718a730cf71872e7d0d2a53fa20efcdfe61826"],["674f2600a3007a00568c1a7ce05d0816c1fb84bf1370798f1c69532faeb1a86b","299d21f9413f33b3edf43b257004580b70db57da0b182259e09eecc69e0d38a5"],["d32f4da54ade74abb81b815ad1fb3b263d82d6c692714bcff87d29bd5ee9f08f","f9429e738b8e53b968e99016c059707782e14f4535359d582fc416910b3eea87"],["30e4e670435385556e593657135845d36fbb6931f72b08cb1ed954f1e3ce3ff6","462f9bce619898638499350113bbc9b10a878d35da70740dc695a559eb88db7b"],["be2062003c51cc3004682904330e4dee7f3dcd10b01e580bf1971b04d4cad297","62188bc49d61e5428573d48a74e1c655b1c61090905682a0d5558ed72dccb9bc"],["93144423ace3451ed29e0fb9ac2af211cb6e84a601df5993c419859fff5df04a","7c10dfb164c3425f5c71a3f9d7992038f1065224f72bb9d1d902a6d13037b47c"],["b015f8044f5fcbdcf21ca26d6c34fb8197829205c7b7d2a7cb66418c157b112c","ab8c1e086d04e813744a655b2df8d5f83b3cdc6faa3088c1d3aea1454e3a1d5f"],["d5e9e1da649d97d89e4868117a465a3a4f8a18de57a140d36b3f2af341a21b52","4cb04437f391ed73111a13cc1d4dd0db1693465c2240480d8955e8592f27447a"],["d3ae41047dd7ca065dbf8ed77b992439983005cd72e16d6f996a5316d36966bb","bd1aeb21ad22ebb22a10f0303417c6d964f8cdd7df0aca614b10dc14d125ac46"],["463e2763d885f958fc66cdd22800f0a487197d0a82e377b49f80af87c897b065","bfefacdb0e5d0fd7df3a311a94de062b26b80c61fbc97508b79992671ef7ca7f"],["7985fdfd127c0567c6f53ec1bb63ec3158e597c40bfe747c83cddfc910641917","603c12daf3d9862ef2b25fe1de289aed24ed291e0ec6708703a5bd567f32ed03"],["74a1ad6b5f76e39db2dd249410eac7f99e74c59cb83d2d0ed5ff1543da7703e9","cc6157ef18c9c63cd6193d83631bbea0093e0968942e8c33d5737fd790e0db08"],["30682a50703375f602d416664ba19b7fc9bab42c72747463a71d0896b22f6da3","553e04f6b018b4fa6c8f39e7f311d3176290d0e0f19ca73f17714d9977a22ff8"],["9e2158f0d7c0d5f26c3791efefa79597654e7a2b2464f52b1ee6c1347769ef57","712fcdd1b9053f09003a3481fa7762e9ffd7c8ef35a38509e2fbf2629008373"],["176e26989a43c9cfeba4029c202538c28172e566e3c4fce7322857f3be327d66","ed8cc9d04b29eb877d270b4878dc43c19aefd31f4eee09ee7b47834c1fa4b1c3"],["75d46efea3771e6e68abb89a13ad747ecf1892393dfc4f1b7004788c50374da8","9852390a99507679fd0b86fd2b39a868d7efc22151346e1a3ca4726586a6bed8"],["809a20c67d64900ffb698c4c825f6d5f2310fb0451c869345b7319f645605721","9e994980d9917e22b76b061927fa04143d096ccc54963e6a5ebfa5f3f8e286c1"],["1b38903a43f7f114ed4500b4eac7083fdefece1cf29c63528d563446f972c180","4036edc931a60ae889353f77fd53de4a2708b26b6f5da72ad3394119daf408f9"]]}}},51534:(Ae,ee,l)=>{"use strict";l.d(ee,{u:()=>oe});var i=l(29330),t=l(21413),p=l(84412),S=l(7673),c=l(18810),e=l(99437),T=l(61594),g=l(96354),d=l(31397),w=l(56977),m=l(53993),P=l(4416),M=l(12462),j=l(11771),U=l(190),K=l(63536),q=l(59584),G=l(2615),Q=l(59640),$=l(98570),ae=l(95416),ue=l(72200);let oe=(()=>{var he;class me{constructor(D,n,o,f,h){this.httpClient=D,this.store=n,this.logger=o,this.snackBar=f,this.titleCasePipe=h,this.APIUrl=P.H$,this.lnImplementation="",this.lnImplementationUpdated=new p.t(null),this.unSubs=[new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B],this.mapAliases=(b,A)=>(b&&b.length>0?b.forEach((k,x)=>{if(A&&A.length>0)for(let r=0;r{let f=this.APIUrl+"/"+o+P.rl.PAYMENTS_API+"/decode/"+D,h="GET",b=null;return"cln"===o&&(f=this.APIUrl+"/"+o+P.rl.UTILITY_API+"/decode",b={string:D},h="POST"),this.store.dispatch((0,j.mt)({payload:P.MZ.DECODE_PAYMENT})),this.httpClient.request(h,f,{body:JSON.stringify(b),headers:{"Content-Type":"application/json"}}).pipe((0,w.Q)(this.unSubs[0]),(0,g.T)(A=>(this.store.dispatch((0,j.y0)({payload:P.MZ.DECODE_PAYMENT})),A)),(0,e.W)(A=>(n?this.handleErrorWithoutAlert("Decode Payment",P.MZ.DECODE_PAYMENT,A):this.handleErrorWithAlert("decodePaymentData",P.MZ.DECODE_PAYMENT,"Decode Payment Failed",f,A),(0,c.$)(()=>new Error(this.extractErrorMessage(A))))))}))}decodePayments(D){return this.lnImplementationUpdated.pipe((0,T.$)(),(0,d.Z)(n=>{let o="",f="",h=null;return"ecl"===n?(o=this.APIUrl+"/"+n+P.rl.PAYMENTS_API+"/getsentinfos",h={payments:D},f=P.MZ.GET_SENT_PAYMENTS):"cln"===n?(o=this.APIUrl+"/"+n+P.rl.UTILITY_API+"/decode",h={string:D},f=P.MZ.DECODE_PAYMENTS):(o=this.APIUrl+"/"+n+P.rl.PAYMENTS_API,h={payments:D},f=P.MZ.DECODE_PAYMENTS),this.store.dispatch((0,j.mt)({payload:f})),this.httpClient.post(o,h).pipe((0,w.Q)(this.unSubs[1]),(0,g.T)(b=>(this.store.dispatch((0,j.y0)({payload:f})),b)),(0,e.W)(b=>(this.handleErrorWithAlert("decodePaymentsData",f,f+" Failed",o,b),(0,c.$)(()=>new Error(this.extractErrorMessage(b))))))}))}getAliasesFromPubkeys(D,n){return this.lnImplementationUpdated.pipe((0,T.$)(),(0,d.Z)(o=>{if(n){const f=(new i.Nl).set("pubkeys",D);return this.httpClient.get(this.APIUrl+"/"+o+P.rl.NETWORK_API+"/nodes",{params:f})}return this.httpClient.get(this.APIUrl+"/"+o+P.rl.NETWORK_API+"/node/"+D)}))}signMessage(D){return this.lnImplementationUpdated.pipe((0,T.$)(),(0,d.Z)(n=>{let o=this.APIUrl+"/"+n+P.rl.MESSAGE_API+"/sign";return"cln"===n&&(o=this.APIUrl+"/"+n+P.rl.UTILITY_API+"/sign"),this.store.dispatch((0,j.mt)({payload:P.MZ.SIGN_MESSAGE})),this.httpClient.post(o,{message:D}).pipe((0,w.Q)(this.unSubs[2]),(0,g.T)(f=>(this.store.dispatch((0,j.y0)({payload:P.MZ.SIGN_MESSAGE})),f)),(0,e.W)(f=>(this.handleErrorWithAlert("signMessageData",P.MZ.SIGN_MESSAGE,"Sign Message Failed",o,f),(0,c.$)(()=>new Error(this.extractErrorMessage(f))))))}))}verifyMessage(D,n){return this.lnImplementationUpdated.pipe((0,T.$)(),(0,d.Z)(o=>{let f="",h=null;return"cln"===o?(f=this.APIUrl+"/"+o+P.rl.UTILITY_API+"/verify",h={message:D,zbase:n}):(f=this.APIUrl+"/"+o+P.rl.MESSAGE_API+"/verify",h={message:D,signature:n}),this.store.dispatch((0,j.mt)({payload:P.MZ.VERIFY_MESSAGE})),this.httpClient.post(f,h).pipe((0,w.Q)(this.unSubs[3]),(0,g.T)(b=>(this.store.dispatch((0,j.y0)({payload:P.MZ.VERIFY_MESSAGE})),b)),(0,e.W)(b=>(this.handleErrorWithAlert("verifyMessageData",P.MZ.VERIFY_MESSAGE,"Verify Message Failed",f,b),(0,c.$)(()=>new Error(this.extractErrorMessage(b))))))}))}bumpFee(D,n,o,f){return this.lnImplementationUpdated.pipe((0,T.$)(),(0,d.Z)(h=>{const b={txid:D,outputIndex:n};return o&&(b.targetConf=o),f&&(b.satPerByte=f),this.store.dispatch((0,j.mt)({payload:P.MZ.BUMP_FEE})),this.httpClient.post(this.APIUrl+"/"+h+P.rl.WALLET_API+"/bumpfee",b).pipe((0,w.Q)(this.unSubs[4]),(0,g.T)(A=>(this.store.dispatch((0,j.y0)({payload:P.MZ.BUMP_FEE})),this.snackBar.open("Successfully bumped the fee. Use the block explorer to verify transaction."),A)),(0,e.W)(A=>(this.handleErrorWithoutAlert("Bump Fee",P.MZ.BUMP_FEE,A),(0,c.$)(()=>new Error(this.extractErrorMessage(A))))))}))}labelUTXO(D,n,o=!0){return this.lnImplementationUpdated.pipe((0,T.$)(),(0,d.Z)(f=>{const h={txid:D,label:n,overwrite:o};return this.store.dispatch((0,j.mt)({payload:P.MZ.LABEL_UTXO})),this.httpClient.post(this.APIUrl+"/"+f+P.rl.WALLET_API+"/label",h).pipe((0,w.Q)(this.unSubs[5]),(0,g.T)(b=>(this.store.dispatch((0,j.y0)({payload:P.MZ.LABEL_UTXO})),b)),(0,e.W)(b=>(this.handleErrorWithoutAlert("Label UTXO",P.MZ.LABEL_UTXO,b),(0,c.$)(()=>new Error(this.extractErrorMessage(b))))))}))}leaseUTXO(D,n){return this.lnImplementationUpdated.pipe((0,T.$)(),(0,d.Z)(o=>{const f={txid:D,outputIndex:n};return this.store.dispatch((0,j.mt)({payload:P.MZ.LEASE_UTXO})),this.httpClient.post(this.APIUrl+"/"+o+P.rl.WALLET_API+"/lease",f).pipe((0,w.Q)(this.unSubs[6]),(0,g.T)(h=>{this.store.dispatch((0,j.y0)({payload:P.MZ.LEASE_UTXO})),this.store.dispatch((0,U.mh)()),this.store.dispatch((0,U.SM)());const b=new Date(1e3*h.expiration);return Math.round(b.getTime())-60*b.getTimezoneOffset()}),(0,e.W)(h=>(this.handleErrorWithoutAlert("Lease UTXO",P.MZ.LEASE_UTXO,h),(0,c.$)(()=>new Error(this.extractErrorMessage(h))))))}))}getForwardingHistory(D,n,o,f){if("LND"===D){const h={end_time:o,start_time:n};return this.store.dispatch((0,j.mt)({payload:P.MZ.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/lnd"+P.rl.SWITCH_API,h).pipe((0,w.Q)(this.unSubs[7]),(0,m.E)(this.store.select(K.eO)),(0,d.Z)(([b,A])=>{if(b.forwarding_events){const k=[...A.channels,...A.closedChannels];b.forwarding_events.forEach(x=>{if(k&&k.length>0)for(let r=0;r(this.handleErrorWithAlert("getForwardingHistoryData",P.MZ.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/lnd"+P.rl.SWITCH_API,b),(0,c.$)(()=>new Error(this.extractErrorMessage(b))))))}return"CLN"===D?(this.store.dispatch((0,j.mt)({payload:P.MZ.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/cln"+P.rl.CHANNELS_API+"/listForwards",{status:f||"settled"}).pipe((0,w.Q)(this.unSubs[8]),(0,m.E)(this.store.select(q.BM)),(0,d.Z)(([h,b])=>{const A=this.mapAliases(h,[...b.activeChannels,...b.pendingChannels,...b.inactiveChannels]);return this.store.dispatch((0,j.y0)({payload:P.MZ.GET_FORWARDING_HISTORY})),(0,S.of)(A)}),(0,e.W)(h=>(this.handleErrorWithAlert("getForwardingHistoryData",P.MZ.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/cln"+P.rl.CHANNELS_API+"/listForwards",h),(0,c.$)(()=>new Error(this.extractErrorMessage(h))))))):(0,S.of)({})}listNetworkNodes(D){return this.lnImplementationUpdated.pipe((0,T.$)(),(0,d.Z)(n=>(this.store.dispatch((0,j.mt)({payload:P.MZ.LIST_NETWORK_NODES})),this.httpClient.post(this.APIUrl+"/"+n+P.rl.NETWORK_API+"/listNodes",D).pipe((0,w.Q)(this.unSubs[9]),(0,d.Z)(o=>(this.store.dispatch((0,j.y0)({payload:P.MZ.LIST_NETWORK_NODES})),(0,S.of)(o))),(0,e.W)(o=>(this.handleErrorWithoutAlert("List Network Nodes",P.MZ.LIST_NETWORK_NODES,o),(0,c.$)(()=>this.extractErrorMessage(o))))))))}listConfigs(){return this.lnImplementationUpdated.pipe((0,T.$)(),(0,d.Z)(D=>(this.store.dispatch((0,j.mt)({payload:P.MZ.GET_LIST_CONFIGS})),this.httpClient.get(this.APIUrl+"/"+D+P.rl.UTILITY_API+"/listConfigs").pipe((0,w.Q)(this.unSubs[10]),(0,d.Z)(n=>(this.store.dispatch((0,j.y0)({payload:P.MZ.GET_LIST_CONFIGS})),(0,S.of)(n))),(0,e.W)(n=>(this.handleErrorWithoutAlert("List Configurations",P.MZ.GET_LIST_CONFIGS,n),(0,c.$)(()=>this.extractErrorMessage(n))))))))}getOrUpdateFunderPolicy(D,n,o,f,h,b){return this.lnImplementationUpdated.pipe((0,T.$)(),(0,d.Z)(A=>{const k=D?{policy:D,policy_mod:n,lease_fee_base_msat:o,lease_fee_basis:f,channel_fee_max_base_msat:h,channel_fee_max_proportional_thousandths:b}:null;return this.store.dispatch((0,j.mt)({payload:P.MZ.GET_FUNDER_POLICY})),this.httpClient.post(this.APIUrl+"/"+A+P.rl.CHANNELS_API+"/funderUpdate",k).pipe((0,w.Q)(this.unSubs[11]),(0,g.T)(x=>(this.store.dispatch((0,j.y0)({payload:P.MZ.GET_FUNDER_POLICY})),k&&this.store.dispatch((0,j.UI)({payload:"Funder Policy Updated Successfully with Compact Lease: "+x.compact_lease+"!"})),x)),(0,e.W)(x=>(this.handleErrorWithoutAlert("Funder Policy",P.MZ.GET_FUNDER_POLICY,x),(0,c.$)(()=>new Error(this.extractErrorMessage(x))))))}))}circularRebalance(D,n="",o="",f="",h="",b=[],A="shortChannelId"){return this.httpClient.post(this.APIUrl+"/"+this.lnImplementation+P.rl.CHANNELS_API+"/circularRebalance",{amountMsat:D,sourceShortChannelId:n,sourceNodeId:o,targetShortChannelId:f,targetNodeId:h,ignoreNodeIds:b,format:A}).pipe((0,w.Q)(this.unSubs[12]),(0,g.T)(r=>r),(0,e.W)(r=>(this.handleErrorWithoutAlert("Rebalance Channel",P.MZ.REBALANCE_CHANNEL,r),(0,c.$)(()=>r.error))))}extractErrorMessage(D,n="Unknown Error."){return this.titleCasePipe.transform(D.error.text&&"string"==typeof D.error.text&&D.error.text.includes('')?"API Route Does Not Exist.":D.error&&D.error.error&&D.error.error.error&&D.error.error.error.error&&D.error.error.error.error.error&&"string"==typeof D.error.error.error.error.error?D.error.error.error.error.error:D.error&&D.error.error&&D.error.error.error&&D.error.error.error.error&&"string"==typeof D.error.error.error.error?D.error.error.error.error:D.error&&D.error.error&&D.error.error.error&&"string"==typeof D.error.error.error?D.error.error.error:D.error&&D.error.error&&"string"==typeof D.error.error?D.error.error:D.error&&"string"==typeof D.error?D.error:D.error&&D.error.error&&D.error.error.error&&D.error.error.error.error&&D.error.error.error.error.message&&"string"==typeof D.error.error.error.error.message?D.error.error.error.error.message:D.error&&D.error.error&&D.error.error.error&&D.error.error.error.message&&"string"==typeof D.error.error.error.message?D.error.error.error.message:D.error&&D.error.error&&D.error.error.message&&"string"==typeof D.error.error.message?D.error.error.message:D.error&&D.error.message&&"string"==typeof D.error.message?D.error.message:D.message&&"string"==typeof D.message?D.message:n)}handleErrorWithoutAlert(D,n,o){o.error.text&&"string"==typeof o.error.text&&o.error.text.includes('')&&(o={status:403,error:{message:"API Route Does Not Exist."}}),this.logger.error("ERROR IN: "+D+"\n"+JSON.stringify(o)),401===o.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,j.Jh)()),this.store.dispatch((0,j.ri)({payload:"Authentication Failed: "+JSON.stringify(o.error)}))):(this.store.dispatch((0,j.y0)({payload:n})),this.store.dispatch((0,j.Gd)({payload:{action:D,status:P.wn.ERROR,statusCode:o.status.toString(),message:this.extractErrorMessage(o)}})))}handleErrorWithAlert(D,n,o,f,h){if(this.logger.error(h),401===h.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,j.Jh)()),this.store.dispatch((0,j.ri)({payload:"Authentication Failed: "+JSON.stringify(h.error)}));else{this.store.dispatch((0,j.y0)({payload:n}));const b=this.extractErrorMessage(h);this.store.dispatch((0,j.xO)({payload:{data:{type:"ERROR",alertTitle:o,message:{code:h.status?h.status:"Unknown Error",message:b,URL:f},component:M.f}}})),this.store.dispatch((0,j.Gd)({payload:{action:D,status:P.wn.ERROR,statusCode:h.status.toString(),message:b,URL:f}}))}}ngOnDestroy(){this.unSubs.forEach(D=>{D.next(null),D.complete()})}static#e=he=()=>(this.\u0275fac=function(n){return new(n||me)(G.KVO(i.Qq),G.KVO(Q.il),G.KVO($.gP),G.KVO(ae.UG),G.KVO(ue.PV))},this.\u0275prov=G.jDH({token:me,factory:me.\u0275fac}))}return he(),me})()},51585:(Ae,ee,l)=>{"use strict";l.d(ee,{Vh:()=>ge,di:()=>ve,bZ:()=>Ee,tx:()=>dt,hM:()=>ct,CP:()=>Le});var i=l(73664),t=l(2615),p=l(17705),S=l(21413),c=l(59030),e=l(76939),T=l(17094),g=l(76838),d=l(39842),w=l(44522),m=l(10438),P=l(67336),M=l(99172),j=l(96697),U=l(49338),K=l(89726),q=l(61577);function G(Ce,ze){}class Q{viewContainerRef;injector;id;role="dialog";panelClass="";hasBackdrop=!0;backdropClass="";disableClose=!1;closePredicate;width="";height="";minWidth;minHeight;maxWidth;maxHeight;positionStrategy;data=null;direction;ariaDescribedBy=null;ariaLabelledBy=null;ariaLabel=null;ariaModal=!1;autoFocus="first-tabbable";restoreFocus=!0;scrollStrategy;closeOnNavigation=!0;closeOnDestroy=!0;closeOnOverlayDetachments=!0;disableAnimations=!1;providers;container;templateContext}let ae=(()=>{class Ce extends e.lb{_elementRef=(0,t.WQX)(i.aKT);_focusTrapFactory=(0,t.WQX)(T.GX);_config;_interactivityChecker=(0,t.WQX)(T.Z7);_ngZone=(0,t.WQX)(i.SKi);_focusMonitor=(0,t.WQX)(g.FN);_renderer=(0,t.WQX)(i.sFG);_changeDetectorRef=(0,t.WQX)(p.gRc);_injector=(0,t.WQX)(t.zZn);_platform=(0,t.WQX)(d.O);_document=(0,t.WQX)(t.qQL);_portalOutlet;_focusTrapped=new S.B;_focusTrap=null;_elementFocusedBeforeDialogWasOpened=null;_closeInteractionType=null;_ariaLabelledByQueue=[];_isDestroyed=!1;constructor(){super(),this._config=(0,t.WQX)(Q,{optional:!0})||new Q,this._config.ariaLabelledBy&&this._ariaLabelledByQueue.push(this._config.ariaLabelledBy)}_addAriaLabelledBy(Z){this._ariaLabelledByQueue.push(Z),this._changeDetectorRef.markForCheck()}_removeAriaLabelledBy(Z){const J=this._ariaLabelledByQueue.indexOf(Z);J>-1&&(this._ariaLabelledByQueue.splice(J,1),this._changeDetectorRef.markForCheck())}_contentAttached(){this._initializeFocusTrap(),this._captureInitialFocus()}_captureInitialFocus(){this._trapFocus()}ngOnDestroy(){this._focusTrapped.complete(),this._isDestroyed=!0,this._restoreFocus()}attachComponentPortal(Z){this._portalOutlet.hasAttached();const J=this._portalOutlet.attachComponentPortal(Z);return this._contentAttached(),J}attachTemplatePortal(Z){this._portalOutlet.hasAttached();const J=this._portalOutlet.attachTemplatePortal(Z);return this._contentAttached(),J}attachDomPortal=Z=>{this._portalOutlet.hasAttached();const J=this._portalOutlet.attachDomPortal(Z);return this._contentAttached(),J};_recaptureFocus(){this._containsFocus()||this._trapFocus()}_forceFocus(Z,J){this._interactivityChecker.isFocusable(Z)||(Z.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const fe=()=>{Ie(),ht(),Z.removeAttribute("tabindex")},Ie=this._renderer.listen(Z,"blur",fe),ht=this._renderer.listen(Z,"mousedown",fe)})),Z.focus(J)}_focusByCssSelector(Z,J){let fe=this._elementRef.nativeElement.querySelector(Z);fe&&this._forceFocus(fe,J)}_trapFocus(Z){this._isDestroyed||(0,i.mal)(()=>{const J=this._elementRef.nativeElement;switch(this._config.autoFocus){case!1:case"dialog":this._containsFocus()||J.focus(Z);break;case!0:case"first-tabbable":this._focusTrap?.focusInitialElement(Z)||this._focusDialogContainer(Z);break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]',Z);break;default:this._focusByCssSelector(this._config.autoFocus,Z)}this._focusTrapped.next()},{injector:this._injector})}_restoreFocus(){const Z=this._config.restoreFocus;let J=null;if("string"==typeof Z?J=this._document.querySelector(Z):"boolean"==typeof Z?J=Z?this._elementFocusedBeforeDialogWasOpened:null:Z&&(J=Z),this._config.restoreFocus&&J&&"function"==typeof J.focus){const fe=(0,w.vc)(),Ie=this._elementRef.nativeElement;(!fe||fe===this._document.body||fe===Ie||Ie.contains(fe))&&(this._focusMonitor?(this._focusMonitor.focusVia(J,this._closeInteractionType),this._closeInteractionType=null):J.focus())}this._focusTrap&&this._focusTrap.destroy()}_focusDialogContainer(Z){this._elementRef.nativeElement.focus?.(Z)}_containsFocus(){const Z=this._elementRef.nativeElement,J=(0,w.vc)();return Z===J||Z.contains(J)}_initializeFocusTrap(){this._platform.isBrowser&&(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._document&&(this._elementFocusedBeforeDialogWasOpened=(0,w.vc)()))}static \u0275fac=function(J){return new(J||Ce)};static \u0275cmp=i.VBU({type:Ce,selectors:[["cdk-dialog-container"]],viewQuery:function(J,fe){if(1&J&&i.GBs(e.I3,7),2&J){let Ie;i.mGM(Ie=i.lsd())&&(fe._portalOutlet=Ie.first)}},hostAttrs:["tabindex","-1",1,"cdk-dialog-container"],hostVars:6,hostBindings:function(J,fe){2&J&&i.BMQ("id",fe._config.id||null)("role",fe._config.role)("aria-modal",fe._config.ariaModal)("aria-labelledby",fe._config.ariaLabel?null:fe._ariaLabelledByQueue[0])("aria-label",fe._config.ariaLabel)("aria-describedby",fe._config.ariaDescribedBy||null)},features:[i.Vt3],decls:1,vars:0,consts:[["cdkPortalOutlet",""]],template:function(J,fe){1&J&&i.DNE(0,G,0,0,"ng-template",0)},dependencies:[e.I3],styles:[".cdk-dialog-container{display:block;width:100%;height:100%;min-height:inherit;max-height:inherit}\n"],encapsulation:2})}return Ce})();class ue{overlayRef;config;componentInstance;componentRef;containerInstance;disableClose;closed=new S.B;backdropClick;keydownEvents;outsidePointerEvents;id;_detachSubscription;constructor(ze,Z){this.overlayRef=ze,this.config=Z,this.disableClose=Z.disableClose,this.backdropClick=ze.backdropClick(),this.keydownEvents=ze.keydownEvents(),this.outsidePointerEvents=ze.outsidePointerEvents(),this.id=Z.id,this.keydownEvents.subscribe(J=>{J.keyCode===m._f&&!this.disableClose&&!(0,P.rp)(J)&&(J.preventDefault(),this.close(void 0,{focusOrigin:"keyboard"}))}),this.backdropClick.subscribe(()=>{!this.disableClose&&this._canClose()?this.close(void 0,{focusOrigin:"mouse"}):this.containerInstance._recaptureFocus?.()}),this._detachSubscription=ze.detachments().subscribe(()=>{!1!==Z.closeOnOverlayDetachments&&this.close()})}close(ze,Z){if(this._canClose(ze)){const J=this.closed;this.containerInstance._closeInteractionType=Z?.focusOrigin||"program",this._detachSubscription.unsubscribe(),this.overlayRef.dispose(),J.next(ze),J.complete(),this.componentInstance=this.containerInstance=null}}updatePosition(){return this.overlayRef.updatePosition(),this}updateSize(ze="",Z=""){return this.overlayRef.updateSize({width:ze,height:Z}),this}addPanelClass(ze){return this.overlayRef.addPanelClass(ze),this}removePanelClass(ze){return this.overlayRef.removePanelClass(ze),this}_canClose(ze){const Z=this.config;return!!this.containerInstance&&(!Z.closePredicate||Z.closePredicate(ze,Z,this.componentInstance))}}const oe=new t.nKC("DialogScrollStrategy",{providedIn:"root",factory:()=>{const Ce=(0,t.WQX)(t.zZn);return()=>(0,U.gA)(Ce)}}),he=new t.nKC("DialogData"),me=new t.nKC("DefaultDialogConfig");function Te(Ce){const ze=(0,t.vPA)(Ce),Z=new i.bkB;return{valueSignal:ze,get value(){return ze()},change:Z,ngOnDestroy(){Z.complete()}}}let D=(()=>{class Ce{_injector=(0,t.WQX)(t.zZn);_defaultOptions=(0,t.WQX)(me,{optional:!0});_parentDialog=(0,t.WQX)(Ce,{optional:!0,skipSelf:!0});_overlayContainer=(0,t.WQX)(U.Sf);_idGenerator=(0,t.WQX)(K.g);_openDialogsAtThisLevel=[];_afterAllClosedAtThisLevel=new S.B;_afterOpenedAtThisLevel=new S.B;_ariaHiddenElements=new Map;_scrollStrategy=(0,t.WQX)(oe);get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}afterAllClosed=(0,c.v)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,M.Z)(void 0)));constructor(){}open(Z,J){(J={...this._defaultOptions||new Q,...J}).id=J.id||this._idGenerator.getId("cdk-dialog-"),J.id&&this.getDialogById(J.id);const Ie=this._getOverlayConfig(J),ht=(0,U.Y$)(this._injector,Ie),li=new ue(ht,J),Qt=this._attachContainer(ht,li,J);if(li.containerInstance=Qt,!this.openDialogs.length){const di=this._overlayContainer.getContainerElement();Qt._focusTrapped?Qt._focusTrapped.pipe((0,j.s)(1)).subscribe(()=>{this._hideNonDialogContentFromAssistiveTechnology(di)}):this._hideNonDialogContentFromAssistiveTechnology(di)}return this._attachDialogContent(Z,li,Qt,J),this.openDialogs.push(li),li.closed.subscribe(()=>this._removeOpenDialog(li,!0)),this.afterOpened.next(li),li}closeAll(){n(this.openDialogs,Z=>Z.close())}getDialogById(Z){return this.openDialogs.find(J=>J.id===Z)}ngOnDestroy(){n(this._openDialogsAtThisLevel,Z=>{!1===Z.config.closeOnDestroy&&this._removeOpenDialog(Z,!1)}),n(this._openDialogsAtThisLevel,Z=>Z.close()),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete(),this._openDialogsAtThisLevel=[]}_getOverlayConfig(Z){const J=new U.rR({positionStrategy:Z.positionStrategy||(0,U.uA)().centerHorizontally().centerVertically(),scrollStrategy:Z.scrollStrategy||this._scrollStrategy(),panelClass:Z.panelClass,hasBackdrop:Z.hasBackdrop,direction:Z.direction,minWidth:Z.minWidth,minHeight:Z.minHeight,maxWidth:Z.maxWidth,maxHeight:Z.maxHeight,width:Z.width,height:Z.height,disposeOnNavigation:Z.closeOnNavigation,disableAnimations:Z.disableAnimations});return Z.backdropClass&&(J.backdropClass=Z.backdropClass),J}_attachContainer(Z,J,fe){const Ie=fe.injector||fe.viewContainerRef?.injector,ht=[{provide:Q,useValue:fe},{provide:ue,useValue:J},{provide:U.yY,useValue:Z}];let li;fe.container?"function"==typeof fe.container?li=fe.container:(li=fe.container.type,ht.push(...fe.container.providers(fe))):li=ae;const Qt=new e.A8(li,fe.viewContainerRef,t.zZn.create({parent:Ie||this._injector,providers:ht}));return Z.attach(Qt).instance}_attachDialogContent(Z,J,fe,Ie){if(Z instanceof i.C4Q){const ht=this._createInjector(Ie,J,fe,void 0);let li={$implicit:Ie.data,dialogRef:J};Ie.templateContext&&(li={...li,..."function"==typeof Ie.templateContext?Ie.templateContext():Ie.templateContext}),fe.attachTemplatePortal(new e.VA(Z,null,li,ht))}else{const ht=this._createInjector(Ie,J,fe,this._injector),li=fe.attachComponentPortal(new e.A8(Z,Ie.viewContainerRef,ht));J.componentRef=li,J.componentInstance=li.instance}}_createInjector(Z,J,fe,Ie){const ht=Z.injector||Z.viewContainerRef?.injector,li=[{provide:he,useValue:Z.data},{provide:ue,useValue:J}];return Z.providers&&("function"==typeof Z.providers?li.push(...Z.providers(J,Z,fe)):li.push(...Z.providers)),Z.direction&&(!ht||!ht.get(q.dS,null,{optional:!0}))&&li.push({provide:q.dS,useValue:Te(Z.direction)}),t.zZn.create({parent:ht||Ie,providers:li})}_removeOpenDialog(Z,J){const fe=this.openDialogs.indexOf(Z);fe>-1&&(this.openDialogs.splice(fe,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((Ie,ht)=>{Ie?ht.setAttribute("aria-hidden",Ie):ht.removeAttribute("aria-hidden")}),this._ariaHiddenElements.clear(),J&&this._getAfterAllClosed().next()))}_hideNonDialogContentFromAssistiveTechnology(Z){if(Z.parentElement){const J=Z.parentElement.children;for(let fe=J.length-1;fe>-1;fe--){const Ie=J[fe];Ie!==Z&&"SCRIPT"!==Ie.nodeName&&"STYLE"!==Ie.nodeName&&!Ie.hasAttribute("aria-live")&&(this._ariaHiddenElements.set(Ie,Ie.getAttribute("aria-hidden")),Ie.setAttribute("aria-hidden","true"))}}}_getAfterAllClosed(){const Z=this._parentDialog;return Z?Z._getAfterAllClosed():this._afterAllClosedAtThisLevel}static \u0275fac=function(J){return new(J||Ce)};static \u0275prov=t.jDH({token:Ce,factory:Ce.\u0275fac,providedIn:"root"})}return Ce})();function n(Ce,ze){let Z=Ce.length;for(;Z--;)ze(Ce[Z])}let o=(()=>{class Ce{static \u0275fac=function(J){return new(J||Ce)};static \u0275mod=i.$C({type:Ce});static \u0275inj=t.G2t({providers:[D],imports:[U.z_,e.jc,T.Pd,e.jc]})}return Ce})();var f=l(67847),h=l(31804),b=l(57786),A=l(5964),x=(l(5718),l(22466));function r(Ce,ze){}class _{viewContainerRef;injector;id;role="dialog";panelClass="";hasBackdrop=!0;backdropClass="";disableClose=!1;closePredicate;width="";height="";minWidth;minHeight;maxWidth;maxHeight;position;data=null;direction;ariaDescribedBy=null;ariaLabelledBy=null;ariaLabel=null;ariaModal=!1;autoFocus="first-tabbable";restoreFocus=!0;delayFocusTrap=!0;scrollStrategy;closeOnNavigation=!0;enterAnimationDuration;exitAnimationDuration}const W="mdc-dialog--open",I="mdc-dialog--opening",B="mdc-dialog--closing";let be=(()=>{class Ce extends ae{_animationStateChanged=new i.bkB;_animationsEnabled=!(0,h.Rc)();_actionSectionCount=0;_hostElement=this._elementRef.nativeElement;_enterAnimationDuration=this._animationsEnabled?_e(this._config.enterAnimationDuration)??150:0;_exitAnimationDuration=this._animationsEnabled?_e(this._config.exitAnimationDuration)??75:0;_animationTimer=null;_contentAttached(){super._contentAttached(),this._startOpenAnimation()}_startOpenAnimation(){this._animationStateChanged.emit({state:"opening",totalTime:this._enterAnimationDuration}),this._animationsEnabled?(this._hostElement.style.setProperty(Be,`${this._enterAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(I,W)),this._waitForAnimationToComplete(this._enterAnimationDuration,this._finishDialogOpen)):(this._hostElement.classList.add(W),Promise.resolve().then(()=>this._finishDialogOpen()))}_startExitAnimation(){this._animationStateChanged.emit({state:"closing",totalTime:this._exitAnimationDuration}),this._hostElement.classList.remove(W),this._animationsEnabled?(this._hostElement.style.setProperty(Be,`${this._exitAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(B)),this._waitForAnimationToComplete(this._exitAnimationDuration,this._finishDialogClose)):Promise.resolve().then(()=>this._finishDialogClose())}_updateActionSectionCount(Z){this._actionSectionCount+=Z,this._changeDetectorRef.markForCheck()}_finishDialogOpen=()=>{this._clearAnimationClasses(),this._openAnimationDone(this._enterAnimationDuration)};_finishDialogClose=()=>{this._clearAnimationClasses(),this._animationStateChanged.emit({state:"closed",totalTime:this._exitAnimationDuration})};_clearAnimationClasses(){this._hostElement.classList.remove(I,B)}_waitForAnimationToComplete(Z,J){null!==this._animationTimer&&clearTimeout(this._animationTimer),this._animationTimer=setTimeout(J,Z)}_requestAnimationFrame(Z){this._ngZone.runOutsideAngular(()=>{"function"==typeof requestAnimationFrame?requestAnimationFrame(Z):Z()})}_captureInitialFocus(){this._config.delayFocusTrap||this._trapFocus()}_openAnimationDone(Z){this._config.delayFocusTrap&&this._trapFocus(),this._animationStateChanged.next({state:"opened",totalTime:Z})}ngOnDestroy(){super.ngOnDestroy(),null!==this._animationTimer&&clearTimeout(this._animationTimer)}attachComponentPortal(Z){const J=super.attachComponentPortal(Z);return J.location.nativeElement.classList.add("mat-mdc-dialog-component-host"),J}static \u0275fac=(()=>{let Z;return function(fe){return(Z||(Z=i.xGo(Ce)))(fe||Ce)}})();static \u0275cmp=i.VBU({type:Ce,selectors:[["mat-dialog-container"]],hostAttrs:["tabindex","-1",1,"mat-mdc-dialog-container","mdc-dialog"],hostVars:10,hostBindings:function(J,fe){2&J&&(i.Avn("id",fe._config.id),i.BMQ("aria-modal",fe._config.ariaModal)("role",fe._config.role)("aria-labelledby",fe._config.ariaLabel?null:fe._ariaLabelledByQueue[0])("aria-label",fe._config.ariaLabel)("aria-describedby",fe._config.ariaDescribedBy||null),i.AVh("_mat-animation-noopable",!fe._animationsEnabled)("mat-mdc-dialog-container-with-actions",fe._actionSectionCount>0))},features:[i.Vt3],decls:3,vars:0,consts:[[1,"mat-mdc-dialog-inner-container","mdc-dialog__container"],[1,"mat-mdc-dialog-surface","mdc-dialog__surface"],["cdkPortalOutlet",""]],template:function(J,fe){1&J&&(i.j41(0,"div",0)(1,"div",1),i.DNE(2,r,0,0,"ng-template",2),i.k0s()())},dependencies:[e.I3],styles:['.mat-mdc-dialog-container{width:100%;height:100%;display:block;box-sizing:border-box;max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit;outline:0}.cdk-overlay-pane.mat-mdc-dialog-panel{max-width:var(--mat-dialog-container-max-width, 560px);min-width:var(--mat-dialog-container-min-width, 280px)}@media(max-width: 599px){.cdk-overlay-pane.mat-mdc-dialog-panel{max-width:var(--mat-dialog-container-small-max-width, calc(100vw - 32px))}}.mat-mdc-dialog-inner-container{display:flex;flex-direction:row;align-items:center;justify-content:space-around;box-sizing:border-box;height:100%;opacity:0;transition:opacity linear var(--mat-dialog-transition-duration, 0ms);max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit}.mdc-dialog--closing .mat-mdc-dialog-inner-container{transition:opacity 75ms linear;transform:none}.mdc-dialog--open .mat-mdc-dialog-inner-container{opacity:1}._mat-animation-noopable .mat-mdc-dialog-inner-container{transition:none}.mat-mdc-dialog-surface{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;box-sizing:border-box;width:100%;height:100%;position:relative;overflow-y:auto;outline:0;transform:scale(0.8);transition:transform var(--mat-dialog-transition-duration, 0ms) cubic-bezier(0, 0, 0.2, 1);max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit;box-shadow:var(--mat-dialog-container-elevation-shadow, none);border-radius:var(--mat-dialog-container-shape, var(--mat-sys-corner-extra-large, 4px));background-color:var(--mat-dialog-container-color, var(--mat-sys-surface, white))}[dir=rtl] .mat-mdc-dialog-surface{text-align:right}.mdc-dialog--open .mat-mdc-dialog-surface,.mdc-dialog--closing .mat-mdc-dialog-surface{transform:none}._mat-animation-noopable .mat-mdc-dialog-surface{transition:none}.mat-mdc-dialog-surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:2px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}.mat-mdc-dialog-title{display:block;position:relative;flex-shrink:0;box-sizing:border-box;margin:0 0 1px;padding:var(--mat-dialog-headline-padding, 6px 24px 13px)}.mat-mdc-dialog-title::before{display:inline-block;width:0;height:40px;content:"";vertical-align:0}[dir=rtl] .mat-mdc-dialog-title{text-align:right}.mat-mdc-dialog-container .mat-mdc-dialog-title{color:var(--mat-dialog-subhead-color, var(--mat-sys-on-surface, rgba(0, 0, 0, 0.87)));font-family:var(--mat-dialog-subhead-font, var(--mat-sys-headline-small-font, inherit));line-height:var(--mat-dialog-subhead-line-height, var(--mat-sys-headline-small-line-height, 1.5rem));font-size:var(--mat-dialog-subhead-size, var(--mat-sys-headline-small-size, 1rem));font-weight:var(--mat-dialog-subhead-weight, var(--mat-sys-headline-small-weight, 400));letter-spacing:var(--mat-dialog-subhead-tracking, var(--mat-sys-headline-small-tracking, 0.03125em))}.mat-mdc-dialog-content{display:block;flex-grow:1;box-sizing:border-box;margin:0;overflow:auto;max-height:65vh}.mat-mdc-dialog-content>:first-child{margin-top:0}.mat-mdc-dialog-content>:last-child{margin-bottom:0}.mat-mdc-dialog-container .mat-mdc-dialog-content{color:var(--mat-dialog-supporting-text-color, var(--mat-sys-on-surface-variant, rgba(0, 0, 0, 0.6)));font-family:var(--mat-dialog-supporting-text-font, var(--mat-sys-body-medium-font, inherit));line-height:var(--mat-dialog-supporting-text-line-height, var(--mat-sys-body-medium-line-height, 1.5rem));font-size:var(--mat-dialog-supporting-text-size, var(--mat-sys-body-medium-size, 1rem));font-weight:var(--mat-dialog-supporting-text-weight, var(--mat-sys-body-medium-weight, 400));letter-spacing:var(--mat-dialog-supporting-text-tracking, var(--mat-sys-body-medium-tracking, 0.03125em))}.mat-mdc-dialog-container .mat-mdc-dialog-content{padding:var(--mat-dialog-content-padding, 20px 24px)}.mat-mdc-dialog-container-with-actions .mat-mdc-dialog-content{padding:var(--mat-dialog-with-actions-content-padding, 20px 24px 0)}.mat-mdc-dialog-container .mat-mdc-dialog-title+.mat-mdc-dialog-content{padding-top:0}.mat-mdc-dialog-actions{display:flex;position:relative;flex-shrink:0;flex-wrap:wrap;align-items:center;box-sizing:border-box;min-height:52px;margin:0;border-top:1px solid rgba(0,0,0,0);padding:var(--mat-dialog-actions-padding, 16px 24px);justify-content:var(--mat-dialog-actions-alignment, flex-end)}@media(forced-colors: active){.mat-mdc-dialog-actions{border-top-color:CanvasText}}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-start,.mat-mdc-dialog-actions[align=start]{justify-content:start}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-center,.mat-mdc-dialog-actions[align=center]{justify-content:center}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-end,.mat-mdc-dialog-actions[align=end]{justify-content:flex-end}.mat-mdc-dialog-actions .mat-button-base+.mat-button-base,.mat-mdc-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-mdc-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-mdc-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}.mat-mdc-dialog-component-host{display:contents}\n'],encapsulation:2})}return Ce})();const Be="--mat-dialog-transition-duration";function _e(Ce){return null==Ce?null:"number"==typeof Ce?Ce:Ce.endsWith("ms")?(0,f.OE)(Ce.substring(0,Ce.length-2)):Ce.endsWith("s")?1e3*(0,f.OE)(Ce.substring(0,Ce.length-1)):"0"===Ce?0:null}var ye=function(Ce){return Ce[Ce.OPEN=0]="OPEN",Ce[Ce.CLOSING=1]="CLOSING",Ce[Ce.CLOSED=2]="CLOSED",Ce}(ye||{});class Le{_ref;_config;_containerInstance;componentInstance;componentRef;disableClose;id;_afterOpened=new S.B;_beforeClosed=new S.B;_result;_closeFallbackTimeout;_state=ye.OPEN;_closeInteractionType;constructor(ze,Z,J){this._ref=ze,this._config=Z,this._containerInstance=J,this.disableClose=Z.disableClose,this.id=ze.id,ze.addPanelClass("mat-mdc-dialog-panel"),J._animationStateChanged.pipe((0,A.p)(fe=>"opened"===fe.state),(0,j.s)(1)).subscribe(()=>{this._afterOpened.next(),this._afterOpened.complete()}),J._animationStateChanged.pipe((0,A.p)(fe=>"closed"===fe.state),(0,j.s)(1)).subscribe(()=>{clearTimeout(this._closeFallbackTimeout),this._finishDialogClose()}),ze.overlayRef.detachments().subscribe(()=>{this._beforeClosed.next(this._result),this._beforeClosed.complete(),this._finishDialogClose()}),(0,b.h)(this.backdropClick(),this.keydownEvents().pipe((0,A.p)(fe=>fe.keyCode===m._f&&!this.disableClose&&!(0,P.rp)(fe)))).subscribe(fe=>{this.disableClose||(fe.preventDefault(),Ke(this,"keydown"===fe.type?"keyboard":"mouse"))})}close(ze){const Z=this._config.closePredicate;Z&&!Z(ze,this._config,this.componentInstance)||(this._result=ze,this._containerInstance._animationStateChanged.pipe((0,A.p)(J=>"closing"===J.state),(0,j.s)(1)).subscribe(J=>{this._beforeClosed.next(ze),this._beforeClosed.complete(),this._ref.overlayRef.detachBackdrop(),this._closeFallbackTimeout=setTimeout(()=>this._finishDialogClose(),J.totalTime+100)}),this._state=ye.CLOSING,this._containerInstance._startExitAnimation())}afterOpened(){return this._afterOpened}afterClosed(){return this._ref.closed}beforeClosed(){return this._beforeClosed}backdropClick(){return this._ref.backdropClick}keydownEvents(){return this._ref.keydownEvents}updatePosition(ze){let Z=this._ref.config.positionStrategy;return ze&&(ze.left||ze.right)?ze.left?Z.left(ze.left):Z.right(ze.right):Z.centerHorizontally(),ze&&(ze.top||ze.bottom)?ze.top?Z.top(ze.top):Z.bottom(ze.bottom):Z.centerVertically(),this._ref.updatePosition(),this}updateSize(ze="",Z=""){return this._ref.updateSize(ze,Z),this}addPanelClass(ze){return this._ref.addPanelClass(ze),this}removePanelClass(ze){return this._ref.removePanelClass(ze),this}getState(){return this._state}_finishDialogClose(){this._state=ye.CLOSED,this._ref.close(this._result,{focusOrigin:this._closeInteractionType}),this.componentInstance=null}}function Ke(Ce,ze,Z){return Ce._closeInteractionType=ze,Ce.close(Z)}const ge=new t.nKC("MatMdcDialogData"),ve=new t.nKC("mat-mdc-dialog-default-options"),Oe=new t.nKC("mat-mdc-dialog-scroll-strategy",{providedIn:"root",factory:()=>{const Ce=(0,t.WQX)(t.zZn);return()=>(0,U.gA)(Ce)}});let Ee=(()=>{class Ce{_defaultOptions=(0,t.WQX)(ve,{optional:!0});_scrollStrategy=(0,t.WQX)(Oe);_parentDialog=(0,t.WQX)(Ce,{optional:!0,skipSelf:!0});_idGenerator=(0,t.WQX)(K.g);_injector=(0,t.WQX)(t.zZn);_dialog=(0,t.WQX)(D);_animationsDisabled=(0,h.Rc)();_openDialogsAtThisLevel=[];_afterAllClosedAtThisLevel=new S.B;_afterOpenedAtThisLevel=new S.B;dialogConfigClass=_;_dialogRefConstructor;_dialogContainerType;_dialogDataToken;get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}_getAfterAllClosed(){const Z=this._parentDialog;return Z?Z._getAfterAllClosed():this._afterAllClosedAtThisLevel}afterAllClosed=(0,c.v)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,M.Z)(void 0)));constructor(){this._dialogRefConstructor=Le,this._dialogContainerType=be,this._dialogDataToken=ge}open(Z,J){let fe;(J={...this._defaultOptions||new _,...J}).id=J.id||this._idGenerator.getId("mat-mdc-dialog-"),J.scrollStrategy=J.scrollStrategy||this._scrollStrategy();const Ie=this._dialog.open(Z,{...J,positionStrategy:(0,U.uA)(this._injector).centerHorizontally().centerVertically(),disableClose:!0,closePredicate:void 0,closeOnDestroy:!1,closeOnOverlayDetachments:!1,disableAnimations:this._animationsDisabled||"0"===J.enterAnimationDuration?.toLocaleString()||"0"===J.exitAnimationDuration?.toString(),container:{type:this._dialogContainerType,providers:()=>[{provide:this.dialogConfigClass,useValue:J},{provide:Q,useValue:J}]},templateContext:()=>({dialogRef:fe}),providers:(ht,li,Qt)=>(fe=new this._dialogRefConstructor(ht,J,Qt),fe.updatePosition(J?.position),[{provide:this._dialogContainerType,useValue:Qt},{provide:this._dialogDataToken,useValue:li.data},{provide:this._dialogRefConstructor,useValue:fe}])});return fe.componentRef=Ie.componentRef,fe.componentInstance=Ie.componentInstance,this.openDialogs.push(fe),this.afterOpened.next(fe),fe.afterClosed().subscribe(()=>{const ht=this.openDialogs.indexOf(fe);ht>-1&&(this.openDialogs.splice(ht,1),this.openDialogs.length||this._getAfterAllClosed().next())}),fe}closeAll(){this._closeDialogs(this.openDialogs)}getDialogById(Z){return this.openDialogs.find(J=>J.id===Z)}ngOnDestroy(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}_closeDialogs(Z){let J=Z.length;for(;J--;)Z[J].close()}static \u0275fac=function(J){return new(J||Ce)};static \u0275prov=t.jDH({token:Ce,factory:Ce.\u0275fac,providedIn:"root"})}return Ce})(),dt=(()=>{class Ce{dialogRef=(0,t.WQX)(Le,{optional:!0});_elementRef=(0,t.WQX)(i.aKT);_dialog=(0,t.WQX)(Ee);ariaLabel;type="button";dialogResult;_matDialogClose;constructor(){}ngOnInit(){this.dialogRef||(this.dialogRef=function Pe(Ce,ze){let Z=Ce.nativeElement.parentElement;for(;Z&&!Z.classList.contains("mat-mdc-dialog-container");)Z=Z.parentElement;return Z?ze.find(J=>J.id===Z.id):null}(this._elementRef,this._dialog.openDialogs))}ngOnChanges(Z){const J=Z._matDialogClose||Z._matDialogCloseResult;J&&(this.dialogResult=J.currentValue)}_onButtonClick(Z){Ke(this.dialogRef,0===Z.screenX&&0===Z.screenY?"keyboard":"mouse",this.dialogResult)}static \u0275fac=function(J){return new(J||Ce)};static \u0275dir=i.FsC({type:Ce,selectors:[["","mat-dialog-close",""],["","matDialogClose",""]],hostVars:2,hostBindings:function(J,fe){1&J&&i.bIt("click",function(ht){return fe._onButtonClick(ht)}),2&J&&i.BMQ("aria-label",fe.ariaLabel||null)("type",fe.type)},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],type:"type",dialogResult:[0,"mat-dialog-close","dialogResult"],_matDialogClose:[0,"matDialogClose","_matDialogClose"]},exportAs:["matDialogClose"],features:[i.OA$]})}return Ce})();let ct=(()=>{class Ce{static \u0275fac=function(J){return new(J||Ce)};static \u0275mod=i.$C({type:Ce});static \u0275inj=t.G2t({providers:[Ee],imports:[o,U.z_,e.jc,x.y,x.y]})}return Ce})()},51856:(Ae,ee,l)=>{"use strict";var i=l(71993),t=l(3121),p=l(70463),S=l(27054).Buffer,c=new Array(160);function e(){this.init(),this._w=c,p.call(this,128,112)}i(e,t),e.prototype.init=function(){return this._ah=3418070365,this._bh=1654270250,this._ch=2438529370,this._dh=355462360,this._eh=1731405415,this._fh=2394180231,this._gh=3675008525,this._hh=1203062813,this._al=3238371032,this._bl=914150663,this._cl=812702999,this._dl=4144912697,this._el=4290775857,this._fl=1750603025,this._gl=1694076839,this._hl=3204075428,this},e.prototype._hash=function(){var T=S.allocUnsafe(48);function g(d,w,m){T.writeInt32BE(d,m),T.writeInt32BE(w,m+4)}return g(this._ah,this._al,0),g(this._bh,this._bl,8),g(this._ch,this._cl,16),g(this._dh,this._dl,24),g(this._eh,this._el,32),g(this._fh,this._fl,40),T},Ae.exports=e},51993:(Ae,ee,l)=>{"use strict";l.d(ee,{Dl:()=>K6,L8:()=>Pm,dV:()=>Km});var i=l(73664),t=l(2615),p=l(17705),S=l(72200),c=l(60177),e=l(31635),T=l(76939),g=l(33726),d=l(70152),w=l(11514);function m(){}function P(v){return null==v?m:function(){return this.querySelector(v)}}function U(){return[]}function K(v){return null==v?U:function(){return this.querySelectorAll(v)}}function Q(v){return function(){return this.matches(v)}}function $(v){return function(O){return O.matches(v)}}var ae=Array.prototype.find;function oe(){return this.firstElementChild}var me=Array.prototype.filter;function Te(){return Array.from(this.children)}function f(v){return new Array(v.length)}function b(v,O){this.ownerDocument=v.ownerDocument,this.namespaceURI=v.namespaceURI,this._next=null,this._parent=v,this.__data__=O}function k(v,O,E,y,N,V){for(var Ge,de=0,Pt=O.length,Xt=V.length;deO?1:v>=O?0:NaN}b.prototype={constructor:b,appendChild:function(v){return this._parent.insertBefore(v,this._next)},insertBefore:function(v,O){return this._parent.insertBefore(v,O)},querySelector:function(v){return this._parent.querySelector(v)},querySelectorAll:function(v){return this._parent.querySelectorAll(v)}};var Oe="http://www.w3.org/1999/xhtml";const Ee={svg:"http://www.w3.org/2000/svg",xhtml:Oe,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function dt(v){var O=v+="",E=O.indexOf(":");return E>=0&&"xmlns"!==(O=v.slice(0,E))&&(v=v.slice(E+1)),Ee.hasOwnProperty(O)?{space:Ee[O],local:v}:v}function nt(v){return function(){this.removeAttribute(v)}}function Ct(v){return function(){this.removeAttributeNS(v.space,v.local)}}function Mt(v,O){return function(){this.setAttribute(v,O)}}function lt(v,O){return function(){this.setAttributeNS(v.space,v.local,O)}}function Pe(v,O){return function(){var E=O.apply(this,arguments);null==E?this.removeAttribute(v):this.setAttribute(v,E)}}function Ht(v,O){return function(){var E=O.apply(this,arguments);null==E?this.removeAttributeNS(v.space,v.local):this.setAttributeNS(v.space,v.local,E)}}function Ce(v){return v.ownerDocument&&v.ownerDocument.defaultView||v.document&&v||v.defaultView}function ze(v){return function(){this.style.removeProperty(v)}}function Z(v,O,E){return function(){this.style.setProperty(v,O,E)}}function J(v,O,E){return function(){var y=O.apply(this,arguments);null==y?this.style.removeProperty(v):this.style.setProperty(v,y,E)}}function Ie(v,O){return v.style.getPropertyValue(O)||Ce(v).getComputedStyle(v,null).getPropertyValue(O)}function ht(v){return function(){delete this[v]}}function li(v,O){return function(){this[v]=O}}function Qt(v,O){return function(){var E=O.apply(this,arguments);null==E?delete this[v]:this[v]=E}}function kt(v){return v.trim().split(/^|\s+/)}function Rt(v){return v.classList||new le(v)}function le(v){this._node=v,this._names=kt(v.getAttribute("class")||"")}function te(v,O){for(var E=Rt(v),y=-1,N=O.length;++y=0&&(this._names.splice(O,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(v){return this._names.indexOf(v)>=0}};var Ki=[null];function Ji(v,O){this._groups=v,this._parents=O}function Dn(){return new Ji([[document.documentElement]],Ki)}Ji.prototype=Dn.prototype={constructor:Ji,select:function M(v){"function"!=typeof v&&(v=P(v));for(var O=this._groups,E=O.length,y=new Array(E),N=0;N=Xn&&(Xn=sa+1);!(Ia=Wi[Xn])&&++Xn=0;)(de=y[N])&&(V&&4^de.compareDocumentPosition(V)&&V.parentNode.insertBefore(de,V),V=de);return this},sort:function be(v){function O(Si,Oi){return Si&&Oi?v(Si.__data__,Oi.__data__):!Si-!Oi}v||(v=Be);for(var E=this._groups,y=E.length,N=new Array(y),V=0;V1?this.each((null==O?ze:"function"==typeof O?J:Z)(v,O,E??"")):Ie(this.node(),v)},property:function di(v,O){return arguments.length>1?this.each((null==O?ht:"function"==typeof O?Qt:li)(v,O)):this.node()[v]},classed:function Ne(v,O){var E=kt(v+"");if(arguments.length<2){for(var y=Rt(this.node()),N=-1,V=E.length;++N=0&&(E=O.slice(y+1),O=O.slice(0,y)),{type:O,name:E}})}(v+""),V=y.length;if(!(arguments.length<2)){for(Ge=O?it:Fe,N=0;N{}};function Gi(){for(var y,v=0,O=arguments.length,E={};v=0&&(y=E.slice(N+1),E=E.slice(0,N)),E&&!O.hasOwnProperty(E))throw new Error("unknown type: "+E);return{type:E,name:y}})}(v+"",E),V=-1,de=y.length;if(!(arguments.length<2)){if(null!=O&&"function"!=typeof O)throw new Error("invalid callback: "+O);for(;++V0)for(var N,V,E=new Array(N),y=0;y>8&15|O>>4&240,O>>4&15|240&O,(15&O)<<4|15&O,1):8===E?ia(O>>24&255,O>>16&255,O>>8&255,(255&O)/255):4===E?ia(O>>12&15|O>>8&240,O>>8&15|O>>4&240,O>>4&15|240&O,((15&O)<<4|15&O)/255):null):(O=Xe.exec(v))?new xa(O[1],O[2],O[3],1):(O=Gt.exec(v))?new xa(255*O[1]/100,255*O[2]/100,255*O[3]/100,1):(O=gt.exec(v))?ia(O[1],O[2],O[3],O[4]):(O=Ft.exec(v))?ia(255*O[1]/100,255*O[2]/100,255*O[3]/100,O[4]):(O=gi.exec(v))?Br(O[1],O[2]/100,O[3]/100,1):(O=Bi.exec(v))?Br(O[1],O[2]/100,O[3]/100,O[4]):Qi.hasOwnProperty(v)?Sa(Qi[v]):"transparent"===v?new xa(NaN,NaN,NaN,0):null}function Sa(v){return new xa(v>>16&255,v>>8&255,255&v,1)}function ia(v,O,E,y){return y<=0&&(v=O=E=NaN),new xa(v,O,E,y)}function Er(v,O,E,y){return 1===arguments.length?function pa(v){return v instanceof mn||(v=Zn(v)),v?new xa((v=v.rgb()).r,v.g,v.b,v.opacity):new xa}(v):new xa(v,O,E,y??1)}function xa(v,O,E,y){this.r=+v,this.g=+O,this.b=+E,this.opacity=+y}function Xr(){return`#${Fa(this.r)}${Fa(this.g)}${Fa(this.b)}`}function wr(){const v=ja(this.opacity);return`${1===v?"rgb(":"rgba("}${Wa(this.r)}, ${Wa(this.g)}, ${Wa(this.b)}${1===v?")":`, ${v})`}`}function ja(v){return isNaN(v)?1:Math.max(0,Math.min(1,v))}function Wa(v){return Math.max(0,Math.min(255,Math.round(v)||0))}function Fa(v){return((v=Wa(v))<16?"0":"")+v.toString(16)}function Br(v,O,E,y){return y<=0?v=O=E=NaN:E<=0||E>=1?v=O=NaN:O<=0&&(v=NaN),new or(v,O,E,y)}function ys(v){if(v instanceof or)return new or(v.h,v.s,v.l,v.opacity);if(v instanceof mn||(v=Zn(v)),!v)return new or;if(v instanceof or)return v;var O=(v=v.rgb()).r/255,E=v.g/255,y=v.b/255,N=Math.min(O,E,y),V=Math.max(O,E,y),de=NaN,Ge=V-N,Pt=(V+N)/2;return Ge?(de=O===V?(E-y)/Ge+6*(E0&&Pt<1?0:de,new or(de,Ge,Pt,v.opacity)}function or(v,O,E,y){this.h=+v,this.s=+O,this.l=+E,this.opacity=+y}function os(v){return(v=(v||0)%360)<0?v+360:v}function Yr(v){return Math.max(0,Math.min(1,v||0))}function bs(v,O,E){return 255*(v<60?O+(E-O)*v/60:v<180?E:v<240?O+(E-O)*(240-v)/60:O)}function Qr(v,O,E,y,N){var V=v*v,de=V*v;return((1-3*v+3*V-de)*O+(4-6*V+3*de)*E+(1+3*v+3*V-3*de)*y+de*N)/6}ca(mn,Zn,{copy(v){return Object.assign(new this.constructor,this,v)},displayable(){return this.rgb().displayable()},hex:fn,formatHex:fn,formatHex8:function ma(){return this.rgb().formatHex8()},formatHsl:function da(){return ys(this).formatHsl()},formatRgb:ga,toString:ga}),ca(xa,Er,an(mn,{brighter(v){return v=null==v?mr:Math.pow(mr,v),new xa(this.r*v,this.g*v,this.b*v,this.opacity)},darker(v){return v=null==v?.7:Math.pow(.7,v),new xa(this.r*v,this.g*v,this.b*v,this.opacity)},rgb(){return this},clamp(){return new xa(Wa(this.r),Wa(this.g),Wa(this.b),ja(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:Xr,formatHex:Xr,formatHex8:function Ta(){return`#${Fa(this.r)}${Fa(this.g)}${Fa(this.b)}${Fa(255*(isNaN(this.opacity)?1:this.opacity))}`},formatRgb:wr,toString:wr})),ca(or,function Kr(v,O,E,y){return 1===arguments.length?ys(v):new or(v,O,E,y??1)},an(mn,{brighter(v){return v=null==v?mr:Math.pow(mr,v),new or(this.h,this.s,this.l*v,this.opacity)},darker(v){return v=null==v?.7:Math.pow(.7,v),new or(this.h,this.s,this.l*v,this.opacity)},rgb(){var v=this.h%360+360*(this.h<0),O=isNaN(v)||isNaN(this.s)?0:this.s,E=this.l,y=E+(E<.5?E:1-E)*O,N=2*E-y;return new xa(bs(v>=240?v-240:v+120,N,y),bs(v,N,y),bs(v<120?v+240:v-120,N,y),this.opacity)},clamp(){return new or(os(this.h),Yr(this.s),Yr(this.l),ja(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const v=ja(this.opacity);return`${1===v?"hsl(":"hsla("}${os(this.h)}, ${100*Yr(this.s)}%, ${100*Yr(this.l)}%${1===v?")":`, ${v})`}`}}));const cs=v=>()=>v;function wt(v,O){var E=O-v;return E?function Hs(v,O){return function(E){return v+E*O}}(v,E):cs(isNaN(v)?O:v)}const ii=function v(O){var E=function rt(v){return 1==(v=+v)?wt:function(O,E){return E-O?function $r(v,O,E){return v=Math.pow(v,E),O=Math.pow(O,E)-v,E=1/E,function(y){return Math.pow(v+y*O,E)}}(O,E,v):cs(isNaN(O)?E:O)}}(O);function y(N,V){var de=E((N=Er(N)).r,(V=Er(V)).r),Ge=E(N.g,V.g),Pt=E(N.b,V.b),Xt=wt(N.opacity,V.opacity);return function(hi){return N.r=de(hi),N.g=Ge(hi),N.b=Pt(hi),N.opacity=Xt(hi),N+""}}return y.gamma=v,y}(1);function Ii(v){return function(O){var de,Ge,E=O.length,y=new Array(E),N=new Array(E),V=new Array(E);for(de=0;de=1?(E=1,O-1):Math.floor(E*O),N=v[y],V=v[y+1];return Qr((E-y/O)*O,y>0?v[y-1]:2*N-V,N,V,yE&&(V=O.slice(E,V),Ge[de]?Ge[de]+=V:Ge[++de]=V),(y=y[0])===(N=N[0])?Ge[de]?Ge[de]+=N:Ge[++de]=N:(Ge[++de]=null,Pt.push({i:de,x:Jn(y,N)})),E=Aa.lastIndex;return E=0&&v._call.call(void 0,O),v=v._next;--pr}()}finally{pr=0,function ea(){for(var v,E,O=Ss,y=1/0;O;)O._call?(y>O._time&&(y=O._time),v=O,O=O._next):(E=O._next,O._next=null,O=v?v._next=E:Ss=E);Oa=v,lr(y)}(),Ri=0}}function Rn(){var v=_i.now(),O=v-Wt;O>1e3&&(ft-=O,Wt=v)}function lr(v){pr||(gr&&(gr=clearTimeout(gr)),v-Ri>24?(v<1/0&&(gr=setTimeout(mi,v-_i.now()-ft)),ds&&(ds=clearInterval(ds))):(ds||(Wt=_i.now(),ds=setInterval(Rn,1e3)),pr=1,Li(mi)))}function Ts(v,O,E){var y=new st;return y.restart(N=>{y.stop(),v(N+O)},O=null==O?0:+O,E),y}st.prototype=He.prototype={constructor:st,restart:function(v,O,E){if("function"!=typeof v)throw new TypeError("callback is not a function");E=(null==E?vn():+E)+(null==O?0:+O),!this._next&&Oa!==this&&(Oa?Oa._next=this:Ss=this,Oa=this),this._call=v,this._time=E,lr()},stop:function(){this._call&&(this._call=null,this._time=1/0,lr())}};var Rs=ji("start","end","cancel","interrupt"),Gs=[];function vo(v,O,E,y,N,V){var de=v.__transition;if(de){if(E in de)return}else v.__transition={};!function Fo(v,O,E){var N,y=v.__transition;function de(Xt){var hi,Si,Oi,sn;if(1!==E.state)return Pt();for(hi in y)if((sn=y[hi]).name===E.name){if(3===sn.state)return Ts(de);4===sn.state?(sn.state=6,sn.timer.stop(),sn.on.call("interrupt",v,v.__data__,sn.index,sn.group),delete y[hi]):+hi0)throw new Error("too late; already scheduled");return E}function Ua(v,O){var E=qi(v,O);if(E.state>3)throw new Error("too late; already running");return E}function qi(v,O){var E=v.__transition;if(!E||!(E=E[O]))throw new Error("transition not found");return E}var ul,Fs=180/Math.PI,xo={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function dl(v,O,E,y,N,V){var de,Ge,Pt;return(de=Math.sqrt(v*v+O*O))&&(v/=de,O/=de),(Pt=v*E+O*y)&&(E-=v*Pt,y-=O*Pt),(Ge=Math.sqrt(E*E+y*y))&&(E/=Ge,y/=Ge,Pt/=Ge),v*y180?hi+=360:hi-Xt>180&&(Xt+=360),Oi.push({i:Si.push(N(Si)+"rotate(",null,y)-2,x:Jn(Xt,hi)})):hi&&Si.push(N(Si)+"rotate("+hi+y)}(Xt.rotate,hi.rotate,Si,Oi),function Ge(Xt,hi,Si,Oi){Xt!==hi?Oi.push({i:Si.push(N(Si)+"skewX(",null,y)-2,x:Jn(Xt,hi)}):hi&&Si.push(N(Si)+"skewX("+hi+y)}(Xt.skewX,hi.skewX,Si,Oi),function Pt(Xt,hi,Si,Oi,sn,on){if(Xt!==Si||hi!==Oi){var Wn=sn.push(N(sn)+"scale(",null,",",null,")");on.push({i:Wn-4,x:Jn(Xt,Si)},{i:Wn-2,x:Jn(hi,Oi)})}else(1!==Si||1!==Oi)&&sn.push(N(sn)+"scale("+Si+","+Oi+")")}(Xt.scaleX,Xt.scaleY,hi.scaleX,hi.scaleY,Si,Oi),Xt=hi=null,function(sn){for(var Wi,on=-1,Wn=Oi.length;++on=0&&(O=O.slice(0,E)),!O||"start"===O})}(O)?Sr:Ua;return function(){var de=V(this,v),Ge=de.on;Ge!==y&&(N=(y=Ge).copy()).on(O,E),de.on=N}}(E,v,O))},attr:function js(v,O){var E=dt(v),y="transform"===E?Wl:Rr;return this.attrTween(v,"function"==typeof O?(E.local?xs:Il)(E,y,Ll(this,"attr."+v,O)):null==O?(E.local?fl:hl)(E):(E.local?No:oo)(E,y,O))},attrTween:function el(v,O){var E="attr."+v;if(arguments.length<2)return(E=this.tween(E))&&E._value;if(null==O)return this.tween(E,null);if("function"!=typeof O)throw new Error;var y=dt(v);return this.tween(E,(y.local?Bo:Xl)(y,O))},style:function ri(v,O,E){var y="transform"==(v+="")?so:Rr;return null==O?this.styleTween(v,function je(v,O){var E,y,N;return function(){var V=Ie(this,v),de=(this.style.removeProperty(v),Ie(this,v));return V===de?null:V===E&&de===y?N:N=O(E=V,y=de)}}(v,y)).on("end.style."+v,Re(v)):"function"==typeof O?this.styleTween(v,function _t(v,O,E){var y,N,V;return function(){var de=Ie(this,v),Ge=E(this),Pt=Ge+"";return null==Ge&&(this.style.removeProperty(v),Pt=Ge=Ie(this,v)),de===Pt?null:de===y&&Pt===N?V:(N=Pt,V=O(y=de,Ge))}}(v,y,Ll(this,"style."+v,O))).each(function Ut(v,O){var E,y,N,Ge,V="style."+O,de="end."+V;return function(){var Pt=Ua(this,v),Xt=Pt.on,hi=null==Pt.value[V]?Ge||(Ge=Re(O)):void 0;(Xt!==E||N!==hi)&&(y=(E=Xt).copy()).on(de,N=hi),Pt.on=y}}(this._id,v)):this.styleTween(v,function We(v,O,E){var y,V,N=E+"";return function(){var de=Ie(this,v);return de===N?null:de===y?V:V=O(y=de,E)}}(v,y,O),E).on("end.style."+v,null)},styleTween:function On(v,O,E){var y="style."+(v+="");if(arguments.length<2)return(y=this.tween(y))&&y._value;if(null==O)return this.tween(y,null);if("function"!=typeof O)throw new Error;return this.tween(y,function Zi(v,O,E){var y,N;function V(){var de=O.apply(this,arguments);return de!==N&&(y=(N=de)&&function Di(v,O,E){return function(y){this.style.setProperty(v,O.call(this,y),E)}}(v,de,E)),y}return V._value=O,V}(v,O,E??""))},text:function Ur(v){return this.tween("text","function"==typeof v?function yr(v){return function(){var O=v(this);this.textContent=O??""}}(Ll(this,"text",v)):function Ma(v){return function(){this.textContent=v}}(null==v?"":v+""))},textTween:function Qs(v){var O="text";if(arguments.length<1)return(O=this.tween(O))&&O._value;if(null==v)return this.tween(O,null);if("function"!=typeof v)throw new Error;return this.tween(O,function ts(v){var O,E;function y(){var N=v.apply(this,arguments);return N!==E&&(O=(E=N)&&function co(v){return function(O){this.textContent=v.call(this,O)}}(N)),O}return y._value=v,y}(v))},remove:function zr(){return this.on("end.remove",function Ho(v){return function(){var O=this.parentNode;for(var E in this.__transition)if(+E!==v)return;O&&O.removeChild(this)}}(this._id))},tween:function Al(v,O){var E=this._id;if(v+="",arguments.length<2){for(var de,y=qi(this.node(),E).tween,N=0,V=y.length;N2&&y.state<5,y.state=6,y.timer.stop(),y.on.call(N?"interrupt":"cancel",v,v.__data__,y.index,y.group),delete E[de]):V=!1;V&&delete v.__transition}}(this,v)})},An.prototype.transition=function Mo(v){var O,E;v instanceof fs?(O=v._id,v=v._name):(O=kl(),(E=xl).time=vn(),v=null==v?null:v+"");for(var y=this._groups,N=y.length,V=0;VO?1:v>=O?0:NaN}function Wo(v,O){return null==v||null==O?NaN:Ov?1:O>=v?0:NaN}function Ja(v){let O,E,y;function N(Ge,Pt,Xt=0,hi=Ge.length){if(Xt>>1;E(Ge[Si],Pt)<0?Xt=Si+1:hi=Si}while(Xtrl(v(Ge),Pt),y=(Ge,Pt)=>v(Ge)-Pt):(O=v===rl||v===Wo?v:Mn,E=v,y=v),{left:N,center:function de(Ge,Pt,Xt=0,hi=Ge.length){const Si=N(Ge,Pt,Xt,hi-1);return Si>Xt&&y(Ge[Si-1],Pt)>-y(Ge[Si],Pt)?Si-1:Si},right:function V(Ge,Pt,Xt=0,hi=Ge.length){if(Xt>>1;E(Ge[Si],Pt)<=0?Xt=Si+1:hi=Si}while(Xt=Va?10:V>=Tr?5:V>=Ea?2:1;let Ge,Pt,Xt;return N<0?(Xt=Math.pow(10,-N)/de,Ge=Math.round(v*Xt),Pt=Math.round(O*Xt),Ge/XtO&&--Pt,Xt=-Xt):(Xt=Math.pow(10,N)*de,Ge=Math.round(v/Xt),Pt=Math.round(O/Xt),Ge*XtO&&--Pt),Pt(v(V=new Date(+V)),V),N.ceil=V=>(v(V=new Date(V-1)),O(V,1),v(V),V),N.round=V=>{const de=N(V),Ge=N.ceil(V);return V-de(O(V=new Date(+V),null==de?1:Math.floor(de)),V),N.range=(V,de,Ge)=>{const Pt=[];if(V=N.ceil(V),Ge=null==Ge?1:Math.floor(Ge),!(V0))return Pt;let Xt;do{Pt.push(Xt=new Date(+V)),O(V,Ge),v(V)}while(XtYt(de=>{if(de>=de)for(;v(de),!V(de);)de.setTime(de-1)},(de,Ge)=>{if(de>=de)if(Ge<0)for(;++Ge<=0;)for(;O(de,-1),!V(de););else for(;--Ge>=0;)for(;O(de,1),!V(de););}),E&&(N.count=(V,de)=>(De.setTime(+V),pt.setTime(+de),v(De),v(pt),Math.floor(E(De,pt))),N.every=V=>(V=Math.floor(V),isFinite(V)&&V>0?V>1?N.filter(y?de=>y(de)%V===0:de=>N.count(0,de)%V===0):N:null)),N}const Pi=Yt(()=>{},(v,O)=>{v.setTime(+v+O)},(v,O)=>O-v);Pi.every=v=>(v=Math.floor(v),isFinite(v)&&v>0?v>1?Yt(O=>{O.setTime(Math.floor(O/v)*v)},(O,E)=>{O.setTime(+O+E*v)},(O,E)=>(E-O)/v):Pi:null);const In=Yt(v=>{v.setTime(v-v.getMilliseconds())},(v,O)=>{v.setTime(+v+O*Do)},(v,O)=>(O-v)/Do,v=>v.getUTCSeconds()),Ar=Yt(v=>{v.setTime(v-v.getMilliseconds()-v.getSeconds()*Do)},(v,O)=>{v.setTime(+v+O*is)},(v,O)=>(O-v)/is,v=>v.getMinutes()),Za=Yt(v=>{v.setUTCSeconds(0,0)},(v,O)=>{v.setTime(+v+O*is)},(v,O)=>(O-v)/is,v=>v.getUTCMinutes()),hd=Yt(v=>{v.setTime(v-v.getMilliseconds()-v.getSeconds()*Do-v.getMinutes()*is)},(v,O)=>{v.setTime(+v+O*Nn)},(v,O)=>(O-v)/Nn,v=>v.getHours()),Xo=Yt(v=>{v.setUTCMinutes(0,0,0)},(v,O)=>{v.setTime(+v+O*Nn)},(v,O)=>(O-v)/Nn,v=>v.getUTCHours()),Zl=Yt(v=>v.setHours(0,0,0,0),(v,O)=>v.setDate(v.getDate()+O),(v,O)=>(O-v-(O.getTimezoneOffset()-v.getTimezoneOffset())*is)/ir,v=>v.getDate()-1),Nl=Yt(v=>{v.setUTCHours(0,0,0,0)},(v,O)=>{v.setUTCDate(v.getUTCDate()+O)},(v,O)=>(O-v)/ir,v=>v.getUTCDate()-1),Jd=Yt(v=>{v.setUTCHours(0,0,0,0)},(v,O)=>{v.setUTCDate(v.getUTCDate()+O)},(v,O)=>(O-v)/ir,v=>Math.floor(v/ir));function sl(v){return Yt(O=>{O.setDate(O.getDate()-(O.getDay()+7-v)%7),O.setHours(0,0,0,0)},(O,E)=>{O.setDate(O.getDate()+7*E)},(O,E)=>(E-O-(E.getTimezoneOffset()-O.getTimezoneOffset())*is)/cn)}const Wc=sl(0),qd=sl(1),vc=(sl(2),sl(3),sl(4));function Ni(v){return Yt(O=>{O.setUTCDate(O.getUTCDate()-(O.getUTCDay()+7-v)%7),O.setUTCHours(0,0,0,0)},(O,E)=>{O.setUTCDate(O.getUTCDate()+7*E)},(O,E)=>(E-O)/cn)}sl(5),sl(6);const $i=Ni(0),Tn=Ni(1),va=(Ni(2),Ni(3),Ni(4)),Jl=(Ni(5),Ni(6),Yt(v=>{v.setDate(1),v.setHours(0,0,0,0)},(v,O)=>{v.setMonth(v.getMonth()+O)},(v,O)=>O.getMonth()-v.getMonth()+12*(O.getFullYear()-v.getFullYear()),v=>v.getMonth())),yc=Yt(v=>{v.setUTCDate(1),v.setUTCHours(0,0,0,0)},(v,O)=>{v.setUTCMonth(v.getUTCMonth()+O)},(v,O)=>O.getUTCMonth()-v.getUTCMonth()+12*(O.getUTCFullYear()-v.getUTCFullYear()),v=>v.getUTCMonth()),ql=Yt(v=>{v.setMonth(0,1),v.setHours(0,0,0,0)},(v,O)=>{v.setFullYear(v.getFullYear()+O)},(v,O)=>O.getFullYear()-v.getFullYear(),v=>v.getFullYear());ql.every=v=>isFinite(v=Math.floor(v))&&v>0?Yt(O=>{O.setFullYear(Math.floor(O.getFullYear()/v)*v),O.setMonth(0,1),O.setHours(0,0,0,0)},(O,E)=>{O.setFullYear(O.getFullYear()+E*v)}):null;const Bl=Yt(v=>{v.setUTCMonth(0,1),v.setUTCHours(0,0,0,0)},(v,O)=>{v.setUTCFullYear(v.getUTCFullYear()+O)},(v,O)=>O.getUTCFullYear()-v.getUTCFullYear(),v=>v.getUTCFullYear());function M2(v,O,E,y,N,V){const de=[[In,1,Do],[In,5,5e3],[In,15,15e3],[In,30,3e4],[V,1,is],[V,5,5*is],[V,15,15*is],[V,30,30*is],[N,1,Nn],[N,3,3*Nn],[N,6,6*Nn],[N,12,12*Nn],[y,1,ir],[y,2,2*ir],[E,1,cn],[O,1,Hr],[O,3,3*Hr],[v,1,ra]];function Pt(Xt,hi,Si){const Oi=Math.abs(hi-Xt)/Si,sn=Ja(([,,Wi])=>Wi).right(de,Oi);if(sn===de.length)return v.every(_c(Xt/ra,hi/ra,Si));if(0===sn)return Pi.every(Math.max(_c(Xt,hi,Si),1));const[on,Wn]=de[Oi/de[sn-1][2]isFinite(v=Math.floor(v))&&v>0?Yt(O=>{O.setUTCFullYear(Math.floor(O.getUTCFullYear()/v)*v),O.setUTCMonth(0,1),O.setUTCHours(0,0,0,0)},(O,E)=>{O.setUTCFullYear(O.getUTCFullYear()+E*v)}):null;const[$1,p4]=M2(Bl,yc,$i,Jd,Xo,Za),[Z1,Ju]=M2(ql,Jl,Wc,Zl,hd,Ar);function J1(v){if(0<=v.y&&v.y<100){var O=new Date(-1,v.m,v.d,v.H,v.M,v.S,v.L);return O.setFullYear(v.y),O}return new Date(v.y,v.m,v.d,v.H,v.M,v.S,v.L)}function Ao(v){if(0<=v.y&&v.y<100){var O=new Date(Date.UTC(-1,v.m,v.d,v.H,v.M,v.S,v.L));return O.setUTCFullYear(v.y),O}return new Date(Date.UTC(v.y,v.m,v.d,v.H,v.M,v.S,v.L))}function md(v,O,E){return{y:v,m:O,d:E,H:0,M:0,S:0,L:0}}var Lr={"-":"",_:" ",0:"0"},Jr=/^\s*\d+/,Lo=/^%/,pd=/[\\^$*+?|[\]().{}]/g;function Na(v,O,E){var y=v<0?"-":"",N=(y?-v:v)+"",V=N.length;return y+(V[O.toLowerCase(),E]))}function qa(v,O,E){var y=Jr.exec(O.slice(E,E+1));return y?(v.w=+y[0],E+y[0].length):-1}function q1(v,O,E){var y=Jr.exec(O.slice(E,E+1));return y?(v.u=+y[0],E+y[0].length):-1}function E2(v,O,E){var y=Jr.exec(O.slice(E,E+2));return y?(v.U=+y[0],E+y[0].length):-1}function e0(v,O,E){var y=Jr.exec(O.slice(E,E+2));return y?(v.V=+y[0],E+y[0].length):-1}function e1(v,O,E){var y=Jr.exec(O.slice(E,E+2));return y?(v.W=+y[0],E+y[0].length):-1}function zl(v,O,E){var y=Jr.exec(O.slice(E,E+4));return y?(v.y=+y[0],E+y[0].length):-1}function _d(v,O,E){var y=Jr.exec(O.slice(E,E+2));return y?(v.y=+y[0]+(+y[0]>68?1900:2e3),E+y[0].length):-1}function Ir(v,O,E){var y=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(O.slice(E,E+6));return y?(v.Z=y[1]?0:-(y[2]+(y[3]||"00")),E+y[0].length):-1}function nr(v,O,E){var y=Jr.exec(O.slice(E,E+1));return y?(v.q=3*y[0]-3,E+y[0].length):-1}function w2(v,O,E){var y=Jr.exec(O.slice(E,E+2));return y?(v.m=y[0]-1,E+y[0].length):-1}function Or(v,O,E){var y=Jr.exec(O.slice(E,E+2));return y?(v.d=+y[0],E+y[0].length):-1}function vd(v,O,E){var y=Jr.exec(O.slice(E,E+3));return y?(v.m=0,v.d=+y[0],E+y[0].length):-1}function tc(v,O,E){var y=Jr.exec(O.slice(E,E+2));return y?(v.H=+y[0],E+y[0].length):-1}function Xc(v,O,E){var y=Jr.exec(O.slice(E,E+2));return y?(v.M=+y[0],E+y[0].length):-1}function t1(v,O,E){var y=Jr.exec(O.slice(E,E+2));return y?(v.S=+y[0],E+y[0].length):-1}function t0(v,O,E){var y=Jr.exec(O.slice(E,E+3));return y?(v.L=+y[0],E+y[0].length):-1}function n1(v,O,E){var y=Jr.exec(O.slice(E,E+6));return y?(v.L=Math.floor(y[0]/1e3),E+y[0].length):-1}function eh(v,O,E){var y=Lo.exec(O.slice(E,E+1));return y?E+y[0].length:-1}function n0(v,O,E){var y=Jr.exec(O.slice(E));return y?(v.Q=+y[0],E+y[0].length):-1}function Kc(v,O,E){var y=Jr.exec(O.slice(E));return y?(v.s=+y[0],E+y[0].length):-1}function a1(v,O){return Na(v.getDate(),O,2)}function S2(v,O){return Na(v.getHours(),O,2)}function T2(v,O){return Na(v.getHours()%12||12,O,2)}function r1(v,O){return Na(1+Zl.count(ql(v),v),O,3)}function Yc(v,O){return Na(v.getMilliseconds(),O,3)}function s1(v,O){return Yc(v,O)+"000"}function a0(v,O){return Na(v.getMonth()+1,O,2)}function o1(v,O){return Na(v.getMinutes(),O,2)}function th(v,O){return Na(v.getSeconds(),O,2)}function yd(v){var O=v.getDay();return 0===O?7:O}function Qc(v,O){return Na(Wc.count(ql(v)-1,v),O,2)}function D2(v){var O=v.getDay();return O>=4||0===O?vc(v):vc.ceil(v)}function A2(v,O){return v=D2(v),Na(vc.count(ql(v),v)+(4===ql(v).getDay()),O,2)}function L2(v){return v.getDay()}function I2(v,O){return Na(qd.count(ql(v)-1,v),O,2)}function ih(v,O){return Na(v.getFullYear()%100,O,2)}function r0(v,O){return Na((v=D2(v)).getFullYear()%100,O,2)}function nh(v,O){return Na(v.getFullYear()%1e4,O,4)}function bc(v,O){var E=v.getDay();return Na((v=E>=4||0===E?vc(v):vc.ceil(v)).getFullYear()%1e4,O,4)}function s0(v){var O=v.getTimezoneOffset();return(O>0?"-":(O*=-1,"+"))+Na(O/60|0,"0",2)+Na(O%60,"0",2)}function xc(v,O){return Na(v.getUTCDate(),O,2)}function k2(v,O){return Na(v.getUTCHours(),O,2)}function Cs(v,O){return Na(v.getUTCHours()%12||12,O,2)}function R2(v,O){return Na(1+Nl.count(Bl(v),v),O,3)}function O2(v,O){return Na(v.getUTCMilliseconds(),O,3)}function Sl(v,O){return O2(v,O)+"000"}function P2(v,O){return Na(v.getUTCMonth()+1,O,2)}function F2(v,O){return Na(v.getUTCMinutes(),O,2)}function g4(v,O){return Na(v.getUTCSeconds(),O,2)}function l1(v){var O=v.getUTCDay();return 0===O?7:O}function Cc(v,O){return Na($i.count(Bl(v)-1,v),O,2)}function Mc(v){var O=v.getUTCDay();return O>=4||0===O?va(v):va.ceil(v)}function Ha(v,O){return v=Mc(v),Na(va.count(Bl(v),v)+(4===Bl(v).getUTCDay()),O,2)}function Ba(v){return v.getUTCDay()}function $c(v,O){return Na(Tn.count(Bl(v)-1,v),O,2)}function ah(v,O){return Na(v.getUTCFullYear()%100,O,2)}function rh(v,O){return Na((v=Mc(v)).getUTCFullYear()%100,O,2)}function o0(v,O){return Na(v.getUTCFullYear()%1e4,O,4)}function bd(v,O){var E=v.getUTCDay();return Na((v=E>=4||0===E?va(v):va.ceil(v)).getUTCFullYear()%1e4,O,4)}function N2(){return"+0000"}function c1(){return"%"}function B2(v){return+v}function z2(v){return Math.floor(+v/1e3)}function G2(v){return null===v?NaN:+v}!function H2(v){(function qs(v){var O=v.dateTime,E=v.date,y=v.time,N=v.periods,V=v.days,de=v.shortDays,Ge=v.months,Pt=v.shortMonths,Xt=gd(N),hi=ec(N),Si=gd(V),Oi=ec(V),sn=gd(de),on=ec(de),Wn=gd(Ge),Wi=ec(Ge),Ln=gd(Pt),sa=ec(Pt),Xn={a:function Nr(Kn){return de[Kn.getDay()]},A:function Vs(Kn){return V[Kn.getDay()]},b:function jr(Kn){return Pt[Kn.getMonth()]},B:function rr(Kn){return Ge[Kn.getMonth()]},c:null,d:a1,e:a1,f:s1,g:r0,G:bc,H:S2,I:T2,j:r1,L:Yc,m:a0,M:o1,p:function _s(Kn){return N[+(Kn.getHours()>=12)]},q:function vs(Kn){return 1+~~(Kn.getMonth()/3)},Q:B2,s:z2,S:th,u:yd,U:Qc,V:A2,w:L2,W:I2,x:null,X:null,y:ih,Y:nh,Z:s0,"%":c1},la={a:function r2(Kn){return de[Kn.getUTCDay()]},A:function jd(Kn){return V[Kn.getUTCDay()]},b:function Wd(Kn){return Pt[Kn.getUTCMonth()]},B:function Hc(Kn){return Ge[Kn.getUTCMonth()]},c:null,d:xc,e:xc,f:Sl,g:rh,G:bd,H:k2,I:Cs,j:R2,L:O2,m:P2,M:F2,p:function go(Kn){return N[+(Kn.getUTCHours()>=12)]},q:function ld(Kn){return 1+~~(Kn.getUTCMonth()/3)},Q:B2,s:z2,S:g4,u:l1,U:Cc,V:Ha,w:Ba,W:$c,x:null,X:null,y:ah,Y:o0,Z:N2,"%":c1},Ia={a:function Gr(Kn,ba,Pa){var Cn=sn.exec(ba.slice(Pa));return Cn?(Kn.w=on.get(Cn[0].toLowerCase()),Pa+Cn[0].length):-1},A:function as(Kn,ba,Pa){var Cn=Si.exec(ba.slice(Pa));return Cn?(Kn.w=Oi.get(Cn[0].toLowerCase()),Pa+Cn[0].length):-1},b:function _a(Kn,ba,Pa){var Cn=Ln.exec(ba.slice(Pa));return Cn?(Kn.m=sa.get(Cn[0].toLowerCase()),Pa+Cn[0].length):-1},B:function Mr(Kn,ba,Pa){var Cn=Wn.exec(ba.slice(Pa));return Cn?(Kn.m=Wi.get(Cn[0].toLowerCase()),Pa+Cn[0].length):-1},c:function Ya(Kn,ba,Pa){return kr(Kn,O,ba,Pa)},d:Or,e:Or,f:n1,g:_d,G:zl,H:tc,I:tc,j:vd,L:t0,m:w2,M:Xc,p:function to(Kn,ba,Pa){var Cn=Xt.exec(ba.slice(Pa));return Cn?(Kn.p=hi.get(Cn[0].toLowerCase()),Pa+Cn[0].length):-1},q:nr,Q:n0,s:Kc,S:t1,u:q1,U:E2,V:e0,w:qa,W:e1,x:function Us(Kn,ba,Pa){return kr(Kn,E,ba,Pa)},X:function rs(Kn,ba,Pa){return kr(Kn,y,ba,Pa)},y:_d,Y:zl,Z:Ir,"%":eh};function Gn(Kn,ba){return function(Pa){var hr,fa,Wr,Cn=[],es=-1,sr=0,_o=Kn.length;for(Pa instanceof Date||(Pa=new Date(+Pa));++es<_o;)37===Kn.charCodeAt(es)&&(Cn.push(Kn.slice(sr,es)),null!=(fa=Lr[hr=Kn.charAt(++es)])?hr=Kn.charAt(++es):fa="e"===hr?" ":"0",(Wr=ba[hr])&&(hr=Wr(Pa,fa)),Cn.push(hr),sr=es+1);return Cn.push(Kn.slice(sr,es)),Cn.join("")}}function Cr(Kn,ba){return function(Pa){var sr,_o,Cn=md(1900,void 0,1);if(kr(Cn,Kn,Pa+="",0)!=Pa.length)return null;if("Q"in Cn)return new Date(Cn.Q);if("s"in Cn)return new Date(1e3*Cn.s+("L"in Cn?Cn.L:0));if(ba&&!("Z"in Cn)&&(Cn.Z=0),"p"in Cn&&(Cn.H=Cn.H%12+12*Cn.p),void 0===Cn.m&&(Cn.m="q"in Cn?Cn.q:0),"V"in Cn){if(Cn.V<1||Cn.V>53)return null;"w"in Cn||(Cn.w=1),"Z"in Cn?(_o=(sr=Ao(md(Cn.y,0,1))).getUTCDay(),sr=_o>4||0===_o?Tn.ceil(sr):Tn(sr),sr=Nl.offset(sr,7*(Cn.V-1)),Cn.y=sr.getUTCFullYear(),Cn.m=sr.getUTCMonth(),Cn.d=sr.getUTCDate()+(Cn.w+6)%7):(_o=(sr=J1(md(Cn.y,0,1))).getDay(),sr=_o>4||0===_o?qd.ceil(sr):qd(sr),sr=Zl.offset(sr,7*(Cn.V-1)),Cn.y=sr.getFullYear(),Cn.m=sr.getMonth(),Cn.d=sr.getDate()+(Cn.w+6)%7)}else("W"in Cn||"U"in Cn)&&("w"in Cn||(Cn.w="u"in Cn?Cn.u%7:"W"in Cn?1:0),_o="Z"in Cn?Ao(md(Cn.y,0,1)).getUTCDay():J1(md(Cn.y,0,1)).getDay(),Cn.m=0,Cn.d="W"in Cn?(Cn.w+6)%7+7*Cn.W-(_o+5)%7:Cn.w+7*Cn.U-(_o+6)%7);return"Z"in Cn?(Cn.H+=Cn.Z/100|0,Cn.M+=Cn.Z%100,Ao(Cn)):J1(Cn)}}function kr(Kn,ba,Pa,Cn){for(var hr,fa,es=0,sr=ba.length,_o=Pa.length;es=_o)return-1;if(37===(hr=ba.charCodeAt(es++))){if(hr=ba.charAt(es++),!(fa=Ia[hr in Lr?ba.charAt(es++):hr])||(Cn=fa(Kn,Pa,Cn))<0)return-1}else if(hr!=Pa.charCodeAt(Cn++))return-1}return Cn}return Xn.x=Gn(E,Xn),Xn.X=Gn(y,Xn),Xn.c=Gn(O,Xn),la.x=Gn(E,la),la.X=Gn(y,la),la.c=Gn(O,la),{format:function(Kn){var ba=Gn(Kn+="",Xn);return ba.toString=function(){return Kn},ba},parse:function(Kn){var ba=Cr(Kn+="",!1);return ba.toString=function(){return Kn},ba},utcFormat:function(Kn){var ba=Gn(Kn+="",la);return ba.toString=function(){return Kn},ba},utcParse:function(Kn){var ba=Cr(Kn+="",!0);return ba.toString=function(){return Kn},ba}}})(v)}({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});const W2=Ja(rl).right,u0=(Ja(G2),W2);function sh(v,O){return v=+v,O=+O,function(E){return Math.round(v*(1-E)+O*E)}}function u1(v){return+v}var h1=[0,1];function wc(v){return v}function ic(v,O){return(O-=v=+v)?function(E){return(E-v)/O}:function h0(v){return function(){return v}}(isNaN(O)?NaN:.5)}function oh(v,O,E){var y=v[0],N=v[1],V=O[0],de=O[1];return NO&&(E=v,v=O,O=E),function(y){return Math.max(v,Math.min(O,y))}}(v[0],v[Oi-1])),Ge=Oi>2?X2:oh,Pt=Xt=null,Si}function Si(Oi){return null==Oi||isNaN(Oi=+Oi)?V:(Pt||(Pt=Ge(v.map(y),O,E)))(y(de(Oi)))}return Si.invert=function(Oi){return de(N((Xt||(Xt=Ge(O,v.map(y),Jn)))(Oi)))},Si.domain=function(Oi){return arguments.length?(v=Array.from(Oi,u1),hi()):v.slice()},Si.range=function(Oi){return arguments.length?(O=Array.from(Oi),hi()):O.slice()},Si.rangeRound=function(Oi){return O=Array.from(Oi),E=sh,hi()},Si.clamp=function(Oi){return arguments.length?(de=!!Oi||wc,hi()):de!==wc},Si.interpolate=function(Oi){return arguments.length?(E=Oi,hi()):E},Si.unknown=function(Oi){return arguments.length?(V=Oi,Si):V},function(Oi,sn){return y=Oi,N=sn,hi()}}()(wc,wc)}function nc(v,O){switch(arguments.length){case 0:break;case 1:this.range(v);break;default:this.range(O).domain(v)}return this}var sc,m0=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function Sc(v){if(!(O=m0.exec(v)))throw new Error("invalid format: "+v);var O;return new Tc({fill:O[1],align:O[2],sign:O[3],symbol:O[4],zero:O[5],width:O[6],comma:O[7],precision:O[8]&&O[8].slice(1),trim:O[9],type:O[10]})}function Tc(v){this.fill=void 0===v.fill?" ":v.fill+"",this.align=void 0===v.align?">":v.align+"",this.sign=void 0===v.sign?"-":v.sign+"",this.symbol=void 0===v.symbol?"":v.symbol+"",this.zero=!!v.zero,this.width=void 0===v.width?void 0:+v.width,this.comma=!!v.comma,this.precision=void 0===v.precision?void 0:+v.precision,this.trim=!!v.trim,this.type=void 0===v.type?"":v.type+""}function Cd(v,O){if(!isFinite(v)||0===v)return null;var E=(v=O?v.toExponential(O-1):v.toExponential()).indexOf("e"),y=v.slice(0,E);return[y.length>1?y[0]+y.slice(2):y,+v.slice(E+1)]}function ac(v){return(v=Cd(Math.abs(v)))?v[1]:NaN}function g0(v,O){var E=Cd(v,O);if(!E)return v+"";var y=E[0],N=E[1];return N<0?"0."+new Array(-N).join("0")+y:y.length>N+1?y.slice(0,N+1)+"."+y.slice(N+1):y+new Array(N-y.length+2).join("0")}Sc.prototype=Tc.prototype,Tc.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};const g1={"%":(v,O)=>(100*v).toFixed(O),b:v=>Math.round(v).toString(2),c:v=>v+"",d:function p1(v){return Math.abs(v=Math.round(v))>=1e21?v.toLocaleString("en").replace(/,/g,""):v.toString(10)},e:(v,O)=>v.toExponential(O),f:(v,O)=>v.toFixed(O),g:(v,O)=>v.toPrecision(O),o:v=>Math.round(v).toString(8),p:(v,O)=>g0(100*v,O),r:g0,s:function hh(v,O){var E=Cd(v,O);if(!E)return sc=void 0,v.toPrecision(O);var y=E[0],N=E[1],V=N-(sc=3*Math.max(-8,Math.min(8,Math.floor(N/3))))+1,de=y.length;return V===de?y:V>de?y+new Array(V-de+1).join("0"):V>0?y.slice(0,V)+"."+y.slice(V):"0."+new Array(1-V).join("0")+Cd(v,Math.max(0,O+V-1))[0]},X:v=>Math.round(v).toString(16).toUpperCase(),x:v=>Math.round(v).toString(16)};function Q2(v){return v}var Dc,$2,v0,_0=Array.prototype.map,Jc=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"];function b0(v){var O=v.domain;return v.ticks=function(E){var y=O();return function Dr(v,O,E){if(!((E=+E)>0))return[];if((v=+v)===(O=+O))return[v];const y=O=N))return[];const Ge=V-N+1,Pt=new Array(Ge);if(y)if(de<0)for(let Xt=0;Xt0;){if((Xt=$l(de,Ge,E))===Pt)return y[N]=de,y[V]=Ge,O(y);if(Xt>0)de=Math.floor(de/Xt)*Xt,Ge=Math.ceil(Ge/Xt)*Xt;else{if(!(Xt<0))break;de=Math.ceil(de*Xt)/Xt,Ge=Math.floor(Ge*Xt)/Xt}Pt=Xt}return v},v}function oc(){var v=Zc();return v.copy=function(){return function K2(v,O){return O.domain(v.domain()).range(v.range()).interpolate(v.interpolate()).clamp(v.clamp()).unknown(v.unknown())}(v,oc())},nc.apply(v,arguments),b0(v)}function v1(v,O,E){v=+v,O=+O,E=(N=arguments.length)<2?(O=v,v=0,1):N<3?1:+E;for(var y=-1,N=0|Math.max(0,Math.ceil((O-v)/E)),V=new Array(N);++y0&&Ge>0&&(Pt+Ge+1>y&&(Ge=Math.max(1,y-Pt)),V.push(E.substring(N-=Ge,N+Ge)),!((Pt+=Ge+1)>y));)Ge=v[de=(de+1)%v.length];return V.reverse().join(O)}}(_0.call(v.grouping,Number),v.thousands+""),E=void 0===v.currency?"":v.currency[0]+"",y=void 0===v.currency?"":v.currency[1]+"",N=void 0===v.decimal?".":v.decimal+"",V=void 0===v.numerals?Q2:function Md(v){return function(O){return O.replace(/[0-9]/g,function(E){return v[+E]})}}(_0.call(v.numerals,String)),de=void 0===v.percent?"%":v.percent+"",Ge=void 0===v.minus?"\u2212":v.minus+"",Pt=void 0===v.nan?"NaN":v.nan+"";function Xt(Si,Oi){var sn=(Si=Sc(Si)).fill,on=Si.align,Wn=Si.sign,Wi=Si.symbol,Ln=Si.zero,sa=Si.width,Xn=Si.comma,la=Si.precision,Ia=Si.trim,Gn=Si.type;"n"===Gn?(Xn=!0,Gn="g"):g1[Gn]||(void 0===la&&(la=12),Ia=!0,Gn="g"),(Ln||"0"===sn&&"="===on)&&(Ln=!0,sn="0",on="=");var Cr=(Oi&&void 0!==Oi.prefix?Oi.prefix:"")+("$"===Wi?E:"#"===Wi&&/[boxX]/.test(Gn)?"0"+Gn.toLowerCase():""),kr=("$"===Wi?y:/[%p]/.test(Gn)?de:"")+(Oi&&void 0!==Oi.suffix?Oi.suffix:""),to=g1[Gn],Gr=/[defgprs%]/.test(Gn);function as(_a){var Us,rs,Nr,Mr=Cr,Ya=kr;if("c"===Gn)Ya=to(_a)+Ya,_a="";else{var Vs=(_a=+_a)<0||1/_a<0;if(_a=isNaN(_a)?Pt:to(Math.abs(_a),la),Ia&&(_a=function p0(v){e:for(var N,O=v.length,E=1,y=-1;E0&&(y=0)}return y>0?v.slice(0,y)+v.slice(N+1):v}(_a)),Vs&&0==+_a&&"+"!==Wn&&(Vs=!1),Mr=(Vs?"("===Wn?Wn:Ge:"-"===Wn||"("===Wn?"":Wn)+Mr,Ya=("s"!==Gn||isNaN(_a)||void 0===sc?"":Jc[8+sc/3])+Ya+(Vs&&"("===Wn?")":""),Gr)for(Us=-1,rs=_a.length;++Us(Nr=_a.charCodeAt(Us))||Nr>57){Ya=(46===Nr?N+_a.slice(Us+1):_a.slice(Us))+Ya,_a=_a.slice(0,Us);break}}Xn&&!Ln&&(_a=O(_a,1/0));var jr=Mr.length+_a.length+Ya.length,rr=jr>1)+Mr+_a+Ya+rr.slice(jr);break;default:_a=rr+Mr+_a+Ya}return V(_a)}return la=void 0===la?6:/[gprs]/.test(Gn)?Math.max(1,Math.min(21,la)):Math.max(0,Math.min(20,la)),as.toString=function(){return Si+""},as}return{format:Xt,formatPrefix:function hi(Si,Oi){var sn=3*Math.max(-8,Math.min(8,Math.floor(ac(Oi)/3))),on=Math.pow(10,-sn),Wn=Xt(((Si=Sc(Si)).type="f",Si),{suffix:Jc[8+sn/3]});return function(Wi){return Wn(on*Wi)}}}}(v),$2=Dc.format,v0=Dc.formatPrefix}({thousands:",",grouping:[3],currency:["$",""]});class mh extends Map{constructor(O,E=x0){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:E}}),null!=O)for(const[y,N]of O)this.set(y,N)}get(O){return super.get(Ac(this,O))}has(O){return super.has(Ac(this,O))}set(O,E){return super.set(function J2({_intern:v,_key:O},E){const y=O(E);return v.has(y)?v.get(y):(v.set(y,E),E)}(this,O),E)}delete(O){return super.delete(function y1({_intern:v,_key:O},E){const y=O(E);return v.has(y)&&(E=v.get(y),v.delete(y)),E}(this,O))}}function Ac({_intern:v,_key:O},E){const y=O(E);return v.has(y)?v.get(y):E}function x0(v){return null!==v&&"object"==typeof v?v.valueOf():v}Set;const Ed=Symbol("implicit");function C0(){var v=new mh,O=[],E=[],y=Ed;function N(V){let de=v.get(V);if(void 0===de){if(y!==Ed)return y;v.set(V,de=O.push(V)-1)}return E[de%E.length]}return N.domain=function(V){if(!arguments.length)return O.slice();O=[],v=new mh;for(const de of V)v.has(de)||v.set(de,O.push(de)-1);return N},N.range=function(V){return arguments.length?(E=Array.from(V),N):E.slice()},N.unknown=function(V){return arguments.length?(y=V,N):y},N.copy=function(){return C0(O,E).unknown(y)},nc.apply(N,arguments),N}function Ul(){var V,de,v=C0().unknown(void 0),O=v.domain,E=v.range,y=0,N=1,Ge=!1,Pt=0,Xt=0,hi=.5;function Si(){var Oi=O().length,sn=N=1)return+E(v[y-1],y-1,v);var y,N=(y-1)*O,V=Math.floor(N),de=+E(v[V],V,v);return de+(+E(v[V+1],V+1,v)-de)*(N-V)}}function eu(){var y,v=[],O=[],E=[];function N(){var de=0,Ge=Math.max(1,O.length);for(E=new Array(Ge-1);++de0?E[Ge-1]:v[0],Ge({model:v});function x1(v,O){}function _h(v,O){if(1&v&&(i.j41(0,"span"),i.DNE(1,x1,0,0,"ng-template",5),i.k0s()),2&v){const E=i.XpG();i.R7$(),i.Y8G("ngTemplateOutlet",E.template)("ngTemplateOutletContext",i.eq3(2,gh,E.context))}}function td(v,O){if(1&v&&i.nrm(0,"span",6),2&v){const E=i.XpG();i.Y8G("innerHTML",E.title,i.npT)}}function Lc(v,O){if(1&v&&(i.j41(0,"header",4)(1,"span",5),i.EFF(2),i.k0s()()),2&v){const E=i.XpG();i.R7$(2),i.JRh(E.title)}}function vh(v,O){if(1&v){const E=i.RV6();i.j41(0,"li",6)(1,"ngx-charts-legend-entry",7),i.bIt("select",function(N){t.eBV(E);const V=i.XpG();return t.Njj(V.labelClick.emit(N))})("activate",function(N){t.eBV(E);const V=i.XpG();return t.Njj(V.activate(N))})("deactivate",function(N){t.eBV(E);const V=i.XpG();return t.Njj(V.deactivate(N))}),i.k0s()()}if(2&v){const E=O.$implicit,y=i.XpG();i.R7$(),i.Y8G("label",E.label)("formattedLabel",E.formattedLabel)("color",E.color)("isActive",y.isActive(E))}}const yh=["*"];function wd(v,O){if(1&v&&i.nrm(0,"ngx-charts-scale-legend",4),2&v){const E=i.XpG();i.Y8G("horizontal",E.legendOptions&&E.legendOptions.position===E.LegendPosition.Below)("valueRange",E.legendOptions.domain)("colors",E.legendOptions.colors)("height",E.view[1])("width",E.legendWidth)}}function bh(v,O){if(1&v){const E=i.RV6();i.j41(0,"ngx-charts-legend",5),i.bIt("labelClick",function(N){t.eBV(E);const V=i.XpG();return t.Njj(V.legendLabelClick.emit(N))})("labelActivate",function(N){t.eBV(E);const V=i.XpG();return t.Njj(V.legendLabelActivate.emit(N))})("labelDeactivate",function(N){t.eBV(E);const V=i.XpG();return t.Njj(V.legendLabelDeactivate.emit(N))}),i.k0s()}if(2&v){const E=i.XpG();i.Y8G("horizontal",E.legendOptions&&E.legendOptions.position===E.LegendPosition.Below)("data",E.legendOptions.domain)("title",E.legendOptions.title)("colors",E.legendOptions.colors)("height",E.view[1])("width",E.legendWidth)("activeEntries",E.activeEntries)}}const tu=["ngx-charts-axis-label",""],C1=["ticksel"],xh=["ngx-charts-x-axis-ticks",""];function Ch(v,O){1&v&&(t.qSk(),i.eu8(0))}function Mh(v,O){if(1&v&&(t.qSk(),i.j41(0,"tspan",12),i.EFF(1),i.k0s()),2&v){const E=O.$implicit;i.BMQ("y",12*O.index),i.R7$(),i.SpI(" ",E," ")}}function Eh(v,O){if(1&v&&(t.qSk(),i.qex(0),i.DNE(1,Mh,2,2,"tspan",11),i.bVm()),2&v){const E=O.ngIf;i.R7$(),i.Y8G("ngForOf",E)}}function wh(v,O){if(1&v&&i.DNE(0,Eh,2,1,"ng-container",8),2&v){const E=i.XpG(2).$implicit,y=i.XpG();i.Y8G("ngIf",y.tickChunks(E))}}function Sh(v,O){if(1&v&&i.EFF(0),2&v){const E=i.XpG().ngIf,y=i.XpG(2);i.SpI(" ",y.tickTrim(E)," ")}}function E0(v,O){if(1&v&&(t.qSk(),i.qex(0),i.j41(1,"title"),i.EFF(2),i.k0s(),i.j41(3,"text",9),i.DNE(4,Ch,1,0,"ng-container",10),i.k0s(),i.DNE(5,wh,1,1,"ng-template",null,1,i.C5r)(7,Sh,1,1,"ng-template",null,2,i.C5r),i.bVm()),2&v){const E=O.ngIf,y=i.sdS(6),N=i.sdS(8),V=i.XpG(2);i.R7$(2),i.JRh(E),i.R7$(),i.BMQ("text-anchor",V.textAnchor)("transform",V.textTransform),i.R7$(),i.Y8G("ngIf",V.isWrapTicksSupported)("ngIfThen",y)("ngIfElse",N)}}function b4(v,O){if(1&v&&(t.qSk(),i.j41(0,"g",7),i.DNE(1,E0,9,6,"ng-container",8),i.k0s()),2&v){const E=O.$implicit,y=i.XpG();i.BMQ("transform",y.tickTransform(E)),i.R7$(),i.Y8G("ngIf",y.tickFormat(E))}}function w0(v,O){if(1&v&&(t.qSk(),i.j41(0,"g"),i.nrm(1,"line",13),i.k0s()),2&v){const E=i.XpG(2);i.BMQ("transform",E.gridLineTransform()),i.R7$(),i.BMQ("y1",-E.gridLineHeight)}}function iu(v,O){if(1&v&&(t.qSk(),i.j41(0,"g"),i.DNE(1,w0,2,2,"g",8),i.k0s()),2&v){const E=O.$implicit,y=i.XpG();i.BMQ("transform",y.tickTransform(E)),i.R7$(),i.Y8G("ngIf",y.showGridLines)}}function M1(v,O){if(1&v&&(t.qSk(),i.nrm(0,"path",14)),2&v){const E=i.XpG();i.BMQ("d",E.referenceAreaPath)("transform",E.gridLineTransform())}}function Th(v,O){if(1&v&&(t.qSk(),i.j41(0,"g")(1,"title"),i.EFF(2),i.k0s(),i.j41(3,"text",17),i.EFF(4),i.k0s()()),2&v){const E=i.XpG(2).$implicit,y=i.XpG();i.R7$(2),i.JRh(y.tickTrim(y.tickFormat(E.value))),i.R7$(2),i.SpI(" ",E.name," ")}}function Dh(v,O){if(1&v&&(t.qSk(),i.j41(0,"g"),i.nrm(1,"line",16),i.DNE(2,Th,5,2,"g",8),i.k0s()),2&v){const E=i.XpG().$implicit,y=i.XpG();i.BMQ("transform",y.transform(E.value)),i.R7$(),i.BMQ("y2",25+y.gridLineHeight)("transform",y.gridLineTransform()),i.R7$(),i.Y8G("ngIf",y.showRefLabels)}}function nu(v,O){if(1&v&&(t.qSk(),i.j41(0,"g",15),i.DNE(1,Dh,3,4,"g",8),i.k0s()),2&v){const E=i.XpG();i.R7$(),i.Y8G("ngIf",E.showRefLines)}}const au=["ngx-charts-x-axis",""];function Ah(v,O){if(1&v){const E=i.RV6();t.qSk(),i.j41(0,"g",2),i.bIt("dimensionsChanged",function(N){t.eBV(E);const V=i.XpG();return t.Njj(V.emitTicksHeight(N))}),i.k0s()}if(2&v){const E=i.XpG();i.Y8G("trimTicks",E.trimTicks)("rotateTicks",E.rotateTicks)("maxTickLength",E.maxTickLength)("tickFormatting",E.tickFormatting)("tickArguments",E.tickArguments)("tickStroke",E.tickStroke)("scale",E.xScale)("orient",E.xOrient)("showGridLines",E.showGridLines)("gridLineHeight",E.dims.height)("referenceLines",E.referenceLines)("showRefLines",E.showRefLines)("showRefLabels",E.showRefLabels)("width",E.dims.width)("tickValues",E.ticks)("wrapTicks",E.wrapTicks)}}function Lh(v,O){if(1&v&&(t.qSk(),i.nrm(0,"g",3)),2&v){const E=i.XpG();i.Y8G("label",E.labelText)("offset",E.labelOffset)("orient",E.orientation.Bottom)("height",E.dims.height)("width",E.dims.width)}}const S0=["ngx-charts-y-axis-ticks",""];function T0(v,O){1&v&&(t.qSk(),i.eu8(0))}function ru(v,O){if(1&v&&(t.qSk(),i.j41(0,"tspan",13),i.EFF(1),i.k0s()),2&v){const E=O.$implicit,y=O.index,N=i.XpG(6);i.BMQ("y",y*(8+N.tickSpacing)),i.R7$(),i.SpI(" ",E," ")}}function Ic(v,O){if(1&v&&(t.qSk(),i.qex(0),i.DNE(1,ru,2,2,"tspan",12),i.bVm()),2&v){const E=i.XpG().ngIf;i.R7$(),i.Y8G("ngForOf",E)}}function kc(v,O){if(1&v&&(t.qSk(),i.qex(0),i.DNE(1,Ic,2,1,"ng-container",11),i.bVm()),2&v){const E=O.ngIf;i.XpG(2);const y=i.sdS(8);i.R7$(),i.Y8G("ngIf",E.length>1)("ngIfElse",y)}}function su(v,O){if(1&v&&i.DNE(0,kc,2,2,"ng-container",8),2&v){const E=i.XpG(2).$implicit,y=i.XpG();i.Y8G("ngIf",y.tickChunks(E))}}function D0(v,O){if(1&v&&i.EFF(0),2&v){const E=i.XpG().ngIf,y=i.XpG(2);i.SpI(" ",y.tickTrim(E)," ")}}function id(v,O){if(1&v&&(t.qSk(),i.qex(0),i.j41(1,"title"),i.EFF(2),i.k0s(),i.j41(3,"text",9),i.DNE(4,T0,1,0,"ng-container",10),i.k0s(),i.DNE(5,su,1,1,"ng-template",null,1,i.C5r)(7,D0,1,1,"ng-template",null,2,i.C5r),i.bVm()),2&v){const E=O.ngIf,y=i.sdS(6),N=i.sdS(8),V=i.XpG(2);i.R7$(2),i.JRh(E),i.R7$(),i.xc7("font-size","12px"),i.BMQ("dy",V.dy)("x",V.x1)("y",V.y1)("text-anchor",V.textAnchor),i.R7$(),i.Y8G("ngIf",V.wrapTicks)("ngIfThen",y)("ngIfElse",N)}}function A0(v,O){if(1&v&&(t.qSk(),i.j41(0,"g",7),i.DNE(1,id,9,10,"ng-container",8),i.k0s()),2&v){const E=O.$implicit,y=i.XpG();i.BMQ("transform",y.transform(E)),i.R7$(),i.Y8G("ngIf",y.tickFormat(E))}}function Sd(v,O){if(1&v&&(t.qSk(),i.nrm(0,"path",14)),2&v){const E=i.XpG();i.BMQ("d",E.referenceAreaPath)("transform",E.gridLineTransform())}}function Ih(v,O){if(1&v&&(t.qSk(),i.nrm(0,"line",16)),2&v){const E=i.XpG(3);i.BMQ("x2",E.gridLineWidth)}}function L0(v,O){if(1&v&&(t.qSk(),i.nrm(0,"line",16)),2&v){const E=i.XpG(3);i.BMQ("x2",-E.gridLineWidth)}}function Td(v,O){if(1&v&&(t.qSk(),i.j41(0,"g"),i.DNE(1,Ih,1,1,"line",15)(2,L0,1,1,"line",15),i.k0s()),2&v){const E=i.XpG(2);i.BMQ("transform",E.gridLineTransform()),i.R7$(),i.Y8G("ngIf",E.orient===E.Orientation.Left),i.R7$(),i.Y8G("ngIf",E.orient===E.Orientation.Right)}}function x4(v,O){if(1&v&&(t.qSk(),i.j41(0,"g"),i.DNE(1,Td,3,3,"g",8),i.k0s()),2&v){const E=O.$implicit,y=i.XpG();i.BMQ("transform",y.transform(E)),i.R7$(),i.Y8G("ngIf",y.showGridLines)}}function C4(v,O){if(1&v&&(t.qSk(),i.j41(0,"g")(1,"title"),i.EFF(2),i.k0s(),i.j41(3,"text",19),i.EFF(4),i.k0s()()),2&v){const E=i.XpG(2).$implicit,y=i.XpG();i.R7$(2),i.JRh(y.tickTrim(y.tickFormat(E.value))),i.R7$(),i.BMQ("dy",y.dy)("y",-6)("x",y.gridLineWidth)("text-anchor",y.textAnchor),i.R7$(),i.SpI(" ",E.name," ")}}function Dd(v,O){if(1&v&&(t.qSk(),i.j41(0,"g"),i.nrm(1,"line",18),i.DNE(2,C4,5,6,"g",8),i.k0s()),2&v){const E=i.XpG().$implicit,y=i.XpG();i.BMQ("transform",y.transform(E.value)),i.R7$(),i.BMQ("x2",y.gridLineWidth),i.R7$(),i.Y8G("ngIf",y.showRefLabels)}}function kh(v,O){if(1&v&&(t.qSk(),i.j41(0,"g",17),i.DNE(1,Dd,3,3,"g",8),i.k0s()),2&v){const E=i.XpG();i.R7$(),i.Y8G("ngIf",E.showRefLines)}}const Ad=["ngx-charts-y-axis",""];function I0(v,O){if(1&v){const E=i.RV6();t.qSk(),i.j41(0,"g",2),i.bIt("dimensionsChanged",function(N){t.eBV(E);const V=i.XpG();return t.Njj(V.emitTicksWidth(N))}),i.k0s()}if(2&v){const E=i.XpG();i.Y8G("trimTicks",E.trimTicks)("maxTickLength",E.maxTickLength)("tickFormatting",E.tickFormatting)("tickArguments",E.tickArguments)("tickValues",E.ticks)("tickStroke",E.tickStroke)("scale",E.yScale)("orient",E.yOrient)("showGridLines",E.showGridLines)("gridLineWidth",E.dims.width)("referenceLines",E.referenceLines)("showRefLines",E.showRefLines)("showRefLabels",E.showRefLabels)("height",E.dims.height)("wrapTicks",E.wrapTicks)}}function ou(v,O){if(1&v&&(t.qSk(),i.nrm(0,"g",3)),2&v){const E=i.XpG();i.Y8G("label",E.labelText)("offset",E.labelOffset)("orient",E.yOrient)("height",E.dims.height)("width",E.dims.width)}}const Rh=["ngx-charts-svg-linear-gradient",""];function Oh(v,O){if(1&v&&(t.qSk(),i.nrm(0,"stop")),2&v){const E=O.$implicit;i.xc7("stop-color",E.color)("stop-opacity",E.opacity),i.BMQ("offset",E.offset+"%")}}const zh=["ngx-charts-grid-panel",""],Uh=["ngx-charts-grid-panel-series",""];function k0(v,O){if(1&v&&(t.qSk(),i.nrm(0,"g",1)),2&v){const E=O.$implicit;i.AVh("grid-panel",!0)("odd","odd"===E.class)("even","even"===E.class),i.Y8G("height",E.height)("width",E.width)("x",E.x)("y",E.y)}}const Wh=["tooltipTemplate"],Rd=(v,O)=>[v,O],pu=".ngx-charts-outer{animation:chartFadeIn linear .6s}@keyframes chartFadeIn{0%{opacity:0}20%{opacity:0}to{opacity:1}}.ngx-charts{float:left;overflow:visible}.ngx-charts .circle,.ngx-charts .cell,.ngx-charts .bar,.ngx-charts .node,.ngx-charts .link,.ngx-charts .arc{cursor:pointer}.ngx-charts .bar.active,.ngx-charts .bar:hover,.ngx-charts .cell.active,.ngx-charts .cell:hover,.ngx-charts .arc.active,.ngx-charts .arc:hover,.ngx-charts .node.active,.ngx-charts .node:hover,.ngx-charts .link.active,.ngx-charts .link:hover,.ngx-charts .card.active,.ngx-charts .card:hover{opacity:.8;transition:opacity .1s ease-in-out}.ngx-charts .bar:focus,.ngx-charts .cell:focus,.ngx-charts .arc:focus,.ngx-charts .node:focus,.ngx-charts .link:focus,.ngx-charts .card:focus{outline:none}.ngx-charts .bar.hidden,.ngx-charts .cell.hidden,.ngx-charts .arc.hidden,.ngx-charts .node.hidden,.ngx-charts .link.hidden,.ngx-charts .card.hidden{display:none}.ngx-charts g:focus{outline:none}.ngx-charts .line-series.inactive,.ngx-charts .line-series-range.inactive,.ngx-charts .polar-series-path.inactive,.ngx-charts .polar-series-area.inactive,.ngx-charts .area-series.inactive{transition:opacity .1s ease-in-out;opacity:.2}.ngx-charts .line-highlight{display:none}.ngx-charts .line-highlight.active{display:block}.ngx-charts .area{opacity:.6}.ngx-charts .circle:hover{cursor:pointer}.ngx-charts .label{font-size:12px;font-weight:400}.ngx-charts .tooltip-anchor{fill:#000}.ngx-charts .gridline-path{stroke:#ddd;stroke-width:1;fill:none}.ngx-charts .refline-path{stroke:#a8b2c7;stroke-width:1;stroke-dasharray:5;stroke-dashoffset:5}.ngx-charts .refline-label{font-size:9px}.ngx-charts .reference-area{fill-opacity:.05;fill:#000}.ngx-charts .gridline-path-dotted{stroke:#ddd;stroke-width:1;fill:none;stroke-dasharray:1,20;stroke-dashoffset:3}.ngx-charts .grid-panel rect{fill:none}.ngx-charts .grid-panel.odd rect{fill:#0000000d}\n",D1=["ngx-charts-bar",""];function A4(v,O){if(1&v&&(t.qSk(),i.j41(0,"defs"),i.nrm(1,"g",2),i.k0s()),2&v){const E=i.XpG();i.R7$(),i.Y8G("orientation",E.orientation)("name",E.gradientId)("stops",E.gradientStops)}}const $h=["ngx-charts-bar-label",""],Cu=["ngx-charts-series-vertical",""];function z4(v,O){if(1&v){const E=i.RV6();t.qSk(),i.j41(0,"g",2),i.bIt("select",function(N){t.eBV(E);const V=i.XpG(2);return t.Njj(V.onClick(N))})("activate",function(N){t.eBV(E);const V=i.XpG(2);return t.Njj(V.activate.emit(N))})("deactivate",function(N){t.eBV(E);const V=i.XpG(2);return t.Njj(V.deactivate.emit(N))}),i.k0s()}if(2&v){const E=O.$implicit,y=i.XpG(2);i.Y8G("@animationState","active")("@.disabled",!y.animations)("width",E.width)("height",E.height)("x",E.x)("y",E.y)("fill",E.color)("stops",E.gradientStops)("data",E.data)("orientation",y.barOrientation.Vertical)("roundEdges",E.roundEdges)("gradient",y.gradient)("ariaLabel",E.ariaLabel)("isActive",y.isActive(E.data))("tooltipDisabled",y.tooltipDisabled)("tooltipPlacement",y.tooltipPlacement)("tooltipType",y.tooltipType)("tooltipTitle",y.tooltipTemplate?void 0:E.tooltipText)("tooltipTemplate",y.tooltipTemplate)("tooltipContext",E.data)("noBarWhenZero",y.noBarWhenZero)("animations",y.animations)}}function Io(v,O){if(1&v&&(t.qSk(),i.j41(0,"g"),i.DNE(1,z4,1,22,"g",1),i.k0s()),2&v){const E=i.XpG();i.R7$(),i.Y8G("ngForOf",E.bars)("ngForTrackBy",E.trackBy)}}function z0(v,O){if(1&v){const E=i.RV6();t.qSk(),i.j41(0,"g",2),i.bIt("select",function(N){t.eBV(E);const V=i.XpG(2);return t.Njj(V.onClick(N))})("activate",function(N){t.eBV(E);const V=i.XpG(2);return t.Njj(V.activate.emit(N))})("deactivate",function(N){t.eBV(E);const V=i.XpG(2);return t.Njj(V.deactivate.emit(N))}),i.k0s()}if(2&v){const E=O.$implicit,y=i.XpG(2);i.Y8G("width",E.width)("height",E.height)("x",E.x)("y",E.y)("fill",E.color)("stops",E.gradientStops)("data",E.data)("orientation",y.barOrientation.Vertical)("roundEdges",E.roundEdges)("gradient",y.gradient)("ariaLabel",E.ariaLabel)("isActive",y.isActive(E.data))("tooltipDisabled",y.tooltipDisabled)("tooltipPlacement",y.tooltipPlacement)("tooltipType",y.tooltipType)("tooltipTitle",y.tooltipTemplate?void 0:E.tooltipText)("tooltipTemplate",y.tooltipTemplate)("tooltipContext",E.data)("noBarWhenZero",y.noBarWhenZero)("animations",y.animations)}}function ef(v,O){if(1&v&&(t.qSk(),i.j41(0,"g"),i.DNE(1,z0,1,20,"g",1),i.k0s()),2&v){const E=i.XpG();i.R7$(),i.Y8G("ngForOf",E.bars)("ngForTrackBy",E.trackBy)}}function tf(v,O){if(1&v){const E=i.RV6();t.qSk(),i.j41(0,"g",4),i.bIt("dimensionsChanged",function(N){const V=t.eBV(E).index,de=i.XpG(2);return t.Njj(de.dataLabelHeightChanged.emit({size:N,index:V}))}),i.k0s()}if(2&v){const E=O.$implicit,y=i.XpG(2);i.Y8G("barX",E.x)("barY",E.y)("barWidth",E.width)("barHeight",E.height)("value",E.total)("valueFormatting",y.dataLabelFormatting)("orientation",y.barOrientation.Vertical)}}function nf(v,O){if(1&v&&(t.qSk(),i.j41(0,"g"),i.DNE(1,tf,1,7,"g",3),i.k0s()),2&v){const E=i.XpG();i.R7$(),i.Y8G("ngForOf",E.barsForDataLabels)("ngForTrackBy",E.trackDataLabelBy)}}function af(v,O){if(1&v){const E=i.RV6();t.qSk(),i.j41(0,"g",5),i.bIt("dimensionsChanged",function(N){t.eBV(E);const V=i.XpG();return t.Njj(V.updateXAxisHeight(N))}),i.k0s()}if(2&v){const E=i.XpG();i.Y8G("xScale",E.xScale)("dims",E.dims)("showGridLines",E.showGridLines)("showLabel",E.showXAxisLabel)("labelText",E.xAxisLabel)("trimTicks",E.trimXAxisTicks)("rotateTicks",E.rotateXAxisTicks)("maxTickLength",E.maxXAxisTickLength)("tickFormatting",E.xAxisTickFormatting)("ticks",E.xAxisTicks)("xAxisOffset",E.dataLabelMaxHeight.negative)("wrapTicks",E.wrapTicks)}}function rf(v,O){if(1&v){const E=i.RV6();t.qSk(),i.j41(0,"g",6),i.bIt("dimensionsChanged",function(N){t.eBV(E);const V=i.XpG();return t.Njj(V.updateYAxisWidth(N))}),i.k0s()}if(2&v){const E=i.XpG();i.Y8G("yScale",E.yScale)("dims",E.dims)("showGridLines",E.showGridLines)("showLabel",E.showYAxisLabel)("labelText",E.yAxisLabel)("trimTicks",E.trimYAxisTicks)("maxTickLength",E.maxYAxisTickLength)("tickFormatting",E.yAxisTickFormatting)("ticks",E.yAxisTicks)("referenceLines",E.referenceLines)("showRefLines",E.showRefLines)("showRefLabels",E.showRefLabels)("wrapTicks",E.wrapTicks)}}function Od(v,O){if(1&v){const E=i.RV6();t.qSk(),i.j41(0,"g",6),i.bIt("dimensionsChanged",function(N){t.eBV(E);const V=i.XpG();return t.Njj(V.updateXAxisHeight(N))}),i.k0s()}if(2&v){const E=i.XpG();i.Y8G("xScale",E.groupScale)("dims",E.dims)("showLabel",E.showXAxisLabel)("labelText",E.xAxisLabel)("trimTicks",E.trimXAxisTicks)("rotateTicks",E.rotateXAxisTicks)("maxTickLength",E.maxXAxisTickLength)("tickFormatting",E.xAxisTickFormatting)("ticks",E.xAxisTicks)("xAxisOffset",E.dataLabelMaxHeight.negative)("wrapTicks",E.wrapTicks)}}function Mu(v,O){if(1&v){const E=i.RV6();t.qSk(),i.j41(0,"g",7),i.bIt("dimensionsChanged",function(N){t.eBV(E);const V=i.XpG();return t.Njj(V.updateYAxisWidth(N))}),i.k0s()}if(2&v){const E=i.XpG();i.Y8G("yScale",E.valueScale)("dims",E.dims)("showGridLines",E.showGridLines)("showLabel",E.showYAxisLabel)("labelText",E.yAxisLabel)("trimTicks",E.trimYAxisTicks)("maxTickLength",E.maxYAxisTickLength)("tickFormatting",E.yAxisTickFormatting)("ticks",E.yAxisTicks)("wrapTicks",E.wrapTicks)}}function Eu(v,O){if(1&v){const E=i.RV6();t.qSk(),i.j41(0,"g",9),i.bIt("select",function(N){const V=t.eBV(E).$implicit,de=i.XpG(2);return t.Njj(de.onClick(N,V))})("activate",function(N){const V=t.eBV(E).$implicit,de=i.XpG(2);return t.Njj(de.onActivate(N,V))})("deactivate",function(N){const V=t.eBV(E).$implicit,de=i.XpG(2);return t.Njj(de.onDeactivate(N,V))})("dataLabelHeightChanged",function(N){const V=t.eBV(E).index,de=i.XpG(2);return t.Njj(de.onDataLabelMaxHeightChanged(N,V))}),i.k0s()}if(2&v){const E=O.$implicit,y=i.XpG(2);i.Y8G("@animationState","active")("activeEntries",y.activeEntries)("xScale",y.innerScale)("yScale",y.valueScale)("colors",y.colors)("series",E.series)("dims",y.dims)("gradient",y.gradient)("tooltipDisabled",y.tooltipDisabled)("tooltipTemplate",y.tooltipTemplate)("showDataLabel",y.showDataLabel)("dataLabelFormatting",y.dataLabelFormatting)("seriesName",E.name)("roundEdges",y.roundEdges)("animations",y.animations)("noBarWhenZero",y.noBarWhenZero),i.BMQ("transform",y.groupTransform(E))}}function Pd(v,O){if(1&v&&(t.qSk(),i.j41(0,"g"),i.DNE(1,Eu,1,17,"g",8),i.k0s()),2&v){const E=i.XpG();i.R7$(),i.Y8G("ngForOf",E.results)("ngForTrackBy",E.trackBy)}}function L1(v,O){if(1&v){const E=i.RV6();t.qSk(),i.j41(0,"g",9),i.bIt("select",function(N){const V=t.eBV(E).$implicit,de=i.XpG(2);return t.Njj(de.onClick(N,V))})("activate",function(N){const V=t.eBV(E).$implicit,de=i.XpG(2);return t.Njj(de.onActivate(N,V))})("deactivate",function(N){const V=t.eBV(E).$implicit,de=i.XpG(2);return t.Njj(de.onDeactivate(N,V))})("dataLabelHeightChanged",function(N){const V=t.eBV(E).index,de=i.XpG(2);return t.Njj(de.onDataLabelMaxHeightChanged(N,V))}),i.k0s()}if(2&v){const E=O.$implicit,y=i.XpG(2);i.Y8G("activeEntries",y.activeEntries)("xScale",y.innerScale)("yScale",y.valueScale)("colors",y.colors)("series",E.series)("dims",y.dims)("gradient",y.gradient)("tooltipDisabled",y.tooltipDisabled)("tooltipTemplate",y.tooltipTemplate)("showDataLabel",y.showDataLabel)("dataLabelFormatting",y.dataLabelFormatting)("seriesName",E.name)("roundEdges",y.roundEdges)("animations",y.animations)("noBarWhenZero",y.noBarWhenZero),i.BMQ("transform",y.groupTransform(E))}}function sf(v,O){if(1&v&&(t.qSk(),i.j41(0,"g"),i.DNE(1,L1,1,16,"g",8),i.k0s()),2&v){const E=i.XpG();i.R7$(),i.Y8G("ngForOf",E.results)("ngForTrackBy",E.trackBy)}}function Mf(v,O,E){E=E||{};let y,N,V,de=null,Ge=0;function Pt(){Ge=!1===E.leading?0:+new Date,de=null,V=v.apply(y,N)}return function(){const Xt=+new Date;!Ge&&!1===E.leading&&(Ge=Xt);const hi=O-(Xt-Ge);return y=this,N=arguments,hi<=0?(clearTimeout(de),de=null,Ge=Xt,V=v.apply(y,N)):!de&&!1!==E.trailing&&(de=setTimeout(Pt,hi)),V}}function Fu(v,O){return function(y,N,V){return{configurable:!0,enumerable:V.enumerable,get:function(){return Object.defineProperty(this,N,{configurable:!0,enumerable:V.enumerable,value:Mf(V.value,v,O)}),this[N]}}}}var La=function(v){return v.Top="top",v.Bottom="bottom",v.Left="left",v.Right="right",v.Center="center",v}(La||{});function i3(v,O,E){return E===La.Top?v.top-7:E===La.Bottom?v.top+v.height-O.height+7:E===La.Center?v.top+v.height/2-O.height/2:void 0}function Ef(v,O,E){return E===La.Left?v.left-7:E===La.Right?v.left+v.width-O.width+7:E===La.Center?v.left+v.width/2-O.width/2:void 0}class Zo{static calculateVerticalAlignment(O,E,y){let N=i3(O,E,y);return N+E.height>window.innerHeight&&(N=window.innerHeight-E.height),N}static calculateVerticalCaret(O,E,y,N){let V;N===La.Top&&(V=O.height/2-y.height/2+7),N===La.Bottom&&(V=E.height-O.height/2-y.height/2-7),N===La.Center&&(V=E.height/2-y.height/2);const de=i3(O,E,N);return de+E.height>window.innerHeight&&(V+=de+E.height-window.innerHeight),V}static calculateHorizontalAlignment(O,E,y){let N=Ef(O,E,y);return N+E.width>window.innerWidth&&(N=window.innerWidth-E.width),N}static calculateHorizontalCaret(O,E,y,N){let V;N===La.Left&&(V=O.width/2-y.width/2+7),N===La.Right&&(V=E.width-O.width/2-y.width/2-7),N===La.Center&&(V=E.width/2-y.width/2);const de=Ef(O,E,N);return de+E.width>window.innerWidth&&(V+=de+E.width-window.innerWidth),V}static shouldFlip(O,E,y,N){let V=!1;return y===La.Right&&O.left+O.width+E.width+N>window.innerWidth&&(V=!0),y===La.Left&&O.left-E.width-N<0&&(V=!0),y===La.Top&&O.top-E.height-N<0&&(V=!0),y===La.Bottom&&O.top+O.height+E.height+N>window.innerHeight&&(V=!0),V}static positionCaret(O,E,y,N,V){let de=0,Ge=0;return O===La.Right?(Ge=-7,de=Zo.calculateVerticalCaret(y,E,N,V)):O===La.Left?(Ge=E.width,de=Zo.calculateVerticalCaret(y,E,N,V)):O===La.Top?(de=E.height,Ge=Zo.calculateHorizontalCaret(y,E,N,V)):O===La.Bottom&&(de=-7,Ge=Zo.calculateHorizontalCaret(y,E,N,V)),{top:de,left:Ge}}static positionContent(O,E,y,N,V){let de=0,Ge=0;return O===La.Right?(Ge=y.left+y.width+N,de=Zo.calculateVerticalAlignment(y,E,V)):O===La.Left?(Ge=y.left-E.width-N,de=Zo.calculateVerticalAlignment(y,E,V)):O===La.Top?(de=y.top-E.height-N,Ge=Zo.calculateHorizontalAlignment(y,E,V)):O===La.Bottom&&(de=y.top+y.height+N,Ge=Zo.calculateHorizontalAlignment(y,E,V)),{top:de,left:Ge}}static determinePlacement(O,E,y,N){if(Zo.shouldFlip(y,E,O,N)){if(O===La.Right)return La.Left;if(O===La.Left)return La.Right;if(O===La.Top)return La.Bottom;if(O===La.Bottom)return La.Top}return O}}let K0=(()=>{var v;class O{get cssClasses(){let y="ngx-charts-tooltip-content";return y+=` position-${this.placement}`,y+=` type-${this.type}`,y+=` ${this.cssClass}`,y}constructor(y,N,V){this.element=y,this.renderer=N,this.platformId=V}ngAfterViewInit(){setTimeout(this.position.bind(this))}position(){if(!(0,c.UE)(this.platformId))return;const y=this.element.nativeElement,N=this.host.nativeElement.getBoundingClientRect();if(!N.height&&!N.width)return;const V=y.getBoundingClientRect();this.checkFlip(N,V),this.positionContent(y,N,V),this.showCaret&&this.positionCaret(N,V),setTimeout(()=>this.renderer.addClass(y,"animate"),1)}positionContent(y,N,V){const{top:de,left:Ge}=Zo.positionContent(this.placement,V,N,this.spacing,this.alignment);this.renderer.setStyle(y,"top",`${de}px`),this.renderer.setStyle(y,"left",`${Ge}px`)}positionCaret(y,N){const V=this.caretElm.nativeElement,de=V.getBoundingClientRect(),{top:Ge,left:Pt}=Zo.positionCaret(this.placement,N,y,de,this.alignment);this.renderer.setStyle(V,"top",`${Ge}px`),this.renderer.setStyle(V,"left",`${Pt}px`)}checkFlip(y,N){this.placement=Zo.determinePlacement(this.placement,N,y,this.spacing)}onWindowResize(){this.position()}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)(i.rXU(i.aKT),i.rXU(i.sFG),i.rXU(i.Agw))},this.\u0275cmp=i.VBU({type:O,selectors:[["ngx-tooltip-content"]],viewQuery:function(N,V){if(1&N&&i.GBs(ph,5),2&N){let de;i.mGM(de=i.lsd())&&(V.caretElm=de.first)}},hostVars:2,hostBindings:function(N,V){1&N&&i.bIt("resize",function(){return V.onWindowResize()},i.tSv),2&N&&i.HbH(V.cssClasses)},inputs:{host:"host",showCaret:"showCaret",type:"type",placement:"placement",alignment:"alignment",spacing:"spacing",cssClass:"cssClass",title:"title",template:"template",context:"context"},standalone:!1,decls:6,vars:6,consts:[["caretElm",""],[3,"hidden"],[1,"tooltip-content"],[4,"ngIf"],[3,"innerHTML",4,"ngIf"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[3,"innerHTML"]],template:function(N,V){1&N&&(i.j41(0,"div"),i.nrm(1,"span",1,0),i.j41(3,"div",2),i.DNE(4,_h,2,4,"span",3)(5,td,1,1,"span",4),i.k0s()()),2&N&&(i.R7$(),i.HbH(i.VkB("tooltip-caret position-",V.placement)),i.Y8G("hidden",!V.showCaret),i.R7$(3),i.Y8G("ngIf",!V.title),i.R7$(),i.Y8G("ngIf",V.title))},dependencies:[S.bT,S.T3],styles:[".ngx-charts-tooltip-content{position:fixed;border-radius:3px;z-index:5000;display:block;font-weight:400;opacity:0;pointer-events:none!important}.ngx-charts-tooltip-content.type-popover{background:#fff;color:#060709;border:1px solid #72809b;box-shadow:0 1px 3px #0003,0 1px 1px #00000024,0 2px 1px -1px #0000001f;font-size:13px;padding:4px}.ngx-charts-tooltip-content.type-popover .tooltip-caret{position:absolute;z-index:5001;width:0;height:0}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-left{border-top:7px solid transparent;border-bottom:7px solid transparent;border-left:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-top{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-right{border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-bottom{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #fff}.ngx-charts-tooltip-content.type-tooltip{color:#fff;background:#000000bf;font-size:12px;padding:0 10px;text-align:center;pointer-events:auto}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-left{border-top:7px solid transparent;border-bottom:7px solid transparent;border-left:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-top{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-right{border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-bottom{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content .tooltip-label{display:block;line-height:1em;padding:8px 5px 5px;font-size:1em}.ngx-charts-tooltip-content .tooltip-val{display:block;font-size:1.3em;line-height:1em;padding:0 5px 8px}.ngx-charts-tooltip-content .tooltip-caret{position:absolute;z-index:5001;width:0;height:0}.ngx-charts-tooltip-content.position-right{transform:translate3d(10px,0,0)}.ngx-charts-tooltip-content.position-left{transform:translate3d(-10px,0,0)}.ngx-charts-tooltip-content.position-top{transform:translate3d(0,-10px,0)}.ngx-charts-tooltip-content.position-bottom{transform:translate3d(0,10px,0)}.ngx-charts-tooltip-content.animate{opacity:1;transition:opacity .3s,transform .3s;transform:translateZ(0);pointer-events:auto}.area-tooltip-container{padding:5px 0;pointer-events:none}.tooltip-item{text-align:left;line-height:1.2em;padding:5px 0}.tooltip-item .tooltip-item-color{display:inline-block;height:12px;width:12px;margin-right:5px;color:#5b646b;border-radius:3px}\n"],encapsulation:2}))}return v(),(0,e.Cg)([Fu(100)],O.prototype,"onWindowResize",null),O})();class wf{constructor(O){this.injectionService=O,this.defaults={},this.components=new Map}getByType(O=this.type){return this.components.get(O)}create(O){return this.createByType(this.type,O)}createByType(O,E){E=this.assignDefaults(E);const y=this.injectComponent(O,E);return this.register(O,y),y}destroy(O){const E=this.components.get(O.componentType);if(E&&E.length){const y=E.indexOf(O);y>-1&&(E[y].destroy(),E.splice(y,1))}}destroyAll(){this.destroyByType(this.type)}destroyByType(O){const E=this.components.get(O);if(E&&E.length){let y=E.length-1;for(;y>=0;)this.destroy(E[y--])}}injectComponent(O,E){return this.injectionService.appendComponent(O,E)}assignDefaults(O){const E={...this.defaults.inputs},y={...this.defaults.outputs};return!O.inputs&&!O.outputs&&(O={inputs:O}),E&&(O.inputs={...E,...O.inputs}),y&&(O.outputs={...y,...O.outputs}),O}register(O,E){this.components.has(O)||this.components.set(O,[]),this.components.get(O).push(E)}}let Tf=(()=>{var v;class O{static setGlobalRootViewContainer(y){O.globalRootViewContainer=y}constructor(y,N){this.applicationRef=y,this.injector=N}getRootViewContainer(){if(this._container)return this._container;if(O.globalRootViewContainer)return O.globalRootViewContainer;if(this.applicationRef.components.length)return this.applicationRef.components[0];throw new Error("View Container not found! ngUpgrade needs to manually set this via setRootViewContainer or setGlobalRootViewContainer.")}setRootViewContainer(y){this._container=y}getComponentRootNode(y){return function Sf(v){return v.element}(y)?y.element.nativeElement:y.hostView&&y.hostView.rootNodes.length>0?y.hostView.rootNodes[0]:y.location.nativeElement}getRootViewContainerNode(y){return this.getComponentRootNode(y)}projectComponentBindings(y,N){if(N){if(void 0!==N.inputs){const V=Object.getOwnPropertyNames(N.inputs);for(const de of V)y.instance[de]=N.inputs[de]}if(void 0!==N.outputs){const V=Object.getOwnPropertyNames(N.outputs);for(const de of V)y.instance[de]=N.outputs[de]}}return y}appendComponent(y,N={},V){V||(V=this.getRootViewContainer());const de=this.getComponentRootNode(V),Ge=new T.aI(de,this.applicationRef,this.injector),Pt=new T.A8(y),Xt=Ge.attach(Pt);return this.projectComponentBindings(Xt,N),Xt}static#e=v=()=>(this.globalRootViewContainer=null,this.\u0275fac=function(N){return new(N||O)(t.KVO(i.o8S),t.KVO(t.zZn))},this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac}))}return v(),O})(),Nu=(()=>{var v;class O extends wf{constructor(y){super(y),this.type=K0}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)(t.KVO(Tf))},this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac}))}return v(),O})();var zc=function(v){return v.Right="right",v.Below="below",v}(zc||{}),B1=function(v){return v.ScaleLegend="scaleLegend",v.Legend="legend",v}(B1||{}),aa=function(v){return v.Time="time",v.Linear="linear",v.Ordinal="ordinal",v.Quantile="quantile",v}(aa||{});function Nd(v){return v instanceof Date?v.toLocaleDateString():v.toLocaleString()}let Bu=(()=>{var v;class O{constructor(){this.isActive=!1,this.select=new i.bkB,this.activate=new i.bkB,this.deactivate=new i.bkB,this.toggle=new i.bkB}get trimmedLabel(){return this.formattedLabel||"(empty)"}onMouseEnter(){this.activate.emit({name:this.label})}onMouseLeave(){this.deactivate.emit({name:this.label})}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275cmp=i.VBU({type:O,selectors:[["ngx-charts-legend-entry"]],hostBindings:function(N,V){1&N&&i.bIt("mouseenter",function(){return V.onMouseEnter()})("mouseleave",function(){return V.onMouseLeave()})},inputs:{color:"color",label:"label",formattedLabel:"formattedLabel",isActive:"isActive"},outputs:{select:"select",activate:"activate",deactivate:"deactivate",toggle:"toggle"},standalone:!1,decls:4,vars:6,consts:[["tabindex","-1",3,"click","title"],[1,"legend-label-color",3,"click"],[1,"legend-label-text"]],template:function(N,V){1&N&&(i.j41(0,"span",0),i.bIt("click",function(){return V.select.emit(V.formattedLabel)}),i.j41(1,"span",1),i.bIt("click",function(){return V.toggle.emit(V.formattedLabel)}),i.k0s(),i.j41(2,"span",2),i.EFF(3),i.k0s()()),2&N&&(i.AVh("active",V.isActive),i.Y8G("title",V.formattedLabel),i.R7$(),i.xc7("background-color",V.color),i.R7$(2),i.SpI(" ",V.trimmedLabel," "))},encapsulation:2,changeDetection:0}))}return v(),O})(),Df=(()=>{var v;class O{constructor(y){this.cd=y,this.horizontal=!1,this.labelClick=new i.bkB,this.labelActivate=new i.bkB,this.labelDeactivate=new i.bkB,this.legendEntries=[]}ngOnChanges(y){this.update()}update(){this.cd.markForCheck(),this.legendEntries=this.getLegendEntries()}getLegendEntries(){const y=[];for(const N of this.data){const V=Nd(N);-1===y.findIndex(Ge=>Ge.label===V)&&y.push({label:N,formattedLabel:V,color:this.colors.getColor(N)})}return y}isActive(y){return!!this.activeEntries&&void 0!==this.activeEntries.find(V=>y.label===V.name)}activate(y){this.labelActivate.emit(y)}deactivate(y){this.labelDeactivate.emit(y)}trackBy(y,N){return N.label}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)(i.rXU(p.gRc))},this.\u0275cmp=i.VBU({type:O,selectors:[["ngx-charts-legend"]],inputs:{data:"data",title:"title",colors:"colors",height:"height",width:"width",activeEntries:"activeEntries",horizontal:"horizontal"},outputs:{labelClick:"labelClick",labelActivate:"labelActivate",labelDeactivate:"labelDeactivate"},standalone:!1,features:[i.OA$],decls:5,vars:9,consts:[["class","legend-title",4,"ngIf"],[1,"legend-wrap"],[1,"legend-labels"],["class","legend-label",4,"ngFor","ngForOf","ngForTrackBy"],[1,"legend-title"],[1,"legend-title-text"],[1,"legend-label"],[3,"select","activate","deactivate","label","formattedLabel","color","isActive"]],template:function(N,V){1&N&&(i.j41(0,"div"),i.DNE(1,Lc,3,1,"header",0),i.j41(2,"div",1)(3,"ul",2),i.DNE(4,vh,2,4,"li",3),i.k0s()()()),2&N&&(i.xc7("width",V.width,"px"),i.R7$(),i.Y8G("ngIf",(null==V.title?null:V.title.length)>0),i.R7$(2),i.xc7("max-height",V.height-45,"px"),i.AVh("horizontal-legend",V.horizontal),i.R7$(),i.Y8G("ngForOf",V.legendEntries)("ngForTrackBy",V.trackBy))},dependencies:[S.Sq,S.bT,Bu],styles:[".chart-legend{display:inline-block;padding:0;width:auto!important}.chart-legend .legend-title{white-space:nowrap;overflow:hidden;margin-left:10px;margin-bottom:5px;font-size:14px;font-weight:700}.chart-legend ul,.chart-legend li{padding:0;margin:0;list-style:none}.chart-legend .horizontal-legend li{display:inline-block}.chart-legend .legend-wrap{width:calc(100% - 10px)}.chart-legend .legend-labels{line-height:85%;list-style:none;text-align:left;float:left;width:100%;border-radius:3px;overflow-y:auto;overflow-x:hidden;white-space:nowrap;background:#0000000d}.chart-legend .legend-label{cursor:pointer;font-size:90%;margin:8px;color:#afb7c8}.chart-legend .legend-label:hover{color:#000;-webkit-transition:.2s;-moz-transition:.2s;transition:.2s}.chart-legend .legend-label .active .legend-label-text{color:#000}.chart-legend .legend-label-color{display:inline-block;height:15px;width:15px;margin-right:5px;color:#5b646b;border-radius:3px}.chart-legend .legend-label-text{display:inline-block;vertical-align:top;line-height:15px;font-size:12px;width:calc(100% - 20px);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.chart-legend .legend-title-text{vertical-align:bottom;display:inline-block;line-height:16px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}\n"],encapsulation:2,changeDetection:0}))}return v(),O})(),n3=(()=>{var v;class O{constructor(){this.horizontal=!1}ngOnChanges(y){const N=this.gradientString(this.colors.range(),this.colors.domain());this.gradient=`linear-gradient(to ${this.horizontal?"right":"bottom"}, ${N})`}gradientString(y,N){N.push(1);const V=[];return y.reverse().forEach((de,Ge)=>{V.push(`${de} ${Math.round(100*N[Ge])}%`)}),V.join(", ")}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275cmp=i.VBU({type:O,selectors:[["ngx-charts-scale-legend"]],inputs:{valueRange:"valueRange",colors:"colors",height:"height",width:"width",horizontal:"horizontal"},standalone:!1,features:[i.OA$],decls:8,vars:10,consts:[[1,"scale-legend"],[1,"scale-legend-label"],[1,"scale-legend-wrap"]],template:function(N,V){1&N&&(i.j41(0,"div",0)(1,"div",1)(2,"span"),i.EFF(3),i.k0s()(),i.nrm(4,"div",2),i.j41(5,"div",1)(6,"span"),i.EFF(7),i.k0s()()()),2&N&&(i.xc7("height",V.horizontal?void 0:V.height,"px")("width",V.width,"px"),i.AVh("horizontal-legend",V.horizontal),i.R7$(3),i.JRh(V.valueRange[1].toLocaleString()),i.R7$(),i.xc7("background",V.gradient),i.R7$(3),i.JRh(V.valueRange[0].toLocaleString()))},styles:[".chart-legend{display:inline-block;padding:0;width:auto!important}.chart-legend .scale-legend{text-align:center;display:flex;flex-direction:column}.chart-legend .scale-legend-wrap{display:inline-block;flex:1;width:30px;border-radius:5px;margin:0 auto}.chart-legend .scale-legend-label{font-size:12px}.chart-legend .horizontal-legend.scale-legend{flex-direction:row}.chart-legend .horizontal-legend .scale-legend-wrap{width:auto;height:30px;margin:0 16px}\n"],encapsulation:2,changeDetection:0}))}return v(),O})(),Af=(()=>{var v;class O{constructor(){this.showLegend=!1,this.animations=!0,this.legendLabelClick=new i.bkB,this.legendLabelActivate=new i.bkB,this.legendLabelDeactivate=new i.bkB,this.LegendPosition=zc,this.LegendType=B1}ngOnChanges(y){this.update()}update(){let y=0;this.showLegend&&(this.legendType=this.getLegendType(),(!this.legendOptions||this.legendOptions.position===zc.Right)&&(y=this.legendType===B1.ScaleLegend?1:2)),this.chartWidth=Math.floor(this.view[0]*(12-y)/12),this.legendWidth=this.legendOptions&&this.legendOptions.position!==zc.Right?this.chartWidth:Math.floor(this.view[0]*y/12)}getLegendType(){return this.legendOptions.scaleType===aa.Linear?B1.ScaleLegend:B1.Legend}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275cmp=i.VBU({type:O,selectors:[["ngx-charts-chart"]],inputs:{view:"view",showLegend:"showLegend",legendOptions:"legendOptions",legendType:"legendType",activeEntries:"activeEntries",animations:"animations"},outputs:{legendLabelClick:"legendLabelClick",legendLabelActivate:"legendLabelActivate",legendLabelDeactivate:"legendLabelDeactivate"},standalone:!1,features:[i.Jv_([Nu]),i.OA$],ngContentSelectors:yh,decls:5,vars:8,consts:[[1,"ngx-charts-outer"],[1,"ngx-charts"],["class","chart-legend",3,"horizontal","valueRange","colors","height","width",4,"ngIf"],["class","chart-legend",3,"horizontal","data","title","colors","height","width","activeEntries","labelClick","labelActivate","labelDeactivate",4,"ngIf"],[1,"chart-legend",3,"horizontal","valueRange","colors","height","width"],[1,"chart-legend",3,"labelClick","labelActivate","labelDeactivate","horizontal","data","title","colors","height","width","activeEntries"]],template:function(N,V){1&N&&(i.NAR(),i.j41(0,"div",0),t.qSk(),i.j41(1,"svg",1),i.SdG(2),i.k0s(),i.DNE(3,wd,1,5,"ngx-charts-scale-legend",2)(4,bh,1,7,"ngx-charts-legend",3),i.k0s()),2&N&&(i.xc7("width",V.view[0],"px")("height",V.view[1],"px"),i.R7$(),i.BMQ("width",V.chartWidth)("height",V.view[1]),i.R7$(2),i.Y8G("ngIf",V.showLegend&&V.legendType===V.LegendType.ScaleLegend),i.R7$(),i.Y8G("ngIf",V.showLegend&&V.legendType===V.LegendType.Legend))},dependencies:[S.bT,Df,n3],encapsulation:2,changeDetection:0}))}return v(),O})(),a3=(()=>{var v;class O{constructor(y,N){this.element=y,this.zone=N,this.visible=new i.bkB,this.isVisible=!1,this.runCheck()}destroy(){clearTimeout(this.timeout)}onVisibilityChange(){this.zone.run(()=>{this.isVisible=!0,this.visible.emit(!0)})}runCheck(){const y=()=>{if(!this.element)return;const{offsetHeight:N,offsetWidth:V}=this.element.nativeElement;N&&V?(clearTimeout(this.timeout),this.onVisibilityChange()):(clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>y(),100)}))};this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>y())})}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)(i.rXU(i.aKT),i.rXU(i.SKi))},this.\u0275dir=i.FsC({type:O,selectors:[["visibility-observer"]],outputs:{visible:"visible"},standalone:!1}))}return v(),O})();function r3(v){return"[object Date]"===toString.call(v)}let od=(()=>{var v;class O{constructor(y,N,V,de){this.chartElement=y,this.zone=N,this.cd=V,this.platformId=de,this.scheme="cool",this.schemeType=aa.Ordinal,this.animations=!0,this.select=new i.bkB}ngOnInit(){(0,c.Vy)(this.platformId)&&(this.animations=!1)}ngAfterViewInit(){this.bindWindowResizeEvent(),this.visibilityObserver=new a3(this.chartElement,this.zone),this.visibilityObserver.visible.subscribe(this.update.bind(this))}ngOnDestroy(){this.unbindEvents(),this.visibilityObserver&&(this.visibilityObserver.visible.unsubscribe(),this.visibilityObserver.destroy())}ngOnChanges(y){this.update()}update(){if(this.results=this.results?this.cloneData(this.results):[],this.view)this.width=this.view[0],this.height=this.view[1];else{const y=this.getContainerDims();y&&(this.width=y.width,this.height=y.height)}this.width||(this.width=600),this.height||(this.height=400),this.width=Math.floor(this.width),this.height=Math.floor(this.height),this.cd&&this.cd.markForCheck()}getContainerDims(){let y,N;const V=this.chartElement.nativeElement;if((0,c.UE)(this.platformId)&&null!==V.parentNode){const de=V.parentNode.getBoundingClientRect();y=de.width,N=de.height}return y&&N?{width:y,height:N}:null}formatDates(){for(let y=0;y{this.update(),this.cd&&this.cd.markForCheck()});this.resizeSubscription=N}cloneData(y){const N=[];for(const V of y){const de={};if(void 0!==V.name&&(de.name=V.name),void 0!==V.value&&(de.value=V.value),void 0!==V.series){de.series=[];for(const Ge of V.series){const Pt=Object.assign({},Ge);de.series.push(Pt)}}void 0!==V.extra&&(de.extra=JSON.parse(JSON.stringify(V.extra))),void 0!==V.source&&(de.source=V.source),void 0!==V.target&&(de.target=V.target),N.push(de)}return N}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)(i.rXU(i.aKT),i.rXU(i.SKi),i.rXU(p.gRc),i.rXU(i.Agw))},this.\u0275cmp=i.VBU({type:O,selectors:[["base-chart"]],inputs:{results:"results",view:"view",scheme:"scheme",schemeType:"schemeType",customColors:"customColors",animations:"animations"},outputs:{select:"select"},standalone:!1,features:[i.OA$],decls:1,vars:0,template:function(N,V){1&N&&i.nrm(0,"div")},encapsulation:2}))}return v(),O})();var xr=function(v){return v.Top="top",v.Bottom="bottom",v.Left="left",v.Right="right",v}(xr||{});let s3=(()=>{var v;class O{constructor(y){this.textHeight=25,this.margin=5,this.element=y.nativeElement}ngOnChanges(y){this.update()}update(){switch(this.strokeWidth="0.01",this.textAnchor="middle",this.transform="",this.orient){case xr.Top:case xr.Bottom:this.y=this.offset,this.x=this.width/2;break;case xr.Left:this.y=-(this.offset+this.textHeight+this.margin),this.x=-this.height/2,this.transform="rotate(270)";break;case xr.Right:this.y=this.offset+this.margin,this.x=-this.height/2,this.transform="rotate(270)"}}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)(i.rXU(i.aKT))},this.\u0275cmp=i.VBU({type:O,selectors:[["g","ngx-charts-axis-label",""]],inputs:{orient:"orient",label:"label",offset:"offset",width:"width",height:"height"},standalone:!1,features:[i.OA$],attrs:tu,decls:2,vars:6,template:function(N,V){1&N&&(t.qSk(),i.j41(0,"text"),i.EFF(1),i.k0s()),2&N&&(i.BMQ("stroke-width",V.strokeWidth)("x",V.x)("y",V.y)("text-anchor",V.textAnchor)("transform",V.transform),i.R7$(),i.SpI(" ",V.label," "))},encapsulation:2,changeDetection:0}))}return v(),O})();function o3(v,O=16){return"string"!=typeof v?"number"==typeof v?v+"":"":(v=v.trim()).length<=O?v:`${v.slice(0,O)}...`}function zu(v,O){if(v.length>O){const E=[],y=Math.floor(v.length/O);for(let N=0;N{const Ge=(V.pop()||"")+" ";return Ge.length+de.length>O?[...V,Ge.trim(),de.trim()]:[...V,Ge+de]},[]);else{let V=0;for(;VE&&(N=N.splice(0,E),N[N.length-1]+="..."),N}var ll=function(v){return v.Start="start",v.Middle="middle",v.End="end",v}(ll||{});function Uc(v,O,E,y,N,[V,de,Ge,Pt]){let Xt="";return Xt=`M${[v+N,O]}`,Xt+="h"+((E=0===(E=Math.floor(E))?1:E)-2*N),Xt+=de?`a${[N,N]} 0 0 1 ${[N,N]}`:`h${N}v${N}`,Xt+="v"+((y=0===(y=Math.floor(y))?1:y)-2*N),Xt+=Pt?`a${[N,N]} 0 0 1 ${[-N,N]}`:`v${N}h${-N}`,Xt+="h"+(2*N-E),Xt+=Ge?`a${[N,N]} 0 0 1 ${[-N,-N]}`:`h${-N}v${-N}`,Xt+="v"+(2*N-y),Xt+=V?`a${[N,N]} 0 0 1 ${[N,-N]}`:`v${-N}h${N}`,Xt+="z",Xt}let Lf=(()=>{var v;class O{get isWrapTicksSupported(){return this.wrapTicks&&this.scale.step}constructor(y){this.platformId=y,this.tickArguments=[5],this.tickStroke="#ccc",this.trimTicks=!0,this.maxTickLength=16,this.showGridLines=!1,this.rotateTicks=!0,this.wrapTicks=!1,this.showRefLabels=!1,this.showRefLines=!1,this.dimensionsChanged=new i.bkB,this.verticalSpacing=20,this.rotateLabels=!1,this.innerTickSize=6,this.outerTickSize=6,this.tickPadding=3,this.textAnchor=ll.Middle,this.maxTicksLength=0,this.maxAllowedLength=16,this.height=0,this.approxHeight=10,this.maxPossibleLengthForTickIfWrapped=16,this.referenceLineLength=0}ngOnChanges(y){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,c.UE)(this.platformId))return void this.dimensionsChanged.emit({height:this.approxHeight});const y=parseInt(this.ticksElement.nativeElement.getBoundingClientRect().height,10);y!==this.height&&(this.height=y,this.dimensionsChanged.emit({height:this.height}),setTimeout(()=>this.updateDims()))}update(){const y=this.scale;this.adjustedScale=this.scale.bandwidth?function(de){return this.scale(de)+.5*this.scale.bandwidth()}:this.scale,this.ticks=this.getTicks();const N=this.orient===xr.Top||this.orient===xr.Right?-1:1;switch(this.tickSpacing=Math.max(this.innerTickSize,0)+this.tickPadding,this.orient){case xr.Bottom:this.transform=function(de){return"translate("+this.adjustedScale(de)+",0)"},this.textAnchor=ll.Middle,this.x2=this.innerTickSize*N,this.x1=this.tickSpacing*N,this.dx=N<0?"0em":".71em";break;case xr.Left:this.transform=function(de){return"translate(0,"+this.adjustedScale(de)+")"},this.textAnchor=ll.End,this.y2=this.innerTickSize*-N,this.y1=this.tickSpacing*-N,this.dx=".32em";break;case xr.Top:this.transform=function(de){return"translate("+this.adjustedScale(de)+",0)"},this.textAnchor=ll.Middle,this.y2=this.innerTickSize*N,this.y1=this.tickSpacing*N,this.dx=N<0?"0em":".71em";break;case xr.Right:this.transform=function(de){return"translate(0,"+this.adjustedScale(de)+")"},this.textAnchor=ll.Start,this.x2=this.innerTickSize*-N,this.x1=this.tickSpacing*-N,this.dx=".32em"}this.tickFormat=this.tickFormatting?this.tickFormatting:y.tickFormat?y.tickFormat.apply(y,this.tickArguments):function(de){return"Date"===de.constructor.name?de.toLocaleDateString():de.toLocaleString()};const V=this.rotateTicks?this.getRotationAngle(this.ticks):null;this.textTransform="",V&&0!==V?(this.textTransform=`rotate(${V})`,this.textAnchor=ll.End,this.verticalSpacing=10):this.textAnchor=ll.Middle,setTimeout(()=>this.updateDims())}setReferencelines(){this.refMin=this.adjustedScale(Math.min.apply(null,this.referenceLines.map(y=>y.value))),this.refMax=this.adjustedScale(Math.max.apply(null,this.referenceLines.map(y=>y.value))),this.referenceLineLength=this.referenceLines.length,this.referenceAreaPath=Uc(this.refMax,25-this.gridLineHeight,this.refMin-this.refMax,this.gridLineHeight,0,[!1,!1,!1,!1])}getRotationAngle(y){let N=0;this.maxTicksLength=0;for(let Oi=0;Oithis.maxTicksLength&&(this.maxTicksLength=on)}const Ge=7*Math.min(this.maxTicksLength,this.maxAllowedLength);let Pt=Ge;const Xt=Math.floor(this.width/y.length);for(;Pt>Xt&&N>-90;)N-=30,Pt=Math.cos(N*(Math.PI/180))*Ge;let hi=14;if(this.isWrapTicksSupported){const Oi=this.ticks.reduce((on,Wn)=>Wn.length>on.length?Wn:on,"");hi=14*(this.tickChunks(Oi).length||1),this.maxPossibleLengthForTickIfWrapped=this.getMaxPossibleLengthForTick(Oi)}const Si=0!==N?Math.max(Math.abs(Math.sin(N*Math.PI/180))*this.maxTickLength*7,10):hi;return this.approxHeight=Math.min(Si,200),this.showRefLines&&this.referenceLines&&this.setReferencelines(),N}getTicks(){let y;const N=this.getMaxTicks(20),V=this.getMaxTicks(100);return this.tickValues?y=this.tickValues:this.scale.ticks?y=this.scale.ticks.apply(this.scale,[V]):(y=this.scale.domain(),y=zu(y,N)),y}getMaxTicks(y){return Math.floor(this.width/y)}tickTransform(y){return"translate("+this.adjustedScale(y)+","+this.verticalSpacing+")"}gridLineTransform(){return`translate(0,${-this.verticalSpacing-5})`}tickTrim(y){return this.trimTicks?o3(y,this.maxTickLength):y}getMaxPossibleLengthForTick(y){if(this.scale.bandwidth){const V=Math.floor(this.scale.bandwidth()/7),de=y.slice(0,V);return Math.max(de.length,this.maxTickLength)}return this.maxTickLength}tickChunks(y){if(y.toString().length>this.maxTickLength&&this.scale.bandwidth){let V=this.rotateTicks?Math.floor(this.scale.step()/14):5;if(V<=1)return[this.tickTrim(y)];let de=Math.max(this.maxPossibleLengthForTickIfWrapped,this.maxTickLength);return(0,c.UE)(this.platformId)||(de=Math.floor(Math.min(this.approxHeight/5,Math.max(this.maxPossibleLengthForTickIfWrapped,this.maxTickLength)))),V=Math.min(V,5),l3(y,de,V<1?1:V)}return[this.tickTrim(y)]}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)(i.rXU(i.Agw))},this.\u0275cmp=i.VBU({type:O,selectors:[["g","ngx-charts-x-axis-ticks",""]],viewQuery:function(N,V){if(1&N&&i.GBs(C1,5),2&N){let de;i.mGM(de=i.lsd())&&(V.ticksElement=de.first)}},inputs:{scale:"scale",orient:"orient",tickArguments:"tickArguments",tickValues:"tickValues",tickStroke:"tickStroke",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",gridLineHeight:"gridLineHeight",width:"width",rotateTicks:"rotateTicks",wrapTicks:"wrapTicks",referenceLines:"referenceLines",showRefLabels:"showRefLabels",showRefLines:"showRefLines"},outputs:{dimensionsChanged:"dimensionsChanged"},standalone:!1,features:[i.OA$],attrs:xh,decls:6,vars:4,consts:[["ticksel",""],["tmplMultilineTick",""],["tmplSinglelineTick",""],["class","tick",4,"ngFor","ngForOf"],[4,"ngFor","ngForOf"],["class","reference-area",4,"ngIf"],["class","ref-line",4,"ngFor","ngForOf"],[1,"tick"],[4,"ngIf"],["stroke-width","0.01","font-size","12px"],[4,"ngIf","ngIfThen","ngIfElse"],["x","0",4,"ngFor","ngForOf"],["x","0"],["y2","0",1,"gridline-path","gridline-path-vertical"],[1,"reference-area"],[1,"ref-line"],["y1","25",1,"refline-path","gridline-path-vertical"],["transform","rotate(-270) translate(5, -5)",1,"refline-label"]],template:function(N,V){1&N&&(t.qSk(),i.j41(0,"g",null,0),i.DNE(2,b4,2,2,"g",3),i.k0s(),i.DNE(3,iu,2,2,"g",4)(4,M1,1,2,"path",5)(5,nu,2,1,"g",6)),2&N&&(i.R7$(2),i.Y8G("ngForOf",V.ticks),i.R7$(),i.Y8G("ngForOf",V.ticks),i.R7$(),i.Y8G("ngIf",V.referenceLineLength>1&&V.refMax&&V.refMin&&V.showRefLines),i.R7$(),i.Y8G("ngForOf",V.referenceLines))},dependencies:[S.Sq,S.bT],encapsulation:2,changeDetection:0}))}return v(),O})(),c3=(()=>{var v;class O{constructor(){this.rotateTicks=!0,this.showGridLines=!1,this.xOrient=xr.Bottom,this.xAxisOffset=0,this.wrapTicks=!1,this.dimensionsChanged=new i.bkB,this.xAxisClassName="x axis",this.labelOffset=0,this.fill="none",this.stroke="stroke",this.tickStroke="#ccc",this.strokeWidth="none",this.padding=5,this.orientation=xr}ngOnChanges(y){this.update()}update(){this.transform=`translate(0,${this.xAxisOffset+this.padding+this.dims.height})`,typeof this.xAxisTickCount<"u"&&(this.tickArguments=[this.xAxisTickCount])}emitTicksHeight({height:y}){const N=y+25+5;N!==this.labelOffset&&(this.labelOffset=N,setTimeout(()=>{this.dimensionsChanged.emit({height:y})},0))}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275cmp=i.VBU({type:O,selectors:[["g","ngx-charts-x-axis",""]],viewQuery:function(N,V){if(1&N&&i.GBs(Lf,5),2&N){let de;i.mGM(de=i.lsd())&&(V.ticksComponent=de.first)}},inputs:{xScale:"xScale",dims:"dims",trimTicks:"trimTicks",rotateTicks:"rotateTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",showLabel:"showLabel",labelText:"labelText",ticks:"ticks",xAxisTickCount:"xAxisTickCount",xOrient:"xOrient",referenceLines:"referenceLines",showRefLines:"showRefLines",showRefLabels:"showRefLabels",xAxisOffset:"xAxisOffset",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},standalone:!1,features:[i.OA$],attrs:au,decls:3,vars:4,consts:[["ngx-charts-x-axis-ticks","",3,"trimTicks","rotateTicks","maxTickLength","tickFormatting","tickArguments","tickStroke","scale","orient","showGridLines","gridLineHeight","referenceLines","showRefLines","showRefLabels","width","tickValues","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width",4,"ngIf"],["ngx-charts-x-axis-ticks","",3,"dimensionsChanged","trimTicks","rotateTicks","maxTickLength","tickFormatting","tickArguments","tickStroke","scale","orient","showGridLines","gridLineHeight","referenceLines","showRefLines","showRefLabels","width","tickValues","wrapTicks"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(N,V){1&N&&(t.qSk(),i.j41(0,"g"),i.DNE(1,Ah,1,16,"g",0)(2,Lh,1,5,"g",1),i.k0s()),2&N&&(i.BMQ("class",V.xAxisClassName)("transform",V.transform),i.R7$(),i.Y8G("ngIf",V.xScale),i.R7$(),i.Y8G("ngIf",V.showLabel))},dependencies:[S.bT,s3,Lf],encapsulation:2,changeDetection:0}))}return v(),O})(),Uu=(()=>{var v;class O{constructor(y){this.platformId=y,this.tickArguments=[5],this.tickStroke="#ccc",this.trimTicks=!0,this.maxTickLength=16,this.showGridLines=!1,this.showRefLabels=!1,this.showRefLines=!1,this.wrapTicks=!1,this.dimensionsChanged=new i.bkB,this.innerTickSize=6,this.tickPadding=3,this.verticalSpacing=20,this.textAnchor=ll.Middle,this.width=0,this.outerTickSize=6,this.rotateLabels=!1,this.referenceLineLength=0,this.Orientation=xr}ngOnChanges(y){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,c.UE)(this.platformId))return this.width=this.getApproximateAxisWidth(),void this.dimensionsChanged.emit({width:this.width});const y=parseInt(this.ticksElement.nativeElement.getBoundingClientRect().width,10);y!==this.width&&(this.width=y,this.dimensionsChanged.emit({width:y}),setTimeout(()=>this.updateDims()))}update(){const y=this.scale,N=this.orient===xr.Top||this.orient===xr.Right?-1:1;switch(this.tickSpacing=Math.max(this.innerTickSize,0)+this.tickPadding,this.ticks=this.getTicks(),this.tickFormat=this.tickFormatting?this.tickFormatting:y.tickFormat?y.tickFormat.apply(y,this.tickArguments):function(V){return"Date"===V.constructor.name?V.toLocaleDateString():V.toLocaleString()},this.adjustedScale=y.bandwidth?V=>{const de=y(V)+.5*y.bandwidth();if(this.wrapTicks&&V.toString().length>this.maxTickLength){const Ge=this.tickChunks(V).length;if(1===Ge)return de;const hi=.5*y.bandwidth()-8*Ge*.5;return y(V)+hi}return de}:y,this.showRefLines&&this.referenceLines&&this.setReferencelines(),this.orient){case xr.Top:case xr.Bottom:this.transform=function(V){return"translate("+this.adjustedScale(V)+",0)"},this.textAnchor=ll.Middle,this.y2=this.innerTickSize*N,this.y1=this.tickSpacing*N,this.dy=N<0?"0em":".71em";break;case xr.Left:this.transform=function(V){return"translate(0,"+this.adjustedScale(V)+")"},this.textAnchor=ll.End,this.x2=this.innerTickSize*-N,this.x1=this.tickSpacing*-N,this.dy=".32em";break;case xr.Right:this.transform=function(V){return"translate(0,"+this.adjustedScale(V)+")"},this.textAnchor=ll.Start,this.x2=this.innerTickSize*-N,this.x1=this.tickSpacing*-N,this.dy=".32em"}setTimeout(()=>this.updateDims())}setReferencelines(){this.refMin=this.adjustedScale(Math.min.apply(null,this.referenceLines.map(y=>y.value))),this.refMax=this.adjustedScale(Math.max.apply(null,this.referenceLines.map(y=>y.value))),this.referenceLineLength=this.referenceLines.length,this.referenceAreaPath=Uc(0,this.refMax,this.gridLineWidth,this.refMin-this.refMax,0,[!1,!1,!1,!1])}getTicks(){let y;const N=this.getMaxTicks(20),V=this.getMaxTicks(50);return this.tickValues?y=this.tickValues:this.scale.ticks?y=this.scale.ticks.apply(this.scale,[V]):(y=this.scale.domain(),y=zu(y,N)),y}getMaxTicks(y){return Math.floor(this.height/y)}tickTransform(y){return`translate(${this.adjustedScale(y)},${this.verticalSpacing})`}gridLineTransform(){return"translate(5,0)"}tickTrim(y){return this.trimTicks?o3(y,this.maxTickLength):y}getApproximateAxisWidth(){return 7*Math.max(...this.ticks.map(V=>this.tickTrim(this.tickFormat(V)).length))}tickChunks(y){if(y.toString().length>this.maxTickLength&&this.scale.bandwidth){const N=this.maxTickLength,V=Math.floor(this.scale.bandwidth()/15);return V<=1?[this.tickTrim(y)]:l3(y,N,Math.min(V,5))}return[this.tickFormat(y)]}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)(i.rXU(i.Agw))},this.\u0275cmp=i.VBU({type:O,selectors:[["g","ngx-charts-y-axis-ticks",""]],viewQuery:function(N,V){if(1&N&&i.GBs(C1,5),2&N){let de;i.mGM(de=i.lsd())&&(V.ticksElement=de.first)}},inputs:{scale:"scale",orient:"orient",tickArguments:"tickArguments",tickValues:"tickValues",tickStroke:"tickStroke",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",gridLineWidth:"gridLineWidth",height:"height",referenceLines:"referenceLines",showRefLabels:"showRefLabels",showRefLines:"showRefLines",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},standalone:!1,features:[i.OA$],attrs:S0,decls:6,vars:4,consts:[["ticksel",""],["tmplMultilineTick",""],["tmplSinglelineTick",""],["class","tick",4,"ngFor","ngForOf"],["class","reference-area",4,"ngIf"],[4,"ngFor","ngForOf"],["class","ref-line",4,"ngFor","ngForOf"],[1,"tick"],[4,"ngIf"],["stroke-width","0.01"],[4,"ngIf","ngIfThen","ngIfElse"],[4,"ngIf","ngIfElse"],["x","0",4,"ngFor","ngForOf"],["x","0"],[1,"reference-area"],["class","gridline-path gridline-path-horizontal","x1","0",4,"ngIf"],["x1","0",1,"gridline-path","gridline-path-horizontal"],[1,"ref-line"],["x1","0",1,"refline-path","gridline-path-horizontal"],[1,"refline-label"]],template:function(N,V){1&N&&(t.qSk(),i.j41(0,"g",null,0),i.DNE(2,A0,2,2,"g",3),i.k0s(),i.DNE(3,Sd,1,2,"path",4)(4,x4,2,2,"g",5)(5,kh,2,1,"g",6)),2&N&&(i.R7$(2),i.Y8G("ngForOf",V.ticks),i.R7$(),i.Y8G("ngIf",V.referenceLineLength>1&&V.refMax&&V.refMin&&V.showRefLines),i.R7$(),i.Y8G("ngForOf",V.ticks),i.R7$(),i.Y8G("ngForOf",V.referenceLines))},dependencies:[S.Sq,S.bT],encapsulation:2,changeDetection:0}))}return v(),O})(),If=(()=>{var v;class O{constructor(){this.showGridLines=!1,this.yOrient=xr.Left,this.yAxisOffset=0,this.wrapTicks=!1,this.dimensionsChanged=new i.bkB,this.yAxisClassName="y axis",this.labelOffset=15,this.fill="none",this.stroke="#CCC",this.tickStroke="#CCC",this.strokeWidth=1,this.padding=5}ngOnChanges(y){this.update()}update(){this.offset=-(this.yAxisOffset+this.padding),this.yOrient===xr.Right?(this.labelOffset=65,this.transform=`translate(${this.offset+this.dims.width} , 0)`):this.transform=`translate(${this.offset} , 0)`,void 0!==this.yAxisTickCount&&(this.tickArguments=[this.yAxisTickCount])}emitTicksWidth({width:y}){y!==this.labelOffset&&this.yOrient===xr.Right?(this.labelOffset=y+this.labelOffset,setTimeout(()=>{this.dimensionsChanged.emit({width:y})},0)):y!==this.labelOffset&&(this.labelOffset=y,setTimeout(()=>{this.dimensionsChanged.emit({width:y})},0))}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275cmp=i.VBU({type:O,selectors:[["g","ngx-charts-y-axis",""]],viewQuery:function(N,V){if(1&N&&i.GBs(Uu,5),2&N){let de;i.mGM(de=i.lsd())&&(V.ticksComponent=de.first)}},inputs:{yScale:"yScale",dims:"dims",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",ticks:"ticks",showGridLines:"showGridLines",showLabel:"showLabel",labelText:"labelText",yAxisTickCount:"yAxisTickCount",yOrient:"yOrient",referenceLines:"referenceLines",showRefLines:"showRefLines",showRefLabels:"showRefLabels",yAxisOffset:"yAxisOffset",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},standalone:!1,features:[i.OA$],attrs:Ad,decls:3,vars:4,consts:[["ngx-charts-y-axis-ticks","",3,"trimTicks","maxTickLength","tickFormatting","tickArguments","tickValues","tickStroke","scale","orient","showGridLines","gridLineWidth","referenceLines","showRefLines","showRefLabels","height","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width",4,"ngIf"],["ngx-charts-y-axis-ticks","",3,"dimensionsChanged","trimTicks","maxTickLength","tickFormatting","tickArguments","tickValues","tickStroke","scale","orient","showGridLines","gridLineWidth","referenceLines","showRefLines","showRefLabels","height","wrapTicks"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(N,V){1&N&&(t.qSk(),i.j41(0,"g"),i.DNE(1,I0,1,15,"g",0)(2,ou,1,5,"g",1),i.k0s()),2&N&&(i.BMQ("class",V.yAxisClassName)("transform",V.transform),i.R7$(),i.Y8G("ngIf",V.yScale),i.R7$(),i.Y8G("ngIf",V.showLabel))},dependencies:[S.bT,s3,Uu],encapsulation:2,changeDetection:0}))}return v(),O})(),d3=(()=>{var v;class O{static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275mod=i.$C({type:O}),this.\u0275inj=t.G2t({imports:[S.MD]}))}return v(),O})();var Bd=function(v){return v.popover="popover",v.tooltip="tooltip",v}(Bd||{}),Q0=function(v){return v[v.all="all"]="all",v[v.focus="focus"]="focus",v[v.mouseover="mouseover"]="mouseover",v}(Q0||{});let u3=(()=>{var v;class O{get listensForFocus(){return this.tooltipShowEvent===Q0.all||this.tooltipShowEvent===Q0.focus}get listensForHover(){return this.tooltipShowEvent===Q0.all||this.tooltipShowEvent===Q0.mouseover}constructor(y,N,V){this.tooltipService=y,this.viewContainerRef=N,this.renderer=V,this.tooltipCssClass="",this.tooltipAppendToBody=!0,this.tooltipSpacing=10,this.tooltipDisabled=!1,this.tooltipShowCaret=!0,this.tooltipPlacement=La.Top,this.tooltipAlignment=La.Center,this.tooltipType=Bd.popover,this.tooltipCloseOnClickOutside=!0,this.tooltipCloseOnMouseLeave=!0,this.tooltipHideTimeout=300,this.tooltipShowTimeout=100,this.tooltipShowEvent=Q0.all,this.tooltipImmediateExit=!1,this.show=new i.bkB,this.hide=new i.bkB}ngOnDestroy(){this.hideTooltip(!0)}onFocus(){this.listensForFocus&&this.showTooltip()}onBlur(){this.listensForFocus&&this.hideTooltip(!0)}onMouseEnter(){this.listensForHover&&this.showTooltip()}onMouseLeave(y){if(this.listensForHover&&this.tooltipCloseOnMouseLeave){if(clearTimeout(this.timeout),this.component&&this.component.instance.element.nativeElement.contains(y))return;this.hideTooltip(this.tooltipImmediateExit)}}onMouseClick(){this.listensForHover&&this.hideTooltip(!0)}showTooltip(y){if(this.component||this.tooltipDisabled)return;const N=y?0:this.tooltipShowTimeout+(navigator.userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)?400:0);clearTimeout(this.timeout),this.timeout=setTimeout(()=>{this.tooltipService.destroyAll();const V=this.createBoundOptions();this.component=this.tooltipService.create(V),setTimeout(()=>{this.component&&this.addHideListeners(this.component.instance.element.nativeElement)},10),this.show.emit(!0)},N)}addHideListeners(y){this.mouseEnterContentEvent=this.renderer.listen(y,"mouseenter",()=>{clearTimeout(this.timeout)}),this.tooltipCloseOnMouseLeave&&(this.mouseLeaveContentEvent=this.renderer.listen(y,"mouseleave",()=>{this.hideTooltip(this.tooltipImmediateExit)})),this.tooltipCloseOnClickOutside&&(this.documentClickEvent=this.renderer.listen("window","click",N=>{y.contains(N.target)||this.hideTooltip()}))}hideTooltip(y=!1){if(!this.component)return;const N=()=>{this.mouseLeaveContentEvent&&this.mouseLeaveContentEvent(),this.mouseEnterContentEvent&&this.mouseEnterContentEvent(),this.documentClickEvent&&this.documentClickEvent(),this.hide.emit(!0),this.tooltipService.destroy(this.component),this.component=void 0};clearTimeout(this.timeout),y?N():this.timeout=setTimeout(N,this.tooltipHideTimeout)}createBoundOptions(){return{title:this.tooltipTitle,template:this.tooltipTemplate,host:this.viewContainerRef.element,placement:this.tooltipPlacement,alignment:this.tooltipAlignment,type:this.tooltipType,showCaret:this.tooltipShowCaret,cssClass:this.tooltipCssClass,spacing:this.tooltipSpacing,context:this.tooltipContext}}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)(i.rXU(Nu),i.rXU(i.c1b),i.rXU(i.sFG))},this.\u0275dir=i.FsC({type:O,selectors:[["","ngx-tooltip",""]],hostBindings:function(N,V){1&N&&i.bIt("focusin",function(){return V.onFocus()})("blur",function(){return V.onBlur()})("mouseenter",function(){return V.onMouseEnter()})("mouseleave",function(Ge){return V.onMouseLeave(Ge.target)})("click",function(){return V.onMouseClick()})},inputs:{tooltipCssClass:"tooltipCssClass",tooltipTitle:"tooltipTitle",tooltipAppendToBody:"tooltipAppendToBody",tooltipSpacing:"tooltipSpacing",tooltipDisabled:"tooltipDisabled",tooltipShowCaret:"tooltipShowCaret",tooltipPlacement:"tooltipPlacement",tooltipAlignment:"tooltipAlignment",tooltipType:"tooltipType",tooltipCloseOnClickOutside:"tooltipCloseOnClickOutside",tooltipCloseOnMouseLeave:"tooltipCloseOnMouseLeave",tooltipHideTimeout:"tooltipHideTimeout",tooltipShowTimeout:"tooltipShowTimeout",tooltipTemplate:"tooltipTemplate",tooltipShowEvent:"tooltipShowEvent",tooltipContext:"tooltipContext",tooltipImmediateExit:"tooltipImmediateExit"},outputs:{show:"show",hide:"hide"},standalone:!1}))}return v(),O})(),h3=(()=>{var v;class O{static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275mod=i.$C({type:O}),this.\u0275inj=t.G2t({providers:[Tf,Nu],imports:[S.MD]}))}return v(),O})();const Vc={};function z1(){let v=("0000"+(Math.random()*Math.pow(36,4)|0).toString(36)).slice(-4);return v=`a${v}`,Vc[v]?z1():(Vc[v]=!0,v)}var Es=function(v){return v.Vertical="vertical",v.Horizontal="horizontal",v}(Es||{});let U1=(()=>{var v;class O{constructor(){this.orientation=Es.Vertical}ngOnChanges(y){this.x1="0%",this.x2="0%",this.y1="0%",this.y2="0%",this.orientation===Es.Horizontal?this.x2="100%":this.orientation===Es.Vertical&&(this.y1="100%")}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275cmp=i.VBU({type:O,selectors:[["g","ngx-charts-svg-linear-gradient",""]],inputs:{orientation:"orientation",name:"name",stops:"stops"},standalone:!1,features:[i.OA$],attrs:Rh,decls:2,vars:6,consts:[[3,"id"],[3,"stop-color","stop-opacity",4,"ngFor","ngForOf"]],template:function(N,V){1&N&&(t.qSk(),i.j41(0,"linearGradient",0),i.DNE(1,Oh,1,5,"stop",1),i.k0s()),2&N&&(i.Y8G("id",V.name),i.BMQ("x1",V.x1)("y1",V.y1)("x2",V.x2)("y2",V.y2),i.R7$(),i.Y8G("ngForOf",V.stops))},dependencies:[S.Sq],encapsulation:2,changeDetection:0}))}return v(),O})(),p3=(()=>{var v;class O{static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275cmp=i.VBU({type:O,selectors:[["g","ngx-charts-grid-panel",""]],inputs:{width:"width",height:"height",x:"x",y:"y"},standalone:!1,attrs:zh,decls:1,vars:4,consts:[["stroke","none",1,"gridpanel"]],template:function(N,V){1&N&&(t.qSk(),i.nrm(0,"rect",0)),2&N&&i.BMQ("height",V.height)("width",V.width)("x",V.x)("y",V.y)},encapsulation:2,changeDetection:0}))}return v(),O})();var H1=function(v){return v.Odd="odd",v.Even="even",v}(H1||{});let $0,kf=(()=>{var v;class O{ngOnChanges(y){this.update()}update(){this.gridPanels=this.getGridPanels()}getGridPanels(){return this.data.map(y=>{let N,V,de,Ge,Pt,Xt=H1.Odd;if(this.orient===Es.Vertical){const hi=this.xScale(y.name);Number.parseInt((hi/this.xScale.step()).toString(),10)%2==1&&(Xt=H1.Even),N=this.xScale.bandwidth()*this.xScale.paddingInner(),V=this.xScale.bandwidth()+N,de=this.dims.height,Ge=this.xScale(y.name)-N/2,Pt=0}else if(this.orient===Es.Horizontal){const hi=this.yScale(y.name);Number.parseInt((hi/this.yScale.step()).toString(),10)%2==1&&(Xt=H1.Even),N=this.yScale.bandwidth()*this.yScale.paddingInner(),V=this.dims.width,de=this.yScale.bandwidth()+N,Ge=0,Pt=this.yScale(y.name)-N/2}return{name:y.name,class:Xt,height:de,width:V,x:Ge,y:Pt}})}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275cmp=i.VBU({type:O,selectors:[["g","ngx-charts-grid-panel-series",""]],inputs:{data:"data",dims:"dims",xScale:"xScale",yScale:"yScale",orient:"orient"},standalone:!1,features:[i.OA$],attrs:Uh,decls:1,vars:1,consts:[["ngx-charts-grid-panel","",3,"height","width","x","y","grid-panel","odd","even",4,"ngFor","ngForOf"],["ngx-charts-grid-panel","",3,"height","width","x","y"]],template:function(N,V){1&N&&i.DNE(0,k0,1,10,"g",0),2&N&&i.Y8G("ngForOf",V.gridPanels)},dependencies:[S.Sq,p3],encapsulation:2,changeDetection:0}))}return v(),O})();typeof window<"u"?$0=window:typeof global<"u"&&($0=global);let Jo=(()=>{var v;class O{static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275mod=i.$C({type:O}),this.\u0275inj=t.G2t({imports:[S.MD,d3,h3,S.MD,d3,h3]}))}return v(),O})();function y3({width:v,height:O,margins:E,showXAxis:y=!1,showYAxis:N=!1,xAxisHeight:V=0,yAxisWidth:de=0,showXLabel:Ge=!1,showYLabel:Pt=!1,showLegend:Xt=!1,legendType:hi=aa.Ordinal,legendPosition:Si=zc.Right,columns:Oi=12}){let sn=E[3],on=v,Wn=O-E[0]-E[2];return Xt&&Si===zc.Right&&(Oi-=hi===aa.Ordinal?2:1),on=on*Oi/12,on=on-E[1]-E[3],y&&(Wn-=5,Wn-=V,Ge&&(Wn-=30)),N&&(on-=5,on-=de,sn+=de,sn+=10,Pt&&(on-=30,sn+=30)),on=Math.max(0,on),Wn=Math.max(0,Wn),{width:Math.floor(on),height:Math.floor(Wn),xOffset:Math.floor(sn)}}const J0=[{name:"vivid",selectable:!0,group:aa.Ordinal,domain:["#647c8a","#3f51b5","#2196f3","#00b862","#afdf0a","#a7b61a","#f3e562","#ff9800","#ff5722","#ff4514"]},{name:"natural",selectable:!0,group:aa.Ordinal,domain:["#bf9d76","#e99450","#d89f59","#f2dfa7","#a5d7c6","#7794b1","#afafaf","#707160","#ba9383","#d9d5c3"]},{name:"cool",selectable:!0,group:aa.Ordinal,domain:["#a8385d","#7aa3e5","#a27ea8","#aae3f5","#adcded","#a95963","#8796c0","#7ed3ed","#50abcc","#ad6886"]},{name:"fire",selectable:!0,group:aa.Ordinal,domain:["#ff3d00","#bf360c","#ff8f00","#ff6f00","#ff5722","#e65100","#ffca28","#ffab00"]},{name:"solar",selectable:!0,group:aa.Linear,domain:["#fff8e1","#ffecb3","#ffe082","#ffd54f","#ffca28","#ffc107","#ffb300","#ffa000","#ff8f00","#ff6f00"]},{name:"air",selectable:!0,group:aa.Linear,domain:["#e1f5fe","#b3e5fc","#81d4fa","#4fc3f7","#29b6f6","#03a9f4","#039be5","#0288d1","#0277bd","#01579b"]},{name:"aqua",selectable:!0,group:aa.Linear,domain:["#e0f7fa","#b2ebf2","#80deea","#4dd0e1","#26c6da","#00bcd4","#00acc1","#0097a7","#00838f","#006064"]},{name:"flame",selectable:!1,group:aa.Ordinal,domain:["#A10A28","#D3342D","#EF6D49","#FAAD67","#FDDE90","#DBED91","#A9D770","#6CBA67","#2C9653","#146738"]},{name:"ocean",selectable:!1,group:aa.Ordinal,domain:["#1D68FB","#33C0FC","#4AFFFE","#AFFFFF","#FFFC63","#FDBD2D","#FC8A25","#FA4F1E","#FA141B","#BA38D1"]},{name:"forest",selectable:!1,group:aa.Ordinal,domain:["#55C22D","#C1F33D","#3CC099","#AFFFFF","#8CFC9D","#76CFFA","#BA60FB","#EE6490","#C42A1C","#FC9F32"]},{name:"horizon",selectable:!1,group:aa.Ordinal,domain:["#2597FB","#65EBFD","#99FDD0","#FCEE4B","#FEFCFA","#FDD6E3","#FCB1A8","#EF6F7B","#CB96E8","#EFDEE0"]},{name:"neons",selectable:!1,group:aa.Ordinal,domain:["#FF3333","#FF33FF","#CC33FF","#0000FF","#33CCFF","#33FFFF","#33FF66","#CCFF33","#FFCC00","#FF6600"]},{name:"picnic",selectable:!1,group:aa.Ordinal,domain:["#FAC51D","#66BD6D","#FAA026","#29BB9C","#E96B56","#55ACD2","#B7332F","#2C83C9","#9166B8","#92E7E8"]},{name:"night",selectable:!1,group:aa.Ordinal,domain:["#2B1B5A","#501356","#183356","#28203F","#391B3C","#1E2B3C","#120634","#2D0432","#051932","#453080","#75267D","#2C507D","#4B3880","#752F7D","#35547D"]},{name:"nightLights",selectable:!1,group:aa.Ordinal,domain:["#4e31a5","#9c25a7","#3065ab","#57468b","#904497","#46648b","#32118d","#a00fb3","#1052a2","#6e51bd","#b63cc3","#6c97cb","#8671c1","#b455be","#7496c3"]}];class b3{constructor(O,E,y,N){"string"==typeof O&&(O=J0.find(V=>V.name===O)),this.colorDomain=O.domain,this.scaleType=E,this.domain=y,this.customColors=N,this.scale=this.generateColorScheme(O,E,this.domain)}generateColorScheme(O,E,y){let N;switch("string"==typeof O&&(O=J0.find(V=>V.name===O)),E){case aa.Quantile:N=eu().range(O.domain).domain(y);break;case aa.Ordinal:N=C0().range(O.domain).domain(y);break;case aa.Linear:{const V=[...O.domain];1===V.length&&(V.push(V[0]),this.colorDomain=V);const de=v1(0,1,1/V.length);N=oc().range(V).domain(de)}}return N}getColor(O){if(null==O)throw new Error("Value can not be null");if(this.scaleType===aa.Linear){const E=oc().domain(this.domain).range([0,1]);return this.scale(E(O))}{if("function"==typeof this.customColors)return this.customColors(O);const E=O.toString();let y;return this.customColors&&this.customColors.length>0&&(y=this.customColors.find(N=>N.name.toLowerCase()===E.toLowerCase())),y?y.value:this.scale(O)}}getLinearGradientStops(O,E){void 0===E&&(E=this.domain[0]);const y=oc().domain(this.domain).range([0,1]),N=Ul().domain(this.colorDomain).range([0,1]),V=this.getColor(O),de=y(E),Ge=this.getColor(E),Pt=y(O);let Xt=1,hi=de;const Si=[];for(Si.push({color:Ge,offset:de,originalOffset:de,opacity:1});hi=(Pt-N.bandwidth()).toFixed(4))break;Si.push({color:Oi,offset:sn,opacity:1}),hi=sn,Xt++}}if(Si[Si.length-1].offset<100&&Si.push({color:V,offset:Pt,opacity:1}),Pt===de)Si[0].offset=0,Si[1].offset=100;else if(100!==Si[Si.length-1].offset)for(const Oi of Si)Oi.offset=(Oi.offset-de)/(Pt-de)*100;return Si}}let M3=(()=>{var v;class O{static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275mod=i.$C({type:O}),this.\u0275inj=t.G2t({imports:[Jo]}))}return v(),O})(),E3=(()=>{var v;class O{constructor(y){this.roundEdges=!0,this.gradient=!1,this.offset=0,this.isActive=!1,this.animations=!0,this.noBarWhenZero=!0,this.select=new i.bkB,this.activate=new i.bkB,this.deactivate=new i.bkB,this.hasGradient=!1,this.hideBar=!1,this.element=y.nativeElement}ngOnChanges(y){y.roundEdges&&this.loadAnimation(),this.update()}update(){this.gradientId="grad"+z1().toString(),this.gradientFill=`url(#${this.gradientId})`,this.gradient||this.stops?(this.gradientStops=this.getGradient(),this.hasGradient=!0):this.hasGradient=!1,this.updatePathEl(),this.checkToHideBar()}loadAnimation(){this.path=this.getStartingPath(),setTimeout(this.update.bind(this),100)}updatePathEl(){const y=Fn(this.element).select(".bar"),N=this.getPath();this.animations?y.transition().duration(500).attr("d",N):y.attr("d",N)}getGradient(){return this.stops?this.stops:[{offset:0,color:this.fill,opacity:this.getStartOpacity()},{offset:100,color:this.fill,opacity:1}]}getStartingPath(){if(!this.animations)return this.getPath();let N,y=this.getRadius();return this.roundEdges?this.orientation===Es.Vertical?(y=Math.min(this.height,y),N=Uc(this.x,this.y+this.height,this.width,1,0,this.edges)):this.orientation===Es.Horizontal&&(y=Math.min(this.width,y),N=Uc(this.x,this.y,1,this.height,0,this.edges)):this.orientation===Es.Vertical?N=Uc(this.x,this.y+this.height,this.width,1,0,this.edges):this.orientation===Es.Horizontal&&(N=Uc(this.x,this.y,1,this.height,0,this.edges)),N}getPath(){let N,y=this.getRadius();return this.roundEdges?this.orientation===Es.Vertical?(y=Math.min(this.height,y),N=Uc(this.x,this.y,this.width,this.height,y,this.edges)):this.orientation===Es.Horizontal&&(y=Math.min(this.width,y),N=Uc(this.x,this.y,this.width,this.height,y,this.edges)):N=Uc(this.x,this.y,this.width,this.height,y,this.edges),N}getRadius(){let y=0;return this.roundEdges&&this.height>5&&this.width>5&&(y=Math.floor(Math.min(5,this.height/2,this.width/2))),y}getStartOpacity(){return this.roundEdges?.2:.5}get edges(){let y=[!1,!1,!1,!1];return this.roundEdges&&(this.orientation===Es.Vertical?y=this.data.value>0?[!0,!0,!1,!1]:[!1,!1,!0,!0]:this.orientation===Es.Horizontal&&(y=this.data.value>0?[!1,!0,!1,!0]:[!0,!1,!0,!1])),y}onMouseEnter(){this.activate.emit(this.data)}onMouseLeave(){this.deactivate.emit(this.data)}checkToHideBar(){this.hideBar=this.noBarWhenZero&&(this.orientation===Es.Vertical&&0===this.height||this.orientation===Es.Horizontal&&0===this.width)}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)(i.rXU(i.aKT))},this.\u0275cmp=i.VBU({type:O,selectors:[["g","ngx-charts-bar",""]],hostBindings:function(N,V){1&N&&i.bIt("mouseenter",function(){return V.onMouseEnter()})("mouseleave",function(){return V.onMouseLeave()})},inputs:{fill:"fill",data:"data",width:"width",height:"height",x:"x",y:"y",orientation:"orientation",roundEdges:"roundEdges",gradient:"gradient",offset:"offset",isActive:"isActive",stops:"stops",animations:"animations",ariaLabel:"ariaLabel",noBarWhenZero:"noBarWhenZero"},outputs:{select:"select",activate:"activate",deactivate:"deactivate"},standalone:!1,features:[i.OA$],attrs:D1,decls:2,vars:8,consts:[[4,"ngIf"],["stroke","none","role","img","tabIndex","-1",1,"bar",3,"click"],["ngx-charts-svg-linear-gradient","",3,"orientation","name","stops"]],template:function(N,V){1&N&&(i.DNE(0,A4,2,3,"defs",0),t.qSk(),i.j41(1,"path",1),i.bIt("click",function(){return V.select.emit(V.data)}),i.k0s()),2&N&&(i.Y8G("ngIf",V.hasGradient),i.R7$(),i.AVh("active",V.isActive)("hidden",V.hideBar),i.BMQ("d",V.path)("aria-label",V.ariaLabel)("fill",V.hasGradient?V.gradientFill:V.fill))},dependencies:[S.bT,U1],encapsulation:2,changeDetection:0}))}return v(),O})();var zd=function(v){return v.Standard="standard",v.Normalized="normalized",v.Stacked="stacked",v}(zd||{}),Ud=function(v){return v.positive="positive",v.negative="negative",v}(Ud||{});let w3=(()=>{var v;class O{constructor(y){this.dimensionsChanged=new i.bkB,this.horizontalPadding=2,this.verticalPadding=5,this.element=y.nativeElement}ngOnChanges(y){this.update()}getSize(){return{height:this.element.getBoundingClientRect().height,width:this.element.getBoundingClientRect().width,negative:this.value<0}}ngAfterViewInit(){this.dimensionsChanged.emit(this.getSize())}update(){this.formatedValue=this.valueFormatting?this.valueFormatting(this.value):Nd(this.value),"horizontal"===this.orientation?(this.x=this.barX+this.barWidth,this.value<0?(this.x=this.x-this.horizontalPadding,this.textAnchor="end"):(this.x=this.x+this.horizontalPadding,this.textAnchor="start"),this.y=this.barY+this.barHeight/2):(this.x=this.barX+this.barWidth/2,this.y=this.barY+this.barHeight,this.value<0?(this.y=this.y+this.verticalPadding,this.textAnchor="end"):(this.y=this.y-this.verticalPadding,this.textAnchor="start"),this.transform=`rotate(-45, ${this.x} , ${this.y})`)}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)(i.rXU(i.aKT))},this.\u0275cmp=i.VBU({type:O,selectors:[["g","ngx-charts-bar-label",""]],inputs:{value:"value",valueFormatting:"valueFormatting",barX:"barX",barY:"barY",barWidth:"barWidth",barHeight:"barHeight",orientation:"orientation"},outputs:{dimensionsChanged:"dimensionsChanged"},standalone:!1,features:[i.OA$],attrs:$h,decls:2,vars:5,consts:[["alignment-baseline","middle",1,"textDataLabel"]],template:function(N,V){1&N&&(t.qSk(),i.j41(0,"text",0),i.EFF(1),i.k0s()),2&N&&(i.BMQ("text-anchor",V.textAnchor)("transform",V.transform)("x",V.x)("y",V.y),i.R7$(),i.SpI(" ",V.formatedValue," "))},styles:[".textDataLabel[_ngcontent-%COMP%]{font-size:11px}"],changeDetection:0}))}return v(),O})(),Nf=(()=>{var v;class O{constructor(y){this.platformId=y,this.type=zd.Standard,this.tooltipDisabled=!1,this.animations=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.select=new i.bkB,this.activate=new i.bkB,this.deactivate=new i.bkB,this.dataLabelHeightChanged=new i.bkB,this.barsForDataLabels=[],this.barOrientation=Es,this.isSSR=!1}ngOnInit(){(0,c.Vy)(this.platformId)&&(this.isSSR=!0)}ngOnChanges(){this.update()}update(){let y;this.updateTooltipSettings(),this.series.length&&(y=this.xScale.bandwidth()),y=Math.round(y);const N=Math.max(this.yScale.domain()[0],0),V={[Ud.positive]:0,[Ud.negative]:0};let Ge,de=Ud.positive;this.type===zd.Normalized&&(Ge=this.series.map(Pt=>Pt.value).reduce((Pt,Xt)=>Pt+Xt,0)),this.bars=this.series.map((Pt,Xt)=>{let hi=Pt.value;const Si=this.getLabel(Pt),Oi=Nd(Si);de=hi>0?Ud.positive:Ud.negative;const on={value:hi,label:Si,roundEdges:this.roundEdges,data:Pt,width:y,formattedLabel:Oi,height:0,x:0,y:0};if(this.type===zd.Standard)on.height=Math.abs(this.yScale(hi)-this.yScale(N)),on.x=this.xScale(Si),on.y=this.yScale(hi<0?0:hi);else if(this.type===zd.Stacked){const Wi=V[de],Ln=Wi+hi;V[de]+=hi,on.height=this.yScale(Wi)-this.yScale(Ln),on.x=0,on.y=this.yScale(Ln),on.offset0=Wi,on.offset1=Ln}else if(this.type===zd.Normalized){let Wi=V[de],Ln=Wi+hi;V[de]+=hi,Ge>0?(Wi=100*Wi/Ge,Ln=100*Ln/Ge):(Wi=0,Ln=0),on.height=this.yScale(Wi)-this.yScale(Ln),on.x=0,on.y=this.yScale(Ln),on.offset0=Wi,on.offset1=Ln,hi=(Ln-Wi).toFixed(2)+"%"}this.colors.scaleType===aa.Ordinal?on.color=this.colors.getColor(Si):this.type===zd.Standard?(on.color=this.colors.getColor(hi),on.gradientStops=this.colors.getLinearGradientStops(hi)):(on.color=this.colors.getColor(on.offset1),on.gradientStops=this.colors.getLinearGradientStops(on.offset1,on.offset0));let Wn=Oi;return on.ariaLabel=Oi+" "+hi.toLocaleString(),null!=this.seriesName&&(Wn=`${this.seriesName} \u2022 ${Oi}`,on.data.series=this.seriesName,on.ariaLabel=this.seriesName+" "+on.ariaLabel),on.tooltipText=this.tooltipDisabled?void 0:`\n ${function Y0(v){return v.toLocaleString().replace(/[&'`"<>]/g,O=>({"&":"&","'":"'","`":"`",'"':""","<":"<",">":">"}[O]))}(Wn)}\n ${this.dataLabelFormatting?this.dataLabelFormatting(hi):hi.toLocaleString()}\n `,on}),this.updateDataLabels()}updateDataLabels(){if(this.type===zd.Stacked){this.barsForDataLabels=[];const y={};y.series=this.seriesName;const N=this.series.map(de=>de.value).reduce((de,Ge)=>Ge>0?de+Ge:de,0),V=this.series.map(de=>de.value).reduce((de,Ge)=>Ge<0?de+Ge:de,0);y.total=N+V,y.x=0,y.y=0,y.height=this.yScale(y.total>0?N:V),y.width=this.xScale.bandwidth(),this.barsForDataLabels.push(y)}else this.barsForDataLabels=this.series.map(y=>{const N={};return N.series=this.seriesName??y.label,N.total=y.value,N.x=this.xScale(y.label),N.y=this.yScale(0),N.height=this.yScale(N.total)-this.yScale(0),N.width=this.xScale.bandwidth(),N})}updateTooltipSettings(){this.tooltipPlacement=this.tooltipDisabled?void 0:La.Top,this.tooltipType=this.tooltipDisabled?void 0:Bd.tooltip}isActive(y){return!!this.activeEntries&&void 0!==this.activeEntries.find(V=>y.name===V.name&&y.value===V.value)}onClick(y){this.select.emit(y)}getLabel(y){return y.label?y.label:y.name}trackBy(y,N){return N.label}trackDataLabelBy(y,N){return y+"#"+N.series+"#"+N.total}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)(i.rXU(i.Agw))},this.\u0275cmp=i.VBU({type:O,selectors:[["g","ngx-charts-series-vertical",""]],inputs:{dims:"dims",type:"type",series:"series",xScale:"xScale",yScale:"yScale",colors:"colors",gradient:"gradient",activeEntries:"activeEntries",seriesName:"seriesName",tooltipDisabled:"tooltipDisabled",tooltipTemplate:"tooltipTemplate",roundEdges:"roundEdges",animations:"animations",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero"},outputs:{select:"select",activate:"activate",deactivate:"deactivate",dataLabelHeightChanged:"dataLabelHeightChanged"},standalone:!1,features:[i.OA$],attrs:Cu,decls:3,vars:3,consts:[[4,"ngIf"],["ngx-charts-bar","","ngx-tooltip","",3,"width","height","x","y","fill","stops","data","orientation","roundEdges","gradient","ariaLabel","isActive","tooltipDisabled","tooltipPlacement","tooltipType","tooltipTitle","tooltipTemplate","tooltipContext","noBarWhenZero","animations","select","activate","deactivate",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-bar","","ngx-tooltip","",3,"select","activate","deactivate","width","height","x","y","fill","stops","data","orientation","roundEdges","gradient","ariaLabel","isActive","tooltipDisabled","tooltipPlacement","tooltipType","tooltipTitle","tooltipTemplate","tooltipContext","noBarWhenZero","animations"],["ngx-charts-bar-label","",3,"barX","barY","barWidth","barHeight","value","valueFormatting","orientation","dimensionsChanged",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-bar-label","",3,"dimensionsChanged","barX","barY","barWidth","barHeight","value","valueFormatting","orientation"]],template:function(N,V){1&N&&i.DNE(0,Io,2,2,"g",0)(1,ef,2,2,"g",0)(2,nf,2,2,"g",0),2&N&&(i.Y8G("ngIf",!V.isSSR),i.R7$(),i.Y8G("ngIf",V.isSSR),i.R7$(),i.Y8G("ngIf",V.showDataLabel))},dependencies:[S.Sq,S.bT,u3,E3,w3],encapsulation:2,data:{animation:[(0,w.hZ)("animationState",[(0,w.kY)(":leave",[(0,w.iF)({opacity:1}),(0,w.i0)(500,(0,w.iF)({opacity:0}))])])]},changeDetection:0}))}return v(),O})(),Pm=(()=>{var v;class O extends od{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=zc.Right,this.tooltipDisabled=!1,this.showGridLines=!0,this.activeEntries=[],this.trimXAxisTicks=!0,this.trimYAxisTicks=!0,this.rotateXAxisTicks=!0,this.maxXAxisTickLength=16,this.maxYAxisTickLength=16,this.barPadding=8,this.roundDomains=!1,this.roundEdges=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.wrapTicks=!1,this.activate=new i.bkB,this.deactivate=new i.bkB,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive:0}}ngOnChanges(){this.update()}update(){if(super.update(),this.showDataLabel||(this.dataLabelMaxHeight={negative:0,positive:0}),this.margin=[10+this.dataLabelMaxHeight.positive,20,10+this.dataLabelMaxHeight.negative,20],this.dims=y3({width:this.width,height:this.height,margins:this.margin,showXAxis:this.xAxis,showYAxis:this.yAxis,xAxisHeight:this.xAxisHeight,yAxisWidth:this.yAxisWidth,showXLabel:this.showXAxisLabel,showYLabel:this.showYAxisLabel,showLegend:this.legend,legendType:this.schemeType,legendPosition:this.legendPosition}),this.formatDates(),this.showDataLabel&&(this.dims.height-=this.dataLabelMaxHeight.negative),this.xScale=this.getXScale(),this.yScale=this.getYScale(),this.setColors(),this.legendOptions=this.getLegendOptions(),this.transform=`translate(${this.dims.xOffset} , ${this.margin[0]+this.dataLabelMaxHeight.negative})`,this.showRefLines){const y=Fn(this.chartElement.nativeElement).select(".bar-chart").node();Fn(this.chartElement.nativeElement).selectAll(".ref-line").nodes().forEach(V=>y.appendChild(V))}}getXScale(){this.xDomain=this.getXDomain();const y=this.xDomain.length/(this.dims.width/this.barPadding+1);return Ul().range([0,this.dims.width]).paddingInner(y).domain(this.xDomain)}getYScale(){this.yDomain=this.getYDomain();const y=oc().range([this.dims.height,0]).domain(this.yDomain);return this.roundDomains?y.nice():y}getXDomain(){return this.results.map(y=>y.label)}getYDomain(){const y=this.results.map(de=>de.value);let N=this.yScaleMin?Math.min(this.yScaleMin,...y):Math.min(0,...y);this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(N=Math.min(N,...this.yAxisTicks));let V=this.yScaleMax?Math.max(this.yScaleMax,...y):Math.max(0,...y);return this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(V=Math.max(V,...this.yAxisTicks)),[N,V]}onClick(y){this.select.emit(y)}setColors(){let y;y=this.schemeType===aa.Ordinal?this.xDomain:this.yDomain,this.colors=new b3(this.scheme,this.schemeType,y,this.customColors)}getLegendOptions(){const y={scaleType:this.schemeType,colors:void 0,domain:[],title:void 0,position:this.legendPosition};return y.scaleType===aa.Ordinal?(y.domain=this.xDomain,y.colors=this.colors,y.title=this.legendTitle):(y.domain=this.yDomain,y.colors=this.colors.scale),y}updateYAxisWidth({width:y}){this.yAxisWidth=y,this.update()}updateXAxisHeight({height:y}){this.xAxisHeight=y,this.update()}onDataLabelMaxHeightChanged(y){y.size.negative?this.dataLabelMaxHeight.negative=Math.max(this.dataLabelMaxHeight.negative,y.size.height):this.dataLabelMaxHeight.positive=Math.max(this.dataLabelMaxHeight.positive,y.size.height),y.index===this.results.length-1&&setTimeout(()=>this.update())}onActivate(y,N=!1){y=this.results.find(de=>N?de.label===y.name:de.name===y.name),!(this.activeEntries.findIndex(de=>de.name===y.name&&de.value===y.value&&de.series===y.series)>-1)&&(this.activeEntries=[y,...this.activeEntries],this.activate.emit({value:y,entries:this.activeEntries}))}onDeactivate(y,N=!1){y=this.results.find(de=>N?de.label===y.name:de.name===y.name);const V=this.activeEntries.findIndex(de=>de.name===y.name&&de.value===y.value&&de.series===y.series);this.activeEntries.splice(V,1),this.activeEntries=[...this.activeEntries],this.deactivate.emit({value:y,entries:this.activeEntries})}static#e=v=()=>(this.\u0275fac=(()=>{let y;return function(V){return(y||(y=i.xGo(O)))(V||O)}})(),this.\u0275cmp=i.VBU({type:O,selectors:[["ngx-charts-bar-vertical"]],contentQueries:function(N,V,de){if(1&N&&i.wni(de,Wh,5),2&N){let Ge;i.mGM(Ge=i.lsd())&&(V.tooltipTemplate=Ge.first)}},inputs:{legend:"legend",legendTitle:"legendTitle",legendPosition:"legendPosition",xAxis:"xAxis",yAxis:"yAxis",showXAxisLabel:"showXAxisLabel",showYAxisLabel:"showYAxisLabel",xAxisLabel:"xAxisLabel",yAxisLabel:"yAxisLabel",tooltipDisabled:"tooltipDisabled",gradient:"gradient",referenceLines:"referenceLines",showRefLines:"showRefLines",showRefLabels:"showRefLabels",showGridLines:"showGridLines",activeEntries:"activeEntries",schemeType:"schemeType",trimXAxisTicks:"trimXAxisTicks",trimYAxisTicks:"trimYAxisTicks",rotateXAxisTicks:"rotateXAxisTicks",maxXAxisTickLength:"maxXAxisTickLength",maxYAxisTickLength:"maxYAxisTickLength",xAxisTickFormatting:"xAxisTickFormatting",yAxisTickFormatting:"yAxisTickFormatting",xAxisTicks:"xAxisTicks",yAxisTicks:"yAxisTicks",barPadding:"barPadding",roundDomains:"roundDomains",roundEdges:"roundEdges",yScaleMax:"yScaleMax",yScaleMin:"yScaleMin",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero",wrapTicks:"wrapTicks"},outputs:{activate:"activate",deactivate:"deactivate"},standalone:!1,features:[i.Vt3,i.OA$],decls:5,vars:25,consts:[[3,"legendLabelClick","legendLabelActivate","legendLabelDeactivate","view","showLegend","legendOptions","activeEntries","animations"],[1,"bar-chart","chart"],["ngx-charts-x-axis","",3,"xScale","dims","showGridLines","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","referenceLines","showRefLines","showRefLabels","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-series-vertical","",3,"activate","deactivate","select","dataLabelHeightChanged","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","activeEntries","roundEdges","animations","noBarWhenZero"],["ngx-charts-x-axis","",3,"dimensionsChanged","xScale","dims","showGridLines","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks"],["ngx-charts-y-axis","",3,"dimensionsChanged","yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","referenceLines","showRefLines","showRefLabels","wrapTicks"]],template:function(N,V){1&N&&(i.j41(0,"ngx-charts-chart",0),i.bIt("legendLabelClick",function(Ge){return V.onClick(Ge)})("legendLabelActivate",function(Ge){return V.onActivate(Ge,!0)})("legendLabelDeactivate",function(Ge){return V.onDeactivate(Ge,!0)}),t.qSk(),i.j41(1,"g",1),i.DNE(2,af,1,12,"g",2)(3,rf,1,13,"g",3),i.j41(4,"g",4),i.bIt("activate",function(Ge){return V.onActivate(Ge)})("deactivate",function(Ge){return V.onDeactivate(Ge)})("select",function(Ge){return V.onClick(Ge)})("dataLabelHeightChanged",function(Ge){return V.onDataLabelMaxHeightChanged(Ge)}),i.k0s()()()),2&N&&(i.Y8G("view",i.l_i(22,Rd,V.width,V.height))("showLegend",V.legend)("legendOptions",V.legendOptions)("activeEntries",V.activeEntries)("animations",V.animations),i.R7$(),i.BMQ("transform",V.transform),i.R7$(),i.Y8G("ngIf",V.xAxis),i.R7$(),i.Y8G("ngIf",V.yAxis),i.R7$(),i.Y8G("xScale",V.xScale)("yScale",V.yScale)("colors",V.colors)("series",V.results)("dims",V.dims)("gradient",V.gradient)("tooltipDisabled",V.tooltipDisabled)("tooltipTemplate",V.tooltipTemplate)("showDataLabel",V.showDataLabel)("dataLabelFormatting",V.dataLabelFormatting)("activeEntries",V.activeEntries)("roundEdges",V.roundEdges)("animations",V.animations)("noBarWhenZero",V.noBarWhenZero))},dependencies:[S.bT,c3,If,Af,Nf],styles:[pu],encapsulation:2,changeDetection:0}))}return v(),O})(),K6=(()=>{var v;class O extends od{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=zc.Right,this.tooltipDisabled=!1,this.scaleType=aa.Ordinal,this.showGridLines=!0,this.activeEntries=[],this.schemeType=aa.Ordinal,this.trimXAxisTicks=!0,this.trimYAxisTicks=!0,this.rotateXAxisTicks=!0,this.maxXAxisTickLength=16,this.maxYAxisTickLength=16,this.groupPadding=16,this.barPadding=8,this.roundDomains=!1,this.roundEdges=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.wrapTicks=!1,this.activate=new i.bkB,this.deactivate=new i.bkB,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive:0},this.isSSR=!1,this.barOrientation=Es,this.trackBy=(y,N)=>N.name}ngOnInit(){(0,c.Vy)(this.platformId)&&(this.isSSR=!0)}update(){super.update(),this.showDataLabel||(this.dataLabelMaxHeight={negative:0,positive:0}),this.margin=[10+this.dataLabelMaxHeight.positive,20,10+this.dataLabelMaxHeight.negative,20],this.dims=y3({width:this.width,height:this.height,margins:this.margin,showXAxis:this.xAxis,showYAxis:this.yAxis,xAxisHeight:this.xAxisHeight,yAxisWidth:this.yAxisWidth,showXLabel:this.showXAxisLabel,showYLabel:this.showYAxisLabel,showLegend:this.legend,legendType:this.schemeType,legendPosition:this.legendPosition}),this.showDataLabel&&(this.dims.height-=this.dataLabelMaxHeight.negative),this.formatDates(),this.groupDomain=this.getGroupDomain(),this.innerDomain=this.getInnerDomain(),this.valueDomain=this.getValueDomain(),this.groupScale=this.getGroupScale(),this.innerScale=this.getInnerScale(),this.valueScale=this.getValueScale(),this.setColors(),this.legendOptions=this.getLegendOptions(),this.transform=`translate(${this.dims.xOffset} , ${this.margin[0]+this.dataLabelMaxHeight.negative})`}onDataLabelMaxHeightChanged(y,N){y.size.negative?this.dataLabelMaxHeight.negative=Math.max(this.dataLabelMaxHeight.negative,y.size.height):this.dataLabelMaxHeight.positive=Math.max(this.dataLabelMaxHeight.positive,y.size.height),N===this.results.length-1&&setTimeout(()=>this.update())}getGroupScale(){const y=this.groupDomain.length/(this.dims.height/this.groupPadding+1);return Ul().rangeRound([0,this.dims.width]).paddingInner(y).paddingOuter(y/2).domain(this.groupDomain)}getInnerScale(){const y=this.groupScale.bandwidth(),N=this.innerDomain.length/(y/this.barPadding+1);return Ul().rangeRound([0,y]).paddingInner(N).domain(this.innerDomain)}getValueScale(){const y=oc().range([this.dims.height,0]).domain(this.valueDomain);return this.roundDomains?y.nice():y}getGroupDomain(){const y=[];for(const N of this.results)y.includes(N.label)||y.push(N.label);return y}getInnerDomain(){const y=[];for(const N of this.results)for(const V of N.series)y.includes(V.label)||y.push(V.label);return y}getValueDomain(){const y=[];for(const de of this.results)for(const Ge of de.series)y.includes(Ge.value)||y.push(Ge.value);return[Math.min(0,...y),this.yScaleMax?Math.max(this.yScaleMax,...y):Math.max(0,...y)]}groupTransform(y){return`translate(${this.groupScale(y.label)}, 0)`}onClick(y,N){N&&(y.series=N.name),this.select.emit(y)}setColors(){let y;y=this.schemeType===aa.Ordinal?this.innerDomain:this.valueDomain,this.colors=new b3(this.scheme,this.schemeType,y,this.customColors)}getLegendOptions(){const y={scaleType:this.schemeType,colors:void 0,domain:[],title:void 0,position:this.legendPosition};return y.scaleType===aa.Ordinal?(y.domain=this.innerDomain,y.colors=this.colors,y.title=this.legendTitle):(y.domain=this.valueDomain,y.colors=this.colors.scale),y}updateYAxisWidth({width:y}){this.yAxisWidth=y,this.update()}updateXAxisHeight({height:y}){this.xAxisHeight=y,this.update()}onActivate(y,N,V=!1){const de=Object.assign({},y);N&&(de.series=N.name);const Ge=this.results.map(Pt=>Pt.series).flat().filter(Pt=>V?Pt.label===de.name:Pt.name===de.name&&Pt.series===de.series);this.activeEntries=[...Ge],this.activate.emit({value:de,entries:this.activeEntries})}onDeactivate(y,N,V=!1){const de=Object.assign({},y);N&&(de.series=N.name),this.activeEntries=this.activeEntries.filter(Ge=>V?Ge.label!==de.name:!(Ge.name===de.name&&Ge.series===de.series)),this.deactivate.emit({value:de,entries:this.activeEntries})}static#e=v=()=>(this.\u0275fac=(()=>{let y;return function(V){return(y||(y=i.xGo(O)))(V||O)}})(),this.\u0275cmp=i.VBU({type:O,selectors:[["ngx-charts-bar-vertical-2d"]],contentQueries:function(N,V,de){if(1&N&&i.wni(de,Wh,5),2&N){let Ge;i.mGM(Ge=i.lsd())&&(V.tooltipTemplate=Ge.first)}},inputs:{legend:"legend",legendTitle:"legendTitle",legendPosition:"legendPosition",xAxis:"xAxis",yAxis:"yAxis",showXAxisLabel:"showXAxisLabel",showYAxisLabel:"showYAxisLabel",xAxisLabel:"xAxisLabel",yAxisLabel:"yAxisLabel",tooltipDisabled:"tooltipDisabled",scaleType:"scaleType",gradient:"gradient",showGridLines:"showGridLines",activeEntries:"activeEntries",schemeType:"schemeType",trimXAxisTicks:"trimXAxisTicks",trimYAxisTicks:"trimYAxisTicks",rotateXAxisTicks:"rotateXAxisTicks",maxXAxisTickLength:"maxXAxisTickLength",maxYAxisTickLength:"maxYAxisTickLength",xAxisTickFormatting:"xAxisTickFormatting",yAxisTickFormatting:"yAxisTickFormatting",xAxisTicks:"xAxisTicks",yAxisTicks:"yAxisTicks",groupPadding:"groupPadding",barPadding:"barPadding",roundDomains:"roundDomains",roundEdges:"roundEdges",yScaleMax:"yScaleMax",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero",wrapTicks:"wrapTicks"},outputs:{activate:"activate",deactivate:"deactivate"},standalone:!1,features:[i.Vt3],decls:7,vars:18,consts:[[3,"legendLabelActivate","legendLabelDeactivate","legendLabelClick","view","showLegend","legendOptions","activeEntries","animations"],[1,"bar-chart","chart"],["ngx-charts-grid-panel-series","",3,"xScale","yScale","data","dims","orient"],["ngx-charts-x-axis","",3,"xScale","dims","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks","dimensionsChanged",4,"ngIf"],[4,"ngIf"],["ngx-charts-x-axis","",3,"dimensionsChanged","xScale","dims","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks"],["ngx-charts-y-axis","",3,"dimensionsChanged","yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks"],["ngx-charts-series-vertical","",3,"activeEntries","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","seriesName","roundEdges","animations","noBarWhenZero","select","activate","deactivate","dataLabelHeightChanged",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-series-vertical","",3,"select","activate","deactivate","dataLabelHeightChanged","activeEntries","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","seriesName","roundEdges","animations","noBarWhenZero"]],template:function(N,V){1&N&&(i.j41(0,"ngx-charts-chart",0),i.bIt("legendLabelActivate",function(Ge){return V.onActivate(Ge,void 0,!0)})("legendLabelDeactivate",function(Ge){return V.onDeactivate(Ge,void 0,!0)})("legendLabelClick",function(Ge){return V.onClick(Ge)}),t.qSk(),i.j41(1,"g",1),i.nrm(2,"g",2),i.DNE(3,Od,1,11,"g",3)(4,Mu,1,10,"g",4)(5,Pd,2,2,"g",5)(6,sf,2,2,"g",5),i.k0s()()),2&N&&(i.Y8G("view",i.l_i(15,Rd,V.width,V.height))("showLegend",V.legend)("legendOptions",V.legendOptions)("activeEntries",V.activeEntries)("animations",V.animations),i.R7$(),i.BMQ("transform",V.transform),i.R7$(),i.Y8G("xScale",V.groupScale)("yScale",V.valueScale)("data",V.results)("dims",V.dims)("orient",V.barOrientation.Vertical),i.R7$(),i.Y8G("ngIf",V.xAxis),i.R7$(),i.Y8G("ngIf",V.yAxis),i.R7$(),i.Y8G("ngIf",!V.isSSR),i.R7$(),i.Y8G("ngIf",V.isSSR))},dependencies:[S.Sq,S.bT,c3,If,Af,kf,Nf],styles:[pu],encapsulation:2,data:{animation:[(0,w.hZ)("animationState",[(0,w.kY)(":leave",[(0,w.iF)({opacity:1,transform:"*"}),(0,w.i0)(500,(0,w.iF)({opacity:0,transform:"scale(0)"}))])])]},changeDetection:0}))}return v(),O})(),zf=(()=>{var v;class O{static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275mod=i.$C({type:O}),this.\u0275inj=t.G2t({imports:[Jo]}))}return v(),O})(),Fm=(()=>{var v;class O{static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275mod=i.$C({type:O}),this.\u0275inj=t.G2t({imports:[Jo]}))}return v(),O})(),Bm=(()=>{var v;class O{static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275mod=i.$C({type:O}),this.\u0275inj=t.G2t({imports:[Jo]}))}return v(),O})(),A3=(()=>{var v;class O{static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275mod=i.$C({type:O}),this.\u0275inj=t.G2t({imports:[Jo]}))}return v(),O})(),L3=(()=>{var v;class O{static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275mod=i.$C({type:O}),this.\u0275inj=t.G2t({imports:[Jo]}))}return v(),O})();Math;let Vf=(()=>{var v;class O{static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275mod=i.$C({type:O}),this.\u0275inj=t.G2t({imports:[Jo]}))}return v(),O})(),Gd=(()=>{var v;class O{static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275mod=i.$C({type:O}),this.\u0275inj=t.G2t({imports:[Jo,Vf,L3]}))}return v(),O})(),ag=(()=>{var v;class O{static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275mod=i.$C({type:O}),this.\u0275inj=t.G2t({imports:[Jo]}))}return v(),O})(),Gl=(()=>{var v;class O{static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275mod=i.$C({type:O}),this.\u0275inj=t.G2t({imports:[Jo]}))}return v(),O})(),Gf=(()=>{var v;class O{static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275mod=i.$C({type:O}),this.\u0275inj=t.G2t({imports:[Jo,Vf,zf]}))}return v(),O})(),ju=(()=>{var v;class O{static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275mod=i.$C({type:O}),this.\u0275inj=t.G2t({imports:[Jo]}))}return v(),O})(),Km=(()=>{var v;class O{constructor(){!function jf(){typeof SVGElement<"u"&&typeof SVGElement.prototype.contains>"u"&&(SVGElement.prototype.contains=HTMLDivElement.prototype.contains)}()}static#e=v=()=>(this.\u0275fac=function(N){return new(N||O)},this.\u0275mod=i.$C({type:O}),this.\u0275inj=t.G2t({imports:[Jo,M3,zf,Fm,Bm,A3,ju,L3,Gd,ag,Vf,Gl,Gf]}))}return v(),O})()},52512:(Ae,ee,l)=>{"use strict";function i(p,S){S=encodeURIComponent(S);for(const c of p.split(";")){const e=c.indexOf("="),[T,g]=-1==e?[c,""]:[c.slice(0,e),c.slice(e+1)];if(T.trim()===S)return decodeURIComponent(g)}return null}l.d(ee,{N:()=>t,b:()=>i});class t{}},52529:(Ae,ee,l)=>{var i=ee;i.utils=l(68283),i.common=l(12901),i.sha=l(78528),i.ripemd=l(15283),i.hmac=l(37163),i.sha1=i.sha.sha1,i.sha256=i.sha.sha256,i.sha224=i.sha.sha224,i.sha384=i.sha.sha384,i.sha512=i.sha.sha512,i.ripemd160=i.ripemd.ripemd160},52786:Ae=>{"use strict";Ae.exports=Object.getOwnPropertyDescriptor},52910:Ae=>{"use strict";Ae.exports=typeof Reflect<"u"&&Reflect&&Reflect.apply},52920:(Ae,ee,l)=>{"use strict";l.d(ee,{DJ:()=>M,UI:()=>k,sA:()=>li,w2:()=>Ue});var i=l(2615),t=l(73664),S=(l(61577),l(28203)),c=l(29340),e=l(24545),g=(l(21413),l(56977));let d=(()=>{class Ne extends c.r3{buildStyles(yt,{display:Vt}){const Zt=(0,e.uG)(yt);return{...Zt,display:"none"===Vt?Vt:Zt.display}}}return Ne.\u0275fac=(()=>{let Kt;return function(Vt){return(Kt||(Kt=t.xGo(Ne)))(Vt||Ne)}})(),Ne.\u0275prov=i.jDH({token:Ne,factory:Ne.\u0275fac,providedIn:"root"}),Ne})();const w=["fxLayout","fxLayout.xs","fxLayout.sm","fxLayout.md","fxLayout.lg","fxLayout.xl","fxLayout.lt-sm","fxLayout.lt-md","fxLayout.lt-lg","fxLayout.lt-xl","fxLayout.gt-xs","fxLayout.gt-sm","fxLayout.gt-md","fxLayout.gt-lg"];let P=(()=>{class Ne extends c.DJ{constructor(yt,Vt,Zt,ti,Ye){super(yt,Zt,Vt,ti),this._config=Ye,this.DIRECTIVE_KEY="layout",this.init()}updateWithValue(yt){const Zt=this._config.detectLayoutDisplay?this.styler.lookupStyle(this.nativeElement,"display"):"";this.styleCache=j.get(Zt)??new Map,j.set(Zt,this.styleCache),this.currentValue!==yt&&(this.addStyles(yt,{display:Zt}),this.currentValue=yt)}}return Ne.\u0275fac=function(yt){return new(yt||Ne)(t.rXU(t.aKT),t.rXU(c.ZH),t.rXU(d),t.rXU(c.qH),t.rXU(c.EA))},Ne.\u0275dir=t.FsC({type:Ne,standalone:!1,features:[t.Vt3]}),Ne})(),M=(()=>{class Ne extends P{constructor(){super(...arguments),this.inputs=w}}return Ne.\u0275fac=(()=>{let Kt;return function(Vt){return(Kt||(Kt=t.xGo(Ne)))(Vt||Ne)}})(),Ne.\u0275dir=t.FsC({type:Ne,selectors:[["","fxLayout",""],["","fxLayout.xs",""],["","fxLayout.sm",""],["","fxLayout.md",""],["","fxLayout.lg",""],["","fxLayout.xl",""],["","fxLayout.lt-sm",""],["","fxLayout.lt-md",""],["","fxLayout.lt-lg",""],["","fxLayout.lt-xl",""],["","fxLayout.gt-xs",""],["","fxLayout.gt-sm",""],["","fxLayout.gt-md",""],["","fxLayout.gt-lg",""]],inputs:{fxLayout:"fxLayout","fxLayout.xs":"fxLayout.xs","fxLayout.sm":"fxLayout.sm","fxLayout.md":"fxLayout.md","fxLayout.lg":"fxLayout.lg","fxLayout.xl":"fxLayout.xl","fxLayout.lt-sm":"fxLayout.lt-sm","fxLayout.lt-md":"fxLayout.lt-md","fxLayout.lt-lg":"fxLayout.lt-lg","fxLayout.lt-xl":"fxLayout.lt-xl","fxLayout.gt-xs":"fxLayout.gt-xs","fxLayout.gt-sm":"fxLayout.gt-sm","fxLayout.gt-md":"fxLayout.gt-md","fxLayout.gt-lg":"fxLayout.gt-lg"},standalone:!1,features:[t.Vt3]}),Ne})();const j=new Map;let f=(()=>{class Ne extends c.r3{constructor(yt){super(),this.layoutConfig=yt}buildStyles(yt,Vt){let[Zt,ti,...Ye]=yt.split(" "),Nt=Ye.join(" ");const Et=Vt.direction.indexOf("column")>-1?"column":"row",Jt=(0,e.Vc)(Et)?"max-width":"max-height",qe=(0,e.Vc)(Et)?"min-width":"min-height",$e=String(Nt).indexOf("calc")>-1,tt=$e||"auto"===Nt,vi=String(Nt).indexOf("%")>-1&&!$e,ei=String(Nt).indexOf("px")>-1||String(Nt).indexOf("rem")>-1||String(Nt).indexOf("em")>-1||String(Nt).indexOf("vw")>-1||String(Nt).indexOf("vh")>-1;let ci=$e||ei;Zt="0"==Zt?0:Zt,ti="0"==ti?0:ti;const Hi=!Zt&&!ti;let oi={};const ui={"max-width":null,"max-height":null,"min-width":null,"min-height":null};switch(Nt||""){case"":Nt="row"===Et?"0%":!1!==this.layoutConfig.useColumnBasisZero?"0.000000001px":"auto";break;case"initial":case"nogrow":Zt=0,Nt="auto";break;case"grow":Nt="100%";break;case"noshrink":ti=0,Nt="auto";break;case"auto":break;case"none":Zt=0,ti=0,Nt="auto";break;default:!ci&&!vi&&!isNaN(Nt)&&(Nt+="%"),"0%"===Nt&&(ci=!0),"0px"===Nt&&(Nt="0%"),oi=(0,e.C5)(ui,$e?{"flex-grow":Zt,"flex-shrink":ti,"flex-basis":ci?Nt:"100%"}:{flex:`${Zt} ${ti} ${ci?Nt:"100%"}`})}return oi.flex||oi["flex-grow"]||(oi=(0,e.C5)(ui,$e?{"flex-grow":Zt,"flex-shrink":ti,"flex-basis":Nt}:{flex:`${Zt} ${ti} ${Nt}`})),"0%"!==Nt&&"0px"!==Nt&&"0.000000001px"!==Nt&&"auto"!==Nt&&(oi[qe]=Hi||ci&&Zt?Nt:null,oi[Jt]=Hi||!tt&&ti?Nt:null),oi[qe]||oi[Jt]?Vt.hasWrap&&(oi[$e?"flex-basis":"flex"]=oi[Jt]?$e?oi[Jt]:`${Zt} ${ti} ${oi[Jt]}`:$e?oi[qe]:`${Zt} ${ti} ${oi[qe]}`):oi=(0,e.C5)(ui,$e?{"flex-grow":Zt,"flex-shrink":ti,"flex-basis":Nt}:{flex:`${Zt} ${ti} ${Nt}`}),(0,e.C5)(oi,{"box-sizing":"border-box"})}}return Ne.\u0275fac=function(yt){return new(yt||Ne)(i.KVO(c.EA))},Ne.\u0275prov=i.jDH({token:Ne,factory:Ne.\u0275fac,providedIn:"root"}),Ne})();const h=["fxFlex","fxFlex.xs","fxFlex.sm","fxFlex.md","fxFlex.lg","fxFlex.xl","fxFlex.lt-sm","fxFlex.lt-md","fxFlex.lt-lg","fxFlex.lt-xl","fxFlex.gt-xs","fxFlex.gt-sm","fxFlex.gt-md","fxFlex.gt-lg"];let A=(()=>{class Ne extends c.DJ{constructor(yt,Vt,Zt,ti,Ye){super(yt,ti,Vt,Ye),this.layoutConfig=Zt,this.marshal=Ye,this.DIRECTIVE_KEY="flex",this.direction=void 0,this.wrap=void 0,this.flexGrow="1",this.flexShrink="1",this.init()}get shrink(){return this.flexShrink}set shrink(yt){this.flexShrink=yt||"1",this.triggerReflow()}get grow(){return this.flexGrow}set grow(yt){this.flexGrow=yt||"1",this.triggerReflow()}ngOnInit(){this.parentElement&&(this.marshal.trackValue(this.parentElement,"layout").pipe((0,g.Q)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this)),this.marshal.trackValue(this.nativeElement,"layout-align").pipe((0,g.Q)(this.destroySubject)).subscribe(this.triggerReflow.bind(this)))}onLayoutChange(yt){const Zt=yt.value.split(" ");this.direction=Zt[0],this.wrap=void 0!==Zt[1]&&"wrap"===Zt[1],this.triggerUpdate()}updateWithValue(yt){void 0===this.direction&&(this.direction=this.getFlexFlowDirection(this.parentElement,!1!==this.layoutConfig.addFlexToParent)),void 0===this.wrap&&(this.wrap=this.hasWrap(this.parentElement));const Zt=this.direction,ti=Zt.startsWith("row"),Ye=this.wrap;ti&&Ye?this.styleCache=_:ti&&!Ye?this.styleCache=x:!ti&&Ye?this.styleCache=W:!ti&&!Ye&&(this.styleCache=r);const Nt=String(yt).replace(";",""),Et=(0,c.hN)(Nt,this.flexGrow,this.flexShrink);this.addStyles(Et.join(" "),{direction:Zt,hasWrap:Ye})}triggerReflow(){const yt=this.activatedValue;if(void 0!==yt){const Vt=(0,c.hN)(yt+"",this.flexGrow,this.flexShrink);this.marshal.updateElement(this.nativeElement,this.DIRECTIVE_KEY,Vt.join(" "))}}}return Ne.\u0275fac=function(yt){return new(yt||Ne)(t.rXU(t.aKT),t.rXU(c.ZH),t.rXU(c.EA),t.rXU(f),t.rXU(c.qH))},Ne.\u0275dir=t.FsC({type:Ne,inputs:{shrink:[0,"fxShrink","shrink"],grow:[0,"fxGrow","grow"]},standalone:!1,features:[t.Vt3]}),Ne})(),k=(()=>{class Ne extends A{constructor(){super(...arguments),this.inputs=h}}return Ne.\u0275fac=(()=>{let Kt;return function(Vt){return(Kt||(Kt=t.xGo(Ne)))(Vt||Ne)}})(),Ne.\u0275dir=t.FsC({type:Ne,selectors:[["","fxFlex",""],["","fxFlex.xs",""],["","fxFlex.sm",""],["","fxFlex.md",""],["","fxFlex.lg",""],["","fxFlex.xl",""],["","fxFlex.lt-sm",""],["","fxFlex.lt-md",""],["","fxFlex.lt-lg",""],["","fxFlex.lt-xl",""],["","fxFlex.gt-xs",""],["","fxFlex.gt-sm",""],["","fxFlex.gt-md",""],["","fxFlex.gt-lg",""]],inputs:{fxFlex:"fxFlex","fxFlex.xs":"fxFlex.xs","fxFlex.sm":"fxFlex.sm","fxFlex.md":"fxFlex.md","fxFlex.lg":"fxFlex.lg","fxFlex.xl":"fxFlex.xl","fxFlex.lt-sm":"fxFlex.lt-sm","fxFlex.lt-md":"fxFlex.lt-md","fxFlex.lt-lg":"fxFlex.lt-lg","fxFlex.lt-xl":"fxFlex.lt-xl","fxFlex.gt-xs":"fxFlex.gt-xs","fxFlex.gt-sm":"fxFlex.gt-sm","fxFlex.gt-md":"fxFlex.gt-md","fxFlex.gt-lg":"fxFlex.gt-lg"},standalone:!1,features:[t.Vt3]}),Ne})();const x=new Map,r=new Map,_=new Map,W=new Map;let J=(()=>{class Ne extends c.r3{buildStyles(yt,Vt){const Zt={},[ti,Ye]=yt.split(" ");switch(ti){case"center":Zt["justify-content"]="center";break;case"space-around":Zt["justify-content"]="space-around";break;case"space-between":Zt["justify-content"]="space-between";break;case"space-evenly":Zt["justify-content"]="space-evenly";break;case"end":case"flex-end":Zt["justify-content"]="flex-end";break;default:Zt["justify-content"]="flex-start"}switch(Ye){case"start":case"flex-start":Zt["align-items"]=Zt["align-content"]="flex-start";break;case"center":Zt["align-items"]=Zt["align-content"]="center";break;case"end":case"flex-end":Zt["align-items"]=Zt["align-content"]="flex-end";break;case"space-between":Zt["align-content"]="space-between",Zt["align-items"]="stretch";break;case"space-around":Zt["align-content"]="space-around",Zt["align-items"]="stretch";break;case"baseline":Zt["align-content"]="stretch",Zt["align-items"]="baseline";break;default:Zt["align-items"]=Zt["align-content"]="stretch"}return(0,e.C5)(Zt,{display:Vt.inline?"inline-flex":"flex","flex-direction":Vt.layout,"box-sizing":"border-box","max-width":"stretch"===Ye?(0,e.Vc)(Vt.layout)?null:"100%":null,"max-height":"stretch"===Ye&&(0,e.Vc)(Vt.layout)?"100%":null})}}return Ne.\u0275fac=(()=>{let Kt;return function(Vt){return(Kt||(Kt=t.xGo(Ne)))(Vt||Ne)}})(),Ne.\u0275prov=i.jDH({token:Ne,factory:Ne.\u0275fac,providedIn:"root"}),Ne})();const fe=["fxLayoutAlign","fxLayoutAlign.xs","fxLayoutAlign.sm","fxLayoutAlign.md","fxLayoutAlign.lg","fxLayoutAlign.xl","fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg"];let ht=(()=>{class Ne extends c.DJ{constructor(yt,Vt,Zt,ti){super(yt,Zt,Vt,ti),this.DIRECTIVE_KEY="layout-align",this.layout="row",this.inline=!1,this.init(),this.marshal.trackValue(this.nativeElement,"layout").pipe((0,g.Q)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this))}updateWithValue(yt){const Vt=this.layout||"row",Zt=this.inline;"row"===Vt&&Zt?this.styleCache=le:"row"!==Vt||Zt?"row-reverse"===Vt&&Zt?this.styleCache=ce:"row-reverse"!==Vt||Zt?"column"===Vt&&Zt?this.styleCache=te:"column"!==Vt||Zt?"column-reverse"===Vt&&Zt?this.styleCache=se:"column-reverse"===Vt&&!Zt&&(this.styleCache=Rt):this.styleCache=di:this.styleCache=kt:this.styleCache=Qt,this.addStyles(yt,{layout:Vt,inline:Zt})}onLayoutChange(yt){const Vt=yt.value.split(" ");this.layout=Vt[0],this.inline=yt.value.includes("inline"),e.Uo.find(Zt=>Zt===this.layout)||(this.layout="row"),this.triggerUpdate()}}return Ne.\u0275fac=function(yt){return new(yt||Ne)(t.rXU(t.aKT),t.rXU(c.ZH),t.rXU(J),t.rXU(c.qH))},Ne.\u0275dir=t.FsC({type:Ne,standalone:!1,features:[t.Vt3]}),Ne})(),li=(()=>{class Ne extends ht{constructor(){super(...arguments),this.inputs=fe}}return Ne.\u0275fac=(()=>{let Kt;return function(Vt){return(Kt||(Kt=t.xGo(Ne)))(Vt||Ne)}})(),Ne.\u0275dir=t.FsC({type:Ne,selectors:[["","fxLayoutAlign",""],["","fxLayoutAlign.xs",""],["","fxLayoutAlign.sm",""],["","fxLayoutAlign.md",""],["","fxLayoutAlign.lg",""],["","fxLayoutAlign.xl",""],["","fxLayoutAlign.lt-sm",""],["","fxLayoutAlign.lt-md",""],["","fxLayoutAlign.lt-lg",""],["","fxLayoutAlign.lt-xl",""],["","fxLayoutAlign.gt-xs",""],["","fxLayoutAlign.gt-sm",""],["","fxLayoutAlign.gt-md",""],["","fxLayoutAlign.gt-lg",""]],inputs:{fxLayoutAlign:"fxLayoutAlign","fxLayoutAlign.xs":"fxLayoutAlign.xs","fxLayoutAlign.sm":"fxLayoutAlign.sm","fxLayoutAlign.md":"fxLayoutAlign.md","fxLayoutAlign.lg":"fxLayoutAlign.lg","fxLayoutAlign.xl":"fxLayoutAlign.xl","fxLayoutAlign.lt-sm":"fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md":"fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg":"fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl":"fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs":"fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm":"fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md":"fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg":"fxLayoutAlign.gt-lg"},standalone:!1,features:[t.Vt3]}),Ne})();const Qt=new Map,di=new Map,kt=new Map,Rt=new Map,le=new Map,te=new Map,ce=new Map,se=new Map;let Ue=(()=>{class Ne{}return Ne.\u0275fac=function(yt){return new(yt||Ne)},Ne.\u0275mod=t.$C({type:Ne}),Ne.\u0275inj=i.G2t({imports:[c.Ui,S.jI]}),Ne})()},52929:(Ae,ee,l)=>{"use strict";l.d(ee,{Qu:()=>S,VD:()=>c,ZE:()=>p,gZ:()=>t});var i=l(73664);let t=(()=>{var e;class T{transform(d,w){return d?.replace(/^[0]+/g,"")}static#e=e=()=>(this.\u0275fac=function(w){return new(w||T)},this.\u0275pipe=i.EJ8({name:"removeleadingzeros",type:T,pure:!0,standalone:!1}))}return e(),T})(),p=(()=>{var e;class T{transform(d,w){return d?.replace(/(?:^\w|[A-Z]|\b\w)/g,(m,P)=>m.toUpperCase())?.replace(/\s+/g,"")?.replace(/-/g," ")}static#e=e=()=>(this.\u0275fac=function(w){return new(w||T)},this.\u0275pipe=i.EJ8({name:"camelcase",type:T,pure:!0,standalone:!1}))}return e(),T})(),S=(()=>{var e;class T{transform(d,w,m){return d.replace(/(?:^\w|[A-Z]|\b\w)/g,(P,M)=>" "+P.toUpperCase())}static#e=e=()=>(this.\u0275fac=function(w){return new(w||T)},this.\u0275pipe=i.EJ8({name:"camelCaseWithSpaces",type:T,pure:!0,standalone:!1}))}return e(),T})(),c=(()=>{var e;class T{transform(d,w,m){return d=d?d.toLowerCase().replace(/\s+/g,"")?.replace(/-/g," "):"",w&&(d=d.replace(new RegExp(w,"g")," ")),m&&(d=d.replace(new RegExp(m,"g")," ")),d.replace(/(?:^\w|[A-Z]|\b\w)/g,(P,M)=>P.toUpperCase())}static#e=e=()=>(this.\u0275fac=function(w){return new(w||T)},this.\u0275pipe=i.EJ8({name:"camelcaseWithReplace",type:T,pure:!0,standalone:!1}))}return e(),T})()},52965:(Ae,ee,l)=>{ee.publicEncrypt=l(87267),ee.privateDecrypt=l(98613),ee.privateEncrypt=function(t,p){return ee.publicEncrypt(t,p,!0)},ee.publicDecrypt=function(t,p){return ee.privateDecrypt(t,p,!0)}},53155:(Ae,ee,l)=>{"use strict";l.d(ee,{t:()=>S});var i=l(73664);const t=["mat-internal-form-field",""],p=["*"];let S=(()=>{class c{labelPosition;static \u0275fac=function(g){return new(g||c)};static \u0275cmp=i.VBU({type:c,selectors:[["div","mat-internal-form-field",""]],hostAttrs:[1,"mdc-form-field","mat-internal-form-field"],hostVars:2,hostBindings:function(g,d){2&g&&i.AVh("mdc-form-field--align-end","before"===d.labelPosition)},inputs:{labelPosition:"labelPosition"},attrs:t,ngContentSelectors:p,decls:1,vars:0,template:function(g,d){1&g&&(i.NAR(),i.SdG(0))},styles:[".mat-internal-form-field{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-flex;align-items:center;vertical-align:middle}.mat-internal-form-field>label{margin-left:0;margin-right:auto;padding-left:4px;padding-right:0;order:0}[dir=rtl] .mat-internal-form-field>label{margin-left:auto;margin-right:0;padding-left:0;padding-right:4px}.mdc-form-field--align-end>label{margin-left:auto;margin-right:0;padding-left:0;padding-right:4px;order:-1}[dir=rtl] .mdc-form-field--align-end .mdc-form-field--align-end label{margin-left:0;margin-right:auto;padding-left:4px;padding-right:0}\n"],encapsulation:2,changeDetection:0})}return c})()},53202:(Ae,ee,l)=>{"use strict";l.d(ee,{Q:()=>p});var i=l(21413),t=l(2615);let p=(()=>{var S;class c{constructor(){this.sessionSub=new i.B}watchSession(){return this.sessionSub.asObservable()}getItem(T){return sessionStorage.getItem(T)}getAllItems(){return sessionStorage}setItem(T,g){sessionStorage.setItem(T,g),this.sessionSub.next(sessionStorage)}removeItem(T){sessionStorage.removeItem(T),this.sessionSub.next(sessionStorage)}clearAll(){sessionStorage.clear(),this.sessionSub.next(sessionStorage)}static#e=S=()=>(this.\u0275fac=function(g){return new(g||c)},this.\u0275prov=t.jDH({token:c,factory:c.\u0275fac}))}return S(),c})()},53459:(Ae,ee,l)=>{var i=l(57223),t=l(35294);function p(S){this.rand=S||new t.Rand}Ae.exports=p,p.create=function(c){return new p(c)},p.prototype._randbelow=function(c){var e=c.bitLength(),T=Math.ceil(e/8);do{var g=new i(this.rand.generate(T))}while(g.cmp(c)>=0);return g},p.prototype._randrange=function(c,e){var T=e.sub(c);return c.add(this._randbelow(T))},p.prototype.test=function(c,e,T){var g=c.bitLength(),d=i.mont(c),w=new i(1).toRed(d);e||(e=Math.max(1,g/48|0));for(var m=c.subn(1),P=0;!m.testn(P);P++);for(var M=c.shrn(P),j=m.toRed(d);e>0;e--){var K=this._randrange(new i(2),m);T&&T(K);var q=K.toRed(d).redPow(M);if(0!==q.cmp(w)&&0!==q.cmp(j)){for(var G=1;G0;e--){var j=this._randrange(new i(2),w),U=c.gcd(j);if(0!==U.cmpn(1))return U;var K=j.toRed(g).redPow(P);if(0!==K.cmp(d)&&0!==K.cmp(M)){for(var q=1;q{"use strict";l.d(ee,{E:()=>T});var i=l(39974),t=l(54360),p=l(58750),S=l(33669),c=l(85343),e=l(9326);function T(...g){const d=(0,e.ms)(g);return(0,i.N)((w,m)=>{const P=g.length,M=new Array(P);let j=g.map(()=>!1),U=!1;for(let K=0;K{M[K]=q,!U&&!j[K]&&(j[K]=!0,(U=j.every(S.D))&&(j=null))},c.l));w.subscribe((0,t._)(m,K=>{if(U){const q=[K,...M];m.next(d?d(...q):q)}}))})}},54272:(Ae,ee,l)=>{var i=l(83838),t=i.Buffer;function p(c,e){for(var T in c)e[T]=c[T]}function S(c,e,T){return t(c,e,T)}t.from&&t.alloc&&t.allocUnsafe&&t.allocUnsafeSlow?Ae.exports=i:(p(i,ee),ee.Buffer=S),p(t,S),S.from=function(c,e,T){if("number"==typeof c)throw new TypeError("Argument must not be a number");return t(c,e,T)},S.alloc=function(c,e,T){if("number"!=typeof c)throw new TypeError("Argument must be a number");var g=t(c);return void 0!==e?"string"==typeof T?g.fill(e,T):g.fill(e):g.fill(0),g},S.allocUnsafe=function(c){if("number"!=typeof c)throw new TypeError("Argument must be a number");return t(c)},S.allocUnsafeSlow=function(c){if("number"!=typeof c)throw new TypeError("Argument must be a number");return i.SlowBuffer(c)}},54360:(Ae,ee,l)=>{"use strict";l.d(ee,{H:()=>p,_:()=>t});var i=l(47707);function t(S,c,e,T,g){return new p(S,c,e,T,g)}class p extends i.vU{constructor(c,e,T,g,d,w){super(c),this.onFinalize=d,this.shouldUnsubscribe=w,this._next=e?function(m){try{e(m)}catch(P){c.error(P)}}:super._next,this._error=g?function(m){try{g(m)}catch(P){c.error(P)}finally{this.unsubscribe()}}:super._error,this._complete=T?function(){try{T()}catch(m){c.error(m)}finally{this.unsubscribe()}}:super._complete}unsubscribe(){var c;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){const{closed:e}=this;super.unsubscribe(),!e&&(null===(c=this.onFinalize)||void 0===c||c.call(this))}}}},54969:(Ae,ee,l)=>{const i=l(91677);function t(p){this.mode=i.BYTE,this.data="string"==typeof p?(new TextEncoder).encode(p):new Uint8Array(p)}t.getBitsLength=function(S){return 8*S},t.prototype.getLength=function(){return this.data.length},t.prototype.getBitsLength=function(){return t.getBitsLength(this.data.length)},t.prototype.write=function(p){for(let S=0,c=this.data.length;S{"use strict";l.d(ee,{l:()=>p});var i=l(3494),t=l(98071);function p(S){return(0,t.T)(S[i.s])}},55537:(Ae,ee,l)=>{"use strict";var i=l(3136),t=l(88723),p=l(71993),S=l(98828),c=i.assert;function e(g){this.twisted=1!=(0|g.a),this.mOneA=this.twisted&&-1==(0|g.a),this.extended=this.mOneA,S.call(this,"edwards",g),this.a=new t(g.a,16).umod(this.red.m),this.a=this.a.toRed(this.red),this.c=new t(g.c,16).toRed(this.red),this.c2=this.c.redSqr(),this.d=new t(g.d,16).toRed(this.red),this.dd=this.d.redAdd(this.d),c(!this.twisted||0===this.c.fromRed().cmpn(1)),this.oneC=1==(0|g.c)}function T(g,d,w,m,P){S.BasePoint.call(this,g,"projective"),null===d&&null===w&&null===m?(this.x=this.curve.zero,this.y=this.curve.one,this.z=this.curve.one,this.t=this.curve.zero,this.zOne=!0):(this.x=new t(d,16),this.y=new t(w,16),this.z=m?new t(m,16):this.curve.one,this.t=P&&new t(P,16),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.y.red||(this.y=this.y.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)),this.t&&!this.t.red&&(this.t=this.t.toRed(this.curve.red)),this.zOne=this.z===this.curve.one,this.curve.extended&&!this.t&&(this.t=this.x.redMul(this.y),this.zOne||(this.t=this.t.redMul(this.z.redInvm()))))}p(e,S),Ae.exports=e,e.prototype._mulA=function(d){return this.mOneA?d.redNeg():this.a.redMul(d)},e.prototype._mulC=function(d){return this.oneC?d:this.c.redMul(d)},e.prototype.jpoint=function(d,w,m,P){return this.point(d,w,m,P)},e.prototype.pointFromX=function(d,w){(d=new t(d,16)).red||(d=d.toRed(this.red));var m=d.redSqr(),P=this.c2.redSub(this.a.redMul(m)),M=this.one.redSub(this.c2.redMul(this.d).redMul(m)),j=P.redMul(M.redInvm()),U=j.redSqrt();if(0!==U.redSqr().redSub(j).cmp(this.zero))throw new Error("invalid point");var K=U.fromRed().isOdd();return(w&&!K||!w&&K)&&(U=U.redNeg()),this.point(d,U)},e.prototype.pointFromY=function(d,w){(d=new t(d,16)).red||(d=d.toRed(this.red));var m=d.redSqr(),P=m.redSub(this.c2),M=m.redMul(this.d).redMul(this.c2).redSub(this.a),j=P.redMul(M.redInvm());if(0===j.cmp(this.zero)){if(w)throw new Error("invalid point");return this.point(this.zero,d)}var U=j.redSqrt();if(0!==U.redSqr().redSub(j).cmp(this.zero))throw new Error("invalid point");return U.fromRed().isOdd()!==w&&(U=U.redNeg()),this.point(U,d)},e.prototype.validate=function(d){if(d.isInfinity())return!0;d.normalize();var w=d.x.redSqr(),m=d.y.redSqr(),P=w.redMul(this.a).redAdd(m),M=this.c2.redMul(this.one.redAdd(this.d.redMul(w).redMul(m)));return 0===P.cmp(M)},p(T,S.BasePoint),e.prototype.pointFromJSON=function(d){return T.fromJSON(this,d)},e.prototype.point=function(d,w,m,P){return new T(this,d,w,m,P)},T.fromJSON=function(d,w){return new T(d,w[0],w[1],w[2])},T.prototype.inspect=function(){return this.isInfinity()?"":""},T.prototype.isInfinity=function(){return 0===this.x.cmpn(0)&&(0===this.y.cmp(this.z)||this.zOne&&0===this.y.cmp(this.curve.c))},T.prototype._extDbl=function(){var d=this.x.redSqr(),w=this.y.redSqr(),m=this.z.redSqr();m=m.redIAdd(m);var P=this.curve._mulA(d),M=this.x.redAdd(this.y).redSqr().redISub(d).redISub(w),j=P.redAdd(w),U=j.redSub(m),K=P.redSub(w),q=M.redMul(U),G=j.redMul(K),Q=M.redMul(K),$=U.redMul(j);return this.curve.point(q,G,$,Q)},T.prototype._projDbl=function(){var P,M,j,U,K,q,d=this.x.redAdd(this.y).redSqr(),w=this.x.redSqr(),m=this.y.redSqr();if(this.curve.twisted){var G=(U=this.curve._mulA(w)).redAdd(m);this.zOne?(P=d.redSub(w).redSub(m).redMul(G.redSub(this.curve.two)),M=G.redMul(U.redSub(m)),j=G.redSqr().redSub(G).redSub(G)):(K=this.z.redSqr(),q=G.redSub(K).redISub(K),P=d.redSub(w).redISub(m).redMul(q),M=G.redMul(U.redSub(m)),j=G.redMul(q))}else U=w.redAdd(m),K=this.curve._mulC(this.z).redSqr(),q=U.redSub(K).redSub(K),P=this.curve._mulC(d.redISub(U)).redMul(q),M=this.curve._mulC(U).redMul(w.redISub(m)),j=U.redMul(q);return this.curve.point(P,M,j)},T.prototype.dbl=function(){return this.isInfinity()?this:this.curve.extended?this._extDbl():this._projDbl()},T.prototype._extAdd=function(d){var w=this.y.redSub(this.x).redMul(d.y.redSub(d.x)),m=this.y.redAdd(this.x).redMul(d.y.redAdd(d.x)),P=this.t.redMul(this.curve.dd).redMul(d.t),M=this.z.redMul(d.z.redAdd(d.z)),j=m.redSub(w),U=M.redSub(P),K=M.redAdd(P),q=m.redAdd(w),G=j.redMul(U),Q=K.redMul(q),$=j.redMul(q),ae=U.redMul(K);return this.curve.point(G,Q,ae,$)},T.prototype._projAdd=function(d){var Q,$,w=this.z.redMul(d.z),m=w.redSqr(),P=this.x.redMul(d.x),M=this.y.redMul(d.y),j=this.curve.d.redMul(P).redMul(M),U=m.redSub(j),K=m.redAdd(j),q=this.x.redAdd(this.y).redMul(d.x.redAdd(d.y)).redISub(P).redISub(M),G=w.redMul(U).redMul(q);return this.curve.twisted?(Q=w.redMul(K).redMul(M.redSub(this.curve._mulA(P))),$=U.redMul(K)):(Q=w.redMul(K).redMul(M.redSub(P)),$=this.curve._mulC(U).redMul(K)),this.curve.point(G,Q,$)},T.prototype.add=function(d){return this.isInfinity()?d:d.isInfinity()?this:this.curve.extended?this._extAdd(d):this._projAdd(d)},T.prototype.mul=function(d){return this._hasDoubles(d)?this.curve._fixedNafMul(this,d):this.curve._wnafMul(this,d)},T.prototype.mulAdd=function(d,w,m){return this.curve._wnafMulAdd(1,[this,w],[d,m],2,!1)},T.prototype.jmulAdd=function(d,w,m){return this.curve._wnafMulAdd(1,[this,w],[d,m],2,!0)},T.prototype.normalize=function(){if(this.zOne)return this;var d=this.z.redInvm();return this.x=this.x.redMul(d),this.y=this.y.redMul(d),this.t&&(this.t=this.t.redMul(d)),this.z=this.curve.one,this.zOne=!0,this},T.prototype.neg=function(){return this.curve.point(this.x.redNeg(),this.y,this.z,this.t&&this.t.redNeg())},T.prototype.getX=function(){return this.normalize(),this.x.fromRed()},T.prototype.getY=function(){return this.normalize(),this.y.fromRed()},T.prototype.eq=function(d){return this===d||0===this.getX().cmp(d.getX())&&0===this.getY().cmp(d.getY())},T.prototype.eqXToP=function(d){var w=d.toRed(this.curve.red).redMul(this.z);if(0===this.x.cmp(w))return!0;for(var m=d.clone(),P=this.curve.redN.redMul(this.z);;){if(m.iadd(this.curve.n),m.cmp(this.curve.p)>=0)return!1;if(w.redIAdd(P),0===this.x.cmp(w))return!0}},T.prototype.toP=T.prototype.normalize,T.prototype.mixedAdd=T.prototype.add},55911:(Ae,ee,l)=>{"use strict";l.d(ee,{KQ:()=>g,s5:()=>w});var i=l(2615),t=l(73664),p=l(39842),S=l(22466);const c=["*",[["mat-toolbar-row"]]],e=["*","mat-toolbar-row"];let T=(()=>{class m{static \u0275fac=function(j){return new(j||m)};static \u0275dir=t.FsC({type:m,selectors:[["mat-toolbar-row"]],hostAttrs:[1,"mat-toolbar-row"],exportAs:["matToolbarRow"]})}return m})(),g=(()=>{class m{_elementRef=(0,i.WQX)(t.aKT);_platform=(0,i.WQX)(p.O);_document=(0,i.WQX)(i.qQL);color;_toolbarRows;constructor(){}ngAfterViewInit(){this._platform.isBrowser&&(this._checkToolbarMixedModes(),this._toolbarRows.changes.subscribe(()=>this._checkToolbarMixedModes()))}_checkToolbarMixedModes(){}static \u0275fac=function(j){return new(j||m)};static \u0275cmp=t.VBU({type:m,selectors:[["mat-toolbar"]],contentQueries:function(j,U,K){if(1&j&&t.wni(K,T,5),2&j){let q;t.mGM(q=t.lsd())&&(U._toolbarRows=q)}},hostAttrs:[1,"mat-toolbar"],hostVars:6,hostBindings:function(j,U){2&j&&(t.HbH(U.color?"mat-"+U.color:""),t.AVh("mat-toolbar-multiple-rows",U._toolbarRows.length>0)("mat-toolbar-single-row",0===U._toolbarRows.length))},inputs:{color:"color"},exportAs:["matToolbar"],ngContentSelectors:e,decls:2,vars:0,template:function(j,U){1&j&&(t.NAR(c),t.SdG(0),t.SdG(1,1))},styles:[".mat-toolbar{background:var(--mat-toolbar-container-background-color, var(--mat-sys-surface));color:var(--mat-toolbar-container-text-color, var(--mat-sys-on-surface))}.mat-toolbar,.mat-toolbar h1,.mat-toolbar h2,.mat-toolbar h3,.mat-toolbar h4,.mat-toolbar h5,.mat-toolbar h6{font-family:var(--mat-toolbar-title-text-font, var(--mat-sys-title-large-font));font-size:var(--mat-toolbar-title-text-size, var(--mat-sys-title-large-size));line-height:var(--mat-toolbar-title-text-line-height, var(--mat-sys-title-large-line-height));font-weight:var(--mat-toolbar-title-text-weight, var(--mat-sys-title-large-weight));letter-spacing:var(--mat-toolbar-title-text-tracking, var(--mat-sys-title-large-tracking));margin:0}@media(forced-colors: active){.mat-toolbar{outline:solid 1px}}.mat-toolbar .mat-form-field-underline,.mat-toolbar .mat-form-field-ripple,.mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.mat-toolbar .mat-form-field-label,.mat-toolbar .mat-focused .mat-form-field-label,.mat-toolbar .mat-select-value,.mat-toolbar .mat-select-arrow,.mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.mat-toolbar .mat-input-element{caret-color:currentColor}.mat-toolbar .mat-mdc-button-base.mat-mdc-button-base.mat-unthemed{--mat-button-text-label-text-color: var(--mat-toolbar-container-text-color, var(--mat-sys-on-surface));--mat-button-outlined-label-text-color: var(--mat-toolbar-container-text-color, var(--mat-sys-on-surface))}.mat-toolbar-row,.mat-toolbar-single-row{display:flex;box-sizing:border-box;padding:0 16px;width:100%;flex-direction:row;align-items:center;white-space:nowrap;height:var(--mat-toolbar-standard-height, 64px)}@media(max-width: 599px){.mat-toolbar-row,.mat-toolbar-single-row{height:var(--mat-toolbar-mobile-height, 56px)}}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%;min-height:var(--mat-toolbar-standard-height, 64px)}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:var(--mat-toolbar-mobile-height, 56px)}}\n"],encapsulation:2,changeDetection:0})}return m})(),w=(()=>{class m{static \u0275fac=function(j){return new(j||m)};static \u0275mod=t.$C({type:m});static \u0275inj=i.G2t({imports:[S.y,S.y]})}return m})()},55941:(Ae,ee,l)=>{var i=l(71993),t=l(49609),p=t.base,S=t.bignum,c=t.constants.der;function e(w){this.enc="der",this.name=w.name,this.entity=w,this.tree=new T,this.tree._init(w.body)}function T(w){p.Node.call(this,"der",w)}function g(w,m){var P=w.readUInt8(m);if(w.isError(P))return P;var M=c.tagClass[P>>6],j=!(32&P);if(31&~P)P&=31;else{var U=P;for(P=0;!(128&~U);){if(U=w.readUInt8(m),w.isError(U))return U;P<<=7,P|=127&U}}return{cls:M,primitive:j,tag:P,tagStr:c.tag[P]}}function d(w,m,P){var M=w.readUInt8(P);if(w.isError(M))return M;if(!m&&128===M)return null;if(!(128&M))return M;var j=127&M;if(j>4)return w.error("length octect is too long");M=0;for(var U=0;U{"use strict";l.d(ee,{V:()=>p});var i=l(89417),t=l(73664);let p=(()=>{var S;class c{validate(T){return this.min?i.k0.min(+this.min)(T):null}static#e=S=()=>(this.\u0275fac=function(g){return new(g||c)},this.\u0275dir=t.FsC({type:c,selectors:[["input","min",""]],inputs:{min:"min"},standalone:!1,features:[t.Jv_([{provide:i.cz,useExisting:c,multi:!0}])]}))}return S(),c})()},56432:(Ae,ee,l)=>{"use strict";var i=l(71993),t=l(90509),p=l(3247),S=l(27054).Buffer,c=l(83407),e=l(36636),T=l(25443),g=S.alloc(128);function d(w,m){p.call(this,"digest"),"string"==typeof m&&(m=S.from(m));var P="sha512"===w||"sha384"===w?128:64;this._alg=w,this._key=m,m.length>P?m=("rmd160"===w?new e:T(w)).update(m).digest():m.length{var ee={}.toString;Ae.exports=Array.isArray||function(l){return"[object Array]"==ee.call(l)}},56511:(Ae,ee,l)=>{const i=l(47077);function t(c,e){const T=c.a/255,g=e+'="'+c.hex+'"';return T<1?g+" "+e+'-opacity="'+T.toFixed(2).slice(1)+'"':g}function p(c,e,T){let g=c+e;return typeof T<"u"&&(g+=" "+T),g}ee.render=function(e,T,g){const d=i.getOptions(T),w=e.modules.size,m=e.modules.data,P=w+2*d.margin,M=d.color.light.a?"':"",j="0&&M>0&&c[P-1]||(g+=w?p("M",M+T,.5+j+T):p("m",d,0),d=0,w=!1),M+1',q=''+M+j+"\n";return"function"==typeof g&&g(null,q),q}},56977:(Ae,ee,l)=>{"use strict";l.d(ee,{Q:()=>c});var i=l(39974),t=l(54360),p=l(58750),S=l(85343);function c(e){return(0,i.N)((T,g)=>{(0,p.Tg)(e).subscribe((0,t._)(g,()=>g.complete(),S.l)),!g.closed&&T.subscribe(g)})}},57223:function(Ae,ee,l){!function(i,t){"use strict";function p(D,n){if(!D)throw new Error(n||"Assertion failed")}function S(D,n){D.super_=n;var o=function(){};o.prototype=n.prototype,D.prototype=new o,D.prototype.constructor=D}function c(D,n,o){if(c.isBN(D))return D;this.negative=0,this.words=null,this.length=0,this.red=null,null!==D&&(("le"===n||"be"===n)&&(o=n,n=10),this._init(D||0,n||10,o||"be"))}var e;"object"==typeof i?i.exports=c:t.BN=c,c.BN=c,c.wordSize=26;try{e=typeof window<"u"&&typeof window.Buffer<"u"?window.Buffer:l(64688).Buffer}catch{}function T(D,n){var o=D.charCodeAt(n);return o>=65&&o<=70?o-55:o>=97&&o<=102?o-87:o-48&15}function g(D,n,o){var f=T(D,o);return o-1>=n&&(f|=T(D,o-1)<<4),f}function d(D,n,o,f){for(var h=0,b=Math.min(D.length,o),A=n;A=49?k-49+10:k>=17?k-17+10:k}return h}c.isBN=function(n){return n instanceof c||null!==n&&"object"==typeof n&&n.constructor.wordSize===c.wordSize&&Array.isArray(n.words)},c.max=function(n,o){return n.cmp(o)>0?n:o},c.min=function(n,o){return n.cmp(o)<0?n:o},c.prototype._init=function(n,o,f){if("number"==typeof n)return this._initNumber(n,o,f);if("object"==typeof n)return this._initArray(n,o,f);"hex"===o&&(o=16),p(o===(0|o)&&o>=2&&o<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[b]|=(A=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-k&67108863,(k+=24)>=26&&(k-=26,b++);else if("le"===f)for(h=0,b=0;h>>26-k&67108863,(k+=24)>=26&&(k-=26,b++);return this.strip()},c.prototype._parseHex=function(n,o,f){this.length=Math.ceil((n.length-o)/6),this.words=new Array(this.length);for(var h=0;h=o;h-=2)k=g(n,o,h)<=18?(b-=18,this.words[A+=1]|=k>>>26):b+=8;else for(h=(n.length-o)%2==0?o+1:o;h=18?(b-=18,this.words[A+=1]|=k>>>26):b+=8;this.strip()},c.prototype._parseBase=function(n,o,f){this.words=[0],this.length=1;for(var h=0,b=1;b<=67108863;b*=o)h++;h--,b=b/o|0;for(var A=n.length-f,k=A%h,x=Math.min(A,A-k)+f,r=0,_=f;_1&&0===this.words[this.length-1];)this.length--;return this._normSign()},c.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},c.prototype.inspect=function(){return(this.red?""};var w=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],m=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],P=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function j(D,n,o){o.negative=n.negative^D.negative;var f=D.length+n.length|0;o.length=f,f=f-1|0;var h=0|D.words[0],b=0|n.words[0],A=h*b,x=A/67108864|0;o.words[0]=67108863&A;for(var r=1;r>>26,W=67108863&x,I=Math.min(r,n.length-1),B=Math.max(0,r-D.length+1);B<=I;B++)_+=(A=(h=0|D.words[r-B|0])*(b=0|n.words[B])+W)/67108864|0,W=67108863&A;o.words[r]=0|W,x=0|_}return 0!==x?o.words[r]=0|x:o.length--,o.strip()}c.prototype.toString=function(n,o){var f;if(o=0|o||1,16===(n=n||10)||"hex"===n){f="";for(var h=0,b=0,A=0;A>>24-h&16777215,(h+=2)>=26&&(h-=26,A--),f=0!==b||A!==this.length-1?w[6-x.length]+x+f:x+f}for(0!==b&&(f=b.toString(16)+f);f.length%o!==0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}if(n===(0|n)&&n>=2&&n<=36){var r=m[n],_=P[n];f="";var W=this.clone();for(W.negative=0;!W.isZero();){var I=W.modn(_).toString(n);f=(W=W.idivn(_)).isZero()?I+f:w[r-I.length]+I+f}for(this.isZero()&&(f="0"+f);f.length%o!==0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}p(!1,"Base should be between 2 and 36")},c.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&p(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},c.prototype.toJSON=function(){return this.toString(16)},c.prototype.toBuffer=function(n,o){return p(typeof e<"u"),this.toArrayLike(e,n,o)},c.prototype.toArray=function(n,o){return this.toArrayLike(Array,n,o)},c.prototype.toArrayLike=function(n,o,f){var h=this.byteLength(),b=f||Math.max(1,h);p(h<=b,"byte array longer than desired length"),p(b>0,"Requested array length <= 0"),this.strip();var x,r,A="le"===o,k=new n(b),_=this.clone();if(A){for(r=0;!_.isZero();r++)x=_.andln(255),_.iushrn(8),k[r]=x;for(;r=4096&&(f+=13,o>>>=13),o>=64&&(f+=7,o>>>=7),o>=8&&(f+=4,o>>>=4),o>=2&&(f+=2,o>>>=2),f+o},c.prototype._zeroBits=function(n){if(0===n)return 26;var o=n,f=0;return!(8191&o)&&(f+=13,o>>>=13),!(127&o)&&(f+=7,o>>>=7),!(15&o)&&(f+=4,o>>>=4),!(3&o)&&(f+=2,o>>>=2),!(1&o)&&f++,f},c.prototype.bitLength=function(){var o=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+o},c.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,o=0;on.length?this.clone().ior(n):n.clone().ior(this)},c.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},c.prototype.iuand=function(n){var o;o=this.length>n.length?n:this;for(var f=0;fn.length?this.clone().iand(n):n.clone().iand(this)},c.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},c.prototype.iuxor=function(n){var o,f;this.length>n.length?(o=this,f=n):(o=n,f=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},c.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},c.prototype.inotn=function(n){p("number"==typeof n&&n>=0);var o=0|Math.ceil(n/26),f=n%26;this._expand(o),f>0&&o--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-f),this.strip()},c.prototype.notn=function(n){return this.clone().inotn(n)},c.prototype.setn=function(n,o){p("number"==typeof n&&n>=0);var f=n/26|0,h=n%26;return this._expand(f+1),this.words[f]=o?this.words[f]|1<n.length?(f=this,h=n):(f=n,h=this);for(var b=0,A=0;A>>26;for(;0!==b&&A>>26;if(this.length=f.length,0!==b)this.words[this.length]=b,this.length++;else if(f!==this)for(;An.length?this.clone().iadd(n):n.clone().iadd(this)},c.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var o=this.iadd(n);return n.negative=1,o._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,b,f=this.cmp(n);if(0===f)return this.negative=0,this.length=1,this.words[0]=0,this;f>0?(h=this,b=n):(h=n,b=this);for(var A=0,k=0;k>26,this.words[k]=67108863&o;for(;0!==A&&k>26,this.words[k]=67108863&o;if(0===A&&k>>13,re=0|h[1],pe=8191&re,be=re>>>13,Be=0|h[2],_e=8191&Be,ye=Be>>>13,Le=0|h[3],Ke=8191&Le,ge=Le>>>13,ve=0|h[4],Oe=8191&ve,Ee=ve>>>13,dt=0|h[5],nt=8191&dt,Ct=dt>>>13,Mt=0|h[6],lt=8191&Mt,Pe=Mt>>>13,Ht=0|h[7],ct=8191&Ht,Ce=Ht>>>13,ze=0|h[8],Z=8191&ze,J=ze>>>13,fe=0|h[9],Ie=8191&fe,ht=fe>>>13,li=0|b[0],Qt=8191&li,di=li>>>13,kt=0|b[1],Rt=8191&kt,le=kt>>>13,te=0|b[2],ce=8191&te,se=te>>>13,ke=0|b[3],Ue=8191&ke,Ne=ke>>>13,Kt=0|b[4],yt=8191&Kt,Vt=Kt>>>13,Zt=0|b[5],ti=8191&Zt,Ye=Zt>>>13,Nt=0|b[6],Et=8191&Nt,Jt=Nt>>>13,qe=0|b[7],$e=8191&qe,tt=qe>>>13,vi=0|b[8],ei=8191&vi,ci=vi>>>13,Hi=0|b[9],oi=8191&Hi,ui=Hi>>>13;f.negative=n.negative^o.negative,f.length=19;var ln=(k+(x=Math.imul(I,Qt))|0)+((8191&(r=(r=Math.imul(I,di))+Math.imul(B,Qt)|0))<<13)|0;k=((_=Math.imul(B,di))+(r>>>13)|0)+(ln>>>26)|0,ln&=67108863,x=Math.imul(pe,Qt),r=(r=Math.imul(pe,di))+Math.imul(be,Qt)|0,_=Math.imul(be,di);var nn=(k+(x=x+Math.imul(I,Rt)|0)|0)+((8191&(r=(r=r+Math.imul(I,le)|0)+Math.imul(B,Rt)|0))<<13)|0;k=((_=_+Math.imul(B,le)|0)+(r>>>13)|0)+(nn>>>26)|0,nn&=67108863,x=Math.imul(_e,Qt),r=(r=Math.imul(_e,di))+Math.imul(ye,Qt)|0,_=Math.imul(ye,di),x=x+Math.imul(pe,Rt)|0,r=(r=r+Math.imul(pe,le)|0)+Math.imul(be,Rt)|0,_=_+Math.imul(be,le)|0;var dn=(k+(x=x+Math.imul(I,ce)|0)|0)+((8191&(r=(r=r+Math.imul(I,se)|0)+Math.imul(B,ce)|0))<<13)|0;k=((_=_+Math.imul(B,se)|0)+(r>>>13)|0)+(dn>>>26)|0,dn&=67108863,x=Math.imul(Ke,Qt),r=(r=Math.imul(Ke,di))+Math.imul(ge,Qt)|0,_=Math.imul(ge,di),x=x+Math.imul(_e,Rt)|0,r=(r=r+Math.imul(_e,le)|0)+Math.imul(ye,Rt)|0,_=_+Math.imul(ye,le)|0,x=x+Math.imul(pe,ce)|0,r=(r=r+Math.imul(pe,se)|0)+Math.imul(be,ce)|0,_=_+Math.imul(be,se)|0;var zn=(k+(x=x+Math.imul(I,Ue)|0)|0)+((8191&(r=(r=r+Math.imul(I,Ne)|0)+Math.imul(B,Ue)|0))<<13)|0;k=((_=_+Math.imul(B,Ne)|0)+(r>>>13)|0)+(zn>>>26)|0,zn&=67108863,x=Math.imul(Oe,Qt),r=(r=Math.imul(Oe,di))+Math.imul(Ee,Qt)|0,_=Math.imul(Ee,di),x=x+Math.imul(Ke,Rt)|0,r=(r=r+Math.imul(Ke,le)|0)+Math.imul(ge,Rt)|0,_=_+Math.imul(ge,le)|0,x=x+Math.imul(_e,ce)|0,r=(r=r+Math.imul(_e,se)|0)+Math.imul(ye,ce)|0,_=_+Math.imul(ye,se)|0,x=x+Math.imul(pe,Ue)|0,r=(r=r+Math.imul(pe,Ne)|0)+Math.imul(be,Ue)|0,_=_+Math.imul(be,Ne)|0;var It=(k+(x=x+Math.imul(I,yt)|0)|0)+((8191&(r=(r=r+Math.imul(I,Vt)|0)+Math.imul(B,yt)|0))<<13)|0;k=((_=_+Math.imul(B,Vt)|0)+(r>>>13)|0)+(It>>>26)|0,It&=67108863,x=Math.imul(nt,Qt),r=(r=Math.imul(nt,di))+Math.imul(Ct,Qt)|0,_=Math.imul(Ct,di),x=x+Math.imul(Oe,Rt)|0,r=(r=r+Math.imul(Oe,le)|0)+Math.imul(Ee,Rt)|0,_=_+Math.imul(Ee,le)|0,x=x+Math.imul(Ke,ce)|0,r=(r=r+Math.imul(Ke,se)|0)+Math.imul(ge,ce)|0,_=_+Math.imul(ge,se)|0,x=x+Math.imul(_e,Ue)|0,r=(r=r+Math.imul(_e,Ne)|0)+Math.imul(ye,Ue)|0,_=_+Math.imul(ye,Ne)|0,x=x+Math.imul(pe,yt)|0,r=(r=r+Math.imul(pe,Vt)|0)+Math.imul(be,yt)|0,_=_+Math.imul(be,Vt)|0;var Tt=(k+(x=x+Math.imul(I,ti)|0)|0)+((8191&(r=(r=r+Math.imul(I,Ye)|0)+Math.imul(B,ti)|0))<<13)|0;k=((_=_+Math.imul(B,Ye)|0)+(r>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,x=Math.imul(lt,Qt),r=(r=Math.imul(lt,di))+Math.imul(Pe,Qt)|0,_=Math.imul(Pe,di),x=x+Math.imul(nt,Rt)|0,r=(r=r+Math.imul(nt,le)|0)+Math.imul(Ct,Rt)|0,_=_+Math.imul(Ct,le)|0,x=x+Math.imul(Oe,ce)|0,r=(r=r+Math.imul(Oe,se)|0)+Math.imul(Ee,ce)|0,_=_+Math.imul(Ee,se)|0,x=x+Math.imul(Ke,Ue)|0,r=(r=r+Math.imul(Ke,Ne)|0)+Math.imul(ge,Ue)|0,_=_+Math.imul(ge,Ne)|0,x=x+Math.imul(_e,yt)|0,r=(r=r+Math.imul(_e,Vt)|0)+Math.imul(ye,yt)|0,_=_+Math.imul(ye,Vt)|0,x=x+Math.imul(pe,ti)|0,r=(r=r+Math.imul(pe,Ye)|0)+Math.imul(be,ti)|0,_=_+Math.imul(be,Ye)|0;var Ze=(k+(x=x+Math.imul(I,Et)|0)|0)+((8191&(r=(r=r+Math.imul(I,Jt)|0)+Math.imul(B,Et)|0))<<13)|0;k=((_=_+Math.imul(B,Jt)|0)+(r>>>13)|0)+(Ze>>>26)|0,Ze&=67108863,x=Math.imul(ct,Qt),r=(r=Math.imul(ct,di))+Math.imul(Ce,Qt)|0,_=Math.imul(Ce,di),x=x+Math.imul(lt,Rt)|0,r=(r=r+Math.imul(lt,le)|0)+Math.imul(Pe,Rt)|0,_=_+Math.imul(Pe,le)|0,x=x+Math.imul(nt,ce)|0,r=(r=r+Math.imul(nt,se)|0)+Math.imul(Ct,ce)|0,_=_+Math.imul(Ct,se)|0,x=x+Math.imul(Oe,Ue)|0,r=(r=r+Math.imul(Oe,Ne)|0)+Math.imul(Ee,Ue)|0,_=_+Math.imul(Ee,Ne)|0,x=x+Math.imul(Ke,yt)|0,r=(r=r+Math.imul(Ke,Vt)|0)+Math.imul(ge,yt)|0,_=_+Math.imul(ge,Vt)|0,x=x+Math.imul(_e,ti)|0,r=(r=r+Math.imul(_e,Ye)|0)+Math.imul(ye,ti)|0,_=_+Math.imul(ye,Ye)|0,x=x+Math.imul(pe,Et)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(be,Et)|0,_=_+Math.imul(be,Jt)|0;var Ve=(k+(x=x+Math.imul(I,$e)|0)|0)+((8191&(r=(r=r+Math.imul(I,tt)|0)+Math.imul(B,$e)|0))<<13)|0;k=((_=_+Math.imul(B,tt)|0)+(r>>>13)|0)+(Ve>>>26)|0,Ve&=67108863,x=Math.imul(Z,Qt),r=(r=Math.imul(Z,di))+Math.imul(J,Qt)|0,_=Math.imul(J,di),x=x+Math.imul(ct,Rt)|0,r=(r=r+Math.imul(ct,le)|0)+Math.imul(Ce,Rt)|0,_=_+Math.imul(Ce,le)|0,x=x+Math.imul(lt,ce)|0,r=(r=r+Math.imul(lt,se)|0)+Math.imul(Pe,ce)|0,_=_+Math.imul(Pe,se)|0,x=x+Math.imul(nt,Ue)|0,r=(r=r+Math.imul(nt,Ne)|0)+Math.imul(Ct,Ue)|0,_=_+Math.imul(Ct,Ne)|0,x=x+Math.imul(Oe,yt)|0,r=(r=r+Math.imul(Oe,Vt)|0)+Math.imul(Ee,yt)|0,_=_+Math.imul(Ee,Vt)|0,x=x+Math.imul(Ke,ti)|0,r=(r=r+Math.imul(Ke,Ye)|0)+Math.imul(ge,ti)|0,_=_+Math.imul(ge,Ye)|0,x=x+Math.imul(_e,Et)|0,r=(r=r+Math.imul(_e,Jt)|0)+Math.imul(ye,Et)|0,_=_+Math.imul(ye,Jt)|0,x=x+Math.imul(pe,$e)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(be,$e)|0,_=_+Math.imul(be,tt)|0;var Fe=(k+(x=x+Math.imul(I,ei)|0)|0)+((8191&(r=(r=r+Math.imul(I,ci)|0)+Math.imul(B,ei)|0))<<13)|0;k=((_=_+Math.imul(B,ci)|0)+(r>>>13)|0)+(Fe>>>26)|0,Fe&=67108863,x=Math.imul(Ie,Qt),r=(r=Math.imul(Ie,di))+Math.imul(ht,Qt)|0,_=Math.imul(ht,di),x=x+Math.imul(Z,Rt)|0,r=(r=r+Math.imul(Z,le)|0)+Math.imul(J,Rt)|0,_=_+Math.imul(J,le)|0,x=x+Math.imul(ct,ce)|0,r=(r=r+Math.imul(ct,se)|0)+Math.imul(Ce,ce)|0,_=_+Math.imul(Ce,se)|0,x=x+Math.imul(lt,Ue)|0,r=(r=r+Math.imul(lt,Ne)|0)+Math.imul(Pe,Ue)|0,_=_+Math.imul(Pe,Ne)|0,x=x+Math.imul(nt,yt)|0,r=(r=r+Math.imul(nt,Vt)|0)+Math.imul(Ct,yt)|0,_=_+Math.imul(Ct,Vt)|0,x=x+Math.imul(Oe,ti)|0,r=(r=r+Math.imul(Oe,Ye)|0)+Math.imul(Ee,ti)|0,_=_+Math.imul(Ee,Ye)|0,x=x+Math.imul(Ke,Et)|0,r=(r=r+Math.imul(Ke,Jt)|0)+Math.imul(ge,Et)|0,_=_+Math.imul(ge,Jt)|0,x=x+Math.imul(_e,$e)|0,r=(r=r+Math.imul(_e,tt)|0)+Math.imul(ye,$e)|0,_=_+Math.imul(ye,tt)|0,x=x+Math.imul(pe,ei)|0,r=(r=r+Math.imul(pe,ci)|0)+Math.imul(be,ei)|0,_=_+Math.imul(be,ci)|0;var it=(k+(x=x+Math.imul(I,oi)|0)|0)+((8191&(r=(r=r+Math.imul(I,ui)|0)+Math.imul(B,oi)|0))<<13)|0;k=((_=_+Math.imul(B,ui)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,x=Math.imul(Ie,Rt),r=(r=Math.imul(Ie,le))+Math.imul(ht,Rt)|0,_=Math.imul(ht,le),x=x+Math.imul(Z,ce)|0,r=(r=r+Math.imul(Z,se)|0)+Math.imul(J,ce)|0,_=_+Math.imul(J,se)|0,x=x+Math.imul(ct,Ue)|0,r=(r=r+Math.imul(ct,Ne)|0)+Math.imul(Ce,Ue)|0,_=_+Math.imul(Ce,Ne)|0,x=x+Math.imul(lt,yt)|0,r=(r=r+Math.imul(lt,Vt)|0)+Math.imul(Pe,yt)|0,_=_+Math.imul(Pe,Vt)|0,x=x+Math.imul(nt,ti)|0,r=(r=r+Math.imul(nt,Ye)|0)+Math.imul(Ct,ti)|0,_=_+Math.imul(Ct,Ye)|0,x=x+Math.imul(Oe,Et)|0,r=(r=r+Math.imul(Oe,Jt)|0)+Math.imul(Ee,Et)|0,_=_+Math.imul(Ee,Jt)|0,x=x+Math.imul(Ke,$e)|0,r=(r=r+Math.imul(Ke,tt)|0)+Math.imul(ge,$e)|0,_=_+Math.imul(ge,tt)|0,x=x+Math.imul(_e,ei)|0,r=(r=r+Math.imul(_e,ci)|0)+Math.imul(ye,ei)|0,_=_+Math.imul(ye,ci)|0;var bt=(k+(x=x+Math.imul(pe,oi)|0)|0)+((8191&(r=(r=r+Math.imul(pe,ui)|0)+Math.imul(be,oi)|0))<<13)|0;k=((_=_+Math.imul(be,ui)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863,x=Math.imul(Ie,ce),r=(r=Math.imul(Ie,se))+Math.imul(ht,ce)|0,_=Math.imul(ht,se),x=x+Math.imul(Z,Ue)|0,r=(r=r+Math.imul(Z,Ne)|0)+Math.imul(J,Ue)|0,_=_+Math.imul(J,Ne)|0,x=x+Math.imul(ct,yt)|0,r=(r=r+Math.imul(ct,Vt)|0)+Math.imul(Ce,yt)|0,_=_+Math.imul(Ce,Vt)|0,x=x+Math.imul(lt,ti)|0,r=(r=r+Math.imul(lt,Ye)|0)+Math.imul(Pe,ti)|0,_=_+Math.imul(Pe,Ye)|0,x=x+Math.imul(nt,Et)|0,r=(r=r+Math.imul(nt,Jt)|0)+Math.imul(Ct,Et)|0,_=_+Math.imul(Ct,Jt)|0,x=x+Math.imul(Oe,$e)|0,r=(r=r+Math.imul(Oe,tt)|0)+Math.imul(Ee,$e)|0,_=_+Math.imul(Ee,tt)|0,x=x+Math.imul(Ke,ei)|0,r=(r=r+Math.imul(Ke,ci)|0)+Math.imul(ge,ei)|0,_=_+Math.imul(ge,ci)|0;var ut=(k+(x=x+Math.imul(_e,oi)|0)|0)+((8191&(r=(r=r+Math.imul(_e,ui)|0)+Math.imul(ye,oi)|0))<<13)|0;k=((_=_+Math.imul(ye,ui)|0)+(r>>>13)|0)+(ut>>>26)|0,ut&=67108863,x=Math.imul(Ie,Ue),r=(r=Math.imul(Ie,Ne))+Math.imul(ht,Ue)|0,_=Math.imul(ht,Ne),x=x+Math.imul(Z,yt)|0,r=(r=r+Math.imul(Z,Vt)|0)+Math.imul(J,yt)|0,_=_+Math.imul(J,Vt)|0,x=x+Math.imul(ct,ti)|0,r=(r=r+Math.imul(ct,Ye)|0)+Math.imul(Ce,ti)|0,_=_+Math.imul(Ce,Ye)|0,x=x+Math.imul(lt,Et)|0,r=(r=r+Math.imul(lt,Jt)|0)+Math.imul(Pe,Et)|0,_=_+Math.imul(Pe,Jt)|0,x=x+Math.imul(nt,$e)|0,r=(r=r+Math.imul(nt,tt)|0)+Math.imul(Ct,$e)|0,_=_+Math.imul(Ct,tt)|0,x=x+Math.imul(Oe,ei)|0,r=(r=r+Math.imul(Oe,ci)|0)+Math.imul(Ee,ei)|0,_=_+Math.imul(Ee,ci)|0;var jt=(k+(x=x+Math.imul(Ke,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Ke,ui)|0)+Math.imul(ge,oi)|0))<<13)|0;k=((_=_+Math.imul(ge,ui)|0)+(r>>>13)|0)+(jt>>>26)|0,jt&=67108863,x=Math.imul(Ie,yt),r=(r=Math.imul(Ie,Vt))+Math.imul(ht,yt)|0,_=Math.imul(ht,Vt),x=x+Math.imul(Z,ti)|0,r=(r=r+Math.imul(Z,Ye)|0)+Math.imul(J,ti)|0,_=_+Math.imul(J,Ye)|0,x=x+Math.imul(ct,Et)|0,r=(r=r+Math.imul(ct,Jt)|0)+Math.imul(Ce,Et)|0,_=_+Math.imul(Ce,Jt)|0,x=x+Math.imul(lt,$e)|0,r=(r=r+Math.imul(lt,tt)|0)+Math.imul(Pe,$e)|0,_=_+Math.imul(Pe,tt)|0,x=x+Math.imul(nt,ei)|0,r=(r=r+Math.imul(nt,ci)|0)+Math.imul(Ct,ei)|0,_=_+Math.imul(Ct,ci)|0;var ai=(k+(x=x+Math.imul(Oe,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Oe,ui)|0)+Math.imul(Ee,oi)|0))<<13)|0;k=((_=_+Math.imul(Ee,ui)|0)+(r>>>13)|0)+(ai>>>26)|0,ai&=67108863,x=Math.imul(Ie,ti),r=(r=Math.imul(Ie,Ye))+Math.imul(ht,ti)|0,_=Math.imul(ht,Ye),x=x+Math.imul(Z,Et)|0,r=(r=r+Math.imul(Z,Jt)|0)+Math.imul(J,Et)|0,_=_+Math.imul(J,Jt)|0,x=x+Math.imul(ct,$e)|0,r=(r=r+Math.imul(ct,tt)|0)+Math.imul(Ce,$e)|0,_=_+Math.imul(Ce,tt)|0,x=x+Math.imul(lt,ei)|0,r=(r=r+Math.imul(lt,ci)|0)+Math.imul(Pe,ei)|0,_=_+Math.imul(Pe,ci)|0;var pi=(k+(x=x+Math.imul(nt,oi)|0)|0)+((8191&(r=(r=r+Math.imul(nt,ui)|0)+Math.imul(Ct,oi)|0))<<13)|0;k=((_=_+Math.imul(Ct,ui)|0)+(r>>>13)|0)+(pi>>>26)|0,pi&=67108863,x=Math.imul(Ie,Et),r=(r=Math.imul(Ie,Jt))+Math.imul(ht,Et)|0,_=Math.imul(ht,Jt),x=x+Math.imul(Z,$e)|0,r=(r=r+Math.imul(Z,tt)|0)+Math.imul(J,$e)|0,_=_+Math.imul(J,tt)|0,x=x+Math.imul(ct,ei)|0,r=(r=r+Math.imul(ct,ci)|0)+Math.imul(Ce,ei)|0,_=_+Math.imul(Ce,ci)|0;var ki=(k+(x=x+Math.imul(lt,oi)|0)|0)+((8191&(r=(r=r+Math.imul(lt,ui)|0)+Math.imul(Pe,oi)|0))<<13)|0;k=((_=_+Math.imul(Pe,ui)|0)+(r>>>13)|0)+(ki>>>26)|0,ki&=67108863,x=Math.imul(Ie,$e),r=(r=Math.imul(Ie,tt))+Math.imul(ht,$e)|0,_=Math.imul(ht,tt),x=x+Math.imul(Z,ei)|0,r=(r=r+Math.imul(Z,ci)|0)+Math.imul(J,ei)|0,_=_+Math.imul(J,ci)|0;var Ki=(k+(x=x+Math.imul(ct,oi)|0)|0)+((8191&(r=(r=r+Math.imul(ct,ui)|0)+Math.imul(Ce,oi)|0))<<13)|0;k=((_=_+Math.imul(Ce,ui)|0)+(r>>>13)|0)+(Ki>>>26)|0,Ki&=67108863,x=Math.imul(Ie,ei),r=(r=Math.imul(Ie,ci))+Math.imul(ht,ei)|0,_=Math.imul(ht,ci);var Ji=(k+(x=x+Math.imul(Z,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Z,ui)|0)+Math.imul(J,oi)|0))<<13)|0;k=((_=_+Math.imul(J,ui)|0)+(r>>>13)|0)+(Ji>>>26)|0,Ji&=67108863;var Dn=(k+(x=Math.imul(Ie,oi))|0)+((8191&(r=(r=Math.imul(Ie,ui))+Math.imul(ht,oi)|0))<<13)|0;return k=((_=Math.imul(ht,ui))+(r>>>13)|0)+(Dn>>>26)|0,Dn&=67108863,A[0]=ln,A[1]=nn,A[2]=dn,A[3]=zn,A[4]=It,A[5]=Tt,A[6]=Ze,A[7]=Ve,A[8]=Fe,A[9]=it,A[10]=bt,A[11]=ut,A[12]=jt,A[13]=ai,A[14]=pi,A[15]=ki,A[16]=Ki,A[17]=Ji,A[18]=Dn,0!==k&&(A[19]=k,f.length++),f};function q(D,n,o){return(new G).mulp(D,n,o)}function G(D,n){this.x=D,this.y=n}Math.imul||(U=j),c.prototype.mulTo=function(n,o){var f,h=this.length+n.length;return f=10===this.length&&10===n.length?U(this,n,o):h<63?j(this,n,o):h<1024?function K(D,n,o){o.negative=n.negative^D.negative,o.length=D.length+n.length;for(var f=0,h=0,b=0;b>>26)|0)>>>26,A&=67108863}o.words[b]=k,f=A,A=h}return 0!==f?o.words[b]=f:o.length--,o.strip()}(this,n,o):q(this,n,o),f},G.prototype.makeRBT=function(n){for(var o=new Array(n),f=c.prototype._countBits(n)-1,h=0;h>=1;return h},G.prototype.permute=function(n,o,f,h,b,A){for(var k=0;k>>=1)b++;return 1<>>=13),b>>>=13;for(A=2*o;A>=26,o+=h/67108864|0,o+=b>>>26,this.words[f]=67108863&b}return 0!==o&&(this.words[f]=o,this.length++),this.length=0===n?1:this.length,this},c.prototype.muln=function(n){return this.clone().imuln(n)},c.prototype.sqr=function(){return this.mul(this)},c.prototype.isqr=function(){return this.imul(this.clone())},c.prototype.pow=function(n){var o=function M(D){for(var n=new Array(D.bitLength()),o=0;o>>h}return n}(n);if(0===o.length)return new c(1);for(var f=this,h=0;h=0);var b,o=n%26,f=(n-o)/26,h=67108863>>>26-o<<26-o;if(0!==o){var A=0;for(b=0;b>>26-o}A&&(this.words[b]=A,this.length++)}if(0!==f){for(b=this.length-1;b>=0;b--)this.words[b+f]=this.words[b];for(b=0;b=0),h=o?(o-o%26)/26:0;var b=n%26,A=Math.min((n-b)/26,this.length),k=67108863^67108863>>>b<A)for(this.length-=A,r=0;r=0&&(0!==_||r>=h);r--){var W=0|this.words[r];this.words[r]=_<<26-b|W>>>b,_=W&k}return x&&0!==_&&(x.words[x.length++]=_),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},c.prototype.ishrn=function(n,o,f){return p(0===this.negative),this.iushrn(n,o,f)},c.prototype.shln=function(n){return this.clone().ishln(n)},c.prototype.ushln=function(n){return this.clone().iushln(n)},c.prototype.shrn=function(n){return this.clone().ishrn(n)},c.prototype.ushrn=function(n){return this.clone().iushrn(n)},c.prototype.testn=function(n){p("number"==typeof n&&n>=0);var o=n%26,f=(n-o)/26;return!(this.length<=f||!(this.words[f]&1<=0);var o=n%26,f=(n-o)/26;return p(0===this.negative,"imaskn works only with positive numbers"),this.length<=f?this:(0!==o&&f++,this.length=Math.min(f,this.length),0!==o&&(this.words[this.length-1]&=67108863^67108863>>>o<=67108864;o++)this.words[o]-=67108864,o===this.length-1?this.words[o+1]=1:this.words[o+1]++;return this.length=Math.max(this.length,o+1),this},c.prototype.isubn=function(n){if(p("number"==typeof n),p(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var o=0;o>26)-(x/67108864|0),this.words[b+f]=67108863&A}for(;b>26,this.words[b+f]=67108863&A;if(0===k)return this.strip();for(p(-1===k),k=0,b=0;b>26,this.words[b]=67108863&A;return this.negative=1,this.strip()},c.prototype._wordDiv=function(n,o){var f,h=this.clone(),b=n,A=0|b.words[b.length-1];0!=(f=26-this._countBits(A))&&(b=b.ushln(f),h.iushln(f),A=0|b.words[b.length-1]);var r,x=h.length-b.length;if("mod"!==o){(r=new c(null)).length=x+1,r.words=new Array(r.length);for(var _=0;_=0;I--){var B=67108864*(0|h.words[b.length+I])+(0|h.words[b.length+I-1]);for(B=Math.min(B/A|0,67108863),h._ishlnsubmul(b,B,I);0!==h.negative;)B--,h.negative=0,h._ishlnsubmul(b,1,I),h.isZero()||(h.negative^=1);r&&(r.words[I]=B)}return r&&r.strip(),h.strip(),"div"!==o&&0!==f&&h.iushrn(f),{div:r||null,mod:h}},c.prototype.divmod=function(n,o,f){return p(!n.isZero()),this.isZero()?{div:new c(0),mod:new c(0)}:0!==this.negative&&0===n.negative?(A=this.neg().divmod(n,o),"mod"!==o&&(h=A.div.neg()),"div"!==o&&(b=A.mod.neg(),f&&0!==b.negative&&b.iadd(n)),{div:h,mod:b}):0===this.negative&&0!==n.negative?(A=this.divmod(n.neg(),o),"mod"!==o&&(h=A.div.neg()),{div:h,mod:A.mod}):0!==(this.negative&n.negative)?(A=this.neg().divmod(n.neg(),o),"div"!==o&&(b=A.mod.neg(),f&&0!==b.negative&&b.isub(n)),{div:A.div,mod:b}):n.length>this.length||this.cmp(n)<0?{div:new c(0),mod:this}:1===n.length?"div"===o?{div:this.divn(n.words[0]),mod:null}:"mod"===o?{div:null,mod:new c(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new c(this.modn(n.words[0]))}:this._wordDiv(n,o);var h,b,A},c.prototype.div=function(n){return this.divmod(n,"div",!1).div},c.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},c.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},c.prototype.divRound=function(n){var o=this.divmod(n);if(o.mod.isZero())return o.div;var f=0!==o.div.negative?o.mod.isub(n):o.mod,h=n.ushrn(1),b=n.andln(1),A=f.cmp(h);return A<0||1===b&&0===A?o.div:0!==o.div.negative?o.div.isubn(1):o.div.iaddn(1)},c.prototype.modn=function(n){p(n<=67108863);for(var o=(1<<26)%n,f=0,h=this.length-1;h>=0;h--)f=(o*f+(0|this.words[h]))%n;return f},c.prototype.idivn=function(n){p(n<=67108863);for(var o=0,f=this.length-1;f>=0;f--){var h=(0|this.words[f])+67108864*o;this.words[f]=h/n|0,o=h%n}return this.strip()},c.prototype.divn=function(n){return this.clone().idivn(n)},c.prototype.egcd=function(n){p(0===n.negative),p(!n.isZero());var o=this,f=n.clone();o=0!==o.negative?o.umod(n):o.clone();for(var h=new c(1),b=new c(0),A=new c(0),k=new c(1),x=0;o.isEven()&&f.isEven();)o.iushrn(1),f.iushrn(1),++x;for(var r=f.clone(),_=o.clone();!o.isZero();){for(var W=0,I=1;0===(o.words[0]&I)&&W<26;++W,I<<=1);if(W>0)for(o.iushrn(W);W-- >0;)(h.isOdd()||b.isOdd())&&(h.iadd(r),b.isub(_)),h.iushrn(1),b.iushrn(1);for(var B=0,re=1;0===(f.words[0]&re)&&B<26;++B,re<<=1);if(B>0)for(f.iushrn(B);B-- >0;)(A.isOdd()||k.isOdd())&&(A.iadd(r),k.isub(_)),A.iushrn(1),k.iushrn(1);o.cmp(f)>=0?(o.isub(f),h.isub(A),b.isub(k)):(f.isub(o),A.isub(h),k.isub(b))}return{a:A,b:k,gcd:f.iushln(x)}},c.prototype._invmp=function(n){p(0===n.negative),p(!n.isZero());var W,o=this,f=n.clone();o=0!==o.negative?o.umod(n):o.clone();for(var h=new c(1),b=new c(0),A=f.clone();o.cmpn(1)>0&&f.cmpn(1)>0;){for(var k=0,x=1;0===(o.words[0]&x)&&k<26;++k,x<<=1);if(k>0)for(o.iushrn(k);k-- >0;)h.isOdd()&&h.iadd(A),h.iushrn(1);for(var r=0,_=1;0===(f.words[0]&_)&&r<26;++r,_<<=1);if(r>0)for(f.iushrn(r);r-- >0;)b.isOdd()&&b.iadd(A),b.iushrn(1);o.cmp(f)>=0?(o.isub(f),h.isub(b)):(f.isub(o),b.isub(h))}return(W=0===o.cmpn(1)?h:b).cmpn(0)<0&&W.iadd(n),W},c.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var o=this.clone(),f=n.clone();o.negative=0,f.negative=0;for(var h=0;o.isEven()&&f.isEven();h++)o.iushrn(1),f.iushrn(1);for(;;){for(;o.isEven();)o.iushrn(1);for(;f.isEven();)f.iushrn(1);var b=o.cmp(f);if(b<0){var A=o;o=f,f=A}else if(0===b||0===f.cmpn(1))break;o.isub(f)}return f.iushln(h)},c.prototype.invm=function(n){return this.egcd(n).a.umod(n)},c.prototype.isEven=function(){return!(1&this.words[0])},c.prototype.isOdd=function(){return!(1&~this.words[0])},c.prototype.andln=function(n){return this.words[0]&n},c.prototype.bincn=function(n){p("number"==typeof n);var o=n%26,f=(n-o)/26,h=1<>>26,this.words[A]=k&=67108863}return 0!==b&&(this.words[A]=b,this.length++),this},c.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},c.prototype.cmpn=function(n){var f,o=n<0;if(0!==this.negative&&!o)return-1;if(0===this.negative&&o)return 1;if(this.strip(),this.length>1)f=1;else{o&&(n=-n),p(n<=67108863,"Number is too big");var h=0|this.words[0];f=h===n?0:hn.length)return 1;if(this.length=0;f--){var h=0|this.words[f],b=0|n.words[f];if(h!==b){hb&&(o=1);break}}return o},c.prototype.gtn=function(n){return 1===this.cmpn(n)},c.prototype.gt=function(n){return 1===this.cmp(n)},c.prototype.gten=function(n){return this.cmpn(n)>=0},c.prototype.gte=function(n){return this.cmp(n)>=0},c.prototype.ltn=function(n){return-1===this.cmpn(n)},c.prototype.lt=function(n){return-1===this.cmp(n)},c.prototype.lten=function(n){return this.cmpn(n)<=0},c.prototype.lte=function(n){return this.cmp(n)<=0},c.prototype.eqn=function(n){return 0===this.cmpn(n)},c.prototype.eq=function(n){return 0===this.cmp(n)},c.red=function(n){return new me(n)},c.prototype.toRed=function(n){return p(!this.red,"Already a number in reduction context"),p(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},c.prototype.fromRed=function(){return p(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},c.prototype._forceRed=function(n){return this.red=n,this},c.prototype.forceRed=function(n){return p(!this.red,"Already a number in reduction context"),this._forceRed(n)},c.prototype.redAdd=function(n){return p(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},c.prototype.redIAdd=function(n){return p(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},c.prototype.redSub=function(n){return p(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},c.prototype.redISub=function(n){return p(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},c.prototype.redShl=function(n){return p(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},c.prototype.redMul=function(n){return p(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},c.prototype.redIMul=function(n){return p(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},c.prototype.redSqr=function(){return p(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},c.prototype.redISqr=function(){return p(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},c.prototype.redSqrt=function(){return p(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},c.prototype.redInvm=function(){return p(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},c.prototype.redNeg=function(){return p(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},c.prototype.redPow=function(n){return p(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var Q={k256:null,p224:null,p192:null,p25519:null};function $(D,n){this.name=D,this.p=new c(n,16),this.n=this.p.bitLength(),this.k=new c(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ae(){$.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ue(){$.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function oe(){$.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function he(){$.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function me(D){if("string"==typeof D){var n=c._prime(D);this.m=n.p,this.prime=n}else p(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function Te(D){me.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new c(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}$.prototype._tmp=function(){var n=new c(null);return n.words=new Array(Math.ceil(this.n/13)),n},$.prototype.ireduce=function(n){var f,o=n;do{this.split(o,this.tmp),f=(o=(o=this.imulK(o)).iadd(this.tmp)).bitLength()}while(f>this.n);var h=f0?o.isub(this.p):void 0!==o.strip?o.strip():o._strip(),o},$.prototype.split=function(n,o){n.iushrn(this.n,0,o)},$.prototype.imulK=function(n){return n.imul(this.k)},S(ae,$),ae.prototype.split=function(n,o){for(var f=4194303,h=Math.min(n.length,9),b=0;b>>22,A=k}n.words[b-10]=A>>>=22,n.length-=0===A&&n.length>10?10:9},ae.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var o=0,f=0;f>>=26,n.words[f]=b,o=h}return 0!==o&&(n.words[n.length++]=o),n},c._prime=function(n){if(Q[n])return Q[n];var o;if("k256"===n)o=new ae;else if("p224"===n)o=new ue;else if("p192"===n)o=new oe;else{if("p25519"!==n)throw new Error("Unknown prime "+n);o=new he}return Q[n]=o,o},me.prototype._verify1=function(n){p(0===n.negative,"red works only with positives"),p(n.red,"red works only with red numbers")},me.prototype._verify2=function(n,o){p(0===(n.negative|o.negative),"red works only with positives"),p(n.red&&n.red===o.red,"red works only with red numbers")},me.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},me.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},me.prototype.add=function(n,o){this._verify2(n,o);var f=n.add(o);return f.cmp(this.m)>=0&&f.isub(this.m),f._forceRed(this)},me.prototype.iadd=function(n,o){this._verify2(n,o);var f=n.iadd(o);return f.cmp(this.m)>=0&&f.isub(this.m),f},me.prototype.sub=function(n,o){this._verify2(n,o);var f=n.sub(o);return f.cmpn(0)<0&&f.iadd(this.m),f._forceRed(this)},me.prototype.isub=function(n,o){this._verify2(n,o);var f=n.isub(o);return f.cmpn(0)<0&&f.iadd(this.m),f},me.prototype.shl=function(n,o){return this._verify1(n),this.imod(n.ushln(o))},me.prototype.imul=function(n,o){return this._verify2(n,o),this.imod(n.imul(o))},me.prototype.mul=function(n,o){return this._verify2(n,o),this.imod(n.mul(o))},me.prototype.isqr=function(n){return this.imul(n,n.clone())},me.prototype.sqr=function(n){return this.mul(n,n)},me.prototype.sqrt=function(n){if(n.isZero())return n.clone();var o=this.m.andln(3);if(p(o%2==1),3===o){var f=this.m.add(new c(1)).iushrn(2);return this.pow(n,f)}for(var h=this.m.subn(1),b=0;!h.isZero()&&0===h.andln(1);)b++,h.iushrn(1);p(!h.isZero());var A=new c(1).toRed(this),k=A.redNeg(),x=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new c(2*r*r).toRed(this);0!==this.pow(r,x).cmp(k);)r.redIAdd(k);for(var _=this.pow(r,h),W=this.pow(n,h.addn(1).iushrn(1)),I=this.pow(n,h),B=b;0!==I.cmp(A);){for(var re=I,pe=0;0!==re.cmp(A);pe++)re=re.redSqr();p(pe=0;b--){for(var _=o.words[b],W=r-1;W>=0;W--){var I=_>>W&1;A!==h[0]&&(A=this.sqr(A)),0!==I||0!==k?(k<<=1,k|=I,(4===++x||0===b&&0===W)&&(A=this.mul(A,h[k]),x=0,k=0)):x=0}r=26}return A},me.prototype.convertTo=function(n){var o=n.umod(this.m);return o===n?o.clone():o},me.prototype.convertFrom=function(n){var o=n.clone();return o.red=null,o},c.mont=function(n){return new Te(n)},S(Te,me),Te.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},Te.prototype.convertFrom=function(n){var o=this.imod(n.mul(this.rinv));return o.red=null,o},Te.prototype.imul=function(n,o){if(n.isZero()||o.isZero())return n.words[0]=0,n.length=1,n;var f=n.imul(o),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),b=f.isub(h).iushrn(this.shift),A=b;return b.cmp(this.m)>=0?A=b.isub(this.m):b.cmpn(0)<0&&(A=b.iadd(this.m)),A._forceRed(this)},Te.prototype.mul=function(n,o){if(n.isZero()||o.isZero())return new c(0)._forceRed(this);var f=n.mul(o),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),b=f.isub(h).iushrn(this.shift),A=b;return b.cmp(this.m)>=0?A=b.isub(this.m):b.cmpn(0)<0&&(A=b.iadd(this.m)),A._forceRed(this)},Te.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Ae=l.nmd(Ae),this)},57303:(Ae,ee,l)=>{"use strict";l.d(ee,{Q:()=>P,Sm:()=>U,Vw:()=>T,aZ:()=>K,hb:()=>M,hj:()=>g,ig:()=>c,kB:()=>j,om:()=>w,qj:()=>e,rb:()=>S});var i=l(2615),t=l(21413);let p=null;function S(){return p}function c(ae){p??=ae}class e{}let T=(()=>{class ae{historyGo(oe){throw new Error("")}static \u0275fac=function(he){return new(he||ae)};static \u0275prov=i.jDH({token:ae,factory:()=>(0,i.WQX)(d),providedIn:"platform"})}return ae})();const g=new i.nKC("");let d=(()=>{class ae extends T{_location;_history;_doc=(0,i.WQX)(i.qQL);constructor(){super(),this._location=window.location,this._history=window.history}getBaseHrefFromDOM(){return S().getBaseHref(this._doc)}onPopState(oe){const he=S().getGlobalEventTarget(this._doc,"window");return he.addEventListener("popstate",oe,!1),()=>he.removeEventListener("popstate",oe)}onHashChange(oe){const he=S().getGlobalEventTarget(this._doc,"window");return he.addEventListener("hashchange",oe,!1),()=>he.removeEventListener("hashchange",oe)}get href(){return this._location.href}get protocol(){return this._location.protocol}get hostname(){return this._location.hostname}get port(){return this._location.port}get pathname(){return this._location.pathname}get search(){return this._location.search}get hash(){return this._location.hash}set pathname(oe){this._location.pathname=oe}pushState(oe,he,me){this._history.pushState(oe,he,me)}replaceState(oe,he,me){this._history.replaceState(oe,he,me)}forward(){this._history.forward()}back(){this._history.back()}historyGo(oe=0){this._history.go(oe)}getState(){return this._history.state}static \u0275fac=function(he){return new(he||ae)};static \u0275prov=i.jDH({token:ae,factory:()=>new ae,providedIn:"platform"})}return ae})();function w(ae,ue){return ae?ue?ae.endsWith("/")?ue.startsWith("/")?ae+ue.slice(1):ae+ue:ue.startsWith("/")?ae+ue:`${ae}/${ue}`:ae:ue}function m(ae){const ue=ae.search(/#|\?|$/);return"/"===ae[ue-1]?ae.slice(0,ue-1)+ae.slice(ue):ae}function P(ae){return ae&&"?"!==ae[0]?`?${ae}`:ae}let M=(()=>{class ae{historyGo(oe){throw new Error("")}static \u0275fac=function(he){return new(he||ae)};static \u0275prov=i.jDH({token:ae,factory:()=>(0,i.WQX)(U),providedIn:"root"})}return ae})();const j=new i.nKC("");let U=(()=>{class ae extends M{_platformLocation;_baseHref;_removeListenerFns=[];constructor(oe,he){super(),this._platformLocation=oe,this._baseHref=he??this._platformLocation.getBaseHrefFromDOM()??(0,i.WQX)(i.qQL).location?.origin??""}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(oe){this._removeListenerFns.push(this._platformLocation.onPopState(oe),this._platformLocation.onHashChange(oe))}getBaseHref(){return this._baseHref}prepareExternalUrl(oe){return w(this._baseHref,oe)}path(oe=!1){const he=this._platformLocation.pathname+P(this._platformLocation.search),me=this._platformLocation.hash;return me&&oe?`${he}${me}`:he}pushState(oe,he,me,Te){const D=this.prepareExternalUrl(me+P(Te));this._platformLocation.pushState(oe,he,D)}replaceState(oe,he,me,Te){const D=this.prepareExternalUrl(me+P(Te));this._platformLocation.replaceState(oe,he,D)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(oe=0){this._platformLocation.historyGo?.(oe)}static \u0275fac=function(he){return new(he||ae)(i.KVO(T),i.KVO(j,8))};static \u0275prov=i.jDH({token:ae,factory:ae.\u0275fac,providedIn:"root"})}return ae})(),K=(()=>{class ae{_subject=new t.B;_basePath;_locationStrategy;_urlChangeListeners=[];_urlChangeSubscription=null;constructor(oe){this._locationStrategy=oe;const he=this._locationStrategy.getBaseHref();this._basePath=function $(ae){if(new RegExp("^(https?:)?//").test(ae)){const[,oe]=ae.split(/\/\/[^\/]+/);return oe}return ae}(m(Q(he))),this._locationStrategy.onPopState(me=>{this._subject.next({url:this.path(!0),pop:!0,state:me.state,type:me.type})})}ngOnDestroy(){this._urlChangeSubscription?.unsubscribe(),this._urlChangeListeners=[]}path(oe=!1){return this.normalize(this._locationStrategy.path(oe))}getState(){return this._locationStrategy.getState()}isCurrentPathEqualTo(oe,he=""){return this.path()==this.normalize(oe+P(he))}normalize(oe){return ae.stripTrailingSlash(function G(ae,ue){if(!ae||!ue.startsWith(ae))return ue;const oe=ue.substring(ae.length);return""===oe||["/",";","?","#"].includes(oe[0])?oe:ue}(this._basePath,Q(oe)))}prepareExternalUrl(oe){return oe&&"/"!==oe[0]&&(oe="/"+oe),this._locationStrategy.prepareExternalUrl(oe)}go(oe,he="",me=null){this._locationStrategy.pushState(me,"",oe,he),this._notifyUrlChangeListeners(this.prepareExternalUrl(oe+P(he)),me)}replaceState(oe,he="",me=null){this._locationStrategy.replaceState(me,"",oe,he),this._notifyUrlChangeListeners(this.prepareExternalUrl(oe+P(he)),me)}forward(){this._locationStrategy.forward()}back(){this._locationStrategy.back()}historyGo(oe=0){this._locationStrategy.historyGo?.(oe)}onUrlChange(oe){return this._urlChangeListeners.push(oe),this._urlChangeSubscription??=this.subscribe(he=>{this._notifyUrlChangeListeners(he.url,he.state)}),()=>{const he=this._urlChangeListeners.indexOf(oe);this._urlChangeListeners.splice(he,1),0===this._urlChangeListeners.length&&(this._urlChangeSubscription?.unsubscribe(),this._urlChangeSubscription=null)}}_notifyUrlChangeListeners(oe="",he){this._urlChangeListeners.forEach(me=>me(oe,he))}subscribe(oe,he,me){return this._subject.subscribe({next:oe,error:he??void 0,complete:me??void 0})}static normalizeQueryParams=P;static joinWithSlash=w;static stripTrailingSlash=m;static \u0275fac=function(he){return new(he||ae)(i.KVO(M))};static \u0275prov=i.jDH({token:ae,factory:()=>function q(){return new K((0,i.KVO)(M))}(),providedIn:"root"})}return ae})();function Q(ae){return ae.replace(/\/index.html$/,"")}},57786:(Ae,ee,l)=>{"use strict";l.d(ee,{h:()=>e});var i=l(26365),t=l(58750),p=l(983),S=l(9326),c=l(22806);function e(...T){const g=(0,S.lI)(T),d=(0,S.R0)(T,1/0),w=T;return w.length?1===w.length?(0,t.Tg)(w[0]):(0,i.U)(d)((0,c.H)(w,g)):p.w}},57854:(Ae,ee,l)=>{"use strict";var i=l(30464).F.ERR_STREAM_PREMATURE_CLOSE;function p(){}Ae.exports=function c(e,T,g){if("function"==typeof T)return c(e,null,T);T||(T={}),g=function t(e){var T=!1;return function(){if(!T){T=!0;for(var g=arguments.length,d=new Array(g),w=0;w{"use strict";function i(t,p){if(t){const S=t.indexOf(p);0<=S&&t.splice(S,1)}}l.d(ee,{o:()=>i})},58239:Ae=>{"use strict";var i,t,ee=Function.prototype.toString,l="object"==typeof Reflect&&null!==Reflect&&Reflect.apply;if("function"==typeof l&&"function"==typeof Object.defineProperty)try{i=Object.defineProperty({},"length",{get:function(){throw t}}),t={},l(function(){throw 42},null,i)}catch(q){q!==t&&(l=null)}else l=null;var p=/^\s*class\b/,S=function(G){try{var Q=ee.call(G);return p.test(Q)}catch{return!1}},c=function(G){try{return!S(G)&&(ee.call(G),!0)}catch{return!1}},e=Object.prototype.toString,M="function"==typeof Symbol&&!!Symbol.toStringTag,j=!(0 in[,]),U=function(){return!1};if("object"==typeof document){var K=document.all;e.call(K)===e.call(document.all)&&(U=function(G){if((j||!G)&&(typeof G>"u"||"object"==typeof G))try{var Q=e.call(G);return("[object HTMLAllCollection]"===Q||"[object HTML document.all class]"===Q||"[object HTMLCollection]"===Q||"[object Object]"===Q)&&null==G("")}catch{}return!1})}Ae.exports=l?function(G){if(U(G))return!0;if(!G||"function"!=typeof G&&"object"!=typeof G)return!1;try{l(G,null,i)}catch(Q){if(Q!==t)return!1}return!S(G)&&c(G)}:function(G){if(U(G))return!0;if(!G||"function"!=typeof G&&"object"!=typeof G)return!1;if(M)return c(G);if(S(G))return!1;var Q=e.call(G);return!("[object Function]"!==Q&&"[object GeneratorFunction]"!==Q&&!/^\[object HTML/.test(Q))&&c(G)}},58413:Ae=>{"use strict";Ae.exports=SyntaxError},58496:(Ae,ee,l)=>{"use strict";function i(t,p){return t.reduce((S,c,e)=>(S[c]=p[e],S),{})}l.d(ee,{e:()=>i})},58750:(Ae,ee,l)=>{"use strict";l.d(ee,{Tg:()=>M});var i=l(31635),t=l(47441),p=l(59858),S=l(71985),c=l(55055),e=l(37953),T=l(50591),g=l(85397),d=l(15196),w=l(98071),m=l(45334),P=l(3494);function M(ae){if(ae instanceof S.c)return ae;if(null!=ae){if((0,c.l)(ae))return function j(ae){return new S.c(ue=>{const oe=ae[P.s]();if((0,w.T)(oe.subscribe))return oe.subscribe(ue);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}(ae);if((0,t.X)(ae))return function U(ae){return new S.c(ue=>{for(let oe=0;oe{ae.then(oe=>{ue.closed||(ue.next(oe),ue.complete())},oe=>ue.error(oe)).then(null,m.m)})}(ae);if((0,e.T)(ae))return G(ae);if((0,g.x)(ae))return function q(ae){return new S.c(ue=>{for(const oe of ae)if(ue.next(oe),ue.closed)return;ue.complete()})}(ae);if((0,d.U)(ae))return function Q(ae){return G((0,d.C)(ae))}(ae)}throw(0,T.L)(ae)}function G(ae){return new S.c(ue=>{(function $(ae,ue){var oe,he,me,Te;return(0,i.sH)(this,void 0,void 0,function*(){try{for(oe=(0,i.xN)(ae);!(he=yield oe.next()).done;)if(ue.next(he.value),ue.closed)return}catch(D){me={error:D}}finally{try{he&&!he.done&&(Te=oe.return)&&(yield Te.call(oe))}finally{if(me)throw me.error}}ue.complete()})})(ae,ue).catch(oe=>ue.error(oe))})}},59030:(Ae,ee,l)=>{"use strict";l.d(ee,{v:()=>p});var i=l(71985),t=l(58750);function p(S){return new i.c(c=>{(0,t.Tg)(S()).subscribe(c)})}},59096:(Ae,ee,l)=>{"use strict";l.d(ee,{i:()=>g});var i=l(21413),t=l(70152),p=l(5964),S=l(96354),c=l(88141),e=l(10438);class g{_letterKeyStream=new i.B;_items=[];_selectedItemIndex=-1;_pressedLetters=[];_skipPredicateFn;_selectedItem=new i.B;selectedItem=this._selectedItem;constructor(w,m){const P="number"==typeof m?.debounceInterval?m.debounceInterval:200;m?.skipPredicate&&(this._skipPredicateFn=m.skipPredicate),this.setItems(w),this._setupKeyHandler(P)}destroy(){this._pressedLetters=[],this._letterKeyStream.complete(),this._selectedItem.complete()}setCurrentSelectedItemIndex(w){this._selectedItemIndex=w}setItems(w){this._items=w}handleKey(w){const m=w.keyCode;w.key&&1===w.key.length?this._letterKeyStream.next(w.key.toLocaleUpperCase()):(m>=e.A&&m<=e.Z||m>=e.f2&&m<=e.bn)&&this._letterKeyStream.next(String.fromCharCode(m))}isTyping(){return this._pressedLetters.length>0}reset(){this._pressedLetters=[]}_setupKeyHandler(w){this._letterKeyStream.pipe((0,c.M)(m=>this._pressedLetters.push(m)),(0,t.B)(w),(0,p.p)(()=>this._pressedLetters.length>0),(0,S.T)(()=>this._pressedLetters.join("").toLocaleUpperCase())).subscribe(m=>{for(let P=1;P{"use strict";var i=l(83407),t=l(36636),p=l(25443),S=l(27054).Buffer,c=l(86111),e=l(45392),T=l(76643),g=S.alloc(128),d={__proto__:null,md5:16,sha1:20,sha224:28,sha256:32,sha384:48,sha512:64,"sha512-256":32,ripemd160:20,rmd160:20},w={__proto__:null,"sha-1":"sha1","sha-224":"sha224","sha-256":"sha256","sha-384":"sha384","sha-512":"sha512","ripemd-160":"ripemd160"};function m(U){return(new t).update(U).digest()}function M(U,K,q){var G=function P(U){return"rmd160"===U||"ripemd160"===U?m:"md5"===U?i:function K(q){return p(U).update(q).digest()}}(U),Q="sha512"===U||"sha384"===U?128:64;K.length>Q?K=G(K):K.length{"use strict";l.d(ee,{Cn:()=>Ct,Cp:()=>dt,fb:()=>r,kk:()=>ye});var i=l(2615),t=l(73664),p=l(17705),S=l(76838),c=l(89726),e=l(64123),T=l(95735),g=l(10438),d=l(67336),w=l(21413),m=l(18359),P=l(57786),M=l(7673),j=l(5964),U=l(99172),K=l(25558),q=l(96697),G=l(56977),Q=l(88968),$=l(32046),ae=l(12496),ue=l(76939),oe=l(31804),he=l(61577),me=l(49338),Te=l(5718),D=l(26881),n=l(22466);const o=["mat-menu-item",""],f=[[["mat-icon"],["","matMenuItemIcon",""]],"*"],h=["mat-icon, [matMenuItemIcon]","*"];function b(Ht,ct){1&Ht&&(i.qSk(),t.j41(0,"svg",2),t.nrm(1,"polygon",3),t.k0s())}const A=["*"];function k(Ht,ct){if(1&Ht){const Ce=t.RV6();t.rj2(0,"div",0),t.VwU("click",function(){i.eBV(Ce);const Z=t.XpG();return i.Njj(Z.closed.emit("click"))})("animationstart",function(Z){i.eBV(Ce);const J=t.XpG();return i.Njj(J._onAnimationStart(Z.animationName))})("animationend",function(Z){i.eBV(Ce);const J=t.XpG();return i.Njj(J._onAnimationDone(Z.animationName))})("animationcancel",function(Z){i.eBV(Ce);const J=t.XpG();return i.Njj(J._onAnimationDone(Z.animationName))}),t.rj2(1,"div",1),t.SdG(2),t.eux()()}if(2&Ht){const Ce=t.XpG();t.HbH(Ce._classList),t.AVh("mat-menu-panel-animations-disabled",Ce._animationsDisabled)("mat-menu-panel-exit-animation","void"===Ce._panelAnimationState)("mat-menu-panel-animating",Ce._isAnimating()),t.Avn("id",Ce.panelId),t.BMQ("aria-label",Ce.ariaLabel||null)("aria-labelledby",Ce.ariaLabelledby||null)("aria-describedby",Ce.ariaDescribedby||null)}}const x=new i.nKC("MAT_MENU_PANEL");let r=(()=>{class Ht{_elementRef=(0,i.WQX)(t.aKT);_document=(0,i.WQX)(i.qQL);_focusMonitor=(0,i.WQX)(S.FN);_parentMenu=(0,i.WQX)(x,{optional:!0});_changeDetectorRef=(0,i.WQX)(p.gRc);role="menuitem";disabled=!1;disableRipple=!1;_hovered=new w.B;_focused=new w.B;_highlighted=!1;_triggersSubmenu=!1;constructor(){(0,i.WQX)(Q.l).load($.A),this._parentMenu?.addItem?.(this)}focus(Ce,ze){this._focusMonitor&&Ce?this._focusMonitor.focusVia(this._getHostElement(),Ce,ze):this._getHostElement().focus(ze),this._focused.next(this)}ngAfterViewInit(){this._focusMonitor&&this._focusMonitor.monitor(this._elementRef,!1)}ngOnDestroy(){this._focusMonitor&&this._focusMonitor.stopMonitoring(this._elementRef),this._parentMenu&&this._parentMenu.removeItem&&this._parentMenu.removeItem(this),this._hovered.complete(),this._focused.complete()}_getTabIndex(){return this.disabled?"-1":"0"}_getHostElement(){return this._elementRef.nativeElement}_checkDisabled(Ce){this.disabled&&(Ce.preventDefault(),Ce.stopPropagation())}_handleMouseEnter(){this._hovered.next(this)}getLabel(){const Ce=this._elementRef.nativeElement.cloneNode(!0),ze=Ce.querySelectorAll("mat-icon, .material-icons");for(let Z=0;Z{class Ht{_elementRef=(0,i.WQX)(t.aKT);_changeDetectorRef=(0,i.WQX)(p.gRc);_injector=(0,i.WQX)(i.zZn);_keyManager;_xPosition;_yPosition;_firstItemFocusRef;_exitFallbackTimeout;_animationsDisabled=(0,oe.Rc)();_allItems;_directDescendantItems=new t.rOR;_classList={};_panelAnimationState="void";_animationDone=new w.B;_isAnimating=(0,i.vPA)(!1);parentMenu;direction;overlayPanelClass;backdropClass;ariaLabel;ariaLabelledby;ariaDescribedby;get xPosition(){return this._xPosition}set xPosition(Ce){this._xPosition=Ce,this.setPositionClasses()}get yPosition(){return this._yPosition}set yPosition(Ce){this._yPosition=Ce,this.setPositionClasses()}templateRef;items;lazyContent;overlapTrigger;hasBackdrop;set panelClass(Ce){const ze=this._previousPanelClass,Z={...this._classList};ze&&ze.length&&ze.split(" ").forEach(J=>{Z[J]=!1}),this._previousPanelClass=Ce,Ce&&Ce.length&&(Ce.split(" ").forEach(J=>{Z[J]=!0}),this._elementRef.nativeElement.className=""),this._classList=Z}_previousPanelClass;get classList(){return this.panelClass}set classList(Ce){this.panelClass=Ce}closed=new t.bkB;close=this.closed;panelId=(0,i.WQX)(c.g).getId("mat-menu-panel-");constructor(){const Ce=(0,i.WQX)(pe);this.overlayPanelClass=Ce.overlayPanelClass||"",this._xPosition=Ce.xPosition,this._yPosition=Ce.yPosition,this.backdropClass=Ce.backdropClass,this.overlapTrigger=Ce.overlapTrigger,this.hasBackdrop=Ce.hasBackdrop}ngOnInit(){this.setPositionClasses()}ngAfterContentInit(){this._updateDirectDescendants(),this._keyManager=new e.B(this._directDescendantItems).withWrap().withTypeAhead().withHomeAndEnd(),this._keyManager.tabOut.subscribe(()=>this.closed.emit("tab")),this._directDescendantItems.changes.pipe((0,U.Z)(this._directDescendantItems),(0,K.n)(Ce=>(0,P.h)(...Ce.map(ze=>ze._focused)))).subscribe(Ce=>this._keyManager.updateActiveItem(Ce)),this._directDescendantItems.changes.subscribe(Ce=>{const ze=this._keyManager;if("enter"===this._panelAnimationState&&ze.activeItem?._hasFocus()){const Z=Ce.toArray(),J=Math.max(0,Math.min(Z.length-1,ze.activeItemIndex||0));Z[J]&&!Z[J].disabled?ze.setActiveItem(J):ze.setNextItemActive()}})}ngOnDestroy(){this._keyManager?.destroy(),this._directDescendantItems.destroy(),this.closed.complete(),this._firstItemFocusRef?.destroy(),clearTimeout(this._exitFallbackTimeout)}_hovered(){return this._directDescendantItems.changes.pipe((0,U.Z)(this._directDescendantItems),(0,K.n)(ze=>(0,P.h)(...ze.map(Z=>Z._hovered))))}addItem(Ce){}removeItem(Ce){}_handleKeydown(Ce){const ze=Ce.keyCode,Z=this._keyManager;switch(ze){case g._f:(0,d.rp)(Ce)||(Ce.preventDefault(),this.closed.emit("keydown"));break;case g.UQ:this.parentMenu&&"ltr"===this.direction&&this.closed.emit("keydown");break;case g.LE:this.parentMenu&&"rtl"===this.direction&&this.closed.emit("keydown");break;default:return(ze===g.i7||ze===g.n6)&&Z.setFocusOrigin("keyboard"),void Z.onKeydown(Ce)}}focusFirstItem(Ce="program"){this._firstItemFocusRef?.destroy(),this._firstItemFocusRef=(0,t.mal)(()=>{const ze=this._resolvePanel();if(!ze||!ze.contains(document.activeElement)){const Z=this._keyManager;Z.setFocusOrigin(Ce).setFirstItemActive(),!Z.activeItem&&ze&&ze.focus()}},{injector:this._injector})}resetActiveItem(){this._keyManager.setActiveItem(-1)}setElevation(Ce){}setPositionClasses(Ce=this.xPosition,ze=this.yPosition){this._classList={...this._classList,"mat-menu-before":"before"===Ce,"mat-menu-after":"after"===Ce,"mat-menu-above":"above"===ze,"mat-menu-below":"below"===ze},this._changeDetectorRef.markForCheck()}_onAnimationDone(Ce){const ze=Ce===_e;(ze||Ce===Be)&&(ze&&(clearTimeout(this._exitFallbackTimeout),this._exitFallbackTimeout=void 0),this._animationDone.next(ze?"void":"enter"),this._isAnimating.set(!1))}_onAnimationStart(Ce){(Ce===Be||Ce===_e)&&this._isAnimating.set(!0)}_setIsOpen(Ce){if(this._panelAnimationState=Ce?"enter":"void",Ce){if(0===this._keyManager.activeItemIndex){const ze=this._resolvePanel();ze&&(ze.scrollTop=0)}}else this._animationsDisabled||(this._exitFallbackTimeout=setTimeout(()=>this._onAnimationDone(_e),200));this._animationsDisabled&&setTimeout(()=>{this._onAnimationDone(Ce?Be:_e)}),this._changeDetectorRef.markForCheck()}_updateDirectDescendants(){this._allItems.changes.pipe((0,U.Z)(this._allItems)).subscribe(Ce=>{this._directDescendantItems.reset(Ce.filter(ze=>ze._parentMenu===this)),this._directDescendantItems.notifyOnChanges()})}_resolvePanel(){let Ce=null;return this._directDescendantItems.length&&(Ce=this._directDescendantItems.first._getHostElement().closest('[role="menu"]')),Ce}static \u0275fac=function(ze){return new(ze||Ht)};static \u0275cmp=t.VBU({type:Ht,selectors:[["mat-menu"]],contentQueries:function(ze,Z,J){if(1&ze&&(t.wni(J,B,5),t.wni(J,r,5),t.wni(J,r,4)),2&ze){let fe;t.mGM(fe=t.lsd())&&(Z.lazyContent=fe.first),t.mGM(fe=t.lsd())&&(Z._allItems=fe),t.mGM(fe=t.lsd())&&(Z.items=fe)}},viewQuery:function(ze,Z){if(1&ze&&t.GBs(t.C4Q,5),2&ze){let J;t.mGM(J=t.lsd())&&(Z.templateRef=J.first)}},hostVars:3,hostBindings:function(ze,Z){2&ze&&t.BMQ("aria-label",null)("aria-labelledby",null)("aria-describedby",null)},inputs:{backdropClass:"backdropClass",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],xPosition:"xPosition",yPosition:"yPosition",overlapTrigger:[2,"overlapTrigger","overlapTrigger",p.L39],hasBackdrop:[2,"hasBackdrop","hasBackdrop",Ce=>null==Ce?null:(0,p.L39)(Ce)],panelClass:[0,"class","panelClass"],classList:"classList"},outputs:{closed:"closed",close:"close"},exportAs:["matMenu"],features:[t.Jv_([{provide:x,useExisting:Ht}])],ngContentSelectors:A,decls:1,vars:0,consts:[["tabindex","-1","role","menu",1,"mat-mdc-menu-panel",3,"click","animationstart","animationend","animationcancel","id"],[1,"mat-mdc-menu-content"]],template:function(ze,Z){1&ze&&(t.NAR(),t.PeT(0,k,3,12,"ng-template"))},styles:['mat-menu{display:none}.mat-mdc-menu-content{margin:0;padding:8px 0;outline:0}.mat-mdc-menu-content,.mat-mdc-menu-content .mat-mdc-menu-item .mat-mdc-menu-item-text{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;flex:1;white-space:normal;font-family:var(--mat-menu-item-label-text-font, var(--mat-sys-label-large-font));line-height:var(--mat-menu-item-label-text-line-height, var(--mat-sys-label-large-line-height));font-size:var(--mat-menu-item-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-menu-item-label-text-tracking, var(--mat-sys-label-large-tracking));font-weight:var(--mat-menu-item-label-text-weight, var(--mat-sys-label-large-weight))}@keyframes _mat-menu-enter{from{opacity:0;transform:scale(0.8)}to{opacity:1;transform:none}}@keyframes _mat-menu-exit{from{opacity:1}to{opacity:0}}.mat-mdc-menu-panel{min-width:112px;max-width:280px;overflow:auto;box-sizing:border-box;outline:0;animation:_mat-menu-enter 120ms cubic-bezier(0, 0, 0.2, 1);border-radius:var(--mat-menu-container-shape, var(--mat-sys-corner-extra-small));background-color:var(--mat-menu-container-color, var(--mat-sys-surface-container));box-shadow:var(--mat-menu-container-elevation-shadow, 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12));will-change:transform,opacity}.mat-mdc-menu-panel.mat-menu-panel-exit-animation{animation:_mat-menu-exit 100ms 25ms linear forwards}.mat-mdc-menu-panel.mat-menu-panel-animations-disabled{animation:none}.mat-mdc-menu-panel.mat-menu-panel-animating{pointer-events:none}.mat-mdc-menu-panel.mat-menu-panel-animating:has(.mat-mdc-menu-content:empty){display:none}@media(forced-colors: active){.mat-mdc-menu-panel{outline:solid 1px}}.mat-mdc-menu-panel .mat-divider{color:var(--mat-menu-divider-color, var(--mat-sys-surface-variant));margin-bottom:var(--mat-menu-divider-bottom-spacing, 8px);margin-top:var(--mat-menu-divider-top-spacing, 8px)}.mat-mdc-menu-item{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;cursor:pointer;width:100%;text-align:left;box-sizing:border-box;color:inherit;font-size:inherit;background:none;text-decoration:none;margin:0;min-height:48px;padding-left:var(--mat-menu-item-leading-spacing, 12px);padding-right:var(--mat-menu-item-trailing-spacing, 12px);-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-menu-item::-moz-focus-inner{border:0}[dir=rtl] .mat-mdc-menu-item{padding-left:var(--mat-menu-item-trailing-spacing, 12px);padding-right:var(--mat-menu-item-leading-spacing, 12px)}.mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon]){padding-left:var(--mat-menu-item-with-icon-leading-spacing, 12px);padding-right:var(--mat-menu-item-with-icon-trailing-spacing, 12px)}[dir=rtl] .mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon]){padding-left:var(--mat-menu-item-with-icon-trailing-spacing, 12px);padding-right:var(--mat-menu-item-with-icon-leading-spacing, 12px)}.mat-mdc-menu-item,.mat-mdc-menu-item:visited,.mat-mdc-menu-item:link{color:var(--mat-menu-item-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-menu-item .mat-icon-no-color,.mat-mdc-menu-item .mat-mdc-menu-submenu-icon{color:var(--mat-menu-item-icon-color, var(--mat-sys-on-surface-variant))}.mat-mdc-menu-item[disabled]{cursor:default;opacity:.38}.mat-mdc-menu-item[disabled]::after{display:block;position:absolute;content:"";top:0;left:0;bottom:0;right:0}.mat-mdc-menu-item:focus{outline:0}.mat-mdc-menu-item .mat-icon{flex-shrink:0;margin-right:var(--mat-menu-item-spacing, 12px);height:var(--mat-menu-item-icon-size, 24px);width:var(--mat-menu-item-icon-size, 24px)}[dir=rtl] .mat-mdc-menu-item{text-align:right}[dir=rtl] .mat-mdc-menu-item .mat-icon{margin-right:0;margin-left:var(--mat-menu-item-spacing, 12px)}.mat-mdc-menu-item:not([disabled]):hover{background-color:var(--mat-menu-item-hover-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent))}.mat-mdc-menu-item:not([disabled]).cdk-program-focused,.mat-mdc-menu-item:not([disabled]).cdk-keyboard-focused,.mat-mdc-menu-item:not([disabled]).mat-mdc-menu-item-highlighted{background-color:var(--mat-menu-item-focus-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-focus-state-layer-opacity) * 100%), transparent))}@media(forced-colors: active){.mat-mdc-menu-item{margin-top:1px}}.mat-mdc-menu-submenu-icon{width:var(--mat-menu-item-icon-size, 24px);height:10px;fill:currentColor;padding-left:var(--mat-menu-item-spacing, 12px)}[dir=rtl] .mat-mdc-menu-submenu-icon{padding-right:var(--mat-menu-item-spacing, 12px);padding-left:0}[dir=rtl] .mat-mdc-menu-submenu-icon polygon{transform:scaleX(-1);transform-origin:center}@media(forced-colors: active){.mat-mdc-menu-submenu-icon{fill:CanvasText}}.mat-mdc-menu-item .mat-mdc-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}\n'],encapsulation:2,changeDetection:0})}return Ht})();const Le=new i.nKC("mat-menu-scroll-strategy",{providedIn:"root",factory:()=>{const Ht=(0,i.WQX)(i.zZn);return()=>(0,me.RH)(Ht)}}),ge={provide:Le,deps:[],useFactory:function Ke(Ht){const ct=(0,i.WQX)(i.zZn);return()=>(0,me.RH)(ct)}},Oe=new WeakMap;let Ee=(()=>{class Ht{_canHaveBackdrop;_element=(0,i.WQX)(t.aKT);_viewContainerRef=(0,i.WQX)(t.c1b);_menuItemInstance=(0,i.WQX)(r,{optional:!0,self:!0});_dir=(0,i.WQX)(he.dS,{optional:!0});_focusMonitor=(0,i.WQX)(S.FN);_ngZone=(0,i.WQX)(t.SKi);_injector=(0,i.WQX)(i.zZn);_scrollStrategy=(0,i.WQX)(Le);_changeDetectorRef=(0,i.WQX)(p.gRc);_animationsDisabled=(0,oe.Rc)();_portal;_overlayRef=null;_menuOpen=!1;_closingActionsSubscription=m.yU.EMPTY;_menuCloseSubscription=m.yU.EMPTY;_pendingRemoval;_parentMaterialMenu;_parentInnerPadding;_openedBy=void 0;get _menu(){return this._menuInternal}set _menu(Ce){Ce!==this._menuInternal&&(this._menuInternal=Ce,this._menuCloseSubscription.unsubscribe(),Ce&&(this._menuCloseSubscription=Ce.close.subscribe(ze=>{this._destroyMenu(ze),("click"===ze||"tab"===ze)&&this._parentMaterialMenu&&this._parentMaterialMenu.closed.emit(ze)})),this._menuItemInstance?._setTriggersSubmenu(this._triggersSubmenu()))}_menuInternal;constructor(Ce){this._canHaveBackdrop=Ce;const ze=(0,i.WQX)(x,{optional:!0});this._parentMaterialMenu=ze instanceof ye?ze:void 0}ngOnDestroy(){this._menu&&this._ownsMenu(this._menu)&&Oe.delete(this._menu),this._pendingRemoval?.unsubscribe(),this._menuCloseSubscription.unsubscribe(),this._closingActionsSubscription.unsubscribe(),this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null)}get menuOpen(){return this._menuOpen}get dir(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_triggersSubmenu(){return!!(this._menuItemInstance&&this._parentMaterialMenu&&this._menu)}_closeMenu(){this._menu?.close.emit()}_openMenu(Ce){const ze=this._menu;if(this._menuOpen||!ze)return;this._pendingRemoval?.unsubscribe();const Z=Oe.get(ze);Oe.set(ze,this),Z&&Z!==this&&Z._closeMenu();const J=this._createOverlay(ze),fe=J.getConfig(),Ie=fe.positionStrategy;this._setPosition(ze,Ie),fe.hasBackdrop=!!this._canHaveBackdrop&&(null==ze.hasBackdrop?!this._triggersSubmenu():ze.hasBackdrop),J.hasAttached()||(J.attach(this._getPortal(ze)),ze.lazyContent?.attach(this.menuData)),this._closingActionsSubscription=this._menuClosingActions().subscribe(()=>this._closeMenu()),ze.parentMenu=this._triggersSubmenu()?this._parentMaterialMenu:void 0,ze.direction=this.dir,Ce&&ze.focusFirstItem(this._openedBy||"program"),this._setIsMenuOpen(!0),ze instanceof ye&&(ze._setIsOpen(!0),ze._directDescendantItems.changes.pipe((0,G.Q)(ze.close)).subscribe(()=>{Ie.withLockedPosition(!1).reapplyLastPosition(),Ie.withLockedPosition(!0)}))}focus(Ce,ze){this._focusMonitor&&Ce?this._focusMonitor.focusVia(this._element,Ce,ze):this._element.nativeElement.focus(ze)}_destroyMenu(Ce){const ze=this._overlayRef,Z=this._menu;!ze||!this.menuOpen||(this._closingActionsSubscription.unsubscribe(),this._pendingRemoval?.unsubscribe(),Z instanceof ye&&this._ownsMenu(Z)?(this._pendingRemoval=Z._animationDone.pipe((0,q.s)(1)).subscribe(()=>{ze.detach(),Oe.has(Z)||Z.lazyContent?.detach()}),Z._setIsOpen(!1)):(ze.detach(),Z?.lazyContent?.detach()),Z&&this._ownsMenu(Z)&&Oe.delete(Z),this.restoreFocus&&("keydown"===Ce||!this._openedBy||!this._triggersSubmenu())&&this.focus(this._openedBy),this._openedBy=void 0,this._setIsMenuOpen(!1))}_setIsMenuOpen(Ce){Ce!==this._menuOpen&&(this._menuOpen=Ce,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this._triggersSubmenu()&&this._menuItemInstance._setHighlighted(Ce),this._changeDetectorRef.markForCheck())}_createOverlay(Ce){if(!this._overlayRef){const ze=this._getOverlayConfig(Ce);this._subscribeToPositions(Ce,ze.positionStrategy),this._overlayRef=(0,me.Y$)(this._injector,ze),this._overlayRef.keydownEvents().subscribe(Z=>{this._menu instanceof ye&&this._menu._handleKeydown(Z)})}return this._overlayRef}_getOverlayConfig(Ce){return new me.rR({positionStrategy:(0,me.$M)(this._injector,this._getOverlayOrigin()).withLockedPosition().withGrowAfterOpen().withTransformOriginOn(".mat-menu-panel, .mat-mdc-menu-panel"),backdropClass:Ce.backdropClass||"cdk-overlay-transparent-backdrop",panelClass:Ce.overlayPanelClass,scrollStrategy:this._scrollStrategy(),direction:this._dir||"ltr",disableAnimations:this._animationsDisabled})}_subscribeToPositions(Ce,ze){Ce.setPositionClasses&&ze.positionChanges.subscribe(Z=>{this._ngZone.run(()=>{Ce.setPositionClasses("start"===Z.connectionPair.overlayX?"after":"before","top"===Z.connectionPair.overlayY?"below":"above")})})}_setPosition(Ce,ze){let[Z,J]="before"===Ce.xPosition?["end","start"]:["start","end"],[fe,Ie]="above"===Ce.yPosition?["bottom","top"]:["top","bottom"],[ht,li]=[fe,Ie],[Qt,di]=[Z,J],kt=0;if(this._triggersSubmenu()){if(di=Z="before"===Ce.xPosition?"start":"end",J=Qt="end"===Z?"start":"end",this._parentMaterialMenu){if(null==this._parentInnerPadding){const Rt=this._parentMaterialMenu.items.first;this._parentInnerPadding=Rt?Rt._getHostElement().offsetTop:0}kt="bottom"===fe?this._parentInnerPadding:-this._parentInnerPadding}}else Ce.overlapTrigger||(ht="top"===fe?"bottom":"top",li="top"===Ie?"bottom":"top");ze.withPositions([{originX:Z,originY:ht,overlayX:Qt,overlayY:fe,offsetY:kt},{originX:J,originY:ht,overlayX:di,overlayY:fe,offsetY:kt},{originX:Z,originY:li,overlayX:Qt,overlayY:Ie,offsetY:-kt},{originX:J,originY:li,overlayX:di,overlayY:Ie,offsetY:-kt}])}_menuClosingActions(){const Ce=this._getOutsideClickStream(this._overlayRef),ze=this._overlayRef.detachments(),Z=this._parentMaterialMenu?this._parentMaterialMenu.closed:(0,M.of)(),J=this._parentMaterialMenu?this._parentMaterialMenu._hovered().pipe((0,j.p)(fe=>this._menuOpen&&fe!==this._menuItemInstance)):(0,M.of)();return(0,P.h)(Ce,Z,J,ze)}_getPortal(Ce){return(!this._portal||this._portal.templateRef!==Ce.templateRef)&&(this._portal=new ue.VA(Ce.templateRef,this._viewContainerRef)),this._portal}_ownsMenu(Ce){return Oe.get(Ce)===this}static \u0275fac=function(ze){t.QTQ()};static \u0275dir=t.FsC({type:Ht})}return Ht})(),dt=(()=>{class Ht extends Ee{_cleanupTouchstart;_hoverSubscription=m.yU.EMPTY;get _deprecatedMatMenuTriggerFor(){return this.menu}set _deprecatedMatMenuTriggerFor(Ce){this.menu=Ce}get menu(){return this._menu}set menu(Ce){this._menu=Ce}menuData;restoreFocus=!0;menuOpened=new t.bkB;onMenuOpen=this.menuOpened;menuClosed=new t.bkB;onMenuClose=this.menuClosed;constructor(){super(!0);const Ce=(0,i.WQX)(t.sFG);this._cleanupTouchstart=Ce.listen(this._element.nativeElement,"touchstart",ze=>{(0,T.w)(ze)||(this._openedBy="touch")},{passive:!0})}triggersSubmenu(){return super._triggersSubmenu()}toggleMenu(){return this.menuOpen?this.closeMenu():this.openMenu()}openMenu(){this._openMenu(!0)}closeMenu(){this._closeMenu()}updatePosition(){this._overlayRef?.updatePosition()}ngAfterContentInit(){this._handleHover()}ngOnDestroy(){super.ngOnDestroy(),this._cleanupTouchstart(),this._hoverSubscription.unsubscribe()}_getOverlayOrigin(){return this._element}_getOutsideClickStream(Ce){return Ce.backdropClick()}_handleMousedown(Ce){(0,T._)(Ce)||(this._openedBy=0===Ce.button?"mouse":void 0,this.triggersSubmenu()&&Ce.preventDefault())}_handleKeydown(Ce){const ze=Ce.keyCode;(ze===g.Fm||ze===g.t6)&&(this._openedBy="keyboard"),this.triggersSubmenu()&&(ze===g.LE&&"ltr"===this.dir||ze===g.UQ&&"rtl"===this.dir)&&(this._openedBy="keyboard",this.openMenu())}_handleClick(Ce){this.triggersSubmenu()?(Ce.stopPropagation(),this.openMenu()):this.toggleMenu()}_handleHover(){this.triggersSubmenu()&&this._parentMaterialMenu&&(this._hoverSubscription=this._parentMaterialMenu._hovered().subscribe(Ce=>{Ce===this._menuItemInstance&&!Ce.disabled&&"void"!==this._parentMaterialMenu?._panelAnimationState&&(this._openedBy="mouse",this._openMenu(!1))}))}static \u0275fac=function(ze){return new(ze||Ht)};static \u0275dir=t.FsC({type:Ht,selectors:[["","mat-menu-trigger-for",""],["","matMenuTriggerFor",""]],hostAttrs:[1,"mat-mdc-menu-trigger"],hostVars:3,hostBindings:function(ze,Z){1&ze&&t.bIt("click",function(fe){return Z._handleClick(fe)})("mousedown",function(fe){return Z._handleMousedown(fe)})("keydown",function(fe){return Z._handleKeydown(fe)}),2&ze&&t.BMQ("aria-haspopup",Z.menu?"menu":null)("aria-expanded",Z.menuOpen)("aria-controls",Z.menuOpen?null==Z.menu?null:Z.menu.panelId:null)},inputs:{_deprecatedMatMenuTriggerFor:[0,"mat-menu-trigger-for","_deprecatedMatMenuTriggerFor"],menu:[0,"matMenuTriggerFor","menu"],menuData:[0,"matMenuTriggerData","menuData"],restoreFocus:[0,"matMenuTriggerRestoreFocus","restoreFocus"]},outputs:{menuOpened:"menuOpened",onMenuOpen:"onMenuOpen",menuClosed:"menuClosed",onMenuClose:"onMenuClose"},exportAs:["matMenuTrigger"],features:[t.Vt3]})}return Ht})(),Ct=(()=>{class Ht{static \u0275fac=function(ze){return new(ze||Ht)};static \u0275mod=t.$C({type:Ht});static \u0275inj=i.G2t({providers:[ge],imports:[D.p,n.y,me.z_,Te.Gj,n.y]})}return Ht})()},59295:(Ae,ee,l)=>{"use strict";l.d(ee,{Zf:()=>m,EW:()=>j,QZ:()=>K,O8:()=>M}),l(10467);var t=l(2615),p=l(48440);const d={...p.pL,consumerIsAlwaysLive:!0,consumerAllowSignalWrites:!0,dirty:!0,kind:"effect"};class m{destroyed=!1;listeners=null;errorHandler=(0,t.WQX)(t.zcH,{optional:!0});destroyRef=(0,t.WQX)(t.abz);constructor(){this.destroyRef.onDestroy(()=>{this.destroyed=!0,this.listeners=null})}subscribe(W){if(this.destroyed)throw new t.buA(953,!1);return(this.listeners??=[]).push(W),{unsubscribe:()=>{const I=this.listeners?.indexOf(W);void 0!==I&&-1!==I&&this.listeners?.splice(I,1)}}}emit(W){if(this.destroyed)return void console.warn((0,t.OsK)(953,!1));if(null===this.listeners)return;const I=(0,p.Ht)(null);try{for(const B of this.listeners)try{B(W)}catch(re){this.errorHandler?.handleError(re)}}finally{(0,p.Ht)(I)}}}function M(_){return function g(_){const W=(0,p.Ht)(null);try{return _()}finally{(0,p.Ht)(W)}}(_)}function j(_,W){return(0,p.KZ)(_,W?.equal)}class U{[p.bh];constructor(W){this[p.bh]=W}destroy(){this[p.bh].destroy()}}function K(_,W){const I=W?.injector??(0,t.WQX)(t.zZn);let re,B=!0!==W?.manualCleanup?I.get(t.abz):null;const pe=I.get(t.r4V,null,{optional:!0}),be=I.get(t.hk6);return null!==pe?(re=function $(_,W,I){const B=Object.create(Q);return B.view=_,B.zone=typeof Zone<"u"?Zone.current:null,B.notifier=W,B.fn=ue(B,I),_[t.tQN]??=new Set,_[t.tQN].add(B),B.consumerMarkedDirty(B),B}(pe.view,be,_),B instanceof t.KXn&&B._lView===pe.view&&(B=null)):re=function ae(_,W,I){const B=Object.create(G);return B.fn=ue(B,_),B.scheduler=W,B.notifier=I,B.zone=typeof Zone<"u"?Zone.current:null,B.scheduler.add(B),B.notifier.notify(12),B}(_,I.get(t.VML),be),re.injector=I,null!==B&&(re.onDestroyFn=B.onDestroy(()=>re.destroy())),new U(re)}const q={...d,cleanupFns:void 0,zone:null,onDestroyFn:t.lQ1,run(){const _=(0,t.cBl)(!1);try{!function w(_){if(_.dirty=!1,_.version>0&&!(0,p.si)(_))return;_.version++;const W=(0,p.Bg)(_);try{_.cleanup(),_.fn()}finally{(0,p.Wu)(_,W)}}(this)}finally{(0,t.cBl)(_)}},cleanup(){if(!this.cleanupFns?.length)return;const _=(0,p.Ht)(null);try{for(;this.cleanupFns.length;)this.cleanupFns.pop()()}finally{this.cleanupFns=[],(0,p.Ht)(_)}}},G={...q,consumerMarkedDirty(){this.scheduler.schedule(this),this.notifier.notify(12)},destroy(){(0,p.XR)(this),this.onDestroyFn(),this.cleanup(),this.scheduler.remove(this)}},Q={...q,consumerMarkedDirty(){this.view[t.Wg1]|=8192,(0,t.blu)(this.view),this.notifier.notify(13)},destroy(){(0,p.XR)(this),this.onDestroyFn(),this.cleanup(),this.view[t.tQN]?.delete(this)}};function ue(_,W){return()=>{W(I=>(_.cleanupFns??=[]).push(I))}}Error,Error},59316:(Ae,ee,l)=>{var i=l(71993),t=l(83838).Buffer,p=l(55941);function S(c){p.call(this,c),this.enc="pem"}i(S,p),Ae.exports=S,S.prototype.decode=function(e,T){for(var g=e.toString().split(/[\r\n]+/g),d=T.label.toUpperCase(),w=/^-----(BEGIN|END) ([^-]+)-----$/,m=-1,P=-1,M=0;M{ee["des-ecb"]={key:8,iv:0},ee["des-cbc"]=ee.des={key:8,iv:8},ee["des-ede3-cbc"]=ee.des3={key:24,iv:8},ee["des-ede3"]={key:24,iv:0},ee["des-ede-cbc"]={key:16,iv:8},ee["des-ede"]={key:16,iv:0}},59584:(Ae,ee,l)=>{"use strict";l.d(ee,{Al:()=>P,BM:()=>M,Dv:()=>U,GX:()=>q,Ie:()=>j,KT:()=>T,O5:()=>$,Pj:()=>m,RB:()=>w,RQ:()=>Q,aJ:()=>K,av:()=>p,ip:()=>ae,kQ:()=>G,kr:()=>d,mH:()=>S,os:()=>g,ru:()=>e});var i=l(59640);const t=(0,i.UX)("cln"),p=(0,i.Mz)(t,oe=>({pageSettings:oe.pageSettings,apiCallStatus:oe.apisCallStatus.FetchPageSettings})),S=(0,i.Mz)(t,oe=>oe.information),e=((0,i.Mz)(t,oe=>oe.apisCallStatus.FetchInfo),(0,i.Mz)(t,oe=>oe.apisCallStatus)),T=(0,i.Mz)(t,oe=>({payments:oe.payments,apiCallStatus:oe.apisCallStatus.FetchPayments})),g=(0,i.Mz)(t,oe=>({peers:oe.peers,apiCallStatus:oe.apisCallStatus.FetchPeers})),d=(0,i.Mz)(t,oe=>({feeRatesPerKB:oe.feeRatesPerKB,apiCallStatus:oe.apisCallStatus.FetchFeeRatesperkb})),w=(0,i.Mz)(t,oe=>({feeRatesPerKW:oe.feeRatesPerKW,apiCallStatus:oe.apisCallStatus.FetchFeeRatesperkw})),m=(0,i.Mz)(t,oe=>({listInvoices:oe.invoices,apiCallStatus:oe.apisCallStatus.FetchInvoices})),P=(0,i.Mz)(t,oe=>({utxos:oe.utxos,balance:oe.balance,localRemoteBalance:oe.localRemoteBalance,apiCallStatus:oe.apisCallStatus.FetchUTXOBalances})),M=(0,i.Mz)(t,oe=>({activeChannels:oe.activeChannels,pendingChannels:oe.pendingChannels,inactiveChannels:oe.inactiveChannels,apiCallStatus:oe.apisCallStatus.FetchChannels})),j=(0,i.Mz)(t,oe=>({forwardingHistory:oe.forwardingHistory,apiCallStatus:oe.apisCallStatus.FetchForwardingHistoryS})),U=(0,i.Mz)(t,oe=>({failedForwardingHistory:oe.failedForwardingHistory,apiCallStatus:oe.apisCallStatus.FetchForwardingHistoryF})),K=(0,i.Mz)(t,oe=>({localFailedForwardingHistory:oe.localFailedForwardingHistory,apiCallStatus:oe.apisCallStatus.FetchForwardingHistoryL})),q=(0,i.Mz)(t,oe=>({information:oe.information,balance:oe.balance,numPeers:oe.peers.length})),G=(0,i.Mz)(t,oe=>({information:oe.information,balance:oe.balance})),Q=(0,i.Mz)(t,oe=>({information:oe.information,fees:oe.fees,apisCallStatus:[oe.apisCallStatus.FetchInfo,oe.apisCallStatus.FetchForwardingHistoryS]})),$=(0,i.Mz)(t,oe=>({offers:oe.offers,apiCallStatus:oe.apisCallStatus.FetchOffers})),ae=(0,i.Mz)(t,oe=>({offersBookmarks:oe.offersBookmarks,apiCallStatus:oe.apisCallStatus.FetchOfferBookmarks}))},59640:(Ae,ee,l)=>{"use strict";l.d(ee,{SS:()=>f,Zz:()=>o,N_:()=>k,Bh:()=>Ce,QU:()=>ct,sA:()=>fe,h1:()=>ht,il:()=>kt,ae:()=>an,md:()=>mn,wc:()=>ca,q6:()=>ze,VP:()=>G,UX:()=>ln,vy:()=>mr,Mz:()=>Hi,on:()=>qn,xk:()=>Q});var i=l(2615),t=l(73664),p=l(59295),S=l(17705),c=l(84412),e=l(71985),T=l(21413),g=l(47242),d=l(40941),w=l(53993),m=l(31943),P=l(96354),j=l(23294),U=l(89079);const K={};function G(fi,Mi){if(K[fi]=(K[fi]||0)+1,"function"==typeof Mi)return ae(fi,(...wi)=>({...Mi(...wi),type:fi}));switch(Mi?Mi._as:"empty"){case"empty":return ae(fi,()=>({type:fi}));case"props":return ae(fi,wi=>({...wi,type:fi}));default:throw new Error("Unexpected config.")}}function Q(){return{_as:"props",_p:void 0}}function ae(fi,Mi){return Object.defineProperty(Mi,"type",{value:fi,writable:!1})}const o="@ngrx/store/init";let f=(()=>{var fi;class Mi extends c.t{constructor(){super({type:o})}next(wi){if("function"==typeof wi)throw new TypeError("\n Dispatch expected an object, instead it received a function.\n If you're using the createAction function, make sure to invoke the function\n before dispatching the action. For example, someAction should be someAction().");if(typeof wi>"u")throw new TypeError("Actions must be objects");if(typeof wi.type>"u")throw new TypeError("Actions must have a type property");super.next(wi)}complete(){}ngOnDestroy(){super.complete()}static#e=fi=()=>(this.\u0275fac=function(Xe){return new(Xe||Mi)},this.\u0275prov=i.jDH({token:Mi,factory:Mi.\u0275fac}))}return fi(),Mi})();const h=[f],b=new i.nKC("@ngrx/store Internal Root Guard"),A=new i.nKC("@ngrx/store Internal Initial State"),k=new i.nKC("@ngrx/store Initial State"),x=new i.nKC("@ngrx/store Reducer Factory"),r=new i.nKC("@ngrx/store Internal Reducer Factory Provider"),_=new i.nKC("@ngrx/store Initial Reducers"),W=new i.nKC("@ngrx/store Internal Initial Reducers"),I=new i.nKC("@ngrx/store Store Features"),B=new i.nKC("@ngrx/store Internal Store Reducers"),re=new i.nKC("@ngrx/store Internal Feature Reducers"),pe=new i.nKC("@ngrx/store Internal Feature Configs"),be=new i.nKC("@ngrx/store Internal Store Features"),Be=new i.nKC("@ngrx/store Internal Feature Reducers Token"),_e=new i.nKC("@ngrx/store Feature Reducers"),ye=new i.nKC("@ngrx/store User Provided Meta Reducers"),Le=new i.nKC("@ngrx/store Meta Reducers"),Ke=new i.nKC("@ngrx/store Internal Resolved Meta Reducers"),ge=new i.nKC("@ngrx/store User Runtime Checks Config"),ve=new i.nKC("@ngrx/store Internal User Runtime Checks Config"),Oe=new i.nKC("@ngrx/store Internal Runtime Checks"),Ee=new i.nKC("@ngrx/store Check if Action types are unique"),dt=new i.nKC("@ngrx/store Root Store Provider"),nt=new i.nKC("@ngrx/store Feature State Provider");function Ct(fi,Mi={}){const en=Object.keys(fi),wi={};for(let Gt=0;GtGt(Xe),en(Mi))}}function Pe(fi,Mi){return Array.isArray(Mi)&&Mi.length>0&&(fi=lt.apply(null,[...Mi,fi])),(en,wi)=>{const Xe=fi(en);return(Gt,gt)=>Xe(Gt=void 0===Gt?wi:Gt,gt)}}class ct extends e.c{}class Ce extends f{}const ze="@ngrx/store/update-reducers";let Z=(()=>{var fi;class Mi extends c.t{get currentReducers(){return this.reducers}constructor(wi,Xe,Gt,gt){super(gt(Gt,Xe)),this.dispatcher=wi,this.initialState=Xe,this.reducers=Gt,this.reducerFactory=gt}addFeature(wi){this.addFeatures([wi])}addFeatures(wi){const Xe=wi.reduce((Gt,{reducers:gt,reducerFactory:Ft,metaReducers:gi,initialState:Bi,key:Qi})=>{const fn="function"==typeof gt?function Ht(fi){const Mi=Array.isArray(fi)&&fi.length>0?lt(...fi):en=>en;return(en,wi)=>(en=Mi(en),(Xe,Gt)=>en(Xe=void 0===Xe?wi:Xe,Gt))}(gi)(gt,Bi):Pe(Ft,gi)(gt,Bi);return Gt[Qi]=fn,Gt},{});this.addReducers(Xe)}removeFeature(wi){this.removeFeatures([wi])}removeFeatures(wi){this.removeReducers(wi.map(Xe=>Xe.key))}addReducer(wi,Xe){this.addReducers({[wi]:Xe})}addReducers(wi){this.reducers={...this.reducers,...wi},this.updateReducers(Object.keys(wi))}removeReducer(wi){this.removeReducers([wi])}removeReducers(wi){wi.forEach(Xe=>{this.reducers=function Mt(fi,Mi){return Object.keys(fi).filter(en=>en!==Mi).reduce((en,wi)=>Object.assign(en,{[wi]:fi[wi]}),{})}(this.reducers,Xe)}),this.updateReducers(wi)}updateReducers(wi){this.next(this.reducerFactory(this.reducers,this.initialState)),this.dispatcher.next({type:ze,features:wi})}ngOnDestroy(){this.complete()}static#e=fi=()=>(this.\u0275fac=function(Xe){return new(Xe||Mi)(i.KVO(Ce),i.KVO(k),i.KVO(_),i.KVO(x))},this.\u0275prov=i.jDH({token:Mi,factory:Mi.\u0275fac}))}return fi(),Mi})();const J=[Z,{provide:ct,useExisting:Z},{provide:Ce,useExisting:f}];let fe=(()=>{var fi;class Mi extends T.B{ngOnDestroy(){this.complete()}static#e=fi=()=>(this.\u0275fac=(()=>{let wi;return function(Gt){return(wi||(wi=t.xGo(Mi)))(Gt||Mi)}})(),this.\u0275prov=i.jDH({token:Mi,factory:Mi.\u0275fac}))}return fi(),Mi})();const Ie=[fe];class ht extends e.c{}let li=(()=>{var fi;class Mi extends c.t{constructor(wi,Xe,Gt,gt){super(gt);const Qi=wi.pipe((0,d.Q)(g.T)).pipe((0,w.E)(Xe)).pipe((0,m.S)(Qt,{state:gt}));this.stateSubscription=Qi.subscribe(({state:fn,action:ma})=>{this.next(fn),Gt.next(ma)}),this.state=(0,U.ot)(this,{manualCleanup:!0,requireSync:!0})}ngOnDestroy(){this.stateSubscription.unsubscribe(),this.complete()}static#e=fi=()=>(this.INIT=o,this.\u0275fac=function(Xe){return new(Xe||Mi)(i.KVO(f),i.KVO(ct),i.KVO(fe),i.KVO(k))},this.\u0275prov=i.jDH({token:Mi,factory:Mi.\u0275fac}))}return fi(),Mi})();function Qt(fi={state:void 0},[Mi,en]){const{state:wi}=fi;return{state:en(wi,Mi),action:Mi}}const di=[li,{provide:ht,useExisting:li}];let kt=(()=>{var fi;class Mi extends e.c{constructor(wi,Xe,Gt,gt){super(),this.actionsObserver=Xe,this.reducerManager=Gt,this.injector=gt,this.source=wi,this.state=wi.state}select(wi,...Xe){return le.call(null,wi,...Xe)(this)}selectSignal(wi,Xe){return(0,p.EW)(()=>wi(this.state()),Xe)}lift(wi){const Xe=new Mi(this,this.actionsObserver,this.reducerManager);return Xe.operator=wi,Xe}dispatch(wi,Xe){if("function"==typeof wi)return this.processDispatchFn(wi,Xe);this.actionsObserver.next(wi)}next(wi){this.actionsObserver.next(wi)}error(wi){this.actionsObserver.error(wi)}complete(){this.actionsObserver.complete()}addReducer(wi,Xe){this.reducerManager.addReducer(wi,Xe)}removeReducer(wi){this.reducerManager.removeReducer(wi)}processDispatchFn(wi,Xe){!function he(fi,Mi){if(null==fi)throw new Error(`${Mi} must be defined.`)}(this.injector,"Store Injector");const Gt=Xe?.injector??function te(){try{return(0,i.WQX)(i.zZn)}catch{return}}()??this.injector;return(0,p.QZ)(()=>{const gt=wi();(0,p.O8)(()=>this.dispatch(gt))},{injector:Gt})}static#e=fi=()=>(this.\u0275fac=function(Xe){return new(Xe||Mi)(i.KVO(ht),i.KVO(f),i.KVO(Z),i.KVO(i.zZn))},this.\u0275prov=i.jDH({token:Mi,factory:Mi.\u0275fac}))}return fi(),Mi})();const Rt=[kt];function le(fi,Mi,...en){return function(Xe){let Gt;if("string"==typeof fi){const gt=[Mi,...en].filter(Boolean);Gt=Xe.pipe(function M(...fi){const Mi=fi.length;if(0===Mi)throw new Error("list of properties cannot be empty.");return(0,P.T)(en=>{let wi=en;for(let Xe=0;Xefi(gt,Mi)))}return Gt.pipe((0,j.F)())}}const ce="https://ngrx.io/guide/store/configuration/runtime-checks";function se(fi){return void 0===fi}function ke(fi){return null===fi}function Ue(fi){return Array.isArray(fi)}function Vt(fi){return"object"==typeof fi&&null!==fi}function Ye(fi){return"function"==typeof fi}let Jt=!1;function tt(fi,Mi){return fi===Mi}function ci(fi,Mi=tt,en=tt){let Gt,wi=null,Xe=null;return{memoized:function Bi(){if(void 0!==Gt)return Gt.result;if(!wi)return Xe=fi.apply(null,arguments),wi=arguments,Xe;if(!function vi(fi,Mi,en){for(let wi=0;wi"function"==typeof Mi)}(wi[0])&&(wi=function dn(fi){const Mi=Object.values(fi),en=Object.keys(fi);return[...Mi,(...Xe)=>en.reduce((Gt,gt,Ft)=>({...Gt,[gt]:Xe[Ft]}),{})]}(wi[0]));const Xe=wi.slice(0,wi.length-1),Gt=wi[wi.length-1],gt=Xe.filter(Qi=>Qi.release&&"function"==typeof Qi.release),Ft=fi(function(...Qi){return Gt.apply(null,Qi)}),gi=ci(function(Qi,fn){return Mi.stateFn.apply(null,[Qi,Xe,fn,Ft])});return Object.assign(gi.memoized,{release:function Bi(){gi.reset(),Ft.reset(),gt.forEach(Qi=>Qi.release())},projector:Ft.memoized,setResult:gi.setResult,clearResult:gi.clearResult})}}(ci)(...fi)}function oi(fi,Mi,en,wi){if(void 0===en){const Gt=Mi.map(gt=>gt(fi));return wi.memoized.apply(null,Gt)}const Xe=Mi.map(Gt=>Gt(fi,en));return wi.memoized.apply(null,[...Xe,en])}function ln(fi){return Hi(Mi=>{const en=Mi[fi];return!function $e(){return Jt}()&&(0,S.naY)()&&!(fi in Mi)&&console.warn(`@ngrx/store: The feature name "${fi}" does not exist in the state, therefore createFeatureSelector cannot access it. Be sure it is imported in a loaded module using StoreModule.forRoot('${fi}', ...) or StoreModule.forFeature('${fi}', ...). If the default state is intended to be undefined, as is the case with router state, this development-only warning message can be ignored.`),en},Mi=>Mi)}function Ze(fi){return fi instanceof i.nKC?(0,i.WQX)(fi):fi}function Ve(fi,Mi){return Mi.map((en,wi)=>{if(fi[wi]instanceof i.nKC){const Xe=(0,i.WQX)(fi[wi]);return{key:en.key,reducerFactory:Xe.reducerFactory?Xe.reducerFactory:Ct,metaReducers:Xe.metaReducers?Xe.metaReducers:[],initialState:Xe.initialState}}return en})}function Fe(fi){return fi.map(Mi=>Mi instanceof i.nKC?(0,i.WQX)(Mi):Mi)}function it(fi){return"function"==typeof fi?fi():fi}function bt(fi,Mi){return fi.concat(Mi)}function ut(){if((0,i.WQX)(kt,{optional:!0,skipSelf:!0}))throw new TypeError("The root Store has been provided more than once. Feature modules should provide feature states instead.");return"guarded"}function ai(fi){Object.freeze(fi);const Mi=Ye(fi);return Object.getOwnPropertyNames(fi).forEach(en=>{if(!en.startsWith("\u0275")&&function Et(fi,Mi){return Object.prototype.hasOwnProperty.call(fi,Mi)}(fi,en)&&(!Mi||"caller"!==en&&"callee"!==en&&"arguments"!==en)){const wi=fi[en];(Vt(wi)||Ye(wi))&&!Object.isFrozen(wi)&&ai(wi)}}),fi}function ki(fi,Mi=[]){return(se(fi)||ke(fi))&&0===Mi.length?{path:["root"],value:fi}:Object.keys(fi).reduce((wi,Xe)=>{if(wi)return wi;const Gt=fi[Xe];return function Nt(fi){return Ye(fi)&&fi.hasOwnProperty("\u0275cmp")}(Gt)?wi:!(se(Gt)||ke(Gt)||function yt(fi){return"number"==typeof fi}(Gt)||function Kt(fi){return"boolean"==typeof fi}(Gt)||function Ne(fi){return"string"==typeof fi}(Gt)||Ue(Gt))&&(function ti(fi){if(!function Zt(fi){return Vt(fi)&&!Ue(fi)}(fi))return!1;const Mi=Object.getPrototypeOf(fi);return Mi===Object.prototype||null===Mi}(Gt)?ki(Gt,[...Mi,Xe]):{path:[...Mi,Xe],value:Gt})},!1)}function Ki(fi,Mi){if(!1===fi)return;const en=fi.path.join("."),wi=new Error(`Detected unserializable ${Mi} at "${en}". ${ce}#strict${Mi}serializability`);throw wi.value=fi.value,wi.unserializablePath=en,wi}function Dn(fi){return(0,S.naY)()?{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!0,strictActionImmutability:!0,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1,...fi}:{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!1,strictActionImmutability:!1,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1}}function En({strictActionSerializability:fi,strictStateSerializability:Mi}){return en=>fi||Mi?function pi(fi,Mi){return function(en,wi){Mi.action(wi)&&Ki(ki(wi),"action");const Xe=fi(en,wi);return Mi.state()&&Ki(ki(Xe),"state"),Xe}}(en,{action:wi=>fi&&!Fn(wi),state:()=>Mi}):en}function An({strictActionImmutability:fi,strictStateImmutability:Mi}){return en=>fi||Mi?function jt(fi,Mi){return function(en,wi){const Xe=Mi.action(wi)?ai(wi):wi,Gt=fi(en,Xe);return Mi.state()?ai(Gt):Gt}}(en,{action:wi=>fi&&!Fn(wi),state:()=>Mi}):en}function Fn(fi){return fi.type.startsWith("@ngrx")}function xi({strictActionWithinNgZone:fi}){return Mi=>fi?function Ji(fi,Mi){return function(en,wi){if(Mi.action(wi)&&!t.SKi.isInAngularZone())throw new Error(`Action '${wi.type}' running outside NgZone. ${ce}#strictactionwithinngzone`);return fi(en,wi)}}(Mi,{action:en=>fi&&!Fn(en)}):Mi}function Gi(fi){return[{provide:ve,useValue:fi},{provide:ge,useFactory:Ai,deps:[ve]},{provide:Oe,deps:[ge],useFactory:Dn},{provide:Le,multi:!0,deps:[Oe],useFactory:An},{provide:Le,multi:!0,deps:[Oe],useFactory:En},{provide:Le,multi:!0,deps:[Oe],useFactory:xi}]}function Ci(){return[{provide:Ee,multi:!0,deps:[Oe],useFactory:Yi}]}function Ai(fi){return fi}function Yi(fi){if(!fi.strictActionTypeUniqueness)return;const Mi=Object.entries(K).filter(([,en])=>en>1).map(([en])=>en);if(Mi.length)throw new Error(`Action types are registered more than once, ${Mi.map(en=>`"${en}"`).join(", ")}. ${ce}#strictactiontypeuniqueness`)}function ji(fi={},Mi={}){return[{provide:b,useFactory:ut},{provide:A,useValue:Mi.initialState},{provide:k,useFactory:it,deps:[A]},{provide:W,useValue:fi},{provide:B,useExisting:fi instanceof i.nKC?fi:W},{provide:_,deps:[W,[new t.y_5(B)]],useFactory:Ze},{provide:ye,useValue:Mi.metaReducers?Mi.metaReducers:[]},{provide:Ke,deps:[Le,ye],useFactory:bt},{provide:r,useValue:Mi.reducerFactory?Mi.reducerFactory:Ct},{provide:x,deps:[r,Ke],useFactory:Pe},h,J,Ie,di,Rt,Gi(Mi.runtimeChecks),Ci()]}function kn(fi,Mi,en={}){return[{provide:pe,multi:!0,useValue:fi instanceof Object?{}:en},{provide:I,multi:!0,useValue:{key:fi instanceof Object?fi.name:fi,reducerFactory:en instanceof i.nKC||!en.reducerFactory?Ct:en.reducerFactory,metaReducers:en instanceof i.nKC||!en.metaReducers?[]:en.metaReducers,initialState:en instanceof i.nKC||!en.initialState?void 0:en.initialState}},{provide:be,deps:[pe,I],useFactory:Ve},{provide:re,multi:!0,useValue:fi instanceof Object?fi.reducer:Mi},{provide:Be,multi:!0,useExisting:Mi instanceof i.nKC?Mi:re},{provide:_e,multi:!0,deps:[re,[new t.y_5(Be)]],useFactory:Fe},Ci()]}(0,i.BCV)(()=>(0,i.WQX)(dt)),(0,i.BCV)(()=>(0,i.WQX)(nt));let ca=(()=>{var fi;class Mi{constructor(wi,Xe,Gt,gt,Ft,gi){}static#e=fi=()=>(this.\u0275fac=function(Xe){return new(Xe||Mi)(i.KVO(f),i.KVO(ct),i.KVO(fe),i.KVO(kt),i.KVO(b,8),i.KVO(Ee,8))},this.\u0275mod=t.$C({type:Mi}),this.\u0275inj=i.G2t({}))}return fi(),Mi})(),an=(()=>{var fi;class Mi{constructor(wi,Xe,Gt,gt,Ft){this.features=wi,this.featureReducers=Xe,this.reducerManager=Gt;const gi=wi.map((Bi,Qi)=>{const ma=Xe.shift()[Qi];return{...Bi,reducers:ma,initialState:it(Bi.initialState)}});Gt.addFeatures(gi)}ngOnDestroy(){this.reducerManager.removeFeatures(this.features)}static#e=fi=()=>(this.\u0275fac=function(Xe){return new(Xe||Mi)(i.KVO(be),i.KVO(_e),i.KVO(Z),i.KVO(ca),i.KVO(Ee,8))},this.\u0275mod=t.$C({type:Mi}),this.\u0275inj=i.G2t({}))}return fi(),Mi})(),mn=(()=>{var fi;class Mi{static forRoot(wi,Xe){return{ngModule:ca,providers:[...ji(wi,Xe)]}}static forFeature(wi,Xe,Gt={}){return{ngModule:an,providers:[...kn(wi,Xe,Gt)]}}static#e=fi=()=>(this.\u0275fac=function(Xe){return new(Xe||Mi)},this.\u0275mod=t.$C({type:Mi}),this.\u0275inj=i.G2t({}))}return fi(),Mi})();function qn(...fi){return{reducer:fi.pop(),types:fi.map(wi=>wi.type)}}function mr(fi,...Mi){const en=new Map;for(const wi of Mi)for(const Xe of wi.types){const Gt=en.get(Xe);en.set(Xe,Gt?(Ft,gi)=>wi.reducer(Gt(Ft,gi),gi):wi.reducer)}return function(wi=fi,Xe){const Gt=en.get(Xe.type);return Gt?Gt(wi,Xe):wi}}},59705:Ae=>{"use strict";Ae.exports=Function.prototype.call},59858:(Ae,ee,l)=>{"use strict";l.d(ee,{y:()=>t});var i=l(98071);function t(p){return(0,i.T)(p?.then)}},60092:(Ae,ee,l)=>{"use strict";l.d(ee,{z:()=>p});var i=l(89417),t=l(73664);let p=(()=>{var S;class c{validate(T){return this.max?i.k0.max(+this.max)(T):null}static#e=S=()=>(this.\u0275fac=function(g){return new(g||c)},this.\u0275dir=t.FsC({type:c,selectors:[["input","max",""]],inputs:{max:"max"},standalone:!1,features:[t.Jv_([{provide:i.cz,useExisting:c,multi:!0}])]}))}return S(),c})()},60102:(Ae,ee,l)=>{var i=l(19307),t=l(27054).Buffer,p=l(60503),S=l(91821),c=l(3247),e=l(12375),T=l(18211);function d(j,U,K){c.call(this),this._cache=new w,this._last=void 0,this._cipher=new e.AES(U),this._prev=t.from(K),this._mode=j,this._autopadding=!0}function w(){this.cache=t.allocUnsafe(0)}function P(j,U,K){var q=p[j.toLowerCase()];if(!q)throw new TypeError("invalid suite type");if("string"==typeof K&&(K=t.from(K)),"GCM"!==q.mode&&K.length!==q.iv)throw new TypeError("invalid iv length "+K.length);if("string"==typeof U&&(U=t.from(U)),U.length!==q.key/8)throw new TypeError("invalid key length "+U.length);return"stream"===q.type?new S(q.module,U,K,!0):"auth"===q.type?new i(q.module,U,K,!0):new d(q.module,U,K)}l(71993)(d,c),d.prototype._update=function(j){this._cache.add(j);for(var U,K,q=[];U=this._cache.get(this._autopadding);)K=this._mode.decrypt(this,U),q.push(K);return t.concat(q)},d.prototype._final=function(){var j=this._cache.flush();if(this._autopadding)return function m(j){var U=j[15];if(U<1||U>16)throw new Error("unable to decrypt data");for(var K=-1;++K16)return U=this.cache.slice(0,16),this.cache=this.cache.slice(16),U}else if(this.cache.length>=16)return U=this.cache.slice(0,16),this.cache=this.cache.slice(16),U;return null},w.prototype.flush=function(){if(this.cache.length)return this.cache},ee.createDecipher=function M(j,U){var K=p[j.toLowerCase()];if(!K)throw new TypeError("invalid suite type");var q=T(U,!1,K.key,K.iv);return P(j,q.key,q.iv)},ee.createDecipheriv=P},60177:(Ae,ee,l)=>{"use strict";l.d(ee,{AJ:()=>p,UE:()=>c,Vy:()=>e,Xr:()=>g});var i=l(2615);const p="browser",S="server";function c(ut){return ut===p}function e(ut){return ut===S}let g=(()=>{class ut{static \u0275prov=(0,i.jDH)({token:ut,providedIn:"root",factory:()=>new d((0,i.WQX)(i.qQL),window)})}return ut})();class d{document;window;offset=()=>[0,0];constructor(jt,ai){this.document=jt,this.window=ai}setOffset(jt){this.offset=Array.isArray(jt)?()=>jt:jt}getScrollPosition(){return[this.window.scrollX,this.window.scrollY]}scrollToPosition(jt,ai){this.window.scrollTo({...ai,left:jt[0],top:jt[1]})}scrollToAnchor(jt,ai){const pi=function w(ut,jt){const ai=ut.getElementById(jt)||ut.getElementsByName(jt)[0];if(ai)return ai;if("function"==typeof ut.createTreeWalker&&ut.body&&"function"==typeof ut.body.attachShadow){const pi=ut.createTreeWalker(ut.body,NodeFilter.SHOW_ELEMENT);let ki=pi.currentNode;for(;ki;){const Ki=ki.shadowRoot;if(Ki){const Ji=Ki.getElementById(jt)||Ki.querySelector(`[name="${jt}"]`);if(Ji)return Ji}ki=pi.nextNode()}}return null}(this.document,jt);pi&&(this.scrollToElement(pi,ai),pi.focus())}setHistoryScrollRestoration(jt){try{this.window.history.scrollRestoration=jt}catch{console.warn((0,i.OsK)(2400,!1))}}scrollToElement(jt,ai){const pi=jt.getBoundingClientRect(),ki=pi.left+this.window.pageXOffset,Ki=pi.top+this.window.pageYOffset,Ji=this.offset();this.window.scrollTo({...ai,left:ki-Ji[0],top:Ki-Ji[1]})}}},60426:(Ae,ee)=>{"use strict";function l(ye){return Object.keys(ye).map(Le=>ye[Le])}var ye;Object.defineProperty(ee,"__esModule",{value:!0}),(ye=ee.HashAlgorithms||(ee.HashAlgorithms={})).SHA1="sha1",ye.SHA256="sha256",ye.SHA512="sha512";const i=l(ee.HashAlgorithms);!function(ye){ye.ASCII="ascii",ye.BASE64="base64",ye.HEX="hex",ye.LATIN1="latin1",ye.UTF8="utf8"}(ee.KeyEncodings||(ee.KeyEncodings={}));const t=l(ee.KeyEncodings);!function(ye){ye.HOTP="hotp",ye.TOTP="totp"}(ee.Strategy||(ee.Strategy={}));const p=l(ee.Strategy),S=()=>{throw new Error("Please provide an options.createDigest implementation.")};function c(ye){return/^(\d+)$/.test(ye)}function e(ye,Le,Ke){return ye.length>=Le?ye:`${Array(Le+1).join(Ke)}${ye}`.slice(-1*Le)}function T(ye){const Le=`otpauth://${ye.type}/{labelPrefix}:{accountName}?secret={secret}{query}`,Ke=[];if(p.indexOf(ye.type)<0)throw new Error(`Expecting options.type to be one of ${p.join(", ")}. Received ${ye.type}.`);if("hotp"===ye.type){if(null==ye.counter||"number"!=typeof ye.counter)throw new Error('Expecting options.counter to be a number when options.type is "hotp".');Ke.push(`&counter=${ye.counter}`)}return"totp"===ye.type&&ye.step&&Ke.push(`&period=${ye.step}`),ye.digits&&Ke.push(`&digits=${ye.digits}`),ye.algorithm&&Ke.push(`&algorithm=${ye.algorithm.toUpperCase()}`),ye.issuer&&Ke.push(`&issuer=${encodeURIComponent(ye.issuer)}`),Le.replace("{labelPrefix}",encodeURIComponent(ye.issuer||ye.accountName)).replace("{accountName}",encodeURIComponent(ye.accountName)).replace("{secret}",ye.secret).replace("{query}",Ke.join(""))}class g{constructor(Le={}){this._defaultOptions=Object.freeze({...Le}),this._options=Object.freeze({})}create(Le={}){return new g(Le)}clone(Le={}){const Ke=this.create({...this._defaultOptions,...Le});return Ke.options=this._options,Ke}get options(){return Object.freeze({...this._defaultOptions,...this._options})}set options(Le){this._options=Object.freeze({...this._options,...Le})}allOptions(){return this.options}resetOptions(){this._options=Object.freeze({})}}function d(ye){if("function"!=typeof ye.createDigest)throw new Error("Expecting options.createDigest to be a function.");if("function"!=typeof ye.createHmacKey)throw new Error("Expecting options.createHmacKey to be a function.");if("number"!=typeof ye.digits)throw new Error("Expecting options.digits to be a number.");if(!ye.algorithm||i.indexOf(ye.algorithm)<0)throw new Error(`Expecting options.algorithm to be one of ${i.join(", ")}. Received ${ye.algorithm}.`);if(!ye.encoding||t.indexOf(ye.encoding)<0)throw new Error(`Expecting options.encoding to be one of ${t.join(", ")}. Received ${ye.encoding}.`)}const w=(ye,Le,Ke)=>Buffer.from(Le,Ke).toString("hex");function m(){return{algorithm:ee.HashAlgorithms.SHA1,createHmacKey:w,createDigest:S,digits:6,encoding:ee.KeyEncodings.ASCII}}function P(ye){const Le={...m(),...ye};return d(Le),Object.freeze(Le)}function M(ye){return e(ye.toString(16),16,"0")}function j(ye,Le){const Ke=Buffer.from(ye,"hex"),ge=15&Ke[Ke.length-1],Oe=((127&Ke[ge])<<24|(255&Ke[ge+1])<<16|(255&Ke[ge+2])<<8|255&Ke[ge+3])%Math.pow(10,Le);return e(String(Oe),Le,"0")}function K(ye,Le,Ke){const ge=Ke.digest||function U(ye,Le,Ke){const ge=M(Le),ve=Ke.createHmacKey(Ke.algorithm,ye,Ke.encoding);return Ke.createDigest(Ke.algorithm,ve,ge)}(ye,Le,Ke);return j(ge,Ke.digits)}function q(ye,Le,Ke,ge){return!!c(ye)&&ye===K(Le,Ke,ge)}function G(ye,Le,Ke,ge,ve){return T({algorithm:ve.algorithm,digits:ve.digits,type:ee.Strategy.HOTP,accountName:ye,counter:ge,issuer:Le,secret:Ke})}class Q extends g{create(Le={}){return new Q(Le)}allOptions(){return P(this.options)}generate(Le,Ke){return K(Le,Ke,this.allOptions())}check(Le,Ke,ge){return q(Le,Ke,ge,this.allOptions())}verify(Le){if("object"!=typeof Le)throw new Error("Expecting argument 0 of verify to be an object");return this.check(Le.token,Le.secret,Le.counter)}keyuri(Le,Ke,ge,ve){return G(Le,Ke,ge,ve,this.allOptions())}}function $(ye){if("number"==typeof ye)return[Math.abs(ye),Math.abs(ye)];if(Array.isArray(ye)){const[Le,Ke]=ye;if("number"==typeof Le&&"number"==typeof Ke)return[Math.abs(Le),Math.abs(Ke)]}throw new Error("Expecting options.window to be an number or [number, number].")}function ae(ye){if(d(ye),$(ye.window),"number"!=typeof ye.epoch)throw new Error("Expecting options.epoch to be a number.");if("number"!=typeof ye.step)throw new Error("Expecting options.step to be a number.")}const ue=(ye,Le,Ke)=>{const ge=ye.length,ve=Buffer.from(ye,Le).toString("hex");if(ge{switch(ye){case ee.HashAlgorithms.SHA1:return ue(Le,Ke,20);case ee.HashAlgorithms.SHA256:return ue(Le,Ke,32);case ee.HashAlgorithms.SHA512:return ue(Le,Ke,64);default:throw new Error(`Expecting algorithm to be one of ${i.join(", ")}. Received ${ye}.`)}};function he(){return{algorithm:ee.HashAlgorithms.SHA1,createDigest:S,createHmacKey:oe,digits:6,encoding:ee.KeyEncodings.ASCII,epoch:Date.now(),step:30,window:0}}function me(ye){const Le={...he(),...ye};return ae(Le),Object.freeze(Le)}function Te(ye,Le){return Math.floor(ye/Le/1e3)}function D(ye,Le){return K(ye,Te(Le.epoch,Le.step),Le)}function n(ye,Le,Ke,ge){const ve=[];if(0===ge)return ve;for(let Oe=1;Oe<=ge;Oe++)ve.push(ye+Le*Oe*Ke);return ve}function o(ye,Le,Ke){const ge=$(Ke),ve=1e3*Le;return{current:ye,past:n(ye,-1,ve,ge[0]),future:n(ye,1,ve,ge[1])}}function f(ye,Le,Ke){return!!c(ye)&&ye===D(Le,Ke)}function h(ye,Le,Ke,ge){let ve=null;return ye.some((Oe,Ee)=>!!f(Le,Ke,{...ge,epoch:Oe})&&(ve=Ee+1,!0)),ve}function b(ye,Le,Ke){if(f(ye,Le,Ke))return 0;const ge=o(Ke.epoch,Ke.step,Ke.window),ve=h(ge.past,ye,Le,Ke);return null!==ve?-1*ve:h(ge.future,ye,Le,Ke)}function A(ye,Le){return Math.floor(ye/1e3)%Le}function k(ye,Le){return Le-A(ye,Le)}function x(ye,Le,Ke,ge){return T({algorithm:ge.algorithm,digits:ge.digits,step:ge.step,type:ee.Strategy.TOTP,accountName:ye,issuer:Le,secret:Ke})}class r extends Q{create(Le={}){return new r(Le)}allOptions(){return me(this.options)}generate(Le){return D(Le,this.allOptions())}checkDelta(Le,Ke){return b(Le,Ke,this.allOptions())}check(Le,Ke){return"number"==typeof this.checkDelta(Le,Ke)}verify(Le){if("object"!=typeof Le)throw new Error("Expecting argument 0 of verify to be an object");return this.check(Le.token,Le.secret)}timeRemaining(){const Le=this.allOptions();return k(Le.epoch,Le.step)}timeUsed(){const Le=this.allOptions();return A(Le.epoch,Le.step)}keyuri(Le,Ke,ge){return x(Le,Ke,ge,this.allOptions())}}function _(ye){if(ae(ye),"function"!=typeof ye.keyDecoder)throw new Error("Expecting options.keyDecoder to be a function.");if(ye.keyEncoder&&"function"!=typeof ye.keyEncoder)throw new Error("Expecting options.keyEncoder to be a function.")}function W(){return{algorithm:ee.HashAlgorithms.SHA1,createDigest:S,createHmacKey:oe,digits:6,encoding:ee.KeyEncodings.HEX,epoch:Date.now(),step:30,window:0}}function I(ye){const Le={...W(),...ye};return _(Le),Object.freeze(Le)}function B(ye,Le){return Le.keyEncoder(ye,Le.encoding)}function re(ye,Le){return Le.keyDecoder(ye,Le.encoding)}function pe(ye,Le){return B(Le.createRandomBytes(ye,Le.encoding),Le)}function be(ye,Le){return D(re(ye,Le),Le)}function Be(ye,Le,Ke){return b(ye,re(Le,Ke),Ke)}class _e extends r{create(Le={}){return new _e(Le)}allOptions(){return I(this.options)}generate(Le){return be(Le,this.allOptions())}checkDelta(Le,Ke){return Be(Le,Ke,this.allOptions())}encode(Le){return B(Le,this.allOptions())}decode(Le){return re(Le,this.allOptions())}generateSecret(Le=10){return pe(Le,this.allOptions())}}ee.Authenticator=_e,ee.HASH_ALGORITHMS=i,ee.HOTP=Q,ee.KEY_ENCODINGS=t,ee.OTP=g,ee.STRATEGY=p,ee.TOTP=r,ee.authenticatorCheckWithWindow=Be,ee.authenticatorDecoder=re,ee.authenticatorDefaultOptions=W,ee.authenticatorEncoder=B,ee.authenticatorGenerateSecret=pe,ee.authenticatorOptionValidator=_,ee.authenticatorOptions=I,ee.authenticatorToken=be,ee.createDigestPlaceholder=S,ee.hotpCheck=q,ee.hotpCounter=M,ee.hotpCreateHmacKey=w,ee.hotpDefaultOptions=m,ee.hotpDigestToToken=j,ee.hotpKeyuri=G,ee.hotpOptions=P,ee.hotpOptionsValidator=d,ee.hotpToken=K,ee.isTokenValid=c,ee.keyuri=T,ee.objectValues=l,ee.padStart=e,ee.totpCheck=f,ee.totpCheckByEpoch=h,ee.totpCheckWithWindow=b,ee.totpCounter=Te,ee.totpCreateHmacKey=oe,ee.totpDefaultOptions=he,ee.totpEpochAvailable=o,ee.totpKeyuri=x,ee.totpOptions=me,ee.totpOptionsValidator=ae,ee.totpPadSecret=ue,ee.totpTimeRemaining=k,ee.totpTimeUsed=A,ee.totpToken=D},60503:(Ae,ee,l)=>{var i={ECB:l(37513),CBC:l(34133),CFB:l(17090),CFB8:l(72576),CFB1:l(71039),OFB:l(46854),CTR:l(70336),GCM:l(70336)},t=l(3219);for(var p in t)t[p].module=i[t[p].mode];Ae.exports=t},60541:(Ae,ee,l)=>{"use strict";var i=l(88723),p=l(3136).assert;function S(c,e){this.ec=c,this.priv=null,this.pub=null,e.priv&&this._importPrivate(e.priv,e.privEnc),e.pub&&this._importPublic(e.pub,e.pubEnc)}Ae.exports=S,S.fromPublic=function(e,T,g){return T instanceof S?T:new S(e,{pub:T,pubEnc:g})},S.fromPrivate=function(e,T,g){return T instanceof S?T:new S(e,{priv:T,privEnc:g})},S.prototype.validate=function(){var e=this.getPublic();return e.isInfinity()?{result:!1,reason:"Invalid public key"}:e.validate()?e.mul(this.ec.curve.n).isInfinity()?{result:!0,reason:null}:{result:!1,reason:"Public key * N != O"}:{result:!1,reason:"Public key is not a point"}},S.prototype.getPublic=function(e,T){return"string"==typeof e&&(T=e,e=null),this.pub||(this.pub=this.ec.g.mul(this.priv)),T?this.pub.encode(T,e):this.pub},S.prototype.getPrivate=function(e){return"hex"===e?this.priv.toString(16,2):this.priv},S.prototype._importPrivate=function(e,T){this.priv=new i(e,T||16),this.priv=this.priv.umod(this.ec.curve.n)},S.prototype._importPublic=function(e,T){if(e.x||e.y)return"mont"===this.ec.curve.type?p(e.x,"Need x coordinate"):("short"===this.ec.curve.type||"edwards"===this.ec.curve.type)&&p(e.x&&e.y,"Need both x and y coordinate"),void(this.pub=this.ec.curve.point(e.x,e.y));this.pub=this.ec.curve.decodePoint(e,T)},S.prototype.derive=function(e){return e.validate()||p(e.validate(),"public point not validated"),e.mul(this.priv).getX()},S.prototype.sign=function(e,T,g){return this.ec.sign(e,this,T,g)},S.prototype.verify=function(e,T,g){return this.ec.verify(e,T,this,void 0,g)},S.prototype.inspect=function(){return""}},61092:(Ae,ee,l)=>{"use strict";var i;Ae.exports=D,D.ReadableState=Te,l(44356);var w,p=function(ve,Oe){return ve.listeners(Oe).length},S=l(12601),c=l(83838).Buffer,e=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},d=l(77199);w=d&&d.debuglog?d.debuglog("stream"):function(){};var $,ae,ue,m=l(75225),P=l(88152),j=l(22827).getHighWaterMark,U=l(30464).F,K=U.ERR_INVALID_ARG_TYPE,q=U.ERR_STREAM_PUSH_AFTER_EOF,G=U.ERR_METHOD_NOT_IMPLEMENTED,Q=U.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;l(71993)(D,S);var oe=P.errorOrDestroy,he=["error","close","destroy","pause","resume"];function Te(ge,ve,Oe){i=i||l(1030),"boolean"!=typeof Oe&&(Oe=ve instanceof i),this.objectMode=!!(ge=ge||{}).objectMode,Oe&&(this.objectMode=this.objectMode||!!ge.readableObjectMode),this.highWaterMark=j(this,ge,"readableHighWaterMark",Oe),this.buffer=new m,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.paused=!0,this.emitClose=!1!==ge.emitClose,this.autoDestroy=!!ge.autoDestroy,this.destroyed=!1,this.defaultEncoding=ge.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,ge.encoding&&($||($=l(78454).I),this.decoder=new $(ge.encoding),this.encoding=ge.encoding)}function D(ge){if(i=i||l(1030),!(this instanceof D))return new D(ge);this._readableState=new Te(ge,this,this instanceof i),this.readable=!0,ge&&("function"==typeof ge.read&&(this._read=ge.read),"function"==typeof ge.destroy&&(this._destroy=ge.destroy)),S.call(this)}function n(ge,ve,Oe,Ee,dt){w("readableAddChunk",ve);var Ct,nt=ge._readableState;if(null===ve)nt.reading=!1,function k(ge,ve){if(w("onEofChunk"),!ve.ended){if(ve.decoder){var Oe=ve.decoder.end();Oe&&Oe.length&&(ve.buffer.push(Oe),ve.length+=ve.objectMode?1:Oe.length)}ve.ended=!0,ve.sync?x(ge):(ve.needReadable=!1,ve.emittedReadable||(ve.emittedReadable=!0,r(ge)))}}(ge,nt);else if(dt||(Ct=function f(ge,ve){var Oe;return!function g(ge){return c.isBuffer(ge)||ge instanceof e}(ve)&&"string"!=typeof ve&&void 0!==ve&&!ge.objectMode&&(Oe=new K("chunk",["string","Buffer","Uint8Array"],ve)),Oe}(nt,ve)),Ct)oe(ge,Ct);else if(nt.objectMode||ve&&ve.length>0)if("string"!=typeof ve&&!nt.objectMode&&Object.getPrototypeOf(ve)!==c.prototype&&(ve=function T(ge){return c.from(ge)}(ve)),Ee)nt.endEmitted?oe(ge,new Q):o(ge,nt,ve,!0);else if(nt.ended)oe(ge,new q);else{if(nt.destroyed)return!1;nt.reading=!1,nt.decoder&&!Oe?(ve=nt.decoder.write(ve),nt.objectMode||0!==ve.length?o(ge,nt,ve,!1):_(ge,nt)):o(ge,nt,ve,!1)}else Ee||(nt.reading=!1,_(ge,nt));return!nt.ended&&(nt.lengthve.highWaterMark&&(ve.highWaterMark=function b(ge){return ge>=h?ge=h:(ge--,ge|=ge>>>1,ge|=ge>>>2,ge|=ge>>>4,ge|=ge>>>8,ge|=ge>>>16,ge++),ge}(ge)),ge<=ve.length?ge:ve.ended?ve.length:(ve.needReadable=!0,0))}function x(ge){var ve=ge._readableState;w("emitReadable",ve.needReadable,ve.emittedReadable),ve.needReadable=!1,ve.emittedReadable||(w("emitReadable",ve.flowing),ve.emittedReadable=!0,process.nextTick(r,ge))}function r(ge){var ve=ge._readableState;w("emitReadable_",ve.destroyed,ve.length,ve.ended),!ve.destroyed&&(ve.length||ve.ended)&&(ge.emit("readable"),ve.emittedReadable=!1),ve.needReadable=!ve.flowing&&!ve.ended&&ve.length<=ve.highWaterMark,Be(ge)}function _(ge,ve){ve.readingMore||(ve.readingMore=!0,process.nextTick(W,ge,ve))}function W(ge,ve){for(;!ve.reading&&!ve.ended&&(ve.length0,ve.resumeScheduled&&!ve.paused?ve.flowing=!0:ge.listenerCount("data")>0&&ge.resume()}function re(ge){w("readable nexttick read 0"),ge.read(0)}function be(ge,ve){w("resume",ve.reading),ve.reading||ge.read(0),ve.resumeScheduled=!1,ge.emit("resume"),Be(ge),ve.flowing&&!ve.reading&&ge.read(0)}function Be(ge){var ve=ge._readableState;for(w("flow",ve.flowing);ve.flowing&&null!==ge.read(););}function _e(ge,ve){return 0===ve.length?null:(ve.objectMode?Oe=ve.buffer.shift():!ge||ge>=ve.length?(Oe=ve.decoder?ve.buffer.join(""):1===ve.buffer.length?ve.buffer.first():ve.buffer.concat(ve.length),ve.buffer.clear()):Oe=ve.buffer.consume(ge,ve.decoder),Oe);var Oe}function ye(ge){var ve=ge._readableState;w("endReadable",ve.endEmitted),ve.endEmitted||(ve.ended=!0,process.nextTick(Le,ve,ge))}function Le(ge,ve){if(w("endReadableNT",ge.endEmitted,ge.length),!ge.endEmitted&&0===ge.length&&(ge.endEmitted=!0,ve.readable=!1,ve.emit("end"),ge.autoDestroy)){var Oe=ve._writableState;(!Oe||Oe.autoDestroy&&Oe.finished)&&ve.destroy()}}function Ke(ge,ve){for(var Oe=0,Ee=ge.length;Oe=ve.highWaterMark:ve.length>0)||ve.ended))return w("read: emitReadable",ve.length,ve.ended),0===ve.length&&ve.ended?ye(this):x(this),null;if(0===(ge=A(ge,ve))&&ve.ended)return 0===ve.length&&ye(this),null;var dt,Ee=ve.needReadable;return w("need readable",Ee),(0===ve.length||ve.length-ge0?_e(ge,ve):null)?(ve.needReadable=ve.length<=ve.highWaterMark,ge=0):(ve.length-=ge,ve.awaitDrain=0),0===ve.length&&(ve.ended||(ve.needReadable=!0),Oe!==ge&&ve.ended&&ye(this)),null!==dt&&this.emit("data",dt),dt},D.prototype._read=function(ge){oe(this,new G("_read()"))},D.prototype.pipe=function(ge,ve){var Oe=this,Ee=this._readableState;switch(Ee.pipesCount){case 0:Ee.pipes=ge;break;case 1:Ee.pipes=[Ee.pipes,ge];break;default:Ee.pipes.push(ge)}Ee.pipesCount+=1,w("pipe count=%d opts=%j",Ee.pipesCount,ve);var nt=ve&&!1===ve.end||ge===process.stdout||ge===process.stderr?J:Mt;function Mt(){w("onend"),ge.end()}Ee.endEmitted?process.nextTick(nt):Oe.once("end",nt),ge.on("unpipe",function Ct(fe,Ie){w("onunpipe"),fe===Oe&&Ie&&!1===Ie.hasUnpiped&&(Ie.hasUnpiped=!0,function Ht(){w("cleanup"),ge.removeListener("close",ze),ge.removeListener("finish",Z),ge.removeListener("drain",lt),ge.removeListener("error",Ce),ge.removeListener("unpipe",Ct),Oe.removeListener("end",Mt),Oe.removeListener("end",J),Oe.removeListener("data",ct),Pe=!0,Ee.awaitDrain&&(!ge._writableState||ge._writableState.needDrain)&<()}())});var lt=function I(ge){return function(){var Oe=ge._readableState;w("pipeOnDrain",Oe.awaitDrain),Oe.awaitDrain&&Oe.awaitDrain--,0===Oe.awaitDrain&&p(ge,"data")&&(Oe.flowing=!0,Be(ge))}}(Oe);ge.on("drain",lt);var Pe=!1;function ct(fe){w("ondata");var Ie=ge.write(fe);w("dest.write",Ie),!1===Ie&&((1===Ee.pipesCount&&Ee.pipes===ge||Ee.pipesCount>1&&-1!==Ke(Ee.pipes,ge))&&!Pe&&(w("false write response, pause",Ee.awaitDrain),Ee.awaitDrain++),Oe.pause())}function Ce(fe){w("onerror",fe),J(),ge.removeListener("error",Ce),0===p(ge,"error")&&oe(ge,fe)}function ze(){ge.removeListener("finish",Z),J()}function Z(){w("onfinish"),ge.removeListener("close",ze),J()}function J(){w("unpipe"),Oe.unpipe(ge)}return Oe.on("data",ct),function me(ge,ve,Oe){if("function"==typeof ge.prependListener)return ge.prependListener(ve,Oe);ge._events&&ge._events[ve]?Array.isArray(ge._events[ve])?ge._events[ve].unshift(Oe):ge._events[ve]=[Oe,ge._events[ve]]:ge.on(ve,Oe)}(ge,"error",Ce),ge.once("close",ze),ge.once("finish",Z),ge.emit("pipe",Oe),Ee.flowing||(w("pipe resume"),Oe.resume()),ge},D.prototype.unpipe=function(ge){var ve=this._readableState,Oe={hasUnpiped:!1};if(0===ve.pipesCount)return this;if(1===ve.pipesCount)return ge&&ge!==ve.pipes||(ge||(ge=ve.pipes),ve.pipes=null,ve.pipesCount=0,ve.flowing=!1,ge&&ge.emit("unpipe",this,Oe)),this;if(!ge){var Ee=ve.pipes,dt=ve.pipesCount;ve.pipes=null,ve.pipesCount=0,ve.flowing=!1;for(var nt=0;nt0,!1!==Ee.flowing&&this.resume()):"readable"===ge&&!Ee.endEmitted&&!Ee.readableListening&&(Ee.readableListening=Ee.needReadable=!0,Ee.flowing=!1,Ee.emittedReadable=!1,w("on readable",Ee.length,Ee.reading),Ee.length?x(this):Ee.reading||process.nextTick(re,this)),Oe},D.prototype.removeListener=function(ge,ve){var Oe=S.prototype.removeListener.call(this,ge,ve);return"readable"===ge&&process.nextTick(B,this),Oe},D.prototype.removeAllListeners=function(ge){var ve=S.prototype.removeAllListeners.apply(this,arguments);return("readable"===ge||void 0===ge)&&process.nextTick(B,this),ve},D.prototype.resume=function(){var ge=this._readableState;return ge.flowing||(w("resume"),ge.flowing=!ge.readableListening,function pe(ge,ve){ve.resumeScheduled||(ve.resumeScheduled=!0,process.nextTick(be,ge,ve))}(this,ge)),ge.paused=!1,this},D.prototype.pause=function(){return w("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(w("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},D.prototype.wrap=function(ge){var ve=this,Oe=this._readableState,Ee=!1;for(var dt in ge.on("end",function(){if(w("wrapped end"),Oe.decoder&&!Oe.ended){var Ct=Oe.decoder.end();Ct&&Ct.length&&ve.push(Ct)}ve.push(null)}),ge.on("data",function(Ct){w("wrapped data"),Oe.decoder&&(Ct=Oe.decoder.write(Ct)),Oe.objectMode&&null==Ct||!(Oe.objectMode||Ct&&Ct.length)||ve.push(Ct)||(Ee=!0,ge.pause())}),ge)void 0===this[dt]&&"function"==typeof ge[dt]&&(this[dt]=function(Mt){return function(){return ge[Mt].apply(ge,arguments)}}(dt));for(var nt=0;nt{"use strict";l.d(ee,{dS:()=>T});var i=l(2615),t=l(73664);const p=new i.nKC("cdk-dir-doc",{providedIn:"root",factory:function S(){return(0,i.WQX)(i.qQL)}}),c=/^(ar|ckb|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Adlm|Arab|Hebr|Nkoo|Rohg|Thaa))(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)/i;let T=(()=>{class g{get value(){return this.valueSignal()}valueSignal=(0,i.vPA)("ltr");change=new t.bkB;constructor(){const w=(0,i.WQX)(p,{optional:!0});w&&this.valueSignal.set(function e(g){const d=g?.toLowerCase()||"";return"auto"===d&&typeof navigator<"u"&&navigator?.language?c.test(navigator.language)?"rtl":"ltr":"rtl"===d?"rtl":"ltr"}((w.body?w.body.dir:null)||(w.documentElement?w.documentElement.dir:null)||"ltr"))}ngOnDestroy(){this.change.complete()}static \u0275fac=function(m){return new(m||g)};static \u0275prov=i.jDH({token:g,factory:g.\u0275fac,providedIn:"root"})}return g})()},61594:(Ae,ee,l)=>{"use strict";l.d(ee,{$:()=>T});var i=l(9350),t=l(5964),p=l(96697),S=l(39901),c=l(93774),e=l(33669);function T(g,d){const w=arguments.length>=2;return m=>m.pipe(g?(0,t.p)((P,M)=>g(P,M,m)):e.D,(0,p.s)(1),w?(0,S.U)(d):(0,c.v)(()=>new i.G))}},61885:(Ae,ee,l)=>{"use strict";var i=l(65992),t=l(46758),p=l(59705),S=l(95731);Ae.exports=function(e){if(e.length<1||"function"!=typeof e[0])throw new t("a function is required");return S(i,p,e)}},62122:(Ae,ee,l)=>{"use strict";var i=l(39210),t=l(71993),p=l(10219),S=l(64166);function c(T,g){i.equal(g.length,24,"Invalid key length");var d=g.slice(0,8),w=g.slice(8,16),m=g.slice(16,24);this.ciphers="encrypt"===T?[S.create({type:"encrypt",key:d}),S.create({type:"decrypt",key:w}),S.create({type:"encrypt",key:m})]:[S.create({type:"decrypt",key:m}),S.create({type:"encrypt",key:w}),S.create({type:"decrypt",key:d})]}function e(T){p.call(this,T);var g=new c(this.type,this.options.key);this._edeState=g}t(e,p),Ae.exports=e,e.create=function(g){return new e(g)},e.prototype._update=function(g,d,w,m){var P=this._edeState;P.ciphers[0]._update(g,d,w,m),P.ciphers[1]._update(w,m,w,m),P.ciphers[2]._update(w,m,w,m)},e.prototype._pad=S.prototype._pad,e.prototype._unpad=S.prototype._unpad},62951:Ae=>{"use strict";Ae.exports=JSON.parse('{"sha224WithRSAEncryption":{"sign":"rsa","hash":"sha224","id":"302d300d06096086480165030402040500041c"},"RSA-SHA224":{"sign":"ecdsa/rsa","hash":"sha224","id":"302d300d06096086480165030402040500041c"},"sha256WithRSAEncryption":{"sign":"rsa","hash":"sha256","id":"3031300d060960864801650304020105000420"},"RSA-SHA256":{"sign":"ecdsa/rsa","hash":"sha256","id":"3031300d060960864801650304020105000420"},"sha384WithRSAEncryption":{"sign":"rsa","hash":"sha384","id":"3041300d060960864801650304020205000430"},"RSA-SHA384":{"sign":"ecdsa/rsa","hash":"sha384","id":"3041300d060960864801650304020205000430"},"sha512WithRSAEncryption":{"sign":"rsa","hash":"sha512","id":"3051300d060960864801650304020305000440"},"RSA-SHA512":{"sign":"ecdsa/rsa","hash":"sha512","id":"3051300d060960864801650304020305000440"},"RSA-SHA1":{"sign":"rsa","hash":"sha1","id":"3021300906052b0e03021a05000414"},"ecdsa-with-SHA1":{"sign":"ecdsa","hash":"sha1","id":""},"sha256":{"sign":"ecdsa","hash":"sha256","id":""},"sha224":{"sign":"ecdsa","hash":"sha224","id":""},"sha384":{"sign":"ecdsa","hash":"sha384","id":""},"sha512":{"sign":"ecdsa","hash":"sha512","id":""},"DSA-SHA":{"sign":"dsa","hash":"sha1","id":""},"DSA-SHA1":{"sign":"dsa","hash":"sha1","id":""},"DSA":{"sign":"dsa","hash":"sha1","id":""},"DSA-WITH-SHA224":{"sign":"dsa","hash":"sha224","id":""},"DSA-SHA224":{"sign":"dsa","hash":"sha224","id":""},"DSA-WITH-SHA256":{"sign":"dsa","hash":"sha256","id":""},"DSA-SHA256":{"sign":"dsa","hash":"sha256","id":""},"DSA-WITH-SHA384":{"sign":"dsa","hash":"sha384","id":""},"DSA-SHA384":{"sign":"dsa","hash":"sha384","id":""},"DSA-WITH-SHA512":{"sign":"dsa","hash":"sha512","id":""},"DSA-SHA512":{"sign":"dsa","hash":"sha512","id":""},"DSA-RIPEMD160":{"sign":"dsa","hash":"rmd160","id":""},"ripemd160WithRSA":{"sign":"rsa","hash":"rmd160","id":"3021300906052b2403020105000414"},"RSA-RIPEMD160":{"sign":"rsa","hash":"rmd160","id":"3021300906052b2403020105000414"},"md5WithRSAEncryption":{"sign":"rsa","hash":"md5","id":"3020300c06082a864886f70d020505000410"},"RSA-MD5":{"sign":"rsa","hash":"md5","id":"3020300c06082a864886f70d020505000410"}}')},63361:(Ae,ee,l)=>{"use strict";var p,i=l(61885),t=l(83798);try{p=[].__proto__===Array.prototype}catch(T){if(!T||"object"!=typeof T||!("code"in T)||"ERR_PROTO_ACCESS"!==T.code)throw T}var S=!!p&&t&&t(Object.prototype,"__proto__"),c=Object,e=c.getPrototypeOf;Ae.exports=S&&"function"==typeof S.get?i([S.get]):"function"==typeof e&&function(g){return e(null==g?g:c(g))}},63386:(Ae,ee,l)=>{"use strict";l.d(ee,{w:()=>p});var i=l(73664),t=l(31804);let p=(()=>{class S{_animationsDisabled=(0,t.Rc)();state="unchecked";disabled=!1;appearance="full";constructor(){}static \u0275fac=function(T){return new(T||S)};static \u0275cmp=i.VBU({type:S,selectors:[["mat-pseudo-checkbox"]],hostAttrs:[1,"mat-pseudo-checkbox"],hostVars:12,hostBindings:function(T,g){2&T&&i.AVh("mat-pseudo-checkbox-indeterminate","indeterminate"===g.state)("mat-pseudo-checkbox-checked","checked"===g.state)("mat-pseudo-checkbox-disabled",g.disabled)("mat-pseudo-checkbox-minimal","minimal"===g.appearance)("mat-pseudo-checkbox-full","full"===g.appearance)("_mat-animation-noopable",g._animationsDisabled)},inputs:{state:"state",disabled:"disabled",appearance:"appearance"},decls:0,vars:0,template:function(T,g){},styles:['.mat-pseudo-checkbox{border-radius:2px;cursor:pointer;display:inline-block;vertical-align:middle;box-sizing:border-box;position:relative;flex-shrink:0;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1),background-color 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox::after{position:absolute;opacity:0;content:"";border-bottom:2px solid currentColor;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox._mat-animation-noopable{transition:none !important;animation:none !important}.mat-pseudo-checkbox._mat-animation-noopable::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{left:1px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{left:1px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked::after,.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-indeterminate::after{color:var(--mat-pseudo-checkbox-minimal-selected-checkmark-color, var(--mat-sys-primary))}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled::after,.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled::after{color:var(--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-pseudo-checkbox-full{border-color:var(--mat-pseudo-checkbox-full-unselected-icon-color, var(--mat-sys-on-surface-variant));border-width:2px;border-style:solid}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{border-color:var(--mat-pseudo-checkbox-full-disabled-unselected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate{background-color:var(--mat-pseudo-checkbox-full-selected-icon-color, var(--mat-sys-primary));border-color:rgba(0,0,0,0)}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked::after,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate::after{color:var(--mat-pseudo-checkbox-full-selected-checkmark-color, var(--mat-sys-on-primary))}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background-color:var(--mat-pseudo-checkbox-full-disabled-selected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled::after,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled::after{color:var(--mat-pseudo-checkbox-full-disabled-selected-checkmark-color, var(--mat-sys-surface))}.mat-pseudo-checkbox{width:18px;height:18px}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked::after{width:14px;height:6px;transform-origin:center;top:-4.2426406871px;left:0;bottom:0;right:0;margin:auto}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-indeterminate::after{top:8px;width:16px}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked::after{width:10px;height:4px;transform-origin:center;top:-2.8284271247px;left:0;bottom:0;right:0;margin:auto}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate::after{top:6px;width:12px}\n'],encapsulation:2,changeDetection:0})}return S})()},63536:(Ae,ee,l)=>{"use strict";l.d(ee,{$7:()=>q,$G:()=>p,BM:()=>M,Bw:()=>K,Ie:()=>T,KT:()=>g,Uv:()=>U,ah:()=>Q,eO:()=>ue,gN:()=>m,gj:()=>oe,n_:()=>ae,oR:()=>d,os:()=>w,pI:()=>S,rN:()=>P,ru:()=>e,tA:()=>$});var i=l(59640);const t=(0,i.UX)("lnd"),p=(0,i.Mz)(t,he=>({pageSettings:he.pageSettings,apiCallStatus:he.apisCallStatus.FetchPageSettings})),S=(0,i.Mz)(t,he=>he.information),e=((0,i.Mz)(t,he=>({information:he.information,apiCallStatus:he.apisCallStatus.FetchInfo})),(0,i.Mz)(t,he=>he.apisCallStatus)),T=(0,i.Mz)(t,he=>({forwardingHistory:he.forwardingHistory,apiCallStatus:he.apisCallStatus.FetchForwardingHistory})),g=(0,i.Mz)(t,he=>({listPayments:he.listPayments,apiCallStatus:he.apisCallStatus.FetchPayments})),d=(0,i.Mz)(t,he=>({fees:he.fees,apiCallStatus:he.apisCallStatus.FetchFees})),w=(0,i.Mz)(t,he=>({peers:he.peers,apiCallStatus:he.apisCallStatus.FetchPeers})),m=(0,i.Mz)(t,he=>({transactions:he.transactions,apiCallStatus:he.apisCallStatus.FetchTransactions})),P=(0,i.Mz)(t,he=>({listInvoices:he.listInvoices,apiCallStatus:he.apisCallStatus.FetchInvoices})),M=(0,i.Mz)(t,he=>({channels:he.channels,channelsSummary:he.channelsSummary,lightningBalance:he.lightningBalance,apiCallStatus:he.apisCallStatus.FetchAllChannels})),U=((0,i.Mz)(t,he=>({channelsSummary:he.channelsSummary,pendingChannels:he.pendingChannels,closedChannels:he.closedChannels,apiCallStatus:he.apisCallStatus.FetchAllChannels})),(0,i.Mz)(t,he=>({pendingChannels:he.pendingChannels,pendingChannelsSummary:he.pendingChannelsSummary,apiCallStatus:he.apisCallStatus.FetchPendingChannels}))),K=(0,i.Mz)(t,he=>({closedChannels:he.closedChannels,apiCallStatus:he.apisCallStatus.FetchClosedChannels})),q=(0,i.Mz)(t,he=>({blockchainBalance:he.blockchainBalance,apiCallStatus:he.apisCallStatus.FetchBalanceBlockchain})),Q=((0,i.Mz)(t,he=>({lightningBalance:he.lightningBalance,apiCallStatus:he.apisCallStatus.FetchAllChannels})),(0,i.Mz)(t,he=>({utxos:he.utxos,apiCallStatus:he.apisCallStatus.FetchUTXOs}))),$=(0,i.Mz)(t,he=>({networkInfo:he.networkInfo,apiCallStatus:he.apisCallStatus.FetchNetwork})),ae=(0,i.Mz)(t,he=>({allLightningTransactions:he.allLightningTransactions,apiCallStatus:he.apisCallStatus.FetchLightningTransactions})),ue=(0,i.Mz)(t,he=>({channels:he.channels,pendingChannels:he.pendingChannels,closedChannels:he.closedChannels})),oe=(0,i.Mz)(t,he=>({information:he.information,apiCallStatus:he.apisCallStatus.FetchInfo}))},63610:(Ae,ee,l)=>{"use strict";l.d(ee,{a:()=>P});var i=l(2615),t=l(73664),p=l(21413),S=l(71985),c=l(5964),e=l(92771),T=l(97647),d=l(56977);class m{_box;_destroyed=new p.B;_resizeSubject=new p.B;_resizeObserver;_elementObservables=new Map;constructor(j){this._box=j,typeof ResizeObserver<"u"&&(this._resizeObserver=new ResizeObserver(U=>this._resizeSubject.next(U)))}observe(j){return this._elementObservables.has(j)||this._elementObservables.set(j,new S.c(U=>{const K=this._resizeSubject.subscribe(U);return this._resizeObserver?.observe(j,{box:this._box}),()=>{this._resizeObserver?.unobserve(j),K.unsubscribe(),this._elementObservables.delete(j)}}).pipe((0,c.p)(U=>U.some(K=>K.target===j)),function g(M,j,U){let K,q=!1;return M&&"object"==typeof M?({bufferSize:K=1/0,windowTime:j=1/0,refCount:q=!1,scheduler:U}=M):K=M??1/0,(0,T.u)({connector:()=>new e.m(K,j,U),resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:q})}({bufferSize:1,refCount:!0}),(0,d.Q)(this._destroyed))),this._elementObservables.get(j)}destroy(){this._destroyed.next(),this._destroyed.complete(),this._resizeSubject.complete(),this._elementObservables.clear()}}let P=(()=>{class M{_cleanupErrorListener;_observers=new Map;_ngZone=(0,i.WQX)(t.SKi);constructor(){}ngOnDestroy(){for(const[,U]of this._observers)U.destroy();this._observers.clear(),this._cleanupErrorListener?.()}observe(U,K){const q=K?.box||"content-box";return this._observers.has(q)||this._observers.set(q,new m(q)),this._observers.get(q).observe(U)}static \u0275fac=function(K){return new(K||M)};static \u0275prov=i.jDH({token:M,factory:M.\u0275fac,providedIn:"root"})}return M})()},63779:()=>{},64123:(Ae,ee,l)=>{"use strict";l.d(ee,{B:()=>t});var i=l(12593);class t extends i.l{_origin="program";setFocusOrigin(S){return this._origin=S,this}setActiveItem(S){super.setActiveItem(S),this.activeItem&&this.activeItem.focus(this._origin)}}},64166:(Ae,ee,l)=>{"use strict";var i=l(39210),t=l(71993),p=l(85671),S=l(10219);function c(){this.tmp=new Array(2),this.keys=null}function e(g){S.call(this,g);var d=new c;this._desState=d,this.deriveKeys(d,g.key)}t(e,S),Ae.exports=e,e.create=function(d){return new e(d)};var T=[1,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1];e.prototype.deriveKeys=function(d,w){d.keys=new Array(32),i.equal(w.length,this.blockSize,"Invalid key length");var m=p.readUInt32BE(w,0),P=p.readUInt32BE(w,4);p.pc1(m,P,d.tmp,0),m=d.tmp[0],P=d.tmp[1];for(var M=0;M>>1];m=p.r28shl(m,j),P=p.r28shl(P,j),p.pc2(m,P,d.keys,M)}},e.prototype._update=function(d,w,m,P){var M=this._desState,j=p.readUInt32BE(d,w),U=p.readUInt32BE(d,w+4);p.ip(j,U,M.tmp,0),j=M.tmp[0],U=M.tmp[1],"encrypt"===this.type?this._encrypt(M,j,U,M.tmp,0):this._decrypt(M,j,U,M.tmp,0),U=M.tmp[1],p.writeUInt32BE(m,j=M.tmp[0],P),p.writeUInt32BE(m,U,P+4)},e.prototype._pad=function(d,w){if(!1===this.padding)return!1;for(var m=d.length-w,P=w;P>>0,j=ae}p.rip(U,j,P,M)},e.prototype._decrypt=function(d,w,m,P,M){for(var j=m,U=w,K=d.keys.length-2;K>=0;K-=2){var q=d.keys[K],G=d.keys[K+1];p.expand(j,d.tmp,0);var Q=p.substitute(q^=d.tmp[0],G^=d.tmp[1]),ae=j;j=(U^p.permute(Q))>>>0,U=ae}p.rip(j,U,P,M)}},64589:Ae=>{"use strict";Ae.exports=JSON.parse('{"1.3.132.0.10":"secp256k1","1.3.132.0.33":"p224","1.2.840.10045.3.1.1":"p192","1.2.840.10045.3.1.7":"p256","1.3.132.0.34":"p384","1.3.132.0.35":"p521"}')},64688:()=>{},64947:(Ae,ee,l)=>{"use strict";var i=l(88723),t=l(71993),p=l(98828),S=l(3136);function c(T){p.call(this,"mont",T),this.a=new i(T.a,16).toRed(this.red),this.b=new i(T.b,16).toRed(this.red),this.i4=new i(4).toRed(this.red).redInvm(),this.two=new i(2).toRed(this.red),this.a24=this.i4.redMul(this.a.redAdd(this.two))}function e(T,g,d){p.BasePoint.call(this,T,"projective"),null===g&&null===d?(this.x=this.curve.one,this.z=this.curve.zero):(this.x=new i(g,16),this.z=new i(d,16),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)))}t(c,p),Ae.exports=c,c.prototype.validate=function(g){var d=g.normalize().x,w=d.redSqr(),m=w.redMul(d).redAdd(w.redMul(this.a)).redAdd(d);return 0===m.redSqrt().redSqr().cmp(m)},t(e,p.BasePoint),c.prototype.decodePoint=function(g,d){return this.point(S.toArray(g,d),1)},c.prototype.point=function(g,d){return new e(this,g,d)},c.prototype.pointFromJSON=function(g){return e.fromJSON(this,g)},e.prototype.precompute=function(){},e.prototype._encode=function(){return this.getX().toArray("be",this.curve.p.byteLength())},e.fromJSON=function(g,d){return new e(g,d[0],d[1]||g.one)},e.prototype.inspect=function(){return this.isInfinity()?"":""},e.prototype.isInfinity=function(){return 0===this.z.cmpn(0)},e.prototype.dbl=function(){var d=this.x.redAdd(this.z).redSqr(),m=this.x.redSub(this.z).redSqr(),P=d.redSub(m),M=d.redMul(m),j=P.redMul(m.redAdd(this.curve.a24.redMul(P)));return this.curve.point(M,j)},e.prototype.add=function(){throw new Error("Not supported on Montgomery curve")},e.prototype.diffAdd=function(g,d){var w=this.x.redAdd(this.z),m=this.x.redSub(this.z),P=g.x.redAdd(g.z),j=g.x.redSub(g.z).redMul(w),U=P.redMul(m),K=d.z.redMul(j.redAdd(U).redSqr()),q=d.x.redMul(j.redISub(U).redSqr());return this.curve.point(K,q)},e.prototype.mul=function(g){for(var d=g.clone(),w=this,m=this.curve.point(null,null),M=[];0!==d.cmpn(0);d.iushrn(1))M.push(d.andln(1));for(var j=M.length-1;j>=0;j--)0===M[j]?(w=w.diffAdd(m,this),m=m.dbl()):(m=w.diffAdd(m,this),w=w.dbl());return m},e.prototype.mulAdd=function(){throw new Error("Not supported on Montgomery curve")},e.prototype.jumlAdd=function(){throw new Error("Not supported on Montgomery curve")},e.prototype.eq=function(g){return 0===this.getX().cmp(g.getX())},e.prototype.normalize=function(){return this.x=this.x.redMul(this.z.redInvm()),this.z=this.curve.one,this},e.prototype.getX=function(){return this.normalize(),this.x.fromRed()}},65245:(Ae,ee,l)=>{"use strict";l.d(ee,{i:()=>t});var i=l(5964);function t(p){return(0,i.p)((S,c)=>p<=c)}},65667:(Ae,ee,l)=>{"use strict";var i=l(83138),t=l(15579),p=l(89472),S=l(43388),c=l(93397).pbkdf2Sync,e=l(27054).Buffer;function g(d){var w;"object"==typeof d&&!e.isBuffer(d)&&(w=d.passphrase,d=d.key),"string"==typeof d&&(d=e.from(d));var j,U,m=p(d,w),P=m.tag,M=m.data;switch(P){case"CERTIFICATE":U=i.certificate.decode(M,"der").tbsCertificate.subjectPublicKeyInfo;case"PUBLIC KEY":switch(U||(U=i.PublicKey.decode(M,"der")),j=U.algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return i.RSAPublicKey.decode(U.subjectPublicKey.data,"der");case"1.2.840.10045.2.1":return U.subjectPrivateKey=U.subjectPublicKey,{type:"ec",data:U};case"1.2.840.10040.4.1":return U.algorithm.params.pub_key=i.DSAparam.decode(U.subjectPublicKey.data,"der"),{type:"dsa",data:U.algorithm.params};default:throw new Error("unknown key id "+j)}case"ENCRYPTED PRIVATE KEY":M=function T(d,w){var m=d.algorithm.decrypt.kde.kdeparams.salt,P=parseInt(d.algorithm.decrypt.kde.kdeparams.iters.toString(),10),M=t[d.algorithm.decrypt.cipher.algo.join(".")],j=d.algorithm.decrypt.cipher.iv,U=d.subjectPrivateKey,K=parseInt(M.split("-")[1],10)/8,q=c(w,m,P,K,"sha1"),G=S.createDecipheriv(M,q,j),Q=[];return Q.push(G.update(U)),Q.push(G.final()),e.concat(Q)}(M=i.EncryptedPrivateKey.decode(M,"der"),w);case"PRIVATE KEY":switch(j=(U=i.PrivateKey.decode(M,"der")).algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return i.RSAPrivateKey.decode(U.subjectPrivateKey,"der");case"1.2.840.10045.2.1":return{curve:U.algorithm.curve,privateKey:i.ECPrivateKey.decode(U.subjectPrivateKey,"der").privateKey};case"1.2.840.10040.4.1":return U.algorithm.params.priv_key=i.DSAparam.decode(U.subjectPrivateKey,"der"),{type:"dsa",params:U.algorithm.params};default:throw new Error("unknown key id "+j)}case"RSA PUBLIC KEY":return i.RSAPublicKey.decode(M,"der");case"RSA PRIVATE KEY":return i.RSAPrivateKey.decode(M,"der");case"DSA PRIVATE KEY":return{type:"dsa",params:i.DSAPrivateKey.decode(M,"der")};case"EC PRIVATE KEY":return{curve:(M=i.ECPrivateKey.decode(M,"der")).parameters.value,privateKey:M.privateKey};default:throw new Error("unknown key type "+P)}}g.signature=i.signature,Ae.exports=g},65891:Ae=>{"use strict";Ae.exports=Object},65992:(Ae,ee,l)=>{"use strict";var i=l(49132);Ae.exports=Function.prototype.bind||i},66089:()=>{},66686:(Ae,ee)=>{const l=new Uint8Array(512),i=new Uint8Array(256);(function(){let p=1;for(let S=0;S<255;S++)l[S]=p,i[p]=S,p<<=1,256&p&&(p^=285);for(let S=255;S<512;S++)l[S]=l[S-255]})(),ee.log=function(p){if(p<1)throw new Error("log("+p+")");return i[p]},ee.exp=function(p){return l[p]},ee.mul=function(p,S){return 0===p||0===S?0:l[i[p]+i[S]]}},67211:(Ae,ee,l)=>{"use strict";var i=l(71993),t=l(34725),p=l(36636),S=l(25443),c=l(3247);function e(T){c.call(this,"digest"),this._hash=T}i(e,c),e.prototype._update=function(T){this._hash.update(T)},e.prototype._final=function(){return this._hash.digest()},Ae.exports=function(g){return"md5"===(g=g.toLowerCase())?new t:"rmd160"===g||"ripemd160"===g?new p:new e(S(g))}},67336:(Ae,ee,l)=>{"use strict";function i(t,...p){return p.length?p.some(S=>t[S]):t.altKey||t.shiftKey||t.ctrlKey||t.metaKey}l.d(ee,{rp:()=>i})},67575:(Ae,ee,l)=>{"use strict";l.d(ee,{HM:()=>w,PO:()=>P});var i=l(2615),t=l(73664),p=l(17705),S=l(31804),c=l(22466);function e(M,j){1&M&&t.Hgh(0,"div",2)}const T=new i.nKC("MAT_PROGRESS_BAR_DEFAULT_OPTIONS");let w=(()=>{class M{_elementRef=(0,i.WQX)(t.aKT);_ngZone=(0,i.WQX)(t.SKi);_changeDetectorRef=(0,i.WQX)(p.gRc);_renderer=(0,i.WQX)(t.sFG);_cleanupTransitionEnd;constructor(){const U=(0,S._J)(),K=(0,i.WQX)(T,{optional:!0});this._isNoopAnimation="di-disabled"===U,"reduced-motion"===U&&this._elementRef.nativeElement.classList.add("mat-progress-bar-reduced-motion"),K&&(K.color&&(this.color=this._defaultColor=K.color),this.mode=K.mode||this.mode)}_isNoopAnimation;get color(){return this._color||this._defaultColor}set color(U){this._color=U}_color;_defaultColor="primary";get value(){return this._value}set value(U){this._value=m(U||0),this._changeDetectorRef.markForCheck()}_value=0;get bufferValue(){return this._bufferValue||0}set bufferValue(U){this._bufferValue=m(U||0),this._changeDetectorRef.markForCheck()}_bufferValue=0;animationEnd=new t.bkB;get mode(){return this._mode}set mode(U){this._mode=U,this._changeDetectorRef.markForCheck()}_mode="determinate";ngAfterViewInit(){this._ngZone.runOutsideAngular(()=>{this._cleanupTransitionEnd=this._renderer.listen(this._elementRef.nativeElement,"transitionend",this._transitionendHandler)})}ngOnDestroy(){this._cleanupTransitionEnd?.()}_getPrimaryBarTransform(){return`scaleX(${this._isIndeterminate()?1:this.value/100})`}_getBufferBarFlexBasis(){return`${"buffer"===this.mode?this.bufferValue:100}%`}_isIndeterminate(){return"indeterminate"===this.mode||"query"===this.mode}_transitionendHandler=U=>{0===this.animationEnd.observers.length||!U.target||!U.target.classList.contains("mdc-linear-progress__primary-bar")||("determinate"===this.mode||"buffer"===this.mode)&&this._ngZone.run(()=>this.animationEnd.next({value:this.value}))};static \u0275fac=function(K){return new(K||M)};static \u0275cmp=t.VBU({type:M,selectors:[["mat-progress-bar"]],hostAttrs:["role","progressbar","aria-valuemin","0","aria-valuemax","100","tabindex","-1",1,"mat-mdc-progress-bar","mdc-linear-progress"],hostVars:10,hostBindings:function(K,q){2&K&&(t.BMQ("aria-valuenow",q._isIndeterminate()?null:q.value)("mode",q.mode),t.HbH("mat-"+q.color),t.AVh("_mat-animation-noopable",q._isNoopAnimation)("mdc-linear-progress--animation-ready",!q._isNoopAnimation)("mdc-linear-progress--indeterminate",q._isIndeterminate()))},inputs:{color:"color",value:[2,"value","value",p.Udg],bufferValue:[2,"bufferValue","bufferValue",p.Udg],mode:"mode"},outputs:{animationEnd:"animationEnd"},exportAs:["matProgressBar"],decls:7,vars:5,consts:[["aria-hidden","true",1,"mdc-linear-progress__buffer"],[1,"mdc-linear-progress__buffer-bar"],[1,"mdc-linear-progress__buffer-dots"],["aria-hidden","true",1,"mdc-linear-progress__bar","mdc-linear-progress__primary-bar"],[1,"mdc-linear-progress__bar-inner"],["aria-hidden","true",1,"mdc-linear-progress__bar","mdc-linear-progress__secondary-bar"]],template:function(K,q){1&K&&(t.rj2(0,"div",0),t.Hgh(1,"div",1),t.nVh(2,e,1,0,"div",2),t.eux(),t.rj2(3,"div",3),t.Hgh(4,"span",4),t.eux(),t.rj2(5,"div",5),t.Hgh(6,"span",4),t.eux()),2&K&&(t.R7$(),t.xc7("flex-basis",q._getBufferBarFlexBasis()),t.R7$(),t.vxM("buffer"===q.mode?2:-1),t.R7$(),t.xc7("transform",q._getPrimaryBarTransform()))},styles:[".mat-mdc-progress-bar{--mat-progress-bar-animation-multiplier: 1;display:block;text-align:start}.mat-mdc-progress-bar[mode=query]{transform:scaleX(-1)}.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__buffer-dots,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__primary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__secondary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__bar-inner.mdc-linear-progress__bar-inner{animation:none}.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__primary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__buffer-bar{transition:transform 1ms}.mat-progress-bar-reduced-motion{--mat-progress-bar-animation-multiplier: 2}.mdc-linear-progress{position:relative;width:100%;transform:translateZ(0);outline:1px solid rgba(0,0,0,0);overflow-x:hidden;transition:opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);height:max(var(--mat-progress-bar-track-height, 4px),var(--mat-progress-bar-active-indicator-height, 4px))}@media(forced-colors: active){.mdc-linear-progress{outline-color:CanvasText}}.mdc-linear-progress__bar{position:absolute;top:0;bottom:0;margin:auto 0;width:100%;animation:none;transform-origin:top left;transition:transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);height:var(--mat-progress-bar-active-indicator-height, 4px)}.mdc-linear-progress--indeterminate .mdc-linear-progress__bar{transition:none}[dir=rtl] .mdc-linear-progress__bar{right:0;transform-origin:center right}.mdc-linear-progress__bar-inner{display:inline-block;position:absolute;width:100%;animation:none;border-top-style:solid;border-color:var(--mat-progress-bar-active-indicator-color, var(--mat-sys-primary));border-top-width:var(--mat-progress-bar-active-indicator-height, 4px)}.mdc-linear-progress__buffer{display:flex;position:absolute;top:0;bottom:0;margin:auto 0;width:100%;overflow:hidden;height:var(--mat-progress-bar-track-height, 4px);border-radius:var(--mat-progress-bar-track-shape, var(--mat-sys-corner-none))}.mdc-linear-progress__buffer-dots{background-image:radial-gradient(circle, var(--mat-progress-bar-track-color, var(--mat-sys-surface-variant)) calc(var(--mat-progress-bar-track-height, 4px) / 2), transparent 0);background-repeat:repeat-x;background-size:calc(calc(var(--mat-progress-bar-track-height, 4px) / 2)*5);background-position:left;flex:auto;transform:rotate(180deg);animation:mdc-linear-progress-buffering calc(250ms*var(--mat-progress-bar-animation-multiplier)) infinite linear}@media(forced-colors: active){.mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}[dir=rtl] .mdc-linear-progress__buffer-dots{animation:mdc-linear-progress-buffering-reverse calc(250ms*var(--mat-progress-bar-animation-multiplier)) infinite linear;transform:rotate(0)}.mdc-linear-progress__buffer-bar{flex:0 1 100%;transition:flex-basis 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);background-color:var(--mat-progress-bar-track-color, var(--mat-sys-surface-variant))}.mdc-linear-progress__primary-bar{transform:scaleX(0)}.mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{left:-145.166611%}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar{animation:mdc-linear-progress-primary-indeterminate-translate calc(2s*var(--mat-progress-bar-animation-multiplier)) infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar>.mdc-linear-progress__bar-inner{animation:mdc-linear-progress-primary-indeterminate-scale calc(2s*var(--mat-progress-bar-animation-multiplier)) infinite linear}[dir=rtl] .mdc-linear-progress.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar{animation-name:mdc-linear-progress-primary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress.mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{right:-145.166611%;left:auto}.mdc-linear-progress__secondary-bar{display:none}.mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar{left:-54.888891%;display:block}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation:mdc-linear-progress-secondary-indeterminate-translate calc(2s*var(--mat-progress-bar-animation-multiplier)) infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar>.mdc-linear-progress__bar-inner{animation:mdc-linear-progress-secondary-indeterminate-scale calc(2s*var(--mat-progress-bar-animation-multiplier)) infinite linear}[dir=rtl] .mdc-linear-progress.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation-name:mdc-linear-progress-secondary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress.mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar{right:-54.888891%;left:auto}@keyframes mdc-linear-progress-buffering{from{transform:rotate(180deg) translateX(calc(var(--mat-progress-bar-track-height, 4px) * -2.5))}}@keyframes mdc-linear-progress-primary-indeterminate-translate{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(83.67142%)}100%{transform:translateX(200.611057%)}}@keyframes mdc-linear-progress-primary-indeterminate-scale{0%{transform:scaleX(0.08)}36.65%{animation-timing-function:cubic-bezier(0.334731, 0.12482, 0.785844, 1);transform:scaleX(0.08)}69.15%{animation-timing-function:cubic-bezier(0.06, 0.11, 0.6, 1);transform:scaleX(0.661479)}100%{transform:scaleX(0.08)}}@keyframes mdc-linear-progress-secondary-indeterminate-translate{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(37.651913%)}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(84.386165%)}100%{transform:translateX(160.277782%)}}@keyframes mdc-linear-progress-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.205028, 0.057051, 0.57661, 0.453971);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.152313, 0.196432, 0.648374, 1.004315);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.257759, -0.003163, 0.211762, 1.38179);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mdc-linear-progress-primary-indeterminate-translate-reverse{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(-83.67142%)}100%{transform:translateX(-200.611057%)}}@keyframes mdc-linear-progress-secondary-indeterminate-translate-reverse{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(-37.651913%)}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(-84.386165%)}100%{transform:translateX(-160.277782%)}}@keyframes mdc-linear-progress-buffering-reverse{from{transform:translateX(-10px)}}\n"],encapsulation:2,changeDetection:0})}return M})();function m(M,j=0,U=100){return Math.max(j,Math.min(U,M))}let P=(()=>{class M{static \u0275fac=function(K){return new(K||M)};static \u0275mod=t.$C({type:M});static \u0275inj=i.G2t({imports:[c.y]})}return M})()},67847:(Ae,ee,l)=>{"use strict";l.d(ee,{OE:()=>t,i8:()=>S,o1:()=>p});var i=l(73664);function t(c,e=0){return p(c)?Number(c):2===arguments.length?e:0}function p(c){return!isNaN(parseFloat(c))&&!isNaN(Number(c))}function S(c){return c instanceof i.aKT?c.nativeElement:c}},67947:(Ae,ee,l)=>{"use strict";var i=l(57303),t=l(52512),p=l(2615),S=l(60177),c=l(72200),e=l(73664),T=l(17705),g=l(93393);class d extends i.qj{supportsDOMEvents=!0;static makeCurrent(){(0,i.ig)(new d)}onAndCancel(F,L,H,Y){return F.addEventListener(L,H,Y),()=>{F.removeEventListener(L,H,Y)}}dispatchEvent(F,L){F.dispatchEvent(L)}remove(F){F.remove()}createElement(F,L){return(L=L||this.getDefaultDocument()).createElement(F)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(F){return F.nodeType===Node.ELEMENT_NODE}isShadowRoot(F){return F instanceof DocumentFragment}getGlobalEventTarget(F,L){return"window"===L?window:"document"===L?F:"body"===L?F.body:null}getBaseHref(F){const L=function m(){return w=w||document.head.querySelector("base"),w?w.getAttribute("href"):null}();return null==L?null:function P(z){return new URL(z,document.baseURI).pathname}(L)}resetBaseElement(){w=null}getUserAgent(){return window.navigator.userAgent}getCookie(F){return(0,t.b)(document.cookie,F)}}let w=null,j=(()=>{class z{build(){return new XMLHttpRequest}static \u0275fac=function(H){return new(H||z)};static \u0275prov=p.jDH({token:z,factory:z.\u0275fac})}return z})();const U=["alt","control","meta","shift"],K={"\b":"Backspace","\t":"Tab","\x7f":"Delete","\x1b":"Escape",Del:"Delete",Esc:"Escape",Left:"ArrowLeft",Right:"ArrowRight",Up:"ArrowUp",Down:"ArrowDown",Menu:"ContextMenu",Scroll:"ScrollLock",Win:"OS"},q={alt:z=>z.altKey,control:z=>z.ctrlKey,meta:z=>z.metaKey,shift:z=>z.shiftKey};let G=(()=>{class z extends g.Hl{constructor(L){super(L)}supports(L){return null!=z.parseEventName(L)}addEventListener(L,H,Y,ie){const et=z.parseEventName(H),Bt=z.eventCallback(et.fullKey,Y,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>(0,i.rb)().onAndCancel(L,et.domEventName,Bt,ie))}static parseEventName(L){const H=L.toLowerCase().split("."),Y=H.shift();if(0===H.length||"keydown"!==Y&&"keyup"!==Y)return null;const ie=z._normalizeKey(H.pop());let et="",Bt=H.indexOf("code");if(Bt>-1&&(H.splice(Bt,1),et="code."),U.forEach(Ei=>{const zi=H.indexOf(Ei);zi>-1&&(H.splice(zi,1),et+=Ei+".")}),et+=ie,0!=H.length||0===ie.length)return null;const $t={};return $t.domEventName=Y,$t.fullKey=et,$t}static matchEventFullKeyCode(L,H){let Y=K[L.key]||L.key,ie="";return H.indexOf("code.")>-1&&(Y=L.code,ie="code."),!(null==Y||!Y)&&(Y=Y.toLowerCase()," "===Y?Y="space":"."===Y&&(Y="dot"),U.forEach(et=>{et!==Y&&(0,q[et])(L)&&(ie+=et+".")}),ie+=Y,ie===H)}static eventCallback(L,H,Y){return ie=>{z.matchEventFullKeyCode(ie,L)&&Y.runGuarded(()=>H(ie))}}static _normalizeKey(L){return"esc"===L?"escape":L}static \u0275fac=function(H){return new(H||z)(p.KVO(p.qQL))};static \u0275prov=p.jDH({token:z,factory:z.\u0275fac})}return z})();const D=(0,T.oH4)(T.fpN,"browser",[{provide:e.Agw,useValue:S.AJ},{provide:e.PLl,useValue:function oe(){d.makeCurrent()},multi:!0},{provide:p.qQL,useFactory:function me(){return(0,e._9u)(document),document}}]),o=[{provide:e.$Ln,useClass:class M{addToWindow(F){p.laP.getAngularTestability=(H,Y=!0)=>{const ie=F.findTestabilityInTree(H,Y);if(null==ie)throw new p.buA(5103,!1);return ie},p.laP.getAllAngularTestabilities=()=>F.getAllTestabilities(),p.laP.getAllAngularRootElements=()=>F.getAllRootElements(),p.laP.frameworkStabilizers||(p.laP.frameworkStabilizers=[]),p.laP.frameworkStabilizers.push(H=>{const Y=p.laP.getAllAngularTestabilities();let ie=Y.length;const et=function(){ie--,0==ie&&H()};Y.forEach(Bt=>{Bt.whenStable(et)})})}findTestabilityInTree(F,L,H){return null==L?null:F.getTestability(L)??(H?(0,i.rb)().isShadowRoot(L)?this.findTestabilityInTree(F,L.host,!0):this.findTestabilityInTree(F,L.parentElement,!0):null)}}},{provide:e.dOL,useClass:e.NYb,deps:[e.SKi,e.giA,e.$Ln]},{provide:e.NYb,useClass:e.NYb,deps:[e.SKi,e.giA,e.$Ln]}],f=[{provide:p.GBX,useValue:"root"},{provide:p.zcH,useFactory:function he(){return new p.zcH}},{provide:g.Q5,useClass:g.jd,multi:!0,deps:[p.qQL]},{provide:g.Q5,useClass:G,multi:!0,deps:[p.qQL]},g.mE,g.CI,g.EU,{provide:e._9s,useExisting:g.mE},{provide:t.N,useClass:j},[]];let h=(()=>{class z{constructor(){}static \u0275fac=function(H){return new(H||z)};static \u0275mod=e.$C({type:z});static \u0275inj=p.G2t({providers:[...f,...o],imports:[c.MD,T.Hbi]})}return z})();var b=l(345),A=l(11514);function x(z){return new p.buA(3e3,!1)}function _e(z){return new p.buA(3002,!1)}function di(z){switch(z.length){case 0:return new A.sf;case 1:return z[0];default:return new A.PZ(z)}}function kt(z,F,L=new Map,H=new Map){const Y=[],ie=[];let et=-1,Bt=null;if(F.forEach($t=>{const Ei=$t.get("offset"),zi=Ei==et,Vi=zi&&Bt||new Map;$t.forEach((un,Bn)=>{let pn=Bn,gn=un;if("offset"!==Bn)switch(pn=z.normalizePropertyName(pn,Y),gn){case A.FX:gn=L.get(Bn);break;case A.kp:gn=H.get(Bn);break;default:gn=z.normalizeStyleValue(Bn,pn,gn,Y)}Vi.set(pn,gn)}),zi||ie.push(Vi),Bt=Vi,et=Ei}),Y.length)throw function Pe(){return new p.buA(3502,!1)}();return ie}function Rt(z,F,L,H){switch(F){case"start":z.onStart(()=>H(L&&le(L,"start",z)));break;case"done":z.onDone(()=>H(L&&le(L,"done",z)));break;case"destroy":z.onDestroy(()=>H(L&&le(L,"destroy",z)))}}function le(z,F,L){const ie=te(z.element,z.triggerName,z.fromState,z.toState,F||z.phaseName,L.totalTime??z.totalTime,!!L.disabled),et=z._data;return null!=et&&(ie._data=et),ie}function te(z,F,L,H,Y="",ie=0,et){return{element:z,triggerName:F,fromState:L,toState:H,phaseName:Y,totalTime:ie,disabled:!!et}}function ce(z,F,L){let H=z.get(F);return H||z.set(F,H=L),H}function se(z){const F=z.indexOf(":");return[z.substring(1,F),z.slice(F+1)]}const ke=typeof document>"u"?null:document.documentElement;function Ue(z){const F=z.parentNode||z.host||null;return F===ke?null:F}let Kt=null,yt=!1;function Ye(z,F){for(;F;){if(F===z)return!0;F=Ue(F)}return!1}function Nt(z,F,L){if(L)return Array.from(z.querySelectorAll(F));const H=z.querySelector(F);return H?[H]:[]}const $e="ng-enter",tt="ng-leave",vi="ng-trigger",ei=".ng-trigger",ci="ng-animating",Hi=".ng-animating";function oi(z){if("number"==typeof z)return z;const F=z.match(/^(-?[\.\d]+)(m?s)/);return!F||F.length<2?0:ui(parseFloat(F[1]),F[2])}function ui(z,F){return"s"===F?1e3*z:z}function ln(z,F,L){return z.hasOwnProperty("duration")?z:function dn(z,F,L){let H,Y=0,ie="";if("string"==typeof z){const et=z.match(nn);if(null===et)return F.push(x()),{duration:0,delay:0,easing:""};H=ui(parseFloat(et[1]),et[2]);const Bt=et[3];null!=Bt&&(Y=ui(parseFloat(Bt),et[4]));const $t=et[5];$t&&(ie=$t)}else H=z;if(!L){let et=!1,Bt=F.length;H<0&&(F.push(function r(){return new p.buA(3100,!1)}()),et=!0),Y<0&&(F.push(function _(){return new p.buA(3101,!1)}()),et=!0),et&&F.splice(Bt,0,x())}return{duration:H,delay:Y,easing:ie}}(z,F,L)}const nn=/^(-?[\.\d]+)(m?s)(?:\s+(-?[\.\d]+)(m?s))?(?:\s+([-a-z]+(?:\(.+?\))?))?$/i;function Tt(z,F,L){F.forEach((H,Y)=>{const ie=ai(Y);L&&!L.has(Y)&&L.set(Y,z.style[ie]),z.style[ie]=H})}function Ze(z,F){F.forEach((L,H)=>{const Y=ai(H);z.style[Y]=""})}function Ve(z){return Array.isArray(z)?1==z.length?z[0]:(0,A.K2)(z):z}const it=new RegExp("{{\\s*(.+?)\\s*}}","g");function bt(z){let F=[];if("string"==typeof z){let L;for(;L=it.exec(z);)F.push(L[1]);it.lastIndex=0}return F}function ut(z,F,L){const H=`${z}`,Y=H.replace(it,(ie,et)=>{let Bt=F[et];return null==Bt&&(L.push(function I(){return new p.buA(3003,!1)}()),Bt=""),Bt.toString()});return Y==H?z:Y}const jt=/-+([a-z0-9])/g;function ai(z){return z.replace(jt,(...F)=>F[1].toUpperCase())}function Ji(z,F,L){switch(F.type){case A.If.Trigger:return z.visitTrigger(F,L);case A.If.State:return z.visitState(F,L);case A.If.Transition:return z.visitTransition(F,L);case A.If.Sequence:return z.visitSequence(F,L);case A.If.Group:return z.visitGroup(F,L);case A.If.Animate:return z.visitAnimate(F,L);case A.If.Keyframes:return z.visitKeyframes(F,L);case A.If.Style:return z.visitStyle(F,L);case A.If.Reference:return z.visitReference(F,L);case A.If.AnimateChild:return z.visitAnimateChild(F,L);case A.If.AnimateRef:return z.visitAnimateRef(F,L);case A.If.Query:return z.visitQuery(F,L);case A.If.Stagger:return z.visitStagger(F,L);default:throw function B(){return new p.buA(3004,!1)}()}}function Dn(z,F){return window.getComputedStyle(z)[F]}let En=(()=>{class z{validateStyleProperty(L){return function Vt(z){Kt||(Kt=function ti(){return typeof document<"u"?document.body:null}()||{},yt=!!Kt.style&&"WebkitAppearance"in Kt.style);let F=!0;return Kt.style&&!function Ne(z){return"ebkit"==z.substring(1,6)}(z)&&(F=z in Kt.style,!F&&yt&&(F="Webkit"+z.charAt(0).toUpperCase()+z.slice(1)in Kt.style)),F}(L)}containsElement(L,H){return Ye(L,H)}getParentElement(L){return Ue(L)}query(L,H,Y){return Nt(L,H,Y)}computeStyle(L,H,Y){return Y||""}animate(L,H,Y,ie,et,Bt=[],$t){return new A.sf(Y,ie)}static \u0275fac=function(H){return new(H||z)};static \u0275prov=p.jDH({token:z,factory:z.\u0275fac})}return z})();class An{static NOOP=new En}class Fn{}const Gi=new Set(["width","height","minWidth","minHeight","maxWidth","maxHeight","left","top","bottom","right","fontSize","outlineWidth","outlineOffset","paddingTop","paddingLeft","paddingBottom","paddingRight","marginTop","marginLeft","marginBottom","marginRight","borderRadius","borderWidth","borderTopWidth","borderLeftWidth","borderRightWidth","borderBottomWidth","textIndent","perspective"]);class Ci extends Fn{normalizePropertyName(F,L){return ai(F)}normalizeStyleValue(F,L,H,Y){let ie="";const et=H.toString().trim();if(Gi.has(L)&&0!==H&&"0"!==H)if("number"==typeof H)ie="px";else{const Bt=H.match(/^[+-]?[\d\.]+([a-z]*)$/);Bt&&0==Bt[1].length&&Y.push(function re(){return new p.buA(3005,!1)}())}return et+ie}}const kn=new Set(["true","1"]),ca=new Set(["false","0"]);function an(z,F){const L=kn.has(z)||ca.has(z),H=kn.has(F)||ca.has(F);return(Y,ie)=>{let et="*"==z||z==Y,Bt="*"==F||F==ie;return!et&&L&&"boolean"==typeof Y&&(et=Y?kn.has(z):ca.has(z)),!Bt&&H&&"boolean"==typeof ie&&(Bt=ie?kn.has(F):ca.has(F)),et&&Bt}}const qn=new RegExp("s*:selfs*,?","g");function mr(z,F,L,H){return new Mi(z).build(F,L,H)}class Mi{_driver;constructor(F){this._driver=F}build(F,L,H){const Y=new Xe(L);return this._resetContextStyleTimingState(Y),Ji(this,Ve(F),Y)}_resetContextStyleTimingState(F){F.currentQuerySelector="",F.collectedStyles=new Map,F.collectedStyles.set("",new Map),F.currentTime=0}visitTrigger(F,L){let H=L.queryCount=0,Y=L.depCount=0;const ie=[],et=[];return"@"==F.name.charAt(0)&&L.errors.push(function pe(){return new p.buA(3006,!1)}()),F.definitions.forEach(Bt=>{if(this._resetContextStyleTimingState(L),Bt.type==A.If.State){const $t=Bt,Ei=$t.name;Ei.toString().split(/\s*,\s*/).forEach(zi=>{$t.name=zi,ie.push(this.visitState($t,L))}),$t.name=Ei}else if(Bt.type==A.If.Transition){const $t=this.visitTransition(Bt,L);H+=$t.queryCount,Y+=$t.depCount,et.push($t)}else L.errors.push(function be(){return new p.buA(3007,!1)}())}),{type:A.If.Trigger,name:F.name,states:ie,transitions:et,queryCount:H,depCount:Y,options:null}}visitState(F,L){const H=this.visitStyle(F.styles,L),Y=F.options&&F.options.params||null;if(H.containsDynamicStyles){const ie=new Set,et=Y||{};H.styles.forEach(Bt=>{Bt instanceof Map&&Bt.forEach($t=>{bt($t).forEach(Ei=>{et.hasOwnProperty(Ei)||ie.add(Ei)})})}),ie.size&&L.errors.push(function Be(){return new p.buA(3008,!1)}(0,ie.values()))}return{type:A.If.State,name:F.name,style:H,options:Y?{params:Y}:null}}visitTransition(F,L){L.queryCount=0,L.depCount=0;const H=Ji(this,Ve(F.animation),L),Y=function vt(z,F){const L=[];return"string"==typeof z?z.split(/\s*,\s*/).forEach(H=>function ni(z,F,L){if(":"==z[0]){const $t=function Fi(z,F){switch(z){case":enter":return"void => *";case":leave":return"* => void";case":increment":return(L,H)=>parseFloat(H)>parseFloat(L);case":decrement":return(L,H)=>parseFloat(H) *"}}(z,L);if("function"==typeof $t)return void F.push($t);z=$t}const H=z.match(/^(\*|[-\w]+)\s*()\s*(\*|[-\w]+)$/);if(null==H||H.length<4)return L.push(function dt(){return new p.buA(3015,!1)}()),F;const Y=H[1],ie=H[2],et=H[3];F.push(an(Y,et)),"<"==ie[0]&&("*"!=Y||"*"!=et)&&F.push(an(et,Y))}(H,L,F)):L.push(z),L}(F.expr,L.errors);return{type:A.If.Transition,matchers:Y,animation:H,queryCount:L.queryCount,depCount:L.depCount,options:Ft(F.options)}}visitSequence(F,L){return{type:A.If.Sequence,steps:F.steps.map(H=>Ji(this,H,L)),options:Ft(F.options)}}visitGroup(F,L){const H=L.currentTime;let Y=0;const ie=F.steps.map(et=>{L.currentTime=H;const Bt=Ji(this,et,L);return Y=Math.max(Y,L.currentTime),Bt});return L.currentTime=Y,{type:A.If.Group,steps:ie,options:Ft(F.options)}}visitAnimate(F,L){const H=function gt(z,F){if(z.hasOwnProperty("duration"))return z;if("number"==typeof z)return gi(ln(z,F).duration,0,"");const L=z;if(L.split(/\s+/).some(ie=>"{"==ie.charAt(0)&&"{"==ie.charAt(1))){const ie=gi(0,0,"");return ie.dynamic=!0,ie.strValue=L,ie}const Y=ln(L,F);return gi(Y.duration,Y.delay,Y.easing)}(F.timings,L.errors);L.currentAnimateTimings=H;let Y,ie=F.styles?F.styles:(0,A.iF)({});if(ie.type==A.If.Keyframes)Y=this.visitKeyframes(ie,L);else{let et=F.styles,Bt=!1;if(!et){Bt=!0;const Ei={};H.easing&&(Ei.easing=H.easing),et=(0,A.iF)(Ei)}L.currentTime+=H.duration+H.delay;const $t=this.visitStyle(et,L);$t.isEmptyStep=Bt,Y=$t}return L.currentAnimateTimings=null,{type:A.If.Animate,timings:H,style:Y,options:null}}visitStyle(F,L){const H=this._makeStyleAst(F,L);return this._validateStyleAst(H,L),H}_makeStyleAst(F,L){const H=[],Y=Array.isArray(F.styles)?F.styles:[F.styles];for(let Bt of Y)"string"==typeof Bt?Bt===A.kp?H.push(Bt):L.errors.push(_e()):H.push(new Map(Object.entries(Bt)));let ie=!1,et=null;return H.forEach(Bt=>{if(Bt instanceof Map&&(Bt.has("easing")&&(et=Bt.get("easing"),Bt.delete("easing")),!ie))for(let $t of Bt.values())if($t.toString().indexOf("{{")>=0){ie=!0;break}}),{type:A.If.Style,styles:H,easing:et,offset:F.offset,containsDynamicStyles:ie,options:null}}_validateStyleAst(F,L){const H=L.currentAnimateTimings;let Y=L.currentTime,ie=L.currentTime;H&&ie>0&&(ie-=H.duration+H.delay),F.styles.forEach(et=>{"string"!=typeof et&&et.forEach((Bt,$t)=>{const Ei=L.collectedStyles.get(L.currentQuerySelector),zi=Ei.get($t);let Vi=!0;zi&&(ie!=Y&&ie>=zi.startTime&&Y<=zi.endTime&&(L.errors.push(function ye(){return new p.buA(3010,!1)}()),Vi=!1),ie=zi.startTime),Vi&&Ei.set($t,{startTime:ie,endTime:Y}),L.options&&function Fe(z,F,L){const H=F.params||{},Y=bt(z);Y.length&&Y.forEach(ie=>{H.hasOwnProperty(ie)||L.push(function W(){return new p.buA(3001,!1)}())})}(Bt,L.options,L.errors)})})}visitKeyframes(F,L){const H={type:A.If.Keyframes,styles:[],options:null};if(!L.currentAnimateTimings)return L.errors.push(function Le(){return new p.buA(3011,!1)}()),H;let ie=0;const et=[];let Bt=!1,$t=!1,Ei=0;const zi=F.steps.map(wa=>{const er=this._makeStyleAst(wa,L);let qr=null!=er.offset?er.offset:function Gt(z){if("string"==typeof z)return null;let F=null;if(Array.isArray(z))z.forEach(L=>{if(L instanceof Map&&L.has("offset")){const H=L;F=parseFloat(H.get("offset")),H.delete("offset")}});else if(z instanceof Map&&z.has("offset")){const L=z;F=parseFloat(L.get("offset")),L.delete("offset")}return F}(er.styles),ha=0;return null!=qr&&(ie++,ha=er.offset=qr),$t=$t||ha<0||ha>1,Bt=Bt||ha0&&ie{const qr=un>0?er==Bn?1:un*er:et[er],ha=qr*oa;L.currentTime=pn+gn.delay+ha,gn.duration=ha,this._validateStyleAst(wa,L),wa.offset=qr,H.styles.push(wa)}),H}visitReference(F,L){return{type:A.If.Reference,animation:Ji(this,Ve(F.animation),L),options:Ft(F.options)}}visitAnimateChild(F,L){return L.depCount++,{type:A.If.AnimateChild,options:Ft(F.options)}}visitAnimateRef(F,L){return{type:A.If.AnimateRef,animation:this.visitReference(F.animation,L),options:Ft(F.options)}}visitQuery(F,L){const H=L.currentQuerySelector,Y=F.options||{};L.queryCount++,L.currentQuery=F;const[ie,et]=function en(z){const F=!!z.split(/\s*,\s*/).find(L=>":self"==L);return F&&(z=z.replace(qn,"")),z=z.replace(/@\*/g,ei).replace(/@\w+/g,L=>ei+"-"+L.slice(1)).replace(/:animating/g,Hi),[z,F]}(F.selector);L.currentQuerySelector=H.length?H+" "+ie:ie,ce(L.collectedStyles,L.currentQuerySelector,new Map);const Bt=Ji(this,Ve(F.animation),L);return L.currentQuery=null,L.currentQuerySelector=H,{type:A.If.Query,selector:ie,limit:Y.limit||0,optional:!!Y.optional,includeSelf:et,animation:Bt,originalSelector:F.selector,options:Ft(F.options)}}visitStagger(F,L){L.currentQuery||L.errors.push(function Oe(){return new p.buA(3013,!1)}());const H="full"===F.timings?{duration:0,delay:0,easing:"full"}:ln(F.timings,L.errors,!0);return{type:A.If.Stagger,animation:Ji(this,Ve(F.animation),L),timings:H,options:null}}}class Xe{errors;queryCount=0;depCount=0;currentTransition=null;currentQuery=null;currentQuerySelector=null;currentAnimateTimings=null;currentTime=0;collectedStyles=new Map;options=null;unsupportedCSSPropertiesFound=new Set;constructor(F){this.errors=F}}function Ft(z){return z?(z={...z}).params&&(z.params=function wi(z){return z?{...z}:null}(z.params)):z={},z}function gi(z,F,L){return{duration:z,delay:F,easing:L}}function Bi(z,F,L,H,Y,ie,et=null,Bt=!1){return{type:1,element:z,keyframes:F,preStyleProps:L,postStyleProps:H,duration:Y,delay:ie,totalTime:Y+ie,easing:et,subTimeline:Bt}}class Qi{_map=new Map;get(F){return this._map.get(F)||[]}append(F,L){let H=this._map.get(F);H||this._map.set(F,H=[]),H.push(...L)}has(F){return this._map.has(F)}clear(){this._map.clear()}}const da=new RegExp(":enter","g"),Zn=new RegExp(":leave","g");function Sa(z,F,L,H,Y,ie=new Map,et=new Map,Bt,$t,Ei=[]){return(new ia).buildKeyframes(z,F,L,H,Y,ie,et,Bt,$t,Ei)}class ia{buildKeyframes(F,L,H,Y,ie,et,Bt,$t,Ei,zi=[]){Ei=Ei||new Qi;const Vi=new Er(F,L,Ei,Y,ie,zi,[]);Vi.options=$t;const un=$t.delay?oi($t.delay):0;Vi.currentTimeline.delayNextStep(un),Vi.currentTimeline.setStyles([et],null,Vi.errors,$t),Ji(this,H,Vi);const Bn=Vi.timelines.filter(pn=>pn.containsAnimation());if(Bn.length&&Bt.size){let pn;for(let gn=Bn.length-1;gn>=0;gn--){const oa=Bn[gn];if(oa.element===L){pn=oa;break}}pn&&!pn.allowOnlyTimelineStyles()&&pn.setStyles([Bt],null,Vi.errors,$t)}return Bn.length?Bn.map(pn=>pn.buildKeyframes()):[Bi(L,[],[],[],0,un,"",!1)]}visitTrigger(F,L){}visitState(F,L){}visitTransition(F,L){}visitAnimateChild(F,L){const H=L.subInstructions.get(L.element);if(H){const Y=L.createSubContext(F.options),ie=L.currentTimeline.currentTime,et=this._visitSubInstructions(H,Y,Y.options);ie!=et&&L.transformIntoNewTimeline(et)}L.previousNode=F}visitAnimateRef(F,L){const H=L.createSubContext(F.options);H.transformIntoNewTimeline(),this._applyAnimationRefDelays([F.options,F.animation.options],L,H),this.visitReference(F.animation,H),L.transformIntoNewTimeline(H.currentTimeline.currentTime),L.previousNode=F}_applyAnimationRefDelays(F,L,H){for(const Y of F){const ie=Y?.delay;if(ie){const et="number"==typeof ie?ie:oi(ut(ie,Y?.params??{},L.errors));H.delayNextStep(et)}}}_visitSubInstructions(F,L,H){let ie=L.currentTimeline.currentTime;const et=null!=H.duration?oi(H.duration):null,Bt=null!=H.delay?oi(H.delay):null;return 0!==et&&F.forEach($t=>{const Ei=L.appendInstructionToTimeline($t,et,Bt);ie=Math.max(ie,Ei.duration+Ei.delay)}),ie}visitReference(F,L){L.updateOptions(F.options,!0),Ji(this,F.animation,L),L.previousNode=F}visitSequence(F,L){const H=L.subContextCount;let Y=L;const ie=F.options;if(ie&&(ie.params||ie.delay)&&(Y=L.createSubContext(ie),Y.transformIntoNewTimeline(),null!=ie.delay)){Y.previousNode.type==A.If.Style&&(Y.currentTimeline.snapshotCurrentStyles(),Y.previousNode=pa);const et=oi(ie.delay);Y.delayNextStep(et)}F.steps.length&&(F.steps.forEach(et=>Ji(this,et,Y)),Y.currentTimeline.applyStylesToKeyframe(),Y.subContextCount>H&&Y.transformIntoNewTimeline()),L.previousNode=F}visitGroup(F,L){const H=[];let Y=L.currentTimeline.currentTime;const ie=F.options&&F.options.delay?oi(F.options.delay):0;F.steps.forEach(et=>{const Bt=L.createSubContext(F.options);ie&&Bt.delayNextStep(ie),Ji(this,et,Bt),Y=Math.max(Y,Bt.currentTimeline.currentTime),H.push(Bt.currentTimeline)}),H.forEach(et=>L.currentTimeline.mergeTimelineCollectedStyles(et)),L.transformIntoNewTimeline(Y),L.previousNode=F}_visitTiming(F,L){if(F.dynamic){const H=F.strValue;return ln(L.params?ut(H,L.params,L.errors):H,L.errors)}return{duration:F.duration,delay:F.delay,easing:F.easing}}visitAnimate(F,L){const H=L.currentAnimateTimings=this._visitTiming(F.timings,L),Y=L.currentTimeline;H.delay&&(L.incrementTime(H.delay),Y.snapshotCurrentStyles());const ie=F.style;ie.type==A.If.Keyframes?this.visitKeyframes(ie,L):(L.incrementTime(H.duration),this.visitStyle(ie,L),Y.applyStylesToKeyframe()),L.currentAnimateTimings=null,L.previousNode=F}visitStyle(F,L){const H=L.currentTimeline,Y=L.currentAnimateTimings;!Y&&H.hasCurrentStyleProperties()&&H.forwardFrame();const ie=Y&&Y.easing||F.easing;F.isEmptyStep?H.applyEmptyStep(ie):H.setStyles(F.styles,ie,L.errors,L.options),L.previousNode=F}visitKeyframes(F,L){const H=L.currentAnimateTimings,Y=L.currentTimeline.duration,ie=H.duration,Bt=L.createSubContext().currentTimeline;Bt.easing=H.easing,F.styles.forEach($t=>{Bt.forwardTime(($t.offset||0)*ie),Bt.setStyles($t.styles,$t.easing,L.errors,L.options),Bt.applyStylesToKeyframe()}),L.currentTimeline.mergeTimelineCollectedStyles(Bt),L.transformIntoNewTimeline(Y+ie),L.previousNode=F}visitQuery(F,L){const H=L.currentTimeline.currentTime,Y=F.options||{},ie=Y.delay?oi(Y.delay):0;ie&&(L.previousNode.type===A.If.Style||0==H&&L.currentTimeline.hasCurrentStyleProperties())&&(L.currentTimeline.snapshotCurrentStyles(),L.previousNode=pa);let et=H;const Bt=L.invokeQuery(F.selector,F.originalSelector,F.limit,F.includeSelf,!!Y.optional,L.errors);L.currentQueryTotal=Bt.length;let $t=null;Bt.forEach((Ei,zi)=>{L.currentQueryIndex=zi;const Vi=L.createSubContext(F.options,Ei);ie&&Vi.delayNextStep(ie),Ei===L.element&&($t=Vi.currentTimeline),Ji(this,F.animation,Vi),Vi.currentTimeline.applyStylesToKeyframe(),et=Math.max(et,Vi.currentTimeline.currentTime)}),L.currentQueryIndex=0,L.currentQueryTotal=0,L.transformIntoNewTimeline(et),$t&&(L.currentTimeline.mergeTimelineCollectedStyles($t),L.currentTimeline.snapshotCurrentStyles()),L.previousNode=F}visitStagger(F,L){const H=L.parentContext,Y=L.currentTimeline,ie=F.timings,et=Math.abs(ie.duration),Bt=et*(L.currentQueryTotal-1);let $t=et*L.currentQueryIndex;switch(ie.duration<0?"reverse":ie.easing){case"reverse":$t=Bt-$t;break;case"full":$t=H.currentStaggerTime}const zi=L.currentTimeline;$t&&zi.delayNextStep($t);const Vi=zi.currentTime;Ji(this,F.animation,L),L.previousNode=F,H.currentStaggerTime=Y.currentTime-Vi+(Y.startTime-H.currentTimeline.startTime)}}const pa={};class Er{_driver;element;subInstructions;_enterClassName;_leaveClassName;errors;timelines;parentContext=null;currentTimeline;currentAnimateTimings=null;previousNode=pa;subContextCount=0;options={};currentQueryIndex=0;currentQueryTotal=0;currentStaggerTime=0;constructor(F,L,H,Y,ie,et,Bt,$t){this._driver=F,this.element=L,this.subInstructions=H,this._enterClassName=Y,this._leaveClassName=ie,this.errors=et,this.timelines=Bt,this.currentTimeline=$t||new xa(this._driver,L,0),Bt.push(this.currentTimeline)}get params(){return this.options.params}updateOptions(F,L){if(!F)return;const H=F;let Y=this.options;null!=H.duration&&(Y.duration=oi(H.duration)),null!=H.delay&&(Y.delay=oi(H.delay));const ie=H.params;if(ie){let et=Y.params;et||(et=this.options.params={}),Object.keys(ie).forEach(Bt=>{(!L||!et.hasOwnProperty(Bt))&&(et[Bt]=ut(ie[Bt],et,this.errors))})}}_copyOptions(){const F={};if(this.options){const L=this.options.params;if(L){const H=F.params={};Object.keys(L).forEach(Y=>{H[Y]=L[Y]})}}return F}createSubContext(F=null,L,H){const Y=L||this.element,ie=new Er(this._driver,Y,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(Y,H||0));return ie.previousNode=this.previousNode,ie.currentAnimateTimings=this.currentAnimateTimings,ie.options=this._copyOptions(),ie.updateOptions(F),ie.currentQueryIndex=this.currentQueryIndex,ie.currentQueryTotal=this.currentQueryTotal,ie.parentContext=this,this.subContextCount++,ie}transformIntoNewTimeline(F){return this.previousNode=pa,this.currentTimeline=this.currentTimeline.fork(this.element,F),this.timelines.push(this.currentTimeline),this.currentTimeline}appendInstructionToTimeline(F,L,H){const Y={duration:L??F.duration,delay:this.currentTimeline.currentTime+(H??0)+F.delay,easing:""},ie=new Xr(this._driver,F.element,F.keyframes,F.preStyleProps,F.postStyleProps,Y,F.stretchStartingKeyframe);return this.timelines.push(ie),Y}incrementTime(F){this.currentTimeline.forwardTime(this.currentTimeline.duration+F)}delayNextStep(F){F>0&&this.currentTimeline.delayNextStep(F)}invokeQuery(F,L,H,Y,ie,et){let Bt=[];if(Y&&Bt.push(this.element),F.length>0){F=(F=F.replace(da,"."+this._enterClassName)).replace(Zn,"."+this._leaveClassName);let Ei=this._driver.query(this.element,F,1!=H);0!==H&&(Ei=H<0?Ei.slice(Ei.length+H,Ei.length):Ei.slice(0,H)),Bt.push(...Ei)}return!ie&&0==Bt.length&&et.push(function Ee(){return new p.buA(3014,!1)}()),Bt}}class xa{_driver;element;startTime;_elementTimelineStylesLookup;duration=0;easing=null;_previousKeyframe=new Map;_currentKeyframe=new Map;_keyframes=new Map;_styleSummary=new Map;_localTimelineStyles=new Map;_globalTimelineStyles;_pendingStyles=new Map;_backFill=new Map;_currentEmptyStepKeyframe=null;constructor(F,L,H,Y){this._driver=F,this.element=L,this.startTime=H,this._elementTimelineStylesLookup=Y,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(L),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(L,this._localTimelineStyles)),this._loadKeyframe()}containsAnimation(){switch(this._keyframes.size){case 0:return!1;case 1:return this.hasCurrentStyleProperties();default:return!0}}hasCurrentStyleProperties(){return this._currentKeyframe.size>0}get currentTime(){return this.startTime+this.duration}delayNextStep(F){const L=1===this._keyframes.size&&this._pendingStyles.size;this.duration||L?(this.forwardTime(this.currentTime+F),L&&this.snapshotCurrentStyles()):this.startTime+=F}fork(F,L){return this.applyStylesToKeyframe(),new xa(this._driver,F,L||this.currentTime,this._elementTimelineStylesLookup)}_loadKeyframe(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=new Map,this._keyframes.set(this.duration,this._currentKeyframe))}forwardFrame(){this.duration+=1,this._loadKeyframe()}forwardTime(F){this.applyStylesToKeyframe(),this.duration=F,this._loadKeyframe()}_updateStyle(F,L){this._localTimelineStyles.set(F,L),this._globalTimelineStyles.set(F,L),this._styleSummary.set(F,{time:this.currentTime,value:L})}allowOnlyTimelineStyles(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}applyEmptyStep(F){F&&this._previousKeyframe.set("easing",F);for(let[L,H]of this._globalTimelineStyles)this._backFill.set(L,H||A.kp),this._currentKeyframe.set(L,A.kp);this._currentEmptyStepKeyframe=this._currentKeyframe}setStyles(F,L,H,Y){L&&this._previousKeyframe.set("easing",L);const ie=Y&&Y.params||{},et=function wr(z,F){const L=new Map;let H;return z.forEach(Y=>{if("*"===Y){H??=F.keys();for(let ie of H)L.set(ie,A.kp)}else for(let[ie,et]of Y)L.set(ie,et)}),L}(F,this._globalTimelineStyles);for(let[Bt,$t]of et){const Ei=ut($t,ie,H);this._pendingStyles.set(Bt,Ei),this._localTimelineStyles.has(Bt)||this._backFill.set(Bt,this._globalTimelineStyles.get(Bt)??A.kp),this._updateStyle(Bt,Ei)}}applyStylesToKeyframe(){0!=this._pendingStyles.size&&(this._pendingStyles.forEach((F,L)=>{this._currentKeyframe.set(L,F)}),this._pendingStyles.clear(),this._localTimelineStyles.forEach((F,L)=>{this._currentKeyframe.has(L)||this._currentKeyframe.set(L,F)}))}snapshotCurrentStyles(){for(let[F,L]of this._localTimelineStyles)this._pendingStyles.set(F,L),this._updateStyle(F,L)}getFinalKeyframe(){return this._keyframes.get(this.duration)}get properties(){const F=[];for(let L in this._currentKeyframe)F.push(L);return F}mergeTimelineCollectedStyles(F){F._styleSummary.forEach((L,H)=>{const Y=this._styleSummary.get(H);(!Y||L.time>Y.time)&&this._updateStyle(H,L.value)})}buildKeyframes(){this.applyStylesToKeyframe();const F=new Set,L=new Set,H=1===this._keyframes.size&&0===this.duration;let Y=[];this._keyframes.forEach((Bt,$t)=>{const Ei=new Map([...this._backFill,...Bt]);Ei.forEach((zi,Vi)=>{zi===A.FX?F.add(Vi):zi===A.kp&&L.add(Vi)}),H||Ei.set("offset",$t/this.duration),Y.push(Ei)});const ie=[...F.values()],et=[...L.values()];if(H){const Bt=Y[0],$t=new Map(Bt);Bt.set("offset",0),$t.set("offset",1),Y=[Bt,$t]}return Bi(this.element,Y,ie,et,this.duration,this.startTime,this.easing,!1)}}class Xr extends xa{keyframes;preStyleProps;postStyleProps;_stretchStartingKeyframe;timings;constructor(F,L,H,Y,ie,et,Bt=!1){super(F,L,et.delay),this.keyframes=H,this.preStyleProps=Y,this.postStyleProps=ie,this._stretchStartingKeyframe=Bt,this.timings={duration:et.duration,delay:et.delay,easing:et.easing}}containsAnimation(){return this.keyframes.length>1}buildKeyframes(){let F=this.keyframes,{delay:L,duration:H,easing:Y}=this.timings;if(this._stretchStartingKeyframe&&L){const ie=[],et=H+L,Bt=L/et,$t=new Map(F[0]);$t.set("offset",0),ie.push($t);const Ei=new Map(F[0]);Ei.set("offset",Ta(Bt)),ie.push(Ei);const zi=F.length-1;for(let Vi=1;Vi<=zi;Vi++){let un=new Map(F[Vi]);const Bn=un.get("offset");un.set("offset",Ta((L+Bn*H)/et)),ie.push(un)}H=et,L=0,Y="",F=ie}return Bi(this.element,F,this.preStyleProps,this.postStyleProps,H,L,Y,!0)}}function Ta(z,F=3){const L=Math.pow(10,F-1);return Math.round(z*L)/L}function ja(z,F,L,H,Y,ie,et,Bt,$t,Ei,zi,Vi,un){return{type:0,element:z,triggerName:F,isRemovalTransition:Y,fromState:L,fromStyles:ie,toState:H,toStyles:et,timelines:Bt,queriedElements:$t,preStyleProps:Ei,postStyleProps:zi,totalTime:Vi,errors:un}}const Wa={};class Fa{_triggerName;ast;_stateStyles;constructor(F,L,H){this._triggerName=F,this.ast=L,this._stateStyles=H}match(F,L,H,Y){return function ys(z,F,L,H,Y){return z.some(ie=>ie(F,L,H,Y))}(this.ast.matchers,F,L,H,Y)}buildStyles(F,L,H){let Y=this._stateStyles.get("*");return void 0!==F&&(Y=this._stateStyles.get(F?.toString())||Y),Y?Y.buildStyles(L,H):new Map}build(F,L,H,Y,ie,et,Bt,$t,Ei,zi){const Vi=[],un=this.ast.options&&this.ast.options.params||Wa,pn=this.buildStyles(H,Bt&&Bt.params||Wa,Vi),gn=$t&&$t.params||Wa,oa=this.buildStyles(Y,gn,Vi),wa=new Set,er=new Map,qr=new Map,ha="void"===Y,dr={params:Kr(gn,un),delay:this.ast.options?.delay},Da=zi?[]:Sa(F,L,this.ast.animation,ie,et,pn,oa,dr,Ei,Vi);let Pr=0;return Da.forEach(ar=>{Pr=Math.max(ar.duration+ar.delay,Pr)}),Vi.length?ja(L,this._triggerName,H,Y,ha,pn,oa,[],[],er,qr,Pr,Vi):(Da.forEach(ar=>{const Qo=ar.element,ko=ce(er,Qo,new Set);ar.preStyleProps.forEach(cc=>ko.add(cc));const Ou=ce(qr,Qo,new Set);ar.postStyleProps.forEach(cc=>Ou.add(cc)),Qo!==L&&wa.add(Qo)}),ja(L,this._triggerName,H,Y,ha,pn,oa,Da,[...wa.values()],er,qr,Pr))}}function Kr(z,F){const L={...F};return Object.entries(z).forEach(([H,Y])=>{null!=Y&&(L[H]=Y)}),L}class or{styles;defaultParams;normalizer;constructor(F,L,H){this.styles=F,this.defaultParams=L,this.normalizer=H}buildStyles(F,L){const H=new Map,Y=Kr(F,this.defaultParams);return this.styles.styles.forEach(ie=>{"string"!=typeof ie&&ie.forEach((et,Bt)=>{et&&(et=ut(et,Y,L));const $t=this.normalizer.normalizePropertyName(Bt,L);et=this.normalizer.normalizeStyleValue(Bt,$t,et,L),H.set(Bt,et)})}),H}}class Yr{name;ast;_normalizer;transitionFactories=[];fallbackTransition;states=new Map;constructor(F,L,H){this.name=F,this.ast=L,this._normalizer=H,L.states.forEach(Y=>{this.states.set(Y.name,new or(Y.style,Y.options&&Y.options.params||{},H))}),Qr(this.states,"true","1"),Qr(this.states,"false","0"),L.transitions.forEach(Y=>{this.transitionFactories.push(new Fa(F,Y,this.states))}),this.fallbackTransition=function bs(z,F){return new Fa(z,{type:A.If.Transition,animation:{type:A.If.Sequence,steps:[],options:null},matchers:[(et,Bt)=>!0],options:null,queryCount:0,depCount:0},F)}(F,this.states)}get containsQueries(){return this.ast.queryCount>0}matchTransition(F,L,H,Y){return this.transitionFactories.find(et=>et.match(F,L,H,Y))||null}matchStyles(F,L,H){return this.fallbackTransition.buildStyles(F,L,H)}}function Qr(z,F,L){z.has(F)?z.has(L)||z.set(L,z.get(F)):z.has(L)&&z.set(F,z.get(L))}const no=new Qi;class ls{bodyNode;_driver;_normalizer;_animations=new Map;_playersById=new Map;players=[];constructor(F,L,H){this.bodyNode=F,this._driver=L,this._normalizer=H}register(F,L){const H=[],ie=mr(this._driver,L,H,[]);if(H.length)throw function Ht(){return new p.buA(3503,!1)}();this._animations.set(F,ie)}_buildPlayer(F,L,H){const Y=F.element,ie=kt(this._normalizer,F.keyframes,L,H);return this._driver.animate(Y,ie,F.duration,F.delay,F.easing,[],!0)}create(F,L,H={}){const Y=[],ie=this._animations.get(F);let et;const Bt=new Map;if(ie?(et=Sa(this._driver,L,ie,$e,tt,new Map,new Map,H,no,Y),et.forEach(zi=>{const Vi=ce(Bt,zi.element,new Map);zi.postStyleProps.forEach(un=>Vi.set(un,null))})):(Y.push(function ct(){return new p.buA(3300,!1)}()),et=[]),Y.length)throw function Ce(){return new p.buA(3504,!1)}();Bt.forEach((zi,Vi)=>{zi.forEach((un,Bn)=>{zi.set(Bn,this._driver.computeStyle(Vi,Bn,A.kp))})});const Ei=di(et.map(zi=>{const Vi=Bt.get(zi.element);return this._buildPlayer(zi,new Map,Vi)}));return this._playersById.set(F,Ei),Ei.onDestroy(()=>this.destroy(F)),this.players.push(Ei),Ei}destroy(F){const L=this._getPlayer(F);L.destroy(),this._playersById.delete(F);const H=this.players.indexOf(L);H>=0&&this.players.splice(H,1)}_getPlayer(F){const L=this._playersById.get(F);if(!L)throw function ze(){return new p.buA(3301,!1)}();return L}listen(F,L,H,Y){const ie=te(L,"","","");return Rt(this._getPlayer(F),H,ie,Y),()=>{}}command(F,L,H,Y){if("register"==H)return void this.register(F,Y[0]);if("create"==H)return void this.create(F,L,Y[0]||{});const ie=this._getPlayer(F);switch(H){case"play":ie.play();break;case"pause":ie.pause();break;case"reset":ie.reset();break;case"restart":ie.restart();break;case"finish":ie.finish();break;case"init":ie.init();break;case"setPosition":ie.setPosition(parseFloat(Y[0]));break;case"destroy":this.destroy(F)}}}const cs="ng-animate-queued",$r="ng-animate-disabled",ii=[],Ii={namespaceId:"",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},Ui={namespaceId:"",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},tn="__ng_removed";class yn{namespaceId;value;options;get params(){return this.options.params}constructor(F,L=""){this.namespaceId=L;const H=F&&F.hasOwnProperty("value");if(this.value=function tr(z){return z??null}(H?F.value:F),H){const{value:ie,...et}=F;this.options=et}else this.options={};this.options.params||(this.options.params={})}absorbOptions(F){const L=F.params;if(L){const H=this.options.params;Object.keys(L).forEach(Y=>{null==H[Y]&&(H[Y]=L[Y])})}}}const Pn="void",Qn=new yn(Pn);class Jn{id;hostElement;_engine;players=[];_triggers=new Map;_queue=[];_elementListeners=new Map;_hostClassName;constructor(F,L,H){this.id=F,this.hostElement=L,this._engine=H,this._hostClassName="ng-tns-"+F,ka(L,this._hostClassName)}listen(F,L,H,Y){if(!this._triggers.has(L))throw function Z(){return new p.buA(3302,!1)}();if(null==H||0==H.length)throw function J(){return new p.buA(3303,!1)}();if(!function Xa(z){return"start"==z||"done"==z}(H))throw function fe(){return new p.buA(3400,!1)}();const ie=ce(this._elementListeners,F,[]),et={name:L,phase:H,callback:Y};ie.push(et);const Bt=ce(this._engine.statesByElement,F,new Map);return Bt.has(L)||(ka(F,vi),ka(F,vi+"-"+L),Bt.set(L,Qn)),()=>{this._engine.afterFlush(()=>{const $t=ie.indexOf(et);$t>=0&&ie.splice($t,1),this._triggers.has(L)||Bt.delete(L)})}}register(F,L){return!this._triggers.has(F)&&(this._triggers.set(F,L),!0)}_getTrigger(F){const L=this._triggers.get(F);if(!L)throw function Ie(){return new p.buA(3401,!1)}();return L}trigger(F,L,H,Y=!0){const ie=this._getTrigger(L),et=new Ca(this.id,L,F);let Bt=this._engine.statesByElement.get(F);Bt||(ka(F,vi),ka(F,vi+"-"+L),this._engine.statesByElement.set(F,Bt=new Map));let $t=Bt.get(L);const Ei=new yn(H,this.id);if(!(H&&H.hasOwnProperty("value"))&&$t&&Ei.absorbOptions($t.options),Bt.set(L,Ei),$t||($t=Qn),Ei.value!==Pn&&$t.value===Ei.value){if(!function ao(z,F){const L=Object.keys(z),H=Object.keys(F);if(L.length!=H.length)return!1;for(let Y=0;Y{Ze(F,oa),Tt(F,wa)})}return}const un=ce(this._engine.playersByElement,F,[]);un.forEach(gn=>{gn.namespaceId==this.id&&gn.triggerName==L&&gn.queued&&gn.destroy()});let Bn=ie.matchTransition($t.value,Ei.value,F,Ei.params),pn=!1;if(!Bn){if(!Y)return;Bn=ie.fallbackTransition,pn=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:F,triggerName:L,transition:Bn,fromState:$t,toState:Ei,player:et,isFallbackTransition:pn}),pn||(ka(F,cs),et.onStart(()=>{Ka(F,cs)})),et.onDone(()=>{let gn=this.players.indexOf(et);gn>=0&&this.players.splice(gn,1);const oa=this._engine.playersByElement.get(F);if(oa){let wa=oa.indexOf(et);wa>=0&&oa.splice(wa,1)}}),this.players.push(et),un.push(et),et}deregister(F){this._triggers.delete(F),this._engine.statesByElement.forEach(L=>L.delete(F)),this._elementListeners.forEach((L,H)=>{this._elementListeners.set(H,L.filter(Y=>Y.name!=F))})}clearElementCache(F){this._engine.statesByElement.delete(F),this._elementListeners.delete(F);const L=this._engine.playersByElement.get(F);L&&(L.forEach(H=>H.destroy()),this._engine.playersByElement.delete(F))}_signalRemovalForInnerTriggers(F,L){const H=this._engine.driver.query(F,ei,!0);H.forEach(Y=>{if(Y[tn])return;const ie=this._engine.fetchNamespacesByElement(Y);ie.size?ie.forEach(et=>et.triggerLeaveAnimation(Y,L,!1,!0)):this.clearElementCache(Y)}),this._engine.afterFlushAnimationsDone(()=>H.forEach(Y=>this.clearElementCache(Y)))}triggerLeaveAnimation(F,L,H,Y){const ie=this._engine.statesByElement.get(F),et=new Map;if(ie){const Bt=[];if(ie.forEach(($t,Ei)=>{if(et.set(Ei,$t.value),this._triggers.has(Ei)){const zi=this.trigger(F,Ei,Pn,Y);zi&&Bt.push(zi)}}),Bt.length)return this._engine.markElementAsRemoved(this.id,F,!0,L,et),H&&di(Bt).onDone(()=>this._engine.processLeaveNode(F)),!0}return!1}prepareLeaveAnimationListeners(F){const L=this._elementListeners.get(F),H=this._engine.statesByElement.get(F);if(L&&H){const Y=new Set;L.forEach(ie=>{const et=ie.name;if(Y.has(et))return;Y.add(et);const $t=this._triggers.get(et).fallbackTransition,Ei=H.get(et)||Qn,zi=new yn(Pn),Vi=new Ca(this.id,et,F);this._engine.totalQueuedPlayers++,this._queue.push({element:F,triggerName:et,transition:$t,fromState:Ei,toState:zi,player:Vi,isFallbackTransition:!0})})}}removeNode(F,L){const H=this._engine;if(F.childElementCount&&this._signalRemovalForInnerTriggers(F,L),this.triggerLeaveAnimation(F,L,!0))return;let Y=!1;if(H.totalAnimations){const ie=H.players.length?H.playersByQueriedElement.get(F):[];if(ie&&ie.length)Y=!0;else{let et=F;for(;et=et.parentNode;)if(H.statesByElement.get(et)){Y=!0;break}}}if(this.prepareLeaveAnimationListeners(F),Y)H.markElementAsRemoved(this.id,F,!1,L);else{const ie=F[tn];(!ie||ie===Ii)&&(H.afterFlush(()=>this.clearElementCache(F)),H.destroyInnerAnimations(F),H._onRemovalComplete(F,L))}}insertNode(F,L){ka(F,this._hostClassName)}drainQueuedTransitions(F){const L=[];return this._queue.forEach(H=>{const Y=H.player;if(Y.destroyed)return;const ie=H.element,et=this._elementListeners.get(ie);et&&et.forEach(Bt=>{if(Bt.name==H.triggerName){const $t=te(ie,H.triggerName,H.fromState.value,H.toState.value);$t._data=F,Rt(H.player,Bt.phase,$t,Bt.callback)}}),Y.markedForDestroy?this._engine.afterFlush(()=>{Y.destroy()}):L.push(H)}),this._queue=[],L.sort((H,Y)=>{const ie=H.transition.ast.depCount,et=Y.transition.ast.depCount;return 0==ie||0==et?ie-et:this._engine.driver.containsElement(H.element,Y.element)?1:-1})}destroy(F){this.players.forEach(L=>L.destroy()),this._signalRemovalForInnerTriggers(this.hostElement,F)}}class Un{bodyNode;driver;_normalizer;players=[];newHostElements=new Map;playersByElement=new Map;playersByQueriedElement=new Map;statesByElement=new Map;disabledNodes=new Set;totalAnimations=0;totalQueuedPlayers=0;_namespaceLookup={};_namespaceList=[];_flushFns=[];_whenQuietFns=[];namespacesByHostElement=new Map;collectedEnterElements=[];collectedLeaveElements=[];onRemovalComplete=(F,L)=>{};_onRemovalComplete(F,L){this.onRemovalComplete(F,L)}constructor(F,L,H){this.bodyNode=F,this.driver=L,this._normalizer=H}get queuedPlayers(){const F=[];return this._namespaceList.forEach(L=>{L.players.forEach(H=>{H.queued&&F.push(H)})}),F}createNamespace(F,L){const H=new Jn(F,L,this);return this.bodyNode&&this.driver.containsElement(this.bodyNode,L)?this._balanceNamespaceList(H,L):(this.newHostElements.set(L,H),this.collectEnterElement(L)),this._namespaceLookup[F]=H}_balanceNamespaceList(F,L){const H=this._namespaceList,Y=this.namespacesByHostElement;if(H.length-1>=0){let et=!1,Bt=this.driver.getParentElement(L);for(;Bt;){const $t=Y.get(Bt);if($t){const Ei=H.indexOf($t);H.splice(Ei+1,0,F),et=!0;break}Bt=this.driver.getParentElement(Bt)}et||H.unshift(F)}else H.push(F);return Y.set(L,F),F}register(F,L){let H=this._namespaceLookup[F];return H||(H=this.createNamespace(F,L)),H}registerTrigger(F,L,H){let Y=this._namespaceLookup[F];Y&&Y.register(L,H)&&this.totalAnimations++}destroy(F,L){F&&(this.afterFlush(()=>{}),this.afterFlushAnimationsDone(()=>{const H=this._fetchNamespace(F);this.namespacesByHostElement.delete(H.hostElement);const Y=this._namespaceList.indexOf(H);Y>=0&&this._namespaceList.splice(Y,1),H.destroy(L),delete this._namespaceLookup[F]}))}_fetchNamespace(F){return this._namespaceLookup[F]}fetchNamespacesByElement(F){const L=new Set,H=this.statesByElement.get(F);if(H)for(let Y of H.values())if(Y.namespaceId){const ie=this._fetchNamespace(Y.namespaceId);ie&&L.add(ie)}return L}trigger(F,L,H,Y){if(Ra(L)){const ie=this._fetchNamespace(F);if(ie)return ie.trigger(L,H,Y),!0}return!1}insertNode(F,L,H,Y){if(!Ra(L))return;const ie=L[tn];if(ie&&ie.setForRemoval){ie.setForRemoval=!1,ie.setForMove=!0;const et=this.collectedLeaveElements.indexOf(L);et>=0&&this.collectedLeaveElements.splice(et,1)}if(F){const et=this._fetchNamespace(F);et&&et.insertNode(L,H)}Y&&this.collectEnterElement(L)}collectEnterElement(F){this.collectedEnterElements.push(F)}markElementAsDisabled(F,L){L?this.disabledNodes.has(F)||(this.disabledNodes.add(F),ka(F,$r)):this.disabledNodes.has(F)&&(this.disabledNodes.delete(F),Ka(F,$r))}removeNode(F,L,H){if(Ra(L)){const Y=F?this._fetchNamespace(F):null;Y?Y.removeNode(L,H):this.markElementAsRemoved(F,L,!1,H);const ie=this.namespacesByHostElement.get(L);ie&&ie.id!==F&&ie.removeNode(L,H)}else this._onRemovalComplete(L,H)}markElementAsRemoved(F,L,H,Y,ie){this.collectedLeaveElements.push(L),L[tn]={namespaceId:F,setForRemoval:Y,hasAnimation:H,removedBeforeQueried:!1,previousTriggersValues:ie}}listen(F,L,H,Y,ie){return Ra(L)?this._fetchNamespace(F).listen(L,H,Y,ie):()=>{}}_buildInstruction(F,L,H,Y,ie){return F.transition.build(this.driver,F.element,F.fromState.value,F.toState.value,H,Y,F.fromState.options,F.toState.options,L,ie)}destroyInnerAnimations(F){let L=this.driver.query(F,ei,!0);L.forEach(H=>this.destroyActiveAnimationsForElement(H)),0!=this.playersByQueriedElement.size&&(L=this.driver.query(F,Hi,!0),L.forEach(H=>this.finishActiveQueriedAnimationOnElement(H)))}destroyActiveAnimationsForElement(F){const L=this.playersByElement.get(F);L&&L.forEach(H=>{H.queued?H.markedForDestroy=!0:H.destroy()})}finishActiveQueriedAnimationOnElement(F){const L=this.playersByQueriedElement.get(F);L&&L.forEach(H=>H.finish())}whenRenderingDone(){return new Promise(F=>{if(this.players.length)return di(this.players).onDone(()=>F());F()})}processLeaveNode(F){const L=F[tn];if(L&&L.setForRemoval){if(F[tn]=Ii,L.namespaceId){this.destroyInnerAnimations(F);const H=this._fetchNamespace(L.namespaceId);H&&H.clearElementCache(F)}this._onRemovalComplete(F,L.setForRemoval)}F.classList?.contains($r)&&this.markElementAsDisabled(F,!1),this.driver.query(F,".ng-animate-disabled",!0).forEach(H=>{this.markElementAsDisabled(H,!1)})}flush(F=-1){let L=[];if(this.newHostElements.size&&(this.newHostElements.forEach((H,Y)=>this._balanceNamespaceList(H,Y)),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(let H=0;HH()),this._flushFns=[],this._whenQuietFns.length){const H=this._whenQuietFns;this._whenQuietFns=[],L.length?di(L).onDone(()=>{H.forEach(Y=>Y())}):H.forEach(Y=>Y())}}reportError(F){throw function ht(){return new p.buA(3402,!1)}()}_flushAnimations(F,L){const H=new Qi,Y=[],ie=new Map,et=[],Bt=new Map,$t=new Map,Ei=new Map,zi=new Set;this.disabledNodes.forEach($n=>{zi.add($n);const na=this.driver.query($n,".ng-animate-queued",!0);for(let ua=0;ua{const ua=$e+gn++;pn.set(na,ua),$n.forEach(Ga=>ka(Ga,ua))});const oa=[],wa=new Set,er=new Set;for(let $n=0;$nwa.add(Ga)):er.add(na))}const qr=new Map,ha=Sn(un,Array.from(wa));ha.forEach(($n,na)=>{const ua=tt+gn++;qr.set(na,ua),$n.forEach(Ga=>ka(Ga,ua))}),F.push(()=>{Bn.forEach(($n,na)=>{const ua=pn.get(na);$n.forEach(Ga=>Ka(Ga,ua))}),ha.forEach(($n,na)=>{const ua=qr.get(na);$n.forEach(Ga=>Ka(Ga,ua))}),oa.forEach($n=>{this.processLeaveNode($n)})});const dr=[],Da=[];for(let $n=this._namespaceList.length-1;$n>=0;$n--)this._namespaceList[$n].drainQueuedTransitions(L).forEach(ua=>{const Ga=ua.player,ks=ua.element;if(dr.push(Ga),this.collectedEnterElements.length){const eo=ks[tn];if(eo&&eo.setForMove){if(eo.previousTriggersValues&&eo.previousTriggersValues.has(ua.triggerName)){const Bc=eo.previousTriggersValues.get(ua.triggerName),ol=this.statesByElement.get(ua.element);if(ol&&ol.has(ua.triggerName)){const N1=ol.get(ua.triggerName);N1.value=Bc,ol.set(ua.triggerName,N1)}}return void Ga.destroy()}}const Hl=!Vi||!this.driver.containsElement(Vi,ks),$o=qr.get(ks),dc=pn.get(ks),Fr=this._buildInstruction(ua,H,dc,$o,Hl);if(Fr.errors&&Fr.errors.length)return void Da.push(Fr);if(Hl)return Ga.onStart(()=>Ze(ks,Fr.fromStyles)),Ga.onDestroy(()=>Tt(ks,Fr.toStyles)),void Y.push(Ga);if(ua.isFallbackTransition)return Ga.onStart(()=>Ze(ks,Fr.fromStyles)),Ga.onDestroy(()=>Tt(ks,Fr.toStyles)),void Y.push(Ga);const F1=[];Fr.timelines.forEach(eo=>{eo.stretchStartingKeyframe=!0,this.disabledNodes.has(eo.element)||F1.push(eo)}),Fr.timelines=F1,H.append(ks,Fr.timelines),et.push({instruction:Fr,player:Ga,element:ks}),Fr.queriedElements.forEach(eo=>ce(Bt,eo,[]).push(Ga)),Fr.preStyleProps.forEach((eo,Bc)=>{if(eo.size){let ol=$t.get(Bc);ol||$t.set(Bc,ol=new Set),eo.forEach((N1,Fd)=>ol.add(Fd))}}),Fr.postStyleProps.forEach((eo,Bc)=>{let ol=Ei.get(Bc);ol||Ei.set(Bc,ol=new Set),eo.forEach((N1,Fd)=>ol.add(Fd))})});if(Da.length){const $n=[];Da.forEach(na=>{$n.push(function li(){return new p.buA(3505,!1)}())}),dr.forEach(na=>na.destroy()),this.reportError($n)}const Pr=new Map,ar=new Map;et.forEach($n=>{const na=$n.element;H.has(na)&&(ar.set(na,na),this._beforeAnimationBuild($n.player.namespaceId,$n.instruction,Pr))}),Y.forEach($n=>{const na=$n.element;this._getPreviousPlayers(na,!1,$n.namespaceId,$n.triggerName,null).forEach(Ga=>{ce(Pr,na,[]).push(Ga),Ga.destroy()})});const Qo=oa.filter($n=>Ss($n,$t,Ei)),ko=new Map;vr(ko,this.driver,er,Ei,A.kp).forEach($n=>{Ss($n,$t,Ei)&&Qo.push($n)});const cc=new Map;Bn.forEach(($n,na)=>{vr(cc,this.driver,new Set($n),$t,A.FX)}),Qo.forEach($n=>{const na=ko.get($n),ua=cc.get($n);ko.set($n,new Map([...na?.entries()??[],...ua?.entries()??[]]))});const X0=[],Pu=[],bf={};et.forEach($n=>{const{element:na,player:ua,instruction:Ga}=$n;if(H.has(na)){if(zi.has(na))return ua.onDestroy(()=>Tt(na,Ga.toStyles)),ua.disabled=!0,ua.overrideTotalTime(Ga.totalTime),void Y.push(ua);let ks=bf;if(ar.size>1){let $o=na;const dc=[];for(;$o=$o.parentNode;){const Fr=ar.get($o);if(Fr){ks=Fr;break}dc.push($o)}dc.forEach(Fr=>ar.set(Fr,ks))}const Hl=this._buildAnimation(ua.namespaceId,Ga,Pr,ie,cc,ko);if(ua.setRealPlayer(Hl),ks===bf)X0.push(ua);else{const $o=this.playersByElement.get(ks);$o&&$o.length&&(ua.parentPlayer=di($o)),Y.push(ua)}}else Ze(na,Ga.fromStyles),ua.onDestroy(()=>Tt(na,Ga.toStyles)),Pu.push(ua),zi.has(na)&&Y.push(ua)}),Pu.forEach($n=>{const na=ie.get($n.element);if(na&&na.length){const ua=di(na);$n.setRealPlayer(ua)}}),Y.forEach($n=>{$n.parentPlayer?$n.syncPlayerEvents($n.parentPlayer):$n.destroy()});for(let $n=0;$n!Hl.destroyed);ks.length?pr(this,na,ks):this.processLeaveNode(na)}return oa.length=0,X0.forEach($n=>{this.players.push($n),$n.onDone(()=>{$n.destroy();const na=this.players.indexOf($n);this.players.splice(na,1)}),$n.play()}),X0}afterFlush(F){this._flushFns.push(F)}afterFlushAnimationsDone(F){this._whenQuietFns.push(F)}_getPreviousPlayers(F,L,H,Y,ie){let et=[];if(L){const Bt=this.playersByQueriedElement.get(F);Bt&&(et=Bt)}else{const Bt=this.playersByElement.get(F);if(Bt){const $t=!ie||ie==Pn;Bt.forEach(Ei=>{Ei.queued||!$t&&Ei.triggerName!=Y||et.push(Ei)})}}return(H||Y)&&(et=et.filter(Bt=>!(H&&H!=Bt.namespaceId||Y&&Y!=Bt.triggerName))),et}_beforeAnimationBuild(F,L,H){const ie=L.element,et=L.isRemovalTransition?void 0:F,Bt=L.isRemovalTransition?void 0:L.triggerName;for(const $t of L.timelines){const Ei=$t.element,zi=Ei!==ie,Vi=ce(H,Ei,[]);this._getPreviousPlayers(Ei,zi,et,Bt,L.toState).forEach(Bn=>{const pn=Bn.getRealPlayer();pn.beforeDestroy&&pn.beforeDestroy(),Bn.destroy(),Vi.push(Bn)})}Ze(ie,L.fromStyles)}_buildAnimation(F,L,H,Y,ie,et){const Bt=L.triggerName,$t=L.element,Ei=[],zi=new Set,Vi=new Set,un=L.timelines.map(pn=>{const gn=pn.element;zi.add(gn);const oa=gn[tn];if(oa&&oa.removedBeforeQueried)return new A.sf(pn.duration,pn.delay);const wa=gn!==$t,er=function gr(z){const F=[];return ds(z,F),F}((H.get(gn)||ii).map(Pr=>Pr.getRealPlayer())).filter(Pr=>!!Pr.element&&Pr.element===gn),qr=ie.get(gn),ha=et.get(gn),dr=kt(this._normalizer,pn.keyframes,qr,ha),Da=this._buildPlayer(pn,dr,er);if(pn.subTimeline&&Y&&Vi.add(gn),wa){const Pr=new Ca(F,Bt,gn);Pr.setRealPlayer(Da),Ei.push(Pr)}return Da});Ei.forEach(pn=>{ce(this.playersByQueriedElement,pn.element,[]).push(pn),pn.onDone(()=>function Aa(z,F,L){let H=z.get(F);if(H){if(H.length){const Y=H.indexOf(L);H.splice(Y,1)}0==H.length&&z.delete(F)}return H}(this.playersByQueriedElement,pn.element,pn))}),zi.forEach(pn=>ka(pn,ci));const Bn=di(un);return Bn.onDestroy(()=>{zi.forEach(pn=>Ka(pn,ci)),Tt($t,L.toStyles)}),Vi.forEach(pn=>{ce(Y,pn,[]).push(Bn)}),Bn}_buildPlayer(F,L,H){return L.length>0?this.driver.animate(F.element,L,F.duration,F.delay,F.easing,H):new A.sf(F.duration,F.delay)}}class Ca{namespaceId;triggerName;element;_player=new A.sf;_containsRealPlayer=!1;_queuedCallbacks=new Map;destroyed=!1;parentPlayer=null;markedForDestroy=!1;disabled=!1;queued=!0;totalTime=0;constructor(F,L,H){this.namespaceId=F,this.triggerName=L,this.element=H}setRealPlayer(F){this._containsRealPlayer||(this._player=F,this._queuedCallbacks.forEach((L,H)=>{L.forEach(Y=>Rt(F,H,void 0,Y))}),this._queuedCallbacks.clear(),this._containsRealPlayer=!0,this.overrideTotalTime(F.totalTime),this.queued=!1)}getRealPlayer(){return this._player}overrideTotalTime(F){this.totalTime=F}syncPlayerEvents(F){const L=this._player;L.triggerCallback&&F.onStart(()=>L.triggerCallback("start")),F.onDone(()=>this.finish()),F.onDestroy(()=>this.destroy())}_queueEvent(F,L){ce(this._queuedCallbacks,F,[]).push(L)}onDone(F){this.queued&&this._queueEvent("done",F),this._player.onDone(F)}onStart(F){this.queued&&this._queueEvent("start",F),this._player.onStart(F)}onDestroy(F){this.queued&&this._queueEvent("destroy",F),this._player.onDestroy(F)}init(){this._player.init()}hasStarted(){return!this.queued&&this._player.hasStarted()}play(){!this.queued&&this._player.play()}pause(){!this.queued&&this._player.pause()}restart(){!this.queued&&this._player.restart()}finish(){this._player.finish()}destroy(){this.destroyed=!0,this._player.destroy()}reset(){!this.queued&&this._player.reset()}setPosition(F){this.queued||this._player.setPosition(F)}getPosition(){return this.queued?0:this._player.getPosition()}triggerCallback(F){const L=this._player;L.triggerCallback&&L.triggerCallback(F)}}function Ra(z){return z&&1===z.nodeType}function za(z,F){const L=z.style.display;return z.style.display=F??"none",L}function vr(z,F,L,H,Y){const ie=[];L.forEach($t=>ie.push(za($t)));const et=[];H.forEach(($t,Ei)=>{const zi=new Map;$t.forEach(Vi=>{const un=F.computeStyle(Ei,Vi,Y);zi.set(Vi,un),(!un||0==un.length)&&(Ei[tn]=Ui,et.push(Ei))}),z.set(Ei,zi)});let Bt=0;return L.forEach($t=>za($t,ie[Bt++])),et}function Sn(z,F){const L=new Map;if(z.forEach(Bt=>L.set(Bt,[])),0==F.length)return L;const Y=new Set(F),ie=new Map;function et(Bt){if(!Bt)return 1;let $t=ie.get(Bt);if($t)return $t;const Ei=Bt.parentNode;return $t=L.has(Ei)?Ei:Y.has(Ei)?1:et(Ei),ie.set(Bt,$t),$t}return F.forEach(Bt=>{const $t=et(Bt);1!==$t&&L.get($t).push(Bt)}),L}function ka(z,F){z.classList?.add(F)}function Ka(z,F){z.classList?.remove(F)}function pr(z,F,L){di(L).onDone(()=>z.processLeaveNode(F))}function ds(z,F){for(let L=0;LY.add(ie)):F.set(z,H),L.delete(z),!0}class Oa{_driver;_normalizer;_transitionEngine;_timelineEngine;_triggerCache={};onRemovalComplete=(F,L)=>{};constructor(F,L,H){this._driver=L,this._normalizer=H,this._transitionEngine=new Un(F.body,L,H),this._timelineEngine=new ls(F.body,L,H),this._transitionEngine.onRemovalComplete=(Y,ie)=>this.onRemovalComplete(Y,ie)}registerTrigger(F,L,H,Y,ie){const et=F+"-"+Y;let Bt=this._triggerCache[et];if(!Bt){const $t=[],zi=mr(this._driver,ie,$t,[]);if($t.length)throw function lt(){return new p.buA(3404,!1)}();Bt=function os(z,F,L){return new Yr(z,F,L)}(Y,zi,this._normalizer),this._triggerCache[et]=Bt}this._transitionEngine.registerTrigger(L,Y,Bt)}register(F,L){this._transitionEngine.register(F,L)}destroy(F,L){this._transitionEngine.destroy(F,L)}onInsert(F,L,H,Y){this._transitionEngine.insertNode(F,L,H,Y)}onRemove(F,L,H){this._transitionEngine.removeNode(F,L,H)}disableAnimations(F,L){this._transitionEngine.markElementAsDisabled(F,L)}process(F,L,H,Y){if("@"==H.charAt(0)){const[ie,et]=se(H);this._timelineEngine.command(ie,L,et,Y)}else this._transitionEngine.trigger(F,L,H,Y)}listen(F,L,H,Y,ie){if("@"==H.charAt(0)){const[et,Bt]=se(H);return this._timelineEngine.listen(et,L,Bt,ie)}return this._transitionEngine.listen(F,L,H,Y,ie)}flush(F=-1){this._transitionEngine.flush(F)}get players(){return[...this._transitionEngine.players,...this._timelineEngine.players]}whenRenderingDone(){return this._transitionEngine.whenRenderingDone()}afterFlushAnimationsDone(F){this._transitionEngine.afterFlushAnimationsDone(F)}}let Ri=(()=>{class z{_element;_startStyles;_endStyles;static initialStylesByElement=new WeakMap;_state=0;_initialStyles;constructor(L,H,Y){this._element=L,this._startStyles=H,this._endStyles=Y;let ie=z.initialStylesByElement.get(L);ie||z.initialStylesByElement.set(L,ie=new Map),this._initialStyles=ie}start(){this._state<1&&(this._startStyles&&Tt(this._element,this._startStyles,this._initialStyles),this._state=1)}finish(){this.start(),this._state<2&&(Tt(this._element,this._initialStyles),this._endStyles&&(Tt(this._element,this._endStyles),this._endStyles=null),this._state=1)}destroy(){this.finish(),this._state<3&&(z.initialStylesByElement.delete(this._element),this._startStyles&&(Ze(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(Ze(this._element,this._endStyles),this._endStyles=null),Tt(this._element,this._initialStyles),this._state=3)}}return z})();function ft(z){let F=null;return z.forEach((L,H)=>{(function _i(z){return"display"===z||"position"===z})(H)&&(F=F||new Map,F.set(H,L))}),F}class Li{element;keyframes;options;_specialStyles;_onDoneFns=[];_onStartFns=[];_onDestroyFns=[];_duration;_delay;_initialized=!1;_finished=!1;_started=!1;_destroyed=!1;_finalKeyframe;_originalOnDoneFns=[];_originalOnStartFns=[];domPlayer=null;time=0;parentPlayer=null;currentSnapshot=new Map;constructor(F,L,H,Y){this.element=F,this.keyframes=L,this.options=H,this._specialStyles=Y,this._duration=H.duration,this._delay=H.delay||0,this.time=this._duration+this._delay}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(F=>F()),this._onDoneFns=[])}init(){this._buildPlayer()&&this._preparePlayerBeforeStart()}_buildPlayer(){if(this._initialized)return this.domPlayer;this._initialized=!0;const F=this.keyframes,L=this._triggerWebAnimation(this.element,F,this.options);if(!L)return this._onFinish(),null;this.domPlayer=L,this._finalKeyframe=F.length?F[F.length-1]:new Map;const H=()=>this._onFinish();return L.addEventListener("finish",H),this.onDestroy(()=>{L.removeEventListener("finish",H)}),L}_preparePlayerBeforeStart(){this._delay?this._resetDomPlayerState():this.domPlayer?.pause()}_convertKeyframesToObject(F){const L=[];return F.forEach(H=>{L.push(Object.fromEntries(H))}),L}_triggerWebAnimation(F,L,H){const Y=this._convertKeyframesToObject(L);try{return F.animate(Y,H)}catch{return null}}onStart(F){this._originalOnStartFns.push(F),this._onStartFns.push(F)}onDone(F){this._originalOnDoneFns.push(F),this._onDoneFns.push(F)}onDestroy(F){this._onDestroyFns.push(F)}play(){const F=this._buildPlayer();F&&(this.hasStarted()||(this._onStartFns.forEach(L=>L()),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),F.play())}pause(){this.init(),this.domPlayer?.pause()}finish(){this.init(),this.domPlayer&&(this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish())}reset(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}_resetDomPlayerState(){this.domPlayer?.cancel()}restart(){this.reset(),this.play()}hasStarted(){return this._started}destroy(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(F=>F()),this._onDestroyFns=[])}setPosition(F){this.domPlayer||this.init(),this.domPlayer&&(this.domPlayer.currentTime=F*this.time)}getPosition(){return this.domPlayer?+(this.domPlayer.currentTime??0)/this.time:this._initialized?1:0}get totalTime(){return this._delay+this._duration}beforeDestroy(){const F=new Map;this.hasStarted()&&this._finalKeyframe.forEach((H,Y)=>{"offset"!==Y&&F.set(Y,this._finished?H:Dn(this.element,Y))}),this.currentSnapshot=F}triggerCallback(F){const L="start"===F?this._onStartFns:this._onDoneFns;L.forEach(H=>H()),L.length=0}}class vn{validateStyleProperty(F){return!0}validateAnimatableStyleProperty(F){return!0}containsElement(F,L){return Ye(F,L)}getParentElement(F){return Ue(F)}query(F,L,H){return Nt(F,L,H)}computeStyle(F,L,H){return Dn(F,L)}animate(F,L,H,Y,ie,et=[]){const $t={duration:H,delay:Y,fill:0==Y?"both":"forwards"};ie&&($t.easing=ie);const Ei=new Map,zi=et.filter(Bn=>Bn instanceof Li);(function ki(z,F){return 0===z||0===F})(H,Y)&&zi.forEach(Bn=>{Bn.currentSnapshot.forEach((pn,gn)=>Ei.set(gn,pn))});let Vi=function zn(z){return z.length?z[0]instanceof Map?z:z.map(F=>new Map(Object.entries(F))):[]}(L).map(Bn=>new Map(Bn));Vi=function Ki(z,F,L){if(L.size&&F.length){let H=F[0],Y=[];if(L.forEach((ie,et)=>{H.has(et)||Y.push(et),H.set(et,ie)}),Y.length)for(let ie=1;ieet.set(Bt,Dn(z,Bt)))}}return F}(F,Vi,Ei);const un=function Wt(z,F){let L=null,H=null;return Array.isArray(F)&&F.length?(L=ft(F[0]),F.length>1&&(H=ft(F[F.length-1]))):F instanceof Map&&(L=ft(F)),L||H?new Ri(z,L,H):null}(F,Vi);return new Li(F,Vi,$t,un)}}const At="@.disabled";class mi{namespaceId;delegate;engine;_onDestroy;\u0275type=0;constructor(F,L,H,Y){this.namespaceId=F,this.delegate=L,this.engine=H,this._onDestroy=Y}get data(){return this.delegate.data}destroyNode(F){this.delegate.destroyNode?.(F)}destroy(){this.engine.destroy(this.namespaceId,this.delegate),this.engine.afterFlushAnimationsDone(()=>{queueMicrotask(()=>{this.delegate.destroy()})}),this._onDestroy?.()}createElement(F,L){return this.delegate.createElement(F,L)}createComment(F){return this.delegate.createComment(F)}createText(F){return this.delegate.createText(F)}appendChild(F,L){this.delegate.appendChild(F,L),this.engine.onInsert(this.namespaceId,L,F,!1)}insertBefore(F,L,H,Y=!0){this.delegate.insertBefore(F,L,H),this.engine.onInsert(this.namespaceId,L,F,Y)}removeChild(F,L,H,Y){Y?this.delegate.removeChild(F,L,H,Y):this.parentNode(L)&&this.engine.onRemove(this.namespaceId,L,this.delegate)}selectRootElement(F,L){return this.delegate.selectRootElement(F,L)}parentNode(F){return this.delegate.parentNode(F)}nextSibling(F){return this.delegate.nextSibling(F)}setAttribute(F,L,H,Y){this.delegate.setAttribute(F,L,H,Y)}removeAttribute(F,L,H){this.delegate.removeAttribute(F,L,H)}addClass(F,L){this.delegate.addClass(F,L)}removeClass(F,L){this.delegate.removeClass(F,L)}setStyle(F,L,H,Y){this.delegate.setStyle(F,L,H,Y)}removeStyle(F,L,H){this.delegate.removeStyle(F,L,H)}setProperty(F,L,H){"@"==L.charAt(0)&&L==At?this.disableAnimations(F,!!H):this.delegate.setProperty(F,L,H)}setValue(F,L){this.delegate.setValue(F,L)}listen(F,L,H,Y){return this.delegate.listen(F,L,H,Y)}disableAnimations(F,L){this.engine.disableAnimations(F,L)}}class Rn extends mi{factory;constructor(F,L,H,Y,ie){super(L,H,Y,ie),this.factory=F,this.namespaceId=L}setProperty(F,L,H){"@"==L.charAt(0)?"."==L.charAt(1)&&L==At?this.disableAnimations(F,H=void 0===H||!!H):this.engine.process(this.namespaceId,F,L.slice(1),H):this.delegate.setProperty(F,L,H)}listen(F,L,H,Y){if("@"==L.charAt(0)){const ie=function ea(z){switch(z){case"body":return document.body;case"document":return document;case"window":return window;default:return z}}(F);let et=L.slice(1),Bt="";return"@"!=et.charAt(0)&&([et,Bt]=function lr(z){const F=z.indexOf(".");return[z.substring(0,F),z.slice(F+1)]}(et)),this.engine.listen(this.namespaceId,ie,et,Bt,$t=>{this.factory.scheduleListenerCallback($t._data||-1,H,$t)})}return this.delegate.listen(F,L,H,Y)}}class Ts{delegate;engine;_zone;_currentId=0;_microtaskId=1;_animationCallbacksBuffer=[];_rendererCache=new Map;_cdRecurDepth=0;constructor(F,L,H){this.delegate=F,this.engine=L,this._zone=H,L.onRemovalComplete=(Y,ie)=>{ie?.removeChild(null,Y)}}createRenderer(F,L){const Y=this.delegate.createRenderer(F,L);if(!F||!L?.data?.animation){const Ei=this._rendererCache;let zi=Ei.get(Y);return zi||(zi=new mi("",Y,this.engine,()=>Ei.delete(Y)),Ei.set(Y,zi)),zi}const ie=L.id,et=L.id+"-"+this._currentId;this._currentId++,this.engine.register(et,F);const Bt=Ei=>{Array.isArray(Ei)?Ei.forEach(Bt):this.engine.registerTrigger(ie,et,F,Ei.name,Ei)};return L.data.animation.forEach(Bt),new Rn(this,et,Y,this.engine)}begin(){this._cdRecurDepth++,this.delegate.begin&&this.delegate.begin()}_scheduleCountTask(){queueMicrotask(()=>{this._microtaskId++})}scheduleListenerCallback(F,L,H){if(F>=0&&FL(H));const Y=this._animationCallbacksBuffer;0==Y.length&&queueMicrotask(()=>{this._zone.run(()=>{Y.forEach(ie=>{const[et,Bt]=ie;et(Bt)}),this._animationCallbacksBuffer=[]})}),Y.push([L,H])}end(){this._cdRecurDepth--,0==this._cdRecurDepth&&this._zone.runOutsideAngular(()=>{this._scheduleCountTask(),this.engine.flush(this._microtaskId)}),this.delegate.end&&this.delegate.end()}whenRenderingDone(){return this.engine.whenRenderingDone()}componentReplaced(F){this.engine.flush(),this.delegate.componentReplaced?.(F)}}const Ds=[{provide:Fn,useFactory:function Gs(){return new Ci}},{provide:Oa,useClass:(()=>{class z extends Oa{constructor(L,H,Y){super(L,H,Y)}ngOnDestroy(){this.flush()}static \u0275fac=function(H){return new(H||z)(p.KVO(p.qQL),p.KVO(An),p.KVO(Fn))};static \u0275prov=p.jDH({token:z,factory:z.\u0275fac})}return z})()},{provide:e._9s,useFactory:function Oo(z,F,L){return new Ts(z,F,L)},deps:[g.mE,Oa,e.SKi]}],ro=[{provide:An,useClass:En},{provide:e.bc$,useValue:"NoopAnimations"},...Ds],As=[{provide:An,useFactory:()=>new vn},{provide:e.bc$,useFactory:()=>"BrowserAnimations"},...Ds];let Os=(()=>{class z{static withConfig(L){return{ngModule:z,providers:L.disableAnimations?ro:As}}static \u0275fac=function(H){return new(H||z)};static \u0275mod=e.$C({type:z});static \u0275inj=p.G2t({providers:As,imports:[h]})}return z})();var Sr=l(99327),Ua=l(29330),qi=l(59640),Fo=l(11747),yo=l(983),bo=l(71985),Fs=l(7673),xo=l(57786),dl=l(47242),ul=l(92771),jl=l(97647),cr=l(5964),us=l(96354),so=l(70274),Wl=l(43236),Dl=l(28211),qo=l(39974),Al=l(58750),Ll=l(81853),Rr=l(54360),hl=l(45225);const fl=(0,Ll.L)(z=>function(L=null){z(this),this.message="Timeout has occurred",this.name="TimeoutError",this.info=L});function No(z){throw new fl(z)}var Il=l(70152),xs=l(99437),js=l(96697),wn=l(56977),Ws=l(25558),Bo=l(65245),Xl=l(40941),el=l(53993),ml=l(31943),pl=l(89079);const Co="PERFORM_ACTION",Xs="ROLLBACK",Uo="TOGGLE_ACTION",lo="JUMP_TO_STATE",Ys="JUMP_TO_ACTION",_l="IMPORT_STATE",Vo="LOCK_CHANGES",vl="PAUSE_RECORDING";class Ho{constructor(F,L){if(this.action=F,this.timestamp=L,this.type=Co,typeof F.type>"u")throw new Error('Actions may not have an undefined "type" property. Have you misspelled a constant?')}}class zr{constructor(){this.type="REFRESH"}}class cd{constructor(F){this.timestamp=F,this.type="RESET"}}class yl{constructor(F){this.timestamp=F,this.type=Xs}}class jc{constructor(F){this.timestamp=F,this.type="COMMIT"}}class we{constructor(){this.type="SWEEP"}}class je{constructor(F){this.id=F,this.type=Uo}}class We{constructor(F){this.index=F,this.type=lo}}class _t{constructor(F){this.actionId=F,this.type=Ys}}class Ut{constructor(F){this.nextLiftedState=F,this.type=_l}}class ri{constructor(F){this.status=F,this.type=Vo}}class Di{constructor(F){this.status=F,this.type=vl}}const On=new p.nKC("@ngrx/store-devtools Options"),Ma=new p.nKC("@ngrx/store-devtools Initial Config");function yr(){return null}function co(z){const F={maxAge:!1,monitor:yr,actionSanitizer:void 0,stateSanitizer:void 0,name:"NgRx Store DevTools",serialize:!1,logOnly:!1,autoPause:!1,trace:!1,traceLimit:75,features:{pause:!0,lock:!0,persist:!0,export:!0,import:"custom",jump:!0,skip:!0,reorder:!0,dispatch:!0,test:!0},connectInZone:!1},L="function"==typeof z?z():z,Y=L.features||!!L.logOnly&&{pause:!0,export:!0,test:!0}||F.features;!0===Y.import&&(Y.import="custom");const ie=Object.assign({},F,{features:Y},L);if(ie.maxAge&&ie.maxAge<2)throw new Error(`Devtools 'maxAge' cannot be less than 2, got ${ie.maxAge}`);return ie}function ts(z,F){return z.filter(L=>F.indexOf(L)<0)}function Qs(z){const{computedStates:F,currentStateIndex:L}=z;if(L>=F.length){const{state:Y}=F[F.length-1];return Y}const{state:H}=F[L];return H}function uo(z){return new Ho(z,+Date.now())}function bl(z,F){return Object.keys(F).reduce((L,H)=>{const Y=Number(H);return L[Y]=fs(z,F[Y],Y),L},{})}function fs(z,F,L){return{...F,action:z(F.action,L)}}function $d(z,F){return F.map((L,H)=>({state:kl(z,L.state,H),error:L.error}))}function kl(z,F,L){return z(F,L)}function $s(z){return z.predicate||z.actionsSafelist||z.actionsBlocklist}function Kl(z,F,L,H,Y){const ie=L&&!L(z,F.action),et=H&&!F.action.type.match(H.map($t=>Go($t)).join("|")),Bt=Y&&F.action.type.match(Y.map($t=>Go($t)).join("|"));return ie||et||Bt}function Go(z){return z.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function xl(z){return{ngZone:z?(0,p.WQX)(e.SKi):null,connectInZone:z}}let Bs=(()=>{var z;class F extends qi.SS{static#e=z=()=>(this.\u0275fac=(()=>{let H;return function(ie){return(H||(H=e.xGo(F)))(ie||F)}})(),this.\u0275prov=p.jDH({token:F,factory:F.\u0275fac}))}return z(),F})();const tl=new p.nKC("@ngrx/store-devtools Redux Devtools Extension");let Eo=(()=>{var z;class F{constructor(H,Y,ie){this.config=Y,this.dispatcher=ie,this.zoneConfig=xl(this.config.connectInZone),this.devtoolsExtension=H,this.createActionStreams()}notify(H,Y){if(this.devtoolsExtension)if(H.type===Co){if(Y.isLocked||Y.isPaused)return;const ie=Qs(Y);if($s(this.config)&&Kl(ie,H,this.config.predicate,this.config.actionsSafelist,this.config.actionsBlocklist))return;const et=this.config.stateSanitizer?kl(this.config.stateSanitizer,ie,Y.currentStateIndex):ie,Bt=this.config.actionSanitizer?fs(this.config.actionSanitizer,H,Y.nextActionId):H;this.sendToReduxDevtools(()=>this.extensionConnection.send(Bt,et))}else{const ie={...Y,stagedActionIds:Y.stagedActionIds,actionsById:this.config.actionSanitizer?bl(this.config.actionSanitizer,Y.actionsById):Y.actionsById,computedStates:this.config.stateSanitizer?$d(this.config.stateSanitizer,Y.computedStates):Y.computedStates};this.sendToReduxDevtools(()=>this.devtoolsExtension.send(null,ie,this.getExtensionConfig(this.config)))}}createChangesObservable(){return this.devtoolsExtension?new bo.c(H=>{const Y=this.zoneConfig.connectInZone?this.zoneConfig.ngZone.runOutsideAngular(()=>this.devtoolsExtension.connect(this.getExtensionConfig(this.config))):this.devtoolsExtension.connect(this.getExtensionConfig(this.config));return this.extensionConnection=Y,Y.init(),Y.subscribe(ie=>H.next(ie)),Y.unsubscribe}):yo.w}createActionStreams(){const H=this.createChangesObservable().pipe((0,jl.u)()),Y=H.pipe((0,cr.p)(zi=>"START"===zi.type)),ie=H.pipe((0,cr.p)(zi=>"STOP"===zi.type)),et=H.pipe((0,cr.p)(zi=>"DISPATCH"===zi.type),(0,us.T)(zi=>this.unwrapAction(zi.payload)),(0,so.H)(zi=>zi.type===_l?this.dispatcher.pipe((0,cr.p)(Vi=>Vi.type===qi.q6),function oo(z,F){const{first:L,each:H,with:Y=No,scheduler:ie=F??Wl.E,meta:et=null}=(0,Dl.v)(z)?{first:z}:"number"==typeof z?{each:z}:z;if(null==L&&null==H)throw new TypeError("No timeout provided.");return(0,qo.N)((Bt,$t)=>{let Ei,zi,Vi=null,un=0;const Bn=pn=>{zi=(0,hl.N)($t,ie,()=>{try{Ei.unsubscribe(),(0,Al.Tg)(Y({meta:et,lastValue:Vi,seen:un})).subscribe($t)}catch(gn){$t.error(gn)}},pn)};Ei=Bt.subscribe((0,Rr._)($t,pn=>{zi?.unsubscribe(),un++,$t.next(Vi=pn),H>0&&Bn(H)},void 0,void 0,()=>{zi?.closed||zi?.unsubscribe(),Vi=null})),!un&&Bn(null!=L?"number"==typeof L?L:+L-ie.now():H)})}(1e3),(0,Il.B)(1e3),(0,us.T)(()=>zi),(0,xs.W)(()=>(0,Fs.of)(zi)),(0,js.s)(1)):(0,Fs.of)(zi))),$t=H.pipe((0,cr.p)(zi=>"ACTION"===zi.type),(0,us.T)(zi=>this.unwrapAction(zi.payload))).pipe((0,wn.Q)(ie)),Ei=et.pipe((0,wn.Q)(ie));this.start$=Y.pipe((0,wn.Q)(ie)),this.actions$=this.start$.pipe((0,Ws.n)(()=>$t)),this.liftedActions$=this.start$.pipe((0,Ws.n)(()=>Ei))}unwrapAction(H){return"string"==typeof H?(0,eval)(`(${H})`):H}getExtensionConfig(H){const Y={name:H.name,features:H.features,serialize:H.serialize,autoPause:H.autoPause??!1,trace:H.trace??!1,traceLimit:H.traceLimit??75};return!1!==H.maxAge&&(Y.maxAge=H.maxAge),Y}sendToReduxDevtools(H){try{H()}catch(Y){console.warn("@ngrx/store-devtools: something went wrong inside the redux devtools",Y)}}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(p.KVO(tl),p.KVO(On),p.KVO(Bs))},this.\u0275prov=p.jDH({token:F,factory:F.\u0275fac}))}return z(),F})();const jo={type:qi.Zz},nl={type:"@ngrx/store-devtools/recompute"};function Cl(z,F,L,H,Y){if(H)return{state:L,error:"Interrupted by an error up the chain"};let et,ie=L;try{ie=z(L,F)}catch(Bt){et=Bt.toString(),Y.handleError(Bt)}return{state:ie,error:et}}function ho(z,F,L,H,Y,ie,et,Bt,$t){if(F>=z.length&&z.length===ie.length)return z;const Ei=z.slice(0,F),zi=ie.length-($t?1:0);for(let Vi=F;Vi-1?pn:Cl(L,Bn,gn,oa,Bt);Ei.push(er)}return $t&&Ei.push(z[z.length-1]),Ei}let Vr=(()=>{var z;class F{constructor(H,Y,ie,et,Bt,$t,Ei,zi){const Vi=function al(z,F){return{monitorState:F(void 0,{}),nextActionId:1,actionsById:{0:uo(jo)},stagedActionIds:[0],skippedActionIds:[],committedState:z,currentStateIndex:0,computedStates:[],isLocked:!1,isPaused:!1}}(Ei,zi.monitor),un=function wo(z,F,L,H,Y={}){return ie=>(et,Bt)=>{let{monitorState:$t,actionsById:Ei,nextActionId:zi,stagedActionIds:Vi,skippedActionIds:un,committedState:Bn,currentStateIndex:pn,computedStates:gn,isLocked:oa,isPaused:wa}=et||F;function er(dr){let Da=dr,Pr=Vi.slice(1,Da+1);for(let ar=0;ar-1===Pr.indexOf(ar)),Vi=[0,...Vi.slice(Da+1)],Bn=gn[Da].state,gn=gn.slice(Da),pn=pn>Da?pn-Da:0}function qr(){Ei={0:uo(jo)},zi=1,Vi=[0],un=[],Bn=gn[pn].state,pn=0,gn=[]}et||(Ei=Object.create(Ei));let ha=0;switch(Bt.type){case Vo:oa=Bt.status,ha=1/0;break;case vl:wa=Bt.status,wa?(Vi=[...Vi,zi],Ei[zi]=new Ho({type:"@ngrx/devtools/pause"},+Date.now()),zi++,ha=Vi.length-1,gn=gn.concat(gn[gn.length-1]),pn===Vi.length-2&&pn++,ha=1/0):qr();break;case"RESET":Ei={0:uo(jo)},zi=1,Vi=[0],un=[],Bn=z,pn=0,gn=[];break;case"COMMIT":qr();break;case Xs:Ei={0:uo(jo)},zi=1,Vi=[0],un=[],pn=0,gn=[];break;case Uo:{const{id:dr}=Bt;un=-1===un.indexOf(dr)?[dr,...un]:un.filter(Pr=>Pr!==dr),ha=Vi.indexOf(dr);break}case"SET_ACTIONS_ACTIVE":{const{start:dr,end:Da,active:Pr}=Bt,ar=[];for(let Qo=dr;QoY.maxAge&&(gn=ho(gn,ha,ie,Bn,Ei,Vi,un,L,wa),er(Vi.length-Y.maxAge),ha=1/0);break;case qi.q6:if(gn.filter(Da=>Da.error).length>0)ha=0,Y.maxAge&&Vi.length>Y.maxAge&&(gn=ho(gn,ha,ie,Bn,Ei,Vi,un,L,wa),er(Vi.length-Y.maxAge),ha=1/0);else{if(!wa&&!oa){pn===Vi.length-1&&pn++;const Da=zi++;Ei[Da]=new Ho(Bt,+Date.now()),Vi=[...Vi,Da],ha=Vi.length-1,gn=ho(gn,ha,ie,Bn,Ei,Vi,un,L,wa)}gn=gn.map(Da=>({...Da,state:ie(Da.state,nl)})),pn=Vi.length-1,Y.maxAge&&Vi.length>Y.maxAge&&er(Vi.length-Y.maxAge),ha=1/0}break;default:ha=1/0}return gn=ho(gn,ha,ie,Bn,Ei,Vi,un,L,wa),$t=H($t,Bt),{monitorState:$t,actionsById:Ei,nextActionId:zi,stagedActionIds:Vi,skippedActionIds:un,committedState:Bn,currentStateIndex:pn,computedStates:gn,isLocked:oa,isPaused:wa}}}(Ei,Vi,$t,zi.monitor,zi),Bn=(0,xo.h)((0,xo.h)(Y.asObservable().pipe((0,Bo.i)(1)),et.actions$).pipe((0,us.T)(uo)),H,et.liftedActions$).pipe((0,Xl.Q)(dl.T)),pn=ie.pipe((0,us.T)(un)),gn=xl(zi.connectInZone),oa=new ul.m(1);this.liftedStateSubscription=Bn.pipe((0,el.E)(pn),Zr(gn),(0,ml.S)(({state:qr},[ha,dr])=>{let Da=dr(qr,ha);return ha.type!==Co&&$s(zi)&&(Da=function Zd(z,F,L,H){const Y=[],ie={},et=[];return z.stagedActionIds.forEach((Bt,$t)=>{const Ei=z.actionsById[Bt];Ei&&($t&&Kl(z.computedStates[$t],Ei,F,L,H)||(ie[Bt]=Ei,Y.push(Bt),et.push(z.computedStates[$t])))}),{...z,stagedActionIds:Y,actionsById:ie,computedStates:et}}(Da,zi.predicate,zi.actionsSafelist,zi.actionsBlocklist)),et.notify(ha,Da),{state:Da,action:ha}},{state:Vi,action:null})).subscribe(({state:qr,action:ha})=>{oa.next(qr),ha.type===Co&&Bt.next(ha.action)}),this.extensionStartSubscription=et.start$.pipe(Zr(gn)).subscribe(()=>{this.refresh()});const wa=oa.asObservable(),er=wa.pipe((0,us.T)(Qs));Object.defineProperty(er,"state",{value:(0,pl.ot)(er,{manualCleanup:!0,requireSync:!0})}),this.dispatcher=H,this.liftedState=wa,this.state=er}ngOnDestroy(){this.liftedStateSubscription.unsubscribe(),this.extensionStartSubscription.unsubscribe()}dispatch(H){this.dispatcher.next(H)}next(H){this.dispatcher.next(H)}error(H){}complete(){}performAction(H){this.dispatch(new Ho(H,+Date.now()))}refresh(){this.dispatch(new zr)}reset(){this.dispatch(new cd(+Date.now()))}rollback(){this.dispatch(new yl(+Date.now()))}commit(){this.dispatch(new jc(+Date.now()))}sweep(){this.dispatch(new we)}toggleAction(H){this.dispatch(new je(H))}jumpToAction(H){this.dispatch(new _t(H))}jumpToState(H){this.dispatch(new We(H))}importState(H){this.dispatch(new Ut(H))}lockChanges(H){this.dispatch(new ri(H))}pauseRecording(H){this.dispatch(new Di(H))}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(p.KVO(Bs),p.KVO(qi.SS),p.KVO(qi.QU),p.KVO(Eo),p.KVO(qi.sA),p.KVO(p.zcH),p.KVO(qi.N_),p.KVO(On))},this.\u0275prov=p.jDH({token:F,factory:F.\u0275fac}))}return z(),F})();function Zr({ngZone:z,connectInZone:F}){return L=>F?new bo.c(H=>L.subscribe({next:Y=>z.run(()=>H.next(Y)),error:Y=>z.run(()=>H.error(Y)),complete:()=>z.run(()=>H.complete())})):L}const hc=new p.nKC("@ngrx/store-devtools Is Devtools Extension or Monitor Present");function fc(z,F){return!!z||F.monitor!==yr}function Ml(){const z="__REDUX_DEVTOOLS_EXTENSION__";return"object"==typeof window&&typeof window[z]<"u"?window[z]:null}function zs(z){return z.state}function El(z={}){return(0,p.EmA)([Eo,Bs,Vr,{provide:Ma,useValue:z},{provide:hc,deps:[tl,On],useFactory:fc},{provide:tl,useFactory:Ml},{provide:On,deps:[Ma],useFactory:co},{provide:qi.h1,deps:[Vr],useFactory:zs},{provide:qi.Bh,useExisting:Bs}])}let So=(()=>{var z;class F{static instrument(H={}){return{ngModule:F,providers:[El(H)]}}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)},this.\u0275mod=e.$C({type:F}),this.\u0275inj=p.G2t({}))}return z(),F})();var hn=l(21413),Rl=l(33726),dd=l(22806),mc=l(1807);function To(z=0,F=Wl.E){return z<0&&(z=0),(0,mc.O)(z,z,F)}var Ol=l(18359),pc=l(57908),Pl=l(9326),Ql=l(88141),Fl=l(70980),Zs=l(23294);class wl{}function ud(z){return(0,p.EmA)([{provide:wl,useValue:z}])}let gc=(()=>{class z{constructor(L,H){this._ngZone=H,this.timerStart$=new hn.B,this.idleDetected$=new hn.B,this.timeout$=new hn.B,this.idleMillisec=6e5,this.idleSensitivityMillisec=1e3,this.timeout=300,this.pingMillisec=12e4,this.isTimeout=!1,this.isInactivityTimer=!1,this.isIdleDetected=!1,L&&this.setConfig(L)}startWatching(){this.activityEvents$||(this.activityEvents$=(0,xo.h)((0,Rl.R)(window,"mousemove"),(0,Rl.R)(window,"resize"),(0,Rl.R)(document,"keydown"))),this.idle$=(0,dd.H)(this.activityEvents$),this.idleSubscription&&this.idleSubscription.unsubscribe(),this.idleSubscription=this.idle$.pipe(function Yl(z,...F){var L,H;const Y=null!==(L=(0,Pl.lI)(F))&&void 0!==L?L:Wl.E,ie=null!==(H=F[0])&&void 0!==H?H:null,et=F[1]||1/0;return(0,qo.N)((Bt,$t)=>{let Ei=[],zi=!1;const Vi=pn=>{const{buffer:gn,subs:oa}=pn;oa.unsubscribe(),(0,pc.o)(Ei,pn),$t.next(gn),zi&&un()},un=()=>{if(Ei){const pn=new Ol.yU;$t.add(pn);const oa={buffer:[],subs:pn};Ei.push(oa),(0,hl.N)(pn,Y,()=>Vi(oa),z)}};null!==ie&&ie>=0?(0,hl.N)($t,Y,un,ie,!0):zi=!0,un();const Bn=(0,Rr._)($t,pn=>{const gn=Ei.slice();for(const oa of gn){const{buffer:wa}=oa;wa.push(pn),et<=wa.length&&Vi(oa)}},()=>{for(;Ei?.length;)$t.next(Ei.shift().buffer);Bn?.unsubscribe(),$t.complete(),$t.unsubscribe()},void 0,()=>Ei=null);Bt.subscribe(Bn)})}(this.idleSensitivityMillisec),(0,cr.p)(L=>!L.length&&!this.isIdleDetected&&!this.isInactivityTimer),(0,Ql.M)(()=>{this.isIdleDetected=!0,this.idleDetected$.next(!0)}),(0,Ws.n)(()=>this._ngZone.runOutsideAngular(()=>To(1e3).pipe((0,wn.Q)((0,xo.h)(this.activityEvents$,(0,mc.O)(this.idleMillisec).pipe((0,Ql.M)(()=>{this.isInactivityTimer=!0,this.timerStart$.next(!0)})))),(0,Fl.j)(()=>{this.isIdleDetected=!1,this.idleDetected$.next(!1)}))))).subscribe(),this.setupTimer(this.timeout),this.setupPing(this.pingMillisec)}stopWatching(){this.stopTimer(),this.idleSubscription&&this.idleSubscription.unsubscribe()}stopTimer(){this.isInactivityTimer=!1,this.timerStart$.next(!1)}resetTimer(){this.stopTimer(),this.isTimeout=!1}onTimerStart(){return this.timerStart$.pipe((0,Zs.F)(),(0,Ws.n)(L=>L?this.timer$:(0,Fs.of)(null)))}onIdleStatusChanged(){return this.idleDetected$.asObservable()}onTimeout(){return this.timeout$.pipe((0,cr.p)(L=>!!L),(0,Ql.M)(()=>this.isTimeout=!0),(0,us.T)(()=>!0))}getConfigValue(){return{idle:this.idleMillisec/1e3,idleSensitivity:this.idleSensitivityMillisec/1e3,timeout:this.timeout,ping:this.pingMillisec/1e3}}setConfigValues(L){!this.idleSubscription||this.idleSubscription.closed?this.setConfig(L):console.error("Call stopWatching() before set config values")}setConfig(L){L.idle&&(this.idleMillisec=1e3*L.idle),L.ping&&(this.pingMillisec=1e3*L.ping),L.idleSensitivity&&(this.idleSensitivityMillisec=1e3*L.idleSensitivity),L.timeout&&(this.timeout=L.timeout)}setCustomActivityEvents(L){!this.idleSubscription||this.idleSubscription.closed?this.activityEvents$=L:console.error("Call stopWatching() before set custom activity events")}setupTimer(L){this._ngZone.runOutsideAngular(()=>{this.timer$=(0,Fs.of)(()=>new Date).pipe((0,us.T)(H=>H()),(0,Ws.n)(H=>To(1e3).pipe((0,us.T)(()=>Math.round(((new Date).valueOf()-H.valueOf())/1e3)),(0,Ql.M)(Y=>{Y>=L&&this.timeout$.next(!0)}))))})}setupPing(L){this.ping$=To(L).pipe((0,cr.p)(()=>!this.isTimeout))}}return z.\u0275fac=function(L){return new(L||z)(p.KVO(wl,8),p.KVO(e.SKi))},z.\u0275prov=p.jDH({token:z,factory:z.\u0275fac,providedIn:"root"}),z})();var Wo=l(38132),Ja=l(43694),Mn=l(45383),Va=l(79647),Tr=l(20060),Ea=l(25596),bn=l(52920),Dr=l(96850);const $l=()=>({initial:!1});function _c(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",11),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.activeLink=Y.links[1].link)}),e.EFF(1),e.k0s()}if(2&z){const L=e.XpG();e.Y8G("routerLink",e.mNQ(L.links[1].link))("active",L.activeLink===L.links[1].link)("state",e.lJ4(5,$l)),e.R7$(),e.JRh(L.links[1].name)}}function Do(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",12),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.activeLink=Y.links[2].link)}),e.EFF(1),e.k0s()}if(2&z){const L=e.XpG();e.Y8G("routerLink",e.mNQ(L.links[2].link))("active",L.activeLink===L.links[2].link),e.R7$(),e.JRh(L.links[2].name)}}let is=(()=>{var z;class F{constructor(H,Y){this.store=H,this.router=Y,this.faUserCog=Mn.McB,this.showBitcoind=!1,this.links=[{link:"app",name:"Application"},{link:"auth",name:"Authentication"},{link:"bconfig",name:"BitcoinD Config"}],this.activeLink="",this.unSubs=[new hn.B,new hn.B,new hn.B]}ngOnInit(){const H=this.links.find(Y=>this.router.url.includes(Y.link));this.activeLink=H?H.link:this.links[0].link,this.router.events.pipe((0,wn.Q)(this.unSubs[0]),(0,cr.p)(Y=>Y instanceof Ja.gx)).subscribe({next:Y=>{const ie=this.links.find(et=>Y.urlAfterRedirects.includes(et.link));this.activeLink=ie?ie.link:this.links[0].link}}),this.store.select(Va.qv).pipe((0,wn.Q)(this.unSubs[1])).subscribe(Y=>{this.appConfig=Y}),this.store.select(Va._c).pipe((0,wn.Q)(this.unSubs[2])).subscribe(Y=>{this.showBitcoind=!1,this.selNode=Y,this.selNode.settings&&this.selNode.settings.bitcoindConfigPath&&""!==this.selNode.settings.bitcoindConfigPath.trim()&&(this.showBitcoind=!0)})}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(null),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(qi.il),e.rXU(Ja.Ix))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-settings"]],standalone:!1,decls:16,vars:8,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","2","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","state","click",4,"ngIf"],["role","tab","tabindex","3","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active","state"],["role","tab","tabindex","3","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(Y,ie){if(1&Y){const et=e.RV6();e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Settings"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6)(8,"div",7),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.activeLink=ie.links[0].link)}),e.EFF(9),e.k0s(),e.DNE(10,_c,2,6,"div",8)(11,Do,2,4,"div",9),e.k0s(),e.nrm(12,"mat-tab-nav-panel",null,0),e.j41(14,"div",10),e.nrm(15,"router-outlet"),e.k0s()()()()}if(2&Y){const et=e.sdS(13);e.R7$(),e.Y8G("icon",ie.faUserCog),e.R7$(6),e.Y8G("tabPanel",et),e.R7$(),e.Y8G("routerLink",e.mNQ(ie.links[0].link))("active",ie.activeLink===ie.links[0].link),e.R7$(),e.JRh(ie.links[0].name),e.R7$(),e.Y8G("ngIf",!+ie.appConfig.SSO.rtlSSO),e.R7$(),e.Y8G("ngIf",ie.showBitcoind)}},dependencies:[c.bT,Tr.aY,Ea.RN,Ea.m2,bn.DJ,bn.sA,bn.UI,Dr.Bu,Dr.hQ,Dr.Ql,Ja.n3,Wo.Wk],encapsulation:2}))}return z(),F})();var Nn=l(11771),ir=l(98570),cn=l(89417),Hr=l(88834),ra=l(69588),De=l(96183),pt=l(23029),Yt=l(10497),Pi=l(89587);function rn(z,F){if(1&z&&(e.j41(0,"mat-option",15),e.EFF(1),e.k0s()),2&z){const L=F.$implicit;e.Y8G("value",L.index),e.R7$(),e.Lme(" ",L.lnNode," (",L.lnImplementation,") ")}}function In(z,F){if(1&z){const L=e.RV6();e.j41(0,"form",3,0)(2,"div",4),e.nrm(3,"fa-icon",5),e.j41(4,"span",6),e.EFF(5,"Default Node"),e.k0s()(),e.j41(6,"div",7)(7,"div",8)(8,"mat-form-field",9)(9,"mat-select",10),e.mxI("ngModelChange",function(Y){p.eBV(L);const ie=e.XpG();return e.DH7(ie.appConfig.defaultNodeIndex,Y)||(ie.appConfig.defaultNodeIndex=Y),p.Njj(Y)}),e.DNE(10,rn,2,3,"mat-option",11),e.k0s()()(),e.j41(11,"div",12)(12,"div",8)(13,"button",13),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.onResetSettings())}),e.EFF(14,"Reset"),e.k0s(),e.j41(15,"button",14),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.onUpdateApplicationSettings())}),e.EFF(16,"Update"),e.k0s()()()()()}if(2&z){const L=e.XpG();e.R7$(3),e.Y8G("icon",L.faWindowRestore),e.R7$(6),e.R50("ngModel",L.appConfig.defaultNodeIndex),e.R7$(),e.Y8G("ngForOf",L.appConfig.nodes)}}let Qa=(()=>{var z;class F{constructor(H,Y){this.logger=H,this.store=Y,this.faWindowRestore=Mn.aFw,this.faPlus=Mn.QLR,this.previousDefaultNode=0,this.unSubs=[new hn.B,new hn.B]}ngOnInit(){this.store.select(Va.qv).pipe((0,wn.Q)(this.unSubs[0])).subscribe(H=>{this.appConfig=H,this.previousDefaultNode=this.appConfig.defaultNodeIndex,this.logger.info(H)})}onAddNewNode(){this.logger.warn("ADD NEW NODE")}onUpdateApplicationSettings(){this.appConfig.defaultNodeIndex=this.appConfig.defaultNodeIndex?this.appConfig.defaultNodeIndex:this.appConfig&&this.appConfig.nodes&&this.appConfig.nodes.length&&this.appConfig.nodes.length>0&&this.appConfig.nodes[0].index?+this.appConfig.nodes[0].index:-1,this.store.dispatch((0,Nn.rc)({payload:{showSnackBar:!0,message:"Default Node Updated.",config:this.appConfig}}))}onResetSettings(){this.appConfig.defaultNodeIndex=this.previousDefaultNode}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(ir.gP),e.rXU(qi.il))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-app-settings"]],standalone:!1,decls:2,vars:1,consts:[["form","ngForm"],["fxLayout","column","fxFlex","100",1,"padding-gap-x-large",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","settings-container page-sub-title-container mt-1",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"my-2"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start start"],["autoFocus","","tabindex","1","name","defaultNode",3,"ngModelChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],[3,"value"]],template:function(Y,ie){1&Y&&(e.j41(0,"div",1),e.DNE(1,In,17,3,"form",2),e.k0s()),2&Y&&(e.R7$(),e.Y8G("ngIf",ie.appConfig.nodes&&ie.appConfig.nodes.length&&ie.appConfig.nodes.length>0))},dependencies:[c.Sq,c.bT,cn.qT,cn.BC,cn.cb,cn.vS,cn.cV,Tr.aY,Hr.$z,ra.rl,bn.DJ,bn.sA,bn.UI,De.VO,pt.wT,Yt.Ld,Pi.N],encapsulation:2}))}return z(),F})();var Ar=l(82852),$a=l(51585),Za=l(31264),ms=l(37541),hd=l(95416),fo=l(33746),Xo=l(36013),fd=l(38288),Zl=l(29157);const K1=["stepper"];function Nl(z,F){if(1&z&&e.EFF(0),2&z){const L=e.XpG();e.JRh(L.passwordFormLabel)}}function _2(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function Jd(z,F){if(1&z&&e.EFF(0),2&z){const L=e.XpG(2);e.JRh(L.secretFormLabel)}}function v2(z,F){if(1&z&&e.nrm(0,"qr-code",33),2&z){const L=e.XpG(2);e.Y8G("value",L.otpauth)("size",180)}}function sl(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Secret Code is required."),e.k0s())}function Wc(z,F){if(1&z){const L=e.RV6();e.j41(0,"mat-step",10)(1,"form",22),e.DNE(2,Jd,1,1,"ng-template",23),e.j41(3,"div",24),e.DNE(4,v2,1,2,"qr-code",25),e.k0s(),e.j41(5,"div",26),e.nrm(6,"fa-icon",27),e.j41(7,"span"),e.EFF(8,"You can use a compatible authentication app to get an authentication code when you log in to RTL. e.g.: Google Authenticator."),e.k0s()(),e.j41(9,"div",28)(10,"mat-form-field",13)(11,"mat-label"),e.EFF(12,"Secret Code"),e.k0s(),e.nrm(13,"input",29),e.j41(14,"fa-icon",30),e.bIt("copied",function(Y){p.eBV(L);const ie=e.XpG();return p.Njj(ie.onCopySecret(Y))}),e.k0s(),e.DNE(15,sl,2,0,"mat-error",15),e.k0s()(),e.j41(16,"div",31)(17,"button",32),e.EFF(18,"Next"),e.k0s()()()()}if(2&z){const L=e.XpG();e.Y8G("stepControl",L.secretFormGroup)("editable",L.flgEditable),e.R7$(),e.Y8G("formGroup",L.secretFormGroup),e.R7$(3),e.Y8G("ngIf",L.otpauth),e.R7$(2),e.Y8G("icon",L.faInfoCircle),e.R7$(8),e.Y8G("icon",L.faCopy)("payload",null==L.secretFormGroup||null==L.secretFormGroup.controls||null==L.secretFormGroup.controls.secret?null:L.secretFormGroup.controls.secret.value),e.R7$(),e.Y8G("ngIf",null==L.secretFormGroup||null==L.secretFormGroup.controls||null==L.secretFormGroup.controls.secret||null==L.secretFormGroup.controls.secret.errors?null:L.secretFormGroup.controls.secret.errors.required)}}function qd(z,F){if(1&z&&e.EFF(0),2&z){const L=e.XpG(2);e.JRh(L.tokenFormLabel)}}function y2(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Token is required."),e.k0s())}function b2(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Token is invalid."),e.k0s())}function vc(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",8)(1,"div",28)(2,"mat-form-field",13)(3,"mat-label"),e.EFF(4,"Token"),e.k0s(),e.nrm(5,"input",37),e.DNE(6,y2,2,0,"mat-error",15)(7,b2,2,0,"mat-error",15),e.k0s()(),e.j41(8,"div",31)(9,"button",38),e.bIt("click",function(){p.eBV(L);const Y=e.XpG(2);return p.Njj(Y.onVerifyToken())}),e.EFF(10),e.k0s()()()}if(2&z){const L=e.XpG(2);e.R7$(6),e.Y8G("ngIf",null==L.tokenFormGroup||null==L.tokenFormGroup.controls||null==L.tokenFormGroup.controls.token||null==L.tokenFormGroup.controls.token.errors?null:L.tokenFormGroup.controls.token.errors.required),e.R7$(),e.Y8G("ngIf",null==L.tokenFormGroup||null==L.tokenFormGroup.controls||null==L.tokenFormGroup.controls.token||null==L.tokenFormGroup.controls.token.errors?null:L.tokenFormGroup.controls.token.errors.notValid),e.R7$(3),e.JRh(null!=L.tokenFormGroup&&null!=L.tokenFormGroup.controls&&null!=L.tokenFormGroup.controls.token&&null!=L.tokenFormGroup.controls.token.errors&&L.tokenFormGroup.controls.token.errors.notValid?"Retry":"Verify")}}function Y1(z,F){1&z&&(e.j41(0,"div")(1,"strong"),e.EFF(2,"Success! You are all set."),e.k0s()())}function Q1(z,F){if(1&z&&(e.j41(0,"mat-step",34)(1,"form",35),e.DNE(2,qd,1,1,"ng-template",12)(3,vc,11,3,"div",36)(4,Y1,3,0,"div",15),e.k0s()()),2&z){const L=e.XpG();e.Y8G("stepControl",L.tokenFormGroup),e.R7$(),e.Y8G("formGroup",L.tokenFormGroup),e.R7$(2),e.Y8G("ngIf",!L.flgValidated||!L.isTokenValid),e.R7$(),e.Y8G("ngIf",L.flgValidated&&L.isTokenValid)}}function Qe(z,F){if(1&z&&e.EFF(0),2&z){const L=e.XpG(2);e.JRh(L.disableFormLabel)}}function Dt(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",8)(1,"div",39),e.nrm(2,"fa-icon",27),e.j41(3,"span"),e.EFF(4,"You are about to disable two-factor authentication security from RTL. Are you sure you want to turn it off?"),e.k0s()(),e.j41(5,"div",31)(6,"button",38),e.bIt("click",function(){p.eBV(L);const Y=e.XpG(2);return p.Njj(Y.onVerifyToken())}),e.EFF(7,"Disable"),e.k0s()()()}if(2&z){const L=e.XpG(2);e.R7$(2),e.Y8G("icon",L.faExclamationTriangle)}}function St(z,F){1&z&&(e.j41(0,"div")(1,"strong"),e.EFF(2,"Two factor authentication removed from RTL."),e.k0s()())}function Ot(z,F){if(1&z&&(e.j41(0,"mat-step",34)(1,"form",35),e.DNE(2,Qe,1,1,"ng-template",12)(3,Dt,8,1,"div",36)(4,St,3,0,"div",15),e.k0s()()),2&z){const L=e.XpG();e.Y8G("stepControl",L.disableFormGroup),e.R7$(),e.Y8G("formGroup",L.disableFormGroup),e.R7$(2),e.Y8G("ngIf",!L.flgValidated||!L.isTokenValid),e.R7$(),e.Y8G("ngIf",L.flgValidated&&L.isTokenValid)}}let si=(()=>{var z;class F{constructor(H,Y,ie,et,Bt,$t){this.dialogRef=H,this.data=Y,this.store=ie,this.formBuilder=et,this.rtlEffects=Bt,this.snackBar=$t,this.faExclamationTriangle=Mn.zpE,this.faCopy=Mn.jPR,this.faInfoCircle=Mn.iW_,this.flgValidated=!1,this.isTokenValid=!0,this.otpauth="",this.appConfig=null,this.flgEditable=!0,this.showDisableStepper=!1,this.passwordFormLabel="Authenticate with your RTL password",this.secretFormLabel="Scan or copy the secret",this.tokenFormLabel="Verify your authentication is working",this.disableFormLabel="Disable two factor authentication",this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[cn.k0.required]],password:["",[cn.k0.required]]}),this.secretFormGroup=this.formBuilder.group({secret:[{value:"",disabled:!0},cn.k0.required]}),this.tokenFormGroup=this.formBuilder.group({token:["",cn.k0.required]}),this.disableFormGroup=this.formBuilder.group({}),this.unSubs=[new hn.B,new hn.B]}ngOnInit(){this.appConfig=this.data.appConfig||null,this.showDisableStepper=!!this.appConfig?.enable2FA,this.secretFormGroup=this.formBuilder.group({secret:[{value:this.appConfig?.enable2FA?"":this.generateSecret(),disabled:!0},cn.k0.required]})}generateSecret(){const H=Za.authenticator.generateSecret();return this.otpauth=Za.authenticator.keyuri("","Ride The Lightning (RTL)",H),H}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,Nn.oz)({payload:Ar(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,js.s)(1)).subscribe(H=>{"ERROR"!==H?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onCopySecret(H){this.snackBar.open("Secret code "+this.secretFormGroup.controls.secret.value+" copied.")}onVerifyToken(){if(this.appConfig?.enable2FA)this.appConfig.enable2FA=!1,this.appConfig.secret2FA="",this.store.dispatch((0,Nn.rc)({payload:{showSnackBar:!1,message:"Two factor authentication disabled successfully.",config:this.appConfig}})),this.generateSecret(),this.isTokenValid=!0;else{if(!this.tokenFormGroup.controls.token.value)return!0;if(this.isTokenValid=Za.authenticator.check(this.tokenFormGroup.controls.token.value,this.secretFormGroup.controls.secret.value),!this.isTokenValid)return this.tokenFormGroup.controls.token.setErrors({notValid:!0}),!0;this.appConfig.enable2FA=!0,this.appConfig.secret2FA=this.secretFormGroup.controls.secret.value,this.store.dispatch((0,Nn.rc)({payload:{showSnackBar:!1,message:"Two factor authentication enabled successfully.",config:this.appConfig}})),this.tokenFormGroup.controls.token.setValue("")}this.flgValidated=!0}stepSelectionChanged(H){switch(H.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password";break;case 1:case 2:this.passwordFormLabel="User authenticated successfully"}H.selectedIndex{H.next(),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU($a.CP),e.rXU($a.Vh),e.rXU(qi.il),e.rXU(cn.ze),e.rXU(ms.H),e.rXU(hd.UG))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-two-factor-auth"]],viewQuery:function(Y,ie){if(1&Y&&e.GBs(K1,5),2&Y){let et;e.mGM(et=e.lsd())&&(ie.stepper=et.first)}},standalone:!1,decls:30,vars:11,consts:[["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","15","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","type","password","tabindex","1","formControlName","password","required",""],[4,"ngIf"],["fxLayout","row",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["fxFlex","100",1,"w-100","alert","alert-info"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch"],["autoFocus","","matInput","","type","text","tabindex","4","formControlName","secret","required",""],["matSuffix","","rtlClipboard","",3,"copied","icon","payload"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","6","type","button","matStepperNext",""],["errorCorrectionLevel","L",3,"value","size"],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["fxLayout","column",4,"ngIf"],["autoFocus","","matInput","","type","text","tabindex","7","formControlName","token","required",""],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxFlex","100",1,"w-100","alert","alert-warn"]],template:function(Y,ie){if(1&Y){const et=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Setup Two Factor Authentication"),e.k0s()(),e.j41(6,"button",6),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),e.bIt("selectionChange",function($t){return p.eBV(et),p.Njj(ie.stepSelectionChanged($t))}),e.j41(12,"mat-step",10)(13,"form",11),e.DNE(14,Nl,1,1,"ng-template",12),e.j41(15,"div",1)(16,"mat-form-field",13)(17,"mat-label"),e.EFF(18,"Password"),e.k0s(),e.nrm(19,"input",14),e.DNE(20,_2,2,0,"mat-error",15),e.k0s()(),e.j41(21,"div",16)(22,"button",17),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.onAuthenticate())}),e.EFF(23,"Confirm"),e.k0s()()()(),e.DNE(24,Wc,19,8,"mat-step",18)(25,Q1,5,4,"mat-step",19)(26,Ot,5,4,"mat-step",19),e.k0s(),e.j41(27,"div",20)(28,"button",21),e.EFF(29),e.k0s()()()()()()}2&Y&&(e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(4),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",ie.passwordFormGroup)("editable",ie.flgEditable),e.R7$(),e.Y8G("formGroup",ie.passwordFormGroup),e.R7$(7),e.Y8G("ngIf",null==ie.passwordFormGroup||null==ie.passwordFormGroup.controls||null==ie.passwordFormGroup.controls.password||null==ie.passwordFormGroup.controls.password.errors?null:ie.passwordFormGroup.controls.password.errors.required),e.R7$(4),e.Y8G("ngIf",!ie.showDisableStepper),e.R7$(),e.Y8G("ngIf",!ie.showDisableStepper),e.R7$(),e.Y8G("ngIf",ie.showDisableStepper),e.R7$(2),e.Y8G("mat-dialog-close",!1),e.R7$(),e.JRh(ie.flgValidated&&ie.isTokenValid?"Close":"Cancel"))},dependencies:[c.bT,cn.qT,cn.me,cn.BC,cn.cb,cn.YS,cn.j4,cn.JD,Tr.aY,$a.tx,Hr.$z,Ea.m2,Ea.MM,fo.fg,ra.rl,ra.nJ,ra.TL,ra.yw,bn.DJ,bn.sA,bn.UI,Xo.V5,Xo.Ti,Xo.M6,Xo.F7,fd.Um,Zl.U,Pi.N],encapsulation:2}))}return z(),F})();var ot=l(4416),Ti=l(53202),Ni=l(71997);const $i=["authForm"];function Tn(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Current password is required."),e.k0s())}function Vn(z,F){if(1&z&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&z){const L=e.XpG(2);e.R7$(),e.JRh(L.errorMsg)}}function Hn(z,F){if(1&z&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&z){const L=e.XpG(2);e.R7$(),e.JRh(L.errorConfirmMsg)}}function va(z,F){if(1&z){const L=e.RV6();e.j41(0,"form",12,0)(2,"div",13),e.nrm(3,"fa-icon",6),e.j41(4,"span",7),e.EFF(5,"Password"),e.k0s()(),e.j41(6,"mat-form-field")(7,"mat-label"),e.EFF(8,"Current Password"),e.k0s(),e.j41(9,"input",14),e.mxI("ngModelChange",function(Y){p.eBV(L);const ie=e.XpG();return e.DH7(ie.currPassword,Y)||(ie.currPassword=Y),p.Njj(Y)}),e.k0s(),e.DNE(10,Tn,2,0,"mat-error",15),e.k0s(),e.j41(11,"mat-form-field")(12,"mat-label"),e.EFF(13,"New Password"),e.k0s(),e.j41(14,"input",16),e.mxI("ngModelChange",function(Y){p.eBV(L);const ie=e.XpG();return e.DH7(ie.newPassword,Y)||(ie.newPassword=Y),p.Njj(Y)}),e.k0s(),e.DNE(15,Vn,2,1,"mat-error",15),e.k0s(),e.j41(16,"mat-form-field")(17,"mat-label"),e.EFF(18,"Confirm New Password"),e.k0s(),e.j41(19,"input",17),e.mxI("ngModelChange",function(Y){p.eBV(L);const ie=e.XpG();return e.DH7(ie.confirmPassword,Y)||(ie.confirmPassword=Y),p.Njj(Y)}),e.k0s(),e.DNE(20,Hn,2,1,"mat-error",15),e.k0s(),e.j41(21,"div",18)(22,"button",19),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.onResetPassword())}),e.EFF(23,"Reset"),e.k0s(),e.j41(24,"button",20),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.onChangePassword())}),e.EFF(25,"Change Password"),e.k0s()()()}if(2&z){const L=e.XpG();e.R7$(3),e.Y8G("icon",L.faLock),e.R7$(6),e.R50("ngModel",L.currPassword),e.R7$(),e.Y8G("ngIf",!L.currPassword),e.R7$(4),e.R50("ngModel",L.newPassword),e.R7$(),e.Y8G("ngIf",L.matchOldAndNewPasswords()),e.R7$(4),e.R50("ngModel",L.confirmPassword),e.R7$(),e.Y8G("ngIf",L.matchNewPasswords())}}let ya=(()=>{var z;class F{constructor(H,Y,ie,et,Bt){this.logger=H,this.store=Y,this.actions=ie,this.router=et,this.sessionService=Bt,this.faInfoCircle=Mn.iW_,this.faUserLock=Mn.aAJ,this.faUserClock=Mn.ld_,this.faLock=Mn.DW4,this.currPassword="",this.newPassword="",this.confirmPassword="",this.errorMsg="",this.errorConfirmMsg="",this.initializeNodeData=!1,this.unSubs=[new hn.B,new hn.B,new hn.B]}ngOnInit(){this.initializeNodeData="true"===this.sessionService.getItem("defaultPassword"),this.store.select(Va.qv).pipe((0,wn.Q)(this.unSubs[0])).subscribe(H=>{this.appConfig=H,this.logger.info(this.appConfig)}),this.store.select(Va._c).pipe((0,wn.Q)(this.unSubs[1])).subscribe(H=>{this.selNode=H}),this.actions.pipe((0,wn.Q)(this.unSubs[2]),(0,cr.p)(H=>H.type===ot.aU.RESET_PASSWORD_RES)).subscribe(H=>{if(ot.Ah.includes(this.currPassword.toLowerCase()))switch(this.selNode.lnImplementation?.toUpperCase()){case"CLN":this.router.navigate(["/cln/home"]);break;case"ECL":this.router.navigate(["/ecl/home"]);break;default:this.router.navigate(["/lnd/home"])}this.form&&this.form.resetForm()})}onChangePassword(){if(!this.currPassword||!this.newPassword||!this.confirmPassword||this.currPassword===this.newPassword||this.newPassword!==this.confirmPassword||ot.Ah.includes(this.newPassword.toLowerCase()))return!0;this.store.dispatch((0,Nn.xw)({payload:{currPassword:Ar(this.currPassword).toString(),newPassword:Ar(this.newPassword).toString()}}))}matchOldAndNewPasswords(){let H=!1;return this.form&&this.form.controls&&this.form.controls.newpassword&&(this.newPassword?""!==this.currPassword&&""!==this.newPassword&&this.currPassword===this.newPassword?(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg="Old and New password cannot be same.",H=!0):ot.Ah.includes(this.newPassword.toLowerCase())?(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg=ot.Ah?.reduce((Y,ie,et)=>et{H.next(),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(ir.gP),e.rXU(qi.il),e.rXU(Fo.En),e.rXU(Ja.Ix),e.rXU(Ti.Q))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-auth-settings"]],viewQuery:function(Y,ie){if(1&Y&&e.GBs($i,5),2&Y){let et;e.mGM(et=e.lsd())&&(ie.form=et.first)}},standalone:!1,decls:15,vars:4,consts:[["authForm","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","page-sub-title-container mt-1",4,"ngIf"],[1,"my-2"],["fxLayout","column","fxLayoutAlign","start stretch"],[1,"mb-1","settings-container","page-sub-title-container","mt-1"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"alert","alert-info"],[1,"mt-1","mr-1","alert-icon",3,"icon"],[1,"mt-1"],["mat-flat-button","","color","primary","tabindex","6",1,"mb-2",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-1"],["fxLayout","row","fxLayoutAlign","start start",1,"mb-2"],["autoFocus","","matInput","","type","password","id","currpassword","name","currpassword","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["matInput","","type","password","id","newpassword","name","newpassword","tabindex","2","required","",3,"ngModelChange","ngModel"],["matInput","","type","password","id","confirmpassword","name","confirmpassword","tabindex","3","required","",3,"ngModelChange","ngModel"],["fxLayout","row","fxLayoutAlign","start start",1,"mt-1"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","5","type","submit",3,"click"]],template:function(Y,ie){1&Y&&(e.j41(0,"div",1),e.DNE(1,va,26,7,"form",2),e.nrm(2,"mat-divider",3),e.j41(3,"div",4)(4,"div",5),e.nrm(5,"fa-icon",6),e.j41(6,"span",7),e.EFF(7,"Two Factor Authentication"),e.k0s()(),e.j41(8,"div",8),e.nrm(9,"fa-icon",9),e.j41(10,"span"),e.EFF(11,"Protect your account from unauthorized access by requiring a second authentication method in addition to your password."),e.k0s()(),e.j41(12,"div",10)(13,"button",11),e.bIt("click",function(){return ie.on2FAuth()}),e.EFF(14),e.k0s()()()()),2&Y&&(e.R7$(),e.Y8G("ngIf",null==ie.appConfig?null:ie.appConfig.allowPasswordUpdate),e.R7$(4),e.Y8G("icon",ie.faUserClock),e.R7$(4),e.Y8G("icon",ie.faInfoCircle),e.R7$(5),e.JRh(ie.appConfig.enable2FA?"Disable 2FA":"Enable 2FA"))},dependencies:[c.bT,cn.qT,cn.me,cn.BC,cn.cb,cn.YS,cn.vS,cn.cV,Tr.aY,Hr.$z,fo.fg,ra.rl,ra.nJ,ra.TL,Ni.q,bn.DJ,bn.sA,bn.UI,Pi.N],encapsulation:2}))}return z(),F})();var _r=l(3902);function br(z,F){1&z&&e.nrm(0,"mat-divider",7)}function Ls(z,F){if(1&z&&(e.j41(0,"div",4)(1,"pre",5),e.EFF(2),e.nI1(3,"json"),e.k0s(),e.DNE(4,br,1,0,"mat-divider",6),e.k0s()),2&z){const L=e.XpG();e.R7$(2),e.JRh(e.bMT(3,2,L.configData)),e.R7$(2),e.Y8G("ngIf",""!==L.configData)}}function ns(z,F){if(1&z&&(e.j41(0,"h2"),e.EFF(1),e.k0s()),2&z){const L=e.XpG().$implicit;e.R7$(),e.JRh(L)}}function Js(z,F){if(1&z&&(e.j41(0,"h4",14),e.EFF(1),e.k0s()),2&z){const L=e.XpG().$implicit;e.R7$(),e.JRh(L)}}function mo(z,F){1&z&&e.nrm(0,"mat-divider",15),2&z&&e.Y8G("inset",!0)}function Ko(z,F){if(1&z&&(e.j41(0,"mat-list-item")(1,"mat-card-subtitle",7),e.DNE(2,ns,2,1,"h2",10),e.k0s(),e.j41(3,"mat-card-subtitle",11),e.DNE(4,Js,2,1,"h4",12),e.k0s(),e.DNE(5,mo,1,1,"mat-divider",13),e.k0s()),2&z){const L=F.$implicit;e.R7$(2),e.Y8G("ngIf",L.indexOf("[")>=0),e.R7$(2),e.Y8G("ngIf",L.indexOf("[")<0),e.R7$(),e.Y8G("ngIf",L.indexOf("[")<0)}}function ps(z,F){if(1&z&&(e.j41(0,"div",8)(1,"mat-list"),e.DNE(2,Ko,6,3,"mat-list-item",9),e.k0s()()),2&z){const L=e.XpG();e.R7$(2),e.Y8G("ngForOf",L.configData)}}let Jl=(()=>{var z;class F{constructor(H,Y,ie){this.store=H,this.rtlEffects=Y,this.router=ie,this.configData="",this.fileFormat="INI",this.faCog=Mn.dB,this.unSubs=[new hn.B,new hn.B]}ngOnInit(){this.store.dispatch((0,Nn.Dz)({payload:"bitcoind"})),this.rtlEffects.showLnConfig.pipe((0,wn.Q)(this.unSubs[1])).subscribe(H=>{const Y=H.data;this.fileFormat=H.format,this.configData=""===Y||!Y||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==Y&&Y&&"JSON"===this.fileFormat?Y:"":Y.split("\n")})}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(null),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(qi.il),e.rXU(ms.H),e.rXU(Ja.Ix))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-bitcoin-config"]],standalone:!1,decls:4,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxFlex","100","class","mb-6",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100",1,"mb-6"],[1,"pre-wrap"],["class","my-1",4,"ngIf"],[1,"my-1"],["fxFlex","100"],[4,"ngFor","ngForOf"],[4,"ngIf"],[1,"m-0"],["class","ml-4",4,"ngIf"],[3,"inset",4,"ngIf"],[1,"ml-4"],[3,"inset"]],template:function(Y,ie){1&Y&&(e.j41(0,"div",0)(1,"div",1),e.DNE(2,Ls,5,4,"div",2)(3,ps,3,1,"div",3),e.k0s()()),2&Y&&(e.R7$(2),e.Y8G("ngIf",""!==ie.configData&&"JSON"===ie.fileFormat),e.R7$(),e.Y8G("ngIf",""!==ie.configData&&("INI"===ie.fileFormat||"HOCON"===ie.fileFormat)))},dependencies:[c.Sq,c.bT,Ea.Lc,_r.jt,_r.YE,Ni.q,bn.DJ,bn.sA,bn.UI,c.TG],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}))}return z(),F})();function x2(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}let yc=(()=>{var z;class F{constructor(H,Y,ie){this.dialogRef=H,this.store=Y,this.rtlEffects=ie,this.password="",this.isAuthenticated=!1,this.unSubs=[new hn.B,new hn.B]}ngOnInit(){this.rtlEffects.isAuthorizedRes.pipe((0,js.s)(1)).subscribe(H=>{"ERROR"!==H?(this.isAuthenticated=!0,this.store.dispatch((0,Nn.R$)({payload:this.isAuthenticated}))):this.isAuthenticated=!1})}onAuthenticate(){if(!this.password)return!0;this.store.dispatch((0,Nn.oz)({payload:Ar(this.password)}))}onClose(){this.store.dispatch((0,Nn.R$)({payload:this.isAuthenticated}))}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(null),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU($a.CP),e.rXU(qi.il),e.rXU(ms.H))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-is-authorized"]],standalone:!1,decls:18,vars:2,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","row",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["autoFocus","","matInput","","type","password","id","password","name","password","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","2","type","submit","default","",3,"click"]],template:function(Y,ie){1&Y&&(e.j41(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e.EFF(5,"Authenticate with your RTL Password"),e.k0s()(),e.j41(6,"button",5),e.bIt("click",function(){return ie.onClose()}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",6)(9,"form",7)(10,"mat-form-field")(11,"mat-label"),e.EFF(12,"Password"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(Bt){return e.DH7(ie.password,Bt)||(ie.password=Bt),Bt}),e.k0s(),e.DNE(14,x2,2,0,"mat-error",9),e.k0s(),e.j41(15,"div",10)(16,"button",11),e.bIt("click",function(){return ie.onAuthenticate()}),e.EFF(17,"Confirm"),e.k0s()()()()()()),2&Y&&(e.R7$(13),e.R50("ngModel",ie.password),e.R7$(),e.Y8G("ngIf",!ie.password))},dependencies:[c.bT,cn.qT,cn.me,cn.BC,cn.cb,cn.YS,cn.vS,cn.cV,Hr.$z,Ea.m2,Ea.MM,fo.fg,ra.rl,ra.nJ,ra.TL,bn.DJ,bn.sA,bn.UI,Pi.N],encapsulation:2}))}return z(),F})();const Zu=()=>({initial:!1});function ql(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",13),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.activeLink=Y.links[2].link)}),e.EFF(1),e.k0s()}if(2&z){const L=e.XpG();e.Y8G("routerLink",e.mNQ(L.links[2].link))("active",L.activeLink===L.links[2].link)("state",e.lJ4(5,Zu)),e.R7$(),e.JRh(L.links[2].name)}}function C2(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",14),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.activeLink=Y.links[3].link)}),e.EFF(1),e.k0s()}if(2&z){const L=e.XpG();e.Y8G("routerLink",e.mNQ(L.links[3].link))("active",L.activeLink===L.links[3].link),e.R7$(),e.JRh(L.links[3].name)}}function Bl(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",15),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.showLnConfigClicked())}),e.EFF(1),e.k0s()}if(2&z){const L=e.XpG();e.Y8G("active",L.activeLink===L.links[4].link),e.R7$(),e.JRh(L.links[4].name)}}let m4=(()=>{var z;class F{constructor(H,Y,ie,et){this.store=H,this.router=Y,this.rtlEffects=ie,this.activatedRoute=et,this.faTools=Mn.nsx,this.showLnConfig=!1,this.lnImplementationStr="",this.links=[{link:"nodesettings",name:"Node Settings"},{link:"pglayout",name:"Page Layout"},{link:"services",name:"Services"},{link:"experimental",name:"Experimental"},{link:"lnconfig",name:this.lnImplementationStr}],this.activeLink="",this.unSubs=[new hn.B,new hn.B,new hn.B,new hn.B,new hn.B]}ngOnInit(){const H=this.links.find(Y=>this.router.url.includes(Y.link));this.activeLink=H?H.link:this.links[0].link,this.router.events.pipe((0,wn.Q)(this.unSubs[0]),(0,cr.p)(Y=>Y instanceof Ja.gx)).subscribe({next:Y=>{const ie=this.links.find(et=>Y.urlAfterRedirects.includes(et.link));this.activeLink=ie?ie.link:this.links[0].link}}),this.store.select(Va.qv).pipe((0,wn.Q)(this.unSubs[1])).subscribe(Y=>{this.appConfig=Y}),this.store.select(Va._c).pipe((0,wn.Q)(this.unSubs[2])).subscribe(Y=>{switch(this.showLnConfig=!1,this.selNode=Y,this.selNode.lnImplementation?.toUpperCase()){case"CLN":this.lnImplementationStr="Core Lightning Config";break;case"ECL":this.lnImplementationStr="Eclair Config";break;default:this.lnImplementationStr="LND Config"}this.selNode.authentication&&this.selNode.authentication.configPath&&""!==this.selNode.authentication.configPath.trim()&&(this.links[4].name=this.lnImplementationStr,this.showLnConfig=!0)})}showLnConfigClicked(){this.appConfig.SSO.rtlSSO?(this.activeLink=this.links[4].link,this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute})):(this.store.dispatch((0,Nn.xO)({payload:{maxWidth:"50rem",data:{component:yc}}})),this.rtlEffects.closeAlert.pipe((0,wn.Q)(this.unSubs[3])).subscribe(H=>{H&&(this.activeLink=this.links[4].link,this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute}))}))}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(null),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(qi.il),e.rXU(Ja.Ix),e.rXU(ms.H),e.rXU(Ja.nX))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-node-config"]],standalone:!1,decls:19,vars:13,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","3","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","state","click",4,"ngIf"],["tabindex","4","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngIf"],["tabindex","5","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","click",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper","mb-2"],["tabindex","3","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active","state"],["tabindex","4","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","5","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active"]],template:function(Y,ie){if(1&Y){const et=e.RV6();e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Node Config"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6)(8,"div",7),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.activeLink=ie.links[0].link)}),e.EFF(9),e.k0s(),e.j41(10,"div",8),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.activeLink=ie.links[1].link)}),e.EFF(11),e.k0s(),e.DNE(12,ql,2,6,"div",9)(13,C2,2,4,"div",10)(14,Bl,2,2,"div",11),e.k0s(),e.nrm(15,"mat-tab-nav-panel",null,0),e.j41(17,"div",12),e.nrm(18,"router-outlet"),e.k0s()()()()}if(2&Y){const et=e.sdS(16);e.R7$(),e.Y8G("icon",ie.faTools),e.R7$(6),e.Y8G("tabPanel",et),e.R7$(),e.Y8G("routerLink",e.mNQ(ie.links[0].link))("active",ie.activeLink===ie.links[0].link),e.R7$(),e.JRh(ie.links[0].name),e.R7$(),e.Y8G("routerLink",e.mNQ(ie.links[1].link))("active",ie.activeLink===ie.links[1].link),e.R7$(),e.JRh(ie.links[1].name),e.R7$(),e.Y8G("ngIf","ECL"!==(null==ie.selNode||null==ie.selNode.lnImplementation?null:ie.selNode.lnImplementation.toUpperCase())),e.R7$(),e.Y8G("ngIf","CLN"===(null==ie.selNode||null==ie.selNode.lnImplementation?null:ie.selNode.lnImplementation.toUpperCase())),e.R7$(),e.Y8G("ngIf",ie.showLnConfig)}},dependencies:[c.bT,Tr.aY,Ea.RN,Ea.m2,bn.DJ,bn.sA,bn.UI,Dr.Bu,Dr.hQ,Dr.Ql,Ja.n3,Wo.Wk],encapsulation:2}))}return z(),F})();function M2(z,F){1&z&&e.nrm(0,"mat-divider",7)}function $1(z,F){if(1&z&&(e.j41(0,"div",4)(1,"pre",5),e.EFF(2),e.nI1(3,"json"),e.k0s(),e.DNE(4,M2,1,0,"mat-divider",6),e.k0s()),2&z){const L=e.XpG();e.R7$(2),e.JRh(e.bMT(3,2,L.configData)),e.R7$(2),e.Y8G("ngIf",""!==L.configData)}}function p4(z,F){if(1&z&&(e.j41(0,"h2"),e.EFF(1),e.k0s()),2&z){const L=e.XpG().$implicit;e.R7$(),e.JRh(L)}}function Z1(z,F){if(1&z&&(e.j41(0,"h4",14),e.EFF(1),e.k0s()),2&z){const L=e.XpG().$implicit;e.R7$(),e.JRh(L)}}function Ju(z,F){1&z&&e.nrm(0,"mat-divider",15),2&z&&e.Y8G("inset",!0)}function J1(z,F){if(1&z&&(e.j41(0,"mat-list-item")(1,"mat-card-subtitle",7),e.DNE(2,p4,2,1,"h2",10),e.k0s(),e.j41(3,"mat-card-subtitle",11),e.DNE(4,Z1,2,1,"h4",12),e.k0s(),e.DNE(5,Ju,1,1,"mat-divider",13),e.k0s()),2&z){const L=F.$implicit;e.R7$(2),e.Y8G("ngIf",L.indexOf("[")>=0),e.R7$(2),e.Y8G("ngIf",L.indexOf("[")<0),e.R7$(),e.Y8G("ngIf",L.indexOf("[")<0)}}function Ao(z,F){if(1&z&&(e.j41(0,"div",8)(1,"mat-list"),e.DNE(2,J1,6,3,"mat-list-item",9),e.k0s()()),2&z){const L=e.XpG();e.R7$(2),e.Y8G("ngForOf",L.configData)}}let md=(()=>{var z;class F{constructor(H,Y,ie){this.store=H,this.rtlEffects=Y,this.router=ie,this.configData="",this.fileFormat="INI",this.faCog=Mn.dB,this.unSubs=[new hn.B,new hn.B]}ngOnInit(){this.store.dispatch((0,Nn.Dz)({payload:"ln"})),this.rtlEffects.showLnConfig.pipe((0,wn.Q)(this.unSubs[1])).subscribe(H=>{const Y=H.data;this.fileFormat=H.format,this.configData=""===Y||!Y||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==Y&&Y&&"JSON"===this.fileFormat?Y:"":Y.split("\n")})}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(null),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(qi.il),e.rXU(ms.H),e.rXU(Ja.Ix))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-lnp-config"]],standalone:!1,decls:4,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxFlex","100","class","mb-6",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100",1,"mb-6"],[1,"pre-wrap"],["class","my-1",4,"ngIf"],[1,"my-1"],["fxFlex","100"],[4,"ngFor","ngForOf"],[4,"ngIf"],[1,"m-0"],["class","ml-4",4,"ngIf"],[3,"inset",4,"ngIf"],[1,"ml-4"],[3,"inset"]],template:function(Y,ie){1&Y&&(e.j41(0,"div",0)(1,"div",1),e.DNE(2,$1,5,4,"div",2)(3,Ao,3,1,"div",3),e.k0s()()),2&Y&&(e.R7$(2),e.Y8G("ngIf",""!==ie.configData&&"JSON"===ie.fileFormat),e.R7$(),e.Y8G("ngIf",""!==ie.configData&&("INI"===ie.fileFormat||"HOCON"===ie.fileFormat)))},dependencies:[c.Sq,c.bT,Ea.Lc,_r.jt,_r.YE,Ni.q,bn.DJ,bn.sA,bn.UI,c.TG],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}))}return z(),F})();var qs=l(82571),Lr=l(9454),Jr=l(5951),Lo=l(16038),pd=l(30450);const Na=z=>({skin:!0,"selected-color":z});function qu(z,F){if(1&z&&(e.j41(0,"span",41),e.nrm(1,"fa-icon",42),e.k0s()),2&z){const L=e.XpG().$implicit;e.R7$(),e.Y8G("icon",L.symbol)}}function gd(z,F){if(1&z&&(e.j41(0,"span",41),e.nrm(1,"span",43),e.k0s()),2&z){const L=e.XpG().$implicit;e.R7$(),e.Y8G("innerHTML",L.symbol,e.npT)}}function ec(z,F){if(1&z&&(e.j41(0,"mat-option",39),e.DNE(1,qu,2,1,"span",40)(2,gd,2,1,"span",40),e.EFF(3),e.k0s()),2&z){const L=F.$implicit;e.Y8G("value",L.id),e.R7$(),e.Y8G("ngIf",L&&"FA"===L.iconType),e.R7$(),e.Y8G("ngIf",L&&"SVG"===L.iconType),e.R7$(),e.Lme(" ",L.name," (",L.id,") ")}}function qa(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Currency unit is required."),e.k0s())}function q1(z,F){if(1&z&&(e.j41(0,"mat-radio-button",44),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&z){const L=F.$implicit,H=e.XpG();e.Y8G("value",L)("checked",H.selNode.settings.userPersona===L),e.R7$(),e.SpI(" ",e.bMT(2,3,L)," ")}}function E2(z,F){if(1&z&&(e.j41(0,"mat-radio-button",45),e.EFF(1),e.k0s()),2&z){const L=F.$implicit;e.Y8G("value",L),e.R7$(),e.SpI("",L.name," ")}}function e0(z,F){if(1&z){const L=e.RV6();e.j41(0,"span",46)(1,"div",47),e.nI1(2,"lowercase"),e.bIt("click",function(){const Y=p.eBV(L).$implicit,ie=e.XpG();return p.Njj(ie.changeThemeColor(Y.id))}),e.k0s(),e.EFF(3),e.k0s()}if(2&z){const L=F.$implicit,H=e.XpG();e.R7$(),e.HbH(e.bMT(2,4,L.id)),e.Y8G("ngClass",e.eq3(6,Na,H.selectedThemeColor===L.id)),e.R7$(2),e.SpI(" ",L.name," ")}}let e1=(()=>{var z;class F{constructor(H,Y,ie,et){this.logger=H,this.commonService=Y,this.store=ie,this.sanitizer=et,this.faBarsStaggered=Mn.o97,this.faExclamationTriangle=Mn.zpE,this.faMoneyBillAlt=Mn.iy8,this.faPaintBrush=Mn._eQ,this.faInfoCircle=Mn.iW_,this.faEyeSlash=Mn.k6j,this.userPersonas=[ot.HW.OPERATOR,ot.HW.MERCHANT],this.currencyUnits=ot.Zi,this.themeModes=ot.Bv.modes,this.themeColors=ot.Bv.themes,this.selectedThemeMode=ot.Bv.modes[0],this.selectedThemeColor=ot.Bv.themes[0].id,this.currencyUnit="BTC",this.smallerCurrencyUnit="Sats",this.showSettingOption=!0,this.screenSize="",this.screenSizeEnum=ot.f7,this.unSubs=[new hn.B,new hn.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.currencyUnits.map(H=>("SVG"===H.iconType&&"string"==typeof H.symbol&&(H.symbol=H.symbol.replace('{this.selNode=JSON.parse(JSON.stringify(H)),this.selectedThemeMode=this.themeModes.find(Y=>this.selNode.settings.themeMode===Y.id)||this.themeModes[0],this.selectedThemeColor=this.selNode.settings.themeColor,this.selNode.settings.fiatConversion||(this.selNode.settings.currencyUnit=""),this.previousSettings=JSON.parse(JSON.stringify(this.selNode.settings)),this.logger.info(H)})}toggleSettings(H,Y){this.selNode.settings[H]=!this.selNode.settings[H]}changeThemeColor(H){this.selectedThemeColor=H,this.selNode.settings.themeColor=H}chooseThemeMode(){this.selNode.settings.themeMode=this.selectedThemeMode.id}onFiatConversionChange(H){this.selNode.settings.fiatConversion||delete this.selNode.settings.currencyUnit}onUpdateNodeSettings(){if(this.selNode.settings.fiatConversion&&!this.selNode.settings.currencyUnit)return!0;this.selNode.settings.blockExplorerUrl=this.selNode.settings.blockExplorerUrl.replace(/\/$/,""),this.logger.info(this.selNode.settings),this.store.dispatch((0,Nn.T$)({payload:this.selNode}))}onResetSettings(){const H=this.selNode.index||-1;this.selNode.settings=this.previousSettings,this.selectedThemeMode=this.themeModes.find(Y=>Y.id===this.previousSettings.themeMode)||this.themeModes[0],this.selectedThemeColor=this.previousSettings.themeColor,this.store.dispatch((0,Nn.Qi)({payload:{uiMessage:ot.MZ.NO_SPINNER,prevLnNodeIndex:+H,currentLnNode:this.selNode,isInitialSetup:!0}}))}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(ir.gP),e.rXU(qs.h),e.rXU(qi.il),e.rXU(b.up))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-node-settings"]],standalone:!1,decls:100,vars:21,consts:[["form","ngForm"],["currencyUnit","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",3,"perfectScrollbar"],["fxLayout","column","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container"],["displayMode","flat","multi","false"],["fxLayout","column",1,"flat-expansion-panel","mt-1"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["href","https://mempool.space/","target","blank"],["fxLayout","row wrap","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100"],["matInput","","name","blockExplorerUrl",3,"ngModelChange","ngModel"],["fxLayout","row","fxFlex","100",1,"alert","alert-info","mb-1"],["tabindex","1","color","primary","name","unannouncedChannels",3,"ngModelChange","change","ngModel"],["href","https://www.blockchain.com/api/exchange_rates_api","target","blank"],["tabindex","2","color","primary","name","fiatConversion",1,"mr-2",3,"ngModelChange","change","ngModel"],["fxFlex","25"],["autoFocus","","tabindex","3","name","currencyUnit",3,"ngModelChange","disabled","required","ngModel"],[3,"value",4,"ngFor","ngForOf"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"alert","alert-info","mb-0"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100"],["color","primary","tabindex","1","name","userPersona",1,"radio-group",3,"ngModelChange","ngModel"],["class","radio-text mr-4",3,"value","checked",4,"ngFor","ngForOf"],[1,"mt-1"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start"],["color","primary","name","themeMode",1,"radio-group",3,"ngModelChange","change","ngModel"],["tabindex","5","class","radio-text mr-4",3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-xs","start stretch"],["fxLayout","column","fxFlex.gt-xs","50","fxFlex.gt-md","40","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","row","class","theme-name",4,"ngFor","ngForOf"],["fxLayout","column","fxLayoutAlign","start start",1,"mt-1"],["fxLayout","row"],["mat-stroked-button","","color","primary","tabindex","10",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","11",3,"click"],[3,"value"],["class","mr-1",4,"ngIf"],[1,"mr-1"],[3,"icon"],["fxLayoutAlign","center center",3,"innerHTML"],[1,"radio-text","mr-4",3,"value","checked"],["tabindex","5",1,"radio-text","mr-4",3,"value"],["fxLayout","row",1,"theme-name"],["tabindex","9",3,"click","ngClass"]],template:function(Y,ie){if(1&Y){const et=e.RV6();e.j41(0,"div",2)(1,"form",3,0)(3,"mat-accordion",4)(4,"mat-expansion-panel",5)(5,"mat-expansion-panel-header")(6,"mat-panel-title"),e.nrm(7,"fa-icon",6),e.j41(8,"span",7),e.EFF(9,"Block Explorer"),e.k0s()()(),e.j41(10,"div",8)(11,"div",9),e.nrm(12,"fa-icon",10),e.j41(13,"span"),e.EFF(14,"Configure your own blockchain explorer url or "),e.j41(15,"strong")(16,"a",11),e.EFF(17,"mempool.space"),e.k0s()(),e.EFF(18," will be used."),e.k0s()(),e.j41(19,"div",12)(20,"mat-form-field",13)(21,"mat-label"),e.EFF(22,"Block Explorer URL"),e.k0s(),e.j41(23,"input",14),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.selNode.settings.blockExplorerUrl,$t)||(ie.selNode.settings.blockExplorerUrl=$t),p.Njj($t)}),e.k0s(),e.j41(24,"mat-hint"),e.EFF(25,"Blockchain explorer URL, eg. https://mempool.space or https://blockstream.info"),e.k0s()()()()(),e.j41(26,"mat-expansion-panel",5)(27,"mat-expansion-panel-header")(28,"mat-panel-title"),e.nrm(29,"fa-icon",6),e.j41(30,"span",7),e.EFF(31,"Open Unannounced Channels"),e.k0s()()(),e.j41(32,"div",8)(33,"div",15),e.nrm(34,"fa-icon",10),e.j41(35,"span"),e.EFF(36,"Use this control to toggle setting which defaults to opening unannounced channels only."),e.k0s()(),e.j41(37,"div",12)(38,"mat-slide-toggle",16),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.selNode.settings.unannouncedChannels,$t)||(ie.selNode.settings.unannouncedChannels=$t),p.Njj($t)}),e.bIt("change",function(){return p.eBV(et),p.Njj(!ie.selNode.settings.unannouncedChannels)}),e.EFF(39,"Open Unannounced Channels"),e.k0s()()()(),e.j41(40,"mat-expansion-panel",5)(41,"mat-expansion-panel-header")(42,"mat-panel-title"),e.nrm(43,"fa-icon",6),e.j41(44,"span",7),e.EFF(45,"Balance Display"),e.k0s()()(),e.j41(46,"div",8)(47,"div",9),e.nrm(48,"fa-icon",10),e.j41(49,"span"),e.EFF(50,"Fiat conversion calls "),e.j41(51,"strong")(52,"a",17),e.EFF(53,"Blockchain.com"),e.k0s()(),e.EFF(54," API to get conversion rates."),e.k0s()(),e.j41(55,"div",12)(56,"mat-slide-toggle",18),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.selNode.settings.fiatConversion,$t)||(ie.selNode.settings.fiatConversion=$t),p.Njj($t)}),e.bIt("change",function($t){return p.eBV(et),p.Njj(ie.onFiatConversionChange($t))}),e.EFF(57,"Enable Fiat Conversion"),e.k0s(),e.j41(58,"mat-form-field",19)(59,"mat-label"),e.EFF(60,"Fiat Currency"),e.k0s(),e.j41(61,"mat-select",20,1),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.selNode.settings.currencyUnit,$t)||(ie.selNode.settings.currencyUnit=$t),p.Njj($t)}),e.DNE(63,ec,4,5,"mat-option",21),e.k0s(),e.DNE(64,qa,2,0,"mat-error",22),e.k0s()()()(),e.j41(65,"mat-expansion-panel",5)(66,"mat-expansion-panel-header")(67,"mat-panel-title"),e.nrm(68,"fa-icon",6),e.j41(69,"span",7),e.EFF(70,"Customization"),e.k0s()()(),e.j41(71,"div",8)(72,"div",23),e.nrm(73,"fa-icon",10),e.j41(74,"span"),e.EFF(75,"Dashboard layout will be tailored based on the role selected to better serve its needs."),e.k0s()(),e.j41(76,"div",24)(77,"h4"),e.EFF(78,"Dashboard Layout"),e.k0s(),e.j41(79,"mat-radio-group",25),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.selNode.settings.userPersona,$t)||(ie.selNode.settings.userPersona=$t),p.Njj($t)}),e.DNE(80,q1,3,5,"mat-radio-button",26),e.k0s()(),e.nrm(81,"mat-divider",27),e.j41(82,"div",28)(83,"h4"),e.EFF(84,"Mode"),e.k0s(),e.j41(85,"mat-radio-group",29),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.selectedThemeMode,$t)||(ie.selectedThemeMode=$t),p.Njj($t)}),e.bIt("change",function(){return p.eBV(et),p.Njj(ie.chooseThemeMode())}),e.DNE(86,E2,2,2,"mat-radio-button",30),e.k0s()(),e.nrm(87,"mat-divider",27),e.j41(88,"div",31)(89,"div",32)(90,"h4"),e.EFF(91,"Themes"),e.k0s(),e.j41(92,"div",33),e.DNE(93,e0,4,8,"span",34),e.k0s()()()()()()(),e.j41(94,"div",35)(95,"div",36)(96,"button",37),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.onResetSettings())}),e.EFF(97,"Reset"),e.k0s(),e.j41(98,"button",38),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.onUpdateNodeSettings())}),e.EFF(99,"Update"),e.k0s()()()()}2&Y&&(e.R7$(7),e.Y8G("icon",ie.faBarsStaggered),e.R7$(5),e.Y8G("icon",ie.faExclamationTriangle),e.R7$(11),e.R50("ngModel",ie.selNode.settings.blockExplorerUrl),e.R7$(6),e.Y8G("icon",ie.faEyeSlash),e.R7$(5),e.Y8G("icon",ie.faInfoCircle),e.R7$(4),e.R50("ngModel",ie.selNode.settings.unannouncedChannels),e.R7$(5),e.Y8G("icon",ie.faMoneyBillAlt),e.R7$(5),e.Y8G("icon",ie.faExclamationTriangle),e.R7$(8),e.R50("ngModel",ie.selNode.settings.fiatConversion),e.R7$(5),e.Y8G("disabled",!ie.selNode.settings.fiatConversion)("required",ie.selNode.settings.fiatConversion),e.R50("ngModel",ie.selNode.settings.currencyUnit),e.R7$(2),e.Y8G("ngForOf",ie.currencyUnits),e.R7$(),e.Y8G("ngIf",ie.selNode.settings.fiatConversion&&!ie.selNode.settings.currencyUnit),e.R7$(4),e.Y8G("icon",ie.faPaintBrush),e.R7$(5),e.Y8G("icon",ie.faInfoCircle),e.R7$(6),e.R50("ngModel",ie.selNode.settings.userPersona),e.R7$(),e.Y8G("ngForOf",ie.userPersonas),e.R7$(5),e.R50("ngModel",ie.selectedThemeMode),e.R7$(),e.Y8G("ngForOf",ie.themeModes),e.R7$(7),e.Y8G("ngForOf",ie.themeColors))},dependencies:[c.YU,c.Sq,c.bT,cn.qT,cn.me,cn.BC,cn.cb,cn.YS,cn.vS,cn.cV,Tr.aY,Hr.$z,Lr.BS,Lr.GK,Lr.Z2,Lr.WN,fo.fg,ra.rl,ra.nJ,ra.MV,ra.TL,Ni.q,Jr.VT,Jr._g,bn.DJ,bn.sA,bn.UI,Lo.PW,De.VO,pt.wT,pd.sG,Yt.Ld,Pi.N,c.GH,c.PV],styles:["h4[_ngcontent-%COMP%]{margin:.75rem 0 .5rem}.theme-name[_ngcontent-%COMP%]{min-width:10rem}@media only screen and (max-width: 37.5em){.theme-name[_ngcontent-%COMP%]{min-width:unset}}.skin[_ngcontent-%COMP%]{width:1.25rem;height:1.25rem;border-radius:50%;cursor:pointer;margin-right:.5rem}.skin.selected-color[_ngcontent-%COMP%]{width:1rem;height:1rem;border:2px solid}.skin.purple[_ngcontent-%COMP%]{background-color:#5e4ea5}.skin.indigo[_ngcontent-%COMP%]{background-color:#3f51b5}.skin.teal[_ngcontent-%COMP%]{background-color:#00695c}.skin.pink[_ngcontent-%COMP%]{background-color:#d81b60}.skin.yellow[_ngcontent-%COMP%]{background-color:#a1842c}"]}))}return z(),F})();var zl=l(59584),_d=l(63536),Ir=l(28430),nr=l(190),w2=l(72730),Or=l(95428),vd=l(22598),tc=l(12629),Xc=l(40455),t1=l(52929);const t0=z=>({error:z}),n1=z=>({"error-border":z}),eh=z=>({"ml-minus-1":z}),n0=z=>({"error-border p-2":z});function Kc(z,F){if(1&z&&e.eu8(0,14),2&z){const L=e.XpG(),H=e.sdS(18);e.Y8G("ngTemplateOutlet",H)("ngTemplateOutletContext",e.eq3(2,t0,L.errorMessage))}}function a1(z,F){if(1&z&&(e.j41(0,"mat-option",31),e.EFF(1),e.k0s()),2&z){const L=F.$implicit;e.Y8G("value",L),e.R7$(),e.SpI(" ",L," ")}}function S2(z,F){if(1&z&&(e.j41(0,"mat-option",31),e.EFF(1),e.nI1(2,"camelCaseWithSpaces"),e.nI1(3,"camelcaseWithReplace"),e.k0s()),2&z){const L=F.$implicit,H=e.XpG(3);e.Y8G("value",L),e.R7$(),e.SpI(" ","ECL"===H.selNode.lnImplementation?e.bMT(2,2,L):e.i5U(3,4,L,"_")," ")}}function T2(z,F){if(1&z&&(e.j41(0,"mat-option",31),e.EFF(1),e.k0s()),2&z){const L=F.$implicit;e.Y8G("value",L),e.R7$(),e.SpI(" ","desc"===L?"Descending":"Ascending"," ")}}function r1(z,F){if(1&z&&(e.j41(0,"mat-option",34),e.EFF(1),e.nI1(2,"camelCaseWithSpaces"),e.nI1(3,"camelcaseWithReplace"),e.k0s()),2&z){const L=F.$implicit,H=e.XpG(2).$implicit,Y=e.XpG(2);e.Y8G("value",L.column)("disabled",H.columnSelection.length<=2&&H.columnSelection.includes(L.column)),e.R7$(),e.SpI(" ",L.label?L.label:"ECL"===Y.selNode.lnImplementation?e.bMT(2,3,L.column):e.i5U(3,5,L.column,"_")," ")}}function Yc(z,F){if(1&z){const L=e.RV6();e.j41(0,"mat-form-field",32)(1,"mat-label"),e.EFF(2,"Column selection (Desktop Resolution)"),e.k0s(),e.j41(3,"mat-select",33),e.mxI("ngModelChange",function(Y){p.eBV(L);const ie=e.XpG().$implicit;return e.DH7(ie.columnSelection,Y)||(ie.columnSelection=Y),p.Njj(Y)}),e.bIt("selectionChange",function(){p.eBV(L);const Y=e.XpG().$implicit,ie=e.XpG(2);return p.Njj(ie.oncolumnSelectionChange(Y))}),e.DNE(4,r1,4,8,"mat-option",28),e.k0s()()}if(2&z){const L=e.XpG().$implicit,H=e.XpG().$implicit,Y=e.XpG();e.R7$(3),e.Y8G("name",e.ai1("",H.pageId,"",L.tableId,"-columns-selection")),e.R50("ngModel",L.columnSelection),e.R7$(),e.Y8G("ngForOf",Y.nodePageDefs[H.pageId][L.tableId].allowedColumns)}}function s1(z,F){if(1&z&&(e.j41(0,"mat-option",34),e.EFF(1),e.nI1(2,"camelCaseWithSpaces"),e.nI1(3,"camelcaseWithReplace"),e.k0s()),2&z){const L=F.$implicit,H=e.XpG().$implicit,Y=e.XpG(2);e.Y8G("value",L.column)("disabled",H.columnSelectionSM.length<=1&&H.columnSelectionSM.includes(L.column)||H.columnSelectionSM.length>=3&&!H.columnSelectionSM.includes(L.column)),e.R7$(),e.SpI(" ",L.label?L.label:"ECL"===Y.selNode.lnImplementation?e.bMT(2,3,L.column):e.i5U(3,5,L.column,"_")," ")}}function a0(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",17)(1,"div",18)(2,"span",19),e.EFF(3),e.nI1(4,"camelcaseWithReplace"),e.k0s(),e.j41(5,"mat-form-field",20)(6,"mat-label"),e.EFF(7,"Records/Page"),e.k0s(),e.j41(8,"mat-select",21),e.mxI("ngModelChange",function(Y){const ie=p.eBV(L).$implicit;return e.DH7(ie.recordsPerPage,Y)||(ie.recordsPerPage=Y),p.Njj(Y)}),e.DNE(9,a1,2,2,"mat-option",22),e.k0s()(),e.j41(10,"mat-form-field",20)(11,"mat-label"),e.EFF(12,"Sort By"),e.k0s(),e.j41(13,"mat-select",23),e.mxI("ngModelChange",function(Y){const ie=p.eBV(L).$implicit;return e.DH7(ie.sortBy,Y)||(ie.sortBy=Y),p.Njj(Y)}),e.DNE(14,S2,4,7,"mat-option",22),e.k0s()(),e.j41(15,"mat-form-field",20)(16,"mat-label"),e.EFF(17,"Sort Order"),e.k0s(),e.j41(18,"mat-select",24),e.mxI("ngModelChange",function(Y){const ie=p.eBV(L).$implicit;return e.DH7(ie.sortOrder,Y)||(ie.sortOrder=Y),p.Njj(Y)}),e.DNE(19,T2,2,2,"mat-option",22),e.k0s()(),e.DNE(20,Yc,5,5,"mat-form-field",25),e.j41(21,"mat-form-field",26)(22,"mat-label"),e.EFF(23,"Column Selection (Mobile Resolution)"),e.k0s(),e.j41(24,"mat-select",27),e.mxI("ngModelChange",function(Y){const ie=p.eBV(L).$implicit;return e.DH7(ie.columnSelectionSM,Y)||(ie.columnSelectionSM=Y),p.Njj(Y)}),e.DNE(25,s1,4,8,"mat-option",28),e.k0s()(),e.j41(26,"button",29),e.bIt("click",function(){const Y=p.eBV(L).$implicit,ie=e.XpG().$implicit,et=e.XpG();return p.Njj(et.onTableReset(ie.pageId,Y))}),e.j41(27,"mat-icon",30),e.EFF(28,"restore"),e.k0s()()()()}if(2&z){const L=F.$implicit,H=e.XpG().$implicit,Y=e.XpG();e.R7$(3),e.SpI("",e.i5U(4,24,L.tableId,"_"),":"),e.R7$(5),e.Y8G("name",e.ai1("",H.pageId,"",L.tableId,"-page-size-options"))("disabled",Y.nodePageDefs[H.pageId][L.tableId].disablePageSize),e.R50("ngModel",L.recordsPerPage),e.R7$(),e.Y8G("ngForOf",Y.pageSizeOptions),e.R7$(4),e.Y8G("name",e.ai1("",H.pageId,"",L.tableId,"-sort-by")),e.R50("ngModel",L.sortBy),e.R7$(),e.Y8G("ngForOf",L.columnSelection),e.R7$(4),e.Y8G("name",e.ai1("",H.pageId,"",L.tableId,"-sort-order")),e.R50("ngModel",L.sortOrder),e.R7$(),e.Y8G("ngForOf",Y.sortOrders),e.R7$(),e.Y8G("ngIf",Y.screenSize!==Y.screenSizeEnum.XS),e.R7$(4),e.Y8G("name",e.ai1("",H.pageId,"",L.tableId,"-columns-selection-sm")),e.R50("ngModel",L.columnSelectionSM),e.R7$(),e.Y8G("ngForOf",Y.nodePageDefs[H.pageId][L.tableId].allowedColumns),e.R7$(2),e.Y8G("ngClass",e.eq3(27,eh,Y.screenSize===Y.screenSizeEnum.XS||Y.screenSize===Y.screenSizeEnum.SM))}}function o1(z,F){if(1&z&&e.eu8(0,14),2&z){const L=e.XpG(2),H=e.sdS(18);e.Y8G("ngTemplateOutlet",H)("ngTemplateOutletContext",e.eq3(2,t0,L.errorMessage))}}function th(z,F){if(1&z&&(e.j41(0,"mat-expansion-panel",15)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),e.EFF(3),e.nI1(4,"camelcaseWithReplace"),e.k0s()(),e.DNE(5,a0,29,29,"div",16)(6,o1,1,4,"ng-container",7),e.k0s()),2&z){const L=F.$implicit,H=e.XpG();e.Y8G("ngClass",e.eq3(7,n1,(null==H.errorMessage?null:H.errorMessage.page)===L.pageId)),e.R7$(3),e.JRh(e.i5U(4,4,L.pageId,"_")),e.R7$(2),e.Y8G("ngForOf",L.tables),e.R7$(),e.Y8G("ngIf",H.errorMessage&&(null==H.errorMessage?null:H.errorMessage.page)===L.pageId)}}function yd(z,F){if(1&z&&(e.j41(0,"mat-panel-title"),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&z){const L=e.XpG().error;e.R7$(),e.SpI("Page ",e.bMT(2,1,L.page))}}function Qc(z,F){if(1&z&&(e.j41(0,"mat-list-item")(1,"mat-icon",39),e.EFF(2,"close"),e.k0s(),e.j41(3,"span"),e.EFF(4),e.k0s()()),2&z){const L=e.XpG().error;e.R7$(4),e.JRh(L.message)}}function D2(z,F){if(1&z&&(e.j41(0,"mat-list-item")(1,"mat-icon",39),e.EFF(2,"close"),e.k0s(),e.j41(3,"span"),e.EFF(4),e.nI1(5,"titlecase"),e.k0s()()),2&z){const L=F.$implicit;e.R7$(4),e.Lme("Table ",e.bMT(5,2,L.table)," ",L.message)}}function A2(z,F){if(1&z&&(e.j41(0,"div",35),e.DNE(1,yd,3,3,"mat-panel-title",36),e.j41(2,"mat-list",37),e.DNE(3,Qc,5,1,"mat-list-item",36)(4,D2,6,4,"mat-list-item",38),e.k0s()()),2&z){const L=F.error,H=e.XpG();e.Y8G("ngClass",e.eq3(4,n0,"unknown"===H.errorMessage.page)),e.R7$(),e.Y8G("ngIf","unknown"===H.errorMessage.page),e.R7$(2),e.Y8G("ngIf",L.message),e.R7$(),e.Y8G("ngForOf",L.tables)}}let L2=(()=>{var z;class F{constructor(H,Y,ie,et){this.logger=H,this.commonService=Y,this.store=ie,this.actions=et,this.faPenRuler=Mn.$$g,this.faExclamationTriangle=Mn.zpE,this.screenSize="",this.screenSizeEnum=ot.f7,this.pageSizeOptions=ot.xp,this.pageSettings=[],this.initialPageSettings=[],this.defaultSettings=[],this.nodePageDefs={},this.sortOrders=ot.jG,this.apiCallStatus=null,this.apiCallStatusEnum=ot.wn,this.errorMessage=null,this.unSubs=[new hn.B,new hn.B,new hn.B,new hn.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(Va._c).pipe((0,wn.Q)(this.unSubs[0])).subscribe(H=>{switch(this.selNode=H,this.logger.info(this.selNode),this.selNode.lnImplementation){case"CLN":this.initialPageSettings=Object.assign([],ot.mu),this.defaultSettings=Object.assign([],ot.mu),this.nodePageDefs=ot.Jd,this.store.select(zl.av).pipe((0,wn.Q)(this.unSubs[1]),(0,el.E)(this.store.select(Va._c))).subscribe(([Y,ie])=>{const et=JSON.parse(JSON.stringify(Y.pageSettings));if(this.errorMessage=null,this.apiCallStatus=Y.apiCallStatus,this.apiCallStatus.status===ot.wn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=et,this.initialPageSettings=et;else{if(!ie?.settings.enableOffers){const Bt=et.find(zi=>"transactions"===zi.pageId),$t=Bt?.tables.findIndex(zi=>"offers"===zi.tableId),Ei=Bt?.tables.findIndex(zi=>"offer_bookmarks"===zi.tableId);$t>-1&&Bt?.tables.splice($t,1),Ei>-1&&Bt?.tables.splice(Ei,1)}if(!ie?.settings.enablePeerswap){const Bt=et.findIndex($t=>"peerswap"===$t.pageId);Bt>-1&&et.splice(Bt,1)}this.pageSettings=et,this.initialPageSettings=et}this.logger.info(et)}),this.actions.pipe((0,wn.Q)(this.unSubs[2]),(0,cr.p)(Y=>Y.type===ot.TC.UPDATE_API_CALL_STATUS_CLN||Y.type===ot.TC.SAVE_PAGE_SETTINGS_CLN)).subscribe(Y=>{Y.type===ot.TC.UPDATE_API_CALL_STATUS_CLN&&Y.payload.status===ot.wn.ERROR&&"SavePageSettings"===Y.payload.action&&(this.errorMessage=JSON.parse(Y.payload.message))});break;case"ECL":this.initialPageSettings=Object.assign([],ot.X8),this.defaultSettings=Object.assign([],ot.X8),this.nodePageDefs=ot.WW,this.store.select(w2.jZ).pipe((0,wn.Q)(this.unSubs[1])).subscribe(Y=>{const ie=JSON.parse(JSON.stringify(Y.pageSettings));this.errorMessage=null,this.apiCallStatus=Y.apiCallStatus,this.apiCallStatus.status===ot.wn.ERROR?(this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=ie,this.initialPageSettings=ie):(this.pageSettings=ie,this.initialPageSettings=ie),this.logger.info(ie)}),this.actions.pipe((0,wn.Q)(this.unSubs[2]),(0,cr.p)(Y=>Y.type===ot.Uu.UPDATE_API_CALL_STATUS_ECL||Y.type===ot.Uu.SAVE_PAGE_SETTINGS_ECL)).subscribe(Y=>{Y.type===ot.Uu.UPDATE_API_CALL_STATUS_ECL&&Y.payload.status===ot.wn.ERROR&&"SavePageSettings"===Y.payload.action&&(this.errorMessage=JSON.parse(Y.payload.message))});break;default:this.initialPageSettings=Object.assign([],ot.ZC),this.defaultSettings=Object.assign([],ot.ZC),this.nodePageDefs=ot._1,this.store.select(_d.$G).pipe((0,wn.Q)(this.unSubs[1]),(0,el.E)(this.store.select(Va._c))).subscribe(([Y,ie])=>{const et=JSON.parse(JSON.stringify(Y.pageSettings));if(this.errorMessage=null,this.apiCallStatus=Y.apiCallStatus,this.apiCallStatus.status===ot.wn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=et,this.initialPageSettings=et;else{if(!ie?.settings.swapServerUrl||""===ie.settings.swapServerUrl.trim()){const Bt=et.findIndex($t=>"loop"===$t.pageId);Bt>-1&&et.splice(Bt,1)}if(!ie?.settings.boltzServerUrl||""===ie.settings.boltzServerUrl.trim()){const Bt=et.findIndex($t=>"boltz"===$t.pageId);Bt>-1&&et.splice(Bt,1)}if(!ie?.settings.enablePeerswap){const Bt=et.findIndex($t=>"peerswap"===$t.pageId);Bt>-1&&et.splice(Bt,1)}this.pageSettings=et,this.initialPageSettings=et}this.logger.info(et)}),this.actions.pipe((0,wn.Q)(this.unSubs[2]),(0,cr.p)(Y=>Y.type===ot.QP.UPDATE_API_CALL_STATUS_LND||Y.type===ot.QP.SAVE_PAGE_SETTINGS_LND)).subscribe(Y=>{Y.type===ot.QP.UPDATE_API_CALL_STATUS_LND&&Y.payload.status===ot.wn.ERROR&&"SavePageSettings"===Y.payload.action&&(this.errorMessage=JSON.parse(Y.payload.message))})}})}oncolumnSelectionChange(H){H.columnSelection&&(!H.sortBy||!H.columnSelection.includes(H.sortBy))&&(H.sortBy=H.columnSelection[0])}onUpdatePageSettings(){if(this.pageSettings.reduce((H,Y)=>H||Y.tables.reduce((ie,et)=>!(et.recordsPerPage&&et.sortBy&&et.sortOrder&&et.columnSelection&&et.columnSelection.length>=2),!1),!1))return!0;switch(this.errorMessage="",this.selNode.lnImplementation){case"CLN":this.store.dispatch((0,Ir.Sn)({payload:this.pageSettings}));break;case"ECL":this.store.dispatch((0,Or.Sn)({payload:this.pageSettings}));break;default:this.store.dispatch((0,nr.Sn)({payload:this.pageSettings}))}}onTableReset(H,Y){const ie=this.pageSettings.findIndex($t=>$t.pageId===H),et=this.pageSettings[ie].tables.findIndex($t=>$t.tableId===Y.tableId),Bt=this.defaultSettings.find($t=>$t.pageId===H)?.tables.find($t=>$t.tableId===Y.tableId)||this.pageSettings.find($t=>$t.pageId===H)?.tables.find($t=>$t.tableId===Y.tableId);this.pageSettings[ie].tables.splice(et,1,Bt)}onResetPageSettings(H){"current"===H?(this.errorMessage=null,this.pageSettings=JSON.parse(JSON.stringify(this.initialPageSettings))):(this.errorMessage=null,this.pageSettings=JSON.parse(JSON.stringify(this.defaultSettings)))}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(ir.gP),e.rXU(qs.h),e.rXU(qi.il),e.rXU(Fo.En))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-page-settings"]],standalone:!1,decls:19,vars:3,consts:[["form","ngForm"],["errorObjectBlock",""],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],["fxLayout","column","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[3,"ngTemplateOutlet","ngTemplateOutletContext",4,"ngIf"],["displayMode","flat","multi","false"],["fxLayout","column","class","flat-expansion-panel mt-1","expanded","false",3,"ngClass",4,"ngFor","ngForOf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","8",1,"mr-1",3,"click"],["mat-stroked-button","","color","primary","tabindex","9",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","10",3,"click"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],["fxLayout","column","expanded","false",1,"flat-expansion-panel","mt-1",3,"ngClass"],["fxLayout","column","fxLayoutAlign","start stretch","class","padding-gap-x-large table-setting-row",4,"ngFor","ngForOf"],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x-large","table-setting-row"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center"],["fxFlex","10",1,"mb-2"],["fxLayout","column","fxFlex","10"],["tabindex","2","required","",3,"ngModelChange","name","disabled","ngModel"],[3,"value",4,"ngFor","ngForOf"],["tabindex","3","required","",3,"ngModelChange","name","ngModel"],["tabindex","4","required","",3,"ngModelChange","name","ngModel"],["fxFlex","35","matTooltip","Select a minimum of 2 columns",4,"ngIf"],["fxLayout","column","fxFlex","15","matTooltip","Select between 1 and 3 columns"],["tabindex","5","multiple","","required","",3,"ngModelChange","name","ngModel"],[3,"value","disabled",4,"ngFor","ngForOf"],["mat-icon-button","","color","primary","type","button","tabindex","7","matTooltip","Reset to Default",1,"mb-2",3,"click"],["color","primary",3,"ngClass"],[3,"value"],["fxFlex","35","matTooltip","Select a minimum of 2 columns"],["tabindex","6","multiple","","required","",3,"ngModelChange","selectionChange","name","ngModel"],[3,"value","disabled"],[3,"ngClass"],[4,"ngIf"],["role","list"],[4,"ngFor","ngForOf"],[1,"ml-1","icon-small","red"]],template:function(Y,ie){if(1&Y){const et=e.RV6();e.j41(0,"div",2)(1,"form",3,0)(3,"div",4),e.nrm(4,"fa-icon",5),e.j41(5,"span",6),e.EFF(6,"Grid Settings"),e.k0s()(),e.DNE(7,Kc,1,4,"ng-container",7),e.j41(8,"mat-accordion",8),e.DNE(9,th,7,9,"mat-expansion-panel",9),e.k0s()(),e.j41(10,"div",10)(11,"button",11),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.onResetPageSettings("current"))}),e.EFF(12,"Reset"),e.k0s(),e.j41(13,"button",12),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.onResetPageSettings("default"))}),e.EFF(14,"Reset to Default"),e.k0s(),e.j41(15,"button",13),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.onUpdatePageSettings())}),e.EFF(16,"Save"),e.k0s()()(),e.DNE(17,A2,5,6,"ng-template",null,1,e.C5r)}2&Y&&(e.R7$(4),e.Y8G("icon",ie.faPenRuler),e.R7$(3),e.Y8G("ngIf",ie.errorMessage&&"unknown"===ie.errorMessage.page),e.R7$(2),e.Y8G("ngForOf",ie.pageSettings))},dependencies:[c.YU,c.Sq,c.bT,c.T3,cn.qT,cn.BC,cn.cb,cn.YS,cn.vS,cn.cV,Tr.aY,Hr.$z,vd.iY,Lr.BS,Lr.GK,Lr.Z2,Lr.WN,tc.An,ra.rl,ra.nJ,_r.jt,_r.YE,bn.DJ,bn.sA,bn.UI,Lo.PW,De.VO,pt.wT,Xc.oV,Yt.Ld,c.PV,t1.VD,t1.Qu],styles:[".table-setting-row[_ngcontent-%COMP%]:not(:first-child){margin:.5rem 0}"]}))}return z(),F})();function I2(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",11),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.setActiveLink(Y.links[0].link))}),e.EFF(1),e.k0s()}if(2&z){const L=e.XpG();e.Y8G("routerLink",e.mNQ(L.links[0].link))("active",L.activeLink===L.links[0].link),e.R7$(),e.JRh(L.links[0].name)}}function ih(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",12),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.setActiveLink(Y.links[1].link))}),e.EFF(1),e.k0s()}if(2&z){const L=e.XpG();e.Y8G("routerLink",e.mNQ(L.links[1].link))("active",L.activeLink===L.links[1].link),e.R7$(),e.JRh(L.links[1].name)}}function r0(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",13),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.setActiveLink(Y.links[2].link))}),e.EFF(1),e.k0s()}if(2&z){const L=e.XpG();e.Y8G("routerLink",e.mNQ(L.links[2].link))("active",L.activeLink===L.links[2].link),e.R7$(),e.JRh(L.links[2].name)}}let nh=(()=>{var z;class F{constructor(H,Y,ie){this.store=H,this.router=Y,this.activatedRoute=ie,this.faLayerGroup=Mn.qIE,this.links=[{link:"loop",name:"Loop"},{link:"boltz",name:"Boltz"},{link:"noservice",name:"No Service"}],this.activeLink="",this.unSubs=[new hn.B,new hn.B,new hn.B]}ngOnInit(){this.setActiveLink(),this.store.select(Va._c).pipe((0,wn.Q)(this.unSubs[1])).subscribe(H=>{this.selNode=H,this.setActiveLink(),this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute})})}setActiveLink(H){if(H&&""!==H)this.activeLink=H;else{const Y=this.links.find(ie=>this.router.url.includes(ie.link));this.activeLink=Y?this.selNode&&"CLN"===this.selNode.lnImplementation?this.links[1].link:Y.link:this.links[this.links.length-1].link}}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(null),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(qi.il),e.rXU(Ja.Ix),e.rXU(Ja.nX))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-services-settings"]],standalone:!1,decls:16,vars:5,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-sub-title-container","my-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngIf"],["tabindex","2","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngIf"],["tabindex","3","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","3","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(Y,ie){if(1&Y&&(e.j41(0,"div",1)(1,"div",2),e.nrm(2,"fa-icon",3),e.j41(3,"span",4),e.EFF(4,"Services"),e.k0s()()(),e.j41(5,"div",5)(6,"mat-card")(7,"mat-card-content",5)(8,"nav",6),e.DNE(9,I2,2,4,"div",7)(10,ih,2,4,"div",8)(11,r0,2,4,"div",9),e.k0s(),e.nrm(12,"mat-tab-nav-panel",null,0),e.j41(14,"div",10),e.nrm(15,"router-outlet"),e.k0s()()()()),2&Y){const et=e.sdS(13);e.R7$(2),e.Y8G("icon",ie.faLayerGroup),e.R7$(6),e.Y8G("tabPanel",et),e.R7$(),e.Y8G("ngIf","LND"===ie.selNode.lnImplementation),e.R7$(),e.Y8G("ngIf","ECL"!==ie.selNode.lnImplementation),e.R7$(),e.Y8G("ngIf","ECL"===ie.selNode.lnImplementation)}},dependencies:[c.bT,Tr.aY,Ea.RN,Ea.m2,bn.DJ,bn.sA,bn.UI,Dr.Bu,Dr.hQ,Dr.Ql,Ja.n3,Wo.Wk],encapsulation:2}))}return z(),F})();const bc=["form"];function s0(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Loop server URL is required."),e.k0s())}function xc(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Specify the loop server url with 'https://'."),e.k0s())}function k2(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Loop macaroon path is required."),e.k0s())}let Cs=(()=>{var z;class F{constructor(H,Y){this.logger=H,this.store=Y,this.faInfoCircle=Mn.iW_,this.enableLoop=!1,this.unSubs=[new hn.B,new hn.B]}ngOnInit(){this.store.select(Va._c).pipe((0,wn.Q)(this.unSubs[0])).subscribe(H=>{this.selNode=H,this.enableLoop=!(!H.settings.swapServerUrl||""===H.settings.swapServerUrl.trim()),this.previousSelNode=JSON.parse(JSON.stringify(this.selNode)),this.logger.info(H)})}onEnableServiceChanged(H){this.enableLoop=H.checked,this.enableLoop||(this.selNode.authentication.swapMacaroonPath="",this.selNode.settings.swapServerUrl="")}onUpdateService(){if(this.selNode.settings.swapServerUrl&&""!==this.selNode.settings.swapServerUrl.trim()&&!this.form.controls.srvrUrl.value.includes("https://")&&this.form.controls.srvrUrl.setErrors({invalid:!0}),this.enableLoop&&(!this.selNode.settings.swapServerUrl||""===this.selNode.settings.swapServerUrl.trim()||!this.selNode.authentication.swapMacaroonPath||""===this.selNode.authentication.swapMacaroonPath.trim()))return!0;this.enableLoop||(delete this.selNode.settings.swapServerUrl,delete this.selNode.authentication.swapMacaroonPath),this.logger.info(this.selNode),this.store.dispatch((0,Nn.T$)({payload:this.selNode}))}onReset(){this.selNode=JSON.parse(JSON.stringify(this.previousSelNode)),this.enableLoop=!(!this.selNode.settings.swapServerUrl||""===this.selNode.settings.swapServerUrl.trim())}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(ir.gP),e.rXU(qi.il))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-loop-service-settings"]],viewQuery:function(Y,ie){if(1&Y&&e.GBs(bc,7),2&Y){let et;e.mGM(et=e.lsd())&&(ie.form=et.first)}},standalone:!1,decls:38,vars:11,consts:[["form","ngForm"],["srvrUrl","ngModel"],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["href","https://github.com/lightninglabs/loop","target","_blank"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start stretch"],["autoFocus","","tabindex","1","color","primary","name","loop",1,"ml-2",3,"ngModelChange","change","ngModel"],[1,"mb-2"],["matInput","","type","text","id","swapServerUrl","name","srvrUrl","tabindex","2",3,"ngModelChange","required","disabled","ngModel"],[4,"ngIf"],["matInput","","type","text","id","swapMacaroonPath","name","swapMacaroonPath","tabindex","3",3,"ngModelChange","required","disabled","ngModel"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","5",3,"click"]],template:function(Y,ie){if(1&Y){const et=e.RV6();e.j41(0,"div",2)(1,"div",3),e.nrm(2,"fa-icon",4),e.j41(3,"span"),e.EFF(4,"Please ensure that "),e.j41(5,"strong"),e.EFF(6,"loopd"),e.k0s(),e.EFF(7," is running and accessible to RTL before enabling this service. Click "),e.j41(8,"strong")(9,"a",5),e.EFF(10,"here"),e.k0s()(),e.EFF(11," to learn more about the installation."),e.k0s()(),e.j41(12,"form",6,0)(14,"div",7)(15,"mat-slide-toggle",8),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.enableLoop,$t)||(ie.enableLoop=$t),p.Njj($t)}),e.bIt("change",function($t){return p.eBV(et),p.Njj(ie.onEnableServiceChanged($t))}),e.EFF(16,"Enable Loop Service"),e.k0s(),e.j41(17,"mat-form-field",9)(18,"mat-label"),e.EFF(19,"Loop Server URL"),e.k0s(),e.j41(20,"input",10,1),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.selNode.settings.swapServerUrl,$t)||(ie.selNode.settings.swapServerUrl=$t),p.Njj($t)}),e.k0s(),e.j41(22,"mat-hint"),e.EFF(23,"Service url for loop server REST APIs, eg. https://127.0.0.1:8081"),e.k0s(),e.DNE(24,s0,2,0,"mat-error",11)(25,xc,2,0,"mat-error",11),e.k0s(),e.j41(26,"mat-form-field")(27,"mat-label"),e.EFF(28,"Loop Macaroon Path"),e.k0s(),e.j41(29,"input",12),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.selNode.authentication.swapMacaroonPath,$t)||(ie.selNode.authentication.swapMacaroonPath=$t),p.Njj($t)}),e.k0s(),e.j41(30,"mat-hint"),e.EFF(31,"Path for the folder containing service 'loop.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Local\\\\Loop\\\\testnet"),e.k0s(),e.DNE(32,k2,2,0,"mat-error",11),e.k0s()()(),e.j41(33,"div",13)(34,"button",14),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.onReset())}),e.EFF(35,"Reset"),e.k0s(),e.j41(36,"button",15),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.onUpdateService())}),e.EFF(37,"Update"),e.k0s()()()}if(2&Y){const et=e.sdS(21);e.R7$(2),e.Y8G("icon",ie.faInfoCircle),e.R7$(13),e.R50("ngModel",ie.enableLoop),e.R7$(5),e.Y8G("required",ie.enableLoop)("disabled",!ie.enableLoop),e.R50("ngModel",ie.selNode.settings.swapServerUrl),e.R7$(4),e.Y8G("ngIf",!ie.selNode.settings.swapServerUrl&&ie.enableLoop),e.R7$(),e.Y8G("ngIf",(null==et||null==et.errors?null:et.errors.invalid)&&ie.enableLoop),e.R7$(4),e.Y8G("required",ie.enableLoop)("disabled",!ie.enableLoop),e.R50("ngModel",ie.selNode.authentication.swapMacaroonPath),e.R7$(3),e.Y8G("ngIf",!ie.selNode.authentication.swapMacaroonPath&&ie.enableLoop)}},dependencies:[c.bT,cn.qT,cn.me,cn.BC,cn.cb,cn.YS,cn.vS,cn.cV,Tr.aY,Hr.$z,fo.fg,ra.rl,ra.nJ,ra.MV,ra.TL,bn.DJ,bn.sA,bn.UI,pd.sG,Yt.Ld,Pi.N],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}))}return z(),F})();const R2=["form"];function O2(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Boltz server URL is required."),e.k0s())}function Sl(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Specify the boltz server url with 'https://'."),e.k0s())}function P2(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Boltz macaroon path is required."),e.k0s())}let F2=(()=>{var z;class F{constructor(H,Y){this.logger=H,this.store=Y,this.faInfoCircle=Mn.iW_,this.enableBoltz=!1,this.serverUrl="",this.macaroonPath="",this.unSubs=[new hn.B,new hn.B]}ngOnInit(){this.store.select(Va._c).pipe((0,wn.Q)(this.unSubs[0])).subscribe(H=>{this.selNode=H,this.enableBoltz=!(!H.settings.boltzServerUrl||""===H.settings.boltzServerUrl.trim()),this.serverUrl=this.selNode.settings.boltzServerUrl||"",this.macaroonPath=this.selNode.authentication.boltzMacaroonPath,this.previousSelNode=JSON.parse(JSON.stringify(this.selNode)),this.logger.info(H)})}onEnableServiceChanged(H){this.enableBoltz=H.checked,this.enableBoltz||(this.macaroonPath="",this.serverUrl="")}onUpdateService(){if(this.serverUrl&&""!==this.serverUrl.trim()&&!this.form.controls.srvrUrl.value.includes("https://")&&this.form.controls.srvrUrl.setErrors({invalid:!0}),this.enableBoltz&&(!this.serverUrl||""===this.serverUrl.trim()||!this.serverUrl.includes("https://")||!this.macaroonPath||""===this.macaroonPath.trim()))return!0;this.logger.info(this.selNode),this.enableBoltz?(this.selNode.settings.boltzServerUrl=this.serverUrl,this.selNode.authentication.boltzMacaroonPath=this.macaroonPath):(delete this.selNode.settings.boltzServerUrl,delete this.selNode.authentication.boltzMacaroonPath),this.store.dispatch((0,Nn.T$)({payload:this.selNode}))}onReset(){this.selNode=JSON.parse(JSON.stringify(this.previousSelNode)),this.serverUrl=this.selNode.settings.boltzServerUrl||"",this.macaroonPath=this.selNode.authentication.boltzMacaroonPath,this.enableBoltz=!(!this.serverUrl||""===this.serverUrl.trim())}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(ir.gP),e.rXU(qi.il))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-boltz-service-settings"]],viewQuery:function(Y,ie){if(1&Y&&e.GBs(R2,7),2&Y){let et;e.mGM(et=e.lsd())&&(ie.form=et.first)}},standalone:!1,decls:38,vars:11,consts:[["form","ngForm"],["srvrUrl","ngModel"],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["href","https://docs.boltz.exchange/v/boltz-client/","target","_blank"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start stretch"],["autoFocus","","tabindex","1","color","primary","name","boltz",1,"ml-2",3,"ngModelChange","change","ngModel"],[1,"mb-2"],["matInput","","type","text","id","boltzServerUrl","name","srvrUrl","tabindex","2",3,"ngModelChange","required","disabled","ngModel"],[4,"ngIf"],["matInput","","type","text","id","boltzMacaroonPath","name","boltzMacaroonPath","tabindex","3",3,"ngModelChange","required","disabled","ngModel"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","5",3,"click"]],template:function(Y,ie){if(1&Y){const et=e.RV6();e.j41(0,"div",2)(1,"div",3),e.nrm(2,"fa-icon",4),e.j41(3,"span"),e.EFF(4,"Please ensure that "),e.j41(5,"strong"),e.EFF(6,"boltzd"),e.k0s(),e.EFF(7," is running and accessible to RTL before enabling this service. Click "),e.j41(8,"strong")(9,"a",5),e.EFF(10,"here"),e.k0s()(),e.EFF(11," to learn more about the installation."),e.k0s()(),e.j41(12,"form",6,0)(14,"div",7)(15,"mat-slide-toggle",8),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.enableBoltz,$t)||(ie.enableBoltz=$t),p.Njj($t)}),e.bIt("change",function($t){return p.eBV(et),p.Njj(ie.onEnableServiceChanged($t))}),e.EFF(16,"Enable Boltz Service"),e.k0s(),e.j41(17,"mat-form-field",9)(18,"mat-label"),e.EFF(19,"Boltz Server URL"),e.k0s(),e.j41(20,"input",10,1),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.serverUrl,$t)||(ie.serverUrl=$t),p.Njj($t)}),e.k0s(),e.j41(22,"mat-hint"),e.EFF(23,"Service url for boltz server REST APIs, eg. https://127.0.0.1:9003"),e.k0s(),e.DNE(24,O2,2,0,"mat-error",11)(25,Sl,2,0,"mat-error",11),e.k0s(),e.j41(26,"mat-form-field")(27,"mat-label"),e.EFF(28,"Boltz Macaroon Path"),e.k0s(),e.j41(29,"input",12),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.macaroonPath,$t)||(ie.macaroonPath=$t),p.Njj($t)}),e.k0s(),e.j41(30,"mat-hint"),e.EFF(31,"Path for the folder containing boltz 'admin.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Boltz\\\\testnet"),e.k0s(),e.DNE(32,P2,2,0,"mat-error",11),e.k0s()()(),e.j41(33,"div",13)(34,"button",14),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.onReset())}),e.EFF(35,"Reset"),e.k0s(),e.j41(36,"button",15),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.onUpdateService())}),e.EFF(37,"Update"),e.k0s()()()}if(2&Y){const et=e.sdS(21);e.R7$(2),e.Y8G("icon",ie.faInfoCircle),e.R7$(13),e.R50("ngModel",ie.enableBoltz),e.R7$(5),e.Y8G("required",ie.enableBoltz)("disabled",!ie.enableBoltz),e.R50("ngModel",ie.serverUrl),e.R7$(4),e.Y8G("ngIf",(!ie.serverUrl||""===ie.serverUrl.trim())&&ie.enableBoltz),e.R7$(),e.Y8G("ngIf",(null==et||null==et.errors?null:et.errors.invalid)&&ie.enableBoltz),e.R7$(4),e.Y8G("required",ie.enableBoltz)("disabled",!ie.enableBoltz),e.R50("ngModel",ie.macaroonPath),e.R7$(3),e.Y8G("ngIf",!ie.macaroonPath&&ie.enableBoltz)}},dependencies:[c.bT,cn.qT,cn.me,cn.BC,cn.cb,cn.YS,cn.vS,cn.cV,Tr.aY,Hr.$z,fo.fg,ra.rl,ra.nJ,ra.MV,ra.TL,bn.DJ,bn.sA,bn.UI,pd.sG,Yt.Ld,Pi.N],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}))}return z(),F})(),g4=(()=>{var z;class F{constructor(){}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-ln-services"]],standalone:!1,decls:1,vars:0,template:function(Y,ie){1&Y&&e.nrm(0,"router-outlet")},dependencies:[Ja.n3],encapsulation:2}))}return z(),F})();var l1=l(1092),Cc=l(4104),Mc=l(96695),Ha=l(2042),Ba=l(19295),$c=l(67575);const ah=()=>["all"],rh=z=>({"overflow-auto error-border":z,"overflow-auto":!0}),o0=()=>["no_swap"],bd=z=>({width:z}),N2=z=>({"display-none":z});function c1(z,F){if(1&z&&(e.j41(0,"mat-option",37),e.EFF(1),e.k0s()),2&z){const L=F.$implicit,H=e.XpG();e.Y8G("value",L),e.R7$(),e.JRh(H.getLabel(L))}}function B2(z,F){1&z&&e.nrm(0,"mat-progress-bar",38)}function z2(z,F){1&z&&(e.j41(0,"th",39),e.EFF(1,"State"),e.k0s())}function Ec(z,F){if(1&z&&(e.j41(0,"td",40),e.EFF(1),e.k0s()),2&z){const L=F.$implicit,H=e.XpG();e.R7$(),e.JRh(H.LoopStateEnum[null==L?null:L.state])}}function l0(z,F){1&z&&(e.j41(0,"th",39),e.EFF(1,"Initiation Time"),e.k0s())}function c0(z,F){if(1&z&&(e.j41(0,"td",40),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&z){const L=F.$implicit;e.R7$(),e.JRh(e.i5U(2,1,(null==L?null:L.initiation_time)/1e6,"dd/MMM/y HH:mm"))}}function U2(z,F){1&z&&(e.j41(0,"th",39),e.EFF(1,"Last Update Time"),e.k0s())}function V2(z,F){if(1&z&&(e.j41(0,"td",40),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&z){const L=F.$implicit;e.R7$(),e.JRh(e.i5U(2,1,(null==L?null:L.last_update_time)/1e6,"dd/MMM/y HH:mm"))}}function H2(z,F){1&z&&(e.j41(0,"th",41),e.EFF(1,"Amount (Sats)"),e.k0s())}function G2(z,F){if(1&z&&(e.j41(0,"td",40)(1,"span",42),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&z){const L=F.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==L?null:L.amt))}}function d0(z,F){1&z&&(e.j41(0,"th",41),e.EFF(1,"Cost Server (Sats)"),e.k0s())}function j2(z,F){if(1&z&&(e.j41(0,"td",40)(1,"span",42),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&z){const L=F.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==L?null:L.cost_server))}}function W2(z,F){1&z&&(e.j41(0,"th",41),e.EFF(1,"Cost Offchain (Sats)"),e.k0s())}function _4(z,F){if(1&z&&(e.j41(0,"td",40)(1,"span",42),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&z){const L=F.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==L?null:L.cost_offchain))}}function d1(z,F){1&z&&(e.j41(0,"th",41),e.EFF(1,"Cost Onchain (Sats)"),e.k0s())}function u0(z,F){if(1&z&&(e.j41(0,"td",40)(1,"span",42),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&z){const L=F.$implicit;e.R7$(2),e.SpI(" ",e.bMT(3,1,null==L?null:L.cost_onchain)," ")}}function sh(z,F){1&z&&(e.j41(0,"th",39),e.EFF(1,"HTLC Address"),e.k0s())}function h0(z,F){if(1&z&&(e.j41(0,"td",40)(1,"span",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&z){const L=F.$implicit,H=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,bd,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),e.R7$(2),e.JRh(null==L?null:L.htlc_address)}}function u1(z,F){1&z&&(e.j41(0,"th",39),e.EFF(1,"ID"),e.k0s())}function h1(z,F){if(1&z&&(e.j41(0,"td",40)(1,"span",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&z){const L=F.$implicit,H=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,bd,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),e.R7$(2),e.JRh(null==L?null:L.id)}}function wc(z,F){1&z&&(e.j41(0,"th",39),e.EFF(1,"ID (Bytes)"),e.k0s())}function ic(z,F){if(1&z&&(e.j41(0,"td",40)(1,"span",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&z){const L=F.$implicit,H=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,bd,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),e.R7$(2),e.JRh(null==L?null:L.id_bytes)}}function f1(z,F){if(1&z){const L=e.RV6();e.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",48),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function oh(z,F){if(1&z){const L=e.RV6();e.j41(0,"td",49)(1,"button",50),e.bIt("click",function(Y){const ie=p.eBV(L).$implicit,et=e.XpG();return p.Njj(et.onSwapClick(ie,Y))}),e.EFF(2,"View Info"),e.k0s()()}}function X2(z,F){if(1&z&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&z){const L=e.XpG(2);e.R7$(),e.JRh(L.emptyTableMessage)}}function K2(z,F){if(1&z&&(e.j41(0,"td",51),e.DNE(1,X2,2,1,"p",52),e.k0s()),2&z){const L=e.XpG();e.R7$(),e.Y8G("ngIf",!(null!=L.listSwaps&&L.listSwaps.data)||(null==L.listSwaps||null==L.listSwaps.data?null:L.listSwaps.data.length)<1)}}function m1(z,F){if(1&z&&e.nrm(0,"tr",53),2&z){const L=e.XpG();e.Y8G("ngClass",e.eq3(1,N2,(null==L.listSwaps?null:L.listSwaps.data)&&(null==L.listSwaps||null==L.listSwaps.data?null:L.listSwaps.data.length)>0))}}function Zc(z,F){1&z&&e.nrm(0,"tr",54)}function nc(z,F){1&z&&e.nrm(0,"tr",55)}let lh=(()=>{var z;class F{constructor(H,Y,ie,et,Bt,$t){this.logger=H,this.commonService=Y,this.store=ie,this.loopService=et,this.datePipe=Bt,this.camelCaseWithReplace=$t,this.selectedSwapType=ot.C7.LOOP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=ot._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="loop",this.tableSetting={tableId:"loop",recordsPerPage:ot.md,sortBy:"initiation_time",sortOrder:ot.oi.DESCENDING},this.LoopStateEnum=ot.Hx,this.faHistory=Mn.Int,this.swapCaption="Loop Out",this.displayedColumns=[],this.listSwaps=new Ba.I6([]),this.selFilter="",this.pageSize=ot.md,this.pageSizeOptions=ot.xp,this.screenSize="",this.screenSizeEnum=ot.f7,this.unSubs=[new hn.B,new hn.B,new hn.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(H){this.swapCaption=this.selectedSwapType===ot.C7.LOOP_IN?"Loop In":"Loop Out",this.loadSwapsTable(this.swapsData)}ngOnInit(){this.store.select(_d.$G).pipe((0,wn.Q)(this.unSubs[0])).subscribe(H=>{this.tableSetting=H.pageSettings.find(Y=>Y.pageId===this.PAGE_ID)?.tables.find(Y=>Y.tableId===this.tableSetting.tableId)||ot.ZC.find(Y=>Y.pageId===this.PAGE_ID)?.tables.find(Y=>Y.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===ot.f7.XS||this.screenSize===ot.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:ot.md,this.swapsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadSwapsTable(this.swapsData),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)})}ngAfterViewInit(){this.swapsData&&this.swapsData.length>0&&this.loadSwapsTable(this.swapsData)}applyFilter(){this.listSwaps.filter=this.selFilter.trim().toLowerCase()}getLabel(H){const Y=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(ie=>ie.column===H);return Y?Y.label?Y.label:this.camelCaseWithReplace.transform(Y.column,"_"):this.commonService.titleCase(H)}setFilterPredicate(){this.listSwaps.filterPredicate=(H,Y)=>{let ie="";switch(this.selFilterBy){case"all":ie=JSON.stringify(H).toLowerCase();break;case"state":ie=H?.state?this.LoopStateEnum[H?.state]:"";break;case"initiation_time":case"last_update_time":ie=this.datePipe.transform(new Date((H[this.selFilterBy]||0)/1e6),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:ie=typeof H[this.selFilterBy]>"u"?"":"string"==typeof H[this.selFilterBy]?H[this.selFilterBy].toLowerCase():"boolean"==typeof H[this.selFilterBy]?H[this.selFilterBy]?"yes":"no":H[this.selFilterBy].toString()}return"state"===this.selFilterBy?0===ie.indexOf(Y):ie.includes(Y)}}onSwapClick(H,Y){this.loopService.getSwap(H.id_bytes?.replace(/\//g,"_")?.replace(/\+/g,"-")||"").pipe((0,wn.Q)(this.unSubs[1])).subscribe(ie=>{this.store.dispatch((0,Nn.xO)({payload:{data:{type:ot.A$.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"state",value:ot.Hx[ie.state||""],title:"Status",width:50,type:ot.UN.STRING},{key:"amt",value:ie.amt,title:"Amount (Sats)",width:50,type:ot.UN.NUMBER}],[{key:"initiation_time",value:(ie.initiation_time||0)/1e9,title:"Initiation Time",width:50,type:ot.UN.DATE_TIME},{key:"last_update_time",value:(ie.last_update_time||0)/1e9,title:"Last Update Time",width:50,type:ot.UN.DATE_TIME}],[{key:"cost_server",value:ie.cost_server,title:"Server Cost (Sats)",width:33,type:ot.UN.NUMBER},{key:"cost_offchain",value:ie.cost_offchain,title:"Offchain Cost (Sats)",width:33,type:ot.UN.NUMBER},{key:"cost_onchain",value:ie.cost_onchain,title:"Onchain Cost (Sats)",width:34,type:ot.UN.NUMBER}],[{key:"id_bytes",value:ie.id_bytes,title:"ID",width:100,type:ot.UN.STRING}],[{key:"htlc_address",value:ie.htlc_address,title:"HTLC Address",width:100,type:ot.UN.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(H){this.listSwaps=new Ba.I6([...H]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(Y,ie)=>Y[ie]&&isNaN(Y[ie])?Y[ie].toLocaleLowerCase():Y[ie]?+Y[ie]:null,this.listSwaps.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listSwaps)}onDownloadCSV(){this.listSwaps.data&&this.listSwaps.data.length>0&&this.commonService.downloadFile(this.listSwaps.data,this.selectedSwapType===ot.C7.LOOP_IN?"Loop in":"Loop out")}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(null),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(ir.gP),e.rXU(qs.h),e.rXU(qi.il),e.rXU(Cc.Q),e.rXU(c.vh),e.rXU(t1.VD))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-swaps"]],viewQuery:function(Y,ie){if(1&Y&&(e.GBs(Ha.B4,5),e.GBs(Mc.iy,5)),2&Y){let et;e.mGM(et=e.lsd())&&(ie.sort=et.first),e.mGM(et=e.lsd())&&(ie.paginator=et.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},standalone:!1,features:[e.Jv_([{provide:De.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Mc.xX,useValue:(0,ot.on)("Swaps")}]),e.OA$],decls:61,vars:20,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"card-content-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","fxFlex","100",1,"page-sub-title-container","w-100"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start center",1,"w-100"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","initiation_time"],["matColumnDef","last_update_time"],["matColumnDef","amt"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","cost_server"],["matColumnDef","cost_offchain"],["matColumnDef","cost_onchain"],["matColumnDef","htlc_address"],["matColumnDef","id"],["matColumnDef","id_bytes"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_swap"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(Y,ie){if(1&Y){const et=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"div",3),e.nrm(3,"fa-icon",4),e.j41(4,"span",5),e.EFF(5),e.k0s()(),e.j41(6,"div",6)(7,"mat-form-field",7)(8,"mat-label"),e.EFF(9,"Filter By"),e.k0s(),e.j41(10,"mat-select",8),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.selFilterBy,$t)||(ie.selFilterBy=$t),p.Njj($t)}),e.bIt("selectionChange",function(){return p.eBV(et),ie.selFilter="",p.Njj(ie.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,c1,2,2,"mat-option",9),e.k0s()()(),e.j41(13,"mat-form-field",7)(14,"mat-label"),e.EFF(15,"Filter"),e.k0s(),e.j41(16,"input",10),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.selFilter,$t)||(ie.selFilter=$t),p.Njj($t)}),e.bIt("input",function(){return p.eBV(et),p.Njj(ie.applyFilter())})("keyup",function(){return p.eBV(et),p.Njj(ie.applyFilter())}),e.k0s()()()(),e.j41(17,"div",11)(18,"div",12),e.DNE(19,B2,1,0,"mat-progress-bar",13),e.j41(20,"table",14,0),e.qex(22,15),e.DNE(23,z2,2,0,"th",16)(24,Ec,2,1,"td",17),e.bVm(),e.qex(25,18),e.DNE(26,l0,2,0,"th",16)(27,c0,3,4,"td",17),e.bVm(),e.qex(28,19),e.DNE(29,U2,2,0,"th",16)(30,V2,3,4,"td",17),e.bVm(),e.qex(31,20),e.DNE(32,H2,2,0,"th",21)(33,G2,4,3,"td",17),e.bVm(),e.qex(34,22),e.DNE(35,d0,2,0,"th",21)(36,j2,4,3,"td",17),e.bVm(),e.qex(37,23),e.DNE(38,W2,2,0,"th",21)(39,_4,4,3,"td",17),e.bVm(),e.qex(40,24),e.DNE(41,d1,2,0,"th",21)(42,u0,4,3,"td",17),e.bVm(),e.qex(43,25),e.DNE(44,sh,2,0,"th",16)(45,h0,4,4,"td",17),e.bVm(),e.qex(46,26),e.DNE(47,u1,2,0,"th",16)(48,h1,4,4,"td",17),e.bVm(),e.qex(49,27),e.DNE(50,wc,2,0,"th",16)(51,ic,4,4,"td",17),e.bVm(),e.qex(52,28),e.DNE(53,f1,6,0,"th",29)(54,oh,3,0,"td",30),e.bVm(),e.qex(55,31),e.DNE(56,K2,2,1,"td",32),e.bVm(),e.DNE(57,m1,1,3,"tr",33)(58,Zc,1,0,"tr",34)(59,nc,1,0,"tr",35),e.k0s(),e.nrm(60,"mat-paginator",36),e.k0s()()()}2&Y&&(e.R7$(3),e.Y8G("icon",ie.faHistory),e.R7$(2),e.SpI("",ie.swapCaption," History"),e.R7$(5),e.R50("ngModel",ie.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(16,ah).concat(ie.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",ie.selFilter),e.R7$(3),e.Y8G("ngIf",!0===ie.flgLoading[0]),e.R7$(),e.Y8G("matSortActive",ie.tableSetting.sortBy)("matSortDirection",ie.tableSetting.sortOrder)("dataSource",ie.listSwaps)("ngClass",e.eq3(17,rh,"error"===ie.flgLoading[0])),e.R7$(37),e.Y8G("matFooterRowDef",e.lJ4(19,o0)),e.R7$(),e.Y8G("matHeaderRowDef",ie.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",ie.displayedColumns),e.R7$(),e.Y8G("pageSize",ie.pageSize)("pageSizeOptions",ie.pageSizeOptions)("hidePageSize",ie.screenSize!==ie.screenSizeEnum.XS))},dependencies:[c.YU,c.Sq,c.bT,c.B3,cn.me,cn.BC,cn.vS,Tr.aY,Hr.$z,fo.fg,ra.rl,ra.nJ,$c.HM,bn.DJ,bn.sA,bn.UI,Lo.PW,Lo.eI,De.VO,De.$2,pt.wT,Ha.B4,Ha.aE,Ba.Zl,Ba.tL,Ba.ji,Ba.cC,Ba.YV,Ba.iL,Ba.Zq,Ba.xW,Ba.KS,Ba.$R,Ba.Qo,Ba.YZ,Ba.NB,Ba.iF,Mc.iy,Yt.ZF,Yt.Ld,c.QX,c.vh],encapsulation:2}))}return z(),F})();const ch=z=>["../",z];function dh(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",11),e.bIt("click",function(){const Y=p.eBV(L).$implicit,ie=e.XpG();return p.Njj(ie.onSelectedIndexChange(Y))}),e.EFF(1),e.k0s()}if(2&z){const L=F.$implicit,H=e.XpG();e.Y8G("active",H.activeTab.link===L.link)("routerLink",e.eq3(3,ch,L.link)),e.R7$(),e.JRh(L.name)}}let uh=(()=>{var z;class F{constructor(H,Y,ie){this.router=H,this.loopService=Y,this.store=ie,this.faInfinity=Mn.C8j,this.loopInfo=null,this.targetConf=2,this.inAmount=25e4,this.quotes=[],this.LoopTypeEnum=ot.C7,this.selectedSwapType=ot.C7.LOOP_OUT,this.storedSwaps=[],this.filteredSwaps=[],this.emptyTableMessage="No swap data available.",this.flgLoading=[!0],this.links=[{link:"loopout",name:"Loop Out"},{link:"loopin",name:"Loop In"}],this.activeTab=this.links[0],this.unSubs=[new hn.B,new hn.B,new hn.B,new hn.B,new hn.B,new hn.B]}ngOnInit(){this.store.dispatch((0,Nn.mt)({payload:ot.MZ.GET_LOOP_INFO})),this.loopService.getLoopInfo().pipe((0,wn.Q)(this.unSubs[4])).subscribe({next:Y=>{this.store.dispatch((0,Nn.y0)({payload:ot.MZ.GET_LOOP_INFO})),this.loopInfo=Y,this.loopInfo&&this.loopInfo.version&&(this.loopInfo.version=this.loopInfo.version.split(" ")[0])},error:Y=>{this.store.dispatch((0,Nn.y0)({payload:ot.MZ.GET_LOOP_INFO})),this.loopInfo.version=" Unknown"}}),this.loopService.listSwaps();const H=this.links.find(Y=>this.router.url.includes(Y.link));this.activeTab=H||this.links[0],this.selectedSwapType=H&&"loopin"===H.link?ot.C7.LOOP_IN:ot.C7.LOOP_OUT,this.router.events.pipe((0,wn.Q)(this.unSubs[0]),(0,cr.p)(Y=>Y instanceof Ja.gx)).subscribe({next:Y=>{const ie=this.links.find(et=>Y.urlAfterRedirects.includes(et.link));this.activeTab=ie||this.links[0],this.selectedSwapType=ie&&"loopin"===ie.link?ot.C7.LOOP_IN:ot.C7.LOOP_OUT}}),this.loopService.swapsChanged.pipe((0,wn.Q)(this.unSubs[1])).subscribe({next:Y=>{this.flgLoading[0]=!1,this.storedSwaps=Y,this.filteredSwaps=this.storedSwaps?.filter(ie=>ie.type===this.selectedSwapType)},error:Y=>{this.flgLoading[0]="error",this.emptyTableMessage=Y.message?Y.message:"No loop "+(this.selectedSwapType===ot.C7.LOOP_IN?"in":"out")+" available."}})}onSelectedIndexChange(H){this.selectedSwapType="loopin"===H.link?ot.C7.LOOP_IN:ot.C7.LOOP_OUT,this.filteredSwaps=this.storedSwaps?.filter(Y=>Y.type===this.selectedSwapType)}onLoop(H){H===ot.C7.LOOP_IN?this.loopService.getLoopInTermsAndQuotes(this.targetConf).pipe((0,wn.Q)(this.unSubs[2])).subscribe({next:Y=>{this.store.dispatch((0,Nn.xO)({payload:{data:{minQuote:Y[0],maxQuote:Y[1],direction:H,component:l1.D}}}))}}):this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,wn.Q)(this.unSubs[3])).subscribe({next:Y=>{this.store.dispatch((0,Nn.xO)({payload:{data:{minQuote:Y[0],maxQuote:Y[1],direction:H,component:l1.D}}}))}})}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(null),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(Ja.Ix),e.rXU(Cc.Q),e.rXU(qi.il))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-loop"]],standalone:!1,decls:15,vars:9,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"padding-gap-x-large","mt-1"],["mat-flat-button","","color","primary","type","button","tabindex","2",3,"click"],["fxLayout","row","fxFlex","100",3,"selectedSwapType","swapsData","flgLoading","emptyTableMessage"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(Y,ie){if(1&Y){const et=e.RV6();e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,dh,2,5,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8)(12,"button",9),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.onLoop(ie.selectedSwapType))}),e.EFF(13),e.k0s()(),e.nrm(14,"rtl-swaps",10),e.k0s()()()}if(2&Y){const et=e.sdS(10);e.R7$(),e.Y8G("icon",ie.faInfinity),e.R7$(2),e.SpI("Loop (v",(null==ie.loopInfo?null:ie.loopInfo.version)||" Unknown",")"),e.R7$(4),e.Y8G("tabPanel",et),e.R7$(),e.Y8G("ngForOf",ie.links),e.R7$(5),e.SpI("Start ",ie.activeTab.name),e.R7$(),e.Y8G("selectedSwapType",ie.selectedSwapType)("swapsData",ie.filteredSwaps)("flgLoading",ie.flgLoading)("emptyTableMessage",ie.emptyTableMessage)}},dependencies:[c.Sq,Tr.aY,Hr.$z,Ea.RN,Ea.m2,bn.DJ,bn.sA,bn.UI,Dr.Bu,Dr.hQ,Dr.Ql,Wo.Wk,lh],encapsulation:2}))}return z(),F})();var xd=l(1001),f0=l(84412),m0=l(18810),Sc=l(12462);let Tc=(()=>{var z;class F{constructor(H,Y,ie,et){this.httpClient=H,this.logger=Y,this.store=ie,this.commonService=et,this.swapUrl="",this.swaps={},this.boltzInfo=null,this.boltzInfoChanged=new f0.t(null),this.swapsChanged=new f0.t({}),this.unSubs=[new hn.B,new hn.B,new hn.B,new hn.B,new hn.B]}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,Nn.mt)({payload:ot.MZ.GET_BOLTZ_SWAPS})),this.swapUrl=ot.H$+ot.rl.BOLTZ_API+"/listSwaps",this.httpClient.get(this.swapUrl).pipe((0,wn.Q)(this.unSubs[0])).subscribe({next:H=>{this.store.dispatch((0,Nn.y0)({payload:ot.MZ.GET_BOLTZ_SWAPS})),this.swaps=H,this.swapsChanged.next(this.swaps)},error:H=>this.swapsChanged.error(this.handleErrorWithAlert(ot.MZ.GET_BOLTZ_SWAPS,this.swapUrl,H))})}swapInfo(H){return this.swapUrl=ot.H$+ot.rl.BOLTZ_API+"/swapInfo/"+H,this.httpClient.get(this.swapUrl).pipe((0,xs.W)(Y=>(0,Fs.of)(this.handleErrorWithAlert(ot.MZ.NO_SPINNER,this.swapUrl,Y))))}getBoltzInfo(){this.store.dispatch((0,Nn.mt)({payload:ot.MZ.GET_BOLTZ_INFO})),this.swapUrl=ot.H$+ot.rl.BOLTZ_API+"/info",this.httpClient.get(this.swapUrl).pipe((0,wn.Q)(this.unSubs[1])).subscribe({next:H=>{this.store.dispatch((0,Nn.y0)({payload:ot.MZ.GET_BOLTZ_INFO})),this.boltzInfo=H,this.boltzInfoChanged.next(this.boltzInfo)},error:H=>(this.boltzInfo={version:"2.0.0"},this.boltzInfoChanged.next(this.boltzInfo),(0,Fs.of)(this.handleErrorWithoutAlert(ot.MZ.GET_BOLTZ_INFO,this.swapUrl,H)))})}serviceInfo(){return this.store.dispatch((0,Nn.mt)({payload:ot.MZ.GET_SERVICE_INFO})),this.swapUrl=ot.H$+ot.rl.BOLTZ_API+"/serviceInfo",this.httpClient.get(this.swapUrl).pipe((0,wn.Q)(this.unSubs[2]),(0,us.T)(H=>(this.store.dispatch((0,Nn.y0)({payload:ot.MZ.GET_SERVICE_INFO})),H)),(0,xs.W)(H=>(0,Fs.of)(this.handleErrorWithAlert(ot.MZ.GET_SERVICE_INFO,this.swapUrl,H))))}swapOut(H,Y,ie){const et={amount:H,address:Y,acceptZeroConf:ie};return this.swapUrl=ot.H$+ot.rl.BOLTZ_API+"/createreverseswap",this.httpClient.post(this.swapUrl,et).pipe((0,xs.W)(Bt=>this.handleErrorWithoutAlert("Swap Out for Address: "+Y,ot.MZ.NO_SPINNER,Bt)))}swapIn(H,Y,ie){const et={amount:H,sendFromInternal:Y,refundAddress:ie};return this.swapUrl=ot.H$+ot.rl.BOLTZ_API+"/createswap",this.httpClient.post(this.swapUrl,et).pipe((0,xs.W)(Bt=>this.handleErrorWithoutAlert("Swap In for Amount: "+H,ot.MZ.NO_SPINNER,Bt)))}handleErrorWithoutAlert(H,Y,ie){let et="";return this.logger.error("ERROR IN: "+H+"\n"+JSON.stringify(ie)),this.store.dispatch((0,Nn.y0)({payload:Y})),401===ie.status?(et="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Nn.ri)({payload:et}))):503===ie.status?(et="Unable to Connect to Boltz Server.",this.store.dispatch((0,Nn.xO)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:ie.status,message:"Unable to Connect to Boltz Server",URL:H},component:Sc.f}}}))):et=this.commonService.extractErrorMessage(ie),(0,m0.$)(()=>new Error(et))}handleErrorWithAlert(H,Y,ie){let et="";if(401===ie.status&&(this.logger.info("Redirecting to Login"),this.store.dispatch((0,Nn.ri)({payload:"Authentication Failed: "+JSON.stringify(ie.error)}))),this.logger.error(ie),this.store.dispatch((0,Nn.y0)({payload:H})),401===ie.status)et="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Nn.ri)({payload:et}));else if(503===ie.status)et="Unable to Connect to Boltz Server.",setTimeout(()=>{this.store.dispatch((0,Nn.xO)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:ie.status,message:"Unable to Connect to Boltz Server",URL:Y},component:Sc.f}}}))},100);else{et=this.commonService.extractErrorMessage(ie);const Bt=ie.error&&ie.error.error&&ie.error.error.code?ie.error.error.code:ie.error&&ie.error.code?ie.error.code:ie.code?ie.code:ie.status;setTimeout(()=>{this.store.dispatch((0,Nn.xO)({payload:{data:{type:ot.A$.ERROR,alertTitle:"ERROR",message:{code:Bt,message:et,URL:Y},component:Sc.f}}}))},100)}return{message:et}}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(null),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(p.KVO(Ua.Qq),p.KVO(ir.gP),p.KVO(qi.il),p.KVO(qs.h))},this.\u0275prov=p.jDH({token:F,factory:F.\u0275fac}))}return z(),F})();const p1=z=>({"display-none":z});function Cd(z,F){1&z&&e.eu8(0)}function ac(z,F){if(1&z&&(e.j41(0,"div",4)(1,"span",5),e.EFF(2),e.k0s()()),2&z){const L=e.XpG();e.R7$(2),e.JRh(null!=L.swapStatus&&L.swapStatus.error?null==L.swapStatus?null:L.swapStatus.error:"Unknown Error.")}}function rc(z,F){if(1&z&&(e.j41(0,"div",7)(1,"h4",8),e.EFF(2,"Routing Fee (mSats)"),e.k0s(),e.j41(3,"span",5),e.EFF(4),e.nI1(5,"number"),e.k0s()()),2&z){const L=e.XpG(2);e.R7$(4),e.JRh(e.bMT(5,1,null==L.swapStatus?null:L.swapStatus.routingFeeMilliSat))}}function Y2(z,F){if(1&z&&(e.j41(0,"div",7)(1,"h4",8),e.EFF(2,"Claim Transaction ID"),e.k0s(),e.j41(3,"span",5),e.EFF(4),e.k0s()()),2&z){const L=e.XpG(2);e.R7$(4),e.JRh(null==L.swapStatus?null:L.swapStatus.claimTransactionId)}}function Md(z,F){if(1&z&&(e.j41(0,"div",4)(1,"div",6)(2,"div",7)(3,"h4",8),e.EFF(4,"ID"),e.k0s(),e.j41(5,"span",5),e.EFF(6),e.k0s()(),e.DNE(7,rc,6,3,"div",9)(8,Y2,5,1,"div",9),e.k0s(),e.nrm(9,"mat-divider",10),e.j41(10,"div",6)(11,"div",11)(12,"h4",8),e.EFF(13,"Lockup Address"),e.k0s(),e.j41(14,"span",5),e.EFF(15),e.k0s()()()()),2&z){const L=e.XpG();e.R7$(6),e.JRh(null==L.swapStatus?null:L.swapStatus.id),e.R7$(),e.Y8G("ngIf",L.acceptZeroConf),e.R7$(),e.Y8G("ngIf",L.acceptZeroConf),e.R7$(7),e.JRh(null==L.swapStatus?null:L.swapStatus.lockupAddress)}}function p0(z,F){1&z&&(e.j41(0,"span",22),e.EFF(1,"N/A"),e.k0s())}function sc(z,F){1&z&&(e.j41(0,"span",23),e.EFF(1,"QR Code Not Applicable"),e.k0s())}function hh(z,F){1&z&&e.nrm(0,"mat-divider",24),2&z&&e.Y8G("inset",!0)}function g0(z,F){if(1&z&&(e.j41(0,"div",6)(1,"div",11)(2,"h4",8),e.EFF(3,"Transaction ID"),e.k0s(),e.j41(4,"span",5),e.EFF(5),e.k0s()()()),2&z){const L=e.XpG(2);e.R7$(5),e.JRh(null==L.swapStatus?null:L.swapStatus.txId)}}function g1(z,F){if(1&z&&(e.j41(0,"div",6)(1,"div",25)(2,"h4",8),e.EFF(3,"ID"),e.k0s(),e.j41(4,"span",5),e.EFF(5),e.k0s()(),e.j41(6,"div",25)(7,"h4",8),e.EFF(8,"Expected Amount (Sats)"),e.k0s(),e.j41(9,"span",5),e.EFF(10),e.nI1(11,"number"),e.k0s()()()),2&z){const L=e.XpG(2);e.R7$(5),e.JRh(null==L.swapStatus?null:L.swapStatus.id),e.R7$(5),e.JRh(e.bMT(11,2,null==L.swapStatus?null:L.swapStatus.expectedAmount))}}function Q2(z,F){1&z&&e.nrm(0,"mat-divider",10)}function _0(z,F){if(1&z&&(e.j41(0,"div",6)(1,"div",11)(2,"h4",8),e.EFF(3,"Address"),e.k0s(),e.j41(4,"span",5),e.EFF(5),e.k0s()()()),2&z){const L=e.XpG(2);e.R7$(5),e.JRh(null==L.swapStatus?null:L.swapStatus.address)}}function Jc(z,F){1&z&&e.nrm(0,"mat-divider",10)}function qc(z,F){if(1&z&&(e.j41(0,"div",6)(1,"div",11)(2,"h4",8),e.EFF(3,"BIP 21"),e.k0s(),e.j41(4,"span",5),e.EFF(5),e.k0s()()()),2&z){const L=e.XpG(2);e.R7$(5),e.JRh(null==L.swapStatus?null:L.swapStatus.bip21)}}function Dc(z,F){if(1&z&&(e.j41(0,"div",12)(1,"div",13),e.nrm(2,"qr-code",14),e.DNE(3,p0,2,0,"span",15),e.k0s(),e.j41(4,"div",16)(5,"div",4)(6,"div",17),e.nrm(7,"qr-code",14),e.DNE(8,sc,2,0,"span",18),e.k0s(),e.DNE(9,hh,1,1,"mat-divider",19)(10,g0,6,1,"div",20)(11,g1,12,4,"div",20)(12,Q2,1,0,"mat-divider",21)(13,_0,6,1,"div",20)(14,Jc,1,0,"mat-divider",21)(15,qc,6,1,"div",20),e.k0s()()()),2&z){const L=e.XpG();e.R7$(),e.Y8G("fxLayoutAlign",""!==((null==L.swapStatus?null:L.swapStatus.txId)||(null==L.swapStatus?null:L.swapStatus.address))?"center start":"center center")("ngClass",e.eq3(17,p1,L.screenSize===L.screenSizeEnum.XS||L.screenSize===L.screenSizeEnum.SM)),e.R7$(),e.Y8G("value",(null==L.swapStatus?null:L.swapStatus.txId)||(null==L.swapStatus?null:L.swapStatus.address))("size",L.qrWidth),e.R7$(),e.Y8G("ngIf",""===((null==L.swapStatus?null:L.swapStatus.txId)||(null==L.swapStatus?null:L.swapStatus.address))),e.R7$(3),e.Y8G("fxLayoutAlign",""!==((null==L.swapStatus?null:L.swapStatus.txId)||(null==L.swapStatus?null:L.swapStatus.address))?"center start":"center center")("ngClass",e.eq3(19,p1,L.screenSize!==L.screenSizeEnum.XS&&L.screenSize!==L.screenSizeEnum.SM)),e.R7$(),e.Y8G("value",(null==L.swapStatus?null:L.swapStatus.txId)||(null==L.swapStatus?null:L.swapStatus.address))("size",L.qrWidth),e.R7$(),e.Y8G("ngIf",""===((null==L.swapStatus?null:L.swapStatus.txId)||(null==L.swapStatus?null:L.swapStatus.address))),e.R7$(),e.Y8G("ngIf",L.screenSize===L.screenSizeEnum.XS||L.screenSize===L.screenSizeEnum.SM),e.R7$(),e.Y8G("ngIf",L.sendFromInternal),e.R7$(),e.Y8G("ngIf",!L.sendFromInternal),e.R7$(),e.Y8G("ngIf",!L.sendFromInternal),e.R7$(),e.Y8G("ngIf",!L.sendFromInternal),e.R7$(),e.Y8G("ngIf",!L.sendFromInternal),e.R7$(),e.Y8G("ngIf",!L.sendFromInternal)}}let $2=(()=>{var z;class F{constructor(H){this.commonService=H,this.swapStatus=null,this.direction=ot.Bd.SWAP_OUT,this.acceptZeroConf=!1,this.sendFromInternal=!0,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=ot.f7,this.swapTypeEnum=ot.Bd}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.screenSize===ot.f7.XS&&(this.qrWidth=180)}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(qs.h))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-boltz-swap-status"]],inputs:{swapStatus:"swapStatus",direction:"direction",acceptZeroConf:"acceptZeroConf",sendFromInternal:"sendFromInternal"},standalone:!1,decls:7,vars:1,consts:[["swapFailedBlock",""],["swapOutBlock",""],["swapInBlock",""],[4,"ngTemplateOutlet"],["fxLayout","column"],[1,"foreground-secondary-text"],["fxLayout","row"],["fxFlex","33"],["fxLayoutAlign","start",1,"font-bold-500"],["fxFlex","33",4,"ngIf"],[1,"w-100","my-1"],["fxFlex","100"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row",4,"ngIf"],["class","w-100 my-1",4,"ngIf"],[1,"font-size-300"],[1,"font-size-120"],[1,"my-1",3,"inset"],["fxFlex","50"]],template:function(Y,ie){if(1&Y&&e.DNE(0,Cd,1,0,"ng-container",3)(1,ac,3,1,"ng-template",null,0,e.C5r)(3,Md,16,4,"ng-template",null,1,e.C5r)(5,Dc,16,21,"ng-template",null,2,e.C5r),2&Y){const et=e.sdS(2),Bt=e.sdS(4),$t=e.sdS(6);e.Y8G("ngTemplateOutlet",null!=ie.swapStatus&&ie.swapStatus.error?et:ie.direction===ie.swapTypeEnum.SWAP_OUT?Bt:$t)}},dependencies:[c.YU,c.bT,c.T3,Ni.q,bn.DJ,bn.sA,bn.UI,Lo.PW,fd.Um,c.QX],encapsulation:2}))}return z(),F})(),v0=(()=>{var z;class F{constructor(){this.serviceInfo={},this.direction=ot.Bd.SWAP_OUT,this.swapTypeEnum=ot.Bd}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-boltz-service-info"]],inputs:{serviceInfo:"serviceInfo",direction:"direction"},standalone:!1,decls:33,vars:13,consts:[["fxFlex","100",1,"flat-expansion-panel","mb-1",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"]],template:function(Y,ie){1&Y&&(e.j41(0,"mat-expansion-panel",0)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",1),e.EFF(4,"Service Information"),e.k0s()()(),e.j41(5,"div",2)(6,"div",3)(7,"div",4)(8,"h4",5),e.EFF(9,"Minimum Amount (Sats)"),e.k0s(),e.j41(10,"span",6),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div",4)(14,"h4",5),e.EFF(15,"Maximum Amount (Sats)"),e.k0s(),e.j41(16,"span",6),e.EFF(17),e.nI1(18,"number"),e.k0s()()(),e.nrm(19,"mat-divider",7),e.j41(20,"div",3)(21,"div",4)(22,"h4",5),e.EFF(23,"Fee Percentage"),e.k0s(),e.j41(24,"span",6),e.EFF(25),e.nI1(26,"number"),e.k0s()(),e.j41(27,"div",4)(28,"h4",5),e.EFF(29,"Miner Fee (Sats)"),e.k0s(),e.j41(30,"span",6),e.EFF(31),e.nI1(32,"number"),e.k0s()()()()()),2&Y&&(e.Y8G("expanded",!0),e.R7$(11),e.JRh(e.bMT(12,5,null==ie.serviceInfo||null==ie.serviceInfo.limits?null:ie.serviceInfo.limits.minimal)),e.R7$(6),e.JRh(e.bMT(18,7,null==ie.serviceInfo||null==ie.serviceInfo.limits?null:ie.serviceInfo.limits.maximal)),e.R7$(8),e.JRh(e.bMT(26,9,null==ie.serviceInfo||null==ie.serviceInfo.fees?null:ie.serviceInfo.fees.percentage)),e.R7$(6),e.JRh(e.bMT(32,11,ie.direction===ie.swapTypeEnum.SWAP_OUT?null==ie.serviceInfo||null==ie.serviceInfo.fees||null==ie.serviceInfo.fees.miner?null:ie.serviceInfo.fees.miner.reverse:null==ie.serviceInfo||null==ie.serviceInfo.fees||null==ie.serviceInfo.fees.miner?null:ie.serviceInfo.fees.miner.normal)))},dependencies:[Lr.GK,Lr.Z2,Lr.WN,Ni.q,bn.DJ,bn.sA,bn.UI,c.QX],encapsulation:2}))}return z(),F})();var Z2=l(16949);const _1=(z,F)=>({"small-svg":z,"large-svg":F});function fh(z,F){1&z&&e.eu8(0)}function y0(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(Y){p.eBV(L);const ie=e.XpG();return p.Njj(ie.onSwipe(Y))}),p.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17),e.k0s(),p.joV(),e.j41(12,"div",18)(13,"mat-card-title"),e.EFF(14,"Boltz Submarine Swaps explained."),e.k0s()(),e.j41(15,"div",19)(16,"mat-card-subtitle",20),e.EFF(17," Boltz is a privacy-first account free exchange and a Lightning service provider. By doing a Submarine Swap on Boltz, you can swap your on-chain Bitcoin for Lightning Bitcoin. "),e.k0s()()()}if(2&z){const L=e.XpG();e.Y8G("@sliderAnimation",L.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,_1,L.screenSize===L.screenSizeEnum.XS,L.screenSize!==L.screenSizeEnum.XS))}}function b0(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(Y){p.eBV(L);const ie=e.XpG();return p.Njj(ie.onSwipe(Y))}),p.qSk(),e.j41(1,"svg",21),e.nrm(2,"path",22)(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),e.k0s(),p.joV(),e.j41(9,"div",18)(10,"mat-card-title"),e.EFF(11,"Step 1: Deciding to Submarine Swap"),e.k0s()(),e.j41(12,"div",19)(13,"mat-card-subtitle",20),e.EFF(14," You have one or more Lightning channels that are running low on outbound liquidity and you want to fund it using your on-chain Bitcoin. "),e.k0s()()()}if(2&z){const L=e.XpG();e.Y8G("@sliderAnimation",L.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,_1,L.screenSize===L.screenSizeEnum.XS,L.screenSize!==L.screenSizeEnum.XS))}}function oc(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(Y){p.eBV(L);const ie=e.XpG();return p.Njj(ie.onSwipe(Y))}),p.qSk(),e.j41(1,"svg",29),e.nrm(2,"path",30)(3,"path",31)(4,"path",32)(5,"path",33)(6,"path",34)(7,"circle",35)(8,"rect",36),e.j41(9,"defs")(10,"pattern",37),e.nrm(11,"use",38),e.k0s(),e.nrm(12,"image",39),e.k0s()(),p.joV(),e.j41(13,"div",18)(14,"mat-card-title"),e.EFF(15,"Step 2: Sending the on-chain funds"),e.k0s()(),e.j41(16,"div",19)(17,"mat-card-subtitle",20),e.EFF(18," You send the on-chain funds to an address which can only be spent by Boltz when it pays a Lightning invoice to your node. "),e.k0s()()()}if(2&z){const L=e.XpG();e.Y8G("@sliderAnimation",L.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,_1,L.screenSize===L.screenSizeEnum.XS,L.screenSize!==L.screenSizeEnum.XS))}}function v1(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(Y){p.eBV(L);const ie=e.XpG();return p.Njj(ie.onSwipe(Y))}),p.qSk(),e.j41(1,"svg",40)(2,"g",41),e.nrm(3,"path",42)(4,"path",43)(5,"path",44)(6,"path",45)(7,"path",46),e.k0s(),e.j41(8,"defs")(9,"clipPath",47),e.nrm(10,"rect",48),e.k0s()()(),p.joV(),e.j41(11,"div",18)(12,"mat-card-title"),e.EFF(13,"Step 3: Receiving the funds on Lightning"),e.k0s()(),e.j41(14,"div",19)(15,"mat-card-subtitle",20),e.EFF(16," Boltz pays the Lightning invoice to your node and claims the on-chain funds locked in the previous step. "),e.k0s()()()}if(2&z){const L=e.XpG();e.Y8G("@sliderAnimation",L.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,_1,L.screenSize===L.screenSizeEnum.XS,L.screenSize!==L.screenSizeEnum.XS))}}function mh(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(Y){p.eBV(L);const ie=e.XpG();return p.Njj(ie.onSwipe(Y))}),p.qSk(),e.j41(1,"svg",49),e.nrm(2,"path",50)(3,"path",51)(4,"path",52)(5,"path",53)(6,"path",54),e.k0s(),p.joV(),e.j41(7,"div",18)(8,"mat-card-title"),e.EFF(9,"Done!"),e.k0s()(),e.j41(10,"div",19)(11,"mat-card-subtitle",20),e.EFF(12," You swapped your on-chain Bitcoin for Lightning Bitcoin, while also adding outbound capacity for your channels in the process - all in a non-custodial manner. "),e.k0s()()()}if(2&z){const L=e.XpG();e.Y8G("@sliderAnimation",L.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,_1,L.screenSize===L.screenSizeEnum.XS,L.screenSize!==L.screenSizeEnum.XS))}}let v4=(()=>{var z;class F{constructor(H){this.commonService=H,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.bkB,this.screenSize="",this.screenSizeEnum=ot.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(H){2===H.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===H.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(qs.h))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-boltz-swapin-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["swapStepBlock1",""],["swapStepBlock2",""],["swapStepBlock3",""],["swapStepBlock4",""],["swapStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between center",3,"swipe"],["fxFlex","30","width","323","height","323","viewBox","0 0 323 323","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M53.8333 134.583H80.75L94.2083 161.5L117.792 134.961C121.616 130.658 125.869 126.602 131.194 124.413C136.45 122.252 142.103 121.125 147.842 121.125H242.25C286.847 121.125 323 157.278 323 201.875C323 246.472 286.847 282.625 242.25 282.625H147.842C142.103 282.625 136.45 281.497 131.194 279.337C125.869 277.149 121.616 273.092 117.792 268.79L94.2083 242.25L80.75 269.167H53.8333L67.2917 228.792L53.8333 201.875L67.2917 174.958L53.8333 134.583Z",1,"fill-color-0"],["d","M26.9167 107.667H53.8333L67.2917 134.583L90.8755 108.044C94.6993 103.741 98.9527 99.6849 104.277 97.4963C109.534 95.3357 115.187 94.2083 120.925 94.2083H215.333C259.93 94.2083 296.083 130.361 296.083 174.958C296.083 219.555 259.93 255.708 215.333 255.708H120.925C115.187 255.708 109.534 254.581 104.277 252.42C98.9527 250.232 94.6993 246.176 90.8755 241.873L67.2917 215.333L53.8333 242.25H26.9167L40.375 201.875L26.9167 174.958L40.375 148.042L26.9167 107.667Z",1,"stroke-color-thick"],["d","M134.583 215.333C142.016 215.333 148.042 209.308 148.042 201.875C148.042 194.442 142.016 188.417 134.583 188.417C127.151 188.417 121.125 194.442 121.125 201.875C121.125 209.308 127.151 215.333 134.583 215.333Z",1,"fill-color-15"],["d","M107.667 188.417C115.1 188.417 121.125 182.391 121.125 174.958C121.125 167.526 115.1 161.5 107.667 161.5C100.234 161.5 94.2083 167.526 94.2083 174.958C94.2083 182.391 100.234 188.417 107.667 188.417Z",1,"stroke-color-thick"],["d","M201.875 215.333C209.308 215.333 215.333 209.308 215.333 201.875C215.333 194.442 209.308 188.417 201.875 188.417C194.442 188.417 188.417 194.442 188.417 201.875C188.417 209.308 194.442 215.333 201.875 215.333Z",1,"fill-color-15"],["d","M174.958 188.417C182.391 188.417 188.417 182.391 188.417 174.958C188.417 167.526 182.391 161.5 174.958 161.5C167.526 161.5 161.5 167.526 161.5 174.958C161.5 182.391 167.526 188.417 174.958 188.417Z",1,"stroke-color-thick"],["d","M269.167 215.333C276.599 215.333 282.625 209.308 282.625 201.875C282.625 194.442 276.599 188.417 269.167 188.417C261.734 188.417 255.708 194.442 255.708 201.875C255.708 209.308 261.734 215.333 269.167 215.333Z",1,"fill-color-15"],["d","M242.25 188.417C249.683 188.417 255.708 182.391 255.708 174.958C255.708 167.526 249.683 161.5 242.25 161.5C234.817 161.5 228.792 167.526 228.792 174.958C228.792 182.391 234.817 188.417 242.25 188.417Z",1,"stroke-color-thick"],["d","M189.321 97C186.935 97 185 98.9345 185 101.321V112.679C185 115.065 186.935 117 189.321 117H237.679C240.065 117 242 115.065 242 112.679V101.321C242 98.9345 240.065 97 237.679 97H189.321Z",1,"fill-color-15"],["d","M161.5 67.2917V94.2083H215.333V67.2917H161.5Z",1,"stroke-color-thick"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","width","347","height","169","viewBox","0 0 347 169","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M89 157.417V41.5833C89 35.2125 92.75 30 97.3333 30H230.667C235.25 30 239 35.2125 239 41.5833V157.417C239 163.787 235.25 169 230.667 169H97.3333C92.75 169 89 163.787 89 157.417Z",1,"fill-color-0"],["d","M6.25 134.625V18.375C6.25 11.9812 11.4812 6.75 17.875 6.75H203.875C210.269 6.75 215.5 11.9812 215.5 18.375V134.625C215.5 141.019 210.269 146.25 203.875 146.25H17.875C11.4812 146.25 6.25 141.019 6.25 134.625Z",1,"stroke-color-thin"],["d","M256.188 123H238.75V76.5H256.188C259.442 76.5 262 79.0575 262 82.3125V117.188C262 120.443 259.442 123 256.188 123Z",1,"fill-color-15"],["d","M232.938 99.75H215.5V53.25H232.938C236.193 53.25 238.75 55.8075 238.75 59.0625V93.9375C238.75 97.1925 236.193 99.75 232.938 99.75Z",1,"stroke-color-thin"],["d","M146 53V87.875",1,"stroke-color-thin"],["d","M146 122.634V122.749",1,"stroke-color-thin"],["d","M344.698 95.3022C346.74 97.3445 346.74 100.656 344.698 102.698L311.418 135.978C309.376 138.02 306.065 138.02 304.022 135.978C301.98 133.935 301.98 130.624 304.022 128.582L333.604 99L304.022 69.418C301.98 67.3758 301.98 64.0647 304.022 62.0225C306.065 59.9803 309.376 59.9803 311.418 62.0225L344.698 95.3022ZM277 93.7706L341 93.7706V104.229L277 104.229V93.7706Z",1,"fill-color-15"],["fxFlex","30","width","454","height","243","viewBox","0 0 454 243","fill","none","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["d","M141.75 172.125C178.098 172.125 207.562 142.66 207.562 106.312C207.562 69.9653 178.098 40.5 141.75 40.5C105.403 40.5 75.9375 69.9653 75.9375 106.312C75.9375 142.66 105.403 172.125 141.75 172.125Z",1,"fill-color-0"],["d","M121.5 151.875C157.848 151.875 187.312 122.41 187.312 86.0625C187.312 49.7153 157.848 20.25 121.5 20.25C85.1528 20.25 55.6875 49.7153 55.6875 86.0625C55.6875 122.41 85.1528 151.875 121.5 151.875Z",1,"stroke-color-thiner"],["d","M20.25 192.375H222.75",1,"stroke-color-thiner"],["d","M192.375 222.75L222.75 192.375L192.375 162",1,"stroke-color-thiner"],["fill-rule","evenodd","clip-rule","evenodd","d","M161.033 82.5635C162.307 74.0523 155.826 69.4769 146.965 66.4247L149.84 54.8952L142.822 53.1462L140.023 64.3718C138.178 63.9121 136.283 63.4783 134.4 63.0486L137.219 51.749L130.205 50L127.328 61.5255C125.801 61.1777 124.302 60.8338 122.847 60.4721L122.855 60.4361L113.177 58.0194L111.31 65.5152C111.31 65.5152 116.517 66.7085 116.407 66.7825C119.249 67.4921 119.763 69.373 119.677 70.8641L116.403 83.9987C116.599 84.0487 116.852 84.1206 117.132 84.2326C117.096 84.2236 117.06 84.2146 117.023 84.2054C116.981 84.1948 116.938 84.184 116.894 84.1731C116.732 84.1323 116.563 84.09 116.391 84.0487L111.801 102.448C111.453 103.312 110.572 104.607 108.585 104.115C108.655 104.217 103.484 102.842 103.484 102.842L100 110.875L109.133 113.152C110.152 113.408 111.16 113.67 112.156 113.93L112.158 113.931L112.159 113.931C112.823 114.104 113.481 114.276 114.136 114.443L111.232 126.105L118.242 127.854L121.118 116.316C123.033 116.836 124.892 117.316 126.711 117.768L123.844 129.251L130.862 131L133.767 119.361C145.734 121.625 154.733 120.712 158.521 109.888C161.573 101.173 158.369 96.1458 152.072 92.8677C156.658 91.8103 160.112 88.794 161.033 82.5635ZM144.998 105.049C143.008 113.044 130.493 109.739 124.766 108.226L124.766 108.226C124.251 108.09 123.791 107.969 123.398 107.871L127.252 92.4219C127.73 92.5412 128.314 92.6723 128.976 92.8208L128.976 92.8208C134.899 94.1498 147.037 96.8734 144.998 105.049ZM130.167 85.6513C134.942 86.9255 145.356 89.7047 147.17 82.4376C149.022 75.0044 138.901 72.7637 133.957 71.6694C133.401 71.5463 132.911 71.4377 132.51 71.3379L129.016 85.3499C129.346 85.4322 129.733 85.5356 130.167 85.6513Z",1,"fill-color-15"],["cx","371.815","cy","95.815","r","81.815",1,"fill-color-boltz-bk"],["x","313.615","y","82.836","width","110.745","height","30.1472","fill","url(#pattern0)"],["id","pattern0","patternContentUnits","objectBoundingBox","width","1","height","1"],[0,"xlink","href","#image0","transform","scale(0.00185185 0.00680272)"],["id","image0","width","540","height","147",0,"xlink","href","data:image/png;base64,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"],["fxFlex","30","width","295","height","295","viewBox","0 0 295 295","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["clip-path","url(#clip0)"],["d","M182.629 183.635C213.842 170.774 228.719 135.046 215.857 103.833C202.996 72.6204 167.268 57.7435 136.055 70.6048C104.843 83.4659 89.966 119.195 102.827 150.407C115.688 181.62 151.417 196.496 182.629 183.635Z",1,"fill-color-0"],["d","M154.81 93.8059C152.146 100.719 149.483 108.164 146.287 115.608C146.287 115.608 146.287 116.672 147.353 116.672H169.191C169.191 116.672 169.191 117.204 169.723 117.736L137.765 153.364C137.233 152.832 137.233 152.301 137.233 151.769L148.418 127.839V125.712H126.047V123.585L153.212 93.8059H154.81Z",1,"fill-color-15"],["d","M158.075 173.411C189.288 160.55 204.164 124.822 191.303 93.6088C178.442 62.3964 142.714 47.5195 111.501 60.3808C80.2885 73.2419 65.4118 108.971 78.2729 140.183C91.1342 171.396 126.863 186.272 158.075 173.411Z",1,"stroke-color-thinest"],["d","M259.352 172.363L85.4595 244.016",1,"stroke-color-thinest"],["d","M122.291 259.352L85.4593 244.016L100.795 207.184",1,"stroke-color-thinest"],["id","clip0"],["width","225.692","height","225.692","transform","translate(0 85.9831) rotate(-22.3941)",1,"fill-color-30"],["fxFlex","30","width","300","height","300","viewBox","0 0 300 300","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M50 237.5V112.5C50 105.625 55.625 100 62.5 100H262.5C269.375 100 275 105.625 275 112.5V237.5C275 244.375 269.375 250 262.5 250H62.5C55.625 250 50 244.375 50 237.5Z",1,"fill-color-0"],["d","M25 212.5V87.5C25 80.625 30.625 75 37.5 75H237.5C244.375 75 250 80.625 250 87.5V212.5C250 219.375 244.375 225 237.5 225H37.5C30.625 225 25 219.375 25 212.5Z",1,"stroke-color"],["d","M293.75 200H275V150H293.75C297.25 150 300 152.75 300 156.25V193.75C300 197.25 297.25 200 293.75 200Z",1,"fill-color-0"],["d","M268.75 175H250V125H268.75C272.25 125 275 127.75 275 131.25V168.75C275 172.25 272.25 175 268.75 175Z",1,"stroke-color"],["d","M137.5 187.5L156.25 150H118.75L137.5 112.5",1,"stroke-color"]],template:function(Y,ie){if(1&Y&&e.DNE(0,fh,1,0,"ng-container",5)(1,y0,18,5,"ng-template",null,0,e.C5r)(3,b0,15,5,"ng-template",null,1,e.C5r)(5,oc,19,5,"ng-template",null,2,e.C5r)(7,v1,17,5,"ng-template",null,3,e.C5r)(9,mh,13,5,"ng-template",null,4,e.C5r),2&Y){const et=e.sdS(2),Bt=e.sdS(4),$t=e.sdS(6),Ei=e.sdS(8),zi=e.sdS(10);e.Y8G("ngTemplateOutlet",1===ie.stepNumber?et:2===ie.stepNumber?Bt:3===ie.stepNumber?$t:4===ie.stepNumber?Ei:zi)}},dependencies:[c.YU,c.T3,Ea.Lc,Ea.dh,bn.DJ,bn.sA,bn.UI,Lo.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Z2.k]}}))}return z(),F})();const Ac=(z,F)=>({"small-svg":z,"large-svg":F});function J2(z,F){1&z&&e.eu8(0)}function y1(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(Y){p.eBV(L);const ie=e.XpG();return p.Njj(ie.onSwipe(Y))}),p.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17),e.k0s(),p.joV(),e.j41(12,"div",18)(13,"mat-card-title"),e.EFF(14,"Boltz Reverse Submarine Swap explained."),e.k0s()(),e.j41(15,"div",19)(16,"mat-card-subtitle",20),e.EFF(17," Boltz is a privacy-first account free exchange and a Lightning Service Provider. By doing a Reverse Submarine Swap on Boltz, you can swap your Lightning Bitcoin for on-chain Bitcoin. "),e.k0s()()()}if(2&z){const L=e.XpG();e.Y8G("@sliderAnimation",L.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Ac,L.screenSize===L.screenSizeEnum.XS,L.screenSize!==L.screenSizeEnum.XS))}}function x0(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(Y){p.eBV(L);const ie=e.XpG();return p.Njj(ie.onSwipe(Y))}),p.qSk(),e.j41(1,"svg",21)(2,"g",22),e.nrm(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),e.k0s(),e.nrm(9,"path",29),e.j41(10,"defs")(11,"clipPath",30),e.nrm(12,"rect",31),e.k0s()()(),p.joV(),e.j41(13,"div",18)(14,"mat-card-title"),e.EFF(15,"Step 1: Deciding to Reverse Submarine Swap"),e.k0s()(),e.j41(16,"div",19)(17,"mat-card-subtitle",20),e.EFF(18," You have one or more channels that are running low on inbound capacity or you want to move some of your Lightning Bitcoin to your onchain wallet. "),e.k0s()()()}if(2&z){const L=e.XpG();e.Y8G("@sliderAnimation",L.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Ac,L.screenSize===L.screenSizeEnum.XS,L.screenSize!==L.screenSizeEnum.XS))}}function Ed(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(Y){p.eBV(L);const ie=e.XpG();return p.Njj(ie.onSwipe(Y))}),p.qSk(),e.j41(1,"svg",32),e.nrm(2,"path",33)(3,"path",34)(4,"path",35)(5,"path",36)(6,"path",37)(7,"circle",38)(8,"rect",39),e.j41(9,"defs")(10,"pattern",40),e.nrm(11,"use",41),e.k0s(),e.nrm(12,"image",42),e.k0s()(),p.joV(),e.j41(13,"div",18)(14,"mat-card-title"),e.EFF(15,"Step 2: Paying the Lightning Invoice"),e.k0s()(),e.j41(16,"div",19)(17,"mat-card-subtitle",20),e.EFF(18," Your Boltz client generates a secret which is sent to Boltz. In return Boltz sends a Lightning invoice based on that secret. Your Lightning node pays that invoice which moves some of your local balance to the other side of the channel. "),e.k0s()()()}if(2&z){const L=e.XpG();e.Y8G("@sliderAnimation",L.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Ac,L.screenSize===L.screenSizeEnum.XS,L.screenSize!==L.screenSizeEnum.XS))}}function C0(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(Y){p.eBV(L);const ie=e.XpG();return p.Njj(ie.onSwipe(Y))}),p.qSk(),e.j41(1,"svg",43)(2,"g",22),e.nrm(3,"path",44)(4,"path",45)(5,"path",46)(6,"path",47)(7,"path",48),e.k0s(),e.j41(8,"defs")(9,"clipPath",30),e.nrm(10,"rect",49),e.k0s()()(),p.joV(),e.j41(11,"div",18)(12,"mat-card-title"),e.EFF(13,"Step 3: Receiving the funds on-chain"),e.k0s()(),e.j41(14,"div",19)(15,"mat-card-subtitle",20),e.EFF(16," In return for paying the invoice, Boltz locks on-chain BTC. Your node claims that onchain BTC to your wallet and by doing that, reveals the secret. With that secret Boltz can settle the Lightning invoice paid by your node. "),e.k0s()()()}if(2&z){const L=e.XpG();e.Y8G("@sliderAnimation",L.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Ac,L.screenSize===L.screenSizeEnum.XS,L.screenSize!==L.screenSizeEnum.XS))}}function Ul(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(Y){p.eBV(L);const ie=e.XpG();return p.Njj(ie.onSwipe(Y))}),p.qSk(),e.j41(1,"svg",50),e.nrm(2,"path",51)(3,"path",52)(4,"path",53)(5,"path",54)(6,"path",55),e.k0s(),p.joV(),e.j41(7,"div",18)(8,"mat-card-title"),e.EFF(9,"Done!"),e.k0s()(),e.j41(10,"div",19)(11,"mat-card-subtitle",20),e.EFF(12," You have now successfully received your funds in your on-chain wallet and also spent your local balance to increase the inbound capacity of your node - all in a non-custodial manner. "),e.k0s()()()}if(2&z){const L=e.XpG();e.Y8G("@sliderAnimation",L.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Ac,L.screenSize===L.screenSizeEnum.XS,L.screenSize!==L.screenSizeEnum.XS))}}let ed=(()=>{var z;class F{constructor(H){this.commonService=H,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.bkB,this.screenSize="",this.screenSizeEnum=ot.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(H){2===H.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===H.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(qs.h))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-boltz-swapout-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["swapStepBlock1",""],["swapStepBlock2",""],["swapStepBlock3",""],["swapStepBlock4",""],["swapStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between center",3,"swipe"],["fxFlex","30","width","368","height","368","viewBox","0 0 368 368","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M306.667 153.333H276L260.667 184L233.797 153.763C229.441 148.861 224.595 144.24 218.529 141.746C212.54 139.284 206.099 138 199.561 138H92C41.19 138 1.52588e-05 179.19 1.52588e-05 230C1.52588e-05 280.81 41.19 322 92 322H199.561C206.099 322 212.54 320.715 218.529 318.254C224.595 315.761 229.441 311.139 233.797 306.237L260.667 276L276 306.667H306.667L291.333 260.667L306.667 230L291.333 199.333L306.667 153.333Z",1,"fill-color-0"],["d","M337.333 122.667H306.667L291.333 153.333L264.464 123.097C260.107 118.194 255.261 113.573 249.195 111.079C243.206 108.618 236.766 107.333 230.228 107.333H122.667C71.8566 107.333 30.6667 148.523 30.6667 199.333C30.6667 250.143 71.8566 291.333 122.667 291.333H230.228C236.766 291.333 243.206 290.048 249.195 287.587C255.261 285.094 260.107 280.473 264.464 275.571L291.333 245.333L306.667 276H337.333L322 230L337.333 199.333L322 168.667L337.333 122.667Z",1,"stroke-color-thicker"],["d","M214.667 245.333C206.198 245.333 199.333 238.468 199.333 230C199.333 221.532 206.198 214.667 214.667 214.667C223.135 214.667 230 221.532 230 230C230 238.468 223.135 245.333 214.667 245.333Z",1,"fill-color-15"],["d","M245.333 214.667C236.865 214.667 230 207.802 230 199.333C230 190.865 236.865 184 245.333 184C253.802 184 260.667 190.865 260.667 199.333C260.667 207.802 253.802 214.667 245.333 214.667Z",1,"stroke-color-thicker"],["d","M138 245.333C129.532 245.333 122.667 238.468 122.667 230C122.667 221.532 129.532 214.667 138 214.667C146.468 214.667 153.333 221.532 153.333 230C153.333 238.468 146.468 245.333 138 245.333Z",1,"fill-color-15"],["d","M168.667 214.667C160.198 214.667 153.333 207.802 153.333 199.333C153.333 190.865 160.198 184 168.667 184C177.135 184 184 190.865 184 199.333C184 207.802 177.135 214.667 168.667 214.667Z",1,"stroke-color-thicker"],["d","M61.3334 245.333C52.865 245.333 46 238.468 46 230C46 221.532 52.865 214.667 61.3334 214.667C69.8017 214.667 76.6667 221.532 76.6667 230C76.6667 238.468 69.8017 245.333 61.3334 245.333Z",1,"fill-color-15"],["d","M92 214.667C83.5316 214.667 76.6666 207.802 76.6666 199.333C76.6666 190.865 83.5316 184 92 184C100.468 184 107.333 190.865 107.333 199.333C107.333 207.802 100.468 214.667 92 214.667Z",1,"stroke-color-thicker"],["d","M239.077 111C241.796 111 244 113.204 244 115.923V126.077C244 128.796 241.796 131 239.077 131H191.923C189.204 131 187 128.796 187 126.077V115.923C187 113.204 189.204 111 191.923 111H239.077Z",1,"fill-color-15"],["d","M184 76.6666V107.333H122.667V76.6666H184Z",1,"stroke-color-thicker"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","width","383","height","279","viewBox","0 0 383 279","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["clip-path","url(#clip0)"],["d","M267.882 220.417V104.583C267.882 98.2125 263.809 93 258.832 93H114.029C109.051 93 104.978 98.2125 104.978 104.583V220.417C104.978 226.787 109.051 232 114.029 232H258.832C263.809 232 267.882 226.787 267.882 220.417Z",1,"fill-color-0"],["d","M357.75 197.625V81.375C357.75 74.9812 352.069 69.75 345.125 69.75H143.125C136.181 69.75 130.5 74.9812 130.5 81.375V197.625C130.5 204.019 136.181 209.25 143.125 209.25H345.125C352.069 209.25 357.75 204.019 357.75 197.625Z",1,"stroke-color-thin"],["d","M86.3125 186H105.25V139.5H86.3125C82.7775 139.5 80 142.057 80 145.312V180.188C80 183.443 82.7775 186 86.3125 186Z",1,"fill-color-15"],["d","M111.562 162.75H130.5V116.25H111.562C108.027 116.25 105.25 118.807 105.25 122.062V156.938C105.25 160.193 108.027 162.75 111.562 162.75Z",1,"stroke-color-thin"],["d","M205.979 116V150.875",1,"stroke-color-thin"],["d","M205.979 185.634V185.749",1,"stroke-color-thin"],["d","M2.44963 159.45C0.488815 161.41 0.488815 164.59 2.44963 166.55L34.403 198.504C36.3638 200.465 39.5429 200.465 41.5037 198.504C43.4645 196.543 43.4645 193.364 41.5037 191.403L13.1007 163L41.5037 134.597C43.4645 132.636 43.4645 129.457 41.5037 127.496C39.5429 125.535 36.3638 125.535 34.403 127.496L2.44963 159.45ZM65 157.979H6V168.021H65V157.979Z",1,"fill-color-15"],["id","clip0"],["width","303","height","279","transform","matrix(-1 0 0 1 383 0)",1,"fill-color-30"],["fxFlex","30","width","454","height","243","viewBox","0 0 454 243","fill","none","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["d","M141.75 172.125C178.098 172.125 207.562 142.66 207.562 106.312C207.562 69.9653 178.098 40.5 141.75 40.5C105.403 40.5 75.9375 69.9653 75.9375 106.312C75.9375 142.66 105.403 172.125 141.75 172.125Z",1,"fill-color-0"],["d","M121.5 151.875C157.848 151.875 187.312 122.41 187.312 86.0625C187.312 49.7153 157.848 20.25 121.5 20.25C85.1528 20.25 55.6875 49.7153 55.6875 86.0625C55.6875 122.41 85.1528 151.875 121.5 151.875Z",1,"stroke-color-thiner"],["d","M20.25 192.375H222.75",1,"stroke-color-thiner"],["d","M192.375 222.75L222.75 192.375L192.375 162",1,"stroke-color-thiner"],["d","M138.762 67C136.099 73.913 133.436 81.3578 130.24 88.8025C130.24 88.8025 130.24 89.8661 131.305 89.8661H153.143C153.143 89.8661 153.143 90.3979 153.676 90.9296L121.718 126.558C121.185 126.026 121.185 125.495 121.185 124.963L132.371 101.033V98.9062H110V96.7791L137.164 67H138.762Z",1,"fill-color-15"],["cx","371.815","cy","95.815","r","81.815",1,"fill-color-boltz-bk"],["x","317","y","81","width","110.745","height","30.1472","fill","url(#pattern0)"],["id","pattern0","patternContentUnits","objectBoundingBox","width","1","height","1"],[0,"xlink","href","#image0","transform","scale(0.00185185 0.00680272)"],["id","image0","width","540","height","147",0,"xlink","href","data:image/png;base64,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"],["fxFlex","30","width","295","height","295","viewBox","0 0 295 295","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M182.629 183.635C213.842 170.774 228.719 135.046 215.857 103.833C202.996 72.6204 167.268 57.7435 136.055 70.6048C104.843 83.4659 89.966 119.195 102.827 150.407C115.688 181.62 151.417 196.496 182.629 183.635Z",1,"fill-color-0"],["fill-rule","evenodd","clip-rule","evenodd","d","M169.522 122.093C171.059 115.241 166.054 111.136 159.022 108.13L162.04 98.916L156.431 97.0797L153.493 106.051C152.019 105.569 150.502 105.104 148.995 104.643L151.953 95.613L146.348 93.7769L143.329 102.988C142.106 102.615 140.906 102.247 139.743 101.867L139.752 101.838L132.017 99.3019L130.057 105.293C130.057 105.293 134.224 106.57 134.131 106.624C136.402 107.369 136.71 108.93 136.552 110.138L133.115 120.635C133.271 120.687 133.473 120.761 133.695 120.869C133.66 120.857 133.626 120.846 133.591 120.834C133.562 120.825 133.534 120.816 133.505 120.806C133.375 120.763 133.24 120.719 133.102 120.675L128.284 135.38C127.95 136.062 127.157 137.065 125.569 136.548C125.62 136.635 121.492 135.211 121.492 135.211L118.184 141.544L125.483 143.935C126.298 144.203 127.103 144.476 127.899 144.746L127.901 144.747C128.431 144.927 128.956 145.105 129.479 145.28L126.429 154.6L132.031 156.436L135.051 147.215C136.579 147.75 138.064 148.25 139.517 148.725L136.509 157.902L142.118 159.739L145.166 150.437C154.773 152.984 162.15 152.77 165.87 144.183C168.867 137.27 166.555 132.99 161.623 129.952C165.417 129.361 168.406 127.109 169.522 122.093ZM155.149 139.449C153.059 145.84 143.068 142.413 138.496 140.845L138.496 140.845C138.085 140.704 137.718 140.578 137.404 140.476L141.449 128.129C141.831 128.254 142.299 128.395 142.829 128.555L142.829 128.555C147.571 129.985 157.289 132.916 155.149 139.449ZM144.22 122.79C148.031 124.108 156.343 126.982 158.247 121.175C160.192 115.234 152.086 112.815 148.127 111.634C147.682 111.501 147.289 111.383 146.969 111.279L143.301 122.477C143.565 122.563 143.874 122.67 144.22 122.79Z",1,"fill-color-15"],["d","M158.075 173.411C189.288 160.55 204.164 124.822 191.303 93.6088C178.442 62.3964 142.714 47.5195 111.501 60.3808C80.2885 73.2419 65.4118 108.971 78.2729 140.183C91.1342 171.396 126.863 186.272 158.075 173.411Z",1,"stroke-color-thinest"],["d","M259.352 172.363L85.4595 244.016",1,"stroke-color-thinest"],["d","M122.291 259.352L85.4593 244.016L100.795 207.184",1,"stroke-color-thinest"],["width","225.692","height","225.692","transform","translate(0 85.983) rotate(-22.3941)",1,"fill-color-30"],["fxFlex","30","width","298","height","300","viewBox","0 0 298 300","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M248.333 237.5V112.5C248.333 105.625 242.746 100 235.917 100H37.2501C30.421 100 24.8335 105.625 24.8335 112.5V237.5C24.8335 244.375 30.421 250 37.2501 250H235.917C242.746 250 248.333 244.375 248.333 237.5Z",1,"fill-color-0"],["d","M273.167 212.5V87.5C273.167 80.625 267.579 75 260.75 75H62.0832C55.254 75 49.6665 80.625 49.6665 87.5V212.5C49.6665 219.375 55.254 225 62.0832 225H260.75C267.579 225 273.167 219.375 273.167 212.5Z",1,"stroke-color"],["d","M6.20851 200H24.8335V150H6.20851C2.73185 150 0.000183105 152.75 0.000183105 156.25V193.75C0.000183105 197.25 2.73185 200 6.20851 200Z",1,"fill-color-0"],["d","M31.0415 175H49.6665V125H31.0415C27.5648 125 24.8331 127.75 24.8331 131.25V168.75C24.8331 172.25 27.5648 175 31.0415 175Z",1,"stroke-color"],["d","M161.417 187.5L142.792 150H180.042L161.417 112.5",1,"stroke-color"]],template:function(Y,ie){if(1&Y&&e.DNE(0,J2,1,0,"ng-container",5)(1,y1,18,5,"ng-template",null,0,e.C5r)(3,x0,19,5,"ng-template",null,1,e.C5r)(5,Ed,19,5,"ng-template",null,2,e.C5r)(7,C0,17,5,"ng-template",null,3,e.C5r)(9,Ul,13,5,"ng-template",null,4,e.C5r),2&Y){const et=e.sdS(2),Bt=e.sdS(4),$t=e.sdS(6),Ei=e.sdS(8),zi=e.sdS(10);e.Y8G("ngTemplateOutlet",1===ie.stepNumber?et:2===ie.stepNumber?Bt:3===ie.stepNumber?$t:4===ie.stepNumber?Ei:zi)}},dependencies:[c.YU,c.T3,Ea.Lc,Ea.dh,bn.DJ,bn.sA,bn.UI,Lo.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Z2.k]}}))}return z(),F})();const y4=["stepper"],q2=()=>[1,2,3,4,5],M0=(z,F)=>({"dot-primary":z,"dot-primary-lighter":F});function b1(z,F){if(1&z&&e.EFF(0),2&z){const L=e.XpG(2);e.JRh(L.inputFormLabel)}}function eu(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function ph(z,F){if(1&z&&(e.j41(0,"mat-error"),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&z){const L=e.XpG(2);e.R7$(),e.SpI("Amount must be greater than or equal to ",e.bMT(2,1,null==L.serviceInfo||null==L.serviceInfo.limits?null:L.serviceInfo.limits.minimal),".")}}function gh(z,F){if(1&z&&(e.j41(0,"mat-error"),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&z){const L=e.XpG(2);e.R7$(),e.SpI("Amount must be less than or equal to ",e.bMT(2,1,null==L.serviceInfo||null==L.serviceInfo.limits?null:L.serviceInfo.limits.maximal),".")}}function x1(z,F){1&z&&(e.j41(0,"div",44)(1,"div",45)(2,"mat-slide-toggle",46),e.EFF(3,"Accept Zero Conf"),e.k0s(),e.j41(4,"mat-icon",47),e.EFF(5,"info_outline"),e.k0s()()())}function _h(z,F){1&z&&(e.j41(0,"div",44)(1,"div",45)(2,"mat-slide-toggle",48),e.EFF(3,"Send from Internal Wallet"),e.k0s(),e.j41(4,"mat-icon",49),e.EFF(5,"info_outline"),e.k0s()()())}function td(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1," Refund address is required when not using internal wallet. "),e.k0s())}function Lc(z,F){1&z&&(e.j41(0,"button",50),e.EFF(1,"Next"),e.k0s())}function vh(z,F){if(1&z){const L=e.RV6();e.j41(0,"button",51),e.bIt("click",function(){p.eBV(L);const Y=e.XpG(2);return p.Njj(Y.onSwap())}),e.EFF(1),e.k0s()}if(2&z){const L=e.XpG(2);e.R7$(),e.SpI("Initiate ",L.swapDirectionCaption)}}function yh(z,F){if(1&z&&e.EFF(0),2&z){const L=e.XpG(3);e.JRh(L.addressFormLabel)}}function wd(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Address is required."),e.k0s())}function bh(z,F){if(1&z){const L=e.RV6();e.j41(0,"mat-step",15)(1,"form",16),e.DNE(2,yh,1,1,"ng-template",17),e.j41(3,"div",52)(4,"mat-radio-group",53),e.bIt("change",function(Y){p.eBV(L);const ie=e.XpG(2);return p.Njj(ie.onAddressTypeChange(Y))}),e.j41(5,"mat-radio-button",54),e.EFF(6,"Node Local Address"),e.k0s(),e.j41(7,"mat-radio-button",55),e.EFF(8,"External Address"),e.k0s()(),e.j41(9,"mat-form-field",56)(10,"mat-label"),e.EFF(11,"Address"),e.k0s(),e.nrm(12,"input",57),e.DNE(13,wd,2,0,"mat-error",24),e.k0s()(),e.j41(14,"div",29)(15,"button",58),e.bIt("click",function(){p.eBV(L);const Y=e.XpG(2);return p.Njj(Y.onSwap())}),e.EFF(16),e.k0s()()()()}if(2&z){const L=e.XpG(2);e.Y8G("stepControl",L.addressFormGroup)("editable",L.flgEditable),e.R7$(),e.Y8G("formGroup",L.addressFormGroup),e.R7$(11),e.Y8G("required","external"===L.addressFormGroup.controls.addressType.value),e.R7$(),e.Y8G("ngIf",null==L.addressFormGroup.controls.address.errors?null:L.addressFormGroup.controls.address.errors.required),e.R7$(3),e.SpI("Initiate ",L.swapDirectionCaption)}}function tu(z,F){if(1&z&&e.EFF(0),2&z){const L=e.XpG(2);e.SpI("",L.swapDirectionCaption," Status")}}function C1(z,F){if(1&z&&(e.j41(0,"mat-icon",59),e.EFF(1),e.k0s()),2&z){const L=e.XpG(2);e.R7$(),e.JRh(L.swapStatus&&null!=L.swapStatus&&L.swapStatus.id?"check":"close")}}function xh(z,F){1&z&&e.nrm(0,"div")}function Ch(z,F){1&z&&e.nrm(0,"mat-progress-bar",60)}function Mh(z,F){if(1&z&&(e.j41(0,"h4",61),e.EFF(1),e.k0s()),2&z){const L=e.XpG(2);e.R7$(),e.JRh(L.swapStatus&&L.swapStatus.error?L.swapDirectionCaption+" failed.":L.swapStatus&&L.swapStatus.id?L.swapDirectionCaption+" request placed successfully. You can check the status of the request on the 'Boltz' menu.":L.swapDirectionCaption+" request placed successfully.")}}function Eh(z,F){if(1&z){const L=e.RV6();e.j41(0,"button",62),e.bIt("click",function(){p.eBV(L);const Y=e.XpG(2);return p.Njj(Y.onRestart())}),e.EFF(1,"Start Again"),e.k0s()}}function wh(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),e.EFF(5),e.k0s()(),e.j41(6,"div",9)(7,"button",10),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.showInfo())}),e.EFF(8,"?"),e.k0s(),e.j41(9,"button",11),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.onClose())}),e.EFF(10,"X"),e.k0s()()(),e.j41(11,"mat-card-content",12)(12,"div",13)(13,"mat-vertical-stepper",14,1),e.bIt("selectionChange",function(Y){p.eBV(L);const ie=e.XpG();return p.Njj(ie.stepSelectionChanged(Y))}),e.j41(15,"mat-step",15)(16,"form",16),e.DNE(17,b1,1,1,"ng-template",17),e.j41(18,"div",18),e.nrm(19,"rtl-boltz-service-info",19),e.k0s(),e.j41(20,"div",20)(21,"mat-form-field",21)(22,"mat-label"),e.EFF(23,"Amount"),e.k0s(),e.nrm(24,"input",22),e.j41(25,"mat-hint"),e.EFF(26),e.nI1(27,"number"),e.nI1(28,"number"),e.k0s(),e.j41(29,"span",23),e.EFF(30,"Sats"),e.k0s(),e.DNE(31,eu,2,0,"mat-error",24)(32,ph,3,3,"mat-error",24)(33,gh,3,3,"mat-error",24),e.k0s(),e.DNE(34,x1,6,0,"div",25)(35,_h,6,0,"div",25),e.j41(36,"div",26)(37,"mat-form-field",27)(38,"mat-label"),e.EFF(39,"Refund Address"),e.k0s(),e.nrm(40,"input",28),e.j41(41,"mat-hint"),e.EFF(42,"The address where funds will be returned in case of a failed swap"),e.k0s(),e.DNE(43,td,2,0,"mat-error",24),e.k0s()()(),e.j41(44,"div",29),e.DNE(45,Lc,2,0,"button",30)(46,vh,2,1,"button",31),e.k0s()()(),e.DNE(47,bh,17,6,"mat-step",32),e.j41(48,"mat-step",33)(49,"form",16),e.DNE(50,tu,1,1,"ng-template",17),e.j41(51,"div",34)(52,"mat-expansion-panel",35)(53,"mat-expansion-panel-header")(54,"mat-panel-title")(55,"span",36),e.EFF(56),e.DNE(57,C1,2,1,"mat-icon",37),e.k0s()()(),e.DNE(58,xh,1,0,"div",38),e.k0s(),e.DNE(59,Ch,1,0,"mat-progress-bar",39),e.k0s(),e.DNE(60,Mh,2,1,"h4",40),e.j41(61,"div",29),e.DNE(62,Eh,2,0,"button",41),e.k0s()()()(),e.j41(63,"div",42)(64,"button",43),e.EFF(65,"Close"),e.k0s()()()()()()}if(2&z){const L=e.XpG(),H=e.sdS(2);e.Y8G("@opacityAnimation",void 0),e.R7$(3),e.Y8G("ngClass",L.screenSize===L.screenSizeEnum.XS||L.screenSize===L.screenSizeEnum.SM?"flex-83":"flex-91"),e.R7$(2),e.JRh(L.swapDirectionCaption),e.R7$(),e.Y8G("ngClass",L.screenSize===L.screenSizeEnum.XS||L.screenSize===L.screenSizeEnum.SM?"flex-17":"flex-9"),e.R7$(7),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",L.inputFormGroup)("editable",L.flgEditable),e.R7$(),e.Y8G("formGroup",L.inputFormGroup),e.R7$(3),e.Y8G("serviceInfo",L.serviceInfo)("direction",L.direction),e.R7$(5),e.Y8G("step",1e3),e.R7$(2),e.Lme("Range: ",e.bMT(27,34,null==L.serviceInfo||null==L.serviceInfo.limits?null:L.serviceInfo.limits.minimal),"-",e.bMT(28,36,null==L.serviceInfo||null==L.serviceInfo.limits?null:L.serviceInfo.limits.maximal)),e.R7$(5),e.Y8G("ngIf",null==L.inputFormGroup||null==L.inputFormGroup.controls||null==L.inputFormGroup.controls.amount||null==L.inputFormGroup.controls.amount.errors?null:L.inputFormGroup.controls.amount.errors.required),e.R7$(),e.Y8G("ngIf",null==L.inputFormGroup||null==L.inputFormGroup.controls||null==L.inputFormGroup.controls.amount||null==L.inputFormGroup.controls.amount.errors?null:L.inputFormGroup.controls.amount.errors.min),e.R7$(),e.Y8G("ngIf",null==L.inputFormGroup||null==L.inputFormGroup.controls||null==L.inputFormGroup.controls.amount||null==L.inputFormGroup.controls.amount.errors?null:L.inputFormGroup.controls.amount.errors.max),e.R7$(),e.Y8G("ngIf",L.direction===L.swapTypeEnum.SWAP_OUT),e.R7$(),e.Y8G("ngIf",L.direction===L.swapTypeEnum.SWAP_IN&&L.isSendFromInternalCompatible),e.R7$(5),e.Y8G("required",!(null!=L.inputFormGroup&&null!=L.inputFormGroup.controls&&L.inputFormGroup.controls.sendFromInternal.value)),e.R7$(3),e.Y8G("ngIf",null==L.inputFormGroup||null==L.inputFormGroup.controls||null==L.inputFormGroup.controls.refundAddress||null==L.inputFormGroup.controls.refundAddress.errors?null:L.inputFormGroup.controls.refundAddress.errors.required),e.R7$(2),e.Y8G("ngIf",L.direction===L.swapTypeEnum.SWAP_OUT),e.R7$(),e.Y8G("ngIf",L.direction===L.swapTypeEnum.SWAP_IN),e.R7$(),e.Y8G("ngIf",L.direction===L.swapTypeEnum.SWAP_OUT),e.R7$(),e.Y8G("stepControl",L.statusFormGroup),e.R7$(),e.Y8G("formGroup",L.statusFormGroup),e.R7$(3),e.Y8G("expanded",!!L.swapStatus),e.R7$(4),e.JRh(L.swapStatus?L.swapStatus.id?L.swapDirectionCaption+" request details":L.swapDirectionCaption+" error details":"Waiting for "+L.swapDirectionCaption+" request..."),e.R7$(),e.Y8G("ngIf",L.swapStatus),e.R7$(),e.Y8G("ngIf",!L.swapStatus)("ngIfElse",H),e.R7$(),e.Y8G("ngIf",!L.swapStatus),e.R7$(),e.Y8G("ngIf",L.swapStatus),e.R7$(2),e.Y8G("ngIf",L.swapStatus&&(L.swapStatus.error||!L.swapStatus.id)),e.R7$(2),e.Y8G("mat-dialog-close",!1)}}function Sh(z,F){if(1&z&&e.nrm(0,"rtl-boltz-swap-status",63),2&z){const L=e.XpG();e.Y8G("swapStatus",L.swapStatus)("direction",L.direction)("acceptZeroConf",null==L.inputFormGroup||null==L.inputFormGroup.controls?null:L.inputFormGroup.controls.acceptZeroConf.value)("sendFromInternal",null==L.inputFormGroup||null==L.inputFormGroup.controls?null:L.inputFormGroup.controls.sendFromInternal.value)}}function E0(z,F){if(1&z){const L=e.RV6();e.j41(0,"rtl-boltz-swapout-info-graphics",79),e.mxI("stepNumberChange",function(Y){p.eBV(L);const ie=e.XpG(2);return e.DH7(ie.stepNumber,Y)||(ie.stepNumber=Y),p.Njj(Y)}),e.k0s()}if(2&z){const L=e.XpG(2);e.Y8G("animationDirection",L.animationDirection),e.R50("stepNumber",L.stepNumber)}}function b4(z,F){if(1&z){const L=e.RV6();e.j41(0,"rtl-boltz-swapin-info-graphics",79),e.mxI("stepNumberChange",function(Y){p.eBV(L);const ie=e.XpG(2);return e.DH7(ie.stepNumber,Y)||(ie.stepNumber=Y),p.Njj(Y)}),e.k0s()}if(2&z){const L=e.XpG(2);e.Y8G("animationDirection",L.animationDirection),e.R50("stepNumber",L.stepNumber)}}function w0(z,F){if(1&z){const L=e.RV6();e.j41(0,"span",80),e.bIt("click",function(){const Y=p.eBV(L).$implicit,ie=e.XpG(2);return p.Njj(ie.onStepChanged(Y))}),e.nrm(1,"p",81),e.k0s()}if(2&z){const L=F.$implicit,H=e.XpG(2);e.R7$(),e.Y8G("ngClass",e.l_i(1,M0,H.stepNumber===L,H.stepNumber!==L))}}function iu(z,F){if(1&z){const L=e.RV6();e.j41(0,"button",82),e.bIt("click",function(){p.eBV(L);const Y=e.XpG(2);return p.Njj(Y.onReadMore())}),e.EFF(1,"Read More"),e.k0s()}}function M1(z,F){if(1&z){const L=e.RV6();e.j41(0,"button",83),e.bIt("click",function(){p.eBV(L);const Y=e.XpG(2);return p.Njj(Y.onStepChanged(4))}),e.EFF(1,"Back"),e.k0s()}}function Th(z,F){if(1&z){const L=e.RV6();e.j41(0,"button",84),e.bIt("click",function(){p.eBV(L);const Y=e.XpG(2);return Y.flgShowInfo=!1,p.Njj(Y.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function Dh(z,F){if(1&z){const L=e.RV6();e.j41(0,"button",85),e.bIt("click",function(){p.eBV(L);const Y=e.XpG(2);return Y.flgShowInfo=!1,p.Njj(Y.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function nu(z,F){if(1&z){const L=e.RV6();e.j41(0,"button",86),e.bIt("click",function(){p.eBV(L);const Y=e.XpG(2);return p.Njj(Y.onStepChanged(Y.stepNumber-1))}),e.EFF(1,"Back"),e.k0s()}}function au(z,F){if(1&z){const L=e.RV6();e.j41(0,"button",87),e.bIt("click",function(){p.eBV(L);const Y=e.XpG(2);return p.Njj(Y.onStepChanged(Y.stepNumber+1))}),e.EFF(1,"Next"),e.k0s()}}function Ah(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",64)(1,"div",18)(2,"mat-card-header",65)(3,"div",66),e.nrm(4,"span",8),e.k0s(),e.j41(5,"div",67)(6,"button",11),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return Y.flgShowInfo=!1,p.Njj(Y.stepNumber=1)}),e.EFF(7,"X"),e.k0s()()(),e.j41(8,"mat-card-content",68),e.DNE(9,E0,1,2,"rtl-boltz-swapout-info-graphics",69)(10,b4,1,2,"rtl-boltz-swapin-info-graphics",69),e.k0s(),e.j41(11,"div",70),e.DNE(12,w0,2,4,"span",71),e.k0s(),e.j41(13,"div",72),e.DNE(14,iu,2,0,"button",73)(15,M1,2,0,"button",74)(16,Th,2,0,"button",75)(17,Dh,2,0,"button",76)(18,nu,2,0,"button",77)(19,au,2,0,"button",78),e.k0s()()()}if(2&z){const L=e.XpG();e.Y8G("@opacityAnimation",void 0),e.R7$(9),e.Y8G("ngIf",L.direction===L.swapTypeEnum.SWAP_OUT),e.R7$(),e.Y8G("ngIf",L.direction===L.swapTypeEnum.SWAP_IN),e.R7$(2),e.Y8G("ngForOf",e.lJ4(10,q2)),e.R7$(2),e.Y8G("ngIf",5===L.stepNumber),e.R7$(),e.Y8G("ngIf",5===L.stepNumber),e.R7$(),e.Y8G("ngIf",5===L.stepNumber),e.R7$(),e.Y8G("ngIf",L.stepNumber<5),e.R7$(),e.Y8G("ngIf",L.stepNumber>1&&L.stepNumber<5),e.R7$(),e.Y8G("ngIf",L.stepNumber<5)}}let Lh=(()=>{var z;class F{constructor(H,Y,ie,et,Bt,$t,Ei){this.dialogRef=H,this.data=Y,this.boltzService=ie,this.formBuilder=et,this.decimalPipe=Bt,this.logger=$t,this.commonService=Ei,this.faInfoCircle=Mn.iW_,this.boltzInfo=null,this.serviceInfo={fees:{percentage:null,miner:{normal:null,reverse:null}},limits:{minimal:1e4,maximal:5e7}},this.swapTypeEnum=ot.Bd,this.direction=ot.Bd.SWAP_OUT,this.swapDirectionCaption="Swap out",this.swapStatus=null,this.inputFormLabel="Amount to swap out",this.addressFormLabel="Withdrawal Address",this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=ot.f7,this.animationDirection="forward",this.flgEditable=!0,this.isSendFromInternalCompatible=!0,this.unSubs=[new hn.B,new hn.B,new hn.B,new hn.B,new hn.B,new hn.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.serviceInfo=this.data.serviceInfo,this.direction=this.data.direction||ot.Bd.SWAP_OUT,this.swapDirectionCaption=this.direction===ot.Bd.SWAP_OUT?"Swap Out":"Swap in",this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.serviceInfo.limits?.minimal,[cn.k0.required,cn.k0.min(this.serviceInfo.limits?.minimal||0),cn.k0.max(this.serviceInfo.limits?.maximal||0)]],acceptZeroConf:[!1],sendFromInternal:[!0],refundAddress:[{value:"",disabled:!0}]}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[cn.k0.required]],address:[{value:"",disabled:!0}]}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges(),this.boltzService.boltzInfoChanged.pipe((0,wn.Q)(this.unSubs[0])).subscribe({next:H=>{this.boltzInfo=H,this.isSendFromInternalCompatible=this.commonService.isVersionCompatible(this.boltzInfo.version,"2.0.0")},error:H=>{this.boltzInfo={version:"2.0.0"},this.logger.error(H)}})}ngAfterViewInit(){this.direction===ot.Bd.SWAP_OUT&&this.addressFormGroup.setErrors({Invalid:!0})}onFormValueChanges(){this.direction===ot.Bd.SWAP_OUT&&this.addressFormGroup.valueChanges.pipe((0,wn.Q)(this.unSubs[1])).subscribe(H=>{this.addressFormGroup.setErrors({Invalid:!0})}),this.direction===ot.Bd.SWAP_IN&&this.inputFormGroup.controls.sendFromInternal.valueChanges.pipe((0,wn.Q)(this.unSubs[4])).subscribe(()=>{this.onSendFromInternalChange()})}onSendFromInternalChange(){this.inputFormGroup.controls.sendFromInternal.value?(this.inputFormGroup.controls.refundAddress.disable(),this.inputFormGroup.controls.refundAddress.clearValidators(),this.inputFormGroup.controls.refundAddress.updateValueAndValidity()):(this.inputFormGroup.controls.refundAddress.enable(),this.inputFormGroup.controls.refundAddress.setValidators([cn.k0.required]),this.inputFormGroup.controls.refundAddress.updateValueAndValidity())}onAddressTypeChange(H){"external"===H.value?(this.addressFormGroup.controls.address.setValidators([cn.k0.required]),this.addressFormGroup.controls.address.markAsTouched(),this.addressFormGroup.controls.address.enable()):(this.addressFormGroup.controls.address.setValidators(null),this.addressFormGroup.controls.address.markAsPristine(),this.addressFormGroup.controls.address.disable(),this.addressFormGroup.controls.address.setValue("")),this.addressFormGroup.setErrors({Invalid:!0})}onSwap(){if(!this.inputFormGroup.controls.amount.value||this.serviceInfo.limits?.minimal&&this.inputFormGroup.controls.amount.value<+this.serviceInfo.limits.minimal||this.serviceInfo.limits?.maximal&&this.inputFormGroup.controls.amount.value>+this.serviceInfo.limits.maximal||this.direction===ot.Bd.SWAP_OUT&&"external"===this.addressFormGroup.controls.addressType.value&&(!this.addressFormGroup.controls.address.value||""===this.addressFormGroup.controls.address.value.trim()))return!0;if(this.flgEditable=!1,this.stepper.selected?.stepControl.setErrors(null),this.stepper.next(),this.direction===ot.Bd.SWAP_IN){const H=this.inputFormGroup.controls.sendFromInternal.value?null:this.inputFormGroup.controls.refundAddress.value,Y=this.isSendFromInternalCompatible?this.inputFormGroup.controls.sendFromInternal.value:null;if(!Y&&!H)return this.stepper.selected?.stepControl.setErrors({Invalid:!0}),void(this.flgEditable=!0);this.boltzService.swapIn(this.inputFormGroup.controls.amount.value,Y,H).pipe((0,wn.Q)(this.unSubs[2])).subscribe({next:ie=>{this.swapStatus=ie,this.boltzService.listSwaps(),this.flgEditable=!0},error:ie=>{this.swapStatus={error:ie},this.flgEditable=!0,this.logger.error(ie)}})}else this.boltzService.swapOut(this.inputFormGroup.controls.amount.value,"external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"",this.inputFormGroup.controls.acceptZeroConf.value).pipe((0,wn.Q)(this.unSubs[3])).subscribe({next:Y=>{this.swapStatus=Y,this.boltzService.listSwaps(),this.flgEditable=!0},error:Y=>{this.swapStatus={error:Y},this.flgEditable=!0,this.logger.error(Y)}})}stepSelectionChanged(H){switch(H.selectedIndex){case 0:default:this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.addressFormLabel="Withdrawal Address";break;case 1:if(this.inputFormGroup.controls.amount.value)if(this.direction===ot.Bd.SWAP_IN){let Y=this.swapDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Send from Internal Wallet: "+(this.inputFormGroup.controls.sendFromInternal.value?"Yes":"No");!this.inputFormGroup.controls.sendFromInternal.value&&this.inputFormGroup.controls.refundAddress.value&&(Y+=" | Refund Address: "+this.inputFormGroup.controls.refundAddress.value),this.inputFormLabel=Y}else this.inputFormLabel=this.swapDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Zero Conf: "+(this.inputFormGroup.controls.acceptZeroConf.value?"Yes":"No");else this.inputFormLabel="Amount to "+this.swapDirectionCaption;this.addressFormLabel="Withdrawal Address"}H.selectedIndex{H.next(null),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU($a.CP),e.rXU($a.Vh),e.rXU(Tc),e.rXU(cn.ze),e.rXU(c.QX),e.rXU(ir.gP),e.rXU(qs.h))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-boltz-swap-modal"]],viewQuery:function(Y,ie){if(1&Y&&e.GBs(y4,5),2&Y){let et;e.mGM(et=e.lsd())&&(ie.stepper=et.first)}},standalone:!1,decls:4,vars:2,consts:[["swapStatusBlock",""],["stepper",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxLayoutAlign","start start",3,"ngClass"],[1,"page-title"],["fxLayoutAlign","end end",3,"ngClass"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[3,"serviceInfo","direction"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","amount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start stretch",4,"ngIf"],["disabled","direction === swapTypeEnum.SWAP_IN && isSendFromInternalCompatible && !inputFormGroup?.controls?.sendFromInternal.value","fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"mt-1"],["fxLayout","column","fxFlex","100"],["matInput","","type","text","tabindex","3","formControlName","refundAddress",3,"required"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","2","type","button","matStepperNext","",4,"ngIf"],["mat-button","","color","primary","tabindex","3","type","button",3,"click",4,"ngIf"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[4,"ngIf","ngIfElse"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxLayoutAlign","start","class","font-bold-500 mt-2",4,"ngIf"],["mat-button","","color","primary","tabindex","13","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end end"],["mat-button","","color","primary","tabindex","14","type","button","default","",3,"mat-dialog-close"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayoutAlign","start center","tabindex","2","color","primary","formControlName","acceptZeroConf","name","acceptZeroConf"],["matTooltip","Only recommended for smaller payments, involves trust in Boltz","matTooltipPosition","above",1,"info-icon","mt-2"],["fxLayoutAlign","start center","tabindex","2","color","primary","formControlName","sendFromInternal","name","sendFromInternal"],["matTooltip","Pay from the node's onchain wallet","matTooltipPosition","above",1,"info-icon","mt-2"],["mat-button","","color","primary","tabindex","2","type","button","matStepperNext",""],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["color","primary","name","addressType","formControlName","addressType","fxFlex","100","fxLayoutAlign","space-between stretch",3,"change"],["fxFlex","48","tabindex","8","value","local"],["fxFlex","48","tabindex","9","value","external"],["fxLayout","column","fxFlex","100",1,"mt-1"],["matInput","","tabindex","10","formControlName","address",3,"required"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-2"],["mat-button","","color","primary","tabindex","13","type","button",3,"click"],["fxLayout","column",3,"swapStatus","direction","acceptZeroConf","sendFromInternal"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"animationDirection","stepNumber","stepNumberChange",4,"ngIf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","15","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["tabindex","21","fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","15","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(Y,ie){1&Y&&e.DNE(0,wh,66,38,"div",2)(1,Sh,1,4,"ng-template",null,0,e.C5r)(3,Ah,20,11,"div",3),2&Y&&(e.Y8G("ngIf",!ie.flgShowInfo),e.R7$(3),e.Y8G("ngIf",ie.flgShowInfo))},dependencies:[c.YU,c.Sq,c.bT,cn.qT,cn.me,cn.Q0,cn.BC,cn.cb,cn.YS,cn.j4,cn.JD,$a.tx,Hr.$z,Ea.m2,Ea.MM,Lr.GK,Lr.Z2,Lr.WN,tc.An,fo.fg,ra.rl,ra.nJ,ra.MV,ra.TL,ra.yw,$c.HM,Jr.VT,Jr._g,bn.DJ,bn.sA,bn.UI,Lo.PW,pd.sG,Xc.oV,Xo.V5,Xo.Ti,Xo.M6,Xo.F7,Pi.N,$2,v0,v4,ed,c.QX],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[xd.C]}}))}return z(),F})();const S0=()=>["all"],T0=z=>({"overflow-auto error-border":z,"overflow-auto":!0}),ru=()=>["no_swap"],Ic=z=>({width:z}),kc=z=>({"display-none":z});function su(z,F){if(1&z&&(e.j41(0,"mat-option",42),e.EFF(1),e.k0s()),2&z){const L=F.$implicit,H=e.XpG();e.Y8G("value",L),e.R7$(),e.JRh(H.getLabel(L))}}function D0(z,F){1&z&&e.nrm(0,"mat-progress-bar",43)}function id(z,F){1&z&&(e.j41(0,"th",44),e.EFF(1,"Status"),e.k0s())}function A0(z,F){if(1&z&&(e.j41(0,"td",45),e.EFF(1),e.k0s()),2&z){const L=F.$implicit,H=e.XpG();e.R7$(),e.JRh(H.swapStateEnum[null==L?null:L.status])}}function Sd(z,F){1&z&&(e.j41(0,"th",44),e.EFF(1,"Swap ID"),e.k0s())}function Ih(z,F){if(1&z&&(e.j41(0,"td",45),e.EFF(1),e.k0s()),2&z){const L=F.$implicit;e.R7$(),e.JRh(null==L?null:L.id)}}function L0(z,F){1&z&&(e.j41(0,"th",44),e.EFF(1,"Claim Address"),e.k0s())}function Td(z,F){if(1&z&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&z){const L=F.$implicit,H=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ic,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),e.R7$(2),e.JRh(null==L?null:L.claimAddress)}}function x4(z,F){1&z&&(e.j41(0,"th",44),e.EFF(1,"Lockup Address"),e.k0s())}function C4(z,F){if(1&z&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&z){const L=F.$implicit,H=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ic,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),e.R7$(2),e.JRh(null==L?null:L.lockupAddress)}}function Dd(z,F){1&z&&(e.j41(0,"th",48),e.EFF(1,"Onchain Amount (Sats)"),e.k0s())}function kh(z,F){if(1&z&&(e.j41(0,"td",45)(1,"span",49),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&z){const L=F.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==L?null:L.onchainAmount))}}function Ad(z,F){1&z&&(e.j41(0,"th",48),e.EFF(1,"Expected Amount (Sats)"),e.k0s())}function I0(z,F){if(1&z&&(e.j41(0,"td",45)(1,"span",49),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&z){const L=F.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==L?null:L.expectedAmount))}}function ou(z,F){1&z&&(e.j41(0,"th",44),e.EFF(1,"Error"),e.k0s())}function M4(z,F){if(1&z&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&z){const L=F.$implicit,H=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ic,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),e.R7$(2),e.JRh(null==L?null:L.error)}}function Rh(z,F){1&z&&(e.j41(0,"th",44),e.EFF(1,"Private Key"),e.k0s())}function Oh(z,F){if(1&z&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&z){const L=F.$implicit,H=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ic,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),e.R7$(2),e.JRh(null==L?null:L.privateKey)}}function Ph(z,F){1&z&&(e.j41(0,"th",44),e.EFF(1,"Preimage"),e.k0s())}function Fh(z,F){if(1&z&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&z){const L=F.$implicit,H=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ic,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),e.R7$(2),e.JRh(null==L?null:L.preimage)}}function E4(z,F){1&z&&(e.j41(0,"th",44),e.EFF(1,"Redeem Script"),e.k0s())}function Nh(z,F){if(1&z&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&z){const L=F.$implicit,H=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ic,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),e.R7$(2),e.JRh(null==L?null:L.redeemScript)}}function Bh(z,F){1&z&&(e.j41(0,"th",44),e.EFF(1,"Invoice"),e.k0s())}function zh(z,F){if(1&z&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&z){const L=F.$implicit,H=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ic,H.screenSize===H.screenSizeEnum.XS?"6rem":H.colWidth)),e.R7$(2),e.JRh(null==L?null:L.invoice)}}function Uh(z,F){1&z&&(e.j41(0,"th",48),e.EFF(1,"Timeout Block Height"),e.k0s())}function k0(z,F){if(1&z&&(e.j41(0,"td",45)(1,"span",49),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&z){const L=F.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==L?null:L.timeoutBlockHeight))}}function Ld(z,F){1&z&&(e.j41(0,"th",44),e.EFF(1,"Lockup Tx ID"),e.k0s())}function R0(z,F){if(1&z&&(e.j41(0,"td",45),e.EFF(1),e.k0s()),2&z){const L=F.$implicit;e.R7$(),e.JRh(null==L?null:L.lockupTransactionId)}}function E1(z,F){1&z&&(e.j41(0,"th",44),e.EFF(1,"Claim Tx ID"),e.k0s())}function lu(z,F){if(1&z&&(e.j41(0,"td",45),e.EFF(1),e.k0s()),2&z){const L=F.$implicit;e.R7$(),e.JRh(null==L?null:L.claimTransactionId)}}function Id(z,F){1&z&&(e.j41(0,"th",44),e.EFF(1,"Refund Tx ID"),e.k0s())}function cu(z,F){if(1&z&&(e.j41(0,"td",45),e.EFF(1),e.k0s()),2&z){const L=F.$implicit;e.R7$(),e.JRh(null==L?null:L.refundTransactionId)}}function Vh(z,F){if(1&z){const L=e.RV6();e.j41(0,"th",50)(1,"div",51)(2,"mat-select",52),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",53),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Rc(z,F){if(1&z){const L=e.RV6();e.j41(0,"td",54)(1,"button",55),e.bIt("click",function(Y){const ie=p.eBV(L).$implicit,et=e.XpG();return p.Njj(et.onSwapClick(ie,Y))}),e.EFF(2,"View Info"),e.k0s()()}}function du(z,F){if(1&z&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&z){const L=e.XpG(2);e.R7$(),e.JRh(L.emptyTableMessage)}}function uu(z,F){if(1&z&&(e.j41(0,"td",56),e.DNE(1,du,2,1,"p",57),e.k0s()),2&z){const L=e.XpG();e.R7$(),e.Y8G("ngIf",!(null!=L.listSwaps&&L.listSwaps.data)||(null==L.listSwaps||null==L.listSwaps.data?null:L.listSwaps.data.length)<1)}}function Vl(z,F){if(1&z&&e.nrm(0,"tr",58),2&z){const L=e.XpG();e.Y8G("ngClass",e.eq3(1,kc,(null==L.listSwaps?null:L.listSwaps.data)&&(null==L.listSwaps||null==L.listSwaps.data?null:L.listSwaps.data.length)>0))}}function O0(z,F){1&z&&e.nrm(0,"tr",59)}function Hh(z,F){1&z&&e.nrm(0,"tr",60)}let Gh=(()=>{var z;class F{constructor(H,Y,ie,et,Bt){this.logger=H,this.commonService=Y,this.store=ie,this.boltzService=et,this.camelCaseWithReplace=Bt,this.selectedSwapType=ot.Bd.SWAP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=ot._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="boltz",this.tableSettingSwapOut={tableId:"swap_out",recordsPerPage:ot.md,sortBy:"status",sortOrder:ot.oi.DESCENDING},this.tableSettingSwapIn={tableId:"swap_in",recordsPerPage:ot.md,sortBy:"status",sortOrder:ot.oi.DESCENDING},this.swapStateEnum=ot.q9,this.swapTypeEnum=ot.Bd,this.faHistory=Mn.Int,this.swapCaption="Swap Out",this.displayedColumns=[],this.listSwaps=new Ba.I6([]),this.selFilter="",this.pageSize=ot.md,this.pageSizeOptions=ot.xp,this.screenSize="",this.screenSizeEnum=ot.f7,this.unSubs=[new hn.B,new hn.B,new hn.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(H){H.selectedSwapType&&!H.selectedSwapType.firstChange&&this.setTableColumns(),this.swapCaption=this.selectedSwapType===ot.Bd.SWAP_IN?"Swap In":"Swap Out",this.loadSwapsTable(this.swapsData)}ngOnInit(){this.store.select(_d.$G).pipe((0,wn.Q)(this.unSubs[0])).subscribe(H=>{this.tableSettingSwapOut=H.pageSettings.find(Y=>Y.pageId===this.PAGE_ID)?.tables.find(Y=>Y.tableId===this.tableSettingSwapOut.tableId)||ot.ZC.find(Y=>Y.pageId===this.PAGE_ID)?.tables.find(Y=>Y.tableId===this.tableSettingSwapOut.tableId),this.tableSettingSwapIn=H.pageSettings.find(Y=>Y.pageId===this.PAGE_ID)?.tables.find(Y=>Y.tableId===this.tableSettingSwapIn.tableId)||ot.ZC.find(Y=>Y.pageId===this.PAGE_ID)?.tables.find(Y=>Y.tableId===this.tableSettingSwapIn.tableId),this.setTableColumns(),this.swapsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadSwapsTable(this.swapsData),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)})}ngAfterViewInit(){this.swapsData&&this.swapsData.length>0&&this.loadSwapsTable(this.swapsData)}setTableColumns(){this.selectedSwapType===ot.Bd.SWAP_IN?(this.displayedColumns=this.screenSize===ot.f7.XS||this.screenSize===ot.f7.SM?JSON.parse(JSON.stringify(this.tableSettingSwapIn.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSettingSwapIn.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSettingSwapIn.recordsPerPage?+this.tableSettingSwapIn.recordsPerPage:ot.md):(this.displayedColumns=this.screenSize===ot.f7.XS||this.screenSize===ot.f7.SM?JSON.parse(JSON.stringify(this.tableSettingSwapOut.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSettingSwapOut.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSettingSwapOut.recordsPerPage?+this.tableSettingSwapOut.recordsPerPage:ot.md)}applyFilter(){this.listSwaps&&""!==this.selFilter&&(this.listSwaps.filter=this.selFilter.trim().toLowerCase())}getLabel(H){const ie=this.nodePageDefs[this.PAGE_ID][this.selectedSwapType===ot.Bd.SWAP_IN?this.tableSettingSwapIn.tableId:this.tableSettingSwapOut.tableId].allowedColumns.find(et=>et.column===H);return ie?ie.label?ie.label:this.camelCaseWithReplace.transform(ie.column,"_"):this.commonService.titleCase(H)}setFilterPredicate(){this.listSwaps.filterPredicate=(H,Y)=>{let ie="";switch(this.selFilterBy){case"all":ie=JSON.stringify(H).toLowerCase();break;case"status":ie=H?.status?this.swapStateEnum[H?.status]:"";break;default:ie=typeof H[this.selFilterBy]>"u"?"":"string"==typeof H[this.selFilterBy]?H[this.selFilterBy].toLowerCase():"boolean"==typeof H[this.selFilterBy]?H[this.selFilterBy]?"yes":"no":H[this.selFilterBy].toString()}return"status"===this.selFilterBy?0===ie.indexOf(Y):ie.includes(Y)}}onSwapClick(H,Y){this.boltzService.swapInfo(H.id||"").pipe((0,wn.Q)(this.unSubs[1])).subscribe(ie=>{this.store.dispatch((0,Nn.xO)({payload:{data:{type:ot.A$.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"status",value:ot.q9[(ie=this.selectedSwapType===ot.Bd.SWAP_IN?ie.swap:ie.reverseSwap).status],title:"Status",width:50,type:ot.UN.STRING},{key:"id",value:ie.id,title:"ID",width:50,type:ot.UN.STRING}],[{key:"amount",value:ie.onchainAmount?ie.onchainAmount:ie.expectedAmount?ie.expectedAmount:0,title:ie.onchainAmount?"Onchain Amount (Sats)":ie.expectedAmount?"Expected Amount (Sats)":"Amount (Sats)",width:50,type:ot.UN.NUMBER},{key:"timeoutBlockHeight",value:ie.timeoutBlockHeight,title:"Timeout Block Height",width:50,type:ot.UN.NUMBER}],[{key:"address",value:ie.claimAddress?ie.claimAddress:ie.lockupAddress?ie.lockupAddress:"",title:ie.claimAddress?"Claim Address":ie.lockupAddress?"Lockup Address":"Address",width:100,type:ot.UN.STRING}],[{key:"invoice",value:ie.invoice,title:"Invoice",width:100,type:ot.UN.STRING}],[{key:"privateKey",value:ie.privateKey,title:"Private Key",width:100,type:ot.UN.STRING}],[{key:"preimage",value:ie.preimage,title:"Preimage",width:100,type:ot.UN.STRING}],[{key:"redeemScript",value:ie.redeemScript,title:"Redeem Script",width:100,type:ot.UN.STRING}],[{key:"lockupTransactionId",value:ie.lockupTransactionId,title:"Lockup Transaction ID",width:50,type:ot.UN.STRING},{key:"transactionId",value:ie.claimTransactionId?ie.claimTransactionId:ie.refundTransactionId?ie.refundTransactionId:"",title:ie.claimTransactionId?"Claim Transaction ID":ie.refundTransactionId?"Refund Transaction ID":"Transaction ID",width:50,type:ot.UN.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(H){this.listSwaps=new Ba.I6(H?[...H]:[]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(Y,ie)=>Y[ie]&&isNaN(Y[ie])?Y[ie].toLocaleLowerCase():Y[ie]?+Y[ie]:null,this.paginator&&this.paginator.firstPage(),this.listSwaps.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listSwaps)}onDownloadCSV(){this.listSwaps.data&&this.listSwaps.data.length>0&&this.commonService.downloadFile(this.listSwaps.data,this.selectedSwapType===ot.Bd.SWAP_IN?"Swap in":"Swap out")}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(null),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(ir.gP),e.rXU(qs.h),e.rXU(qi.il),e.rXU(Tc),e.rXU(t1.VD))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-boltz-swaps"]],viewQuery:function(Y,ie){if(1&Y&&(e.GBs(Ha.B4,5),e.GBs(Mc.iy,5)),2&Y){let et;e.mGM(et=e.lsd())&&(ie.sort=et.first),e.mGM(et=e.lsd())&&(ie.paginator=et.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},standalone:!1,features:[e.Jv_([{provide:De.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Mc.xX,useValue:(0,ot.on)("Swaps")}]),e.OA$],decls:76,vars:20,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"card-content-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","fxFlex","100",1,"page-sub-title-container","w-100"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start center",1,"w-100"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","id"],["matColumnDef","claimAddress"],["matColumnDef","lockupAddress"],["matColumnDef","onchainAmount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","expectedAmount"],["matColumnDef","error"],["matColumnDef","privateKey"],["matColumnDef","preimage"],["matColumnDef","redeemScript"],["matColumnDef","invoice"],["matColumnDef","timeoutBlockHeight"],["matColumnDef","lockupTransactionId"],["matColumnDef","claimTransactionId"],["matColumnDef","refundTransactionId"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_swap"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","hidePageSize"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(Y,ie){if(1&Y){const et=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"div",3),e.nrm(3,"fa-icon",4),e.j41(4,"span",5),e.EFF(5),e.k0s()(),e.j41(6,"div",6)(7,"mat-form-field",7)(8,"mat-label"),e.EFF(9,"Filter By"),e.k0s(),e.j41(10,"mat-select",8),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.selFilterBy,$t)||(ie.selFilterBy=$t),p.Njj($t)}),e.bIt("selectionChange",function(){return p.eBV(et),ie.selFilter="",p.Njj(ie.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,su,2,2,"mat-option",9),e.k0s()()(),e.j41(13,"mat-form-field",7)(14,"mat-label"),e.EFF(15,"Filter"),e.k0s(),e.j41(16,"input",10),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.selFilter,$t)||(ie.selFilter=$t),p.Njj($t)}),e.bIt("input",function(){return p.eBV(et),p.Njj(ie.applyFilter())})("keyup",function(){return p.eBV(et),p.Njj(ie.applyFilter())}),e.k0s()()()(),e.j41(17,"div",11)(18,"div",12),e.DNE(19,D0,1,0,"mat-progress-bar",13),e.j41(20,"table",14,0),e.qex(22,15),e.DNE(23,id,2,0,"th",16)(24,A0,2,1,"td",17),e.bVm(),e.qex(25,18),e.DNE(26,Sd,2,0,"th",16)(27,Ih,2,1,"td",17),e.bVm(),e.qex(28,19),e.DNE(29,L0,2,0,"th",16)(30,Td,4,4,"td",17),e.bVm(),e.qex(31,20),e.DNE(32,x4,2,0,"th",16)(33,C4,4,4,"td",17),e.bVm(),e.qex(34,21),e.DNE(35,Dd,2,0,"th",22)(36,kh,4,3,"td",17),e.bVm(),e.qex(37,23),e.DNE(38,Ad,2,0,"th",22)(39,I0,4,3,"td",17),e.bVm(),e.qex(40,24),e.DNE(41,ou,2,0,"th",16)(42,M4,4,4,"td",17),e.bVm(),e.qex(43,25),e.DNE(44,Rh,2,0,"th",16)(45,Oh,4,4,"td",17),e.bVm(),e.qex(46,26),e.DNE(47,Ph,2,0,"th",16)(48,Fh,4,4,"td",17),e.bVm(),e.qex(49,27),e.DNE(50,E4,2,0,"th",16)(51,Nh,4,4,"td",17),e.bVm(),e.qex(52,28),e.DNE(53,Bh,2,0,"th",16)(54,zh,4,4,"td",17),e.bVm(),e.qex(55,29),e.DNE(56,Uh,2,0,"th",22)(57,k0,4,3,"td",17),e.bVm(),e.qex(58,30),e.DNE(59,Ld,2,0,"th",16)(60,R0,2,1,"td",17),e.bVm(),e.qex(61,31),e.DNE(62,E1,2,0,"th",16)(63,lu,2,1,"td",17),e.bVm(),e.qex(64,32),e.DNE(65,Id,2,0,"th",16)(66,cu,2,1,"td",17),e.bVm(),e.qex(67,33),e.DNE(68,Vh,6,0,"th",34)(69,Rc,3,0,"td",35),e.bVm(),e.qex(70,36),e.DNE(71,uu,2,1,"td",37),e.bVm(),e.DNE(72,Vl,1,3,"tr",38)(73,O0,1,0,"tr",39)(74,Hh,1,0,"tr",40),e.k0s(),e.nrm(75,"mat-paginator",41),e.k0s()()()}2&Y&&(e.R7$(3),e.Y8G("icon",ie.faHistory),e.R7$(2),e.SpI("",ie.swapCaption," History"),e.R7$(5),e.R50("ngModel",ie.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(16,S0).concat(ie.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",ie.selFilter),e.R7$(3),e.Y8G("ngIf",!0===ie.flgLoading[0]),e.R7$(),e.Y8G("matSortActive",ie.selectedSwapType===ie.swapTypeEnum.SWAP_IN?ie.tableSettingSwapIn.sortBy:ie.tableSettingSwapOut.sortBy)("matSortDirection",ie.selectedSwapType===ie.swapTypeEnum.SWAP_IN?ie.tableSettingSwapIn.sortOrder:ie.tableSettingSwapOut.sortOrder)("dataSource",ie.listSwaps)("ngClass",e.eq3(17,T0,"error"===ie.flgLoading[0])),e.R7$(52),e.Y8G("matFooterRowDef",e.lJ4(19,ru)),e.R7$(),e.Y8G("matHeaderRowDef",ie.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",ie.displayedColumns),e.R7$(),e.Y8G("pageSize",ie.pageSize)("pageSizeOptions",ie.pageSizeOptions)("hidePageSize",ie.screenSize!==ie.screenSizeEnum.XS))},dependencies:[c.YU,c.Sq,c.bT,c.B3,cn.me,cn.BC,cn.vS,Tr.aY,Hr.$z,fo.fg,ra.rl,ra.nJ,$c.HM,bn.DJ,bn.sA,bn.UI,Lo.PW,Lo.eI,De.VO,De.$2,pt.wT,Ha.B4,Ha.aE,Ba.Zl,Ba.tL,Ba.ji,Ba.cC,Ba.YV,Ba.iL,Ba.Zq,Ba.xW,Ba.KS,Ba.$R,Ba.Qo,Ba.YZ,Ba.NB,Ba.iF,Mc.iy,Yt.ZF,Yt.Ld,c.QX],encapsulation:2}))}return z(),F})();const kd=z=>["../",z];function hu(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",16),e.bIt("click",function(){const Y=p.eBV(L).$implicit,ie=e.XpG();return p.Njj(ie.onSelectedIndexChange(Y))}),e.EFF(1),e.k0s()}if(2&z){const L=F.$implicit,H=e.XpG();e.Y8G("active",H.activeTab.link===L.link)("routerLink",e.eq3(3,kd,L.link)),e.R7$(),e.JRh(L.name)}}let jh=(()=>{var z;class F{constructor(H,Y,ie){this.router=H,this.store=Y,this.boltzService=ie,this.swapTypeEnum=ot.Bd,this.selectedSwapType=ot.Bd.SWAP_OUT,this.swaps={},this.swapsData=[],this.emptyTableMessage="No swap data available.",this.flgLoading=[!0],this.links=[{link:"swapout",name:"Swap Out"},{link:"swapin",name:"Swap In"}],this.activeTab=this.links[0],this.unSubs=[new hn.B,new hn.B,new hn.B,new hn.B]}ngOnInit(){this.boltzService.getBoltzInfo(),this.boltzService.listSwaps();const H=this.links.find(Y=>this.router.url.includes(Y.link));this.activeTab=H||this.links[0],this.selectedSwapType=H&&"swapin"===H.link?ot.Bd.SWAP_IN:ot.Bd.SWAP_OUT,this.router.events.pipe((0,wn.Q)(this.unSubs[0]),(0,cr.p)(Y=>Y instanceof Ja.gx)).subscribe({next:Y=>{const ie=this.links.find(et=>Y.urlAfterRedirects.includes(et.link));this.activeTab=ie||this.links[0],this.selectedSwapType=ie&&"swapin"===ie.link?ot.Bd.SWAP_IN:ot.Bd.SWAP_OUT}}),this.boltzService.swapsChanged.pipe((0,wn.Q)(this.unSubs[1])).subscribe({next:Y=>{this.swaps=Y,this.swapsData=this.selectedSwapType===ot.Bd.SWAP_IN&&Y.swaps?Y.swaps:this.selectedSwapType===ot.Bd.SWAP_OUT&&Y.reverseSwaps?Y.reverseSwaps:[],this.flgLoading[0]=!1},error:Y=>{this.flgLoading[0]="error",this.emptyTableMessage=Y.message?Y.message:"No swap "+(this.selectedSwapType===ot.Bd.SWAP_IN?"in":"out")+" available."}})}onSelectedIndexChange(H){"swapin"===H.link?(this.selectedSwapType=ot.Bd.SWAP_IN,this.swapsData=this.swaps.swaps||[]):(this.selectedSwapType=ot.Bd.SWAP_OUT,this.swapsData=this.swaps.reverseSwaps||[])}onSwap(H){this.boltzService.serviceInfo().pipe((0,wn.Q)(this.unSubs[2])).subscribe({next:Y=>{this.store.dispatch((0,Nn.xO)({payload:{data:{serviceInfo:Y,direction:H,component:Lh}}}))}})}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(null),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(Ja.Ix),e.rXU(qi.il),e.rXU(Tc))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-boltz-root"]],standalone:!1,decls:20,vars:7,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["viewBox","0 0 78 78","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",1,"botlz-icon-sm","mr-1"],["id","Logo","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Oval","cx","39","cy","39","r","37.5",1,"boltz-icon"],["d","M36.4583326,43.7755404 L40.53965,35.2316544 L39.4324865,35.2316544 L46.0754873,17.6071752 C46.292579,17.0204094 46.3287609,16.5159331 46.1840331,16.0937464 C46.0393053,15.671561 45.7860319,15.3674444 45.4242131,15.1813966 C45.0623942,14.9953487 44.6535376,14.9524146 44.1976433,15.0525945 C43.7417511,15.1527743 43.3256596,15.4461573 42.9493689,15.9327433 L22.6078557,40.7701025 C22.2026186,41.2710003 22,41.7575877 22,42.2298646 C22,42.6735173 22.1592003,43.0420366 22.477601,43.3354226 C22.7960017,43.6288058 23.1940025,43.7755404 23.6716036,43.7755404 L36.4583326,43.7755404 Z","id","Path",1,"boltz-icon-fill"],["d","M44.4883879,63.7755404 L48.8604707,55.165009 L47.6744296,55.165009 L54.7906978,37.4030526 C55.0232558,36.8117097 55.0620155,36.3032983 54.9069768,35.8778185 C54.7519381,35.4523399 54.4806208,35.1458511 54.0930248,34.958352 C53.7054289,34.7708528 53.2674441,34.7275839 52.7790706,34.8285452 C52.2906992,34.9295065 51.8449641,35.2251779 51.4418653,35.7155595 L29.6511611,60.746659 C29.2170537,61.251464 29,61.7418469 29,62.2178078 C29,62.6649211 29.1705423,63.036315 29.5116268,63.3319895 C29.8527113,63.6276613 30.2790669,63.7755404 30.7906936,63.7755404 L44.4883879,63.7755404 Z","id","Path-Copy","transform","translate(42.000000, 49.275540) rotate(-180.000000) translate(-42.000000, -49.275540) ",1,"boltz-icon-fill"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"padding-gap-x-large","mt-1"],["mat-flat-button","","color","primary","type","button","tabindex","2",3,"click"],["fxLayout","row","fxFlex","100",3,"selectedSwapType","swapsData","flgLoading","emptyTableMessage"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(Y,ie){if(1&Y){const et=e.RV6();e.j41(0,"div",1),p.qSk(),e.j41(1,"svg",2)(2,"g",3)(3,"g",4),e.nrm(4,"circle",5)(5,"path",6)(6,"path",7),e.k0s()()(),p.joV(),e.j41(7,"span",8),e.EFF(8,"Boltz"),e.k0s()(),e.j41(9,"div",9)(10,"mat-card")(11,"mat-card-content",10)(12,"nav",11),e.DNE(13,hu,2,5,"div",12),e.k0s(),e.nrm(14,"mat-tab-nav-panel",null,0),e.j41(16,"div",13)(17,"button",14),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.onSwap(ie.selectedSwapType))}),e.EFF(18),e.k0s()(),e.nrm(19,"rtl-boltz-swaps",15),e.k0s()()()}if(2&Y){const et=e.sdS(15);e.R7$(12),e.Y8G("tabPanel",et),e.R7$(),e.Y8G("ngForOf",ie.links),e.R7$(5),e.SpI("Start ",ie.activeTab.name),e.R7$(),e.Y8G("selectedSwapType",ie.selectedSwapType)("swapsData",ie.swapsData)("flgLoading",ie.flgLoading)("emptyTableMessage",ie.emptyTableMessage)}},dependencies:[c.Sq,Hr.$z,Ea.RN,Ea.m2,bn.DJ,bn.sA,bn.UI,Dr.Bu,Dr.hQ,Dr.Ql,Wo.Wk,Gh],encapsulation:2}))}return z(),F})();class Ms{constructor(F){this.help=F}}function F0(z,F){if(1&z&&(e.j41(0,"mat-expansion-panel",8)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),e.EFF(3),e.k0s()(),e.j41(4,"mat-panel-description",9),e.nrm(5,"span",10),e.j41(6,"a",11),e.EFF(7),e.k0s()()()),2&z){const L=e.XpG().$implicit,H=e.XpG();e.R7$(3),e.JRh(L.help.question),e.R7$(2),e.Y8G("innerHTML",L.help.answer,e.npT),e.R7$(),e.Y8G("routerLink",H.flgLoggedIn?L.help.link:"/login"),e.R7$(),e.JRh(H.flgLoggedIn?L.help.linkCaption:"Login to go to the page")}}function N0(z,F){if(1&z&&(e.j41(0,"div",6),e.DNE(1,F0,8,4,"mat-expansion-panel",7),e.k0s()),2&z){const L=F.$implicit,H=e.XpG();e.R7$(),e.Y8G("ngIf","ALL"===L.help.lnImplementation||L.help.lnImplementation===H.selNode.lnImplementation)}}let Xh=(()=>{var z;class F{constructor(H,Y){this.store=H,this.sessionService=Y,this.helpTopics=[],this.faQuestion=Mn.EvL,this.LNPLink="/lnd/",this.flgLoggedIn=!1,this.unSubs=[new hn.B,new hn.B,new hn.B,new hn.B]}ngOnInit(){this.store.select(Va._c).pipe((0,wn.Q)(this.unSubs[0])).subscribe(H=>{this.selNode=H,this.selNode.lnImplementation&&""!==this.selNode.lnImplementation.trim()&&(this.LNPLink="/"+this.selNode.lnImplementation.toLowerCase()+"/",this.addHelpTopics())}),this.sessionService.watchSession().pipe((0,wn.Q)(this.unSubs[1])).subscribe(H=>{this.flgLoggedIn=!!H.token}),this.sessionService.getItem("token")&&(this.flgLoggedIn=!0)}addHelpTopics(){this.helpTopics=[],this.helpTopics.push(new Ms({question:"Getting started",answer:'Funding your node is the first step to get started.\nGo to the "On-chain" page of the app:\n1. Generate a new address on the "Recieve" tab.\n2. Send funds to the address.\n3. Wait for the balance to be confirmed on-chain before proceeding further.\n3. Connecting with network peers and opening channels is next.\n',link:this.LNPLink+"onchain/receive/utxos",linkCaption:"On-Chain",lnImplementation:"ALL"})),this.helpTopics.push(new Ms({question:"Connect with peers",answer:'Connect with network peers to open channels with them.\nGo to "Peer/Channels" page under the "Lightning" menu :\n1. Get the peer pubkey and host address in the pubkey@ip:port format.\n2. On the "Peers" enter the peer address and connect.\n3. Once the peer is connected, you can open channel with the peer.\n4. A variety of actions can be performed on the connected peers page for each peer:\n a. View Info - View the peer details.\n b. Open Channel - Open channel with the peer.\n c. Disconnect - Disconnect from the peer.\n',link:this.LNPLink+"connections/peers",linkCaption:"Peers",lnImplementation:"ALL"})),this.helpTopics.push(new Ms({question:"Opening Channels",answer:'Open channels with a connected peer.\nGo to "Peer/Channels" page under the "Lightning" menu:\n1. On the "Channels" section, click on "Open Channel"\n2. On the "Open Channel" modal, select the alias of the connected peer from the drop-down\n2. Specify the amount to commit to the channel and click on "Open Channel".\n3. There are a variety of options available while opening a channel. \n a. Private Channel - When this option is selected, a private channel is opened with the peer. \n b. Priority (advanced option) - Specify either Target confirmation Block or Fee in Sat/vByte. \n c. Spend Unconfirmd Output (advanced option) - Allow channels to be opened with unconfirmed UTXOs.\n4. Track the pending open channels under the "Pending" tab. \n5. Wait for the channel to be confirmed. Only a confimed channel can be used for payments or routing. \n',link:this.LNPLink+"connections/channels/open",linkCaption:"Channels",lnImplementation:"ALL"})),this.helpTopics.push(new Ms({question:"Channel Management",answer:'Channel maintenance and balance score.\nGo to "Peer/Channels" page under the "Lightning" menu:\n1. A variety of actions can be perfomed on the open channels under the "Open" tab, with the "Actions" button:\n a. View Info - View the channel details.\n b. View Remote Fee - View the fee policy on the channel of the remote peer.\n c. Update Fee Policy - Modify the fee policy on the channel.\n d. Circular Rebalance - Off-chain rebalance channels by making a payment to yourself across a circular path of chained payment channels.\n e. Close Channel - Close the channel.\n2. Balance Score is a "balancedness" metric score for the channel. \n a. It helps measure how balanced the remote and local balances are, on a channel.\n b. A perfectly balanced channel has a score of one, where as a completely lopsided one has a score of zero.\n c. The formula for calculating the score is "1 - abs((local bal - remote bal)/total bal)".\n',link:this.LNPLink+"connections/channels/open",linkCaption:"Channels",lnImplementation:"ALL"})),this.helpTopics.push(new Ms({question:"Buying Liquidity",answer:'Buying liquidity for your node.\nGo to "Liquidity Ads" page under the "Lightning" menu:\n 1. Filter ads by liquidity amount and channel opening fee rate.\n 2. Research additionally on liquidity provider nodes before selecting.\n 3. Select the best liquidity node peer for your need and click on "Open Channel" from "Actions" drop-down.\n 4. Confirm amount, rates and total cost on the modal and click on "Execute" to buy liquidity.\n',link:this.LNPLink+"liquidityads",linkCaption:"Liquidity Ads",lnImplementation:"CLN"})),this.helpTopics.push(new Ms({question:"Payments",answer:'Sending Payments from your node.\nGo to the "Transactions" page under the "Lightning" menu :\nPayments tab is for making payments via your node\n 1. Input a non-expired lightning invoice (Bolt11 format) in the "Payment Request" field and click on "Send Payment" to send.\n 2. Advanced option # 1 (LND only) - Specify a limit on the routing fee which you are willing to pay, for the payment.\n 3. Advanced option # 2 (LND only) - Specify the outgoing channel which you want the payment to go through.\n',link:this.LNPLink+"transactions/payments",linkCaption:"Payments",lnImplementation:"ALL"})),this.helpTopics.push(new Ms({question:"Invoices",answer:'Receiving Payments on your node.\nGo to the "Transactions" page under the "Lightning" menu :\nInvoices tab is for receiving payments on your node.\n 1. Memo - Description you want to provide on the invoice.\n 2. Expiry - The time period, after which the invoice will be invalid.\n 3. Private Routing Hints - Generate an invoice with routing hints for private channels.\n',link:this.LNPLink+"transactions/invoices",linkCaption:"Invoices",lnImplementation:"ALL"})),this.helpTopics.push(new Ms({question:"Offers",answer:'Send offer payments, create offer invoices and bookmark paid offers on your node.\nGo to the "Transactions" page under the "Lightning" menu :\nPayment for bolt12 offer invoice can be done on "Payments" tab:\n 1. Click on "Send Payment" button.\n 2. Select "Offer" option on the modal.\n 2. Offer Request - Input offer request (Bolt12 format) in the input box.\n 3. Bookmark - Select the checkbox to bookmark this offer for future use.\nOffers tab is for creating bolt12 offer invoice on your node:\n 1. Click on "Create Offer" button.\n 2. Description - Description you want to provide on the offer invoice.\n 3. Amount - Amount for the offer invoice.\n 4. issuer - issuer of the offer.\nPaid offer bookmarks shows the list of paid offers saved for future payments.\n',link:this.LNPLink+"transactions/offers",linkCaption:"Offers",lnImplementation:"CLN"})),this.helpTopics.push(new Ms({question:"Channel Backups",answer:'Channel Backups are important to ensure that you have means to recover funds in case of node failures.\nBackup folder location can be customized in the RTL config file with the channelBackupPath field.\nRTL automatically creates all channel backup on server startup, as well as everytime a channel is opened or closed\nYou can verify the all channel backup file by clicking on "Verify All" Button on the backup page.\nYou can also backup each channel individually and verify them.\n** Keep taking backups of your channels regularly and store them in redundant locations **.\n',link:this.LNPLink+"channelbackup/bckup",linkCaption:"Channel Backups",lnImplementation:"LND"})),this.helpTopics.push(new Ms({question:"Channel Restore",answer:'Channel Restore is used to recover funds from the channel backup files in case of node failures.\nFollow the below steps to perform fund restoration.\n\nPrerequisite:\n1. The node has been restored with the LND recovery seed.\n2. RTL generated channel backup file/s is available (all channel backup file is channel-all.bak).\n\nRecovery:\n1. Create a restore folder in your folder backup location, as specified in the RTL config file.\n2. Place the channel backup file in the restore folder.\n3. Go to the "Restore" tab under the "Backup" page of RTL.\n4. RTL will list the options to restore funds from the all channel file or individual channel backup file.\n5. Click on the Restore icon on the grid to restore the funds.\n6. Once the restore function is executed successfully, RTL will rename the backup file and it will not be accessible from the UI.\n7. Restore function will force close the channels and recover the funds from them.\n8. The pending close channels can be viewed under the "Pending" tab on the "Peer/Channels" page.\n9. Once the channel is closed, the corresponding pending on-chain transactions can be viewed on the "On-Chain" page.\n10. Once the transactions are confirmed, the channels funds will be restored to your LND Wallet.\n',link:this.LNPLink+"channelbackup/restore",linkCaption:"Channel Restore",lnImplementation:"LND"})),this.helpTopics.push(new Ms({question:"Forwarding History",answer:'Transactions routed by the node.\nGo to "Routing" page under the "Lightning" menu :\nTransactions routed by the node are listed on this page along with channels and the fee earned by transaction.\n',link:this.LNPLink+"routing/forwardinghistory",linkCaption:"Forwarding History",lnImplementation:"ALL"})),this.helpTopics.push(new Ms({question:"Lightning Reports",answer:'Routing and transactions data reports.\nGo to "Reports" page under the "Lightning" menu :\nReport can be generated on monthly/yearly basis by selecting the reporting period, month, and year.\n',link:this.LNPLink+"reports/routingreport",linkCaption:"Reports",lnImplementation:"ALL"})),this.helpTopics.push(new Ms({question:"Graph Lookup",answer:'Querying your node graph for network node and channel information.\nGo to "Graph Lookup" page under the "Lightning" menu :\nEach node maintains a network graph for the information on all the nodes and channels on the network.\nYou can lookup information on nodes and channels from your graph:\n 1. Node Lookup - Enter the pubkey to perform the lookup.\n 2. Channel Lookup - Enter the short channel ID to perform the lookup.\n',link:this.LNPLink+"graph/lookups",linkCaption:"Graph Lookup",lnImplementation:"ALL"})),this.helpTopics.push(new Ms({question:"Query Route",answer:'Querying Payment Routes.\nGo to the "Graph Lookup" page under the "Lightning" menu :\nQuery Routes tab is for querying a potential path to a node and a routing fee estimate for a payment amount.\n 1. Destination Pubkey - Pubkey of the node, you want to send the payment to.\n 2. Amount - Amount in Sats, which you want to send to the node.\n',link:this.LNPLink+"graph/queryroutes",linkCaption:"Query Routes",lnImplementation:"ALL"})),this.helpTopics.push(new Ms({question:"Sign & Verify Messages",answer:'Messages signing and verification.\nGo to the "Sign/Verify" page under the "Lightning" menu :\n 1. Sign your message on "Sign" tab.\n 2. Go to "Verify" tab to verify a message.\n',link:this.LNPLink+"messages/sign",linkCaption:"Messages",lnImplementation:"LND"})),this.helpTopics.push(new Ms({question:"Sign & Verify Messages",answer:'Messages signing and verification.\nGo to the "Sign/Verify" page under the "Lightning" menu :\n 1. Sign your message on "Sign" tab.\n 2. Go to "Verify" tab to verify a message.\n',link:this.LNPLink+"messages/sign",linkCaption:"Messages",lnImplementation:"CLN"})),this.helpTopics.push(new Ms({question:"Node Settings",answer:'RTL offers certain customizations on the UI to personalize your experience on the app\nGo to "Node Config" page to access the customization options.\nNode Layout Options\n 1. User Persona - Two options are available to change the dashboard based on the persona.\n 2. Currency Unit - You can choose your preferred fiat currency, to view the onchain and channel balances in the choosen fiat currency.\n 3. Other customizations include day and night mode and a choice of color themes to select from.\nServices Options\n Loop (LND only), Boltz (LND only) & Peerswap (CLN only) services can be configured.\nExperimental Options (CLN only)\n Offers and Liquidity Ads can be enabled/disabled.\nShow LN Config (if configured)\n Shows lightning config file.\n',link:"../config/nodesettings",linkCaption:"Node Settings",lnImplementation:"ALL"})),this.helpTopics.push(new Ms({question:"Application Settings",answer:'RTL also offers certain customizations on the application level\nGo to top right menu "Settings" page to access these options.\nDefault Node Option\nIf you are managing multiple nodes via RTL UI, you can select the default node to load upon login.\nAuthentication Option\nPassword and 2FA update options are available here.\nShow Bitcoin Config (if configured)\n Shows bitcoin config file.\n',link:"../settings/app",linkCaption:"Application Settings",lnImplementation:"ALL"}))}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(null),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(qi.il),e.rXU(Ti.Q))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-help"]],standalone:!1,decls:8,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxFlex","100",4,"ngFor","ngForOf"],["fxFlex","100"],["class","flat-expansion-panel help-expansion mb-2px",4,"ngIf"],[1,"flat-expansion-panel","help-expansion","mb-2px"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start"],[1,"pre-wrap",3,"innerHTML"],[1,"mt-2",3,"routerLink"]],template:function(Y,ie){1&Y&&(e.j41(0,"div",0)(1,"div",1),e.nrm(2,"fa-icon",2),e.j41(3,"span",3),e.EFF(4,"Help"),e.k0s()(),e.j41(5,"div",4)(6,"div",0),e.DNE(7,N0,2,1,"div",5),e.k0s()()()),2&Y&&(e.R7$(2),e.Y8G("icon",ie.faQuestion),e.R7$(5),e.Y8G("ngForOf",ie.helpTopics))},dependencies:[c.Sq,c.bT,Tr.aY,Lr.GK,Lr.Z2,Lr.WN,Lr.Q6,bn.DJ,bn.sA,bn.UI,Wo.Wk],styles:[".mat-mdc-card-content[_ngcontent-%COMP%]{margin-bottom:4px}"]}))}return z(),F})();var B0=l(84572);function w4(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Token is required."),e.k0s())}let fu=(()=>{var z;class F{constructor(H,Y){this.dialogRef=H,this.store=Y,this.token=""}onClose(){this.dialogRef.close(null)}onVerifyToken(){if(!this.token)return!0;this.dialogRef.close(),this.store.dispatch((0,Nn.R$)({payload:{twoFAToken:this.token}}))}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU($a.CP),e.rXU(qi.il))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-login-token"]],standalone:!1,decls:19,vars:2,consts:[["tokenForm","ngForm"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","row",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100",3,"ngSubmit"],["autoFocus","","matInput","","type","text","id","token","name","token","tabindex","2","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","4","type","submit"]],template:function(Y,ie){if(1&Y){const et=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Two Factor Token"),e.k0s()(),e.j41(6,"button",6),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"form",8,0),e.bIt("ngSubmit",function(){return p.eBV(et),p.Njj(ie.onVerifyToken())}),e.j41(11,"mat-form-field")(12,"mat-label"),e.EFF(13,"Token"),e.k0s(),e.j41(14,"input",9),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.token,$t)||(ie.token=$t),p.Njj($t)}),e.k0s(),e.DNE(15,w4,2,0,"mat-error",10),e.k0s(),e.j41(16,"div",11)(17,"button",12),e.EFF(18,"Verify Token"),e.k0s()()()()()()}2&Y&&(e.R7$(14),e.R50("ngModel",ie.token),e.R7$(),e.Y8G("ngIf",!ie.token))},dependencies:[c.bT,cn.qT,cn.me,cn.BC,cn.cb,cn.YS,cn.vS,cn.cV,Hr.$z,Ea.m2,Ea.MM,fo.fg,ra.rl,ra.nJ,ra.TL,bn.DJ,bn.sA,bn.UI,Pi.N],encapsulation:2}))}return z(),F})();const mu=z=>({"padding-gap-large":z}),w1=(z,F)=>({"font-size-200":z,"font-size-300":F});function Kh(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function S4(z,F){if(1&z&&(e.j41(0,"p",21)(1,"mat-icon",22),e.EFF(2,"close"),e.k0s(),e.EFF(3),e.k0s()),2&z){const L=e.XpG();e.R7$(3),e.SpI(" ",L.loginErrorMessage," ")}}function S1(z,F){if(1&z&&(e.j41(0,"p",23)(1,"mat-icon",22),e.EFF(2,"close"),e.k0s(),e.EFF(3),e.k0s()),2&z){const L=e.XpG();e.R7$(3),e.SpI(" ",L.logoutReason," ")}}let T4=(()=>{var z;class F{constructor(H,Y,ie,et,Bt){this.actions=H,this.logger=Y,this.store=ie,this.rtlEffects=et,this.commonService=Bt,this.faUnlockAlt=Mn.HEq,this.logoutReason="",this.password="",this.rtlSSO=0,this.rtlCookiePath="",this.accessKey="",this.flgShow=!1,this.screenSize="",this.screenSizeEnum=ot.f7,this.loginErrorMessage="",this.apiCallStatusEnum=ot.wn,this.unSubs=[new hn.B,new hn.B,new hn.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),(0,B0.z)([this.store.select(Va.Kq),this.store.select(Va.E2)]).pipe((0,wn.Q)(this.unSubs[0])).subscribe(([H,Y])=>{this.loginErrorMessage="",H.status===ot.wn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof H.message?JSON.stringify(H.message):H.message),this.logger.error(H.message)),Y.status===ot.wn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof Y.message?JSON.stringify(Y.message):Y.message),this.logger.error(Y.message))}),this.store.select(Va.qv).pipe((0,wn.Q)(this.unSubs[1])).subscribe(H=>{this.appConfig=H,this.logger.info(H)}),this.actions.pipe((0,cr.p)(H=>H.type===ot.aU.LOGOUT),(0,js.s)(1)).subscribe(H=>{this.logoutReason=H.payload})}onLogin(){if(!this.password)return!0;this.loginErrorMessage="",this.logoutReason="",this.appConfig.enable2FA?(this.store.dispatch((0,Nn.xO)({payload:{maxWidth:"35rem",data:{component:fu}}})),this.rtlEffects.closeAlert.pipe((0,js.s)(1)).subscribe(H=>{H&&this.store.dispatch((0,Nn.iD)({payload:{password:Ar(this.password),defaultPassword:ot.Ah.includes(this.password.toLowerCase()),twoFAToken:H.twoFAToken}}))})):this.store.dispatch((0,Nn.iD)({payload:{password:Ar(this.password),defaultPassword:ot.Ah.includes(this.password.toLowerCase())}}))}resetData(){this.password="",this.loginErrorMessage="",this.logoutReason="",this.flgShow=!1}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(null),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(Fo.En),e.rXU(ir.gP),e.rXU(qi.il),e.rXU(ms.H),e.rXU(qs.h))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-login"]],standalone:!1,decls:29,vars:14,consts:[["loginForm","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"login-container"],["fxLayout","row","fxFlex.gt-sm","35","fxLayoutAlign","center center"],["fxLayout","row","fxFlex","45","fxLayoutAlign","center stretch"],["fxLayout","column","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxFlex","35","fxLayoutAlign","center center",1,"bg-primary"],["alt","RTL Logo","src","assets/images/RTL-Horse-BY.svg",1,"rtl-logo-svg"],["fxFlex","65","fxLayout","column","fxLayoutAlign","center stretch",3,"ngClass"],["fxLayout","row","fxLayoutAlign","center center",1,"page-title-container","mt-2","p-0"],[1,"font-bold-500",3,"ngClass"],[1,"page-title"],[1,"pb-2"],["fxLayout","column","fxLayoutAlign","start space-between"],["autoFocus","","matInput","","id","password","name","password","tabindex","1","required","",3,"ngModelChange","type","ngModel"],["mat-icon-button","","matSuffix","","tabindex","2","type","button",3,"click"],[4,"ngIf"],["class","color-warn pre-wrap","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["class","color-warn pre-wrap","fxLayout","row","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1","mb-2",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn","pre-wrap"],["fxLayoutAlign","center center",1,"mr-3px","icon-small"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"color-warn","pre-wrap"]],template:function(Y,ie){if(1&Y){const et=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card",3)(3,"div",4)(4,"div",5),e.nrm(5,"img",6),e.k0s(),e.j41(6,"div",7)(7,"mat-card-header",8)(8,"mat-card-title",9)(9,"span",10),e.EFF(10,"Welcome"),e.k0s()()(),e.j41(11,"mat-card-content",11)(12,"form",12,0)(14,"mat-form-field")(15,"mat-label"),e.EFF(16,"Password"),e.k0s(),e.j41(17,"input",13),e.mxI("ngModelChange",function($t){return p.eBV(et),e.DH7(ie.password,$t)||(ie.password=$t),p.Njj($t)}),e.k0s(),e.j41(18,"button",14),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.flgShow=!ie.flgShow)}),e.j41(19,"mat-icon"),e.EFF(20),e.k0s()(),e.DNE(21,Kh,2,0,"mat-error",15),e.k0s(),e.DNE(22,S4,4,1,"p",16)(23,S1,4,1,"p",17),e.j41(24,"div",18)(25,"button",19),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.resetData())}),e.EFF(26,"Clear"),e.k0s(),e.j41(27,"button",20),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.onLogin())}),e.EFF(28,"Login"),e.k0s()()()()()()()()()}2&Y&&(e.R7$(6),e.Y8G("ngClass",e.eq3(9,mu,ie.screenSize===ie.screenSizeEnum.XS)),e.R7$(2),e.Y8G("ngClass",e.l_i(11,w1,ie.screenSize===ie.screenSizeEnum.XS,ie.screenSize!==ie.screenSizeEnum.XS)),e.R7$(9),e.Y8G("type",ie.flgShow?"text":"password"),e.R50("ngModel",ie.password),e.R7$(),e.BMQ("aria-label","Hide password"),e.R7$(2),e.JRh(ie.flgShow?"visibility_off":"visibility"),e.R7$(),e.Y8G("ngIf",!ie.password),e.R7$(),e.Y8G("ngIf",""!==ie.loginErrorMessage),e.R7$(),e.Y8G("ngIf",""!==ie.logoutReason))},dependencies:[c.YU,c.bT,cn.qT,cn.me,cn.BC,cn.cb,cn.YS,cn.vS,cn.cV,Hr.$z,vd.iY,Ea.RN,Ea.m2,Ea.MM,Ea.dh,tc.An,fo.fg,ra.rl,ra.nJ,ra.TL,ra.yw,bn.DJ,bn.sA,bn.UI,Lo.PW,Pi.N],styles:[".login-container[_ngcontent-%COMP%]{height:60vh;margin-top:15%}.login-container[_ngcontent-%COMP%] .mat-mdc-card[_ngcontent-%COMP%]{height:30rem}.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:100%}@media only screen and (max-width: 56.25em){.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:37%}}@media only screen and (max-width: 37.5em){.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:70%}}.login-container[_ngcontent-%COMP%] .material-icons.mat-icon[_ngcontent-%COMP%]{font-size:90%;cursor:pointer}"]}))}return z(),F})();var pu=l(90013);let D4=(()=>{var z;class F{constructor(H,Y){this.activatedRoute=H,this.router=Y,this.error={errorCode:"",errorMessage:""},this.faTimes=Mn.GRI,this.unsubs=[new hn.B,new hn.B]}ngOnInit(){this.activatedRoute.paramMap.pipe((0,wn.Q)(this.unsubs[0])).subscribe(H=>{this.error=window.history.state})}goToHelp(){this.router.navigate(["/help"])}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(Ja.nX),e.rXU(Ja.Ix))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-error"]],standalone:!1,decls:13,vars:3,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","center center"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start center"],["fxLayout","row","fxLayoutAlign","center center",1,"page-title-container","padding-gap-large"],[1,"font-size-300","font-bold-500"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-large"],[1,"box-text","font-size-120"],["fxLayout","row","fxLayoutAlign","center","fxFlex","80"],["mat-flat-button","","color","primary","type","button",1,"mt-2",3,"click"]],template:function(Y,ie){1&Y&&(e.j41(0,"div",0)(1,"mat-card",1)(2,"mat-card-header",2)(3,"mat-card-title",3),e.nrm(4,"fa-icon",4),e.j41(5,"span",5),e.EFF(6),e.k0s()()(),e.j41(7,"mat-card-content",6)(8,"div",7),e.EFF(9),e.k0s(),e.j41(10,"span",8)(11,"button",9),e.bIt("click",function(){return ie.goToHelp()}),e.EFF(12,"Go To Help"),e.k0s()()()()()),2&Y&&(e.R7$(4),e.Y8G("icon",ie.faTimes),e.R7$(2),e.SpI("Error ",ie.error.errorCode),e.R7$(3),e.JRh(ie.error.errorMessage))},dependencies:[Tr.aY,Hr.$z,Ea.RN,Ea.m2,Ea.MM,Ea.dh,bn.DJ,bn.sA,bn.UI],encapsulation:2}))}return z(),F})();var Is=l(17186),nd=l(51534),gu=l(60092),Yh=l(56114);const Qh=(z,F)=>({"alert-danger":z,"alert-info":F});function T1(z,F){1&z&&e.nrm(0,"span",17)}function D1(z,F){1&z&&e.nrm(0,"span",18)}function A4(z,F){if(1&z){const L=e.RV6();e.j41(0,"form",19,0)(2,"div",20),e.nrm(3,"fa-icon",4),e.j41(4,"span"),e.EFF(5,"Please ensure that "),e.j41(6,"strong"),e.EFF(7,"experimental-offers"),e.k0s(),e.EFF(8," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),e.j41(9,"strong")(10,"a",21),e.EFF(11,"here"),e.k0s()(),e.EFF(12," to learn more about Core Lightning offers."),e.k0s()(),e.j41(13,"h4",22),e.EFF(14,"Description"),e.k0s(),e.j41(15,"span"),e.EFF(16,"Offers is a draft specification (also referred as BOLT12) for Lightning nodes and wallets, with experimental support in Core Lightning."),e.k0s(),e.j41(17,"h4",22),e.EFF(18,"Links"),e.k0s(),e.j41(19,"span")(20,"a",23),e.EFF(21,"Core lightning Bolt12"),e.k0s()(),e.nrm(22,"mat-divider",24),e.j41(23,"div",25),e.nrm(24,"fa-icon",4),e.j41(25,"span"),e.EFF(26,"Do not get an Offer tattoo until spec is fully ratified!"),e.k0s()(),e.j41(27,"mat-slide-toggle",26),e.mxI("ngModelChange",function(Y){p.eBV(L);const ie=e.XpG(2);return e.DH7(ie.enableOffers,Y)||(ie.enableOffers=Y),p.Njj(Y)}),e.bIt("change",function(){p.eBV(L);const Y=e.XpG(2);return p.Njj(Y.onUpdateFeature())}),e.EFF(28),e.k0s()()}if(2&z){const L=e.XpG(2);e.R7$(3),e.Y8G("icon",L.faInfoCircle),e.R7$(19),e.Y8G("inset",!0),e.R7$(2),e.Y8G("icon",L.faExclamationTriangle),e.R7$(3),e.R50("ngModel",L.enableOffers),e.R7$(),e.SpI("Enable Offers ",L.enableOffers?"(You can find Offers under Lightning -> Transactions -> Offers)":"")}}function $h(z,F){if(1&z&&(e.j41(0,"div")(1,"div",29),e.nrm(2,"fa-icon",4),e.j41(3,"span"),e.EFF(4,"Please ensure that "),e.j41(5,"strong"),e.EFF(6,"experimental-dual-fund"),e.k0s(),e.EFF(7," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),e.j41(8,"strong")(9,"a",30),e.EFF(10,"here"),e.k0s()(),e.EFF(11," to learn more about Core Lightning Liquidity Ads."),e.k0s()()()),2&z){const L=e.XpG(3);e.R7$(2),e.Y8G("icon",L.faExclamationTriangle)}}function _u(z,F){if(1&z&&(e.j41(0,"mat-option",47),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&z){const L=F.$implicit;e.Y8G("value",L),e.R7$(),e.SpI(" ",e.bMT(2,2,L.id)," ")}}function vu(z,F){if(1&z&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&z){const L=e.XpG(4);e.R7$(),e.SpI("",L.selPolicyType.placeholder," is required.")}}function Zh(z,F){if(1&z&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&z){const L=e.XpG(4);e.R7$(),e.Lme("",L.selPolicyType.placeholder," must be greater than or equal to ",L.selPolicyType.min,".")}}function Jh(z,F){if(1&z&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&z){const L=e.XpG(4);e.R7$(),e.Lme("",L.selPolicyType.placeholder," must be less than or equal to ",L.selPolicyType.max,".")}}function _m(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Lease base fee is required."),e.k0s())}function L4(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Lease base basis is required."),e.k0s())}function I4(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Max channel routing base fee is required."),e.k0s())}function qh(z,F){1&z&&(e.j41(0,"mat-error"),e.EFF(1,"Max channel routing fee rate is required."),e.k0s())}function yu(z,F){if(1&z&&(e.j41(0,"h4",48)(1,"span",49),e.EFF(2),e.k0s()()),2&z){const L=e.XpG(4);e.R7$(),e.Y8G("ngClass",e.l_i(2,Qh,!!L.updateMsg.error,!!L.updateMsg.data)),e.R7$(),e.SpI(" ",L.updateMsg.error&&""!==L.updateMsg.error?`Error: ${L.updateMsg.error||"Unknown Error"}`:L.updateMsg.data&&""!==L.updateMsg.data?L.updateMsg.data:"Successfully Updated the Funding Policy!"," ")}}function vm(z,F){if(1&z){const L=e.RV6();e.j41(0,"div",31)(1,"div",32),e.nrm(2,"fa-icon",4),e.j41(3,"span"),e.EFF(4,"These config changes should be configured permanently via the config file on your CLN node otherwise the policy would need to be configured again, if your node restarts."),e.k0s()(),e.j41(5,"div",33)(6,"mat-form-field",34)(7,"mat-label"),e.EFF(8,"Policy"),e.k0s(),e.j41(9,"mat-select",35),e.mxI("ngModelChange",function(Y){p.eBV(L);const ie=e.XpG(3);return e.DH7(ie.selPolicyType,Y)||(ie.selPolicyType=Y),p.Njj(Y)}),e.bIt("selectionChange",function(){p.eBV(L);const Y=e.XpG(3);return p.Njj(Y.policyMod=null)}),e.DNE(10,_u,3,4,"mat-option",36),e.k0s()(),e.j41(11,"mat-form-field",37)(12,"mat-label"),e.EFF(13),e.k0s(),e.j41(14,"input",38,1),e.mxI("ngModelChange",function(Y){p.eBV(L);const ie=e.XpG(3);return e.DH7(ie.policyMod,Y)||(ie.policyMod=Y),p.Njj(Y)}),e.k0s(),e.j41(16,"mat-hint"),e.EFF(17),e.k0s(),e.DNE(18,vu,2,1,"mat-error",27)(19,Zh,2,2,"mat-error",27)(20,Jh,2,2,"mat-error",27),e.k0s()(),e.j41(21,"div",33)(22,"mat-form-field",37)(23,"mat-label"),e.EFF(24,"Lease Base Fee (Sats)"),e.k0s(),e.j41(25,"input",39),e.mxI("ngModelChange",function(Y){p.eBV(L);const ie=e.XpG(3);return e.DH7(ie.lease_fee_base_sat,Y)||(ie.lease_fee_base_sat=Y),p.Njj(Y)}),e.k0s(),e.DNE(26,_m,2,0,"mat-error",27),e.k0s(),e.j41(27,"mat-form-field",37)(28,"mat-label"),e.EFF(29,"Lease Base Basis (bps)"),e.k0s(),e.j41(30,"input",40),e.mxI("ngModelChange",function(Y){p.eBV(L);const ie=e.XpG(3);return e.DH7(ie.lease_fee_basis,Y)||(ie.lease_fee_basis=Y),p.Njj(Y)}),e.k0s(),e.DNE(31,L4,2,0,"mat-error",27),e.k0s()(),e.j41(32,"div",33)(33,"mat-form-field",37)(34,"mat-label"),e.EFF(35,"Max Channel Routing Base Fee (Sats)"),e.k0s(),e.j41(36,"input",41),e.mxI("ngModelChange",function(Y){p.eBV(L);const ie=e.XpG(3);return e.DH7(ie.channelFeeMaxBaseSat,Y)||(ie.channelFeeMaxBaseSat=Y),p.Njj(Y)}),e.k0s(),e.DNE(37,I4,2,0,"mat-error",27),e.k0s(),e.j41(38,"mat-form-field",37)(39,"mat-label"),e.EFF(40,"Max Channel Routing Fee Rate (ppm)"),e.k0s(),e.j41(41,"input",42),e.mxI("ngModelChange",function(Y){p.eBV(L);const ie=e.XpG(3);return e.DH7(ie.channelFeeMaxProportional,Y)||(ie.channelFeeMaxProportional=Y),p.Njj(Y)}),e.k0s(),e.DNE(42,qh,2,0,"mat-error",27),e.k0s()(),e.DNE(43,yu,3,5,"h4",43),e.j41(44,"div",44)(45,"button",45),e.bIt("click",function(){p.eBV(L);const Y=e.XpG(3);return p.Njj(Y.onResetPolicy())}),e.EFF(46,"Reset"),e.k0s(),e.j41(47,"button",46),e.bIt("click",function(){p.eBV(L);const Y=e.XpG(3);return p.Njj(Y.onUpdateFundingPolicy())}),e.EFF(48,"Update"),e.k0s()()()}if(2&z){const L=e.XpG(3);e.R7$(2),e.Y8G("icon",L.faExclamationTriangle),e.R7$(7),e.R50("ngModel",L.selPolicyType),e.R7$(),e.Y8G("ngForOf",L.policyTypes),e.R7$(3),e.JRh(L.selPolicyType.placeholder),e.R7$(),e.Y8G("step","fixed"===L.selPolicyType.id?1e3:10)("min",L.selPolicyType.min)("max",L.selPolicyType.max),e.R50("ngModel",L.policyMod),e.R7$(3),e.E5c("",L.selPolicyType.placeholder," should be between ",L.selPolicyType.min," and ",L.selPolicyType.max),e.R7$(),e.Y8G("ngIf",!L.policyMod),e.R7$(),e.Y8G("ngIf",L.policyModL.selPolicyType.max),e.R7$(5),e.R50("ngModel",L.lease_fee_base_sat),e.R7$(),e.Y8G("ngIf",!L.lease_fee_base_sat),e.R7$(4),e.R50("ngModel",L.lease_fee_basis),e.R7$(),e.Y8G("ngIf",!L.lease_fee_basis),e.R7$(5),e.R50("ngModel",L.channelFeeMaxBaseSat),e.R7$(),e.Y8G("ngIf",!L.channelFeeMaxBaseSat),e.R7$(4),e.R50("ngModel",L.channelFeeMaxProportional),e.R7$(),e.Y8G("ngIf",!L.channelFeeMaxProportional),e.R7$(),e.Y8G("ngIf",L.flgUpdateCalled)}}function bu(z,F){if(1&z&&(e.j41(0,"form",19,0),e.DNE(2,$h,12,1,"div",27)(3,vm,49,23,"div",28),e.k0s()),2&z){const L=e.XpG(2);e.R7$(2),e.Y8G("ngIf",!L.features[1].enabled),e.R7$(),e.Y8G("ngIf",L.features[1].enabled)}}function k4(z,F){if(1&z){const L=e.RV6();e.j41(0,"mat-expansion-panel",10),e.bIt("opened",function(){const Y=p.eBV(L).index,ie=e.XpG();return p.Njj(ie.onPanelExpanded(Y))}),e.j41(1,"mat-expansion-panel-header")(2,"mat-panel-title",11)(3,"h4",12),e.EFF(4),e.k0s(),e.j41(5,"h4",12),e.DNE(6,T1,1,0,"span",13)(7,D1,1,0,"span",14),e.EFF(8),e.k0s()()(),e.j41(9,"div",15),e.DNE(10,A4,29,5,"form",16)(11,bu,4,2,"form",16),e.k0s()()}if(2&z){const L=F.$implicit,H=F.index;e.Y8G("expanded",!1),e.R7$(4),e.JRh(L.name),e.R7$(2),e.Y8G("ngIf",L.enabled),e.R7$(),e.Y8G("ngIf",!L.enabled),e.R7$(),e.SpI(" ",L.enabled?"Enabled":"Disabled"," "),e.R7$(2),e.Y8G("ngIf",0===H),e.R7$(),e.Y8G("ngIf",1===H)}}let ym=(()=>{var z;class F{constructor(H,Y,ie,et){this.logger=H,this.store=Y,this.dataService=ie,this.commonService=et,this.faInfoCircle=Mn.iW_,this.faExclamationTriangle=Mn.zpE,this.faCode=Mn.jTw,this.features=[{name:"Offers",enabled:!1},{name:"Channel Funding Policy",enabled:!1}],this.enableOffers=!1,this.fundingPolicy={},this.policyTypes=ot.ul,this.selPolicyType=ot.ul[0],this.flgUpdateCalled=!1,this.updateMsg={},this.unSubs=[new hn.B,new hn.B,new hn.B,new hn.B,new hn.B]}ngOnInit(){this.dataService.listConfigs().pipe((0,wn.Q)(this.unSubs[0])).subscribe({next:H=>{this.logger.info("Received List Configs: "+JSON.stringify(H)),this.features[1].enabled=!!H.configs["experimental-dual-fund"].set},error:H=>{this.logger.error("List Configs Error: "+JSON.stringify(H)),this.features[1].enabled=!1}}),this.store.select(Va._c).pipe((0,wn.Q)(this.unSubs[1])).subscribe(H=>{this.selNode=H,this.enableOffers=this.selNode.settings.enableOffers||!1,this.features[0].enabled=this.enableOffers,this.logger.info(this.selNode)}),this.store.select(zl.Al).pipe((0,wn.Q)(this.unSubs[2])).subscribe(H=>{this.policyTypes[2].max=H.balance.totalBalance||1e3})}onPanelExpanded(H){1===H&&!this.fundingPolicy.policy&&this.dataService.getOrUpdateFunderPolicy().pipe((0,wn.Q)(this.unSubs[3])).subscribe(Y=>{this.logger.info("Received Funder Update Policy: "+JSON.stringify(Y)),this.fundingPolicy=Y,this.fundingPolicy.policy&&(this.selPolicyType=ot.ul.find(ie=>ie.id===this.fundingPolicy.policy)||this.policyTypes[0]),this.policyMod=this.fundingPolicy.policy_mod||0===this.fundingPolicy.policy_mod?this.fundingPolicy.policy_mod:null,this.lease_fee_base_sat=this.fundingPolicy.lease_fee_base_msat?this.fundingPolicy.lease_fee_base_msat/1e3:0===this.fundingPolicy.lease_fee_base_msat?0:null,this.lease_fee_basis=this.fundingPolicy.lease_fee_basis||0===this.fundingPolicy.lease_fee_basis?this.fundingPolicy.lease_fee_basis:null,this.channelFeeMaxBaseSat=this.fundingPolicy.channel_fee_max_base_msat?this.fundingPolicy.channel_fee_max_base_msat/1e3:0===this.fundingPolicy.channel_fee_max_base_msat?0:null,this.channelFeeMaxProportional=this.fundingPolicy.channel_fee_max_proportional_thousandths||0===this.fundingPolicy.channel_fee_max_proportional_thousandths?1e3*this.fundingPolicy.channel_fee_max_proportional_thousandths:null})}onUpdateFeature(){this.logger.info(this.selNode),this.selNode.settings.enableOffers=this.enableOffers,this.features[0].enabled=this.enableOffers,this.store.dispatch((0,Nn.T$)({payload:this.selNode}))}onUpdateFundingPolicy(){this.flgUpdateCalled=!0,this.updateMsg={},this.dataService.getOrUpdateFunderPolicy(this.selPolicyType.id,this.policyMod,1e3*(this.lease_fee_base_sat||0),this.lease_fee_basis,1e3*(this.channelFeeMaxBaseSat||0),this.channelFeeMaxProportional?this.channelFeeMaxProportional/1e3:0).pipe((0,wn.Q)(this.unSubs[4])).subscribe({next:H=>{this.logger.info(H),this.fundingPolicy=H,this.updateMsg={data:"Compact Lease: "+H.compact_lease},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)},error:H=>{this.logger.error(H),this.updateMsg={error:this.commonService.extractErrorMessage(H,"Error in updating funder policy")},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)}})}onResetPolicy(){this.flgUpdateCalled=!1,this.updateMsg={},this.selPolicyType=this.fundingPolicy.policy?ot.ul.find(H=>H.id===this.fundingPolicy.policy)||this.policyTypes[0]:ot.ul[0],this.policyMod=this.fundingPolicy.policy_mod||0===this.fundingPolicy.policy_mod?this.fundingPolicy.policy_mod:null,this.lease_fee_base_sat=this.fundingPolicy.lease_fee_base_msat?this.fundingPolicy.lease_fee_base_msat/1e3:0===this.fundingPolicy.lease_fee_base_msat?0:null,this.lease_fee_basis=this.fundingPolicy.lease_fee_basis||0===this.fundingPolicy.lease_fee_basis?this.fundingPolicy.lease_fee_basis:null,this.channelFeeMaxBaseSat=this.fundingPolicy.channel_fee_max_base_msat?this.fundingPolicy.channel_fee_max_base_msat/1e3:0===this.fundingPolicy.channel_fee_max_base_msat?0:null,this.channelFeeMaxProportional=this.fundingPolicy.channel_fee_max_proportional_thousandths||0===this.fundingPolicy.channel_fee_max_proportional_thousandths?1e3*this.fundingPolicy.channel_fee_max_proportional_thousandths:null}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(null),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(ir.gP),e.rXU(qi.il),e.rXU(nd.u),e.rXU(qs.h))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-experimental-settings"]],standalone:!1,decls:13,vars:3,consts:[["form","ngForm"],["plcMod","ngModel"],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["class","flat-expansion-panel my-1",3,"expanded","opened",4,"ngFor","ngForOf"],[1,"flat-expansion-panel","my-1",3,"opened","expanded"],["fxFlex","100","fxLayoutAlign","space-between center"],[1,"font-bold-500"],["class","dot green",4,"ngIf"],["class","dot yellow",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],[1,"dot","green"],[1,"dot","yellow"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-info"],["href","http://bolt12.org","target","_blank"],[1,"mt-2"],["href","https://github.com/lightningnetwork/lightning-rfc/pull/798 ","target","blank"],[1,"my-2",3,"inset"],[1,"alert","alert-warn"],["autoFocus","","tabindex","1","color","primary","name","enableOfr",1,"my-1",3,"ngModelChange","change","ngModel"],[4,"ngIf"],["fxLayout","column",4,"ngIf"],["fxFlex","100","fxLayout","row",1,"alert","alert-warn"],["href","https://medium.com/blockstream/setting-up-liquidity-ads-in-c-lightning-54e4c59c091d","target","_blank"],["fxLayout","column"],["fxFlex","100","fxLayout","row",1,"alert","alert-warn","mb-2"],["fxLayout","column","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start end"],["autofocus","","tabindex","1","name","policy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","49"],["matInput","","type","number","tabindex","2","required","","name","plcMod",3,"ngModelChange","step","min","max","ngModel"],["matInput","","type","number","step","100","min","0","tabindex","3","required","","name","lease_fee_base_sat",3,"ngModelChange","ngModel"],["matInput","","type","number","step","1","min","0","tabindex","4","required","","name","lease_fee_basis",3,"ngModelChange","ngModel"],["matInput","","type","number","step","100","min","0","tabindex","5","required","","name","channelFeeMaxBaseSat",3,"ngModelChange","ngModel"],["matInput","","type","number","step","1000","min","0","tabindex","6","required","","name","channelFeeMaxProportional",3,"ngModelChange","ngModel"],["fxLayoutAlign","start stretch","class","font-bold-500 mt-2",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","7",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],[3,"value"],["fxLayoutAlign","start stretch",1,"font-bold-500","mt-2"],["fxFlex","100",1,"alert",3,"ngClass"]],template:function(Y,ie){1&Y&&(e.j41(0,"div",2)(1,"div",3),e.nrm(2,"fa-icon",4),e.j41(3,"span"),e.EFF(4,"Experimental features should be enabled with caution. Many such features may be implementation specific and not ratified for the BOLT spec. Enabling these may still result in a broken experience. Referencing relevant feature documentation is highly advised before enabling."),e.k0s()(),e.j41(5,"form",5,0)(7,"div",6),e.nrm(8,"fa-icon",7),e.j41(9,"span",8),e.EFF(10,"Features"),e.k0s()(),e.j41(11,"mat-accordion"),e.DNE(12,k4,12,7,"mat-expansion-panel",9),e.k0s()()()),2&Y&&(e.R7$(2),e.Y8G("icon",ie.faInfoCircle),e.R7$(6),e.Y8G("icon",ie.faCode),e.R7$(4),e.Y8G("ngForOf",ie.features))},dependencies:[c.YU,c.Sq,c.bT,cn.qT,cn.me,cn.Q0,cn.BC,cn.cb,cn.YS,cn.VZ,cn.zX,cn.vS,cn.cV,Tr.aY,Hr.$z,Lr.BS,Lr.GK,Lr.Z2,Lr.WN,fo.fg,ra.rl,ra.nJ,ra.MV,ra.TL,Ni.q,bn.DJ,bn.sA,bn.UI,Lo.PW,De.VO,pt.wT,pd.sG,Yt.Ld,Pi.N,gu.z,Yh.V,c.PV],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}))}return z(),F})(),R4=(()=>{var z;class F{constructor(){}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-no-service-found"]],standalone:!1,decls:6,vars:0,consts:[["fxLayout","column",1,"padding-gap-x"],["fxLayout","column",1,"padding-gap-large"],["fxLayout","column","fxLayoutAlign","start start"],[1,"box-text"]],template:function(Y,ie){1&Y&&(e.j41(0,"div",0)(1,"mat-card")(2,"mat-card-content",1)(3,"div",2)(4,"div",3),e.EFF(5,"No Service Found!"),e.k0s()()()()())},dependencies:[Ea.RN,Ea.m2,bn.DJ,bn.sA],encapsulation:2}))}return z(),F})();const O4=[{path:"",pathMatch:"full",redirectTo:"login"},{path:"lnd",loadChildren:()=>Promise.all([l.e(193),l.e(190)]).then(l.bind(l,39190)).then(z=>z.LNDModule),canActivate:[(0,Is.q_)()]},{path:"cln",loadChildren:()=>Promise.all([l.e(193),l.e(853)]).then(l.bind(l,94853)).then(z=>z.CLNModule),canActivate:[(0,Is.q_)()]},{path:"ecl",loadChildren:()=>Promise.all([l.e(193),l.e(17)]).then(l.bind(l,89017)).then(z=>z.ECLModule),canActivate:[(0,Is.q_)()]},{path:"settings",component:is,canActivate:[(0,Is.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"app"},{path:"app",component:Qa,canActivate:[(0,Is.q_)()]},{path:"auth",component:ya,canActivate:[(0,Is.q_)()]},{path:"bconfig",component:Jl,canActivate:[(0,Is.q_)()]}]},{path:"config",component:m4,canActivate:[(0,Is.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"nodesettings"},{path:"nodesettings",component:e1,canActivate:[(0,Is.q_)()]},{path:"pglayout",component:L2,canActivate:[(0,Is.q_)()]},{path:"services",component:nh,canActivate:[(0,Is.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",component:Cs,canActivate:[(0,Is.q_)()]},{path:"boltz",component:F2,canActivate:[(0,Is.q_)()]},{path:"noservice",component:R4}]},{path:"experimental",component:ym,canActivate:[(0,Is.q_)()]},{path:"lnconfig",component:md,canActivate:[(0,Is.q_)()]}]},{path:"services",component:g4,canActivate:[(0,Is.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",pathMatch:"full",redirectTo:"loop/loopout"},{path:"loop/:selTab",component:uh},{path:"boltz",pathMatch:"full",redirectTo:"boltz/swapout"},{path:"boltz/:selTab",component:jh}]},{path:"help",component:Xh},{path:"login",component:T4},{path:"error",component:D4},{path:"**",component:pu.X}],P4=Wo.iI.forRoot(O4,{onSameUrlNavigation:"reload",scrollPositionRestoration:"enabled"});var F4=l(19029),xu=l(9881),N4=l(34330),B4=l(9183),A1=l(90882),ad=l(55911),Oc=l(72279),Yo=l(47358);const Io={LNDChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:Mn.xiI,link:"/lnd/home",userPersona:ot.HW.ALL,children:[]},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:Mn.CQO,link:"/lnd/onchain",userPersona:ot.HW.ALL,children:[]},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:Mn.zm_,link:"/lnd/connections",userPersona:ot.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:Mn.gdJ,link:"/lnd/connections",userPersona:ot.HW.ALL,children:[]},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:Mn._qq,link:"/lnd/transactions",userPersona:ot.HW.ALL,children:[]},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:Mn.knH,link:"/lnd/routing",userPersona:ot.HW.ALL,children:[]},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:Mn.$Fj,link:"/lnd/reports",userPersona:ot.HW.ALL,children:[]},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:Mn.MjD,link:"/lnd/graph",userPersona:ot.HW.ALL,children:[]},{id:36,parentId:3,name:"Sign/Verify",iconType:"FA",icon:Mn.pCJ,link:"/lnd/messages",userPersona:ot.HW.ALL,children:[]},{id:37,parentId:3,name:"Backup",iconType:"FA",icon:Mn.cbP,link:"/lnd/channelbackup",userPersona:ot.HW.ALL,children:[]},{id:38,parentId:3,name:"Network",iconType:"FA",icon:Mn.qFF,link:"/lnd/network",userPersona:ot.HW.OPERATOR,children:[]},{id:39,parentId:3,name:"Node/Network",iconType:"FA",icon:Mn.D6w,link:"/lnd/network",userPersona:ot.HW.MERCHANT,children:[]}]},{id:4,parentId:0,name:"Services",iconType:"FA",icon:Mn.qIE,link:"/services/loop",userPersona:ot.HW.ALL,children:[{id:41,parentId:4,name:"Loop",iconType:"FA",icon:Mn.C8j,link:"/services/loop",userPersona:ot.HW.ALL,children:[]},{id:42,parentId:4,name:"Boltz",iconType:"SVG",icon:"boltzIconBlock",link:"/services/boltz",userPersona:ot.HW.ALL,children:[]}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:Mn.nsx,link:"/config",userPersona:ot.HW.ALL,children:[]},{id:6,parentId:0,name:"Help",iconType:"FA",icon:Mn.EvL,link:"/help",userPersona:ot.HW.ALL,children:[]}],CLNChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:Mn.xiI,link:"/cln/home",userPersona:ot.HW.ALL,children:[]},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:Mn.CQO,link:"/cln/onchain",userPersona:ot.HW.ALL,children:[]},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:Mn.zm_,link:"/cln/connections",userPersona:ot.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:Mn.gdJ,link:"/cln/connections",userPersona:ot.HW.ALL,children:[]},{id:32,parentId:3,name:"Liquidity Ads",iconType:"FA",icon:Mn.e4L,link:"/cln/liquidityads",userPersona:ot.HW.ALL,children:[]},{id:33,parentId:3,name:"Transactions",iconType:"FA",icon:Mn._qq,link:"/cln/transactions",userPersona:ot.HW.ALL,children:[]},{id:34,parentId:3,name:"Routing",iconType:"FA",icon:Mn.knH,link:"/cln/routing",userPersona:ot.HW.ALL,children:[]},{id:35,parentId:3,name:"Reports",iconType:"FA",icon:Mn.$Fj,link:"/cln/reports",userPersona:ot.HW.ALL,children:[]},{id:36,parentId:3,name:"Graph Lookup",iconType:"FA",icon:Mn.MjD,link:"/cln/graph",userPersona:ot.HW.ALL,children:[]},{id:37,parentId:3,name:"Sign/Verify",iconType:"FA",icon:Mn.pCJ,link:"/cln/messages",userPersona:ot.HW.ALL,children:[]},{id:38,parentId:3,name:"Fee Rates",iconType:"FA",icon:Mn.WKo,link:"/cln/rates",userPersona:ot.HW.OPERATOR,children:[]},{id:39,parentId:3,name:"Node/Fee Rates",iconType:"FA",icon:Mn.D6w,link:"/cln/rates",userPersona:ot.HW.MERCHANT,children:[]}]},{id:4,parentId:0,name:"Services",iconType:"FA",icon:Mn.qIE,link:"/services/loop",userPersona:ot.HW.ALL,children:[{id:42,parentId:4,name:"Boltz",iconType:"SVG",icon:"boltzIconBlock",link:"/services/boltz",userPersona:ot.HW.ALL,children:[]}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:Mn.nsx,link:"/config",userPersona:ot.HW.ALL,children:[]},{id:6,parentId:0,name:"Help",iconType:"FA",icon:Mn.EvL,link:"/help",userPersona:ot.HW.ALL,children:[]}],ECLChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:Mn.xiI,link:"/ecl/home",userPersona:ot.HW.ALL,children:[]},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:Mn.CQO,link:"/ecl/onchain",userPersona:ot.HW.ALL,children:[]},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:Mn.zm_,link:"/ecl/connections",userPersona:ot.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:Mn.gdJ,link:"/ecl/connections",userPersona:ot.HW.ALL,children:[]},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:Mn._qq,link:"/ecl/transactions",userPersona:ot.HW.ALL,children:[]},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:Mn.knH,link:"/ecl/routing",userPersona:ot.HW.ALL,children:[]},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:Mn.$Fj,link:"/ecl/reports",userPersona:ot.HW.ALL,children:[]},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:Mn.MjD,link:"/ecl/graph",userPersona:ot.HW.ALL,children:[]}]},{id:4,parentId:0,name:"Node Config",iconType:"FA",icon:Mn.nsx,link:"/config",userPersona:ot.HW.ALL,children:[]},{id:5,parentId:0,name:"Help",iconType:"FA",icon:Mn.EvL,link:"/help",userPersona:ot.HW.ALL,children:[]}]};function z0(z,F){if(1&z&&(e.j41(0,"mat-option",12),e.EFF(1),e.k0s()),2&z){const L=F.$implicit;e.Y8G("value",L.index),e.R7$(),e.Lme(" ",L.lnNode," (",L.lnImplementation,") ")}}function ef(z,F){if(1&z){const L=e.RV6();e.j41(0,"mat-select",10),e.bIt("selectionChange",function(Y){p.eBV(L);const ie=e.XpG();return p.Njj(ie.onNodeSelectionChange(Y.value))}),e.j41(1,"perfect-scrollbar"),e.DNE(2,z0,2,3,"mat-option",11),e.k0s()()}if(2&z){const L=e.XpG();e.Y8G("value",L.selConfigNodeIndex),e.R7$(2),e.Y8G("ngForOf",L.appConfig.nodes)}}function tf(z,F){if(1&z&&(e.j41(0,"span",21),e.eu8(1,22),e.k0s()),2&z){const L=e.XpG().$implicit;e.XpG(2);const H=e.sdS(11);e.R7$(),e.Y8G("ngTemplateOutlet","boltzIconBlock"===L.icon?H:null)}}function nf(z,F){if(1&z&&e.nrm(0,"fa-icon",23),2&z){const L=e.XpG().$implicit;e.Y8G("icon",L.icon)}}function af(z,F){if(1&z&&(e.j41(0,"mat-icon",24),e.EFF(1),e.k0s()),2&z){const L=e.XpG().$implicit;e.R7$(),e.JRh(L.icon)}}function rf(z,F){if(1&z){const L=e.RV6();e.j41(0,"mat-tree-node",15)(1,"div",16),e.bIt("click",function(){const Y=p.eBV(L).$implicit,ie=e.XpG(2);return p.Njj(ie.onChildNavClicked(Y))}),e.j41(2,"div",17),e.DNE(3,tf,2,1,"span",18)(4,nf,1,1,"fa-icon",19)(5,af,2,1,"mat-icon",20),e.j41(6,"span"),e.EFF(7),e.k0s()()()()}if(2&z){const L=F.$implicit;e.Y8G("routerLink",e.mNQ(L.link)),e.R7$(3),e.Y8G("ngIf","SVG"===L.iconType),e.R7$(),e.Y8G("ngIf","FA"===L.iconType),e.R7$(),e.Y8G("ngIf",!L.iconType),e.R7$(2),e.JRh(L.name)}}function Od(z,F){if(1&z&&(e.j41(0,"span",32),e.eu8(1,22),e.k0s()),2&z){const L=e.XpG().$implicit;e.R7$(),e.Y8G("ngTemplateOutlet",L.icon)}}function Mu(z,F){if(1&z&&e.nrm(0,"fa-icon",23),2&z){const L=e.XpG().$implicit;e.Y8G("icon",L.icon)}}function Eu(z,F){if(1&z&&(e.j41(0,"mat-icon",24),e.EFF(1),e.k0s()),2&z){const L=e.XpG().$implicit;e.R7$(),e.JRh(L.icon)}}function Pd(z,F){if(1&z&&(e.j41(0,"mat-nested-tree-node",25)(1,"div",26)(2,"div",27),e.DNE(3,Od,2,1,"span",28)(4,Mu,1,1,"fa-icon",19)(5,Eu,2,1,"mat-icon",20),e.j41(6,"span"),e.EFF(7),e.k0s()(),e.j41(8,"button",29)(9,"mat-icon"),e.EFF(10),e.k0s()()(),e.j41(11,"div",30),e.eu8(12,31),e.k0s()()),2&z){const L=F.$implicit,H=e.XpG(2);e.R7$(3),e.Y8G("ngIf","SVG"===L.iconType),e.R7$(),e.Y8G("ngIf","FA"===L.iconType),e.R7$(),e.Y8G("ngIf",!L.iconType),e.R7$(2),e.JRh(L.name),e.R7$(),e.BMQ("aria-label","toggle "+L.name),e.R7$(2),e.JRh(H.treeControlNested.isExpanded(L)?"arrow_drop_up":"arrow_drop_down"),e.R7$(),e.AVh("tree-children-invisible",!H.treeControlNested.isExpanded(L))}}function L1(z,F){if(1&z&&(e.j41(0,"mat-tree",7,1),e.DNE(2,rf,8,6,"mat-tree-node",13)(3,Pd,13,8,"mat-nested-tree-node",14),e.k0s()),2&z){const L=e.XpG();e.Y8G("dataSource",L.navMenus)("treeControl",L.treeControlNested),e.R7$(3),e.Y8G("matTreeNodeDefWhen",L.hasChild)}}function sf(z,F){if(1&z&&(e.j41(0,"span",37),e.eu8(1,22),e.k0s()),2&z){const L=e.XpG().$implicit;e.R7$(),e.Y8G("ngTemplateOutlet",L.icon)}}function U4(z,F){if(1&z&&e.nrm(0,"fa-icon",38),2&z){const L=e.XpG().$implicit;e.Y8G("matTooltip",e.mNQ(L.name))("icon",L.icon)}}function V4(z,F){if(1&z&&(e.j41(0,"mat-icon",39),e.EFF(1),e.k0s()),2&z){const L=e.XpG().$implicit;e.Y8G("matTooltip",e.mNQ(L.name)),e.R7$(),e.JRh(L.icon)}}function U0(z,F){if(1&z){const L=e.RV6();e.j41(0,"mat-tree-node",33),e.bIt("click",function(){const Y=p.eBV(L).$implicit,ie=e.XpG();return p.Njj(ie.onShowData(Y))}),e.DNE(1,sf,2,1,"span",34)(2,U4,1,3,"fa-icon",35)(3,V4,2,3,"mat-icon",36),e.j41(4,"span"),e.EFF(5),e.k0s()()}if(2&z){const L=F.$implicit;e.R7$(),e.Y8G("ngIf","SVG"===L.iconType),e.R7$(),e.Y8G("ngIf","FA"===L.iconType),e.R7$(),e.Y8G("ngIf",!L.iconType),e.R7$(2),e.JRh(L.name)}}function lf(z,F){if(1&z&&(e.j41(0,"span",32),e.eu8(1,22),e.k0s()),2&z){const L=e.XpG().$implicit;e.R7$(),e.Y8G("ngTemplateOutlet",L.icon)}}function H4(z,F){if(1&z&&e.nrm(0,"fa-icon",38),2&z){const L=e.XpG().$implicit;e.Y8G("matTooltip",e.mNQ(L.name))("icon",L.icon)}}function G4(z,F){if(1&z){const L=e.RV6();e.j41(0,"mat-tree-node",33),e.bIt("click",function(){const Y=p.eBV(L).$implicit,ie=e.XpG(2);return p.Njj(ie.onClick(Y))}),e.DNE(1,lf,2,1,"span",28)(2,H4,1,3,"fa-icon",35),e.j41(3,"span"),e.EFF(4),e.k0s()()}if(2&z){const L=F.$implicit;e.R7$(),e.Y8G("ngIf","SVG"===L.iconType),e.R7$(),e.Y8G("ngIf","FA"===L.iconType),e.R7$(2),e.JRh(L.name)}}function I1(z,F){if(1&z&&(e.j41(0,"mat-tree",7),e.DNE(1,G4,5,3,"mat-tree-node",8),e.k0s()),2&z){const L=e.XpG();e.Y8G("dataSource",L.navMenusLogout)("treeControl",L.treeControlLogout)}}function j4(z,F){1&z&&(p.qSk(),e.j41(0,"svg",40)(1,"g",41)(2,"g",42),e.nrm(3,"circle",43)(4,"path",44)(5,"path",45),e.k0s()()())}let wu=(()=>{var z;class F{constructor(H,Y,ie,et,Bt,$t){this.logger=H,this.commonService=Y,this.sessionService=ie,this.store=et,this.actions=Bt,this.rtlEffects=$t,this.ChildNavClicked=new e.bkB,this.faEject=Mn.njF,this.faEye=Mn.pS3,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.logoutNode=[{id:200,parentId:0,name:"Logout",iconType:"FA",icon:Mn.njF,children:[]}],this.showDataNodes=[{id:1e3,parentId:0,name:"Public Key",iconType:"FA",icon:Mn.pS3,children:[]}],this.showLogout=!1,this.numPendingChannels=0,this.smallScreen=!1,this.childRootRoute="",this.userPersonaEnum=ot.HW,this.unSubs=[new hn.B,new hn.B,new hn.B,new hn.B,new hn.B,new hn.B],this.treeControlNested=new Oc.XO(Ei=>Ei.children),this.treeControlLogout=new Oc.XO(Ei=>Ei.children),this.treeControlShowData=new Oc.XO(Ei=>Ei.children),this.navMenus=new Yo.Zh,this.navMenusLogout=new Yo.Zh,this.navMenusShowData=new Yo.Zh,this.hasChild=(Ei,zi)=>!!zi.children&&zi.children.length>0,this.version=ot.xv,Io.LNDChildren&&200===Io.LNDChildren[Io.LNDChildren.length-1].id&&Io.LNDChildren.pop(),this.navMenus.data=Io.LNDChildren||[],this.navMenusLogout.data=this.logoutNode,this.navMenusShowData.data=this.showDataNodes}ngOnInit(){const H=this.sessionService.getItem("token");this.showLogout=!!H,this.flgLoading=!!H,this.store.select(Va.qv).pipe((0,wn.Q)(this.unSubs[0])).subscribe(Y=>{this.appConfig=Y}),this.store.select(Va.Az).pipe((0,wn.Q)(this.unSubs[1])).subscribe(Y=>{if(this.information=Y.nodeDate,this.information.identity_pubkey){if(this.information.chains&&"string"==typeof this.information.chains[0])this.informationChain.chain=this.information.chains[0].toString(),this.informationChain.network=this.information.testnet?"Testnet":"Mainnet";else if(this.information&&this.information.chains&&this.information.chains.length&&this.information.chains.length>0&&"object"==typeof this.information.chains[0]&&this.information.chains[0].hasOwnProperty("chain")){const ie=this.information.chains[0];this.informationChain.chain=ie.chain,this.informationChain.network=ie.network}}else this.informationChain.chain="",this.informationChain.network="";this.flgLoading=!this.information.identity_pubkey,window.innerWidth<=414&&(this.smallScreen=!0),this.selNode=Y.selNode,this.selConfigNodeIndex=+(Y.selNode?.index||0),this.selNode&&this.selNode.lnImplementation&&this.filterSideMenuNodes(),this.logger.info(Y)}),this.sessionService.watchSession().pipe((0,wn.Q)(this.unSubs[2])).subscribe(Y=>{this.showLogout=!!Y.token,this.flgLoading=!!Y.token}),this.actions.pipe((0,wn.Q)(this.unSubs[3]),(0,cr.p)(Y=>Y.type===ot.aU.LOGOUT)).subscribe(Y=>{this.showLogout=!1})}onClick(H){"Logout"===H.name&&(this.store.dispatch((0,Nn.I1)({payload:{data:{type:ot.A$.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,wn.Q)(this.unSubs[4])).subscribe(Y=>{Y&&(this.showLogout=!1,this.store.dispatch((0,Nn.ri)({payload:""})))})),this.ChildNavClicked.emit(H)}onChildNavClicked(H){this.ChildNavClicked.emit(H)}filterSideMenuNodes(){switch(this.selNode?.lnImplementation?.toUpperCase()){case"CLN":this.loadCLNMenu();break;case"ECL":this.loadECLMenu();break;default:this.loadLNDMenu()}}loadLNDMenu(){const H=JSON.parse(JSON.stringify(Io.LNDChildren));this.navMenus.data=H?.filter(Y=>Y.children&&Y.children.length?(Y.children=Y.children?.filter(ie=>(ie.userPersona===ot.HW.ALL||ie.userPersona===this.selNode.settings.userPersona)&&"/services/loop"!==ie.link&&"/services/boltz"!==ie.link||"/services/loop"===ie.link&&this.selNode.settings.swapServerUrl&&""!==this.selNode.settings.swapServerUrl.trim()||"/services/boltz"===ie.link&&this.selNode.settings.boltzServerUrl&&""!==this.selNode.settings.boltzServerUrl.trim()),Y.children.length>0):Y.userPersona===ot.HW.ALL||Y.userPersona===this.selNode.settings.userPersona)}loadCLNMenu(){const H=JSON.parse(JSON.stringify(Io.CLNChildren));this.navMenus.data=H?.filter(Y=>Y.children&&Y.children.length?(Y.children=Y.children?.filter(ie=>(ie.userPersona===ot.HW.ALL||ie.userPersona===this.selNode.settings.userPersona)&&(!ie.link.includes("/services")||"/services/peerswap"===ie.link&&this.selNode.settings.enablePeerswap||"/services/boltz"===ie.link&&this.selNode.settings.boltzServerUrl&&""!==this.selNode.settings.boltzServerUrl.trim())),Y.children.length>0):Y.userPersona===ot.HW.ALL||Y.userPersona===this.selNode.settings.userPersona)}loadECLMenu(){this.navMenus.data=JSON.parse(JSON.stringify(Io.ECLChildren))}onShowData(H){this.store.dispatch((0,Nn.OP)()),this.ChildNavClicked.emit("showData")}onNodeSelectionChange(H){const Y=this.selConfigNodeIndex;this.selConfigNodeIndex=H;const ie=this.appConfig.nodes.find(et=>+et.index===H);this.store.dispatch((0,Nn.Qi)({payload:{uiMessage:ot.MZ.UPDATE_SELECTED_NODE,prevLnNodeIndex:+Y,currentLnNode:ie||null,isInitialSetup:!1}})),this.ChildNavClicked.emit("selectNode")}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(null),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(ir.gP),e.rXU(qs.h),e.rXU(Ti.Q),e.rXU(qi.il),e.rXU(Fo.En),e.rXU(ms.H))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-side-navigation"]],viewQuery:function(Y,ie){if(1&Y&&e.GBs(Yo.lQ,5),2&Y){let et;e.mGM(et=e.lsd())&&(ie.tree=et.first)}},outputs:{ChildNavClicked:"ChildNavClicked"},standalone:!1,decls:12,vars:5,consts:[["boltzIconBlock",""],["tree",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","90","fxLayoutAlign","start stretch",1,"w-100"],["class","m-2 multi-node-select",3,"value","selectionChange",4,"ngIf"],[1,"w-100"],[3,"dataSource","treeControl",4,"ngIf"],[3,"dataSource","treeControl"],[3,"click",4,"matTreeNodeDef"],["fxLayout","column","fxLayoutAlign","end stretch",1,"w-100"],[1,"m-2","multi-node-select",3,"selectionChange","value"],["tabindex","1",3,"value",4,"ngFor","ngForOf"],["tabindex","1",3,"value"],["routerLinkActive","active-link","matTreeNodeToggle","",3,"routerLink",4,"matTreeNodeDef"],["fxLayout","column","matTreeNodeToggle","",4,"matTreeNodeDef","matTreeNodeDefWhen"],["routerLinkActive","active-link","matTreeNodeToggle","",3,"routerLink"],["tabindex","2",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["class","fa-icon-small mr-2","fxLayout","row","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["class","fa-icon-small mr-2",3,"icon",4,"ngIf"],["class","mat-icon-36",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"fa-icon-small","mr-2"],[3,"ngTemplateOutlet"],[1,"fa-icon-small","mr-2",3,"icon"],[1,"mat-icon-36"],["fxLayout","column","matTreeNodeToggle",""],["fxLayout","row","fxLayoutAlign","start center",1,"mat-nested-tree-node-parent"],["fxFlex","80","fxLayoutAlign","start center"],["class","mr-2",4,"ngIf"],["fxFlex","20","mat-icon-button","","fxLayoutAlign","end center",1,"btn-icon-small"],[1,"mat-nested-tree-node-child"],["matTreeNodeOutlet",""],[1,"mr-2"],[3,"click"],["class","fa-icon-small mr-2",4,"ngIf"],["class","fa-icon-small mr-2","matTooltipPosition","right",3,"matTooltip","icon",4,"ngIf"],["class","mat-icon-36","matTooltipPosition","right",3,"matTooltip",4,"ngIf"],[1,"fa-icon-small","mr-2"],["matTooltipPosition","right",1,"fa-icon-small","mr-2",3,"matTooltip","icon"],["matTooltipPosition","right",1,"mat-icon-36",3,"matTooltip"],["viewBox","0 0 78 78","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Logo","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Oval","cx","39","cy","39","r","37.5",1,"boltz-icon"],["d","M36.4583326,43.7755404 L40.53965,35.2316544 L39.4324865,35.2316544 L46.0754873,17.6071752 C46.292579,17.0204094 46.3287609,16.5159331 46.1840331,16.0937464 C46.0393053,15.671561 45.7860319,15.3674444 45.4242131,15.1813966 C45.0623942,14.9953487 44.6535376,14.9524146 44.1976433,15.0525945 C43.7417511,15.1527743 43.3256596,15.4461573 42.9493689,15.9327433 L22.6078557,40.7701025 C22.2026186,41.2710003 22,41.7575877 22,42.2298646 C22,42.6735173 22.1592003,43.0420366 22.477601,43.3354226 C22.7960017,43.6288058 23.1940025,43.7755404 23.6716036,43.7755404 L36.4583326,43.7755404 Z","id","Path",1,"boltz-icon-fill"],["d","M44.4883879,63.7755404 L48.8604707,55.165009 L47.6744296,55.165009 L54.7906978,37.4030526 C55.0232558,36.8117097 55.0620155,36.3032983 54.9069768,35.8778185 C54.7519381,35.4523399 54.4806208,35.1458511 54.0930248,34.958352 C53.7054289,34.7708528 53.2674441,34.7275839 52.7790706,34.8285452 C52.2906992,34.9295065 51.8449641,35.2251779 51.4418653,35.7155595 L29.6511611,60.746659 C29.2170537,61.251464 29,61.7418469 29,62.2178078 C29,62.6649211 29.1705423,63.036315 29.5116268,63.3319895 C29.8527113,63.6276613 30.2790669,63.7755404 30.7906936,63.7755404 L44.4883879,63.7755404 Z","id","Path-Copy","transform","translate(42.000000, 49.275540) rotate(-180.000000) translate(-42.000000, -49.275540) ",1,"boltz-icon-fill"]],template:function(Y,ie){1&Y&&(e.j41(0,"div",2)(1,"div",3),e.DNE(2,ef,3,2,"mat-select",4),e.nrm(3,"mat-divider",5),e.DNE(4,L1,4,3,"mat-tree",6),e.nrm(5,"mat-divider",5),e.j41(6,"mat-tree",7),e.DNE(7,U0,6,4,"mat-tree-node",8),e.k0s()(),e.j41(8,"div",9),e.DNE(9,I1,2,2,"mat-tree",6),e.k0s()(),e.DNE(10,j4,6,0,"ng-template",null,0,e.C5r)),2&Y&&(e.R7$(2),e.Y8G("ngIf",ie.appConfig.nodes.length>1),e.R7$(2),e.Y8G("ngIf",null==ie.selNode.settings?null:ie.selNode.settings.lnServerUrl),e.R7$(2),e.Y8G("dataSource",ie.navMenusShowData)("treeControl",ie.treeControlShowData),e.R7$(3),e.Y8G("ngIf",ie.showLogout))},dependencies:[c.Sq,c.bT,c.T3,Tr.aY,vd.iY,tc.An,Ni.q,Yo.q1,Yo.yI,Yo.pO,Yo.lQ,Yo.d6,Yo.wx,bn.DJ,bn.sA,bn.UI,De.VO,pt.wT,Xc.oV,Wo.Wk,Wo.wQ,Yt.ZF,Yt.Ld],styles:[".tree-children-invisible[_ngcontent-%COMP%]{display:none}"]}))}return z(),F})();var V0=l(59115);function Su(z,F){if(1&z&&(e.j41(0,"p",14),e.nrm(1,"fa-icon",3),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&z){const L=e.XpG();e.R7$(),e.Y8G("icon",L.faCode),e.R7$(2),e.SpI("API Version: ",null==L.information?null:L.information.api_version)}}function cf(z,F){if(1&z&&(e.j41(0,"p",15),e.nrm(1,"fa-icon",3),e.j41(2,"span",16),e.EFF(3,"Settings"),e.k0s()()),2&z){const L=e.XpG();e.R7$(),e.Y8G("icon",L.faUserCog)}}function df(z,F){if(1&z&&(e.j41(0,"p",17),e.nrm(1,"fa-icon",3),e.j41(2,"span",18),e.EFF(3,"Help"),e.k0s()()),2&z){const L=e.XpG();e.R7$(),e.Y8G("icon",L.faQuestion)}}function uf(z,F){if(1&z){const L=e.RV6();e.j41(0,"p",19),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.onClick())}),e.nrm(1,"fa-icon",3),e.j41(2,"span"),e.EFF(3,"Logout"),e.k0s()()}if(2&z){const L=e.XpG();e.R7$(),e.Y8G("icon",L.faEject)}}let hf=(()=>{var z;class F{constructor(H,Y,ie,et,Bt){this.logger=H,this.sessionService=Y,this.store=ie,this.rtlEffects=et,this.actions=Bt,this.faUserCog=Mn.McB,this.faCodeBranch=Mn.Xbc,this.faCode=Mn.jTw,this.faCog=Mn.dB,this.faQuestion=Mn.EvL,this.faEject=Mn.njF,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.showLogout=!1,this.unSubs=[new hn.B,new hn.B,new hn.B,new hn.B],this.version=ot.xv}ngOnInit(){this.store.select(Va.N).pipe((0,wn.Q)(this.unSubs[0])).subscribe(H=>{if(this.information=H,this.flgLoading=!this.information.identity_pubkey,this.information.identity_pubkey){if(this.information.chains&&"string"==typeof this.information.chains[0])this.informationChain.chain=this.information.chains[0].toString(),this.informationChain.network=this.information.testnet?"Testnet":"Mainnet";else if(this.information&&this.information.chains&&this.information.chains.length&&this.information.chains.length>0&&"object"==typeof this.information.chains[0]&&this.information.chains[0].hasOwnProperty("chain")){const Y=this.information.chains[0];this.informationChain.chain=Y.chain,this.informationChain.network=Y.network}}else this.informationChain.chain="",this.informationChain.network="";this.logger.info(H)}),this.sessionService.watchSession().pipe((0,wn.Q)(this.unSubs[1])).subscribe(H=>{this.showLogout=!!H.token,this.flgLoading=!!H.token}),this.actions.pipe((0,wn.Q)(this.unSubs[2]),(0,cr.p)(H=>H.type===ot.aU.LOGOUT)).subscribe(()=>{this.showLogout=!1})}onClick(){this.store.dispatch((0,Nn.I1)({payload:{data:{type:ot.A$.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,wn.Q)(this.unSubs[3])).subscribe(H=>{H&&(this.showLogout=!1,this.store.dispatch((0,Nn.ri)({payload:""})))})}onDonate(){window.open("https://www.ridethelightning.info/donate/","_blank")}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(null),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(ir.gP),e.rXU(Ti.Q),e.rXU(qi.il),e.rXU(ms.H),e.rXU(Fo.En))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-top-menu"]],standalone:!1,decls:20,vars:8,consts:[["topMenu","matMenu"],[1,"top-menu",3,"overlapTrigger"],["tabindex","1","mat-menu-item","",1,"cursor-default"],[1,"fa-icon-small","mr-1",3,"icon"],["tabindex","2","mat-menu-item","","class","cursor-default",4,"ngIf"],["tabindex","3","mat-menu-item","","routerLink","/settings",4,"ngIf"],["tabindex","4","mat-menu-item","","routerLink","/help",4,"ngIf"],["mat-menu-item","","tabindex","5","fxLayoutAlign","start center",3,"click"],["fill","currentColor","version","1.1","viewBox","0 0 64 64",0,"xml","space","preserve","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",1,"svg-donation"],["d","M62.519,17.698l-12-14c-0.659-0.768-1.786-0.923-2.628-0.362l-8.712,5.808l-16.688,4.172 c-2.485,0.622-4.537,2.412-5.487,4.791L12.21,30.09C10.206,32.512,9,35.618,9,39c0,2.974,0.939,5.73,2.527,8H5 c-2.206,0-4,1.794-4,4v6c0,2.206,1.794,4,4,4h36c2.206,0,4-1.794,4-4v-6c0-2.206-1.794-4-4-4h-6.522 c0.375-0.535,0.713-1.1,1.013-1.691l4.291-2.452l3.378-0.965c2.619-0.749,4.903-2.269,6.604-4.395 c1.39-1.736,2.317-3.813,2.682-6.006l0.412-2.472l9.48-8.532C63.145,19.76,63.225,18.523,62.519,17.698z M34.428,30.929 c-1.487-2.094-3.517-3.732-5.842-4.75L29.207,25h7.058l0.588,4.11L34.428,30.929z M31.225,33.331l-0.373,0.28 c-1.772,1.329-2.889,3.273-3.146,5.473c-0.257,2.2,0.382,4.348,1.8,6.048l0.667,0.8C28.315,47.845,25.742,49,23,49 c-5.514,0-10-4.486-10-10s4.486-10,10-10C26.299,29,29.376,30.663,31.225,33.331z M41,57H5v-6h10.826c2.101,1.261,4.55,2,7.174,2 c2.571,0,5.041-0.723,7.176-2H41V57z M49.662,26.513c-0.336,0.303-0.561,0.711-0.635,1.158L48.5,30.833 c-0.253,1.521-0.896,2.96-1.86,4.165c-1.18,1.475-2.763,2.529-4.579,3.048l-3.61,1.031c-0.155,0.044-0.303,0.106-0.443,0.187 l-5.541,3.166c-0.63-0.826-0.909-1.843-0.788-2.882c0.128-1.1,0.687-2.072,1.573-2.737l6.001-4.5 c1.169-0.877,1.767-2.32,1.56-3.766l-0.587-4.11C39.946,22.477,38.244,21,36.266,21h-7.059c-1.489,0-2.845,0.818-3.539,2.136 l-1.037,1.969C24.093,25.041,23.549,25,23,25c-1.685,0-3.294,0.314-4.791,0.862l2.509-6.271c0.476-1.189,1.501-2.084,2.743-2.395 l17.024-4.256c0.223-0.056,0.434-0.149,0.625-0.276l7.525-5.017l9.576,11.172L49.662,26.513z"],["tabindex","6","mat-menu-item","",3,"click",4,"ngIf"],["tabindex","7","mat-icon-button","",3,"matMenuTriggerFor"],["alt","RTL Logo","src","assets/images/RTL-Horse-BY.svg",1,"rtl-log-top"],[1,"rtl-logo-dropdown","color-white"],["tabindex","2","mat-menu-item","",1,"cursor-default"],["tabindex","3","mat-menu-item","","routerLink","/settings"],["routerLink","/settings"],["tabindex","4","mat-menu-item","","routerLink","/help"],["routerLink","/help"],["tabindex","6","mat-menu-item","",3,"click"]],template:function(Y,ie){if(1&Y){const et=e.RV6();e.j41(0,"mat-menu",1,0)(2,"p",2),e.nrm(3,"fa-icon",3),e.j41(4,"span"),e.EFF(5),e.k0s()(),e.DNE(6,Su,4,2,"p",4)(7,cf,4,1,"p",5)(8,df,4,1,"p",6),e.j41(9,"p",7),e.bIt("click",function(){return p.eBV(et),p.Njj(ie.onDonate())}),p.qSk(),e.j41(10,"svg",8)(11,"g"),e.nrm(12,"path",9),e.k0s()(),p.joV(),e.j41(13,"span"),e.EFF(14,"Donate"),e.k0s()(),e.DNE(15,uf,4,1,"p",10),e.k0s(),e.j41(16,"button",11),e.nrm(17,"img",12),e.j41(18,"mat-icon",13),e.EFF(19,"arrow_drop_down"),e.k0s()()}if(2&Y){const et=e.sdS(1);e.Y8G("overlapTrigger",!1),e.R7$(3),e.Y8G("icon",ie.faCodeBranch),e.R7$(2),e.SpI("Version: ",ie.version),e.R7$(),e.Y8G("ngIf",null==ie.information?null:ie.information.api_version),e.R7$(),e.Y8G("ngIf",ie.showLogout),e.R7$(),e.Y8G("ngIf",ie.showLogout),e.R7$(7),e.Y8G("ngIf",ie.showLogout),e.R7$(),e.Y8G("matMenuTriggerFor",et)}},dependencies:[c.bT,Tr.aY,vd.iY,tc.An,V0.kk,V0.fb,V0.Cp,bn.sA,Wo.Wk],styles:[".mat-mdc-icon-button img.rtl-log-top{width:2rem;height:2rem}.mat-icon.material-icons.mat-icon-no-color.rtl-logo-dropdown{height:2rem}\n"],encapsulation:2}))}return z(),F})();const k1=["sideNavigation"],Tu=["sideNavContent"],W4=(z,F)=>[z,F];function ff(z,F){if(1&z){const L=e.RV6();e.j41(0,"button",15),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.sideNavToggle())}),e.j41(1,"mat-icon",16),e.EFF(2,"menu"),e.k0s()()}if(2&z){const L=e.XpG();e.Y8G("matTooltip",L.flgSideNavOpened?"Hide Navigation Menu":"Show Navigation Menu")("matTooltipDisabled",L.smallScreen)}}function R1(z,F){1&z&&(p.qSk(),e.nrm(0,"path",21))}function Du(z,F){1&z&&(p.qSk(),e.nrm(0,"path",22))}function rd(z,F){if(1&z){const L=e.RV6();e.j41(0,"button",17),e.bIt("click",function(){p.eBV(L);const Y=e.XpG();return p.Njj(Y.flgSidenavPinned=!Y.flgSidenavPinned)}),p.qSk(),e.j41(1,"svg",18),e.DNE(2,R1,1,0,"path",19)(3,Du,1,0,"path",20),e.k0s()()}if(2&z){const L=e.XpG();e.Y8G("matTooltip",L.flgSidenavPinned?"Unpin Navigation Menu":"Pin Navigation Menu"),e.R7$(2),e.Y8G("ngIf",!L.flgSidenavPinned),e.R7$(),e.Y8G("ngIf",L.flgSidenavPinned)}}function H0(z,F){if(1&z&&(e.j41(0,"span",23),e.EFF(1),e.k0s()),2&z){const L=e.XpG();e.R7$(),e.JRh(L.information.alias?"RTL - "+L.information.alias:"RTL")}}function Au(z,F){if(1&z&&(e.j41(0,"span",24),e.EFF(1),e.k0s()),2&z){const L=e.XpG();e.R7$(),e.JRh(L.information.alias?"Ride The Lightning - "+L.information.alias:"Ride The Lightning")}}function Pc(z,F){1&z&&(e.j41(0,"div",25),e.nrm(1,"mat-spinner",26),e.j41(2,"h4"),e.EFF(3,"Loading RTL..."),e.k0s()())}let mf=(()=>{var z;class F{constructor(H,Y,ie,et,Bt,$t,Ei,zi,Vi){this.logger=H,this.commonService=Y,this.store=ie,this.actions=et,this.userIdle=Bt,this.router=$t,this.sessionService=Ei,this.breakpointObserver=zi,this.renderer=Vi,this.information={},this.flgLoading=[!0],this.flgSideNavOpened=!0,this.flgCopied=!1,this.accessKey="",this.xSmallScreen=!1,this.smallScreen=!1,this.flgSidenavPinned=!0,this.flgLoggedIn=!1,this.unSubs=[new hn.B,new hn.B,new hn.B,new hn.B,new hn.B,new hn.B,new hn.B,new hn.B]}ngOnInit(){this.router.events.subscribe(H=>{H instanceof Ja.wF&&document.getElementsByTagName("mat-sidenav-content")[0].scrollTo(0,0)}),this.breakpointObserver.observe([Sr.Rp.XSmall,Sr.Rp.TabletPortrait,Sr.Rp.Small,Sr.Rp.Medium,Sr.Rp.Large,Sr.Rp.XLarge]).pipe((0,wn.Q)(this.unSubs[0])).subscribe(H=>{H.breakpoints[Sr.Rp.XSmall]?(this.commonService.setScreenSize(ot.f7.XS),this.smallScreen=!0):H.breakpoints[Sr.Rp.TabletPortrait]?(this.commonService.setScreenSize(ot.f7.SM),this.smallScreen=!0):H.breakpoints[Sr.Rp.Small]||H.breakpoints[Sr.Rp.Medium]?(this.commonService.setScreenSize(ot.f7.MD),this.smallScreen=!1):H.breakpoints[Sr.Rp.Large]?(this.commonService.setScreenSize(ot.f7.LG),this.smallScreen=!1):(this.commonService.setScreenSize(ot.f7.XL),this.smallScreen=!1)}),this.store.dispatch((0,Nn.NU)()),this.accessKey=this.readAccessKey()||"",this.store.select(Va._c).pipe((0,wn.Q)(this.unSubs[1])).subscribe(H=>{this.sessionService.getItem("token")?(this.flgLoggedIn=!0,this.userIdle.startWatching()):(this.flgLoggedIn=!1,this.flgLoading[0]=!1),this.selNode=H}),this.store.select(Va.qv).pipe((0,wn.Q)(this.unSubs[2])).subscribe(H=>{this.appConfig=H}),this.store.select(Va.N).pipe((0,wn.Q)(this.unSubs[3])).subscribe(H=>{this.information=H,this.flgLoading[0]=!this.information.identity_pubkey,this.logger.info(this.information)}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1),this.actions.pipe((0,wn.Q)(this.unSubs[4]),(0,cr.p)(H=>H.type===ot.aU.SET_APPLICATION_SETTINGS||H.type===ot.aU.LOGIN||H.type===ot.aU.LOGOUT)).subscribe(H=>{H.type===ot.aU.SET_APPLICATION_SETTINGS&&(this.sessionService.getItem("token")||(+H.payload.SSO.rtlSSO?!this.accessKey||this.accessKey.trim().length<32?this.router.navigate(["./error"],{state:{errorCode:"406",errorMessage:"Access key too short. It should be at least 32 characters long."}}):this.store.dispatch((0,Nn.iD)({payload:{password:Ar(this.accessKey).toString(),defaultPassword:!1}})):this.router.navigate(["./login"],{state:{logoutReason:"Access key too short. It should be at least 32 characters long."}}))),H.type===ot.aU.LOGIN&&(this.flgLoggedIn=!0,this.userIdle.startWatching(),this.userIdle.resetTimer(),setTimeout(()=>{this.commonService.setContainerSize(this.sideNavContent.elementRef.nativeElement.clientWidth,this.sideNavContent.elementRef.nativeElement.clientHeight)},1e3)),H.type===ot.aU.LOGOUT&&(this.flgLoggedIn=!1,this.userIdle.stopWatching(),this.userIdle.stopTimer())}),this.userIdle.onTimerStart().pipe((0,wn.Q)(this.unSubs[5])).subscribe(H=>{this.logger.info("Counting Down: "+(11-H))}),this.userIdle.onTimeout().pipe((0,wn.Q)(this.unSubs[6])).subscribe(()=>{this.logger.info("Time Out!"),this.sessionService.getItem("token")&&(this.flgLoggedIn=!1,this.logger.warn("Time limit exceeded for session inactivity."),this.store.dispatch((0,Nn.Jh)()),this.store.dispatch((0,Nn.xO)({payload:{data:{type:ot.A$.WARNING,alertTitle:"Logging out",titleMessage:"Time limit exceeded for session inactivity."}}})),this.store.dispatch((0,Nn.ri)({payload:"Logging Out. Time limit exceeded for session inactivity."})))}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1)}readAccessKey(){const H=window.location.href;return H.includes("access-key=")?H.substring(H.lastIndexOf("access-key=")+11).trim():null}ngAfterViewInit(){(this.smallScreen||!this.flgLoggedIn)&&this.sideNavigation.close(),this.commonService.setContainerSize(this.sideNavContent.elementRef.nativeElement.clientWidth,this.sideNavContent.elementRef.nativeElement.clientHeight)}sideNavToggle(){this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.toggle()}onNavigationClicked(H){this.smallScreen&&(this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.close())}backdropClicked(){(!this.flgSidenavPinned||this.smallScreen)&&(this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.close())}copiedText(H){this.flgCopied=!0,setTimeout(()=>{this.flgCopied=!1},5e3),this.logger.info("Copied Text: "+H)}ngOnDestroy(){this.unSubs.forEach(H=>{H.next(),H.complete()})}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(e.rXU(ir.gP),e.rXU(qs.h),e.rXU(qi.il),e.rXU(Fo.En),e.rXU(gc),e.rXU(Ja.Ix),e.rXU(Ti.Q),e.rXU(N4.Q),e.rXU(e.sFG))},this.\u0275cmp=e.VBU({type:F,selectors:[["rtl-app"]],viewQuery:function(Y,ie){if(1&Y&&(e.GBs(k1,5),e.GBs(Tu,5)),2&Y){let et;e.mGM(et=e.lsd())&&(ie.sideNavigation=et.first),e.mGM(et=e.lsd())&&(ie.sideNavContent=et.first)}},standalone:!1,decls:22,vars:15,consts:[["sideNavigation",""],["sideNavContent",""],["outlet","outlet"],["fxLayout","column","id","rtl-container",1,"rtl-container","medium",3,"ngClass"],["fxLayout","row","fxLayoutAlign","space-between center",1,"bg-primary","rtl-top-toolbar"],["mat-icon-button","","matTooltipPosition","right",3,"matTooltip","matTooltipDisabled","click",4,"ngIf"],["mat-icon-button","","matTooltipPosition","right",3,"matTooltip","click",4,"ngIf"],["class","font-weight-500",4,"ngIf"],["class","font-size-120 font-weight-500",4,"ngIf"],[3,"backdropClick"],[1,"sidenav","mat-elevation-z6",3,"perfectScrollbar","opened","mode"],["fxFlex","100",3,"ChildNavClicked"],[3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["class","rtl-spinner",4,"ngIf"],["mat-icon-button","","matTooltipPosition","right",3,"click","matTooltip","matTooltipDisabled"],[1,"color-white"],["mat-icon-button","","matTooltipPosition","right",3,"click","matTooltip"],["width","20","height","20","viewBox","0 0 24 24",1,"icon-pinned"],["fill","currentColor","d","M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12Z",4,"ngIf"],["fill","currentColor","d","M2,5.27L3.28,4L20,20.72L18.73,22L12.8,16.07V22H11.2V16H6V14L8,12V11.27L2,5.27M16,12L18,14V16H17.82L8,6.18V4H7V2H17V4H16V12Z",4,"ngIf"],["fill","currentColor","d","M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12Z"],["fill","currentColor","d","M2,5.27L3.28,4L20,20.72L18.73,22L12.8,16.07V22H11.2V16H6V14L8,12V11.27L2,5.27M16,12L18,14V16H17.82L8,6.18V4H7V2H17V4H16V12Z"],[1,"font-weight-500"],[1,"font-size-120","font-weight-500"],[1,"rtl-spinner"],["color","accent"]],template:function(Y,ie){if(1&Y){const et=e.RV6();e.j41(0,"div",3),e.nI1(1,"lowercase"),e.nI1(2,"lowercase"),e.j41(3,"mat-toolbar",4)(4,"div"),e.DNE(5,ff,3,2,"button",5)(6,rd,4,3,"button",6),e.k0s(),e.j41(7,"div"),e.DNE(8,H0,2,1,"span",7)(9,Au,2,1,"span",8),e.k0s(),e.j41(10,"div"),e.nrm(11,"rtl-top-menu"),e.k0s()(),e.j41(12,"mat-sidenav-container",9),e.bIt("backdropClick",function(){return p.eBV(et),p.Njj(ie.backdropClicked())}),e.j41(13,"mat-sidenav",10,0)(15,"rtl-side-navigation",11),e.bIt("ChildNavClicked",function($t){return p.eBV(et),p.Njj(ie.onNavigationClicked($t))}),e.k0s()(),e.j41(16,"mat-sidenav-content",12,1)(18,"div",13),e.nrm(19,"router-outlet",null,2),e.k0s()()(),e.DNE(21,Pc,4,0,"div",14),e.k0s()}2&Y&&(e.Y8G("ngClass",e.l_i(12,W4,e.bMT(1,8,ie.selNode.settings.themeColor),e.bMT(2,10,ie.selNode.settings.themeMode))),e.R7$(5),e.Y8G("ngIf",ie.flgLoggedIn),e.R7$(),e.Y8G("ngIf",!ie.smallScreen&&ie.flgLoggedIn),e.R7$(2),e.Y8G("ngIf",ie.smallScreen),e.R7$(),e.Y8G("ngIf",!ie.smallScreen),e.R7$(4),e.Y8G("opened",ie.flgSideNavOpened&&ie.flgLoggedIn)("mode",ie.flgSidenavPinned&&!ie.smallScreen?"side":"over"),e.R7$(8),e.Y8G("ngIf",!ie.selNode.settings.themeColor))},dependencies:[c.YU,c.bT,vd.iY,tc.An,B4.LG,bn.DJ,bn.sA,bn.UI,Lo.PW,A1.LG,A1.US,A1.El,ad.KQ,Xc.oV,Yt.Ld,wu,hf,Ja.n3,c.GH],styles:[".inline-spinner[_ngcontent-%COMP%]{display:inline-flex!important;top:0!important}"],data:{animation:[xu.E]}}))}return z(),F})(),X4=(()=>{var z;class F{constructor(H){this.sessionService=H}intercept(H,Y){if(this.sessionService.getItem("token")){const ie=H.clone({headers:H.headers.set("Authorization","Bearer "+this.sessionService.getItem("token")),withCredentials:!0});return Y.handle(ie)}return Y.handle(H)}static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)(p.KVO(Ti.Q))},this.\u0275prov=p.jDH({token:F,factory:F.\u0275fac}))}return z(),F})();var K4=l(7879),Fc=l(69579),O1=l(283),G0=l(13017);const Nc={userPersona:ot.HW.OPERATOR,themeMode:"DAY",themeColor:"PURPLE",channelBackupPath:"",selCurrencyUnit:"USD",unannouncedChannels:!1,fiatConversion:!1,currencyUnits:["Sats","BTC","USD"],bitcoindConfigPath:"",enableOffers:!1,enablePeerswap:!1,logLevel:"ERROR",lnServerUrl:"",swapServerUrl:"",boltzServerUrl:"",currencyUnit:"USD",blockExplorerUrl:"https://mempool.space"},P1={configPath:"",swapMacaroonPath:"",boltzMacaroonPath:""},lc={apiURL:"",apisCallStatus:{Login:{status:ot.wn.UN_INITIATED},IsAuthorized:{status:ot.wn.UN_INITIATED}},selNode:{index:1,lnNode:"Node 1",settings:Nc,authentication:P1,lnImplementation:"LND"},appConfig:{defaultNodeIndex:-1,selectedNodeIndex:-1,SSO:{rtlSSO:0,logoutRedirectLink:""},enable2FA:!1,secret2FA:"",allowPasswordUpdate:!0,nodes:[{settings:Nc,authentication:P1}]},nodeData:{}},pf=(0,qi.vy)(lc,(0,qi.on)(Nn.Gd,(z,{payload:F})=>{const L=JSON.parse(JSON.stringify(z.apisCallStatus));return F.action&&(L[F.action]={status:F.status,statusCode:F.statusCode,message:F.message,URL:F.URL,filePath:F.filePath}),{...z,apisCallStatus:L}}),(0,qi.on)(Nn.Tn,(z,{payload:F})=>({...lc,apisCallStatus:z.apisCallStatus,appConfig:z.appConfig,selNode:F})),(0,qi.on)(Nn.Np,(z,{payload:F})=>({...z,selNode:F})),(0,qi.on)(Nn.Fl,(z,{payload:F})=>({...z,nodeData:F})),(0,qi.on)(Nn.IK,(z,{payload:F})=>({...z,appConfig:F}))),Lu={apisCallStatus:{FetchPageSettings:{status:ot.wn.UN_INITIATED},FetchInfo:{status:ot.wn.UN_INITIATED},FetchFees:{status:ot.wn.UN_INITIATED},FetchPeers:{status:ot.wn.UN_INITIATED},FetchClosedChannels:{status:ot.wn.UN_INITIATED},FetchPendingChannels:{status:ot.wn.UN_INITIATED},FetchAllChannels:{status:ot.wn.UN_INITIATED},FetchBalanceBlockchain:{status:ot.wn.UN_INITIATED},FetchInvoices:{status:ot.wn.UN_INITIATED},FetchPayments:{status:ot.wn.UN_INITIATED},FetchForwardingHistory:{status:ot.wn.UN_INITIATED},FetchUTXOs:{status:ot.wn.UN_INITIATED},FetchTransactions:{status:ot.wn.UN_INITIATED},FetchLightningTransactions:{status:ot.wn.UN_INITIATED},FetchNetwork:{status:ot.wn.UN_INITIATED}},pageSettings:ot.ZC,information:{},peers:[],fees:{channel_fees:[],day_fee_sum:0,week_fee_sum:0,month_fee_sum:0,daily_tx_count:0,weekly_tx_count:0,monthly_tx_count:0,forwarding_events_history:{}},networkInfo:{},blockchainBalance:{total_balance:-1},lightningBalance:{local:-1,remote:-1},channels:[],channelsSummary:{active:{num_channels:0,capacity:0},inactive:{num_channels:0,capacity:0}},closedChannels:[],pendingChannels:{},pendingChannelsSummary:{open:{num_channels:0,limbo_balance:0},closing:{num_channels:0,limbo_balance:0},force_closing:{num_channels:0,limbo_balance:0},waiting_close:{num_channels:0,limbo_balance:0},total_channels:0,total_limbo_balance:0},transactions:[],utxos:[],listPayments:{payments:[]},listInvoices:{invoices:[]},allLightningTransactions:{listPaymentsAll:{payments:[],first_index_offset:"",last_index_offset:""},listInvoicesAll:{invoices:[],total_invoices:0,last_index_offset:"",first_index_offset:""}},forwardingHistory:{last_offset_index:0,total_fee_msat:0,forwarding_events:[]}};let gf=!1,Iu=!1;const Y4=(0,qi.vy)(Lu,(0,qi.on)(nr.e8,(z,{payload:F})=>{const L=JSON.parse(JSON.stringify(z.apisCallStatus));return F.action&&(L[F.action]={status:F.status,statusCode:F.statusCode,message:F.message,URL:F.URL,filePath:F.filePath}),{...z,apisCallStatus:L}}),(0,qi.on)(nr.p1,z=>({...Lu})),(0,qi.on)(nr.x1,(z,{payload:F})=>({...z,information:F})),(0,qi.on)(nr.Qj,(z,{payload:F})=>({...z,peers:F})),(0,qi.on)(nr.Zi,(z,{payload:F})=>{const L=[...z.peers],H=z.peers.findIndex(Y=>Y.pub_key===F.pubkey);return H>-1&&L.splice(H,1),{...z,peers:L}}),(0,qi.on)(nr.Jx,(z,{payload:F})=>{const L=z.listInvoices;return L.invoices?.unshift(F),{...z,listInvoices:L}}),(0,qi.on)(nr.Dq,(z,{payload:F})=>{const L=z.listInvoices;return L.invoices=L.invoices?.map(H=>H.payment_request===F.payment_request?F:H),{...z,listInvoices:L}}),(0,qi.on)(nr._$,(z,{payload:F})=>{const L=z.listPayments;return L.payments=L.payments?.map(H=>H.payment_hash===F.payment_hash?F:H),{...z,listPayments:L}}),(0,qi.on)(nr.Uo,(z,{payload:F})=>({...z,fees:F})),(0,qi.on)(nr.z2,(z,{payload:F})=>({...z,closedChannels:F})),(0,qi.on)(nr.cU,(z,{payload:F})=>({...z,pendingChannels:F.pendingChannels,pendingChannelsSummary:F.pendingChannelsSummary})),(0,qi.on)(nr.dv,(z,{payload:F})=>{let L=0,H=0,Y=0,ie=0,et=0,Bt=0;return F&&F.forEach($t=>{$t.local_balance||($t.local_balance=0),!0===$t.active?(et+=+$t.local_balance,Y+=1,$t.local_balance?L=+L+ +$t.local_balance:$t.local_balance=0,$t.remote_balance?H=+H+ +$t.remote_balance:$t.remote_balance=0):(Bt+=+$t.local_balance,ie+=1)}),{...z,channels:F,channelsSummary:{active:{num_channels:Y,capacity:et},inactive:{num_channels:ie,capacity:Bt}},lightningBalance:{local:L,remote:H}}}),(0,qi.on)(nr.cR,(z,{payload:F})=>{const L=[...z.channels],H=z.channels.findIndex(Y=>Y.channel_point===F.channelPoint);return H>-1&&L.splice(H,1),{...z,channels:L}}),(0,qi.on)(nr.DI,(z,{payload:F})=>({...z,blockchainBalance:F})),(0,qi.on)(nr.J9,(z,{payload:F})=>({...z,networkInfo:F})),(0,qi.on)(nr.$6,(z,{payload:F})=>(F.total_invoices||(F.total_invoices=z.listInvoices.total_invoices),{...z,listInvoices:F})),(0,qi.on)(nr.As,(z,{payload:F})=>{if(gf=!0,F.length&&Iu){const L=[...z.utxos];return L.forEach(H=>{const Y=F.find(ie=>ie.tx_hash===H.outpoint?.txid_str);H.label=Y&&Y.label?Y.label:""}),{...z,utxos:L,transactions:F}}return{...z,transactions:F}}),(0,qi.on)(nr.O8,(z,{payload:F})=>{if(Iu=!0,F.length&&gf){const L=[...z.transactions];F.forEach(H=>{const Y=L.find(ie=>ie.tx_hash===H.outpoint?.txid_str);H.label=Y&&Y.label?Y.label:""})}return{...z,utxos:F}}),(0,qi.on)(nr.Uj,(z,{payload:F})=>{const L={listInvoicesAll:z.allLightningTransactions.listInvoicesAll,listPaymentsAll:F};return{...z,listPayments:F,allLightningTransactions:L}}),(0,qi.on)(nr.b1,(z,{payload:F})=>{const L={listInvoicesAll:F.listInvoicesAll,listPaymentsAll:z.listPayments};return{...z,allLightningTransactions:L}}),(0,qi.on)(nr.kv,(z,{payload:F})=>{const L=[...z.channels,...z.closedChannels];let H=F.forwarding_events?JSON.parse(JSON.stringify(F)):{};return H.forwarding_events&&(H=Q4(H,L)),{...z,forwardingHistory:H}}),(0,qi.on)(nr.NS,(z,{payload:F})=>{const L=[];return ot.ZC.forEach(H=>{const Y=F&&F.length&&F.length>0?F.find(ie=>ie.pageId===H.pageId):null;if(Y){const ie=JSON.parse(JSON.stringify(Y.tables));Y.tables=[],H.tables.forEach(et=>{const Bt=ie.find($t=>$t.tableId===et.tableId)||null;Y.tables.push(Bt||JSON.parse(JSON.stringify(et)))}),L.push(Y)}else L.push(JSON.parse(JSON.stringify(H)))}),{...z,pageSettings:L}})),Q4=(z,F)=>(z.forwarding_events.forEach(L=>{if(F&&F.length>0)for(let H=0;H{const L=JSON.parse(JSON.stringify(z.apisCallStatus));return F.action&&(L[F.action]={status:F.status,statusCode:F.statusCode,message:F.message,URL:F.URL,filePath:F.filePath}),{...z,apisCallStatus:L}}),(0,qi.on)(Ir.gf,z=>({...ku})),(0,qi.on)(Ir.x1,(z,{payload:F})=>({...z,information:F,fees:{feeCollected:F.fees_collected_msat}})),(0,qi.on)(Ir.C2,(z,{payload:F})=>F.perkb?{...z,feeRatesPerKB:F}:F.perkw?{...z,feeRatesPerKW:F}:{...z}),(0,qi.on)(Ir.EM,(z,{payload:F})=>({...z,utxos:F.utxos||[],balance:F.balance,localRemoteBalance:F.localRemoteBalance})),(0,qi.on)(Ir.Qj,(z,{payload:F})=>({...z,peers:F})),(0,qi.on)(Ir.We,(z,{payload:F})=>({...z,peers:[...z.peers,F]})),(0,qi.on)(Ir.Zi,(z,{payload:F})=>{const L=[...z.peers],H=z.peers.findIndex(Y=>Y.id===F.id);return H>-1&&L.splice(H,1),{...z,peers:L}}),(0,qi.on)(Ir.dv,(z,{payload:F})=>({...z,activeChannels:F.activeChannels,pendingChannels:F.pendingChannels,inactiveChannels:F.inactiveChannels})),(0,qi.on)(Ir.cR,(z,{payload:F})=>{const L=[...z.peers];return L.forEach(H=>{H.id===F.id&&(H.connected=!1,delete H.netaddr)}),{...z,peers:L}}),(0,qi.on)(Ir.Uj,(z,{payload:F})=>({...z,payments:F})),(0,qi.on)(Ir.kv,(z,{payload:F})=>{const L=[...z.activeChannels,...z.pendingChannels,...z.inactiveChannels],H=vf(F.listForwards,L);switch(F.listForwards=H,F.status){case ot.xk.SETTLED:const Y=z.fees;return Y.totalTxCount=F.totalForwards||0,{...z,fees:Y,forwardingHistory:F};case ot.xk.FAILED:return{...z,failedForwardingHistory:F};case ot.xk.LOCAL_FAILED:return{...z,localFailedForwardingHistory:F};default:return{...z}}}),(0,qi.on)(Ir.Jx,(z,{payload:F})=>{const L=z.invoices;return L.invoices?.unshift(F),{...z,invoices:L}}),(0,qi.on)(Ir.$6,(z,{payload:F})=>({...z,invoices:F})),(0,qi.on)(Ir.Dq,(z,{payload:F})=>{const L=z.invoices;return L.invoices=L.invoices?.map(H=>(H.label===F.label&&(H.amount_received_msat=F.msat,H.payment_preimage=F.preimage,H.status="paid"),H)),{...z,invoices:L}}),(0,qi.on)(Ir.qw,(z,{payload:F})=>({...z,offers:F})),(0,qi.on)(Ir.kQ,(z,{payload:F})=>{const L=z.offers;return L?.unshift(F),{...z,offers:L}}),(0,qi.on)(Ir.Gz,(z,{payload:F})=>{const L=[...z.offers],H=z.offers.findIndex(Y=>Y.offer_id===F.offer.offer_id);return H>-1&&L.splice(H,1,F.offer),{...z,offers:L}}),(0,qi.on)(Ir.Qv,(z,{payload:F})=>({...z,offersBookmarks:F})),(0,qi.on)(Ir.Db,(z,{payload:F})=>{const L=[...z.offersBookmarks],H=L.findIndex(Y=>Y.bolt12===F.bolt12);if(H<0)L?.unshift(F);else{const Y={...L[H]};Y.title=F.title,Y.amountMSat=F.amountMSat,Y.lastUpdatedAt=F.lastUpdatedAt,Y.description=F.description,Y.issuer=F.issuer,L.splice(H,1,Y)}return{...z,offersBookmarks:L}}),(0,qi.on)(Ir.NU,(z,{payload:F})=>{const L=[...z.offersBookmarks],H=z.offersBookmarks.findIndex(Y=>Y.bolt12===F.bolt12);return H>-1&&L.splice(H,1),{...z,offersBookmarks:L}}),(0,qi.on)(Ir.NS,(z,{payload:F})=>{const L=[];return ot.mu.forEach(H=>{const Y=F&&F.length&&F.length>0?F.find(ie=>ie.pageId===H.pageId):null;if(Y){const ie=JSON.parse(JSON.stringify(Y.tables));Y.tables=[],H.tables.forEach(et=>{const Bt=ie.find($t=>$t.tableId===et.tableId)||null;Y.tables.push(Bt||JSON.parse(JSON.stringify(et)))}),L.push(Y)}else L.push(JSON.parse(JSON.stringify(H)))}),{...z,pageSettings:L}})),vf=(z,F)=>(z&&z.length>0?z.forEach((L,H)=>{if(F&&F.length>0)for(let Y=0;Y{const L=JSON.parse(JSON.stringify(z.apisCallStatus));return F.action&&(L[F.action]={status:F.status,statusCode:F.statusCode,message:F.message,URL:F.URL,filePath:F.filePath}),{...z,apisCallStatus:L}}),(0,qi.on)(Or.Hh,z=>({...j0})),(0,qi.on)(Or.x1,(z,{payload:F})=>({...z,information:F})),(0,qi.on)(Or.Uo,(z,{payload:F})=>({...z,fees:F})),(0,qi.on)(Or.Tp,(z,{payload:F})=>({...z,activeChannels:F})),(0,qi.on)(Or.cU,(z,{payload:F})=>({...z,pendingChannels:F})),(0,qi.on)(Or.I6,(z,{payload:F})=>({...z,inactiveChannels:F})),(0,qi.on)(Or.ZE,(z,{payload:F})=>({...z,channelsStatus:F})),(0,qi.on)(Or.Xx,(z,{payload:F})=>({...z,onchainBalance:F})),(0,qi.on)(Or.N8,(z,{payload:F})=>({...z,lightningBalance:F})),(0,qi.on)(Or.Qj,(z,{payload:F})=>({...z,peers:F})),(0,qi.on)(Or.Zi,(z,{payload:F})=>{const L=[...z.peers],H=z.peers.findIndex(Y=>Y.nodeId===F.nodeId);return H>-1&&L.splice(H,1),{...z,peers:L}}),(0,qi.on)(Or.cR,(z,{payload:F})=>{const L=[...z.activeChannels],H=z.activeChannels.findIndex(Y=>Y.channelId===F.channelId);return H>-1&&L.splice(H,1),{...z,activeChannels:L}}),(0,qi.on)(Or.Uj,(z,{payload:F})=>{if(F&&F.sent){const L=[...z.activeChannels,...z.pendingChannels,...z.inactiveChannels];F.sent?.map(H=>{const Y=z.peers.find(ie=>ie.nodeId===H.recipientNodeId);return H.recipientNodeAlias=Y?Y.alias:H.recipientNodeId,H.parts&&H.parts?.map(ie=>{const et=L.find(Bt=>Bt.channelId===ie.toChannelId);return ie.toChannelAlias=et?et.alias:ie.toChannelId,H.parts}),F.sent})}if(F&&F.relayed){const L=[...z.activeChannels,...z.pendingChannels,...z.inactiveChannels];F.relayed.forEach(H=>{H=W0(H,L)})}return{...z,payments:F}}),(0,qi.on)(Or.As,(z,{payload:F})=>({...z,transactions:F})),(0,qi.on)(Or.Jx,(z,{payload:F})=>{const L=z.invoices;return L?.unshift(F),{...z,invoices:L}}),(0,qi.on)(Or.$6,(z,{payload:F})=>({...z,invoices:F})),(0,qi.on)(Or.Dq,(z,{payload:F})=>{let L=z.invoices;return L=L?.map(H=>{if(H.paymentHash===F.paymentHash){if(F.hasOwnProperty("type")){const Y=JSON.parse(JSON.stringify(H));return Y.amountSettled=F.parts&&F.parts.length&&F.parts.length>0&&F.parts[0].amount?(F.parts[0].amount||0)/1e3:0,Y.receivedAt=F.parts&&F.parts.length&&F.parts.length>0&&F.parts[0].timestamp?Math.round((F.parts[0].timestamp||0)/1e3):0,Y.status="received",Y}return F}return H}),{...z,invoices:L}}),(0,qi.on)(Or.gZ,(z,{payload:F})=>{let L=z.pendingChannels;return L=L?.map(H=>(H.channelId===F.channelId&&H.nodeId===F.remoteNodeId&&(F.currentState=F.currentState?.replace(/_/g," "),H.state=F.currentState),H)),{...z,pendingChannels:L}}),(0,qi.on)(Or.yn,(z,{payload:F})=>{const L=z.payments,H=W0(F,[...z.activeChannels,...z.pendingChannels,...z.inactiveChannels]);L.relayed?.unshift(H);const Y=(F.amountIn||0)-(F.amountOut||0),ie={localBalance:z.lightningBalance.localBalance+Y,remoteBalance:z.lightningBalance.remoteBalance-Y},et=z.channelsStatus;et.active&&(et.active.capacity=(z.channelsStatus?.active?.capacity||0)+Y);const Bt={daily_fee:(z.fees.daily_fee||0)+Y,daily_txs:(z.fees.daily_txs||0)+1,weekly_fee:(z.fees.weekly_fee||0)+Y,weekly_txs:(z.fees.weekly_txs||0)+1,monthly_fee:(z.fees.monthly_fee||0)+Y,monthly_txs:(z.fees.monthly_txs||0)+1},$t=z.activeChannels;let Ei=!1,zi=!1;for(const Vi of $t){if(Vi.channelId===F.fromChannelId){Ei=!0;const un=(Vi.toLocal||0)+(Vi.toRemote||0);Vi.toLocal=(Vi.toLocal||0)+H.amountIn,Vi.toRemote=(Vi.toRemote||0)-H.amountIn,Vi.balancedness=0===un?1:+(1-Math.abs((Vi.toLocal-Vi.toRemote)/un)).toFixed(3)}if(Vi.channelId===F.toChannelId){zi=!0;const un=(Vi.toLocal||0)+(Vi.toRemote||0);Vi.toLocal=(Vi.toLocal||0)-H.amountOut,Vi.toRemote=(Vi.toRemote||0)+H.amountOut,Vi.balancedness=0===un?1:+(1-Math.abs((Vi.toLocal-Vi.toRemote)/un)).toFixed(3)}if(zi&&Ei)break}return{...z,payments:L,lightningBalance:ie,channelStatus:et,fees:Bt,activeChannels:$t}}),(0,qi.on)(Or.NS,(z,{payload:F})=>{const L=[];return ot.X8.forEach(H=>{const Y=F&&F.length&&F.length>0?F.find(ie=>ie.pageId===H.pageId):null;if(Y){const ie=JSON.parse(JSON.stringify(Y.tables));Y.tables=[],H.tables.forEach(et=>{const Bt=ie.find($t=>$t.tableId===et.tableId)||null;Y.tables.push(Bt||JSON.parse(JSON.stringify(et)))}),L.push(Y)}else L.push(JSON.parse(JSON.stringify(H)))}),{...z,pageSettings:L}})),W0=(z,F)=>{if("payment-relayed"===z.type)if(F&&F.length>0)for(let L=0;L0)for(let Y=0;Y{F[Y].channelId?.toString()===ie.channelId&&(ie.channelAlias=F[Y].alias?F[Y].alias:ie.channelId,ie.shortChannelId=F[Y].shortChannelId?F[Y].shortChannelId:"")}),z.outgoing?.forEach(ie=>{F[Y].channelId?.toString()===ie.channelId&&(ie.channelAlias=F[Y].alias?F[Y].alias:ie.channelId,ie.shortChannelId=F[Y].shortChannelId?F[Y].shortChannelId:"")}),Y===F.length-1&&(z.incoming&&z.incoming.length&&z.incoming.length>0&&!z.incoming[0].channelAlias&&z.incoming?.forEach(ie=>{ie.channelAlias=ie.channelId?.substring(0,17)+"...",ie.shortChannelId=""}),z.outgoing&&z.outgoing.length&&z.outgoing.length>0&&!z.outgoing[0].channelAlias&&z.outgoing?.forEach(ie=>{ie.channelAlias=ie.channelId?.substring(0,17)+"...",ie.shortChannelId=""}));else z.incoming?.forEach(Y=>{Y.channelAlias=Y.channelId?.substring(0,17)+"...",Y.shortChannelId=""}),z.outgoing?.forEach(Y=>{Y.channelAlias=Y.channelId?.substring(0,17)+"...",Y.shortChannelId=""});const L=z.incoming?.reduce((Y,ie)=>Y+ie.amount,0)||0;z.amountIn=Math.round(L/1e3),z.fromChannelId=z.incoming&&z.incoming.length?z.incoming[0].channelId:"",z.fromChannelAlias=z.incoming&&z.incoming.length?z.incoming[0].channelAlias:"",z.fromShortChannelId=z.incoming&&z.incoming.length?z.incoming[0].shortChannelId:"";const H=z.outgoing?.reduce((Y,ie)=>Y+ie.amount,0)||0;z.amountOut=Math.round(H/1e3),z.toChannelId=z.outgoing&&z.outgoing.length?z.outgoing[0].channelId:"",z.toChannelAlias=z.outgoing&&z.outgoing.length?z.outgoing[0].channelAlias:"",z.toShortChannelId=z.outgoing&&z.outgoing.length?z.outgoing[0].shortChannelId:""}return z};let Ru=!1;(0,T.naY)()&&(Ru=!0);let yf=(()=>{var z;class F{static#e=z=()=>(this.\u0275fac=function(Y){return new(Y||F)},this.\u0275mod=e.$C({type:F,bootstrap:[mf]}),this.\u0275inj=p.G2t({providers:[(0,Ua.$R)((0,Ua.ZZ)(),(0,Ua.Sx)()),ud({idle:ot.bz-10,timeout:10,ping:12e3}),{provide:Ua.a7,useClass:X4,multi:!0},Ti.Q,nd.u,K4.I,Cc.Q,qs.h,Tc],imports:[Os,F4.G,P4,Sr.RH,b.fM,qi.md.forRoot({root:pf,lnd:Y4,cln:_f,ecl:$4},{runtimeChecks:{strictStateImmutability:!1,strictActionImmutability:!1}}),Fo.Vm.forRoot([ms.H,Fc.L,O1.i,G0.B]),Ru?So.instrument({connectInZone:!0}):[]]}))}return z(),F})();D().bootstrapModule(yf).catch(z=>console.error(z))},68010:(Ae,ee,l)=>{"use strict";l.d(ee,{O:()=>t});const t=new(l(2615).nKC)("MAT_INPUT_VALUE_ACCESSOR")},68075:(Ae,ee,l)=>{"use strict";var i=l(3136),t=l(88723),p=l(71993),S=l(98828),c=i.assert;function e(d){S.call(this,"short",d),this.a=new t(d.a,16).toRed(this.red),this.b=new t(d.b,16).toRed(this.red),this.tinv=this.two.redInvm(),this.zeroA=0===this.a.fromRed().cmpn(0),this.threeA=0===this.a.fromRed().sub(this.p).cmpn(-3),this.endo=this._getEndomorphism(d),this._endoWnafT1=new Array(4),this._endoWnafT2=new Array(4)}function T(d,w,m,P){S.BasePoint.call(this,d,"affine"),null===w&&null===m?(this.x=null,this.y=null,this.inf=!0):(this.x=new t(w,16),this.y=new t(m,16),P&&(this.x.forceRed(this.curve.red),this.y.forceRed(this.curve.red)),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.y.red||(this.y=this.y.toRed(this.curve.red)),this.inf=!1)}function g(d,w,m,P){S.BasePoint.call(this,d,"jacobian"),null===w&&null===m&&null===P?(this.x=this.curve.one,this.y=this.curve.one,this.z=new t(0)):(this.x=new t(w,16),this.y=new t(m,16),this.z=new t(P,16)),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.y.red||(this.y=this.y.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)),this.zOne=this.z===this.curve.one}p(e,S),Ae.exports=e,e.prototype._getEndomorphism=function(w){if(this.zeroA&&this.g&&this.n&&1===this.p.modn(3)){var m,P;if(w.beta)m=new t(w.beta,16).toRed(this.red);else{var M=this._getEndoRoots(this.p);m=(m=M[0].cmp(M[1])<0?M[0]:M[1]).toRed(this.red)}if(w.lambda)P=new t(w.lambda,16);else{var j=this._getEndoRoots(this.n);0===this.g.mul(j[0]).x.cmp(this.g.x.redMul(m))?P=j[0]:c(0===this.g.mul(P=j[1]).x.cmp(this.g.x.redMul(m)))}return{beta:m,lambda:P,basis:w.basis?w.basis.map(function(K){return{a:new t(K.a,16),b:new t(K.b,16)}}):this._getEndoBasis(P)}}},e.prototype._getEndoRoots=function(w){var m=w===this.p?this.red:t.mont(w),P=new t(2).toRed(m).redInvm(),M=P.redNeg(),j=new t(3).toRed(m).redNeg().redSqrt().redMul(P);return[M.redAdd(j).fromRed(),M.redSub(j).fromRed()]},e.prototype._getEndoBasis=function(w){for(var G,Q,$,ae,ue,oe,he,Te,D,m=this.n.ushrn(Math.floor(this.n.bitLength()/2)),P=w,M=this.n.clone(),j=new t(1),U=new t(0),K=new t(0),q=new t(1),me=0;0!==P.cmpn(0);){var n=M.div(P);Te=M.sub(n.mul(P)),D=K.sub(n.mul(j));var o=q.sub(n.mul(U));if(!$&&Te.cmp(m)<0)G=he.neg(),Q=j,$=Te.neg(),ae=D;else if($&&2===++me)break;he=Te,M=P,P=Te,K=j,j=D,q=U,U=o}ue=Te.neg(),oe=D;var f=$.sqr().add(ae.sqr());return ue.sqr().add(oe.sqr()).cmp(f)>=0&&(ue=G,oe=Q),$.negative&&($=$.neg(),ae=ae.neg()),ue.negative&&(ue=ue.neg(),oe=oe.neg()),[{a:$,b:ae},{a:ue,b:oe}]},e.prototype._endoSplit=function(w){var m=this.endo.basis,P=m[0],M=m[1],j=M.b.mul(w).divRound(this.n),U=P.b.neg().mul(w).divRound(this.n),K=j.mul(P.a),q=U.mul(M.a),G=j.mul(P.b),Q=U.mul(M.b);return{k1:w.sub(K).sub(q),k2:G.add(Q).neg()}},e.prototype.pointFromX=function(w,m){(w=new t(w,16)).red||(w=w.toRed(this.red));var P=w.redSqr().redMul(w).redIAdd(w.redMul(this.a)).redIAdd(this.b),M=P.redSqrt();if(0!==M.redSqr().redSub(P).cmp(this.zero))throw new Error("invalid point");var j=M.fromRed().isOdd();return(m&&!j||!m&&j)&&(M=M.redNeg()),this.point(w,M)},e.prototype.validate=function(w){if(w.inf)return!0;var m=w.x,P=w.y,M=this.a.redMul(m),j=m.redSqr().redMul(m).redIAdd(M).redIAdd(this.b);return 0===P.redSqr().redISub(j).cmpn(0)},e.prototype._endoWnafMulAdd=function(w,m,P){for(var M=this._endoWnafT1,j=this._endoWnafT2,U=0;U":""},T.prototype.isInfinity=function(){return this.inf},T.prototype.add=function(w){if(this.inf)return w;if(w.inf)return this;if(this.eq(w))return this.dbl();if(this.neg().eq(w))return this.curve.point(null,null);if(0===this.x.cmp(w.x))return this.curve.point(null,null);var m=this.y.redSub(w.y);0!==m.cmpn(0)&&(m=m.redMul(this.x.redSub(w.x).redInvm()));var P=m.redSqr().redISub(this.x).redISub(w.x),M=m.redMul(this.x.redSub(P)).redISub(this.y);return this.curve.point(P,M)},T.prototype.dbl=function(){if(this.inf)return this;var w=this.y.redAdd(this.y);if(0===w.cmpn(0))return this.curve.point(null,null);var m=this.curve.a,P=this.x.redSqr(),M=w.redInvm(),j=P.redAdd(P).redIAdd(P).redIAdd(m).redMul(M),U=j.redSqr().redISub(this.x.redAdd(this.x)),K=j.redMul(this.x.redSub(U)).redISub(this.y);return this.curve.point(U,K)},T.prototype.getX=function(){return this.x.fromRed()},T.prototype.getY=function(){return this.y.fromRed()},T.prototype.mul=function(w){return w=new t(w,16),this.isInfinity()?this:this._hasDoubles(w)?this.curve._fixedNafMul(this,w):this.curve.endo?this.curve._endoWnafMulAdd([this],[w]):this.curve._wnafMul(this,w)},T.prototype.mulAdd=function(w,m,P){var M=[this,m],j=[w,P];return this.curve.endo?this.curve._endoWnafMulAdd(M,j):this.curve._wnafMulAdd(1,M,j,2)},T.prototype.jmulAdd=function(w,m,P){var M=[this,m],j=[w,P];return this.curve.endo?this.curve._endoWnafMulAdd(M,j,!0):this.curve._wnafMulAdd(1,M,j,2,!0)},T.prototype.eq=function(w){return this===w||this.inf===w.inf&&(this.inf||0===this.x.cmp(w.x)&&0===this.y.cmp(w.y))},T.prototype.neg=function(w){if(this.inf)return this;var m=this.curve.point(this.x,this.y.redNeg());if(w&&this.precomputed){var P=this.precomputed,M=function(j){return j.neg()};m.precomputed={naf:P.naf&&{wnd:P.naf.wnd,points:P.naf.points.map(M)},doubles:P.doubles&&{step:P.doubles.step,points:P.doubles.points.map(M)}}}return m},T.prototype.toJ=function(){return this.inf?this.curve.jpoint(null,null,null):this.curve.jpoint(this.x,this.y,this.curve.one)},p(g,S.BasePoint),e.prototype.jpoint=function(w,m,P){return new g(this,w,m,P)},g.prototype.toP=function(){if(this.isInfinity())return this.curve.point(null,null);var w=this.z.redInvm(),m=w.redSqr(),P=this.x.redMul(m),M=this.y.redMul(m).redMul(w);return this.curve.point(P,M)},g.prototype.neg=function(){return this.curve.jpoint(this.x,this.y.redNeg(),this.z)},g.prototype.add=function(w){if(this.isInfinity())return w;if(w.isInfinity())return this;var m=w.z.redSqr(),P=this.z.redSqr(),M=this.x.redMul(m),j=w.x.redMul(P),U=this.y.redMul(m.redMul(w.z)),K=w.y.redMul(P.redMul(this.z)),q=M.redSub(j),G=U.redSub(K);if(0===q.cmpn(0))return 0!==G.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var Q=q.redSqr(),$=Q.redMul(q),ae=M.redMul(Q),ue=G.redSqr().redIAdd($).redISub(ae).redISub(ae),oe=G.redMul(ae.redISub(ue)).redISub(U.redMul($)),he=this.z.redMul(w.z).redMul(q);return this.curve.jpoint(ue,oe,he)},g.prototype.mixedAdd=function(w){if(this.isInfinity())return w.toJ();if(w.isInfinity())return this;var m=this.z.redSqr(),P=this.x,M=w.x.redMul(m),j=this.y,U=w.y.redMul(m).redMul(this.z),K=P.redSub(M),q=j.redSub(U);if(0===K.cmpn(0))return 0!==q.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var G=K.redSqr(),Q=G.redMul(K),$=P.redMul(G),ae=q.redSqr().redIAdd(Q).redISub($).redISub($),ue=q.redMul($.redISub(ae)).redISub(j.redMul(Q)),oe=this.z.redMul(K);return this.curve.jpoint(ae,ue,oe)},g.prototype.dblp=function(w){if(0===w)return this;if(this.isInfinity())return this;if(!w)return this.dbl();var m;if(this.curve.zeroA||this.curve.threeA){var P=this;for(m=0;m=0)return!1;if(P.redIAdd(j),0===this.x.cmp(P))return!0}},g.prototype.inspect=function(){return this.isInfinity()?"":""},g.prototype.isInfinity=function(){return 0===this.z.cmpn(0)}},68283:(Ae,ee,l)=>{"use strict";var i=l(39210),t=l(71993);function p(o,f){return!(55296!=(64512&o.charCodeAt(f))||f<0||f+1>=o.length)&&56320==(64512&o.charCodeAt(f+1))}function e(o){return(o>>>24|o>>>8&65280|o<<8&16711680|(255&o)<<24)>>>0}function g(o){return 1===o.length?"0"+o:o}function d(o){return 7===o.length?"0"+o:6===o.length?"00"+o:5===o.length?"000"+o:4===o.length?"0000"+o:3===o.length?"00000"+o:2===o.length?"000000"+o:1===o.length?"0000000"+o:o}ee.inherits=t,ee.toArray=function S(o,f){if(Array.isArray(o))return o.slice();if(!o)return[];var h=[];if("string"==typeof o)if(f){if("hex"===f)for((o=o.replace(/[^a-z0-9]+/gi,"")).length%2!=0&&(o="0"+o),A=0;A>6|192,h[b++]=63&k|128):p(o,A)?(k=65536+((1023&k)<<10)+(1023&o.charCodeAt(++A)),h[b++]=k>>18|240,h[b++]=k>>12&63|128,h[b++]=k>>6&63|128,h[b++]=63&k|128):(h[b++]=k>>12|224,h[b++]=k>>6&63|128,h[b++]=63&k|128)}else for(A=0;A>>0;return k},ee.split32=function m(o,f){for(var h=new Array(4*o.length),b=0,A=0;b>>24,h[A+1]=k>>>16&255,h[A+2]=k>>>8&255,h[A+3]=255&k):(h[A+3]=k>>>24,h[A+2]=k>>>16&255,h[A+1]=k>>>8&255,h[A]=255&k)}return h},ee.rotr32=function P(o,f){return o>>>f|o<<32-f},ee.rotl32=function M(o,f){return o<>>32-f},ee.sum32=function j(o,f){return o+f>>>0},ee.sum32_3=function U(o,f,h){return o+f+h>>>0},ee.sum32_4=function K(o,f,h,b){return o+f+h+b>>>0},ee.sum32_5=function q(o,f,h,b,A){return o+f+h+b+A>>>0},ee.sum64=function G(o,f,h,b){var x=b+o[f+1]>>>0;o[f]=(x>>0,o[f+1]=x},ee.sum64_hi=function Q(o,f,h,b){return(f+b>>>0>>0},ee.sum64_lo=function $(o,f,h,b){return f+b>>>0},ee.sum64_4_hi=function ae(o,f,h,b,A,k,x,r){var _=0,W=f;return _+=(W=W+b>>>0)>>0)>>0)>>0},ee.sum64_4_lo=function ue(o,f,h,b,A,k,x,r){return f+b+k+r>>>0},ee.sum64_5_hi=function oe(o,f,h,b,A,k,x,r,_,W){var I=0,B=f;return I+=(B=B+b>>>0)>>0)>>0)>>0)>>0},ee.sum64_5_lo=function he(o,f,h,b,A,k,x,r,_,W){return f+b+k+r+W>>>0},ee.rotr64_hi=function me(o,f,h){return(f<<32-h|o>>>h)>>>0},ee.rotr64_lo=function Te(o,f,h){return(o<<32-h|f>>>h)>>>0},ee.shr64_hi=function D(o,f,h){return o>>>h},ee.shr64_lo=function n(o,f,h){return(o<<32-h|f>>>h)>>>0}},68314:(Ae,ee,l)=>{const i=l(72836),t=l(89460),p=l(7030),S=l(56511);function c(e,T,g,d,w){const m=[].slice.call(arguments,1),P=m.length,M="function"==typeof m[P-1];if(!M&&!i())throw new Error("Callback required as last argument");if(!M){if(P<1)throw new Error("Too few arguments provided");return 1===P?(g=T,T=d=void 0):2===P&&!T.getContext&&(d=g,g=T,T=void 0),new Promise(function(j,U){try{const K=t.create(g,d);j(e(K,T,d))}catch(K){U(K)}})}if(P<2)throw new Error("Too few arguments provided");2===P?(w=g,g=T,T=d=void 0):3===P&&(T.getContext&&typeof w>"u"?(w=d,d=void 0):(w=d,d=g,g=T,T=void 0));try{const j=t.create(g,d);w(null,e(j,T,d))}catch(j){w(j)}}ee.create=t.create,ee.toCanvas=c.bind(null,p.render),ee.toDataURL=c.bind(null,p.renderToDataURL),ee.toString=c.bind(null,function(e,T,g){return S.render(e,g)})},68326:(__unused_webpack_module,exports)=>{var indexOf=function(Ae,ee){if(Ae.indexOf)return Ae.indexOf(ee);for(var l=0;l{"use strict";l.d(ee,{L:()=>me});var i=l(11747),t=l(21413),p=l(7673),S=l(99437),c=l(96354),e=l(31397),T=l(56977),g=l(53993),d=l(46391),w=l(12462),m=l(4416),P=l(11771),M=l(190),j=l(63536),U=l(2615),K=l(29330),q=l(59640),G=l(98570),Q=l(82571),$=l(53202),ae=l(51585),ue=l(43694),oe=l(7879),he=l(57303);let me=(()=>{var Te;class D{constructor(o,f,h,b,A,k,x,r,_,W){this.actions=o,this.httpClient=f,this.store=h,this.logger=b,this.commonService=A,this.sessionService=k,this.dialog=x,this.router=r,this.wsService=_,this.location=W,this.CHILD_API_URL=m.H$+"/lnd",this.invoicesPageSettings=m.ZC.find(I=>"transactions"===I.pageId)?.tables.find(I=>"invoices"===I.tableId),this.paymentsPageSettings=m.ZC.find(I=>"transactions"===I.pageId)?.tables.find(I=>"payments"===I.tableId),this.flgInitialized=!1,this.unSubs=[new t.B,new t.B],this.infoFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.FETCH_INFO_LND),(0,e.Z)(I=>(this.flgInitialized=!1,this.store.dispatch((0,P.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,P.Jh)()),this.store.dispatch((0,P.mt)({payload:m.MZ.GET_NODE_INFO})),this.store.dispatch((0,M.e8)({payload:{action:"FetchInfo",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.GETINFO_API).pipe((0,T.Q)(this.actions.pipe((0,i.gp)(m.aU.SET_SELECTED_NODE))),(0,c.T)(B=>(this.logger.info(B),B.chains&&B.chains.length&&B.chains[0]&&("string"==typeof B.chains[0]&&B.chains[0].toLowerCase().indexOf("bitcoin")<0||"object"==typeof B.chains[0]&&B.chains[0].hasOwnProperty("chain")&&B.chains[0].chain&&B.chains[0].chain.toLowerCase().indexOf("bitcoin")<0)?(this.store.dispatch((0,M.e8)({payload:{action:"FetchInfo",status:m.wn.COMPLETED}})),this.store.dispatch((0,P.Jh)()),this.store.dispatch((0,P.xO)({payload:{data:{type:m.A$.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}})),{type:m.aU.LOGOUT}):B.identity_pubkey?(B.lnImplementation="LND",this.initializeRemainingData(B,I.payload.loadPage),this.store.dispatch((0,M.e8)({payload:{action:"FetchInfo",status:m.wn.COMPLETED}})),this.store.dispatch((0,P.Jh)()),{type:m.QP.SET_INFO_LND,payload:B||{}}):(this.store.dispatch((0,M.e8)({payload:{action:"FetchInfo",status:m.wn.COMPLETED}})),this.store.dispatch((0,P.Jh)()),this.sessionService.removeItem("lndUnlocked"),this.logger.info("Redirecting to Unlock"),this.router.navigate(["/lnd/wallet"]),{type:m.QP.SET_INFO_LND,payload:{}}))),(0,S.W)(B=>{if("string"==typeof B.error.error&&B.error.error.includes("Not Found")||"string"==typeof B.error.error&&B.error.error.includes("wallet locked")||502===B.status&&!B.error.message.includes("Bad or Missing Macaroon"))this.sessionService.removeItem("lndUnlocked"),this.logger.info("Redirecting to Unlock"),this.router.navigate(["/lnd/wallet"]),this.handleErrorWithoutAlert("FetchInfo",m.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",B);else if("string"==typeof B.error.error&&B.error.error.includes("starting up")&&500===B.status)setTimeout(()=>{this.store.dispatch((0,M.Br)({payload:{loadPage:"HOME"}}))},2e3);else{const re=this.commonService.extractErrorCode(B),pe=503===re?"Unable to Connect to LND Server.":this.commonService.extractErrorMessage(B);this.router.navigate(["/error"],{state:{errorCode:re,errorMessage:pe}}),this.handleErrorWithoutAlert("FetchInfo",m.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:re,error:pe})}return(0,p.of)({type:m.aU.VOID})})))))),this.peersFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.FETCH_PEERS_LND),(0,e.Z)(()=>(this.store.dispatch((0,M.e8)({payload:{action:"FetchPeers",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.PEERS_API).pipe((0,c.T)(I=>(this.logger.info(I),this.store.dispatch((0,M.e8)({payload:{action:"FetchPeers",status:m.wn.COMPLETED}})),{type:m.QP.SET_PEERS_LND,payload:I||[]})),(0,S.W)(I=>(this.handleErrorWithoutAlert("FetchPeers",m.MZ.NO_SPINNER,"Fetching Peers Failed.",I),(0,p.of)({type:m.aU.VOID})))))))),this.saveNewPeer=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.SAVE_NEW_PEER_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:m.MZ.CONNECT_PEER})),this.store.dispatch((0,M.e8)({payload:{action:"SaveNewPeer",status:m.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+m.rl.PEERS_API,{pubkey:I.payload.pubkey,host:I.payload.host,perm:I.payload.perm}).pipe((0,c.T)(B=>(this.logger.info(B),this.store.dispatch((0,M.e8)({payload:{action:"SaveNewPeer",status:m.wn.COMPLETED}})),this.store.dispatch((0,P.y0)({payload:m.MZ.CONNECT_PEER})),this.store.dispatch((0,M.Qj)({payload:B||[]})),{type:m.QP.NEWLY_ADDED_PEER_LND,payload:{peer:B[0]}})),(0,S.W)(B=>(this.handleErrorWithoutAlert("SaveNewPeer",m.MZ.CONNECT_PEER,"Peer Connection Failed.",B),(0,p.of)({type:m.aU.VOID})))))))),this.detachPeer=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.DETACH_PEER_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:m.MZ.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+m.rl.PEERS_API+"/"+I.payload.pubkey).pipe((0,c.T)(B=>(this.logger.info(B),this.store.dispatch((0,P.y0)({payload:m.MZ.DISCONNECT_PEER})),this.store.dispatch((0,P.UI)({payload:"Peer Disconnected Successfully."})),{type:m.QP.REMOVE_PEER_LND,payload:{pubkey:I.payload.pubkey}})),(0,S.W)(B=>(this.handleErrorWithAlert("DetachPeer",m.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+m.rl.PEERS_API+"/"+I.payload.pubkey,B),(0,p.of)({type:m.aU.VOID})))))))),this.saveNewInvoice=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.SAVE_NEW_INVOICE_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:I.payload.uiMessage})),this.store.dispatch((0,M.e8)({payload:{action:"SaveNewInvoice",status:m.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+m.rl.INVOICES_API,{memo:I.payload.memo,value:I.payload.value,private:I.payload.private,expiry:I.payload.expiry,is_amp:I.payload.is_amp}).pipe((0,c.T)(B=>(this.logger.info(B),this.store.dispatch((0,M.e8)({payload:{action:"SaveNewInvoice",status:m.wn.COMPLETED}})),this.store.dispatch((0,M.Do)({payload:{num_max_invoices:I.payload.pageSize,reversed:!0}})),I.payload.openModal?(B.memo=I.payload.memo,B.value=I.payload.value,B.expiry=I.payload.expiry,B.private=I.payload.private,B.is_amp=I.payload.is_amp,B.cltv_expiry="144",B.creation_date=Math.round((new Date).getTime()/1e3).toString(),setTimeout(()=>{this.store.dispatch((0,P.xO)({payload:{data:{invoice:B,newlyAdded:!0,component:d.H}}}))},200),{type:m.aU.CLOSE_SPINNER,payload:I.payload.uiMessage}):{type:m.QP.NEWLY_SAVED_INVOICE_LND,payload:{paymentRequest:B.payment_request}})),(0,S.W)(B=>(this.handleErrorWithoutAlert("SaveNewInvoice",I.payload.uiMessage,"Add Invoice Failed.",B),(0,p.of)({type:m.aU.VOID})))))))),this.openNewChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.SAVE_NEW_CHANNEL_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:m.MZ.OPEN_CHANNEL})),this.store.dispatch((0,M.e8)({payload:{action:"SaveNewChannel",status:m.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+m.rl.CHANNELS_API,{node_pubkey:I.payload.selectedPeerPubkey,local_funding_amount:I.payload.fundingAmount,private:I.payload.private,trans_type:I.payload.transType,trans_type_value:I.payload.transTypeValue,spend_unconfirmed:I.payload.spendUnconfirmed,commitment_type:I.payload.commitmentType}).pipe((0,c.T)(B=>(this.logger.info(B),this.store.dispatch((0,M.e8)({payload:{action:"SaveNewChannel",status:m.wn.COMPLETED}})),this.store.dispatch((0,P.y0)({payload:m.MZ.OPEN_CHANNEL})),this.store.dispatch((0,M.DY)()),this.store.dispatch((0,M.$Q)()),this.store.dispatch((0,M.H2)({payload:{uiMessage:m.MZ.NO_SPINNER,channelPoint:"ALL",showMessage:"Channel Added Successfully!"}})),{type:m.QP.FETCH_PENDING_CHANNELS_LND})),(0,S.W)(B=>(this.handleErrorWithoutAlert("SaveNewChannel",m.MZ.OPEN_CHANNEL,"Opening Channel Failed.",B),(0,p.of)({type:m.aU.VOID})))))))),this.updateChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.UPDATE_CHANNEL_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:m.MZ.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+m.rl.CHANNELS_API+"/chanPolicy",{baseFeeMsat:I.payload.baseFeeMsat,feeRate:I.payload.feeRate,timeLockDelta:I.payload.timeLockDelta,max_htlc_msat:I.payload.maxHtlcMsat,min_htlc_msat:I.payload.minHtlcMsat,chanPoint:I.payload.chanPoint}).pipe((0,c.T)(B=>(this.logger.info(B),this.store.dispatch((0,P.y0)({payload:m.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,P.UI)("all"===I.payload.chanPoint?{payload:"All Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:m.QP.FETCH_CHANNELS_LND})),(0,S.W)(B=>(this.handleErrorWithAlert("UpdateChannels",m.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+m.rl.CHANNELS_API+"/chanPolicy",B),(0,p.of)({type:m.aU.VOID})))))))),this.closeChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.CLOSE_CHANNEL_LND),(0,e.Z)(I=>{this.store.dispatch((0,P.mt)({payload:I.payload.forcibly?m.MZ.FORCE_CLOSE_CHANNEL:m.MZ.CLOSE_CHANNEL}));let B=this.CHILD_API_URL+m.rl.CHANNELS_API+"/"+I.payload.channelPoint+"?force="+I.payload.forcibly;return I.payload.targetConf&&(B=B+"&target_conf="+I.payload.targetConf),I.payload.satPerByte&&(B=B+"&sat_per_byte="+I.payload.satPerByte),this.httpClient.delete(B).pipe((0,c.T)(re=>(this.logger.info(re),this.store.dispatch((0,P.y0)({payload:I.payload.forcibly?m.MZ.FORCE_CLOSE_CHANNEL:m.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,M.$Q)()),this.store.dispatch((0,M.ar)()),this.store.dispatch((0,M.H2)({payload:{uiMessage:m.MZ.NO_SPINNER,channelPoint:"ALL",showMessage:re.message}})),{type:m.aU.VOID})),(0,S.W)(re=>(this.handleErrorWithAlert("CloseChannel",I.payload.forcibly?m.MZ.FORCE_CLOSE_CHANNEL:m.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+m.rl.CHANNELS_API+"/"+I.payload.channelPoint+"?force="+I.payload.forcibly,re),(0,p.of)({type:m.aU.VOID}))))}))),this.backupChannels=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.BACKUP_CHANNELS_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:I.payload.uiMessage})),this.store.dispatch((0,M.e8)({payload:{action:"BackupChannels",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.CHANNELS_BACKUP_API+"/"+I.payload.channelPoint).pipe((0,c.T)(B=>(this.logger.info(B),this.store.dispatch((0,M.e8)({payload:{action:"BackupChannels",status:m.wn.COMPLETED}})),this.store.dispatch((0,P.y0)({payload:I.payload.uiMessage})),this.store.dispatch((0,P.UI)({payload:I.payload.showMessage+" "+B.message})),{type:m.QP.BACKUP_CHANNELS_RES_LND,payload:B.message})),(0,S.W)(B=>(this.handleErrorWithAlert("BackupChannels",I.payload.uiMessage,I.payload.showMessage+" Unable to Backup Channel. Try again later.",this.CHILD_API_URL+m.rl.CHANNELS_BACKUP_API+"/"+I.payload.channelPoint,B),(0,p.of)({type:m.aU.VOID})))))))),this.verifyChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.VERIFY_CHANNEL_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:m.MZ.VERIFY_CHANNEL})),this.store.dispatch((0,M.e8)({payload:{action:"VerifyChannel",status:m.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+m.rl.CHANNELS_BACKUP_API+"/verify/"+I.payload.channelPoint,{}).pipe((0,c.T)(B=>(this.logger.info(B),this.store.dispatch((0,M.e8)({payload:{action:"VerifyChannel",status:m.wn.COMPLETED}})),this.store.dispatch((0,P.y0)({payload:m.MZ.VERIFY_CHANNEL})),this.store.dispatch((0,P.UI)({payload:B.message})),{type:m.QP.VERIFY_CHANNEL_RES_LND,payload:B.message})),(0,S.W)(B=>(this.handleErrorWithAlert("VerifyChannel",m.MZ.VERIFY_CHANNEL,"Unable to Verify Channel. Try again later.",this.CHILD_API_URL+m.rl.CHANNELS_BACKUP_API+"/verify/"+I.payload.channelPoint,B),(0,p.of)({type:m.aU.VOID})))))))),this.restoreChannels=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.RESTORE_CHANNELS_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:m.MZ.RESTORE_CHANNEL})),this.store.dispatch((0,M.e8)({payload:{action:"RestoreChannels",status:m.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+m.rl.CHANNELS_BACKUP_API+"/restore/"+I.payload.channelPoint,{}).pipe((0,c.T)(B=>(this.logger.info(B),this.store.dispatch((0,M.e8)({payload:{action:"RestoreChannels",status:m.wn.COMPLETED}})),this.store.dispatch((0,P.y0)({payload:m.MZ.RESTORE_CHANNEL})),this.store.dispatch((0,P.UI)({payload:B.message})),this.store.dispatch((0,M.t5)({payload:B.list})),{type:m.QP.RESTORE_CHANNELS_RES_LND,payload:B.message})),(0,S.W)(B=>(this.handleErrorWithAlert("RestoreChannels",m.MZ.RESTORE_CHANNEL,"Unable to Restore Channel. Try again later.",this.CHILD_API_URL+m.rl.CHANNELS_BACKUP_API+"/restore/"+I.payload.channelPoint,B),(0,p.of)({type:m.aU.VOID})))))))),this.fetchFees=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.FETCH_FEES_LND),(0,e.Z)(()=>(this.store.dispatch((0,M.e8)({payload:{action:"FetchFees",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.FEES_API))),(0,c.T)(I=>(this.logger.info(I),this.store.dispatch((0,M.e8)({payload:{action:"FetchFees",status:m.wn.COMPLETED}})),I.forwarding_events_history&&(this.store.dispatch((0,M.kv)({payload:I.forwarding_events_history})),delete I.forwarding_events_history),{type:m.QP.SET_FEES_LND,payload:I||{}})),(0,S.W)(I=>(this.handleErrorWithoutAlert("FetchFees",m.MZ.NO_SPINNER,"Fetching Fees Failed.",I),(0,p.of)({type:m.aU.VOID}))))),this.balanceBlockchainFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.FETCH_BLOCKCHAIN_BALANCE_LND),(0,e.Z)(()=>(this.store.dispatch((0,M.e8)({payload:{action:"FetchBalance",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.BALANCE_API))),(0,c.T)(I=>(this.store.dispatch((0,M.e8)({payload:{action:"FetchBalance",status:m.wn.COMPLETED}})),this.logger.info(I),{type:m.QP.SET_BLOCKCHAIN_BALANCE_LND,payload:I||{total_balance:""}})),(0,S.W)(I=>(this.handleErrorWithoutAlert("FetchBalance",m.MZ.NO_SPINNER,"Fetching Blockchain Balance Failed.",I),(0,p.of)({type:m.aU.VOID}))))),this.networkInfoFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.FETCH_NETWORK_LND),(0,e.Z)(()=>(this.store.dispatch((0,M.e8)({payload:{action:"FetchNetwork",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.NETWORK_API+"/info"))),(0,c.T)(I=>(this.logger.info(I),this.store.dispatch((0,M.e8)({payload:{action:"FetchNetwork",status:m.wn.COMPLETED}})),{type:m.QP.SET_NETWORK_LND,payload:I||{}})),(0,S.W)(I=>(this.handleErrorWithoutAlert("FetchNetwork",m.MZ.NO_SPINNER,"Fetching Network Failed.",I),(0,p.of)({type:m.aU.VOID}))))),this.channelsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.FETCH_CHANNELS_LND),(0,e.Z)(()=>(this.store.dispatch((0,M.e8)({payload:{action:"FetchChannels",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.CHANNELS_API).pipe((0,c.T)(I=>(this.logger.info(I),this.store.dispatch((0,M.e8)({payload:{action:"FetchChannels",status:m.wn.COMPLETED}})),{type:m.QP.SET_CHANNELS_LND,payload:I.channels||[]})),(0,S.W)(I=>(this.handleErrorWithoutAlert("FetchChannels",m.MZ.NO_SPINNER,"Fetching Channels Failed.",I),(0,p.of)({type:m.aU.VOID})))))))),this.channelsPendingFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.FETCH_PENDING_CHANNELS_LND),(0,e.Z)(()=>(this.store.dispatch((0,M.e8)({payload:{action:"FetchPendingChannels",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.CHANNELS_API+"/pending").pipe((0,c.T)(I=>{this.logger.info(I),this.store.dispatch((0,M.e8)({payload:{action:"FetchPendingChannels",status:m.wn.COMPLETED}}));const B={open:{num_channels:0,limbo_balance:0},closing:{num_channels:0,limbo_balance:0},force_closing:{num_channels:0,limbo_balance:0},waiting_close:{num_channels:0,limbo_balance:0},total_channels:0,total_limbo_balance:0};return I&&(B.total_limbo_balance=I.total_limbo_balance,I.pending_closing_channels&&(B.closing.num_channels=I.pending_closing_channels.length,B.total_channels=B.total_channels+I.pending_closing_channels.length,I.pending_closing_channels.forEach(re=>{B.closing.limbo_balance=+B.closing.limbo_balance+(re.channel.local_balance?+re.channel.local_balance:0)})),I.pending_force_closing_channels&&(B.force_closing.num_channels=I.pending_force_closing_channels.length,B.total_channels=B.total_channels+I.pending_force_closing_channels.length,I.pending_force_closing_channels.forEach(re=>{B.force_closing.limbo_balance=+B.force_closing.limbo_balance+(re.channel.local_balance?+re.channel.local_balance:0)})),I.pending_open_channels&&(B.open.num_channels=I.pending_open_channels.length,B.total_channels=B.total_channels+I.pending_open_channels.length,I.pending_open_channels.forEach(re=>{B.open.limbo_balance=+B.open.limbo_balance+(re.channel.local_balance?+re.channel.local_balance:0)})),I.waiting_close_channels&&(B.waiting_close.num_channels=I.waiting_close_channels.length,B.total_channels=B.total_channels+I.waiting_close_channels.length,I.waiting_close_channels.forEach(re=>{B.waiting_close.limbo_balance=+B.waiting_close.limbo_balance+(re.channel.local_balance?+re.channel.local_balance:0)}))),{type:m.QP.SET_PENDING_CHANNELS_LND,payload:I?{pendingChannels:I,pendingChannelsSummary:B}:{pendingChannels:{},pendingChannelsSummary:B}}}),(0,S.W)(I=>(this.handleErrorWithoutAlert("FetchPendingChannels",m.MZ.NO_SPINNER,"Fetching Pending Channels Failed.",I),(0,p.of)({type:m.aU.VOID})))))))),this.channelsClosedFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.FETCH_CLOSED_CHANNELS_LND),(0,e.Z)(()=>(this.store.dispatch((0,M.e8)({payload:{action:"FetchClosedChannels",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.CHANNELS_API+"/closed").pipe((0,c.T)(I=>(this.logger.info(I),this.store.dispatch((0,M.e8)({payload:{action:"FetchClosedChannels",status:m.wn.COMPLETED}})),{type:m.QP.SET_CLOSED_CHANNELS_LND,payload:I.channels||[]})),(0,S.W)(I=>(this.handleErrorWithoutAlert("FetchClosedChannels",m.MZ.NO_SPINNER,"Fetching Closed Channels Failed.",I),(0,p.of)({type:m.aU.VOID})))))))),this.invoicesFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.FETCH_INVOICES_LND),(0,e.Z)(I=>(this.store.dispatch((0,M.e8)({payload:{action:"FetchInvoices",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.INVOICES_API+"?num_max_invoices="+(I.payload.num_max_invoices?I.payload.num_max_invoices:100)+"&index_offset="+(I.payload.index_offset?I.payload.index_offset:0)+"&reversed="+(!!I.payload.reversed&&I.payload.reversed)).pipe((0,c.T)(be=>(this.logger.info(be),this.store.dispatch((0,M.e8)({payload:{action:"FetchInvoices",status:m.wn.COMPLETED}})),I.payload.reversed&&!I.payload.index_offset&&(be.total_invoices=+(be.last_index_offset||0)),{type:m.QP.SET_INVOICES_LND,payload:be})),(0,S.W)(be=>(this.handleErrorWithoutAlert("FetchInvoices",m.MZ.NO_SPINNER,"Fetching Invoices Failed.",be),(0,p.of)({type:m.aU.VOID})))))))),this.transactionsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.FETCH_TRANSACTIONS_LND),(0,e.Z)(()=>(this.store.dispatch((0,M.e8)({payload:{action:"FetchTransactions",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.TRANSACTIONS_API))),(0,c.T)(I=>(this.logger.info(I),this.store.dispatch((0,M.e8)({payload:{action:"FetchTransactions",status:m.wn.COMPLETED}})),{type:m.QP.SET_TRANSACTIONS_LND,payload:I||[]})),(0,S.W)(I=>(this.handleErrorWithoutAlert("FetchTransactions",m.MZ.NO_SPINNER,"Fetching Transactions Failed.",I),(0,p.of)({type:m.aU.VOID}))))),this.utxosFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.FETCH_UTXOS_LND),(0,g.E)(this.store.select(j.pI)),(0,e.Z)(([I,B])=>(this.store.dispatch((0,M.e8)({payload:{action:"FetchUTXOs",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.WALLET_API+"/getUTXOs?max_confs="+(B&&B.block_height?B.block_height:1e9)))),(0,c.T)(I=>(this.logger.info(I),this.store.dispatch((0,M.e8)({payload:{action:"FetchUTXOs",status:m.wn.COMPLETED}})),{type:m.QP.SET_UTXOS_LND,payload:I||[]})),(0,S.W)(I=>(this.handleErrorWithoutAlert("FetchUTXOs",m.MZ.NO_SPINNER,"Fetching UTXOs Failed.",I),(0,p.of)({type:m.aU.VOID}))))),this.paymentsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.FETCH_PAYMENTS_LND),(0,e.Z)(I=>(this.store.dispatch((0,M.e8)({payload:{action:"FetchPayments",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.PAYMENTS_API+"?max_payments="+(I.payload.max_payments?I.payload.max_payments:100)+"&index_offset="+(I.payload.index_offset?I.payload.index_offset:0)+"&reversed="+(!!I.payload.reversed&&I.payload.reversed)).pipe((0,c.T)(be=>(this.logger.info(be),this.store.dispatch((0,M.e8)({payload:{action:"FetchPayments",status:m.wn.COMPLETED}})),this.commonService.sortByKey(be.payments||[],this.paymentsPageSettings?.sortBy||"creation_date","number",this.paymentsPageSettings?.sortOrder),{type:m.QP.SET_PAYMENTS_LND,payload:be})),(0,S.W)(be=>(this.handleErrorWithoutAlert("FetchPayments",m.MZ.NO_SPINNER,"Fetching Payments Failed.",be),(0,p.of)({type:m.QP.SET_PAYMENTS_LND,payload:{payments:[]}})))))))),this.sendPayment=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.SEND_PAYMENT_LND),(0,e.Z)(I=>{this.store.dispatch((0,P.mt)({payload:I.payload.uiMessage})),this.store.dispatch((0,M.e8)({payload:{action:"SendPayment",status:m.wn.INITIATED}}));const B=JSON.parse(JSON.stringify(I.payload));return delete B.uiMessage,delete B.fromDialog,this.httpClient.post(this.CHILD_API_URL+m.rl.PAYMENTS_API+"/send",B).pipe((0,c.T)(re=>{if(this.logger.info(re),this.store.dispatch((0,P.y0)({payload:I.payload.uiMessage})),this.store.dispatch((0,M.e8)({payload:{action:"SendPayment",status:m.wn.COMPLETED}})),re.payment_error)return I.payload.allow_self_payment?(this.store.dispatch((0,M.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}})),{type:m.QP.SEND_PAYMENT_STATUS_LND,payload:re}):(I.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",I.payload.uiMessage,"Send Payment Failed.",re.payment_error):this.handleErrorWithAlert("SendPayment",I.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+m.rl.CHANNELS_API+"/transactions",re.payment_error),{type:m.aU.VOID});if(this.store.dispatch((0,P.y0)({payload:I.payload.uiMessage})),this.store.dispatch((0,M.e8)({payload:{action:"SendPayment",status:m.wn.COMPLETED}})),this.store.dispatch((0,M.$Q)()),this.store.dispatch((0,M.CK)({payload:{max_payments:this.paymentsPageSettings?.recordsPerPage,reversed:!0}})),I.payload.allow_self_payment)this.store.dispatch((0,M.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}));else{let pe="Payment Sent Successfully.";re.payment_route&&re.payment_route.total_fees_msat&&(pe="Payment sent successfully with the total fee "+re.payment_route.total_fees_msat+" (mSats)."),this.store.dispatch((0,P.UI)({payload:pe}))}return{type:m.QP.SEND_PAYMENT_STATUS_LND,payload:re}}),(0,S.W)(re=>(this.logger.error("Error: "+JSON.stringify(re)),I.payload.allow_self_payment?(this.handleErrorWithoutAlert("SendPayment",I.payload.uiMessage,"Send Payment Failed.",re),this.store.dispatch((0,M.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}})),(0,p.of)({type:m.QP.SEND_PAYMENT_STATUS_LND,payload:{error:this.commonService.extractErrorMessage(re)}})):(I.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",I.payload.uiMessage,"Send Payment Failed.",re):this.handleErrorWithAlert("SendPayment",I.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+m.rl.CHANNELS_API+"/transactions",re),(0,p.of)({type:m.aU.VOID})))))}))),this.graphNodeFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.FETCH_GRAPH_NODE_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:m.MZ.GET_NODE_ADDRESS})),this.store.dispatch((0,M.e8)({payload:{action:"FetchGraphNode",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.NETWORK_API+"/node/"+I.payload.pubkey).pipe((0,c.T)(B=>(this.logger.info(B),this.store.dispatch((0,P.y0)({payload:m.MZ.GET_NODE_ADDRESS})),this.store.dispatch((0,M.e8)({payload:{action:"FetchGraphNode",status:m.wn.COMPLETED}})),{type:m.QP.SET_GRAPH_NODE_LND,payload:B&&B.node?{node:B.node}:{node:null}})),(0,S.W)(B=>(this.handleErrorWithoutAlert("FetchGraphNode",m.MZ.GET_NODE_ADDRESS,"Fetching Graph Node Failed.",B),(0,p.of)({type:m.aU.VOID})))))))),this.setGraphNode=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.SET_GRAPH_NODE_LND),(0,c.T)(I=>(this.logger.info(I.payload),I.payload))),{dispatch:!1}),this.getNewAddress=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.GET_NEW_ADDRESS_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:m.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+m.rl.NEW_ADDRESS_API+"?type="+I.payload.addressId).pipe((0,c.T)(B=>(this.logger.info(B),this.store.dispatch((0,P.y0)({payload:m.MZ.GENERATE_NEW_ADDRESS})),{type:m.QP.SET_NEW_ADDRESS_LND,payload:B&&B.address?B.address:{}})),(0,S.W)(B=>(this.handleErrorWithAlert("GetNewAddress",m.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+m.rl.NEW_ADDRESS_API+"?type="+I.payload.addressId,B),(0,p.of)({type:m.aU.VOID})))))))),this.setNewAddress=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.SET_NEW_ADDRESS_LND),(0,c.T)(I=>(this.logger.info(I.payload),I.payload))),{dispatch:!1}),this.SetChannelTransaction=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.SET_CHANNEL_TRANSACTION_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:m.MZ.SEND_FUNDS})),this.store.dispatch((0,M.e8)({payload:{action:"SetChannelTransaction",status:m.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+m.rl.TRANSACTIONS_API,{amount:I.payload.amount,address:I.payload.address,sendAll:I.payload.sendAll,fees:I.payload.fees,blocks:I.payload.blocks}).pipe((0,c.T)(B=>(this.logger.info(B),this.store.dispatch((0,M.e8)({payload:{action:"SetChannelTransaction",status:m.wn.COMPLETED}})),this.store.dispatch((0,P.y0)({payload:m.MZ.SEND_FUNDS})),this.store.dispatch((0,M.mh)()),this.store.dispatch((0,M.DY)()),this.store.dispatch((0,M.$Q)()),{type:m.QP.SET_CHANNEL_TRANSACTION_RES_LND,payload:B})),(0,S.W)(B=>(this.handleErrorWithoutAlert("SetChannelTransaction",m.MZ.SEND_FUNDS,"Sending Fund Failed.",B),(0,p.of)({type:m.aU.VOID})))))))),this.fetchForwardingHistory=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.GET_FORWARDING_HISTORY_LND),(0,e.Z)(I=>(this.store.dispatch((0,M.e8)({payload:{action:"FetchForwardingHistory",status:m.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+m.rl.SWITCH_API,{num_max_events:I.payload.num_max_events,index_offset:I.payload.index_offset,end_time:I.payload.end_time,start_time:I.payload.start_time}).pipe((0,c.T)(re=>(this.logger.info(re),this.store.dispatch((0,M.e8)({payload:{action:"FetchForwardingHistory",status:m.wn.COMPLETED}})),{type:m.QP.SET_FORWARDING_HISTORY_LND,payload:re})),(0,S.W)(re=>(this.handleErrorWithAlert("FetchForwardingHistory",m.MZ.NO_SPINNER,"Get Forwarding History Failed",this.CHILD_API_URL+m.rl.SWITCH_API,re),(0,p.of)({type:m.aU.VOID})))))))),this.queryRoutesFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.GET_QUERY_ROUTES_LND),(0,e.Z)(I=>{let B=this.CHILD_API_URL+m.rl.NETWORK_API+"/routes/"+I.payload.destPubkey+"/"+I.payload.amount;return I.payload.outgoingChanId&&(B=B+"?outgoing_chan_id="+I.payload.outgoingChanId),this.httpClient.get(B).pipe((0,c.T)(re=>(this.logger.info(re),{type:m.QP.SET_QUERY_ROUTES_LND,payload:re})),(0,S.W)(re=>(this.store.dispatch((0,M.Hm)({payload:{routes:[]}})),this.handleErrorWithAlert("GetQueryRoutes",m.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+m.rl.NETWORK_API,re),(0,p.of)({type:m.aU.VOID}))))}))),this.setQueryRoutes=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.SET_QUERY_ROUTES_LND),(0,c.T)(I=>I.payload)),{dispatch:!1}),this.genSeed=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.GEN_SEED_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:m.MZ.GEN_SEED})),this.httpClient.get(this.CHILD_API_URL+m.rl.WALLET_API+"/genseed/"+I.payload).pipe((0,c.T)(B=>(this.logger.info("Generated GenSeed!"),this.logger.info(B),this.store.dispatch((0,P.y0)({payload:m.MZ.GEN_SEED})),{type:m.QP.GEN_SEED_RESPONSE_LND,payload:B.cipher_seed_mnemonic})),(0,S.W)(B=>(this.handleErrorWithAlert("GenSeed",m.MZ.GEN_SEED,"Genseed Generation Failed",this.CHILD_API_URL+m.rl.WALLET_API+"/genseed/"+I.payload,B),(0,p.of)({type:m.aU.VOID})))))))),this.updateSelNodeOptions=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.UPDATE_SELECTED_NODE_OPTIONS),(0,e.Z)(()=>this.httpClient.get(this.CHILD_API_URL+m.rl.WALLET_API+"/updateSelNodeOptions").pipe((0,c.T)(I=>(this.logger.info("Update Sel Node Successfull"),this.logger.info(I),{type:m.aU.VOID})),(0,S.W)(I=>(this.handleErrorWithAlert("UpdateSelectedNodeOptions",m.MZ.NO_SPINNER,"Update macaroon for newly initialized node failed! Please check the macaroon path and restart the server!","Update Macaroon",I),(0,p.of)({type:m.aU.VOID}))))))),this.genSeedResponse=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.GEN_SEED_RESPONSE_LND),(0,c.T)(I=>I.payload)),{dispatch:!1}),this.initWalletRes=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.INIT_WALLET_RESPONSE_LND),(0,c.T)(I=>I.payload)),{dispatch:!1}),this.initWallet=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.INIT_WALLET_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:m.MZ.INITIALIZE_WALLET})),this.httpClient.post(this.CHILD_API_URL+m.rl.WALLET_API+"/wallet/initwallet",{wallet_password:I.payload.pwd,cipher_seed_mnemonic:I.payload.cipher?I.payload.cipher:"",aezeed_passphrase:I.payload.passphrase?I.payload.passphrase:""}).pipe((0,c.T)(B=>(this.logger.info(B),this.store.dispatch((0,P.y0)({payload:m.MZ.INITIALIZE_WALLET})),{type:m.QP.INIT_WALLET_RESPONSE_LND,payload:B})),(0,S.W)(B=>(this.handleErrorWithAlert("InitWallet",m.MZ.INITIALIZE_WALLET,"Wallet Initialization Failed",this.CHILD_API_URL+m.rl.WALLET_API+"/initwallet",B),(0,p.of)({type:m.aU.VOID})))))))),this.unlockWallet=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.UNLOCK_WALLET_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:m.MZ.UNLOCK_WALLET})),this.httpClient.post(this.CHILD_API_URL+m.rl.WALLET_API+"/wallet/unlockwallet",{wallet_password:I.payload.pwd}).pipe((0,c.T)(B=>(this.logger.info(B),this.logger.info("Successfully Unlocked!"),this.sessionService.setItem("lndUnlocked","true"),this.store.dispatch((0,P.y0)({payload:m.MZ.UNLOCK_WALLET})),this.store.dispatch((0,P.mt)({payload:m.MZ.WAIT_SYNC_NODE})),setTimeout(()=>{this.store.dispatch((0,P.y0)({payload:m.MZ.WAIT_SYNC_NODE})),this.store.dispatch((0,M.Br)({payload:{loadPage:"HOME"}}))},5e3),{type:m.aU.VOID})),(0,S.W)(B=>(this.handleErrorWithAlert("UnlockWallet",m.MZ.UNLOCK_WALLET,"Unlock Wallet Failed",this.CHILD_API_URL+m.rl.WALLET_API+"/unlockwallet",B),(0,p.of)({type:m.aU.VOID}))))))),{dispatch:!1}),this.peerLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.PEER_LOOKUP_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:m.MZ.SEARCHING_NODE})),this.store.dispatch((0,M.e8)({payload:{action:"Lookup",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.NETWORK_API+"/node/"+I.payload).pipe((0,c.T)(B=>(this.logger.info(B),this.store.dispatch((0,P.y0)({payload:m.MZ.SEARCHING_NODE})),this.store.dispatch((0,M.e8)({payload:{action:"Lookup",status:m.wn.COMPLETED}})),{type:m.QP.SET_LOOKUP_LND,payload:B})),(0,S.W)(B=>(this.handleErrorWithAlert("Lookup",m.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+m.rl.NETWORK_API+"/node/"+I.payload,B),(0,p.of)({type:m.aU.VOID})))))))),this.channelLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.CHANNEL_LOOKUP_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:I.payload.uiMessage})),this.store.dispatch((0,M.e8)({payload:{action:"Lookup",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.NETWORK_API+"/edge/"+I.payload.channelID).pipe((0,c.T)(B=>(this.logger.info(B),this.store.dispatch((0,P.y0)({payload:I.payload.uiMessage})),this.store.dispatch((0,M.e8)({payload:{action:"Lookup",status:m.wn.COMPLETED}})),{type:m.QP.SET_LOOKUP_LND,payload:B})),(0,S.W)(B=>(this.handleErrorWithAlert("Lookup",I.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+m.rl.NETWORK_API+"/edge/"+I.payload.channelID,B),(0,p.of)({type:m.aU.VOID})))))))),this.invoiceLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.INVOICE_LOOKUP_LND),(0,e.Z)(I=>{this.store.dispatch((0,P.mt)({payload:m.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,M.e8)({payload:{action:"Lookup",status:m.wn.INITIATED}}));let B=this.CHILD_API_URL+m.rl.INVOICES_API+"/lookup";return B=I.payload.paymentAddress&&""!==I.payload.paymentAddress?B+"?payment_addr="+I.payload.paymentAddress:B+"?payment_hash="+I.payload.paymentHash,this.httpClient.get(B).pipe((0,c.T)(re=>(this.logger.info(re),this.store.dispatch((0,P.y0)({payload:m.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,M.e8)({payload:{action:"Lookup",status:m.wn.COMPLETED}})),this.store.dispatch((0,M.Dq)({payload:re})),{type:m.QP.SET_LOOKUP_LND,payload:re})),(0,S.W)(re=>(this.store.dispatch((0,M.e8)({payload:{action:"Lookup",status:m.wn.ERROR}})),this.handleErrorWithoutAlert("Lookup",m.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",re),I.payload.openSnackBar&&this.store.dispatch((0,P.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,p.of)({type:m.QP.SET_LOOKUP_LND,payload:{error:re}}))))}))),this.paymentLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.PAYMENT_LOOKUP_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:m.MZ.SEARCHING_PAYMENT})),this.store.dispatch((0,M.e8)({payload:{action:"Lookup",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.PAYMENTS_API+"/lookup/"+I.payload).pipe((0,c.T)(B=>(this.logger.info(B),this.store.dispatch((0,P.y0)({payload:m.MZ.SEARCHING_PAYMENT})),this.store.dispatch((0,M.e8)({payload:{action:"Lookup",status:m.wn.COMPLETED}})),this.store.dispatch((0,M._$)({payload:B})),{type:m.QP.SET_LOOKUP_LND,payload:B})),(0,S.W)(B=>(this.store.dispatch((0,M.e8)({payload:{action:"Lookup",status:m.wn.ERROR}})),this.handleErrorWithoutAlert("Lookup",m.MZ.SEARCHING_PAYMENT,"Payment Lookup Failed",B),(0,p.of)({type:m.QP.SET_LOOKUP_LND,payload:{error:B}})))))))),this.setLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.SET_LOOKUP_LND),(0,c.T)(I=>(this.logger.info(I.payload),I.payload))),{dispatch:!1}),this.getRestoreChannelList=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.RESTORE_CHANNELS_LIST_LND),(0,e.Z)(()=>(this.store.dispatch((0,M.e8)({payload:{action:"RestoreChannelsList",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.CHANNELS_BACKUP_API+"/restore/list").pipe((0,c.T)(I=>(this.logger.info(I),this.store.dispatch((0,M.e8)({payload:{action:"RestoreChannelsList",status:m.wn.COMPLETED}})),{type:m.QP.SET_RESTORE_CHANNELS_LIST_LND,payload:I||{all_restore_exists:!1,files:[]}})),(0,S.W)(I=>(this.handleErrorWithAlert("RestoreChannelsList",m.MZ.NO_SPINNER,"Restore Channels List Failed",this.CHILD_API_URL+m.rl.CHANNELS_BACKUP_API,I),(0,p.of)({type:m.aU.VOID})))))))),this.setRestoreChannelList=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.SET_RESTORE_CHANNELS_LIST_LND),(0,c.T)(I=>(this.logger.info(I.payload),I.payload))),{dispatch:!1}),this.allLightningTransactionsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.GET_ALL_LIGHTNING_TRANSATIONS_LND),(0,e.Z)(()=>(this.store.dispatch((0,M.e8)({payload:{action:"FetchLightningTransactions",status:m.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+m.rl.PAYMENTS_API+"/alltransactions").pipe((0,c.T)(I=>(this.logger.info(I),this.store.dispatch((0,M.e8)({payload:{action:"FetchLightningTransactions",status:m.wn.COMPLETED}})),{type:m.QP.SET_ALL_LIGHTNING_TRANSATIONS_LND,payload:I})),(0,S.W)(I=>(this.handleErrorWithoutAlert("FetchLightningTransactions",m.MZ.NO_SPINNER,"Fetching All Lightning Transaction Failed.",I),(0,p.of)({type:m.aU.VOID})))))))),this.pageSettingsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.FETCH_PAGE_SETTINGS_LND),(0,e.Z)(()=>(this.store.dispatch((0,M.e8)({payload:{action:"FetchPageSettings",status:m.wn.INITIATED}})),this.httpClient.get(m.rl.PAGE_SETTINGS_API).pipe((0,c.T)(I=>(this.logger.info(I),this.store.dispatch((0,M.e8)({payload:{action:"FetchPageSettings",status:m.wn.COMPLETED}})),this.invoicesPageSettings=I&&Object.keys(I).length>0?I.find(B=>"transactions"===B.pageId)?.tables.find(B=>"invoices"===B.tableId):m.ZC.find(B=>"transactions"===B.pageId)?.tables.find(B=>"invoices"===B.tableId),this.paymentsPageSettings=I&&Object.keys(I).length>0?I.find(B=>"transactions"===B.pageId)?.tables.find(B=>"payments"===B.tableId):m.ZC.find(B=>"transactions"===B.pageId)?.tables.find(B=>"payments"===B.tableId),{type:m.QP.SET_PAGE_SETTINGS_LND,payload:I||[]})),(0,S.W)(I=>(this.handleErrorWithoutAlert("FetchPageSettings",m.MZ.NO_SPINNER,"Fetching Page Settings Failed.",I),(0,p.of)({type:m.aU.VOID})))))))),this.savePageSettings=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(m.QP.SAVE_PAGE_SETTINGS_LND),(0,e.Z)(I=>(this.store.dispatch((0,P.mt)({payload:m.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,M.e8)({payload:{action:"SavePageSettings",status:m.wn.INITIATED}})),this.httpClient.post(m.rl.PAGE_SETTINGS_API,I.payload).pipe((0,c.T)(B=>{this.logger.info(B),this.store.dispatch((0,M.e8)({payload:{action:"SavePageSettings",status:m.wn.COMPLETED}})),this.store.dispatch((0,P.y0)({payload:m.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,P.UI)({payload:"Page Layout Updated Successfully!"}));const re=(B.find(be=>"transactions"===be.pageId)?.tables.find(be=>"invoices"===be.tableId)||m.ZC.find(be=>"transactions"===be.pageId)?.tables.find(be=>"invoices"===be.tableId)).recordsPerPage,pe=(B.find(be=>"transactions"===be.pageId)?.tables.find(be=>"payments"===be.tableId)||m.ZC.find(be=>"transactions"===be.pageId)?.tables.find(be=>"payments"===be.tableId)).recordsPerPage;return this.invoicesPageSettings&&re!==this.invoicesPageSettings?.recordsPerPage&&(this.invoicesPageSettings.recordsPerPage=re,this.store.dispatch((0,M.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}))),this.paymentsPageSettings&&pe!==this.paymentsPageSettings?.recordsPerPage&&(this.paymentsPageSettings.recordsPerPage=pe),{type:m.QP.SET_PAGE_SETTINGS_LND,payload:B||[]}}),(0,S.W)(B=>(this.handleErrorWithAlert("SavePageSettings",m.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",m.rl.PAGE_SETTINGS_API,B),(0,p.of)({type:m.aU.VOID})))))))),this.store.select(j.ru).pipe((0,T.Q)(this.unSubs[0])).subscribe(I=>{I.FetchInfo.status!==m.wn.COMPLETED&&I.FetchInfo.status!==m.wn.ERROR||I.FetchFees.status!==m.wn.COMPLETED&&I.FetchFees.status!==m.wn.ERROR||I.FetchBalanceBlockchain.status!==m.wn.COMPLETED&&I.FetchBalanceBlockchain.status!==m.wn.ERROR||I.FetchAllChannels.status!==m.wn.COMPLETED&&I.FetchAllChannels.status!==m.wn.ERROR||I.FetchPendingChannels.status!==m.wn.COMPLETED&&I.FetchPendingChannels.status!==m.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,P.y0)({payload:m.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.lndWSMessages.pipe((0,T.Q)(this.unSubs[1])).subscribe(I=>{this.logger.info("Received new message from the service: "+JSON.stringify(I)),I&&(I.type===m.o1.INVOICE?(this.logger.info(I),I&&I.result&&I.result.payment_request&&this.store.dispatch((0,M.Dq)({payload:I.result}))):this.logger.info("Received Event from WS: "+JSON.stringify(I)))})}initializeRemainingData(o,f){this.sessionService.setItem("lndUnlocked","true");const h={identity_pubkey:o.identity_pubkey,alias:o.alias,testnet:o.testnet,chains:o.chains,uris:o.uris,version:o.version?o.version.split(" ")[0]:""};this.store.dispatch((0,P.mt)({payload:m.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,P.Fl)({payload:h}));let b=this.location.path();b.includes("/cln/")?b=b?.replace("/cln/","/lnd/"):b.includes("/ecl/")&&(b=b?.replace("/ecl/","/lnd/")),(b.includes("/unlock")||b.includes("/login")||b.includes("/error")||""===b||"HOME"===f||b.includes("?access-key="))&&(b="/lnd/home"),this.router.navigate([b]),this.store.dispatch((0,M.DY)()),this.store.dispatch((0,M.$Q)()),this.store.dispatch((0,M.ar)()),this.store.dispatch((0,M.pL)()),this.store.dispatch((0,M.Gy)()),this.store.dispatch((0,M.tf)()),this.store.dispatch((0,M.yp)()),this.store.dispatch((0,M.CK)({payload:{max_payments:1e5,reversed:!0}})),this.store.dispatch((0,M.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}))}handleErrorWithoutAlert(o,f,h,b){this.logger.error("ERROR IN: "+o+"\n"+JSON.stringify(b)),401===b.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,P.Jh)()),this.store.dispatch((0,P.ri)({payload:"Authentication Failed: "+JSON.stringify(b.error)}))):(this.store.dispatch((0,P.y0)({payload:f})),this.store.dispatch((0,M.e8)({payload:{action:o,status:m.wn.ERROR,statusCode:b.status.toString(),message:this.commonService.extractErrorMessage(b,h)}})))}handleErrorWithAlert(o,f,h,b,A){if(this.logger.error(A),401===A.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,P.Jh)()),this.store.dispatch((0,P.ri)({payload:"Authentication Failed: "+JSON.stringify(A.error)}));else{this.store.dispatch((0,P.y0)({payload:f}));const k=this.commonService.extractErrorMessage(A);this.store.dispatch((0,P.xO)({payload:{data:{type:"ERROR",alertTitle:h,message:{code:A.status,message:k,URL:b},component:w.f}}})),this.store.dispatch((0,M.e8)({payload:{action:o,status:m.wn.ERROR,statusCode:A.status.toString(),message:k,URL:b}}))}}ngOnDestroy(){this.unSubs.forEach(o=>{o.next(null),o.complete()})}static#e=Te=()=>(this.\u0275fac=function(f){return new(f||D)(U.KVO(i.En),U.KVO(K.Qq),U.KVO(q.il),U.KVO(G.gP),U.KVO(Q.h),U.KVO($.Q),U.KVO(ae.bZ),U.KVO(ue.Ix),U.KVO(oe.I),U.KVO(he.aZ))},this.\u0275prov=U.jDH({token:D,factory:D.\u0275fac}))}return Te(),D})()},69588:(Ae,ee,l)=>{"use strict";l.d(ee,{xb:()=>li,TL:()=>Oe,rl:()=>te,qT:()=>J,MV:()=>Ee,nJ:()=>ge,yw:()=>Mt});var i=l(89726),t=l(61577),p=l(14085),S=l(39842),c=l(72200),e=l(73664),T=l(2615),g=l(17705),d=l(59295),w=l(18359),m=l(21413),P=l(57786),M=l(99172),j=l(96354),U=l(39974),K=l(54360),G=l(5964),Q=l(56977),$=l(63610),ae=l(31804);const ue=["notch"],oe=["matFormFieldNotchedOutline",""],he=["*"],me=["iconPrefixContainer"],Te=["textPrefixContainer"],D=["iconSuffixContainer"],n=["textSuffixContainer"],o=["textField"],f=["*",[["mat-label"]],[["","matPrefix",""],["","matIconPrefix",""]],[["","matTextPrefix",""]],[["","matTextSuffix",""]],[["","matSuffix",""],["","matIconSuffix",""]],[["mat-error"],["","matError",""]],[["mat-hint",3,"align","end"]],[["mat-hint","align","end"]]],h=["*","mat-label","[matPrefix], [matIconPrefix]","[matTextPrefix]","[matTextSuffix]","[matSuffix], [matIconSuffix]","mat-error, [matError]","mat-hint:not([align='end'])","mat-hint[align='end']"];function b(ce,se){1&ce&&e.nrm(0,"span",21)}function A(ce,se){if(1&ce&&(e.j41(0,"label",20),e.SdG(1,1),e.nVh(2,b,1,0,"span",21),e.k0s()),2&ce){const ke=e.XpG(2);e.Y8G("floating",ke._shouldLabelFloat())("monitorResize",ke._hasOutline())("id",ke._labelId),e.BMQ("for",ke._control.disableAutomaticLabeling?null:ke._control.id),e.R7$(2),e.vxM(!ke.hideRequiredMarker&&ke._control.required?2:-1)}}function k(ce,se){if(1&ce&&e.nVh(0,A,3,5,"label",20),2&ce){const ke=e.XpG();e.vxM(ke._hasFloatingLabel()?0:-1)}}function x(ce,se){1&ce&&e.nrm(0,"div",7)}function r(ce,se){}function _(ce,se){if(1&ce&&e.DNE(0,r,0,0,"ng-template",13),2&ce){e.XpG(2);const ke=e.sdS(1);e.Y8G("ngTemplateOutlet",ke)}}function W(ce,se){if(1&ce&&(e.j41(0,"div",9),e.nVh(1,_,1,1,null,13),e.k0s()),2&ce){const ke=e.XpG();e.Y8G("matFormFieldNotchedOutlineOpen",ke._shouldLabelFloat()),e.R7$(),e.vxM(ke._forceDisplayInfixLabel()?-1:1)}}function I(ce,se){1&ce&&(e.j41(0,"div",10,2),e.SdG(2,2),e.k0s())}function B(ce,se){1&ce&&(e.j41(0,"div",11,3),e.SdG(2,3),e.k0s())}function re(ce,se){}function pe(ce,se){if(1&ce&&e.DNE(0,re,0,0,"ng-template",13),2&ce){e.XpG();const ke=e.sdS(1);e.Y8G("ngTemplateOutlet",ke)}}function be(ce,se){1&ce&&(e.j41(0,"div",14,4),e.SdG(2,4),e.k0s())}function Be(ce,se){1&ce&&(e.j41(0,"div",15,5),e.SdG(2,5),e.k0s())}function _e(ce,se){1&ce&&e.nrm(0,"div",16)}function ye(ce,se){1&ce&&(e.j41(0,"div",18),e.SdG(1,6),e.k0s())}function Le(ce,se){if(1&ce&&(e.j41(0,"mat-hint",22),e.EFF(1),e.k0s()),2&ce){const ke=e.XpG(2);e.Y8G("id",ke._hintLabelId),e.R7$(),e.JRh(ke.hintLabel)}}function Ke(ce,se){if(1&ce&&(e.j41(0,"div",19),e.nVh(1,Le,2,2,"mat-hint",22),e.SdG(2,7),e.nrm(3,"div",23),e.SdG(4,8),e.k0s()),2&ce){const ke=e.XpG();e.R7$(),e.vxM(ke.hintLabel?1:-1)}}let ge=(()=>{class ce{static \u0275fac=function(Ue){return new(Ue||ce)};static \u0275dir=e.FsC({type:ce,selectors:[["mat-label"]]})}return ce})();const ve=new T.nKC("MatError");let Oe=(()=>{class ce{id=(0,T.WQX)(i.g).getId("mat-mdc-error-");constructor(){}static \u0275fac=function(Ue){return new(Ue||ce)};static \u0275dir=e.FsC({type:ce,selectors:[["mat-error"],["","matError",""]],hostAttrs:[1,"mat-mdc-form-field-error","mat-mdc-form-field-bottom-align"],hostVars:1,hostBindings:function(Ue,Ne){2&Ue&&e.Avn("id",Ne.id)},inputs:{id:"id"},features:[e.Jv_([{provide:ve,useExisting:ce}])]})}return ce})(),Ee=(()=>{class ce{align="start";id=(0,T.WQX)(i.g).getId("mat-mdc-hint-");static \u0275fac=function(Ue){return new(Ue||ce)};static \u0275dir=e.FsC({type:ce,selectors:[["mat-hint"]],hostAttrs:[1,"mat-mdc-form-field-hint","mat-mdc-form-field-bottom-align"],hostVars:4,hostBindings:function(Ue,Ne){2&Ue&&(e.Avn("id",Ne.id),e.BMQ("align",null),e.AVh("mat-mdc-form-field-hint-end","end"===Ne.align))},inputs:{align:"align",id:"id"}})}return ce})();const dt=new T.nKC("MatPrefix"),Ct=new T.nKC("MatSuffix");let Mt=(()=>{class ce{set _isTextSelector(ke){this._isText=!0}_isText=!1;static \u0275fac=function(Ue){return new(Ue||ce)};static \u0275dir=e.FsC({type:ce,selectors:[["","matSuffix",""],["","matIconSuffix",""],["","matTextSuffix",""]],inputs:{_isTextSelector:[0,"matTextSuffix","_isTextSelector"]},features:[e.Jv_([{provide:Ct,useExisting:ce}])]})}return ce})();const lt=new T.nKC("FloatingLabelParent");let Pe=(()=>{class ce{_elementRef=(0,T.WQX)(e.aKT);get floating(){return this._floating}set floating(ke){this._floating=ke,this.monitorResize&&this._handleResize()}_floating=!1;get monitorResize(){return this._monitorResize}set monitorResize(ke){this._monitorResize=ke,this._monitorResize?this._subscribeToResize():this._resizeSubscription.unsubscribe()}_monitorResize=!1;_resizeObserver=(0,T.WQX)($.a);_ngZone=(0,T.WQX)(e.SKi);_parent=(0,T.WQX)(lt);_resizeSubscription=new w.yU;constructor(){}ngOnDestroy(){this._resizeSubscription.unsubscribe()}getWidth(){return function Ht(ce){if(null!==ce.offsetParent)return ce.scrollWidth;const ke=ce.cloneNode(!0);ke.style.setProperty("position","absolute"),ke.style.setProperty("transform","translate(-9999px, -9999px)"),document.documentElement.appendChild(ke);const Ue=ke.scrollWidth;return ke.remove(),Ue}(this._elementRef.nativeElement)}get element(){return this._elementRef.nativeElement}_handleResize(){setTimeout(()=>this._parent._handleLabelResized())}_subscribeToResize(){this._resizeSubscription.unsubscribe(),this._ngZone.runOutsideAngular(()=>{this._resizeSubscription=this._resizeObserver.observe(this._elementRef.nativeElement,{box:"border-box"}).subscribe(()=>this._handleResize())})}static \u0275fac=function(Ue){return new(Ue||ce)};static \u0275dir=e.FsC({type:ce,selectors:[["label","matFormFieldFloatingLabel",""]],hostAttrs:[1,"mdc-floating-label","mat-mdc-floating-label"],hostVars:2,hostBindings:function(Ue,Ne){2&Ue&&e.AVh("mdc-floating-label--float-above",Ne.floating)},inputs:{floating:"floating",monitorResize:"monitorResize"}})}return ce})();const ct="mdc-line-ripple--active",Ce="mdc-line-ripple--deactivating";let ze=(()=>{class ce{_elementRef=(0,T.WQX)(e.aKT);_cleanupTransitionEnd;constructor(){const ke=(0,T.WQX)(e.SKi),Ue=(0,T.WQX)(e.sFG);ke.runOutsideAngular(()=>{this._cleanupTransitionEnd=Ue.listen(this._elementRef.nativeElement,"transitionend",this._handleTransitionEnd)})}activate(){const ke=this._elementRef.nativeElement.classList;ke.remove(Ce),ke.add(ct)}deactivate(){this._elementRef.nativeElement.classList.add(Ce)}_handleTransitionEnd=ke=>{const Ue=this._elementRef.nativeElement.classList,Ne=Ue.contains(Ce);"opacity"===ke.propertyName&&Ne&&Ue.remove(ct,Ce)};ngOnDestroy(){this._cleanupTransitionEnd()}static \u0275fac=function(Ue){return new(Ue||ce)};static \u0275dir=e.FsC({type:ce,selectors:[["div","matFormFieldLineRipple",""]],hostAttrs:[1,"mdc-line-ripple"]})}return ce})(),Z=(()=>{class ce{_elementRef=(0,T.WQX)(e.aKT);_ngZone=(0,T.WQX)(e.SKi);open=!1;_notch;ngAfterViewInit(){const ke=this._elementRef.nativeElement,Ue=ke.querySelector(".mdc-floating-label");Ue?(ke.classList.add("mdc-notched-outline--upgraded"),"function"==typeof requestAnimationFrame&&(Ue.style.transitionDuration="0s",this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>Ue.style.transitionDuration="")}))):ke.classList.add("mdc-notched-outline--no-label")}_setNotchWidth(ke){this._notch.nativeElement.style.width=this.open&&ke?`calc(${ke}px * var(--mat-mdc-form-field-floating-label-scale, 0.75) + 9px)`:""}_setMaxWidth(ke){this._notch.nativeElement.style.setProperty("--mat-form-field-notch-max-width",`calc(100% - ${ke}px)`)}static \u0275fac=function(Ue){return new(Ue||ce)};static \u0275cmp=e.VBU({type:ce,selectors:[["div","matFormFieldNotchedOutline",""]],viewQuery:function(Ue,Ne){if(1&Ue&&e.GBs(ue,5),2&Ue){let Kt;e.mGM(Kt=e.lsd())&&(Ne._notch=Kt.first)}},hostAttrs:[1,"mdc-notched-outline"],hostVars:2,hostBindings:function(Ue,Ne){2&Ue&&e.AVh("mdc-notched-outline--notched",Ne.open)},inputs:{open:[0,"matFormFieldNotchedOutlineOpen","open"]},attrs:oe,ngContentSelectors:he,decls:5,vars:0,consts:[["notch",""],[1,"mat-mdc-notch-piece","mdc-notched-outline__leading"],[1,"mat-mdc-notch-piece","mdc-notched-outline__notch"],[1,"mat-mdc-notch-piece","mdc-notched-outline__trailing"]],template:function(Ue,Ne){1&Ue&&(e.NAR(),e.Hgh(0,"div",1),e.rj2(1,"div",2,0),e.SdG(3),e.eux(),e.Hgh(4,"div",3))},encapsulation:2,changeDetection:0})}return ce})(),J=(()=>{class ce{value;stateChanges;id;placeholder;ngControl;focused;empty;shouldLabelFloat;required;disabled;errorState;controlType;autofilled;userAriaDescribedBy;disableAutomaticLabeling;describedByIds;static \u0275fac=function(Ue){return new(Ue||ce)};static \u0275dir=e.FsC({type:ce})}return ce})();const li=new T.nKC("MatFormField"),Qt=new T.nKC("MAT_FORM_FIELD_DEFAULT_OPTIONS");let te=(()=>{class ce{_elementRef=(0,T.WQX)(e.aKT);_changeDetectorRef=(0,T.WQX)(g.gRc);_platform=(0,T.WQX)(S.O);_idGenerator=(0,T.WQX)(i.g);_ngZone=(0,T.WQX)(e.SKi);_defaults=(0,T.WQX)(Qt,{optional:!0});_currentDirection;_textField;_iconPrefixContainer;_textPrefixContainer;_iconSuffixContainer;_textSuffixContainer;_floatingLabel;_notchedOutline;_lineRipple;_iconPrefixContainerSignal=(0,g.ebz)("iconPrefixContainer");_textPrefixContainerSignal=(0,g.ebz)("textPrefixContainer");_iconSuffixContainerSignal=(0,g.ebz)("iconSuffixContainer");_textSuffixContainerSignal=(0,g.ebz)("textSuffixContainer");_prefixSuffixContainers=(0,d.EW)(()=>[this._iconPrefixContainerSignal(),this._textPrefixContainerSignal(),this._iconSuffixContainerSignal(),this._textSuffixContainerSignal()].map(ke=>ke?.nativeElement).filter(ke=>void 0!==ke));_formFieldControl;_prefixChildren;_suffixChildren;_errorChildren;_hintChildren;_labelChild=(0,g.sbv)(ge);get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(ke){this._hideRequiredMarker=(0,p.he)(ke)}_hideRequiredMarker=!1;color="primary";get floatLabel(){return this._floatLabel||this._defaults?.floatLabel||"auto"}set floatLabel(ke){ke!==this._floatLabel&&(this._floatLabel=ke,this._changeDetectorRef.markForCheck())}_floatLabel;get appearance(){return this._appearanceSignal()}set appearance(ke){this._appearanceSignal.set(ke||this._defaults?.appearance||"fill")}_appearanceSignal=(0,T.vPA)("fill");get subscriptSizing(){return this._subscriptSizing||this._defaults?.subscriptSizing||"fixed"}set subscriptSizing(ke){this._subscriptSizing=ke||this._defaults?.subscriptSizing||"fixed"}_subscriptSizing=null;get hintLabel(){return this._hintLabel}set hintLabel(ke){this._hintLabel=ke,this._processHints()}_hintLabel="";_hasIconPrefix=!1;_hasTextPrefix=!1;_hasIconSuffix=!1;_hasTextSuffix=!1;_labelId=this._idGenerator.getId("mat-mdc-form-field-label-");_hintLabelId=this._idGenerator.getId("mat-mdc-hint-");_describedByIds;get _control(){return this._explicitFormFieldControl||this._formFieldControl}set _control(ke){this._explicitFormFieldControl=ke}_destroyed=new m.B;_isFocused=null;_explicitFormFieldControl;_previousControl=null;_previousControlValidatorFn=null;_stateChanges;_valueChanges;_describedByChanges;_outlineLabelOffsetResizeObserver=null;_animationsDisabled=(0,ae.Rc)();constructor(){const ke=this._defaults,Ue=(0,T.WQX)(t.dS);ke&&(ke.appearance&&(this.appearance=ke.appearance),this._hideRequiredMarker=!!ke?.hideRequiredMarker,ke.color&&(this.color=ke.color)),(0,d.QZ)(()=>this._currentDirection=Ue.valueSignal()),this._syncOutlineLabelOffset()}ngAfterViewInit(){this._updateFocusState(),this._animationsDisabled||this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{this._elementRef.nativeElement.classList.add("mat-form-field-animations-enabled")},300)}),this._changeDetectorRef.detectChanges()}ngAfterContentInit(){this._assertFormFieldControl(),this._initializeSubscript(),this._initializePrefixAndSuffix()}ngAfterContentChecked(){this._assertFormFieldControl(),this._control!==this._previousControl&&(this._initializeControl(this._previousControl),this._control.ngControl&&this._control.ngControl.control&&(this._previousControlValidatorFn=this._control.ngControl.control.validator),this._previousControl=this._control),this._control.ngControl&&this._control.ngControl.control&&this._control.ngControl.control.validator!==this._previousControlValidatorFn&&this._changeDetectorRef.markForCheck()}ngOnDestroy(){this._outlineLabelOffsetResizeObserver?.disconnect(),this._stateChanges?.unsubscribe(),this._valueChanges?.unsubscribe(),this._describedByChanges?.unsubscribe(),this._destroyed.next(),this._destroyed.complete()}getLabelId=(0,d.EW)(()=>this._hasFloatingLabel()?this._labelId:null);getConnectedOverlayOrigin(){return this._textField||this._elementRef}_animateAndLockLabel(){this._hasFloatingLabel()&&(this.floatLabel="always")}_initializeControl(ke){const Ue=this._control,Ne="mat-mdc-form-field-type-";ke&&this._elementRef.nativeElement.classList.remove(Ne+ke.controlType),Ue.controlType&&this._elementRef.nativeElement.classList.add(Ne+Ue.controlType),this._stateChanges?.unsubscribe(),this._stateChanges=Ue.stateChanges.subscribe(()=>{this._updateFocusState(),this._changeDetectorRef.markForCheck()}),this._describedByChanges?.unsubscribe(),this._describedByChanges=Ue.stateChanges.pipe((0,M.Z)([void 0,void 0]),(0,j.T)(()=>[Ue.errorState,Ue.userAriaDescribedBy]),function q(){return(0,U.N)((ce,se)=>{let ke,Ue=!1;ce.subscribe((0,K._)(se,Ne=>{const Kt=ke;ke=Ne,Ue&&se.next([Kt,Ne]),Ue=!0}))})}(),(0,G.p)(([[Kt,yt],[Vt,Zt]])=>Kt!==Vt||yt!==Zt)).subscribe(()=>this._syncDescribedByIds()),this._valueChanges?.unsubscribe(),Ue.ngControl&&Ue.ngControl.valueChanges&&(this._valueChanges=Ue.ngControl.valueChanges.pipe((0,Q.Q)(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck()))}_checkPrefixAndSuffixTypes(){this._hasIconPrefix=!!this._prefixChildren.find(ke=>!ke._isText),this._hasTextPrefix=!!this._prefixChildren.find(ke=>ke._isText),this._hasIconSuffix=!!this._suffixChildren.find(ke=>!ke._isText),this._hasTextSuffix=!!this._suffixChildren.find(ke=>ke._isText)}_initializePrefixAndSuffix(){this._checkPrefixAndSuffixTypes(),(0,P.h)(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(()=>{this._checkPrefixAndSuffixTypes(),this._changeDetectorRef.markForCheck()})}_initializeSubscript(){this._hintChildren.changes.subscribe(()=>{this._processHints(),this._changeDetectorRef.markForCheck()}),this._errorChildren.changes.subscribe(()=>{this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),this._validateHints(),this._syncDescribedByIds()}_assertFormFieldControl(){}_updateFocusState(){const ke=this._control.focused;ke&&!this._isFocused?(this._isFocused=!0,this._lineRipple?.activate()):!ke&&(this._isFocused||null===this._isFocused)&&(this._isFocused=!1,this._lineRipple?.deactivate()),this._elementRef.nativeElement.classList.toggle("mat-focused",ke),this._textField?.nativeElement.classList.toggle("mdc-text-field--focused",ke)}_syncOutlineLabelOffset(){(0,g.uEv)({earlyRead:()=>{if("outline"!==this._appearanceSignal())return this._outlineLabelOffsetResizeObserver?.disconnect(),null;if(globalThis.ResizeObserver){this._outlineLabelOffsetResizeObserver||=new globalThis.ResizeObserver(()=>{this._writeOutlinedLabelStyles(this._getOutlinedLabelOffset())});for(const ke of this._prefixSuffixContainers())this._outlineLabelOffsetResizeObserver.observe(ke,{box:"border-box"})}return this._getOutlinedLabelOffset()},write:ke=>this._writeOutlinedLabelStyles(ke())})}_shouldAlwaysFloat(){return"always"===this.floatLabel}_hasOutline(){return"outline"===this.appearance}_forceDisplayInfixLabel(){return!this._platform.isBrowser&&this._prefixChildren.length&&!this._shouldLabelFloat()}_hasFloatingLabel=(0,d.EW)(()=>!!this._labelChild());_shouldLabelFloat(){return!!this._hasFloatingLabel()&&(this._control.shouldLabelFloat||this._shouldAlwaysFloat())}_shouldForward(ke){const Ue=this._control?this._control.ngControl:null;return Ue&&Ue[ke]}_getSubscriptMessageType(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?"error":"hint"}_handleLabelResized(){this._refreshOutlineNotchWidth()}_refreshOutlineNotchWidth(){this._hasOutline()&&this._floatingLabel&&this._shouldLabelFloat()?this._notchedOutline?._setNotchWidth(this._floatingLabel.getWidth()):this._notchedOutline?._setNotchWidth(0)}_processHints(){this._validateHints(),this._syncDescribedByIds()}_validateHints(){}_syncDescribedByIds(){if(this._control){let ke=[];if(this._control.userAriaDescribedBy&&"string"==typeof this._control.userAriaDescribedBy&&ke.push(...this._control.userAriaDescribedBy.split(" ")),"hint"===this._getSubscriptMessageType()){const Kt=this._hintChildren?this._hintChildren.find(Vt=>"start"===Vt.align):null,yt=this._hintChildren?this._hintChildren.find(Vt=>"end"===Vt.align):null;Kt?ke.push(Kt.id):this._hintLabel&&ke.push(this._hintLabelId),yt&&ke.push(yt.id)}else this._errorChildren&&ke.push(...this._errorChildren.map(Kt=>Kt.id));const Ue=this._control.describedByIds;let Ne;if(Ue){const Kt=this._describedByIds||ke;Ne=ke.concat(Ue.filter(yt=>yt&&!Kt.includes(yt)))}else Ne=ke;this._control.setDescribedByIds(Ne),this._describedByIds=ke}}_getOutlinedLabelOffset(){if(!this._hasOutline()||!this._floatingLabel)return null;if(!this._iconPrefixContainer&&!this._textPrefixContainer)return["",null];if(!this._isAttachedToDom())return null;const ke=this._iconPrefixContainer?.nativeElement,Ue=this._textPrefixContainer?.nativeElement,Ne=this._iconSuffixContainer?.nativeElement,Kt=this._textSuffixContainer?.nativeElement,yt=ke?.getBoundingClientRect().width??0,Vt=Ue?.getBoundingClientRect().width??0,Zt=Ne?.getBoundingClientRect().width??0,ti=Kt?.getBoundingClientRect().width??0;return[`var(--mat-mdc-form-field-label-transform, translateY(-50%) translateX(calc(${"rtl"===this._currentDirection?"-1":"1"} * (${yt+Vt}px + var(--mat-mdc-form-field-label-offset-x, 0px)))))`,yt+Vt+Zt+ti]}_writeOutlinedLabelStyles(ke){if(null!==ke){const[Ue,Ne]=ke;this._floatingLabel&&(this._floatingLabel.element.style.transform=Ue),null!==Ne&&this._notchedOutline?._setMaxWidth(Ne)}}_isAttachedToDom(){const ke=this._elementRef.nativeElement;if(ke.getRootNode){const Ue=ke.getRootNode();return Ue&&Ue!==ke}return document.documentElement.contains(ke)}static \u0275fac=function(Ue){return new(Ue||ce)};static \u0275cmp=e.VBU({type:ce,selectors:[["mat-form-field"]],contentQueries:function(Ue,Ne,Kt){if(1&Ue&&(e.C6U(Kt,Ne._labelChild,ge,5),e.wni(Kt,J,5),e.wni(Kt,dt,5),e.wni(Kt,Ct,5),e.wni(Kt,ve,5),e.wni(Kt,Ee,5)),2&Ue){let yt;e.NyB(),e.mGM(yt=e.lsd())&&(Ne._formFieldControl=yt.first),e.mGM(yt=e.lsd())&&(Ne._prefixChildren=yt),e.mGM(yt=e.lsd())&&(Ne._suffixChildren=yt),e.mGM(yt=e.lsd())&&(Ne._errorChildren=yt),e.mGM(yt=e.lsd())&&(Ne._hintChildren=yt)}},viewQuery:function(Ue,Ne){if(1&Ue&&(e.wEZ(Ne._iconPrefixContainerSignal,me,5),e.wEZ(Ne._textPrefixContainerSignal,Te,5),e.wEZ(Ne._iconSuffixContainerSignal,D,5),e.wEZ(Ne._textSuffixContainerSignal,n,5),e.GBs(o,5),e.GBs(me,5),e.GBs(Te,5),e.GBs(D,5),e.GBs(n,5),e.GBs(Pe,5),e.GBs(Z,5),e.GBs(ze,5)),2&Ue){let Kt;e.NyB(4),e.mGM(Kt=e.lsd())&&(Ne._textField=Kt.first),e.mGM(Kt=e.lsd())&&(Ne._iconPrefixContainer=Kt.first),e.mGM(Kt=e.lsd())&&(Ne._textPrefixContainer=Kt.first),e.mGM(Kt=e.lsd())&&(Ne._iconSuffixContainer=Kt.first),e.mGM(Kt=e.lsd())&&(Ne._textSuffixContainer=Kt.first),e.mGM(Kt=e.lsd())&&(Ne._floatingLabel=Kt.first),e.mGM(Kt=e.lsd())&&(Ne._notchedOutline=Kt.first),e.mGM(Kt=e.lsd())&&(Ne._lineRipple=Kt.first)}},hostAttrs:[1,"mat-mdc-form-field"],hostVars:38,hostBindings:function(Ue,Ne){2&Ue&&e.AVh("mat-mdc-form-field-label-always-float",Ne._shouldAlwaysFloat())("mat-mdc-form-field-has-icon-prefix",Ne._hasIconPrefix)("mat-mdc-form-field-has-icon-suffix",Ne._hasIconSuffix)("mat-form-field-invalid",Ne._control.errorState)("mat-form-field-disabled",Ne._control.disabled)("mat-form-field-autofilled",Ne._control.autofilled)("mat-form-field-appearance-fill","fill"==Ne.appearance)("mat-form-field-appearance-outline","outline"==Ne.appearance)("mat-form-field-hide-placeholder",Ne._hasFloatingLabel()&&!Ne._shouldLabelFloat())("mat-primary","accent"!==Ne.color&&"warn"!==Ne.color)("mat-accent","accent"===Ne.color)("mat-warn","warn"===Ne.color)("ng-untouched",Ne._shouldForward("untouched"))("ng-touched",Ne._shouldForward("touched"))("ng-pristine",Ne._shouldForward("pristine"))("ng-dirty",Ne._shouldForward("dirty"))("ng-valid",Ne._shouldForward("valid"))("ng-invalid",Ne._shouldForward("invalid"))("ng-pending",Ne._shouldForward("pending"))},inputs:{hideRequiredMarker:"hideRequiredMarker",color:"color",floatLabel:"floatLabel",appearance:"appearance",subscriptSizing:"subscriptSizing",hintLabel:"hintLabel"},exportAs:["matFormField"],features:[e.Jv_([{provide:li,useExisting:ce},{provide:lt,useExisting:ce}])],ngContentSelectors:h,decls:18,vars:21,consts:[["labelTemplate",""],["textField",""],["iconPrefixContainer",""],["textPrefixContainer",""],["textSuffixContainer",""],["iconSuffixContainer",""],[1,"mat-mdc-text-field-wrapper","mdc-text-field",3,"click"],[1,"mat-mdc-form-field-focus-overlay"],[1,"mat-mdc-form-field-flex"],["matFormFieldNotchedOutline","",3,"matFormFieldNotchedOutlineOpen"],[1,"mat-mdc-form-field-icon-prefix"],[1,"mat-mdc-form-field-text-prefix"],[1,"mat-mdc-form-field-infix"],[3,"ngTemplateOutlet"],[1,"mat-mdc-form-field-text-suffix"],[1,"mat-mdc-form-field-icon-suffix"],["matFormFieldLineRipple",""],["aria-atomic","true","aria-live","polite",1,"mat-mdc-form-field-subscript-wrapper","mat-mdc-form-field-bottom-align"],[1,"mat-mdc-form-field-error-wrapper"],[1,"mat-mdc-form-field-hint-wrapper"],["matFormFieldFloatingLabel","",3,"floating","monitorResize","id"],["aria-hidden","true",1,"mat-mdc-form-field-required-marker","mdc-floating-label--required"],[3,"id"],[1,"mat-mdc-form-field-hint-spacer"]],template:function(Ue,Ne){if(1&Ue){const Kt=e.RV6();e.NAR(f),e.DNE(0,k,1,1,"ng-template",null,0,e.C5r),e.j41(2,"div",6,1),e.bIt("click",function(Vt){return T.eBV(Kt),T.Njj(Ne._control.onContainerClick(Vt))}),e.nVh(4,x,1,0,"div",7),e.j41(5,"div",8),e.nVh(6,W,2,2,"div",9),e.nVh(7,I,3,0,"div",10),e.nVh(8,B,3,0,"div",11),e.j41(9,"div",12),e.nVh(10,pe,1,1,null,13),e.SdG(11),e.k0s(),e.nVh(12,be,3,0,"div",14),e.nVh(13,Be,3,0,"div",15),e.k0s(),e.nVh(14,_e,1,0,"div",16),e.k0s(),e.j41(15,"div",17),e.nVh(16,ye,2,0,"div",18)(17,Ke,5,1,"div",19),e.k0s()}if(2&Ue){let Kt;e.R7$(2),e.AVh("mdc-text-field--filled",!Ne._hasOutline())("mdc-text-field--outlined",Ne._hasOutline())("mdc-text-field--no-label",!Ne._hasFloatingLabel())("mdc-text-field--disabled",Ne._control.disabled)("mdc-text-field--invalid",Ne._control.errorState),e.R7$(2),e.vxM(Ne._hasOutline()||Ne._control.disabled?-1:4),e.R7$(2),e.vxM(Ne._hasOutline()?6:-1),e.R7$(),e.vxM(Ne._hasIconPrefix?7:-1),e.R7$(),e.vxM(Ne._hasTextPrefix?8:-1),e.R7$(2),e.vxM(!Ne._hasOutline()||Ne._forceDisplayInfixLabel()?10:-1),e.R7$(2),e.vxM(Ne._hasTextSuffix?12:-1),e.R7$(),e.vxM(Ne._hasIconSuffix?13:-1),e.R7$(),e.vxM(Ne._hasOutline()?-1:14),e.R7$(),e.AVh("mat-mdc-form-field-subscript-dynamic-size","dynamic"===Ne.subscriptSizing);const yt=Ne._getSubscriptMessageType();e.R7$(),e.vxM("error"===(Kt=yt)?16:"hint"===Kt?17:-1)}},dependencies:[Pe,Z,c.T3,ze,Ee],styles:['.mdc-text-field{display:inline-flex;align-items:baseline;padding:0 16px;position:relative;box-sizing:border-box;overflow:hidden;will-change:opacity,transform,color;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.mdc-text-field__input{width:100%;min-width:0;border:none;border-radius:0;background:none;padding:0;-moz-appearance:none;-webkit-appearance:none;height:28px}.mdc-text-field__input::-webkit-calendar-picker-indicator,.mdc-text-field__input::-webkit-search-cancel-button{display:none}.mdc-text-field__input::-ms-clear{display:none}.mdc-text-field__input:focus{outline:none}.mdc-text-field__input:invalid{box-shadow:none}.mdc-text-field__input::placeholder{opacity:0}.mdc-text-field__input::-moz-placeholder{opacity:0}.mdc-text-field__input::-webkit-input-placeholder{opacity:0}.mdc-text-field__input:-ms-input-placeholder{opacity:0}.mdc-text-field--no-label .mdc-text-field__input::placeholder,.mdc-text-field--focused .mdc-text-field__input::placeholder{opacity:1}.mdc-text-field--no-label .mdc-text-field__input::-moz-placeholder,.mdc-text-field--focused .mdc-text-field__input::-moz-placeholder{opacity:1}.mdc-text-field--no-label .mdc-text-field__input::-webkit-input-placeholder,.mdc-text-field--focused .mdc-text-field__input::-webkit-input-placeholder{opacity:1}.mdc-text-field--no-label .mdc-text-field__input:-ms-input-placeholder,.mdc-text-field--focused .mdc-text-field__input:-ms-input-placeholder{opacity:1}.mdc-text-field--disabled:not(.mdc-text-field--no-label) .mdc-text-field__input.mat-mdc-input-disabled-interactive::placeholder{opacity:0}.mdc-text-field--disabled:not(.mdc-text-field--no-label) .mdc-text-field__input.mat-mdc-input-disabled-interactive::-moz-placeholder{opacity:0}.mdc-text-field--disabled:not(.mdc-text-field--no-label) .mdc-text-field__input.mat-mdc-input-disabled-interactive::-webkit-input-placeholder{opacity:0}.mdc-text-field--disabled:not(.mdc-text-field--no-label) .mdc-text-field__input.mat-mdc-input-disabled-interactive:-ms-input-placeholder{opacity:0}.mdc-text-field--outlined .mdc-text-field__input,.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{height:100%}.mdc-text-field--outlined .mdc-text-field__input{display:flex;border:none !important;background-color:rgba(0,0,0,0)}.mdc-text-field--disabled .mdc-text-field__input{pointer-events:auto}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mat-form-field-filled-input-text-color, var(--mat-sys-on-surface));caret-color:var(--mat-form-field-filled-caret-color, var(--mat-sys-primary))}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mat-form-field-filled-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input::-moz-placeholder{color:var(--mat-form-field-filled-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input::-webkit-input-placeholder{color:var(--mat-form-field-filled-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mat-form-field-filled-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mat-form-field-outlined-input-text-color, var(--mat-sys-on-surface));caret-color:var(--mat-form-field-outlined-caret-color, var(--mat-sys-primary))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mat-form-field-outlined-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input::-moz-placeholder{color:var(--mat-form-field-outlined-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input::-webkit-input-placeholder{color:var(--mat-form-field-outlined-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mat-form-field-outlined-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mat-form-field-filled-error-caret-color, var(--mat-sys-error))}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mat-form-field-outlined-error-caret-color, var(--mat-sys-error))}.mdc-text-field--filled.mdc-text-field--disabled .mdc-text-field__input{color:var(--mat-form-field-filled-disabled-input-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input{color:var(--mat-form-field-outlined-disabled-input-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}@media(forced-colors: active){.mdc-text-field--disabled .mdc-text-field__input{background-color:Window}}.mdc-text-field--filled{height:56px;border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-left-radius:var(--mat-form-field-filled-container-shape, var(--mat-sys-corner-extra-small));border-top-right-radius:var(--mat-form-field-filled-container-shape, var(--mat-sys-corner-extra-small))}.mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:var(--mat-form-field-filled-container-color, var(--mat-sys-surface-variant))}.mdc-text-field--filled.mdc-text-field--disabled{background-color:var(--mat-form-field-filled-disabled-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 4%, transparent))}.mdc-text-field--outlined{height:56px;overflow:visible;padding-right:max(16px,var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small)));padding-left:max(16px,var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small)) + 4px)}[dir=rtl] .mdc-text-field--outlined{padding-right:max(16px,var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small)) + 4px);padding-left:max(16px,var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small)))}.mdc-floating-label{position:absolute;left:0;transform-origin:left top;line-height:1.15rem;text-align:left;text-overflow:ellipsis;white-space:nowrap;cursor:text;overflow:hidden;will-change:transform}[dir=rtl] .mdc-floating-label{right:0;left:auto;transform-origin:right top;text-align:right}.mdc-text-field .mdc-floating-label{top:50%;transform:translateY(-50%);pointer-events:none}.mdc-notched-outline .mdc-floating-label{display:inline-block;position:relative;max-width:100%}.mdc-text-field--outlined .mdc-floating-label{left:4px;right:auto}[dir=rtl] .mdc-text-field--outlined .mdc-floating-label{left:auto;right:4px}.mdc-text-field--filled .mdc-floating-label{left:16px;right:auto}[dir=rtl] .mdc-text-field--filled .mdc-floating-label{left:auto;right:16px}.mdc-text-field--disabled .mdc-floating-label{cursor:default}@media(forced-colors: active){.mdc-text-field--disabled .mdc-floating-label{z-index:1}}.mdc-text-field--filled.mdc-text-field--no-label .mdc-floating-label{display:none}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label{color:var(--mat-form-field-filled-label-text-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label{color:var(--mat-form-field-filled-focus-label-text-color, var(--mat-sys-primary))}.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label{color:var(--mat-form-field-filled-hover-label-text-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label{color:var(--mat-form-field-filled-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--invalid .mdc-floating-label{color:var(--mat-form-field-filled-error-label-text-color, var(--mat-sys-error))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--invalid.mdc-text-field--focused .mdc-floating-label{color:var(--mat-form-field-filled-error-focus-label-text-color, var(--mat-sys-error))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--invalid:not(.mdc-text-field--disabled):hover .mdc-floating-label{color:var(--mat-form-field-filled-error-hover-label-text-color, var(--mat-sys-on-error-container))}.mdc-text-field--filled .mdc-floating-label{font-family:var(--mat-form-field-filled-label-text-font, var(--mat-sys-body-large-font));font-size:var(--mat-form-field-filled-label-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-form-field-filled-label-text-weight, var(--mat-sys-body-large-weight));letter-spacing:var(--mat-form-field-filled-label-text-tracking, var(--mat-sys-body-large-tracking))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-floating-label{color:var(--mat-form-field-outlined-label-text-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label{color:var(--mat-form-field-outlined-focus-label-text-color, var(--mat-sys-primary))}.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label{color:var(--mat-form-field-outlined-hover-label-text-color, var(--mat-sys-on-surface))}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-floating-label{color:var(--mat-form-field-outlined-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid .mdc-floating-label{color:var(--mat-form-field-outlined-error-label-text-color, var(--mat-sys-error))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid.mdc-text-field--focused .mdc-floating-label{color:var(--mat-form-field-outlined-error-focus-label-text-color, var(--mat-sys-error))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid:not(.mdc-text-field--disabled):hover .mdc-floating-label{color:var(--mat-form-field-outlined-error-hover-label-text-color, var(--mat-sys-on-error-container))}.mdc-text-field--outlined .mdc-floating-label{font-family:var(--mat-form-field-outlined-label-text-font, var(--mat-sys-body-large-font));font-size:var(--mat-form-field-outlined-label-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-form-field-outlined-label-text-weight, var(--mat-sys-body-large-weight));letter-spacing:var(--mat-form-field-outlined-label-text-tracking, var(--mat-sys-body-large-tracking))}.mdc-floating-label--float-above{cursor:auto;transform:translateY(-106%) scale(0.75)}.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) scale(1);font-size:.75rem}.mdc-notched-outline .mdc-floating-label--float-above{text-overflow:clip}.mdc-notched-outline--upgraded .mdc-floating-label--float-above{max-width:133.3333333333%}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-34.75px) scale(0.75)}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after{margin-left:1px;margin-right:0;content:"*"}[dir=rtl] .mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after{margin-left:0;margin-right:1px}.mdc-notched-outline{display:flex;position:absolute;top:0;right:0;left:0;box-sizing:border-box;width:100%;max-width:100%;height:100%;text-align:left;pointer-events:none}[dir=rtl] .mdc-notched-outline{text-align:right}.mdc-text-field--outlined .mdc-notched-outline{z-index:1}.mat-mdc-notch-piece{box-sizing:border-box;height:100%;pointer-events:none;border-top:1px solid;border-bottom:1px solid}.mdc-text-field--focused .mat-mdc-notch-piece{border-width:2px}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-outline-color, var(--mat-sys-outline));border-width:var(--mat-form-field-outlined-outline-width, 1px)}.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-hover-outline-color, var(--mat-sys-on-surface))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-focus-outline-color, var(--mat-sys-primary))}.mdc-text-field--outlined.mdc-text-field--disabled .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-disabled-outline-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-error-outline-color, var(--mat-sys-error))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid:not(.mdc-text-field--focused):hover .mdc-notched-outline .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-error-hover-outline-color, var(--mat-sys-on-error-container))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid.mdc-text-field--focused .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-error-focus-outline-color, var(--mat-sys-error))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mat-mdc-notch-piece{border-width:var(--mat-form-field-outlined-focus-outline-width, 2px)}.mdc-notched-outline__leading{border-left:1px solid;border-right:none;border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small));border-bottom-left-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{width:max(12px,var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small)))}[dir=rtl] .mdc-notched-outline__leading{border-left:none;border-right:1px solid;border-bottom-left-radius:0;border-top-left-radius:0;border-top-right-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small));border-bottom-right-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))}.mdc-notched-outline__trailing{flex-grow:1;border-left:none;border-right:1px solid;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small));border-bottom-right-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))}[dir=rtl] .mdc-notched-outline__trailing{border-left:1px solid;border-right:none;border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small));border-bottom-left-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))}.mdc-notched-outline__notch{flex:0 0 auto;width:auto}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch{max-width:min(var(--mat-form-field-notch-max-width, 100%),calc(100% - max(12px, var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))) * 2))}.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{max-width:min(100%,calc(100% - max(12px, var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))) * 2))}.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:1px}.mdc-text-field--focused.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:2px}.mdc-notched-outline--notched .mdc-notched-outline__notch{padding-left:0;padding-right:8px;border-top:none}[dir=rtl] .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-left:8px;padding-right:0}.mdc-notched-outline--no-label .mdc-notched-outline__notch{display:none}.mdc-line-ripple::before,.mdc-line-ripple::after{position:absolute;bottom:0;left:0;width:100%;border-bottom-style:solid;content:""}.mdc-line-ripple::before{z-index:1;border-bottom-width:var(--mat-form-field-filled-active-indicator-height, 1px)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mat-form-field-filled-active-indicator-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mat-form-field-filled-hover-active-indicator-color, var(--mat-sys-on-surface))}.mdc-text-field--filled.mdc-text-field--disabled .mdc-line-ripple::before{border-bottom-color:var(--mat-form-field-filled-disabled-active-indicator-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--invalid .mdc-line-ripple::before{border-bottom-color:var(--mat-form-field-filled-error-active-indicator-color, var(--mat-sys-error))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--invalid:not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mat-form-field-filled-error-hover-active-indicator-color, var(--mat-sys-on-error-container))}.mdc-line-ripple::after{transform:scaleX(0);opacity:0;z-index:2}.mdc-text-field--filled .mdc-line-ripple::after{border-bottom-width:var(--mat-form-field-filled-focus-active-indicator-height, 2px)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mat-form-field-filled-focus-active-indicator-color, var(--mat-sys-primary))}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mat-form-field-filled-error-focus-active-indicator-color, var(--mat-sys-error))}.mdc-line-ripple--active::after{transform:scaleX(1);opacity:1}.mdc-line-ripple--deactivating::after{opacity:0}.mdc-text-field--disabled{pointer-events:none}.mat-mdc-form-field-textarea-control{vertical-align:middle;resize:vertical;box-sizing:border-box;height:auto;margin:0;padding:0;border:none;overflow:auto}.mat-mdc-form-field-input-control.mat-mdc-form-field-input-control{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font:inherit;letter-spacing:inherit;text-decoration:inherit;text-transform:inherit;border:none}.mat-mdc-form-field .mat-mdc-floating-label.mdc-floating-label{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;line-height:normal;pointer-events:all;will-change:auto}.mat-mdc-form-field:not(.mat-form-field-disabled) .mat-mdc-floating-label.mdc-floating-label{cursor:inherit}.mdc-text-field--no-label:not(.mdc-text-field--textarea) .mat-mdc-form-field-input-control.mdc-text-field__input,.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control{height:auto}.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control.mdc-text-field__input[type=color]{height:23px}.mat-mdc-text-field-wrapper{height:auto;flex:auto;will-change:auto}.mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-left:0;--mat-mdc-form-field-label-offset-x: -16px}.mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-right:0}[dir=rtl] .mat-mdc-text-field-wrapper{padding-left:16px;padding-right:16px}[dir=rtl] .mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-left:0}[dir=rtl] .mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-right:0}.mat-form-field-disabled .mdc-text-field__input::placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-form-field-disabled .mdc-text-field__input::-moz-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-form-field-disabled .mdc-text-field__input::-webkit-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-form-field-disabled .mdc-text-field__input:-ms-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-form-field-label-always-float .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms;opacity:1}.mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-floating-label{left:auto;right:auto}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-text-field__input{display:inline-block}.mat-mdc-form-field .mat-mdc-text-field-wrapper.mdc-text-field .mdc-notched-outline__notch{padding-top:0}.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch{border-left:1px solid rgba(0,0,0,0)}[dir=rtl] .mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch{border-left:none;border-right:1px solid rgba(0,0,0,0)}.mat-mdc-form-field-infix{min-height:var(--mat-form-field-container-height, 56px);padding-top:var(--mat-form-field-filled-with-label-container-padding-top, 24px);padding-bottom:var(--mat-form-field-filled-with-label-container-padding-bottom, 8px)}.mdc-text-field--outlined .mat-mdc-form-field-infix,.mdc-text-field--no-label .mat-mdc-form-field-infix{padding-top:var(--mat-form-field-container-vertical-padding, 16px);padding-bottom:var(--mat-form-field-container-vertical-padding, 16px)}.mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label{top:calc(var(--mat-form-field-container-height, 56px)/2)}.mdc-text-field--filled .mat-mdc-floating-label{display:var(--mat-form-field-filled-label-display, block)}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{--mat-mdc-form-field-label-transform: translateY(calc(calc(6.75px + var(--mat-form-field-container-height, 56px) / 2) * -1)) scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));transform:var(--mat-mdc-form-field-label-transform)}@keyframes _mat-form-field-subscript-animation{from{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:translateY(0)}}.mat-mdc-form-field-subscript-wrapper{box-sizing:border-box;width:100%;position:relative}.mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-error-wrapper{position:absolute;top:0;left:0;right:0;padding:0 16px;opacity:1;transform:translateY(0);animation:_mat-form-field-subscript-animation 0ms cubic-bezier(0.55, 0, 0.55, 0.2)}.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-error-wrapper{position:static}.mat-mdc-form-field-bottom-align::before{content:"";display:inline-block;height:16px}.mat-mdc-form-field-bottom-align.mat-mdc-form-field-subscript-dynamic-size::before{content:unset}.mat-mdc-form-field-hint-end{order:1}.mat-mdc-form-field-hint-wrapper{display:flex}.mat-mdc-form-field-hint-spacer{flex:1 0 1em}.mat-mdc-form-field-error{display:block;color:var(--mat-form-field-error-text-color, var(--mat-sys-error))}.mat-mdc-form-field-subscript-wrapper,.mat-mdc-form-field-bottom-align::before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-form-field-subscript-text-font, var(--mat-sys-body-small-font));line-height:var(--mat-form-field-subscript-text-line-height, var(--mat-sys-body-small-line-height));font-size:var(--mat-form-field-subscript-text-size, var(--mat-sys-body-small-size));letter-spacing:var(--mat-form-field-subscript-text-tracking, var(--mat-sys-body-small-tracking));font-weight:var(--mat-form-field-subscript-text-weight, var(--mat-sys-body-small-weight))}.mat-mdc-form-field-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;opacity:0;pointer-events:none;background-color:var(--mat-form-field-state-layer-color, var(--mat-sys-on-surface))}.mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-focus-overlay{opacity:var(--mat-form-field-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-form-field.mat-focused .mat-mdc-form-field-focus-overlay{opacity:var(--mat-form-field-focus-state-layer-opacity, 0)}select.mat-mdc-form-field-input-control{-moz-appearance:none;-webkit-appearance:none;background-color:rgba(0,0,0,0);display:inline-flex;box-sizing:border-box}select.mat-mdc-form-field-input-control:not(:disabled){cursor:pointer}select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option{color:var(--mat-form-field-select-option-text-color, var(--mat-sys-neutral10))}select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option:disabled{color:var(--mat-form-field-select-disabled-option-text-color, color-mix(in srgb, var(--mat-sys-neutral10) 38%, transparent))}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{content:"";width:0;height:0;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-top:5px solid;position:absolute;right:0;top:50%;margin-top:-2.5px;pointer-events:none;color:var(--mat-form-field-enabled-select-arrow-color, var(--mat-sys-on-surface-variant))}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{right:auto;left:0}.mat-mdc-form-field-type-mat-native-select.mat-focused .mat-mdc-form-field-infix::after{color:var(--mat-form-field-focus-select-arrow-color, var(--mat-sys-primary))}.mat-mdc-form-field-type-mat-native-select.mat-form-field-disabled .mat-mdc-form-field-infix::after{color:var(--mat-form-field-disabled-select-arrow-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:15px}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:0;padding-left:15px}@media(forced-colors: active){.mat-form-field-appearance-fill .mat-mdc-text-field-wrapper{outline:solid 1px}}@media(forced-colors: active){.mat-form-field-appearance-fill.mat-form-field-disabled .mat-mdc-text-field-wrapper{outline-color:GrayText}}@media(forced-colors: active){.mat-form-field-appearance-fill.mat-focused .mat-mdc-text-field-wrapper{outline:dashed 3px}}@media(forced-colors: active){.mat-mdc-form-field.mat-focused .mdc-notched-outline{border:dashed 3px}}.mat-mdc-form-field-input-control[type=date],.mat-mdc-form-field-input-control[type=datetime],.mat-mdc-form-field-input-control[type=datetime-local],.mat-mdc-form-field-input-control[type=month],.mat-mdc-form-field-input-control[type=week],.mat-mdc-form-field-input-control[type=time]{line-height:1}.mat-mdc-form-field-input-control::-webkit-datetime-edit{line-height:1;padding:0;margin-bottom:-2px}.mat-mdc-form-field{--mat-mdc-form-field-floating-label-scale: 0.75;display:inline-flex;flex-direction:column;min-width:0;text-align:left;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-form-field-container-text-font, var(--mat-sys-body-large-font));line-height:var(--mat-form-field-container-text-line-height, var(--mat-sys-body-large-line-height));font-size:var(--mat-form-field-container-text-size, var(--mat-sys-body-large-size));letter-spacing:var(--mat-form-field-container-text-tracking, var(--mat-sys-body-large-tracking));font-weight:var(--mat-form-field-container-text-weight, var(--mat-sys-body-large-weight))}.mat-mdc-form-field .mdc-text-field--outlined .mdc-floating-label--float-above{font-size:calc(var(--mat-form-field-outlined-label-text-populated-size)*var(--mat-mdc-form-field-floating-label-scale))}.mat-mdc-form-field .mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:var(--mat-form-field-outlined-label-text-populated-size)}[dir=rtl] .mat-mdc-form-field{text-align:right}.mat-mdc-form-field-flex{display:inline-flex;align-items:baseline;box-sizing:border-box;width:100%}.mat-mdc-text-field-wrapper{width:100%;z-index:0}.mat-mdc-form-field-icon-prefix,.mat-mdc-form-field-icon-suffix{align-self:center;line-height:0;pointer-events:auto;position:relative;z-index:1}.mat-mdc-form-field-icon-prefix>.mat-icon,.mat-mdc-form-field-icon-suffix>.mat-icon{padding:0 12px;box-sizing:content-box}.mat-mdc-form-field-icon-prefix{color:var(--mat-form-field-leading-icon-color, var(--mat-sys-on-surface-variant))}.mat-form-field-disabled .mat-mdc-form-field-icon-prefix{color:var(--mat-form-field-disabled-leading-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-trailing-icon-color, var(--mat-sys-on-surface-variant))}.mat-form-field-disabled .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-disabled-trailing-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-form-field-invalid .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-error-trailing-icon-color, var(--mat-sys-error))}.mat-form-field-invalid:not(.mat-focused):not(.mat-form-field-disabled) .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-error-hover-trailing-icon-color, var(--mat-sys-on-error-container))}.mat-form-field-invalid.mat-focused .mat-mdc-text-field-wrapper .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-error-focus-trailing-icon-color, var(--mat-sys-error))}.mat-mdc-form-field-icon-prefix,[dir=rtl] .mat-mdc-form-field-icon-suffix{padding:0 4px 0 0}.mat-mdc-form-field-icon-suffix,[dir=rtl] .mat-mdc-form-field-icon-prefix{padding:0 0 0 4px}.mat-mdc-form-field-subscript-wrapper .mat-icon,.mat-mdc-form-field label .mat-icon{width:1em;height:1em;font-size:inherit}.mat-mdc-form-field-infix{flex:auto;min-width:0;width:180px;position:relative;box-sizing:border-box}.mat-mdc-form-field-infix:has(textarea[cols]){width:auto}.mat-mdc-form-field .mdc-notched-outline__notch{margin-left:-1px;-webkit-clip-path:inset(-9em -999em -9em 1px);clip-path:inset(-9em -999em -9em 1px)}[dir=rtl] .mat-mdc-form-field .mdc-notched-outline__notch{margin-left:0;margin-right:-1px;-webkit-clip-path:inset(-9em 1px -9em -999em);clip-path:inset(-9em 1px -9em -999em)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-floating-label{transition:transform 150ms cubic-bezier(0.4, 0, 0.2, 1),color 150ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field__input{transition:opacity 150ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field__input::placeholder{transition:opacity 67ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field__input::-moz-placeholder{transition:opacity 67ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field__input::-webkit-input-placeholder{transition:opacity 67ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field__input:-ms-input-placeholder{transition:opacity 67ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--no-label .mdc-text-field__input::placeholder,.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--focused .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms}.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--no-label .mdc-text-field__input::-moz-placeholder,.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--focused .mdc-text-field__input::-moz-placeholder{transition-delay:40ms;transition-duration:110ms}.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--no-label .mdc-text-field__input::-webkit-input-placeholder,.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--focused .mdc-text-field__input::-webkit-input-placeholder{transition-delay:40ms;transition-duration:110ms}.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--no-label .mdc-text-field__input:-ms-input-placeholder,.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--focused .mdc-text-field__input:-ms-input-placeholder{transition-delay:40ms;transition-duration:110ms}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field--filled:not(.mdc-ripple-upgraded):focus .mdc-text-field__ripple::before{transition-duration:75ms}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-line-ripple::after{transition:transform 180ms cubic-bezier(0.4, 0, 0.2, 1),opacity 180ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field.mat-form-field-animations-enabled .mat-mdc-form-field-error-wrapper{animation-duration:300ms}.mdc-notched-outline .mdc-floating-label{max-width:calc(100% + 1px)}.mdc-notched-outline--upgraded .mdc-floating-label--float-above{max-width:calc(133.3333333333% + 1px)}\n'],encapsulation:2,changeDetection:0})}return ce})()},70152:(Ae,ee,l)=>{"use strict";l.d(ee,{B:()=>S});var i=l(43236),t=l(39974),p=l(54360);function S(c,e=i.E){return(0,t.N)((T,g)=>{let d=null,w=null,m=null;const P=()=>{if(d){d.unsubscribe(),d=null;const j=w;w=null,g.next(j)}};function M(){const j=m+c,U=e.now();if(U{w=j,m=e.now(),d||(d=e.schedule(M,c),g.add(d))},()=>{P(),g.complete()},void 0,()=>{w=d=null}))})}},70274:(Ae,ee,l)=>{"use strict";l.d(ee,{H:()=>p});var i=l(31397),t=l(98071);function p(S,c){return(0,t.T)(c)?(0,i.Z)(S,c,1):(0,i.Z)(S,1)}},70336:(Ae,ee,l)=>{var i=l(13546),t=l(27054).Buffer,p=l(95725);function S(e){var T=e._cipher.encryptBlockRaw(e._prev);return p(e._prev),T}ee.encrypt=function(e,T){var g=Math.ceil(T.length/16),d=e._cache.length;e._cache=t.concat([e._cache,t.allocUnsafe(16*g)]);for(var w=0;w{"use strict";var i=l(27054).Buffer,t=l(41090);function p(S,c){this._block=i.alloc(S),this._finalSize=c,this._blockSize=S,this._len=0}p.prototype.update=function(S,c){S=t(S,c||"utf8");for(var e=this._block,T=this._blockSize,g=S.length,d=this._len,w=0;w=this._finalSize&&(this._update(this._block),this._block.fill(0));var e=8*this._len;if(e<=4294967295)this._block.writeUInt32BE(e,this._blockSize-4);else{var T=(4294967295&e)>>>0;this._block.writeUInt32BE((e-T)/4294967296,this._blockSize-8),this._block.writeUInt32BE(T,this._blockSize-4)}this._update(this._block);var d=this._hash();return S?d.toString(S):d},p.prototype._update=function(){throw new Error("_update must be implemented by subclass")},Ae.exports=p},70483:(Ae,ee,l)=>{"use strict";l.d(ee,{O:()=>S});var i=l(2615),t=l(73664),p=l(22466);let S=(()=>{class c{static \u0275fac=function(g){return new(g||c)};static \u0275mod=t.$C({type:c});static \u0275inj=i.G2t({imports:[p.y]})}return c})()},70837:Ae=>{"use strict";Ae.exports=Math.abs},70980:(Ae,ee,l)=>{"use strict";l.d(ee,{j:()=>t});var i=l(39974);function t(p){return(0,i.N)((S,c)=>{try{S.subscribe(c)}finally{c.add(p)}})}},71039:(Ae,ee,l)=>{var i=l(27054).Buffer;function t(S,c,e){for(var m,P,g=-1,w=0;++g<8;)w+=(128&(P=S._cipher.encryptBlock(S._prev)[0]^(m=c&1<<7-g?128:0)))>>g%8,S._prev=p(S._prev,e?m:P);return w}function p(S,c){var e=S.length,T=-1,g=i.allocUnsafe(S.length);for(S=i.concat([S,i.from([c])]);++T>7;return g}ee.encrypt=function(S,c,e){for(var T=c.length,g=i.allocUnsafe(T),d=-1;++d{"use strict";l.d(ee,{F:()=>t,m:()=>p});var i=l(33669);function t(...S){return p(S)}function p(S){return 0===S.length?i.D:1===S.length?S[0]:function(e){return S.reduce((T,g)=>g(T),e)}}},71228:(Ae,ee,l)=>{"use strict";l.d(ee,{R:()=>e});var i=l(72318),t=l(2615),p=l(73664),S=l(69588),c=l(22466);let e=(()=>{class T{static \u0275fac=function(w){return new(w||T)};static \u0275mod=p.$C({type:T});static \u0275inj=t.G2t({imports:[c.y,i.w5,S.rl,c.y]})}return T})()},71549:(Ae,ee,l)=>{"use strict";ee.utils=l(85671),ee.Cipher=l(10219),ee.DES=l(64166),ee.CBC=l(88800),ee.EDE=l(62122)},71985:(Ae,ee,l)=>{"use strict";l.d(ee,{c:()=>g});var i=l(47707),t=l(18359),p=l(3494),S=l(71203),c=l(41026),e=l(98071),T=l(49786);let g=(()=>{class P{constructor(j){j&&(this._subscribe=j)}lift(j){const U=new P;return U.source=this,U.operator=j,U}subscribe(j,U,K){const q=function m(P){return P&&P instanceof i.vU||function w(P){return P&&(0,e.T)(P.next)&&(0,e.T)(P.error)&&(0,e.T)(P.complete)}(P)&&(0,t.Uv)(P)}(j)?j:new i.Ms(j,U,K);return(0,T.Y)(()=>{const{operator:G,source:Q}=this;q.add(G?G.call(q,Q):Q?this._subscribe(q):this._trySubscribe(q))}),q}_trySubscribe(j){try{return this._subscribe(j)}catch(U){j.error(U)}}forEach(j,U){return new(U=d(U))((K,q)=>{const G=new i.Ms({next:Q=>{try{j(Q)}catch($){q($),G.unsubscribe()}},error:q,complete:K});this.subscribe(G)})}_subscribe(j){var U;return null===(U=this.source)||void 0===U?void 0:U.subscribe(j)}[p.s](){return this}pipe(...j){return(0,S.m)(j)(this)}toPromise(j){return new(j=d(j))((U,K)=>{let q;this.subscribe(G=>q=G,G=>K(G),()=>U(q))})}}return P.create=M=>new P(M),P})();function d(P){var M;return null!==(M=P??c.$.Promise)&&void 0!==M?M:Promise}},71993:Ae=>{Ae.exports="function"==typeof Object.create?function(l,i){i&&(l.super_=i,l.prototype=Object.create(i.prototype,{constructor:{value:l,enumerable:!1,writable:!0,configurable:!0}}))}:function(l,i){if(i){l.super_=i;var t=function(){};t.prototype=i.prototype,l.prototype=new t,l.prototype.constructor=l}}},71997:(Ae,ee,l)=>{"use strict";l.d(ee,{q:()=>c,w:()=>e});var i=l(2615),t=l(73664),p=l(14085),S=l(22466);let c=(()=>{class T{get vertical(){return this._vertical}set vertical(d){this._vertical=(0,p.he)(d)}_vertical=!1;get inset(){return this._inset}set inset(d){this._inset=(0,p.he)(d)}_inset=!1;static \u0275fac=function(w){return new(w||T)};static \u0275cmp=t.VBU({type:T,selectors:[["mat-divider"]],hostAttrs:["role","separator",1,"mat-divider"],hostVars:7,hostBindings:function(w,m){2&w&&(t.BMQ("aria-orientation",m.vertical?"vertical":"horizontal"),t.AVh("mat-divider-vertical",m.vertical)("mat-divider-horizontal",!m.vertical)("mat-divider-inset",m.inset))},inputs:{vertical:"vertical",inset:"inset"},decls:0,vars:0,template:function(w,m){},styles:[".mat-divider{display:block;margin:0;border-top-style:solid;border-top-color:var(--mat-divider-color, var(--mat-sys-outline-variant));border-top-width:var(--mat-divider-width, 1px)}.mat-divider.mat-divider-vertical{border-top:0;border-right-style:solid;border-right-color:var(--mat-divider-color, var(--mat-sys-outline-variant));border-right-width:var(--mat-divider-width, 1px)}.mat-divider.mat-divider-inset{margin-left:80px}[dir=rtl] .mat-divider.mat-divider-inset{margin-left:auto;margin-right:80px}\n"],encapsulation:2,changeDetection:0})}return T})(),e=(()=>{class T{static \u0275fac=function(w){return new(w||T)};static \u0275mod=t.$C({type:T});static \u0275inj=i.G2t({imports:[S.y,S.y]})}return T})()},72193:(Ae,ee,l)=>{var i=l(71993),t=l(83838).Buffer,p=l(49609),S=p.base,c=p.constants.der;function e(w){this.enc="der",this.name=w.name,this.entity=w,this.tree=new T,this.tree._init(w.body)}function T(w){S.Node.call(this,"der",w)}function g(w){return w<10?"0"+w:w}Ae.exports=e,e.prototype.encode=function(m,P){return this.tree._encode(m,P).join()},i(T,S.Node),T.prototype._encodeComposite=function(m,P,M,j){var G,U=function d(w,m,P,M){var j;if("seqof"===w?w="seq":"setof"===w&&(w="set"),c.tagByName.hasOwnProperty(w))j=c.tagByName[w];else{if("number"!=typeof w||(0|w)!==w)return M.error("Unknown tag: "+w);j=w}return j>=31?M.error("Multi-octet tag encoding unsupported"):(m||(j|=32),j|=c.tagClassByName[P||"universal"]<<6)}(m,P,M,this.reporter);if(j.length<128)return(G=new t(2))[0]=U,G[1]=j.length,this._createEncoderBuffer([G,j]);for(var K=1,q=j.length;q>=256;q>>=8)K++;(G=new t(2+K))[0]=U,G[1]=128|K,q=1+K;for(var Q=j.length;Q>0;q--,Q>>=8)G[q]=255&Q;return this._createEncoderBuffer([G,j])},T.prototype._encodeStr=function(m,P){if("bitstr"===P)return this._createEncoderBuffer([0|m.unused,m.data]);if("bmpstr"===P){for(var M=new t(2*m.length),j=0;j=40)return this.reporter.error("Second objid identifier OOB");m.splice(0,2,40*m[0]+m[1])}var U=0;for(j=0;j=128;K>>=7)U++}var q=new t(U),G=q.length-1;for(j=m.length-1;j>=0;j--)for(q[G--]=127&(K=m[j]);(K>>=7)>0;)q[G--]=128|127&K;return this._createEncoderBuffer(q)},T.prototype._encodeTime=function(m,P){var M,j=new Date(m);return"gentime"===P?M=[g(j.getFullYear()),g(j.getUTCMonth()+1),g(j.getUTCDate()),g(j.getUTCHours()),g(j.getUTCMinutes()),g(j.getUTCSeconds()),"Z"].join(""):"utctime"===P?M=[g(j.getFullYear()%100),g(j.getUTCMonth()+1),g(j.getUTCDate()),g(j.getUTCHours()),g(j.getUTCMinutes()),g(j.getUTCSeconds()),"Z"].join(""):this.reporter.error("Encoding "+P+" time is not supported yet"),this._encodeStr(M,"octstr")},T.prototype._encodeNull=function(){return this._createEncoderBuffer("")},T.prototype._encodeInt=function(m,P){if("string"==typeof m){if(!P)return this.reporter.error("String int or enum given, but no values map");if(!P.hasOwnProperty(m))return this.reporter.error("Values map doesn't contain: "+JSON.stringify(m));m=P[m]}if("number"!=typeof m&&!t.isBuffer(m)){var M=m.toArray();!m.sign&&128&M[0]&&M.unshift(0),m=new t(M)}if(t.isBuffer(m)){var j=m.length;0===m.length&&j++;var K=new t(j);return m.copy(K),0===m.length&&(K[0]=0),this._createEncoderBuffer(K)}if(m<128)return this._createEncoderBuffer(m);if(m<256)return this._createEncoderBuffer([0,m]);j=1;for(var U=m;U>=256;U>>=8)j++;for(U=(K=new Array(j)).length-1;U>=0;U--)K[U]=255&m,m>>=8;return 128&K[0]&&K.unshift(0),this._createEncoderBuffer(new t(K))},T.prototype._encodeBool=function(m){return this._createEncoderBuffer(m?255:0)},T.prototype._use=function(m,P){return"function"==typeof m&&(m=m(P)),m._getEncoder("der").tree},T.prototype._skipDefault=function(m,P,M){var U,j=this._baseState;if(null===j.default)return!1;var K=m.join();if(void 0===j.defaultBuffer&&(j.defaultBuffer=this._encodeValue(j.default,P,M).join()),K.length!==j.defaultBuffer.length)return!1;for(U=0;U{"use strict";l.d(ee,{B3:()=>jt,GH:()=>Fn,Jj:()=>An,MD:()=>wi,P9:()=>Mi,PV:()=>Gi,Pc:()=>Ci,QX:()=>an,Sq:()=>ui,T3:()=>ai,TG:()=>ni,YU:()=>ei,bT:()=>dn,e1:()=>Ve,fG:()=>Fe,fw:()=>e,lG:()=>kn,ux:()=>Ze,vh:()=>ji});var i=l(2615),t=l(73664),p=l(17705),S=l(59295),c=l(57303);let e=(()=>{class Xe extends c.hb{_platformLocation;_baseHref="";_removeListenerFns=[];constructor(gt,Ft){super(),this._platformLocation=gt,null!=Ft&&(this._baseHref=Ft)}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(gt){this._removeListenerFns.push(this._platformLocation.onPopState(gt),this._platformLocation.onHashChange(gt))}getBaseHref(){return this._baseHref}path(gt=!1){const Ft=this._platformLocation.hash??"#";return Ft.length>0?Ft.substring(1):Ft}prepareExternalUrl(gt){const Ft=(0,c.om)(this._baseHref,gt);return Ft.length>0?"#"+Ft:Ft}pushState(gt,Ft,gi,Bi){const Qi=this.prepareExternalUrl(gi+(0,c.Q)(Bi))||this._platformLocation.pathname;this._platformLocation.pushState(gt,Ft,Qi)}replaceState(gt,Ft,gi,Bi){const Qi=this.prepareExternalUrl(gi+(0,c.Q)(Bi))||this._platformLocation.pathname;this._platformLocation.replaceState(gt,Ft,Qi)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(gt=0){this._platformLocation.historyGo?.(gt)}static \u0275fac=function(Ft){return new(Ft||Xe)(i.KVO(c.Vw),i.KVO(c.kB,8))};static \u0275prov=i.jDH({token:Xe,factory:Xe.\u0275fac})}return Xe})();var g=function(Xe){return Xe[Xe.Decimal=0]="Decimal",Xe[Xe.Percent=1]="Percent",Xe[Xe.Currency=2]="Currency",Xe[Xe.Scientific=3]="Scientific",Xe}(g||{}),w=function(Xe){return Xe[Xe.Format=0]="Format",Xe[Xe.Standalone=1]="Standalone",Xe}(w||{}),m=function(Xe){return Xe[Xe.Narrow=0]="Narrow",Xe[Xe.Abbreviated=1]="Abbreviated",Xe[Xe.Wide=2]="Wide",Xe[Xe.Short=3]="Short",Xe}(m||{}),P=function(Xe){return Xe[Xe.Short=0]="Short",Xe[Xe.Medium=1]="Medium",Xe[Xe.Long=2]="Long",Xe[Xe.Full=3]="Full",Xe}(P||{});function ue(Xe,Gt){return r((0,t.kBR)(Xe)[t.NSC.DateFormat],Gt)}function oe(Xe,Gt){return r((0,t.kBR)(Xe)[t.NSC.TimeFormat],Gt)}function he(Xe,Gt){return r((0,t.kBR)(Xe)[t.NSC.DateTimeFormat],Gt)}function me(Xe,Gt){const gt=(0,t.kBR)(Xe),Ft=gt[t.NSC.NumberSymbols][Gt];if(typeof Ft>"u"){if(12===Gt)return gt[t.NSC.NumberSymbols][0];if(13===Gt)return gt[t.NSC.NumberSymbols][1]}return Ft}function b(Xe){if(!Xe[t.NSC.ExtraData])throw new i.buA(2303,!1)}function r(Xe,Gt){for(let gt=Gt;gt>-1;gt--)if(typeof Xe[gt]<"u")return Xe[gt];throw new i.buA(2304,!1)}function _(Xe){const[Gt,gt]=Xe.split(":");return{hours:+Gt,minutes:+gt}}const re=/^(\d{4,})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/,pe={},be=/((?:[^BEGHLMOSWYZabcdhmswyz']+)|(?:'(?:[^']|'')*')|(?:G{1,5}|y{1,4}|Y{1,4}|M{1,5}|L{1,5}|w{1,2}|W{1}|d{1,2}|E{1,6}|c{1,6}|a{1,5}|b{1,5}|B{1,5}|h{1,2}|H{1,2}|m{1,2}|s{1,2}|S{1,3}|z{1,4}|Z{1,5}|O{1,4}))([\s\S]*)/;function Be(Xe,Gt,gt,Ft){let gi=function ht(Xe){if(Qt(Xe))return Xe;if("number"==typeof Xe&&!isNaN(Xe))return new Date(Xe);if("string"==typeof Xe){if(Xe=Xe.trim(),/^(\d{4}(-\d{1,2}(-\d{1,2})?)?)$/.test(Xe)){const[gi,Bi=1,Qi=1]=Xe.split("-").map(fn=>+fn);return ye(gi,Bi-1,Qi)}const gt=parseFloat(Xe);if(!isNaN(Xe-gt))return new Date(gt);let Ft;if(Ft=Xe.match(re))return function li(Xe){const Gt=new Date(0);let gt=0,Ft=0;const gi=Xe[8]?Gt.setUTCFullYear:Gt.setFullYear,Bi=Xe[8]?Gt.setUTCHours:Gt.setHours;Xe[9]&&(gt=Number(Xe[9]+Xe[10]),Ft=Number(Xe[9]+Xe[11])),gi.call(Gt,Number(Xe[1]),Number(Xe[2])-1,Number(Xe[3]));const Qi=Number(Xe[4]||0)-gt,fn=Number(Xe[5]||0)-Ft,ma=Number(Xe[6]||0),da=Math.floor(1e3*parseFloat("0."+(Xe[7]||0)));return Bi.call(Gt,Qi,fn,ma,da),Gt}(Ft)}const Gt=new Date(Xe);if(!Qt(Gt))throw new i.buA(2311,!1);return Gt}(Xe);Gt=Le(gt,Gt)||Gt;let fn,Qi=[];for(;Gt;){if(fn=be.exec(Gt),!fn){Qi.push(Gt);break}{Qi=Qi.concat(fn.slice(1));const ga=Qi.pop();if(!ga)break;Gt=ga}}let ma=gi.getTimezoneOffset();Ft&&(ma=J(Ft,ma),gi=function Ie(Xe,Gt){const gi=Xe.getTimezoneOffset();return function fe(Xe,Gt){return(Xe=new Date(Xe.getTime())).setMinutes(Xe.getMinutes()+Gt),Xe}(Xe,-1*(J(Gt,gi)-gi))}(gi,Ft));let da="";return Qi.forEach(ga=>{const Zn=function Z(Xe){if(ze[Xe])return ze[Xe];let Gt;switch(Xe){case"G":case"GG":case"GGG":Gt=dt(3,m.Abbreviated);break;case"GGGG":Gt=dt(3,m.Wide);break;case"GGGGG":Gt=dt(3,m.Narrow);break;case"y":Gt=Oe(0,1,0,!1,!0);break;case"yy":Gt=Oe(0,2,0,!0,!0);break;case"yyy":Gt=Oe(0,3,0,!1,!0);break;case"yyyy":Gt=Oe(0,4,0,!1,!0);break;case"Y":Gt=Ce(1);break;case"YY":Gt=Ce(2,!0);break;case"YYY":Gt=Ce(3);break;case"YYYY":Gt=Ce(4);break;case"M":case"L":Gt=Oe(1,1,1);break;case"MM":case"LL":Gt=Oe(1,2,1);break;case"MMM":Gt=dt(2,m.Abbreviated);break;case"MMMM":Gt=dt(2,m.Wide);break;case"MMMMM":Gt=dt(2,m.Narrow);break;case"LLL":Gt=dt(2,m.Abbreviated,w.Standalone);break;case"LLLL":Gt=dt(2,m.Wide,w.Standalone);break;case"LLLLL":Gt=dt(2,m.Narrow,w.Standalone);break;case"w":Gt=ct(1);break;case"ww":Gt=ct(2);break;case"W":Gt=ct(1,!0);break;case"d":Gt=Oe(2,1);break;case"dd":Gt=Oe(2,2);break;case"c":case"cc":Gt=Oe(7,1);break;case"ccc":Gt=dt(1,m.Abbreviated,w.Standalone);break;case"cccc":Gt=dt(1,m.Wide,w.Standalone);break;case"ccccc":Gt=dt(1,m.Narrow,w.Standalone);break;case"cccccc":Gt=dt(1,m.Short,w.Standalone);break;case"E":case"EE":case"EEE":Gt=dt(1,m.Abbreviated);break;case"EEEE":Gt=dt(1,m.Wide);break;case"EEEEE":Gt=dt(1,m.Narrow);break;case"EEEEEE":Gt=dt(1,m.Short);break;case"a":case"aa":case"aaa":Gt=dt(0,m.Abbreviated);break;case"aaaa":Gt=dt(0,m.Wide);break;case"aaaaa":Gt=dt(0,m.Narrow);break;case"b":case"bb":case"bbb":Gt=dt(0,m.Abbreviated,w.Standalone,!0);break;case"bbbb":Gt=dt(0,m.Wide,w.Standalone,!0);break;case"bbbbb":Gt=dt(0,m.Narrow,w.Standalone,!0);break;case"B":case"BB":case"BBB":Gt=dt(0,m.Abbreviated,w.Format,!0);break;case"BBBB":Gt=dt(0,m.Wide,w.Format,!0);break;case"BBBBB":Gt=dt(0,m.Narrow,w.Format,!0);break;case"h":Gt=Oe(3,1,-12);break;case"hh":Gt=Oe(3,2,-12);break;case"H":Gt=Oe(3,1);break;case"HH":Gt=Oe(3,2);break;case"m":Gt=Oe(4,1);break;case"mm":Gt=Oe(4,2);break;case"s":Gt=Oe(5,1);break;case"ss":Gt=Oe(5,2);break;case"S":Gt=Oe(6,1);break;case"SS":Gt=Oe(6,2);break;case"SSS":Gt=Oe(6,3);break;case"Z":case"ZZ":case"ZZZ":Gt=Ct(0);break;case"ZZZZZ":Gt=Ct(3);break;case"O":case"OO":case"OOO":case"z":case"zz":case"zzz":Gt=Ct(1);break;case"OOOO":case"ZZZZ":case"zzzz":Gt=Ct(2);break;default:return null}return ze[Xe]=Gt,Gt}(ga);da+=Zn?Zn(gi,gt,ma):"''"===ga?"'":ga.replace(/(^'|'$)/g,"").replace(/''/g,"'")}),da}function ye(Xe,Gt,gt){const Ft=new Date(0);return Ft.setFullYear(Xe,Gt,gt),Ft.setHours(0,0,0),Ft}function Le(Xe,Gt){const gt=function U(Xe){return(0,t.kBR)(Xe)[t.NSC.LocaleId]}(Xe);if(pe[gt]??={},pe[gt][Gt])return pe[gt][Gt];let Ft="";switch(Gt){case"shortDate":Ft=ue(Xe,P.Short);break;case"mediumDate":Ft=ue(Xe,P.Medium);break;case"longDate":Ft=ue(Xe,P.Long);break;case"fullDate":Ft=ue(Xe,P.Full);break;case"shortTime":Ft=oe(Xe,P.Short);break;case"mediumTime":Ft=oe(Xe,P.Medium);break;case"longTime":Ft=oe(Xe,P.Long);break;case"fullTime":Ft=oe(Xe,P.Full);break;case"short":const gi=Le(Xe,"shortTime"),Bi=Le(Xe,"shortDate");Ft=Ke(he(Xe,P.Short),[gi,Bi]);break;case"medium":const Qi=Le(Xe,"mediumTime"),fn=Le(Xe,"mediumDate");Ft=Ke(he(Xe,P.Medium),[Qi,fn]);break;case"long":const ma=Le(Xe,"longTime"),da=Le(Xe,"longDate");Ft=Ke(he(Xe,P.Long),[ma,da]);break;case"full":const ga=Le(Xe,"fullTime"),Zn=Le(Xe,"fullDate");Ft=Ke(he(Xe,P.Full),[ga,Zn])}return Ft&&(pe[gt][Gt]=Ft),Ft}function Ke(Xe,Gt){return Gt&&(Xe=Xe.replace(/\{([^}]+)}/g,function(gt,Ft){return null!=Gt&&Ft in Gt?Gt[Ft]:gt})),Xe}function ge(Xe,Gt,gt="-",Ft,gi){let Bi="";(Xe<0||gi&&Xe<=0)&&(gi?Xe=1-Xe:(Xe=-Xe,Bi=gt));let Qi=String(Xe);for(;Qi.length0||fn>-gt)&&(fn+=gt),3===Xe)0===fn&&-12===gt&&(fn=12);else if(6===Xe)return function ve(Xe,Gt){return ge(Xe,3).substring(0,Gt)}(fn,Gt);const ma=me(Qi,5);return ge(fn,Gt,ma,Ft,gi)}}function dt(Xe,Gt,gt=w.Format,Ft=!1){return function(gi,Bi){return function nt(Xe,Gt,gt,Ft,gi,Bi){switch(gt){case 2:return function G(Xe,Gt,gt){const Ft=(0,t.kBR)(Xe),Bi=r([Ft[t.NSC.MonthsFormat],Ft[t.NSC.MonthsStandalone]],Gt);return r(Bi,gt)}(Gt,gi,Ft)[Xe.getMonth()];case 1:return function q(Xe,Gt,gt){const Ft=(0,t.kBR)(Xe),Bi=r([Ft[t.NSC.DaysFormat],Ft[t.NSC.DaysStandalone]],Gt);return r(Bi,gt)}(Gt,gi,Ft)[Xe.getDay()];case 0:const Qi=Xe.getHours(),fn=Xe.getMinutes();if(Bi){const da=function A(Xe){const Gt=(0,t.kBR)(Xe);return b(Gt),(Gt[t.NSC.ExtraData][2]||[]).map(Ft=>"string"==typeof Ft?_(Ft):[_(Ft[0]),_(Ft[1])])}(Gt),ga=function k(Xe,Gt,gt){const Ft=(0,t.kBR)(Xe);b(Ft);const Bi=r([Ft[t.NSC.ExtraData][0],Ft[t.NSC.ExtraData][1]],Gt)||[];return r(Bi,gt)||[]}(Gt,gi,Ft),Zn=da.findIndex(Sa=>{if(Array.isArray(Sa)){const[ia,pa]=Sa,Er=Qi>=ia.hours&&fn>=ia.minutes,xa=Qi0?Math.floor(gi/60):Math.ceil(gi/60);switch(Xe){case 0:return(gi>=0?"+":"")+ge(Qi,2,Bi)+ge(Math.abs(gi%60),2,Bi);case 1:return"GMT"+(gi>=0?"+":"")+ge(Qi,1,Bi);case 2:return"GMT"+(gi>=0?"+":"")+ge(Qi,2,Bi)+":"+ge(Math.abs(gi%60),2,Bi);case 3:return 0===Ft?"Z":(gi>=0?"+":"")+ge(Qi,2,Bi)+":"+ge(Math.abs(gi%60),2,Bi);default:throw new i.buA(2310,!1)}}}const Mt=0,lt=4;function Ht(Xe){const Gt=Xe.getDay(),gt=0===Gt?-3:lt-Gt;return ye(Xe.getFullYear(),Xe.getMonth(),Xe.getDate()+gt)}function ct(Xe,Gt=!1){return function(gt,Ft){let gi;if(Gt){const Bi=new Date(gt.getFullYear(),gt.getMonth(),1).getDay()-1,Qi=gt.getDate();gi=1+Math.floor((Qi+Bi)/7)}else{const Bi=Ht(gt),Qi=function Pe(Xe){const Gt=ye(Xe,Mt,1).getDay();return ye(Xe,0,1+(Gt<=lt?lt:lt+7)-Gt)}(Bi.getFullYear()),fn=Bi.getTime()-Qi.getTime();gi=1+Math.round(fn/6048e5)}return ge(gi,Xe,me(Ft,5))}}function Ce(Xe,Gt=!1){return function(gt,Ft){return ge(Ht(gt).getFullYear(),Xe,me(Ft,5),Gt)}}const ze={};function J(Xe,Gt){Xe=Xe.replace(/:/g,"");const gt=Date.parse("Jan 01, 1970 00:00:00 "+Xe)/6e4;return isNaN(gt)?Gt:gt}function Qt(Xe){return Xe instanceof Date&&!isNaN(Xe.valueOf())}const di=/^(\d+)?\.((\d+)(-(\d+))?)?$/;function Et(Xe){const Gt=parseInt(Xe);if(isNaN(Gt))throw new i.buA(2305,!1);return Gt}const tt=/\s+/,vi=[];let ei=(()=>{class Xe{_ngEl;_renderer;initialClasses=vi;rawClass;stateMap=new Map;constructor(gt,Ft){this._ngEl=gt,this._renderer=Ft}set klass(gt){this.initialClasses=null!=gt?gt.trim().split(tt):vi}set ngClass(gt){this.rawClass="string"==typeof gt?gt.trim().split(tt):gt}ngDoCheck(){for(const Ft of this.initialClasses)this._updateState(Ft,!0);const gt=this.rawClass;if(Array.isArray(gt)||gt instanceof Set)for(const Ft of gt)this._updateState(Ft,!0);else if(null!=gt)for(const Ft of Object.keys(gt))this._updateState(Ft,!!gt[Ft]);this._applyStateDiff()}_updateState(gt,Ft){const gi=this.stateMap.get(gt);void 0!==gi?(gi.enabled!==Ft&&(gi.changed=!0,gi.enabled=Ft),gi.touched=!0):this.stateMap.set(gt,{enabled:Ft,changed:!0,touched:!0})}_applyStateDiff(){for(const gt of this.stateMap){const Ft=gt[0],gi=gt[1];gi.changed?(this._toggleClass(Ft,gi.enabled),gi.changed=!1):gi.touched||(gi.enabled&&this._toggleClass(Ft,!1),this.stateMap.delete(Ft)),gi.touched=!1}}_toggleClass(gt,Ft){(gt=gt.trim()).length>0&>.split(tt).forEach(gi=>{Ft?this._renderer.addClass(this._ngEl.nativeElement,gi):this._renderer.removeClass(this._ngEl.nativeElement,gi)})}static \u0275fac=function(Ft){return new(Ft||Xe)(t.rXU(t.aKT),t.rXU(t.sFG))};static \u0275dir=t.FsC({type:Xe,selectors:[["","ngClass",""]],inputs:{klass:[0,"class","klass"],ngClass:"ngClass"}})}return Xe})();class oi{$implicit;ngForOf;index;count;constructor(Gt,gt,Ft,gi){this.$implicit=Gt,this.ngForOf=gt,this.index=Ft,this.count=gi}get first(){return 0===this.index}get last(){return this.index===this.count-1}get even(){return this.index%2==0}get odd(){return!this.even}}let ui=(()=>{class Xe{_viewContainer;_template;_differs;set ngForOf(gt){this._ngForOf=gt,this._ngForOfDirty=!0}set ngForTrackBy(gt){this._trackByFn=gt}get ngForTrackBy(){return this._trackByFn}_ngForOf=null;_ngForOfDirty=!0;_differ=null;_trackByFn;constructor(gt,Ft,gi){this._viewContainer=gt,this._template=Ft,this._differs=gi}set ngForTemplate(gt){gt&&(this._template=gt)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const gt=this._ngForOf;!this._differ&>&&(this._differ=this._differs.find(gt).create(this.ngForTrackBy))}if(this._differ){const gt=this._differ.diff(this._ngForOf);gt&&this._applyChanges(gt)}}_applyChanges(gt){const Ft=this._viewContainer;gt.forEachOperation((gi,Bi,Qi)=>{if(null==gi.previousIndex)Ft.createEmbeddedView(this._template,new oi(gi.item,this._ngForOf,-1,-1),null===Qi?void 0:Qi);else if(null==Qi)Ft.remove(null===Bi?void 0:Bi);else if(null!==Bi){const fn=Ft.get(Bi);Ft.move(fn,Qi),ln(fn,gi)}});for(let gi=0,Bi=Ft.length;gi{ln(Ft.get(gi.currentIndex),gi)})}static ngTemplateContextGuard(gt,Ft){return!0}static \u0275fac=function(Ft){return new(Ft||Xe)(t.rXU(t.c1b),t.rXU(t.C4Q),t.rXU(p._q3))};static \u0275dir=t.FsC({type:Xe,selectors:[["","ngFor","","ngForOf",""]],inputs:{ngForOf:"ngForOf",ngForTrackBy:"ngForTrackBy",ngForTemplate:"ngForTemplate"}})}return Xe})();function ln(Xe,Gt){Xe.context.$implicit=Gt.item}let dn=(()=>{class Xe{_viewContainer;_context=new zn;_thenTemplateRef=null;_elseTemplateRef=null;_thenViewRef=null;_elseViewRef=null;constructor(gt,Ft){this._viewContainer=gt,this._thenTemplateRef=Ft}set ngIf(gt){this._context.$implicit=this._context.ngIf=gt,this._updateView()}set ngIfThen(gt){It(gt),this._thenTemplateRef=gt,this._thenViewRef=null,this._updateView()}set ngIfElse(gt){It(gt),this._elseTemplateRef=gt,this._elseViewRef=null,this._updateView()}_updateView(){this._context.$implicit?this._thenViewRef||(this._viewContainer.clear(),this._elseViewRef=null,this._thenTemplateRef&&(this._thenViewRef=this._viewContainer.createEmbeddedView(this._thenTemplateRef,this._context))):this._elseViewRef||(this._viewContainer.clear(),this._thenViewRef=null,this._elseTemplateRef&&(this._elseViewRef=this._viewContainer.createEmbeddedView(this._elseTemplateRef,this._context)))}static ngIfUseIfTypeGuard;static ngTemplateGuard_ngIf;static ngTemplateContextGuard(gt,Ft){return!0}static \u0275fac=function(Ft){return new(Ft||Xe)(t.rXU(t.c1b),t.rXU(t.C4Q))};static \u0275dir=t.FsC({type:Xe,selectors:[["","ngIf",""]],inputs:{ngIf:"ngIf",ngIfThen:"ngIfThen",ngIfElse:"ngIfElse"}})}return Xe})();class zn{$implicit=null;ngIf=null}function It(Xe,Gt){if(Xe&&!Xe.createEmbeddedView)throw new i.buA(2020,!1)}class Tt{_viewContainerRef;_templateRef;_created=!1;constructor(Gt,gt){this._viewContainerRef=Gt,this._templateRef=gt}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(Gt){Gt&&!this._created?this.create():!Gt&&this._created&&this.destroy()}}let Ze=(()=>{class Xe{_defaultViews=[];_defaultUsed=!1;_caseCount=0;_lastCaseCheckIndex=0;_lastCasesMatched=!1;_ngSwitch;set ngSwitch(gt){this._ngSwitch=gt,0===this._caseCount&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(gt){this._defaultViews.push(gt)}_matchCase(gt){const Ft=gt===this._ngSwitch;return this._lastCasesMatched||=Ft,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),Ft}_updateDefaultCases(gt){if(this._defaultViews.length>0&>!==this._defaultUsed){this._defaultUsed=gt;for(const Ft of this._defaultViews)Ft.enforceState(gt)}}static \u0275fac=function(Ft){return new(Ft||Xe)};static \u0275dir=t.FsC({type:Xe,selectors:[["","ngSwitch",""]],inputs:{ngSwitch:"ngSwitch"}})}return Xe})(),Ve=(()=>{class Xe{ngSwitch;_view;ngSwitchCase;constructor(gt,Ft,gi){this.ngSwitch=gi,gi._addCase(),this._view=new Tt(gt,Ft)}ngDoCheck(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))}static \u0275fac=function(Ft){return new(Ft||Xe)(t.rXU(t.c1b),t.rXU(t.C4Q),t.rXU(Ze,9))};static \u0275dir=t.FsC({type:Xe,selectors:[["","ngSwitchCase",""]],inputs:{ngSwitchCase:"ngSwitchCase"}})}return Xe})(),Fe=(()=>{class Xe{constructor(gt,Ft,gi){gi._addDefault(new Tt(gt,Ft))}static \u0275fac=function(Ft){return new(Ft||Xe)(t.rXU(t.c1b),t.rXU(t.C4Q),t.rXU(Ze,9))};static \u0275dir=t.FsC({type:Xe,selectors:[["","ngSwitchDefault",""]]})}return Xe})(),jt=(()=>{class Xe{_ngEl;_differs;_renderer;_ngStyle=null;_differ=null;constructor(gt,Ft,gi){this._ngEl=gt,this._differs=Ft,this._renderer=gi}set ngStyle(gt){this._ngStyle=gt,!this._differ&>&&(this._differ=this._differs.find(gt).create())}ngDoCheck(){if(this._differ){const gt=this._differ.diff(this._ngStyle);gt&&this._applyChanges(gt)}}_setStyle(gt,Ft){const[gi,Bi]=gt.split("."),Qi=-1===gi.indexOf("-")?void 0:t.czy.DashCase;null!=Ft?this._renderer.setStyle(this._ngEl.nativeElement,gi,Bi?`${Ft}${Bi}`:Ft,Qi):this._renderer.removeStyle(this._ngEl.nativeElement,gi,Qi)}_applyChanges(gt){gt.forEachRemovedItem(Ft=>this._setStyle(Ft.key,null)),gt.forEachAddedItem(Ft=>this._setStyle(Ft.key,Ft.currentValue)),gt.forEachChangedItem(Ft=>this._setStyle(Ft.key,Ft.currentValue))}static \u0275fac=function(Ft){return new(Ft||Xe)(t.rXU(t.aKT),t.rXU(p.MKu),t.rXU(t.sFG))};static \u0275dir=t.FsC({type:Xe,selectors:[["","ngStyle",""]],inputs:{ngStyle:"ngStyle"}})}return Xe})(),ai=(()=>{class Xe{_viewContainerRef;_viewRef=null;ngTemplateOutletContext=null;ngTemplateOutlet=null;ngTemplateOutletInjector=null;constructor(gt){this._viewContainerRef=gt}ngOnChanges(gt){if(this._shouldRecreateView(gt)){const Ft=this._viewContainerRef;if(this._viewRef&&Ft.remove(Ft.indexOf(this._viewRef)),!this.ngTemplateOutlet)return void(this._viewRef=null);const gi=this._createContextForwardProxy();this._viewRef=Ft.createEmbeddedView(this.ngTemplateOutlet,gi,{injector:this.ngTemplateOutletInjector??void 0})}}_shouldRecreateView(gt){return!!gt.ngTemplateOutlet||!!gt.ngTemplateOutletInjector}_createContextForwardProxy(){return new Proxy({},{set:(gt,Ft,gi)=>!!this.ngTemplateOutletContext&&Reflect.set(this.ngTemplateOutletContext,Ft,gi),get:(gt,Ft,gi)=>{if(this.ngTemplateOutletContext)return Reflect.get(this.ngTemplateOutletContext,Ft,gi)}})}static \u0275fac=function(Ft){return new(Ft||Xe)(t.rXU(t.c1b))};static \u0275dir=t.FsC({type:Xe,selectors:[["","ngTemplateOutlet",""]],inputs:{ngTemplateOutletContext:"ngTemplateOutletContext",ngTemplateOutlet:"ngTemplateOutlet",ngTemplateOutletInjector:"ngTemplateOutletInjector"},features:[t.OA$]})}return Xe})();function ki(Xe,Gt){return new i.buA(2100,!1)}class Ki{createSubscription(Gt,gt,Ft){return(0,S.O8)(()=>Gt.subscribe({next:gt,error:Ft}))}dispose(Gt){(0,S.O8)(()=>Gt.unsubscribe())}}class Ji{createSubscription(Gt,gt,Ft){return Gt.then(gi=>gt?.(gi),gi=>Ft?.(gi)),{unsubscribe:()=>{gt=null,Ft=null}}}dispose(Gt){Gt.unsubscribe()}}const Dn=new Ji,En=new Ki;let An=(()=>{class Xe{_ref;_latestValue=null;markForCheckOnValueUpdate=!0;_subscription=null;_obj=null;_strategy=null;applicationErrorHandler=(0,i.WQX)(i.ZTf);constructor(gt){this._ref=gt}ngOnDestroy(){this._subscription&&this._dispose(),this._ref=null}transform(gt){if(!this._obj){if(gt)try{this.markForCheckOnValueUpdate=!1,this._subscribe(gt)}finally{this.markForCheckOnValueUpdate=!0}return this._latestValue}return gt!==this._obj?(this._dispose(),this.transform(gt)):this._latestValue}_subscribe(gt){this._obj=gt,this._strategy=this._selectStrategy(gt),this._subscription=this._strategy.createSubscription(gt,Ft=>this._updateLatestValue(gt,Ft),Ft=>this.applicationErrorHandler(Ft))}_selectStrategy(gt){if((0,t.yLl)(gt))return Dn;if((0,t.cdK)(gt))return En;throw ki()}_dispose(){this._strategy.dispose(this._subscription),this._latestValue=null,this._subscription=null,this._obj=null}_updateLatestValue(gt,Ft){gt===this._obj&&(this._latestValue=Ft,this.markForCheckOnValueUpdate&&this._ref?.markForCheck())}static \u0275fac=function(Ft){return new(Ft||Xe)(t.rXU(p.gRc,16))};static \u0275pipe=t.EJ8({name:"async",type:Xe,pure:!1})}return Xe})(),Fn=(()=>{class Xe{transform(gt){if(null==gt)return null;if("string"!=typeof gt)throw ki();return gt.toLowerCase()}static \u0275fac=function(Ft){return new(Ft||Xe)};static \u0275pipe=t.EJ8({name:"lowercase",type:Xe,pure:!0})}return Xe})();const xi=/(?:[0-9A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF38\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A])\S*/g;let Gi=(()=>{class Xe{transform(gt){if(null==gt)return null;if("string"!=typeof gt)throw ki();return gt.replace(xi,Ft=>Ft[0].toUpperCase()+Ft.slice(1).toLowerCase())}static \u0275fac=function(Ft){return new(Ft||Xe)};static \u0275pipe=t.EJ8({name:"titlecase",type:Xe,pure:!0})}return Xe})(),Ci=(()=>{class Xe{transform(gt){if(null==gt)return null;if("string"!=typeof gt)throw ki();return gt.toUpperCase()}static \u0275fac=function(Ft){return new(Ft||Xe)};static \u0275pipe=t.EJ8({name:"uppercase",type:Xe,pure:!0})}return Xe})();const Yi=new i.nKC(""),zt=new i.nKC("");let ji=(()=>{class Xe{locale;defaultTimezone;defaultOptions;constructor(gt,Ft,gi){this.locale=gt,this.defaultTimezone=Ft,this.defaultOptions=gi}transform(gt,Ft,gi,Bi){if(null==gt||""===gt||gt!=gt)return null;try{return Be(gt,Ft??this.defaultOptions?.dateFormat??"mediumDate",Bi||this.locale,gi??this.defaultOptions?.timezone??this.defaultTimezone??void 0)}catch(Qi){throw ki()}}static \u0275fac=function(Ft){return new(Ft||Xe)(t.rXU(t.xe9,16),t.rXU(Yi,24),t.rXU(zt,24))};static \u0275pipe=t.EJ8({name:"date",type:Xe,pure:!0})}return Xe})(),ni=(()=>{class Xe{transform(gt){return JSON.stringify(gt,null,2)}static \u0275fac=function(Ft){return new(Ft||Xe)};static \u0275pipe=t.EJ8({name:"json",type:Xe,pure:!1})}return Xe})(),kn=(()=>{class Xe{differs;constructor(gt){this.differs=gt}differ;keyValues=[];compareFn=ca;transform(gt,Ft=ca){if(!gt||!(gt instanceof Map)&&"object"!=typeof gt)return null;this.differ??=this.differs.find(gt).create();const gi=this.differ.diff(gt),Bi=Ft!==this.compareFn;return gi&&(this.keyValues=[],gi.forEachItem(Qi=>{this.keyValues.push(function Fi(Xe,Gt){return{key:Xe,value:Gt}}(Qi.key,Qi.currentValue))})),(gi||Bi)&&(Ft&&this.keyValues.sort(Ft),this.compareFn=Ft),this.keyValues}static \u0275fac=function(Ft){return new(Ft||Xe)(t.rXU(p.MKu,16))};static \u0275pipe=t.EJ8({name:"keyvalue",type:Xe,pure:!1})}return Xe})();function ca(Xe,Gt){const gt=Xe.key,Ft=Gt.key;if(gt===Ft)return 0;if(null==gt)return 1;if(null==Ft)return-1;if("string"==typeof gt&&"string"==typeof Ft)return gt{class Xe{_locale;constructor(gt){this._locale=gt}transform(gt,Ft,gi){if(!function mr(Xe){return!(null==Xe||""===Xe||Xe!=Xe)}(gt))return null;gi||=this._locale;try{return function Vt(Xe,Gt,gt){return function Ne(Xe,Gt,gt,Ft,gi,Bi,Qi=!1){let fn="",ma=!1;if(isFinite(Xe)){let da=function Ye(Xe){let Ft,gi,Bi,Qi,fn,Gt=Math.abs(Xe)+"",gt=0;for((gi=Gt.indexOf("."))>-1&&(Gt=Gt.replace(".","")),(Bi=Gt.search(/e/i))>0?(gi<0&&(gi=Bi),gi+=+Gt.slice(Bi+1),Gt=Gt.substring(0,Bi)):gi<0&&(gi=Gt.length),Bi=0;"0"===Gt.charAt(Bi);Bi++);if(Bi===(fn=Gt.length))Ft=[0],gi=1;else{for(fn--;"0"===Gt.charAt(fn);)fn--;for(gi-=Bi,Ft=[],Qi=0;Bi<=fn;Bi++,Qi++)Ft[Qi]=Number(Gt.charAt(Bi))}return gi>22&&(Ft=Ft.splice(0,21),gt=gi-1,gi=1),{digits:Ft,exponent:gt,integerLen:gi}}(Xe);Qi&&(da=function ti(Xe){if(0===Xe.digits[0])return Xe;const Gt=Xe.digits.length-Xe.integerLen;return Xe.exponent?Xe.exponent+=2:(0===Gt?Xe.digits.push(0,0):1===Gt&&Xe.digits.push(0),Xe.integerLen+=2),Xe}(da));let ga=Gt.minInt,Zn=Gt.minFrac,Sa=Gt.maxFrac;if(Bi){const Ta=Bi.match(di);if(null===Ta)throw new i.buA(2306,!1);const wr=Ta[1],ja=Ta[3],Wa=Ta[5];null!=wr&&(ga=Et(wr)),null!=ja&&(Zn=Et(ja)),null!=Wa?Sa=Et(Wa):null!=ja&&Zn>Sa&&(Sa=Zn)}!function Nt(Xe,Gt,gt){if(Gt>gt)throw new i.buA(2307,!1);let Ft=Xe.digits,gi=Ft.length-Xe.integerLen;const Bi=Math.min(Math.max(Gt,gi),gt);let Qi=Bi+Xe.integerLen,fn=Ft[Qi];if(Qi>0){Ft.splice(Math.max(Xe.integerLen,Qi));for(let Zn=Qi;Zn=5)if(Qi-1<0){for(let Zn=0;Zn>Qi;Zn--)Ft.unshift(0),Xe.integerLen++;Ft.unshift(1),Xe.integerLen++}else Ft[Qi-1]++;for(;gi=da?pa.pop():ma=!1),Sa>=10?1:0},0);ga&&(Ft.unshift(ga),Xe.integerLen++)}(da,Zn,Sa);let ia=da.digits,pa=da.integerLen;const Er=da.exponent;let xa=[];for(ma=ia.every(Ta=>!Ta);pa0?xa=ia.splice(pa,ia.length):(xa=ia,ia=[0]);const Xr=[];for(ia.length>=Gt.lgSize&&Xr.unshift(ia.splice(-Gt.lgSize,ia.length).join(""));ia.length>Gt.gSize;)Xr.unshift(ia.splice(-Gt.gSize,ia.length).join(""));ia.length&&Xr.unshift(ia.join("")),fn=Xr.join(me(gt,Ft)),xa.length&&(fn+=me(gt,gi)+xa.join("")),Er&&(fn+=me(gt,6)+"+"+Er)}else fn=me(gt,9);return fn=Xe<0&&!ma?Gt.negPre+fn+Gt.negSuf:Gt.posPre+fn+Gt.posSuf,fn}(Xe,function Zt(Xe,Gt="-"){const gt={minInt:1,minFrac:0,maxFrac:0,posPre:"",posSuf:"",negPre:"",negSuf:"",gSize:0,lgSize:0},Ft=Xe.split(";"),gi=Ft[0],Bi=Ft[1],Qi=-1!==gi.indexOf(".")?gi.split("."):[gi.substring(0,gi.lastIndexOf("0")+1),gi.substring(gi.lastIndexOf("0")+1)],fn=Qi[0],ma=Qi[1]||"";gt.posPre=fn.substring(0,fn.indexOf("#"));for(let ga=0;ga{class Xe{transform(gt,Ft,gi){if(null==gt)return null;if("string"!=typeof gt&&!Array.isArray(gt))throw ki();return gt.slice(Ft,gi)}static \u0275fac=function(Ft){return new(Ft||Xe)};static \u0275pipe=t.EJ8({name:"slice",type:Xe,pure:!1})}return Xe})(),wi=(()=>{class Xe{static \u0275fac=function(Ft){return new(Ft||Xe)};static \u0275mod=t.$C({type:Xe});static \u0275inj=i.G2t({})}return Xe})()},72279:(Ae,ee,l)=>{"use strict";l.d(ee,{kZ:()=>h,s3:()=>Be,NL:()=>B,Dc:()=>ge,xn:()=>re,Sz:()=>k,a$:()=>b,aI:()=>ye,Hy:()=>Le,XO:()=>f});var i=l(83869),t=l(74402),p=l(21413),S=l(84412),c=l(7673),e=l(84572),T=l(983),g=l(28793),d=l(96697),w=l(5964),m=l(56977),P=l(99172),M=l(88141),j=l(25558),U=l(96354),K=l(46649),q=l(39974);function G(ve,Oe){return(0,q.N)((0,K.S)(ve,Oe,arguments.length>=2,!1,!0))}var Q=l(70274),$=l(23294),ae=l(73664),ue=l(2615),oe=l(17705),he=l(4125),me=l(61577),Te=l(14117),D=l(8045);class n{dataNodes;expansionModel=new i.C(!0);trackBy;getLevel;isExpandable;getChildren;toggle(Oe){this.expansionModel.toggle(this._trackByValue(Oe))}expand(Oe){this.expansionModel.select(this._trackByValue(Oe))}collapse(Oe){this.expansionModel.deselect(this._trackByValue(Oe))}isExpanded(Oe){return this.expansionModel.isSelected(this._trackByValue(Oe))}toggleDescendants(Oe){this.expansionModel.isSelected(this._trackByValue(Oe))?this.collapseDescendants(Oe):this.expandDescendants(Oe)}collapseAll(){this.expansionModel.clear()}expandDescendants(Oe){let Ee=[Oe];Ee.push(...this.getDescendants(Oe)),this.expansionModel.select(...Ee.map(dt=>this._trackByValue(dt)))}collapseDescendants(Oe){let Ee=[Oe];Ee.push(...this.getDescendants(Oe)),this.expansionModel.deselect(...Ee.map(dt=>this._trackByValue(dt)))}_trackByValue(Oe){return this.trackBy?this.trackBy(Oe):Oe}}class f extends n{getChildren;options;constructor(Oe,Ee){super(),this.getChildren=Oe,this.options=Ee,this.options&&(this.trackBy=this.options.trackBy),this.options?.isExpandable&&(this.isExpandable=this.options.isExpandable)}expandAll(){this.expansionModel.clear();const Oe=this.dataNodes.reduce((Ee,dt)=>[...Ee,...this.getDescendants(dt),dt],[]);this.expansionModel.select(...Oe.map(Ee=>this._trackByValue(Ee)))}getDescendants(Oe){const Ee=[];return this._getDescendants(Ee,Oe),Ee.splice(1)}_getDescendants(Oe,Ee){Oe.push(Ee);const dt=this.getChildren(Ee);Array.isArray(dt)?dt.forEach(nt=>this._getDescendants(Oe,nt)):(0,t.A)(dt)&&dt.pipe((0,d.s)(1),(0,w.p)(Boolean)).subscribe(nt=>{for(const Ct of nt)this._getDescendants(Oe,Ct)})}}const h=new ue.nKC("CDK_TREE_NODE_OUTLET_NODE");let b=(()=>{class ve{viewContainer=(0,ue.WQX)(ae.c1b);_node=(0,ue.WQX)(h,{optional:!0});constructor(){}static \u0275fac=function(dt){return new(dt||ve)};static \u0275dir=ae.FsC({type:ve,selectors:[["","cdkTreeNodeOutlet",""]]})}return ve})();class A{$implicit;level;index;count;constructor(Oe){this.$implicit=Oe}}let k=(()=>{class ve{template=(0,ue.WQX)(ae.C4Q);when;constructor(){}static \u0275fac=function(dt){return new(dt||ve)};static \u0275dir=ae.FsC({type:ve,selectors:[["","cdkTreeNodeDef",""]],inputs:{when:[0,"cdkTreeNodeDefWhen","when"]}})}return ve})();function W(){return Error("Could not find a tree control, levelAccessor, or childrenAccessor for the tree.")}let B=(()=>{class ve{_differs=(0,ue.WQX)(oe._q3);_changeDetectorRef=(0,ue.WQX)(oe.gRc);_elementRef=(0,ue.WQX)(ae.aKT);_dir=(0,ue.WQX)(me.dS);_onDestroy=new p.B;_dataDiffer;_defaultNodeDef;_dataSubscription;_levels=new Map;_parents=new Map;_ariaSets=new Map;get dataSource(){return this._dataSource}set dataSource(Ee){this._dataSource!==Ee&&this._switchDataSource(Ee)}_dataSource;treeControl;levelAccessor;childrenAccessor;trackBy;expansionKey;_nodeOutlet;_nodeDefs;viewChange=new S.t({start:0,end:Number.MAX_VALUE});_expansionModel;_flattenedNodes=new S.t([]);_nodeType=new S.t(null);_nodes=new S.t(new Map);_keyManagerNodes=new S.t([]);_keyManagerFactory=(0,ue.WQX)(he.Z2);_keyManager;_viewInit=!1;constructor(){}ngAfterContentInit(){this._initializeKeyManager()}ngAfterContentChecked(){this._updateDefaultNodeDefinition(),this._subscribeToDataChanges()}ngOnDestroy(){this._nodeOutlet.viewContainer.clear(),this._nodes.complete(),this._keyManagerNodes.complete(),this._nodeType.complete(),this._flattenedNodes.complete(),this.viewChange.complete(),this._onDestroy.next(),this._onDestroy.complete(),this._dataSource&&"function"==typeof this._dataSource.disconnect&&this.dataSource.disconnect(this),this._dataSubscription&&(this._dataSubscription.unsubscribe(),this._dataSubscription=null),this._keyManager?.destroy()}ngOnInit(){this._checkTreeControlUsage(),this._initializeDataDiffer()}ngAfterViewInit(){this._viewInit=!0}_updateDefaultNodeDefinition(){const Ee=this._nodeDefs.filter(dt=>!dt.when);this._defaultNodeDef=Ee[0]}_setNodeTypeIfUnset(Ee){null===this._nodeType.value&&this._nodeType.next(Ee)}_switchDataSource(Ee){this._dataSource&&"function"==typeof this._dataSource.disconnect&&this.dataSource.disconnect(this),this._dataSubscription&&(this._dataSubscription.unsubscribe(),this._dataSubscription=null),Ee||this._nodeOutlet.viewContainer.clear(),this._dataSource=Ee,this._nodeDefs&&this._subscribeToDataChanges()}_getExpansionModel(){return this.treeControl?this.treeControl.expansionModel:(this._expansionModel??=new i.C(!0),this._expansionModel)}_subscribeToDataChanges(){if(this._dataSubscription)return;let Ee;(0,Te.y)(this._dataSource)?Ee=this._dataSource.connect(this):(0,t.A)(this._dataSource)?Ee=this._dataSource:Array.isArray(this._dataSource)&&(Ee=(0,c.of)(this._dataSource)),Ee&&(this._dataSubscription=this._getRenderData(Ee).pipe((0,m.Q)(this._onDestroy)).subscribe(dt=>{this._renderDataChanges(dt)}))}_getRenderData(Ee){const dt=this._getExpansionModel();return(0,e.z)([Ee,this._nodeType,dt.changed.pipe((0,P.Z)(null),(0,M.M)(nt=>{this._emitExpansionChanges(nt)}))]).pipe((0,j.n)(([nt,Ct])=>null===Ct?(0,c.of)({renderNodes:nt,flattenedNodes:null,nodeType:Ct}):this._computeRenderingData(nt,Ct).pipe((0,U.T)(Mt=>({...Mt,nodeType:Ct})))))}_renderDataChanges(Ee){null!==Ee.nodeType?(this._updateCachedData(Ee.flattenedNodes),this.renderNodeChanges(Ee.renderNodes),this._updateKeyManagerItems(Ee.flattenedNodes)):this.renderNodeChanges(Ee.renderNodes)}_emitExpansionChanges(Ee){if(!Ee)return;const dt=this._nodes.value;for(const nt of Ee.added)dt.get(nt)?._emitExpansionState(!0);for(const nt of Ee.removed)dt.get(nt)?._emitExpansionState(!1)}_initializeKeyManager(){const Ee=(0,e.z)([this._keyManagerNodes,this._nodes]).pipe((0,U.T)(([nt,Ct])=>nt.reduce((Mt,lt)=>{const Pe=Ct.get(this._getExpansionKey(lt));return Pe&&Mt.push(Pe),Mt},[])));this._keyManager=this._keyManagerFactory(Ee,{trackBy:nt=>this._getExpansionKey(nt.data),skipPredicate:nt=>!!nt.isDisabled,typeAheadDebounceInterval:!0,horizontalOrientation:this._dir.value})}_initializeDataDiffer(){const Ee=this.trackBy??((dt,nt)=>this._getExpansionKey(nt));this._dataDiffer=this._differs.find([]).create(Ee)}_checkTreeControlUsage(){}renderNodeChanges(Ee,dt=this._dataDiffer,nt=this._nodeOutlet.viewContainer,Ct){const Mt=dt.diff(Ee);!Mt&&!this._viewInit||(Mt?.forEachOperation((lt,Pe,Ht)=>{if(null==lt.previousIndex)this.insertNode(Ee[Ht],Ht,nt,Ct);else if(null==Ht)nt.remove(Pe);else{const ct=nt.get(Pe);nt.move(ct,Ht)}}),Mt?.forEachIdentityChange(lt=>{const Pe=lt.item;null!=lt.currentIndex&&(nt.get(lt.currentIndex).context.$implicit=Pe)}),Ct?this._changeDetectorRef.markForCheck():this._changeDetectorRef.detectChanges())}_getNodeDef(Ee,dt){return 1===this._nodeDefs.length?this._nodeDefs.first:this._nodeDefs.find(Ct=>Ct.when&&Ct.when(dt,Ee))||this._defaultNodeDef}insertNode(Ee,dt,nt,Ct){const Mt=this._getLevelAccessor(),lt=this._getNodeDef(Ee,dt),Pe=this._getExpansionKey(Ee),Ht=new A(Ee);Ht.index=dt,Ct??=this._parents.get(Pe)??void 0,Ht.level=Mt?Mt(Ee):void 0!==Ct&&this._levels.has(this._getExpansionKey(Ct))?this._levels.get(this._getExpansionKey(Ct))+1:0,this._levels.set(Pe,Ht.level),(nt||this._nodeOutlet.viewContainer).createEmbeddedView(lt.template,Ht,dt),re.mostRecentTreeNode&&(re.mostRecentTreeNode.data=Ee)}isExpanded(Ee){return!(!this.treeControl?.isExpanded(Ee)&&!this._expansionModel?.isSelected(this._getExpansionKey(Ee)))}toggle(Ee){this.treeControl?this.treeControl.toggle(Ee):this._expansionModel&&this._expansionModel.toggle(this._getExpansionKey(Ee))}expand(Ee){this.treeControl?this.treeControl.expand(Ee):this._expansionModel&&this._expansionModel.select(this._getExpansionKey(Ee))}collapse(Ee){this.treeControl?this.treeControl.collapse(Ee):this._expansionModel&&this._expansionModel.deselect(this._getExpansionKey(Ee))}toggleDescendants(Ee){this.treeControl?this.treeControl.toggleDescendants(Ee):this._expansionModel&&(this.isExpanded(Ee)?this.collapseDescendants(Ee):this.expandDescendants(Ee))}expandDescendants(Ee){if(this.treeControl)this.treeControl.expandDescendants(Ee);else if(this._expansionModel){const dt=this._expansionModel;dt.select(this._getExpansionKey(Ee)),this._getDescendants(Ee).pipe((0,d.s)(1),(0,m.Q)(this._onDestroy)).subscribe(nt=>{dt.select(...nt.map(Ct=>this._getExpansionKey(Ct)))})}}collapseDescendants(Ee){if(this.treeControl)this.treeControl.collapseDescendants(Ee);else if(this._expansionModel){const dt=this._expansionModel;dt.deselect(this._getExpansionKey(Ee)),this._getDescendants(Ee).pipe((0,d.s)(1),(0,m.Q)(this._onDestroy)).subscribe(nt=>{dt.deselect(...nt.map(Ct=>this._getExpansionKey(Ct)))})}}expandAll(){this.treeControl?this.treeControl.expandAll():this._expansionModel&&this._forEachExpansionKey(Ee=>this._expansionModel?.select(...Ee))}collapseAll(){this.treeControl?this.treeControl.collapseAll():this._expansionModel&&this._forEachExpansionKey(Ee=>this._expansionModel?.deselect(...Ee))}_getLevelAccessor(){return this.treeControl?.getLevel?.bind(this.treeControl)??this.levelAccessor}_getChildrenAccessor(){return this.treeControl?.getChildren?.bind(this.treeControl)??this.childrenAccessor}_getDirectChildren(Ee){const dt=this._getLevelAccessor(),nt=this._expansionModel??this.treeControl?.expansionModel;if(!nt)return(0,c.of)([]);const Ct=this._getExpansionKey(Ee),Mt=nt.changed.pipe((0,j.n)(Pe=>Pe.added.includes(Ct)?(0,c.of)(!0):Pe.removed.includes(Ct)?(0,c.of)(!1):T.w),(0,P.Z)(this.isExpanded(Ee)));if(dt)return(0,e.z)([Mt,this._flattenedNodes]).pipe((0,U.T)(([Pe,Ht])=>Pe?this._findChildrenByLevel(dt,Ht,Ee,1):[]));const lt=this._getChildrenAccessor();if(lt)return(0,D.x)(lt(Ee)??[]);throw W()}_findChildrenByLevel(Ee,dt,nt,Ct){const Mt=this._getExpansionKey(nt),lt=dt.findIndex(Ce=>this._getExpansionKey(Ce)===Mt),Pe=Ee(nt),Ht=Pe+Ct,ct=[];for(let Ce=lt+1;Cethis._getExpansionKey(Ct)===nt)+1}_getNodeParent(Ee){const dt=this._parents.get(this._getExpansionKey(Ee.data));return dt&&this._nodes.value.get(this._getExpansionKey(dt))}_getNodeChildren(Ee){return this._getDirectChildren(Ee.data).pipe((0,U.T)(dt=>dt.reduce((nt,Ct)=>{const Mt=this._nodes.value.get(this._getExpansionKey(Ct));return Mt&&nt.push(Mt),nt},[])))}_sendKeydownToKeyManager(Ee){if(Ee.target===this._elementRef.nativeElement)this._keyManager.onKeydown(Ee);else{const dt=this._nodes.getValue();for(const[,nt]of dt)if(Ee.target===nt._elementRef.nativeElement){this._keyManager.onKeydown(Ee);break}}}_getDescendants(Ee){if(this.treeControl)return(0,c.of)(this.treeControl.getDescendants(Ee));if(this.levelAccessor){const dt=this._findChildrenByLevel(this.levelAccessor,this._flattenedNodes.value,Ee,1/0);return(0,c.of)(dt)}if(this.childrenAccessor)return this._getAllChildrenRecursively(Ee).pipe(G((dt,nt)=>(dt.push(...nt),dt),[]));throw W()}_getAllChildrenRecursively(Ee){return this.childrenAccessor?(0,D.x)(this.childrenAccessor(Ee)).pipe((0,d.s)(1),(0,j.n)(dt=>{for(const nt of dt)this._parents.set(this._getExpansionKey(nt),Ee);return(0,c.of)(...dt).pipe((0,Q.H)(nt=>(0,g.x)((0,c.of)([nt]),this._getAllChildrenRecursively(nt))))})):(0,c.of)([])}_getExpansionKey(Ee){return this.expansionKey?.(Ee)??Ee}_getAriaSet(Ee){const dt=this._getExpansionKey(Ee),nt=this._parents.get(dt),Ct=nt?this._getExpansionKey(nt):null;return this._ariaSets.get(Ct)??[Ee]}_findParentForNode(Ee,dt,nt){if(!nt.length)return null;const Ct=this._levels.get(this._getExpansionKey(Ee))??0;for(let Mt=dt-1;Mt>=0;Mt--){const lt=nt[Mt];if((this._levels.get(this._getExpansionKey(lt))??0){const Mt=this._getExpansionKey(Ct);this._parents.has(Mt)||this._parents.set(Mt,null),this._levels.set(Mt,dt);const lt=(0,D.x)(nt(Ct));return(0,g.x)((0,c.of)([Ct]),lt.pipe((0,d.s)(1),(0,M.M)(Pe=>{this._ariaSets.set(Mt,[...Pe??[]]);for(const Ht of Pe??[]){const ct=this._getExpansionKey(Ht);this._parents.set(ct,Ct),this._levels.set(ct,dt+1)}}),(0,j.n)(Pe=>Pe?this._flattenNestedNodesWithExpansion(Pe,dt+1).pipe((0,U.T)(Ht=>this.isExpanded(Ct)?Ht:[])):(0,c.of)([]))))}),G((Ct,Mt)=>(Ct.push(...Mt),Ct),[])):(0,c.of)([...Ee])}_computeRenderingData(Ee,dt){if(this.childrenAccessor&&"flat"===dt)return this._clearPreviousCache(),this._ariaSets.set(null,[...Ee]),this._flattenNestedNodesWithExpansion(Ee).pipe((0,U.T)(nt=>({renderNodes:nt,flattenedNodes:nt})));if(this.levelAccessor&&"nested"===dt){const nt=this.levelAccessor;return(0,c.of)(Ee.filter(Ct=>0===nt(Ct))).pipe((0,U.T)(Ct=>({renderNodes:Ct,flattenedNodes:Ee})),(0,M.M)(({flattenedNodes:Ct})=>{this._calculateParents(Ct)}))}return"flat"===dt?(0,c.of)({renderNodes:Ee,flattenedNodes:Ee}).pipe((0,M.M)(({flattenedNodes:nt})=>{this._calculateParents(nt)})):(this._clearPreviousCache(),this._ariaSets.set(null,[...Ee]),this._flattenNestedNodesWithExpansion(Ee).pipe((0,U.T)(nt=>({renderNodes:Ee,flattenedNodes:nt}))))}_updateCachedData(Ee){this._flattenedNodes.next(Ee)}_updateKeyManagerItems(Ee){this._keyManagerNodes.next(Ee)}_calculateParents(Ee){const dt=this._getLevelAccessor();if(dt){this._clearPreviousCache();for(let nt=0;nt{dt.push(this._getExpansionKey(Ct.data)),nt.push(this._getDescendants(Ct.data))}),nt.length>0?(0,e.z)(nt).pipe((0,d.s)(1),(0,m.Q)(this._onDestroy)).subscribe(Ct=>{Ct.forEach(Mt=>Mt.forEach(lt=>dt.push(this._getExpansionKey(lt)))),Ee(dt)}):Ee(dt)}_clearPreviousCache(){this._parents.clear(),this._levels.clear(),this._ariaSets.clear()}static \u0275fac=function(dt){return new(dt||ve)};static \u0275cmp=ae.VBU({type:ve,selectors:[["cdk-tree"]],contentQueries:function(dt,nt,Ct){if(1&dt&&ae.wni(Ct,k,5),2&dt){let Mt;ae.mGM(Mt=ae.lsd())&&(nt._nodeDefs=Mt)}},viewQuery:function(dt,nt){if(1&dt&&ae.GBs(b,7),2&dt){let Ct;ae.mGM(Ct=ae.lsd())&&(nt._nodeOutlet=Ct.first)}},hostAttrs:["role","tree",1,"cdk-tree"],hostBindings:function(dt,nt){1&dt&&ae.bIt("keydown",function(Mt){return nt._sendKeydownToKeyManager(Mt)})},inputs:{dataSource:"dataSource",treeControl:"treeControl",levelAccessor:"levelAccessor",childrenAccessor:"childrenAccessor",trackBy:"trackBy",expansionKey:"expansionKey"},exportAs:["cdkTree"],decls:1,vars:0,consts:[["cdkTreeNodeOutlet",""]],template:function(dt,nt){1&dt&&ae.eu8(0,0)},dependencies:[b],encapsulation:2})}return ve})(),re=(()=>{class ve{_elementRef=(0,ue.WQX)(ae.aKT);_tree=(0,ue.WQX)(B);_tabindex=-1;_type="flat";get role(){return"treeitem"}set role(Ee){}get isExpandable(){return this._isExpandable()}set isExpandable(Ee){this._inputIsExpandable=Ee,(!this.data||this._isExpandable)&&this._inputIsExpandable&&(this._inputIsExpanded?this.expand():!1===this._inputIsExpanded&&this.collapse())}get isExpanded(){return this._tree.isExpanded(this._data)}set isExpanded(Ee){this._inputIsExpanded=Ee,Ee?this.expand():this.collapse()}isDisabled;typeaheadLabel;getLabel(){return this.typeaheadLabel||this._elementRef.nativeElement.textContent?.trim()||""}activation=new ae.bkB;expandedChange=new ae.bkB;static mostRecentTreeNode=null;_destroyed=new p.B;_dataChanges=new p.B;_inputIsExpandable=!1;_inputIsExpanded=void 0;_shouldFocus=!0;_parentNodeAriaLevel;get data(){return this._data}set data(Ee){Ee!==this._data&&(this._data=Ee,this._dataChanges.next())}_data;get isLeafNode(){return void 0!==this._tree.treeControl?.isExpandable&&!this._tree.treeControl.isExpandable(this._data)||void 0===this._tree.treeControl?.isExpandable&&0===this._tree.treeControl?.getDescendants(this._data).length}get level(){return this._tree._getLevel(this._data)??this._parentNodeAriaLevel}_isExpandable(){return this._tree.treeControl?!this.isLeafNode:this._inputIsExpandable}_getAriaExpanded(){return this._isExpandable()?String(this.isExpanded):null}_getSetSize(){return this._tree._getSetSize(this._data)}_getPositionInSet(){return this._tree._getPositionInSet(this._data)}_changeDetectorRef=(0,ue.WQX)(oe.gRc);constructor(){ve.mostRecentTreeNode=this}ngOnInit(){this._parentNodeAriaLevel=function pe(ve){let Oe=ve.parentElement;for(;Oe&&!be(Oe);)Oe=Oe.parentElement;return Oe?Oe.classList.contains("cdk-nested-tree-node")?(0,oe.Udg)(Oe.getAttribute("aria-level")):0:-1}(this._elementRef.nativeElement),this._tree._getExpansionModel().changed.pipe((0,U.T)(()=>this.isExpanded),(0,$.F)(),(0,m.Q)(this._destroyed)).pipe((0,m.Q)(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck()),this._tree._setNodeTypeIfUnset(this._type),this._tree._registerNode(this)}ngOnDestroy(){ve.mostRecentTreeNode===this&&(ve.mostRecentTreeNode=null),this._dataChanges.complete(),this._destroyed.next(),this._destroyed.complete()}getParent(){return this._tree._getNodeParent(this)??null}getChildren(){return this._tree._getNodeChildren(this)}focus(){this._tabindex=0,this._shouldFocus&&this._elementRef.nativeElement.focus(),this._changeDetectorRef.markForCheck()}unfocus(){this._tabindex=-1,this._changeDetectorRef.markForCheck()}activate(){this.isDisabled||this.activation.next(this._data)}collapse(){this.isExpandable&&this._tree.collapse(this._data)}expand(){this.isExpandable&&this._tree.expand(this._data)}makeFocusable(){this._tabindex=0,this._changeDetectorRef.markForCheck()}_focusItem(){this.isDisabled||this._tree._keyManager.focusItem(this)}_setActiveItem(){this.isDisabled||(this._shouldFocus=!1,this._tree._keyManager.focusItem(this),this._shouldFocus=!0)}_emitExpansionState(Ee){this.expandedChange.emit(Ee)}static \u0275fac=function(dt){return new(dt||ve)};static \u0275dir=ae.FsC({type:ve,selectors:[["cdk-tree-node"]],hostAttrs:["role","treeitem",1,"cdk-tree-node"],hostVars:5,hostBindings:function(dt,nt){1&dt&&ae.bIt("click",function(){return nt._setActiveItem()})("focus",function(){return nt._focusItem()}),2&dt&&(ae.Avn("tabIndex",nt._tabindex),ae.BMQ("aria-expanded",nt._getAriaExpanded())("aria-level",nt.level+1)("aria-posinset",nt._getPositionInSet())("aria-setsize",nt._getSetSize()))},inputs:{role:"role",isExpandable:[2,"isExpandable","isExpandable",oe.L39],isExpanded:"isExpanded",isDisabled:[2,"isDisabled","isDisabled",oe.L39],typeaheadLabel:[0,"cdkTreeNodeTypeaheadLabel","typeaheadLabel"]},outputs:{activation:"activation",expandedChange:"expandedChange"},exportAs:["cdkTreeNode"]})}return ve})();function be(ve){const Oe=ve.classList;return!(!Oe?.contains("cdk-nested-tree-node")&&!Oe?.contains("cdk-tree"))}let Be=(()=>{class ve extends re{_type="nested";_differs=(0,ue.WQX)(oe._q3);_dataDiffer;_children;nodeOutlet;constructor(){super()}ngAfterContentInit(){this._dataDiffer=this._differs.find([]).create(this._tree.trackBy),this._tree._getDirectChildren(this.data).pipe((0,m.Q)(this._destroyed)).subscribe(Ee=>this.updateChildrenNodes(Ee)),this.nodeOutlet.changes.pipe((0,m.Q)(this._destroyed)).subscribe(()=>this.updateChildrenNodes())}ngOnDestroy(){this._clear(),super.ngOnDestroy()}updateChildrenNodes(Ee){const dt=this._getNodeOutlet();Ee&&(this._children=Ee),dt&&this._children?this._tree.renderNodeChanges(this._children,this._dataDiffer,dt.viewContainer,this._data):this._dataDiffer.diff([])}_clear(){const Ee=this._getNodeOutlet();Ee&&(Ee.viewContainer.clear(),this._dataDiffer.diff([]))}_getNodeOutlet(){const Ee=this.nodeOutlet;return Ee&&Ee.find(dt=>!dt._node||dt._node===this)}static \u0275fac=function(dt){return new(dt||ve)};static \u0275dir=ae.FsC({type:ve,selectors:[["cdk-nested-tree-node"]],contentQueries:function(dt,nt,Ct){if(1&dt&&ae.wni(Ct,b,5),2&dt){let Mt;ae.mGM(Mt=ae.lsd())&&(nt.nodeOutlet=Mt)}},hostAttrs:[1,"cdk-nested-tree-node"],exportAs:["cdkNestedTreeNode"],features:[ae.Jv_([{provide:re,useExisting:ve},{provide:h,useExisting:ve}]),ae.Vt3]})}return ve})();const _e=/([A-Za-z%]+)$/;let ye=(()=>{class ve{_treeNode=(0,ue.WQX)(re);_tree=(0,ue.WQX)(B);_element=(0,ue.WQX)(ae.aKT);_dir=(0,ue.WQX)(me.dS,{optional:!0});_currentPadding;_destroyed=new p.B;indentUnits="px";get level(){return this._level}set level(Ee){this._setLevelInput(Ee)}_level;get indent(){return this._indent}set indent(Ee){this._setIndentInput(Ee)}_indent=40;constructor(){this._setPadding(),this._dir?.change.pipe((0,m.Q)(this._destroyed)).subscribe(()=>this._setPadding(!0)),this._treeNode._dataChanges.subscribe(()=>this._setPadding())}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_paddingIndent(){const Ee=(this._treeNode.data&&this._tree._getLevel(this._treeNode.data))??null,dt=null==this._level?Ee:this._level;return"number"==typeof dt?`${dt*this._indent}${this.indentUnits}`:null}_setPadding(Ee=!1){const dt=this._paddingIndent();if(dt!==this._currentPadding||Ee){const nt=this._element.nativeElement,Ct=this._dir&&"rtl"===this._dir.value?"paddingRight":"paddingLeft",Mt="paddingLeft"===Ct?"paddingRight":"paddingLeft";nt.style[Ct]=dt||"",nt.style[Mt]="",this._currentPadding=dt}}_setLevelInput(Ee){this._level=isNaN(Ee)?null:Ee,this._setPadding()}_setIndentInput(Ee){let dt=Ee,nt="px";if("string"==typeof Ee){const Ct=Ee.split(_e);dt=Ct[0],nt=Ct[1]||nt}this.indentUnits=nt,this._indent=(0,oe.Udg)(dt),this._setPadding()}static \u0275fac=function(dt){return new(dt||ve)};static \u0275dir=ae.FsC({type:ve,selectors:[["","cdkTreeNodePadding",""]],inputs:{level:[2,"cdkTreeNodePadding","level",oe.Udg],indent:[0,"cdkTreeNodePaddingIndent","indent"]}})}return ve})(),Le=(()=>{class ve{_tree=(0,ue.WQX)(B);_treeNode=(0,ue.WQX)(re);recursive=!1;constructor(){}_toggle(){this.recursive?this._tree.toggleDescendants(this._treeNode.data):this._tree.toggle(this._treeNode.data),this._tree._keyManager.focusItem(this._treeNode)}static \u0275fac=function(dt){return new(dt||ve)};static \u0275dir=ae.FsC({type:ve,selectors:[["","cdkTreeNodeToggle",""]],hostAttrs:["tabindex","-1"],hostBindings:function(dt,nt){1&dt&&ae.bIt("click",function(Mt){return nt._toggle(),Mt.stopPropagation()})("keydown.Enter",function(Mt){return nt._toggle(),Mt.preventDefault()})("keydown.Space",function(Mt){return nt._toggle(),Mt.preventDefault()})},inputs:{recursive:[2,"cdkTreeNodeToggleRecursive","recursive",oe.L39]}})}return ve})(),ge=(()=>{class ve{static \u0275fac=function(dt){return new(dt||ve)};static \u0275mod=ae.$C({type:ve});static \u0275inj=ue.G2t({})}return ve})()},72318:(Ae,ee,l)=>{"use strict";l.d(ee,{Wv:()=>M,w5:()=>j});var i=l(2615),t=l(73664),p=l(17705),S=l(71985),c=l(21413),e=l(70152),T=l(5964),g=l(96354),d=l(67847);let m=(()=>{class U{create(q){return typeof MutationObserver>"u"?null:new MutationObserver(q)}static \u0275fac=function(G){return new(G||U)};static \u0275prov=i.jDH({token:U,factory:U.\u0275fac,providedIn:"root"})}return U})(),P=(()=>{class U{_mutationObserverFactory=(0,i.WQX)(m);_observedElements=new Map;_ngZone=(0,i.WQX)(t.SKi);constructor(){}ngOnDestroy(){this._observedElements.forEach((q,G)=>this._cleanupObserver(G))}observe(q){const G=(0,d.i8)(q);return new S.c(Q=>{const ae=this._observeElement(G).pipe((0,g.T)(ue=>ue.filter(oe=>!function w(U){if("characterData"===U.type&&U.target instanceof Comment)return!0;if("childList"===U.type){for(let K=0;K!!ue.length)).subscribe(ue=>{this._ngZone.run(()=>{Q.next(ue)})});return()=>{ae.unsubscribe(),this._unobserveElement(G)}})}_observeElement(q){return this._ngZone.runOutsideAngular(()=>{if(this._observedElements.has(q))this._observedElements.get(q).count++;else{const G=new c.B,Q=this._mutationObserverFactory.create($=>G.next($));Q&&Q.observe(q,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(q,{observer:Q,stream:G,count:1})}return this._observedElements.get(q).stream})}_unobserveElement(q){this._observedElements.has(q)&&(this._observedElements.get(q).count--,this._observedElements.get(q).count||this._cleanupObserver(q))}_cleanupObserver(q){if(this._observedElements.has(q)){const{observer:G,stream:Q}=this._observedElements.get(q);G&&G.disconnect(),Q.complete(),this._observedElements.delete(q)}}static \u0275fac=function(G){return new(G||U)};static \u0275prov=i.jDH({token:U,factory:U.\u0275fac,providedIn:"root"})}return U})(),M=(()=>{class U{_contentObserver=(0,i.WQX)(P);_elementRef=(0,i.WQX)(t.aKT);event=new t.bkB;get disabled(){return this._disabled}set disabled(q){this._disabled=q,this._disabled?this._unsubscribe():this._subscribe()}_disabled=!1;get debounce(){return this._debounce}set debounce(q){this._debounce=(0,d.OE)(q),this._subscribe()}_debounce;_currentSubscription=null;constructor(){}ngAfterContentInit(){!this._currentSubscription&&!this.disabled&&this._subscribe()}ngOnDestroy(){this._unsubscribe()}_subscribe(){this._unsubscribe();const q=this._contentObserver.observe(this._elementRef);this._currentSubscription=(this.debounce?q.pipe((0,e.B)(this.debounce)):q).subscribe(this.event)}_unsubscribe(){this._currentSubscription?.unsubscribe()}static \u0275fac=function(G){return new(G||U)};static \u0275dir=t.FsC({type:U,selectors:[["","cdkObserveContent",""]],inputs:{disabled:[2,"cdkObserveContentDisabled","disabled",p.L39],debounce:"debounce"},outputs:{event:"cdkObserveContent"},exportAs:["cdkObserveContent"]})}return U})(),j=(()=>{class U{static \u0275fac=function(G){return new(G||U)};static \u0275mod=t.$C({type:U});static \u0275inj=i.G2t({providers:[m]})}return U})()},72576:(Ae,ee,l)=>{var i=l(27054).Buffer;function t(p,S,c){var T=p._cipher.encryptBlock(p._prev)[0]^S;return p._prev=i.concat([p._prev.slice(1),i.from([c?S:T])]),T}ee.encrypt=function(p,S,c){for(var e=S.length,T=i.allocUnsafe(e),g=-1;++g{"use strict";l.d(ee,{DW:()=>q,KT:()=>g,Ou:()=>M,b_:()=>c,gN:()=>j,jZ:()=>p,oR:()=>d,os:()=>K,p3:()=>S,rN:()=>U,ru:()=>T});var i=l(59640);const t=(0,i.UX)("ecl"),p=(0,i.Mz)(t,G=>({pageSettings:G.pageSettings,apiCallStatus:G.apisCallStatus.FetchPageSettings})),S=(0,i.Mz)(t,G=>G.information),c=(0,i.Mz)(t,G=>({information:G.information,apiCallStatus:G.apisCallStatus.FetchInfo})),T=((0,i.Mz)(t,G=>G.apisCallStatus.FetchInfo),(0,i.Mz)(t,G=>G.apisCallStatus)),g=(0,i.Mz)(t,G=>({payments:G.payments,apiCallStatus:G.apisCallStatus.FetchPayments})),d=(0,i.Mz)(t,G=>({fees:G.fees,apiCallStatus:G.apisCallStatus.FetchFees})),M=((0,i.Mz)(t,G=>({activeChannels:G.activeChannels,apiCallStatus:G.apisCallStatus.FetchChannels})),(0,i.Mz)(t,G=>({pendingChannels:G.pendingChannels,apiCallStatus:G.apisCallStatus.FetchChannels})),(0,i.Mz)(t,G=>({inactiveChannels:G.inactiveChannels,apiCallStatus:G.apisCallStatus.FetchChannels})),(0,i.Mz)(t,G=>({activeChannels:G.activeChannels,pendingChannels:G.pendingChannels,inactiveChannels:G.inactiveChannels,lightningBalance:G.lightningBalance,channelsStatus:G.channelsStatus,apiCallStatus:G.apisCallStatus.FetchChannels}))),j=(0,i.Mz)(t,G=>({transactions:G.transactions,apiCallStatus:G.apisCallStatus.FetchTransactions})),U=(0,i.Mz)(t,G=>({invoices:G.invoices,apiCallStatus:G.apisCallStatus.FetchInvoices})),K=(0,i.Mz)(t,G=>({peers:G.peers,apiCallStatus:G.apisCallStatus.FetchPeers})),q=(0,i.Mz)(t,G=>({onchainBalance:G.onchainBalance,apiCallStatus:G.apisCallStatus.FetchOnchainBalance}))},72836:Ae=>{Ae.exports=function(){return"function"==typeof Promise&&Promise.prototype&&Promise.prototype.then}},73557:(Ae,ee,l)=>{"use strict";l.d(ee,{w:()=>S});var i=l(39974),t=l(54360),p=l(85343);function S(){return(0,i.N)((c,e)=>{c.subscribe((0,t._)(e,p.l))})}},73664:(Ae,ee,l)=>{"use strict";l.d(ee,{$C:()=>Of,$Ln:()=>dg,AVh:()=>qp,Ab1:()=>Vc,Agw:()=>Qn,Avn:()=>em,B1s:()=>mc,BIS:()=>Ca,BMQ:()=>dp,C4Q:()=>Dd,C5r:()=>f_,C6U:()=>m8,C7A:()=>O,Co$:()=>V1,DH7:()=>lm,DNE:()=>S3,DUP:()=>bc,DkB:()=>kp,Dyx:()=>bp,E5c:()=>h6,EFF:()=>k8,EJ8:()=>$0,FsC:()=>Pf,FuF:()=>Af,G5x:()=>l0,GBs:()=>u8,H1s:()=>mg,HbH:()=>e6,Hgh:()=>wp,JRh:()=>d6,Jt5:()=>Ip,Jv_:()=>Z8,KED:()=>Lv,LHq:()=>s4,Lme:()=>u6,NAR:()=>c8,NCX:()=>Td,NOj:()=>yc,NSC:()=>Qu,NYb:()=>N3,NyB:()=>p8,OA$:()=>k,OR8:()=>rd,Ocv:()=>qv,Ol2:()=>H1,PLl:()=>Pn,PYC:()=>hn,PYt:()=>z1,PeT:()=>T3,QTQ:()=>pf,Ql9:()=>Yv,R50:()=>m6,R7$:()=>S2,RPW:()=>To,RV6:()=>Fg,SKi:()=>Ha,SdG:()=>d8,SdI:()=>P_,SpI:()=>om,TFI:()=>z3,Ts$:()=>B_,UQu:()=>Kv,V5L:()=>A6,VBU:()=>g3,VeQ:()=>tr,VkB:()=>W8,Vt3:()=>v3,VwU:()=>Gp,VzW:()=>m3,WPN:()=>In,XpG:()=>o8,Xx1:()=>K,Y8G:()=>Cp,YEm:()=>Ui,Z7z:()=>yp,Zhj:()=>V6,_9s:()=>Tu,_9u:()=>Ii,_jY:()=>Cs,_qm:()=>Fn,_ys:()=>H2,a8H:()=>xc,aCM:()=>zs,aKT:()=>Ci,ai1:()=>X8,bIt:()=>Hp,bMT:()=>c_,bVm:()=>u2,bc$:()=>Un,bkB:()=>Sl,brH:()=>u_,c1b:()=>Fd,cDI:()=>v,cZr:()=>L6,cdK:()=>hg,cf$:()=>c0,czy:()=>s1,d80:()=>O_,dOL:()=>$m,e6s:()=>u7,eHC:()=>F1,eq3:()=>e_,eu8:()=>Sp,eux:()=>Z3,fX1:()=>Rg,gXe:()=>Bs,giA:()=>ug,gil:()=>Fl,hnC:()=>n3,i5U:()=>d_,iLQ:()=>qm,iWE:()=>El,j41:()=>Zf,jOp:()=>cp,k0s:()=>Jf,kBR:()=>Lp,kS0:()=>Ve,kdw:()=>G,lJ4:()=>x6,lJT:()=>ep,l_i:()=>t_,lsd:()=>f8,mGM:()=>h8,mNQ:()=>j8,mU9:()=>Df,mal:()=>d0,mxI:()=>p6,n$t:()=>fd,nI1:()=>l_,nI4:()=>_4,nM4:()=>Rm,nVh:()=>_p,npT:()=>Qa,nrm:()=>Ep,o8S:()=>B3,ozJ:()=>ie,p2i:()=>dd,phd:()=>n5,pl0:()=>a5,qex:()=>q3,rAh:()=>Rl,rOR:()=>zt,rXU:()=>lc,rj2:()=>$3,sFG:()=>W4,sMw:()=>i_,sZ2:()=>tn,sdS:()=>g8,sgu:()=>Uc,tSv:()=>ns,tvf:()=>Gs,uiO:()=>$,utN:()=>Bt,vDg:()=>$t,vxM:()=>kg,w6W:()=>Es,wEZ:()=>Wp,wni:()=>am,wr$:()=>Yt,xGo:()=>zn,xc7:()=>Jp,xe9:()=>k6,yLl:()=>Jm,y_5:()=>U,ypd:()=>pg,ziy:()=>V2,zoo:()=>U2});var i=l(10467),t=l(2615),p=l(48440),S=l(21413),c=l(18359),e=l(96354);function T(a){return{toString:a}.toString()}const g="__annotations__",d="__parameters__",w="__prop__metadata__";function m(a,s,u,C,R){return T(()=>{const X=P(s);function ne(...xe){if(this instanceof ne)return X.call(this,...xe),this;const Se=new ne(...xe);return function(xt){return R&&R(xt,...xe),(xt.hasOwnProperty(g)?xt[g]:Object.defineProperty(xt,g,{value:[]})[g]).push(Se),xt}}return u&&(ne.prototype=Object.create(u.prototype)),ne.prototype.ngMetadataName=a,ne.annotationCls=ne,ne})}function P(a){return function(...u){if(a){const C=a(...u);for(const R in C)this[R]=C[R]}}}function M(a,s,u){return T(()=>{const C=P(s);function R(...X){if(this instanceof R)return C.apply(this,X),this;const ne=new R(...X);return xe.annotation=ne,xe;function xe(Se,at,xt){const qt=Se.hasOwnProperty(d)?Se[d]:Object.defineProperty(Se,d,{value:[]})[d];for(;qt.length<=xt;)qt.push(null);return(qt[xt]=qt[xt]||[]).push(ne),Se}}return R.prototype.ngMetadataName=a,R.annotationCls=R,R})}const U=(0,t.z6V)(M("Inject",a=>({token:a})),-1),K=(0,t.z6V)(M("Optional"),8),q=(0,t.z6V)(M("Self"),2),G=(0,t.z6V)(M("SkipSelf"),4),Q=(0,t.z6V)(M("Host"),1);function $(a){const s=t.laP.ng;if(s&&s.\u0275compilerFacade)return s.\u0275compilerFacade;throw new Error("JIT compiler unavailable")}const ae={\u0275\u0275defineInjectable:t.jDH,\u0275\u0275defineInjector:t.G2t,\u0275\u0275inject:t.KVO,\u0275\u0275invalidFactoryDep:t.dmw,resolveForwardRef:t.nl4},ue=Function;function oe(a){return"function"==typeof a}const he=/^function\s+\S+\(\)\s*{[\s\S]+\.apply\(this,\s*(arguments|(?:[^()]+\(\[\],)?[^()]+\(arguments\).*)\)/,me=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{/,Te=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(/,D=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(\)\s*{[^}]*super\(\.\.\.arguments\)/;class o{_reflect;constructor(s){this._reflect=s||t.laP.Reflect}factory(s){return(...u)=>new s(...u)}_zipTypesAndAnnotations(s,u){let C;C=(0,t.WfI)(typeof s>"u"?u.length:s.length);for(let R=0;R"u"?[]:s[R]&&s[R]!=Object?[s[R]]:[],u&&null!=u[R]&&(C[R]=C[R].concat(u[R]));return C}_ownParameters(s,u){if(function n(a){return he.test(a)||D.test(a)||me.test(a)&&!Te.test(a)}(s.toString()))return null;if(s.parameters&&s.parameters!==u.parameters)return s.parameters;const R=s.ctorParameters;if(R&&R!==u.ctorParameters){const xe="function"==typeof R?R():R,Se=xe.map(xt=>xt&&xt.type),at=xe.map(xt=>xt&&f(xt.decorators));return this._zipTypesAndAnnotations(Se,at)}const X=s.hasOwnProperty(d)&&s[d],ne=this._reflect&&this._reflect.getOwnMetadata&&this._reflect.getOwnMetadata("design:paramtypes",s);return ne||X?this._zipTypesAndAnnotations(ne,X):(0,t.WfI)(s.length)}parameters(s){if(!oe(s))return[];const u=h(s);let C=this._ownParameters(s,u);return!C&&u!==Object&&(C=this.parameters(u)),C||[]}_ownAnnotations(s,u){if(s.annotations&&s.annotations!==u.annotations){let C=s.annotations;return"function"==typeof C&&C.annotations&&(C=C.annotations),C}return s.decorators&&s.decorators!==u.decorators?f(s.decorators):s.hasOwnProperty(g)?s[g]:null}annotations(s){if(!oe(s))return[];const u=h(s),C=this._ownAnnotations(s,u)||[];return(u!==Object?this.annotations(u):[]).concat(C)}_ownPropMetadata(s,u){if(s.propMetadata&&s.propMetadata!==u.propMetadata){let C=s.propMetadata;return"function"==typeof C&&C.propMetadata&&(C=C.propMetadata),C}if(s.propDecorators&&s.propDecorators!==u.propDecorators){const C=s.propDecorators,R={};return Object.keys(C).forEach(X=>{R[X]=f(C[X])}),R}return s.hasOwnProperty(w)?s[w]:null}propMetadata(s){if(!oe(s))return{};const u=h(s),C={};if(u!==Object){const X=this.propMetadata(u);Object.keys(X).forEach(ne=>{C[ne]=X[ne]})}const R=this._ownPropMetadata(s,u);return R&&Object.keys(R).forEach(X=>{const ne=[];C.hasOwnProperty(X)&&ne.push(...C[X]),ne.push(...R[X]),C[X]=ne}),C}ownPropMetadata(s){return oe(s)&&this._ownPropMetadata(s,h(s))||{}}hasLifecycleHook(s,u){return s instanceof ue&&u in s.prototype}}function f(a){return a?a.map(s=>new(0,s.type.annotationCls)(...s.args?s.args:[])):[]}function h(a){const s=a.prototype?Object.getPrototypeOf(a.prototype):null;return(s?s.constructor:null)||Object}class b{previousValue;currentValue;firstChange;constructor(s,u,C){this.previousValue=s,this.currentValue=u,this.firstChange=C}isFirstChange(){return this.firstChange}}function A(a,s,u,C){null!==s?s.applyValueToInputSignal(s,C):a[u]=C}const k=(()=>{const a=()=>x;return a.ngInherit=!0,a})();function x(a){return a.type.prototype.ngOnChanges&&(a.setInput=_),r}function r(){const a=I(this),s=a?.current;if(s){const u=a.previous;if(u===t.MZA)a.previous=s;else for(let C in s)u[C]=s[C];a.current=null,this.ngOnChanges(s)}}function _(a,s,u,C,R){const X=this.declaredInputs[C],ne=I(a)||function B(a,s){return a[W]=s}(a,{previous:t.MZA,current:null}),xe=ne.current||(ne.current={}),Se=ne.previous,at=Se[X];xe[X]=new b(at&&at.currentValue,u,Se===t.MZA),A(a,s,R,u)}const W="__ngSimpleChanges__";function I(a){return a[W]||null}const re=[],_e=function(a,s=null,u){for(let C=0;C=C)break}else s[Se]<0&&(a[t.wVl]+=65536),(xe>14>16&&(3&a[t.Wg1])===s&&(a[t.Wg1]+=16384,Ee(xe,X)):Ee(xe,X)}const nt=-1;class Ct{factory;name;injectImpl;resolving=!1;canSeeViewProviders;multi;componentProviders;index;providerFactory;constructor(s,u,C,R){this.factory=s,this.name=R,this.canSeeViewProviders=u,this.injectImpl=C}}function lt(a){return null!=a&&"object"==typeof a&&(null===a.insertBeforeIndex||"number"==typeof a.insertBeforeIndex||Array.isArray(a.insertBeforeIndex))}function J(a){return 3===a||4===a||6===a}function fe(a){return 64===a.charCodeAt(0)}function Ie(a,s){if(null!==s&&0!==s.length)if(null===a||0===a.length)a=s.slice();else{let u=-1;for(let C=0;Cs){ne=X-1;break}}}for(;X>16}(a),C=s;for(;u>0;)C=C[t.X5O],u--;return C}let Rt=!0;function le(a){const s=Rt;return Rt=a,s}const ce=255,se=5;let ke=0;const Ue={};function Kt(a,s){const u=Vt(a,s);if(-1!==u)return u;const C=s[t.eDl];C.firstCreatePass&&(a.injectorIndex=s.length,yt(C.data,a),yt(s,null),yt(C.blueprint,null));const R=Zt(a,s),X=a.injectorIndex;if(li(R)){const ne=Qt(R),xe=kt(R,s),Se=xe[t.eDl].data;for(let at=0;at<8;at++)s[X+at]=xe[ne+at]|Se[ne+at]}return s[X+8]=R,X}function yt(a,s){a.push(0,0,0,0,0,0,0,0,s)}function Vt(a,s){return-1===a.injectorIndex||a.parent&&a.parent.injectorIndex===a.injectorIndex||null===s[a.injectorIndex+8]?-1:a.injectorIndex}function Zt(a,s){if(a.parent&&-1!==a.parent.injectorIndex)return a.parent.injectorIndex;let u=0,C=null,R=s;for(;null!==R;){if(C=Ze(R),null===C)return nt;if(u++,R=R[t.X5O],-1!==C.injectorIndex)return C.injectorIndex|u<<16}return nt}function ti(a,s,u){!function Ne(a,s,u){let C;"string"==typeof u?C=u.charCodeAt(0)||0:u.hasOwnProperty(t.p9y)&&(C=u[t.p9y]),null==C&&(C=u[t.p9y]=ke++);const R=C&ce;s.data[a+(R>>se)]|=1<=0?s&ce:dn:s}(u);if("function"==typeof X){if(!(0,t.ihb)(s,a,C))return 1&C?Nt(R,u,C):Et(s,u,C,R);try{let ne;if(ne=X(C),null!=ne||8&C)return ne;(0,t.$Hz)(u)}finally{(0,t.niQ)()}}else if("number"==typeof X){let ne=null,xe=Vt(a,s),Se=nt,at=1&C?s[t.b5C][t.qlT]:null;for((-1===xe||4&C)&&(Se=-1===xe?Zt(a,s):s[xe+8],Se!==nt&&oi(C,!1)?(ne=s[t.eDl],xe=Qt(Se),s=kt(Se,s)):xe=-1);-1!==xe;){const xt=s[t.eDl];if(Hi(X,xe,xt.data)){const qt=$e(xe,s,u,ne,C,at);if(qt!==Ue)return qt}Se=s[xe+8],Se!==nt&&oi(C,s[t.eDl].data[xe+8]===at)&&Hi(X,xe,s)?(ne=xt,xe=Qt(Se),s=kt(Se,s)):xe=-1}}return R}function $e(a,s,u,C,R,X){const ne=s[t.eDl],xe=ne.data[a+8],xt=tt(xe,ne,u,null==C?(0,t.Qs1)(xe)&&Rt:C!=ne&&!!(3&xe.type),1&R&&X===xe);return null!==xt?ei(s,ne,xt,xe,R):Ue}function tt(a,s,u,C,R){const X=a.providerIndexes,ne=s.data,xe=1048575&X,Se=a.directiveStart,xt=X>>20,yi=R?xe+xt:a.directiveEnd;for(let bi=C?xe:xe+xt;bi=Se&&Xi.type===u)return bi}if(R){const bi=ne[Se];if(bi&&(0,t.JlV)(bi)&&bi.type===u)return Se}return null}function ei(a,s,u,C,R){let X=a[u];const ne=s.data;if(X instanceof Ct){const xe=X;if(xe.resolving){const bi=(0,t.PP7)(ne[u]);throw(0,t.PQT)(bi)}const Se=le(xe.canSeeViewProviders);xe.resolving=!0;const qt=xe.injectImpl?(0,t.a2B)(xe.injectImpl):null;(0,t.ihb)(a,C,0);try{X=a[u]=xe.factory(void 0,R,ne,a,C),s.firstCreatePass&&u>=C.directiveStart&&function ye(a,s,u){const{ngOnChanges:C,ngOnInit:R,ngDoCheck:X}=s.type.prototype;if(C){const ne=x(s);(u.preOrderHooks??=[]).push(a,ne),(u.preOrderCheckHooks??=[]).push(a,ne)}R&&(u.preOrderHooks??=[]).push(0-a,R),X&&((u.preOrderHooks??=[]).push(a,X),(u.preOrderCheckHooks??=[]).push(a,X))}(u,ne[u],s)}finally{null!==qt&&(0,t.a2B)(qt),le(Se),xe.resolving=!1,(0,t.niQ)()}}return X}function Hi(a,s,u){return!!(u[s+(a>>se)]&1<{const s=a.prototype.constructor,u=s[t.zSs]||It(s),C=Object.prototype;let R=Object.getPrototypeOf(a.prototype).constructor;for(;R&&R!==C;){const X=R[t.zSs]||It(R);if(X&&X!==u)return X;R=Object.getPrototypeOf(R)}return X=>new X})}function It(a){return(0,t.Jzi)(a)?()=>{const s=It((0,t.nl4)(a));return s&&s()}:(0,t.wGu)(a)}function Ze(a){const s=a[t.eDl],u=s.type;return 2===u?s.declTNode:1===u?a[t.qlT]:null}function Ve(a){return function Ye(a,s){if("class"===s)return a.classes;if("style"===s)return a.styles;const u=a.attrs;if(u){const C=u.length;let R=0;for(;R({attributeName:a,__NG_ELEMENT_ID__:()=>Ve(a)}));let it=null;function ut(a){return jt(function bt(){return it=it||new o}().parameters(a))}function jt(a){return a.map(s=>function ai(a){const s={token:null,attribute:null,host:!1,optional:!1,self:!1,skipSelf:!1};if(Array.isArray(a)&&a.length>0)for(let u=0;ufunction pi(a,s){let u=null,C=null;a.hasOwnProperty(t.yAH)||Object.defineProperty(a,t.yAH,{get:()=>(null===u&&(u=$().compileInjectable(ae,`ng:///${a.name}/\u0275prov.js`,function An(a,s){const u=s||{providedIn:null},C={name:a.name,type:a,typeArgumentCount:0,providedIn:u.providedIn};return(Ki(u)||Dn(u))&&void 0!==u.deps&&(C.deps=jt(u.deps)),Ki(u)?C.useClass=u.useClass:function Ji(a){return ki in a}(u)?C.useValue=u.useValue:Dn(u)?C.useFactory=u.useFactory:function En(a){return void 0!==a.useExisting}(u)&&(C.useExisting=u.useExisting),C}(a,s))),u)}),a.hasOwnProperty(t.zSs)||Object.defineProperty(a,t.zSs,{get:()=>{if(null===C){const R=$();C=R.compileFactory(ae,`ng:///${a.name}/\u0275fac.js`,{name:a.name,type:a,typeArgumentCount:0,deps:ut(a),target:R.FactoryTarget.Injectable})}return C},configurable:!0})}(a,s));function xi(){return Gi((0,t.Mx4)(),(0,t.OAn)())}function Gi(a,s){return new Ci((0,t.d31)(a,s))}let Ci=(()=>class a{nativeElement;constructor(u){this.nativeElement=u}static __NG_ELEMENT_ID__=xi})();function Ai(a){return a instanceof Ci?a.nativeElement:a}function Yi(){return this._results[Symbol.iterator]()}class zt{_emitDistinctChangesOnly;dirty=!0;_onDirty=void 0;_results=[];_changesDetected=!1;_changes=void 0;length=0;first=void 0;last=void 0;get changes(){return this._changes??=new S.B}constructor(s=!1){this._emitDistinctChangesOnly=s}get(s){return this._results[s]}map(s){return this._results.map(s)}filter(s){return this._results.filter(s)}find(s){return this._results.find(s)}reduce(s,u){return this._results.reduce(s,u)}forEach(s){this._results.forEach(s)}some(s){return this._results.some(s)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(s,u){this.dirty=!1;const C=(0,t.Bqz)(s);(this._changesDetected=!(0,t.ng7)(this._results,C,u))&&(this._results=C,this.length=C.length,this.last=C[this.length-1],this.first=C[0])}notifyOnChanges(){void 0!==this._changes&&(this._changesDetected||!this._emitDistinctChangesOnly)&&this._changes.next(this)}onDirty(s){this._onDirty=s}setDirty(){this.dirty=!0,this._onDirty?.()}destroy(){void 0!==this._changes&&(this._changes.complete(),this._changes.unsubscribe())}[Symbol.iterator]=Yi}function ni(a){return!(128&~a.flags)}var ca=function(a){return a[a.OnPush=0]="OnPush",a[a.Default=1]="Default",a}(ca||{});const an=new Map;let mn=0;function Mi(a){an.delete(a[t.ID])}const Ft="__ngContext__";function gi(a,s){(0,t.q$2)(s)?(a[Ft]=s[t.ID],function mr(a){an.set(a[t.ID],a)}(s)):a[Ft]=s}function Ta(a){return ja(a[t.EJG])}function wr(a){return ja(a[t.K29])}function ja(a){for(;null!==a&&!(0,t.A0l)(a);)a=a[t.K29];return a}let ii;function Ii(a){ii=a}function Ui(){if(void 0!==ii)return ii;if(typeof document<"u")return document;throw new t.buA(210,!1)}const tn=new t.nKC("",{providedIn:"root",factory:()=>yn}),yn="ng",Pn=new t.nKC(""),Qn=new t.nKC("",{providedIn:"platform",factory:()=>"unknown"}),Un=new t.nKC(""),Ca=new t.nKC("",{providedIn:"root",factory:()=>Ui().body?.querySelector("[ngCspNonce]")?.getAttribute("ngCspNonce")||null}),Aa={breakpoints:[16,32,48,64,96,128,256,384,640,750,828,1080,1200,1920,2048,3840],placeholderResolution:30,disableImageSizeWarning:!1,disableImageLazyLoadWarning:!1},tr=new t.nKC("",{providedIn:"root",factory:()=>Aa});function Xa(){const a=new za;return a.store=function vr(a,s){const u=a.getElementById(s+"-state");if(u?.textContent)try{return JSON.parse(u.textContent)}catch(C){console.warn("Exception while restoring TransferState for app "+s,C)}return{}}(Ui(),(0,t.WQX)(tn)),a}let za=(()=>{class a{static \u0275prov=(0,t.jDH)({token:a,providedIn:"root",factory:Xa});store={};onSerializeCallbacks={};get(u,C){return void 0!==this.store[u]?this.store[u]:C}set(u,C){this.store[u]=C}remove(u){delete this.store[u]}hasKey(u){return this.store.hasOwnProperty(u)}get isEmpty(){return 0===Object.keys(this.store).length}onSerialize(u,C){this.onSerializeCallbacks[u]=C}toJson(){for(const u in this.onSerializeCallbacks)if(this.onSerializeCallbacks.hasOwnProperty(u))try{this.store[u]=this.onSerializeCallbacks[u]()}catch(C){console.warn("Exception in onSerialize callback: ",C)}return JSON.stringify(this.store).replace(/!1}),Ts=new t.nKC(""),Gs=new t.nKC(""),Oo={passive:!0,capture:!0},Ds=new WeakMap,ro=new WeakMap,As=new WeakMap,Os=["click","keydown"],Po=["mouseenter","mouseover","focusin"];let Ps=null,vo=0;class Sr{callbacks=new Set;listener=()=>{for(const s of this.callbacks)s()}}function Ua(a,s){let u=ro.get(a);if(!u){u=new Sr,ro.set(a,u);for(const C of Os)a.addEventListener(C,u.listener,Oo)}return u.callbacks.add(s),()=>{const{callbacks:C,listener:R}=u;if(C.delete(s),0===C.size){ro.delete(a);for(const X of Os)a.removeEventListener(X,R,Oo)}}}function qi(a,s){let u=Ds.get(a);if(!u){u=new Sr,Ds.set(a,u);for(const C of Po)a.addEventListener(C,u.listener,Oo)}return u.callbacks.add(s),()=>{const{callbacks:C,listener:R}=u;if(C.delete(s),0===C.size){for(const X of Po)a.removeEventListener(X,R,Oo);Ds.delete(a)}}}let qo=(a,s,u,C)=>{};const Rr=new t.nKC("");function fl(a){return!(32&~a.flags)}let Bo=()=>null;function ml(a,s,u=!1){return Bo(a,s,u)}function pl(a){let s=a._lView;return 2===s[t.eDl].type?null:((0,t.EFk)(s)&&(s=s[t.Yw1]),s)}function Ho(a){return a.get(Ts,!1,{optional:!0})}function Kl(a,s){const u=a.contentQueries;if(null!==u){const C=(0,p.Ht)(null);try{for(let R=0;Ra,createScript:a=>a,createScriptURL:a=>a})}catch{}return Mo}function Eo(a){return tl()?.createHTML(a)||a}function nl(){if(void 0===il&&(il=null,t.laP.trustedTypes))try{il=t.laP.trustedTypes.createPolicy("angular#unsafe-bypass",{createHTML:a=>a,createScript:a=>a,createScriptURL:a=>a})}catch{}return il}function Cl(a){return nl()?.createHTML(a)||a}function ho(a){return nl()?.createScript(a)||a}function al(a){return nl()?.createScriptURL(a)||a}class wo{changingThisBreaksApplicationSecurity;constructor(s){this.changingThisBreaksApplicationSecurity=s}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity} (see ${t.ok8})`}}class Vr extends wo{getTypeName(){return"HTML"}}class Zr extends wo{getTypeName(){return"Style"}}class hc extends wo{getTypeName(){return"Script"}}class fc extends wo{getTypeName(){return"URL"}}class Ml extends wo{getTypeName(){return"ResourceURL"}}function zs(a){return a instanceof wo?a.changingThisBreaksApplicationSecurity:a}function El(a,s){const u=function So(a){return a instanceof wo&&a.getTypeName()||null}(a);if(null!=u&&u!==s){if("ResourceURL"===u&&"URL"===s)return!0;throw new Error(`Required a safe ${s}, got a ${u} (see ${t.ok8})`)}return u===s}function hn(a){return new Vr(a)}function Rl(a){return new Zr(a)}function dd(a){return new hc(a)}function mc(a){return new fc(a)}function To(a){return new Ml(a)}function Ol(a){const s=new Pl(a);return function Yl(){try{return!!(new window.DOMParser).parseFromString(Eo(""),"text/html")}catch{return!1}}()?new pc(s):s}class pc{inertDocumentHelper;constructor(s){this.inertDocumentHelper=s}getInertBodyElement(s){s=""+s;try{const u=(new window.DOMParser).parseFromString(Eo(s),"text/html").body;return null===u?this.inertDocumentHelper.getInertBodyElement(s):(u.firstChild?.remove(),u)}catch{return null}}}class Pl{defaultDoc;inertDocument;constructor(s){this.defaultDoc=s,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert")}getInertBodyElement(s){const u=this.inertDocument.createElement("template");return u.innerHTML=Eo(s),u}}const Ql=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:\/?#]*(?:[\/?#]|$))/i;function Fl(a){return(a=String(a)).match(Ql)?a:"unsafe:"+a}function Zs(a){const s={};for(const u of a.split(","))s[u]=!0;return s}function wl(...a){const s={};for(const u of a)for(const C in u)u.hasOwnProperty(C)&&(s[C]=!0);return s}const ud=Zs("area,br,col,hr,img,wbr"),gc=Zs("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),rl=Zs("rp,rt"),Va=wl(ud,wl(gc,Zs("address,article,aside,blockquote,caption,center,del,details,dialog,dir,div,dl,figure,figcaption,footer,h1,h2,h3,h4,h5,h6,header,hgroup,hr,ins,main,map,menu,nav,ol,pre,section,summary,table,ul")),wl(rl,Zs("a,abbr,acronym,audio,b,bdi,bdo,big,br,cite,code,del,dfn,em,font,i,img,ins,kbd,label,map,mark,picture,q,ruby,rp,rt,s,samp,small,source,span,strike,strong,sub,sup,time,track,tt,u,var,video")),wl(rl,gc)),Tr=Zs("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),Dr=wl(Tr,Zs("abbr,accesskey,align,alt,autoplay,axis,bgcolor,border,cellpadding,cellspacing,class,clear,color,cols,colspan,compact,controls,coords,datetime,default,dir,download,face,headers,height,hidden,hreflang,hspace,ismap,itemscope,itemprop,kind,label,lang,language,loop,media,muted,nohref,nowrap,open,preload,rel,rev,role,rows,rowspan,rules,scope,scrolling,shape,size,sizes,span,srclang,srcset,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width"),Zs("aria-activedescendant,aria-atomic,aria-autocomplete,aria-busy,aria-checked,aria-colcount,aria-colindex,aria-colspan,aria-controls,aria-current,aria-describedby,aria-details,aria-disabled,aria-dropeffect,aria-errormessage,aria-expanded,aria-flowto,aria-grabbed,aria-haspopup,aria-hidden,aria-invalid,aria-keyshortcuts,aria-label,aria-labelledby,aria-level,aria-live,aria-modal,aria-multiline,aria-multiselectable,aria-orientation,aria-owns,aria-placeholder,aria-posinset,aria-pressed,aria-readonly,aria-relevant,aria-required,aria-roledescription,aria-rowcount,aria-rowindex,aria-rowspan,aria-selected,aria-setsize,aria-sort,aria-valuemax,aria-valuemin,aria-valuenow,aria-valuetext")),$l=Zs("script,style,template");class _c{sanitizedSomething=!1;buf=[];sanitizeChildren(s){let u=s.firstChild,C=!0,R=[];for(;u;)if(u.nodeType===Node.ELEMENT_NODE?C=this.startElement(u):u.nodeType===Node.TEXT_NODE?this.chars(u.nodeValue):this.sanitizedSomething=!0,C&&u.firstChild)R.push(u),u=Nn(u);else for(;u;){u.nodeType===Node.ELEMENT_NODE&&this.endElement(u);let X=is(u);if(X){u=X;break}u=R.pop()}return this.buf.join("")}startElement(s){const u=ir(s).toLowerCase();if(!Va.hasOwnProperty(u))return this.sanitizedSomething=!0,!$l.hasOwnProperty(u);this.buf.push("<"),this.buf.push(u);const C=s.attributes;for(let R=0;R"),!0}endElement(s){const u=ir(s).toLowerCase();Va.hasOwnProperty(u)&&!ud.hasOwnProperty(u)&&(this.buf.push(""))}chars(s){this.buf.push(De(s))}}function is(a){const s=a.nextSibling;if(s&&a!==s.previousSibling)throw cn(s);return s}function Nn(a){const s=a.firstChild;if(s&&function Do(a,s){return(a.compareDocumentPosition(s)&Node.DOCUMENT_POSITION_CONTAINED_BY)!==Node.DOCUMENT_POSITION_CONTAINED_BY}(a,s))throw cn(s);return s}function ir(a){const s=a.nodeName;return"string"==typeof s?s:"FORM"}function cn(a){return new Error(`Failed to sanitize html because the element is clobbered: ${a.outerHTML}`)}const Hr=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,ra=/([^\#-~ |!])/g;function De(a){return a.replace(/&/g,"&").replace(Hr,function(s){return"&#"+(1024*(s.charCodeAt(0)-55296)+(s.charCodeAt(1)-56320)+65536)+";"}).replace(ra,function(s){return"&#"+s.charCodeAt(0)+";"}).replace(//g,">")}let pt;function Yt(a,s){let u=null;try{pt=pt||Ol(a);let C=s?String(s):"";u=pt.getInertBodyElement(C);let R=5,X=C;do{if(0===R)throw new Error("Failed to sanitize html because the input is unstable");R--,C=X,X=u.innerHTML,u=pt.getInertBodyElement(C)}while(C!==X);return Eo((new _c).sanitizeChildren(Pi(u)||u))}finally{if(u){const C=Pi(u)||u;for(;C.firstChild;)C.firstChild.remove()}}}function Pi(a){return"content"in a&&function rn(a){return a.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===a.nodeName}(a)?a.content:null}var In=function(a){return a[a.NONE=0]="NONE",a[a.HTML=1]="HTML",a[a.STYLE=2]="STYLE",a[a.SCRIPT=3]="SCRIPT",a[a.URL=4]="URL",a[a.RESOURCE_URL=5]="RESOURCE_URL",a}(In||{});function Qa(a){const s=Nl();return s?Cl(s.sanitize(In.HTML,a)||""):El(a,"HTML")?Cl(zs(a)):Yt(Ui(),(0,t.eFE)(a))}function $a(a){const s=Nl();return s?s.sanitize(In.URL,a)||"":El(a,"URL")?zs(a):Fl((0,t.eFE)(a))}function Za(a){const s=Nl();if(s)return al(s.sanitize(In.RESOURCE_URL,a)||"");if(El(a,"ResourceURL"))return al(zs(a));throw new t.buA(904,!1)}function fd(a,s,u){return function Xo(a,s){return"src"===s&&("embed"===a||"frame"===a||"iframe"===a||"media"===a||"script"===a)||"href"===s&&("base"===a||"link"===a)?Za:$a}(s,u)(a)}function Nl(){const a=(0,t.OAn)();return a&&a[t.M0L].sanitizer}const _2=/^>|^->||--!>|)/g;function ns(a){return a.ownerDocument.defaultView}function ps(a){return a instanceof Function?a():a}function yc(a){if(!(0,t.xUg)(a))throw new t.buA(906,`The ${(0,t.PP7)(a)} is not an Angular component, make sure it has the \`@Component\` decorator.`)}function M2(a,s,u){let C=a.length;for(;;){const R=a.indexOf(s,u);if(-1===R)return R;if(0===R||a.charCodeAt(R-1)<=32){const X=s.length;if(R+X===C||a.charCodeAt(R+X)<=32)return R}u=R+1}}const $1="ng-template";function p4(a,s,u,C){let R=0;if(C){for(;R-1){let X;for(;++RX?"":R[xt+1].toLowerCase(),2&C&&at!==qt){if(Ao(C))return!1;ne=!0}}}}else{if(!ne&&!Ao(C)&&!Ao(Se))return!1;if(ne&&Ao(Se))continue;ne=!1,C=Se|1&C}}return Ao(C)||ne}function Ao(a){return!(1&a)}function md(a,s,u,C){if(null===s)return-1;let R=0;if(C||!u){let X=!1;for(;R-1)for(u++;u0?'="'+xe+'"':"")+"]"}else 8&C?R+="."+ne:4&C&&(R+=" "+ne);else""!==R&&!Ao(ne)&&(s+=Na(X,R),R=""),C=ne,X=X||!Ao(C);u++}return""!==R&&(s+=Na(X,R)),s}const qa={};function q1(a,s){return a.createText(s)}function E2(a,s,u){a.setValue(s,u)}function e0(a,s){return a.createComment(function sl(a){return a.replace(_2,s=>s.replace(Jd,"\u200b$1\u200b"))}(s))}function e1(a,s,u){return a.createElement(s,u)}function zl(a,s,u,C,R){a.insertBefore(s,u,C,R)}function _d(a,s,u){a.appendChild(s,u)}function Ir(a,s,u,C,R){null!==C?zl(a,s,u,C,R):_d(a,s,u)}function nr(a,s,u,C){a.removeChild(null,s,u,C)}function tc(a,s,u){const{mergedAttrs:C,classes:R,styles:X}=u;null!==C&&function Z(a,s,u){let C=0;for(;C-1?1:1e3;return parseFloat(a)*s}function Qc(a,s){return a.getPropertyValue(s).split(",").map(C=>C.trim())}function L2(a,s){return void 0!==a&&a.duration>s.duration}function I2(a){return(null!=a.animationName||null!=a.propertyName)&&a.duration>0}function r0(a,s,u){if(!u)return;const C=a.getAnimations();return 0===C.length?function ih(a,s){const u=getComputedStyle(a),C=function A2(a){const s=Qc(a,"animation-name"),u=Qc(a,"animation-delay"),C=Qc(a,"animation-duration"),R={animationName:"",propertyName:void 0,duration:0};for(let X=0;XR.duration&&(R.animationName=s[X],R.duration=ne)}return R}(u),R=function D2(a){const s=Qc(a,"transition-property"),u=Qc(a,"transition-duration"),C=Qc(a,"transition-delay"),R={propertyName:"",duration:0,animationName:void 0};for(let X=0;XR.duration&&(R.propertyName=s[X],R.duration=ne)}return R}(u),X=C.duration>R.duration?C:R;L2(s.get(a),X)||I2(X)&&s.set(a,X)}(a,s):function nh(a,s,u){let C={animationName:void 0,propertyName:void 0,duration:0};for(const R of u){const X=R.effect?.getTiming(),ne="number"==typeof X?.duration?X.duration:0;let Se,at,xe=(X?.delay??0)+ne;R.animationName?at=R.animationName:Se=R.transitionProperty,xe>=C.duration&&(C={animationName:at,propertyName:Se,duration:xe})}L2(s.get(a),C)||I2(C)&&s.set(a,C)}(a,s,C)}const bc=new Set;var s0=function(a){return a[a.CHANGE_DETECTION=0]="CHANGE_DETECTION",a[a.AFTER_NEXT_RENDER=1]="AFTER_NEXT_RENDER",a}(s0||{});const xc=new t.nKC(""),k2=new Set;function Cs(a){k2.has(a)||(k2.add(a),performance?.mark?.("mark_feature_usage",{detail:{feature:a}}))}const R2=!1,Sl=class O2 extends S.B{__isAsync;destroyRef=void 0;pendingTasks=void 0;constructor(s=!1){super(),this.__isAsync=s,(0,t.M6u)()&&(this.destroyRef=(0,t.WQX)(t.abz,{optional:!0})??void 0,this.pendingTasks=(0,t.WQX)(t.rev,{optional:!0})??void 0)}emit(s){const u=(0,p.Ht)(null);try{super.next(s)}finally{(0,p.Ht)(u)}}subscribe(s,u,C){let R=s,X=u||(()=>null),ne=C;if(s&&"object"==typeof s){const Se=s;R=Se.next?.bind(Se),X=Se.error?.bind(Se),ne=Se.complete?.bind(Se)}this.__isAsync&&(X=this.wrapInTimeout(X),R&&(R=this.wrapInTimeout(R)),ne&&(ne=this.wrapInTimeout(ne)));const xe=super.subscribe({next:R,error:X,complete:ne});return s instanceof c.yU&&s.add(xe),xe}wrapInTimeout(s){return u=>{const C=this.pendingTasks?.add();setTimeout(()=>{try{s(u)}finally{void 0!==C&&this.pendingTasks?.remove(C)}})}}};function P2(a){let s,u;function C(){a=t.lQ1;try{void 0!==u&&"function"==typeof cancelAnimationFrame&&cancelAnimationFrame(u),void 0!==s&&clearTimeout(s)}catch{}}return s=setTimeout(()=>{a(),C()}),"function"==typeof requestAnimationFrame&&(u=requestAnimationFrame(()=>{a(),C()})),()=>C()}function F2(a){return queueMicrotask(()=>a()),()=>{a=t.lQ1}}const l1="isAngularZone",Cc=l1+"_ID";let Mc=0;class Ha{hasPendingMacrotasks=!1;hasPendingMicrotasks=!1;isStable=!0;onUnstable=new Sl(!1);onMicrotaskEmpty=new Sl(!1);onStable=new Sl(!1);onError=new Sl(!1);constructor(s){const{enableLongStackTrace:u=!1,shouldCoalesceEventChangeDetection:C=!1,shouldCoalesceRunChangeDetection:R=!1,scheduleInRootZone:X=R2}=s;if(typeof Zone>"u")throw new t.buA(908,!1);Zone.assertZonePatched();const ne=this;ne._nesting=0,ne._outer=ne._inner=Zone.current,Zone.TaskTrackingZoneSpec&&(ne._inner=ne._inner.fork(new Zone.TaskTrackingZoneSpec)),u&&Zone.longStackTraceZoneSpec&&(ne._inner=ne._inner.fork(Zone.longStackTraceZoneSpec)),ne.shouldCoalesceEventChangeDetection=!R&&C,ne.shouldCoalesceRunChangeDetection=R,ne.callbackScheduled=!1,ne.scheduleInRootZone=X,function rh(a){const s=()=>{!function ah(a){function s(){P2(()=>{a.callbackScheduled=!1,o0(a),a.isCheckStableRunning=!0,$c(a),a.isCheckStableRunning=!1})}a.isCheckStableRunning||a.callbackScheduled||(a.callbackScheduled=!0,a.scheduleInRootZone?Zone.root.run(()=>{s()}):a._outer.run(()=>{s()}),o0(a))}(a)},u=Mc++;a._inner=a._inner.fork({name:"angular",properties:{[l1]:!0,[Cc]:u,[Cc+u]:!0},onInvokeTask:(C,R,X,ne,xe,Se)=>{if(function B2(a){return Ec(a,"__ignore_ng_zone__")}(Se))return C.invokeTask(X,ne,xe,Se);try{return bd(a),C.invokeTask(X,ne,xe,Se)}finally{(a.shouldCoalesceEventChangeDetection&&"eventTask"===ne.type||a.shouldCoalesceRunChangeDetection)&&s(),N2(a)}},onInvoke:(C,R,X,ne,xe,Se,at)=>{try{return bd(a),C.invoke(X,ne,xe,Se,at)}finally{a.shouldCoalesceRunChangeDetection&&!a.callbackScheduled&&!function z2(a){return Ec(a,"__scheduler_tick__")}(Se)&&s(),N2(a)}},onHasTask:(C,R,X,ne)=>{C.hasTask(X,ne),R===X&&("microTask"==ne.change?(a._hasPendingMicrotasks=ne.microTask,o0(a),$c(a)):"macroTask"==ne.change&&(a.hasPendingMacrotasks=ne.macroTask))},onHandleError:(C,R,X,ne)=>(C.handleError(X,ne),a.runOutsideAngular(()=>a.onError.emit(ne)),!1)})}(ne)}static isInAngularZone(){return typeof Zone<"u"&&!0===Zone.current.get(l1)}static assertInAngularZone(){if(!Ha.isInAngularZone())throw new t.buA(909,!1)}static assertNotInAngularZone(){if(Ha.isInAngularZone())throw new t.buA(909,!1)}run(s,u,C){return this._inner.run(s,u,C)}runTask(s,u,C,R){const X=this._inner,ne=X.scheduleEventTask("NgZoneEvent: "+R,s,Ba,t.lQ1,t.lQ1);try{return X.runTask(ne,u,C)}finally{X.cancelTask(ne)}}runGuarded(s,u,C){return this._inner.runGuarded(s,u,C)}runOutsideAngular(s){return this._outer.run(s)}}const Ba={};function $c(a){if(0==a._nesting&&!a.hasPendingMicrotasks&&!a.isStable)try{a._nesting++,a.onMicrotaskEmpty.emit(null)}finally{if(a._nesting--,!a.hasPendingMicrotasks)try{a.runOutsideAngular(()=>a.onStable.emit(null))}finally{a.isStable=!0}}}function o0(a){a.hasPendingMicrotasks=!!(a._hasPendingMicrotasks||(a.shouldCoalesceEventChangeDetection||a.shouldCoalesceRunChangeDetection)&&!0===a.callbackScheduled)}function bd(a){a._nesting++,a.isStable&&(a.isStable=!1,a.onUnstable.emit(null))}function N2(a){a._nesting--,$c(a)}class c1{hasPendingMicrotasks=!1;hasPendingMacrotasks=!1;isStable=!0;onUnstable=new Sl;onMicrotaskEmpty=new Sl;onStable=new Sl;onError=new Sl;run(s,u,C){return s.apply(u,C)}runGuarded(s,u,C){return s.apply(u,C)}runOutsideAngular(s){return s()}runTask(s,u,C,R){return s.apply(u,C)}}function Ec(a,s){return!(!Array.isArray(a)||1!==a.length)&&!0===a[0]?.data?.[s]}function l0(a="zone.js",s){return"noop"===a?new c1:"zone.js"===a?new Ha(s):a}let c0=(()=>{class a{impl=null;execute(){this.impl?.execute()}static \u0275prov=(0,t.jDH)({token:a,providedIn:"root",factory:()=>new a})}return a})();const U2=[0,1,2,3];let V2=(()=>{class a{ngZone=(0,t.WQX)(Ha);scheduler=(0,t.WQX)(t.hk6);errorHandler=(0,t.WQX)(t.zcH,{optional:!0});sequences=new Set;deferredRegistrations=new Set;executing=!1;constructor(){(0,t.WQX)(xc,{optional:!0})}execute(){const u=this.sequences.size>0;u&&_e(16),this.executing=!0;for(const C of U2)for(const R of this.sequences)if(!R.erroredOrDestroyed&&R.hooks[C])try{R.pipelinedValue=this.ngZone.runOutsideAngular(()=>this.maybeTrace(()=>(0,R.hooks[C])(R.pipelinedValue),R.snapshot))}catch(X){R.erroredOrDestroyed=!0,this.errorHandler?.handleError(X)}this.executing=!1;for(const C of this.sequences)C.afterRun(),C.once&&(this.sequences.delete(C),C.destroy());for(const C of this.deferredRegistrations)this.sequences.add(C);this.deferredRegistrations.size>0&&this.scheduler.notify(7),this.deferredRegistrations.clear(),u&&_e(17)}register(u){const{view:C}=u;void 0!==C?((C[t.JEi]??=[]).push(u),(0,t.blu)(C),C[t.Wg1]|=8192):this.executing?this.deferredRegistrations.add(u):this.addSequence(u)}addSequence(u){this.sequences.add(u),this.scheduler.notify(7)}unregister(u){this.executing&&this.sequences.has(u)?(u.erroredOrDestroyed=!0,u.pipelinedValue=void 0,u.once=!0):(this.sequences.delete(u),this.deferredRegistrations.delete(u))}maybeTrace(u,C){return C?C.run(s0.AFTER_NEXT_RENDER,u):u()}static \u0275prov=(0,t.jDH)({token:a,providedIn:"root",factory:()=>new a})}return a})();class H2{impl;hooks;view;once;snapshot;erroredOrDestroyed=!1;pipelinedValue=void 0;unregisterOnDestroy;constructor(s,u,C,R,X,ne=null){this.impl=s,this.hooks=u,this.view=C,this.once=R,this.snapshot=ne,this.unregisterOnDestroy=X?.onDestroy(()=>this.destroy())}afterRun(){this.erroredOrDestroyed=!1,this.pipelinedValue=void 0,this.snapshot?.dispose(),this.snapshot=null}destroy(){this.impl.unregister(this),this.unregisterOnDestroy?.();const s=this.view?.[t.JEi];s&&(this.view[t.JEi]=s.filter(u=>u!==this))}}function d0(a,s){const u=s?.injector??(0,t.WQX)(t.zZn);return Cs("NgAfterNextRender"),W2(a,u,s,!0)}function W2(a,s,u,C){const R=s.get(c0);R.impl??=s.get(V2);const X=s.get(xc,null,{optional:!0}),ne=!0!==u?.manualCleanup?s.get(t.abz):null,xe=s.get(t.r4V,null,{optional:!0}),Se=new H2(R.impl,function j2(a){return a instanceof Function?[void 0,void 0,a,void 0]:[a.earlyRead,a.write,a.mixedReadWrite,a.read]}(a),xe?.view,C,ne,X?.snapshot(null));return R.impl.register(Se),Se}const _4={destroy(){}},d1=new t.nKC("",{providedIn:"root",factory:()=>({queue:new Set,isScheduled:!1,scheduler:null})});function u0(a,s,u){const C=a.get(d1);if(Array.isArray(s))for(const R of s)C.queue.add(R),u?.detachedLeaveAnimationFns?.push(R);else C.queue.add(s),u?.detachedLeaveAnimationFns?.push(s);C.scheduler&&C.scheduler(a)}function h0(a){const s=a.get(d1);s.isScheduled||(d0(()=>{s.isScheduled=!1;for(let u of s.queue)u();s.queue.clear()},{injector:a}),s.isScheduled=!0)}function u1(a){const s=a.get(d1);s.scheduler=h0,s.scheduler(a)}function h1(a,s){for(const[u,C]of s)u0(a,C.animateFns)}function wc(a,s,u,C){const R=a?.[t.Isx]?.enter;null!==s&&R&&R.has(u.index)&&h1(C,R)}function ic(a,s,u,C,R,X,ne,xe){if(null!=R){let Se,at=!1;(0,t.A0l)(R)?Se=R:(0,t.q$2)(R)&&(at=!0,R=R[t.jgP]);const xt=(0,t.IvY)(R);0===a&&null!==C?(wc(xe,C,X,u),null==ne?_d(s,C,xt):zl(s,C,xt,ne||null,!0)):1===a&&null!==C?(wc(xe,C,X,u),zl(s,C,xt,ne||null,!0)):2===a?lh(xe,X,u,qt=>{nr(s,xt,at,qt)}):3===a&&lh(xe,X,u,()=>{s.destroyNode(xt)}),null!=Se&&function g1(a,s,u,C,R,X,ne){const xe=C[t.s6P];xe!==(0,t.IvY)(C)&&ic(s,a,u,X,xe,R,ne);for(let at=t.Y20;at=0?C[xe]():C[-xe].unsubscribe(),ne+=2}else u[ne].call(C[u[ne+1]]);null!==C&&(s[t.VVG]=null);const R=s[t.Czx];if(null!==R){s[t.Czx]=null;for(let ne=0;ne{if(R.leave&&R.leave.has(s.index)){const ne=R.leave.get(s.index),xe=[];if(ne){for(let Se=0;Se{a[t.Isx].running=void 0,bc.delete(a),s(!0)}):s(!1)}(a,C)}else a&&bc.delete(a),C(!1)},R)}function xd(a,s,u){return f0(a,s.parent,u)}function f0(a,s,u){let C=s;for(;null!==C&&168&C.type;)C=(s=C).parent;if(null===C)return u[t.jgP];if((0,t.Qs1)(C)){const{encapsulation:R}=a.data[C.directiveStart+C.componentOffset];if(R===Bs.None||R===Bs.Emulated)return null}return(0,t.d31)(C,u)}function m0(a,s,u){return Tc(a,s,u)}function Sc(a,s,u){return 40&a.type?(0,t.d31)(a,u):null}let p1,Tc=Sc;function Cd(a,s){Tc=a,p1=s}function ac(a,s,u,C){const R=xd(a,C,s),X=s[t.GpT],xe=m0(C.parent||s[t.qlT],C,s);if(null!=R)if(Array.isArray(u))for(let Se=0;Set.Yw1&&T2(a,s,t.Yw1,!1),_e(ne?2:0,R,u),u(C,R)}finally{(0,t.ypq)(X),_e(ne?3:1,R,u)}}function Jc(a,s,u){(function v4(a,s,u){const C=u.directiveStart,R=u.directiveEnd;(0,t.Qs1)(u)&&function eh(a,s,u){const C=(0,t.d31)(s,a),R=t0(u),X=a[t.M0L].rendererFactory,ne=a1(a,n1(a,R,null,n0(u),C,s,null,X.createRenderer(C,u),null,null,null));a[s.index]=ne}(s,u,a.data[C+u.componentOffset]),a.firstCreatePass||Kt(u,s);const X=u.initialInputs;for(let ne=C;nenull;function y0(a,s,u,C,R,X){b1(a,s[t.eDl],s,u,C)?(0,t.Qs1)(a)&&oc(s,a.index):(3&a.type&&(u=function fh(a){return"class"===a?"className":"for"===a?"htmlFor":"formaction"===a?"formAction":"innerHtml"===a?"innerHTML":"readonly"===a?"readOnly":"tabindex"===a?"tabIndex":a}(u)),b0(a,s,u,C,R,X))}function b0(a,s,u,C,R,X){if(3&a.type){const ne=(0,t.d31)(a,s);C=null!=X?X(C,a.value||"",u):C,R.setProperty(ne,u,C)}}function oc(a,s){const u=(0,t.KdJ)(s,a);16&u[t.Wg1]||(u[t.Wg1]|=64)}function J2(a,s){null!==a.hostBindings&&a.hostBindings(1,s)}function y1(a,s){const u=a.directiveRegistry;let C=null;if(u)for(let R=0;R{(0,t.blu)(a.lView)},consumerOnSignalRead(){this.lView[t.Iaj]=this}},Sh={...p.pL,consumerIsAlwaysLive:!0,kind:"template",consumerMarkedDirty:a=>{let s=(0,t._0$)(a.lView);for(;s&&!E0(s[t.eDl]);)s=(0,t._0$)(s);s&&(0,t.HAh)(s)},consumerOnSignalRead(){this.lView[t.Iaj]=this}};function E0(a){return 2!==a.type}function w0(a){if(null===a[t.tQN])return;let s=!0;for(;s;){let u=!1;for(const C of a[t.tQN])C.dirty&&(u=!0,null===C.zone||Zone.current===C.zone?C.run():C.zone.run(()=>C.run()));s=u&&!!(8192&a[t.Wg1])}}function M1(a,s=0){const C=a[t.M0L].rendererFactory;C.begin?.();try{!function Th(a,s){const u=(0,t.yP_)();try{(0,t.cBl)(!0),T0(a,s);let C=0;for(;(0,t.dMS)(a);){if(100===C)throw new t.buA(103,!1);C++,T0(a,1)}}finally{(0,t.cBl)(u)}}(a,s)}finally{C.end?.()}}function nu(a,s,u,C){if((0,t.EPY)(s))return;const R=s[t.Wg1];(0,t.ID8)(s);let xe=!0,Se=null,at=null;E0(a)?(at=function xh(a){return a[t.Iaj]??function Ch(a){const s=C1.pop()??Object.create(Eh);return s.lView=a,s}(a)}(s),Se=(0,p.Bg)(at)):null===(0,p.nR)()?(xe=!1,at=function wh(a){const s=a[t.Iaj]??Object.create(Sh);return s.lView=a,s}(s),Se=(0,p.Bg)(at)):s[t.Iaj]&&((0,p.XR)(s[t.Iaj]),s[t.Iaj]=null);try{(0,t.HUe)(s),(0,t.Kw3)(a.bindingStartIndex),null!==u&&_0(a,s,u,2,C);const xt=!(3&~R);if(xt){const bi=a.preOrderCheckHooks;null!==bi&&Ke(s,bi,null)}else{const bi=a.preOrderHooks;null!==bi&&ge(s,bi,0,null),ve(s,0)}if(function Ah(a){for(let s=Ta(a);null!==s;s=wr(s)){if(!(2&s[t.Wg1]))continue;const u=s[t.nfM];for(let C=0;C0&&(u[R-1][t.K29]=s),C0&&(a[u-1][t.K29]=C[t.K29]);const X=(0,t.E6O)(a,t.Y20+s);f1(C[t.eDl],C);const ne=X[t.Ds7];null!==ne&&ne.detachView(X[t.eDl]),C[t.f7T]=null,C[t.K29]=null,C[t.Wg1]&=-129}return C}function L0(a,s){const u=a[t.nfM],C=s[t.f7T];((0,t.q$2)(C)||s[t.b5C]!==C[t.f7T][t.b5C])&&(a[t.Wg1]|=2),null===u?a[t.nfM]=[s]:u.push(s)}class Td{_lView;_cdRefInjectingView;_appRef=null;_attachedToViewContainer=!1;exhaustive;get rootNodes(){const s=this._lView,u=s[t.eDl];return wd(u,s,u.firstChild,[])}constructor(s,u){this._lView=s,this._cdRefInjectingView=u}get context(){return this._lView[t.SKP]}set context(s){this._lView[t.SKP]=s}get destroyed(){return(0,t.EPY)(this._lView)}destroy(){if(this._appRef)this._appRef.detachView(this);else if(this._attachedToViewContainer){const s=this._lView[t.f7T];if((0,t.A0l)(s)){const u=s[t.bm_],C=u?u.indexOf(this):-1;C>-1&&(Sd(s,C),(0,t.E6O)(u,C))}this._attachedToViewContainer=!1}Zc(this._lView[t.eDl],this._lView)}onDestroy(s){(0,t.ik5)(this._lView,s)}markForCheck(){kc(this._cdRefInjectingView||this._lView,4)}detach(){this._lView[t.Wg1]&=-129}reattach(){(0,t._gW)(this._lView),this._lView[t.Wg1]|=128}detectChanges(){this._lView[t.Wg1]|=1024,M1(this._lView)}checkNoChanges(){}attachToViewContainerRef(){if(this._appRef)throw new t.buA(902,!1);this._attachedToViewContainer=!0}detachFromAppRef(){this._appRef=null;const s=(0,t.EFk)(this._lView),u=this._lView[t.rQE];null!==u&&!s&&m1(u,this._lView),X2(this._lView[t.eDl],this._lView)}attachToAppRef(s){if(this._attachedToViewContainer)throw new t.buA(902,!1);this._appRef=s;const u=(0,t.EFk)(this._lView),C=this._lView[t.rQE];null!==C&&!u&&L0(C,this._lView),(0,t._gW)(this._lView)}}let Dd=(()=>class a{_declarationLView;_declarationTContainer;elementRef;static __NG_ELEMENT_ID__=kh;constructor(u,C,R){this._declarationLView=u,this._declarationTContainer=C,this.elementRef=R}get ssrId(){return this._declarationTContainer.tView?.ssrId||null}createEmbeddedView(u,C){return this.createEmbeddedViewImpl(u,C)}createEmbeddedViewImpl(u,C,R){const X=td(this._declarationLView,this._declarationTContainer,u,{embeddedViewInjector:C,dehydratedView:R});return new Td(X)}})();function kh(){return Ad((0,t.Mx4)(),(0,t.OAn)())}function Ad(a,s){return 4&a.type?new Dd(s,a,Gi(a,s)):null}function du(a,s,u){const C=s.insertBeforeIndex,R=Array.isArray(C)?C[0]:C;return null===R?Sc(a,0,u):(0,t.IvY)(u[R])}function uu(a,s,u,C,R){const X=s.insertBeforeIndex;if(Array.isArray(X)){let ne=C,xe=null;if(3&s.type||(xe=ne,ne=R),null!==ne&&-1===s.componentOffset)for(let Se=1;Se1)for(let u=a.length-2;u>=0;u--){const C=a[u];hu(C)||jh(C,s)&&null===pm(C)&&Wh(C,s.index)}}function hu(a){return!(64&a.type)}function jh(a,s){return hu(s)||a.index>s.index}function pm(a){const s=a.insertBeforeIndex;return Array.isArray(s)?s[0]:s}function Wh(a,s){const u=a.insertBeforeIndex;Array.isArray(u)?u[0]=s:(Cd(du,uu),a.insertBeforeIndex=s)}function P0(a,s){const u=a.data[s];return null===u||"string"==typeof u?null:u.hasOwnProperty("currentCaseLViewIndex")?u:u.value}function Ms(a,s,u){const C=O0(a,u,64,null,null);return kd(s,C),C}function F0(a,s){const u=s[a.currentCaseLViewIndex];return null===u?u:u<0?~u:u}function N0(a){return a>>>17}function Xh(a){return(131070&a)>>>1}function mu(a,s,u){a.index=0;const C=F0(s,u);a.removes=null!==C?s.remove[C]:t.Mlv}function w1(a){if(a.index0?a.lView[s]:(a.stack.push(a.index,a.removes),mu(a,a.lView[t.eDl].data[~s],a.lView),w1(a))}return 0===a.stack.length?(a.lView=void 0,null):(a.removes=a.stack.pop(),a.index=a.stack.pop(),w1(a))}function Kh(){const a={stack:[],index:-1};return function s(u,C){for(a.lView=C;a.stack.length;)a.stack.pop();return mu(a,u.value,C),w1.bind(null,a)}}function rf(a,s,u){for(const C of u.node.cases[u.case]){const R=s.get(C.index-t.Yw1);R&&nr(a,R,!1)}}function Od(a){const s=a[t.qFA]??[],C=a[t.f7T][t.GpT],R=[];for(const X of s)void 0!==X.data[Li]?R.push(X):Eu(X,C);a[t.qFA]=R}function Mu(a){const{lContainer:s}=a,u=s[t.qFA];if(null===u)return;const R=s[t.f7T][t.GpT];for(const X of u)Eu(X,R)}function Eu(a,s){let u=0,C=a.firstChild;if(C){const R=a.data[Oa];for(;unull,lf=()=>null;function I1(a,s){return U0(a,s)}function wu(a,s,u){return lf(a,s,u)}let df=class{},uf=class{};class hf{resolveComponentFactory(s){throw new t.buA(917,!1)}}let k1=class{static NULL=new hf};class Tu{}let W4=(()=>class a{destroyNode=null;static __NG_ELEMENT_ID__=()=>function ff(){const a=(0,t.OAn)(),s=(0,t.Mx4)(),u=(0,t.KdJ)(s.index,a);return((0,t.q$2)(u)?u:a)[t.GpT]}()})(),R1=(()=>{class a{static \u0275prov=(0,t.jDH)({token:a,providedIn:"root",factory:()=>null})}return a})();function Du(a){return void 0!==a.ngModule}function rd(a){return!!(0,t.phH)(a)}function H0(a){return!!(0,t.oyA)(a)}function Au(a){return!!(0,t.HaV)(a)}function Pc(a){return!!(0,t.xUg)(a)}function X4(a,s){if((0,t.Jzi)(a)&&!(a=(0,t.nl4)(a)))throw new Error(`Expected forwardRef function, imported from "${(0,t.PP7)(s)}", to return a standalone entity or NgModule but got "${(0,t.PP7)(a)||a}".`);if(null==(0,t.phH)(a)){const u=(0,t.xUg)(a)||(0,t.HaV)(a)||(0,t.oyA)(a);if(null==u)throw Du(a)?new Error(`A module with providers was imported from "${(0,t.PP7)(s)}". Modules with providers are not supported in standalone components imports.`):new Error(`The "${(0,t.PP7)(a)}" type, imported from "${(0,t.PP7)(s)}", must be a standalone component / directive / pipe or an NgModule. Did you forget to add the required @Component / @Directive / @Pipe or @NgModule annotation?`);if(!u.standalone)throw new Error(`The "${(0,t.PP7)(a)}" ${function mf(a){return(0,t.xUg)(a)?"component":(0,t.HaV)(a)?"directive":(0,t.oyA)(a)?"pipe":"type"}(a)}, imported from "${(0,t.PP7)(s)}", is not standalone. Did you forget to add the standalone: true flag?`)}}class K4{ownerNgModule=new Map;ngModulesWithSomeUnresolvedDecls=new Set;ngModulesScopeCache=new Map;standaloneComponentsScopeCache=new Map;resolveNgModulesDecls(){if(0!==this.ngModulesWithSomeUnresolvedDecls.size){for(const s of this.ngModulesWithSomeUnresolvedDecls){const u=(0,t.phH)(s);if(u?.declarations)for(const C of ps(u.declarations))Pc(C)&&this.ownerNgModule.set(C,s)}this.ngModulesWithSomeUnresolvedDecls.clear()}}getComponentDependencies(s,u){this.resolveNgModulesDecls();const C=(0,t.xUg)(s);if(null===C)throw new Error(`Attempting to get component dependencies for a type that is not a component: ${s}`);if(C.standalone){const R=this.getStandaloneComponentScope(s,u);return R.compilation.isPoisoned?{dependencies:[]}:{dependencies:[...R.compilation.directives,...R.compilation.pipes,...R.compilation.ngModules]}}{if(!this.ownerNgModule.has(s))return{dependencies:[]};const R=this.getNgModuleScope(this.ownerNgModule.get(s));return R.compilation.isPoisoned?{dependencies:[]}:{dependencies:[...R.compilation.directives,...R.compilation.pipes]}}}registerNgModule(s,u){if(!rd(s))throw new Error(`Attempting to register a Type which is not NgModule as NgModule: ${s}`);this.ngModulesWithSomeUnresolvedDecls.add(s)}clearScopeCacheFor(s){this.ngModulesScopeCache.delete(s),this.standaloneComponentsScopeCache.delete(s)}getNgModuleScope(s){if(this.ngModulesScopeCache.has(s))return this.ngModulesScopeCache.get(s);const u=this.computeNgModuleScope(s);return this.ngModulesScopeCache.set(s,u),u}computeNgModuleScope(s){const u=(0,t.WbQ)(s),C={exported:{directives:new Set,pipes:new Set},compilation:{directives:new Set,pipes:new Set}};for(const R of ps(u.imports))if(rd(R)){const X=this.getNgModuleScope(R);Fc(X.exported.directives,C.compilation.directives),Fc(X.exported.pipes,C.compilation.pipes)}else{if(!(0,t.QuC)(R)){C.compilation.isPoisoned=!0;break}if(Au(R)||Pc(R))C.compilation.directives.add(R);else{if(!H0(R))throw new t.buA(980,"The standalone imported type is neither a component nor a directive nor a pipe");C.compilation.pipes.add(R)}}if(!C.compilation.isPoisoned)for(const R of ps(u.declarations)){if(rd(R)||(0,t.QuC)(R)){C.compilation.isPoisoned=!0;break}H0(R)?C.compilation.pipes.add(R):C.compilation.directives.add(R)}for(const R of ps(u.exports))if(rd(R)){const X=this.getNgModuleScope(R);Fc(X.exported.directives,C.exported.directives),Fc(X.exported.pipes,C.exported.pipes),Fc(X.exported.directives,C.compilation.directives),Fc(X.exported.pipes,C.compilation.pipes)}else H0(R)?C.exported.pipes.add(R):C.exported.directives.add(R);return C}getStandaloneComponentScope(s,u){if(this.standaloneComponentsScopeCache.has(s))return this.standaloneComponentsScopeCache.get(s);const C=this.computeStandaloneComponentScope(s,u);return this.standaloneComponentsScopeCache.set(s,C),C}computeStandaloneComponentScope(s,u){const C={compilation:{directives:new Set([s]),pipes:new Set,ngModules:new Set}};for(const R of(0,t.Bqz)(u??[])){const X=(0,t.nl4)(R);try{X4(X,s)}catch{return C.compilation.isPoisoned=!0,C}if(rd(X)){C.compilation.ngModules.add(X);const ne=this.getNgModuleScope(X);if(ne.exported.isPoisoned)return C.compilation.isPoisoned=!0,C;Fc(ne.exported.directives,C.compilation.directives),Fc(ne.exported.pipes,C.compilation.pipes)}else if(H0(X))C.compilation.pipes.add(X);else{if(!Au(X)&&!Pc(X))return C.compilation.isPoisoned=!0,C;C.compilation.directives.add(X)}}return C}isOrphanComponent(s){const u=(0,t.xUg)(s);return!(!u||u.standalone||(this.resolveNgModulesDecls(),this.ownerNgModule.has(s)))}}function Fc(a,s){for(const u of a)s.add(u)}const O1=new K4,G0={};class Nc{injector;parentInjector;constructor(s,u){this.injector=s,this.parentInjector=u}get(s,u,C){const R=this.injector.get(s,G0,C);return R!==G0||u===G0?R:this.parentInjector.get(s,u,C)}}function P1(a,s,u){let C=u?a.styles:null,R=u?a.classes:null,X=0;if(null!==s)for(let ne=0;ne0&&(u.directiveToIndex=new Map);for(let yi=0;yi0;){const u=a[--s];if("number"==typeof u&&u<0)return u}return 0})(ne)!=xe&&ne.push(xe),ne.push(u,C,X)}}(a,s,C,Kc(a,u,R.hostVars,qa),R)}function yf(a,s,u){if(u){if(s.exportAs)for(let C=0;CSe?xe[Se]:null}"string"==typeof ne&&(X+=2)}return null}(s,u,X,a.index)),null!==xt)(xt.__ngLastListenerFn__||xt).__ngNextListenerFn__=ne,xt.__ngLastListenerFn__=ne,at=!0;else{const qt=(0,t.d31)(a,u),yi=C?C(qt):qt;!function Al(a,s,u,C){qo(a,s,u,C)}(u,yi,X,xe);const bi=R.listen(yi,X,xe);(function qr(a){return a.startsWith("animation")||a.startsWith("transition")})(X)||dr(C?_n=>C((0,t.IvY)(_n[a.index])):a.index,s,u,X,xe,bi,!1)}return at}function dr(a,s,u,C,R,X,ne){const xe=s.firstCreatePass?(0,t.vNG)(s):null,Se=(0,t.d_l)(u),at=Se.length;Se.push(R,X),xe&&xe.push(C,a,at,(at+1)*(ne?-1:1))}function ar(a,s,u,C,R,X){const xe=s[t.eDl],qt=s[u][xe.data[u].outputs[C]].subscribe(X);dr(a.index,xe,s,R,X,qt,!0)}const ko=Symbol("BINDING");class na extends k1{ngModule;constructor(s){super(),this.ngModule=s}resolveComponentFactory(s){const u=(0,t.xUg)(s);return new F1(u,this.ngModule)}}class F1 extends uf{componentDef;ngModule;selector;componentType;ngContentSelectors;isBoundToModule;cachedInputs=null;cachedOutputs=null;get inputs(){return this.cachedInputs??=function ua(a){return Object.keys(a).map(s=>{const[u,C,R]=a[s],X={propName:u,templateName:s,isSignal:0!==(C&r1.SignalBased)};return R&&(X.transform=R),X})}(this.componentDef.inputs),this.cachedInputs}get outputs(){return this.cachedOutputs??=function Ga(a){return Object.keys(a).map(s=>({propName:a[s],templateName:s}))}(this.componentDef.outputs),this.cachedOutputs}constructor(s,u){super(),this.componentDef=s,this.ngModule=u,this.componentType=s.type,this.selector=function gd(a){return a.map(qu).join(",")}(s.selectors),this.ngContentSelectors=s.ngContentSelectors??[],this.isBoundToModule=!!u}create(s,u,C,R,X,ne){_e(22);const xe=(0,p.Ht)(null);try{const Se=this.componentDef,at=function Z4(a,s,u,C){const R=a?["ng-version","20.3.14"]:function ec(a){const s=[],u=[];let C=1,R=2;for(;C{if(1&u&&a)for(const C of a)C.create();if(2&u&&s)for(const C of s)C.update()}:null}(X,ne),1,xe,Se,null,null,null,[R],null)}(C,Se,ne,X),xt=function Hl(a,s,u){let C=s instanceof t.uvJ?s:s?.injector;return C&&null!==a.getStandaloneInjector&&(C=a.getStandaloneInjector(C)||C),C?new Nc(u,C):u}(Se,R||this.ngModule,s),qt=function $o(a){const s=a.get(Tu,null);if(null===s)throw new t.buA(407,!1);return{rendererFactory:s,sanitizer:a.get(R1,null),changeDetectionScheduler:a.get(t.hk6,null),ngReflect:!1}}(xt),yi=qt.rendererFactory.createRenderer(null,Se),bi=C?function Dc(a,s,u,C){const X=C.get(mi,!1)||u===Bs.ShadowDom,ne=a.selectRootElement(s,X);return function $2(a){v0(a)}(ne),ne}(yi,C,Se.encapsulation,xt):function dc(a,s){const u=function Fr(a){return(a.selectors[0][0]||"div").toLowerCase()}(a);return e1(s,u,"svg"===u?t.jNX:"math"===u?t.rJ1:null)}(Se,yi),Xi=ne?.some(Bc)||X?.some(Yn=>"function"!=typeof Yn&&Yn.bindings.some(Bc)),_n=n1(null,at,null,512|n0(Se),null,null,qt,yi,xt,null,ml(bi,xt,!0));_n[t.Yw1]=bi,(0,t.ID8)(_n);let jn=null;try{const Yn=L(t.Yw1,_n,2,"#host",()=>at.directiveRegistry,!0,0);tc(yi,bi,Yn),gi(bi,_n),Jc(at,_n,Yn),xl(at,Yn,_n),H(at,Yn),void 0!==u&&function N1(a,s,u){const C=a.projection=[];for(let R=0;Rclass a{static __NG_ELEMENT_ID__=bm})();function bm(){return Mm((0,t.Mx4)(),(0,t.OAn)())}const B6=Fd,xm=class extends B6{_lContainer;_hostTNode;_hostLView;constructor(s,u,C){super(),this._lContainer=s,this._hostTNode=u,this._hostLView=C}get element(){return Gi(this._hostTNode,this._hostLView)}get injector(){return new nn(this._hostTNode,this._hostLView)}get parentInjector(){const s=Zt(this._hostTNode,this._hostLView);if(li(s)){const u=kt(s,this._hostLView),C=Qt(s);return new nn(u[t.eDl].data[C+8],u)}return new nn(null,this._hostLView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(s){const u=Cm(this._lContainer);return null!==u&&u[s]||null}get length(){return this._lContainer.length-t.Y20}createEmbeddedView(s,u,C){let R,X;"number"==typeof C?R=C:null!=C&&(R=C.index,X=C.injector);const ne=I1(this._lContainer,s.ssrId),xe=s.createEmbeddedViewImpl(u||{},X,ne);return this.insertImpl(xe,R,Lc(this._hostTNode,ne)),xe}createComponent(s,u,C,R,X,ne,xe){const Se=s&&!oe(s);let at;if(Se)at=u;else{const jn=u||{};at=jn.index,C=jn.injector,R=jn.projectableNodes,X=jn.environmentInjector||jn.ngModuleRef,ne=jn.directives,xe=jn.bindings}const xt=Se?s:new F1((0,t.xUg)(s)),qt=C||this.parentInjector;if(!X&&null==xt.ngModule){const Yn=(Se?qt:this.parentInjector).get(t.uvJ,null);Yn&&(X=Yn)}const yi=(0,t.xUg)(xt.componentType??{}),bi=I1(this._lContainer,yi?.id??null),_n=xt.create(qt,R,bi?.firstChild??null,X,ne,xe);return this.insertImpl(_n.hostView,at,Lc(this._hostTNode,bi)),_n}insert(s,u){return this.insertImpl(s,u,!0)}insertImpl(s,u,C){const R=s._lView;if((0,t.ITl)(R)){const xe=this.indexOf(s);if(-1!==xe)this.detach(xe);else{const Se=R[t.f7T],at=new xm(Se,Se[t.qlT],Se[t.f7T]);at.detach(at.indexOf(s))}}const X=this._adjustIndex(u),ne=this._lContainer;return id(ne,R,X,C),s.attachToViewContainerRef(),(0,t.EYC)(J4(ne),X,s),s}move(s,u){return this.insert(s,u)}indexOf(s){const u=Cm(this._lContainer);return null!==u?u.indexOf(s):-1}remove(s){const u=this._adjustIndex(s,-1),C=Sd(this._lContainer,u);C&&((0,t.E6O)(J4(this._lContainer),u),Zc(C[t.eDl],C))}detach(s){const u=this._adjustIndex(s,-1),C=Sd(this._lContainer,u);return C&&null!=(0,t.E6O)(J4(this._lContainer),u)?new Td(C):null}_adjustIndex(s,u=0){return s??this.length+u}};function Cm(a){return a[t.bm_]}function J4(a){return a[t.bm_]||(a[t.bm_]=[])}function Mm(a,s){let u;const C=s[a.index];return(0,t.A0l)(C)?u=C:(u=su(C,s,null,a),s[a.index]=u,a1(s,u)),q4(u,s,a,C),new xm(u,a,s)}let q4=function wm(a,s,u,C){if(a[t.s6P])return;let R;R=8&u.type?(0,t.IvY)(C):function z6(a,s){const u=a[t.GpT],C=u.createComment(""),R=(0,t.d31)(s,a),X=u.parentNode(R);return zl(u,X,C,u.nextSibling(R),!1),C}(s,u),a[t.s6P]=R},e3=()=>!1;function Em(a,s,u){return e3(a,s,u)}class xf{queryList;matches=null;constructor(s){this.queryList=s}clone(){return new xf(this.queryList)}setDirty(){this.queryList.setDirty()}}class Cf{queries;constructor(s=[]){this.queries=s}createEmbeddedView(s){const u=s.queries;if(null!==u){const C=null!==s.contentQueries?s.contentQueries[0]:u.length,R=[];for(let X=0;Xs.trim())}(s):s}}class Mf{queries;constructor(s=[]){this.queries=s}elementStart(s,u){for(let C=0;C0)C.push(ne[xe/2]);else{const at=X[xe+1],xt=s[-Se];for(let qt=t.Y20;qt{C._dirtyCounter();const X=function r3(a,s){const u=a._lView,C=a._queryIndex;if(void 0===u||void 0===C||4&u[t.Wg1])return s?void 0:t.Mlv;const R=wf(u,C),X=Y0(u,C);return R.reset(X,Ai),s?R.first:R._changesDetected||void 0===a._flatValue?a._flatValue=R.toArray():a._flatValue}(C,a);if(s&&void 0===X)throw new t.buA(-951,!1);return X});return C=R[p.bh],C._dirtyCounter=(0,t.vPA)(0),C._flatValue=void 0,R}function Df(a){return Bu(!0,!1)}function n3(a){return Bu(!0,!0)}function Af(a){return Bu(!1,!1)}function a3(a,s){const u=a[p.bh];u._lView=(0,t.OAn)(),u._queryIndex=s,u._queryList=wf(u._lView,s),u._queryList.onDirty(()=>u._dirtyCounter.update(C=>C+1))}function V6(a){const s=[],u=new Map;function C(R){let X=u.get(R);if(!X){const ne=a(R);u.set(R,X=ne.then(xe=>function Lf(a,s){return"string"==typeof s?s:void 0!==s.status&&200!==s.status?Promise.reject(new t.buA(918,!1)):s.text()}(0,xe)))}return X}return od.forEach((R,X)=>{const ne=[];R.templateUrl&&ne.push(C(R.templateUrl).then(at=>{R.template=at}));const xe="string"==typeof R.styles?[R.styles]:R.styles||[];if(R.styles=xe,R.styleUrl&&R.styleUrls?.length)throw new Error("@Component cannot define both `styleUrl` and `styleUrls`. Use `styleUrl` if the component has one stylesheet, or `styleUrls` if it has multiple");if(R.styleUrls?.length){const at=R.styles.length,xt=R.styleUrls;R.styleUrls.forEach((qt,yi)=>{xe.push(""),ne.push(C(qt).then(bi=>{xe[at+yi]=bi,xt.splice(xt.indexOf(qt),1),0==xt.length&&(R.styleUrls=void 0)}))})}else R.styleUrl&&ne.push(C(R.styleUrl).then(at=>{xe.push(at),R.styleUrl=void 0}));const Se=Promise.all(ne).then(()=>function c3(a){xr.delete(a)}(X));s.push(Se)}),function l3(){const a=od;od=new Map}(),Promise.all(s).then(()=>{})}let od=new Map;const xr=new Set;function Uc(){return 0===od.size}const Uu=new Map;function Bd(a,s){(function d3(a,s,u){if(s&&s!==u)throw new Error(`Duplicate module registered for ${a} - ${(0,t.AsM)(s)} vs ${(0,t.AsM)(s.name)}`)})(s,Uu.get(s)||null,a),Uu.set(s,a)}let Vc=class{},z1=class{};function Es(a,s){return new U1(a,s??null,[])}class U1 extends Vc{ngModuleType;_parent;_bootstrapComponents=[];_r3Injector;instance;destroyCbs=[];componentFactoryResolver=new na(this);constructor(s,u,C,R=!0){super(),this.ngModuleType=s,this._parent=u;const X=(0,t.phH)(s);this._bootstrapComponents=ps(X.bootstrap),this._r3Injector=(0,t.Pz9)(s,u,[{provide:Vc,useValue:this},{provide:k1,useValue:this.componentFactoryResolver},...C],(0,t.AsM)(s),new Set(["environment"])),R&&this.resolveInjectorInitializers()}resolveInjectorInitializers(){this._r3Injector.resolveInjectorInitializers(),this.instance=this._r3Injector.get(this.ngModuleType)}get injector(){return this._r3Injector}destroy(){const s=this._r3Injector;!s.destroyed&&s.destroy(),this.destroyCbs.forEach(u=>u()),this.destroyCbs=null}onDestroy(s){this.destroyCbs.push(s)}}class V1 extends z1{moduleType;constructor(s){super(),this.moduleType=s}create(s){return new U1(this.moduleType,s,[])}}function m3(a,s,u){return new U1(a,s,u,!1)}class p3 extends Vc{injector;componentFactoryResolver=new na(this);instance=null;constructor(s){super();const u=new t.e5P([...s.providers,{provide:Vc,useValue:this},{provide:k1,useValue:this.componentFactoryResolver}],s.parent||(0,t.WB9)(),s.debugName,new Set(["environment"]));this.injector=u,s.runEnvironmentInitializers&&u.resolveInjectorInitializers()}destroy(){this.injector.destroy()}onDestroy(s){this.injector.onDestroy(s)}}function H1(a,s,u=null){return new p3({providers:a,parent:s,debugName:u,runEnvironmentInitializers:!0}).injector}let kf=(()=>{class a{_injector;cachedInjectors=new Map;constructor(u){this._injector=u}getOrCreateStandaloneInjector(u){if(!u.standalone)return null;if(!this.cachedInjectors.has(u)){const C=(0,t.jXY)(!1,u.type),R=C.length>0?H1([C],this._injector,`Standalone[${u.type.name}]`):null;this.cachedInjectors.set(u,R)}return this.cachedInjectors.get(u)}ngOnDestroy(){try{for(const u of this.cachedInjectors.values())null!==u&&u.destroy()}finally{this.cachedInjectors.clear()}}static \u0275prov=(0,t.jDH)({token:a,providedIn:"environment",factory:()=>new a((0,t.KVO)(t.uvJ))})}return a})();function g3(a){return T(()=>{const s=Ff(a),u={...s,decls:a.decls,vars:a.vars,template:a.template,consts:a.consts||null,ngContentSelectors:a.ngContentSelectors,onPush:a.changeDetection===ca.OnPush,directiveDefs:null,pipeDefs:null,dependencies:s.standalone&&a.dependencies||null,getStandaloneInjector:s.standalone?R=>R.get(kf).getOrCreateStandaloneInjector(u):null,getExternalStyles:null,signals:a.signals??!1,data:a.data||{},encapsulation:a.encapsulation||Bs.Emulated,styles:a.styles||t.Mlv,_:null,schemas:a.schemas||null,tView:null,id:""};s.standalone&&Cs("NgStandalone"),Z0(u);const C=a.dependencies;return u.directiveDefs=Vu(C,Rf),u.pipeDefs=Vu(C,t.oyA),u.id=function Am(a){let s=0;const C=[a.selectors,a.ngContentSelectors,a.hostVars,a.hostAttrs,"function"==typeof a.consts?"":a.consts,a.vars,a.decls,a.encapsulation,a.standalone,a.signals,a.exportAs,JSON.stringify(a.inputs),JSON.stringify(a.outputs),Object.getOwnPropertyNames(a.type.prototype),!!a.contentQueries,!!a.viewQuery];for(const X of C.join("|"))s=Math.imul(31,s)+X.charCodeAt(0)|0;return s+=2147483648,"c"+s}(u),u})}function Rf(a){return(0,t.xUg)(a)||(0,t.HaV)(a)}function Of(a){return T(()=>({type:a.type,bootstrap:a.bootstrap||t.Mlv,declarations:a.declarations||t.Mlv,imports:a.imports||t.Mlv,exports:a.exports||t.Mlv,transitiveCompileScopes:null,schemas:a.schemas||null,id:a.id||null}))}function Tm(a,s){if(null==a)return t.MZA;const u={};for(const C in a)if(a.hasOwnProperty(C)){const R=a[C];let X,ne,xe,Se;Array.isArray(R)?(xe=R[0],X=R[1],ne=R[2]??X,Se=R[3]||null):(X=R,ne=R,xe=r1.None,Se=null),u[X]=[C,xe,Se],s[X]=ne}return u}function _3(a){if(null==a)return t.MZA;const s={};for(const u in a)a.hasOwnProperty(u)&&(s[a[u]]=u);return s}function Pf(a){return T(()=>{const s=Ff(a);return Z0(s),s})}function $0(a){return{type:a.type,name:a.name,factory:null,pure:!1!==a.pure,standalone:a.standalone??!0,onDestroy:a.type.prototype.ngOnDestroy||null}}function Ff(a){const s={};return{type:a.type,providersResolver:null,factory:null,hostBindings:a.hostBindings||null,hostVars:a.hostVars||0,hostAttrs:a.hostAttrs||null,contentQueries:a.contentQueries||null,declaredInputs:s,inputConfig:a.inputs||t.MZA,exportAs:a.exportAs||null,standalone:a.standalone??!0,signals:!0===a.signals,selectors:a.selectors||t.Mlv,viewQuery:a.viewQuery||null,features:a.features||null,setInput:null,resolveHostDirectives:null,hostDirectives:null,inputs:Tm(a.inputs,s),outputs:_3(a.outputs),debugInfo:null}}function Z0(a){a.features?.forEach(s=>s(a))}function Vu(a,s){return a?()=>{const u="function"==typeof a?a():a,C=[];for(const R of u){const X=s(R);null!==X&&C.push(X)}return C}:null}function Lm(a){return Object.getPrototypeOf(a.prototype).constructor}function v3(a){let s=Lm(a.type),u=!0;const C=[a];for(;s;){let R;if((0,t.JlV)(a))R=s.\u0275cmp||s.\u0275dir;else{if(s.\u0275cmp)throw new t.buA(903,!1);R=s.\u0275dir}if(R){if(u){C.push(R);const ne=a;ne.inputs=J0(a.inputs),ne.declaredInputs=J0(a.declaredInputs),ne.outputs=J0(a.outputs);const xe=R.hostBindings;xe&&Im(a,xe);const Se=R.viewQuery,at=R.contentQueries;if(Se&&b3(a,Se),at&&H6(a,at),Jo(a,R),(0,t.dwj)(a.outputs,R.outputs),(0,t.JlV)(R)&&R.data.animation){const xt=a.data;xt.animation=(xt.animation||[]).concat(R.data.animation)}}const X=R.features;if(X)for(let ne=0;ne=0;C--){const R=a[C];R.hostVars=s+=R.hostVars,R.hostAttrs=Ie(R.hostAttrs,u=Ie(u,R.hostAttrs))}}(C)}function Jo(a,s){for(const u in s.inputs){if(!s.inputs.hasOwnProperty(u)||a.inputs.hasOwnProperty(u))continue;const C=s.inputs[u];void 0!==C&&(a.inputs[u]=C,a.declaredInputs[u]=s.declaredInputs[u])}}function J0(a){return a===t.MZA?{}:a===t.Mlv?[]:a}function b3(a,s){const u=a.viewQuery;a.viewQuery=u?(C,R)=>{s(C,R),u(C,R)}:s}function H6(a,s){const u=a.contentQueries;a.contentQueries=u?(C,R,X)=>{s(C,R,X),u(C,R,X)}:s}function Im(a,s){const u=a.hostBindings;a.hostBindings=u?(C,R)=>{s(C,R),u(C,R)}:s}const G6=["providersResolver"],km=["template","decls","consts","vars","onPush","ngContentSelectors","styles","encapsulation","schemas"];function Rm(a){const s=u=>{const C=Array.isArray(a);null===u.hostDirectives?(u.resolveHostDirectives=W6,u.hostDirectives=C?a.map(C3):[a]):C?u.hostDirectives.unshift(...a.map(C3)):u.hostDirectives.unshift(a)};return s.ngInherit=!0,s}function W6(a){const s=[];let u=!1,C=null,R=null;for(let X=0;X{As.has(a)&&(C.callbacks.delete(s),0===C.callbacks.size&&(Ps?.unobserve(a),As.delete(a),vo--),0===vo&&(Ps?.disconnect(),Ps=null))}}(a,()=>C.run(s),()=>C.runOutsideAngular(()=>function Fo(){return new IntersectionObserver(a=>{for(const s of a)s.isIntersecting&&As.has(s.target)&&As.get(s.target).listener()})}()))}function Gd(a,s,u,C,R,X,ne){const xe=a[t.YEL],Se=xe.get(Ha);let at;at=function G2(a,s){const u=s?.injector??(0,t.WQX)(t.zZn);return Cs("NgAfterRender"),W2(a,u,s,!1)}({read:function xt(){if((0,t.EPY)(a))return void at.destroy();const qt=cl(a,s),yi=qt[1];if(yi!==uc.Initial&&yi!==ur.Placeholder)return void at.destroy();const bi=function J6(a,s,u){return null==u?a:u>=0?(0,t.jRZ)(u,a):a[s.index][t.Y20]??null}(a,s,C);if(!bi||(at.destroy(),(0,t.EPY)(bi)))return;const Xi=function Vf(a,s){return(0,t.vaC)(t.Yw1+s,a)}(bi,u),_n=R(Xi,()=>{Se.run(()=>{a!==bi&&(0,t.DyX)(bi,_n),X()})},xe);a!==bi&&(0,t.ik5)(bi,_n),i2(ne,qt,_n)}},{injector:xe})}function Hf(a,s){const u=s.get(tg);return u.add(a),()=>u.remove(a)}let tg=(()=>{class a{executingCallbacks=!1;idleId=null;current=new Set;deferred=new Set;ngZone=(0,t.WQX)(Ha);requestIdleCallbackFn=(()=>typeof requestIdleCallback<"u"?requestIdleCallback:setTimeout)().bind(globalThis);cancelIdleCallbackFn=(()=>typeof requestIdleCallback<"u"?cancelIdleCallback:clearTimeout)().bind(globalThis);add(u){(this.executingCallbacks?this.deferred:this.current).add(u),null===this.idleId&&this.scheduleIdleCallback()}remove(u){const{current:C,deferred:R}=this;C.delete(u),R.delete(u),0===C.size&&0===R.size&&this.cancelIdleCallback()}scheduleIdleCallback(){const u=()=>{this.cancelIdleCallback(),this.executingCallbacks=!0;for(const C of this.current)C();if(this.current.clear(),this.executingCallbacks=!1,this.deferred.size>0){for(const C of this.deferred)this.current.add(C);this.deferred.clear(),this.scheduleIdleCallback()}};this.idleId=this.requestIdleCallbackFn(()=>this.ngZone.run(u))}cancelIdleCallback(){null!==this.idleId&&(this.cancelIdleCallbackFn(this.idleId),this.idleId=null)}ngOnDestroy(){this.cancelIdleCallback(),this.current.clear(),this.deferred.clear()}static \u0275prov=(0,t.jDH)({token:a,providedIn:"root",factory:()=>new a})}return a})();function Gu(a){return(s,u)=>O3(a,s,u)}function O3(a,s,u){const C=u.get(ig),R=u.get(Ha);return C.add(a,s,R),()=>C.remove(s)}let ig=(()=>{class a{executingCallbacks=!1;timeoutId=null;invokeTimerAt=null;current=[];deferred=[];add(u,C,R){this.addToQueue(this.executingCallbacks?this.deferred:this.current,Date.now()+u,C),this.scheduleTimer(R)}remove(u){const{current:C,deferred:R}=this;-1===this.removeFromQueue(C,u)&&this.removeFromQueue(R,u),0===C.length&&0===R.length&&this.clearTimeout()}addToQueue(u,C,R){let X=u.length;for(let ne=0;neC){X=ne;break}(0,t.llW)(u,X,C,R)}removeFromQueue(u,C){let R=-1;for(let X=0;X-1&&(0,t.gsJ)(u,R,2),R}scheduleTimer(u){const C=()=>{this.clearTimeout(),this.executingCallbacks=!0;const X=[...this.current],ne=Date.now();for(let Se=0;Se=0&&(0,t.gsJ)(this.current,0,xe+1),this.executingCallbacks=!1,this.deferred.length>0){for(let Se=0;Se0){const X=Date.now(),ne=this.current[0];if(null===this.timeoutId||this.invokeTimerAt&&this.invokeTimerAt-ne>16){this.clearTimeout();const xe=Math.max(ne-X,16);this.invokeTimerAt=ne,this.timeoutId=u.runOutsideAngular(()=>setTimeout(()=>u.run(C),xe))}}}clearTimeout(){null!==this.timeoutId&&(clearTimeout(this.timeoutId),this.timeoutId=null)}ngOnDestroy(){this.clearTimeout(),this.current.length=0,this.deferred.length=0}static \u0275prov=(0,t.jDH)({token:a,providedIn:"root",factory:()=>new a})}return a})(),ng=(()=>{class a{cachedInjectors=new Map;getOrCreateInjector(u,C,R,X){if(!this.cachedInjectors.has(u)){const ne=R.length>0?H1(R,C,X):null;this.cachedInjectors.set(u,ne)}return this.cachedInjectors.get(u)}ngOnDestroy(){try{for(const u of this.cachedInjectors.values())null!==u&&u.destroy()}finally{this.cachedInjectors.clear()}}static \u0275prov=(0,t.jDH)({token:a,providedIn:"environment",factory:()=>new a})}return a})();const rg=new t.nKC("");function P3(a,s,u){return a.get(ng).getOrCreateInjector(s,a,u,"")}function Gl(a,s,u,C=!1){const R=u[t.f7T],X=R[t.eDl];if((0,t.EPY)(R))return;const ne=cl(R,s),Se=ne[7];if(!(null!==Se&&a0&&(xt=function sg(a,s,u){if(a instanceof Nc){const R=a.injector,ne=P3(a.parentInjector,s,u);return new Nc(R,ne)}const C=a.get(t.uvJ);if(C!==a){const R=P3(C,s,u);return new Nc(a,R)}return P3(a,s,u)}(R[t.YEL],Xi,_n))}const{dehydratedView:qt,dehydratedViewIx:yi}=function jm(a,s){const u=a[t.qFA]?.findIndex(R=>R.data.s===s[1])??-1;return{dehydratedView:u>-1?a[t.qFA][u]:null,dehydratedViewIx:u}}(u,s),bi=td(R,Se,null,{injector:xt,dehydratedView:qt});if(id(u,bi,at,Lc(Se,qt)),kc(bi,2),yi>-1&&u[t.qFA]?.splice(yi,1),(a===ur.Complete||a===ur.Error)&&Array.isArray(s[8])){for(const Xi of s[8])Xi();s[8]=null}}_e(21)}function og(a,s,u,C,R){const X=Date.now(),xe=po(R[t.eDl],C);if(null===s[2]||s[2]<=X){s[2]=null;const Se=Vm(xe),at=null!==s[3];if(a!==ur.Loading||null===Se||at){a>ur.Loading&&at&&(s[3](),s[3]=null,s[0]=null),Wm(a,s,u,C,R);const xt=I3(xe,a);null!==xt&&(s[2]=X+xt,Xm(xt,s,C,u,R))}else{s[0]=a;const xt=Xm(Se,s,C,u,R);s[3]=xt}}else s[0]=a}function Xm(a,s,u,C,R){return O3(a,()=>{const ne=s[0];s[2]=null,s[0]=null,null!==ne&&Gl(ne,u,C)},R[t.YEL])}function F3(a,s){return a{a.loadingState===gs.COMPLETE?Gl(ur.Complete,s,u):a.loadingState===gs.FAILED&&Gl(ur.Error,s,u)})}let jf=null;function v(a,s,u,C){return T(()=>{const R=a;null!==s&&(R.hasOwnProperty("decorators")&&void 0!==R.decorators?R.decorators.push(...s):R.decorators=s),null!==u&&(R.ctorParameters=u),null!==C&&(R.propDecorators=R.hasOwnProperty("propDecorators")&&void 0!==R.propDecorators?{...R.propDecorators,...C}:C)})}let O=(()=>{class a{log(u){console.log(u)}warn(u){console.warn(u)}static \u0275fac=function(C){return new(C||a)};static \u0275prov=(0,t.jDH)({token:a,factory:a.\u0275fac,providedIn:"platform"})}return a})();const $m=new t.nKC(""),dg=new t.nKC("");let Zm,N3=(()=>{class a{_ngZone;registry;_isZoneStable=!0;_callbacks=[];_taskTrackingZone=null;_destroyRef;constructor(u,C,R){this._ngZone=u,this.registry=C,(0,t.M6u)()&&(this._destroyRef=(0,t.WQX)(t.abz,{optional:!0})??void 0),Zm||(function i5(a){Zm=a}(R),R.addToWindow(C)),this._watchAngularEvents(),u.run(()=>{this._taskTrackingZone=typeof Zone>"u"?null:Zone.current.get("TaskTrackingZone")})}_watchAngularEvents(){const u=this._ngZone.onUnstable.subscribe({next:()=>{this._isZoneStable=!1}}),C=this._ngZone.runOutsideAngular(()=>this._ngZone.onStable.subscribe({next:()=>{Ha.assertNotInAngularZone(),queueMicrotask(()=>{this._isZoneStable=!0,this._runCallbacksIfReady()})}}));this._destroyRef?.onDestroy(()=>{u.unsubscribe(),C.unsubscribe()})}isStable(){return this._isZoneStable&&!this._ngZone.hasPendingMacrotasks}_runCallbacksIfReady(){if(this.isStable())queueMicrotask(()=>{for(;0!==this._callbacks.length;){let u=this._callbacks.pop();clearTimeout(u.timeoutId),u.doneCb()}});else{let u=this.getPendingTasks();this._callbacks=this._callbacks.filter(C=>!C.updateCb||!C.updateCb(u)||(clearTimeout(C.timeoutId),!1))}}getPendingTasks(){return this._taskTrackingZone?this._taskTrackingZone.macroTasks.map(u=>({source:u.source,creationLocation:u.creationLocation,data:u.data})):[]}addCallback(u,C,R){let X=-1;C&&C>0&&(X=setTimeout(()=>{this._callbacks=this._callbacks.filter(ne=>ne.timeoutId!==X),u()},C)),this._callbacks.push({doneCb:u,timeoutId:X,updateCb:R})}whenStable(u,C,R){if(R&&!this._taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is "zone.js/plugins/task-tracking" loaded?');this.addCallback(u,C,R),this._runCallbacksIfReady()}registerApplication(u){this.registry.registerApplication(u,this)}unregisterApplication(u){this.registry.unregisterApplication(u)}findProviders(u,C,R){return[]}static \u0275fac=function(C){return new(C||a)((0,t.KVO)(Ha),(0,t.KVO)(ug),(0,t.KVO)(dg))};static \u0275prov=(0,t.jDH)({token:a,factory:a.\u0275fac})}return a})(),ug=(()=>{class a{_applications=new Map;registerApplication(u,C){this._applications.set(u,C)}unregisterApplication(u){this._applications.delete(u)}unregisterAllApplications(){this._applications.clear()}getTestability(u){return this._applications.get(u)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(u,C=!0){return Zm?.findTestabilityInTree(this,u,C)??null}static \u0275fac=function(C){return new(C||a)};static \u0275prov=(0,t.jDH)({token:a,factory:a.\u0275fac,providedIn:"platform"})}return a})();function Jm(a){return!!a&&"function"==typeof a.then}function hg(a){return!!a&&"function"==typeof a.subscribe}const fg=new t.nKC("");function n5(a){return(0,t.EmA)([{provide:fg,multi:!0,useValue:a}])}let mg=(()=>{class a{resolve;reject;initialized=!1;done=!1;donePromise=new Promise((u,C)=>{this.resolve=u,this.reject=C});appInits=(0,t.WQX)(fg,{optional:!0})??[];injector=(0,t.WQX)(t.zZn);constructor(){}runInitializers(){if(this.initialized)return;const u=[];for(const R of this.appInits){const X=(0,t.N4e)(this.injector,R);if(Jm(X))u.push(X);else if(hg(X)){const ne=new Promise((xe,Se)=>{X.subscribe({complete:xe,error:Se})});u.push(ne)}}const C=()=>{this.done=!0,this.resolve()};Promise.all(u).then(()=>{C()}).catch(R=>{this.reject(R)}),0===u.length&&C(),this.initialized=!0}static \u0275fac=function(C){return new(C||a)};static \u0275prov=(0,t.jDH)({token:a,factory:a.\u0275fac,providedIn:"root"})}return a})();const qm=new t.nKC("");function a5(){}function pg(){(0,p.KO)(()=>{throw new t.buA(600,"")})}function ep(a,s){return Array.isArray(s)?s.reduce(ep,a):{...a,...s}}let B3=(()=>{class a{_runningTick=!1;_destroyed=!1;_destroyListeners=[];_views=[];internalErrorHandler=(0,t.WQX)(t.ZTf);afterRenderManager=(0,t.WQX)(c0);zonelessEnabled=(0,t.WQX)(t.Evm);rootEffectScheduler=(0,t.WQX)(t.VML);dirtyFlags=0;tracingSnapshot=null;allTestViews=new Set;autoDetectTestViews=new Set;includeAllTestViews=!1;afterTick=new S.B;get allViews(){return[...(this.includeAllTestViews?this.allTestViews:this.autoDetectTestViews).keys(),...this._views]}get destroyed(){return this._destroyed}componentTypes=[];components=[];internalPendingTask=(0,t.WQX)(t.rev);get isStable(){return this.internalPendingTask.hasPendingTasksObservable.pipe((0,e.T)(u=>!u))}constructor(){(0,t.WQX)(xc,{optional:!0})}whenStable(){let u;return new Promise(C=>{u=this.isStable.subscribe({next:R=>{R&&C()}})}).finally(()=>{u.unsubscribe()})}_injector=(0,t.WQX)(t.uvJ);_rendererFactory=null;get injector(){return this._injector}bootstrap(u,C){return this.bootstrapImpl(u,C)}bootstrapImpl(u,C,R=t.zZn.NULL){return this._injector.get(Ha).run(()=>{_e(10);const ne=u instanceof uf;if(!this._injector.get(mg).done)throw new t.buA(405,"");let Se;Se=ne?u:this._injector.get(k1).resolveComponentFactory(u),this.componentTypes.push(Se.componentType);const at=function r5(a){return a.isBoundToModule}(Se)?void 0:this._injector.get(Vc),qt=Se.create(R,[],C||Se.selector,at),yi=qt.location.nativeElement,bi=qt.injector.get($m,null);return bi?.registerApplication(yi),qt.onDestroy(()=>{this.detachView(qt.hostView),z3(this.components,qt),bi?.unregisterApplication(yi)}),this._loadComponent(qt),_e(11,qt),qt})}tick(){this.zonelessEnabled||(this.dirtyFlags|=1),this._tick()}_tick(){_e(12),null!==this.tracingSnapshot?this.tracingSnapshot.run(s0.CHANGE_DETECTION,this.tickImpl):this.tickImpl()}tickImpl=()=>{if(this._runningTick)throw new t.buA(101,!1);const u=(0,p.Ht)(null);try{this._runningTick=!0,this.synchronize()}finally{this._runningTick=!1,this.tracingSnapshot?.dispose(),this.tracingSnapshot=null,(0,p.Ht)(u),this.afterTick.next(),_e(13)}};synchronize(){null===this._rendererFactory&&!this._injector.destroyed&&(this._rendererFactory=this._injector.get(Tu,null,{optional:!0}));let u=0;for(;0!==this.dirtyFlags&&u++<10;)_e(14),this.synchronizeOnce(),_e(15)}synchronizeOnce(){16&this.dirtyFlags&&(this.dirtyFlags&=-17,this.rootEffectScheduler.flush());let u=!1;if(7&this.dirtyFlags){const C=!!(1&this.dirtyFlags);this.dirtyFlags&=-8,this.dirtyFlags|=8;for(let{_lView:R}of this.allViews)(C||(0,t.dMS)(R))&&(M1(R,C&&!this.zonelessEnabled?0:1),u=!0);if(this.dirtyFlags&=-5,this.syncDirtyFlagsWithViews(),23&this.dirtyFlags)return}u||(this._rendererFactory?.begin?.(),this._rendererFactory?.end?.()),8&this.dirtyFlags&&(this.dirtyFlags&=-9,this.afterRenderManager.execute()),this.syncDirtyFlagsWithViews()}syncDirtyFlagsWithViews(){this.allViews.some(({_lView:u})=>(0,t.dMS)(u))?this.dirtyFlags|=2:this.dirtyFlags&=-8}attachView(u){const C=u;this._views.push(C),C.attachToAppRef(this)}detachView(u){const C=u;z3(this._views,C),C.detachFromAppRef()}_loadComponent(u){this.attachView(u.hostView);try{this.tick()}catch(R){this.internalErrorHandler(R)}this.components.push(u),this._injector.get(qm,[]).forEach(R=>R(u))}ngOnDestroy(){if(!this._destroyed)try{this._destroyListeners.forEach(u=>u()),this._views.slice().forEach(u=>u.destroy())}finally{this._destroyed=!0,this._views=[],this._destroyListeners=[]}}onDestroy(u){return this._destroyListeners.push(u),()=>z3(this._destroyListeners,u)}destroy(){if(this._destroyed)throw new t.buA(406,!1);const u=this._injector;u.destroy&&!u.destroyed&&u.destroy()}get viewCount(){return this._views.length}static \u0275fac=function(C){return new(C||a)};static \u0275prov=(0,t.jDH)({token:a,factory:a.\u0275fac,providedIn:"root"})}return a})();function z3(a,s){const u=a.indexOf(s);u>-1&&a.splice(u,1)}function tp(){let a,s;return{promise:new Promise((C,R)=>{a=C,s=R}),resolve:a,reject:s}}function ip(a){const s=(0,t.OAn)(),u=(0,t.Mx4)();if(a2(s,u),!_g(0,s))return;const C=s[t.YEL];i2(0,cl(s,u),a(()=>W1(0,s,u),C))}function gg(a){const s=(0,t.OAn)(),u=s[t.YEL],C=(0,t.Mx4)(),X=po(s[t.eDl],C);X.loadingState===gs.NOT_STARTED&&i2(1,cl(s,C),a(()=>Wf(X,s,C),u))}function np(a,s,u){const C=s[t.YEL],R=cl(s,u),X=R[6];i2(2,R,a(()=>s2(C,X),C))}function Wf(a,s,u){U3(a,s,u)}function U3(a,s,u){const C=s[t.YEL],R=s[t.eDl];if(a.loadingState!==gs.NOT_STARTED)return a.loadingPromise??Promise.resolve();const X=cl(s,u),ne=function Z6(a,s){return(0,t.XRZ)(a,s.primaryTmplIndex+t.Yw1)}(R,a);a.loadingState=gs.IN_PROGRESS,Uf(1,X);let xe=a.dependencyResolverFn;const Se=C.get(t.u5s).add();return xe?(a.loadingPromise=Promise.allSettled(xe()).then(at=>{let xt=!1;const qt=[],yi=[];for(const bi of at){if("fulfilled"!==bi.status){xt=!0;break}{const Xi=bi.value,_n=(0,t.xUg)(Xi)||(0,t.HaV)(Xi);if(_n)qt.push(_n);else{const jn=(0,t.oyA)(Xi);jn&&yi.push(jn)}}}if(xt){if(a.loadingState=gs.FAILED,null===a.errorTmplIndex){const Xi=new t.buA(-750,!1);M0(s,Xi)}}else{a.loadingState=gs.COMPLETE;const bi=ne.tView;if(qt.length>0){bi.directiveRegistry=Hm(bi.directiveRegistry,qt);const Xi=qt.map(jn=>jn.type),_n=(0,t.jXY)(!1,...Xi);a.providers=_n}yi.length>0&&(bi.pipeRegistry=Hm(bi.pipeRegistry,yi))}}),a.loadingPromise.finally(()=>{a.loadingPromise=null,Se()})):(a.loadingPromise=Promise.resolve().then(()=>{a.loadingPromise=null,a.loadingState=gs.COMPLETE,Se()}),a.loadingPromise)}function _g(a,s){return s[t.YEL].get(rg,null,{optional:!0})?.behavior!==zm.Manual}function W1(a,s,u){const C=s[t.eDl],R=s[u.index];if(!_g(0,s))return;const X=cl(s,u),ne=po(C,u);switch(A3(X),ne.loadingState){case gs.NOT_STARTED:Gl(ur.Loading,u,R),U3(ne,s,u),ne.loadingState===gs.IN_PROGRESS&&Gf(ne,u,R);break;case gs.IN_PROGRESS:Gl(ur.Loading,u,R),Gf(ne,u,R);break;case gs.COMPLETE:Gl(ur.Complete,u,R);break;case gs.FAILED:Gl(ur.Error,u,R)}}function s2(a,s,u){return ap.apply(this,arguments)}function ap(){return(ap=(0,i.A)(function*(a,s,u){const C=a.get(Rr);if(C.hydrating.has(s))return;const{parentBlockPromise:X,hydrationQueue:ne}=function On(a,s){const u=s.get(Rr),R=s.get(za).get("__nghDeferData__",{});let X=!1,ne=a,xe=null;const Se=[];for(;!X&≠){X=u.has(ne);const at=u.hydrating.get(ne);if(null===xe&&null!=at){xe=at.promise;break}Se.unshift(ne),ne=R[ne].p}return{parentBlockPromise:xe,hydrationQueue:Se}}(s,a);if(0===ne.length)return;null!==X&&ne.shift(),function c5(a,s){for(let u of s)a.hydrating.set(u,tp())}(C,ne),null!==X&&(yield X);const xe=ne[0];C.has(xe)?yield vg(a,ne,u):C.awaitParentBlock(xe,(0,i.A)(function*(){return yield vg(a,ne,u)}))})).apply(this,arguments)}function vg(a,s,u){return rp.apply(this,arguments)}function rp(){return(rp=(0,i.A)(function*(a,s,u){const C=a.get(Rr),R=C.hydrating,X=a.get(t.rev),ne=X.add();for(let Se=0;Se-1?u.get(s[C]):null;R&&Pd(R.lContainer)}function bg(a,s){const u=s.hydrating;for(const C in a)u.get(C)?.reject();s.cleanup(a)}function d5(a){return new Promise(s=>d0(s,{injector:a}))}function u5(a){return sp.apply(this,arguments)}function sp(){return(sp=(0,i.A)(function*(a){const{tNode:s,lView:u}=a,C=cl(u,s);return new Promise(R=>{(function h5(a,s){Array.isArray(a[8])||(a[8]=[]),a[8].push(s)})(C,R),W1(0,u,s)})})).apply(this,arguments)}function ws(a,s,u){return 0===a?Cg(s,u):2!==a||!Cg(s,u)}function Cg(a,s){const u=a[t.YEL],C=po(a[t.eDl],s),R=Ho(u),X=function xg(a){return null!=a&&!(1&~a)}(C.flags),xe=null!==cl(a,s)[6];return!(X&&xe&&R)}function Xd(a,s){const u=po(a,s);return u.hydrateTriggers??=new Map}function cp(a,s){const u=(0,t.OAn)();if(un(u,(0,t.xbp)(),s)){const R=(0,t.klJ)(),X=(0,t.CpD)();if(b1(X,R,u,a,s))(0,t.Qs1)(X)&&oc(u,X.index);else{const xe=(0,t.d31)(X,u);Ed(u[t.GpT],xe,null,X.value,a,s,null)}}return cp}function dp(a,s,u,C){const R=(0,t.OAn)();return un(R,(0,t.xbp)(),s)&&((0,t.klJ)(),function x0(a,s,u,C,R,X){const ne=(0,t.d31)(a,s);Ed(s[t.GpT],ne,X,a.value,u,C,R)}((0,t.CpD)(),R,a,s,u,C)),dp}const F5=new t.nKC("",{providedIn:"root",factory:()=>!1}),N5=new t.nKC("",{providedIn:"root",factory:()=>B5}),B5=4e3,o2=typeof document<"u"&&"function"==typeof document?.documentElement?.getAnimations;function Xf(a){return a[t.YEL].get(F5,!1)}function Kf(a){const s=Wu.get(a);if(s){for(const u of s.cleanupFns)u();Wu.delete(a)}l2.delete(a)}const U5=()=>{},Wu=new WeakMap,l2=new WeakMap,c2=new WeakMap;function up(a,s){const u=c2.get(a);if(u&&u.length>0){const C=u.findIndex(R=>R===s);C>-1&&u.splice(C,1)}0===u?.length&&c2.delete(a)}function Xu(a,s){const u=c2.get(a)?.shift(),C=s[t.rQE];if(C){const X=Md(a.index,C)?.previousSibling;u&&X&&u===X&&u.dispatchEvent(new CustomEvent("animationend",{detail:{cancel:!0}}))}}function hp(a,s){c2.has(a)?c2.get(a)?.push(s):c2.set(a,[s])}function H3(a){const s=a[t.Isx]??={};return s.enter??=new Map}function d2(a){const s=a[t.Isx]??={};return s.leave??=new Map}function Tg(a){const s="function"==typeof a?a():a;let u=Array.isArray(s)?s:null;return"string"==typeof s&&(u=s.trim().split(/\s+/).filter(C=>C)),u}function Dg(a,s){const u=l2.get(s);return void 0===u||s===a.target&&(void 0!==u.animationName&&a.animationName===u.animationName||void 0!==u.propertyName&&a.propertyName===u.propertyName)}function G3(a,s,u){const C=a.get(s.index)??{animateFns:[]};C.animateFns.push(u),a.set(s.index,C)}function j3(a,s){if(a)for(const u of a)u();for(const u of s)u()}function mp(a,s){const u=d2(a).get(s.index);u&&(u.resolvers=void 0)}function W3(a,s,u,C,R){up(s,u),j3(C,R),mp(a,s)}class Y5{destroy(s){}updateValue(s,u){}swap(s,u){const C=Math.min(s,u),R=Math.max(s,u),X=this.detach(R);if(R-C>1){const ne=this.detach(C);this.attach(C,X),this.attach(R,ne)}else this.attach(C,X)}move(s,u){this.attach(u,this.detach(s))}}function pp(a,s,u,C,R){return a===u&&Object.is(s,C)?1:Object.is(R(a,s),R(u,C))?-1:0}function Qf(a,s,u,C){return!(void 0===s||!s.has(C)||(a.attach(u,s.get(C)),s.delete(C),0))}function Lg(a,s,u,C,R){if(Qf(a,s,C,u(C,R)))a.updateValue(C,R);else{const X=a.create(C,R);a.attach(C,X)}}function Ig(a,s,u,C){const R=new Set;for(let X=s;X<=u;X++)R.add(C(X,a.at(X)));return R}class gp{kvMap=new Map;_vMap=void 0;has(s){return this.kvMap.has(s)}delete(s){if(!this.has(s))return!1;const u=this.kvMap.get(s);return void 0!==this._vMap&&this._vMap.has(u)?(this.kvMap.set(s,this._vMap.get(u)),this._vMap.delete(u)):this.kvMap.delete(s),!0}get(s){return this.kvMap.get(s)}set(s,u){if(this.kvMap.has(s)){let C=this.kvMap.get(s);void 0===this._vMap&&(this._vMap=new Map);const R=this._vMap;for(;R.has(C);)C=R.get(C);R.set(C,u)}else this.kvMap.set(s,u)}forEach(s){for(let[u,C]of this.kvMap)if(s(C,u),void 0!==this._vMap){const R=this._vMap;for(;R.has(C);)C=R.get(C),s(C,u)}}}function _p(a,s,u,C,R,X,ne,xe){Cs("NgControlFlow");const Se=(0,t.OAn)(),at=(0,t.klJ)();return Vd(Se,at,a,s,u,C,R,(0,t.db4)(at.consts,X),256,ne,xe),vp}function vp(a,s,u,C,R,X,ne,xe){Cs("NgControlFlow");const Se=(0,t.OAn)(),at=(0,t.klJ)();return Vd(Se,at,a,s,u,C,R,(0,t.db4)(at.consts,X),512,ne,xe),vp}function kg(a,s){Cs("NgControlFlow");const u=(0,t.OAn)(),C=(0,t.xbp)(),R=u[C]!==qa?u[C]:-1,X=-1!==R?Q3(u,t.Yw1+R):void 0;if(un(u,C,a)){const xe=(0,p.Ht)(null);try{if(void 0!==X&&A0(X,0),-1!==a){const Se=t.Yw1+a,at=Q3(u,Se),xt=xp(u[t.eDl],Se),qt=wu(at,xt,u);id(at,td(u,xt,s,{dehydratedView:qt}),0,Lc(xt,qt))}}finally{(0,p.Ht)(xe)}}else if(void 0!==X){const xe=D0(X,0);void 0!==xe&&(xe[t.SKP]=s)}}class $5{lContainer;$implicit;$index;constructor(s,u,C){this.lContainer=s,this.$implicit=u,this.$index=C}get $count(){return this.lContainer.length-t.Y20}}function Rg(a,s){return s}class J5{hasEmptyBlock;trackByFn;liveCollection;constructor(s,u,C){this.hasEmptyBlock=s,this.trackByFn=u,this.liveCollection=C}}function yp(a,s,u,C,R,X,ne,xe,Se,at,xt,qt,yi){Cs("NgControlFlow");const bi=(0,t.OAn)(),Xi=(0,t.klJ)(),_n=void 0!==Se,jn=(0,t.OAn)(),Yn=xe?ne.bind(jn[t.b5C][t.SKP]):ne,xn=new J5(_n,Yn);jn[t.Yw1+a]=xn,Vd(bi,Xi,a+1,s,u,C,R,(0,t.db4)(Xi.consts,X),256),_n&&Vd(bi,Xi,a+2,Se,at,xt,qt,(0,t.db4)(Xi.consts,yi),512)}class e7 extends Y5{lContainer;hostLView;templateTNode;operationsCounter=void 0;needsIndexUpdate=!1;constructor(s,u,C){super(),this.lContainer=s,this.hostLView=u,this.templateTNode=C}get length(){return this.lContainer.length-t.Y20}at(s){return this.getLView(s)[t.SKP].$implicit}attach(s,u){const C=u[t.tcA];this.needsIndexUpdate||=s!==this.length,id(this.lContainer,u,s,Lc(this.templateTNode,C)),function Og(a,s){if(a.length<=t.Y20)return;const C=a[t.Y20+s],R=C?C[t.Isx]:void 0;C&&R&&R.detachedLeaveAnimationFns&&R.detachedLeaveAnimationFns.length>0&&(function sh(a,s){const u=a.get(d1);if(s.detachedLeaveAnimationFns){for(const C of s.detachedLeaveAnimationFns)u.queue.delete(C);s.detachedLeaveAnimationFns=void 0}}(C[t.YEL],R),bc.delete(C),R.detachedLeaveAnimationFns=void 0)}(this.lContainer,s)}detach(s){return this.needsIndexUpdate||=s!==this.length-1,function t7(a,s){if(a.length<=t.Y20)return;const C=a[t.Y20+s],R=C?C[t.Isx]:void 0;R&&R.leave&&R.leave.size>0&&(R.detachedLeaveAnimationFns=[])}(this.lContainer,s),function i7(a,s){return Sd(a,s)}(this.lContainer,s)}create(s,u){const C=I1(this.lContainer,this.templateTNode.tView.ssrId),R=td(this.hostLView,this.templateTNode,new $5(this.lContainer,u,s),{dehydratedView:C});return this.operationsCounter?.recordCreate(),R}destroy(s){Zc(s[t.eDl],s),this.operationsCounter?.recordDestroy()}updateValue(s,u){this.getLView(s)[t.SKP].$implicit=u}reset(){this.needsIndexUpdate=!1,this.operationsCounter?.reset()}updateIndexes(){if(this.needsIndexUpdate)for(let s=0;s{a.destroy(Se)})}(Se,a,X.trackByFn),Se.updateIndexes(),X.hasEmptyBlock){const at=(0,t.xbp)(),xt=0===Se.length;if(un(C,at,xt)){const qt=u+2,yi=Q3(C,qt);if(xt){const bi=xp(R,qt),Xi=wu(yi,bi,C);id(yi,td(C,bi,void 0,{dehydratedView:Xi}),0,Lc(bi,Xi))}else R.firstUpdatePass&&Od(yi),A0(yi,0)}}}finally{(0,p.Ht)(s)}}function Q3(a,s){return a[s]}function xp(a,s){return(0,t.XRZ)(a,s)}function Cp(a,s,u){const C=(0,t.OAn)();return un(C,(0,t.xbp)(),s)&&((0,t.klJ)(),y0((0,t.CpD)(),C,a,s,C[t.GpT],u)),Cp}function Mp(a,s,u,C,R){b1(s,a,u,R?"class":"style",C)}function Zf(a,s,u,C){const R=(0,t.OAn)(),X=R[t.eDl],ne=a+t.Yw1,xe=X.firstCreatePass?L(ne,R,2,s,y1,(0,t.ckz)(),u,C):X.data[ne];if(Ul(xe,R,a,s,J3),(0,t.yoD)(xe)){const Se=R[t.eDl];Jc(Se,R,xe),xl(Se,xe,R)}return null!=C&&qc(R,xe),Zf}function Jf(){const a=(0,t.klJ)(),u=ed((0,t.Mx4)());return a.firstCreatePass&&H(a,u),(0,t.UhH)(u)&&(0,t.krE)(),(0,t.N79)(),null!=u.classesWithoutHost&&function Ht(a){return!!(8&a.flags)}(u)&&Mp(a,u,(0,t.OAn)(),u.classesWithoutHost,!0),null!=u.stylesWithoutHost&&function ct(a){return!!(16&a.flags)}(u)&&Mp(a,u,(0,t.OAn)(),u.stylesWithoutHost,!1),Jf}function Ep(a,s,u,C){return Zf(a,s,u,C),Jf(),Ep}function $3(a,s,u,C){const R=(0,t.OAn)(),X=R[t.eDl],ne=a+t.Yw1,xe=X.firstCreatePass?Y(ne,X,2,s,u,C):X.data[ne];return Ul(xe,R,a,s,J3),null!=C&&qc(R,xe),$3}function Z3(){const s=ed((0,t.Mx4)());return(0,t.UhH)(s)&&(0,t.krE)(),(0,t.N79)(),Z3}function wp(a,s,u,C){return $3(a,s,u,C),Z3(),wp}let J3=(a,s,u,C,R)=>((0,t.m7n)(!0),e1(s[t.GpT],C,(0,t.UaU)()));function q3(a,s,u){const C=(0,t.OAn)(),R=C[t.eDl],X=a+t.Yw1,ne=R.firstCreatePass?L(X,C,8,"ng-container",y1,(0,t.ckz)(),s,u):R.data[X];if(Ul(ne,C,a,"ng-container",Ap),(0,t.yoD)(ne)){const xe=C[t.eDl];Jc(xe,C,ne),xl(xe,ne,C)}return null!=u&&qc(C,ne),q3}function u2(){const a=(0,t.klJ)(),u=ed((0,t.Mx4)());return a.firstCreatePass&&H(a,u),u2}function Sp(a,s,u){return q3(a,s,u),u2(),Sp}function Tp(a,s,u){const C=(0,t.OAn)(),R=C[t.eDl],X=a+t.Yw1,ne=R.firstCreatePass?Y(X,R,8,"ng-container",s,u):R.data[X];return Ul(ne,C,a,"ng-container",Ap),null!=u&&qc(C,ne),Tp}function Pg(){return ed((0,t.Mx4)()),u2}let Ap=(a,s,u,C,R)=>((0,t.m7n)(!0),e0(s[t.GpT],""));function Fg(){return(0,t.OAn)()}function em(a,s,u){const C=(0,t.OAn)();return un(C,(0,t.xbp)(),s)&&((0,t.klJ)(),b0((0,t.CpD)(),C,a,s,C[t.GpT],u)),em}const Ku=void 0;var o7=["en",[["a","p"],["AM","PM"]],[["AM","PM"]],[["S","M","T","W","T","F","S"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Su","Mo","Tu","We","Th","Fr","Sa"]],Ku,[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],["January","February","March","April","May","June","July","August","September","October","November","December"]],Ku,[["B","A"],["BC","AD"],["Before Christ","Anno Domini"]],0,[6,0],["M/d/yy","MMM d, y","MMMM d, y","EEEE, MMMM d, y"],["h:mm a","h:mm:ss a","h:mm:ss a z","h:mm:ss a zzzz"],["{1}, {0}",Ku,"{1} 'at' {0}",Ku],[".",",",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0%","\xa4#,##0.00","#E0"],"USD","$","US Dollar",{},"ltr",function s7(a){const s=Math.floor(Math.abs(a)),u=a.toString().replace(/^[^.]*\.?/,"").length;return 1===s&&0===u?1:5}];let Yu={};function Lp(a){const s=function c7(a){return a.toLowerCase().replace(/_/g,"-")}(a);let u=Bg(s);if(u)return u;const C=s.split("-")[0];if(u=Bg(C),u)return u;if("en"===C)return o7;throw new t.buA(701,!1)}function Ip(a){return Lp(a)[Qu.PluralCase]}function Bg(a){return a in Yu||(Yu[a]=t.laP.ng&&t.laP.ng.common&&t.laP.ng.common.locales&&t.laP.ng.common.locales[a]),Yu[a]}var Qu=function(a){return a[a.LocaleId=0]="LocaleId",a[a.DayPeriodsFormat=1]="DayPeriodsFormat",a[a.DayPeriodsStandalone=2]="DayPeriodsStandalone",a[a.DaysFormat=3]="DaysFormat",a[a.DaysStandalone=4]="DaysStandalone",a[a.MonthsFormat=5]="MonthsFormat",a[a.MonthsStandalone=6]="MonthsStandalone",a[a.Eras=7]="Eras",a[a.FirstDayOfWeek=8]="FirstDayOfWeek",a[a.WeekendRange=9]="WeekendRange",a[a.DateFormat=10]="DateFormat",a[a.TimeFormat=11]="TimeFormat",a[a.DateTimeFormat=12]="DateTimeFormat",a[a.NumberSymbols=13]="NumberSymbols",a[a.NumberFormats=14]="NumberFormats",a[a.CurrencyCode=15]="CurrencyCode",a[a.CurrencySymbol=16]="CurrencySymbol",a[a.CurrencyName=17]="CurrencyName",a[a.Currencies=18]="Currencies",a[a.Directionality=19]="Directionality",a[a.PluralCase=20]="PluralCase",a[a.ExtraData=21]="ExtraData",a}(Qu||{});const d7=["zero","one","two","few","many"],kp="en-US",tm={marker:"element"},X1={marker:"ICU"};var Tl=function(a){return a[a.SHIFT=2]="SHIFT",a[a.APPEND_EAGERLY=1]="APPEND_EAGERLY",a[a.COMMENT=2]="COMMENT",a}(Tl||{});let Vg=kp;function u7(a){"string"==typeof a&&(Vg=a.toLowerCase().replace(/_/g,"-"))}let qf=0,e4=0;let t4=(a,s,u,C)=>((0,t.m7n)(!0),function Gg(a,s,u){const C=a[t.GpT];switch(u){case Node.COMMENT_NODE:return e0(C,s);case Node.TEXT_NODE:return q1(C,s);case Node.ELEMENT_NODE:return e1(C,s,null)}}(a,u,C));function Xg(a,s,u,C){const R=u[t.GpT];let ne,X=null;for(let xe=0;xe>>1,u),null,null,bi,Xi,null)}else switch(Se){case X1:const at=s[++xe],xt=s[++xe];null===u[xt]&&gi(u[xt]=t4(u,0,at,Node.COMMENT_NODE),u);break;case tm:const qt=s[++xe],yi=s[++xe];null===u[yi]&&gi(u[yi]=t4(u,0,qt,Node.ELEMENT_NODE),u)}}}function Rp(a,s,u,C,R){for(let X=0;X>>2;switch(3&xt){case 1:const yi=u[++at],bi=u[++at],Xi=a.data[qt];"string"==typeof Xi?Ed(s[t.GpT],s[qt],null,Xi,yi,Se,bi):y0(Xi,s,yi,Se,s[t.GpT],bi);break;case 0:const _n=s[qt];null!==_n&&E2(s[t.GpT],_n,Se);break;case 2:m7(a,P0(a,qt),s,Se);break;case 3:Kg(a,P0(a,qt),C,s)}}}}else{const Se=u[X+1];if(Se>0&&!(3&~Se)){const xt=P0(a,Se>>>2);s[xt.currentCaseLViewIndex]<0&&Kg(a,xt,C,s)}}X+=xe}}function Kg(a,s,u,C){let R=C[s.currentCaseLViewIndex];if(null!==R){let X=qf;R<0&&(R=C[s.currentCaseLViewIndex]=~R,X=-1),Rp(a,C,s.update[R],u,X)}}function m7(a,s,u,C){const R=function p7(a,s){let u=a.cases.indexOf(s);if(-1===u)switch(a.type){case 1:{const C=function zg(a,s){const u=Ip(s)(parseInt(a,10)),C=d7[u];return void 0!==C?C:"other"}(s,function h7(){return Vg}());u=a.cases.indexOf(C),-1===u&&"other"!==C&&(u=a.cases.indexOf("other"));break}case 0:u=a.cases.indexOf("other")}return-1===u?null:u}(s,C);if(F0(s,u)!==R&&(Yg(a,s,u),u[s.currentCaseLViewIndex]=null===R?null:~R,null!==R)){const ne=u[s.anchorIdx];ne&&Xg(a,s.create[R],u,ne)}}function Yg(a,s,u){let C=F0(s,u);if(null!==C){const R=s.remove[C];for(let X=0;X0){const xe=(0,t.vaC)(ne,u);null!==xe&&nr(u[t.GpT],xe)}else Yg(a,P0(a,~ne),u)}}}const im=/\ufffd(\d+):?\d*\ufffd/gi,_7=/({\s*\ufffd\d+:?\d*\ufffd\s*,\s*\S{6}\s*,[\s\S]*})/gi,v7=/\ufffd(\d+)\ufffd/,Op=/^\s*(\ufffd\d+:?\d*\ufffd)\s*,\s*(select|plural)\s*,/,$g=/\ufffd\/?\*(\d+:\d+)\ufffd/gi,y7=/\ufffd(\/?[#*]\d+):?\d*\ufffd/gi,Zg=/\uE500/g;function nm(a,s,u,C,R,X,ne){const xe=Kc(a,C,1,null);let Se=xe<u.length&&u.push(Se)}return{type:C,mainBinding:R,cases:s,values:u}}function Np(a){if(!a)return[];let s=0;const u=[],C=[],R=/[{}]/g;let X;for(R.lastIndex=0;X=R.exec(a);){const xe=X.index;if("}"==X[0]){if(u.pop(),0==u.length){const Se=a.substring(s,xe);Op.test(Se)?C.push(S7(Se)):C.push(Se),s=xe+1}}else{if(0==u.length){const Se=a.substring(s,xe);C.push(Se),s=xe+1}u.push("{")}}const ne=a.substring(s);return C.push(ne),C}function T7(a,s,u,C,R,X,ne,xe,Se){const at=[],xt=[],qt=[];u.cases.push(ne),u.create.push(at),u.remove.push(xt),u.update.push(qt);const bi=Ol(Ui()).getInertBodyElement(xe),Xi=Pi(bi)||bi;return Xi?qg(a,s,u,C,R,at,xt,qt,Xi,X,Se,0):0}function qg(a,s,u,C,R,X,ne,xe,Se,at,xt,qt){let yi=0,bi=Se.firstChild;for(;bi;){const Xi=Kc(s,C,1,null);switch(bi.nodeType){case Node.ELEMENT_NODE:const _n=bi,jn=_n.tagName.toLowerCase();if(Va.hasOwnProperty(jn)){zp(X,tm,jn,at,Xi),s.data[Xi]=jn;const Ro=_n.attributes;for(let Qd=0;Qd>>Tl.SHIFT;let qt=a[xt],yi=!1;null===qt&&(qt=a[xt]=t4(a,0,s[X],(ne&Tl.COMMENT)===Tl.COMMENT?Node.COMMENT_NODE:Node.TEXT_NODE),yi=(0,t.SX7)()),at&&null!==u&&yi&&zl(R,u,qt,C,!1)}})(R,Se.create,xt,xe&&8&xe.type?R[xe.index]:null),(0,t.xyx)(!0)}function Vp(){(0,t.xyx)(!1)}function Hp(a,s,u){const C=(0,t.OAn)(),R=(0,t.klJ)(),X=(0,t.Mx4)();return jp(R,C,C[t.GpT],X,a,s,u),Hp}function Gp(a,s,u){const C=(0,t.OAn)(),R=(0,t.klJ)(),X=(0,t.Mx4)();return(3&X.type||u)&&er(X,R,C,u,C[t.GpT],a,s,oa(X,C,s)),Gp}function jp(a,s,u,C,R,X,ne){let xe=!0,Se=null;if((3&C.type||ne)&&(Se??=oa(C,s,X),er(C,a,s,ne,u,R,X,Se)&&(xe=!1)),xe){const at=C.outputs?.[R],xt=C.hostDirectiveOutputs?.[R];if(xt&&xt.length)for(let qt=0;qt>17&32767}function Xp(a){return 2|a}function f2(a){return(131068&a)>>2}function Kp(a,s){return-131069&a|s<<2}function Yp(a){return 1|a}function y8(a,s,u,C){const R=a[u+1],X=null===s;let ne=C?h2(R):f2(R),xe=!1;for(;0!==ne&&(!1===xe||X);){const at=a[ne+1];Qp(a[ne],s)&&(xe=!0,a[ne+1]=C?Yp(at):Xp(at)),ne=C?h2(at):f2(at)}xe&&(a[u+1]=C?Xp(R):Yp(R))}function Qp(a,s){return null===a||null==s||(Array.isArray(a)?a[1]:a)===s||!(!Array.isArray(a)||"string"!=typeof s)&&(0,t.FRF)(a,s)>=0}const io={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function b8(a){return a.substring(io.key,io.keyEnd)}function x8(a){return a.substring(io.value,io.valueEnd)}function C8(a,s){const u=io.textEnd;return u===s?-1:(s=io.keyEnd=function X7(a,s,u){for(;s32;)s++;return s}(a,io.key=s,u),m2(a,s,u))}function M8(a,s){const u=io.textEnd;let C=io.key=m2(a,s,u);return u===C?-1:(C=io.keyEnd=function K7(a,s,u){let C;for(;s=65&&(-33&C)<=90||C>=48&&C<=57);)s++;return s}(a,C,u),C=$p(a,C,u),C=io.value=m2(a,C,u),C=io.valueEnd=function Y7(a,s,u){let C=-1,R=-1,X=-1,ne=s,xe=ne;for(;ne32&&(xe=ne),X=R,R=C,C=-33&Se}return xe}(a,C,u),$p(a,C,u))}function E8(a){io.key=0,io.keyEnd=0,io.value=0,io.valueEnd=0,io.textEnd=a.length}function m2(a,s,u){for(;s=0;u=M8(s,u))A8(a,b8(s),x8(s))}function e6(a){w8(tv,Z7,a,!0)}function Z7(a,s){for(let u=function j7(a){return E8(a),C8(a,m2(a,0,io.textEnd))}(s);u>=0;u=C8(s,u))(0,t.ezK)(a,b8(s),!0)}function t6(a,s,u,C){const R=(0,t.OAn)(),X=(0,t.klJ)(),ne=(0,t.b$O)(2);X.firstUpdatePass&&S8(X,a,ne,C),s!==qa&&un(R,ne,s)&&n6(X,X.data[(0,t._px)()],R,R[t.GpT],a,R[ne+1]=function a6(a,s){return null==a||""===a||("string"==typeof s?a+=s:"object"==typeof a&&(a=(0,t.AsM)(zs(a)))),a}(s,u),C,ne)}function w8(a,s,u,C){const R=(0,t.klJ)(),X=(0,t.b$O)(2);R.firstUpdatePass&&S8(R,null,X,C);const ne=(0,t.OAn)();if(u!==qa&&un(ne,X,u)){const xe=R.data[(0,t._px)()];if(I8(xe,C)&&!rm(R,X)){let Se=C?xe.classesWithoutHost:xe.stylesWithoutHost;null!==Se&&(u=(0,t.n$e)(Se,u||"")),Mp(R,xe,ne,u,C)}else!function iv(a,s,u,C,R,X,ne,xe){R===qa&&(R=t.Mlv);let Se=0,at=0,xt=0=a.expandoStartIndex}function S8(a,s,u,C){const R=a.data;if(null===R[u+1]){const X=R[(0,t._px)()],ne=rm(a,u);I8(X,C)&&null===s&&!ne&&(s=!1),s=function J7(a,s,u,C){const R=(0,t.MT)(a);let X=C?s.residualClasses:s.residualStyles;if(null===R)0===(C?s.classBindings:s.styleBindings)&&(u=r4(u=i6(null,a,s,u,C),s.attrs,C),X=null);else{const ne=s.directiveStylingLast;if(-1===ne||a[ne]!==R)if(u=i6(R,a,s,u,C),null===X){let Se=function q7(a,s,u){const C=u?s.classBindings:s.styleBindings;if(0!==f2(C))return a[h2(C)]}(a,s,C);void 0!==Se&&Array.isArray(Se)&&(Se=i6(null,a,s,Se[1],C),Se=r4(Se,s.attrs,C),function ev(a,s,u,C){a[h2(u?s.classBindings:s.styleBindings)]=C}(a,s,C,Se))}else X=function T8(a,s,u){let C;const R=s.directiveEnd;for(let X=1+s.directiveStylingLast;X0)&&(at=!0)):xt=u,R)if(0!==Se){const yi=h2(a[xe+1]);a[C+1]=a4(yi,xe),0!==yi&&(a[yi+1]=Kp(a[yi+1],C)),a[xe+1]=function H7(a,s){return 131071&a|s<<17}(a[xe+1],C)}else a[C+1]=a4(xe,0),0!==xe&&(a[xe+1]=Kp(a[xe+1],C)),xe=C;else a[C+1]=a4(Se,0),0===xe?xe=C:a[Se+1]=Kp(a[Se+1],C),Se=C;at&&(a[C+1]=Xp(a[C+1])),y8(a,xt,C,!0),y8(a,xt,C,!1),function v8(a,s,u,C,R){const X=R?a.residualClasses:a.residualStyles;null!=X&&"string"==typeof s&&(0,t.FRF)(X,s)>=0&&(u[C+1]=Yp(u[C+1]))}(s,xt,a,C,X),ne=a4(xe,Se),X?s.classBindings=ne:s.styleBindings=ne}(R,X,s,u,ne,C)}}function i6(a,s,u,C,R){let X=null;const ne=u.directiveEnd;let xe=u.directiveStylingLast;for(-1===xe?xe=u.directiveStart:xe++;xe0;){const Se=a[R],at=Array.isArray(Se),xt=at?Se[1]:Se,qt=null===xt;let yi=u[R+1];yi===qa&&(yi=qt?t.Mlv:void 0);let bi=qt?(0,t.K7h)(yi,C):xt===C?yi:void 0;if(at&&!sm(bi)&&(bi=(0,t.K7h)(Se,C)),sm(bi)&&(xe=bi,ne))return xe;const Xi=a[R+1];R=ne?h2(Xi):f2(Xi)}if(null!==s){let Se=X?s.residualClasses:s.residualStyles;null!=Se&&(xe=(0,t.K7h)(Se,C))}return xe}function sm(a){return void 0!==a}function I8(a,s){return!!(a.flags&(s?8:16))}function k8(a,s=""){const u=(0,t.OAn)(),C=(0,t.klJ)(),R=a+t.Yw1,X=C.firstCreatePass?Vl(C,R,1,s,null):C.data[R],ne=r6(C,u,X,s,a);u[R]=ne,(0,t.SX7)()&&ac(C,u,ne,X),(0,t.iMd)(X,!1)}let r6=(a,s,u,C,R)=>((0,t.m7n)(!0),q1(s[t.GpT],C));function R8(a,s){let u=!1,C=(0,t.c$7)();for(let X=1;X>20;if((0,t.Y3W)(a)||!a.multi){const bi=new Ct(at,R,lc,null),Xi=b6(Se,s,R?xt:xt+yi,qt);-1===Xi?(ti(Kt(xe,ne),X,Se),y6(X,a,s.length),s.push(Se),xe.directiveStart++,xe.directiveEnd++,R&&(xe.providerIndexes+=1048576),u.push(bi),ne.push(bi)):(u[Xi]=bi,ne[Xi]=bi)}else{const bi=b6(Se,s,xt+yi,qt),Xi=b6(Se,s,xt,xt+yi),jn=Xi>=0&&u[Xi];if(R&&!jn||!R&&!(bi>=0&&u[bi])){ti(Kt(xe,ne),X,Se);const Yn=function $8(a,s,u,C,R){const ne=new Ct(a,u,lc,null);return ne.multi=[],ne.index=s,ne.componentProviders=0,Q8(ne,R,C&&!u),ne}(R?fv:hv,u.length,R,C,at);!R&&jn&&(u[Xi].providerFactory=Yn),y6(X,a,s.length,0),s.push(Se),xe.directiveStart++,xe.directiveEnd++,R&&(xe.providerIndexes+=1048576),u.push(Yn),ne.push(Yn)}else y6(X,a,bi>-1?bi:Xi,Q8(u[R?Xi:bi],at,!R&&C));!R&&C&&jn&&u[Xi].componentProviders++}}}function y6(a,s,u,C){const R=(0,t.Y3W)(s),X=(0,t.MME)(s);if(R||X){const Se=(X?(0,t.nl4)(s.useClass):s).prototype.ngOnDestroy;if(Se){const at=a.destroyHooks||(a.destroyHooks=[]);if(!R&&s.multi){const xt=at.indexOf(u);-1===xt?at.push(u,[C,Se]):at[xt+1].push(C,Se)}else at.push(u,Se)}}}function Q8(a,s,u){return u&&a.componentProviders++,a.multi.push(s)-1}function b6(a,s,u,C){for(let R=u;R{u.providersResolver=(C,R)=>function _6(a,s,u){const C=(0,t.klJ)();if(C.firstCreatePass){const R=(0,t.JlV)(a);v6(u,C.data,C.blueprint,R,!0),v6(s,C.data,C.blueprint,R,!1)}}(C,R?R(a):a,s)}}function cm(a){if("function"==typeof a)return a;const s=(0,t.Bqz)(a);return s.some(t.Jzi)?()=>s.map(t.nl4).map(q8):s.map(q8)}function q8(a){return Du(a)?a.ngModule:a}function x6(a,s,u){const C=(0,t.gxQ)()+a,R=(0,t.OAn)();return R[C]===qa?zi(R,C,u?s.call(u):s()):Vi(R,C)}function e_(a,s,u,C){return r_((0,t.OAn)(),(0,t.gxQ)(),a,s,u,C)}function t_(a,s,u,C,R){return C6((0,t.OAn)(),(0,t.gxQ)(),a,s,u,C,R)}function i_(a,s,u,C,R,X){return s_((0,t.OAn)(),(0,t.gxQ)(),a,s,u,C,R,X)}function l4(a,s){const u=a[s];return u===qa?void 0:u}function r_(a,s,u,C,R,X){const ne=s+u;return un(a,ne,R)?zi(a,ne+1,X?C.call(X,R):C(R)):l4(a,ne+1)}function C6(a,s,u,C,R,X,ne){const xe=s+u;return Bn(a,xe,R,X)?zi(a,xe+2,ne?C.call(ne,R,X):C(R,X)):l4(a,xe+2)}function s_(a,s,u,C,R,X,ne,xe){const Se=s+u;return pn(a,Se,R,X,ne)?zi(a,Se+3,xe?C.call(xe,R,X,ne):C(R,X,ne)):l4(a,Se+3)}function o_(a,s,u,C,R,X,ne,xe,Se){const at=s+u;return gn(a,at,R,X,ne,xe)?zi(a,at+4,Se?C.call(Se,R,X,ne,xe):C(R,X,ne,xe)):l4(a,at+4)}function c4(a,s,u,C,R,X){let ne=s+u,xe=!1;for(let Se=0;Se=0;u--){const C=s[u];if(a===C.name)return C}}(s,u.pipeRegistry),u.data[R]=C,C.onDestroy&&(u.destroyHooks??=[]).push(R,C.onDestroy)):C=u.data[R];const X=C.factory||(C.factory=(0,t.wGu)(C.type,!0)),xe=(0,t.a2B)(lc);try{const Se=le(!1),at=X();return le(Se),(0,t.M_e)(u,(0,t.OAn)(),R,at),at}finally{(0,t.a2B)(xe)}}function c_(a,s,u){const C=a+t.Yw1,R=(0,t.OAn)(),X=(0,t.Hh6)(R,C);return d4(R,C)?r_(R,(0,t.gxQ)(),s,X.transform,u,X):X.transform(u)}function d_(a,s,u,C){const R=a+t.Yw1,X=(0,t.OAn)(),ne=(0,t.Hh6)(X,R);return d4(X,R)?C6(X,(0,t.gxQ)(),s,ne.transform,u,C,ne):ne.transform(u,C)}function u_(a,s,u,C,R){const X=a+t.Yw1,ne=(0,t.OAn)(),xe=(0,t.Hh6)(ne,X);return d4(ne,X)?s_(ne,(0,t.gxQ)(),s,xe.transform,u,C,R,xe):xe.transform(u,C,R)}function d4(a,s){return a[t.eDl].data[s].pure}function f_(a,s){return Ad(a,s)}function u4(a,s,u,C,R){const X=R[t.eDl];if(X!==C.tView)for(let ne=t.Yw1;ne{if(C.encapsulation===Bs.ShadowDom){const Xi=ne.cloneNode(!1);ne.replaceWith(Xi),ne=Xi}const qt=t0(u),yi=n1(xe,qt,X,n0(u),ne,Se,null,null,null,null,null);(function g_(a,s,u,C){for(let R=t.Yw1;Rp_(a,s,xt))}(a,s,u,C,R)}function p_(a,s,u){try{u()}catch(C){if(null!==s&&C.message){const X=C.message+(C.stack?"\n"+C.stack:"");a?.hot?.send?.("angular:invalidate",{id:s,message:X,error:!0})}throw C}}const Yd={\u0275\u0275animateEnter:function X3(a){if(Cs("NgAnimateEnter"),!o2)return X3;const s=(0,t.OAn)();if(Xf(s))return X3;const u=(0,t.Mx4)();return Xu(u,s),G3(H3(s),u,()=>function H5(a,s,u){const C=(0,t.d31)(s,a),R=a[t.GpT],X=a[t.YEL].get(Ha),ne=Tg(u),xe=[],Se=xt=>{if(xt.target!==C)return;const qt=xt instanceof AnimationEvent?"animationend":"transitionend";X.runOutsideAngular(()=>{R.listen(C,qt,at)})},at=xt=>{xt.target===C&&function Ag(a,s,u){const C=Wu.get(s);if(a.target===s&&C&&Dg(a,s)){a.stopImmediatePropagation();for(const R of C.classList)u.removeClass(s,R);Kf(s)}}(xt,C,R)};if(ne&&ne.length>0){X.runOutsideAngular(()=>{xe.push(R.listen(C,"animationstart",Se)),xe.push(R.listen(C,"transitionstart",Se))}),function z5(a,s,u){const C=Wu.get(a);if(C){for(const R of s)C.classList.push(R);for(const R of u)C.cleanupFns.push(R)}else Wu.set(a,{classList:s,cleanupFns:u})}(C,ne,xe);for(const xt of ne)R.addClass(C,xt);X.runOutsideAngular(()=>{requestAnimationFrame(()=>{if(r0(C,l2,o2),!l2.has(C)){for(const xt of ne)R.removeClass(C,xt);Kf(C)}})})}}(s,u,a)),u1(s[t.YEL]),h1(s[t.YEL],H3(s)),X3},\u0275\u0275animateEnterListener:function K3(a){if(Cs("NgAnimateEnter"),!o2)return K3;const s=(0,t.OAn)();if(Xf(s))return K3;const u=(0,t.Mx4)();return Xu(u,s),G3(H3(s),u,()=>function G5(a,s,u){const C=(0,t.d31)(s,a);u.call(a[t.SKP],{target:C,animationComplete:U5})}(s,u,a)),u1(s[t.YEL]),h1(s[t.YEL],H3(s)),K3},\u0275\u0275animateLeave:function Yf(a){if(Cs("NgAnimateLeave"),!o2)return Yf;const s=(0,t.OAn)();if(Xf(s))return Yf;const C=(0,t.Mx4)();return Xu(C,s),G3(d2(s),C,()=>function j5(a,s,u){const{promise:C,resolve:R}=tp(),X=(0,t.d31)(s,a),ne=a[t.GpT],xe=a[t.YEL].get(Ha);bc.add(a),(d2(a).get(s.index).resolvers??=[]).push(R);const Se=Tg(u);return Se&&Se.length>0?function W5(a,s,u,C,R,X){!function V5(a,s){if(!o2)return;const u=Wu.get(a);if(u&&u.classList.length>0&&function fp(a,s){for(const u of s)if(a.classList.contains(u))return!0;return!1}(a,u.classList))for(const C of u.classList)s.removeClass(a,C);Kf(a)}(a,R);const ne=[],xe=d2(u).get(s.index)?.resolvers,Se=at=>{if(at.target===a&&(at instanceof CustomEvent||Dg(at,a))){if(at.stopImmediatePropagation(),l2.delete(a),up(s,a),Array.isArray(s.projection))for(const xt of C)R.removeClass(a,xt);j3(xe,ne),mp(u,s)}};X.runOutsideAngular(()=>{ne.push(R.listen(a,"animationend",Se)),ne.push(R.listen(a,"transitionend",Se))}),hp(s,a);for(const at of C)R.addClass(a,at);X.runOutsideAngular(()=>{requestAnimationFrame(()=>{r0(a,l2,o2),l2.has(a)||(up(s,a),j3(xe,ne),mp(u,s))})})}(X,s,a,Se,ne,xe):R(),{promise:C,resolve:R}}(s,C,a)),u1(s[t.YEL]),Yf},\u0275\u0275animateLeaveListener:function Y3(a){if(Cs("NgAnimateLeave"),!o2)return Y3;const s=(0,t.OAn)(),u=(0,t.Mx4)();return Xu(u,s),bc.add(s),G3(d2(s),u,()=>function X5(a,s,u){const{promise:C,resolve:R}=tp(),X=(0,t.d31)(s,a),ne=[],xe=a[t.GpT],Se=Xf(a),at=a[t.YEL].get(Ha),xt=a[t.YEL].get(N5);(d2(a).get(s.index).resolvers??=[]).push(R);const qt=d2(a).get(s.index)?.resolvers;if(Se)W3(a,s,X,qt,ne);else{const yi=setTimeout(()=>W3(a,s,X,qt,ne),xt),bi={target:X,animationComplete:()=>{W3(a,s,X,qt,ne),clearTimeout(yi)}};hp(s,X),at.runOutsideAngular(()=>{ne.push(xe.listen(X,"animationend",()=>{W3(a,s,X,qt,ne),clearTimeout(yi)},{once:!0}))}),u.call(a[t.SKP],bi)}return{promise:C,resolve:R}}(s,u,a)),u1(s[t.YEL]),Y3},\u0275\u0275attribute:dp,\u0275\u0275defineComponent:g3,\u0275\u0275defineDirective:Pf,\u0275\u0275defineInjectable:t.jDH,\u0275\u0275defineInjector:t.G2t,\u0275\u0275defineNgModule:Of,\u0275\u0275definePipe:$0,\u0275\u0275directiveInject:lc,\u0275\u0275getInheritedFactory:zn,\u0275\u0275inject:t.KVO,\u0275\u0275injectAttribute:Ve,\u0275\u0275invalidFactory:pf,\u0275\u0275invalidFactoryDep:t.dmw,\u0275\u0275templateRefExtractor:f_,\u0275\u0275resetView:t.Njj,\u0275\u0275HostDirectivesFeature:Rm,\u0275\u0275NgOnChangesFeature:k,\u0275\u0275ProvidersFeature:Z8,\u0275\u0275CopyDefinitionFeature:function j6(a){let u,s=Lm(a.type);u=(0,t.JlV)(a)?s.\u0275cmp:s.\u0275dir;const C=a;for(const R of G6)C[R]=u[R];if((0,t.JlV)(u))for(const R of km)C[R]=u[R]},\u0275\u0275InheritDefinitionFeature:v3,\u0275\u0275ExternalStylesFeature:function J8(a){return s=>{a.length<1||(s.getExternalStyles=u=>a.map(R=>R+"?ngcomp"+(u?"="+encodeURIComponent(u):"")+"&e="+s.encapsulation))}},\u0275\u0275nextContext:o8,\u0275\u0275namespaceHTML:t.joV,\u0275\u0275namespaceMathML:t.By9,\u0275\u0275namespaceSVG:t.qSk,\u0275\u0275enableBindings:t.cSN,\u0275\u0275disableBindings:t.fuf,\u0275\u0275elementStart:Zf,\u0275\u0275elementEnd:Jf,\u0275\u0275element:Ep,\u0275\u0275elementContainerStart:q3,\u0275\u0275elementContainerEnd:u2,\u0275\u0275domElement:wp,\u0275\u0275domElementStart:$3,\u0275\u0275domElementEnd:Z3,\u0275\u0275domElementContainer:function Dp(a,s,u){return Tp(a,s,u),Pg(),Dp},\u0275\u0275domElementContainerStart:Tp,\u0275\u0275domElementContainerEnd:Pg,\u0275\u0275domTemplate:T3,\u0275\u0275domListener:Gp,\u0275\u0275elementContainer:Sp,\u0275\u0275pureFunction0:x6,\u0275\u0275pureFunction1:e_,\u0275\u0275pureFunction2:t_,\u0275\u0275pureFunction3:i_,\u0275\u0275pureFunction4:function gv(a,s,u,C,R,X,ne){return o_((0,t.OAn)(),(0,t.gxQ)(),a,s,u,C,R,X,ne)},\u0275\u0275pureFunction5:function n_(a,s,u,C,R,X,ne,xe){const Se=(0,t.gxQ)()+a,at=(0,t.OAn)(),xt=gn(at,Se,u,C,R,X);return un(at,Se+4,ne)||xt?zi(at,Se+5,xe?s.call(xe,u,C,R,X,ne):s(u,C,R,X,ne)):Vi(at,Se+5)},\u0275\u0275pureFunction6:function _v(a,s,u,C,R,X,ne,xe,Se){const at=(0,t.gxQ)()+a,xt=(0,t.OAn)(),qt=gn(xt,at,u,C,R,X);return Bn(xt,at+4,ne,xe)||qt?zi(xt,at+6,Se?s.call(Se,u,C,R,X,ne,xe):s(u,C,R,X,ne,xe)):Vi(xt,at+6)},\u0275\u0275pureFunction7:function a_(a,s,u,C,R,X,ne,xe,Se,at){const xt=(0,t.gxQ)()+a,qt=(0,t.OAn)();let yi=gn(qt,xt,u,C,R,X);return pn(qt,xt+4,ne,xe,Se)||yi?zi(qt,xt+7,at?s.call(at,u,C,R,X,ne,xe,Se):s(u,C,R,X,ne,xe,Se)):Vi(qt,xt+7)},\u0275\u0275pureFunction8:function vv(a,s,u,C,R,X,ne,xe,Se,at,xt){const qt=(0,t.gxQ)()+a,yi=(0,t.OAn)(),bi=gn(yi,qt,u,C,R,X);return gn(yi,qt+4,ne,xe,Se,at)||bi?zi(yi,qt+8,xt?s.call(xt,u,C,R,X,ne,xe,Se,at):s(u,C,R,X,ne,xe,Se,at)):Vi(yi,qt+8)},\u0275\u0275pureFunctionV:function yv(a,s,u,C){return c4((0,t.OAn)(),(0,t.gxQ)(),a,s,u,C)},\u0275\u0275getCurrentView:Fg,\u0275\u0275restoreView:t.eBV,\u0275\u0275listener:Hp,\u0275\u0275projection:d8,\u0275\u0275syntheticHostProperty:function Ng(a,s,u){const C=(0,t.OAn)();if(un(C,(0,t.xbp)(),s)){const X=(0,t.klJ)(),ne=(0,t.CpD)();b0(ne,C,a,s,q2((0,t.MT)(X.data),ne,C),u)}return Ng},\u0275\u0275syntheticHostListener:function s8(a,s){const u=(0,t.Mx4)(),C=(0,t.OAn)(),R=(0,t.klJ)();return jp(R,C,q2((0,t.MT)(R.data),u,C),u,a,s),s8},\u0275\u0275pipeBind1:c_,\u0275\u0275pipeBind2:d_,\u0275\u0275pipeBind3:u_,\u0275\u0275pipeBind4:function h_(a,s,u,C,R,X){const ne=a+t.Yw1,xe=(0,t.OAn)(),Se=(0,t.Hh6)(xe,ne);return d4(xe,ne)?o_(xe,(0,t.gxQ)(),s,Se.transform,u,C,R,X,Se):Se.transform(u,C,R,X)},\u0275\u0275pipeBindV:function Cv(a,s,u){const C=a+t.Yw1,R=(0,t.OAn)(),X=(0,t.Hh6)(R,C);return d4(R,C)?c4(R,(0,t.gxQ)(),s,X.transform,u,X):X.transform.apply(X,u)},\u0275\u0275projectionDef:c8,\u0275\u0275domProperty:em,\u0275\u0275ariaProperty:cp,\u0275\u0275property:Cp,\u0275\u0275pipe:l_,\u0275\u0275queryRefresh:h8,\u0275\u0275queryAdvance:p8,\u0275\u0275viewQuery:u8,\u0275\u0275viewQuerySignal:Wp,\u0275\u0275loadQuery:f8,\u0275\u0275contentQuery:am,\u0275\u0275contentQuerySignal:m8,\u0275\u0275reference:g8,\u0275\u0275classMap:e6,\u0275\u0275styleMap:function Q7(a){w8(A8,$7,a,!1)},\u0275\u0275styleProp:Jp,\u0275\u0275classProp:qp,\u0275\u0275advance:S2,\u0275\u0275template:S3,\u0275\u0275conditional:kg,\u0275\u0275conditionalCreate:_p,\u0275\u0275conditionalBranchCreate:vp,\u0275\u0275defer:function op(a,s,u,C,R,X,ne,xe,Se,at){const xt=(0,t.OAn)(),qt=(0,t.klJ)(),yi=a+t.Yw1,bi=Vd(xt,qt,a,null,0,0),Xi=xt[t.YEL],_n=Ho(Xi);if(qt.firstCreatePass){Cs("NgDefer");const Qd={primaryTmplIndex:s,loadingTmplIndex:C??null,placeholderTmplIndex:R??null,errorTmplIndex:X??null,placeholderBlockConfig:null,loadingBlockConfig:null,dependencyResolverFn:u??null,loadingState:gs.NOT_STARTED,loadingPromise:null,providers:null,hydrateTriggers:null,debug:null,flags:at??0};Se?.(qt,Qd,xe,ne),function Q6(a,s,u){const C=n2(s);a.data[C]=u}(qt,yi,Qd)}const jn=xt[yi];Em(jn,bi,xt);let Yn=null,xn=null;if(jn[t.qFA]?.length>0){const Qd=jn[t.qFA][0].data;xn=Qd[Li]??null,Yn=Qd.s}const fr=[null,uc.Initial,null,null,null,null,xn,Yn,null,null];!function L3(a,s,u){a[n2(s)]=u}(xt,yi,fr);let Ro=null;null!==xn&&_n&&(Ro=Xi.get(Rr),Ro.add(xn,{lView:xt,tNode:bi,lContainer:jn}));const ss=()=>{A3(fr),null!==xn&&Ro?.cleanup([xn])};i2(0,fr,()=>(0,t.DyX)(xt,ss)),(0,t.ik5)(xt,ss)},\u0275\u0275deferWhen:function _5(a){const s=(0,t.OAn)(),u=(0,t.CpD)();if(ws(0,s,u)&&un(s,(0,t.xbp)(),a)){const R=(0,p.Ht)(null);try{const X=!!a,xe=cl(s,u)[1];!1===X&&xe===uc.Initial?a2(s,u):!0===X&&(xe===uc.Initial||xe===ur.Placeholder)&&W1(0,s,u)}finally{(0,p.Ht)(R)}}},\u0275\u0275deferOnIdle:function x5(){ws(0,(0,t.OAn)(),(0,t.Mx4)())&&ip(Hf)},\u0275\u0275deferOnImmediate:function M5(){const a=(0,t.OAn)(),s=(0,t.Mx4)();ws(0,a,s)&&(null===po(a[t.eDl],s).loadingTmplIndex&&a2(a,s),W1(0,a,s))},\u0275\u0275deferOnTimer:function S5(a){ws(0,(0,t.OAn)(),(0,t.Mx4)())&&ip(Gu(a))},\u0275\u0275deferOnHover:function D5(a,s){const u=(0,t.OAn)(),C=(0,t.Mx4)();ws(0,u,C)&&(a2(u,C),Gd(u,C,a,s,qi,()=>W1(0,u,C),0))},\u0275\u0275deferOnInteraction:function I5(a,s){const u=(0,t.OAn)(),C=(0,t.Mx4)();ws(0,u,C)&&(a2(u,C),Gd(u,C,a,s,Ua,()=>W1(0,u,C),0))},\u0275\u0275deferOnViewport:function O5(a,s){const u=(0,t.OAn)(),C=(0,t.Mx4)();ws(0,u,C)&&(a2(u,C),Gd(u,C,a,s,R3,()=>W1(0,u,C),0))},\u0275\u0275deferPrefetchWhen:function v5(a){const s=(0,t.OAn)(),u=(0,t.CpD)();if(ws(1,s,u)&&un(s,(0,t.xbp)(),a)){const R=(0,p.Ht)(null);try{const X=!!a,xe=po(s[t.eDl],u);!0===X&&xe.loadingState===gs.NOT_STARTED&&Wf(xe,s,u)}finally{(0,p.Ht)(R)}}},\u0275\u0275deferPrefetchOnIdle:function C5(){ws(1,(0,t.OAn)(),(0,t.Mx4)())&&gg(Hf)},\u0275\u0275deferPrefetchOnImmediate:function E5(){const a=(0,t.OAn)(),s=(0,t.Mx4)();if(!ws(1,a,s))return;const C=po(a[t.eDl],s);C.loadingState===gs.NOT_STARTED&&U3(C,a,s)},\u0275\u0275deferPrefetchOnTimer:function T5(a){ws(1,(0,t.OAn)(),(0,t.Mx4)())&&gg(Gu(a))},\u0275\u0275deferPrefetchOnHover:function A5(a,s){const u=(0,t.OAn)(),C=(0,t.Mx4)();if(!ws(1,u,C))return;const X=po(u[t.eDl],C);X.loadingState===gs.NOT_STARTED&&Gd(u,C,a,s,qi,()=>Wf(X,u,C),1)},\u0275\u0275deferPrefetchOnInteraction:function k5(a,s){const u=(0,t.OAn)(),C=(0,t.Mx4)();if(!ws(1,u,C))return;const X=po(u[t.eDl],C);X.loadingState===gs.NOT_STARTED&&Gd(u,C,a,s,Ua,()=>Wf(X,u,C),1)},\u0275\u0275deferPrefetchOnViewport:function lp(a,s){const u=(0,t.OAn)(),C=(0,t.Mx4)();if(!ws(1,u,C))return;const X=po(u[t.eDl],C);X.loadingState===gs.NOT_STARTED&&Gd(u,C,a,s,R3,()=>Wf(X,u,C),1)},\u0275\u0275deferHydrateWhen:function y5(a){const s=(0,t.OAn)(),u=(0,t.CpD)();if(!ws(2,s,u))return;const C=(0,t.xbp)();if(Xd((0,t.klJ)(),u).set(6,null),un(s,C,a)){const ne=s[t.YEL],xe=(0,p.Ht)(null);try{1==!!a&&s2(ne,cl(s,u)[6])}finally{(0,p.Ht)(xe)}}},\u0275\u0275deferHydrateNever:function b5(){const a=(0,t.OAn)(),s=(0,t.Mx4)();ws(2,a,s)&&Xd((0,t.klJ)(),s).set(7,null)},\u0275\u0275deferHydrateOnIdle:function V3(){const a=(0,t.OAn)(),s=(0,t.Mx4)();ws(2,a,s)&&(Xd((0,t.klJ)(),s).set(0,null),np(Hf,a,s))},\u0275\u0275deferHydrateOnImmediate:function w5(){const a=(0,t.OAn)(),s=(0,t.Mx4)();ws(2,a,s)&&(Xd((0,t.klJ)(),s).set(1,null),s2(a[t.YEL],cl(a,s)[6]))},\u0275\u0275deferHydrateOnTimer:function wg(a){const s=(0,t.OAn)(),u=(0,t.Mx4)();ws(2,s,u)&&(Xd((0,t.klJ)(),u).set(5,{delay:a}),np(Gu(a),s,u))},\u0275\u0275deferHydrateOnHover:function L5(){const a=(0,t.OAn)(),s=(0,t.Mx4)();ws(2,a,s)&&Xd((0,t.klJ)(),s).set(4,null)},\u0275\u0275deferHydrateOnInteraction:function R5(){const a=(0,t.OAn)(),s=(0,t.Mx4)();ws(2,a,s)&&Xd((0,t.klJ)(),s).set(3,null)},\u0275\u0275deferHydrateOnViewport:function P5(){const a=(0,t.OAn)(),s=(0,t.Mx4)();ws(2,a,s)&&Xd((0,t.klJ)(),s).set(2,null)},\u0275\u0275deferEnableTimerScheduling:function lg(a,s,u,C){const R=a.consts;null!=u&&(s.placeholderBlockConfig=(0,t.db4)(R,u)),null!=C&&(s.loadingBlockConfig=(0,t.db4)(R,C)),null===jf&&(jf=og)},\u0275\u0275repeater:bp,\u0275\u0275repeaterCreate:yp,\u0275\u0275repeaterTrackByIndex:function Z5(a){return a},\u0275\u0275repeaterTrackByIdentity:Rg,\u0275\u0275componentInstance:function K5(){return(0,t.OAn)()[t.b5C][t.SKP]},\u0275\u0275text:k8,\u0275\u0275textInterpolate:d6,\u0275\u0275textInterpolate1:om,\u0275\u0275textInterpolate2:u6,\u0275\u0275textInterpolate3:h6,\u0275\u0275textInterpolate4:s4,\u0275\u0275textInterpolate5:function B8(a,s,u,C,R,X,ne,xe,Se,at,xt){const qt=(0,t.OAn)(),yi=F8(qt,a,s,u,C,R,X,ne,xe,Se,at,xt);return yi!==qa&&Kd(qt,(0,t._px)(),yi),B8},\u0275\u0275textInterpolate6:function z8(a,s,u,C,R,X,ne,xe,Se,at,xt,qt,yi){const bi=(0,t.OAn)(),Xi=l6(bi,a,s,u,C,R,X,ne,xe,Se,at,xt,qt,yi);return Xi!==qa&&Kd(bi,(0,t._px)(),Xi),z8},\u0275\u0275textInterpolate7:function U8(a,s,u,C,R,X,ne,xe,Se,at,xt,qt,yi,bi,Xi){const _n=(0,t.OAn)(),jn=N8(_n,a,s,u,C,R,X,ne,xe,Se,at,xt,qt,yi,bi,Xi);return jn!==qa&&Kd(_n,(0,t._px)(),jn),U8},\u0275\u0275textInterpolate8:function f6(a,s,u,C,R,X,ne,xe,Se,at,xt,qt,yi,bi,Xi,_n,jn){const Yn=(0,t.OAn)(),xn=c6(Yn,a,s,u,C,R,X,ne,xe,Se,at,xt,qt,yi,bi,Xi,_n,jn);return xn!==qa&&Kd(Yn,(0,t._px)(),xn),f6},\u0275\u0275textInterpolateV:function V8(a){const s=(0,t.OAn)(),u=R8(s,a);return u!==qa&&Kd(s,(0,t._px)(),u),V8},\u0275\u0275i18n:function F7(a,s,u){a8(a,s,u),Vp()},\u0275\u0275i18nAttributes:function N7(a,s){const u=(0,t.klJ)(),C=(0,t.db4)(u.consts,s);!function M7(a,s,u){const R=(0,t.Mx4)().index,X=[];if(a.firstCreatePass&&null===a.data[s]){for(let ne=0;ne0){const C=a.data[u];Rp(a,s,Array.isArray(C)?C:C.update,(0,t.c$7)()-e4-1,qf)}qf=0,e4=0}((0,t.klJ)(),(0,t.OAn)(),a+t.Yw1)},\u0275\u0275i18nPostprocess:function z7(a,s={}){return function n8(a,s={}){let u=a;if(L7.test(a)){const C={},R=[0];u=u.replace(I7,(X,ne,xe)=>{const Se=ne||xe,at=C[Se]||[];if(at.length||(Se.split("|").forEach(_n=>{const jn=_n.match(P7),Yn=jn?parseInt(jn[1],10):0,xn=O7.test(_n);at.push([Yn,xn,_n])}),C[Se]=at),!at.length)throw new Error(`i18n postprocess: unmatched placeholder - ${Se}`);const xt=R[R.length-1];let qt=0;for(let _n=0;_ns.hasOwnProperty(X)?`${R}${s[X]}${Se}`:C),u=u.replace(R7,(C,R)=>s.hasOwnProperty(R)?s[R]:C),u=u.replace(i8,(C,R)=>{if(s.hasOwnProperty(R)){const X=s[R];if(!X.length)throw new Error(`i18n postprocess: unmatched ICU - ${C} with key: ${R}`);return X.shift()}return C})),u}(a,s)},\u0275\u0275resolveWindow:ns,\u0275\u0275resolveDocument:function Js(a){return a.ownerDocument},\u0275\u0275resolveBody:function mo(a){return a.ownerDocument.body},\u0275\u0275setComponentScope:function mv(a,s,u){const C=a.\u0275cmp;C.directiveDefs=Vu(s,Rf),C.pipeDefs=Vu(u,t.oyA)},\u0275\u0275setNgModuleScope:function pv(a,s){return T(()=>{const u=(0,t.WbQ)(a);u.declarations=cm(s.declarations||t.Mlv),u.imports=cm(s.imports||t.Mlv),u.exports=cm(s.exports||t.Mlv),s.bootstrap&&(u.bootstrap=cm(s.bootstrap)),O1.registerNgModule(a,s)})},\u0275\u0275registerNgModuleType:Bd,\u0275\u0275getComponentDepsFactory:function Mv(a,s){return()=>{try{return O1.getComponentDependencies(a,s).dependencies}catch(u){throw console.error(`Computing dependencies in local compilation mode for the component "${a.name}" failed with the exception:`,u),u}}},\u0275setClassDebugInfo:function Ev(a,s){const u=(0,t.xUg)(a);null!==u&&(u.debugInfo=s)},\u0275\u0275declareLet:function G8(a){const s=(0,t.klJ)(),u=(0,t.OAn)(),C=a+t.Yw1,R=Vl(s,C,128,null,null);return(0,t.iMd)(R,!1),(0,t.M_e)(s,u,C,H8),G8},\u0275\u0275storeLet:function rv(a){Cs("NgLet");const s=(0,t.klJ)(),u=(0,t.OAn)(),C=(0,t._px)();return(0,t.M_e)(s,u,C,a),a},\u0275\u0275readContextLet:function g6(a){const s=(0,t.VPL)(),u=(0,t.Hh6)(s,t.Yw1+a);if(u===H8)throw new t.buA(314,!1);return u},\u0275\u0275attachSourceLocations:function sv(a,s){const u=(0,t.klJ)(),C=(0,t.OAn)(),R=C[t.GpT],X="data-ng-source-location";for(const[ne,xe,Se,at]of s){(0,t.XRZ)(u,ne+t.Yw1);const qt=(0,t.vaC)(ne+t.Yw1,C);qt.hasAttribute(X)||R.setAttribute(qt,X,`${a}@o:${xe},l:${Se},c:${at}`)}},\u0275\u0275interpolate:j8,\u0275\u0275interpolate1:W8,\u0275\u0275interpolate2:X8,\u0275\u0275interpolate3:function K8(a,s,u,C,R,X,ne=""){return P8((0,t.OAn)(),a,s,u,C,R,X,ne)},\u0275\u0275interpolate4:function ov(a,s,u,C,R,X,ne,xe,Se=""){return o6((0,t.OAn)(),a,s,u,C,R,X,ne,xe,Se)},\u0275\u0275interpolate5:function Y8(a,s,u,C,R,X,ne,xe,Se,at,xt=""){return F8((0,t.OAn)(),a,s,u,C,R,X,ne,xe,Se,at,xt)},\u0275\u0275interpolate6:function lv(a,s,u,C,R,X,ne,xe,Se,at,xt,qt,yi=""){return l6((0,t.OAn)(),a,s,u,C,R,X,ne,xe,Se,at,xt,qt,yi)},\u0275\u0275interpolate7:function cv(a,s,u,C,R,X,ne,xe,Se,at,xt,qt,yi,bi,Xi=""){return N8((0,t.OAn)(),a,s,u,C,R,X,ne,xe,Se,at,xt,qt,yi,bi,Xi)},\u0275\u0275interpolate8:function dv(a,s,u,C,R,X,ne,xe,Se,at,xt,qt,yi,bi,Xi,_n,jn=""){return c6((0,t.OAn)(),a,s,u,C,R,X,ne,xe,Se,at,xt,qt,yi,bi,Xi,_n,jn)},\u0275\u0275interpolateV:function uv(a){return R8((0,t.OAn)(),a)},\u0275\u0275sanitizeHtml:Qa,\u0275\u0275sanitizeStyle:function Ar(a){const s=Nl();return s?s.sanitize(In.STYLE,a)||"":El(a,"Style")?zs(a):(0,t.eFE)(a)},\u0275\u0275sanitizeResourceUrl:Za,\u0275\u0275sanitizeScript:function ms(a){const s=Nl();if(s)return ho(s.sanitize(In.SCRIPT,a)||"");if(El(a,"Script"))return ho(zs(a));throw new t.buA(905,!1)},\u0275\u0275sanitizeUrl:$a,\u0275\u0275sanitizeUrlOrResourceUrl:fd,\u0275\u0275trustConstantHtml:function hd(a){return Eo(a[0])},\u0275\u0275trustConstantResourceUrl:function fo(a){return function jo(a){return tl()?.createScriptURL(a)||a}(a[0])},\u0275\u0275validateIframeAttribute:function h3(a,s,u){const C=(0,t.OAn)(),R=(0,t.CpD)(),X=(0,t.d31)(R,C);if(2===R.type&&"iframe"===s.toLowerCase()){const ne=X;throw ne.src="",ne.srcdoc=Eo(""),nr(C[t.GpT],ne),new t.buA(-910,!1)}return a},forwardRef:t.Rfq,resolveForwardRef:t.nl4,\u0275\u0275twoWayProperty:m6,\u0275\u0275twoWayBindingSet:lm,\u0275\u0275twoWayListener:p6,\u0275\u0275replaceMetadata:function wv(a,s,u,C,R=null,X=null){const ne=(0,t.xUg)(a);s.apply(null,[a,u,...C]);const{newDef:xe,oldDef:Se}=function Sv(a,s){const u={...a};return{newDef:Object.assign(a,s,{directiveDefs:u.directiveDefs,pipeDefs:u.pipeDefs,setInput:u.setInput,type:u.type}),oldDef:u}}(ne,(0,t.xUg)(a));if(a[t.CQl]=xe,Se.tView){const at=function en(){return an}().values();for(const xt of at)(0,t.EFk)(xt)&&null===xt[t.f7T]&&u4(R,X,xe,Se,xt)}},\u0275\u0275getReplaceMetadataURL:function m_(a,s,u){const C=`./@ng/component?c=${a}&t=${encodeURIComponent(s)}`;return new URL(C,u).href}};let $u=null;function Lv(a){null!==$u&&(a.defaultEncapsulation!==$u.defaultEncapsulation||a.preserveWhitespaces!==$u.preserveWhitespaces)||($u=a)}const h4=[];function w_(a){return Du(a)?a.ngModule:a}const Kv=m("NgModule",a=>a,void 0,0,(a,s)=>function kv(a,s={}){(function Rv(a,s){const C=(0,t.Bqz)(s.declarations||t.Mlv);let R=null;Object.defineProperty(a,t.hmW,{configurable:!0,get:()=>(null===R&&(R=$().compileNgModule(Yd,`ng:///${a.name}/\u0275mod.js`,{type:a,bootstrap:(0,t.Bqz)(s.bootstrap||t.Mlv).map(t.nl4),declarations:C.map(t.nl4),imports:(0,t.Bqz)(s.imports||t.Mlv).map(t.nl4).map(w_),exports:(0,t.Bqz)(s.exports||t.Mlv).map(t.nl4).map(w_),schemas:s.schemas?(0,t.Bqz)(s.schemas):null,id:s.id||null}),R.schemas||(R.schemas=[])),R)});let X=null;Object.defineProperty(a,t.zSs,{get:()=>{if(null===X){const xe=$();X=xe.compileFactory(Yd,`ng:///${a.name}/\u0275fac.js`,{name:a.name,type:a,deps:ut(a),target:xe.FactoryTarget.NgModule,typeArgumentCount:0})}return X},configurable:!1});let ne=null;Object.defineProperty(a,t.ONQ,{get:()=>{if(null===ne){const xe={name:a.name,type:a,providers:s.providers||t.Mlv,imports:[(s.imports||t.Mlv).map(t.nl4),(s.exports||t.Mlv).map(t.nl4)]};ne=$().compileInjector(Yd,`ng:///${a.name}/\u0275inj.js`,xe)}return ne},configurable:!1})})(a,s),void 0!==s.id&&Bd(a,s.id),function v_(a,s){h4.push({moduleType:a,ngModule:s})}(a,s)}(a,s));class R_{ngModuleFactory;componentFactories;constructor(s,u){this.ngModuleFactory=s,this.componentFactories=u}}let Yv=(()=>{class a{compileModuleSync(u){return new V1(u)}compileModuleAsync(u){return Promise.resolve(this.compileModuleSync(u))}compileModuleAndAllComponentsSync(u){const C=this.compileModuleSync(u),X=ps((0,t.phH)(u).declarations).reduce((ne,xe)=>{const Se=(0,t.xUg)(xe);return Se&&ne.push(new F1(Se)),ne},[]);return new R_(C,X)}compileModuleAndAllComponentsAsync(u){return Promise.resolve(this.compileModuleAndAllComponentsSync(u))}clearCache(){}clearCacheFor(u){}getModuleId(u){}static \u0275fac=function(C){return new(C||a)};static \u0275prov=(0,t.jDH)({token:a,factory:a.\u0275fac,providedIn:"root"})}return a})();const O_=new t.nKC("");let Qv=(()=>{class a{zone=(0,t.WQX)(Ha);changeDetectionScheduler=(0,t.WQX)(t.hk6);applicationRef=(0,t.WQX)(B3);applicationErrorHandler=(0,t.WQX)(t.ZTf);_onMicrotaskEmptySubscription;initialize(){this._onMicrotaskEmptySubscription||(this._onMicrotaskEmptySubscription=this.zone.onMicrotaskEmpty.subscribe({next:()=>{this.changeDetectionScheduler.runningTick||this.zone.run(()=>{try{this.applicationRef.dirtyFlags|=1,this.applicationRef._tick()}catch(u){this.applicationErrorHandler(u)}})}}))}ngOnDestroy(){this._onMicrotaskEmptySubscription?.unsubscribe()}static \u0275fac=function(C){return new(C||a)};static \u0275prov=(0,t.jDH)({token:a,factory:a.\u0275fac,providedIn:"root"})}return a})();const A6=new t.nKC("",{factory:()=>!1});function P_({ngZoneFactory:a,ignoreChangesOutsideZone:s,scheduleInRootZone:u}){return a??=()=>new Ha({...L6(),scheduleInRootZone:u}),[{provide:Ha,useFactory:a},{provide:t.Z63,multi:!0,useFactory:()=>{const C=(0,t.WQX)(Qv,{optional:!0});return()=>C.initialize()}},{provide:t.Z63,multi:!0,useFactory:()=>{const C=(0,t.WQX)(Zv);return()=>{C.initialize()}}},!0===s?{provide:t.Jy$,useValue:!0}:[],{provide:t.AQb,useValue:u??R2},{provide:t.ZTf,useFactory:()=>{const C=(0,t.WQX)(Ha),R=(0,t.WQX)(t.uvJ);let X;return ne=>{C.runOutsideAngular(()=>{R.destroyed&&!X?setTimeout(()=>{throw ne}):(X??=R.get(t.zcH),X.handleError(ne))})}}}]}function L6(a){return{enableLongStackTrace:!1,shouldCoalesceEventChangeDetection:a?.eventCoalescing??!1,shouldCoalesceRunChangeDetection:a?.runCoalescing??!1}}let Zv=(()=>{class a{subscription=new c.yU;initialized=!1;zone=(0,t.WQX)(Ha);pendingTasks=(0,t.WQX)(t.rev);initialize(){if(this.initialized)return;this.initialized=!0;let u=null;!this.zone.isStable&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(u=this.pendingTasks.add()),this.zone.runOutsideAngular(()=>{this.subscription.add(this.zone.onStable.subscribe(()=>{Ha.assertNotInAngularZone(),queueMicrotask(()=>{null!==u&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(this.pendingTasks.remove(u),u=null)})}))}),this.subscription.add(this.zone.onUnstable.subscribe(()=>{Ha.assertInAngularZone(),u??=this.pendingTasks.add()}))}ngOnDestroy(){this.subscription.unsubscribe()}static \u0275fac=function(C){return new(C||a)};static \u0275prov=(0,t.jDH)({token:a,factory:a.\u0275fac,providedIn:"root"})}return a})(),B_=(()=>{class a{applicationErrorHandler=(0,t.WQX)(t.ZTf);appRef=(0,t.WQX)(B3);taskService=(0,t.WQX)(t.rev);ngZone=(0,t.WQX)(Ha);zonelessEnabled=(0,t.WQX)(t.Evm);tracing=(0,t.WQX)(xc,{optional:!0});disableScheduling=(0,t.WQX)(t.Jy$,{optional:!0})??!1;zoneIsDefined=typeof Zone<"u"&&!!Zone.root.run;schedulerTickApplyArgs=[{data:{__scheduler_tick__:!0}}];subscriptions=new c.yU;angularZoneId=this.zoneIsDefined?this.ngZone._inner?.get(Cc):null;scheduleInRootZone=!this.zonelessEnabled&&this.zoneIsDefined&&((0,t.WQX)(t.AQb,{optional:!0})??!1);cancelScheduledCallback=null;useMicrotaskScheduler=!1;runningTick=!1;pendingRenderTaskId=null;constructor(){this.subscriptions.add(this.appRef.afterTick.subscribe(()=>{this.runningTick||this.cleanup()})),this.subscriptions.add(this.ngZone.onUnstable.subscribe(()=>{this.runningTick||this.cleanup()})),this.disableScheduling||=!this.zonelessEnabled&&(this.ngZone instanceof c1||!this.zoneIsDefined)}notify(u){if(!this.zonelessEnabled&&5===u)return;let C=!1;switch(u){case 0:this.appRef.dirtyFlags|=2;break;case 3:case 2:case 4:case 5:case 1:this.appRef.dirtyFlags|=4;break;case 6:case 13:this.appRef.dirtyFlags|=2,C=!0;break;case 12:this.appRef.dirtyFlags|=16,C=!0;break;case 11:C=!0;break;default:this.appRef.dirtyFlags|=8}if(this.appRef.tracingSnapshot=this.tracing?.snapshot(this.appRef.tracingSnapshot)??null,!this.shouldScheduleTick(C))return;const R=this.useMicrotaskScheduler?F2:P2;this.pendingRenderTaskId=this.taskService.add(),this.cancelScheduledCallback=this.scheduleInRootZone?Zone.root.run(()=>R(()=>this.tick())):this.ngZone.runOutsideAngular(()=>R(()=>this.tick()))}shouldScheduleTick(u){return!(this.disableScheduling&&!u||this.appRef.destroyed||null!==this.pendingRenderTaskId||this.runningTick||this.appRef._runningTick||!this.zonelessEnabled&&this.zoneIsDefined&&Zone.current.get(Cc+this.angularZoneId))}tick(){if(this.runningTick||this.appRef.destroyed)return;if(0===this.appRef.dirtyFlags)return void this.cleanup();!this.zonelessEnabled&&7&this.appRef.dirtyFlags&&(this.appRef.dirtyFlags|=1);const u=this.taskService.add();try{this.ngZone.run(()=>{this.runningTick=!0,this.appRef._tick()},void 0,this.schedulerTickApplyArgs)}catch(C){this.taskService.remove(u),this.applicationErrorHandler(C)}finally{this.cleanup()}this.useMicrotaskScheduler=!0,F2(()=>{this.useMicrotaskScheduler=!1,this.taskService.remove(u)})}ngOnDestroy(){this.subscriptions.unsubscribe(),this.cleanup()}cleanup(){if(this.runningTick=!1,this.cancelScheduledCallback?.(),this.cancelScheduledCallback=null,null!==this.pendingRenderTaskId){const u=this.pendingRenderTaskId;this.pendingRenderTaskId=null,this.taskService.remove(u)}}static \u0275fac=function(C){return new(C||a)};static \u0275prov=(0,t.jDH)({token:a,factory:a.\u0275fac,providedIn:"root"})}return a})();const k6=new t.nKC("",{providedIn:"root",factory:()=>(0,t.WQX)(k6,{optional:!0,skipSelf:!0})||function Jv(){return typeof $localize<"u"&&$localize.locale||kp}()}),qv=new t.nKC("",{providedIn:"root",factory:()=>"USD"})},73703:(Ae,ee,l)=>{"use strict";l.d(ee,{u:()=>t});var i=l(96354);function t(p){return(0,i.T)(()=>p)}},74075:(Ae,ee,l)=>{"use strict";var i=l(9656),t=Object.keys||function(P){var M=[];for(var j in P)M.push(j);return M};Ae.exports=d;var p=Object.create(l(27637));p.inherits=l(71993);var S=l(19609),c=l(47849);p.inherits(d,S);for(var e=t(c.prototype),T=0;T{"use strict";l.d(ee,{A:()=>p});var i=l(71985),t=l(98071);function p(S){return!!S&&(S instanceof i.c||(0,t.T)(S.lift)&&(0,t.T)(S.subscribe))}},74754:(Ae,ee,l)=>{"use strict";var i=l(27054).Buffer,t=l(917),p=l(90518).ec,S=l(65667),c=l(64589);function d(w,m){if(w.cmpn(0)<=0)throw new Error("invalid sig");if(w.cmp(m)>=0)throw new Error("invalid sig")}Ae.exports=function e(w,m,P,M,j){var U=S(P);if("ec"===U.type){if("ecdsa"!==M&&"ecdsa/rsa"!==M)throw new Error("wrong public key type");return function T(w,m,P){var M=c[P.data.algorithm.curve.join(".")];if(!M)throw new Error("unknown curve "+P.data.algorithm.curve.join("."));return new p(M).verify(m,w,P.data.subjectPrivateKey.data)}(w,m,U)}if("dsa"===U.type){if("dsa"!==M)throw new Error("wrong public key type");return function g(w,m,P){var M=P.data.p,j=P.data.q,U=P.data.g,K=P.data.pub_key,q=S.signature.decode(w,"der"),G=q.s,Q=q.r;d(G,j),d(Q,j);var $=t.mont(M),ae=G.invm(j);return 0===U.toRed($).redPow(new t(m).mul(ae).mod(j)).fromRed().mul(K.toRed($).redPow(Q.mul(ae).mod(j)).fromRed()).mod(M).mod(j).cmp(Q)}(w,m,U)}if("rsa"!==M&&"ecdsa/rsa"!==M)throw new Error("wrong public key type");m=i.concat([j,m]);for(var K=U.modulus.byteLength(),q=[1],G=0;m.length+q.length+2{"use strict";function i(U,K){var q=Object.keys(U);if(Object.getOwnPropertySymbols){var G=Object.getOwnPropertySymbols(U);K&&(G=G.filter(function(Q){return Object.getOwnPropertyDescriptor(U,Q).enumerable})),q.push.apply(q,G)}return q}function t(U){for(var K=1;K0?this.tail.next=G:this.head=G,this.tail=G,++this.length}},{key:"unshift",value:function(q){var G={data:q,next:this.head};0===this.length&&(this.tail=G),this.head=G,++this.length}},{key:"shift",value:function(){if(0!==this.length){var q=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,q}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(q){if(0===this.length)return"";for(var G=this.head,Q=""+G.data;G=G.next;)Q+=q+G.data;return Q}},{key:"concat",value:function(q){if(0===this.length)return w.alloc(0);for(var G=w.allocUnsafe(q>>>0),Q=this.head,$=0;Q;)j(Q.data,G,$),$+=Q.data.length,Q=Q.next;return G}},{key:"consume",value:function(q,G){var Q;return qae.length?ae.length:q;if($+=ue===ae.length?ae:ae.slice(0,q),0===(q-=ue)){ue===ae.length?(++Q,this.head=G.next?G.next:this.tail=null):(this.head=G,G.data=ae.slice(ue));break}++Q}return this.length-=Q,$}},{key:"_getBuffer",value:function(q){var G=w.allocUnsafe(q),Q=this.head,$=1;for(Q.data.copy(G),q-=Q.data.length;Q=Q.next;){var ae=Q.data,ue=q>ae.length?ae.length:q;if(ae.copy(G,G.length-q,0,ue),0===(q-=ue)){ue===ae.length?(++$,this.head=Q.next?Q.next:this.tail=null):(this.head=Q,Q.data=ae.slice(ue));break}++$}return this.length-=$,G}},{key:M,value:function(q,G){return P(this,t(t({},G),{},{depth:0,customInspect:!1}))}}]),U}()},76269:(Ae,ee,l)=>{const i=l(19089).getSymbolSize;ee.getPositions=function(S){const c=i(S);return[[0,0],[c-7,0],[0,c-7]]}},76643:(Ae,ee,l)=>{"use strict";var i=l(27054).Buffer,t=l(41090),p=typeof Uint8Array<"u",c=p&&typeof ArrayBuffer<"u"&&ArrayBuffer.isView;Ae.exports=function(e,T,g){if("string"==typeof e||i.isBuffer(e)||p&&e instanceof Uint8Array||c&&c(e))return t(e,T);throw new TypeError(g+" must be a string, a Buffer, a Uint8Array, or a DataView")}},76838:(Ae,ee,l)=>{"use strict";l.d(ee,{FN:()=>oe,vR:()=>he});var i=l(2615),t=l(73664),p=l(21413),S=l(84412),c=l(7673),e=l(23294),T=l(65245),g=l(56977),d=l(95735),w=l(10438),m=l(44522),P=l(39842),M=l(83300),j=l(67847);const U=new i.nKC("cdk-input-modality-detector-options"),K={ignoreKeys:[w.A$,w.W3,w.eg,w.Ge,w.FX]},G={passive:!0,capture:!0};let Q=(()=>{class me{_platform=(0,i.WQX)(P.O);_listenerCleanups;modalityDetected;modalityChanged;get mostRecentModality(){return this._modality.value}_mostRecentTarget=null;_modality=new S.t(null);_options;_lastTouchMs=0;_onKeydown=D=>{this._options?.ignoreKeys?.some(n=>n===D.keyCode)||(this._modality.next("keyboard"),this._mostRecentTarget=(0,m.Fb)(D))};_onMousedown=D=>{Date.now()-this._lastTouchMs<650||(this._modality.next((0,d._)(D)?"keyboard":"mouse"),this._mostRecentTarget=(0,m.Fb)(D))};_onTouchstart=D=>{(0,d.w)(D)?this._modality.next("keyboard"):(this._lastTouchMs=Date.now(),this._modality.next("touch"),this._mostRecentTarget=(0,m.Fb)(D))};constructor(){const D=(0,i.WQX)(t.SKi),n=(0,i.WQX)(i.qQL),o=(0,i.WQX)(U,{optional:!0});if(this._options={...K,...o},this.modalityDetected=this._modality.pipe((0,T.i)(1)),this.modalityChanged=this.modalityDetected.pipe((0,e.F)()),this._platform.isBrowser){const f=(0,i.WQX)(t._9s).createRenderer(null,null);this._listenerCleanups=D.runOutsideAngular(()=>[f.listen(n,"keydown",this._onKeydown,G),f.listen(n,"mousedown",this._onMousedown,G),f.listen(n,"touchstart",this._onTouchstart,G)])}}ngOnDestroy(){this._modality.complete(),this._listenerCleanups?.forEach(D=>D())}static \u0275fac=function(n){return new(n||me)};static \u0275prov=i.jDH({token:me,factory:me.\u0275fac,providedIn:"root"})}return me})();var $=function(me){return me[me.IMMEDIATE=0]="IMMEDIATE",me[me.EVENTUAL=1]="EVENTUAL",me}($||{});const ae=new i.nKC("cdk-focus-monitor-default-options"),ue=(0,M.B)({passive:!0,capture:!0});let oe=(()=>{class me{_ngZone=(0,i.WQX)(t.SKi);_platform=(0,i.WQX)(P.O);_inputModalityDetector=(0,i.WQX)(Q);_origin=null;_lastFocusOrigin;_windowFocused=!1;_windowFocusTimeoutId;_originTimeoutId;_originFromTouchInteraction=!1;_elementInfo=new Map;_monitoredElementCount=0;_rootNodeFocusListenerCount=new Map;_detectionMode;_windowFocusListener=()=>{this._windowFocused=!0,this._windowFocusTimeoutId=setTimeout(()=>this._windowFocused=!1)};_document=(0,i.WQX)(i.qQL);_stopInputModalityDetector=new p.B;constructor(){const D=(0,i.WQX)(ae,{optional:!0});this._detectionMode=D?.detectionMode||$.IMMEDIATE}_rootNodeFocusAndBlurListener=D=>{for(let o=(0,m.Fb)(D);o;o=o.parentElement)"focus"===D.type?this._onFocus(D,o):this._onBlur(D,o)};monitor(D,n=!1){const o=(0,j.i8)(D);if(!this._platform.isBrowser||1!==o.nodeType)return(0,c.of)();const f=(0,m.KT)(o)||this._document,h=this._elementInfo.get(o);if(h)return n&&(h.checkChildren=!0),h.subject;const b={checkChildren:n,subject:new p.B,rootNode:f};return this._elementInfo.set(o,b),this._registerGlobalListeners(b),b.subject}stopMonitoring(D){const n=(0,j.i8)(D),o=this._elementInfo.get(n);o&&(o.subject.complete(),this._setClasses(n),this._elementInfo.delete(n),this._removeGlobalListeners(o))}focusVia(D,n,o){const f=(0,j.i8)(D);f===this._document.activeElement?this._getClosestElementsInfo(f).forEach(([b,A])=>this._originChanged(b,n,A)):(this._setOrigin(n),"function"==typeof f.focus&&f.focus(o))}ngOnDestroy(){this._elementInfo.forEach((D,n)=>this.stopMonitoring(n))}_getWindow(){return this._document.defaultView||window}_getFocusOrigin(D){return this._origin?this._originFromTouchInteraction?this._shouldBeAttributedToTouch(D)?"touch":"program":this._origin:this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:D&&this._isLastInteractionFromInputLabel(D)?"mouse":"program"}_shouldBeAttributedToTouch(D){return this._detectionMode===$.EVENTUAL||!!D?.contains(this._inputModalityDetector._mostRecentTarget)}_setClasses(D,n){D.classList.toggle("cdk-focused",!!n),D.classList.toggle("cdk-touch-focused","touch"===n),D.classList.toggle("cdk-keyboard-focused","keyboard"===n),D.classList.toggle("cdk-mouse-focused","mouse"===n),D.classList.toggle("cdk-program-focused","program"===n)}_setOrigin(D,n=!1){this._ngZone.runOutsideAngular(()=>{this._origin=D,this._originFromTouchInteraction="touch"===D&&n,this._detectionMode===$.IMMEDIATE&&(clearTimeout(this._originTimeoutId),this._originTimeoutId=setTimeout(()=>this._origin=null,this._originFromTouchInteraction?650:1))})}_onFocus(D,n){const o=this._elementInfo.get(n),f=(0,m.Fb)(D);!o||!o.checkChildren&&n!==f||this._originChanged(n,this._getFocusOrigin(f),o)}_onBlur(D,n){const o=this._elementInfo.get(n);!o||o.checkChildren&&D.relatedTarget instanceof Node&&n.contains(D.relatedTarget)||(this._setClasses(n),this._emitOrigin(o,null))}_emitOrigin(D,n){D.subject.observers.length&&this._ngZone.run(()=>D.subject.next(n))}_registerGlobalListeners(D){if(!this._platform.isBrowser)return;const n=D.rootNode,o=this._rootNodeFocusListenerCount.get(n)||0;o||this._ngZone.runOutsideAngular(()=>{n.addEventListener("focus",this._rootNodeFocusAndBlurListener,ue),n.addEventListener("blur",this._rootNodeFocusAndBlurListener,ue)}),this._rootNodeFocusListenerCount.set(n,o+1),1===++this._monitoredElementCount&&(this._ngZone.runOutsideAngular(()=>{this._getWindow().addEventListener("focus",this._windowFocusListener)}),this._inputModalityDetector.modalityDetected.pipe((0,g.Q)(this._stopInputModalityDetector)).subscribe(f=>{this._setOrigin(f,!0)}))}_removeGlobalListeners(D){const n=D.rootNode;if(this._rootNodeFocusListenerCount.has(n)){const o=this._rootNodeFocusListenerCount.get(n);o>1?this._rootNodeFocusListenerCount.set(n,o-1):(n.removeEventListener("focus",this._rootNodeFocusAndBlurListener,ue),n.removeEventListener("blur",this._rootNodeFocusAndBlurListener,ue),this._rootNodeFocusListenerCount.delete(n))}--this._monitoredElementCount||(this._getWindow().removeEventListener("focus",this._windowFocusListener),this._stopInputModalityDetector.next(),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._originTimeoutId))}_originChanged(D,n,o){this._setClasses(D,n),this._emitOrigin(o,n),this._lastFocusOrigin=n}_getClosestElementsInfo(D){const n=[];return this._elementInfo.forEach((o,f)=>{(f===D||o.checkChildren&&f.contains(D))&&n.push([f,o])}),n}_isLastInteractionFromInputLabel(D){const{_mostRecentTarget:n,mostRecentModality:o}=this._inputModalityDetector;if("mouse"!==o||!n||n===D||"INPUT"!==D.nodeName&&"TEXTAREA"!==D.nodeName||D.disabled)return!1;const f=D.labels;if(f)for(let h=0;h{class me{_elementRef=(0,i.WQX)(t.aKT);_focusMonitor=(0,i.WQX)(oe);_monitorSubscription;_focusOrigin=null;cdkFocusChange=new t.bkB;constructor(){}get focusOrigin(){return this._focusOrigin}ngAfterViewInit(){const D=this._elementRef.nativeElement;this._monitorSubscription=this._focusMonitor.monitor(D,1===D.nodeType&&D.hasAttribute("cdkMonitorSubtreeFocus")).subscribe(n=>{this._focusOrigin=n,this.cdkFocusChange.emit(n)})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._monitorSubscription&&this._monitorSubscription.unsubscribe()}static \u0275fac=function(n){return new(n||me)};static \u0275dir=t.FsC({type:me,selectors:[["","cdkMonitorElementFocus",""],["","cdkMonitorSubtreeFocus",""]],outputs:{cdkFocusChange:"cdkFocusChange"},exportAs:["cdkMonitorFocus"]})}return me})()},76939:(Ae,ee,l)=>{"use strict";l.d(ee,{A8:()=>m,I3:()=>G,VA:()=>P,aI:()=>U,bV:()=>K,jc:()=>$,lb:()=>j});var i=l(2615),t=l(73664),p=l(17705);class w{_attachedHost;attach(ue){return this._attachedHost=ue,ue.attach(this)}detach(){let ue=this._attachedHost;null!=ue&&(this._attachedHost=null,ue.detach())}get isAttached(){return null!=this._attachedHost}setAttachedHost(ue){this._attachedHost=ue}}class m extends w{component;viewContainerRef;injector;projectableNodes;constructor(ue,oe,he,me){super(),this.component=ue,this.viewContainerRef=oe,this.injector=he,this.projectableNodes=me}}class P extends w{templateRef;viewContainerRef;context;injector;constructor(ue,oe,he,me){super(),this.templateRef=ue,this.viewContainerRef=oe,this.context=he,this.injector=me}get origin(){return this.templateRef.elementRef}attach(ue,oe=this.context){return this.context=oe,super.attach(ue)}detach(){return this.context=void 0,super.detach()}}class M extends w{element;constructor(ue){super(),this.element=ue instanceof t.aKT?ue.nativeElement:ue}}class j{_attachedPortal;_disposeFn;_isDisposed=!1;hasAttached(){return!!this._attachedPortal}attach(ue){return ue instanceof m?(this._attachedPortal=ue,this.attachComponentPortal(ue)):ue instanceof P?(this._attachedPortal=ue,this.attachTemplatePortal(ue)):this.attachDomPortal&&ue instanceof M?(this._attachedPortal=ue,this.attachDomPortal(ue)):void 0}attachDomPortal=null;detach(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()}dispose(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0}setDisposeFn(ue){this._disposeFn=ue}_invokeDisposeFn(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}class U extends j{outletElement;_appRef;_defaultInjector;constructor(ue,oe,he){super(),this.outletElement=ue,this._appRef=oe,this._defaultInjector=he}attachComponentPortal(ue){let oe;if(ue.viewContainerRef){const he=ue.injector||ue.viewContainerRef.injector,me=he.get(t.Ab1,null,{optional:!0})||void 0;oe=ue.viewContainerRef.createComponent(ue.component,{index:ue.viewContainerRef.length,injector:he,ngModuleRef:me,projectableNodes:ue.projectableNodes||void 0}),this.setDisposeFn(()=>oe.destroy())}else{const he=this._appRef,me=ue.injector||this._defaultInjector||i.zZn.NULL,Te=me.get(i.uvJ,he.injector);oe=(0,p.a0P)(ue.component,{elementInjector:me,environmentInjector:Te,projectableNodes:ue.projectableNodes||void 0}),he.attachView(oe.hostView),this.setDisposeFn(()=>{he.viewCount>0&&he.detachView(oe.hostView),oe.destroy()})}return this.outletElement.appendChild(this._getComponentRootNode(oe)),this._attachedPortal=ue,oe}attachTemplatePortal(ue){let oe=ue.viewContainerRef,he=oe.createEmbeddedView(ue.templateRef,ue.context,{injector:ue.injector});return he.rootNodes.forEach(me=>this.outletElement.appendChild(me)),he.detectChanges(),this.setDisposeFn(()=>{let me=oe.indexOf(he);-1!==me&&oe.remove(me)}),this._attachedPortal=ue,he}attachDomPortal=ue=>{const oe=ue.element,he=this.outletElement.ownerDocument.createComment("dom-portal");oe.parentNode.insertBefore(he,oe),this.outletElement.appendChild(oe),this._attachedPortal=ue,super.setDisposeFn(()=>{he.parentNode&&he.parentNode.replaceChild(oe,he)})};dispose(){super.dispose(),this.outletElement.remove()}_getComponentRootNode(ue){return ue.hostView.rootNodes[0]}}let K=(()=>{class ae extends P{constructor(){super((0,i.WQX)(t.C4Q),(0,i.WQX)(t.c1b))}static \u0275fac=function(he){return new(he||ae)};static \u0275dir=t.FsC({type:ae,selectors:[["","cdkPortal",""]],exportAs:["cdkPortal"],features:[t.Vt3]})}return ae})(),G=(()=>{class ae extends j{_moduleRef=(0,i.WQX)(t.Ab1,{optional:!0});_document=(0,i.WQX)(i.qQL);_viewContainerRef=(0,i.WQX)(t.c1b);_isInitialized=!1;_attachedRef;constructor(){super()}get portal(){return this._attachedPortal}set portal(oe){this.hasAttached()&&!oe&&!this._isInitialized||(this.hasAttached()&&super.detach(),oe&&super.attach(oe),this._attachedPortal=oe||null)}attached=new t.bkB;get attachedRef(){return this._attachedRef}ngOnInit(){this._isInitialized=!0}ngOnDestroy(){super.dispose(),this._attachedRef=this._attachedPortal=null}attachComponentPortal(oe){oe.setAttachedHost(this);const he=null!=oe.viewContainerRef?oe.viewContainerRef:this._viewContainerRef,me=he.createComponent(oe.component,{index:he.length,injector:oe.injector||he.injector,projectableNodes:oe.projectableNodes||void 0,ngModuleRef:this._moduleRef||void 0});return he!==this._viewContainerRef&&this._getRootNode().appendChild(me.hostView.rootNodes[0]),super.setDisposeFn(()=>me.destroy()),this._attachedPortal=oe,this._attachedRef=me,this.attached.emit(me),me}attachTemplatePortal(oe){oe.setAttachedHost(this);const he=this._viewContainerRef.createEmbeddedView(oe.templateRef,oe.context,{injector:oe.injector});return super.setDisposeFn(()=>this._viewContainerRef.clear()),this._attachedPortal=oe,this._attachedRef=he,this.attached.emit(he),he}attachDomPortal=oe=>{const he=oe.element,me=this._document.createComment("dom-portal");oe.setAttachedHost(this),he.parentNode.insertBefore(me,he),this._getRootNode().appendChild(he),this._attachedPortal=oe,super.setDisposeFn(()=>{me.parentNode&&me.parentNode.replaceChild(he,me)})};_getRootNode(){const oe=this._viewContainerRef.element.nativeElement;return oe.nodeType===oe.ELEMENT_NODE?oe:oe.parentNode}static \u0275fac=function(he){return new(he||ae)};static \u0275dir=t.FsC({type:ae,selectors:[["","cdkPortalOutlet",""]],inputs:{portal:[0,"cdkPortalOutlet","portal"]},outputs:{attached:"attached"},exportAs:["cdkPortalOutlet"],features:[t.Vt3]})}return ae})(),$=(()=>{class ae{static \u0275fac=function(he){return new(he||ae)};static \u0275mod=t.$C({type:ae});static \u0275inj=i.G2t({})}return ae})()},77199:()=>{},77933:Ae=>{"use strict";Ae.exports=RangeError},77965:()=>{},78368:(Ae,ee,l)=>{"use strict";var i=Function.prototype.call,t=Object.prototype.hasOwnProperty,p=l(65992);Ae.exports=p.call(i,t)},78454:(Ae,ee,l)=>{"use strict";var i=l(54272).Buffer,t=i.isEncoding||function(G){switch((G=""+G)&&G.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function c(G){var Q;switch(this.encoding=function S(G){var Q=function p(G){if(!G)return"utf8";for(var Q;;)switch(G){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return G;default:if(Q)return;G=(""+G).toLowerCase(),Q=!0}}(G);if("string"!=typeof Q&&(i.isEncoding===t||!t(G)))throw new Error("Unknown encoding: "+G);return Q||G}(G),this.encoding){case"utf16le":this.text=P,this.end=M,Q=4;break;case"utf8":this.fillLast=d,Q=4;break;case"base64":this.text=j,this.end=U,Q=3;break;default:return this.write=K,void(this.end=q)}this.lastNeed=0,this.lastTotal=0,this.lastChar=i.allocUnsafe(Q)}function e(G){return G<=127?0:G>>5==6?2:G>>4==14?3:G>>3==30?4:G>>6==2?-1:-2}function d(G){var Q=this.lastTotal-this.lastNeed,$=function g(G,Q){if(128!=(192&Q[0]))return G.lastNeed=0,"\ufffd";if(G.lastNeed>1&&Q.length>1){if(128!=(192&Q[1]))return G.lastNeed=1,"\ufffd";if(G.lastNeed>2&&Q.length>2&&128!=(192&Q[2]))return G.lastNeed=2,"\ufffd"}}(this,G);return void 0!==$?$:this.lastNeed<=G.length?(G.copy(this.lastChar,Q,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(G.copy(this.lastChar,Q,0,G.length),void(this.lastNeed-=G.length))}function P(G,Q){if((G.length-Q)%2==0){var $=G.toString("utf16le",Q);if($){var ae=$.charCodeAt($.length-1);if(ae>=55296&&ae<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=G[G.length-2],this.lastChar[1]=G[G.length-1],$.slice(0,-1)}return $}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=G[G.length-1],G.toString("utf16le",Q,G.length-1)}function M(G){var Q=G&&G.length?this.write(G):"";return this.lastNeed?Q+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):Q}function j(G,Q){var $=(G.length-Q)%3;return 0===$?G.toString("base64",Q):(this.lastNeed=3-$,this.lastTotal=3,1===$?this.lastChar[0]=G[G.length-1]:(this.lastChar[0]=G[G.length-2],this.lastChar[1]=G[G.length-1]),G.toString("base64",Q,G.length-$))}function U(G){var Q=G&&G.length?this.write(G):"";return this.lastNeed?Q+this.lastChar.toString("base64",0,3-this.lastNeed):Q}function K(G){return G.toString(this.encoding)}function q(G){return G&&G.length?this.write(G):""}ee.I=c,c.prototype.write=function(G){if(0===G.length)return"";var Q,$;if(this.lastNeed){if(void 0===(Q=this.fillLast(G)))return"";$=this.lastNeed,this.lastNeed=0}else $=0;return $=0?(ue>0&&(G.lastNeed=ue-1),ue):--ae<$||-2===ue?0:(ue=e(Q[ae]))>=0?(ue>0&&(G.lastNeed=ue-2),ue):--ae<$||-2===ue?0:(ue=e(Q[ae]))>=0?(ue>0&&(2===ue?ue=0:G.lastNeed=ue-3),ue):0}(this,G,Q);if(!this.lastNeed)return G.toString("utf8",Q);this.lastTotal=$;var ae=G.length-($-this.lastNeed);return G.copy(this.lastChar,0,ae),G.toString("utf8",Q,ae)},c.prototype.fillLast=function(G){if(this.lastNeed<=G.length)return G.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);G.copy(this.lastChar,this.lastTotal-this.lastNeed,0,G.length),this.lastNeed-=G.length}},78528:(Ae,ee,l)=>{"use strict";ee.sha1=l(33468),ee.sha224=l(5563),ee.sha256=l(27138),ee.sha384=l(93898),ee.sha512=l(10827)},78982:()=>{},79039:Ae=>{"use strict";Ae.exports=Math.max},79143:(Ae,ee,l)=>{"use strict";var i=l(27054).Buffer,t=l(67211),p=l(5942),S=l(71993),c=l(43150),e=l(74754),T=l(62951);function g(P){p.Writable.call(this);var M=T[P];if(!M)throw new Error("Unknown message digest");this._hashType=M.hash,this._hash=t(M.hash),this._tag=M.id,this._signType=M.sign}function d(P){p.Writable.call(this);var M=T[P];if(!M)throw new Error("Unknown message digest");this._hash=t(M.hash),this._tag=M.id,this._signType=M.sign}function w(P){return new g(P)}function m(P){return new d(P)}Object.keys(T).forEach(function(P){T[P].id=i.from(T[P].id,"hex"),T[P.toLowerCase()]=T[P]}),S(g,p.Writable),g.prototype._write=function(M,j,U){this._hash.update(M),U()},g.prototype.update=function(M,j){return this._hash.update("string"==typeof M?i.from(M,j):M),this},g.prototype.sign=function(M,j){this.end();var U=this._hash.digest(),K=c(U,M,this._hashType,this._signType,this._tag);return j?K.toString(j):K},S(d,p.Writable),d.prototype._write=function(M,j,U){this._hash.update(M),U()},d.prototype.update=function(M,j){return this._hash.update("string"==typeof M?i.from(M,j):M),this},d.prototype.verify=function(M,j,U){var K="string"==typeof j?i.from(j,U):j;this.end();var q=this._hash.digest();return e(K,q,M,this._signType,this._tag)},Ae.exports={Sign:w,Verify:m,createSign:w,createVerify:m}},79368:()=>{},79470:(Ae,ee,l)=>{"use strict";l.d(ee,{m:()=>t});var i=l(98071);function t(p){return p&&(0,i.T)(p.schedule)}},79477:Ae=>{"use strict";Ae.exports=Function.prototype.apply},79647:(Ae,ee,l)=>{"use strict";l.d(ee,{Az:()=>d,E2:()=>g,Kq:()=>T,N:()=>e,_c:()=>S,qv:()=>c});var i=l(59640);const t=(0,i.UX)("root"),S=((0,i.Mz)(t,w=>w.apiURL),(0,i.Mz)(t,w=>w.selNode)),c=(0,i.Mz)(t,w=>w.appConfig),e=(0,i.Mz)(t,w=>w.nodeData),T=(0,i.Mz)(t,w=>w.apisCallStatus.Login),g=(0,i.Mz)(t,w=>w.apisCallStatus.IsAuthorized),d=(0,i.Mz)(t,w=>({nodeDate:w.nodeData,selNode:w.selNode}))},79838:()=>{},80243:Ae=>{"use strict";var ee={single_source_shortest_paths:function(l,i,t){var p={},S={};S[i]=0;var e,T,g,d,w,P,c=ee.PriorityQueue.make();for(c.push(i,0);!c.empty();)for(g in d=(e=c.pop()).cost,w=l[T=e.value]||{})w.hasOwnProperty(g)&&(P=d+w[g],(typeof S[g]>"u"||S[g]>P)&&(S[g]=P,c.push(g,P),p[g]=T));if(typeof t<"u"&&typeof S[t]>"u"){var U=["Could not find a path from ",i," to ",t,"."].join("");throw new Error(U)}return p},extract_shortest_path_from_predecessor_list:function(l,i){for(var t=[],p=i;p;)t.push(p),p=l[p];return t.reverse(),t},find_path:function(l,i,t){var p=ee.single_source_shortest_paths(l,i,t);return ee.extract_shortest_path_from_predecessor_list(p,t)},PriorityQueue:{make:function(l){var p,i=ee.PriorityQueue,t={};for(p in l=l||{},i)i.hasOwnProperty(p)&&(t[p]=i[p]);return t.queue=[],t.sorter=l.sorter||i.default_sorter,t},default_sorter:function(l,i){return l.cost-i.cost},push:function(l,i){this.queue.push({value:l,cost:i}),this.queue.sort(this.sorter)},pop:function(){return this.queue.shift()},empty:function(){return 0===this.queue.length}}};Ae.exports=ee},80377:(Ae,ee)=>{ee.isValid=function(i){return!isNaN(i)&&i>=1&&i<=40}},80408:(Ae,ee,l)=>{"use strict";function i(t){return Array.isArray(t)?t:[t]}l.d(ee,{F:()=>i})},80975:Ae=>{"use strict";Ae.exports=Math.pow},81744:(Ae,ee,l)=>{const i=l(66686);ee.mul=function(p,S){const c=new Uint8Array(p.length+S.length-1);for(let e=0;e=0;){const e=c[0];for(let g=0;g{"use strict";function i(t){const S=t(c=>{Error.call(c),c.stack=(new Error).stack});return S.prototype=Object.create(Error.prototype),S.prototype.constructor=S,S}l.d(ee,{L:()=>i})},82571:(Ae,ee,l)=>{"use strict";l.d(ee,{h:()=>j});var i=l(21413),t=l(84412),p=l(7673),S=l(18810),c=l(99437),e=l(25558),T=l(56977),g=l(4416),d=l(2615),w=l(51534),m=l(98570),P=l(72200),M=l(345);let j=(()=>{var U;class K{constructor(G,Q,$,ae){this.dataService=G,this.logger=Q,this.datePipe=$,this.sanitizer=ae,this.currencyUnits=[],this.CurrencyUnitEnum=g.BQ,this.conversionData={data:null,last_fetched:null},this.ratesAPIStatus=g.wn.UN_INITIATED,this.screenSize=g.f7.MD,this.containerSize={width:0,height:0},this.containerSizeUpdated=new t.t(this.containerSize),this.unSubs=[new i.B,new i.B,new i.B]}getScreenSize(){return this.screenSize}setScreenSize(G){this.screenSize=G}getContainerSize(){return this.containerSize}setContainerSize(G,Q){this.containerSize={width:G,height:Q},this.logger.info("Container Size: "+JSON.stringify(this.containerSize)),this.containerSizeUpdated.next(this.containerSize)}sortByKey(G,Q,$,ae="asc"){return G.sort("number"===$?"desc"===ae?(ue,oe)=>+ue[Q]>+oe[Q]?-1:1:(ue,oe)=>+ue[Q]>+oe[Q]?1:-1:"desc"===ae?(ue,oe)=>ue[Q]>oe[Q]?-1:1:(ue,oe)=>ue[Q]>oe[Q]?1:-1)}sortDescByKey(G,Q){return G.sort(($,ae)=>{const ue=+$[Q],oe=+ae[Q];return ue>oe?-1:ue{const ue=+$[Q],oe=+ae[Q];return ueoe?1:0})}camelCase(G){return G?.replace(/(?:^\w|[A-Z]|\b\w)/g,(Q,$)=>Q.toUpperCase())?.replace(/\s+/g,"")?.replace(/-/g," ")}titleCase(G,Q,$){return Q&&$&&""!==Q&&""!==$&&(G=G?.replace(new RegExp(Q,"g"),$)),G.indexOf("!\n")>0||G.indexOf(".\n")>0?G.split("\n")?.reduce((ae,ue)=>ae+ue.charAt(0).toUpperCase()+ue.substring(1).toLowerCase()+"\n",""):G.indexOf(" ")>0?G.split(" ")?.reduce((ae,ue)=>ae+ue.charAt(0).toUpperCase()+ue.substring(1).toLowerCase()+" ",""):G.charAt(0).toUpperCase()+G.substring(1).toLowerCase()}convertCurrency(G,Q,$,ae,ue){const oe=(new Date).valueOf();try{return ue&&ae&&(Q===g.BQ.OTHER||$===g.BQ.OTHER)?this.ratesAPIStatus!==g.wn.INITIATED?this.conversionData.data&&this.conversionData.last_fetched&&oe(this.ratesAPIStatus=g.wn.COMPLETED,this.conversionData.data=he&&"object"==typeof he?he:he&&"string"==typeof he?JSON.parse(he):{},this.conversionData.last_fetched=oe,(0,p.of)(this.convertWithFiat(G,Q,ae)))),(0,c.W)(he=>(this.ratesAPIStatus=g.wn.ERROR,(0,S.$)(()=>"Currency Conversion Error."))))):(0,p.of)(this.conversionData.data&&this.conversionData.last_fetched&&oe"Currency Conversion Error.")}}convertWithoutFiat(G,Q){const $={};switch($[g.BQ.SATS]=0,$[g.BQ.BTC]=0,Q){case g.BQ.SATS:$[g.BQ.SATS]=G,$[g.BQ.BTC]=1e-8*G;break;case g.BQ.BTC:$[g.BQ.SATS]=1e8*G,$[g.BQ.BTC]=G}return $}convertWithFiat(G,Q,$){const ae={unit:$,iconType:"FA",symbol:null};if($){const ue=(0,g.Zo)(this.conversionData.data[$].symbol);ae.iconType=ue.iconType,ae.symbol=ue&&"SVG"===ue.iconType&&ue.symbol&&"string"==typeof ue.symbol?this.sanitizer.bypassSecurityTrustHtml(ue.symbol):ue.symbol}switch(ae[g.BQ.SATS]=0,ae[g.BQ.BTC]=0,ae[g.BQ.OTHER]=0,Q){case g.BQ.SATS:ae[g.BQ.SATS]=G,ae[g.BQ.BTC]=1e-8*G,ae[g.BQ.OTHER]=1e-8*G*this.conversionData.data[$].last;break;case g.BQ.BTC:ae[g.BQ.SATS]=1e8*G,ae[g.BQ.BTC]=G,ae[g.BQ.OTHER]=G*this.conversionData.data[$].last;break;case g.BQ.OTHER:ae[g.BQ.SATS]=G/this.conversionData.data[$].last*1e8,ae[g.BQ.BTC]=G/this.conversionData.data[$].last,ae[g.BQ.OTHER]=G}return ae}convertTime(G,Q,$){switch(Q){case g.F7.SECS:switch($){case g.F7.MINS:G/=60;break;case g.F7.HOURS:G/=g.bz;break;case g.F7.DAYS:G/=24*g.bz}break;case g.F7.MINS:switch($){case g.F7.SECS:G*=60;break;case g.F7.HOURS:G/=60;break;case g.F7.DAYS:G/=1440}break;case g.F7.HOURS:switch($){case g.F7.SECS:G*=g.bz;break;case g.F7.MINS:G*=60;break;case g.F7.DAYS:G/=24}break;case g.F7.DAYS:switch($){case g.F7.SECS:G=G*g.bz*24;break;case g.F7.MINS:G=60*G*24;break;case g.F7.HOURS:G*=24}}return G}downloadFile(G,Q,$=".json",ae=".csv"){let ue=new Blob;ue=".json"===$?new Blob(["\ufeff"+this.convertToCSV(G)],{type:"text/csv;charset=utf-8;"}):new Blob([G.toString()],{type:"text/plain;charset=utf-8"});const oe=document.createElement("a"),he=URL.createObjectURL(ue);-1!==navigator.userAgent.indexOf("Safari")&&-1===navigator.userAgent.indexOf("Chrome")&&oe.setAttribute("target","_blank"),oe.setAttribute("href",he),oe.setAttribute("download",Q+ae),oe.style.visibility="hidden",document.body.appendChild(oe),oe.click(),document.body.removeChild(oe)}convertToCSV(G){const Q=[];let $="",ae="",ue="";return"object"!=typeof G&&(G=JSON.parse(G)),G.forEach((he,me)=>{for(const Te in he)Q.findIndex(D=>D===Te)<0&&Q.push(Te)}),ue=Q.join(",")+"\r\n",G.forEach(he=>{$="",Q.forEach(me=>{if(he.hasOwnProperty(me))if(Array.isArray(he[me]))ae="",he[me].forEach((Te,D)=>{ae+="object"==typeof Te?"("+JSON.stringify(Te)?.replace(/\,/g,";")+")":"("+Te+")"}),$+=ae+",";else if("object"==typeof he[me])$+=JSON.stringify(he[me])?.replace(/\,/g,";")+",";else if(me.includes("timestamp")||me.includes("date"))try{switch(he[me].toString().length){case 10:$+=this.datePipe.transform(new Date(1e3*he[me]),"dd/MMM/y HH:mm")+",";break;case 13:$+=this.datePipe.transform(new Date(he[me]),"dd/MMM/y HH:mm")+",";break;default:$+=he[me]+","}}catch{$+=he[me]+","}else $+=he[me]+",";else $+=","}),ue+=$.slice(0,-1)+"\r\n"}),ue}isVersionCompatible(G,Q){if(G){const $=G.match(/v?(?\d+(?:\.\d+)*)/);if($&&$.groups&&$.groups.version){this.logger.info("Current Version: "+$.groups.version),this.logger.info("Checking Compatiblility with Version: "+Q);const ae=$.groups.version.split(".")||[],ue=Q.split(".");return+ae[0]>+ue[0]||+ae[0]==+ue[0]&&+ae[1]>+ue[1]||+ae[0]==+ue[0]&&+ae[1]==+ue[1]&&+ae[2]>=+ue[2]}return this.logger.error("Invalid Version String: "+G),!1}return!1}extractErrorMessage(G,Q="Unknown Error."){const $=this.titleCase(G.error&&G.error.text&&"string"==typeof G.error.text&&G.error.text.includes('')?"API Route Does Not Exist.":G.error&&G.error.error&&G.error.error.error&&G.error.error.error.error&&G.error.error.error.error.error&&"string"==typeof G.error.error.error.error.error?G.error.error.error.error.error:G.error&&G.error.error&&G.error.error.error&&G.error.error.error.error&&"string"==typeof G.error.error.error.error?G.error.error.error.error:G.error&&G.error.error&&G.error.error.error&&"string"==typeof G.error.error.error?G.error.error.error:G.error&&G.error.error&&"string"==typeof G.error.error?G.error.error:G.error&&"string"==typeof G.error?G.error:G.error&&G.error.error&&G.error.error.error&&G.error.error.error.error&&G.error.error.error.error.message&&"string"==typeof G.error.error.error.error.message?G.error.error.error.error.message:G.error&&G.error.error&&G.error.error.error&&G.error.error.error.message&&"string"==typeof G.error.error.error.message?G.error.error.error.message:G.error&&G.error.error&&G.error.error.message&&"string"==typeof G.error.error.message?G.error.error.message:G.error&&G.error.message&&"string"==typeof G.error.message?G.error.message:G.message&&"string"==typeof G.message?G.message:Q);return this.logger.info("Error Message: "+$),$}extractErrorCode(G,Q=500){const $=G.error&&G.error.error&&G.error.error.message&&G.error.error.message.code?G.error.error.message.code:G.error&&G.error.error&&G.error.error.code?G.error.error.code:G.error&&G.error.code?G.error.code:G.code?G.code:G.status?G.status:Q;return this.logger.info("Error Code: "+$),$}extractErrorNumber(G,Q=500){const $=G.error&&G.error.error&&G.error.error.errno?G.error.error.errno:G.error&&G.error.errno?G.error.errno:G.errno?G.errno:G.status?G.status:Q;return this.logger.info("Error Number: "+$),$}ngOnDestroy(){this.containerSizeUpdated.next(null),this.containerSizeUpdated.complete()}static#e=U=()=>(this.\u0275fac=function(Q){return new(Q||K)(d.KVO(w.u),d.KVO(m.gP),d.KVO(P.vh),d.KVO(M.up))},this.\u0275prov=d.jDH({token:K,factory:K.\u0275fac}))}return U(),K})()},82685:(Ae,ee,l)=>{"use strict";var e,w,i=l(27054).Buffer,t=l(86111),p=l(45392),S=l(59111),c=l(76643),T=global.crypto&&global.crypto.subtle,g={sha:"SHA-1","sha-1":"SHA-1",sha1:"SHA-1",sha256:"SHA-256","sha-256":"SHA-256",sha384:"SHA-384","sha-384":"SHA-384","sha-512":"SHA-512",sha512:"SHA-512"},d=[];function m(){return w||(w=global.process&&global.process.nextTick?global.process.nextTick:global.queueMicrotask?global.queueMicrotask:global.setImmediate?global.setImmediate:global.setTimeout)}function P(U,K,q,G,Q){return T.importKey("raw",U,{name:"PBKDF2"},!1,["deriveBits"]).then(function($){return T.deriveBits({name:"PBKDF2",salt:K,iterations:q,hash:{name:Q}},$,G<<3)}).then(function($){return i.from($)})}Ae.exports=function(U,K,q,G,Q,$){if("function"==typeof Q&&($=Q,Q=void 0),t(q,G),U=c(U,p,"Password"),K=c(K,p,"Salt"),"function"!=typeof $)throw new Error("No callback provided to pbkdf2");var ae=g[(Q=Q||"sha1").toLowerCase()];ae&&"function"==typeof global.Promise?function j(U,K){U.then(function(q){m()(function(){K(null,q)})},function(q){m()(function(){K(q)})})}(function M(U){if(global.process&&!global.process.browser||!T||!T.importKey||!T.deriveBits)return Promise.resolve(!1);if(void 0!==d[U])return d[U];var K=P(e=e||i.alloc(8),e,10,128,U).then(function(){return!0},function(){return!1});return d[U]=K,K}(ae).then(function(ue){return ue?P(U,K,q,G,ae):S(U,K,q,G,Q)}),$):m()(function(){var ue;try{ue=S(U,K,q,G,Q)}catch(oe){return void $(oe)}$(null,ue)})}},82765:(Ae,ee,l)=>{"use strict";l.d(ee,{So:()=>$,g7:()=>ae});var i=l(89726),t=l(2615),p=l(73664),S=l(17705),c=l(89417),e=l(88968),T=l(53155),g=l(31804),d=l(32046),w=l(12496),m=l(22466);const P=["input"],M=["label"],j=["*"],U=new t.nKC("mat-checkbox-default-options",{providedIn:"root",factory:K});function K(){return{color:"accent",clickAction:"check-indeterminate",disabledInteractive:!1}}var q=function(ue){return ue[ue.Init=0]="Init",ue[ue.Checked=1]="Checked",ue[ue.Unchecked=2]="Unchecked",ue[ue.Indeterminate=3]="Indeterminate",ue}(q||{});class G{source;checked}const Q=K();let $=(()=>{class ue{_elementRef=(0,t.WQX)(p.aKT);_changeDetectorRef=(0,t.WQX)(S.gRc);_ngZone=(0,t.WQX)(p.SKi);_animationsDisabled=(0,g.Rc)();_options=(0,t.WQX)(U,{optional:!0});focus(){this._inputElement.nativeElement.focus()}_createChangeEvent(he){const me=new G;return me.source=this,me.checked=he,me}_getAnimationTargetElement(){return this._inputElement?.nativeElement}_animationClasses={uncheckedToChecked:"mdc-checkbox--anim-unchecked-checked",uncheckedToIndeterminate:"mdc-checkbox--anim-unchecked-indeterminate",checkedToUnchecked:"mdc-checkbox--anim-checked-unchecked",checkedToIndeterminate:"mdc-checkbox--anim-checked-indeterminate",indeterminateToChecked:"mdc-checkbox--anim-indeterminate-checked",indeterminateToUnchecked:"mdc-checkbox--anim-indeterminate-unchecked"};ariaLabel="";ariaLabelledby=null;ariaDescribedby;ariaExpanded;ariaControls;ariaOwns;_uniqueId;id;get inputId(){return`${this.id||this._uniqueId}-input`}required;labelPosition="after";name=null;change=new p.bkB;indeterminateChange=new p.bkB;value;disableRipple;_inputElement;_labelElement;tabIndex;color;disabledInteractive;_onTouched=()=>{};_currentAnimationClass="";_currentCheckState=q.Init;_controlValueAccessorChangeFn=()=>{};_validatorChangeFn=()=>{};constructor(){(0,t.WQX)(e.l).load(d.A);const he=(0,t.WQX)(new S.ES_("tabindex"),{optional:!0});this._options=this._options||Q,this.color=this._options.color||Q.color,this.tabIndex=null==he?0:parseInt(he)||0,this.id=this._uniqueId=(0,t.WQX)(i.g).getId("mat-mdc-checkbox-"),this.disabledInteractive=this._options?.disabledInteractive??!1}ngOnChanges(he){he.required&&this._validatorChangeFn()}ngAfterViewInit(){this._syncIndeterminate(this.indeterminate)}get checked(){return this._checked}set checked(he){he!=this.checked&&(this._checked=he,this._changeDetectorRef.markForCheck())}_checked=!1;get disabled(){return this._disabled}set disabled(he){he!==this.disabled&&(this._disabled=he,this._changeDetectorRef.markForCheck())}_disabled=!1;get indeterminate(){return this._indeterminate()}set indeterminate(he){const me=he!=this._indeterminate();this._indeterminate.set(he),me&&(this._transitionCheckState(he?q.Indeterminate:this.checked?q.Checked:q.Unchecked),this.indeterminateChange.emit(he)),this._syncIndeterminate(he)}_indeterminate=(0,t.vPA)(!1);_isRippleDisabled(){return this.disableRipple||this.disabled}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}writeValue(he){this.checked=!!he}registerOnChange(he){this._controlValueAccessorChangeFn=he}registerOnTouched(he){this._onTouched=he}setDisabledState(he){this.disabled=he}validate(he){return this.required&&!0!==he.value?{required:!0}:null}registerOnValidatorChange(he){this._validatorChangeFn=he}_transitionCheckState(he){let me=this._currentCheckState,Te=this._getAnimationTargetElement();if(me!==he&&Te&&(this._currentAnimationClass&&Te.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(me,he),this._currentCheckState=he,this._currentAnimationClass.length>0)){Te.classList.add(this._currentAnimationClass);const D=this._currentAnimationClass;this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{Te.classList.remove(D)},1e3)})}}_emitChangeEvent(){this._controlValueAccessorChangeFn(this.checked),this.change.emit(this._createChangeEvent(this.checked)),this._inputElement&&(this._inputElement.nativeElement.checked=this.checked)}toggle(){this.checked=!this.checked,this._controlValueAccessorChangeFn(this.checked)}_handleInputClick(){const he=this._options?.clickAction;this.disabled||"noop"===he?(this.disabled&&this.disabledInteractive||!this.disabled&&"noop"===he)&&(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&"check"!==he&&Promise.resolve().then(()=>{this._indeterminate.set(!1),this.indeterminateChange.emit(!1)}),this._checked=!this._checked,this._transitionCheckState(this._checked?q.Checked:q.Unchecked),this._emitChangeEvent())}_onInteractionEvent(he){he.stopPropagation()}_onBlur(){Promise.resolve().then(()=>{this._onTouched(),this._changeDetectorRef.markForCheck()})}_getAnimationClassForCheckStateTransition(he,me){if(this._animationsDisabled)return"";switch(he){case q.Init:if(me===q.Checked)return this._animationClasses.uncheckedToChecked;if(me==q.Indeterminate)return this._checked?this._animationClasses.checkedToIndeterminate:this._animationClasses.uncheckedToIndeterminate;break;case q.Unchecked:return me===q.Checked?this._animationClasses.uncheckedToChecked:this._animationClasses.uncheckedToIndeterminate;case q.Checked:return me===q.Unchecked?this._animationClasses.checkedToUnchecked:this._animationClasses.checkedToIndeterminate;case q.Indeterminate:return me===q.Checked?this._animationClasses.indeterminateToChecked:this._animationClasses.indeterminateToUnchecked}return""}_syncIndeterminate(he){const me=this._inputElement;me&&(me.nativeElement.indeterminate=he)}_onInputClick(){this._handleInputClick()}_onTouchTargetClick(){this._handleInputClick(),this.disabled||this._inputElement.nativeElement.focus()}_preventBubblingFromLabel(he){he.target&&this._labelElement.nativeElement.contains(he.target)&&he.stopPropagation()}static \u0275fac=function(me){return new(me||ue)};static \u0275cmp=p.VBU({type:ue,selectors:[["mat-checkbox"]],viewQuery:function(me,Te){if(1&me&&(p.GBs(P,5),p.GBs(M,5)),2&me){let D;p.mGM(D=p.lsd())&&(Te._inputElement=D.first),p.mGM(D=p.lsd())&&(Te._labelElement=D.first)}},hostAttrs:[1,"mat-mdc-checkbox"],hostVars:16,hostBindings:function(me,Te){2&me&&(p.Avn("id",Te.id),p.BMQ("tabindex",null)("aria-label",null)("aria-labelledby",null),p.HbH(Te.color?"mat-"+Te.color:"mat-accent"),p.AVh("_mat-animation-noopable",Te._animationsDisabled)("mdc-checkbox--disabled",Te.disabled)("mat-mdc-checkbox-disabled",Te.disabled)("mat-mdc-checkbox-checked",Te.checked)("mat-mdc-checkbox-disabled-interactive",Te.disabledInteractive))},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],ariaExpanded:[2,"aria-expanded","ariaExpanded",S.L39],ariaControls:[0,"aria-controls","ariaControls"],ariaOwns:[0,"aria-owns","ariaOwns"],id:"id",required:[2,"required","required",S.L39],labelPosition:"labelPosition",name:"name",value:"value",disableRipple:[2,"disableRipple","disableRipple",S.L39],tabIndex:[2,"tabIndex","tabIndex",he=>null==he?void 0:(0,S.Udg)(he)],color:"color",disabledInteractive:[2,"disabledInteractive","disabledInteractive",S.L39],checked:[2,"checked","checked",S.L39],disabled:[2,"disabled","disabled",S.L39],indeterminate:[2,"indeterminate","indeterminate",S.L39]},outputs:{change:"change",indeterminateChange:"indeterminateChange"},exportAs:["matCheckbox"],features:[p.Jv_([{provide:c.kq,useExisting:(0,t.Rfq)(()=>ue),multi:!0},{provide:c.cz,useExisting:ue,multi:!0}]),p.OA$],ngContentSelectors:j,decls:15,vars:23,consts:[["checkbox",""],["input",""],["label",""],["mat-internal-form-field","",3,"click","labelPosition"],[1,"mdc-checkbox"],[1,"mat-mdc-checkbox-touch-target",3,"click"],["type","checkbox",1,"mdc-checkbox__native-control",3,"blur","click","change","checked","indeterminate","disabled","id","required","tabIndex"],[1,"mdc-checkbox__ripple"],[1,"mdc-checkbox__background"],["focusable","false","viewBox","0 0 24 24","aria-hidden","true",1,"mdc-checkbox__checkmark"],["fill","none","d","M1.73,12.91 8.1,19.28 22.79,4.59",1,"mdc-checkbox__checkmark-path"],[1,"mdc-checkbox__mixedmark"],["mat-ripple","",1,"mat-mdc-checkbox-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mdc-label",3,"for"]],template:function(me,Te){if(1&me){const D=p.RV6();p.NAR(),p.j41(0,"div",3),p.bIt("click",function(o){return t.eBV(D),t.Njj(Te._preventBubblingFromLabel(o))}),p.j41(1,"div",4,0)(3,"div",5),p.bIt("click",function(){return t.eBV(D),t.Njj(Te._onTouchTargetClick())}),p.k0s(),p.j41(4,"input",6,1),p.bIt("blur",function(){return t.eBV(D),t.Njj(Te._onBlur())})("click",function(){return t.eBV(D),t.Njj(Te._onInputClick())})("change",function(o){return t.eBV(D),t.Njj(Te._onInteractionEvent(o))}),p.k0s(),p.nrm(6,"div",7),p.j41(7,"div",8),t.qSk(),p.j41(8,"svg",9),p.nrm(9,"path",10),p.k0s(),t.joV(),p.nrm(10,"div",11),p.k0s(),p.nrm(11,"div",12),p.k0s(),p.j41(12,"label",13,2),p.SdG(14),p.k0s()()}if(2&me){const D=p.sdS(2);p.Y8G("labelPosition",Te.labelPosition),p.R7$(4),p.AVh("mdc-checkbox--selected",Te.checked),p.Y8G("checked",Te.checked)("indeterminate",Te.indeterminate)("disabled",Te.disabled&&!Te.disabledInteractive)("id",Te.inputId)("required",Te.required)("tabIndex",Te.disabled&&!Te.disabledInteractive?-1:Te.tabIndex),p.BMQ("aria-label",Te.ariaLabel||null)("aria-labelledby",Te.ariaLabelledby)("aria-describedby",Te.ariaDescribedby)("aria-checked",Te.indeterminate?"mixed":null)("aria-controls",Te.ariaControls)("aria-disabled",!(!Te.disabled||!Te.disabledInteractive)||null)("aria-expanded",Te.ariaExpanded)("aria-owns",Te.ariaOwns)("name",Te.name)("value",Te.value),p.R7$(7),p.Y8G("matRippleTrigger",D)("matRippleDisabled",Te.disableRipple||Te.disabled)("matRippleCentered",!0),p.R7$(),p.Y8G("for",Te.inputId)}},dependencies:[w.r6,T.t],styles:['.mdc-checkbox{display:inline-block;position:relative;flex:0 0 18px;box-sizing:content-box;width:18px;height:18px;line-height:0;white-space:nowrap;cursor:pointer;vertical-align:bottom;padding:calc((var(--mat-checkbox-state-layer-size, 40px) - 18px)/2);margin:calc((var(--mat-checkbox-state-layer-size, 40px) - var(--mat-checkbox-state-layer-size, 40px))/2)}.mdc-checkbox:hover>.mdc-checkbox__ripple{opacity:var(--mat-checkbox-unselected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity));background-color:var(--mat-checkbox-unselected-hover-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox:hover>.mat-mdc-checkbox-ripple>.mat-ripple-element{background-color:var(--mat-checkbox-unselected-hover-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox .mdc-checkbox__native-control:focus+.mdc-checkbox__ripple{opacity:var(--mat-checkbox-unselected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity));background-color:var(--mat-checkbox-unselected-focus-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox .mdc-checkbox__native-control:focus~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mat-checkbox-unselected-focus-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox:active>.mdc-checkbox__native-control+.mdc-checkbox__ripple{opacity:var(--mat-checkbox-unselected-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity));background-color:var(--mat-checkbox-unselected-pressed-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox:active>.mdc-checkbox__native-control~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mat-checkbox-unselected-pressed-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox:hover .mdc-checkbox__native-control:checked+.mdc-checkbox__ripple{opacity:var(--mat-checkbox-selected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity));background-color:var(--mat-checkbox-selected-hover-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox:hover .mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mat-checkbox-selected-hover-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox .mdc-checkbox__native-control:focus:checked+.mdc-checkbox__ripple{opacity:var(--mat-checkbox-selected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity));background-color:var(--mat-checkbox-selected-focus-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox .mdc-checkbox__native-control:focus:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mat-checkbox-selected-focus-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox:active>.mdc-checkbox__native-control:checked+.mdc-checkbox__ripple{opacity:var(--mat-checkbox-selected-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity));background-color:var(--mat-checkbox-selected-pressed-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox:active>.mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mat-checkbox-selected-pressed-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox .mdc-checkbox__native-control~.mat-mdc-checkbox-ripple .mat-ripple-element,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox .mdc-checkbox__native-control+.mdc-checkbox__ripple{background-color:var(--mat-checkbox-unselected-hover-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox .mdc-checkbox__native-control{position:absolute;margin:0;padding:0;opacity:0;cursor:inherit;z-index:1;width:var(--mat-checkbox-state-layer-size, 40px);height:var(--mat-checkbox-state-layer-size, 40px);top:calc((var(--mat-checkbox-state-layer-size, 40px) - var(--mat-checkbox-state-layer-size, 40px))/2);right:calc((var(--mat-checkbox-state-layer-size, 40px) - var(--mat-checkbox-state-layer-size, 40px))/2);left:calc((var(--mat-checkbox-state-layer-size, 40px) - var(--mat-checkbox-state-layer-size, 40px))/2)}.mdc-checkbox--disabled{cursor:default;pointer-events:none}.mdc-checkbox__background{display:inline-flex;position:absolute;align-items:center;justify-content:center;box-sizing:border-box;width:18px;height:18px;border:2px solid currentColor;border-radius:2px;background-color:rgba(0,0,0,0);pointer-events:none;will-change:background-color,border-color;transition:background-color 90ms cubic-bezier(0.4, 0, 0.6, 1),border-color 90ms cubic-bezier(0.4, 0, 0.6, 1);-webkit-print-color-adjust:exact;color-adjust:exact;border-color:var(--mat-checkbox-unselected-icon-color, var(--mat-sys-on-surface-variant));top:calc((var(--mat-checkbox-state-layer-size, 40px) - 18px)/2);left:calc((var(--mat-checkbox-state-layer-size, 40px) - 18px)/2)}.mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background{border-color:var(--mat-checkbox-selected-icon-color, var(--mat-sys-primary));background-color:var(--mat-checkbox-selected-icon-color, var(--mat-sys-primary))}.mdc-checkbox--disabled .mdc-checkbox__background{border-color:var(--mat-checkbox-disabled-unselected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}@media(forced-colors: active){.mdc-checkbox--disabled .mdc-checkbox__background{border-color:GrayText}}.mdc-checkbox__native-control:disabled:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:disabled:indeterminate~.mdc-checkbox__background{background-color:var(--mat-checkbox-disabled-selected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));border-color:rgba(0,0,0,0)}@media(forced-colors: active){.mdc-checkbox__native-control:disabled:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:disabled:indeterminate~.mdc-checkbox__background{border-color:GrayText}}.mdc-checkbox:hover>.mdc-checkbox__native-control:not(:checked)~.mdc-checkbox__background,.mdc-checkbox:hover>.mdc-checkbox__native-control:not(:indeterminate)~.mdc-checkbox__background{border-color:var(--mat-checkbox-unselected-hover-icon-color, var(--mat-sys-on-surface));background-color:rgba(0,0,0,0)}.mdc-checkbox:hover>.mdc-checkbox__native-control:checked~.mdc-checkbox__background,.mdc-checkbox:hover>.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background{border-color:var(--mat-checkbox-selected-hover-icon-color, var(--mat-sys-primary));background-color:var(--mat-checkbox-selected-hover-icon-color, var(--mat-sys-primary))}.mdc-checkbox__native-control:focus:focus:not(:checked)~.mdc-checkbox__background,.mdc-checkbox__native-control:focus:focus:not(:indeterminate)~.mdc-checkbox__background{border-color:var(--mat-checkbox-unselected-focus-icon-color, var(--mat-sys-on-surface))}.mdc-checkbox__native-control:focus:focus:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:focus:focus:indeterminate~.mdc-checkbox__background{border-color:var(--mat-checkbox-selected-focus-icon-color, var(--mat-sys-primary));background-color:var(--mat-checkbox-selected-focus-icon-color, var(--mat-sys-primary))}.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox:hover>.mdc-checkbox__native-control~.mdc-checkbox__background,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox .mdc-checkbox__native-control:focus~.mdc-checkbox__background,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__background{border-color:var(--mat-checkbox-disabled-unselected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}@media(forced-colors: active){.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox:hover>.mdc-checkbox__native-control~.mdc-checkbox__background,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox .mdc-checkbox__native-control:focus~.mdc-checkbox__background,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__background{border-color:GrayText}}.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__native-control:checked~.mdc-checkbox__background,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background{background-color:var(--mat-checkbox-disabled-selected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));border-color:rgba(0,0,0,0)}.mdc-checkbox__checkmark{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;opacity:0;transition:opacity 180ms cubic-bezier(0.4, 0, 0.6, 1);color:var(--mat-checkbox-selected-checkmark-color, var(--mat-sys-on-primary))}@media(forced-colors: active){.mdc-checkbox__checkmark{color:CanvasText}}.mdc-checkbox--disabled .mdc-checkbox__checkmark,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__checkmark{color:var(--mat-checkbox-disabled-selected-checkmark-color, var(--mat-sys-surface))}@media(forced-colors: active){.mdc-checkbox--disabled .mdc-checkbox__checkmark,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__checkmark{color:GrayText}}.mdc-checkbox__checkmark-path{transition:stroke-dashoffset 180ms cubic-bezier(0.4, 0, 0.6, 1);stroke:currentColor;stroke-width:3.12px;stroke-dashoffset:29.7833385;stroke-dasharray:29.7833385}.mdc-checkbox__mixedmark{width:100%;height:0;transform:scaleX(0) rotate(0deg);border-width:1px;border-style:solid;opacity:0;transition:opacity 90ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms cubic-bezier(0.4, 0, 0.6, 1);border-color:var(--mat-checkbox-selected-checkmark-color, var(--mat-sys-on-primary))}@media(forced-colors: active){.mdc-checkbox__mixedmark{margin:0 1px}}.mdc-checkbox--disabled .mdc-checkbox__mixedmark,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__mixedmark{border-color:var(--mat-checkbox-disabled-selected-checkmark-color, var(--mat-sys-surface))}@media(forced-colors: active){.mdc-checkbox--disabled .mdc-checkbox__mixedmark,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__mixedmark{border-color:GrayText}}.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__background,.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__background,.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__background,.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__background{animation-duration:180ms;animation-timing-function:linear}.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-unchecked-checked-checkmark-path 180ms linear;transition:none}.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-unchecked-indeterminate-mixedmark 90ms linear;transition:none}.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-checked-unchecked-checkmark-path 90ms linear;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__checkmark{animation:mdc-checkbox-checked-indeterminate-checkmark 90ms linear;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-checked-indeterminate-mixedmark 90ms linear;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__checkmark{animation:mdc-checkbox-indeterminate-checked-checkmark 500ms linear;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-checked-mixedmark 500ms linear;transition:none}.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-unchecked-mixedmark 300ms linear;transition:none}.mdc-checkbox__native-control:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background{transition:border-color 90ms cubic-bezier(0, 0, 0.2, 1),background-color 90ms cubic-bezier(0, 0, 0.2, 1)}.mdc-checkbox__native-control:checked~.mdc-checkbox__background>.mdc-checkbox__checkmark>.mdc-checkbox__checkmark-path,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background>.mdc-checkbox__checkmark>.mdc-checkbox__checkmark-path{stroke-dashoffset:0}.mdc-checkbox__native-control:checked~.mdc-checkbox__background>.mdc-checkbox__checkmark{transition:opacity 180ms cubic-bezier(0, 0, 0.2, 1),transform 180ms cubic-bezier(0, 0, 0.2, 1);opacity:1}.mdc-checkbox__native-control:checked~.mdc-checkbox__background>.mdc-checkbox__mixedmark{transform:scaleX(1) rotate(-45deg)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background>.mdc-checkbox__checkmark{transform:rotate(45deg);opacity:0;transition:opacity 90ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background>.mdc-checkbox__mixedmark{transform:scaleX(1) rotate(0deg);opacity:1}@keyframes mdc-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:29.7833385}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}100%{stroke-dashoffset:0}}@keyframes mdc-checkbox-unchecked-indeterminate-mixedmark{0%,68.2%{transform:scaleX(0)}68.2%{animation-timing-function:cubic-bezier(0, 0, 0, 1)}100%{transform:scaleX(1)}}@keyframes mdc-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);opacity:1;stroke-dashoffset:0}to{opacity:0;stroke-dashoffset:-29.7833385}}@keyframes mdc-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 1);transform:rotate(0deg);opacity:1}to{transform:rotate(45deg);opacity:0}}@keyframes mdc-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);transform:rotate(45deg);opacity:0}to{transform:rotate(360deg);opacity:1}}@keyframes mdc-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 1);transform:rotate(-45deg);opacity:0}to{transform:rotate(0deg);opacity:1}}@keyframes mdc-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);transform:rotate(0deg);opacity:1}to{transform:rotate(315deg);opacity:0}}@keyframes mdc-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;transform:scaleX(1);opacity:1}32.8%,100%{transform:scaleX(0);opacity:0}}.mat-mdc-checkbox{display:inline-block;position:relative;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mat-mdc-checkbox-touch-target,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__native-control,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__ripple,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mat-mdc-checkbox-ripple::before,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__background,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__background>.mdc-checkbox__checkmark,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__background>.mdc-checkbox__checkmark>.mdc-checkbox__checkmark-path,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__background>.mdc-checkbox__mixedmark{transition:none !important;animation:none !important}.mat-mdc-checkbox label{cursor:pointer}.mat-mdc-checkbox .mat-internal-form-field{color:var(--mat-checkbox-label-text-color, var(--mat-sys-on-surface));font-family:var(--mat-checkbox-label-text-font, var(--mat-sys-body-medium-font));line-height:var(--mat-checkbox-label-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-checkbox-label-text-size, var(--mat-sys-body-medium-size));letter-spacing:var(--mat-checkbox-label-text-tracking, var(--mat-sys-body-medium-tracking));font-weight:var(--mat-checkbox-label-text-weight, var(--mat-sys-body-medium-weight))}.mat-mdc-checkbox.mat-mdc-checkbox-disabled.mat-mdc-checkbox-disabled-interactive{pointer-events:auto}.mat-mdc-checkbox.mat-mdc-checkbox-disabled.mat-mdc-checkbox-disabled-interactive input{cursor:default}.mat-mdc-checkbox.mat-mdc-checkbox-disabled label{cursor:default;color:var(--mat-checkbox-disabled-label-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}@media(forced-colors: active){.mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:GrayText}}.mat-mdc-checkbox label:empty{display:none}.mat-mdc-checkbox .mdc-checkbox__ripple{opacity:0}.mat-mdc-checkbox .mat-mdc-checkbox-ripple,.mdc-checkbox__ripple{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:50%;pointer-events:none}.mat-mdc-checkbox .mat-mdc-checkbox-ripple:not(:empty),.mdc-checkbox__ripple:not(:empty){transform:translateZ(0)}.mat-mdc-checkbox-ripple .mat-ripple-element{opacity:.1}.mat-mdc-checkbox-touch-target{position:absolute;top:50%;left:50%;height:var(--mat-checkbox-touch-target-size, 48px);width:var(--mat-checkbox-touch-target-size, 48px);transform:translate(-50%, -50%);display:var(--mat-checkbox-touch-target-display, block)}.mat-mdc-checkbox .mat-mdc-checkbox-ripple::before{border-radius:50%}.mdc-checkbox__native-control:focus~.mat-focus-indicator::before{content:""}\n'],encapsulation:2,changeDetection:0})}return ue})(),ae=(()=>{class ue{static \u0275fac=function(me){return new(me||ue)};static \u0275mod=p.$C({type:ue});static \u0275inj=t.G2t({imports:[$,m.y,m.y]})}return ue})()},82852:function(Ae,ee,l){!function(i){"use strict";var t={};Ae.exports?(t.bytesToHex=l(24740).bytesToHex,t.convertString=l(10820),Ae.exports=g):(t.bytesToHex=i.convertHex.bytesToHex,t.convertString=i.convertString,i.sha256=g);var p=[];!function(){function d(M){for(var j=Math.sqrt(M),U=2;U<=j;U++)if(!(M%U))return!1;return!0}function w(M){return 4294967296*(M-(0|M))|0}for(var m=2,P=0;P<64;)d(m)&&(p[P]=w(Math.pow(m,1/3)),P++),m++}();var S=function(d){for(var w=[],m=0,P=0;m>>5]|=d[m]<<24-P%32;return w},c=function(d){for(var w=[],m=0;m<32*d.length;m+=8)w.push(d[m>>>5]>>>24-m%32&255);return w},e=[],T=function(d,w,m){for(var P=d[0],M=d[1],j=d[2],U=d[3],K=d[4],q=d[5],G=d[6],Q=d[7],$=0;$<64;$++){if($<16)e[$]=0|w[m+$];else{var ae=e[$-15],oe=e[$-2];e[$]=((ae<<25|ae>>>7)^(ae<<14|ae>>>18)^ae>>>3)+e[$-7]+((oe<<15|oe>>>17)^(oe<<13|oe>>>19)^oe>>>10)+e[$-16]}var Te=P&M^P&j^M&j,o=Q+((K<<26|K>>>6)^(K<<21|K>>>11)^(K<<7|K>>>25))+(K&q^~K&G)+p[$]+e[$];Q=G,G=q,q=K,K=U+o|0,U=j,j=M,M=P,P=o+(((P<<30|P>>>2)^(P<<19|P>>>13)^(P<<10|P>>>22))+Te)|0}d[0]=d[0]+P|0,d[1]=d[1]+M|0,d[2]=d[2]+j|0,d[3]=d[3]+U|0,d[4]=d[4]+K|0,d[5]=d[5]+q|0,d[6]=d[6]+G|0,d[7]=d[7]+Q|0};function g(d,w){d.constructor===String&&(d=t.convertString.UTF8.stringToBytes(d));var m=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],P=S(d),M=8*d.length;P[M>>5]|=128<<24-M%32,P[15+(M+64>>9<<4)]=M;for(var j=0;j{"use strict";l.d(ee,{B_:()=>h,Fe:()=>b,NS:()=>G});class i{tracker;columnIndex=0;rowIndex=0;get rowCount(){return this.rowIndex+1}get rowspan(){const k=Math.max(...this.tracker);return k>1?this.rowCount+k-1:this.rowCount}positions;update(k,x){this.columnIndex=0,this.rowIndex=0,this.tracker=new Array(k),this.tracker.fill(0,0,this.tracker.length),this.positions=x.map(r=>this._trackTile(r))}_trackTile(k){const x=this._findMatchingGap(k.colspan);return this._markTilePosition(x,k),this.columnIndex=x+k.colspan,new t(this.rowIndex,x)}_findMatchingGap(k){let x=-1,r=-1;do{this.columnIndex+k>this.tracker.length?(this._nextRow(),x=this.tracker.indexOf(0,this.columnIndex),r=this._findGapEndIndex(x)):(x=this.tracker.indexOf(0,this.columnIndex),-1!=x?(r=this._findGapEndIndex(x),this.columnIndex=x+1):(this._nextRow(),x=this.tracker.indexOf(0,this.columnIndex),r=this._findGapEndIndex(x)))}while(r-x{class A{static \u0275fac=function(r){return new(r||A)};static \u0275mod=S.$C({type:A});static \u0275inj=c.G2t({imports:[e.y,e.y]})}return A})();var m=l(67847),P=l(61577);const M=["*"],q=new c.nKC("MAT_GRID_LIST");let G=(()=>{class A{_element=(0,c.WQX)(S.aKT);_gridList=(0,c.WQX)(q,{optional:!0});_rowspan=1;_colspan=1;constructor(){}get rowspan(){return this._rowspan}set rowspan(x){this._rowspan=Math.round((0,m.OE)(x))}get colspan(){return this._colspan}set colspan(x){this._colspan=Math.round((0,m.OE)(x))}_setStyle(x,r){this._element.nativeElement.style[x]=r}static \u0275fac=function(r){return new(r||A)};static \u0275cmp=S.VBU({type:A,selectors:[["mat-grid-tile"]],hostAttrs:[1,"mat-grid-tile"],hostVars:2,hostBindings:function(r,_){2&r&&S.BMQ("rowspan",_.rowspan)("colspan",_.colspan)},inputs:{rowspan:"rowspan",colspan:"colspan"},exportAs:["matGridTile"],ngContentSelectors:M,decls:2,vars:0,consts:[[1,"mat-grid-tile-content"]],template:function(r,_){1&r&&(S.NAR(),S.rj2(0,"div",0),S.SdG(1),S.eux())},styles:[".mat-grid-list{display:block;position:relative}.mat-grid-tile{display:block;position:absolute;overflow:hidden}.mat-grid-tile .mat-grid-tile-header,.mat-grid-tile .mat-grid-tile-footer{display:flex;align-items:center;height:48px;color:#fff;background:rgba(0,0,0,.38);overflow:hidden;padding:0 16px;position:absolute;left:0;right:0}.mat-grid-tile .mat-grid-tile-header>*,.mat-grid-tile .mat-grid-tile-footer>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-tile-header.mat-2-line,.mat-grid-tile .mat-grid-tile-footer.mat-2-line{height:68px}.mat-grid-tile .mat-grid-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden}.mat-grid-tile .mat-grid-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-list-text:empty{display:none}.mat-grid-tile .mat-grid-tile-header{top:0}.mat-grid-tile .mat-grid-tile-footer{bottom:0}.mat-grid-tile .mat-grid-avatar{padding-right:16px}[dir=rtl] .mat-grid-tile .mat-grid-avatar{padding-right:0;padding-left:16px}.mat-grid-tile .mat-grid-avatar:empty{display:none}.mat-grid-tile-header{font-size:var(--mat-grid-list-tile-header-primary-text-size, var(--mat-sys-body-large))}.mat-grid-tile-header .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-header-secondary-text-size, var(--mat-sys-body-medium))}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size, var(--mat-sys-body-large))}.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-footer-secondary-text-size, var(--mat-sys-body-medium))}.mat-grid-tile-content{top:0;left:0;right:0;bottom:0;position:absolute;display:flex;align-items:center;justify-content:center;height:100%;padding:0;margin:0}\n"],encapsulation:2,changeDetection:0})}return A})();const oe=/^-?\d+((\.\d+)?[A-Za-z%$]?)+$/;class he{_gutterSize;_rows=0;_rowspan=0;_cols;_direction;init(k,x,r,_){this._gutterSize=o(k),this._rows=x.rowCount,this._rowspan=x.rowspan,this._cols=r,this._direction=_}getBaseTileSize(k,x){return`(${k}% - (${this._gutterSize} * ${x}))`}getTilePosition(k,x){return 0===x?"0":n(`(${k} + ${this._gutterSize}) * ${x}`)}getTileSize(k,x){return`(${k} * ${x}) + (${x-1} * ${this._gutterSize})`}setStyle(k,x,r){let _=100/this._cols,W=(this._cols-1)/this._cols;this.setColStyles(k,r,_,W),this.setRowStyles(k,x,_,W)}setColStyles(k,x,r,_){let W=this.getBaseTileSize(r,_);k._setStyle("rtl"===this._direction?"right":"left",this.getTilePosition(W,x)),k._setStyle("width",n(this.getTileSize(W,k.colspan)))}getGutterSpan(){return`${this._gutterSize} * (${this._rowspan} - 1)`}getTileSpan(k){return`${this._rowspan} * ${this.getTileSize(k,1)}`}getComputedHeight(){return null}}class me extends he{fixedRowHeight;constructor(k){super(),this.fixedRowHeight=k}init(k,x,r,_){super.init(k,x,r,_),this.fixedRowHeight=o(this.fixedRowHeight),oe.test(this.fixedRowHeight)}setRowStyles(k,x){k._setStyle("top",this.getTilePosition(this.fixedRowHeight,x)),k._setStyle("height",n(this.getTileSize(this.fixedRowHeight,k.rowspan)))}getComputedHeight(){return["height",n(`${this.getTileSpan(this.fixedRowHeight)} + ${this.getGutterSpan()}`)]}reset(k){k._setListStyle(["height",null]),k._tiles&&k._tiles.forEach(x=>{x._setStyle("top",null),x._setStyle("height",null)})}}class Te extends he{rowHeightRatio;baseTileHeight;constructor(k){super(),this._parseRatio(k)}setRowStyles(k,x,r,_){this.baseTileHeight=this.getBaseTileSize(r/this.rowHeightRatio,_),k._setStyle("marginTop",this.getTilePosition(this.baseTileHeight,x)),k._setStyle("paddingTop",n(this.getTileSize(this.baseTileHeight,k.rowspan)))}getComputedHeight(){return["paddingBottom",n(`${this.getTileSpan(this.baseTileHeight)} + ${this.getGutterSpan()}`)]}reset(k){k._setListStyle(["paddingBottom",null]),k._tiles.forEach(x=>{x._setStyle("marginTop",null),x._setStyle("paddingTop",null)})}_parseRatio(k){const x=k.split(":");this.rowHeightRatio=parseFloat(x[0])/parseFloat(x[1])}}class D extends he{setRowStyles(k,x){let W=this.getBaseTileSize(100/this._rowspan,(this._rows-1)/this._rows);k._setStyle("top",this.getTilePosition(W,x)),k._setStyle("height",n(this.getTileSize(W,k.rowspan)))}reset(k){k._tiles&&k._tiles.forEach(x=>{x._setStyle("top",null),x._setStyle("height",null)})}}function n(A){return`calc(${A})`}function o(A){return A.match(/([A-Za-z%]+)$/)?A:`${A}px`}let h=(()=>{class A{_element=(0,c.WQX)(S.aKT);_dir=(0,c.WQX)(P.dS,{optional:!0});_cols;_tileCoordinator;_rowHeight;_gutter="1px";_tileStyler;_tiles;constructor(){}get cols(){return this._cols}set cols(x){this._cols=Math.max(1,Math.round((0,m.OE)(x)))}get gutterSize(){return this._gutter}set gutterSize(x){this._gutter=`${x??""}`}get rowHeight(){return this._rowHeight}set rowHeight(x){const r=`${x??""}`;r!==this._rowHeight&&(this._rowHeight=r,this._setTileStyler(this._rowHeight))}ngOnInit(){this._checkCols(),this._checkRowHeight()}ngAfterContentChecked(){this._layoutTiles()}_checkCols(){}_checkRowHeight(){this._rowHeight||this._setTileStyler("1:1")}_setTileStyler(x){this._tileStyler&&this._tileStyler.reset(this),this._tileStyler="fit"===x?new D:x&&x.indexOf(":")>-1?new Te(x):new me(x)}_layoutTiles(){this._tileCoordinator||(this._tileCoordinator=new i);const x=this._tileCoordinator,r=this._tiles.filter(W=>!W._gridList||W._gridList===this),_=this._dir?this._dir.value:"ltr";this._tileCoordinator.update(this.cols,r),this._tileStyler.init(this.gutterSize,x,this.cols,_),r.forEach((W,I)=>{const B=x.positions[I];this._tileStyler.setStyle(W,B.row,B.col)}),this._setListStyle(this._tileStyler.getComputedHeight())}_setListStyle(x){x&&(this._element.nativeElement.style[x[0]]=x[1])}static \u0275fac=function(r){return new(r||A)};static \u0275cmp=S.VBU({type:A,selectors:[["mat-grid-list"]],contentQueries:function(r,_,W){if(1&r&&S.wni(W,G,5),2&r){let I;S.mGM(I=S.lsd())&&(_._tiles=I)}},hostAttrs:[1,"mat-grid-list"],hostVars:1,hostBindings:function(r,_){2&r&&S.BMQ("cols",_.cols)},inputs:{cols:"cols",gutterSize:"gutterSize",rowHeight:"rowHeight"},exportAs:["matGridList"],features:[S.Jv_([{provide:q,useExisting:A}])],ngContentSelectors:M,decls:2,vars:0,template:function(r,_){1&r&&(S.NAR(),S.rj2(0,"div"),S.SdG(1),S.eux())},styles:[".mat-grid-list{display:block;position:relative}.mat-grid-tile{display:block;position:absolute;overflow:hidden}.mat-grid-tile .mat-grid-tile-header,.mat-grid-tile .mat-grid-tile-footer{display:flex;align-items:center;height:48px;color:#fff;background:rgba(0,0,0,.38);overflow:hidden;padding:0 16px;position:absolute;left:0;right:0}.mat-grid-tile .mat-grid-tile-header>*,.mat-grid-tile .mat-grid-tile-footer>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-tile-header.mat-2-line,.mat-grid-tile .mat-grid-tile-footer.mat-2-line{height:68px}.mat-grid-tile .mat-grid-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden}.mat-grid-tile .mat-grid-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-list-text:empty{display:none}.mat-grid-tile .mat-grid-tile-header{top:0}.mat-grid-tile .mat-grid-tile-footer{bottom:0}.mat-grid-tile .mat-grid-avatar{padding-right:16px}[dir=rtl] .mat-grid-tile .mat-grid-avatar{padding-right:0;padding-left:16px}.mat-grid-tile .mat-grid-avatar:empty{display:none}.mat-grid-tile-header{font-size:var(--mat-grid-list-tile-header-primary-text-size, var(--mat-sys-body-large))}.mat-grid-tile-header .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-header-secondary-text-size, var(--mat-sys-body-medium))}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size, var(--mat-sys-body-large))}.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-footer-secondary-text-size, var(--mat-sys-body-medium))}.mat-grid-tile-content{top:0;left:0;right:0;bottom:0;position:absolute;display:flex;align-items:center;justify-content:center;height:100%;padding:0;margin:0}\n"],encapsulation:2,changeDetection:0})}return A})(),b=(()=>{class A{static \u0275fac=function(r){return new(r||A)};static \u0275mod=S.$C({type:A});static \u0275inj=c.G2t({imports:[w,e.y,w,e.y]})}return A})()},83045:(Ae,ee,l)=>{"use strict";var i=l(52529),t=l(23401),p=l(3136),S=p.assert,c=p.parseBytes,e=l(87222),T=l(5451);function g(d){if(S("ed25519"===d,"only tested with ed25519 so far"),!(this instanceof g))return new g(d);this.curve=d=t[d].curve,this.g=d.g,this.g.precompute(d.n.bitLength()+1),this.pointClass=d.point().constructor,this.encodingLength=Math.ceil(d.n.bitLength()/8),this.hash=i.sha512}Ae.exports=g,g.prototype.sign=function(w,m){w=c(w);var P=this.keyFromSecret(m),M=this.hashInt(P.messagePrefix(),w),j=this.g.mul(M),U=this.encodePoint(j),K=this.hashInt(U,P.pubBytes(),w).mul(P.priv()),q=M.add(K).umod(this.curve.n);return this.makeSignature({R:j,S:q,Rencoded:U})},g.prototype.verify=function(w,m,P){if(w=c(w),(m=this.makeSignature(m)).S().gte(m.eddsa.curve.n)||m.S().isNeg())return!1;var M=this.keyFromPublic(P),j=this.hashInt(m.Rencoded(),M.pubBytes(),w),U=this.g.mul(m.S());return m.R().add(M.pub().mul(j)).eq(U)},g.prototype.hashInt=function(){for(var w=this.hash(),m=0;m{"use strict";var i=l(49609);ee.certificate=l(94772);var t=i.define("RSAPrivateKey",function(){this.seq().obj(this.key("version").int(),this.key("modulus").int(),this.key("publicExponent").int(),this.key("privateExponent").int(),this.key("prime1").int(),this.key("prime2").int(),this.key("exponent1").int(),this.key("exponent2").int(),this.key("coefficient").int())});ee.RSAPrivateKey=t;var p=i.define("RSAPublicKey",function(){this.seq().obj(this.key("modulus").int(),this.key("publicExponent").int())});ee.RSAPublicKey=p;var S=i.define("AlgorithmIdentifier",function(){this.seq().obj(this.key("algorithm").objid(),this.key("none").null_().optional(),this.key("curve").objid().optional(),this.key("params").seq().obj(this.key("p").int(),this.key("q").int(),this.key("g").int()).optional())}),c=i.define("SubjectPublicKeyInfo",function(){this.seq().obj(this.key("algorithm").use(S),this.key("subjectPublicKey").bitstr())});ee.PublicKey=c;var e=i.define("PrivateKeyInfo",function(){this.seq().obj(this.key("version").int(),this.key("algorithm").use(S),this.key("subjectPrivateKey").octstr())});ee.PrivateKey=e;var T=i.define("EncryptedPrivateKeyInfo",function(){this.seq().obj(this.key("algorithm").seq().obj(this.key("id").objid(),this.key("decrypt").seq().obj(this.key("kde").seq().obj(this.key("id").objid(),this.key("kdeparams").seq().obj(this.key("salt").octstr(),this.key("iters").int())),this.key("cipher").seq().obj(this.key("algo").objid(),this.key("iv").octstr()))),this.key("subjectPrivateKey").octstr())});ee.EncryptedPrivateKey=T;var g=i.define("DSAPrivateKey",function(){this.seq().obj(this.key("version").int(),this.key("p").int(),this.key("q").int(),this.key("g").int(),this.key("pub_key").int(),this.key("priv_key").int())});ee.DSAPrivateKey=g,ee.DSAparam=i.define("DSAparam",function(){this.int()});var d=i.define("ECParameters",function(){this.choice({namedCurve:this.objid()})}),w=i.define("ECPrivateKey",function(){this.seq().obj(this.key("version").int(),this.key("privateKey").octstr(),this.key("parameters").optional().explicit(0).use(d),this.key("publicKey").optional().explicit(1).bitstr())});ee.ECPrivateKey=w,ee.signature=i.define("signature",function(){this.seq().obj(this.key("r").int(),this.key("s").int())})},83264:(Ae,ee,l)=>{const i=l(91677),t=l(19089);function p(S){this.mode=i.KANJI,this.data=S}p.getBitsLength=function(c){return 13*c},p.prototype.getLength=function(){return this.data.length},p.prototype.getBitsLength=function(){return p.getBitsLength(this.data.length)},p.prototype.write=function(S){let c;for(c=0;c=33088&&e<=40956)e-=33088;else{if(!(e>=57408&&e<=60351))throw new Error("Invalid SJIS character: "+this.data[c]+"\nMake sure your charset is UTF-8");e-=49472}e=192*(e>>>8&255)+(255&e),S.put(e,13)}},Ae.exports=p},83300:(Ae,ee,l)=>{"use strict";let i;function p(S){return function t(){if(null==i&&typeof window<"u")try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:()=>i=!0}))}finally{i=i||!1}return i}()?S:!!S.capture}l.d(ee,{B:()=>p})},83407:(Ae,ee,l)=>{var i=l(34725);Ae.exports=function(t){return(new i).update(t).digest()}},83798:(Ae,ee,l)=>{"use strict";var i=l(52786);if(i)try{i([],"length")}catch{i=null}Ae.exports=i},83824:(Ae,ee,l)=>{"use strict";Ae.exports=t;var i=l(43410);function t(p){if(!(this instanceof t))return new t(p);i.call(this,p)}l(71993)(t,i),t.prototype._transform=function(p,S,c){c(null,p)}},83838:(Ae,ee,l)=>{"use strict";const i=l(13981),t=l(22020),p="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;ee.Buffer=T,ee.SlowBuffer=function G(Z){return+Z!=Z&&(Z=0),T.alloc(+Z)},ee.INSPECT_MAX_BYTES=50;const S=2147483647;function e(Z){if(Z>S)throw new RangeError('The value "'+Z+'" is invalid for option "size"');const J=new Uint8Array(Z);return Object.setPrototypeOf(J,T.prototype),J}function T(Z,J,fe){if("number"==typeof Z){if("string"==typeof J)throw new TypeError('The "string" argument must be of type string. Received type number');return m(Z)}return g(Z,J,fe)}function g(Z,J,fe){if("string"==typeof Z)return function P(Z,J){if(("string"!=typeof J||""===J)&&(J="utf8"),!T.isEncoding(J))throw new TypeError("Unknown encoding: "+J);const fe=0|Q(Z,J);let Ie=e(fe);const ht=Ie.write(Z,J);return ht!==fe&&(Ie=Ie.slice(0,ht)),Ie}(Z,J);if(ArrayBuffer.isView(Z))return function j(Z){if(Pe(Z,Uint8Array)){const J=new Uint8Array(Z);return U(J.buffer,J.byteOffset,J.byteLength)}return M(Z)}(Z);if(null==Z)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof Z);if(Pe(Z,ArrayBuffer)||Z&&Pe(Z.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(Pe(Z,SharedArrayBuffer)||Z&&Pe(Z.buffer,SharedArrayBuffer)))return U(Z,J,fe);if("number"==typeof Z)throw new TypeError('The "value" argument must not be of type number. Received type number');const Ie=Z.valueOf&&Z.valueOf();if(null!=Ie&&Ie!==Z)return T.from(Ie,J,fe);const ht=function K(Z){if(T.isBuffer(Z)){const J=0|q(Z.length),fe=e(J);return 0===fe.length||Z.copy(fe,0,0,J),fe}return void 0!==Z.length?"number"!=typeof Z.length||Ht(Z.length)?e(0):M(Z):"Buffer"===Z.type&&Array.isArray(Z.data)?M(Z.data):void 0}(Z);if(ht)return ht;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof Z[Symbol.toPrimitive])return T.from(Z[Symbol.toPrimitive]("string"),J,fe);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof Z)}function d(Z){if("number"!=typeof Z)throw new TypeError('"size" argument must be of type number');if(Z<0)throw new RangeError('The value "'+Z+'" is invalid for option "size"')}function m(Z){return d(Z),e(Z<0?0:0|q(Z))}function M(Z){const J=Z.length<0?0:0|q(Z.length),fe=e(J);for(let Ie=0;Ie=S)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+S.toString(16)+" bytes");return 0|Z}function Q(Z,J){if(T.isBuffer(Z))return Z.length;if(ArrayBuffer.isView(Z)||Pe(Z,ArrayBuffer))return Z.byteLength;if("string"!=typeof Z)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof Z);const fe=Z.length,Ie=arguments.length>2&&!0===arguments[2];if(!Ie&&0===fe)return 0;let ht=!1;for(;;)switch(J){case"ascii":case"latin1":case"binary":return fe;case"utf8":case"utf-8":return dt(Z).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*fe;case"hex":return fe>>>1;case"base64":return Mt(Z).length;default:if(ht)return Ie?-1:dt(Z).length;J=(""+J).toLowerCase(),ht=!0}}function $(Z,J,fe){let Ie=!1;if((void 0===J||J<0)&&(J=0),J>this.length||((void 0===fe||fe>this.length)&&(fe=this.length),fe<=0)||(fe>>>=0)<=(J>>>=0))return"";for(Z||(Z="utf8");;)switch(Z){case"hex":return x(this,J,fe);case"utf8":case"utf-8":return f(this,J,fe);case"ascii":return A(this,J,fe);case"latin1":case"binary":return k(this,J,fe);case"base64":return o(this,J,fe);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return r(this,J,fe);default:if(Ie)throw new TypeError("Unknown encoding: "+Z);Z=(Z+"").toLowerCase(),Ie=!0}}function ae(Z,J,fe){const Ie=Z[J];Z[J]=Z[fe],Z[fe]=Ie}function ue(Z,J,fe,Ie,ht){if(0===Z.length)return-1;if("string"==typeof fe?(Ie=fe,fe=0):fe>2147483647?fe=2147483647:fe<-2147483648&&(fe=-2147483648),Ht(fe=+fe)&&(fe=ht?0:Z.length-1),fe<0&&(fe=Z.length+fe),fe>=Z.length){if(ht)return-1;fe=Z.length-1}else if(fe<0){if(!ht)return-1;fe=0}if("string"==typeof J&&(J=T.from(J,Ie)),T.isBuffer(J))return 0===J.length?-1:oe(Z,J,fe,Ie,ht);if("number"==typeof J)return J&=255,"function"==typeof Uint8Array.prototype.indexOf?ht?Uint8Array.prototype.indexOf.call(Z,J,fe):Uint8Array.prototype.lastIndexOf.call(Z,J,fe):oe(Z,[J],fe,Ie,ht);throw new TypeError("val must be string, number or Buffer")}function oe(Z,J,fe,Ie,ht){let Rt,li=1,Qt=Z.length,di=J.length;if(void 0!==Ie&&("ucs2"===(Ie=String(Ie).toLowerCase())||"ucs-2"===Ie||"utf16le"===Ie||"utf-16le"===Ie)){if(Z.length<2||J.length<2)return-1;li=2,Qt/=2,di/=2,fe/=2}function kt(le,te){return 1===li?le[te]:le.readUInt16BE(te*li)}if(ht){let le=-1;for(Rt=fe;RtQt&&(fe=Qt-di),Rt=fe;Rt>=0;Rt--){let le=!0;for(let te=0;teht&&(Ie=ht):Ie=ht;const li=J.length;let Qt;for(Ie>li/2&&(Ie=li/2),Qt=0;Qt>8,ht=fe%256,li.push(ht),li.push(Ie);return li}(J,Z.length-fe),Z,fe,Ie)}function o(Z,J,fe){return i.fromByteArray(0===J&&fe===Z.length?Z:Z.slice(J,fe))}function f(Z,J,fe){fe=Math.min(Z.length,fe);const Ie=[];let ht=J;for(;ht239?4:li>223?3:li>191?2:1;if(ht+di<=fe){let kt,Rt,le,te;switch(di){case 1:li<128&&(Qt=li);break;case 2:kt=Z[ht+1],128==(192&kt)&&(te=(31&li)<<6|63&kt,te>127&&(Qt=te));break;case 3:kt=Z[ht+1],Rt=Z[ht+2],128==(192&kt)&&128==(192&Rt)&&(te=(15&li)<<12|(63&kt)<<6|63&Rt,te>2047&&(te<55296||te>57343)&&(Qt=te));break;case 4:kt=Z[ht+1],Rt=Z[ht+2],le=Z[ht+3],128==(192&kt)&&128==(192&Rt)&&128==(192&le)&&(te=(15&li)<<18|(63&kt)<<12|(63&Rt)<<6|63&le,te>65535&&te<1114112&&(Qt=te))}}null===Qt?(Qt=65533,di=1):Qt>65535&&(Qt-=65536,Ie.push(Qt>>>10&1023|55296),Qt=56320|1023&Qt),Ie.push(Qt),ht+=di}return function b(Z){const J=Z.length;if(J<=h)return String.fromCharCode.apply(String,Z);let fe="",Ie=0;for(;Ieht.length?(T.isBuffer(Qt)||(Qt=T.from(Qt)),Qt.copy(ht,li)):Uint8Array.prototype.set.call(ht,Qt,li);else{if(!T.isBuffer(Qt))throw new TypeError('"list" argument must be an Array of Buffers');Qt.copy(ht,li)}li+=Qt.length}return ht},T.byteLength=Q,T.prototype._isBuffer=!0,T.prototype.swap16=function(){const J=this.length;if(J%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let fe=0;fefe&&(J+=" ... "),""},p&&(T.prototype[p]=T.prototype.inspect),T.prototype.compare=function(J,fe,Ie,ht,li){if(Pe(J,Uint8Array)&&(J=T.from(J,J.offset,J.byteLength)),!T.isBuffer(J))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof J);if(void 0===fe&&(fe=0),void 0===Ie&&(Ie=J?J.length:0),void 0===ht&&(ht=0),void 0===li&&(li=this.length),fe<0||Ie>J.length||ht<0||li>this.length)throw new RangeError("out of range index");if(ht>=li&&fe>=Ie)return 0;if(ht>=li)return-1;if(fe>=Ie)return 1;if(this===J)return 0;let Qt=(li>>>=0)-(ht>>>=0),di=(Ie>>>=0)-(fe>>>=0);const kt=Math.min(Qt,di),Rt=this.slice(ht,li),le=J.slice(fe,Ie);for(let te=0;te>>=0,isFinite(Ie)?(Ie>>>=0,void 0===ht&&(ht="utf8")):(ht=Ie,Ie=void 0)}const li=this.length-fe;if((void 0===Ie||Ie>li)&&(Ie=li),J.length>0&&(Ie<0||fe<0)||fe>this.length)throw new RangeError("Attempt to write outside buffer bounds");ht||(ht="utf8");let Qt=!1;for(;;)switch(ht){case"hex":return he(this,J,fe,Ie);case"utf8":case"utf-8":return me(this,J,fe,Ie);case"ascii":case"latin1":case"binary":return Te(this,J,fe,Ie);case"base64":return D(this,J,fe,Ie);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return n(this,J,fe,Ie);default:if(Qt)throw new TypeError("Unknown encoding: "+ht);ht=(""+ht).toLowerCase(),Qt=!0}},T.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};const h=4096;function A(Z,J,fe){let Ie="";fe=Math.min(Z.length,fe);for(let ht=J;htIe)&&(fe=Ie);let ht="";for(let li=J;life)throw new RangeError("Trying to access beyond buffer length")}function W(Z,J,fe,Ie,ht,li){if(!T.isBuffer(Z))throw new TypeError('"buffer" argument must be a Buffer instance');if(J>ht||JZ.length)throw new RangeError("Index out of range")}function I(Z,J,fe,Ie,ht){Ke(J,Ie,ht,Z,fe,7);let li=Number(J&BigInt(4294967295));Z[fe++]=li,li>>=8,Z[fe++]=li,li>>=8,Z[fe++]=li,li>>=8,Z[fe++]=li;let Qt=Number(J>>BigInt(32)&BigInt(4294967295));return Z[fe++]=Qt,Qt>>=8,Z[fe++]=Qt,Qt>>=8,Z[fe++]=Qt,Qt>>=8,Z[fe++]=Qt,fe}function B(Z,J,fe,Ie,ht){Ke(J,Ie,ht,Z,fe,7);let li=Number(J&BigInt(4294967295));Z[fe+7]=li,li>>=8,Z[fe+6]=li,li>>=8,Z[fe+5]=li,li>>=8,Z[fe+4]=li;let Qt=Number(J>>BigInt(32)&BigInt(4294967295));return Z[fe+3]=Qt,Qt>>=8,Z[fe+2]=Qt,Qt>>=8,Z[fe+1]=Qt,Qt>>=8,Z[fe]=Qt,fe+8}function re(Z,J,fe,Ie,ht,li){if(fe+Ie>Z.length)throw new RangeError("Index out of range");if(fe<0)throw new RangeError("Index out of range")}function pe(Z,J,fe,Ie,ht){return J=+J,fe>>>=0,ht||re(Z,0,fe,4),t.write(Z,J,fe,Ie,23,4),fe+4}function be(Z,J,fe,Ie,ht){return J=+J,fe>>>=0,ht||re(Z,0,fe,8),t.write(Z,J,fe,Ie,52,8),fe+8}T.prototype.slice=function(J,fe){const Ie=this.length;(J=~~J)<0?(J+=Ie)<0&&(J=0):J>Ie&&(J=Ie),(fe=void 0===fe?Ie:~~fe)<0?(fe+=Ie)<0&&(fe=0):fe>Ie&&(fe=Ie),fe>>=0,fe>>>=0,Ie||_(J,fe,this.length);let ht=this[J],li=1,Qt=0;for(;++Qt>>=0,fe>>>=0,Ie||_(J,fe,this.length);let ht=this[J+--fe],li=1;for(;fe>0&&(li*=256);)ht+=this[J+--fe]*li;return ht},T.prototype.readUint8=T.prototype.readUInt8=function(J,fe){return J>>>=0,fe||_(J,1,this.length),this[J]},T.prototype.readUint16LE=T.prototype.readUInt16LE=function(J,fe){return J>>>=0,fe||_(J,2,this.length),this[J]|this[J+1]<<8},T.prototype.readUint16BE=T.prototype.readUInt16BE=function(J,fe){return J>>>=0,fe||_(J,2,this.length),this[J]<<8|this[J+1]},T.prototype.readUint32LE=T.prototype.readUInt32LE=function(J,fe){return J>>>=0,fe||_(J,4,this.length),(this[J]|this[J+1]<<8|this[J+2]<<16)+16777216*this[J+3]},T.prototype.readUint32BE=T.prototype.readUInt32BE=function(J,fe){return J>>>=0,fe||_(J,4,this.length),16777216*this[J]+(this[J+1]<<16|this[J+2]<<8|this[J+3])},T.prototype.readBigUInt64LE=Ce(function(J){ge(J>>>=0,"offset");const fe=this[J],Ie=this[J+7];(void 0===fe||void 0===Ie)&&ve(J,this.length-8);const ht=fe+256*this[++J]+65536*this[++J]+this[++J]*2**24,li=this[++J]+256*this[++J]+65536*this[++J]+Ie*2**24;return BigInt(ht)+(BigInt(li)<>>=0,"offset");const fe=this[J],Ie=this[J+7];(void 0===fe||void 0===Ie)&&ve(J,this.length-8);const ht=fe*2**24+65536*this[++J]+256*this[++J]+this[++J],li=this[++J]*2**24+65536*this[++J]+256*this[++J]+Ie;return(BigInt(ht)<>>=0,fe>>>=0,Ie||_(J,fe,this.length);let ht=this[J],li=1,Qt=0;for(;++Qt=li&&(ht-=Math.pow(2,8*fe)),ht},T.prototype.readIntBE=function(J,fe,Ie){J>>>=0,fe>>>=0,Ie||_(J,fe,this.length);let ht=fe,li=1,Qt=this[J+--ht];for(;ht>0&&(li*=256);)Qt+=this[J+--ht]*li;return li*=128,Qt>=li&&(Qt-=Math.pow(2,8*fe)),Qt},T.prototype.readInt8=function(J,fe){return J>>>=0,fe||_(J,1,this.length),128&this[J]?-1*(255-this[J]+1):this[J]},T.prototype.readInt16LE=function(J,fe){J>>>=0,fe||_(J,2,this.length);const Ie=this[J]|this[J+1]<<8;return 32768&Ie?4294901760|Ie:Ie},T.prototype.readInt16BE=function(J,fe){J>>>=0,fe||_(J,2,this.length);const Ie=this[J+1]|this[J]<<8;return 32768&Ie?4294901760|Ie:Ie},T.prototype.readInt32LE=function(J,fe){return J>>>=0,fe||_(J,4,this.length),this[J]|this[J+1]<<8|this[J+2]<<16|this[J+3]<<24},T.prototype.readInt32BE=function(J,fe){return J>>>=0,fe||_(J,4,this.length),this[J]<<24|this[J+1]<<16|this[J+2]<<8|this[J+3]},T.prototype.readBigInt64LE=Ce(function(J){ge(J>>>=0,"offset");const fe=this[J],Ie=this[J+7];return(void 0===fe||void 0===Ie)&&ve(J,this.length-8),(BigInt(this[J+4]+256*this[J+5]+65536*this[J+6]+(Ie<<24))<>>=0,"offset");const fe=this[J],Ie=this[J+7];(void 0===fe||void 0===Ie)&&ve(J,this.length-8);const ht=(fe<<24)+65536*this[++J]+256*this[++J]+this[++J];return(BigInt(ht)<>>=0,fe||_(J,4,this.length),t.read(this,J,!0,23,4)},T.prototype.readFloatBE=function(J,fe){return J>>>=0,fe||_(J,4,this.length),t.read(this,J,!1,23,4)},T.prototype.readDoubleLE=function(J,fe){return J>>>=0,fe||_(J,8,this.length),t.read(this,J,!0,52,8)},T.prototype.readDoubleBE=function(J,fe){return J>>>=0,fe||_(J,8,this.length),t.read(this,J,!1,52,8)},T.prototype.writeUintLE=T.prototype.writeUIntLE=function(J,fe,Ie,ht){J=+J,fe>>>=0,Ie>>>=0,ht||W(this,J,fe,Ie,Math.pow(2,8*Ie)-1,0);let li=1,Qt=0;for(this[fe]=255&J;++Qt>>=0,Ie>>>=0,ht||W(this,J,fe,Ie,Math.pow(2,8*Ie)-1,0);let li=Ie-1,Qt=1;for(this[fe+li]=255&J;--li>=0&&(Qt*=256);)this[fe+li]=J/Qt&255;return fe+Ie},T.prototype.writeUint8=T.prototype.writeUInt8=function(J,fe,Ie){return J=+J,fe>>>=0,Ie||W(this,J,fe,1,255,0),this[fe]=255&J,fe+1},T.prototype.writeUint16LE=T.prototype.writeUInt16LE=function(J,fe,Ie){return J=+J,fe>>>=0,Ie||W(this,J,fe,2,65535,0),this[fe]=255&J,this[fe+1]=J>>>8,fe+2},T.prototype.writeUint16BE=T.prototype.writeUInt16BE=function(J,fe,Ie){return J=+J,fe>>>=0,Ie||W(this,J,fe,2,65535,0),this[fe]=J>>>8,this[fe+1]=255&J,fe+2},T.prototype.writeUint32LE=T.prototype.writeUInt32LE=function(J,fe,Ie){return J=+J,fe>>>=0,Ie||W(this,J,fe,4,4294967295,0),this[fe+3]=J>>>24,this[fe+2]=J>>>16,this[fe+1]=J>>>8,this[fe]=255&J,fe+4},T.prototype.writeUint32BE=T.prototype.writeUInt32BE=function(J,fe,Ie){return J=+J,fe>>>=0,Ie||W(this,J,fe,4,4294967295,0),this[fe]=J>>>24,this[fe+1]=J>>>16,this[fe+2]=J>>>8,this[fe+3]=255&J,fe+4},T.prototype.writeBigUInt64LE=Ce(function(J,fe=0){return I(this,J,fe,BigInt(0),BigInt("0xffffffffffffffff"))}),T.prototype.writeBigUInt64BE=Ce(function(J,fe=0){return B(this,J,fe,BigInt(0),BigInt("0xffffffffffffffff"))}),T.prototype.writeIntLE=function(J,fe,Ie,ht){if(J=+J,fe>>>=0,!ht){const kt=Math.pow(2,8*Ie-1);W(this,J,fe,Ie,kt-1,-kt)}let li=0,Qt=1,di=0;for(this[fe]=255&J;++li>>=0,!ht){const kt=Math.pow(2,8*Ie-1);W(this,J,fe,Ie,kt-1,-kt)}let li=Ie-1,Qt=1,di=0;for(this[fe+li]=255&J;--li>=0&&(Qt*=256);)J<0&&0===di&&0!==this[fe+li+1]&&(di=1),this[fe+li]=(J/Qt|0)-di&255;return fe+Ie},T.prototype.writeInt8=function(J,fe,Ie){return J=+J,fe>>>=0,Ie||W(this,J,fe,1,127,-128),J<0&&(J=255+J+1),this[fe]=255&J,fe+1},T.prototype.writeInt16LE=function(J,fe,Ie){return J=+J,fe>>>=0,Ie||W(this,J,fe,2,32767,-32768),this[fe]=255&J,this[fe+1]=J>>>8,fe+2},T.prototype.writeInt16BE=function(J,fe,Ie){return J=+J,fe>>>=0,Ie||W(this,J,fe,2,32767,-32768),this[fe]=J>>>8,this[fe+1]=255&J,fe+2},T.prototype.writeInt32LE=function(J,fe,Ie){return J=+J,fe>>>=0,Ie||W(this,J,fe,4,2147483647,-2147483648),this[fe]=255&J,this[fe+1]=J>>>8,this[fe+2]=J>>>16,this[fe+3]=J>>>24,fe+4},T.prototype.writeInt32BE=function(J,fe,Ie){return J=+J,fe>>>=0,Ie||W(this,J,fe,4,2147483647,-2147483648),J<0&&(J=4294967295+J+1),this[fe]=J>>>24,this[fe+1]=J>>>16,this[fe+2]=J>>>8,this[fe+3]=255&J,fe+4},T.prototype.writeBigInt64LE=Ce(function(J,fe=0){return I(this,J,fe,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),T.prototype.writeBigInt64BE=Ce(function(J,fe=0){return B(this,J,fe,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),T.prototype.writeFloatLE=function(J,fe,Ie){return pe(this,J,fe,!0,Ie)},T.prototype.writeFloatBE=function(J,fe,Ie){return pe(this,J,fe,!1,Ie)},T.prototype.writeDoubleLE=function(J,fe,Ie){return be(this,J,fe,!0,Ie)},T.prototype.writeDoubleBE=function(J,fe,Ie){return be(this,J,fe,!1,Ie)},T.prototype.copy=function(J,fe,Ie,ht){if(!T.isBuffer(J))throw new TypeError("argument should be a Buffer");if(Ie||(Ie=0),!ht&&0!==ht&&(ht=this.length),fe>=J.length&&(fe=J.length),fe||(fe=0),ht>0&&ht=this.length)throw new RangeError("Index out of range");if(ht<0)throw new RangeError("sourceEnd out of bounds");ht>this.length&&(ht=this.length),J.length-fe>>=0,Ie=void 0===Ie?this.length:Ie>>>0,J||(J=0),"number"==typeof J)for(li=fe;li=Ie+4;fe-=3)J=`_${Z.slice(fe-3,fe)}${J}`;return`${Z.slice(0,fe)}${J}`}function Ke(Z,J,fe,Ie,ht,li){if(Z>fe||Z3?0===J||J===BigInt(0)?`>= 0${Qt} and < 2${Qt} ** ${8*(li+1)}${Qt}`:`>= -(2${Qt} ** ${8*(li+1)-1}${Qt}) and < 2 ** ${8*(li+1)-1}${Qt}`:`>= ${J}${Qt} and <= ${fe}${Qt}`,new Be.ERR_OUT_OF_RANGE("value",di,Z)}!function Le(Z,J,fe){ge(J,"offset"),(void 0===Z[J]||void 0===Z[J+fe])&&ve(J,Z.length-(fe+1))}(Ie,ht,li)}function ge(Z,J){if("number"!=typeof Z)throw new Be.ERR_INVALID_ARG_TYPE(J,"number",Z)}function ve(Z,J,fe){throw Math.floor(Z)!==Z?(ge(Z,fe),new Be.ERR_OUT_OF_RANGE(fe||"offset","an integer",Z)):J<0?new Be.ERR_BUFFER_OUT_OF_BOUNDS:new Be.ERR_OUT_OF_RANGE(fe||"offset",`>= ${fe?1:0} and <= ${J}`,Z)}_e("ERR_BUFFER_OUT_OF_BOUNDS",function(Z){return Z?`${Z} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),_e("ERR_INVALID_ARG_TYPE",function(Z,J){return`The "${Z}" argument must be of type number. Received type ${typeof J}`},TypeError),_e("ERR_OUT_OF_RANGE",function(Z,J,fe){let Ie=`The value of "${Z}" is out of range.`,ht=fe;return Number.isInteger(fe)&&Math.abs(fe)>2**32?ht=ye(String(fe)):"bigint"==typeof fe&&(ht=String(fe),(fe>BigInt(2)**BigInt(32)||fe<-(BigInt(2)**BigInt(32)))&&(ht=ye(ht)),ht+="n"),Ie+=` It must be ${J}. Received ${ht}`,Ie},RangeError);const Oe=/[^+/0-9A-Za-z-_]/g;function dt(Z,J){let fe;J=J||1/0;const Ie=Z.length;let ht=null;const li=[];for(let Qt=0;Qt55295&&fe<57344){if(!ht){if(fe>56319){(J-=3)>-1&&li.push(239,191,189);continue}if(Qt+1===Ie){(J-=3)>-1&&li.push(239,191,189);continue}ht=fe;continue}if(fe<56320){(J-=3)>-1&&li.push(239,191,189),ht=fe;continue}fe=65536+(ht-55296<<10|fe-56320)}else ht&&(J-=3)>-1&&li.push(239,191,189);if(ht=null,fe<128){if((J-=1)<0)break;li.push(fe)}else if(fe<2048){if((J-=2)<0)break;li.push(fe>>6|192,63&fe|128)}else if(fe<65536){if((J-=3)<0)break;li.push(fe>>12|224,fe>>6&63|128,63&fe|128)}else{if(!(fe<1114112))throw new Error("Invalid code point");if((J-=4)<0)break;li.push(fe>>18|240,fe>>12&63|128,fe>>6&63|128,63&fe|128)}}return li}function Mt(Z){return i.toByteArray(function Ee(Z){if((Z=(Z=Z.split("=")[0]).trim().replace(Oe,"")).length<2)return"";for(;Z.length%4!=0;)Z+="=";return Z}(Z))}function lt(Z,J,fe,Ie){let ht;for(ht=0;ht=J.length||ht>=Z.length);++ht)J[ht+fe]=Z[ht];return ht}function Pe(Z,J){return Z instanceof J||null!=Z&&null!=Z.constructor&&null!=Z.constructor.name&&Z.constructor.name===J.name}function Ht(Z){return Z!=Z}const ct=function(){const Z="0123456789abcdef",J=new Array(256);for(let fe=0;fe<16;++fe){const Ie=16*fe;for(let ht=0;ht<16;++ht)J[Ie+ht]=Z[fe]+Z[ht]}return J}();function Ce(Z){return typeof BigInt>"u"?ze:Z}function ze(){throw new Error("BigInt not supported")}},83869:(Ae,ee,l)=>{"use strict";l.d(ee,{C:()=>t});var i=l(21413);class t{_multiple;_emitChanges;compareWith;_selection=new Set;_deselectedToEmit=[];_selectedToEmit=[];_selected;get selected(){return this._selected||(this._selected=Array.from(this._selection.values())),this._selected}changed=new i.B;constructor(c=!1,e,T=!0,g){this._multiple=c,this._emitChanges=T,this.compareWith=g,e&&e.length&&(c?e.forEach(d=>this._markSelected(d)):this._markSelected(e[0]),this._selectedToEmit.length=0)}select(...c){this._verifyValueAssignment(c),c.forEach(T=>this._markSelected(T));const e=this._hasQueuedChanges();return this._emitChangeEvent(),e}deselect(...c){this._verifyValueAssignment(c),c.forEach(T=>this._unmarkSelected(T));const e=this._hasQueuedChanges();return this._emitChangeEvent(),e}setSelection(...c){this._verifyValueAssignment(c);const e=this.selected,T=new Set(c.map(d=>this._getConcreteValue(d)));c.forEach(d=>this._markSelected(d)),e.filter(d=>!T.has(this._getConcreteValue(d,T))).forEach(d=>this._unmarkSelected(d));const g=this._hasQueuedChanges();return this._emitChangeEvent(),g}toggle(c){return this.isSelected(c)?this.deselect(c):this.select(c)}clear(c=!0){this._unmarkAll();const e=this._hasQueuedChanges();return c&&this._emitChangeEvent(),e}isSelected(c){return this._selection.has(this._getConcreteValue(c))}isEmpty(){return 0===this._selection.size}hasValue(){return!this.isEmpty()}sort(c){this._multiple&&this.selected&&this._selected.sort(c)}isMultipleSelection(){return this._multiple}_emitChangeEvent(){this._selected=null,(this._selectedToEmit.length||this._deselectedToEmit.length)&&(this.changed.next({source:this,added:this._selectedToEmit,removed:this._deselectedToEmit}),this._deselectedToEmit=[],this._selectedToEmit=[])}_markSelected(c){c=this._getConcreteValue(c),this.isSelected(c)||(this._multiple||this._unmarkAll(),this.isSelected(c)||this._selection.add(c),this._emitChanges&&this._selectedToEmit.push(c))}_unmarkSelected(c){c=this._getConcreteValue(c),this.isSelected(c)&&(this._selection.delete(c),this._emitChanges&&this._deselectedToEmit.push(c))}_unmarkAll(){this.isEmpty()||this._selection.forEach(c=>this._unmarkSelected(c))}_verifyValueAssignment(c){}_hasQueuedChanges(){return!(!this._deselectedToEmit.length&&!this._selectedToEmit.length)}_getConcreteValue(c,e){if(this.compareWith){e=e??this._selection;for(let T of e)if(this.compareWith(c,T))return T;return c}return c}}},84412:(Ae,ee,l)=>{"use strict";l.d(ee,{t:()=>t});var i=l(21413);class t extends i.B{constructor(S){super(),this._value=S}get value(){return this.getValue()}_subscribe(S){const c=super._subscribe(S);return!c.closed&&S.next(this._value),c}getValue(){const{hasError:S,thrownError:c,_value:e}=this;if(S)throw c;return this._throwIfClosed(),e}next(S){super.next(this._value=S)}}},84572:(Ae,ee,l)=>{"use strict";l.d(ee,{z:()=>w});var i=l(71985),t=l(93073),p=l(22806),S=l(33669),c=l(6450),e=l(9326),T=l(58496),g=l(54360),d=l(45225);function w(...M){const j=(0,e.lI)(M),U=(0,e.ms)(M),{args:K,keys:q}=(0,t.D)(M);if(0===K.length)return(0,p.H)([],j);const G=new i.c(function m(M,j,U=S.D){return K=>{P(j,()=>{const{length:q}=M,G=new Array(q);let Q=q,$=q;for(let ae=0;ae{const ue=(0,p.H)(M[ae],j);let oe=!1;ue.subscribe((0,g._)(K,he=>{G[ae]=he,oe||(oe=!0,$--),$||K.next(U(G.slice()))},()=>{--Q||K.complete()}))},K)},K)}}(K,j,q?Q=>(0,T.e)(q,Q):S.D));return U?G.pipe((0,c.I)(U)):G}function P(M,j,U){M?(0,d.N)(U,M,j):j()}},84662:Ae=>{function ee(){this.buffer=[],this.length=0}ee.prototype={get:function(l){const i=Math.floor(l/8);return 1==(this.buffer[i]>>>7-l%8&1)},put:function(l,i){for(let t=0;t>>i-t-1&1))},getLengthInBits:function(){return this.length},putBit:function(l){const i=Math.floor(this.length/8);this.buffer.length<=i&&this.buffer.push(0),l&&(this.buffer[i]|=128>>>this.length%8),this.length++}},Ae.exports=ee},85343:(Ae,ee,l)=>{"use strict";function i(){}l.d(ee,{l:()=>i})},85397:(Ae,ee,l)=>{"use strict";l.d(ee,{x:()=>p});var i=l(4761),t=l(98071);function p(S){return(0,t.T)(S?.[i.l])}},85488:Ae=>{"use strict";Ae.exports=Number.isNaN||function(l){return l!=l}},85671:(Ae,ee)=>{"use strict";ee.readUInt32BE=function(S,c){return(S[0+c]<<24|S[1+c]<<16|S[2+c]<<8|S[3+c])>>>0},ee.writeUInt32BE=function(S,c,e){S[0+e]=c>>>24,S[1+e]=c>>>16&255,S[2+e]=c>>>8&255,S[3+e]=255&c},ee.ip=function(S,c,e,T){for(var g=0,d=0,w=6;w>=0;w-=2){for(var m=0;m<=24;m+=8)g<<=1,g|=c>>>m+w&1;for(m=0;m<=24;m+=8)g<<=1,g|=S>>>m+w&1}for(w=6;w>=0;w-=2){for(m=1;m<=25;m+=8)d<<=1,d|=c>>>m+w&1;for(m=1;m<=25;m+=8)d<<=1,d|=S>>>m+w&1}e[T+0]=g>>>0,e[T+1]=d>>>0},ee.rip=function(S,c,e,T){for(var g=0,d=0,w=0;w<4;w++)for(var m=24;m>=0;m-=8)g<<=1,g|=c>>>m+w&1,g<<=1,g|=S>>>m+w&1;for(w=4;w<8;w++)for(m=24;m>=0;m-=8)d<<=1,d|=c>>>m+w&1,d<<=1,d|=S>>>m+w&1;e[T+0]=g>>>0,e[T+1]=d>>>0},ee.pc1=function(S,c,e,T){for(var g=0,d=0,w=7;w>=5;w--){for(var m=0;m<=24;m+=8)g<<=1,g|=c>>m+w&1;for(m=0;m<=24;m+=8)g<<=1,g|=S>>m+w&1}for(m=0;m<=24;m+=8)g<<=1,g|=c>>m+w&1;for(w=1;w<=3;w++){for(m=0;m<=24;m+=8)d<<=1,d|=c>>m+w&1;for(m=0;m<=24;m+=8)d<<=1,d|=S>>m+w&1}for(m=0;m<=24;m+=8)d<<=1,d|=S>>m+w&1;e[T+0]=g>>>0,e[T+1]=d>>>0},ee.r28shl=function(S,c){return S<>>28-c};var l=[14,11,17,4,27,23,25,0,13,22,7,18,5,9,16,24,2,20,12,21,1,8,15,26,15,4,25,19,9,1,26,16,5,11,23,8,12,7,17,0,22,3,10,14,6,20,27,24];ee.pc2=function(S,c,e,T){for(var g=0,d=0,w=l.length>>>1,m=0;m>>l[m]&1;for(m=w;m>>l[m]&1;e[T+0]=g>>>0,e[T+1]=d>>>0},ee.expand=function(S,c,e){var T=0,g=0;T=(1&S)<<5|S>>>27;for(var d=23;d>=15;d-=4)T<<=6,T|=S>>>d&63;for(d=11;d>=3;d-=4)g|=S>>>d&63,g<<=6;g|=(31&S)<<1|S>>>31,c[e+0]=T>>>0,c[e+1]=g>>>0};var i=[14,0,4,15,13,7,1,4,2,14,15,2,11,13,8,1,3,10,10,6,6,12,12,11,5,9,9,5,0,3,7,8,4,15,1,12,14,8,8,2,13,4,6,9,2,1,11,7,15,5,12,11,9,3,7,14,3,10,10,0,5,6,0,13,15,3,1,13,8,4,14,7,6,15,11,2,3,8,4,14,9,12,7,0,2,1,13,10,12,6,0,9,5,11,10,5,0,13,14,8,7,10,11,1,10,3,4,15,13,4,1,2,5,11,8,6,12,7,6,12,9,0,3,5,2,14,15,9,10,13,0,7,9,0,14,9,6,3,3,4,15,6,5,10,1,2,13,8,12,5,7,14,11,12,4,11,2,15,8,1,13,1,6,10,4,13,9,0,8,6,15,9,3,8,0,7,11,4,1,15,2,14,12,3,5,11,10,5,14,2,7,12,7,13,13,8,14,11,3,5,0,6,6,15,9,0,10,3,1,4,2,7,8,2,5,12,11,1,12,10,4,14,15,9,10,3,6,15,9,0,0,6,12,10,11,1,7,13,13,8,15,9,1,4,3,5,14,11,5,12,2,7,8,2,4,14,2,14,12,11,4,2,1,12,7,4,10,7,11,13,6,1,8,5,5,0,3,15,15,10,13,3,0,9,14,8,9,6,4,11,2,8,1,12,11,7,10,1,13,14,7,2,8,13,15,6,9,15,12,0,5,9,6,10,3,4,0,5,14,3,12,10,1,15,10,4,15,2,9,7,2,12,6,9,8,5,0,6,13,1,3,13,4,14,14,0,7,11,5,3,11,8,9,4,14,3,15,2,5,12,2,9,8,5,12,15,3,10,7,11,0,14,4,1,10,7,1,6,13,0,11,8,6,13,4,13,11,0,2,11,14,7,15,4,0,9,8,1,13,10,3,14,12,3,9,5,7,12,5,2,10,15,6,8,1,6,1,6,4,11,11,13,13,8,12,1,3,4,7,10,14,7,10,9,15,5,6,0,8,15,0,14,5,2,9,3,2,12,13,1,2,15,8,13,4,8,6,10,15,3,11,7,1,4,10,12,9,5,3,6,14,11,5,0,0,14,12,9,7,2,7,2,11,1,4,14,1,7,9,4,12,10,14,8,2,13,0,15,6,12,10,9,13,0,15,3,3,5,5,6,8,11];ee.substitute=function(S,c){for(var e=0,T=0;T<4;T++)e<<=4,e|=i[64*T+(S>>>18-6*T&63)];for(T=0;T<4;T++)e<<=4,e|=i[256+64*T+(c>>>18-6*T&63)];return e>>>0};var t=[16,25,12,11,3,20,4,15,31,17,9,6,27,14,1,22,30,24,8,18,0,5,29,23,13,19,2,26,10,21,28,7];ee.permute=function(S){for(var c=0,e=0;e>>t[e]&1;return c>>>0},ee.padSplit=function(S,c,e){for(var T=S.toString(2);T.length{var i=l(71993);function t(S){this._reporterState={obj:null,path:[],options:S||{},errors:[]}}function p(S,c){this.path=S,this.rethrow(c)}ee.a=t,t.prototype.isError=function(c){return c instanceof p},t.prototype.save=function(){var c=this._reporterState;return{obj:c.obj,pathLen:c.path.length}},t.prototype.restore=function(c){var e=this._reporterState;e.obj=c.obj,e.path=e.path.slice(0,c.pathLen)},t.prototype.enterKey=function(c){return this._reporterState.path.push(c)},t.prototype.exitKey=function(c){var e=this._reporterState;e.path=e.path.slice(0,c-1)},t.prototype.leaveKey=function(c,e,T){var g=this._reporterState;this.exitKey(c),null!==g.obj&&(g.obj[e]=T)},t.prototype.path=function(){return this._reporterState.path.join("/")},t.prototype.enterObject=function(){var c=this._reporterState,e=c.obj;return c.obj={},e},t.prototype.leaveObject=function(c){var e=this._reporterState,T=e.obj;return e.obj=c,T},t.prototype.error=function(c){var e,T=this._reporterState,g=c instanceof p;if(e=g?c:new p(T.path.map(function(d){return"["+JSON.stringify(d)+"]"}).join(""),c.message||c,c.stack),!T.options.partial)throw e;return g||T.errors.push(e),e},t.prototype.wrapResult=function(c){var e=this._reporterState;return e.options.partial?{result:this.isError(c)?null:c,errors:e.errors}:c},i(p,Error),p.prototype.rethrow=function(c){if(this.message=c+" at: "+(this.path||"(shallow)"),Error.captureStackTrace&&Error.captureStackTrace(this,p),!this.stack)try{throw new Error(this.message)}catch(e){this.stack=e.stack}return this}},85917:(Ae,ee,l)=>{var i=l(27054).Buffer,t=i.alloc(16,0);function S(e){var T=i.allocUnsafe(16);return T.writeUInt32BE(e[0]>>>0,0),T.writeUInt32BE(e[1]>>>0,4),T.writeUInt32BE(e[2]>>>0,8),T.writeUInt32BE(e[3]>>>0,12),T}function c(e){this.h=e,this.state=i.alloc(16,0),this.cache=i.allocUnsafe(0)}c.prototype.ghash=function(e){for(var T=-1;++T0;g--)e[g]=e[g]>>>1|(1&e[g-1])<<31;e[0]=e[0]>>>1,w&&(e[0]=e[0]^225<<24)}this.state=S(T)},c.prototype.update=function(e){this.cache=i.concat([this.cache,e]);for(var T;this.cache.length>=16;)T=this.cache.slice(0,16),this.cache=this.cache.slice(16),this.ghash(T)},c.prototype.final=function(e,T){return this.cache.length&&this.ghash(i.concat([this.cache,t],16)),this.ghash(S([0,e,0,T])),this.state},Ae.exports=c},86111:Ae=>{"use strict";var ee=isFinite,l=Math.pow(2,30)-1;Ae.exports=function(i,t){if("number"!=typeof i)throw new TypeError("Iterations not a number");if(i<0||!ee(i))throw new TypeError("Bad iterations");if("number"!=typeof t)throw new TypeError("Key length not a number");if(t<0||t>l||t!=t)throw new TypeError("Bad key length")}},86129:(Ae,ee,l)=>{"use strict";l.d(ee,{U:()=>i});const i={now:()=>(i.delegate||Date).now(),delegate:void 0}},86156:(Ae,ee,l)=>{"use strict";l.d(ee,{u:()=>g});var i=l(2615),t=l(73664),p=l(17094),S=l(49338),c=l(5718),e=l(40455),T=l(22466);let g=(()=>{class d{static \u0275fac=function(P){return new(P||d)};static \u0275mod=t.$C({type:d});static \u0275inj=i.G2t({providers:[e.YZ],imports:[p.Pd,S.z_,T.y,T.y,c.Gj]})}return d})()},86289:(Ae,ee,l)=>{const i=l(81744);function t(p){this.genPoly=void 0,this.degree=p,this.degree&&this.initialize(this.degree)}t.prototype.initialize=function(S){this.degree=S,this.genPoly=i.generateECPolynomial(this.degree)},t.prototype.encode=function(S){if(!this.genPoly)throw new Error("Encoder not initialized");const c=new Uint8Array(S.length+this.degree);c.set(S);const e=i.mod(c,this.genPoly),T=this.degree-e.length;if(T>0){const g=new Uint8Array(this.degree);return g.set(e,T),g}return e},Ae.exports=t},86439:(Ae,ee,l)=>{"use strict";l.d(ee,{Z:()=>ye});var i=l(51585),t=l(45383),p=l(21413),S=l(56977),c=l(4416),e=l(72730),T=l(2615),g=l(73664),d=l(98570),w=l(82571),m=l(95416),P=l(59640),M=l(72200),j=l(20060),U=l(88834),K=l(25596),q=l(71997),G=l(9183),Q=l(52920),$=l(16038),ae=l(38288),ue=l(29157),oe=l(89587);const he=Le=>({"display-none":Le}),me=Le=>({"xs-scroll-y":Le}),Te=(Le,Ke)=>({"mt-2":Le,"mt-1":Ke}),D=()=>[];function n(Le,Ke){if(1&Le&&g.nrm(0,"qr-code",29),2&Le){const ge=g.XpG();g.Y8G("value",null==ge.invoice?null:ge.invoice.serialized)("size",ge.qrWidth)}}function o(Le,Ke){1&Le&&(g.j41(0,"span",30),g.EFF(1,"N/A"),g.k0s())}function f(Le,Ke){if(1&Le&&g.nrm(0,"qr-code",29),2&Le){const ge=g.XpG();g.Y8G("value",null==ge.invoice?null:ge.invoice.serialized)("size",ge.qrWidth)}}function h(Le,Ke){1&Le&&(g.j41(0,"span",31),g.EFF(1,"QR Code Not Applicable"),g.k0s())}function b(Le,Ke){1&Le&&g.nrm(0,"mat-divider",32),2&Le&&g.Y8G("inset",!0)}function A(Le,Ke){1&Le&&(g.qex(0),g.EFF(1," (zero amount) "),g.bVm())}function k(Le,Ke){1&Le&&g.nrm(0,"span",38)}function x(Le,Ke){if(1&Le&&(g.j41(0,"div",34)(1,"div",35)(2,"span",36),g.EFF(3),g.nI1(4,"number"),g.k0s(),g.DNE(5,k,1,0,"span",37),g.k0s()()),2&Le){const ge=g.XpG(2);g.R7$(3),g.SpI("",g.bMT(4,2,null==ge.invoice?null:ge.invoice.amountSettled)," Sats"),g.R7$(2),g.Y8G("ngForOf",g.lJ4(4,D).constructor(35))}}function r(Le,Ke){if(1&Le&&(g.j41(0,"div"),g.EFF(1),g.nI1(2,"number"),g.k0s()),2&Le){const ge=g.XpG(2);g.R7$(),g.SpI("",g.bMT(2,1,null==ge.invoice?null:ge.invoice.amountSettled)," Sats")}}function _(Le,Ke){if(1&Le&&(g.qex(0),g.DNE(1,x,6,5,"div",33)(2,r,3,3,"div",20),g.bVm()),2&Le){const ge=g.XpG();g.R7$(),g.Y8G("ngIf",ge.flgInvoicePaid),g.R7$(),g.Y8G("ngIf",!ge.flgInvoicePaid)}}function W(Le,Ke){1&Le&&(g.j41(0,"span"),g.EFF(1,"-"),g.k0s())}function I(Le,Ke){1&Le&&g.nrm(0,"mat-spinner",40),2&Le&&g.Y8G("diameter",20)}function B(Le,Ke){if(1&Le&&(g.qex(0),g.DNE(1,W,2,0,"span",20)(2,I,1,1,"mat-spinner",39),g.bVm()),2&Le){const ge=g.XpG();g.R7$(),g.Y8G("ngIf","unpaid"!==(null==ge.invoice?null:ge.invoice.status)||!ge.flgVersionCompatible),g.R7$(),g.Y8G("ngIf","unpaid"===(null==ge.invoice?null:ge.invoice.status)&&ge.flgVersionCompatible)}}function re(Le,Ke){if(1&Le&&(g.j41(0,"div"),g.nrm(1,"mat-divider",21),g.j41(2,"div",16)(3,"div",41)(4,"h4",18),g.EFF(5,"Date Expiry"),g.k0s(),g.j41(6,"span",19),g.EFF(7),g.nI1(8,"date"),g.k0s()(),g.j41(9,"div",42)(10,"h4",18),g.EFF(11,"Date Settled"),g.k0s(),g.j41(12,"span",22),g.EFF(13),g.nI1(14,"date"),g.k0s()()(),g.nrm(15,"mat-divider",21),g.j41(16,"div",16)(17,"div",23)(18,"h4",18),g.EFF(19,"Payment Hash"),g.k0s(),g.j41(20,"span",22),g.EFF(21),g.k0s()()(),g.nrm(22,"mat-divider",21),g.j41(23,"div",16)(24,"div",23)(25,"h4",18),g.EFF(26,"Node ID"),g.k0s(),g.j41(27,"span",22),g.EFF(28),g.k0s()()(),g.nrm(29,"mat-divider",21),g.k0s()),2&Le){const ge=g.XpG();g.R7$(7),g.JRh(g.i5U(8,4,1e3*(null==ge.invoice?null:ge.invoice.expiresAt),"dd/MMM/y HH:mm")),g.R7$(6),g.JRh(g.i5U(14,7,1e3*(null==ge.invoice?null:ge.invoice.receivedAt),"dd/MMM/y HH:mm")),g.R7$(8),g.JRh(null==ge.invoice?null:ge.invoice.paymentHash),g.R7$(7),g.JRh(null==ge.invoice?null:ge.invoice.nodeId)}}function pe(Le,Ke){1&Le&&(g.j41(0,"p"),g.EFF(1,"Show Advanced"),g.k0s())}function be(Le,Ke){1&Le&&(g.j41(0,"p"),g.EFF(1,"Hide Advanced"),g.k0s())}function Be(Le,Ke){if(1&Le){const ge=g.RV6();g.j41(0,"button",43),g.bIt("copied",function(Oe){T.eBV(ge);const Ee=g.XpG();return T.Njj(Ee.onCopyPayment(Oe))}),g.EFF(1,"Copy Invoice"),g.k0s()}if(2&Le){const ge=g.XpG();g.Y8G("payload",null==ge.invoice?null:ge.invoice.serialized)}}function _e(Le,Ke){if(1&Le){const ge=g.RV6();g.j41(0,"button",44),g.bIt("click",function(){T.eBV(ge);const Oe=g.XpG();return T.Njj(Oe.onClose())}),g.EFF(1,"OK"),g.k0s()}}let ye=(()=>{var Le;class Ke{constructor(ve,Oe,Ee,dt,nt,Ct){this.dialogRef=ve,this.data=Oe,this.logger=Ee,this.commonService=dt,this.snackBar=nt,this.store=Ct,this.faReceipt=t.Mf0,this.faExclamationTriangle=t.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=c.f7,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new p.B,new p.B,new p.B,new p.B,new p.B]}ngOnInit(){this.invoice=this.data.invoice,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===c.f7.XS&&(this.qrWidth=220),this.store.select(e.p3).pipe((0,S.Q)(this.unSubs[0])).subscribe(ve=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(ve.version,"0.5.0")}),this.store.select(e.rN).pipe((0,S.Q)(this.unSubs[1])).subscribe(ve=>{const Oe=this.invoice.status,dt=(ve.invoices&&ve.invoices.length>0?ve.invoices:[])?.find(nt=>nt.paymentHash===this.invoice.paymentHash)||null;dt&&(this.invoice=dt),Oe!==this.invoice.status&&"received"===this.invoice.status&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(ve)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(ve){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+ve)}ngOnDestroy(){this.unSubs.forEach(ve=>{ve.next(null),ve.complete()})}static#e=Le=()=>(this.\u0275fac=function(Oe){return new(Oe||Ke)(g.rXU(i.CP),g.rXU(i.Vh),g.rXU(d.gP),g.rXU(w.h),g.rXU(m.UG),g.rXU(P.il))},this.\u0275cmp=g.VBU({type:Ke,selectors:[["rtl-ecl-invoice-information"]],standalone:!1,decls:68,vars:42,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"w-100","my-1"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"font-size-300"],[1,"font-size-120"],[1,"my-1",3,"inset"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],["fxFlex","40"],["fxFlex","60"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(Oe,Ee){if(1&Oe){const dt=g.RV6();g.j41(0,"div",1)(1,"div",2),g.DNE(2,n,1,2,"qr-code",3)(3,o,2,0,"span",4),g.k0s(),g.j41(4,"div",5)(5,"mat-card-header",6)(6,"div",7),g.nrm(7,"fa-icon",8),g.j41(8,"span",9),g.EFF(9),g.k0s()(),g.j41(10,"button",10),g.bIt("click",function(){return T.eBV(dt),T.Njj(Ee.onClose())}),g.EFF(11,"X"),g.k0s()(),g.j41(12,"mat-card-content",11)(13,"div",12)(14,"div",13),g.DNE(15,f,1,2,"qr-code",3)(16,h,2,0,"span",14),g.k0s(),g.DNE(17,b,1,1,"mat-divider",15),g.j41(18,"div",16)(19,"div",17)(20,"h4",18),g.EFF(21,"Amount Requested"),g.k0s(),g.j41(22,"span",19),g.EFF(23),g.nI1(24,"number"),g.DNE(25,A,2,0,"ng-container",20),g.k0s()(),g.j41(26,"div",17)(27,"h4",18),g.EFF(28,"Amount Settled"),g.k0s(),g.j41(29,"span",19),g.DNE(30,_,3,2,"ng-container",20)(31,B,3,2,"ng-container",20),g.k0s()()(),g.nrm(32,"mat-divider",21),g.j41(33,"div",16)(34,"div",17)(35,"h4",18),g.EFF(36,"Date Created"),g.k0s(),g.j41(37,"span",22),g.EFF(38),g.nI1(39,"date"),g.k0s()(),g.j41(40,"div",17)(41,"h4",18),g.EFF(42,"Status"),g.k0s(),g.j41(43,"span",22),g.EFF(44),g.nI1(45,"titlecase"),g.k0s()()(),g.nrm(46,"mat-divider",21),g.j41(47,"div",16)(48,"div",23)(49,"h4",18),g.EFF(50,"Description"),g.k0s(),g.j41(51,"span",19),g.EFF(52),g.k0s()()(),g.nrm(53,"mat-divider",21),g.j41(54,"div",16)(55,"div",23)(56,"h4",18),g.EFF(57,"Invoice"),g.k0s(),g.j41(58,"span",22),g.EFF(59),g.k0s()()(),g.DNE(60,re,30,10,"div",20),g.j41(61,"div",24)(62,"button",25),g.bIt("click",function(){return T.eBV(dt),T.Njj(Ee.onShowAdvanced())}),g.DNE(63,pe,2,0,"p",26)(64,be,2,0,"ng-template",null,0,g.C5r),g.k0s(),g.DNE(66,Be,2,1,"button",27)(67,_e,2,0,"button",28),g.k0s()()()()()}if(2&Oe){const dt=g.sdS(65);g.R7$(),g.Y8G("fxLayoutAlign",null!=Ee.invoice&&Ee.invoice.serialized&&""!==(null==Ee.invoice?null:Ee.invoice.serialized)?"center start":"center center")("ngClass",g.eq3(33,he,Ee.screenSize===Ee.screenSizeEnum.XS||Ee.screenSize===Ee.screenSizeEnum.SM)),g.R7$(),g.Y8G("ngIf",(null==Ee.invoice?null:Ee.invoice.serialized)&&""!==(null==Ee.invoice?null:Ee.invoice.serialized)),g.R7$(),g.Y8G("ngIf",!(null!=Ee.invoice&&Ee.invoice.serialized)||""===(null==Ee.invoice?null:Ee.invoice.serialized)),g.R7$(4),g.Y8G("icon",Ee.faReceipt),g.R7$(2),g.JRh(Ee.screenSize===Ee.screenSizeEnum.XS?Ee.newlyAdded?"Created":"Invoice":Ee.newlyAdded?"Invoice Created":"Invoice Information"),g.R7$(3),g.Y8G("ngClass",g.eq3(35,me,Ee.screenSize===Ee.screenSizeEnum.XS)),g.R7$(2),g.Y8G("fxLayoutAlign",null!=Ee.invoice&&Ee.invoice.serialized&&""!==(null==Ee.invoice?null:Ee.invoice.serialized)?"center start":"center center")("ngClass",g.eq3(37,he,Ee.screenSize!==Ee.screenSizeEnum.XS&&Ee.screenSize!==Ee.screenSizeEnum.SM)),g.R7$(),g.Y8G("ngIf",(null==Ee.invoice?null:Ee.invoice.serialized)&&""!==(null==Ee.invoice?null:Ee.invoice.serialized)),g.R7$(),g.Y8G("ngIf",!(null!=Ee.invoice&&Ee.invoice.serialized)||""===(null==Ee.invoice?null:Ee.invoice.serialized)),g.R7$(),g.Y8G("ngIf",Ee.screenSize===Ee.screenSizeEnum.XS||Ee.screenSize===Ee.screenSizeEnum.SM),g.R7$(6),g.SpI("",g.bMT(24,26,(null==Ee.invoice?null:Ee.invoice.amount)||0)," Sats"),g.R7$(2),g.Y8G("ngIf",!(null!=Ee.invoice&&Ee.invoice.amount)||"0"===(null==Ee.invoice?null:Ee.invoice.amount)),g.R7$(5),g.Y8G("ngIf",null==Ee.invoice?null:Ee.invoice.amountSettled),g.R7$(),g.Y8G("ngIf",!(null!=Ee.invoice&&Ee.invoice.amountSettled)),g.R7$(7),g.JRh(g.i5U(39,28,1e3*(null==Ee.invoice?null:Ee.invoice.timestamp),"dd/MMM/y HH:mm")),g.R7$(6),g.JRh(g.bMT(45,31,null==Ee.invoice?null:Ee.invoice.status)),g.R7$(8),g.JRh((null==Ee.invoice?null:Ee.invoice.description)||"-"),g.R7$(7),g.JRh((null==Ee.invoice?null:Ee.invoice.serialized)||"N/A"),g.R7$(),g.Y8G("ngIf",Ee.showAdvanced),g.R7$(),g.Y8G("ngClass",g.l_i(39,Te,!Ee.showAdvanced,Ee.showAdvanced)),g.R7$(2),g.Y8G("ngIf",!Ee.showAdvanced)("ngIfElse",dt),g.R7$(3),g.Y8G("ngIf",(null==Ee.invoice?null:Ee.invoice.serialized)&&""!==(null==Ee.invoice?null:Ee.invoice.serialized)),g.R7$(),g.Y8G("ngIf",!(null!=Ee.invoice&&Ee.invoice.serialized)||""===(null==Ee.invoice?null:Ee.invoice.serialized))}},dependencies:[M.YU,M.Sq,M.bT,j.aY,U.$z,K.m2,K.MM,q.q,G.LG,Q.DJ,Q.sA,Q.UI,$.PW,ae.Um,ue.U,oe.N,M.QX,M.PV,M.vh],encapsulation:2}))}return Le(),Ke})()},87222:(Ae,ee,l)=>{"use strict";var i=l(3136),t=i.assert,p=i.parseBytes,S=i.cachedProperty;function c(e,T){this.eddsa=e,this._secret=p(T.secret),e.isPoint(T.pub)?this._pub=T.pub:this._pubBytes=p(T.pub)}c.fromPublic=function(T,g){return g instanceof c?g:new c(T,{pub:g})},c.fromSecret=function(T,g){return g instanceof c?g:new c(T,{secret:g})},c.prototype.secret=function(){return this._secret},S(c,"pubBytes",function(){return this.eddsa.encodePoint(this.pub())}),S(c,"pub",function(){return this._pubBytes?this.eddsa.decodePoint(this._pubBytes):this.eddsa.g.mul(this.priv())}),S(c,"privBytes",function(){var T=this.eddsa,g=this.hash(),d=T.encodingLength-1,w=g.slice(0,T.encodingLength);return w[0]&=248,w[d]&=127,w[d]|=64,w}),S(c,"priv",function(){return this.eddsa.decodeInt(this.privBytes())}),S(c,"hash",function(){return this.eddsa.hash().update(this.secret()).digest()}),S(c,"messagePrefix",function(){return this.hash().slice(this.eddsa.encodingLength)}),c.prototype.sign=function(T){return t(this._secret,"KeyPair can only verify"),this.eddsa.sign(T,this)},c.prototype.verify=function(T,g){return this.eddsa.verify(T,g,this)},c.prototype.getSecret=function(T){return t(this._secret,"KeyPair is public only"),i.encode(this.secret(),T)},c.prototype.getPublic=function(T){return i.encode(this.pubBytes(),T)},Ae.exports=c},87267:(Ae,ee,l)=>{var i=l(65667),t=l(3342),p=l(67211),S=l(30715),c=l(37196),e=l(16508),T=l(10568),g=l(14105),d=l(27054).Buffer;Ae.exports=function(j,U,K){var q;q=j.padding?j.padding:K?1:4;var Q,G=i(j);if(4===q)Q=function w(M,j){var U=M.modulus.byteLength(),K=j.length,q=p("sha1").update(d.alloc(0)).digest(),G=q.length,Q=2*G;if(K>U-Q-2)throw new Error("message too long");var $=d.alloc(U-K-Q-2),ae=U-G-1,ue=t(G),oe=c(d.concat([q,$,d.alloc(1,1),j],ae),S(ue,ae)),he=c(ue,S(oe,G));return new e(d.concat([d.alloc(1),he,oe],U))}(G,U);else if(1===q)Q=function m(M,j,U){var G,K=j.length,q=M.modulus.byteLength();if(K>q-11)throw new Error("message too long");return G=U?d.alloc(q-K-3,255):function P(M){for(var G,j=d.allocUnsafe(M),U=0,K=t(2*M),q=0;U=0)throw new Error("data too long for modulus")}return K?g(Q,G):T(Q,G)}},87303:(Ae,ee,l)=>{var i=l(90518),t=l(89606);Ae.exports=function(T){return new S(T)};var p={secp256k1:{name:"secp256k1",byteLength:32},secp224r1:{name:"p224",byteLength:28},prime256v1:{name:"p256",byteLength:32},prime192v1:{name:"p192",byteLength:24},ed25519:{name:"ed25519",byteLength:32},secp384r1:{name:"p384",byteLength:48},secp521r1:{name:"p521",byteLength:66}};function S(e){this.curveType=p[e],this.curveType||(this.curveType={name:e}),this.curve=new i.ec(this.curveType.name),this.keys=void 0}function c(e,T,g){Array.isArray(e)||(e=e.toArray());var d=new Buffer(e);if(g&&d.length{"use strict";l.d(ee,{M:()=>c});var i=l(98071),t=l(39974),p=l(54360),S=l(33669);function c(e,T,g){const d=(0,i.T)(e)||T||g?{next:e,error:T,complete:g}:e;return d?(0,t.N)((w,m)=>{var P;null===(P=d.subscribe)||void 0===P||P.call(d);let M=!0;w.subscribe((0,p._)(m,j=>{var U;null===(U=d.next)||void 0===U||U.call(d,j),m.next(j)},()=>{var j;M=!1,null===(j=d.complete)||void 0===j||j.call(d),m.complete()},j=>{var U;M=!1,null===(U=d.error)||void 0===U||U.call(d,j),m.error(j)},()=>{var j,U;M&&(null===(j=d.unsubscribe)||void 0===j||j.call(d)),null===(U=d.finalize)||void 0===U||U.call(d)}))}):S.D}},88152:Ae=>{"use strict";function l(c,e){p(c,e),i(c)}function i(c){c._writableState&&!c._writableState.emitClose||c._readableState&&!c._readableState.emitClose||c.emit("close")}function p(c,e){c.emit("error",e)}Ae.exports={destroy:function ee(c,e){var T=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(e?e(c):c&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,process.nextTick(p,this,c)):process.nextTick(p,this,c)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(c||null,function(w){!e&&w?T._writableState?T._writableState.errorEmitted?process.nextTick(i,T):(T._writableState.errorEmitted=!0,process.nextTick(l,T,w)):process.nextTick(l,T,w):e?(process.nextTick(i,T),e(w)):process.nextTick(i,T)}),this)},undestroy:function t(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},errorOrDestroy:function S(c,e){var T=c._readableState,g=c._writableState;T&&T.autoDestroy||g&&g.autoDestroy?c.destroy(e):c.emit("error",e)}}},88723:function(Ae,ee,l){!function(i,t){"use strict";function p(D,n){if(!D)throw new Error(n||"Assertion failed")}function S(D,n){D.super_=n;var o=function(){};o.prototype=n.prototype,D.prototype=new o,D.prototype.constructor=D}function c(D,n,o){if(c.isBN(D))return D;this.negative=0,this.words=null,this.length=0,this.red=null,null!==D&&(("le"===n||"be"===n)&&(o=n,n=10),this._init(D||0,n||10,o||"be"))}var e;"object"==typeof i?i.exports=c:t.BN=c,c.BN=c,c.wordSize=26;try{e=typeof window<"u"&&typeof window.Buffer<"u"?window.Buffer:l(79368).Buffer}catch{}function T(D,n){var o=D.charCodeAt(n);return o>=65&&o<=70?o-55:o>=97&&o<=102?o-87:o-48&15}function g(D,n,o){var f=T(D,o);return o-1>=n&&(f|=T(D,o-1)<<4),f}function d(D,n,o,f){for(var h=0,b=Math.min(D.length,o),A=n;A=49?k-49+10:k>=17?k-17+10:k}return h}c.isBN=function(n){return n instanceof c||null!==n&&"object"==typeof n&&n.constructor.wordSize===c.wordSize&&Array.isArray(n.words)},c.max=function(n,o){return n.cmp(o)>0?n:o},c.min=function(n,o){return n.cmp(o)<0?n:o},c.prototype._init=function(n,o,f){if("number"==typeof n)return this._initNumber(n,o,f);if("object"==typeof n)return this._initArray(n,o,f);"hex"===o&&(o=16),p(o===(0|o)&&o>=2&&o<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[b]|=(A=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-k&67108863,(k+=24)>=26&&(k-=26,b++);else if("le"===f)for(h=0,b=0;h>>26-k&67108863,(k+=24)>=26&&(k-=26,b++);return this.strip()},c.prototype._parseHex=function(n,o,f){this.length=Math.ceil((n.length-o)/6),this.words=new Array(this.length);for(var h=0;h=o;h-=2)k=g(n,o,h)<=18?(b-=18,this.words[A+=1]|=k>>>26):b+=8;else for(h=(n.length-o)%2==0?o+1:o;h=18?(b-=18,this.words[A+=1]|=k>>>26):b+=8;this.strip()},c.prototype._parseBase=function(n,o,f){this.words=[0],this.length=1;for(var h=0,b=1;b<=67108863;b*=o)h++;h--,b=b/o|0;for(var A=n.length-f,k=A%h,x=Math.min(A,A-k)+f,r=0,_=f;_1&&0===this.words[this.length-1];)this.length--;return this._normSign()},c.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},c.prototype.inspect=function(){return(this.red?""};var w=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],m=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],P=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function j(D,n,o){o.negative=n.negative^D.negative;var f=D.length+n.length|0;o.length=f,f=f-1|0;var h=0|D.words[0],b=0|n.words[0],A=h*b,x=A/67108864|0;o.words[0]=67108863&A;for(var r=1;r>>26,W=67108863&x,I=Math.min(r,n.length-1),B=Math.max(0,r-D.length+1);B<=I;B++)_+=(A=(h=0|D.words[r-B|0])*(b=0|n.words[B])+W)/67108864|0,W=67108863&A;o.words[r]=0|W,x=0|_}return 0!==x?o.words[r]=0|x:o.length--,o.strip()}c.prototype.toString=function(n,o){var f;if(o=0|o||1,16===(n=n||10)||"hex"===n){f="";for(var h=0,b=0,A=0;A>>24-h&16777215,(h+=2)>=26&&(h-=26,A--),f=0!==b||A!==this.length-1?w[6-x.length]+x+f:x+f}for(0!==b&&(f=b.toString(16)+f);f.length%o!==0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}if(n===(0|n)&&n>=2&&n<=36){var r=m[n],_=P[n];f="";var W=this.clone();for(W.negative=0;!W.isZero();){var I=W.modn(_).toString(n);f=(W=W.idivn(_)).isZero()?I+f:w[r-I.length]+I+f}for(this.isZero()&&(f="0"+f);f.length%o!==0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}p(!1,"Base should be between 2 and 36")},c.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&p(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},c.prototype.toJSON=function(){return this.toString(16)},c.prototype.toBuffer=function(n,o){return p(typeof e<"u"),this.toArrayLike(e,n,o)},c.prototype.toArray=function(n,o){return this.toArrayLike(Array,n,o)},c.prototype.toArrayLike=function(n,o,f){var h=this.byteLength(),b=f||Math.max(1,h);p(h<=b,"byte array longer than desired length"),p(b>0,"Requested array length <= 0"),this.strip();var x,r,A="le"===o,k=new n(b),_=this.clone();if(A){for(r=0;!_.isZero();r++)x=_.andln(255),_.iushrn(8),k[r]=x;for(;r=4096&&(f+=13,o>>>=13),o>=64&&(f+=7,o>>>=7),o>=8&&(f+=4,o>>>=4),o>=2&&(f+=2,o>>>=2),f+o},c.prototype._zeroBits=function(n){if(0===n)return 26;var o=n,f=0;return!(8191&o)&&(f+=13,o>>>=13),!(127&o)&&(f+=7,o>>>=7),!(15&o)&&(f+=4,o>>>=4),!(3&o)&&(f+=2,o>>>=2),!(1&o)&&f++,f},c.prototype.bitLength=function(){var o=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+o},c.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,o=0;on.length?this.clone().ior(n):n.clone().ior(this)},c.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},c.prototype.iuand=function(n){var o;o=this.length>n.length?n:this;for(var f=0;fn.length?this.clone().iand(n):n.clone().iand(this)},c.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},c.prototype.iuxor=function(n){var o,f;this.length>n.length?(o=this,f=n):(o=n,f=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},c.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},c.prototype.inotn=function(n){p("number"==typeof n&&n>=0);var o=0|Math.ceil(n/26),f=n%26;this._expand(o),f>0&&o--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-f),this.strip()},c.prototype.notn=function(n){return this.clone().inotn(n)},c.prototype.setn=function(n,o){p("number"==typeof n&&n>=0);var f=n/26|0,h=n%26;return this._expand(f+1),this.words[f]=o?this.words[f]|1<n.length?(f=this,h=n):(f=n,h=this);for(var b=0,A=0;A>>26;for(;0!==b&&A>>26;if(this.length=f.length,0!==b)this.words[this.length]=b,this.length++;else if(f!==this)for(;An.length?this.clone().iadd(n):n.clone().iadd(this)},c.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var o=this.iadd(n);return n.negative=1,o._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,b,f=this.cmp(n);if(0===f)return this.negative=0,this.length=1,this.words[0]=0,this;f>0?(h=this,b=n):(h=n,b=this);for(var A=0,k=0;k>26,this.words[k]=67108863&o;for(;0!==A&&k>26,this.words[k]=67108863&o;if(0===A&&k>>13,re=0|h[1],pe=8191&re,be=re>>>13,Be=0|h[2],_e=8191&Be,ye=Be>>>13,Le=0|h[3],Ke=8191&Le,ge=Le>>>13,ve=0|h[4],Oe=8191&ve,Ee=ve>>>13,dt=0|h[5],nt=8191&dt,Ct=dt>>>13,Mt=0|h[6],lt=8191&Mt,Pe=Mt>>>13,Ht=0|h[7],ct=8191&Ht,Ce=Ht>>>13,ze=0|h[8],Z=8191&ze,J=ze>>>13,fe=0|h[9],Ie=8191&fe,ht=fe>>>13,li=0|b[0],Qt=8191&li,di=li>>>13,kt=0|b[1],Rt=8191&kt,le=kt>>>13,te=0|b[2],ce=8191&te,se=te>>>13,ke=0|b[3],Ue=8191&ke,Ne=ke>>>13,Kt=0|b[4],yt=8191&Kt,Vt=Kt>>>13,Zt=0|b[5],ti=8191&Zt,Ye=Zt>>>13,Nt=0|b[6],Et=8191&Nt,Jt=Nt>>>13,qe=0|b[7],$e=8191&qe,tt=qe>>>13,vi=0|b[8],ei=8191&vi,ci=vi>>>13,Hi=0|b[9],oi=8191&Hi,ui=Hi>>>13;f.negative=n.negative^o.negative,f.length=19;var ln=(k+(x=Math.imul(I,Qt))|0)+((8191&(r=(r=Math.imul(I,di))+Math.imul(B,Qt)|0))<<13)|0;k=((_=Math.imul(B,di))+(r>>>13)|0)+(ln>>>26)|0,ln&=67108863,x=Math.imul(pe,Qt),r=(r=Math.imul(pe,di))+Math.imul(be,Qt)|0,_=Math.imul(be,di);var nn=(k+(x=x+Math.imul(I,Rt)|0)|0)+((8191&(r=(r=r+Math.imul(I,le)|0)+Math.imul(B,Rt)|0))<<13)|0;k=((_=_+Math.imul(B,le)|0)+(r>>>13)|0)+(nn>>>26)|0,nn&=67108863,x=Math.imul(_e,Qt),r=(r=Math.imul(_e,di))+Math.imul(ye,Qt)|0,_=Math.imul(ye,di),x=x+Math.imul(pe,Rt)|0,r=(r=r+Math.imul(pe,le)|0)+Math.imul(be,Rt)|0,_=_+Math.imul(be,le)|0;var dn=(k+(x=x+Math.imul(I,ce)|0)|0)+((8191&(r=(r=r+Math.imul(I,se)|0)+Math.imul(B,ce)|0))<<13)|0;k=((_=_+Math.imul(B,se)|0)+(r>>>13)|0)+(dn>>>26)|0,dn&=67108863,x=Math.imul(Ke,Qt),r=(r=Math.imul(Ke,di))+Math.imul(ge,Qt)|0,_=Math.imul(ge,di),x=x+Math.imul(_e,Rt)|0,r=(r=r+Math.imul(_e,le)|0)+Math.imul(ye,Rt)|0,_=_+Math.imul(ye,le)|0,x=x+Math.imul(pe,ce)|0,r=(r=r+Math.imul(pe,se)|0)+Math.imul(be,ce)|0,_=_+Math.imul(be,se)|0;var zn=(k+(x=x+Math.imul(I,Ue)|0)|0)+((8191&(r=(r=r+Math.imul(I,Ne)|0)+Math.imul(B,Ue)|0))<<13)|0;k=((_=_+Math.imul(B,Ne)|0)+(r>>>13)|0)+(zn>>>26)|0,zn&=67108863,x=Math.imul(Oe,Qt),r=(r=Math.imul(Oe,di))+Math.imul(Ee,Qt)|0,_=Math.imul(Ee,di),x=x+Math.imul(Ke,Rt)|0,r=(r=r+Math.imul(Ke,le)|0)+Math.imul(ge,Rt)|0,_=_+Math.imul(ge,le)|0,x=x+Math.imul(_e,ce)|0,r=(r=r+Math.imul(_e,se)|0)+Math.imul(ye,ce)|0,_=_+Math.imul(ye,se)|0,x=x+Math.imul(pe,Ue)|0,r=(r=r+Math.imul(pe,Ne)|0)+Math.imul(be,Ue)|0,_=_+Math.imul(be,Ne)|0;var It=(k+(x=x+Math.imul(I,yt)|0)|0)+((8191&(r=(r=r+Math.imul(I,Vt)|0)+Math.imul(B,yt)|0))<<13)|0;k=((_=_+Math.imul(B,Vt)|0)+(r>>>13)|0)+(It>>>26)|0,It&=67108863,x=Math.imul(nt,Qt),r=(r=Math.imul(nt,di))+Math.imul(Ct,Qt)|0,_=Math.imul(Ct,di),x=x+Math.imul(Oe,Rt)|0,r=(r=r+Math.imul(Oe,le)|0)+Math.imul(Ee,Rt)|0,_=_+Math.imul(Ee,le)|0,x=x+Math.imul(Ke,ce)|0,r=(r=r+Math.imul(Ke,se)|0)+Math.imul(ge,ce)|0,_=_+Math.imul(ge,se)|0,x=x+Math.imul(_e,Ue)|0,r=(r=r+Math.imul(_e,Ne)|0)+Math.imul(ye,Ue)|0,_=_+Math.imul(ye,Ne)|0,x=x+Math.imul(pe,yt)|0,r=(r=r+Math.imul(pe,Vt)|0)+Math.imul(be,yt)|0,_=_+Math.imul(be,Vt)|0;var Tt=(k+(x=x+Math.imul(I,ti)|0)|0)+((8191&(r=(r=r+Math.imul(I,Ye)|0)+Math.imul(B,ti)|0))<<13)|0;k=((_=_+Math.imul(B,Ye)|0)+(r>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,x=Math.imul(lt,Qt),r=(r=Math.imul(lt,di))+Math.imul(Pe,Qt)|0,_=Math.imul(Pe,di),x=x+Math.imul(nt,Rt)|0,r=(r=r+Math.imul(nt,le)|0)+Math.imul(Ct,Rt)|0,_=_+Math.imul(Ct,le)|0,x=x+Math.imul(Oe,ce)|0,r=(r=r+Math.imul(Oe,se)|0)+Math.imul(Ee,ce)|0,_=_+Math.imul(Ee,se)|0,x=x+Math.imul(Ke,Ue)|0,r=(r=r+Math.imul(Ke,Ne)|0)+Math.imul(ge,Ue)|0,_=_+Math.imul(ge,Ne)|0,x=x+Math.imul(_e,yt)|0,r=(r=r+Math.imul(_e,Vt)|0)+Math.imul(ye,yt)|0,_=_+Math.imul(ye,Vt)|0,x=x+Math.imul(pe,ti)|0,r=(r=r+Math.imul(pe,Ye)|0)+Math.imul(be,ti)|0,_=_+Math.imul(be,Ye)|0;var Ze=(k+(x=x+Math.imul(I,Et)|0)|0)+((8191&(r=(r=r+Math.imul(I,Jt)|0)+Math.imul(B,Et)|0))<<13)|0;k=((_=_+Math.imul(B,Jt)|0)+(r>>>13)|0)+(Ze>>>26)|0,Ze&=67108863,x=Math.imul(ct,Qt),r=(r=Math.imul(ct,di))+Math.imul(Ce,Qt)|0,_=Math.imul(Ce,di),x=x+Math.imul(lt,Rt)|0,r=(r=r+Math.imul(lt,le)|0)+Math.imul(Pe,Rt)|0,_=_+Math.imul(Pe,le)|0,x=x+Math.imul(nt,ce)|0,r=(r=r+Math.imul(nt,se)|0)+Math.imul(Ct,ce)|0,_=_+Math.imul(Ct,se)|0,x=x+Math.imul(Oe,Ue)|0,r=(r=r+Math.imul(Oe,Ne)|0)+Math.imul(Ee,Ue)|0,_=_+Math.imul(Ee,Ne)|0,x=x+Math.imul(Ke,yt)|0,r=(r=r+Math.imul(Ke,Vt)|0)+Math.imul(ge,yt)|0,_=_+Math.imul(ge,Vt)|0,x=x+Math.imul(_e,ti)|0,r=(r=r+Math.imul(_e,Ye)|0)+Math.imul(ye,ti)|0,_=_+Math.imul(ye,Ye)|0,x=x+Math.imul(pe,Et)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(be,Et)|0,_=_+Math.imul(be,Jt)|0;var Ve=(k+(x=x+Math.imul(I,$e)|0)|0)+((8191&(r=(r=r+Math.imul(I,tt)|0)+Math.imul(B,$e)|0))<<13)|0;k=((_=_+Math.imul(B,tt)|0)+(r>>>13)|0)+(Ve>>>26)|0,Ve&=67108863,x=Math.imul(Z,Qt),r=(r=Math.imul(Z,di))+Math.imul(J,Qt)|0,_=Math.imul(J,di),x=x+Math.imul(ct,Rt)|0,r=(r=r+Math.imul(ct,le)|0)+Math.imul(Ce,Rt)|0,_=_+Math.imul(Ce,le)|0,x=x+Math.imul(lt,ce)|0,r=(r=r+Math.imul(lt,se)|0)+Math.imul(Pe,ce)|0,_=_+Math.imul(Pe,se)|0,x=x+Math.imul(nt,Ue)|0,r=(r=r+Math.imul(nt,Ne)|0)+Math.imul(Ct,Ue)|0,_=_+Math.imul(Ct,Ne)|0,x=x+Math.imul(Oe,yt)|0,r=(r=r+Math.imul(Oe,Vt)|0)+Math.imul(Ee,yt)|0,_=_+Math.imul(Ee,Vt)|0,x=x+Math.imul(Ke,ti)|0,r=(r=r+Math.imul(Ke,Ye)|0)+Math.imul(ge,ti)|0,_=_+Math.imul(ge,Ye)|0,x=x+Math.imul(_e,Et)|0,r=(r=r+Math.imul(_e,Jt)|0)+Math.imul(ye,Et)|0,_=_+Math.imul(ye,Jt)|0,x=x+Math.imul(pe,$e)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(be,$e)|0,_=_+Math.imul(be,tt)|0;var Fe=(k+(x=x+Math.imul(I,ei)|0)|0)+((8191&(r=(r=r+Math.imul(I,ci)|0)+Math.imul(B,ei)|0))<<13)|0;k=((_=_+Math.imul(B,ci)|0)+(r>>>13)|0)+(Fe>>>26)|0,Fe&=67108863,x=Math.imul(Ie,Qt),r=(r=Math.imul(Ie,di))+Math.imul(ht,Qt)|0,_=Math.imul(ht,di),x=x+Math.imul(Z,Rt)|0,r=(r=r+Math.imul(Z,le)|0)+Math.imul(J,Rt)|0,_=_+Math.imul(J,le)|0,x=x+Math.imul(ct,ce)|0,r=(r=r+Math.imul(ct,se)|0)+Math.imul(Ce,ce)|0,_=_+Math.imul(Ce,se)|0,x=x+Math.imul(lt,Ue)|0,r=(r=r+Math.imul(lt,Ne)|0)+Math.imul(Pe,Ue)|0,_=_+Math.imul(Pe,Ne)|0,x=x+Math.imul(nt,yt)|0,r=(r=r+Math.imul(nt,Vt)|0)+Math.imul(Ct,yt)|0,_=_+Math.imul(Ct,Vt)|0,x=x+Math.imul(Oe,ti)|0,r=(r=r+Math.imul(Oe,Ye)|0)+Math.imul(Ee,ti)|0,_=_+Math.imul(Ee,Ye)|0,x=x+Math.imul(Ke,Et)|0,r=(r=r+Math.imul(Ke,Jt)|0)+Math.imul(ge,Et)|0,_=_+Math.imul(ge,Jt)|0,x=x+Math.imul(_e,$e)|0,r=(r=r+Math.imul(_e,tt)|0)+Math.imul(ye,$e)|0,_=_+Math.imul(ye,tt)|0,x=x+Math.imul(pe,ei)|0,r=(r=r+Math.imul(pe,ci)|0)+Math.imul(be,ei)|0,_=_+Math.imul(be,ci)|0;var it=(k+(x=x+Math.imul(I,oi)|0)|0)+((8191&(r=(r=r+Math.imul(I,ui)|0)+Math.imul(B,oi)|0))<<13)|0;k=((_=_+Math.imul(B,ui)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,x=Math.imul(Ie,Rt),r=(r=Math.imul(Ie,le))+Math.imul(ht,Rt)|0,_=Math.imul(ht,le),x=x+Math.imul(Z,ce)|0,r=(r=r+Math.imul(Z,se)|0)+Math.imul(J,ce)|0,_=_+Math.imul(J,se)|0,x=x+Math.imul(ct,Ue)|0,r=(r=r+Math.imul(ct,Ne)|0)+Math.imul(Ce,Ue)|0,_=_+Math.imul(Ce,Ne)|0,x=x+Math.imul(lt,yt)|0,r=(r=r+Math.imul(lt,Vt)|0)+Math.imul(Pe,yt)|0,_=_+Math.imul(Pe,Vt)|0,x=x+Math.imul(nt,ti)|0,r=(r=r+Math.imul(nt,Ye)|0)+Math.imul(Ct,ti)|0,_=_+Math.imul(Ct,Ye)|0,x=x+Math.imul(Oe,Et)|0,r=(r=r+Math.imul(Oe,Jt)|0)+Math.imul(Ee,Et)|0,_=_+Math.imul(Ee,Jt)|0,x=x+Math.imul(Ke,$e)|0,r=(r=r+Math.imul(Ke,tt)|0)+Math.imul(ge,$e)|0,_=_+Math.imul(ge,tt)|0,x=x+Math.imul(_e,ei)|0,r=(r=r+Math.imul(_e,ci)|0)+Math.imul(ye,ei)|0,_=_+Math.imul(ye,ci)|0;var bt=(k+(x=x+Math.imul(pe,oi)|0)|0)+((8191&(r=(r=r+Math.imul(pe,ui)|0)+Math.imul(be,oi)|0))<<13)|0;k=((_=_+Math.imul(be,ui)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863,x=Math.imul(Ie,ce),r=(r=Math.imul(Ie,se))+Math.imul(ht,ce)|0,_=Math.imul(ht,se),x=x+Math.imul(Z,Ue)|0,r=(r=r+Math.imul(Z,Ne)|0)+Math.imul(J,Ue)|0,_=_+Math.imul(J,Ne)|0,x=x+Math.imul(ct,yt)|0,r=(r=r+Math.imul(ct,Vt)|0)+Math.imul(Ce,yt)|0,_=_+Math.imul(Ce,Vt)|0,x=x+Math.imul(lt,ti)|0,r=(r=r+Math.imul(lt,Ye)|0)+Math.imul(Pe,ti)|0,_=_+Math.imul(Pe,Ye)|0,x=x+Math.imul(nt,Et)|0,r=(r=r+Math.imul(nt,Jt)|0)+Math.imul(Ct,Et)|0,_=_+Math.imul(Ct,Jt)|0,x=x+Math.imul(Oe,$e)|0,r=(r=r+Math.imul(Oe,tt)|0)+Math.imul(Ee,$e)|0,_=_+Math.imul(Ee,tt)|0,x=x+Math.imul(Ke,ei)|0,r=(r=r+Math.imul(Ke,ci)|0)+Math.imul(ge,ei)|0,_=_+Math.imul(ge,ci)|0;var ut=(k+(x=x+Math.imul(_e,oi)|0)|0)+((8191&(r=(r=r+Math.imul(_e,ui)|0)+Math.imul(ye,oi)|0))<<13)|0;k=((_=_+Math.imul(ye,ui)|0)+(r>>>13)|0)+(ut>>>26)|0,ut&=67108863,x=Math.imul(Ie,Ue),r=(r=Math.imul(Ie,Ne))+Math.imul(ht,Ue)|0,_=Math.imul(ht,Ne),x=x+Math.imul(Z,yt)|0,r=(r=r+Math.imul(Z,Vt)|0)+Math.imul(J,yt)|0,_=_+Math.imul(J,Vt)|0,x=x+Math.imul(ct,ti)|0,r=(r=r+Math.imul(ct,Ye)|0)+Math.imul(Ce,ti)|0,_=_+Math.imul(Ce,Ye)|0,x=x+Math.imul(lt,Et)|0,r=(r=r+Math.imul(lt,Jt)|0)+Math.imul(Pe,Et)|0,_=_+Math.imul(Pe,Jt)|0,x=x+Math.imul(nt,$e)|0,r=(r=r+Math.imul(nt,tt)|0)+Math.imul(Ct,$e)|0,_=_+Math.imul(Ct,tt)|0,x=x+Math.imul(Oe,ei)|0,r=(r=r+Math.imul(Oe,ci)|0)+Math.imul(Ee,ei)|0,_=_+Math.imul(Ee,ci)|0;var jt=(k+(x=x+Math.imul(Ke,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Ke,ui)|0)+Math.imul(ge,oi)|0))<<13)|0;k=((_=_+Math.imul(ge,ui)|0)+(r>>>13)|0)+(jt>>>26)|0,jt&=67108863,x=Math.imul(Ie,yt),r=(r=Math.imul(Ie,Vt))+Math.imul(ht,yt)|0,_=Math.imul(ht,Vt),x=x+Math.imul(Z,ti)|0,r=(r=r+Math.imul(Z,Ye)|0)+Math.imul(J,ti)|0,_=_+Math.imul(J,Ye)|0,x=x+Math.imul(ct,Et)|0,r=(r=r+Math.imul(ct,Jt)|0)+Math.imul(Ce,Et)|0,_=_+Math.imul(Ce,Jt)|0,x=x+Math.imul(lt,$e)|0,r=(r=r+Math.imul(lt,tt)|0)+Math.imul(Pe,$e)|0,_=_+Math.imul(Pe,tt)|0,x=x+Math.imul(nt,ei)|0,r=(r=r+Math.imul(nt,ci)|0)+Math.imul(Ct,ei)|0,_=_+Math.imul(Ct,ci)|0;var ai=(k+(x=x+Math.imul(Oe,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Oe,ui)|0)+Math.imul(Ee,oi)|0))<<13)|0;k=((_=_+Math.imul(Ee,ui)|0)+(r>>>13)|0)+(ai>>>26)|0,ai&=67108863,x=Math.imul(Ie,ti),r=(r=Math.imul(Ie,Ye))+Math.imul(ht,ti)|0,_=Math.imul(ht,Ye),x=x+Math.imul(Z,Et)|0,r=(r=r+Math.imul(Z,Jt)|0)+Math.imul(J,Et)|0,_=_+Math.imul(J,Jt)|0,x=x+Math.imul(ct,$e)|0,r=(r=r+Math.imul(ct,tt)|0)+Math.imul(Ce,$e)|0,_=_+Math.imul(Ce,tt)|0,x=x+Math.imul(lt,ei)|0,r=(r=r+Math.imul(lt,ci)|0)+Math.imul(Pe,ei)|0,_=_+Math.imul(Pe,ci)|0;var pi=(k+(x=x+Math.imul(nt,oi)|0)|0)+((8191&(r=(r=r+Math.imul(nt,ui)|0)+Math.imul(Ct,oi)|0))<<13)|0;k=((_=_+Math.imul(Ct,ui)|0)+(r>>>13)|0)+(pi>>>26)|0,pi&=67108863,x=Math.imul(Ie,Et),r=(r=Math.imul(Ie,Jt))+Math.imul(ht,Et)|0,_=Math.imul(ht,Jt),x=x+Math.imul(Z,$e)|0,r=(r=r+Math.imul(Z,tt)|0)+Math.imul(J,$e)|0,_=_+Math.imul(J,tt)|0,x=x+Math.imul(ct,ei)|0,r=(r=r+Math.imul(ct,ci)|0)+Math.imul(Ce,ei)|0,_=_+Math.imul(Ce,ci)|0;var ki=(k+(x=x+Math.imul(lt,oi)|0)|0)+((8191&(r=(r=r+Math.imul(lt,ui)|0)+Math.imul(Pe,oi)|0))<<13)|0;k=((_=_+Math.imul(Pe,ui)|0)+(r>>>13)|0)+(ki>>>26)|0,ki&=67108863,x=Math.imul(Ie,$e),r=(r=Math.imul(Ie,tt))+Math.imul(ht,$e)|0,_=Math.imul(ht,tt),x=x+Math.imul(Z,ei)|0,r=(r=r+Math.imul(Z,ci)|0)+Math.imul(J,ei)|0,_=_+Math.imul(J,ci)|0;var Ki=(k+(x=x+Math.imul(ct,oi)|0)|0)+((8191&(r=(r=r+Math.imul(ct,ui)|0)+Math.imul(Ce,oi)|0))<<13)|0;k=((_=_+Math.imul(Ce,ui)|0)+(r>>>13)|0)+(Ki>>>26)|0,Ki&=67108863,x=Math.imul(Ie,ei),r=(r=Math.imul(Ie,ci))+Math.imul(ht,ei)|0,_=Math.imul(ht,ci);var Ji=(k+(x=x+Math.imul(Z,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Z,ui)|0)+Math.imul(J,oi)|0))<<13)|0;k=((_=_+Math.imul(J,ui)|0)+(r>>>13)|0)+(Ji>>>26)|0,Ji&=67108863;var Dn=(k+(x=Math.imul(Ie,oi))|0)+((8191&(r=(r=Math.imul(Ie,ui))+Math.imul(ht,oi)|0))<<13)|0;return k=((_=Math.imul(ht,ui))+(r>>>13)|0)+(Dn>>>26)|0,Dn&=67108863,A[0]=ln,A[1]=nn,A[2]=dn,A[3]=zn,A[4]=It,A[5]=Tt,A[6]=Ze,A[7]=Ve,A[8]=Fe,A[9]=it,A[10]=bt,A[11]=ut,A[12]=jt,A[13]=ai,A[14]=pi,A[15]=ki,A[16]=Ki,A[17]=Ji,A[18]=Dn,0!==k&&(A[19]=k,f.length++),f};function q(D,n,o){return(new G).mulp(D,n,o)}function G(D,n){this.x=D,this.y=n}Math.imul||(U=j),c.prototype.mulTo=function(n,o){var f,h=this.length+n.length;return f=10===this.length&&10===n.length?U(this,n,o):h<63?j(this,n,o):h<1024?function K(D,n,o){o.negative=n.negative^D.negative,o.length=D.length+n.length;for(var f=0,h=0,b=0;b>>26)|0)>>>26,A&=67108863}o.words[b]=k,f=A,A=h}return 0!==f?o.words[b]=f:o.length--,o.strip()}(this,n,o):q(this,n,o),f},G.prototype.makeRBT=function(n){for(var o=new Array(n),f=c.prototype._countBits(n)-1,h=0;h>=1;return h},G.prototype.permute=function(n,o,f,h,b,A){for(var k=0;k>>=1)b++;return 1<>>=13),b>>>=13;for(A=2*o;A>=26,o+=h/67108864|0,o+=b>>>26,this.words[f]=67108863&b}return 0!==o&&(this.words[f]=o,this.length++),this.length=0===n?1:this.length,this},c.prototype.muln=function(n){return this.clone().imuln(n)},c.prototype.sqr=function(){return this.mul(this)},c.prototype.isqr=function(){return this.imul(this.clone())},c.prototype.pow=function(n){var o=function M(D){for(var n=new Array(D.bitLength()),o=0;o>>h}return n}(n);if(0===o.length)return new c(1);for(var f=this,h=0;h=0);var b,o=n%26,f=(n-o)/26,h=67108863>>>26-o<<26-o;if(0!==o){var A=0;for(b=0;b>>26-o}A&&(this.words[b]=A,this.length++)}if(0!==f){for(b=this.length-1;b>=0;b--)this.words[b+f]=this.words[b];for(b=0;b=0),h=o?(o-o%26)/26:0;var b=n%26,A=Math.min((n-b)/26,this.length),k=67108863^67108863>>>b<A)for(this.length-=A,r=0;r=0&&(0!==_||r>=h);r--){var W=0|this.words[r];this.words[r]=_<<26-b|W>>>b,_=W&k}return x&&0!==_&&(x.words[x.length++]=_),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},c.prototype.ishrn=function(n,o,f){return p(0===this.negative),this.iushrn(n,o,f)},c.prototype.shln=function(n){return this.clone().ishln(n)},c.prototype.ushln=function(n){return this.clone().iushln(n)},c.prototype.shrn=function(n){return this.clone().ishrn(n)},c.prototype.ushrn=function(n){return this.clone().iushrn(n)},c.prototype.testn=function(n){p("number"==typeof n&&n>=0);var o=n%26,f=(n-o)/26;return!(this.length<=f||!(this.words[f]&1<=0);var o=n%26,f=(n-o)/26;return p(0===this.negative,"imaskn works only with positive numbers"),this.length<=f?this:(0!==o&&f++,this.length=Math.min(f,this.length),0!==o&&(this.words[this.length-1]&=67108863^67108863>>>o<=67108864;o++)this.words[o]-=67108864,o===this.length-1?this.words[o+1]=1:this.words[o+1]++;return this.length=Math.max(this.length,o+1),this},c.prototype.isubn=function(n){if(p("number"==typeof n),p(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var o=0;o>26)-(x/67108864|0),this.words[b+f]=67108863&A}for(;b>26,this.words[b+f]=67108863&A;if(0===k)return this.strip();for(p(-1===k),k=0,b=0;b>26,this.words[b]=67108863&A;return this.negative=1,this.strip()},c.prototype._wordDiv=function(n,o){var f,h=this.clone(),b=n,A=0|b.words[b.length-1];0!=(f=26-this._countBits(A))&&(b=b.ushln(f),h.iushln(f),A=0|b.words[b.length-1]);var r,x=h.length-b.length;if("mod"!==o){(r=new c(null)).length=x+1,r.words=new Array(r.length);for(var _=0;_=0;I--){var B=67108864*(0|h.words[b.length+I])+(0|h.words[b.length+I-1]);for(B=Math.min(B/A|0,67108863),h._ishlnsubmul(b,B,I);0!==h.negative;)B--,h.negative=0,h._ishlnsubmul(b,1,I),h.isZero()||(h.negative^=1);r&&(r.words[I]=B)}return r&&r.strip(),h.strip(),"div"!==o&&0!==f&&h.iushrn(f),{div:r||null,mod:h}},c.prototype.divmod=function(n,o,f){return p(!n.isZero()),this.isZero()?{div:new c(0),mod:new c(0)}:0!==this.negative&&0===n.negative?(A=this.neg().divmod(n,o),"mod"!==o&&(h=A.div.neg()),"div"!==o&&(b=A.mod.neg(),f&&0!==b.negative&&b.iadd(n)),{div:h,mod:b}):0===this.negative&&0!==n.negative?(A=this.divmod(n.neg(),o),"mod"!==o&&(h=A.div.neg()),{div:h,mod:A.mod}):0!==(this.negative&n.negative)?(A=this.neg().divmod(n.neg(),o),"div"!==o&&(b=A.mod.neg(),f&&0!==b.negative&&b.isub(n)),{div:A.div,mod:b}):n.length>this.length||this.cmp(n)<0?{div:new c(0),mod:this}:1===n.length?"div"===o?{div:this.divn(n.words[0]),mod:null}:"mod"===o?{div:null,mod:new c(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new c(this.modn(n.words[0]))}:this._wordDiv(n,o);var h,b,A},c.prototype.div=function(n){return this.divmod(n,"div",!1).div},c.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},c.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},c.prototype.divRound=function(n){var o=this.divmod(n);if(o.mod.isZero())return o.div;var f=0!==o.div.negative?o.mod.isub(n):o.mod,h=n.ushrn(1),b=n.andln(1),A=f.cmp(h);return A<0||1===b&&0===A?o.div:0!==o.div.negative?o.div.isubn(1):o.div.iaddn(1)},c.prototype.modn=function(n){p(n<=67108863);for(var o=(1<<26)%n,f=0,h=this.length-1;h>=0;h--)f=(o*f+(0|this.words[h]))%n;return f},c.prototype.idivn=function(n){p(n<=67108863);for(var o=0,f=this.length-1;f>=0;f--){var h=(0|this.words[f])+67108864*o;this.words[f]=h/n|0,o=h%n}return this.strip()},c.prototype.divn=function(n){return this.clone().idivn(n)},c.prototype.egcd=function(n){p(0===n.negative),p(!n.isZero());var o=this,f=n.clone();o=0!==o.negative?o.umod(n):o.clone();for(var h=new c(1),b=new c(0),A=new c(0),k=new c(1),x=0;o.isEven()&&f.isEven();)o.iushrn(1),f.iushrn(1),++x;for(var r=f.clone(),_=o.clone();!o.isZero();){for(var W=0,I=1;0===(o.words[0]&I)&&W<26;++W,I<<=1);if(W>0)for(o.iushrn(W);W-- >0;)(h.isOdd()||b.isOdd())&&(h.iadd(r),b.isub(_)),h.iushrn(1),b.iushrn(1);for(var B=0,re=1;0===(f.words[0]&re)&&B<26;++B,re<<=1);if(B>0)for(f.iushrn(B);B-- >0;)(A.isOdd()||k.isOdd())&&(A.iadd(r),k.isub(_)),A.iushrn(1),k.iushrn(1);o.cmp(f)>=0?(o.isub(f),h.isub(A),b.isub(k)):(f.isub(o),A.isub(h),k.isub(b))}return{a:A,b:k,gcd:f.iushln(x)}},c.prototype._invmp=function(n){p(0===n.negative),p(!n.isZero());var W,o=this,f=n.clone();o=0!==o.negative?o.umod(n):o.clone();for(var h=new c(1),b=new c(0),A=f.clone();o.cmpn(1)>0&&f.cmpn(1)>0;){for(var k=0,x=1;0===(o.words[0]&x)&&k<26;++k,x<<=1);if(k>0)for(o.iushrn(k);k-- >0;)h.isOdd()&&h.iadd(A),h.iushrn(1);for(var r=0,_=1;0===(f.words[0]&_)&&r<26;++r,_<<=1);if(r>0)for(f.iushrn(r);r-- >0;)b.isOdd()&&b.iadd(A),b.iushrn(1);o.cmp(f)>=0?(o.isub(f),h.isub(b)):(f.isub(o),b.isub(h))}return(W=0===o.cmpn(1)?h:b).cmpn(0)<0&&W.iadd(n),W},c.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var o=this.clone(),f=n.clone();o.negative=0,f.negative=0;for(var h=0;o.isEven()&&f.isEven();h++)o.iushrn(1),f.iushrn(1);for(;;){for(;o.isEven();)o.iushrn(1);for(;f.isEven();)f.iushrn(1);var b=o.cmp(f);if(b<0){var A=o;o=f,f=A}else if(0===b||0===f.cmpn(1))break;o.isub(f)}return f.iushln(h)},c.prototype.invm=function(n){return this.egcd(n).a.umod(n)},c.prototype.isEven=function(){return!(1&this.words[0])},c.prototype.isOdd=function(){return!(1&~this.words[0])},c.prototype.andln=function(n){return this.words[0]&n},c.prototype.bincn=function(n){p("number"==typeof n);var o=n%26,f=(n-o)/26,h=1<>>26,this.words[A]=k&=67108863}return 0!==b&&(this.words[A]=b,this.length++),this},c.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},c.prototype.cmpn=function(n){var f,o=n<0;if(0!==this.negative&&!o)return-1;if(0===this.negative&&o)return 1;if(this.strip(),this.length>1)f=1;else{o&&(n=-n),p(n<=67108863,"Number is too big");var h=0|this.words[0];f=h===n?0:hn.length)return 1;if(this.length=0;f--){var h=0|this.words[f],b=0|n.words[f];if(h!==b){hb&&(o=1);break}}return o},c.prototype.gtn=function(n){return 1===this.cmpn(n)},c.prototype.gt=function(n){return 1===this.cmp(n)},c.prototype.gten=function(n){return this.cmpn(n)>=0},c.prototype.gte=function(n){return this.cmp(n)>=0},c.prototype.ltn=function(n){return-1===this.cmpn(n)},c.prototype.lt=function(n){return-1===this.cmp(n)},c.prototype.lten=function(n){return this.cmpn(n)<=0},c.prototype.lte=function(n){return this.cmp(n)<=0},c.prototype.eqn=function(n){return 0===this.cmpn(n)},c.prototype.eq=function(n){return 0===this.cmp(n)},c.red=function(n){return new me(n)},c.prototype.toRed=function(n){return p(!this.red,"Already a number in reduction context"),p(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},c.prototype.fromRed=function(){return p(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},c.prototype._forceRed=function(n){return this.red=n,this},c.prototype.forceRed=function(n){return p(!this.red,"Already a number in reduction context"),this._forceRed(n)},c.prototype.redAdd=function(n){return p(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},c.prototype.redIAdd=function(n){return p(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},c.prototype.redSub=function(n){return p(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},c.prototype.redISub=function(n){return p(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},c.prototype.redShl=function(n){return p(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},c.prototype.redMul=function(n){return p(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},c.prototype.redIMul=function(n){return p(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},c.prototype.redSqr=function(){return p(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},c.prototype.redISqr=function(){return p(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},c.prototype.redSqrt=function(){return p(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},c.prototype.redInvm=function(){return p(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},c.prototype.redNeg=function(){return p(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},c.prototype.redPow=function(n){return p(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var Q={k256:null,p224:null,p192:null,p25519:null};function $(D,n){this.name=D,this.p=new c(n,16),this.n=this.p.bitLength(),this.k=new c(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ae(){$.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ue(){$.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function oe(){$.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function he(){$.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function me(D){if("string"==typeof D){var n=c._prime(D);this.m=n.p,this.prime=n}else p(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function Te(D){me.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new c(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}$.prototype._tmp=function(){var n=new c(null);return n.words=new Array(Math.ceil(this.n/13)),n},$.prototype.ireduce=function(n){var f,o=n;do{this.split(o,this.tmp),f=(o=(o=this.imulK(o)).iadd(this.tmp)).bitLength()}while(f>this.n);var h=f0?o.isub(this.p):void 0!==o.strip?o.strip():o._strip(),o},$.prototype.split=function(n,o){n.iushrn(this.n,0,o)},$.prototype.imulK=function(n){return n.imul(this.k)},S(ae,$),ae.prototype.split=function(n,o){for(var f=4194303,h=Math.min(n.length,9),b=0;b>>22,A=k}n.words[b-10]=A>>>=22,n.length-=0===A&&n.length>10?10:9},ae.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var o=0,f=0;f>>=26,n.words[f]=b,o=h}return 0!==o&&(n.words[n.length++]=o),n},c._prime=function(n){if(Q[n])return Q[n];var o;if("k256"===n)o=new ae;else if("p224"===n)o=new ue;else if("p192"===n)o=new oe;else{if("p25519"!==n)throw new Error("Unknown prime "+n);o=new he}return Q[n]=o,o},me.prototype._verify1=function(n){p(0===n.negative,"red works only with positives"),p(n.red,"red works only with red numbers")},me.prototype._verify2=function(n,o){p(0===(n.negative|o.negative),"red works only with positives"),p(n.red&&n.red===o.red,"red works only with red numbers")},me.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},me.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},me.prototype.add=function(n,o){this._verify2(n,o);var f=n.add(o);return f.cmp(this.m)>=0&&f.isub(this.m),f._forceRed(this)},me.prototype.iadd=function(n,o){this._verify2(n,o);var f=n.iadd(o);return f.cmp(this.m)>=0&&f.isub(this.m),f},me.prototype.sub=function(n,o){this._verify2(n,o);var f=n.sub(o);return f.cmpn(0)<0&&f.iadd(this.m),f._forceRed(this)},me.prototype.isub=function(n,o){this._verify2(n,o);var f=n.isub(o);return f.cmpn(0)<0&&f.iadd(this.m),f},me.prototype.shl=function(n,o){return this._verify1(n),this.imod(n.ushln(o))},me.prototype.imul=function(n,o){return this._verify2(n,o),this.imod(n.imul(o))},me.prototype.mul=function(n,o){return this._verify2(n,o),this.imod(n.mul(o))},me.prototype.isqr=function(n){return this.imul(n,n.clone())},me.prototype.sqr=function(n){return this.mul(n,n)},me.prototype.sqrt=function(n){if(n.isZero())return n.clone();var o=this.m.andln(3);if(p(o%2==1),3===o){var f=this.m.add(new c(1)).iushrn(2);return this.pow(n,f)}for(var h=this.m.subn(1),b=0;!h.isZero()&&0===h.andln(1);)b++,h.iushrn(1);p(!h.isZero());var A=new c(1).toRed(this),k=A.redNeg(),x=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new c(2*r*r).toRed(this);0!==this.pow(r,x).cmp(k);)r.redIAdd(k);for(var _=this.pow(r,h),W=this.pow(n,h.addn(1).iushrn(1)),I=this.pow(n,h),B=b;0!==I.cmp(A);){for(var re=I,pe=0;0!==re.cmp(A);pe++)re=re.redSqr();p(pe=0;b--){for(var _=o.words[b],W=r-1;W>=0;W--){var I=_>>W&1;A!==h[0]&&(A=this.sqr(A)),0!==I||0!==k?(k<<=1,k|=I,(4===++x||0===b&&0===W)&&(A=this.mul(A,h[k]),x=0,k=0)):x=0}r=26}return A},me.prototype.convertTo=function(n){var o=n.umod(this.m);return o===n?o.clone():o},me.prototype.convertFrom=function(n){var o=n.clone();return o.red=null,o},c.mont=function(n){return new Te(n)},S(Te,me),Te.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},Te.prototype.convertFrom=function(n){var o=this.imod(n.mul(this.rinv));return o.red=null,o},Te.prototype.imul=function(n,o){if(n.isZero()||o.isZero())return n.words[0]=0,n.length=1,n;var f=n.imul(o),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),b=f.isub(h).iushrn(this.shift),A=b;return b.cmp(this.m)>=0?A=b.isub(this.m):b.cmpn(0)<0&&(A=b.iadd(this.m)),A._forceRed(this)},Te.prototype.mul=function(n,o){if(n.isZero()||o.isZero())return new c(0)._forceRed(this);var f=n.mul(o),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),b=f.isub(h).iushrn(this.shift),A=b;return b.cmp(this.m)>=0?A=b.isub(this.m):b.cmpn(0)<0&&(A=b.iadd(this.m)),A._forceRed(this)},Te.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Ae=l.nmd(Ae),this)},88779:(Ae,ee,l)=>{"use strict";var i=l(45310);Ae.exports=function(){return i()&&!!Symbol.toStringTag}},88800:(Ae,ee,l)=>{"use strict";var i=l(39210),t=l(71993),p={};function S(e){i.equal(e.length,8,"Invalid IV length"),this.iv=new Array(8);for(var T=0;T{"use strict";l.d(ee,{$0:()=>$,$z:()=>M,Hl:()=>oe});var i=l(22598),t=l(2615),p=l(73664),S=l(26881),c=l(22466);const e=["matButton",""],T=[[["",8,"material-icons",3,"iconPositionEnd",""],["mat-icon",3,"iconPositionEnd",""],["","matButtonIcon","",3,"iconPositionEnd",""]],"*",[["","iconPositionEnd","",8,"material-icons"],["mat-icon","iconPositionEnd",""],["","matButtonIcon","","iconPositionEnd",""]]],g=[".material-icons:not([iconPositionEnd]), mat-icon:not([iconPositionEnd]), [matButtonIcon]:not([iconPositionEnd])","*",".material-icons[iconPositionEnd], mat-icon[iconPositionEnd], [matButtonIcon][iconPositionEnd]"],w=["mat-mini-fab",""],P=new Map([["text",["mat-mdc-button"]],["filled",["mdc-button--unelevated","mat-mdc-unelevated-button"]],["elevated",["mdc-button--raised","mat-mdc-raised-button"]],["outlined",["mdc-button--outlined","mat-mdc-outlined-button"]],["tonal",["mat-tonal-button"]]]);let M=(()=>{class he extends i.iM{get appearance(){return this._appearance}set appearance(Te){this.setAppearance(Te||this._config?.defaultAppearance||"text")}_appearance=null;constructor(){super();const Te=function j(he){return he.hasAttribute("mat-raised-button")?"elevated":he.hasAttribute("mat-stroked-button")?"outlined":he.hasAttribute("mat-flat-button")?"filled":he.hasAttribute("mat-button")?"text":null}(this._elementRef.nativeElement);Te&&this.setAppearance(Te)}setAppearance(Te){if(Te===this._appearance)return;const D=this._elementRef.nativeElement.classList,n=this._appearance?P.get(this._appearance):null,o=P.get(Te);n&&D.remove(...n),D.add(...o),this._appearance=Te}static \u0275fac=function(D){return new(D||he)};static \u0275cmp=p.VBU({type:he,selectors:[["button","matButton",""],["a","matButton",""],["button","mat-button",""],["button","mat-raised-button",""],["button","mat-flat-button",""],["button","mat-stroked-button",""],["a","mat-button",""],["a","mat-raised-button",""],["a","mat-flat-button",""],["a","mat-stroked-button",""]],hostAttrs:[1,"mdc-button"],inputs:{appearance:[0,"matButton","appearance"]},exportAs:["matButton","matAnchor"],features:[p.Vt3],attrs:e,ngContentSelectors:g,decls:7,vars:4,consts:[[1,"mat-mdc-button-persistent-ripple"],[1,"mdc-button__label"],[1,"mat-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(D,n){1&D&&(p.NAR(T),p.Hgh(0,"span",0),p.SdG(1),p.rj2(2,"span",1),p.SdG(3,1),p.eux(),p.SdG(4,2),p.Hgh(5,"span",2)(6,"span",3)),2&D&&p.AVh("mdc-button__ripple",!n._isFab)("mdc-fab__ripple",n._isFab)},styles:['.mat-mdc-button-base{text-decoration:none}.mat-mdc-button-base .mat-icon{min-height:fit-content;flex-shrink:0}.mdc-button{-webkit-user-select:none;user-select:none;position:relative;display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;min-width:64px;border:none;outline:none;line-height:inherit;-webkit-appearance:none;overflow:visible;vertical-align:middle;background:rgba(0,0,0,0);padding:0 8px}.mdc-button::-moz-focus-inner{padding:0;border:0}.mdc-button:active{outline:none}.mdc-button:hover{cursor:pointer}.mdc-button:disabled{cursor:default;pointer-events:none}.mdc-button[hidden]{display:none}.mdc-button .mdc-button__label{position:relative}.mat-mdc-button{padding:0 var(--mat-button-text-horizontal-padding, 12px);height:var(--mat-button-text-container-height, 40px);font-family:var(--mat-button-text-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-text-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-button-text-label-text-tracking, var(--mat-sys-label-large-tracking));text-transform:var(--mat-button-text-label-text-transform);font-weight:var(--mat-button-text-label-text-weight, var(--mat-sys-label-large-weight))}.mat-mdc-button,.mat-mdc-button .mdc-button__ripple{border-radius:var(--mat-button-text-container-shape, var(--mat-sys-corner-full))}.mat-mdc-button:not(:disabled){color:var(--mat-button-text-label-text-color, var(--mat-sys-primary))}.mat-mdc-button[disabled],.mat-mdc-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-button-text-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-button:has(.material-icons,mat-icon,[matButtonIcon]){padding:0 var(--mat-button-text-with-icon-horizontal-padding, 16px)}.mat-mdc-button>.mat-icon{margin-right:var(--mat-button-text-icon-spacing, 8px);margin-left:var(--mat-button-text-icon-offset, -4px)}[dir=rtl] .mat-mdc-button>.mat-icon{margin-right:var(--mat-button-text-icon-offset, -4px);margin-left:var(--mat-button-text-icon-spacing, 8px)}.mat-mdc-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-text-icon-offset, -4px);margin-left:var(--mat-button-text-icon-spacing, 8px)}[dir=rtl] .mat-mdc-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-text-icon-spacing, 8px);margin-left:var(--mat-button-text-icon-offset, -4px)}.mat-mdc-button .mat-ripple-element{background-color:var(--mat-button-text-ripple-color, color-mix(in srgb, var(--mat-sys-primary) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-text-state-layer-color, var(--mat-sys-primary))}.mat-mdc-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-text-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-text-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-text-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-text-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-button-text-touch-target-size, 48px);display:var(--mat-button-text-touch-target-display, block);left:0;right:0;transform:translateY(-50%)}.mat-mdc-unelevated-button{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);height:var(--mat-button-filled-container-height, 40px);font-family:var(--mat-button-filled-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-filled-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-button-filled-label-text-tracking, var(--mat-sys-label-large-tracking));text-transform:var(--mat-button-filled-label-text-transform);font-weight:var(--mat-button-filled-label-text-weight, var(--mat-sys-label-large-weight));padding:0 var(--mat-button-filled-horizontal-padding, 24px)}.mat-mdc-unelevated-button>.mat-icon{margin-right:var(--mat-button-filled-icon-spacing, 8px);margin-left:var(--mat-button-filled-icon-offset, -8px)}[dir=rtl] .mat-mdc-unelevated-button>.mat-icon{margin-right:var(--mat-button-filled-icon-offset, -8px);margin-left:var(--mat-button-filled-icon-spacing, 8px)}.mat-mdc-unelevated-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-filled-icon-offset, -8px);margin-left:var(--mat-button-filled-icon-spacing, 8px)}[dir=rtl] .mat-mdc-unelevated-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-filled-icon-spacing, 8px);margin-left:var(--mat-button-filled-icon-offset, -8px)}.mat-mdc-unelevated-button .mat-ripple-element{background-color:var(--mat-button-filled-ripple-color, color-mix(in srgb, var(--mat-sys-on-primary) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-filled-state-layer-color, var(--mat-sys-on-primary))}.mat-mdc-unelevated-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-filled-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-unelevated-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-filled-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-unelevated-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-filled-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-unelevated-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-filled-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-unelevated-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-button-filled-touch-target-size, 48px);display:var(--mat-button-filled-touch-target-display, block);left:0;right:0;transform:translateY(-50%)}.mat-mdc-unelevated-button:not(:disabled){color:var(--mat-button-filled-label-text-color, var(--mat-sys-on-primary));background-color:var(--mat-button-filled-container-color, var(--mat-sys-primary))}.mat-mdc-unelevated-button,.mat-mdc-unelevated-button .mdc-button__ripple{border-radius:var(--mat-button-filled-container-shape, var(--mat-sys-corner-full))}.mat-mdc-unelevated-button[disabled],.mat-mdc-unelevated-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-button-filled-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-button-filled-disabled-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-unelevated-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-raised-button{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);box-shadow:var(--mat-button-protected-container-elevation-shadow, var(--mat-sys-level1));height:var(--mat-button-protected-container-height, 40px);font-family:var(--mat-button-protected-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-protected-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-button-protected-label-text-tracking, var(--mat-sys-label-large-tracking));text-transform:var(--mat-button-protected-label-text-transform);font-weight:var(--mat-button-protected-label-text-weight, var(--mat-sys-label-large-weight));padding:0 var(--mat-button-protected-horizontal-padding, 24px)}.mat-mdc-raised-button>.mat-icon{margin-right:var(--mat-button-protected-icon-spacing, 8px);margin-left:var(--mat-button-protected-icon-offset, -8px)}[dir=rtl] .mat-mdc-raised-button>.mat-icon{margin-right:var(--mat-button-protected-icon-offset, -8px);margin-left:var(--mat-button-protected-icon-spacing, 8px)}.mat-mdc-raised-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-protected-icon-offset, -8px);margin-left:var(--mat-button-protected-icon-spacing, 8px)}[dir=rtl] .mat-mdc-raised-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-protected-icon-spacing, 8px);margin-left:var(--mat-button-protected-icon-offset, -8px)}.mat-mdc-raised-button .mat-ripple-element{background-color:var(--mat-button-protected-ripple-color, color-mix(in srgb, var(--mat-sys-primary) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-protected-state-layer-color, var(--mat-sys-primary))}.mat-mdc-raised-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-protected-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-raised-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-protected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-raised-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-protected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-raised-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-protected-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-raised-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-button-protected-touch-target-size, 48px);display:var(--mat-button-protected-touch-target-display, block);left:0;right:0;transform:translateY(-50%)}.mat-mdc-raised-button:not(:disabled){color:var(--mat-button-protected-label-text-color, var(--mat-sys-primary));background-color:var(--mat-button-protected-container-color, var(--mat-sys-surface))}.mat-mdc-raised-button,.mat-mdc-raised-button .mdc-button__ripple{border-radius:var(--mat-button-protected-container-shape, var(--mat-sys-corner-full))}.mat-mdc-raised-button:hover{box-shadow:var(--mat-button-protected-hover-container-elevation-shadow, var(--mat-sys-level2))}.mat-mdc-raised-button:focus{box-shadow:var(--mat-button-protected-focus-container-elevation-shadow, var(--mat-sys-level1))}.mat-mdc-raised-button:active,.mat-mdc-raised-button:focus:active{box-shadow:var(--mat-button-protected-pressed-container-elevation-shadow, var(--mat-sys-level1))}.mat-mdc-raised-button[disabled],.mat-mdc-raised-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-button-protected-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-button-protected-disabled-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-raised-button[disabled].mat-mdc-button-disabled,.mat-mdc-raised-button.mat-mdc-button-disabled.mat-mdc-button-disabled{box-shadow:var(--mat-button-protected-disabled-container-elevation-shadow, var(--mat-sys-level0))}.mat-mdc-raised-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-outlined-button{border-style:solid;transition:border 280ms cubic-bezier(0.4, 0, 0.2, 1);height:var(--mat-button-outlined-container-height, 40px);font-family:var(--mat-button-outlined-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-outlined-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-button-outlined-label-text-tracking, var(--mat-sys-label-large-tracking));text-transform:var(--mat-button-outlined-label-text-transform);font-weight:var(--mat-button-outlined-label-text-weight, var(--mat-sys-label-large-weight));border-radius:var(--mat-button-outlined-container-shape, var(--mat-sys-corner-full));border-width:var(--mat-button-outlined-outline-width, 1px);padding:0 var(--mat-button-outlined-horizontal-padding, 24px)}.mat-mdc-outlined-button>.mat-icon{margin-right:var(--mat-button-outlined-icon-spacing, 8px);margin-left:var(--mat-button-outlined-icon-offset, -8px)}[dir=rtl] .mat-mdc-outlined-button>.mat-icon{margin-right:var(--mat-button-outlined-icon-offset, -8px);margin-left:var(--mat-button-outlined-icon-spacing, 8px)}.mat-mdc-outlined-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-outlined-icon-offset, -8px);margin-left:var(--mat-button-outlined-icon-spacing, 8px)}[dir=rtl] .mat-mdc-outlined-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-outlined-icon-spacing, 8px);margin-left:var(--mat-button-outlined-icon-offset, -8px)}.mat-mdc-outlined-button .mat-ripple-element{background-color:var(--mat-button-outlined-ripple-color, color-mix(in srgb, var(--mat-sys-primary) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-outlined-state-layer-color, var(--mat-sys-primary))}.mat-mdc-outlined-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-outlined-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-outlined-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-outlined-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-outlined-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-outlined-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-outlined-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-outlined-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-outlined-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-button-outlined-touch-target-size, 48px);display:var(--mat-button-outlined-touch-target-display, block);left:0;right:0;transform:translateY(-50%)}.mat-mdc-outlined-button:not(:disabled){color:var(--mat-button-outlined-label-text-color, var(--mat-sys-primary));border-color:var(--mat-button-outlined-outline-color, var(--mat-sys-outline))}.mat-mdc-outlined-button[disabled],.mat-mdc-outlined-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-button-outlined-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));border-color:var(--mat-button-outlined-disabled-outline-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-outlined-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-tonal-button{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);height:var(--mat-button-tonal-container-height, 40px);font-family:var(--mat-button-tonal-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-tonal-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-button-tonal-label-text-tracking, var(--mat-sys-label-large-tracking));text-transform:var(--mat-button-tonal-label-text-transform);font-weight:var(--mat-button-tonal-label-text-weight, var(--mat-sys-label-large-weight));padding:0 var(--mat-button-tonal-horizontal-padding, 24px)}.mat-tonal-button:not(:disabled){color:var(--mat-button-tonal-label-text-color, var(--mat-sys-on-secondary-container));background-color:var(--mat-button-tonal-container-color, var(--mat-sys-secondary-container))}.mat-tonal-button,.mat-tonal-button .mdc-button__ripple{border-radius:var(--mat-button-tonal-container-shape, var(--mat-sys-corner-full))}.mat-tonal-button[disabled],.mat-tonal-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-button-tonal-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-button-tonal-disabled-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-tonal-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-tonal-button>.mat-icon{margin-right:var(--mat-button-tonal-icon-spacing, 8px);margin-left:var(--mat-button-tonal-icon-offset, -8px)}[dir=rtl] .mat-tonal-button>.mat-icon{margin-right:var(--mat-button-tonal-icon-offset, -8px);margin-left:var(--mat-button-tonal-icon-spacing, 8px)}.mat-tonal-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-tonal-icon-offset, -8px);margin-left:var(--mat-button-tonal-icon-spacing, 8px)}[dir=rtl] .mat-tonal-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-tonal-icon-spacing, 8px);margin-left:var(--mat-button-tonal-icon-offset, -8px)}.mat-tonal-button .mat-ripple-element{background-color:var(--mat-button-tonal-ripple-color, color-mix(in srgb, var(--mat-sys-on-secondary-container) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-tonal-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-tonal-state-layer-color, var(--mat-sys-on-secondary-container))}.mat-tonal-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-tonal-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-tonal-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-tonal-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-tonal-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-tonal-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-tonal-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-tonal-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-tonal-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-tonal-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-tonal-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-button-tonal-touch-target-size, 48px);display:var(--mat-button-tonal-touch-target-display, block);left:0;right:0;transform:translateY(-50%)}.mat-mdc-button,.mat-mdc-unelevated-button,.mat-mdc-raised-button,.mat-mdc-outlined-button,.mat-tonal-button{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-button .mat-mdc-button-ripple,.mat-mdc-button .mat-mdc-button-persistent-ripple,.mat-mdc-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button .mat-mdc-button-ripple,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button .mat-mdc-button-ripple,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before,.mat-tonal-button .mat-mdc-button-ripple,.mat-tonal-button .mat-mdc-button-persistent-ripple,.mat-tonal-button .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-button .mat-mdc-button-ripple,.mat-mdc-unelevated-button .mat-mdc-button-ripple,.mat-mdc-raised-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mat-mdc-button-ripple,.mat-tonal-button .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before,.mat-tonal-button .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-button .mdc-button__label,.mat-mdc-button .mat-icon,.mat-mdc-unelevated-button .mdc-button__label,.mat-mdc-unelevated-button .mat-icon,.mat-mdc-raised-button .mdc-button__label,.mat-mdc-raised-button .mat-icon,.mat-mdc-outlined-button .mdc-button__label,.mat-mdc-outlined-button .mat-icon,.mat-tonal-button .mdc-button__label,.mat-tonal-button .mat-icon{z-index:1;position:relative}.mat-mdc-button .mat-focus-indicator,.mat-mdc-unelevated-button .mat-focus-indicator,.mat-mdc-raised-button .mat-focus-indicator,.mat-mdc-outlined-button .mat-focus-indicator,.mat-tonal-button .mat-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:inherit}.mat-mdc-button:focus>.mat-focus-indicator::before,.mat-mdc-unelevated-button:focus>.mat-focus-indicator::before,.mat-mdc-raised-button:focus>.mat-focus-indicator::before,.mat-mdc-outlined-button:focus>.mat-focus-indicator::before,.mat-tonal-button:focus>.mat-focus-indicator::before{content:"";border-radius:inherit}.mat-mdc-button._mat-animation-noopable,.mat-mdc-unelevated-button._mat-animation-noopable,.mat-mdc-raised-button._mat-animation-noopable,.mat-mdc-outlined-button._mat-animation-noopable,.mat-tonal-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-button>.mat-icon,.mat-mdc-unelevated-button>.mat-icon,.mat-mdc-raised-button>.mat-icon,.mat-mdc-outlined-button>.mat-icon,.mat-tonal-button>.mat-icon{display:inline-block;position:relative;vertical-align:top;font-size:1.125rem;height:1.125rem;width:1.125rem}.mat-mdc-outlined-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mdc-button__ripple{top:-1px;left:-1px;bottom:-1px;right:-1px}.mat-mdc-unelevated-button .mat-focus-indicator::before,.mat-tonal-button .mat-focus-indicator::before,.mat-mdc-raised-button .mat-focus-indicator::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-outlined-button .mat-focus-indicator::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 3px)*-1)}\n',"@media(forced-colors: active){.mat-mdc-button:not(.mdc-button--outlined),.mat-mdc-unelevated-button:not(.mdc-button--outlined),.mat-mdc-raised-button:not(.mdc-button--outlined),.mat-mdc-outlined-button:not(.mdc-button--outlined),.mat-mdc-button-base.mat-tonal-button,.mat-mdc-icon-button.mat-mdc-icon-button,.mat-mdc-outlined-button .mdc-button__ripple{outline:solid 1px}}\n"],encapsulation:2,changeDetection:0})}return he})();const K=new t.nKC("mat-mdc-fab-default-options",{providedIn:"root",factory:q});function q(){return{color:"accent"}}const G=q();let $=(()=>{class he extends i.iM{_options=(0,t.WQX)(K,{optional:!0});_isFab=!0;constructor(){super(),this._options=this._options||G,this.color=this._options.color||G.color}static \u0275fac=function(D){return new(D||he)};static \u0275cmp=p.VBU({type:he,selectors:[["button","mat-mini-fab",""],["a","mat-mini-fab",""],["button","matMiniFab",""],["a","matMiniFab",""]],hostAttrs:[1,"mdc-fab","mat-mdc-fab-base","mdc-fab--mini","mat-mdc-mini-fab"],exportAs:["matButton","matAnchor"],features:[p.Vt3],attrs:w,ngContentSelectors:g,decls:7,vars:4,consts:[[1,"mat-mdc-button-persistent-ripple"],[1,"mdc-button__label"],[1,"mat-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(D,n){1&D&&(p.NAR(T),p.Hgh(0,"span",0),p.SdG(1),p.rj2(2,"span",1),p.SdG(3,1),p.eux(),p.SdG(4,2),p.Hgh(5,"span",2)(6,"span",3)),2&D&&p.AVh("mdc-button__ripple",!n._isFab)("mdc-fab__ripple",n._isFab)},styles:['.mat-mdc-fab-base{-webkit-user-select:none;user-select:none;position:relative;display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;width:56px;height:56px;padding:0;border:none;fill:currentColor;text-decoration:none;cursor:pointer;-moz-appearance:none;-webkit-appearance:none;overflow:visible;transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1),opacity 15ms linear 30ms,transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);flex-shrink:0;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-fab-base .mat-mdc-button-ripple,.mat-mdc-fab-base .mat-mdc-button-persistent-ripple,.mat-mdc-fab-base .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-fab-base .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-fab-base .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-fab-base .mdc-button__label,.mat-mdc-fab-base .mat-icon{z-index:1;position:relative}.mat-mdc-fab-base .mat-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-fab-base:focus>.mat-focus-indicator::before{content:""}.mat-mdc-fab-base._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-fab-base::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}.mat-mdc-fab-base[hidden]{display:none}.mat-mdc-fab-base::-moz-focus-inner{padding:0;border:0}.mat-mdc-fab-base:active,.mat-mdc-fab-base:focus{outline:none}.mat-mdc-fab-base:hover{cursor:pointer}.mat-mdc-fab-base>svg{width:100%}.mat-mdc-fab-base .mat-icon,.mat-mdc-fab-base .material-icons{transition:transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);fill:currentColor;will-change:transform}.mat-mdc-fab-base .mat-focus-indicator::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-fab-base[disabled],.mat-mdc-fab-base.mat-mdc-button-disabled{cursor:default;pointer-events:none}.mat-mdc-fab-base[disabled],.mat-mdc-fab-base[disabled]:focus,.mat-mdc-fab-base.mat-mdc-button-disabled,.mat-mdc-fab-base.mat-mdc-button-disabled:focus{box-shadow:none}.mat-mdc-fab-base.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-fab{background-color:var(--mat-fab-container-color, var(--mat-sys-primary-container));border-radius:var(--mat-fab-container-shape, var(--mat-sys-corner-large));color:var(--mat-fab-foreground-color, var(--mat-sys-on-primary-container, inherit));box-shadow:var(--mat-fab-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-fab:hover{box-shadow:var(--mat-fab-hover-container-elevation-shadow, var(--mat-sys-level4))}.mat-mdc-fab:focus{box-shadow:var(--mat-fab-focus-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-fab:active,.mat-mdc-fab:focus:active{box-shadow:var(--mat-fab-pressed-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-fab[disabled],.mat-mdc-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-fab-disabled-state-foreground-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-fab-disabled-state-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-fab .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-fab-touch-target-size, 48px);display:var(--mat-fab-touch-target-display, block);left:50%;width:var(--mat-fab-touch-target-size, 48px);transform:translate(-50%, -50%)}.mat-mdc-fab .mat-ripple-element{background-color:var(--mat-fab-ripple-color, color-mix(in srgb, var(--mat-sys-on-primary-container) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-fab .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-state-layer-color, var(--mat-sys-on-primary-container))}.mat-mdc-fab.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-disabled-state-layer-color)}.mat-mdc-fab:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-fab.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-fab.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-fab.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-fab:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-mini-fab{width:40px;height:40px;background-color:var(--mat-fab-small-container-color, var(--mat-sys-primary-container));border-radius:var(--mat-fab-small-container-shape, var(--mat-sys-corner-medium));color:var(--mat-fab-small-foreground-color, var(--mat-sys-on-primary-container, inherit));box-shadow:var(--mat-fab-small-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-mini-fab:hover{box-shadow:var(--mat-fab-small-hover-container-elevation-shadow, var(--mat-sys-level4))}.mat-mdc-mini-fab:focus{box-shadow:var(--mat-fab-small-focus-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-mini-fab:active,.mat-mdc-mini-fab:focus:active{box-shadow:var(--mat-fab-small-pressed-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-mini-fab[disabled],.mat-mdc-mini-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-fab-small-disabled-state-foreground-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-fab-small-disabled-state-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-mini-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-mini-fab .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-fab-small-touch-target-size, 48px);display:var(--mat-fab-small-touch-target-display);left:50%;width:var(--mat-fab-small-touch-target-size, 48px);transform:translate(-50%, -50%)}.mat-mdc-mini-fab .mat-ripple-element{background-color:var(--mat-fab-small-ripple-color, color-mix(in srgb, var(--mat-sys-on-primary-container) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-small-state-layer-color, var(--mat-sys-on-primary-container))}.mat-mdc-mini-fab.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-small-disabled-state-layer-color)}.mat-mdc-mini-fab:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-small-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-mini-fab.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-small-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-mini-fab:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-small-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-extended-fab{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;padding-left:20px;padding-right:20px;width:auto;max-width:100%;line-height:normal;box-shadow:var(--mat-fab-extended-container-elevation-shadow, var(--mat-sys-level3));height:var(--mat-fab-extended-container-height, 56px);border-radius:var(--mat-fab-extended-container-shape, var(--mat-sys-corner-large));font-family:var(--mat-fab-extended-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-fab-extended-label-text-size, var(--mat-sys-label-large-size));font-weight:var(--mat-fab-extended-label-text-weight, var(--mat-sys-label-large-weight));letter-spacing:var(--mat-fab-extended-label-text-tracking, var(--mat-sys-label-large-tracking))}.mat-mdc-extended-fab:hover{box-shadow:var(--mat-fab-extended-hover-container-elevation-shadow, var(--mat-sys-level4))}.mat-mdc-extended-fab:focus{box-shadow:var(--mat-fab-extended-focus-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-extended-fab:active,.mat-mdc-extended-fab:focus:active{box-shadow:var(--mat-fab-extended-pressed-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-extended-fab[disabled],.mat-mdc-extended-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none}.mat-mdc-extended-fab[disabled],.mat-mdc-extended-fab[disabled]:focus,.mat-mdc-extended-fab.mat-mdc-button-disabled,.mat-mdc-extended-fab.mat-mdc-button-disabled:focus{box-shadow:none}.mat-mdc-extended-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}[dir=rtl] .mat-mdc-extended-fab .mdc-button__label+.mat-icon,[dir=rtl] .mat-mdc-extended-fab .mdc-button__label+.material-icons,.mat-mdc-extended-fab>.mat-icon,.mat-mdc-extended-fab>.material-icons{margin-left:-8px;margin-right:12px}.mat-mdc-extended-fab .mdc-button__label+.mat-icon,.mat-mdc-extended-fab .mdc-button__label+.material-icons,[dir=rtl] .mat-mdc-extended-fab>.mat-icon,[dir=rtl] .mat-mdc-extended-fab>.material-icons{margin-left:12px;margin-right:-8px}.mat-mdc-extended-fab .mat-mdc-button-touch-target{width:100%}\n'],encapsulation:2,changeDetection:0})}return he})(),oe=(()=>{class he{static \u0275fac=function(D){return new(D||he)};static \u0275mod=p.$C({type:he});static \u0275inj=t.G2t({imports:[c.y,S.p,c.y]})}return he})()},88862:(Ae,ee,l)=>{var i=l(39799),t=l(43388),p=l(60503),S=l(59571),c=l(18211);function g(m,P,M){if(m=m.toLowerCase(),p[m])return t.createCipheriv(m,P,M);if(S[m])return new i({key:P,iv:M,mode:m});throw new TypeError("invalid suite type")}function d(m,P,M){if(m=m.toLowerCase(),p[m])return t.createDecipheriv(m,P,M);if(S[m])return new i({key:P,iv:M,mode:m,decrypt:!0});throw new TypeError("invalid suite type")}ee.createCipher=ee.Cipher=function e(m,P){var M,j;if(m=m.toLowerCase(),p[m])M=p[m].key,j=p[m].iv;else{if(!S[m])throw new TypeError("invalid suite type");M=8*S[m].key,j=S[m].iv}var U=c(P,!1,M,j);return g(m,U.key,U.iv)},ee.createCipheriv=ee.Cipheriv=g,ee.createDecipher=ee.Decipher=function T(m,P){var M,j;if(m=m.toLowerCase(),p[m])M=p[m].key,j=p[m].iv;else{if(!S[m])throw new TypeError("invalid suite type");M=8*S[m].key,j=S[m].iv}var U=c(P,!1,M,j);return d(m,U.key,U.iv)},ee.createDecipheriv=ee.Decipheriv=d,ee.listCiphers=ee.getCiphers=function w(){return Object.keys(S).concat(t.getCiphers())}},88968:(Ae,ee,l)=>{"use strict";l.d(ee,{l:()=>c});var i=l(2615),t=l(73664),p=l(17705);const S=new WeakMap;let c=(()=>{class e{_appRef;_injector=(0,i.WQX)(i.zZn);_environmentInjector=(0,i.WQX)(i.uvJ);load(g){const d=this._appRef=this._appRef||this._injector.get(t.o8S);let w=S.get(d);w||(w={loaders:new Set,refs:[]},S.set(d,w),d.onDestroy(()=>{S.get(d)?.refs.forEach(m=>m.destroy()),S.delete(d)})),w.loaders.has(g)||(w.loaders.add(g),w.refs.push((0,p.a0P)(g,{environmentInjector:this._environmentInjector})))}static \u0275fac=function(d){return new(d||e)};static \u0275prov=i.jDH({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})()},89079:(Ae,ee,l)=>{"use strict";l.d(ee,{ot:()=>g});var i=l(2615),t=l(59295);function g(P,M){const U=M?.manualCleanup?null:M?.injector?.get(i.abz)??(0,i.WQX)(i.abz),K=function d(P=Object.is){return(M,j)=>1===M.kind&&1===j.kind&&P(M.value,j.value)}(M?.equal);let q,G;q=(0,i.vPA)(M?.requireSync?{kind:0}:{kind:1,value:M?.initialValue},{equal:K});const Q=P.subscribe({next:$=>q.set({kind:1,value:$}),error:$=>{q.set({kind:2,error:$}),G?.()},complete:()=>{G?.()}});if(M?.requireSync&&0===q().kind)throw new i.buA(601,!1);return G=U?.onDestroy(Q.unsubscribe.bind(Q)),(0,t.EW)(()=>{const $=q();switch($.kind){case 1:return $.value;case 2:throw $.error;case 0:throw new i.buA(601,!1)}},{equal:M?.equal})}},89417:(Ae,ee,l)=>{"use strict";l.d(ee,{BC:()=>lt,JD:()=>Kr,Q0:()=>fn,VZ:()=>yn,X1:()=>vn,YN:()=>Li,YS:()=>Jn,ZU:()=>Ee,cV:()=>ni,cb:()=>Pe,cz:()=>ae,hs:()=>an,j4:()=>Ta,k0:()=>he,kq:()=>P,l_:()=>xa,me:()=>G,ok:()=>Wt,qT:()=>Bi,vO:()=>dt,vS:()=>Ft,zX:()=>Ui,ze:()=>ft});var i=l(2615),t=l(73664),p=l(59295),S=l(17705),c=l(57303),e=l(21413),T=l(27468),g=l(22806),d=l(96354);let w=(()=>{class Je{_renderer;_elementRef;onChange=He=>{};onTouched=()=>{};constructor(He,At){this._renderer=He,this._elementRef=At}setProperty(He,At){this._renderer.setProperty(this._elementRef.nativeElement,He,At)}registerOnTouched(He){this.onTouched=He}registerOnChange(He){this.onChange=He}setDisabledState(He){this.setProperty("disabled",He)}static \u0275fac=function(At){return new(At||Je)(t.rXU(t.sFG),t.rXU(t.aKT))};static \u0275dir=t.FsC({type:Je})}return Je})(),m=(()=>{class Je extends w{static \u0275fac=(()=>{let He;return function(mi){return(He||(He=t.xGo(Je)))(mi||Je)}})();static \u0275dir=t.FsC({type:Je,features:[t.Vt3]})}return Je})();const P=new i.nKC(""),U={provide:P,useExisting:(0,i.Rfq)(()=>G),multi:!0},q=new i.nKC("");let G=(()=>{class Je extends w{_compositionMode;_composing=!1;constructor(He,At,mi){super(He,At),this._compositionMode=mi,null==this._compositionMode&&(this._compositionMode=!function K(){const Je=(0,c.rb)()?(0,c.rb)().getUserAgent():"";return/android (\d+)/.test(Je.toLowerCase())}())}writeValue(He){this.setProperty("value",He??"")}_handleInput(He){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(He)}_compositionStart(){this._composing=!0}_compositionEnd(He){this._composing=!1,this._compositionMode&&this.onChange(He)}static \u0275fac=function(At){return new(At||Je)(t.rXU(t.sFG),t.rXU(t.aKT),t.rXU(q,8))};static \u0275dir=t.FsC({type:Je,selectors:[["input","formControlName","",3,"type","checkbox"],["textarea","formControlName",""],["input","formControl","",3,"type","checkbox"],["textarea","formControl",""],["input","ngModel","",3,"type","checkbox"],["textarea","ngModel",""],["","ngDefaultControl",""]],hostBindings:function(At,mi){1&At&&t.bIt("input",function(ea){return mi._handleInput(ea.target.value)})("blur",function(){return mi.onTouched()})("compositionstart",function(){return mi._compositionStart()})("compositionend",function(ea){return mi._compositionEnd(ea.target.value)})},standalone:!1,features:[t.Jv_([U]),t.Vt3]})}return Je})();function Q(Je){return null==Je||0===$(Je)}function $(Je){return null==Je?null:Array.isArray(Je)||"string"==typeof Je?Je.length:Je instanceof Set?Je.size:null}const ae=new i.nKC(""),ue=new i.nKC(""),oe=/^(?=.{1,254}$)(?=.{1,64}@)[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;class he{static min(st){return me(st)}static max(st){return Te(st)}static required(st){return D(st)}static requiredTrue(st){return function n(Je){return!0===Je.value?null:{required:!0}}(st)}static email(st){return function o(Je){return Q(Je.value)||oe.test(Je.value)?null:{email:!0}}(st)}static minLength(st){return function f(Je){return st=>{const He=st.value?.length??$(st.value);return null===He||0===He?null:He{const He=st.value?.length??$(st.value);return null!==He&&He>Je?{maxlength:{requiredLength:Je,actualLength:He}}:null}}(st)}static pattern(st){return function b(Je){if(!Je)return A;let st,He;return"string"==typeof Je?(He="","^"!==Je.charAt(0)&&(He+="^"),He+=Je,"$"!==Je.charAt(Je.length-1)&&(He+="$"),st=new RegExp(He)):(He=Je.toString(),st=Je),At=>{if(Q(At.value))return null;const mi=At.value;return st.test(mi)?null:{pattern:{requiredPattern:He,actualValue:mi}}}}(st)}static nullValidator(st){return null}static compose(st){return B(st)}static composeAsync(st){return pe(st)}}function me(Je){return st=>{if(null==st.value||null==Je)return null;const He=parseFloat(st.value);return!isNaN(He)&&He{if(null==st.value||null==Je)return null;const He=parseFloat(st.value);return!isNaN(He)&&He>Je?{max:{max:Je,actual:st.value}}:null}}function D(Je){return Q(Je.value)?{required:!0}:null}function A(Je){return null}function k(Je){return null!=Je}function x(Je){return(0,t.yLl)(Je)?(0,g.H)(Je):Je}function r(Je){let st={};return Je.forEach(He=>{st=null!=He?{...st,...He}:st}),0===Object.keys(st).length?null:st}function _(Je,st){return st.map(He=>He(Je))}function I(Je){return Je.map(st=>function W(Je){return!Je.validate}(st)?st:He=>st.validate(He))}function B(Je){if(!Je)return null;const st=Je.filter(k);return 0==st.length?null:function(He){return r(_(He,st))}}function re(Je){return null!=Je?B(I(Je)):null}function pe(Je){if(!Je)return null;const st=Je.filter(k);return 0==st.length?null:function(He){const At=_(He,st).map(x);return(0,T.p)(At).pipe((0,d.T)(r))}}function be(Je){return null!=Je?pe(I(Je)):null}function Be(Je,st){return null===Je?[st]:Array.isArray(Je)?[...Je,st]:[Je,st]}function _e(Je){return Je._rawValidators}function ye(Je){return Je._rawAsyncValidators}function Le(Je){return Je?Array.isArray(Je)?Je:[Je]:[]}function Ke(Je,st){return Array.isArray(Je)?Je.includes(st):Je===st}function ge(Je,st){const He=Le(st);return Le(Je).forEach(mi=>{Ke(He,mi)||He.push(mi)}),He}function ve(Je,st){return Le(st).filter(He=>!Ke(Je,He))}class Oe{get value(){return this.control?this.control.value:null}get valid(){return this.control?this.control.valid:null}get invalid(){return this.control?this.control.invalid:null}get pending(){return this.control?this.control.pending:null}get disabled(){return this.control?this.control.disabled:null}get enabled(){return this.control?this.control.enabled:null}get errors(){return this.control?this.control.errors:null}get pristine(){return this.control?this.control.pristine:null}get dirty(){return this.control?this.control.dirty:null}get touched(){return this.control?this.control.touched:null}get status(){return this.control?this.control.status:null}get untouched(){return this.control?this.control.untouched:null}get statusChanges(){return this.control?this.control.statusChanges:null}get valueChanges(){return this.control?this.control.valueChanges:null}get path(){return null}_composedValidatorFn;_composedAsyncValidatorFn;_rawValidators=[];_rawAsyncValidators=[];_setValidators(st){this._rawValidators=st||[],this._composedValidatorFn=re(this._rawValidators)}_setAsyncValidators(st){this._rawAsyncValidators=st||[],this._composedAsyncValidatorFn=be(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn||null}get asyncValidator(){return this._composedAsyncValidatorFn||null}_onDestroyCallbacks=[];_registerOnDestroy(st){this._onDestroyCallbacks.push(st)}_invokeOnDestroyCallbacks(){this._onDestroyCallbacks.forEach(st=>st()),this._onDestroyCallbacks=[]}reset(st=void 0){this.control&&this.control.reset(st)}hasError(st,He){return!!this.control&&this.control.hasError(st,He)}getError(st,He){return this.control?this.control.getError(st,He):null}}class Ee extends Oe{name;get formDirective(){return null}get path(){return null}}class dt extends Oe{_parent=null;name=null;valueAccessor=null}class nt{_cd;constructor(st){this._cd=st}get isTouched(){return this._cd?.control?._touched?.(),!!this._cd?.control?.touched}get isUntouched(){return!!this._cd?.control?.untouched}get isPristine(){return this._cd?.control?._pristine?.(),!!this._cd?.control?.pristine}get isDirty(){return!!this._cd?.control?.dirty}get isValid(){return this._cd?.control?._status?.(),!!this._cd?.control?.valid}get isInvalid(){return!!this._cd?.control?.invalid}get isPending(){return!!this._cd?.control?.pending}get isSubmitted(){return this._cd?._submitted?.(),!!this._cd?.submitted}}let lt=(()=>{class Je extends nt{constructor(He){super(He)}static \u0275fac=function(At){return new(At||Je)(t.rXU(dt,2))};static \u0275dir=t.FsC({type:Je,selectors:[["","formControlName",""],["","ngModel",""],["","formControl",""]],hostVars:14,hostBindings:function(At,mi){2&At&&t.AVh("ng-untouched",mi.isUntouched)("ng-touched",mi.isTouched)("ng-pristine",mi.isPristine)("ng-dirty",mi.isDirty)("ng-valid",mi.isValid)("ng-invalid",mi.isInvalid)("ng-pending",mi.isPending)},standalone:!1,features:[t.Vt3]})}return Je})(),Pe=(()=>{class Je extends nt{constructor(He){super(He)}static \u0275fac=function(At){return new(At||Je)(t.rXU(Ee,10))};static \u0275dir=t.FsC({type:Je,selectors:[["","formGroupName",""],["","formArrayName",""],["","ngModelGroup",""],["","formGroup",""],["form",3,"ngNoForm",""],["","ngForm",""]],hostVars:16,hostBindings:function(At,mi){2&At&&t.AVh("ng-untouched",mi.isUntouched)("ng-touched",mi.isTouched)("ng-pristine",mi.isPristine)("ng-dirty",mi.isDirty)("ng-valid",mi.isValid)("ng-invalid",mi.isInvalid)("ng-pending",mi.isPending)("ng-submitted",mi.isSubmitted)},standalone:!1,features:[t.Vt3]})}return Je})();const ke="VALID",Ue="INVALID",Ne="PENDING",Kt="DISABLED";class yt{}class Vt extends yt{value;source;constructor(st,He){super(),this.value=st,this.source=He}}class Zt extends yt{pristine;source;constructor(st,He){super(),this.pristine=st,this.source=He}}class ti extends yt{touched;source;constructor(st,He){super(),this.touched=st,this.source=He}}class Ye extends yt{status;source;constructor(st,He){super(),this.status=st,this.source=He}}class Nt extends yt{source;constructor(st){super(),this.source=st}}class Et extends yt{source;constructor(st){super(),this.source=st}}function Jt(Je){return(vi(Je)?Je.validators:Je)||null}function $e(Je,st){return(vi(st)?st.asyncValidators:Je)||null}function vi(Je){return null!=Je&&!Array.isArray(Je)&&"object"==typeof Je}function ei(Je,st,He){const At=Je.controls;if(!(st?Object.keys(At):At).length)throw new i.buA(1e3,"");if(!At[He])throw new i.buA(1001,"")}function ci(Je,st,He){Je._forEachChild((At,mi)=>{if(void 0===He[mi])throw new i.buA(1002,"")})}class Hi{_pendingDirty=!1;_hasOwnPendingAsyncValidator=null;_pendingTouched=!1;_onCollectionChange=()=>{};_updateOn;_parent=null;_asyncValidationSubscription;_composedValidatorFn;_composedAsyncValidatorFn;_rawValidators;_rawAsyncValidators;value;constructor(st,He){this._assignValidators(st),this._assignAsyncValidators(He)}get validator(){return this._composedValidatorFn}set validator(st){this._rawValidators=this._composedValidatorFn=st}get asyncValidator(){return this._composedAsyncValidatorFn}set asyncValidator(st){this._rawAsyncValidators=this._composedAsyncValidatorFn=st}get parent(){return this._parent}get status(){return(0,p.O8)(this.statusReactive)}set status(st){(0,p.O8)(()=>this.statusReactive.set(st))}_status=(0,p.EW)(()=>this.statusReactive());statusReactive=(0,i.vPA)(void 0);get valid(){return this.status===ke}get invalid(){return this.status===Ue}get pending(){return this.status==Ne}get disabled(){return this.status===Kt}get enabled(){return this.status!==Kt}errors;get pristine(){return(0,p.O8)(this.pristineReactive)}set pristine(st){(0,p.O8)(()=>this.pristineReactive.set(st))}_pristine=(0,p.EW)(()=>this.pristineReactive());pristineReactive=(0,i.vPA)(!0);get dirty(){return!this.pristine}get touched(){return(0,p.O8)(this.touchedReactive)}set touched(st){(0,p.O8)(()=>this.touchedReactive.set(st))}_touched=(0,p.EW)(()=>this.touchedReactive());touchedReactive=(0,i.vPA)(!1);get untouched(){return!this.touched}_events=new e.B;events=this._events.asObservable();valueChanges;statusChanges;get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"}setValidators(st){this._assignValidators(st)}setAsyncValidators(st){this._assignAsyncValidators(st)}addValidators(st){this.setValidators(ge(st,this._rawValidators))}addAsyncValidators(st){this.setAsyncValidators(ge(st,this._rawAsyncValidators))}removeValidators(st){this.setValidators(ve(st,this._rawValidators))}removeAsyncValidators(st){this.setAsyncValidators(ve(st,this._rawAsyncValidators))}hasValidator(st){return Ke(this._rawValidators,st)}hasAsyncValidator(st){return Ke(this._rawAsyncValidators,st)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(st={}){const He=!1===this.touched;this.touched=!0;const At=st.sourceControl??this;this._parent&&!st.onlySelf&&this._parent.markAsTouched({...st,sourceControl:At}),He&&!1!==st.emitEvent&&this._events.next(new ti(!0,At))}markAllAsDirty(st={}){this.markAsDirty({onlySelf:!0,emitEvent:st.emitEvent,sourceControl:this}),this._forEachChild(He=>He.markAllAsDirty(st))}markAllAsTouched(st={}){this.markAsTouched({onlySelf:!0,emitEvent:st.emitEvent,sourceControl:this}),this._forEachChild(He=>He.markAllAsTouched(st))}markAsUntouched(st={}){const He=!0===this.touched;this.touched=!1,this._pendingTouched=!1;const At=st.sourceControl??this;this._forEachChild(mi=>{mi.markAsUntouched({onlySelf:!0,emitEvent:st.emitEvent,sourceControl:At})}),this._parent&&!st.onlySelf&&this._parent._updateTouched(st,At),He&&!1!==st.emitEvent&&this._events.next(new ti(!1,At))}markAsDirty(st={}){const He=!0===this.pristine;this.pristine=!1;const At=st.sourceControl??this;this._parent&&!st.onlySelf&&this._parent.markAsDirty({...st,sourceControl:At}),He&&!1!==st.emitEvent&&this._events.next(new Zt(!1,At))}markAsPristine(st={}){const He=!1===this.pristine;this.pristine=!0,this._pendingDirty=!1;const At=st.sourceControl??this;this._forEachChild(mi=>{mi.markAsPristine({onlySelf:!0,emitEvent:st.emitEvent})}),this._parent&&!st.onlySelf&&this._parent._updatePristine(st,At),He&&!1!==st.emitEvent&&this._events.next(new Zt(!0,At))}markAsPending(st={}){this.status=Ne;const He=st.sourceControl??this;!1!==st.emitEvent&&(this._events.next(new Ye(this.status,He)),this.statusChanges.emit(this.status)),this._parent&&!st.onlySelf&&this._parent.markAsPending({...st,sourceControl:He})}disable(st={}){const He=this._parentMarkedDirty(st.onlySelf);this.status=Kt,this.errors=null,this._forEachChild(mi=>{mi.disable({...st,onlySelf:!0})}),this._updateValue();const At=st.sourceControl??this;!1!==st.emitEvent&&(this._events.next(new Vt(this.value,At)),this._events.next(new Ye(this.status,At)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors({...st,skipPristineCheck:He},this),this._onDisabledChange.forEach(mi=>mi(!0))}enable(st={}){const He=this._parentMarkedDirty(st.onlySelf);this.status=ke,this._forEachChild(At=>{At.enable({...st,onlySelf:!0})}),this.updateValueAndValidity({onlySelf:!0,emitEvent:st.emitEvent}),this._updateAncestors({...st,skipPristineCheck:He},this),this._onDisabledChange.forEach(At=>At(!1))}_updateAncestors(st,He){this._parent&&!st.onlySelf&&(this._parent.updateValueAndValidity(st),st.skipPristineCheck||this._parent._updatePristine({},He),this._parent._updateTouched({},He))}setParent(st){this._parent=st}getRawValue(){return this.value}updateValueAndValidity(st={}){if(this._setInitialStatus(),this._updateValue(),this.enabled){const At=this._cancelExistingSubscription();this.errors=this._runValidator(),this.status=this._calculateStatus(),(this.status===ke||this.status===Ne)&&this._runAsyncValidator(At,st.emitEvent)}const He=st.sourceControl??this;!1!==st.emitEvent&&(this._events.next(new Vt(this.value,He)),this._events.next(new Ye(this.status,He)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!st.onlySelf&&this._parent.updateValueAndValidity({...st,sourceControl:He})}_updateTreeValidity(st={emitEvent:!0}){this._forEachChild(He=>He._updateTreeValidity(st)),this.updateValueAndValidity({onlySelf:!0,emitEvent:st.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?Kt:ke}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(st,He){if(this.asyncValidator){this.status=Ne,this._hasOwnPendingAsyncValidator={emitEvent:!1!==He,shouldHaveEmitted:!1!==st};const At=x(this.asyncValidator(this));this._asyncValidationSubscription=At.subscribe(mi=>{this._hasOwnPendingAsyncValidator=null,this.setErrors(mi,{emitEvent:He,shouldHaveEmitted:st})})}}_cancelExistingSubscription(){if(this._asyncValidationSubscription){this._asyncValidationSubscription.unsubscribe();const st=(this._hasOwnPendingAsyncValidator?.emitEvent||this._hasOwnPendingAsyncValidator?.shouldHaveEmitted)??!1;return this._hasOwnPendingAsyncValidator=null,st}return!1}setErrors(st,He={}){this.errors=st,this._updateControlsErrors(!1!==He.emitEvent,this,He.shouldHaveEmitted)}get(st){let He=st;return null==He||(Array.isArray(He)||(He=He.split(".")),0===He.length)?null:He.reduce((At,mi)=>At&&At._find(mi),this)}getError(st,He){const At=He?this.get(He):this;return At&&At.errors?At.errors[st]:null}hasError(st,He){return!!this.getError(st,He)}get root(){let st=this;for(;st._parent;)st=st._parent;return st}_updateControlsErrors(st,He,At){this.status=this._calculateStatus(),st&&this.statusChanges.emit(this.status),(st||At)&&this._events.next(new Ye(this.status,He)),this._parent&&this._parent._updateControlsErrors(st,He,At)}_initObservables(){this.valueChanges=new t.bkB,this.statusChanges=new t.bkB}_calculateStatus(){return this._allControlsDisabled()?Kt:this.errors?Ue:this._hasOwnPendingAsyncValidator||this._anyControlsHaveStatus(Ne)?Ne:this._anyControlsHaveStatus(Ue)?Ue:ke}_anyControlsHaveStatus(st){return this._anyControls(He=>He.status===st)}_anyControlsDirty(){return this._anyControls(st=>st.dirty)}_anyControlsTouched(){return this._anyControls(st=>st.touched)}_updatePristine(st,He){const At=!this._anyControlsDirty(),mi=this.pristine!==At;this.pristine=At,this._parent&&!st.onlySelf&&this._parent._updatePristine(st,He),mi&&this._events.next(new Zt(this.pristine,He))}_updateTouched(st={},He){this.touched=this._anyControlsTouched(),this._events.next(new ti(this.touched,He)),this._parent&&!st.onlySelf&&this._parent._updateTouched(st,He)}_onDisabledChange=[];_registerOnCollectionChange(st){this._onCollectionChange=st}_setUpdateStrategy(st){vi(st)&&null!=st.updateOn&&(this._updateOn=st.updateOn)}_parentMarkedDirty(st){return!st&&!(!this._parent||!this._parent.dirty)&&!this._parent._anyControlsDirty()}_find(st){return null}_assignValidators(st){this._rawValidators=Array.isArray(st)?st.slice():st,this._composedValidatorFn=function qe(Je){return Array.isArray(Je)?re(Je):Je||null}(this._rawValidators)}_assignAsyncValidators(st){this._rawAsyncValidators=Array.isArray(st)?st.slice():st,this._composedAsyncValidatorFn=function tt(Je){return Array.isArray(Je)?be(Je):Je||null}(this._rawAsyncValidators)}}class oi extends Hi{constructor(st,He,At){super(Jt(He),$e(At,He)),this.controls=st,this._initObservables(),this._setUpdateStrategy(He),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}controls;registerControl(st,He){return this.controls[st]?this.controls[st]:(this.controls[st]=He,He.setParent(this),He._registerOnCollectionChange(this._onCollectionChange),He)}addControl(st,He,At={}){this.registerControl(st,He),this.updateValueAndValidity({emitEvent:At.emitEvent}),this._onCollectionChange()}removeControl(st,He={}){this.controls[st]&&this.controls[st]._registerOnCollectionChange(()=>{}),delete this.controls[st],this.updateValueAndValidity({emitEvent:He.emitEvent}),this._onCollectionChange()}setControl(st,He,At={}){this.controls[st]&&this.controls[st]._registerOnCollectionChange(()=>{}),delete this.controls[st],He&&this.registerControl(st,He),this.updateValueAndValidity({emitEvent:At.emitEvent}),this._onCollectionChange()}contains(st){return this.controls.hasOwnProperty(st)&&this.controls[st].enabled}setValue(st,He={}){ci(this,0,st),Object.keys(st).forEach(At=>{ei(this,!0,At),this.controls[At].setValue(st[At],{onlySelf:!0,emitEvent:He.emitEvent})}),this.updateValueAndValidity(He)}patchValue(st,He={}){null!=st&&(Object.keys(st).forEach(At=>{const mi=this.controls[At];mi&&mi.patchValue(st[At],{onlySelf:!0,emitEvent:He.emitEvent})}),this.updateValueAndValidity(He))}reset(st={},He={}){this._forEachChild((At,mi)=>{At.reset(st?st[mi]:null,{onlySelf:!0,emitEvent:He.emitEvent})}),this._updatePristine(He,this),this._updateTouched(He,this),this.updateValueAndValidity(He),!1!==He?.emitEvent&&this._events.next(new Et(this))}getRawValue(){return this._reduceChildren({},(st,He,At)=>(st[At]=He.getRawValue(),st))}_syncPendingControls(){let st=this._reduceChildren(!1,(He,At)=>!!At._syncPendingControls()||He);return st&&this.updateValueAndValidity({onlySelf:!0}),st}_forEachChild(st){Object.keys(this.controls).forEach(He=>{const At=this.controls[He];At&&st(At,He)})}_setUpControls(){this._forEachChild(st=>{st.setParent(this),st._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(st){for(const[He,At]of Object.entries(this.controls))if(this.contains(He)&&st(At))return!0;return!1}_reduceValue(){return this._reduceChildren({},(He,At,mi)=>((At.enabled||this.disabled)&&(He[mi]=At.value),He))}_reduceChildren(st,He){let At=st;return this._forEachChild((mi,Rn)=>{At=He(At,mi,Rn)}),At}_allControlsDisabled(){for(const st of Object.keys(this.controls))if(this.controls[st].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}_find(st){return this.controls.hasOwnProperty(st)?this.controls[st]:null}}class dn extends oi{}const It=new i.nKC("",{providedIn:"root",factory:()=>Tt}),Tt="always";function Ze(Je,st){return[...st.path,Je]}function Ve(Je,st,He=Tt){ut(Je,st),st.valueAccessor.writeValue(Je.value),(Je.disabled||"always"===He)&&st.valueAccessor.setDisabledState?.(Je.disabled),function ai(Je,st){st.valueAccessor.registerOnChange(He=>{Je._pendingValue=He,Je._pendingChange=!0,Je._pendingDirty=!0,"change"===Je.updateOn&&ki(Je,st)})}(Je,st),function Ki(Je,st){const He=(At,mi)=>{st.valueAccessor.writeValue(At),mi&&st.viewToModelUpdate(At)};Je.registerOnChange(He),st._registerOnDestroy(()=>{Je._unregisterOnChange(He)})}(Je,st),function pi(Je,st){st.valueAccessor.registerOnTouched(()=>{Je._pendingTouched=!0,"blur"===Je.updateOn&&Je._pendingChange&&ki(Je,st),"submit"!==Je.updateOn&&Je.markAsTouched()})}(Je,st),function bt(Je,st){if(st.valueAccessor.setDisabledState){const He=At=>{st.valueAccessor.setDisabledState(At)};Je.registerOnDisabledChange(He),st._registerOnDestroy(()=>{Je._unregisterOnDisabledChange(He)})}}(Je,st)}function Fe(Je,st,He=!0){const At=()=>{};st.valueAccessor&&(st.valueAccessor.registerOnChange(At),st.valueAccessor.registerOnTouched(At)),jt(Je,st),Je&&(st._invokeOnDestroyCallbacks(),Je._registerOnCollectionChange(()=>{}))}function it(Je,st){Je.forEach(He=>{He.registerOnValidatorChange&&He.registerOnValidatorChange(st)})}function ut(Je,st){const He=_e(Je);null!==st.validator?Je.setValidators(Be(He,st.validator)):"function"==typeof He&&Je.setValidators([He]);const At=ye(Je);null!==st.asyncValidator?Je.setAsyncValidators(Be(At,st.asyncValidator)):"function"==typeof At&&Je.setAsyncValidators([At]);const mi=()=>Je.updateValueAndValidity();it(st._rawValidators,mi),it(st._rawAsyncValidators,mi)}function jt(Je,st){let He=!1;if(null!==Je){if(null!==st.validator){const mi=_e(Je);if(Array.isArray(mi)&&mi.length>0){const Rn=mi.filter(ea=>ea!==st.validator);Rn.length!==mi.length&&(He=!0,Je.setValidators(Rn))}}if(null!==st.asyncValidator){const mi=ye(Je);if(Array.isArray(mi)&&mi.length>0){const Rn=mi.filter(ea=>ea!==st.asyncValidator);Rn.length!==mi.length&&(He=!0,Je.setAsyncValidators(Rn))}}}const At=()=>{};return it(st._rawValidators,At),it(st._rawAsyncValidators,At),He}function ki(Je,st){Je._pendingDirty&&Je.markAsDirty(),Je.setValue(Je._pendingValue,{emitModelToViewChange:!1}),st.viewToModelUpdate(Je._pendingValue),Je._pendingChange=!1}function Ji(Je,st){ut(Je,st)}function Ci(Je,st){if(!Je.hasOwnProperty("model"))return!1;const He=Je.model;return!!He.isFirstChange()||!Object.is(st,He.currentValue)}function Yi(Je,st){Je._syncPendingControls(),st.forEach(He=>{const At=He.control;"submit"===At.updateOn&&At._pendingChange&&(He.viewToModelUpdate(At._pendingValue),At._pendingChange=!1)})}function zt(Je,st){if(!st)return null;let He,At,mi;return Array.isArray(st),st.forEach(Rn=>{Rn.constructor===G?He=Rn:function Ai(Je){return Object.getPrototypeOf(Je.constructor)===m}(Rn)?At=Rn:mi=Rn}),mi||At||He||null}const mt={provide:Ee,useExisting:(0,i.Rfq)(()=>ni)},vt=Promise.resolve();let ni=(()=>{class Je extends Ee{callSetDisabledState;get submitted(){return(0,p.O8)(this.submittedReactive)}_submitted=(0,p.EW)(()=>this.submittedReactive());submittedReactive=(0,i.vPA)(!1);_directives=new Set;form;ngSubmit=new t.bkB;options;constructor(He,At,mi){super(),this.callSetDisabledState=mi,this.form=new oi({},re(He),be(At))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(He){vt.then(()=>{const At=this._findContainer(He.path);He.control=At.registerControl(He.name,He.control),Ve(He.control,He,this.callSetDisabledState),He.control.updateValueAndValidity({emitEvent:!1}),this._directives.add(He)})}getControl(He){return this.form.get(He.path)}removeControl(He){vt.then(()=>{const At=this._findContainer(He.path);At&&At.removeControl(He.name),this._directives.delete(He)})}addFormGroup(He){vt.then(()=>{const At=this._findContainer(He.path),mi=new oi({});Ji(mi,He),At.registerControl(He.name,mi),mi.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(He){vt.then(()=>{const At=this._findContainer(He.path);At&&At.removeControl(He.name)})}getFormGroup(He){return this.form.get(He.path)}updateModel(He,At){vt.then(()=>{this.form.get(He.path).setValue(At)})}setValue(He){this.control.setValue(He)}onSubmit(He){return this.submittedReactive.set(!0),Yi(this.form,this._directives),this.ngSubmit.emit(He),this.form._events.next(new Nt(this.control)),"dialog"===He?.target?.method}onReset(){this.resetForm()}resetForm(He=void 0){this.form.reset(He),this.submittedReactive.set(!1)}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}_findContainer(He){return He.pop(),He.length?this.form.get(He):this.form}static \u0275fac=function(At){return new(At||Je)(t.rXU(ae,10),t.rXU(ue,10),t.rXU(It,8))};static \u0275dir=t.FsC({type:Je,selectors:[["form",3,"ngNoForm","",3,"formGroup",""],["ng-form"],["","ngForm",""]],hostBindings:function(At,mi){1&At&&t.bIt("submit",function(ea){return mi.onSubmit(ea)})("reset",function(){return mi.onReset()})},inputs:{options:[0,"ngFormOptions","options"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],standalone:!1,features:[t.Jv_([mt]),t.Vt3]})}return Je})();function Fi(Je,st){const He=Je.indexOf(st);He>-1&&Je.splice(He,1)}function kn(Je){return"object"==typeof Je&&null!==Je&&2===Object.keys(Je).length&&"value"in Je&&"disabled"in Je}const ca=class extends Hi{defaultValue=null;_onChange=[];_pendingValue;_pendingChange=!1;constructor(st=null,He,At){super(Jt(He),$e(At,He)),this._applyFormState(st),this._setUpdateStrategy(He),this._initObservables(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator}),vi(He)&&(He.nonNullable||He.initialValueIsDefault)&&(this.defaultValue=kn(st)?st.value:st)}setValue(st,He={}){this.value=this._pendingValue=st,this._onChange.length&&!1!==He.emitModelToViewChange&&this._onChange.forEach(At=>At(this.value,!1!==He.emitViewToModelChange)),this.updateValueAndValidity(He)}patchValue(st,He={}){this.setValue(st,He)}reset(st=this.defaultValue,He={}){this._applyFormState(st),this.markAsPristine(He),this.markAsUntouched(He),this.setValue(this.value,He),this._pendingChange=!1,!1!==He?.emitEvent&&this._events.next(new Et(this))}_updateValue(){}_anyControls(st){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(st){this._onChange.push(st)}_unregisterOnChange(st){Fi(this._onChange,st)}registerOnDisabledChange(st){this._onDisabledChange.push(st)}_unregisterOnDisabledChange(st){Fi(this._onDisabledChange,st)}_forEachChild(st){}_syncPendingControls(){return!("submit"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))}_applyFormState(st){kn(st)?(this.value=this._pendingValue=st.value,st.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=st}},an=ca,Gt={provide:dt,useExisting:(0,i.Rfq)(()=>Ft)},gt=Promise.resolve();let Ft=(()=>{class Je extends dt{_changeDetectorRef;callSetDisabledState;control=new ca;static ngAcceptInputType_isDisabled;_registered=!1;viewModel;name="";isDisabled;model;options;update=new t.bkB;constructor(He,At,mi,Rn,ea,lr){super(),this._changeDetectorRef=ea,this.callSetDisabledState=lr,this._parent=He,this._setValidators(At),this._setAsyncValidators(mi),this.valueAccessor=zt(0,Rn)}ngOnChanges(He){if(this._checkForErrors(),!this._registered||"name"in He){if(this._registered&&(this._checkName(),this.formDirective)){const At=He.name.previousValue;this.formDirective.removeControl({name:At,path:this._getPath(At)})}this._setUpControl()}"isDisabled"in He&&this._updateDisabled(He),Ci(He,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}get path(){return this._getPath(this.name)}get formDirective(){return this._parent?this._parent.formDirective:null}viewToModelUpdate(He){this.viewModel=He,this.update.emit(He)}_setUpControl(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)}_isStandalone(){return!this._parent||!(!this.options||!this.options.standalone)}_setUpStandalone(){Ve(this.control,this,this.callSetDisabledState),this.control.updateValueAndValidity({emitEvent:!1})}_checkForErrors(){this._checkName()}_checkName(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()}_updateValue(He){gt.then(()=>{this.control.setValue(He,{emitViewToModelChange:!1}),this._changeDetectorRef?.markForCheck()})}_updateDisabled(He){const At=He.isDisabled.currentValue,mi=0!==At&&(0,S.L39)(At);gt.then(()=>{mi&&!this.control.disabled?this.control.disable():!mi&&this.control.disabled&&this.control.enable(),this._changeDetectorRef?.markForCheck()})}_getPath(He){return this._parent?Ze(He,this._parent):[He]}static \u0275fac=function(At){return new(At||Je)(t.rXU(Ee,9),t.rXU(ae,10),t.rXU(ue,10),t.rXU(P,10),t.rXU(S.gRc,8),t.rXU(It,8))};static \u0275dir=t.FsC({type:Je,selectors:[["","ngModel","",3,"formControlName","",3,"formControl",""]],inputs:{name:"name",isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"],options:[0,"ngModelOptions","options"]},outputs:{update:"ngModelChange"},exportAs:["ngModel"],standalone:!1,features:[t.Jv_([Gt]),t.Vt3,t.OA$]})}return Je})(),Bi=(()=>{class Je{static \u0275fac=function(At){return new(At||Je)};static \u0275dir=t.FsC({type:Je,selectors:[["form",3,"ngNoForm","",3,"ngNativeValidate",""]],hostAttrs:["novalidate",""],standalone:!1})}return Je})();const Qi={provide:P,useExisting:(0,i.Rfq)(()=>fn),multi:!0};let fn=(()=>{class Je extends m{writeValue(He){this.setProperty("value",He??"")}registerOnChange(He){this.onChange=At=>{He(""==At?null:parseFloat(At))}}static \u0275fac=(()=>{let He;return function(mi){return(He||(He=t.xGo(Je)))(mi||Je)}})();static \u0275dir=t.FsC({type:Je,selectors:[["input","type","number","formControlName",""],["input","type","number","formControl",""],["input","type","number","ngModel",""]],hostBindings:function(At,mi){1&At&&t.bIt("input",function(ea){return mi.onChange(ea.target.value)})("blur",function(){return mi.onTouched()})},standalone:!1,features:[t.Jv_([Qi]),t.Vt3]})}return Je})();const pa=new i.nKC(""),Er={provide:dt,useExisting:(0,i.Rfq)(()=>xa)};let xa=(()=>{class Je extends dt{_ngModelWarningConfig;callSetDisabledState;viewModel;form;set isDisabled(He){}model;update=new t.bkB;static _ngModelWarningSentOnce=!1;_ngModelWarningSent=!1;constructor(He,At,mi,Rn,ea){super(),this._ngModelWarningConfig=Rn,this.callSetDisabledState=ea,this._setValidators(He),this._setAsyncValidators(At),this.valueAccessor=zt(0,mi)}ngOnChanges(He){if(this._isControlChanged(He)){const At=He.form.previousValue;At&&Fe(At,this,!1),Ve(this.form,this,this.callSetDisabledState),this.form.updateValueAndValidity({emitEvent:!1})}Ci(He,this.viewModel)&&(this.form.setValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.form&&Fe(this.form,this,!1)}get path(){return[]}get control(){return this.form}viewToModelUpdate(He){this.viewModel=He,this.update.emit(He)}_isControlChanged(He){return He.hasOwnProperty("form")}static \u0275fac=function(At){return new(At||Je)(t.rXU(ae,10),t.rXU(ue,10),t.rXU(P,10),t.rXU(pa,8),t.rXU(It,8))};static \u0275dir=t.FsC({type:Je,selectors:[["","formControl",""]],inputs:{form:[0,"formControl","form"],isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"]},outputs:{update:"ngModelChange"},exportAs:["ngForm"],standalone:!1,features:[t.Jv_([Er]),t.Vt3,t.OA$]})}return Je})();const Xr={provide:Ee,useExisting:(0,i.Rfq)(()=>Ta)};let Ta=(()=>{class Je extends Ee{callSetDisabledState;get submitted(){return(0,p.O8)(this._submittedReactive)}set submitted(He){this._submittedReactive.set(He)}_submitted=(0,p.EW)(()=>this._submittedReactive());_submittedReactive=(0,i.vPA)(!1);_oldForm;_onCollectionChange=()=>this._updateDomValue();directives=[];form=null;ngSubmit=new t.bkB;constructor(He,At,mi){super(),this.callSetDisabledState=mi,this._setValidators(He),this._setAsyncValidators(At)}ngOnChanges(He){He.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations(),this._oldForm=this.form)}ngOnDestroy(){this.form&&(jt(this.form,this),this.form._onCollectionChange===this._onCollectionChange&&this.form._registerOnCollectionChange(()=>{}))}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(He){const At=this.form.get(He.path);return Ve(At,He,this.callSetDisabledState),At.updateValueAndValidity({emitEvent:!1}),this.directives.push(He),At}getControl(He){return this.form.get(He.path)}removeControl(He){Fe(He.control||null,He,!1),function ji(Je,st){const He=Je.indexOf(st);He>-1&&Je.splice(He,1)}(this.directives,He)}addFormGroup(He){this._setUpFormContainer(He)}removeFormGroup(He){this._cleanUpFormContainer(He)}getFormGroup(He){return this.form.get(He.path)}addFormArray(He){this._setUpFormContainer(He)}removeFormArray(He){this._cleanUpFormContainer(He)}getFormArray(He){return this.form.get(He.path)}updateModel(He,At){this.form.get(He.path).setValue(At)}onSubmit(He){return this._submittedReactive.set(!0),Yi(this.form,this.directives),this.ngSubmit.emit(He),this.form._events.next(new Nt(this.control)),"dialog"===He?.target?.method}onReset(){this.resetForm()}resetForm(He=void 0,At={}){this.form.reset(He,At),this._submittedReactive.set(!1)}_updateDomValue(){this.directives.forEach(He=>{const At=He.control,mi=this.form.get(He.path);At!==mi&&(Fe(At||null,He),(Je=>Je instanceof ca)(mi)&&(Ve(mi,He,this.callSetDisabledState),He.control=mi))}),this.form._updateTreeValidity({emitEvent:!1})}_setUpFormContainer(He){const At=this.form.get(He.path);Ji(At,He),At.updateValueAndValidity({emitEvent:!1})}_cleanUpFormContainer(He){if(this.form){const At=this.form.get(He.path);At&&function Dn(Je,st){return jt(Je,st)}(At,He)&&At.updateValueAndValidity({emitEvent:!1})}}_updateRegistrations(){this.form._registerOnCollectionChange(this._onCollectionChange),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{})}_updateValidators(){ut(this.form,this),this._oldForm&&jt(this._oldForm,this)}static \u0275fac=function(At){return new(At||Je)(t.rXU(ae,10),t.rXU(ue,10),t.rXU(It,8))};static \u0275dir=t.FsC({type:Je,selectors:[["","formGroup",""]],hostBindings:function(At,mi){1&At&&t.bIt("submit",function(ea){return mi.onSubmit(ea)})("reset",function(){return mi.onReset()})},inputs:{form:[0,"formGroup","form"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],standalone:!1,features:[t.Jv_([Xr]),t.Vt3,t.OA$]})}return Je})();const ys={provide:dt,useExisting:(0,i.Rfq)(()=>Kr)};let Kr=(()=>{class Je extends dt{_ngModelWarningConfig;_added=!1;viewModel;control;name=null;set isDisabled(He){}model;update=new t.bkB;static _ngModelWarningSentOnce=!1;_ngModelWarningSent=!1;constructor(He,At,mi,Rn,ea){super(),this._ngModelWarningConfig=ea,this._parent=He,this._setValidators(At),this._setAsyncValidators(mi),this.valueAccessor=zt(0,Rn)}ngOnChanges(He){this._added||this._setUpControl(),Ci(He,this.viewModel)&&(this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(He){this.viewModel=He,this.update.emit(He)}get path(){return Ze(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}_setUpControl(){this.control=this.formDirective.addControl(this),this._added=!0}static \u0275fac=function(At){return new(At||Je)(t.rXU(Ee,13),t.rXU(ae,10),t.rXU(ue,10),t.rXU(P,10),t.rXU(pa,8))};static \u0275dir=t.FsC({type:Je,selectors:[["","formControlName",""]],inputs:{name:[0,"formControlName","name"],isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"]},outputs:{update:"ngModelChange"},standalone:!1,features:[t.Jv_([ys]),t.Vt3,t.OA$]})}return Je})();function wt(Je){return"number"==typeof Je?Je:parseFloat(Je)}let ii=(()=>{class Je{_validator=A;_onChange;_enabled;ngOnChanges(He){if(this.inputName in He){const At=this.normalizeInput(He[this.inputName].currentValue);this._enabled=this.enabled(At),this._validator=this._enabled?this.createValidator(At):A,this._onChange&&this._onChange()}}validate(He){return this._validator(He)}registerOnValidatorChange(He){this._onChange=He}enabled(He){return null!=He}static \u0275fac=function(At){return new(At||Je)};static \u0275dir=t.FsC({type:Je,features:[t.OA$]})}return Je})();const Ii={provide:ae,useExisting:(0,i.Rfq)(()=>Ui),multi:!0};let Ui=(()=>{class Je extends ii{max;inputName="max";normalizeInput=He=>wt(He);createValidator=He=>Te(He);static \u0275fac=(()=>{let He;return function(mi){return(He||(He=t.xGo(Je)))(mi||Je)}})();static \u0275dir=t.FsC({type:Je,selectors:[["input","type","number","max","","formControlName",""],["input","type","number","max","","formControl",""],["input","type","number","max","","ngModel",""]],hostVars:1,hostBindings:function(At,mi){2&At&&t.BMQ("max",mi._enabled?mi.max:null)},inputs:{max:"max"},standalone:!1,features:[t.Jv_([Ii]),t.Vt3]})}return Je})();const tn={provide:ae,useExisting:(0,i.Rfq)(()=>yn),multi:!0};let yn=(()=>{class Je extends ii{min;inputName="min";normalizeInput=He=>wt(He);createValidator=He=>me(He);static \u0275fac=(()=>{let He;return function(mi){return(He||(He=t.xGo(Je)))(mi||Je)}})();static \u0275dir=t.FsC({type:Je,selectors:[["input","type","number","min","","formControlName",""],["input","type","number","min","","formControl",""],["input","type","number","min","","ngModel",""]],hostVars:1,hostBindings:function(At,mi){2&At&&t.BMQ("min",mi._enabled?mi.min:null)},inputs:{min:"min"},standalone:!1,features:[t.Jv_([tn]),t.Vt3]})}return Je})();const Pn={provide:ae,useExisting:(0,i.Rfq)(()=>Jn),multi:!0};let Jn=(()=>{class Je extends ii{required;inputName="required";normalizeInput=S.L39;createValidator=He=>D;enabled(He){return He}static \u0275fac=(()=>{let He;return function(mi){return(He||(He=t.xGo(Je)))(mi||Je)}})();static \u0275dir=t.FsC({type:Je,selectors:[["","required","","formControlName","",3,"type","checkbox"],["","required","","formControl","",3,"type","checkbox"],["","required","","ngModel","",3,"type","checkbox"]],hostVars:1,hostBindings:function(At,mi){2&At&&t.BMQ("required",mi._enabled?"":null)},inputs:{required:"required"},standalone:!1,features:[t.Jv_([Pn]),t.Vt3]})}return Je})(),gr=(()=>{class Je{static \u0275fac=function(At){return new(At||Je)};static \u0275mod=t.$C({type:Je});static \u0275inj=i.G2t({})}return Je})();class ds extends Hi{constructor(st,He,At){super(Jt(He),$e(At,He)),this.controls=st,this._initObservables(),this._setUpdateStrategy(He),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}controls;at(st){return this.controls[this._adjustIndex(st)]}push(st,He={}){Array.isArray(st)?st.forEach(At=>{this.controls.push(At),this._registerControl(At)}):(this.controls.push(st),this._registerControl(st)),this.updateValueAndValidity({emitEvent:He.emitEvent}),this._onCollectionChange()}insert(st,He,At={}){this.controls.splice(st,0,He),this._registerControl(He),this.updateValueAndValidity({emitEvent:At.emitEvent})}removeAt(st,He={}){let At=this._adjustIndex(st);At<0&&(At=0),this.controls[At]&&this.controls[At]._registerOnCollectionChange(()=>{}),this.controls.splice(At,1),this.updateValueAndValidity({emitEvent:He.emitEvent})}setControl(st,He,At={}){let mi=this._adjustIndex(st);mi<0&&(mi=0),this.controls[mi]&&this.controls[mi]._registerOnCollectionChange(()=>{}),this.controls.splice(mi,1),He&&(this.controls.splice(mi,0,He),this._registerControl(He)),this.updateValueAndValidity({emitEvent:At.emitEvent}),this._onCollectionChange()}get length(){return this.controls.length}setValue(st,He={}){ci(this,0,st),st.forEach((At,mi)=>{ei(this,!1,mi),this.at(mi).setValue(At,{onlySelf:!0,emitEvent:He.emitEvent})}),this.updateValueAndValidity(He)}patchValue(st,He={}){null!=st&&(st.forEach((At,mi)=>{this.at(mi)&&this.at(mi).patchValue(At,{onlySelf:!0,emitEvent:He.emitEvent})}),this.updateValueAndValidity(He))}reset(st=[],He={}){this._forEachChild((At,mi)=>{At.reset(st[mi],{onlySelf:!0,emitEvent:He.emitEvent})}),this._updatePristine(He,this),this._updateTouched(He,this),this.updateValueAndValidity(He),!1!==He?.emitEvent&&this._events.next(new Et(this))}getRawValue(){return this.controls.map(st=>st.getRawValue())}clear(st={}){this.controls.length<1||(this._forEachChild(He=>He._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity({emitEvent:st.emitEvent}))}_adjustIndex(st){return st<0?st+this.length:st}_syncPendingControls(){let st=this.controls.reduce((He,At)=>!!At._syncPendingControls()||He,!1);return st&&this.updateValueAndValidity({onlySelf:!0}),st}_forEachChild(st){this.controls.forEach((He,At)=>{st(He,At)})}_updateValue(){this.value=this.controls.filter(st=>st.enabled||this.disabled).map(st=>st.value)}_anyControls(st){return this.controls.some(He=>He.enabled&&st(He))}_setUpControls(){this._forEachChild(st=>this._registerControl(st))}_allControlsDisabled(){for(const st of this.controls)if(st.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(st){st.setParent(this),st._registerOnCollectionChange(this._onCollectionChange)}_find(st){return this.at(st)??null}}function Oa(Je){return!!Je&&(void 0!==Je.asyncValidators||void 0!==Je.validators||void 0!==Je.updateOn)}let Wt=(()=>{class Je{useNonNullable=!1;get nonNullable(){const He=new Je;return He.useNonNullable=!0,He}group(He,At=null){const mi=this._reduceControls(He);let Rn={};return Oa(At)?Rn=At:null!==At&&(Rn.validators=At.validator,Rn.asyncValidators=At.asyncValidator),new oi(mi,Rn)}record(He,At=null){const mi=this._reduceControls(He);return new dn(mi,At)}control(He,At,mi){let Rn={};return this.useNonNullable?(Oa(At)?Rn=At:(Rn.validators=At,Rn.asyncValidators=mi),new ca(He,{...Rn,nonNullable:!0})):new ca(He,At,mi)}array(He,At,mi){const Rn=He.map(ea=>this._createControl(ea));return new ds(Rn,At,mi)}_reduceControls(He){const At={};return Object.keys(He).forEach(mi=>{At[mi]=this._createControl(He[mi])}),At}_createControl(He){return He instanceof ca||He instanceof Hi?He:Array.isArray(He)?this.control(He[0],He.length>1?He[1]:null,He.length>2?He[2]:null):this.control(He)}static \u0275fac=function(At){return new(At||Je)};static \u0275prov=i.jDH({token:Je,factory:Je.\u0275fac,providedIn:"root"})}return Je})(),ft=(()=>{class Je extends Wt{group(He,At=null){return super.group(He,At)}control(He,At,mi){return super.control(He,At,mi)}array(He,At,mi){return super.array(He,At,mi)}static \u0275fac=(()=>{let He;return function(mi){return(He||(He=t.xGo(Je)))(mi||Je)}})();static \u0275prov=i.jDH({token:Je,factory:Je.\u0275fac,providedIn:"root"})}return Je})(),Li=(()=>{class Je{static withConfig(He){return{ngModule:Je,providers:[{provide:It,useValue:He.callSetDisabledState??Tt}]}}static \u0275fac=function(At){return new(At||Je)};static \u0275mod=t.$C({type:Je});static \u0275inj=i.G2t({imports:[gr]})}return Je})(),vn=(()=>{class Je{static withConfig(He){return{ngModule:Je,providers:[{provide:pa,useValue:He.warnOnNgModelWithFormControl??"always"},{provide:It,useValue:He.callSetDisabledState??Tt}]}}static \u0275fac=function(At){return new(At||Je)};static \u0275mod=t.$C({type:Je});static \u0275inj=i.G2t({imports:[gr]})}return Je})()},89460:(Ae,ee,l)=>{const i=l(19089),t=l(47424),p=l(84662),S=l(35941),c=l(96214),e=l(76269),T=l(3361),g=l(23677),d=l(86289),w=l(91252),m=l(26254),P=l(91677),M=l(22868);function G(oe,he,me){const Te=oe.size,D=m.getEncodedBits(he,me);let n,o;for(n=0;n<15;n++)o=1==(D>>n&1),oe.set(n<6?n:n<8?n+1:Te-15+n,8,o,!0),oe.set(8,n<8?Te-n-1:n<9?15-n-1+1:15-n-1,o,!0);oe.set(Te-8,8,1,!0)}function ue(oe,he,me,Te){let D;if(Array.isArray(oe))D=M.fromArray(oe);else{if("string"!=typeof oe)throw new Error("Invalid data");{let b=he;if(!b){const A=M.rawSplit(oe);b=w.getBestVersionForData(A,me)}D=M.fromString(oe,b||40)}}const n=w.getBestVersionForData(D,me);if(!n)throw new Error("The amount of data is too big to be stored in a QR Code");if(he){if(he=0&&f<=6&&(0===h||6===h)||h>=0&&h<=6&&(0===f||6===f)||f>=2&&f<=4&&h>=2&&h<=4,!0)}}(h,he),function U(oe){const he=oe.size;for(let me=8;me=7&&function q(oe,he){const me=oe.size,Te=w.getEncodedBits(he);let D,n,o;for(let f=0;f<18;f++)D=Math.floor(f/3),n=f%3+me-8-3,o=1==(Te>>f&1),oe.set(D,n,o,!0),oe.set(n,D,o,!0)}(h,he),function Q(oe,he){const me=oe.size;let Te=-1,D=me-1,n=7,o=0;for(let f=me-1;f>0;f-=2)for(6===f&&f--;;){for(let h=0;h<2;h++)if(!oe.isReserved(D,f-h)){let b=!1;o>>n&1)),oe.set(D,f-h,b),n--,-1===n&&(o++,n=7)}if(D+=Te,D<0||me<=D){D-=Te,Te=-Te;break}}}(h,o),isNaN(Te)&&(Te=T.getBestMask(h,G.bind(null,h,me))),T.applyMask(Te,h),G(h,me,Te),{modules:h,version:he,errorCorrectionLevel:me,maskPattern:Te,segments:D}}ee.create=function(he,me){if(typeof he>"u"||""===he)throw new Error("No input text");let D,n,Te=t.M;return typeof me<"u"&&(Te=t.from(me.errorCorrectionLevel,t.M),D=w.from(me.version),n=T.from(me.maskPattern),me.toSJISFunc&&i.setToSJISFunction(me.toSJISFunc)),ue(he,D,Te,n)}},89472:(Ae,ee,l)=>{"use strict";var i=/Proc-Type: 4,ENCRYPTED[\n\r]+DEK-Info: AES-((?:128)|(?:192)|(?:256))-CBC,([0-9A-H]+)[\n\r]+([0-9A-z\n\r+/=]+)[\n\r]+/m,t=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----/m,p=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----([0-9A-z\n\r+/=]+)-----END \1-----$/m,S=l(18211),c=l(43388),e=l(27054).Buffer;Ae.exports=function(T,g){var m,d=T.toString(),w=d.match(i);if(w){var M="aes"+w[1],j=e.from(w[2],"hex"),U=e.from(w[3].replace(/[\r\n]/g,""),"base64"),K=S(g,j.slice(0,8),parseInt(w[1],10)).key,q=[],G=c.createDecipheriv(M,K,j);q.push(G.update(U)),q.push(G.final()),m=e.concat(q)}else{var P=d.match(p);m=e.from(P[2].replace(/[\r\n]/g,""),"base64")}return{tag:d.match(t)[1],data:m}}},89587:(Ae,ee,l)=>{"use strict";l.d(ee,{N:()=>t});var i=l(73664);let t=(()=>{var p;class S{constructor(e){this.el=e}ngAfterContentInit(){setTimeout(()=>{this.el.nativeElement.focus()},500)}static#e=p=()=>(this.\u0275fac=function(T){return new(T||S)(i.rXU(i.aKT))},this.\u0275dir=i.FsC({type:S,selectors:[["","autoFocus",""]],inputs:{appAutoFocus:"appAutoFocus"},standalone:!1}))}return p(),S})()},89606:function(Ae,ee,l){!function(i,t){"use strict";function p(D,n){if(!D)throw new Error(n||"Assertion failed")}function S(D,n){D.super_=n;var o=function(){};o.prototype=n.prototype,D.prototype=new o,D.prototype.constructor=D}function c(D,n,o){if(c.isBN(D))return D;this.negative=0,this.words=null,this.length=0,this.red=null,null!==D&&(("le"===n||"be"===n)&&(o=n,n=10),this._init(D||0,n||10,o||"be"))}var e;"object"==typeof i?i.exports=c:t.BN=c,c.BN=c,c.wordSize=26;try{e=typeof window<"u"&&typeof window.Buffer<"u"?window.Buffer:l(77965).Buffer}catch{}function T(D,n){var o=D.charCodeAt(n);return o>=65&&o<=70?o-55:o>=97&&o<=102?o-87:o-48&15}function g(D,n,o){var f=T(D,o);return o-1>=n&&(f|=T(D,o-1)<<4),f}function d(D,n,o,f){for(var h=0,b=Math.min(D.length,o),A=n;A=49?k-49+10:k>=17?k-17+10:k}return h}c.isBN=function(n){return n instanceof c||null!==n&&"object"==typeof n&&n.constructor.wordSize===c.wordSize&&Array.isArray(n.words)},c.max=function(n,o){return n.cmp(o)>0?n:o},c.min=function(n,o){return n.cmp(o)<0?n:o},c.prototype._init=function(n,o,f){if("number"==typeof n)return this._initNumber(n,o,f);if("object"==typeof n)return this._initArray(n,o,f);"hex"===o&&(o=16),p(o===(0|o)&&o>=2&&o<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[b]|=(A=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-k&67108863,(k+=24)>=26&&(k-=26,b++);else if("le"===f)for(h=0,b=0;h>>26-k&67108863,(k+=24)>=26&&(k-=26,b++);return this.strip()},c.prototype._parseHex=function(n,o,f){this.length=Math.ceil((n.length-o)/6),this.words=new Array(this.length);for(var h=0;h=o;h-=2)k=g(n,o,h)<=18?(b-=18,this.words[A+=1]|=k>>>26):b+=8;else for(h=(n.length-o)%2==0?o+1:o;h=18?(b-=18,this.words[A+=1]|=k>>>26):b+=8;this.strip()},c.prototype._parseBase=function(n,o,f){this.words=[0],this.length=1;for(var h=0,b=1;b<=67108863;b*=o)h++;h--,b=b/o|0;for(var A=n.length-f,k=A%h,x=Math.min(A,A-k)+f,r=0,_=f;_1&&0===this.words[this.length-1];)this.length--;return this._normSign()},c.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},c.prototype.inspect=function(){return(this.red?""};var w=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],m=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],P=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function j(D,n,o){o.negative=n.negative^D.negative;var f=D.length+n.length|0;o.length=f,f=f-1|0;var h=0|D.words[0],b=0|n.words[0],A=h*b,x=A/67108864|0;o.words[0]=67108863&A;for(var r=1;r>>26,W=67108863&x,I=Math.min(r,n.length-1),B=Math.max(0,r-D.length+1);B<=I;B++)_+=(A=(h=0|D.words[r-B|0])*(b=0|n.words[B])+W)/67108864|0,W=67108863&A;o.words[r]=0|W,x=0|_}return 0!==x?o.words[r]=0|x:o.length--,o.strip()}c.prototype.toString=function(n,o){var f;if(o=0|o||1,16===(n=n||10)||"hex"===n){f="";for(var h=0,b=0,A=0;A>>24-h&16777215,(h+=2)>=26&&(h-=26,A--),f=0!==b||A!==this.length-1?w[6-x.length]+x+f:x+f}for(0!==b&&(f=b.toString(16)+f);f.length%o!==0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}if(n===(0|n)&&n>=2&&n<=36){var r=m[n],_=P[n];f="";var W=this.clone();for(W.negative=0;!W.isZero();){var I=W.modn(_).toString(n);f=(W=W.idivn(_)).isZero()?I+f:w[r-I.length]+I+f}for(this.isZero()&&(f="0"+f);f.length%o!==0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}p(!1,"Base should be between 2 and 36")},c.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&p(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},c.prototype.toJSON=function(){return this.toString(16)},c.prototype.toBuffer=function(n,o){return p(typeof e<"u"),this.toArrayLike(e,n,o)},c.prototype.toArray=function(n,o){return this.toArrayLike(Array,n,o)},c.prototype.toArrayLike=function(n,o,f){var h=this.byteLength(),b=f||Math.max(1,h);p(h<=b,"byte array longer than desired length"),p(b>0,"Requested array length <= 0"),this.strip();var x,r,A="le"===o,k=new n(b),_=this.clone();if(A){for(r=0;!_.isZero();r++)x=_.andln(255),_.iushrn(8),k[r]=x;for(;r=4096&&(f+=13,o>>>=13),o>=64&&(f+=7,o>>>=7),o>=8&&(f+=4,o>>>=4),o>=2&&(f+=2,o>>>=2),f+o},c.prototype._zeroBits=function(n){if(0===n)return 26;var o=n,f=0;return!(8191&o)&&(f+=13,o>>>=13),!(127&o)&&(f+=7,o>>>=7),!(15&o)&&(f+=4,o>>>=4),!(3&o)&&(f+=2,o>>>=2),!(1&o)&&f++,f},c.prototype.bitLength=function(){var o=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+o},c.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,o=0;on.length?this.clone().ior(n):n.clone().ior(this)},c.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},c.prototype.iuand=function(n){var o;o=this.length>n.length?n:this;for(var f=0;fn.length?this.clone().iand(n):n.clone().iand(this)},c.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},c.prototype.iuxor=function(n){var o,f;this.length>n.length?(o=this,f=n):(o=n,f=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},c.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},c.prototype.inotn=function(n){p("number"==typeof n&&n>=0);var o=0|Math.ceil(n/26),f=n%26;this._expand(o),f>0&&o--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-f),this.strip()},c.prototype.notn=function(n){return this.clone().inotn(n)},c.prototype.setn=function(n,o){p("number"==typeof n&&n>=0);var f=n/26|0,h=n%26;return this._expand(f+1),this.words[f]=o?this.words[f]|1<n.length?(f=this,h=n):(f=n,h=this);for(var b=0,A=0;A>>26;for(;0!==b&&A>>26;if(this.length=f.length,0!==b)this.words[this.length]=b,this.length++;else if(f!==this)for(;An.length?this.clone().iadd(n):n.clone().iadd(this)},c.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var o=this.iadd(n);return n.negative=1,o._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,b,f=this.cmp(n);if(0===f)return this.negative=0,this.length=1,this.words[0]=0,this;f>0?(h=this,b=n):(h=n,b=this);for(var A=0,k=0;k>26,this.words[k]=67108863&o;for(;0!==A&&k>26,this.words[k]=67108863&o;if(0===A&&k>>13,re=0|h[1],pe=8191&re,be=re>>>13,Be=0|h[2],_e=8191&Be,ye=Be>>>13,Le=0|h[3],Ke=8191&Le,ge=Le>>>13,ve=0|h[4],Oe=8191&ve,Ee=ve>>>13,dt=0|h[5],nt=8191&dt,Ct=dt>>>13,Mt=0|h[6],lt=8191&Mt,Pe=Mt>>>13,Ht=0|h[7],ct=8191&Ht,Ce=Ht>>>13,ze=0|h[8],Z=8191&ze,J=ze>>>13,fe=0|h[9],Ie=8191&fe,ht=fe>>>13,li=0|b[0],Qt=8191&li,di=li>>>13,kt=0|b[1],Rt=8191&kt,le=kt>>>13,te=0|b[2],ce=8191&te,se=te>>>13,ke=0|b[3],Ue=8191&ke,Ne=ke>>>13,Kt=0|b[4],yt=8191&Kt,Vt=Kt>>>13,Zt=0|b[5],ti=8191&Zt,Ye=Zt>>>13,Nt=0|b[6],Et=8191&Nt,Jt=Nt>>>13,qe=0|b[7],$e=8191&qe,tt=qe>>>13,vi=0|b[8],ei=8191&vi,ci=vi>>>13,Hi=0|b[9],oi=8191&Hi,ui=Hi>>>13;f.negative=n.negative^o.negative,f.length=19;var ln=(k+(x=Math.imul(I,Qt))|0)+((8191&(r=(r=Math.imul(I,di))+Math.imul(B,Qt)|0))<<13)|0;k=((_=Math.imul(B,di))+(r>>>13)|0)+(ln>>>26)|0,ln&=67108863,x=Math.imul(pe,Qt),r=(r=Math.imul(pe,di))+Math.imul(be,Qt)|0,_=Math.imul(be,di);var nn=(k+(x=x+Math.imul(I,Rt)|0)|0)+((8191&(r=(r=r+Math.imul(I,le)|0)+Math.imul(B,Rt)|0))<<13)|0;k=((_=_+Math.imul(B,le)|0)+(r>>>13)|0)+(nn>>>26)|0,nn&=67108863,x=Math.imul(_e,Qt),r=(r=Math.imul(_e,di))+Math.imul(ye,Qt)|0,_=Math.imul(ye,di),x=x+Math.imul(pe,Rt)|0,r=(r=r+Math.imul(pe,le)|0)+Math.imul(be,Rt)|0,_=_+Math.imul(be,le)|0;var dn=(k+(x=x+Math.imul(I,ce)|0)|0)+((8191&(r=(r=r+Math.imul(I,se)|0)+Math.imul(B,ce)|0))<<13)|0;k=((_=_+Math.imul(B,se)|0)+(r>>>13)|0)+(dn>>>26)|0,dn&=67108863,x=Math.imul(Ke,Qt),r=(r=Math.imul(Ke,di))+Math.imul(ge,Qt)|0,_=Math.imul(ge,di),x=x+Math.imul(_e,Rt)|0,r=(r=r+Math.imul(_e,le)|0)+Math.imul(ye,Rt)|0,_=_+Math.imul(ye,le)|0,x=x+Math.imul(pe,ce)|0,r=(r=r+Math.imul(pe,se)|0)+Math.imul(be,ce)|0,_=_+Math.imul(be,se)|0;var zn=(k+(x=x+Math.imul(I,Ue)|0)|0)+((8191&(r=(r=r+Math.imul(I,Ne)|0)+Math.imul(B,Ue)|0))<<13)|0;k=((_=_+Math.imul(B,Ne)|0)+(r>>>13)|0)+(zn>>>26)|0,zn&=67108863,x=Math.imul(Oe,Qt),r=(r=Math.imul(Oe,di))+Math.imul(Ee,Qt)|0,_=Math.imul(Ee,di),x=x+Math.imul(Ke,Rt)|0,r=(r=r+Math.imul(Ke,le)|0)+Math.imul(ge,Rt)|0,_=_+Math.imul(ge,le)|0,x=x+Math.imul(_e,ce)|0,r=(r=r+Math.imul(_e,se)|0)+Math.imul(ye,ce)|0,_=_+Math.imul(ye,se)|0,x=x+Math.imul(pe,Ue)|0,r=(r=r+Math.imul(pe,Ne)|0)+Math.imul(be,Ue)|0,_=_+Math.imul(be,Ne)|0;var It=(k+(x=x+Math.imul(I,yt)|0)|0)+((8191&(r=(r=r+Math.imul(I,Vt)|0)+Math.imul(B,yt)|0))<<13)|0;k=((_=_+Math.imul(B,Vt)|0)+(r>>>13)|0)+(It>>>26)|0,It&=67108863,x=Math.imul(nt,Qt),r=(r=Math.imul(nt,di))+Math.imul(Ct,Qt)|0,_=Math.imul(Ct,di),x=x+Math.imul(Oe,Rt)|0,r=(r=r+Math.imul(Oe,le)|0)+Math.imul(Ee,Rt)|0,_=_+Math.imul(Ee,le)|0,x=x+Math.imul(Ke,ce)|0,r=(r=r+Math.imul(Ke,se)|0)+Math.imul(ge,ce)|0,_=_+Math.imul(ge,se)|0,x=x+Math.imul(_e,Ue)|0,r=(r=r+Math.imul(_e,Ne)|0)+Math.imul(ye,Ue)|0,_=_+Math.imul(ye,Ne)|0,x=x+Math.imul(pe,yt)|0,r=(r=r+Math.imul(pe,Vt)|0)+Math.imul(be,yt)|0,_=_+Math.imul(be,Vt)|0;var Tt=(k+(x=x+Math.imul(I,ti)|0)|0)+((8191&(r=(r=r+Math.imul(I,Ye)|0)+Math.imul(B,ti)|0))<<13)|0;k=((_=_+Math.imul(B,Ye)|0)+(r>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,x=Math.imul(lt,Qt),r=(r=Math.imul(lt,di))+Math.imul(Pe,Qt)|0,_=Math.imul(Pe,di),x=x+Math.imul(nt,Rt)|0,r=(r=r+Math.imul(nt,le)|0)+Math.imul(Ct,Rt)|0,_=_+Math.imul(Ct,le)|0,x=x+Math.imul(Oe,ce)|0,r=(r=r+Math.imul(Oe,se)|0)+Math.imul(Ee,ce)|0,_=_+Math.imul(Ee,se)|0,x=x+Math.imul(Ke,Ue)|0,r=(r=r+Math.imul(Ke,Ne)|0)+Math.imul(ge,Ue)|0,_=_+Math.imul(ge,Ne)|0,x=x+Math.imul(_e,yt)|0,r=(r=r+Math.imul(_e,Vt)|0)+Math.imul(ye,yt)|0,_=_+Math.imul(ye,Vt)|0,x=x+Math.imul(pe,ti)|0,r=(r=r+Math.imul(pe,Ye)|0)+Math.imul(be,ti)|0,_=_+Math.imul(be,Ye)|0;var Ze=(k+(x=x+Math.imul(I,Et)|0)|0)+((8191&(r=(r=r+Math.imul(I,Jt)|0)+Math.imul(B,Et)|0))<<13)|0;k=((_=_+Math.imul(B,Jt)|0)+(r>>>13)|0)+(Ze>>>26)|0,Ze&=67108863,x=Math.imul(ct,Qt),r=(r=Math.imul(ct,di))+Math.imul(Ce,Qt)|0,_=Math.imul(Ce,di),x=x+Math.imul(lt,Rt)|0,r=(r=r+Math.imul(lt,le)|0)+Math.imul(Pe,Rt)|0,_=_+Math.imul(Pe,le)|0,x=x+Math.imul(nt,ce)|0,r=(r=r+Math.imul(nt,se)|0)+Math.imul(Ct,ce)|0,_=_+Math.imul(Ct,se)|0,x=x+Math.imul(Oe,Ue)|0,r=(r=r+Math.imul(Oe,Ne)|0)+Math.imul(Ee,Ue)|0,_=_+Math.imul(Ee,Ne)|0,x=x+Math.imul(Ke,yt)|0,r=(r=r+Math.imul(Ke,Vt)|0)+Math.imul(ge,yt)|0,_=_+Math.imul(ge,Vt)|0,x=x+Math.imul(_e,ti)|0,r=(r=r+Math.imul(_e,Ye)|0)+Math.imul(ye,ti)|0,_=_+Math.imul(ye,Ye)|0,x=x+Math.imul(pe,Et)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(be,Et)|0,_=_+Math.imul(be,Jt)|0;var Ve=(k+(x=x+Math.imul(I,$e)|0)|0)+((8191&(r=(r=r+Math.imul(I,tt)|0)+Math.imul(B,$e)|0))<<13)|0;k=((_=_+Math.imul(B,tt)|0)+(r>>>13)|0)+(Ve>>>26)|0,Ve&=67108863,x=Math.imul(Z,Qt),r=(r=Math.imul(Z,di))+Math.imul(J,Qt)|0,_=Math.imul(J,di),x=x+Math.imul(ct,Rt)|0,r=(r=r+Math.imul(ct,le)|0)+Math.imul(Ce,Rt)|0,_=_+Math.imul(Ce,le)|0,x=x+Math.imul(lt,ce)|0,r=(r=r+Math.imul(lt,se)|0)+Math.imul(Pe,ce)|0,_=_+Math.imul(Pe,se)|0,x=x+Math.imul(nt,Ue)|0,r=(r=r+Math.imul(nt,Ne)|0)+Math.imul(Ct,Ue)|0,_=_+Math.imul(Ct,Ne)|0,x=x+Math.imul(Oe,yt)|0,r=(r=r+Math.imul(Oe,Vt)|0)+Math.imul(Ee,yt)|0,_=_+Math.imul(Ee,Vt)|0,x=x+Math.imul(Ke,ti)|0,r=(r=r+Math.imul(Ke,Ye)|0)+Math.imul(ge,ti)|0,_=_+Math.imul(ge,Ye)|0,x=x+Math.imul(_e,Et)|0,r=(r=r+Math.imul(_e,Jt)|0)+Math.imul(ye,Et)|0,_=_+Math.imul(ye,Jt)|0,x=x+Math.imul(pe,$e)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(be,$e)|0,_=_+Math.imul(be,tt)|0;var Fe=(k+(x=x+Math.imul(I,ei)|0)|0)+((8191&(r=(r=r+Math.imul(I,ci)|0)+Math.imul(B,ei)|0))<<13)|0;k=((_=_+Math.imul(B,ci)|0)+(r>>>13)|0)+(Fe>>>26)|0,Fe&=67108863,x=Math.imul(Ie,Qt),r=(r=Math.imul(Ie,di))+Math.imul(ht,Qt)|0,_=Math.imul(ht,di),x=x+Math.imul(Z,Rt)|0,r=(r=r+Math.imul(Z,le)|0)+Math.imul(J,Rt)|0,_=_+Math.imul(J,le)|0,x=x+Math.imul(ct,ce)|0,r=(r=r+Math.imul(ct,se)|0)+Math.imul(Ce,ce)|0,_=_+Math.imul(Ce,se)|0,x=x+Math.imul(lt,Ue)|0,r=(r=r+Math.imul(lt,Ne)|0)+Math.imul(Pe,Ue)|0,_=_+Math.imul(Pe,Ne)|0,x=x+Math.imul(nt,yt)|0,r=(r=r+Math.imul(nt,Vt)|0)+Math.imul(Ct,yt)|0,_=_+Math.imul(Ct,Vt)|0,x=x+Math.imul(Oe,ti)|0,r=(r=r+Math.imul(Oe,Ye)|0)+Math.imul(Ee,ti)|0,_=_+Math.imul(Ee,Ye)|0,x=x+Math.imul(Ke,Et)|0,r=(r=r+Math.imul(Ke,Jt)|0)+Math.imul(ge,Et)|0,_=_+Math.imul(ge,Jt)|0,x=x+Math.imul(_e,$e)|0,r=(r=r+Math.imul(_e,tt)|0)+Math.imul(ye,$e)|0,_=_+Math.imul(ye,tt)|0,x=x+Math.imul(pe,ei)|0,r=(r=r+Math.imul(pe,ci)|0)+Math.imul(be,ei)|0,_=_+Math.imul(be,ci)|0;var it=(k+(x=x+Math.imul(I,oi)|0)|0)+((8191&(r=(r=r+Math.imul(I,ui)|0)+Math.imul(B,oi)|0))<<13)|0;k=((_=_+Math.imul(B,ui)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,x=Math.imul(Ie,Rt),r=(r=Math.imul(Ie,le))+Math.imul(ht,Rt)|0,_=Math.imul(ht,le),x=x+Math.imul(Z,ce)|0,r=(r=r+Math.imul(Z,se)|0)+Math.imul(J,ce)|0,_=_+Math.imul(J,se)|0,x=x+Math.imul(ct,Ue)|0,r=(r=r+Math.imul(ct,Ne)|0)+Math.imul(Ce,Ue)|0,_=_+Math.imul(Ce,Ne)|0,x=x+Math.imul(lt,yt)|0,r=(r=r+Math.imul(lt,Vt)|0)+Math.imul(Pe,yt)|0,_=_+Math.imul(Pe,Vt)|0,x=x+Math.imul(nt,ti)|0,r=(r=r+Math.imul(nt,Ye)|0)+Math.imul(Ct,ti)|0,_=_+Math.imul(Ct,Ye)|0,x=x+Math.imul(Oe,Et)|0,r=(r=r+Math.imul(Oe,Jt)|0)+Math.imul(Ee,Et)|0,_=_+Math.imul(Ee,Jt)|0,x=x+Math.imul(Ke,$e)|0,r=(r=r+Math.imul(Ke,tt)|0)+Math.imul(ge,$e)|0,_=_+Math.imul(ge,tt)|0,x=x+Math.imul(_e,ei)|0,r=(r=r+Math.imul(_e,ci)|0)+Math.imul(ye,ei)|0,_=_+Math.imul(ye,ci)|0;var bt=(k+(x=x+Math.imul(pe,oi)|0)|0)+((8191&(r=(r=r+Math.imul(pe,ui)|0)+Math.imul(be,oi)|0))<<13)|0;k=((_=_+Math.imul(be,ui)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863,x=Math.imul(Ie,ce),r=(r=Math.imul(Ie,se))+Math.imul(ht,ce)|0,_=Math.imul(ht,se),x=x+Math.imul(Z,Ue)|0,r=(r=r+Math.imul(Z,Ne)|0)+Math.imul(J,Ue)|0,_=_+Math.imul(J,Ne)|0,x=x+Math.imul(ct,yt)|0,r=(r=r+Math.imul(ct,Vt)|0)+Math.imul(Ce,yt)|0,_=_+Math.imul(Ce,Vt)|0,x=x+Math.imul(lt,ti)|0,r=(r=r+Math.imul(lt,Ye)|0)+Math.imul(Pe,ti)|0,_=_+Math.imul(Pe,Ye)|0,x=x+Math.imul(nt,Et)|0,r=(r=r+Math.imul(nt,Jt)|0)+Math.imul(Ct,Et)|0,_=_+Math.imul(Ct,Jt)|0,x=x+Math.imul(Oe,$e)|0,r=(r=r+Math.imul(Oe,tt)|0)+Math.imul(Ee,$e)|0,_=_+Math.imul(Ee,tt)|0,x=x+Math.imul(Ke,ei)|0,r=(r=r+Math.imul(Ke,ci)|0)+Math.imul(ge,ei)|0,_=_+Math.imul(ge,ci)|0;var ut=(k+(x=x+Math.imul(_e,oi)|0)|0)+((8191&(r=(r=r+Math.imul(_e,ui)|0)+Math.imul(ye,oi)|0))<<13)|0;k=((_=_+Math.imul(ye,ui)|0)+(r>>>13)|0)+(ut>>>26)|0,ut&=67108863,x=Math.imul(Ie,Ue),r=(r=Math.imul(Ie,Ne))+Math.imul(ht,Ue)|0,_=Math.imul(ht,Ne),x=x+Math.imul(Z,yt)|0,r=(r=r+Math.imul(Z,Vt)|0)+Math.imul(J,yt)|0,_=_+Math.imul(J,Vt)|0,x=x+Math.imul(ct,ti)|0,r=(r=r+Math.imul(ct,Ye)|0)+Math.imul(Ce,ti)|0,_=_+Math.imul(Ce,Ye)|0,x=x+Math.imul(lt,Et)|0,r=(r=r+Math.imul(lt,Jt)|0)+Math.imul(Pe,Et)|0,_=_+Math.imul(Pe,Jt)|0,x=x+Math.imul(nt,$e)|0,r=(r=r+Math.imul(nt,tt)|0)+Math.imul(Ct,$e)|0,_=_+Math.imul(Ct,tt)|0,x=x+Math.imul(Oe,ei)|0,r=(r=r+Math.imul(Oe,ci)|0)+Math.imul(Ee,ei)|0,_=_+Math.imul(Ee,ci)|0;var jt=(k+(x=x+Math.imul(Ke,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Ke,ui)|0)+Math.imul(ge,oi)|0))<<13)|0;k=((_=_+Math.imul(ge,ui)|0)+(r>>>13)|0)+(jt>>>26)|0,jt&=67108863,x=Math.imul(Ie,yt),r=(r=Math.imul(Ie,Vt))+Math.imul(ht,yt)|0,_=Math.imul(ht,Vt),x=x+Math.imul(Z,ti)|0,r=(r=r+Math.imul(Z,Ye)|0)+Math.imul(J,ti)|0,_=_+Math.imul(J,Ye)|0,x=x+Math.imul(ct,Et)|0,r=(r=r+Math.imul(ct,Jt)|0)+Math.imul(Ce,Et)|0,_=_+Math.imul(Ce,Jt)|0,x=x+Math.imul(lt,$e)|0,r=(r=r+Math.imul(lt,tt)|0)+Math.imul(Pe,$e)|0,_=_+Math.imul(Pe,tt)|0,x=x+Math.imul(nt,ei)|0,r=(r=r+Math.imul(nt,ci)|0)+Math.imul(Ct,ei)|0,_=_+Math.imul(Ct,ci)|0;var ai=(k+(x=x+Math.imul(Oe,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Oe,ui)|0)+Math.imul(Ee,oi)|0))<<13)|0;k=((_=_+Math.imul(Ee,ui)|0)+(r>>>13)|0)+(ai>>>26)|0,ai&=67108863,x=Math.imul(Ie,ti),r=(r=Math.imul(Ie,Ye))+Math.imul(ht,ti)|0,_=Math.imul(ht,Ye),x=x+Math.imul(Z,Et)|0,r=(r=r+Math.imul(Z,Jt)|0)+Math.imul(J,Et)|0,_=_+Math.imul(J,Jt)|0,x=x+Math.imul(ct,$e)|0,r=(r=r+Math.imul(ct,tt)|0)+Math.imul(Ce,$e)|0,_=_+Math.imul(Ce,tt)|0,x=x+Math.imul(lt,ei)|0,r=(r=r+Math.imul(lt,ci)|0)+Math.imul(Pe,ei)|0,_=_+Math.imul(Pe,ci)|0;var pi=(k+(x=x+Math.imul(nt,oi)|0)|0)+((8191&(r=(r=r+Math.imul(nt,ui)|0)+Math.imul(Ct,oi)|0))<<13)|0;k=((_=_+Math.imul(Ct,ui)|0)+(r>>>13)|0)+(pi>>>26)|0,pi&=67108863,x=Math.imul(Ie,Et),r=(r=Math.imul(Ie,Jt))+Math.imul(ht,Et)|0,_=Math.imul(ht,Jt),x=x+Math.imul(Z,$e)|0,r=(r=r+Math.imul(Z,tt)|0)+Math.imul(J,$e)|0,_=_+Math.imul(J,tt)|0,x=x+Math.imul(ct,ei)|0,r=(r=r+Math.imul(ct,ci)|0)+Math.imul(Ce,ei)|0,_=_+Math.imul(Ce,ci)|0;var ki=(k+(x=x+Math.imul(lt,oi)|0)|0)+((8191&(r=(r=r+Math.imul(lt,ui)|0)+Math.imul(Pe,oi)|0))<<13)|0;k=((_=_+Math.imul(Pe,ui)|0)+(r>>>13)|0)+(ki>>>26)|0,ki&=67108863,x=Math.imul(Ie,$e),r=(r=Math.imul(Ie,tt))+Math.imul(ht,$e)|0,_=Math.imul(ht,tt),x=x+Math.imul(Z,ei)|0,r=(r=r+Math.imul(Z,ci)|0)+Math.imul(J,ei)|0,_=_+Math.imul(J,ci)|0;var Ki=(k+(x=x+Math.imul(ct,oi)|0)|0)+((8191&(r=(r=r+Math.imul(ct,ui)|0)+Math.imul(Ce,oi)|0))<<13)|0;k=((_=_+Math.imul(Ce,ui)|0)+(r>>>13)|0)+(Ki>>>26)|0,Ki&=67108863,x=Math.imul(Ie,ei),r=(r=Math.imul(Ie,ci))+Math.imul(ht,ei)|0,_=Math.imul(ht,ci);var Ji=(k+(x=x+Math.imul(Z,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Z,ui)|0)+Math.imul(J,oi)|0))<<13)|0;k=((_=_+Math.imul(J,ui)|0)+(r>>>13)|0)+(Ji>>>26)|0,Ji&=67108863;var Dn=(k+(x=Math.imul(Ie,oi))|0)+((8191&(r=(r=Math.imul(Ie,ui))+Math.imul(ht,oi)|0))<<13)|0;return k=((_=Math.imul(ht,ui))+(r>>>13)|0)+(Dn>>>26)|0,Dn&=67108863,A[0]=ln,A[1]=nn,A[2]=dn,A[3]=zn,A[4]=It,A[5]=Tt,A[6]=Ze,A[7]=Ve,A[8]=Fe,A[9]=it,A[10]=bt,A[11]=ut,A[12]=jt,A[13]=ai,A[14]=pi,A[15]=ki,A[16]=Ki,A[17]=Ji,A[18]=Dn,0!==k&&(A[19]=k,f.length++),f};function q(D,n,o){return(new G).mulp(D,n,o)}function G(D,n){this.x=D,this.y=n}Math.imul||(U=j),c.prototype.mulTo=function(n,o){var f,h=this.length+n.length;return f=10===this.length&&10===n.length?U(this,n,o):h<63?j(this,n,o):h<1024?function K(D,n,o){o.negative=n.negative^D.negative,o.length=D.length+n.length;for(var f=0,h=0,b=0;b>>26)|0)>>>26,A&=67108863}o.words[b]=k,f=A,A=h}return 0!==f?o.words[b]=f:o.length--,o.strip()}(this,n,o):q(this,n,o),f},G.prototype.makeRBT=function(n){for(var o=new Array(n),f=c.prototype._countBits(n)-1,h=0;h>=1;return h},G.prototype.permute=function(n,o,f,h,b,A){for(var k=0;k>>=1)b++;return 1<>>=13),b>>>=13;for(A=2*o;A>=26,o+=h/67108864|0,o+=b>>>26,this.words[f]=67108863&b}return 0!==o&&(this.words[f]=o,this.length++),this.length=0===n?1:this.length,this},c.prototype.muln=function(n){return this.clone().imuln(n)},c.prototype.sqr=function(){return this.mul(this)},c.prototype.isqr=function(){return this.imul(this.clone())},c.prototype.pow=function(n){var o=function M(D){for(var n=new Array(D.bitLength()),o=0;o>>h}return n}(n);if(0===o.length)return new c(1);for(var f=this,h=0;h=0);var b,o=n%26,f=(n-o)/26,h=67108863>>>26-o<<26-o;if(0!==o){var A=0;for(b=0;b>>26-o}A&&(this.words[b]=A,this.length++)}if(0!==f){for(b=this.length-1;b>=0;b--)this.words[b+f]=this.words[b];for(b=0;b=0),h=o?(o-o%26)/26:0;var b=n%26,A=Math.min((n-b)/26,this.length),k=67108863^67108863>>>b<A)for(this.length-=A,r=0;r=0&&(0!==_||r>=h);r--){var W=0|this.words[r];this.words[r]=_<<26-b|W>>>b,_=W&k}return x&&0!==_&&(x.words[x.length++]=_),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},c.prototype.ishrn=function(n,o,f){return p(0===this.negative),this.iushrn(n,o,f)},c.prototype.shln=function(n){return this.clone().ishln(n)},c.prototype.ushln=function(n){return this.clone().iushln(n)},c.prototype.shrn=function(n){return this.clone().ishrn(n)},c.prototype.ushrn=function(n){return this.clone().iushrn(n)},c.prototype.testn=function(n){p("number"==typeof n&&n>=0);var o=n%26,f=(n-o)/26;return!(this.length<=f||!(this.words[f]&1<=0);var o=n%26,f=(n-o)/26;return p(0===this.negative,"imaskn works only with positive numbers"),this.length<=f?this:(0!==o&&f++,this.length=Math.min(f,this.length),0!==o&&(this.words[this.length-1]&=67108863^67108863>>>o<=67108864;o++)this.words[o]-=67108864,o===this.length-1?this.words[o+1]=1:this.words[o+1]++;return this.length=Math.max(this.length,o+1),this},c.prototype.isubn=function(n){if(p("number"==typeof n),p(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var o=0;o>26)-(x/67108864|0),this.words[b+f]=67108863&A}for(;b>26,this.words[b+f]=67108863&A;if(0===k)return this.strip();for(p(-1===k),k=0,b=0;b>26,this.words[b]=67108863&A;return this.negative=1,this.strip()},c.prototype._wordDiv=function(n,o){var f,h=this.clone(),b=n,A=0|b.words[b.length-1];0!=(f=26-this._countBits(A))&&(b=b.ushln(f),h.iushln(f),A=0|b.words[b.length-1]);var r,x=h.length-b.length;if("mod"!==o){(r=new c(null)).length=x+1,r.words=new Array(r.length);for(var _=0;_=0;I--){var B=67108864*(0|h.words[b.length+I])+(0|h.words[b.length+I-1]);for(B=Math.min(B/A|0,67108863),h._ishlnsubmul(b,B,I);0!==h.negative;)B--,h.negative=0,h._ishlnsubmul(b,1,I),h.isZero()||(h.negative^=1);r&&(r.words[I]=B)}return r&&r.strip(),h.strip(),"div"!==o&&0!==f&&h.iushrn(f),{div:r||null,mod:h}},c.prototype.divmod=function(n,o,f){return p(!n.isZero()),this.isZero()?{div:new c(0),mod:new c(0)}:0!==this.negative&&0===n.negative?(A=this.neg().divmod(n,o),"mod"!==o&&(h=A.div.neg()),"div"!==o&&(b=A.mod.neg(),f&&0!==b.negative&&b.iadd(n)),{div:h,mod:b}):0===this.negative&&0!==n.negative?(A=this.divmod(n.neg(),o),"mod"!==o&&(h=A.div.neg()),{div:h,mod:A.mod}):0!==(this.negative&n.negative)?(A=this.neg().divmod(n.neg(),o),"div"!==o&&(b=A.mod.neg(),f&&0!==b.negative&&b.isub(n)),{div:A.div,mod:b}):n.length>this.length||this.cmp(n)<0?{div:new c(0),mod:this}:1===n.length?"div"===o?{div:this.divn(n.words[0]),mod:null}:"mod"===o?{div:null,mod:new c(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new c(this.modn(n.words[0]))}:this._wordDiv(n,o);var h,b,A},c.prototype.div=function(n){return this.divmod(n,"div",!1).div},c.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},c.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},c.prototype.divRound=function(n){var o=this.divmod(n);if(o.mod.isZero())return o.div;var f=0!==o.div.negative?o.mod.isub(n):o.mod,h=n.ushrn(1),b=n.andln(1),A=f.cmp(h);return A<0||1===b&&0===A?o.div:0!==o.div.negative?o.div.isubn(1):o.div.iaddn(1)},c.prototype.modn=function(n){p(n<=67108863);for(var o=(1<<26)%n,f=0,h=this.length-1;h>=0;h--)f=(o*f+(0|this.words[h]))%n;return f},c.prototype.idivn=function(n){p(n<=67108863);for(var o=0,f=this.length-1;f>=0;f--){var h=(0|this.words[f])+67108864*o;this.words[f]=h/n|0,o=h%n}return this.strip()},c.prototype.divn=function(n){return this.clone().idivn(n)},c.prototype.egcd=function(n){p(0===n.negative),p(!n.isZero());var o=this,f=n.clone();o=0!==o.negative?o.umod(n):o.clone();for(var h=new c(1),b=new c(0),A=new c(0),k=new c(1),x=0;o.isEven()&&f.isEven();)o.iushrn(1),f.iushrn(1),++x;for(var r=f.clone(),_=o.clone();!o.isZero();){for(var W=0,I=1;0===(o.words[0]&I)&&W<26;++W,I<<=1);if(W>0)for(o.iushrn(W);W-- >0;)(h.isOdd()||b.isOdd())&&(h.iadd(r),b.isub(_)),h.iushrn(1),b.iushrn(1);for(var B=0,re=1;0===(f.words[0]&re)&&B<26;++B,re<<=1);if(B>0)for(f.iushrn(B);B-- >0;)(A.isOdd()||k.isOdd())&&(A.iadd(r),k.isub(_)),A.iushrn(1),k.iushrn(1);o.cmp(f)>=0?(o.isub(f),h.isub(A),b.isub(k)):(f.isub(o),A.isub(h),k.isub(b))}return{a:A,b:k,gcd:f.iushln(x)}},c.prototype._invmp=function(n){p(0===n.negative),p(!n.isZero());var W,o=this,f=n.clone();o=0!==o.negative?o.umod(n):o.clone();for(var h=new c(1),b=new c(0),A=f.clone();o.cmpn(1)>0&&f.cmpn(1)>0;){for(var k=0,x=1;0===(o.words[0]&x)&&k<26;++k,x<<=1);if(k>0)for(o.iushrn(k);k-- >0;)h.isOdd()&&h.iadd(A),h.iushrn(1);for(var r=0,_=1;0===(f.words[0]&_)&&r<26;++r,_<<=1);if(r>0)for(f.iushrn(r);r-- >0;)b.isOdd()&&b.iadd(A),b.iushrn(1);o.cmp(f)>=0?(o.isub(f),h.isub(b)):(f.isub(o),b.isub(h))}return(W=0===o.cmpn(1)?h:b).cmpn(0)<0&&W.iadd(n),W},c.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var o=this.clone(),f=n.clone();o.negative=0,f.negative=0;for(var h=0;o.isEven()&&f.isEven();h++)o.iushrn(1),f.iushrn(1);for(;;){for(;o.isEven();)o.iushrn(1);for(;f.isEven();)f.iushrn(1);var b=o.cmp(f);if(b<0){var A=o;o=f,f=A}else if(0===b||0===f.cmpn(1))break;o.isub(f)}return f.iushln(h)},c.prototype.invm=function(n){return this.egcd(n).a.umod(n)},c.prototype.isEven=function(){return!(1&this.words[0])},c.prototype.isOdd=function(){return!(1&~this.words[0])},c.prototype.andln=function(n){return this.words[0]&n},c.prototype.bincn=function(n){p("number"==typeof n);var o=n%26,f=(n-o)/26,h=1<>>26,this.words[A]=k&=67108863}return 0!==b&&(this.words[A]=b,this.length++),this},c.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},c.prototype.cmpn=function(n){var f,o=n<0;if(0!==this.negative&&!o)return-1;if(0===this.negative&&o)return 1;if(this.strip(),this.length>1)f=1;else{o&&(n=-n),p(n<=67108863,"Number is too big");var h=0|this.words[0];f=h===n?0:hn.length)return 1;if(this.length=0;f--){var h=0|this.words[f],b=0|n.words[f];if(h!==b){hb&&(o=1);break}}return o},c.prototype.gtn=function(n){return 1===this.cmpn(n)},c.prototype.gt=function(n){return 1===this.cmp(n)},c.prototype.gten=function(n){return this.cmpn(n)>=0},c.prototype.gte=function(n){return this.cmp(n)>=0},c.prototype.ltn=function(n){return-1===this.cmpn(n)},c.prototype.lt=function(n){return-1===this.cmp(n)},c.prototype.lten=function(n){return this.cmpn(n)<=0},c.prototype.lte=function(n){return this.cmp(n)<=0},c.prototype.eqn=function(n){return 0===this.cmpn(n)},c.prototype.eq=function(n){return 0===this.cmp(n)},c.red=function(n){return new me(n)},c.prototype.toRed=function(n){return p(!this.red,"Already a number in reduction context"),p(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},c.prototype.fromRed=function(){return p(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},c.prototype._forceRed=function(n){return this.red=n,this},c.prototype.forceRed=function(n){return p(!this.red,"Already a number in reduction context"),this._forceRed(n)},c.prototype.redAdd=function(n){return p(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},c.prototype.redIAdd=function(n){return p(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},c.prototype.redSub=function(n){return p(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},c.prototype.redISub=function(n){return p(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},c.prototype.redShl=function(n){return p(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},c.prototype.redMul=function(n){return p(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},c.prototype.redIMul=function(n){return p(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},c.prototype.redSqr=function(){return p(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},c.prototype.redISqr=function(){return p(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},c.prototype.redSqrt=function(){return p(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},c.prototype.redInvm=function(){return p(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},c.prototype.redNeg=function(){return p(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},c.prototype.redPow=function(n){return p(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var Q={k256:null,p224:null,p192:null,p25519:null};function $(D,n){this.name=D,this.p=new c(n,16),this.n=this.p.bitLength(),this.k=new c(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ae(){$.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ue(){$.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function oe(){$.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function he(){$.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function me(D){if("string"==typeof D){var n=c._prime(D);this.m=n.p,this.prime=n}else p(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function Te(D){me.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new c(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}$.prototype._tmp=function(){var n=new c(null);return n.words=new Array(Math.ceil(this.n/13)),n},$.prototype.ireduce=function(n){var f,o=n;do{this.split(o,this.tmp),f=(o=(o=this.imulK(o)).iadd(this.tmp)).bitLength()}while(f>this.n);var h=f0?o.isub(this.p):void 0!==o.strip?o.strip():o._strip(),o},$.prototype.split=function(n,o){n.iushrn(this.n,0,o)},$.prototype.imulK=function(n){return n.imul(this.k)},S(ae,$),ae.prototype.split=function(n,o){for(var f=4194303,h=Math.min(n.length,9),b=0;b>>22,A=k}n.words[b-10]=A>>>=22,n.length-=0===A&&n.length>10?10:9},ae.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var o=0,f=0;f>>=26,n.words[f]=b,o=h}return 0!==o&&(n.words[n.length++]=o),n},c._prime=function(n){if(Q[n])return Q[n];var o;if("k256"===n)o=new ae;else if("p224"===n)o=new ue;else if("p192"===n)o=new oe;else{if("p25519"!==n)throw new Error("Unknown prime "+n);o=new he}return Q[n]=o,o},me.prototype._verify1=function(n){p(0===n.negative,"red works only with positives"),p(n.red,"red works only with red numbers")},me.prototype._verify2=function(n,o){p(0===(n.negative|o.negative),"red works only with positives"),p(n.red&&n.red===o.red,"red works only with red numbers")},me.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},me.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},me.prototype.add=function(n,o){this._verify2(n,o);var f=n.add(o);return f.cmp(this.m)>=0&&f.isub(this.m),f._forceRed(this)},me.prototype.iadd=function(n,o){this._verify2(n,o);var f=n.iadd(o);return f.cmp(this.m)>=0&&f.isub(this.m),f},me.prototype.sub=function(n,o){this._verify2(n,o);var f=n.sub(o);return f.cmpn(0)<0&&f.iadd(this.m),f._forceRed(this)},me.prototype.isub=function(n,o){this._verify2(n,o);var f=n.isub(o);return f.cmpn(0)<0&&f.iadd(this.m),f},me.prototype.shl=function(n,o){return this._verify1(n),this.imod(n.ushln(o))},me.prototype.imul=function(n,o){return this._verify2(n,o),this.imod(n.imul(o))},me.prototype.mul=function(n,o){return this._verify2(n,o),this.imod(n.mul(o))},me.prototype.isqr=function(n){return this.imul(n,n.clone())},me.prototype.sqr=function(n){return this.mul(n,n)},me.prototype.sqrt=function(n){if(n.isZero())return n.clone();var o=this.m.andln(3);if(p(o%2==1),3===o){var f=this.m.add(new c(1)).iushrn(2);return this.pow(n,f)}for(var h=this.m.subn(1),b=0;!h.isZero()&&0===h.andln(1);)b++,h.iushrn(1);p(!h.isZero());var A=new c(1).toRed(this),k=A.redNeg(),x=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new c(2*r*r).toRed(this);0!==this.pow(r,x).cmp(k);)r.redIAdd(k);for(var _=this.pow(r,h),W=this.pow(n,h.addn(1).iushrn(1)),I=this.pow(n,h),B=b;0!==I.cmp(A);){for(var re=I,pe=0;0!==re.cmp(A);pe++)re=re.redSqr();p(pe=0;b--){for(var _=o.words[b],W=r-1;W>=0;W--){var I=_>>W&1;A!==h[0]&&(A=this.sqr(A)),0!==I||0!==k?(k<<=1,k|=I,(4===++x||0===b&&0===W)&&(A=this.mul(A,h[k]),x=0,k=0)):x=0}r=26}return A},me.prototype.convertTo=function(n){var o=n.umod(this.m);return o===n?o.clone():o},me.prototype.convertFrom=function(n){var o=n.clone();return o.red=null,o},c.mont=function(n){return new Te(n)},S(Te,me),Te.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},Te.prototype.convertFrom=function(n){var o=this.imod(n.mul(this.rinv));return o.red=null,o},Te.prototype.imul=function(n,o){if(n.isZero()||o.isZero())return n.words[0]=0,n.length=1,n;var f=n.imul(o),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),b=f.isub(h).iushrn(this.shift),A=b;return b.cmp(this.m)>=0?A=b.isub(this.m):b.cmpn(0)<0&&(A=b.iadd(this.m)),A._forceRed(this)},Te.prototype.mul=function(n,o){if(n.isZero()||o.isZero())return new c(0)._forceRed(this);var f=n.mul(o),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),b=f.isub(h).iushrn(this.shift),A=b;return b.cmp(this.m)>=0?A=b.isub(this.m):b.cmpn(0)<0&&(A=b.iadd(this.m)),A._forceRed(this)},Te.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Ae=l.nmd(Ae),this)},89726:(Ae,ee,l)=>{"use strict";l.d(ee,{g:()=>S});var i=l(2615),t=l(73664);const p={};let S=(()=>{class c{_appId=(0,i.WQX)(t.sZ2);getId(T){return"ng"!==this._appId&&(T+=this._appId),p.hasOwnProperty(T)||(p[T]=0),`${T}${p[T]++}`}static \u0275fac=function(g){return new(g||c)};static \u0275prov=i.jDH({token:c,factory:c.\u0275fac,providedIn:"root"})}return c})()},89999:(Ae,ee,l)=>{"use strict";var i=l(58239),t=Object.prototype.toString,p=Object.prototype.hasOwnProperty;Ae.exports=function(d,w,m){if(!i(w))throw new TypeError("iterator must be a function");var P;arguments.length>=3&&(P=m),function T(g){return"[object Array]"===t.call(g)}(d)?function(d,w,m){for(var P=0,M=d.length;P{"use strict";l.d(ee,{X:()=>g});var i=l(45383),t=l(73664),p=l(43694),S=l(20060),c=l(88834),e=l(25596),T=l(52920);let g=(()=>{var d;class w{constructor(P){this.router=P,this.faTimes=i.GRI}goToHelp(){this.router.navigate(["/help"])}static#e=d=()=>(this.\u0275fac=function(M){return new(M||w)(t.rXU(p.Ix))},this.\u0275cmp=t.VBU({type:w,selectors:[["rtl-not-found"]],standalone:!1,decls:13,vars:1,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column",1,"padding-gap-large"],["fxLayout","column","fxLayoutAlign","start start"],[1,"box-text"],["fxLayout","row","fxLayoutAlign","center","fxFlex","80"],["mat-flat-button","","color","primary","type","button",1,"mt-2",3,"click"]],template:function(M,j){1&M&&(t.j41(0,"div",0),t.nrm(1,"fa-icon",1),t.j41(2,"span",2),t.EFF(3,"Page Not Found"),t.k0s()(),t.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"div",5)(8,"div",6),t.EFF(9,"This page does not exist!"),t.k0s(),t.j41(10,"span",7)(11,"button",8),t.bIt("click",function(){return j.goToHelp()}),t.EFF(12,"Go To Help"),t.k0s()()()()()()),2&M&&(t.R7$(),t.Y8G("icon",j.faTimes))},dependencies:[S.aY,c.$z,e.RN,e.m2,T.DJ,T.sA,T.UI],encapsulation:2}))}return d(),w})()},90258:(Ae,ee,l)=>{"use strict";var i,t=l(65891),p=l(37640),S=l(1756),c=l(77933),e=l(6613),T=l(58413),g=l(46758),d=l(5286),w=l(70837),m=l(3383),P=l(79039),M=l(14981),j=l(80975),U=l(5337),K=l(4912),q=Function,G=function(ye){try{return q('"use strict"; return ('+ye+").constructor;")()}catch{}},Q=l(83798),$=l(4570),ae=function(){throw new g},ue=Q?function(){try{return ae}catch{try{return Q(arguments,"callee").get}catch{return ae}}}():ae,oe=l(19900)(),he=l(91627),me=l(27203),Te=l(97669),D=l(79477),n=l(59705),o={},f=typeof Uint8Array>"u"||!he?i:he(Uint8Array),h={__proto__:null,"%AggregateError%":typeof AggregateError>"u"?i:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?i:ArrayBuffer,"%ArrayIteratorPrototype%":oe&&he?he([][Symbol.iterator]()):i,"%AsyncFromSyncIteratorPrototype%":i,"%AsyncFunction%":o,"%AsyncGenerator%":o,"%AsyncGeneratorFunction%":o,"%AsyncIteratorPrototype%":o,"%Atomics%":typeof Atomics>"u"?i:Atomics,"%BigInt%":typeof BigInt>"u"?i:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?i:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?i:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?i:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":p,"%eval%":eval,"%EvalError%":S,"%Float16Array%":typeof Float16Array>"u"?i:Float16Array,"%Float32Array%":typeof Float32Array>"u"?i:Float32Array,"%Float64Array%":typeof Float64Array>"u"?i:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?i:FinalizationRegistry,"%Function%":q,"%GeneratorFunction%":o,"%Int8Array%":typeof Int8Array>"u"?i:Int8Array,"%Int16Array%":typeof Int16Array>"u"?i:Int16Array,"%Int32Array%":typeof Int32Array>"u"?i:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":oe&&he?he(he([][Symbol.iterator]())):i,"%JSON%":"object"==typeof JSON?JSON:i,"%Map%":typeof Map>"u"?i:Map,"%MapIteratorPrototype%":typeof Map>"u"||!oe||!he?i:he((new Map)[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":t,"%Object.getOwnPropertyDescriptor%":Q,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?i:Promise,"%Proxy%":typeof Proxy>"u"?i:Proxy,"%RangeError%":c,"%ReferenceError%":e,"%Reflect%":typeof Reflect>"u"?i:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?i:Set,"%SetIteratorPrototype%":typeof Set>"u"||!oe||!he?i:he((new Set)[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?i:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":oe&&he?he(""[Symbol.iterator]()):i,"%Symbol%":oe?Symbol:i,"%SyntaxError%":T,"%ThrowTypeError%":ue,"%TypedArray%":f,"%TypeError%":g,"%Uint8Array%":typeof Uint8Array>"u"?i:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?i:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?i:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?i:Uint32Array,"%URIError%":d,"%WeakMap%":typeof WeakMap>"u"?i:WeakMap,"%WeakRef%":typeof WeakRef>"u"?i:WeakRef,"%WeakSet%":typeof WeakSet>"u"?i:WeakSet,"%Function.prototype.call%":n,"%Function.prototype.apply%":D,"%Object.defineProperty%":$,"%Object.getPrototypeOf%":me,"%Math.abs%":w,"%Math.floor%":m,"%Math.max%":P,"%Math.min%":M,"%Math.pow%":j,"%Math.round%":U,"%Math.sign%":K,"%Reflect.getPrototypeOf%":Te};if(he)try{null.error}catch(ye){var b=he(he(ye));h["%Error.prototype%"]=b}var A=function ye(Le){var Ke;if("%AsyncFunction%"===Le)Ke=G("async function () {}");else if("%GeneratorFunction%"===Le)Ke=G("function* () {}");else if("%AsyncGeneratorFunction%"===Le)Ke=G("async function* () {}");else if("%AsyncGenerator%"===Le){var ge=ye("%AsyncGeneratorFunction%");ge&&(Ke=ge.prototype)}else if("%AsyncIteratorPrototype%"===Le){var ve=ye("%AsyncGenerator%");ve&&he&&(Ke=he(ve.prototype))}return h[Le]=Ke,Ke},k={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},x=l(65992),r=l(78368),_=x.call(n,Array.prototype.concat),W=x.call(D,Array.prototype.splice),I=x.call(n,String.prototype.replace),B=x.call(n,String.prototype.slice),re=x.call(n,RegExp.prototype.exec),pe=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,be=/\\(\\)?/g,_e=function(Le,Ke){var ve,ge=Le;if(r(k,ge)&&(ge="%"+(ve=k[ge])[0]+"%"),r(h,ge)){var Oe=h[ge];if(Oe===o&&(Oe=A(ge)),typeof Oe>"u"&&!Ke)throw new g("intrinsic "+Le+" exists, but is not available. Please file an issue!");return{alias:ve,name:ge,value:Oe}}throw new T("intrinsic "+Le+" does not exist!")};Ae.exports=function(Le,Ke){if("string"!=typeof Le||0===Le.length)throw new g("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof Ke)throw new g('"allowMissing" argument must be a boolean');if(null===re(/^%?[^%]*%?$/,Le))throw new T("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var ge=function(Le){var Ke=B(Le,0,1),ge=B(Le,-1);if("%"===Ke&&"%"!==ge)throw new T("invalid intrinsic syntax, expected closing `%`");if("%"===ge&&"%"!==Ke)throw new T("invalid intrinsic syntax, expected opening `%`");var ve=[];return I(Le,pe,function(Oe,Ee,dt,nt){ve[ve.length]=dt?I(nt,be,"$1"):Ee||Oe}),ve}(Le),ve=ge.length>0?ge[0]:"",Oe=_e("%"+ve+"%",Ke),Ee=Oe.name,dt=Oe.value,nt=!1,Ct=Oe.alias;Ct&&(ve=Ct[0],W(ge,_([0,1],Ct)));for(var Mt=1,lt=!0;Mt=ge.length){var Ce=Q(dt,Pe);dt=(lt=!!Ce)&&"get"in Ce&&!("originalValue"in Ce.get)?Ce.get:dt[Pe]}else lt=r(dt,Pe),dt=dt[Pe];lt&&!nt&&(h[Ee]=dt)}}return dt}},90509:(Ae,ee,l)=>{"use strict";var i=l(71993),t=l(27054).Buffer,p=l(3247),S=t.alloc(128),c=64;function e(T,g){p.call(this,"digest"),"string"==typeof g&&(g=t.from(g)),this._alg=T,this._key=g,g.length>c?g=T(g):g.length{"use strict";var i=ee;i.version=l(1636).rE,i.utils=l(3136),i.rand=l(35294),i.curve=l(8729),i.curves=l(23401),i.ec=l(29042),i.eddsa=l(83045)},90882:(Ae,ee,l)=>{"use strict";l.d(ee,{El:()=>be,LG:()=>Be,US:()=>_e,vg:()=>ye});var i=l(76838),t=l(17094),p=l(61577),S=l(14085),c=l(67847),e=l(10438),T=l(67336),g=l(39842),d=l(5718),w=l(2615),m=l(73664),P=l(17705),M=l(21413),j=l(33726),U=l(57786),K=l(70152),q=l(5964),G=l(96354),Q=l(73703),$=l(99172),ae=l(96697),ue=l(56977),oe=l(31804),he=l(22466);const me=["*"],Te=["content"],D=[[["mat-drawer"]],[["mat-drawer-content"]],"*"],n=["mat-drawer","mat-drawer-content","*"];function o(Ke,ge){if(1&Ke){const ve=m.RV6();m.j41(0,"div",1),m.bIt("click",function(){w.eBV(ve);const Ee=m.XpG();return w.Njj(Ee._onBackdropClicked())}),m.k0s()}if(2&Ke){const ve=m.XpG();m.AVh("mat-drawer-shown",ve._isShowingBackdrop())}}function f(Ke,ge){1&Ke&&(m.j41(0,"mat-drawer-content"),m.SdG(1,2),m.k0s())}const h=[[["mat-sidenav"]],[["mat-sidenav-content"]],"*"],b=["mat-sidenav","mat-sidenav-content","*"];function A(Ke,ge){if(1&Ke){const ve=m.RV6();m.j41(0,"div",1),m.bIt("click",function(){w.eBV(ve);const Ee=m.XpG();return w.Njj(Ee._onBackdropClicked())}),m.k0s()}if(2&Ke){const ve=m.XpG();m.AVh("mat-drawer-shown",ve._isShowingBackdrop())}}function k(Ke,ge){1&Ke&&(m.j41(0,"mat-sidenav-content"),m.SdG(1,2),m.k0s())}const _=new w.nKC("MAT_DRAWER_DEFAULT_AUTOSIZE",{providedIn:"root",factory:function I(){return!1}}),W=new w.nKC("MAT_DRAWER_CONTAINER");let B=(()=>{class Ke extends d.uv{_platform=(0,w.WQX)(g.O);_changeDetectorRef=(0,w.WQX)(P.gRc);_container=(0,w.WQX)(pe);constructor(){super((0,w.WQX)(m.aKT),(0,w.WQX)(d.R),(0,w.WQX)(m.SKi))}ngAfterContentInit(){this._container._contentMarginChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})}_shouldBeHidden(){if(this._platform.isBrowser)return!1;const{start:ve,end:Oe}=this._container;return null!=ve&&"over"!==ve.mode&&ve.opened||null!=Oe&&"over"!==Oe.mode&&Oe.opened}static \u0275fac=function(Oe){return new(Oe||Ke)};static \u0275cmp=m.VBU({type:Ke,selectors:[["mat-drawer-content"]],hostAttrs:[1,"mat-drawer-content"],hostVars:6,hostBindings:function(Oe,Ee){2&Oe&&(m.xc7("margin-left",Ee._container._contentMargins.left,"px")("margin-right",Ee._container._contentMargins.right,"px"),m.AVh("mat-drawer-content-hidden",Ee._shouldBeHidden()))},features:[m.Jv_([{provide:d.uv,useExisting:Ke}]),m.Vt3],ngContentSelectors:me,decls:1,vars:0,template:function(Oe,Ee){1&Oe&&(m.NAR(),m.SdG(0))},encapsulation:2,changeDetection:0})}return Ke})(),re=(()=>{class Ke{_elementRef=(0,w.WQX)(m.aKT);_focusTrapFactory=(0,w.WQX)(t.GX);_focusMonitor=(0,w.WQX)(i.FN);_platform=(0,w.WQX)(g.O);_ngZone=(0,w.WQX)(m.SKi);_renderer=(0,w.WQX)(m.sFG);_interactivityChecker=(0,w.WQX)(t.Z7);_doc=(0,w.WQX)(w.qQL);_container=(0,w.WQX)(W,{optional:!0});_focusTrap=null;_elementFocusedBeforeDrawerWasOpened=null;_eventCleanups;_isAttached;_anchor;get position(){return this._position}set position(ve){(ve="end"===ve?"end":"start")!==this._position&&(this._isAttached&&this._updatePositionInParent(ve),this._position=ve,this.onPositionChanged.emit())}_position="start";get mode(){return this._mode}set mode(ve){this._mode=ve,this._updateFocusTrapState(),this._modeChanged.next()}_mode="over";get disableClose(){return this._disableClose}set disableClose(ve){this._disableClose=(0,S.he)(ve)}_disableClose=!1;get autoFocus(){return this._autoFocus??("side"===this.mode?"dialog":"first-tabbable")}set autoFocus(ve){("true"===ve||"false"===ve||null==ve)&&(ve=(0,S.he)(ve)),this._autoFocus=ve}_autoFocus;get opened(){return this._opened()}set opened(ve){this.toggle((0,S.he)(ve))}_opened=(0,w.vPA)(!1);_openedVia;_animationStarted=new M.B;_animationEnd=new M.B;openedChange=new m.bkB(!0);_openedStream=this.openedChange.pipe((0,q.p)(ve=>ve),(0,G.T)(()=>{}));openedStart=this._animationStarted.pipe((0,q.p)(()=>this.opened),(0,Q.u)(void 0));_closedStream=this.openedChange.pipe((0,q.p)(ve=>!ve),(0,G.T)(()=>{}));closedStart=this._animationStarted.pipe((0,q.p)(()=>!this.opened),(0,Q.u)(void 0));_destroyed=new M.B;onPositionChanged=new m.bkB;_content;_modeChanged=new M.B;_injector=(0,w.WQX)(w.zZn);_changeDetectorRef=(0,w.WQX)(P.gRc);constructor(){this.openedChange.pipe((0,ue.Q)(this._destroyed)).subscribe(ve=>{ve?(this._elementFocusedBeforeDrawerWasOpened=this._doc.activeElement,this._takeFocus()):this._isFocusWithinDrawer()&&this._restoreFocus(this._openedVia||"program")}),this._ngZone.runOutsideAngular(()=>{const ve=this._elementRef.nativeElement;(0,j.R)(ve,"keydown").pipe((0,q.p)(Oe=>Oe.keyCode===e._f&&!this.disableClose&&!(0,T.rp)(Oe)),(0,ue.Q)(this._destroyed)).subscribe(Oe=>this._ngZone.run(()=>{this.close(),Oe.stopPropagation(),Oe.preventDefault()})),this._eventCleanups=[this._renderer.listen(ve,"transitionrun",this._handleTransitionEvent),this._renderer.listen(ve,"transitionend",this._handleTransitionEvent),this._renderer.listen(ve,"transitioncancel",this._handleTransitionEvent)]}),this._animationEnd.subscribe(()=>{this.openedChange.emit(this.opened)})}_forceFocus(ve,Oe){this._interactivityChecker.isFocusable(ve)||(ve.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const Ee=()=>{dt(),nt(),ve.removeAttribute("tabindex")},dt=this._renderer.listen(ve,"blur",Ee),nt=this._renderer.listen(ve,"mousedown",Ee)})),ve.focus(Oe)}_focusByCssSelector(ve,Oe){let Ee=this._elementRef.nativeElement.querySelector(ve);Ee&&this._forceFocus(Ee,Oe)}_takeFocus(){if(!this._focusTrap)return;const ve=this._elementRef.nativeElement;switch(this.autoFocus){case!1:case"dialog":return;case!0:case"first-tabbable":(0,m.mal)(()=>{!this._focusTrap.focusInitialElement()&&"function"==typeof ve.focus&&ve.focus()},{injector:this._injector});break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]');break;default:this._focusByCssSelector(this.autoFocus)}}_restoreFocus(ve){"dialog"!==this.autoFocus&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,ve):this._elementRef.nativeElement.blur(),this._elementFocusedBeforeDrawerWasOpened=null)}_isFocusWithinDrawer(){const ve=this._doc.activeElement;return!!ve&&this._elementRef.nativeElement.contains(ve)}ngAfterViewInit(){this._isAttached=!0,"end"===this._position&&this._updatePositionInParent("end"),this._platform.isBrowser&&(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState())}ngOnDestroy(){this._eventCleanups.forEach(ve=>ve()),this._focusTrap?.destroy(),this._anchor?.remove(),this._anchor=null,this._animationStarted.complete(),this._animationEnd.complete(),this._modeChanged.complete(),this._destroyed.next(),this._destroyed.complete()}open(ve){return this.toggle(!0,ve)}close(){return this.toggle(!1)}_closeViaBackdropClick(){return this._setOpen(!1,!0,"mouse")}toggle(ve=!this.opened,Oe){ve&&Oe&&(this._openedVia=Oe);const Ee=this._setOpen(ve,!ve&&this._isFocusWithinDrawer(),this._openedVia||"program");return ve||(this._openedVia=null),Ee}_setOpen(ve,Oe,Ee){return ve===this.opened?Promise.resolve(ve?"open":"close"):(this._opened.set(ve),this._container?._transitionsEnabled?this._setIsAnimating(!0):setTimeout(()=>{this._animationStarted.next(),this._animationEnd.next()}),this._elementRef.nativeElement.classList.toggle("mat-drawer-opened",ve),!ve&&Oe&&this._restoreFocus(Ee),this._changeDetectorRef.markForCheck(),this._updateFocusTrapState(),new Promise(dt=>{this.openedChange.pipe((0,ae.s)(1)).subscribe(nt=>dt(nt?"open":"close"))}))}_setIsAnimating(ve){this._elementRef.nativeElement.classList.toggle("mat-drawer-animating",ve)}_getWidth(){return this._elementRef.nativeElement.offsetWidth||0}_updateFocusTrapState(){this._focusTrap&&(this._focusTrap.enabled=!!this._container?.hasBackdrop&&this.opened)}_updatePositionInParent(ve){if(!this._platform.isBrowser)return;const Oe=this._elementRef.nativeElement,Ee=Oe.parentNode;"end"===ve?(this._anchor||(this._anchor=this._doc.createComment("mat-drawer-anchor"),Ee.insertBefore(this._anchor,Oe)),Ee.appendChild(Oe)):this._anchor&&this._anchor.parentNode.insertBefore(Oe,this._anchor)}_handleTransitionEvent=ve=>{ve.target===this._elementRef.nativeElement&&this._ngZone.run(()=>{"transitionrun"===ve.type?this._animationStarted.next(ve):("transitionend"===ve.type&&this._setIsAnimating(!1),this._animationEnd.next(ve))})};static \u0275fac=function(Oe){return new(Oe||Ke)};static \u0275cmp=m.VBU({type:Ke,selectors:[["mat-drawer"]],viewQuery:function(Oe,Ee){if(1&Oe&&m.GBs(Te,5),2&Oe){let dt;m.mGM(dt=m.lsd())&&(Ee._content=dt.first)}},hostAttrs:[1,"mat-drawer"],hostVars:12,hostBindings:function(Oe,Ee){2&Oe&&(m.BMQ("align",null)("tabIndex","side"!==Ee.mode?"-1":null),m.xc7("visibility",Ee._container||Ee.opened?null:"hidden"),m.AVh("mat-drawer-end","end"===Ee.position)("mat-drawer-over","over"===Ee.mode)("mat-drawer-push","push"===Ee.mode)("mat-drawer-side","side"===Ee.mode))},inputs:{position:"position",mode:"mode",disableClose:"disableClose",autoFocus:"autoFocus",opened:"opened"},outputs:{openedChange:"openedChange",_openedStream:"opened",openedStart:"openedStart",_closedStream:"closed",closedStart:"closedStart",onPositionChanged:"positionChanged"},exportAs:["matDrawer"],ngContentSelectors:me,decls:3,vars:0,consts:[["content",""],["cdkScrollable","",1,"mat-drawer-inner-container"]],template:function(Oe,Ee){1&Oe&&(m.NAR(),m.j41(0,"div",1,0),m.SdG(2),m.k0s())},dependencies:[d.uv],encapsulation:2,changeDetection:0})}return Ke})(),pe=(()=>{class Ke{_dir=(0,w.WQX)(p.dS,{optional:!0});_element=(0,w.WQX)(m.aKT);_ngZone=(0,w.WQX)(m.SKi);_changeDetectorRef=(0,w.WQX)(P.gRc);_animationDisabled=(0,oe.Rc)();_transitionsEnabled=!1;_allDrawers;_drawers=new m.rOR;_content;_userContent;get start(){return this._start}get end(){return this._end}get autosize(){return this._autosize}set autosize(ve){this._autosize=(0,S.he)(ve)}_autosize=(0,w.WQX)(_);get hasBackdrop(){return this._drawerHasBackdrop(this._start)||this._drawerHasBackdrop(this._end)}set hasBackdrop(ve){this._backdropOverride=null==ve?null:(0,S.he)(ve)}_backdropOverride;backdropClick=new m.bkB;_start;_end;_left;_right;_destroyed=new M.B;_doCheckSubject=new M.B;_contentMargins={left:null,right:null};_contentMarginChanges=new M.B;get scrollable(){return this._userContent||this._content}_injector=(0,w.WQX)(w.zZn);constructor(){const ve=(0,w.WQX)(g.O),Oe=(0,w.WQX)(d.Xj);this._dir?.change.pipe((0,ue.Q)(this._destroyed)).subscribe(()=>{this._validateDrawers(),this.updateContentMargins()}),Oe.change().pipe((0,ue.Q)(this._destroyed)).subscribe(()=>this.updateContentMargins()),!this._animationDisabled&&ve.isBrowser&&this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{this._element.nativeElement.classList.add("mat-drawer-transition"),this._transitionsEnabled=!0},200)})}ngAfterContentInit(){this._allDrawers.changes.pipe((0,$.Z)(this._allDrawers),(0,ue.Q)(this._destroyed)).subscribe(ve=>{this._drawers.reset(ve.filter(Oe=>!Oe._container||Oe._container===this)),this._drawers.notifyOnChanges()}),this._drawers.changes.pipe((0,$.Z)(null)).subscribe(()=>{this._validateDrawers(),this._drawers.forEach(ve=>{this._watchDrawerToggle(ve),this._watchDrawerPosition(ve),this._watchDrawerMode(ve)}),(!this._drawers.length||this._isDrawerOpen(this._start)||this._isDrawerOpen(this._end))&&this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),this._ngZone.runOutsideAngular(()=>{this._doCheckSubject.pipe((0,K.B)(10),(0,ue.Q)(this._destroyed)).subscribe(()=>this.updateContentMargins())})}ngOnDestroy(){this._contentMarginChanges.complete(),this._doCheckSubject.complete(),this._drawers.destroy(),this._destroyed.next(),this._destroyed.complete()}open(){this._drawers.forEach(ve=>ve.open())}close(){this._drawers.forEach(ve=>ve.close())}updateContentMargins(){let ve=0,Oe=0;if(this._left&&this._left.opened)if("side"==this._left.mode)ve+=this._left._getWidth();else if("push"==this._left.mode){const Ee=this._left._getWidth();ve+=Ee,Oe-=Ee}if(this._right&&this._right.opened)if("side"==this._right.mode)Oe+=this._right._getWidth();else if("push"==this._right.mode){const Ee=this._right._getWidth();Oe+=Ee,ve-=Ee}ve=ve||null,Oe=Oe||null,(ve!==this._contentMargins.left||Oe!==this._contentMargins.right)&&(this._contentMargins={left:ve,right:Oe},this._ngZone.run(()=>this._contentMarginChanges.next(this._contentMargins)))}ngDoCheck(){this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular(()=>this._doCheckSubject.next())}_watchDrawerToggle(ve){ve._animationStarted.pipe((0,ue.Q)(this._drawers.changes)).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),"side"!==ve.mode&&ve.openedChange.pipe((0,ue.Q)(this._drawers.changes)).subscribe(()=>this._setContainerClass(ve.opened))}_watchDrawerPosition(ve){ve.onPositionChanged.pipe((0,ue.Q)(this._drawers.changes)).subscribe(()=>{(0,m.mal)({read:()=>this._validateDrawers()},{injector:this._injector})})}_watchDrawerMode(ve){ve._modeChanged.pipe((0,ue.Q)((0,U.h)(this._drawers.changes,this._destroyed))).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()})}_setContainerClass(ve){const Oe=this._element.nativeElement.classList,Ee="mat-drawer-container-has-open";ve?Oe.add(Ee):Oe.remove(Ee)}_validateDrawers(){this._start=this._end=null,this._drawers.forEach(ve=>{"end"==ve.position?this._end=ve:this._start=ve}),this._right=this._left=null,this._dir&&"rtl"===this._dir.value?(this._left=this._end,this._right=this._start):(this._left=this._start,this._right=this._end)}_isPushed(){return this._isDrawerOpen(this._start)&&"over"!=this._start.mode||this._isDrawerOpen(this._end)&&"over"!=this._end.mode}_onBackdropClicked(){this.backdropClick.emit(),this._closeModalDrawersViaBackdrop()}_closeModalDrawersViaBackdrop(){[this._start,this._end].filter(ve=>ve&&!ve.disableClose&&this._drawerHasBackdrop(ve)).forEach(ve=>ve._closeViaBackdropClick())}_isShowingBackdrop(){return this._isDrawerOpen(this._start)&&this._drawerHasBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._drawerHasBackdrop(this._end)}_isDrawerOpen(ve){return null!=ve&&ve.opened}_drawerHasBackdrop(ve){return null==this._backdropOverride?!!ve&&"side"!==ve.mode:this._backdropOverride}static \u0275fac=function(Oe){return new(Oe||Ke)};static \u0275cmp=m.VBU({type:Ke,selectors:[["mat-drawer-container"]],contentQueries:function(Oe,Ee,dt){if(1&Oe&&(m.wni(dt,B,5),m.wni(dt,re,5)),2&Oe){let nt;m.mGM(nt=m.lsd())&&(Ee._content=nt.first),m.mGM(nt=m.lsd())&&(Ee._allDrawers=nt)}},viewQuery:function(Oe,Ee){if(1&Oe&&m.GBs(B,5),2&Oe){let dt;m.mGM(dt=m.lsd())&&(Ee._userContent=dt.first)}},hostAttrs:[1,"mat-drawer-container"],hostVars:2,hostBindings:function(Oe,Ee){2&Oe&&m.AVh("mat-drawer-container-explicit-backdrop",Ee._backdropOverride)},inputs:{autosize:"autosize",hasBackdrop:"hasBackdrop"},outputs:{backdropClick:"backdropClick"},exportAs:["matDrawerContainer"],features:[m.Jv_([{provide:W,useExisting:Ke}])],ngContentSelectors:n,decls:4,vars:2,consts:[[1,"mat-drawer-backdrop",3,"mat-drawer-shown"],[1,"mat-drawer-backdrop",3,"click"]],template:function(Oe,Ee){1&Oe&&(m.NAR(D),m.nVh(0,o,1,2,"div",0),m.SdG(1),m.SdG(2,1),m.nVh(3,f,2,0,"mat-drawer-content")),2&Oe&&(m.vxM(Ee.hasBackdrop?0:-1),m.R7$(3),m.vxM(Ee._content?-1:3))},dependencies:[B],styles:[".mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color, var(--mat-sys-on-background));background-color:var(--mat-sidenav-content-background-color, var(--mat-sys-background));box-sizing:border-box;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible;background-color:var(--mat-sidenav-scrim-color, color-mix(in srgb, var(--mat-sys-neutral-variant20) 40%, transparent))}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}@media(forced-colors: active){.mat-drawer-backdrop{opacity:.5}}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-content.mat-drawer-content-hidden{opacity:0}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;color:var(--mat-sidenav-container-text-color, var(--mat-sys-on-surface-variant));box-shadow:var(--mat-sidenav-container-elevation-shadow, none);background-color:var(--mat-sidenav-container-background-color, var(--mat-sys-surface));border-top-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));width:var(--mat-sidenav-container-width, 360px);display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}@media(forced-colors: active){.mat-drawer,[dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}}@media(forced-colors: active){[dir=rtl] .mat-drawer,.mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0);border-top-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-right-radius:0;border-bottom-right-radius:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{border-top-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-transition .mat-drawer{transition:transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}.mat-drawer:not(.mat-drawer-opened):not(.mat-drawer-animating){visibility:hidden;box-shadow:none}.mat-drawer:not(.mat-drawer-opened):not(.mat-drawer-animating) .mat-drawer-inner-container{display:none}.mat-drawer.mat-drawer-opened.mat-drawer-opened{transform:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color, transparent);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color, transparent);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side{border-left-color:var(--mat-sidenav-container-divider-color, transparent);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-right-color:var(--mat-sidenav-container-divider-color, transparent);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto}.mat-sidenav-fixed{position:fixed}\n"],encapsulation:2,changeDetection:0})}return Ke})(),be=(()=>{class Ke extends B{static \u0275fac=(()=>{let ve;return function(Ee){return(ve||(ve=m.xGo(Ke)))(Ee||Ke)}})();static \u0275cmp=m.VBU({type:Ke,selectors:[["mat-sidenav-content"]],hostAttrs:[1,"mat-drawer-content","mat-sidenav-content"],features:[m.Jv_([{provide:d.uv,useExisting:Ke}]),m.Vt3],ngContentSelectors:me,decls:1,vars:0,template:function(Oe,Ee){1&Oe&&(m.NAR(),m.SdG(0))},encapsulation:2,changeDetection:0})}return Ke})(),Be=(()=>{class Ke extends re{get fixedInViewport(){return this._fixedInViewport}set fixedInViewport(ve){this._fixedInViewport=(0,S.he)(ve)}_fixedInViewport=!1;get fixedTopGap(){return this._fixedTopGap}set fixedTopGap(ve){this._fixedTopGap=(0,c.OE)(ve)}_fixedTopGap=0;get fixedBottomGap(){return this._fixedBottomGap}set fixedBottomGap(ve){this._fixedBottomGap=(0,c.OE)(ve)}_fixedBottomGap=0;static \u0275fac=(()=>{let ve;return function(Ee){return(ve||(ve=m.xGo(Ke)))(Ee||Ke)}})();static \u0275cmp=m.VBU({type:Ke,selectors:[["mat-sidenav"]],hostAttrs:[1,"mat-drawer","mat-sidenav"],hostVars:16,hostBindings:function(Oe,Ee){2&Oe&&(m.BMQ("tabIndex","side"!==Ee.mode?"-1":null)("align",null),m.xc7("top",Ee.fixedInViewport?Ee.fixedTopGap:null,"px")("bottom",Ee.fixedInViewport?Ee.fixedBottomGap:null,"px"),m.AVh("mat-drawer-end","end"===Ee.position)("mat-drawer-over","over"===Ee.mode)("mat-drawer-push","push"===Ee.mode)("mat-drawer-side","side"===Ee.mode)("mat-sidenav-fixed",Ee.fixedInViewport))},inputs:{fixedInViewport:"fixedInViewport",fixedTopGap:"fixedTopGap",fixedBottomGap:"fixedBottomGap"},exportAs:["matSidenav"],features:[m.Jv_([{provide:re,useExisting:Ke}]),m.Vt3],ngContentSelectors:me,decls:3,vars:0,consts:[["content",""],["cdkScrollable","",1,"mat-drawer-inner-container"]],template:function(Oe,Ee){1&Oe&&(m.NAR(),m.j41(0,"div",1,0),m.SdG(2),m.k0s())},dependencies:[d.uv],encapsulation:2,changeDetection:0})}return Ke})(),_e=(()=>{class Ke extends pe{_allDrawers=void 0;_content=void 0;static \u0275fac=(()=>{let ve;return function(Ee){return(ve||(ve=m.xGo(Ke)))(Ee||Ke)}})();static \u0275cmp=m.VBU({type:Ke,selectors:[["mat-sidenav-container"]],contentQueries:function(Oe,Ee,dt){if(1&Oe&&(m.wni(dt,be,5),m.wni(dt,Be,5)),2&Oe){let nt;m.mGM(nt=m.lsd())&&(Ee._content=nt.first),m.mGM(nt=m.lsd())&&(Ee._allDrawers=nt)}},hostAttrs:[1,"mat-drawer-container","mat-sidenav-container"],hostVars:2,hostBindings:function(Oe,Ee){2&Oe&&m.AVh("mat-drawer-container-explicit-backdrop",Ee._backdropOverride)},exportAs:["matSidenavContainer"],features:[m.Jv_([{provide:W,useExisting:Ke},{provide:pe,useExisting:Ke}]),m.Vt3],ngContentSelectors:b,decls:4,vars:2,consts:[[1,"mat-drawer-backdrop",3,"mat-drawer-shown"],[1,"mat-drawer-backdrop",3,"click"]],template:function(Oe,Ee){1&Oe&&(m.NAR(h),m.nVh(0,A,1,2,"div",0),m.SdG(1),m.SdG(2,1),m.nVh(3,k,2,0,"mat-sidenav-content")),2&Oe&&(m.vxM(Ee.hasBackdrop?0:-1),m.R7$(3),m.vxM(Ee._content?-1:3))},dependencies:[be],styles:[".mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color, var(--mat-sys-on-background));background-color:var(--mat-sidenav-content-background-color, var(--mat-sys-background));box-sizing:border-box;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible;background-color:var(--mat-sidenav-scrim-color, color-mix(in srgb, var(--mat-sys-neutral-variant20) 40%, transparent))}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}@media(forced-colors: active){.mat-drawer-backdrop{opacity:.5}}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-content.mat-drawer-content-hidden{opacity:0}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;color:var(--mat-sidenav-container-text-color, var(--mat-sys-on-surface-variant));box-shadow:var(--mat-sidenav-container-elevation-shadow, none);background-color:var(--mat-sidenav-container-background-color, var(--mat-sys-surface));border-top-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));width:var(--mat-sidenav-container-width, 360px);display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}@media(forced-colors: active){.mat-drawer,[dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}}@media(forced-colors: active){[dir=rtl] .mat-drawer,.mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0);border-top-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-right-radius:0;border-bottom-right-radius:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{border-top-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-transition .mat-drawer{transition:transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}.mat-drawer:not(.mat-drawer-opened):not(.mat-drawer-animating){visibility:hidden;box-shadow:none}.mat-drawer:not(.mat-drawer-opened):not(.mat-drawer-animating) .mat-drawer-inner-container{display:none}.mat-drawer.mat-drawer-opened.mat-drawer-opened{transform:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color, transparent);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color, transparent);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side{border-left-color:var(--mat-sidenav-container-divider-color, transparent);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-right-color:var(--mat-sidenav-container-divider-color, transparent);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto}.mat-sidenav-fixed{position:fixed}\n"],encapsulation:2,changeDetection:0})}return Ke})(),ye=(()=>{class Ke{static \u0275fac=function(Oe){return new(Oe||Ke)};static \u0275mod=m.$C({type:Ke});static \u0275inj=w.G2t({imports:[he.y,d.Gj,d.Gj,he.y]})}return Ke})()},91252:(Ae,ee,l)=>{const i=l(19089),t=l(23677),p=l(47424),S=l(91677),c=l(80377),T=i.getBCHDigit(7973);function d(P,M){return S.getCharCountIndicator(P,M)+4}function w(P,M){let j=0;return P.forEach(function(U){const K=d(U.mode,M);j+=K+U.getBitsLength()}),j}ee.from=function(M,j){return c.isValid(M)?parseInt(M,10):j},ee.getCapacity=function(M,j,U){if(!c.isValid(M))throw new Error("Invalid QR Code version");typeof U>"u"&&(U=S.BYTE);const G=8*(i.getSymbolTotalCodewords(M)-t.getTotalCodewordsCount(M,j));if(U===S.MIXED)return G;const Q=G-d(U,M);switch(U){case S.NUMERIC:return Math.floor(Q/10*3);case S.ALPHANUMERIC:return Math.floor(Q/11*2);case S.KANJI:return Math.floor(Q/13);default:return Math.floor(Q/8)}},ee.getBestVersionForData=function(M,j){let U;const K=p.from(j,p.M);if(Array.isArray(M)){if(M.length>1)return function m(P,M){for(let j=1;j<=40;j++)if(w(P,j)<=ee.getCapacity(j,M,S.MIXED))return j}(M,K);if(0===M.length)return 1;U=M[0]}else U=M;return function g(P,M,j){for(let U=1;U<=40;U++)if(M<=ee.getCapacity(U,j,P))return U}(U.mode,U.getLength(),K)},ee.getEncodedBits=function(M){if(!c.isValid(M)||M<7)throw new Error("Invalid QR Code version");let j=M<<12;for(;i.getBCHDigit(j)-T>=0;)j^=7973<{"use strict";ee.randomBytes=ee.rng=ee.pseudoRandomBytes=ee.prng=l(3342),ee.createHash=ee.Hash=l(67211),ee.createHmac=ee.Hmac=l(56432);var i=l(99560),t=Object.keys(i),p=["sha1","sha224","sha256","sha384","sha512","md5","rmd160"].concat(t);ee.getHashes=function(){return p};var S=l(93397);ee.pbkdf2=S.pbkdf2,ee.pbkdf2Sync=S.pbkdf2Sync;var c=l(88862);ee.Cipher=c.Cipher,ee.createCipher=c.createCipher,ee.Cipheriv=c.Cipheriv,ee.createCipheriv=c.createCipheriv,ee.Decipher=c.Decipher,ee.createDecipher=c.createDecipher,ee.Decipheriv=c.Decipheriv,ee.createDecipheriv=c.createDecipheriv,ee.getCiphers=c.getCiphers,ee.listCiphers=c.listCiphers;var e=l(4377);ee.DiffieHellmanGroup=e.DiffieHellmanGroup,ee.createDiffieHellmanGroup=e.createDiffieHellmanGroup,ee.getDiffieHellman=e.getDiffieHellman,ee.createDiffieHellman=e.createDiffieHellman,ee.DiffieHellman=e.DiffieHellman;var T=l(79143);ee.createSign=T.createSign,ee.Sign=T.Sign,ee.createVerify=T.createVerify,ee.Verify=T.Verify,ee.createECDH=l(87303);var g=l(52965);ee.publicEncrypt=g.publicEncrypt,ee.privateEncrypt=g.privateEncrypt,ee.publicDecrypt=g.publicDecrypt,ee.privateDecrypt=g.privateDecrypt;var d=l(9682);ee.randomFill=d.randomFill,ee.randomFillSync=d.randomFillSync,ee.createCredentials=function(){throw new Error("sorry, createCredentials is not implemented yet\nwe accept pull requests\nhttps://github.com/browserify/crypto-browserify")},ee.constants={DH_CHECK_P_NOT_SAFE_PRIME:2,DH_CHECK_P_NOT_PRIME:1,DH_UNABLE_TO_CHECK_GENERATOR:4,DH_NOT_SUITABLE_GENERATOR:8,NPN_ENABLED:1,ALPN_ENABLED:1,RSA_PKCS1_PADDING:1,RSA_SSLV23_PADDING:2,RSA_NO_PADDING:3,RSA_PKCS1_OAEP_PADDING:4,RSA_X931_PADDING:5,RSA_PKCS1_PSS_PADDING:6,POINT_CONVERSION_COMPRESSED:2,POINT_CONVERSION_UNCOMPRESSED:4,POINT_CONVERSION_HYBRID:6}},91558:(Ae,ee,l)=>{var i=ee;i.der=l(55941),i.pem=l(59316)},91627:(Ae,ee,l)=>{"use strict";var i=l(97669),t=l(27203),p=l(63361);Ae.exports=i?function(c){return i(c)}:t?function(c){if(!c||"object"!=typeof c&&"function"!=typeof c)throw new TypeError("getProto: not an object");return t(c)}:p?function(c){return p(c)}:null},91677:(Ae,ee,l)=>{const i=l(80377),t=l(99359);ee.NUMERIC={id:"Numeric",bit:1,ccBits:[10,12,14]},ee.ALPHANUMERIC={id:"Alphanumeric",bit:2,ccBits:[9,11,13]},ee.BYTE={id:"Byte",bit:4,ccBits:[8,16,16]},ee.KANJI={id:"Kanji",bit:8,ccBits:[8,10,12]},ee.MIXED={bit:-1},ee.getCharCountIndicator=function(c,e){if(!c.ccBits)throw new Error("Invalid mode: "+c);if(!i.isValid(e))throw new Error("Invalid version: "+e);return e>=1&&e<10?c.ccBits[0]:e<27?c.ccBits[1]:c.ccBits[2]},ee.getBestModeForData=function(c){return t.testNumeric(c)?ee.NUMERIC:t.testAlphanumeric(c)?ee.ALPHANUMERIC:t.testKanji(c)?ee.KANJI:ee.BYTE},ee.toString=function(c){if(c&&c.id)return c.id;throw new Error("Invalid mode")},ee.isValid=function(c){return c&&c.bit&&c.ccBits},ee.from=function(c,e){if(ee.isValid(c))return c;try{return function p(S){if("string"!=typeof S)throw new Error("Param is not a string");switch(S.toLowerCase()){case"numeric":return ee.NUMERIC;case"alphanumeric":return ee.ALPHANUMERIC;case"kanji":return ee.KANJI;case"byte":return ee.BYTE;default:throw new Error("Unknown mode: "+S)}}(c)}catch{return e}}},91821:(Ae,ee,l)=>{var i=l(12375),t=l(27054).Buffer,p=l(3247);function c(e,T,g,d){p.call(this),this._cipher=new i.AES(T),this._prev=t.from(g),this._cache=t.allocUnsafe(0),this._secCache=t.allocUnsafe(0),this._decrypt=d,this._mode=e}l(71993)(c,p),c.prototype._update=function(e){return this._mode.encrypt(this,e,this._decrypt)},c.prototype._final=function(){this._cipher.scrub()},Ae.exports=c},92736:(Ae,ee,l)=>{"use strict";var i=l(4570),t=l(58413),p=l(46758),S=l(83798);Ae.exports=function(e,T,g){if(!e||"object"!=typeof e&&"function"!=typeof e)throw new p("`obj` must be an object or a function`");if("string"!=typeof T&&"symbol"!=typeof T)throw new p("`property` must be a string or a symbol`");if(arguments.length>3&&"boolean"!=typeof arguments[3]&&null!==arguments[3])throw new p("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!=typeof arguments[4]&&null!==arguments[4])throw new p("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!=typeof arguments[5]&&null!==arguments[5])throw new p("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!=typeof arguments[6])throw new p("`loose`, if provided, must be a boolean");var d=arguments.length>3?arguments[3]:null,w=arguments.length>4?arguments[4]:null,m=arguments.length>5?arguments[5]:null,P=arguments.length>6&&arguments[6],M=!!S&&S(e,T);if(i)i(e,T,{configurable:null===m&&M?M.configurable:!m,enumerable:null===d&&M?M.enumerable:!d,value:g,writable:null===w&&M?M.writable:!w});else{if(!P&&(d||w||m))throw new t("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");e[T]=g}}},92771:(Ae,ee,l)=>{"use strict";l.d(ee,{m:()=>p});var i=l(21413),t=l(86129);class p extends i.B{constructor(c=1/0,e=1/0,T=t.U){super(),this._bufferSize=c,this._windowTime=e,this._timestampProvider=T,this._buffer=[],this._infiniteTimeWindow=!0,this._infiniteTimeWindow=e===1/0,this._bufferSize=Math.max(1,c),this._windowTime=Math.max(1,e)}next(c){const{isStopped:e,_buffer:T,_infiniteTimeWindow:g,_timestampProvider:d,_windowTime:w}=this;e||(T.push(c),!g&&T.push(d.now()+w)),this._trimBuffer(),super.next(c)}_subscribe(c){this._throwIfClosed(),this._trimBuffer();const e=this._innerSubscribe(c),{_infiniteTimeWindow:T,_buffer:g}=this,d=g.slice();for(let w=0;w{"use strict";l.d(ee,{D:()=>c});const{isArray:i}=Array,{getPrototypeOf:t,prototype:p,keys:S}=Object;function c(T){if(1===T.length){const g=T[0];if(i(g))return{args:g,keys:null};if(function e(T){return T&&"object"==typeof T&&t(T)===p}(g)){const d=S(g);return{args:d.map(w=>g[w]),keys:d}}}return{args:T,keys:null}}},93393:(Ae,ee,l)=>{"use strict";l.d(ee,{CI:()=>M,EU:()=>T,Hl:()=>S,Q5:()=>e,jd:()=>c,mE:()=>D});var i=l(2615),t=l(57303),p=l(73664);class S{_doc;constructor(r){this._doc=r}manager}let c=(()=>{class x extends S{constructor(_){super(_)}supports(_){return!0}addEventListener(_,W,I,B){return _.addEventListener(W,I,B),()=>this.removeEventListener(_,W,I,B)}removeEventListener(_,W,I,B){return _.removeEventListener(W,I,B)}static \u0275fac=function(W){return new(W||x)(i.KVO(i.qQL))};static \u0275prov=i.jDH({token:x,factory:x.\u0275fac})}return x})();const e=new i.nKC("");let T=(()=>{class x{_zone;_plugins;_eventNameToPlugin=new Map;constructor(_,W){this._zone=W,_.forEach(re=>{re.manager=this});const I=_.filter(re=>!(re instanceof c));this._plugins=I.slice().reverse();const B=_.find(re=>re instanceof c);B&&this._plugins.push(B)}addEventListener(_,W,I,B){return this._findPluginFor(W).addEventListener(_,W,I,B)}getZone(){return this._zone}_findPluginFor(_){let W=this._eventNameToPlugin.get(_);if(W)return W;if(W=this._plugins.find(B=>B.supports(_)),!W)throw new i.buA(5101,!1);return this._eventNameToPlugin.set(_,W),W}static \u0275fac=function(W){return new(W||x)(i.KVO(e),i.KVO(p.SKi))};static \u0275prov=i.jDH({token:x,factory:x.\u0275fac})}return x})();const g="ng-app-id";function d(x){for(const r of x)r.remove()}function w(x,r){const _=r.createElement("style");return _.textContent=x,_}function P(x,r){const _=r.createElement("link");return _.setAttribute("rel","stylesheet"),_.setAttribute("href",x),_}let M=(()=>{class x{doc;appId;nonce;inline=new Map;external=new Map;hosts=new Set;constructor(_,W,I,B={}){this.doc=_,this.appId=W,this.nonce=I,function m(x,r,_,W){const I=x.head?.querySelectorAll(`style[${g}="${r}"],link[${g}="${r}"]`);if(I)for(const B of I)B.removeAttribute(g),B instanceof HTMLLinkElement?W.set(B.href.slice(B.href.lastIndexOf("/")+1),{usage:0,elements:[B]}):B.textContent&&_.set(B.textContent,{usage:0,elements:[B]})}(_,W,this.inline,this.external),this.hosts.add(_.head)}addStyles(_,W){for(const I of _)this.addUsage(I,this.inline,w);W?.forEach(I=>this.addUsage(I,this.external,P))}removeStyles(_,W){for(const I of _)this.removeUsage(I,this.inline);W?.forEach(I=>this.removeUsage(I,this.external))}addUsage(_,W,I){const B=W.get(_);B?B.usage++:W.set(_,{usage:1,elements:[...this.hosts].map(re=>this.addElement(re,I(_,this.doc)))})}removeUsage(_,W){const I=W.get(_);I&&(I.usage--,I.usage<=0&&(d(I.elements),W.delete(_)))}ngOnDestroy(){for(const[,{elements:_}]of[...this.inline,...this.external])d(_);this.hosts.clear()}addHost(_){this.hosts.add(_);for(const[W,{elements:I}]of this.inline)I.push(this.addElement(_,w(W,this.doc)));for(const[W,{elements:I}]of this.external)I.push(this.addElement(_,P(W,this.doc)))}removeHost(_){this.hosts.delete(_)}addElement(_,W){return this.nonce&&W.setAttribute("nonce",this.nonce),_.appendChild(W)}static \u0275fac=function(W){return new(W||x)(i.KVO(i.qQL),i.KVO(p.sZ2),i.KVO(p.BIS,8),i.KVO(p.Agw))};static \u0275prov=i.jDH({token:x,factory:x.\u0275fac})}return x})();const j={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/",math:"http://www.w3.org/1998/Math/MathML"},U=/%COMP%/g,G="%COMP%",Q=`_nghost-${G}`,$=`_ngcontent-${G}`,ue=new i.nKC("",{providedIn:"root",factory:()=>!0});function me(x,r){return r.map(_=>_.replace(U,x))}let D=(()=>{class x{eventManager;sharedStylesHost;appId;removeStylesOnCompDestroy;doc;ngZone;nonce;tracingService;rendererByCompId=new Map;defaultRenderer;platformIsServer;constructor(_,W,I,B,re,pe,be=null,Be=null){this.eventManager=_,this.sharedStylesHost=W,this.appId=I,this.removeStylesOnCompDestroy=B,this.doc=re,this.ngZone=pe,this.nonce=be,this.tracingService=Be,this.platformIsServer=!1,this.defaultRenderer=new n(_,re,pe,this.platformIsServer,this.tracingService)}createRenderer(_,W){if(!_||!W)return this.defaultRenderer;const I=this.getOrCreateRenderer(_,W);return I instanceof k?I.applyToHost(_):I instanceof A&&I.applyStyles(),I}getOrCreateRenderer(_,W){const I=this.rendererByCompId;let B=I.get(W.id);if(!B){const re=this.doc,pe=this.ngZone,be=this.eventManager,Be=this.sharedStylesHost,_e=this.removeStylesOnCompDestroy,ye=this.platformIsServer,Le=this.tracingService;switch(W.encapsulation){case p.gXe.Emulated:B=new k(be,Be,W,this.appId,_e,re,pe,ye,Le);break;case p.gXe.ShadowDom:return new b(be,Be,_,W,re,pe,this.nonce,ye,Le);default:B=new A(be,Be,W,_e,re,pe,ye,Le)}I.set(W.id,B)}return B}ngOnDestroy(){this.rendererByCompId.clear()}componentReplaced(_){this.rendererByCompId.delete(_)}static \u0275fac=function(W){return new(W||x)(i.KVO(T),i.KVO(M),i.KVO(p.sZ2),i.KVO(ue),i.KVO(i.qQL),i.KVO(p.SKi),i.KVO(p.BIS),i.KVO(p.a8H,8))};static \u0275prov=i.jDH({token:x,factory:x.\u0275fac})}return x})();class n{eventManager;doc;ngZone;platformIsServer;tracingService;data=Object.create(null);throwOnSyntheticProps=!0;constructor(r,_,W,I,B){this.eventManager=r,this.doc=_,this.ngZone=W,this.platformIsServer=I,this.tracingService=B}destroy(){}destroyNode=null;createElement(r,_){return _?this.doc.createElementNS(j[_]||_,r):this.doc.createElement(r)}createComment(r){return this.doc.createComment(r)}createText(r){return this.doc.createTextNode(r)}appendChild(r,_){(h(r)?r.content:r).appendChild(_)}insertBefore(r,_,W){r&&(h(r)?r.content:r).insertBefore(_,W)}removeChild(r,_){_.remove()}selectRootElement(r,_){let W="string"==typeof r?this.doc.querySelector(r):r;if(!W)throw new i.buA(-5104,!1);return _||(W.textContent=""),W}parentNode(r){return r.parentNode}nextSibling(r){return r.nextSibling}setAttribute(r,_,W,I){if(I){_=I+":"+_;const B=j[I];B?r.setAttributeNS(B,_,W):r.setAttribute(_,W)}else r.setAttribute(_,W)}removeAttribute(r,_,W){if(W){const I=j[W];I?r.removeAttributeNS(I,_):r.removeAttribute(`${W}:${_}`)}else r.removeAttribute(_)}addClass(r,_){r.classList.add(_)}removeClass(r,_){r.classList.remove(_)}setStyle(r,_,W,I){I&(p.czy.DashCase|p.czy.Important)?r.style.setProperty(_,W,I&p.czy.Important?"important":""):r.style[_]=W}removeStyle(r,_,W){W&p.czy.DashCase?r.style.removeProperty(_):r.style[_]=""}setProperty(r,_,W){null!=r&&(r[_]=W)}setValue(r,_){r.nodeValue=_}listen(r,_,W,I){if("string"==typeof r&&!(r=(0,t.rb)().getGlobalEventTarget(this.doc,r)))throw new i.buA(5102,!1);let B=this.decoratePreventDefault(W);return this.tracingService?.wrapEventListener&&(B=this.tracingService.wrapEventListener(r,_,B)),this.eventManager.addEventListener(r,_,B,I)}decoratePreventDefault(r){return _=>{if("__ngUnwrap__"===_)return r;!1===r(_)&&_.preventDefault()}}}function h(x){return"TEMPLATE"===x.tagName&&void 0!==x.content}class b extends n{sharedStylesHost;hostEl;shadowRoot;constructor(r,_,W,I,B,re,pe,be,Be){super(r,B,re,be,Be),this.sharedStylesHost=_,this.hostEl=W,this.shadowRoot=W.attachShadow({mode:"open"}),this.sharedStylesHost.addHost(this.shadowRoot);let _e=I.styles;_e=me(I.id,_e);for(const Le of _e){const Ke=document.createElement("style");pe&&Ke.setAttribute("nonce",pe),Ke.textContent=Le,this.shadowRoot.appendChild(Ke)}const ye=I.getExternalStyles?.();if(ye)for(const Le of ye){const Ke=P(Le,B);pe&&Ke.setAttribute("nonce",pe),this.shadowRoot.appendChild(Ke)}}nodeOrShadowRoot(r){return r===this.hostEl?this.shadowRoot:r}appendChild(r,_){return super.appendChild(this.nodeOrShadowRoot(r),_)}insertBefore(r,_,W){return super.insertBefore(this.nodeOrShadowRoot(r),_,W)}removeChild(r,_){return super.removeChild(null,_)}parentNode(r){return this.nodeOrShadowRoot(super.parentNode(this.nodeOrShadowRoot(r)))}destroy(){this.sharedStylesHost.removeHost(this.shadowRoot)}}class A extends n{sharedStylesHost;removeStylesOnCompDestroy;styles;styleUrls;constructor(r,_,W,I,B,re,pe,be,Be){super(r,B,re,pe,be),this.sharedStylesHost=_,this.removeStylesOnCompDestroy=I;let _e=W.styles;this.styles=Be?me(Be,_e):_e,this.styleUrls=W.getExternalStyles?.(Be)}applyStyles(){this.sharedStylesHost.addStyles(this.styles,this.styleUrls)}destroy(){this.removeStylesOnCompDestroy&&0===p.DUP.size&&this.sharedStylesHost.removeStyles(this.styles,this.styleUrls)}}class k extends A{contentAttr;hostAttr;constructor(r,_,W,I,B,re,pe,be,Be){const _e=I+"-"+W.id;super(r,_,W,B,re,pe,be,Be,_e),this.contentAttr=function oe(x){return $.replace(U,x)}(_e),this.hostAttr=function he(x){return Q.replace(U,x)}(_e)}applyToHost(r){this.applyStyles(),this.setAttribute(r,this.hostAttr,"")}createElement(r,_){const W=super.createElement(r,_);return super.setAttribute(W,this.contentAttr,""),W}}},93397:(Ae,ee,l)=>{"use strict";ee.pbkdf2=l(82685),ee.pbkdf2Sync=l(59111)},93774:(Ae,ee,l)=>{"use strict";l.d(ee,{v:()=>S});var i=l(9350),t=l(39974),p=l(54360);function S(e=c){return(0,t.N)((T,g)=>{let d=!1;T.subscribe((0,p._)(g,w=>{d=!0,g.next(w)},()=>d?g.complete():g.error(e())))})}function c(){return new i.G}},93898:(Ae,ee,l)=>{"use strict";var i=l(68283),t=l(10827);function p(){if(!(this instanceof p))return new p;t.call(this),this.h=[3418070365,3238371032,1654270250,914150663,2438529370,812702999,355462360,4144912697,1731405415,4290775857,2394180231,1750603025,3675008525,1694076839,1203062813,3204075428]}i.inherits(p,t),Ae.exports=p,p.blockSize=1024,p.outSize=384,p.hmacStrength=192,p.padLength=128,p.prototype._digest=function(c){return"hex"===c?i.toHex32(this.h.slice(0,12),"big"):i.split32(this.h.slice(0,12),"big")}},94478:(Ae,ee,l)=>{"use strict";Object.defineProperty(ee,"__esModule",{value:!0});var i=l(97840),t=l(15526),p=l(60426);const S=new p.HOTP({createDigest:i.createDigest}),c=new p.TOTP({createDigest:i.createDigest}),e=new p.Authenticator({createDigest:i.createDigest,createRandomBytes:i.createRandomBytes,keyDecoder:t.keyDecoder,keyEncoder:t.keyEncoder});ee.authenticator=e,ee.hotp=S,ee.totp=c},94593:(Ae,ee,l)=>{var i=l(38280),p=new(l(53459)),S=new i(24),c=new i(11),e=new i(10),T=new i(3),g=new i(7),d=l(12727),w=l(3342);function m(q,G){return G=G||"utf8",Buffer.isBuffer(q)||(q=new Buffer(q,G)),this._pub=new i(q),this}function P(q,G){return G=G||"utf8",Buffer.isBuffer(q)||(q=new Buffer(q,G)),this._priv=new i(q),this}Ae.exports=U;var M={};function U(q,G,Q){this.setGenerator(G),this.__prime=new i(q),this._prime=i.mont(this.__prime),this._primeLen=q.length,this._pub=void 0,this._priv=void 0,this._primeCode=void 0,Q?(this.setPublicKey=m,this.setPrivateKey=P):this._primeCode=8}function K(q,G){var Q=new Buffer(q.toArray());return G?Q.toString(G):Q}Object.defineProperty(U.prototype,"verifyError",{enumerable:!0,get:function(){return"number"!=typeof this._primeCode&&(this._primeCode=function j(q,G){var Q=G.toString("hex"),$=[Q,q.toString(16)].join("_");if($ in M)return M[$];var ue,ae=0;if(q.isEven()||!d.simpleSieve||!d.fermatTest(q)||!p.test(q))return ae+=1,M[$]=ae+="02"===Q||"05"===Q?8:4,ae;switch(p.test(q.shrn(1))||(ae+=2),Q){case"02":q.mod(S).cmp(c)&&(ae+=8);break;case"05":(ue=q.mod(e)).cmp(T)&&ue.cmp(g)&&(ae+=8);break;default:ae+=4}return M[$]=ae,ae}(this.__prime,this.__gen)),this._primeCode}}),U.prototype.generateKeys=function(){return this._priv||(this._priv=new i(w(this._primeLen))),this._pub=this._gen.toRed(this._prime).redPow(this._priv).fromRed(),this.getPublicKey()},U.prototype.computeSecret=function(q){var G=(q=(q=new i(q)).toRed(this._prime)).redPow(this._priv).fromRed(),Q=new Buffer(G.toArray()),$=this.getPrime();if(Q.length<$.length){var ae=new Buffer($.length-Q.length);ae.fill(0),Q=Buffer.concat([ae,Q])}return Q},U.prototype.getPublicKey=function(G){return K(this._pub,G)},U.prototype.getPrivateKey=function(G){return K(this._priv,G)},U.prototype.getPrime=function(q){return K(this.__prime,q)},U.prototype.getGenerator=function(q){return K(this._gen,q)},U.prototype.setGenerator=function(q,G){return G=G||"utf8",Buffer.isBuffer(q)||(q=new Buffer(q,G)),this.__gen=q,this._gen=new i(q),this}},94772:(Ae,ee,l)=>{"use strict";var i=l(49609),t=i.define("Time",function(){this.choice({utcTime:this.utctime(),generalTime:this.gentime()})}),p=i.define("AttributeTypeValue",function(){this.seq().obj(this.key("type").objid(),this.key("value").any())}),S=i.define("AlgorithmIdentifier",function(){this.seq().obj(this.key("algorithm").objid(),this.key("parameters").optional(),this.key("curve").objid().optional())}),c=i.define("SubjectPublicKeyInfo",function(){this.seq().obj(this.key("algorithm").use(S),this.key("subjectPublicKey").bitstr())}),e=i.define("RelativeDistinguishedName",function(){this.setof(p)}),T=i.define("RDNSequence",function(){this.seqof(e)}),g=i.define("Name",function(){this.choice({rdnSequence:this.use(T)})}),d=i.define("Validity",function(){this.seq().obj(this.key("notBefore").use(t),this.key("notAfter").use(t))}),w=i.define("Extension",function(){this.seq().obj(this.key("extnID").objid(),this.key("critical").bool().def(!1),this.key("extnValue").octstr())}),m=i.define("TBSCertificate",function(){this.seq().obj(this.key("version").explicit(0).int().optional(),this.key("serialNumber").int(),this.key("signature").use(S),this.key("issuer").use(g),this.key("validity").use(d),this.key("subject").use(g),this.key("subjectPublicKeyInfo").use(c),this.key("issuerUniqueID").implicit(1).bitstr().optional(),this.key("subjectUniqueID").implicit(2).bitstr().optional(),this.key("extensions").explicit(3).seqof(w).optional())}),P=i.define("X509Certificate",function(){this.seq().obj(this.key("tbsCertificate").use(m),this.key("signatureAlgorithm").use(S),this.key("signatureValue").bitstr())});Ae.exports=P},95416:(Ae,ee,l)=>{"use strict";l.d(ee,{UG:()=>A,_T:()=>x,x6:()=>b});var i=l(2615),t=l(73664),p=l(17705),S=l(21413),c=l(7673),e=l(88834),T=l(17094),g=l(89726),d=l(39842),w=l(76939),m=l(31804),P=l(34330),M=l(99327),j=l(49338),U=l(56977),K=l(22466);function q(_,W){if(1&_){const I=t.RV6();t.j41(0,"div",1)(1,"button",2),t.bIt("click",function(){i.eBV(I);const re=t.XpG();return i.Njj(re.action())}),t.EFF(2),t.k0s()()}if(2&_){const I=t.XpG();t.R7$(2),t.SpI(" ",I.data.action," ")}}const G=["label"];function Q(_,W){}const $=Math.pow(2,31)-1;class ae{_overlayRef;instance;containerInstance;_afterDismissed=new S.B;_afterOpened=new S.B;_onAction=new S.B;_durationTimeoutId;_dismissedByAction=!1;constructor(W,I){this._overlayRef=I,this.containerInstance=W,W._onExit.subscribe(()=>this._finishDismiss())}dismiss(){this._afterDismissed.closed||this.containerInstance.exit(),clearTimeout(this._durationTimeoutId)}dismissWithAction(){this._onAction.closed||(this._dismissedByAction=!0,this._onAction.next(),this._onAction.complete(),this.dismiss()),clearTimeout(this._durationTimeoutId)}closeWithAction(){this.dismissWithAction()}_dismissAfter(W){this._durationTimeoutId=setTimeout(()=>this.dismiss(),Math.min(W,$))}_open(){this._afterOpened.closed||(this._afterOpened.next(),this._afterOpened.complete())}_finishDismiss(){this._overlayRef.dispose(),this._onAction.closed||this._onAction.complete(),this._afterDismissed.next({dismissedByAction:this._dismissedByAction}),this._afterDismissed.complete(),this._dismissedByAction=!1}afterDismissed(){return this._afterDismissed}afterOpened(){return this.containerInstance._onEnter}onAction(){return this._onAction}}const ue=new i.nKC("MatSnackBarData");class oe{politeness="polite";announcementMessage="";viewContainerRef;duration=0;panelClass;direction;data=null;horizontalPosition="center";verticalPosition="bottom"}let he=(()=>{class _{static \u0275fac=function(B){return new(B||_)};static \u0275dir=t.FsC({type:_,selectors:[["","matSnackBarLabel",""]],hostAttrs:[1,"mat-mdc-snack-bar-label","mdc-snackbar__label"]})}return _})(),me=(()=>{class _{static \u0275fac=function(B){return new(B||_)};static \u0275dir=t.FsC({type:_,selectors:[["","matSnackBarActions",""]],hostAttrs:[1,"mat-mdc-snack-bar-actions","mdc-snackbar__actions"]})}return _})(),Te=(()=>{class _{static \u0275fac=function(B){return new(B||_)};static \u0275dir=t.FsC({type:_,selectors:[["","matSnackBarAction",""]],hostAttrs:[1,"mat-mdc-snack-bar-action","mdc-snackbar__action"]})}return _})(),D=(()=>{class _{snackBarRef=(0,i.WQX)(ae);data=(0,i.WQX)(ue);constructor(){}action(){this.snackBarRef.dismissWithAction()}get hasAction(){return!!this.data.action}static \u0275fac=function(B){return new(B||_)};static \u0275cmp=t.VBU({type:_,selectors:[["simple-snack-bar"]],hostAttrs:[1,"mat-mdc-simple-snack-bar"],exportAs:["matSnackBar"],decls:3,vars:2,consts:[["matSnackBarLabel",""],["matSnackBarActions",""],["matButton","","matSnackBarAction","",3,"click"]],template:function(B,re){1&B&&(t.j41(0,"div",0),t.EFF(1),t.k0s(),t.nVh(2,q,3,1,"div",1)),2&B&&(t.R7$(),t.SpI(" ",re.data.message,"\n"),t.R7$(),t.vxM(re.hasAction?2:-1))},dependencies:[e.$z,he,me,Te],styles:[".mat-mdc-simple-snack-bar{display:flex}.mat-mdc-simple-snack-bar .mat-mdc-snack-bar-label{max-height:50vh;overflow:auto}\n"],encapsulation:2,changeDetection:0})}return _})();const n="_mat-snack-bar-enter",o="_mat-snack-bar-exit";let f=(()=>{class _ extends w.lb{_ngZone=(0,i.WQX)(t.SKi);_elementRef=(0,i.WQX)(t.aKT);_changeDetectorRef=(0,i.WQX)(p.gRc);_platform=(0,i.WQX)(d.O);_animationsDisabled=(0,m.Rc)();snackBarConfig=(0,i.WQX)(oe);_document=(0,i.WQX)(i.qQL);_trackedModals=new Set;_enterFallback;_exitFallback;_injector=(0,i.WQX)(i.zZn);_announceDelay=150;_announceTimeoutId;_destroyed=!1;_portalOutlet;_onAnnounce=new S.B;_onExit=new S.B;_onEnter=new S.B;_animationState="void";_live;_label;_role;_liveElementId=(0,i.WQX)(g.g).getId("mat-snack-bar-container-live-");constructor(){super();const I=this.snackBarConfig;this._live="assertive"!==I.politeness||I.announcementMessage?"off"===I.politeness?"off":"polite":"assertive",this._platform.FIREFOX&&("polite"===this._live&&(this._role="status"),"assertive"===this._live&&(this._role="alert"))}attachComponentPortal(I){this._assertNotAttached();const B=this._portalOutlet.attachComponentPortal(I);return this._afterPortalAttached(),B}attachTemplatePortal(I){this._assertNotAttached();const B=this._portalOutlet.attachTemplatePortal(I);return this._afterPortalAttached(),B}attachDomPortal=I=>{this._assertNotAttached();const B=this._portalOutlet.attachDomPortal(I);return this._afterPortalAttached(),B};onAnimationEnd(I){I===o?this._completeExit():I===n&&(clearTimeout(this._enterFallback),this._ngZone.run(()=>{this._onEnter.next(),this._onEnter.complete()}))}enter(){this._destroyed||(this._animationState="visible",this._changeDetectorRef.markForCheck(),this._changeDetectorRef.detectChanges(),this._screenReaderAnnounce(),this._animationsDisabled?(0,t.mal)(()=>{this._ngZone.run(()=>queueMicrotask(()=>this.onAnimationEnd(n)))},{injector:this._injector}):(clearTimeout(this._enterFallback),this._enterFallback=setTimeout(()=>{this._elementRef.nativeElement.classList.add("mat-snack-bar-fallback-visible"),this.onAnimationEnd(n)},200)))}exit(){return this._destroyed?(0,c.of)(void 0):(this._ngZone.run(()=>{this._animationState="hidden",this._changeDetectorRef.markForCheck(),this._elementRef.nativeElement.setAttribute("mat-exit",""),clearTimeout(this._announceTimeoutId),this._animationsDisabled?(0,t.mal)(()=>{this._ngZone.run(()=>queueMicrotask(()=>this.onAnimationEnd(o)))},{injector:this._injector}):(clearTimeout(this._exitFallback),this._exitFallback=setTimeout(()=>this.onAnimationEnd(o),200))}),this._onExit)}ngOnDestroy(){this._destroyed=!0,this._clearFromModals(),this._completeExit()}_completeExit(){clearTimeout(this._exitFallback),queueMicrotask(()=>{this._onExit.next(),this._onExit.complete()})}_afterPortalAttached(){const I=this._elementRef.nativeElement,B=this.snackBarConfig.panelClass;B&&(Array.isArray(B)?B.forEach(be=>I.classList.add(be)):I.classList.add(B)),this._exposeToModals();const re=this._label.nativeElement,pe="mdc-snackbar__label";re.classList.toggle(pe,!re.querySelector(`.${pe}`))}_exposeToModals(){const I=this._liveElementId,B=this._document.querySelectorAll('body > .cdk-overlay-container [aria-modal="true"]');for(let re=0;re{const B=I.getAttribute("aria-owns");if(B){const re=B.replace(this._liveElementId,"").trim();re.length>0?I.setAttribute("aria-owns",re):I.removeAttribute("aria-owns")}}),this._trackedModals.clear()}_assertNotAttached(){this._portalOutlet.hasAttached()}_screenReaderAnnounce(){this._announceTimeoutId||this._ngZone.runOutsideAngular(()=>{this._announceTimeoutId=setTimeout(()=>{if(this._destroyed)return;const I=this._elementRef.nativeElement,B=I.querySelector("[aria-hidden]"),re=I.querySelector("[aria-live]");if(B&&re){let pe=null;this._platform.isBrowser&&document.activeElement instanceof HTMLElement&&B.contains(document.activeElement)&&(pe=document.activeElement),B.removeAttribute("aria-hidden"),re.appendChild(B),pe?.focus(),this._onAnnounce.next(),this._onAnnounce.complete()}},this._announceDelay)})}static \u0275fac=function(B){return new(B||_)};static \u0275cmp=t.VBU({type:_,selectors:[["mat-snack-bar-container"]],viewQuery:function(B,re){if(1&B&&(t.GBs(w.I3,7),t.GBs(G,7)),2&B){let pe;t.mGM(pe=t.lsd())&&(re._portalOutlet=pe.first),t.mGM(pe=t.lsd())&&(re._label=pe.first)}},hostAttrs:[1,"mdc-snackbar","mat-mdc-snack-bar-container"],hostVars:6,hostBindings:function(B,re){1&B&&t.bIt("animationend",function(be){return re.onAnimationEnd(be.animationName)})("animationcancel",function(be){return re.onAnimationEnd(be.animationName)}),2&B&&t.AVh("mat-snack-bar-container-enter","visible"===re._animationState)("mat-snack-bar-container-exit","hidden"===re._animationState)("mat-snack-bar-container-animations-enabled",!re._animationsDisabled)},features:[t.Vt3],decls:6,vars:3,consts:[["label",""],[1,"mdc-snackbar__surface","mat-mdc-snackbar-surface"],[1,"mat-mdc-snack-bar-label"],["aria-hidden","true"],["cdkPortalOutlet",""]],template:function(B,re){1&B&&(t.j41(0,"div",1)(1,"div",2,0)(3,"div",3),t.DNE(4,Q,0,0,"ng-template",4),t.k0s(),t.nrm(5,"div"),t.k0s()()),2&B&&(t.R7$(5),t.BMQ("aria-live",re._live)("role",re._role)("id",re._liveElementId))},dependencies:[w.I3],styles:["@keyframes _mat-snack-bar-enter{from{transform:scale(0.8);opacity:0}to{transform:scale(1);opacity:1}}@keyframes _mat-snack-bar-exit{from{opacity:1}to{opacity:0}}.mat-mdc-snack-bar-container{display:flex;align-items:center;justify-content:center;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:8px}.mat-mdc-snack-bar-handset .mat-mdc-snack-bar-container{width:100vw}.mat-snack-bar-container-animations-enabled{opacity:0}.mat-snack-bar-container-animations-enabled.mat-snack-bar-fallback-visible{opacity:1}.mat-snack-bar-container-animations-enabled.mat-snack-bar-container-enter{animation:_mat-snack-bar-enter 150ms cubic-bezier(0, 0, 0.2, 1) forwards}.mat-snack-bar-container-animations-enabled.mat-snack-bar-container-exit{animation:_mat-snack-bar-exit 75ms cubic-bezier(0.4, 0, 1, 1) forwards}.mat-mdc-snackbar-surface{box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;padding-left:0;padding-right:8px}[dir=rtl] .mat-mdc-snackbar-surface{padding-right:0;padding-left:8px}.mat-mdc-snack-bar-container .mat-mdc-snackbar-surface{min-width:344px;max-width:672px}.mat-mdc-snack-bar-handset .mat-mdc-snackbar-surface{width:100%;min-width:0}@media(forced-colors: active){.mat-mdc-snackbar-surface{outline:solid 1px}}.mat-mdc-snack-bar-container .mat-mdc-snackbar-surface{color:var(--mat-snack-bar-supporting-text-color, var(--mat-sys-inverse-on-surface));border-radius:var(--mat-snack-bar-container-shape, var(--mat-sys-corner-extra-small));background-color:var(--mat-snack-bar-container-color, var(--mat-sys-inverse-surface))}.mdc-snackbar__label{width:100%;flex-grow:1;box-sizing:border-box;margin:0;padding:14px 8px 14px 16px}[dir=rtl] .mdc-snackbar__label{padding-left:8px;padding-right:16px}.mat-mdc-snack-bar-container .mdc-snackbar__label{font-family:var(--mat-snack-bar-supporting-text-font, var(--mat-sys-body-medium-font));font-size:var(--mat-snack-bar-supporting-text-size, var(--mat-sys-body-medium-size));font-weight:var(--mat-snack-bar-supporting-text-weight, var(--mat-sys-body-medium-weight));line-height:var(--mat-snack-bar-supporting-text-line-height, var(--mat-sys-body-medium-line-height))}.mat-mdc-snack-bar-actions{display:flex;flex-shrink:0;align-items:center;box-sizing:border-box}.mat-mdc-snack-bar-handset,.mat-mdc-snack-bar-container,.mat-mdc-snack-bar-label{flex:1 1 auto}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled){--mat-button-text-state-layer-color: currentColor;--mat-button-text-ripple-color: currentColor}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled).mat-unthemed{color:var(--mat-snack-bar-button-color, var(--mat-sys-inverse-primary))}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled) .mat-ripple-element{opacity:.1}\n"],encapsulation:2})}return _})();const b=new i.nKC("mat-snack-bar-default-options",{providedIn:"root",factory:function h(){return new oe}});let A=(()=>{class _{_live=(0,i.WQX)(T.Ai);_injector=(0,i.WQX)(i.zZn);_breakpointObserver=(0,i.WQX)(P.Q);_parentSnackBar=(0,i.WQX)(_,{optional:!0,skipSelf:!0});_defaultConfig=(0,i.WQX)(b);_animationsDisabled=(0,m.Rc)();_snackBarRefAtThisLevel=null;simpleSnackBarComponent=D;snackBarContainerComponent=f;handsetCssClass="mat-mdc-snack-bar-handset";get _openedSnackBarRef(){const I=this._parentSnackBar;return I?I._openedSnackBarRef:this._snackBarRefAtThisLevel}set _openedSnackBarRef(I){this._parentSnackBar?this._parentSnackBar._openedSnackBarRef=I:this._snackBarRefAtThisLevel=I}constructor(){}openFromComponent(I,B){return this._attach(I,B)}openFromTemplate(I,B){return this._attach(I,B)}open(I,B="",re){const pe={...this._defaultConfig,...re};return pe.data={message:I,action:B},pe.announcementMessage===I&&(pe.announcementMessage=void 0),this.openFromComponent(this.simpleSnackBarComponent,pe)}dismiss(){this._openedSnackBarRef&&this._openedSnackBarRef.dismiss()}ngOnDestroy(){this._snackBarRefAtThisLevel&&this._snackBarRefAtThisLevel.dismiss()}_attachSnackBarContainer(I,B){const pe=i.zZn.create({parent:B&&B.viewContainerRef&&B.viewContainerRef.injector||this._injector,providers:[{provide:oe,useValue:B}]}),be=new w.A8(this.snackBarContainerComponent,B.viewContainerRef,pe),Be=I.attach(be);return Be.instance.snackBarConfig=B,Be.instance}_attach(I,B){const re={...new oe,...this._defaultConfig,...B},pe=this._createOverlay(re),be=this._attachSnackBarContainer(pe,re),Be=new ae(be,pe);if(I instanceof t.C4Q){const _e=new w.VA(I,null,{$implicit:re.data,snackBarRef:Be});Be.instance=be.attachTemplatePortal(_e)}else{const _e=this._createInjector(re,Be),ye=new w.A8(I,void 0,_e),Le=be.attachComponentPortal(ye);Be.instance=Le.instance}return this._breakpointObserver.observe(M.Rp.HandsetPortrait).pipe((0,U.Q)(pe.detachments())).subscribe(_e=>{pe.overlayElement.classList.toggle(this.handsetCssClass,_e.matches)}),re.announcementMessage&&be._onAnnounce.subscribe(()=>{this._live.announce(re.announcementMessage,re.politeness)}),this._animateSnackBar(Be,re),this._openedSnackBarRef=Be,this._openedSnackBarRef}_animateSnackBar(I,B){I.afterDismissed().subscribe(()=>{this._openedSnackBarRef==I&&(this._openedSnackBarRef=null),B.announcementMessage&&this._live.clear()}),B.duration&&B.duration>0&&I.afterOpened().subscribe(()=>I._dismissAfter(B.duration)),this._openedSnackBarRef?(this._openedSnackBarRef.afterDismissed().subscribe(()=>{I.containerInstance.enter()}),this._openedSnackBarRef.dismiss()):I.containerInstance.enter()}_createOverlay(I){const B=new j.rR;B.direction=I.direction;const re=(0,j.uA)(this._injector),pe="rtl"===I.direction,be="left"===I.horizontalPosition||"start"===I.horizontalPosition&&!pe||"end"===I.horizontalPosition&&pe,Be=!be&&"center"!==I.horizontalPosition;return be?re.left("0"):Be?re.right("0"):re.centerHorizontally(),"top"===I.verticalPosition?re.top("0"):re.bottom("0"),B.positionStrategy=re,B.disableAnimations=this._animationsDisabled,(0,j.Y$)(this._injector,B)}_createInjector(I,B){return i.zZn.create({parent:I&&I.viewContainerRef&&I.viewContainerRef.injector||this._injector,providers:[{provide:ae,useValue:B},{provide:ue,useValue:I.data}]})}static \u0275fac=function(B){return new(B||_)};static \u0275prov=i.jDH({token:_,factory:_.\u0275fac,providedIn:"root"})}return _})(),x=(()=>{class _{static \u0275fac=function(B){return new(B||_)};static \u0275mod=t.$C({type:_});static \u0275inj=i.G2t({providers:[A],imports:[j.z_,w.jc,e.Hl,K.y,D,K.y]})}return _})()},95428:(Ae,ee,l)=>{"use strict";l.d(ee,{$6:()=>Be,$Q:()=>P,As:()=>B,CK:()=>A,Do:()=>be,Dq:()=>Le,Fd:()=>_,Gy:()=>$,Hh:()=>S,Hm:()=>r,I6:()=>U,Jx:()=>ye,Lc:()=>me,Lz:()=>re,N4:()=>W,N8:()=>G,NS:()=>e,Qj:()=>ae,Sn:()=>T,T4:()=>x,Tp:()=>M,Uj:()=>k,Uo:()=>m,XT:()=>D,Xx:()=>q,Yi:()=>ge,ZE:()=>Q,Zi:()=>Te,cR:()=>b,cU:()=>j,fy:()=>f,gZ:()=>Oe,iO:()=>_e,jJ:()=>K,lg:()=>c,mh:()=>I,sq:()=>ue,uL:()=>p,vL:()=>o,w0:()=>h,x1:()=>d,yn:()=>Ee,yp:()=>w,zR:()=>g,zU:()=>Ke});var i=l(59640),t=l(4416);const p=(0,i.VP)(t.Uu.UPDATE_API_CALL_STATUS_ECL,(0,i.xk)()),S=(0,i.VP)(t.Uu.RESET_ECL_STORE),c=(0,i.VP)(t.Uu.FETCH_PAGE_SETTINGS_ECL),e=(0,i.VP)(t.Uu.SET_PAGE_SETTINGS_ECL,(0,i.xk)()),T=(0,i.VP)(t.Uu.SAVE_PAGE_SETTINGS_ECL,(0,i.xk)()),g=(0,i.VP)(t.Uu.FETCH_INFO_ECL,(0,i.xk)()),d=(0,i.VP)(t.Uu.SET_INFO_ECL,(0,i.xk)()),w=(0,i.VP)(t.Uu.FETCH_FEES_ECL),m=(0,i.VP)(t.Uu.SET_FEES_ECL,(0,i.xk)()),P=(0,i.VP)(t.Uu.FETCH_CHANNELS_ECL),M=(0,i.VP)(t.Uu.SET_ACTIVE_CHANNELS_ECL,(0,i.xk)()),j=(0,i.VP)(t.Uu.SET_PENDING_CHANNELS_ECL,(0,i.xk)()),U=(0,i.VP)(t.Uu.SET_INACTIVE_CHANNELS_ECL,(0,i.xk)()),K=(0,i.VP)(t.Uu.FETCH_ONCHAIN_BALANCE_ECL),q=(0,i.VP)(t.Uu.SET_ONCHAIN_BALANCE_ECL,(0,i.xk)()),G=(0,i.VP)(t.Uu.SET_LIGHTNING_BALANCE_ECL,(0,i.xk)()),Q=(0,i.VP)(t.Uu.SET_CHANNELS_STATUS_ECL,(0,i.xk)()),$=(0,i.VP)(t.Uu.FETCH_PEERS_ECL),ae=(0,i.VP)(t.Uu.SET_PEERS_ECL,(0,i.xk)()),ue=(0,i.VP)(t.Uu.SAVE_NEW_PEER_ECL,(0,i.xk)()),me=((0,i.VP)(t.Uu.NEWLY_ADDED_PEER_ECL,(0,i.xk)()),(0,i.VP)(t.Uu.ADD_PEER_ECL,(0,i.xk)()),(0,i.VP)(t.Uu.DETACH_PEER_ECL,(0,i.xk)())),Te=(0,i.VP)(t.Uu.REMOVE_PEER_ECL,(0,i.xk)()),D=(0,i.VP)(t.Uu.GET_NEW_ADDRESS_ECL),o=((0,i.VP)(t.Uu.SET_NEW_ADDRESS_ECL,(0,i.xk)()),(0,i.VP)(t.Uu.SAVE_NEW_CHANNEL_ECL,(0,i.xk)())),f=(0,i.VP)(t.Uu.UPDATE_CHANNEL_ECL,(0,i.xk)()),h=(0,i.VP)(t.Uu.CLOSE_CHANNEL_ECL,(0,i.xk)()),b=(0,i.VP)(t.Uu.REMOVE_CHANNEL_ECL,(0,i.xk)()),A=(0,i.VP)(t.Uu.FETCH_PAYMENTS_ECL,(0,i.xk)()),k=(0,i.VP)(t.Uu.SET_PAYMENTS_ECL,(0,i.xk)()),x=(0,i.VP)(t.Uu.GET_QUERY_ROUTES_ECL,(0,i.xk)()),r=(0,i.VP)(t.Uu.SET_QUERY_ROUTES_ECL,(0,i.xk)()),_=(0,i.VP)(t.Uu.SEND_PAYMENT_ECL,(0,i.xk)()),W=(0,i.VP)(t.Uu.SEND_PAYMENT_STATUS_ECL,(0,i.xk)()),I=(0,i.VP)(t.Uu.FETCH_TRANSACTIONS_ECL,(0,i.xk)()),B=(0,i.VP)(t.Uu.SET_TRANSACTIONS_ECL,(0,i.xk)()),re=(0,i.VP)(t.Uu.SEND_ONCHAIN_FUNDS_ECL,(0,i.xk)()),be=((0,i.VP)(t.Uu.SEND_ONCHAIN_FUNDS_RES_ECL,(0,i.xk)()),(0,i.VP)(t.Uu.FETCH_INVOICES_ECL,(0,i.xk)())),Be=(0,i.VP)(t.Uu.SET_INVOICES_ECL,(0,i.xk)()),_e=(0,i.VP)(t.Uu.CREATE_INVOICE_ECL,(0,i.xk)()),ye=(0,i.VP)(t.Uu.ADD_INVOICE_ECL,(0,i.xk)()),Le=(0,i.VP)(t.Uu.UPDATE_INVOICE_ECL,(0,i.xk)()),Ke=(0,i.VP)(t.Uu.PEER_LOOKUP_ECL,(0,i.xk)()),ge=(0,i.VP)(t.Uu.INVOICE_LOOKUP_ECL,(0,i.xk)()),Oe=((0,i.VP)(t.Uu.SET_LOOKUP_ECL,(0,i.xk)()),(0,i.VP)(t.Uu.UPDATE_CHANNEL_STATE_ECL,(0,i.xk)())),Ee=(0,i.VP)(t.Uu.UPDATE_RELAYED_PAYMENT_ECL,(0,i.xk)())},95542:(Ae,ee,l)=>{"use strict";var t=l(68283).rotr32;function S(m,P,M){return m&P^~m&M}function c(m,P,M){return m&P^m&M^P&M}function e(m,P,M){return m^P^M}ee.ft_1=function p(m,P,M,j){return 0===m?S(P,M,j):1===m||3===m?e(P,M,j):2===m?c(P,M,j):void 0},ee.ch32=S,ee.maj32=c,ee.p32=e,ee.s0_256=function T(m){return t(m,2)^t(m,13)^t(m,22)},ee.s1_256=function g(m){return t(m,6)^t(m,11)^t(m,25)},ee.g0_256=function d(m){return t(m,7)^t(m,18)^m>>>3},ee.g1_256=function w(m){return t(m,17)^t(m,19)^m>>>10}},95725:Ae=>{Ae.exports=function ee(l){for(var t,i=l.length;i--;){if(255!==(t=l.readUInt8(i))){t++,l.writeUInt8(t,i);break}l.writeUInt8(0,i)}}},95731:(Ae,ee,l)=>{"use strict";var i=l(65992),t=l(79477),p=l(59705),S=l(52910);Ae.exports=S||i.call(p,t)},95735:(Ae,ee,l)=>{"use strict";function i(p){return 0===p.buttons||0===p.detail}function t(p){const S=p.touches&&p.touches[0]||p.changedTouches&&p.changedTouches[0];return!(!S||-1!==S.identifier||null!=S.radiusX&&1!==S.radiusX||null!=S.radiusY&&1!==S.radiusY)}l.d(ee,{_:()=>i,w:()=>t})},96183:(Ae,ee,l)=>{"use strict";l.d(ee,{$2:()=>Ee,JO:()=>Le,VO:()=>Oe,Ve:()=>dt});var i=l(49338),t=l(2615),p=l(73664),S=l(17705),c=l(5718),e=l(17094),T=l(89726),g=l(18617),d=l(99090),w=l(61577),m=l(83869),P=l(10438),M=l(67336),j=l(89417),U=l(21413),K=l(59030),q=l(57786),G=l(5964),Q=l(96354),$=l(99172),ae=l(25558),ue=l(96697),oe=l(56977),he=l(72200),me=l(69588),Te=l(31804),D=l(23029),n=l(2709),o=l(39336),f=l(40146),h=l(22466),b=l(71228);const A=["trigger"],k=["panel"],x=[[["mat-select-trigger"]],"*"],r=["mat-select-trigger","*"];function _(nt,Ct){if(1&nt&&(p.j41(0,"span",4),p.EFF(1),p.k0s()),2&nt){const Mt=p.XpG();p.R7$(),p.JRh(Mt.placeholder)}}function W(nt,Ct){1&nt&&p.SdG(0)}function I(nt,Ct){if(1&nt&&(p.j41(0,"span",11),p.EFF(1),p.k0s()),2&nt){const Mt=p.XpG(2);p.R7$(),p.JRh(Mt.triggerValue)}}function B(nt,Ct){if(1&nt&&(p.j41(0,"span",5),p.nVh(1,W,1,0)(2,I,2,1,"span",11),p.k0s()),2&nt){const Mt=p.XpG();p.R7$(),p.vxM(Mt.customTrigger?1:2)}}function re(nt,Ct){if(1&nt){const Mt=p.RV6();p.j41(0,"div",12,1),p.bIt("keydown",function(Pe){t.eBV(Mt);const Ht=p.XpG();return t.Njj(Ht._handleKeydown(Pe))}),p.SdG(2,1),p.k0s()}if(2&nt){const Mt=p.XpG();p.HbH(p.VkB("mat-mdc-select-panel mdc-menu-surface mdc-menu-surface--open ",Mt._getPanelTheme())),p.AVh("mat-select-panel-animations-enabled",!Mt._animationsDisabled),p.Y8G("ngClass",Mt.panelClass),p.BMQ("id",Mt.id+"-panel")("aria-multiselectable",Mt.multiple)("aria-label",Mt.ariaLabel||null)("aria-labelledby",Mt._getPanelAriaLabelledby())}}const _e=new t.nKC("mat-select-scroll-strategy",{providedIn:"root",factory:()=>{const nt=(0,t.WQX)(t.zZn);return()=>(0,i.RH)(nt)}}),Le=new t.nKC("MAT_SELECT_CONFIG"),Ke={provide:_e,deps:[],useFactory:function ye(nt){const Ct=(0,t.WQX)(t.zZn);return()=>(0,i.RH)(Ct)}},ge=new t.nKC("MatSelectTrigger");class ve{source;value;constructor(Ct,Mt){this.source=Ct,this.value=Mt}}let Oe=(()=>{class nt{_viewportRuler=(0,t.WQX)(c.Xj);_changeDetectorRef=(0,t.WQX)(S.gRc);_elementRef=(0,t.WQX)(p.aKT);_dir=(0,t.WQX)(w.dS,{optional:!0});_idGenerator=(0,t.WQX)(T.g);_renderer=(0,t.WQX)(p.sFG);_parentFormField=(0,t.WQX)(me.xb,{optional:!0});ngControl=(0,t.WQX)(j.vO,{self:!0,optional:!0});_liveAnnouncer=(0,t.WQX)(e.Ai);_defaultOptions=(0,t.WQX)(Le,{optional:!0});_animationsDisabled=(0,Te.Rc)();_initialized=new U.B;_cleanupDetach;options;optionGroups;customTrigger;_positions=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"},{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:"mat-mdc-select-panel-above"},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom",panelClass:"mat-mdc-select-panel-above"}];_scrollOptionIntoView(Mt){const lt=this.options.toArray()[Mt];if(lt){const Pe=this.panel.nativeElement,Ht=(0,D.jb)(Mt,this.options,this.optionGroups),ct=lt._getHostElement();Pe.scrollTop=0===Mt&&1===Ht?0:(0,D.TL)(ct.offsetTop,ct.offsetHeight,Pe.scrollTop,Pe.offsetHeight)}}_positioningSettled(){this._scrollOptionIntoView(this._keyManager.activeItemIndex||0)}_getChangeEvent(Mt){return new ve(this,Mt)}_scrollStrategyFactory=(0,t.WQX)(_e);_panelOpen=!1;_compareWith=(Mt,lt)=>Mt===lt;_uid=this._idGenerator.getId("mat-select-");_triggerAriaLabelledBy=null;_previousControl;_destroy=new U.B;_errorStateTracker;stateChanges=new U.B;disableAutomaticLabeling=!0;userAriaDescribedBy;_selectionModel;_keyManager;_preferredOverlayOrigin;_overlayWidth;_onChange=()=>{};_onTouched=()=>{};_valueId=this._idGenerator.getId("mat-select-value-");_scrollStrategy;_overlayPanelClass=this._defaultOptions?.overlayPanelClass||"";get focused(){return this._focused||this._panelOpen}_focused=!1;controlType="mat-select";trigger;panel;_overlayDir;panelClass;disabled=!1;get disableRipple(){return this._disableRipple()}set disableRipple(Mt){this._disableRipple.set(Mt)}_disableRipple=(0,t.vPA)(!1);tabIndex=0;get hideSingleSelectionIndicator(){return this._hideSingleSelectionIndicator}set hideSingleSelectionIndicator(Mt){this._hideSingleSelectionIndicator=Mt,this._syncParentProperties()}_hideSingleSelectionIndicator=this._defaultOptions?.hideSingleSelectionIndicator??!1;get placeholder(){return this._placeholder}set placeholder(Mt){this._placeholder=Mt,this.stateChanges.next()}_placeholder;get required(){return this._required??this.ngControl?.control?.hasValidator(j.k0.required)??!1}set required(Mt){this._required=Mt,this.stateChanges.next()}_required;get multiple(){return this._multiple}set multiple(Mt){this._multiple=Mt}_multiple=!1;disableOptionCentering=this._defaultOptions?.disableOptionCentering??!1;get compareWith(){return this._compareWith}set compareWith(Mt){this._compareWith=Mt,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(Mt){this._assignValue(Mt)&&this._onChange(Mt)}_value;ariaLabel="";ariaLabelledby;get errorStateMatcher(){return this._errorStateTracker.matcher}set errorStateMatcher(Mt){this._errorStateTracker.matcher=Mt}typeaheadDebounceInterval;sortComparator;get id(){return this._id}set id(Mt){this._id=Mt||this._uid,this.stateChanges.next()}_id;get errorState(){return this._errorStateTracker.errorState}set errorState(Mt){this._errorStateTracker.errorState=Mt}panelWidth=this._defaultOptions&&typeof this._defaultOptions.panelWidth<"u"?this._defaultOptions.panelWidth:"auto";canSelectNullableOptions=this._defaultOptions?.canSelectNullableOptions??!1;optionSelectionChanges=(0,K.v)(()=>{const Mt=this.options;return Mt?Mt.changes.pipe((0,$.Z)(Mt),(0,ae.n)(()=>(0,q.h)(...Mt.map(lt=>lt.onSelectionChange)))):this._initialized.pipe((0,ae.n)(()=>this.optionSelectionChanges))});openedChange=new p.bkB;_openedStream=this.openedChange.pipe((0,G.p)(Mt=>Mt),(0,Q.T)(()=>{}));_closedStream=this.openedChange.pipe((0,G.p)(Mt=>!Mt),(0,Q.T)(()=>{}));selectionChange=new p.bkB;valueChange=new p.bkB;constructor(){const Mt=(0,t.WQX)(n.e),lt=(0,t.WQX)(j.cV,{optional:!0}),Pe=(0,t.WQX)(j.j4,{optional:!0}),Ht=(0,t.WQX)(new S.ES_("tabindex"),{optional:!0});this.ngControl&&(this.ngControl.valueAccessor=this),null!=this._defaultOptions?.typeaheadDebounceInterval&&(this.typeaheadDebounceInterval=this._defaultOptions.typeaheadDebounceInterval),this._errorStateTracker=new o.X(Mt,this.ngControl,Pe,lt,this.stateChanges),this._scrollStrategy=this._scrollStrategyFactory(),this.tabIndex=null==Ht?0:parseInt(Ht)||0,this.id=this.id}ngOnInit(){this._selectionModel=new m.C(this.multiple),this.stateChanges.next(),this._viewportRuler.change().pipe((0,oe.Q)(this._destroy)).subscribe(()=>{this.panelOpen&&(this._overlayWidth=this._getOverlayWidth(this._preferredOverlayOrigin),this._changeDetectorRef.detectChanges())})}ngAfterContentInit(){this._initialized.next(),this._initialized.complete(),this._initKeyManager(),this._selectionModel.changed.pipe((0,oe.Q)(this._destroy)).subscribe(Mt=>{Mt.added.forEach(lt=>lt.select()),Mt.removed.forEach(lt=>lt.deselect())}),this.options.changes.pipe((0,$.Z)(null),(0,oe.Q)(this._destroy)).subscribe(()=>{this._resetOptions(),this._initializeSelection()})}ngDoCheck(){const Mt=this._getTriggerAriaLabelledby(),lt=this.ngControl;if(Mt!==this._triggerAriaLabelledBy){const Pe=this._elementRef.nativeElement;this._triggerAriaLabelledBy=Mt,Mt?Pe.setAttribute("aria-labelledby",Mt):Pe.removeAttribute("aria-labelledby")}lt&&(this._previousControl!==lt.control&&(void 0!==this._previousControl&&null!==lt.disabled&<.disabled!==this.disabled&&(this.disabled=lt.disabled),this._previousControl=lt.control),this.updateErrorState())}ngOnChanges(Mt){(Mt.disabled||Mt.userAriaDescribedBy)&&this.stateChanges.next(),Mt.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this.typeaheadDebounceInterval)}ngOnDestroy(){this._cleanupDetach?.(),this._keyManager?.destroy(),this._destroy.next(),this._destroy.complete(),this.stateChanges.complete(),this._clearFromModal()}toggle(){this.panelOpen?this.close():this.open()}open(){this._canOpen()&&(this._parentFormField&&(this._preferredOverlayOrigin=this._parentFormField.getConnectedOverlayOrigin()),this._cleanupDetach?.(),this._overlayWidth=this._getOverlayWidth(this._preferredOverlayOrigin),this._applyModalPanelOwnership(),this._panelOpen=!0,this._overlayDir.positionChange.pipe((0,ue.s)(1)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this._positioningSettled()}),this._overlayDir.attachOverlay(),this._keyManager.withHorizontalOrientation(null),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck(),this.stateChanges.next(),Promise.resolve().then(()=>this.openedChange.emit(!0)))}_trackedModal=null;_applyModalPanelOwnership(){const Mt=this._elementRef.nativeElement.closest('body > .cdk-overlay-container [aria-modal="true"]');if(!Mt)return;const lt=`${this.id}-panel`;this._trackedModal&&(0,g.Ae)(this._trackedModal,"aria-owns",lt),(0,g.px)(Mt,"aria-owns",lt),this._trackedModal=Mt}_clearFromModal(){this._trackedModal&&((0,g.Ae)(this._trackedModal,"aria-owns",`${this.id}-panel`),this._trackedModal=null)}close(){this._panelOpen&&(this._panelOpen=!1,this._exitAndDetach(),this._keyManager.withHorizontalOrientation(this._isRtl()?"rtl":"ltr"),this._changeDetectorRef.markForCheck(),this._onTouched(),this.stateChanges.next(),Promise.resolve().then(()=>this.openedChange.emit(!1)))}_exitAndDetach(){if(this._animationsDisabled||!this.panel)return void this._detachOverlay();this._cleanupDetach?.(),this._cleanupDetach=()=>{lt(),clearTimeout(Pe),this._cleanupDetach=void 0};const Mt=this.panel.nativeElement,lt=this._renderer.listen(Mt,"animationend",Ht=>{"_mat-select-exit"===Ht.animationName&&(this._cleanupDetach?.(),this._detachOverlay())}),Pe=setTimeout(()=>{this._cleanupDetach?.(),this._detachOverlay()},200);Mt.classList.add("mat-select-panel-exit")}_detachOverlay(){this._overlayDir.detachOverlay(),this._changeDetectorRef.markForCheck()}writeValue(Mt){this._assignValue(Mt)}registerOnChange(Mt){this._onChange=Mt}registerOnTouched(Mt){this._onTouched=Mt}setDisabledState(Mt){this.disabled=Mt,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}get panelOpen(){return this._panelOpen}get selected(){return this.multiple?this._selectionModel?.selected||[]:this._selectionModel?.selected[0]}get triggerValue(){if(this.empty)return"";if(this._multiple){const Mt=this._selectionModel.selected.map(lt=>lt.viewValue);return this._isRtl()&&Mt.reverse(),Mt.join(", ")}return this._selectionModel.selected[0].viewValue}updateErrorState(){this._errorStateTracker.updateErrorState()}_isRtl(){return!!this._dir&&"rtl"===this._dir.value}_handleKeydown(Mt){this.disabled||(this.panelOpen?this._handleOpenKeydown(Mt):this._handleClosedKeydown(Mt))}_handleClosedKeydown(Mt){const lt=Mt.keyCode,Pe=lt===P.n6||lt===P.i7||lt===P.UQ||lt===P.LE,Ht=lt===P.Fm||lt===P.t6,ct=this._keyManager;if(!ct.isTyping()&&Ht&&!(0,M.rp)(Mt)||(this.multiple||Mt.altKey)&&Pe)Mt.preventDefault(),this.open();else if(!this.multiple){const Ce=this.selected;ct.onKeydown(Mt);const ze=this.selected;ze&&Ce!==ze&&this._liveAnnouncer.announce(ze.viewValue,1e4)}}_handleOpenKeydown(Mt){const lt=this._keyManager,Pe=Mt.keyCode,Ht=Pe===P.n6||Pe===P.i7,ct=lt.isTyping();if(Ht&&Mt.altKey)Mt.preventDefault(),this.close();else if(ct||Pe!==P.Fm&&Pe!==P.t6||!lt.activeItem||(0,M.rp)(Mt))if(!ct&&this._multiple&&Pe===P.A&&Mt.ctrlKey){Mt.preventDefault();const Ce=this.options.some(ze=>!ze.disabled&&!ze.selected);this.options.forEach(ze=>{ze.disabled||(Ce?ze.select():ze.deselect())})}else{const Ce=lt.activeItemIndex;lt.onKeydown(Mt),this._multiple&&Ht&&Mt.shiftKey&<.activeItem&<.activeItemIndex!==Ce&<.activeItem._selectViaInteraction()}else Mt.preventDefault(),lt.activeItem._selectViaInteraction()}_handleOverlayKeydown(Mt){Mt.keyCode===P._f&&!(0,M.rp)(Mt)&&(Mt.preventDefault(),this.close())}_onFocus(){this.disabled||(this._focused=!0,this.stateChanges.next())}_onBlur(){this._focused=!1,this._keyManager?.cancelTypeahead(),!this.disabled&&!this.panelOpen&&(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_getPanelTheme(){return this._parentFormField?`mat-${this._parentFormField.color}`:""}get empty(){return!this._selectionModel||this._selectionModel.isEmpty()}_initializeSelection(){Promise.resolve().then(()=>{this.ngControl&&(this._value=this.ngControl.value),this._setSelectionByValue(this._value),this.stateChanges.next()})}_setSelectionByValue(Mt){if(this.options.forEach(lt=>lt.setInactiveStyles()),this._selectionModel.clear(),this.multiple&&Mt)Array.isArray(Mt),Mt.forEach(lt=>this._selectOptionByValue(lt)),this._sortValues();else{const lt=this._selectOptionByValue(Mt);lt?this._keyManager.updateActiveItem(lt):this.panelOpen||this._keyManager.updateActiveItem(-1)}this._changeDetectorRef.markForCheck()}_selectOptionByValue(Mt){const lt=this.options.find(Pe=>{if(this._selectionModel.isSelected(Pe))return!1;try{return(null!=Pe.value||this.canSelectNullableOptions)&&this._compareWith(Pe.value,Mt)}catch{return!1}});return lt&&this._selectionModel.select(lt),lt}_assignValue(Mt){return!!(Mt!==this._value||this._multiple&&Array.isArray(Mt))&&(this.options&&this._setSelectionByValue(Mt),this._value=Mt,!0)}_skipPredicate=Mt=>!this.panelOpen&&Mt.disabled;_getOverlayWidth(Mt){return"auto"===this.panelWidth?(Mt instanceof i.$Q?Mt.elementRef:Mt||this._elementRef).nativeElement.getBoundingClientRect().width:null===this.panelWidth?"":this.panelWidth}_syncParentProperties(){if(this.options)for(const Mt of this.options)Mt._changeDetectorRef.markForCheck()}_initKeyManager(){this._keyManager=new d.A(this.options).withTypeAhead(this.typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?"rtl":"ltr").withHomeAndEnd().withPageUpDown().withAllowedModifierKeys(["shiftKey"]).skipPredicate(this._skipPredicate),this._keyManager.tabOut.subscribe(()=>{this.panelOpen&&(!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction(),this.focus(),this.close())}),this._keyManager.change.subscribe(()=>{this._panelOpen&&this.panel?this._scrollOptionIntoView(this._keyManager.activeItemIndex||0):!this._panelOpen&&!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction()})}_resetOptions(){const Mt=(0,q.h)(this.options.changes,this._destroy);this.optionSelectionChanges.pipe((0,oe.Q)(Mt)).subscribe(lt=>{this._onSelect(lt.source,lt.isUserInput),lt.isUserInput&&!this.multiple&&this._panelOpen&&(this.close(),this.focus())}),(0,q.h)(...this.options.map(lt=>lt._stateChanges)).pipe((0,oe.Q)(Mt)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this.stateChanges.next()})}_onSelect(Mt,lt){const Pe=this._selectionModel.isSelected(Mt);this.canSelectNullableOptions||null!=Mt.value||this._multiple?(Pe!==Mt.selected&&(Mt.selected?this._selectionModel.select(Mt):this._selectionModel.deselect(Mt)),lt&&this._keyManager.setActiveItem(Mt),this.multiple&&(this._sortValues(),lt&&this.focus())):(Mt.deselect(),this._selectionModel.clear(),null!=this.value&&this._propagateChanges(Mt.value)),Pe!==this._selectionModel.isSelected(Mt)&&this._propagateChanges(),this.stateChanges.next()}_sortValues(){if(this.multiple){const Mt=this.options.toArray();this._selectionModel.sort((lt,Pe)=>this.sortComparator?this.sortComparator(lt,Pe,Mt):Mt.indexOf(lt)-Mt.indexOf(Pe)),this.stateChanges.next()}}_propagateChanges(Mt){let lt;lt=this.multiple?this.selected.map(Pe=>Pe.value):this.selected?this.selected.value:Mt,this._value=lt,this.valueChange.emit(lt),this._onChange(lt),this.selectionChange.emit(this._getChangeEvent(lt)),this._changeDetectorRef.markForCheck()}_highlightCorrectOption(){if(this._keyManager)if(this.empty){let Mt=-1;for(let lt=0;lt0&&!!this._overlayDir}focus(Mt){this._elementRef.nativeElement.focus(Mt)}_getPanelAriaLabelledby(){if(this.ariaLabel)return null;const Mt=this._parentFormField?.getLabelId()||null;return this.ariaLabelledby?(Mt?Mt+" ":"")+this.ariaLabelledby:Mt}_getAriaActiveDescendant(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}_getTriggerAriaLabelledby(){if(this.ariaLabel)return null;let Mt=this._parentFormField?.getLabelId()||"";return this.ariaLabelledby&&(Mt+=" "+this.ariaLabelledby),Mt||(Mt=this._valueId),Mt}get describedByIds(){return this._elementRef.nativeElement.getAttribute("aria-describedby")?.split(" ")||[]}setDescribedByIds(Mt){Mt.length?this._elementRef.nativeElement.setAttribute("aria-describedby",Mt.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focus(),this.open()}get shouldLabelFloat(){return this.panelOpen||!this.empty||this.focused&&!!this.placeholder}static \u0275fac=function(lt){return new(lt||nt)};static \u0275cmp=p.VBU({type:nt,selectors:[["mat-select"]],contentQueries:function(lt,Pe,Ht){if(1<&&(p.wni(Ht,ge,5),p.wni(Ht,D.wT,5),p.wni(Ht,D.QC,5)),2<){let ct;p.mGM(ct=p.lsd())&&(Pe.customTrigger=ct.first),p.mGM(ct=p.lsd())&&(Pe.options=ct),p.mGM(ct=p.lsd())&&(Pe.optionGroups=ct)}},viewQuery:function(lt,Pe){if(1<&&(p.GBs(A,5),p.GBs(k,5),p.GBs(i.WB,5)),2<){let Ht;p.mGM(Ht=p.lsd())&&(Pe.trigger=Ht.first),p.mGM(Ht=p.lsd())&&(Pe.panel=Ht.first),p.mGM(Ht=p.lsd())&&(Pe._overlayDir=Ht.first)}},hostAttrs:["role","combobox","aria-haspopup","listbox",1,"mat-mdc-select"],hostVars:21,hostBindings:function(lt,Pe){1<&&p.bIt("keydown",function(ct){return Pe._handleKeydown(ct)})("focus",function(){return Pe._onFocus()})("blur",function(){return Pe._onBlur()}),2<&&(p.BMQ("id",Pe.id)("tabindex",Pe.disabled?-1:Pe.tabIndex)("aria-controls",Pe.panelOpen?Pe.id+"-panel":null)("aria-expanded",Pe.panelOpen)("aria-label",Pe.ariaLabel||null)("aria-required",Pe.required.toString())("aria-disabled",Pe.disabled.toString())("aria-invalid",Pe.errorState)("aria-activedescendant",Pe._getAriaActiveDescendant()),p.AVh("mat-mdc-select-disabled",Pe.disabled)("mat-mdc-select-invalid",Pe.errorState)("mat-mdc-select-required",Pe.required)("mat-mdc-select-empty",Pe.empty)("mat-mdc-select-multiple",Pe.multiple)("mat-select-open",Pe.panelOpen))},inputs:{userAriaDescribedBy:[0,"aria-describedby","userAriaDescribedBy"],panelClass:"panelClass",disabled:[2,"disabled","disabled",S.L39],disableRipple:[2,"disableRipple","disableRipple",S.L39],tabIndex:[2,"tabIndex","tabIndex",Mt=>null==Mt?0:(0,S.Udg)(Mt)],hideSingleSelectionIndicator:[2,"hideSingleSelectionIndicator","hideSingleSelectionIndicator",S.L39],placeholder:"placeholder",required:[2,"required","required",S.L39],multiple:[2,"multiple","multiple",S.L39],disableOptionCentering:[2,"disableOptionCentering","disableOptionCentering",S.L39],compareWith:"compareWith",value:"value",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],errorStateMatcher:"errorStateMatcher",typeaheadDebounceInterval:[2,"typeaheadDebounceInterval","typeaheadDebounceInterval",S.Udg],sortComparator:"sortComparator",id:"id",panelWidth:"panelWidth",canSelectNullableOptions:[2,"canSelectNullableOptions","canSelectNullableOptions",S.L39]},outputs:{openedChange:"openedChange",_openedStream:"opened",_closedStream:"closed",selectionChange:"selectionChange",valueChange:"valueChange"},exportAs:["matSelect"],features:[p.Jv_([{provide:me.qT,useExisting:nt},{provide:D.is,useExisting:nt}]),p.OA$],ngContentSelectors:r,decls:11,vars:9,consts:[["fallbackOverlayOrigin","cdkOverlayOrigin","trigger",""],["panel",""],["cdk-overlay-origin","",1,"mat-mdc-select-trigger",3,"click"],[1,"mat-mdc-select-value"],[1,"mat-mdc-select-placeholder","mat-mdc-select-min-line"],[1,"mat-mdc-select-value-text"],[1,"mat-mdc-select-arrow-wrapper"],[1,"mat-mdc-select-arrow"],["viewBox","0 0 24 24","width","24px","height","24px","focusable","false","aria-hidden","true"],["d","M7 10l5 5 5-5z"],["cdk-connected-overlay","","cdkConnectedOverlayLockPosition","","cdkConnectedOverlayHasBackdrop","","cdkConnectedOverlayBackdropClass","cdk-overlay-transparent-backdrop",3,"detach","backdropClick","overlayKeydown","cdkConnectedOverlayDisableClose","cdkConnectedOverlayPanelClass","cdkConnectedOverlayScrollStrategy","cdkConnectedOverlayOrigin","cdkConnectedOverlayPositions","cdkConnectedOverlayWidth","cdkConnectedOverlayFlexibleDimensions"],[1,"mat-mdc-select-min-line"],["role","listbox","tabindex","-1",3,"keydown","ngClass"]],template:function(lt,Pe){if(1<){const Ht=p.RV6();p.NAR(x),p.j41(0,"div",2,0),p.bIt("click",function(){return t.eBV(Ht),t.Njj(Pe.open())}),p.j41(3,"div",3),p.nVh(4,_,2,1,"span",4)(5,B,3,1,"span",5),p.k0s(),p.j41(6,"div",6)(7,"div",7),t.qSk(),p.j41(8,"svg",8),p.nrm(9,"path",9),p.k0s()()()(),p.DNE(10,re,3,10,"ng-template",10),p.bIt("detach",function(){return t.eBV(Ht),t.Njj(Pe.close())})("backdropClick",function(){return t.eBV(Ht),t.Njj(Pe.close())})("overlayKeydown",function(Ce){return t.eBV(Ht),t.Njj(Pe._handleOverlayKeydown(Ce))})}if(2<){const Ht=p.sdS(1);p.R7$(3),p.BMQ("id",Pe._valueId),p.R7$(),p.vxM(Pe.empty?4:5),p.R7$(6),p.Y8G("cdkConnectedOverlayDisableClose",!0)("cdkConnectedOverlayPanelClass",Pe._overlayPanelClass)("cdkConnectedOverlayScrollStrategy",Pe._scrollStrategy)("cdkConnectedOverlayOrigin",Pe._preferredOverlayOrigin||Ht)("cdkConnectedOverlayPositions",Pe._positions)("cdkConnectedOverlayWidth",Pe._overlayWidth)("cdkConnectedOverlayFlexibleDimensions",!0)}},dependencies:[i.$Q,i.WB,he.YU],styles:['@keyframes _mat-select-enter{from{opacity:0;transform:scaleY(0.8)}to{opacity:1;transform:none}}@keyframes _mat-select-exit{from{opacity:1}to{opacity:0}}.mat-mdc-select{display:inline-block;width:100%;outline:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--mat-select-enabled-trigger-text-color, var(--mat-sys-on-surface));font-family:var(--mat-select-trigger-text-font, var(--mat-sys-body-large-font));line-height:var(--mat-select-trigger-text-line-height, var(--mat-sys-body-large-line-height));font-size:var(--mat-select-trigger-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-select-trigger-text-weight, var(--mat-sys-body-large-weight));letter-spacing:var(--mat-select-trigger-text-tracking, var(--mat-sys-body-large-tracking))}div.mat-mdc-select-panel{box-shadow:var(--mat-select-container-elevation-shadow, 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12))}.mat-mdc-select-disabled{color:var(--mat-select-disabled-trigger-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-select-disabled .mat-mdc-select-placeholder{color:var(--mat-select-disabled-trigger-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-select-trigger{display:inline-flex;align-items:center;cursor:pointer;position:relative;box-sizing:border-box;width:100%}.mat-mdc-select-disabled .mat-mdc-select-trigger{-webkit-user-select:none;user-select:none;cursor:default}.mat-mdc-select-value{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-mdc-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-mdc-select-arrow-wrapper{height:24px;flex-shrink:0;display:inline-flex;align-items:center}.mat-form-field-appearance-fill .mdc-text-field--no-label .mat-mdc-select-arrow-wrapper{transform:none}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-invalid .mat-mdc-select-arrow,.mat-form-field-invalid:not(.mat-form-field-disabled) .mat-mdc-form-field-infix::after{color:var(--mat-select-invalid-arrow-color, var(--mat-sys-error))}.mat-mdc-select-arrow{width:10px;height:5px;position:relative;color:var(--mat-select-enabled-arrow-color, var(--mat-sys-on-surface-variant))}.mat-mdc-form-field.mat-focused .mat-mdc-select-arrow{color:var(--mat-select-focused-arrow-color, var(--mat-sys-primary))}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-disabled .mat-mdc-select-arrow{color:var(--mat-select-disabled-arrow-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-select-open .mat-mdc-select-arrow{transform:rotate(180deg)}.mat-form-field-animations-enabled .mat-mdc-select-arrow{transition:transform 80ms linear}.mat-mdc-select-arrow svg{fill:currentColor;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}@media(forced-colors: active){.mat-mdc-select-arrow svg{fill:CanvasText}.mat-mdc-select-disabled .mat-mdc-select-arrow svg{fill:GrayText}}div.mat-mdc-select-panel{width:100%;max-height:275px;outline:0;overflow:auto;padding:8px 0;border-radius:4px;box-sizing:border-box;position:relative;background-color:var(--mat-select-panel-background-color, var(--mat-sys-surface-container))}@media(forced-colors: active){div.mat-mdc-select-panel{outline:solid 1px}}.cdk-overlay-pane:not(.mat-mdc-select-panel-above) div.mat-mdc-select-panel{border-top-left-radius:0;border-top-right-radius:0;transform-origin:top center}.mat-mdc-select-panel-above div.mat-mdc-select-panel{border-bottom-left-radius:0;border-bottom-right-radius:0;transform-origin:bottom center}.mat-select-panel-animations-enabled{animation:_mat-select-enter 120ms cubic-bezier(0, 0, 0.2, 1)}.mat-select-panel-animations-enabled.mat-select-panel-exit{animation:_mat-select-exit 100ms linear}.mat-mdc-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1);color:var(--mat-select-placeholder-text-color, var(--mat-sys-on-surface-variant))}.mat-mdc-form-field:not(.mat-form-field-animations-enabled) .mat-mdc-select-placeholder,._mat-animation-noopable .mat-mdc-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-mdc-select-placeholder{color:rgba(0,0,0,0);-webkit-text-fill-color:rgba(0,0,0,0);transition:none;display:block}.mat-mdc-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-mdc-text-field-wrapper{cursor:pointer}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mat-mdc-floating-label{max-width:calc(100% - 18px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 24px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-text-field--label-floating .mdc-notched-outline__notch{max-width:calc(100% - 24px)}.mat-mdc-select-min-line:empty::before{content:" ";white-space:pre;width:1px;display:inline-block;visibility:hidden}.mat-form-field-appearance-fill .mat-mdc-select-arrow-wrapper{transform:var(--mat-select-arrow-transform, translateY(-8px))}\n'],encapsulation:2,changeDetection:0})}return nt})(),Ee=(()=>{class nt{static \u0275fac=function(lt){return new(lt||nt)};static \u0275dir=p.FsC({type:nt,selectors:[["mat-select-trigger"]],features:[p.Jv_([{provide:ge,useExisting:nt}])]})}return nt})(),dt=(()=>{class nt{static \u0275fac=function(lt){return new(lt||nt)};static \u0275mod=p.$C({type:nt});static \u0275inj=t.G2t({providers:[Ke],imports:[i.z_,f.S,h.y,c.Gj,b.R,f.S,h.y]})}return nt})()},96214:(Ae,ee,l)=>{const i=l(19089).getSymbolSize;ee.getRowColCoords=function(p){if(1===p)return[];const S=Math.floor(p/7)+2,c=i(p),e=145===c?26:2*Math.ceil((c-13)/(2*S-2)),T=[c-7];for(let g=1;g{"use strict";l.d(ee,{T:()=>p});var i=l(39974),t=l(54360);function p(S,c){return(0,i.N)((e,T)=>{let g=0;e.subscribe((0,t._)(T,d=>{T.next(S.call(c,d,g++))}))})}},96628:(Ae,ee,l)=>{const i=l(91677);function t(p){this.mode=i.NUMERIC,this.data=p.toString()}t.getBitsLength=function(S){return 10*Math.floor(S/3)+(S%3?S%3*3+1:0)},t.prototype.getLength=function(){return this.data.length},t.prototype.getBitsLength=function(){return t.getBitsLength(this.data.length)},t.prototype.write=function(S){let c,e,T;for(c=0;c+3<=this.data.length;c+=3)e=this.data.substr(c,3),T=parseInt(e,10),S.put(T,10);const g=this.data.length-c;g>0&&(e=this.data.substr(c),T=parseInt(e,10),S.put(T,3*g+1))},Ae.exports=t},96695:(Ae,ee,l)=>{"use strict";l.d(ee,{Ou:()=>D,iy:()=>Te,xX:()=>$});var i=l(2615),t=l(73664),p=l(17705),S=l(21413),c=l(92771),e=l(89726),T=l(69588),g=l(96183),d=l(23029),w=l(22598),m=l(40455),P=l(86156),M=l(88834);function j(n,o){if(1&n&&(t.j41(0,"mat-option",17),t.EFF(1),t.k0s()),2&n){const f=o.$implicit;t.Y8G("value",f),t.R7$(),t.SpI(" ",f," ")}}function U(n,o){if(1&n){const f=t.RV6();t.j41(0,"mat-form-field",14)(1,"mat-select",16,0),t.bIt("selectionChange",function(b){i.eBV(f);const A=t.XpG(2);return i.Njj(A._changePageSize(b.value))}),t.Z7z(3,j,2,2,"mat-option",17,t.fX1),t.k0s(),t.j41(5,"div",18),t.bIt("click",function(){i.eBV(f);const b=t.sdS(2);return i.Njj(b.open())}),t.k0s()()}if(2&n){const f=t.XpG(2);t.Y8G("appearance",f._formFieldAppearance)("color",f.color),t.R7$(),t.Y8G("value",f.pageSize)("disabled",f.disabled),t.jOp("aria-labelledby",f._pageSizeLabelId),t.Y8G("panelClass",f.selectConfig.panelClass||"")("disableOptionCentering",f.selectConfig.disableOptionCentering),t.R7$(2),t.Dyx(f._displayedPageSizeOptions)}}function K(n,o){if(1&n&&(t.j41(0,"div",15),t.EFF(1),t.k0s()),2&n){const f=t.XpG(2);t.R7$(),t.JRh(f.pageSize)}}function q(n,o){if(1&n&&(t.j41(0,"div",3)(1,"div",13),t.EFF(2),t.k0s(),t.nVh(3,U,6,7,"mat-form-field",14),t.nVh(4,K,2,1,"div",15),t.k0s()),2&n){const f=t.XpG();t.R7$(),t.BMQ("id",f._pageSizeLabelId),t.R7$(),t.SpI(" ",f._intl.itemsPerPageLabel," "),t.R7$(),t.vxM(f._displayedPageSizeOptions.length>1?3:-1),t.R7$(),t.vxM(f._displayedPageSizeOptions.length<=1?4:-1)}}function G(n,o){if(1&n){const f=t.RV6();t.j41(0,"button",19),t.bIt("click",function(){i.eBV(f);const b=t.XpG();return i.Njj(b._buttonClicked(0,b._previousButtonsDisabled()))}),i.qSk(),t.j41(1,"svg",8),t.nrm(2,"path",20),t.k0s()()}if(2&n){const f=t.XpG();t.Y8G("matTooltip",f._intl.firstPageLabel)("matTooltipDisabled",f._previousButtonsDisabled())("disabled",f._previousButtonsDisabled())("tabindex",f._previousButtonsDisabled()?-1:null),t.BMQ("aria-label",f._intl.firstPageLabel)}}function Q(n,o){if(1&n){const f=t.RV6();t.j41(0,"button",21),t.bIt("click",function(){i.eBV(f);const b=t.XpG();return i.Njj(b._buttonClicked(b.getNumberOfPages()-1,b._nextButtonsDisabled()))}),i.qSk(),t.j41(1,"svg",8),t.nrm(2,"path",22),t.k0s()()}if(2&n){const f=t.XpG();t.Y8G("matTooltip",f._intl.lastPageLabel)("matTooltipDisabled",f._nextButtonsDisabled())("disabled",f._nextButtonsDisabled())("tabindex",f._nextButtonsDisabled()?-1:null),t.BMQ("aria-label",f._intl.lastPageLabel)}}let $=(()=>{class n{changes=new S.B;itemsPerPageLabel="Items per page:";nextPageLabel="Next page";previousPageLabel="Previous page";firstPageLabel="First page";lastPageLabel="Last page";getRangeLabel=(f,h,b)=>{if(0==b||0==h)return`0 of ${b}`;const A=f*h;return`${A+1} \u2013 ${A<(b=Math.max(b,0))?Math.min(A+h,b):A+h} of ${b}`};static \u0275fac=function(h){return new(h||n)};static \u0275prov=i.jDH({token:n,factory:n.\u0275fac,providedIn:"root"})}return n})();const ue={provide:$,deps:[[new t.Xx1,new t.kdw,$]],useFactory:function ae(n){return n||new $}},me=new i.nKC("MAT_PAGINATOR_DEFAULT_OPTIONS");let Te=(()=>{class n{_intl=(0,i.WQX)($);_changeDetectorRef=(0,i.WQX)(p.gRc);_formFieldAppearance;_pageSizeLabelId=(0,i.WQX)(e.g).getId("mat-paginator-page-size-label-");_intlChanges;_isInitialized=!1;_initializedStream=new c.m(1);color;get pageIndex(){return this._pageIndex}set pageIndex(f){this._pageIndex=Math.max(f||0,0),this._changeDetectorRef.markForCheck()}_pageIndex=0;get length(){return this._length}set length(f){this._length=f||0,this._changeDetectorRef.markForCheck()}_length=0;get pageSize(){return this._pageSize}set pageSize(f){this._pageSize=Math.max(f||0,0),this._updateDisplayedPageSizeOptions()}_pageSize;get pageSizeOptions(){return this._pageSizeOptions}set pageSizeOptions(f){this._pageSizeOptions=(f||[]).map(h=>(0,p.Udg)(h,0)),this._updateDisplayedPageSizeOptions()}_pageSizeOptions=[];hidePageSize=!1;showFirstLastButtons=!1;selectConfig={};disabled=!1;page=new t.bkB;_displayedPageSizeOptions;initialized=this._initializedStream;constructor(){const f=this._intl,h=(0,i.WQX)(me,{optional:!0});if(this._intlChanges=f.changes.subscribe(()=>this._changeDetectorRef.markForCheck()),h){const{pageSize:b,pageSizeOptions:A,hidePageSize:k,showFirstLastButtons:x}=h;null!=b&&(this._pageSize=b),null!=A&&(this._pageSizeOptions=A),null!=k&&(this.hidePageSize=k),null!=x&&(this.showFirstLastButtons=x)}this._formFieldAppearance=h?.formFieldAppearance||"outline"}ngOnInit(){this._isInitialized=!0,this._updateDisplayedPageSizeOptions(),this._initializedStream.next()}ngOnDestroy(){this._initializedStream.complete(),this._intlChanges.unsubscribe()}nextPage(){this.hasNextPage()&&this._navigate(this.pageIndex+1)}previousPage(){this.hasPreviousPage()&&this._navigate(this.pageIndex-1)}firstPage(){this.hasPreviousPage()&&this._navigate(0)}lastPage(){this.hasNextPage()&&this._navigate(this.getNumberOfPages()-1)}hasPreviousPage(){return this.pageIndex>=1&&0!=this.pageSize}hasNextPage(){const f=this.getNumberOfPages()-1;return this.pageIndexf-h),this._changeDetectorRef.markForCheck())}_emitPageEvent(f){this.page.emit({previousPageIndex:f,pageIndex:this.pageIndex,pageSize:this.pageSize,length:this.length})}_navigate(f){const h=this.pageIndex;f!==h&&(this.pageIndex=f,this._emitPageEvent(h))}_buttonClicked(f,h){h||this._navigate(f)}static \u0275fac=function(h){return new(h||n)};static \u0275cmp=t.VBU({type:n,selectors:[["mat-paginator"]],hostAttrs:["role","group",1,"mat-mdc-paginator"],inputs:{color:"color",pageIndex:[2,"pageIndex","pageIndex",p.Udg],length:[2,"length","length",p.Udg],pageSize:[2,"pageSize","pageSize",p.Udg],pageSizeOptions:"pageSizeOptions",hidePageSize:[2,"hidePageSize","hidePageSize",p.L39],showFirstLastButtons:[2,"showFirstLastButtons","showFirstLastButtons",p.L39],selectConfig:"selectConfig",disabled:[2,"disabled","disabled",p.L39]},outputs:{page:"page"},exportAs:["matPaginator"],decls:14,vars:14,consts:[["selectRef",""],[1,"mat-mdc-paginator-outer-container"],[1,"mat-mdc-paginator-container"],[1,"mat-mdc-paginator-page-size"],[1,"mat-mdc-paginator-range-actions"],["aria-live","polite",1,"mat-mdc-paginator-range-label"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-first",3,"matTooltip","matTooltipDisabled","disabled","tabindex"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-previous",3,"click","matTooltip","matTooltipDisabled","disabled","tabindex"],["viewBox","0 0 24 24","focusable","false","aria-hidden","true",1,"mat-mdc-paginator-icon"],["d","M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-next",3,"click","matTooltip","matTooltipDisabled","disabled","tabindex"],["d","M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-last",3,"matTooltip","matTooltipDisabled","disabled","tabindex"],[1,"mat-mdc-paginator-page-size-label"],[1,"mat-mdc-paginator-page-size-select",3,"appearance","color"],[1,"mat-mdc-paginator-page-size-value"],["hideSingleSelectionIndicator","",3,"selectionChange","value","disabled","aria-labelledby","panelClass","disableOptionCentering"],[3,"value"],[1,"mat-mdc-paginator-touch-target",3,"click"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-first",3,"click","matTooltip","matTooltipDisabled","disabled","tabindex"],["d","M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-last",3,"click","matTooltip","matTooltipDisabled","disabled","tabindex"],["d","M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"]],template:function(h,b){1&h&&(t.j41(0,"div",1)(1,"div",2),t.nVh(2,q,5,4,"div",3),t.j41(3,"div",4)(4,"div",5),t.EFF(5),t.k0s(),t.nVh(6,G,3,5,"button",6),t.j41(7,"button",7),t.bIt("click",function(){return b._buttonClicked(b.pageIndex-1,b._previousButtonsDisabled())}),i.qSk(),t.j41(8,"svg",8),t.nrm(9,"path",9),t.k0s()(),i.joV(),t.j41(10,"button",10),t.bIt("click",function(){return b._buttonClicked(b.pageIndex+1,b._nextButtonsDisabled())}),i.qSk(),t.j41(11,"svg",8),t.nrm(12,"path",11),t.k0s()(),t.nVh(13,Q,3,5,"button",12),t.k0s()()()),2&h&&(t.R7$(2),t.vxM(b.hidePageSize?-1:2),t.R7$(3),t.SpI(" ",b._intl.getRangeLabel(b.pageIndex,b.pageSize,b.length)," "),t.R7$(),t.vxM(b.showFirstLastButtons?6:-1),t.R7$(),t.Y8G("matTooltip",b._intl.previousPageLabel)("matTooltipDisabled",b._previousButtonsDisabled())("disabled",b._previousButtonsDisabled())("tabindex",b._previousButtonsDisabled()?-1:null),t.BMQ("aria-label",b._intl.previousPageLabel),t.R7$(3),t.Y8G("matTooltip",b._intl.nextPageLabel)("matTooltipDisabled",b._nextButtonsDisabled())("disabled",b._nextButtonsDisabled())("tabindex",b._nextButtonsDisabled()?-1:null),t.BMQ("aria-label",b._intl.nextPageLabel),t.R7$(3),t.vxM(b.showFirstLastButtons?13:-1))},dependencies:[T.rl,g.VO,d.wT,w.iY,m.oV],styles:[".mat-mdc-paginator{display:block;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--mat-paginator-container-text-color, var(--mat-sys-on-surface));background-color:var(--mat-paginator-container-background-color, var(--mat-sys-surface));font-family:var(--mat-paginator-container-text-font, var(--mat-sys-body-small-font));line-height:var(--mat-paginator-container-text-line-height, var(--mat-sys-body-small-line-height));font-size:var(--mat-paginator-container-text-size, var(--mat-sys-body-small-size));font-weight:var(--mat-paginator-container-text-weight, var(--mat-sys-body-small-weight));letter-spacing:var(--mat-paginator-container-text-tracking, var(--mat-sys-body-small-tracking));--mat-form-field-container-height: var(--mat-paginator-form-field-container-height, 40px);--mat-form-field-container-vertical-padding: var(--mat-paginator-form-field-container-vertical-padding, 8px)}.mat-mdc-paginator .mat-mdc-select-value{font-size:var(--mat-paginator-select-trigger-text-size, var(--mat-sys-body-small-size))}.mat-mdc-paginator .mat-mdc-form-field-subscript-wrapper{display:none}.mat-mdc-paginator .mat-mdc-select{line-height:1.5}.mat-mdc-paginator-outer-container{display:flex}.mat-mdc-paginator-container{display:flex;align-items:center;justify-content:flex-end;padding:0 8px;flex-wrap:wrap;width:100%;min-height:var(--mat-paginator-container-size, 56px)}.mat-mdc-paginator-page-size{display:flex;align-items:baseline;margin-right:8px}[dir=rtl] .mat-mdc-paginator-page-size{margin-right:0;margin-left:8px}.mat-mdc-paginator-page-size-label{margin:0 4px}.mat-mdc-paginator-page-size-select{margin:0 4px;width:var(--mat-paginator-page-size-select-width, 84px)}.mat-mdc-paginator-range-label{margin:0 32px 0 24px}.mat-mdc-paginator-range-actions{display:flex;align-items:center}.mat-mdc-paginator-icon{display:inline-block;width:28px;fill:var(--mat-paginator-enabled-icon-color, var(--mat-sys-on-surface-variant))}.mat-mdc-icon-button[aria-disabled] .mat-mdc-paginator-icon{fill:var(--mat-paginator-disabled-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}[dir=rtl] .mat-mdc-paginator-icon{transform:rotate(180deg)}@media(forced-colors: active){.mat-mdc-icon-button[aria-disabled] .mat-mdc-paginator-icon,.mat-mdc-paginator-icon{fill:currentColor}.mat-mdc-paginator-range-actions .mat-mdc-icon-button{outline:solid 1px}.mat-mdc-paginator-range-actions .mat-mdc-icon-button[aria-disabled]{color:GrayText}}.mat-mdc-paginator-touch-target{display:var(--mat-paginator-touch-target-display, block);position:absolute;top:50%;left:50%;width:var(--mat-paginator-page-size-select-width, 84px);height:var(--mat-paginator-page-size-select-touch-target-height, 48px);background-color:rgba(0,0,0,0);transform:translate(-50%, -50%);cursor:pointer}\n"],encapsulation:2,changeDetection:0})}return n})(),D=(()=>{class n{static \u0275fac=function(h){return new(h||n)};static \u0275mod=t.$C({type:n});static \u0275inj=i.G2t({providers:[ue],imports:[M.Hl,g.Ve,P.u,Te]})}return n})()},96697:(Ae,ee,l)=>{"use strict";l.d(ee,{s:()=>S});var i=l(983),t=l(39974),p=l(54360);function S(c){return c<=0?()=>i.w:(0,t.N)((e,T)=>{let g=0;e.subscribe((0,p._)(T,d=>{++g<=c&&(T.next(d),c<=g&&T.complete())}))})}},96780:(Ae,ee,l)=>{"use strict";l.d(ee,{R:()=>c});var i=l(18359);class t extends i.yU{constructor(T,g){super()}schedule(T,g=0){return this}}const p={setInterval(e,T,...g){const{delegate:d}=p;return d?.setInterval?d.setInterval(e,T,...g):setInterval(e,T,...g)},clearInterval(e){const{delegate:T}=p;return(T?.clearInterval||clearInterval)(e)},delegate:void 0};var S=l(57908);class c extends t{constructor(T,g){super(T,g),this.scheduler=T,this.work=g,this.pending=!1}schedule(T,g=0){var d;if(this.closed)return this;this.state=T;const w=this.id,m=this.scheduler;return null!=w&&(this.id=this.recycleAsyncId(m,w,g)),this.pending=!0,this.delay=g,this.id=null!==(d=this.id)&&void 0!==d?d:this.requestAsyncId(m,this.id,g),this}requestAsyncId(T,g,d=0){return p.setInterval(T.flush.bind(T,this),d)}recycleAsyncId(T,g,d=0){if(null!=d&&this.delay===d&&!1===this.pending)return g;null!=g&&p.clearInterval(g)}execute(T,g){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;const d=this._execute(T,g);if(d)return d;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(T,g){let w,d=!1;try{this.work(T)}catch(m){d=!0,w=m||new Error("Scheduled action threw falsy error")}if(d)return this.unsubscribe(),w}unsubscribe(){if(!this.closed){const{id:T,scheduler:g}=this,{actions:d}=g;this.work=this.state=this.scheduler=null,this.pending=!1,(0,S.o)(d,this),null!=T&&(this.id=this.recycleAsyncId(g,T,null)),this.delay=null,super.unsubscribe()}}}},96850:(Ae,ee,l)=>{"use strict";l.d(ee,{Bu:()=>Ue,ES:()=>Pe,Ql:()=>Ne,RI:()=>yt,T8:()=>se,hQ:()=>Kt,mq:()=>ct});var i=l(76838),t=l(89726),p=l(64123),S=l(61577),c=l(67336),e=l(10438),T=l(63610),g=l(39842),d=l(5718),w=l(2615),m=l(73664),P=l(17705),M=l(59295),j=l(71985),U=l(21413),K=l(84412),q=l(18359),G=l(57786),Q=l(7673),$=l(1807),ae=l(983),ue=l(70152),oe=l(5964),he=l(65245),me=l(99172),Te=l(25558),D=l(56977),n=l(31804),o=l(76939),f=l(88968),h=l(32046),b=l(72318),A=l(12496),k=l(22466);const x=["*"];function r(Zt,ti){1&Zt&&m.SdG(0)}const _=["tabListContainer"],W=["tabList"],I=["tabListInner"],B=["nextPaginator"],re=["previousPaginator"],pe=["content"];function be(Zt,ti){}const Be=["tabBodyWrapper"],_e=["tabHeader"];function ye(Zt,ti){}function Le(Zt,ti){if(1&Zt&&m.DNE(0,ye,0,0,"ng-template",12),2&Zt){const Ye=m.XpG().$implicit;m.Y8G("cdkPortalOutlet",Ye.templateLabel)}}function Ke(Zt,ti){if(1&Zt&&m.EFF(0),2&Zt){const Ye=m.XpG().$implicit;m.JRh(Ye.textLabel)}}function ge(Zt,ti){if(1&Zt){const Ye=m.RV6();m.j41(0,"div",7,2),m.bIt("click",function(){const Et=w.eBV(Ye),Jt=Et.$implicit,qe=Et.$index,$e=m.XpG(),tt=m.sdS(1);return w.Njj($e._handleClick(Jt,tt,qe))})("cdkFocusChange",function(Et){const Jt=w.eBV(Ye).$index,qe=m.XpG();return w.Njj(qe._tabFocusChanged(Et,Jt))}),m.nrm(2,"span",8)(3,"div",9),m.j41(4,"span",10)(5,"span",11),m.nVh(6,Le,1,1,null,12)(7,Ke,1,1),m.k0s()()()}if(2&Zt){const Ye=ti.$implicit,Nt=ti.$index,Et=m.sdS(1),Jt=m.XpG();m.HbH(Ye.labelClass),m.AVh("mdc-tab--active",Jt.selectedIndex===Nt),m.Y8G("id",Jt._getTabLabelId(Ye,Nt))("disabled",Ye.disabled)("fitInkBarToContent",Jt.fitInkBarToContent),m.BMQ("tabIndex",Jt._getTabIndex(Nt))("aria-posinset",Nt+1)("aria-setsize",Jt._tabs.length)("aria-controls",Jt._getTabContentId(Nt))("aria-selected",Jt.selectedIndex===Nt)("aria-label",Ye.ariaLabel||null)("aria-labelledby",!Ye.ariaLabel&&Ye.ariaLabelledby?Ye.ariaLabelledby:null),m.R7$(3),m.Y8G("matRippleTrigger",Et)("matRippleDisabled",Ye.disabled||Jt.disableRipple),m.R7$(3),m.vxM(Ye.templateLabel?6:7)}}function ve(Zt,ti){1&Zt&&m.SdG(0)}function Oe(Zt,ti){if(1&Zt){const Ye=m.RV6();m.j41(0,"mat-tab-body",13),m.bIt("_onCentered",function(){w.eBV(Ye);const Et=m.XpG();return w.Njj(Et._removeTabBodyWrapperHeight())})("_onCentering",function(Et){w.eBV(Ye);const Jt=m.XpG();return w.Njj(Jt._setTabBodyWrapperHeight(Et))})("_beforeCentering",function(Et){w.eBV(Ye);const Jt=m.XpG();return w.Njj(Jt._bodyCentered(Et))}),m.k0s()}if(2&Zt){const Ye=ti.$implicit,Nt=ti.$index,Et=m.XpG();m.HbH(Ye.bodyClass),m.Y8G("id",Et._getTabContentId(Nt))("content",Ye.content)("position",Ye.position)("animationDuration",Et.animationDuration)("preserveContent",Et.preserveContent),m.BMQ("tabindex",null!=Et.contentTabIndex&&Et.selectedIndex===Nt?Et.contentTabIndex:null)("aria-labelledby",Et._getTabLabelId(Ye,Nt))("aria-hidden",Et.selectedIndex!==Nt)}}const Ee=["mat-tab-nav-bar",""],dt=["mat-tab-link",""],nt=new w.nKC("MatTabContent");let Ct=(()=>{class Zt{template=(0,w.WQX)(m.C4Q);constructor(){}static \u0275fac=function(Nt){return new(Nt||Zt)};static \u0275dir=m.FsC({type:Zt,selectors:[["","matTabContent",""]],features:[m.Jv_([{provide:nt,useExisting:Zt}])]})}return Zt})();const Mt=new w.nKC("MatTabLabel"),lt=new w.nKC("MAT_TAB");let Pe=(()=>{class Zt extends o.bV{_closestTab=(0,w.WQX)(lt,{optional:!0});static \u0275fac=(()=>{let Ye;return function(Et){return(Ye||(Ye=m.xGo(Zt)))(Et||Zt)}})();static \u0275dir=m.FsC({type:Zt,selectors:[["","mat-tab-label",""],["","matTabLabel",""]],features:[m.Jv_([{provide:Mt,useExisting:Zt}]),m.Vt3]})}return Zt})();const Ht=new w.nKC("MAT_TAB_GROUP");let ct=(()=>{class Zt{_viewContainerRef=(0,w.WQX)(m.c1b);_closestTabGroup=(0,w.WQX)(Ht,{optional:!0});disabled=!1;get templateLabel(){return this._templateLabel}set templateLabel(Ye){this._setTemplateLabelInput(Ye)}_templateLabel;_explicitContent=void 0;_implicitContent;textLabel="";ariaLabel;ariaLabelledby;labelClass;bodyClass;id=null;_contentPortal=null;get content(){return this._contentPortal}_stateChanges=new U.B;position=null;origin=null;isActive=!1;constructor(){(0,w.WQX)(f.l).load(h.A)}ngOnChanges(Ye){(Ye.hasOwnProperty("textLabel")||Ye.hasOwnProperty("disabled"))&&this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete()}ngOnInit(){this._contentPortal=new o.VA(this._explicitContent||this._implicitContent,this._viewContainerRef)}_setTemplateLabelInput(Ye){Ye&&Ye._closestTab===this&&(this._templateLabel=Ye)}static \u0275fac=function(Nt){return new(Nt||Zt)};static \u0275cmp=m.VBU({type:Zt,selectors:[["mat-tab"]],contentQueries:function(Nt,Et,Jt){if(1&Nt&&(m.wni(Jt,Pe,5),m.wni(Jt,Ct,7,m.C4Q)),2&Nt){let qe;m.mGM(qe=m.lsd())&&(Et.templateLabel=qe.first),m.mGM(qe=m.lsd())&&(Et._explicitContent=qe.first)}},viewQuery:function(Nt,Et){if(1&Nt&&m.GBs(m.C4Q,7),2&Nt){let Jt;m.mGM(Jt=m.lsd())&&(Et._implicitContent=Jt.first)}},hostAttrs:["hidden",""],hostVars:1,hostBindings:function(Nt,Et){2&Nt&&m.BMQ("id",null)},inputs:{disabled:[2,"disabled","disabled",P.L39],textLabel:[0,"label","textLabel"],ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],labelClass:"labelClass",bodyClass:"bodyClass",id:"id"},exportAs:["matTab"],features:[m.Jv_([{provide:lt,useExisting:Zt}]),m.OA$],ngContentSelectors:x,decls:1,vars:0,template:function(Nt,Et){1&Nt&&(m.NAR(),m.PeT(0,r,1,0,"ng-template"))},encapsulation:2})}return Zt})();const Ce="mdc-tab-indicator--active",ze="mdc-tab-indicator--no-transition";class Z{_items;_currentItem;constructor(ti){this._items=ti}hide(){this._items.forEach(ti=>ti.deactivateInkBar()),this._currentItem=void 0}alignToElement(ti){const Ye=this._items.find(Et=>Et.elementRef.nativeElement===ti),Nt=this._currentItem;if(Ye!==Nt&&(Nt?.deactivateInkBar(),Ye)){const Et=Nt?.elementRef.nativeElement.getBoundingClientRect?.();Ye.activateInkBar(Et),this._currentItem=Ye}}}let J=(()=>{class Zt{_elementRef=(0,w.WQX)(m.aKT);_inkBarElement;_inkBarContentElement;_fitToContent=!1;get fitInkBarToContent(){return this._fitToContent}set fitInkBarToContent(Ye){this._fitToContent!==Ye&&(this._fitToContent=Ye,this._inkBarElement&&this._appendInkBarElement())}activateInkBar(Ye){const Nt=this._elementRef.nativeElement;if(!Ye||!Nt.getBoundingClientRect||!this._inkBarContentElement)return void Nt.classList.add(Ce);const Et=Nt.getBoundingClientRect(),Jt=Ye.width/Et.width,qe=Ye.left-Et.left;Nt.classList.add(ze),this._inkBarContentElement.style.setProperty("transform",`translateX(${qe}px) scaleX(${Jt})`),Nt.getBoundingClientRect(),Nt.classList.remove(ze),Nt.classList.add(Ce),this._inkBarContentElement.style.setProperty("transform","")}deactivateInkBar(){this._elementRef.nativeElement.classList.remove(Ce)}ngOnInit(){this._createInkBarElement()}ngOnDestroy(){this._inkBarElement?.remove(),this._inkBarElement=this._inkBarContentElement=null}_createInkBarElement(){const Ye=this._elementRef.nativeElement.ownerDocument||document,Nt=this._inkBarElement=Ye.createElement("span"),Et=this._inkBarContentElement=Ye.createElement("span");Nt.className="mdc-tab-indicator",Et.className="mdc-tab-indicator__content mdc-tab-indicator__content--underline",Nt.appendChild(this._inkBarContentElement),this._appendInkBarElement()}_appendInkBarElement(){(this._fitToContent?this._elementRef.nativeElement.querySelector(".mdc-tab__content"):this._elementRef.nativeElement).appendChild(this._inkBarElement)}static \u0275fac=function(Nt){return new(Nt||Zt)};static \u0275dir=m.FsC({type:Zt,inputs:{fitInkBarToContent:[2,"fitInkBarToContent","fitInkBarToContent",P.L39]}})}return Zt})(),ht=(()=>{class Zt extends J{elementRef=(0,w.WQX)(m.aKT);disabled=!1;focus(){this.elementRef.nativeElement.focus()}getOffsetLeft(){return this.elementRef.nativeElement.offsetLeft}getOffsetWidth(){return this.elementRef.nativeElement.offsetWidth}static \u0275fac=(()=>{let Ye;return function(Et){return(Ye||(Ye=m.xGo(Zt)))(Et||Zt)}})();static \u0275dir=m.FsC({type:Zt,selectors:[["","matTabLabelWrapper",""]],hostVars:3,hostBindings:function(Nt,Et){2&Nt&&(m.BMQ("aria-disabled",!!Et.disabled),m.AVh("mat-mdc-tab-disabled",Et.disabled))},inputs:{disabled:[2,"disabled","disabled",P.L39]},features:[m.Vt3]})}return Zt})();const li={passive:!0};let kt=(()=>{class Zt{_elementRef=(0,w.WQX)(m.aKT);_changeDetectorRef=(0,w.WQX)(P.gRc);_viewportRuler=(0,w.WQX)(d.Xj);_dir=(0,w.WQX)(S.dS,{optional:!0});_ngZone=(0,w.WQX)(m.SKi);_platform=(0,w.WQX)(g.O);_sharedResizeObserver=(0,w.WQX)(T.a);_injector=(0,w.WQX)(w.zZn);_renderer=(0,w.WQX)(m.sFG);_animationsDisabled=(0,n.Rc)();_eventCleanups;_scrollDistance=0;_selectedIndexChanged=!1;_destroyed=new U.B;_showPaginationControls=!1;_disableScrollAfter=!0;_disableScrollBefore=!0;_tabLabelCount;_scrollDistanceChanged;_keyManager;_currentTextContent;_stopScrolling=new U.B;disablePagination=!1;get selectedIndex(){return this._selectedIndex}set selectedIndex(Ye){const Nt=isNaN(Ye)?0:Ye;this._selectedIndex!=Nt&&(this._selectedIndexChanged=!0,this._selectedIndex=Nt,this._keyManager&&this._keyManager.updateActiveItem(Nt))}_selectedIndex=0;selectFocusedIndex=new m.bkB;indexFocused=new m.bkB;constructor(){this._eventCleanups=this._ngZone.runOutsideAngular(()=>[this._renderer.listen(this._elementRef.nativeElement,"mouseleave",()=>this._stopInterval())])}ngAfterViewInit(){this._eventCleanups.push(this._renderer.listen(this._previousPaginator.nativeElement,"touchstart",()=>this._handlePaginatorPress("before"),li),this._renderer.listen(this._nextPaginator.nativeElement,"touchstart",()=>this._handlePaginatorPress("after"),li))}ngAfterContentInit(){const Ye=this._dir?this._dir.change:(0,Q.of)("ltr"),Nt=this._sharedResizeObserver.observe(this._elementRef.nativeElement).pipe((0,ue.B)(32),(0,D.Q)(this._destroyed)),Et=this._viewportRuler.change(150).pipe((0,D.Q)(this._destroyed)),Jt=()=>{this.updatePagination(),this._alignInkBarToSelectedTab()};this._keyManager=new p.B(this._items).withHorizontalOrientation(this._getLayoutDirection()).withHomeAndEnd().withWrap().skipPredicate(()=>!1),this._keyManager.updateActiveItem(Math.max(this._selectedIndex,0)),(0,m.mal)(Jt,{injector:this._injector}),(0,G.h)(Ye,Et,Nt,this._items.changes,this._itemsResized()).pipe((0,D.Q)(this._destroyed)).subscribe(()=>{this._ngZone.run(()=>{Promise.resolve().then(()=>{this._scrollDistance=Math.max(0,Math.min(this._getMaxScrollDistance(),this._scrollDistance)),Jt()})}),this._keyManager?.withHorizontalOrientation(this._getLayoutDirection())}),this._keyManager.change.subscribe(qe=>{this.indexFocused.emit(qe),this._setTabFocus(qe)})}_itemsResized(){return"function"!=typeof ResizeObserver?ae.w:this._items.changes.pipe((0,me.Z)(this._items),(0,Te.n)(Ye=>new j.c(Nt=>this._ngZone.runOutsideAngular(()=>{const Et=new ResizeObserver(Jt=>Nt.next(Jt));return Ye.forEach(Jt=>Et.observe(Jt.elementRef.nativeElement)),()=>{Et.disconnect()}}))),(0,he.i)(1),(0,oe.p)(Ye=>Ye.some(Nt=>Nt.contentRect.width>0&&Nt.contentRect.height>0)))}ngAfterContentChecked(){this._tabLabelCount!=this._items.length&&(this.updatePagination(),this._tabLabelCount=this._items.length,this._changeDetectorRef.markForCheck()),this._selectedIndexChanged&&(this._scrollToLabel(this._selectedIndex),this._checkScrollingControls(),this._alignInkBarToSelectedTab(),this._selectedIndexChanged=!1,this._changeDetectorRef.markForCheck()),this._scrollDistanceChanged&&(this._updateTabScrollPosition(),this._scrollDistanceChanged=!1,this._changeDetectorRef.markForCheck())}ngOnDestroy(){this._eventCleanups.forEach(Ye=>Ye()),this._keyManager?.destroy(),this._destroyed.next(),this._destroyed.complete(),this._stopScrolling.complete()}_handleKeydown(Ye){if(!(0,c.rp)(Ye))switch(Ye.keyCode){case e.Fm:case e.t6:if(this.focusIndex!==this.selectedIndex){const Nt=this._items.get(this.focusIndex);Nt&&!Nt.disabled&&(this.selectFocusedIndex.emit(this.focusIndex),this._itemSelected(Ye))}break;default:this._keyManager?.onKeydown(Ye)}}_onContentChanges(){const Ye=this._elementRef.nativeElement.textContent;Ye!==this._currentTextContent&&(this._currentTextContent=Ye||"",this._ngZone.run(()=>{this.updatePagination(),this._alignInkBarToSelectedTab(),this._changeDetectorRef.markForCheck()}))}updatePagination(){this._checkPaginationEnabled(),this._checkScrollingControls(),this._updateTabScrollPosition()}get focusIndex(){return this._keyManager?this._keyManager.activeItemIndex:0}set focusIndex(Ye){!this._isValidIndex(Ye)||this.focusIndex===Ye||!this._keyManager||this._keyManager.setActiveItem(Ye)}_isValidIndex(Ye){return!this._items||!!this._items.toArray()[Ye]}_setTabFocus(Ye){if(this._showPaginationControls&&this._scrollToLabel(Ye),this._items&&this._items.length){this._items.toArray()[Ye].focus();const Nt=this._tabListContainer.nativeElement;Nt.scrollLeft="ltr"==this._getLayoutDirection()?0:Nt.scrollWidth-Nt.offsetWidth}}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_updateTabScrollPosition(){if(this.disablePagination)return;const Ye=this.scrollDistance,Nt="ltr"===this._getLayoutDirection()?-Ye:Ye;this._tabList.nativeElement.style.transform=`translateX(${Math.round(Nt)}px)`,(this._platform.TRIDENT||this._platform.EDGE)&&(this._tabListContainer.nativeElement.scrollLeft=0)}get scrollDistance(){return this._scrollDistance}set scrollDistance(Ye){this._scrollTo(Ye)}_scrollHeader(Ye){return this._scrollTo(this._scrollDistance+("before"==Ye?-1:1)*this._tabListContainer.nativeElement.offsetWidth/3)}_handlePaginatorClick(Ye){this._stopInterval(),this._scrollHeader(Ye)}_scrollToLabel(Ye){if(this.disablePagination)return;const Nt=this._items?this._items.toArray()[Ye]:null;if(!Nt)return;const Et=this._tabListContainer.nativeElement.offsetWidth,{offsetLeft:Jt,offsetWidth:qe}=Nt.elementRef.nativeElement;let $e,tt;"ltr"==this._getLayoutDirection()?($e=Jt,tt=$e+qe):(tt=this._tabListInner.nativeElement.offsetWidth-Jt,$e=tt-qe);const vi=this.scrollDistance,ei=this.scrollDistance+Et;$eei&&(this.scrollDistance+=Math.min(tt-ei,$e-vi))}_checkPaginationEnabled(){if(this.disablePagination)this._showPaginationControls=!1;else{const Et=this._tabListInner.nativeElement.scrollWidth-this._elementRef.nativeElement.offsetWidth>=5;Et||(this.scrollDistance=0),Et!==this._showPaginationControls&&(this._showPaginationControls=Et,this._changeDetectorRef.markForCheck())}}_checkScrollingControls(){this.disablePagination?this._disableScrollAfter=this._disableScrollBefore=!0:(this._disableScrollBefore=0==this.scrollDistance,this._disableScrollAfter=this.scrollDistance==this._getMaxScrollDistance(),this._changeDetectorRef.markForCheck())}_getMaxScrollDistance(){return this._tabListInner.nativeElement.scrollWidth-this._tabListContainer.nativeElement.offsetWidth||0}_alignInkBarToSelectedTab(){const Ye=this._items&&this._items.length?this._items.toArray()[this.selectedIndex]:null,Nt=Ye?Ye.elementRef.nativeElement:null;Nt?this._inkBar.alignToElement(Nt):this._inkBar.hide()}_stopInterval(){this._stopScrolling.next()}_handlePaginatorPress(Ye,Nt){Nt&&null!=Nt.button&&0!==Nt.button||(this._stopInterval(),(0,$.O)(650,100).pipe((0,D.Q)((0,G.h)(this._stopScrolling,this._destroyed))).subscribe(()=>{const{maxScrollDistance:Et,distance:Jt}=this._scrollHeader(Ye);(0===Jt||Jt>=Et)&&this._stopInterval()}))}_scrollTo(Ye){if(this.disablePagination)return{maxScrollDistance:0,distance:0};const Nt=this._getMaxScrollDistance();return this._scrollDistance=Math.max(0,Math.min(Nt,Ye)),this._scrollDistanceChanged=!0,this._checkScrollingControls(),{maxScrollDistance:Nt,distance:this._scrollDistance}}static \u0275fac=function(Nt){return new(Nt||Zt)};static \u0275dir=m.FsC({type:Zt,inputs:{disablePagination:[2,"disablePagination","disablePagination",P.L39],selectedIndex:[2,"selectedIndex","selectedIndex",P.Udg]},outputs:{selectFocusedIndex:"selectFocusedIndex",indexFocused:"indexFocused"}})}return Zt})(),Rt=(()=>{class Zt extends kt{_items;_tabListContainer;_tabList;_tabListInner;_nextPaginator;_previousPaginator;_inkBar;ariaLabel;ariaLabelledby;disableRipple=!1;ngAfterContentInit(){this._inkBar=new Z(this._items),super.ngAfterContentInit()}_itemSelected(Ye){Ye.preventDefault()}static \u0275fac=(()=>{let Ye;return function(Et){return(Ye||(Ye=m.xGo(Zt)))(Et||Zt)}})();static \u0275cmp=m.VBU({type:Zt,selectors:[["mat-tab-header"]],contentQueries:function(Nt,Et,Jt){if(1&Nt&&m.wni(Jt,ht,4),2&Nt){let qe;m.mGM(qe=m.lsd())&&(Et._items=qe)}},viewQuery:function(Nt,Et){if(1&Nt&&(m.GBs(_,7),m.GBs(W,7),m.GBs(I,7),m.GBs(B,5),m.GBs(re,5)),2&Nt){let Jt;m.mGM(Jt=m.lsd())&&(Et._tabListContainer=Jt.first),m.mGM(Jt=m.lsd())&&(Et._tabList=Jt.first),m.mGM(Jt=m.lsd())&&(Et._tabListInner=Jt.first),m.mGM(Jt=m.lsd())&&(Et._nextPaginator=Jt.first),m.mGM(Jt=m.lsd())&&(Et._previousPaginator=Jt.first)}},hostAttrs:[1,"mat-mdc-tab-header"],hostVars:4,hostBindings:function(Nt,Et){2&Nt&&m.AVh("mat-mdc-tab-header-pagination-controls-enabled",Et._showPaginationControls)("mat-mdc-tab-header-rtl","rtl"==Et._getLayoutDirection())},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],disableRipple:[2,"disableRipple","disableRipple",P.L39]},features:[m.Vt3],ngContentSelectors:x,decls:13,vars:10,consts:[["previousPaginator",""],["tabListContainer",""],["tabList",""],["tabListInner",""],["nextPaginator",""],["mat-ripple","",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-before",3,"click","mousedown","touchend","matRippleDisabled"],[1,"mat-mdc-tab-header-pagination-chevron"],[1,"mat-mdc-tab-label-container",3,"keydown"],["role","tablist",1,"mat-mdc-tab-list",3,"cdkObserveContent"],[1,"mat-mdc-tab-labels"],["mat-ripple","",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-after",3,"mousedown","click","touchend","matRippleDisabled"]],template:function(Nt,Et){if(1&Nt){const Jt=m.RV6();m.NAR(),m.j41(0,"div",5,0),m.bIt("click",function(){return w.eBV(Jt),w.Njj(Et._handlePaginatorClick("before"))})("mousedown",function($e){return w.eBV(Jt),w.Njj(Et._handlePaginatorPress("before",$e))})("touchend",function(){return w.eBV(Jt),w.Njj(Et._stopInterval())}),m.nrm(2,"div",6),m.k0s(),m.j41(3,"div",7,1),m.bIt("keydown",function($e){return w.eBV(Jt),w.Njj(Et._handleKeydown($e))}),m.j41(5,"div",8,2),m.bIt("cdkObserveContent",function(){return w.eBV(Jt),w.Njj(Et._onContentChanges())}),m.j41(7,"div",9,3),m.SdG(9),m.k0s()()(),m.j41(10,"div",10,4),m.bIt("mousedown",function($e){return w.eBV(Jt),w.Njj(Et._handlePaginatorPress("after",$e))})("click",function(){return w.eBV(Jt),w.Njj(Et._handlePaginatorClick("after"))})("touchend",function(){return w.eBV(Jt),w.Njj(Et._stopInterval())}),m.nrm(12,"div",6),m.k0s()}2&Nt&&(m.AVh("mat-mdc-tab-header-pagination-disabled",Et._disableScrollBefore),m.Y8G("matRippleDisabled",Et._disableScrollBefore||Et.disableRipple),m.R7$(3),m.AVh("_mat-animation-noopable",Et._animationsDisabled),m.R7$(2),m.BMQ("aria-label",Et.ariaLabel||null)("aria-labelledby",Et.ariaLabelledby||null),m.R7$(5),m.AVh("mat-mdc-tab-header-pagination-disabled",Et._disableScrollAfter),m.Y8G("matRippleDisabled",Et._disableScrollAfter||Et.disableRipple))},dependencies:[A.r6,b.Wv],styles:[".mat-mdc-tab-header{display:flex;overflow:hidden;position:relative;flex-shrink:0}.mdc-tab-indicator .mdc-tab-indicator__content{transition-duration:var(--mat-tab-animation-duration, 250ms)}.mat-mdc-tab-header-pagination{-webkit-user-select:none;user-select:none;position:relative;display:none;justify-content:center;align-items:center;min-width:32px;cursor:pointer;z-index:2;-webkit-tap-highlight-color:rgba(0,0,0,0);touch-action:none;box-sizing:content-box;outline:0}.mat-mdc-tab-header-pagination::-moz-focus-inner{border:0}.mat-mdc-tab-header-pagination .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-inactive-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab-header-pagination-controls-enabled .mat-mdc-tab-header-pagination{display:flex}.mat-mdc-tab-header-pagination-before,.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-after{padding-left:4px}.mat-mdc-tab-header-pagination-before .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-after .mat-mdc-tab-header-pagination-chevron{transform:rotate(-135deg)}.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-before,.mat-mdc-tab-header-pagination-after{padding-right:4px}.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-before .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-header-pagination-after .mat-mdc-tab-header-pagination-chevron{transform:rotate(45deg)}.mat-mdc-tab-header-pagination-chevron{border-style:solid;border-width:2px 2px 0 0;height:8px;width:8px;border-color:var(--mat-tab-pagination-icon-color, var(--mat-sys-on-surface))}.mat-mdc-tab-header-pagination-disabled{box-shadow:none;cursor:default;pointer-events:none}.mat-mdc-tab-header-pagination-disabled .mat-mdc-tab-header-pagination-chevron{opacity:.4}.mat-mdc-tab-list{flex-grow:1;position:relative;transition:transform 500ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-mdc-tab-list{transition:none}.mat-mdc-tab-label-container{display:flex;flex-grow:1;overflow:hidden;z-index:1;border-bottom-style:solid;border-bottom-width:var(--mat-tab-divider-height, 1px);border-bottom-color:var(--mat-tab-divider-color, var(--mat-sys-surface-variant))}.mat-mdc-tab-group-inverted-header .mat-mdc-tab-label-container{border-bottom:none;border-top-style:solid;border-top-width:var(--mat-tab-divider-height, 1px);border-top-color:var(--mat-tab-divider-color, var(--mat-sys-surface-variant))}.mat-mdc-tab-labels{display:flex;flex:1 0 auto}[mat-align-tabs=center]>.mat-mdc-tab-header .mat-mdc-tab-labels{justify-content:center}[mat-align-tabs=end]>.mat-mdc-tab-header .mat-mdc-tab-labels{justify-content:flex-end}.cdk-drop-list .mat-mdc-tab-labels,.mat-mdc-tab-labels.cdk-drop-list{min-height:var(--mat-tab-container-height, 48px)}.mat-mdc-tab::before{margin:5px}@media(forced-colors: active){.mat-mdc-tab[aria-disabled=true]{color:GrayText}}\n"],encapsulation:2})}return Zt})();const le=new w.nKC("MAT_TABS_CONFIG");let te=(()=>{class Zt extends o.I3{_host=(0,w.WQX)(ce);_ngZone=(0,w.WQX)(m.SKi);_centeringSub=q.yU.EMPTY;_leavingSub=q.yU.EMPTY;constructor(){super()}ngOnInit(){super.ngOnInit(),this._centeringSub=this._host._beforeCentering.pipe((0,me.Z)(this._host._isCenterPosition())).subscribe(Ye=>{this._host._content&&Ye&&!this.hasAttached()&&this._ngZone.run(()=>{Promise.resolve().then(),this.attach(this._host._content)})}),this._leavingSub=this._host._afterLeavingCenter.subscribe(()=>{this._host.preserveContent||this._ngZone.run(()=>this.detach())})}ngOnDestroy(){super.ngOnDestroy(),this._centeringSub.unsubscribe(),this._leavingSub.unsubscribe()}static \u0275fac=function(Nt){return new(Nt||Zt)};static \u0275dir=m.FsC({type:Zt,selectors:[["","matTabBodyHost",""]],features:[m.Vt3]})}return Zt})(),ce=(()=>{class Zt{_elementRef=(0,w.WQX)(m.aKT);_dir=(0,w.WQX)(S.dS,{optional:!0});_ngZone=(0,w.WQX)(m.SKi);_injector=(0,w.WQX)(w.zZn);_renderer=(0,w.WQX)(m.sFG);_diAnimationsDisabled=(0,n.Rc)();_eventCleanups;_initialized;_fallbackTimer;_positionIndex;_dirChangeSubscription=q.yU.EMPTY;_position;_previousPosition;_onCentering=new m.bkB;_beforeCentering=new m.bkB;_afterLeavingCenter=new m.bkB;_onCentered=new m.bkB(!0);_portalHost;_contentElement;_content;animationDuration="500ms";preserveContent=!1;set position(Ye){this._positionIndex=Ye,this._computePositionAnimationState()}constructor(){if(this._dir){const Ye=(0,w.WQX)(P.gRc);this._dirChangeSubscription=this._dir.change.subscribe(Nt=>{this._computePositionAnimationState(Nt),Ye.markForCheck()})}}ngOnInit(){this._bindTransitionEvents(),"center"===this._position&&(this._setActiveClass(!0),(0,m.mal)(()=>this._onCentering.emit(this._elementRef.nativeElement.clientHeight),{injector:this._injector})),this._initialized=!0}ngOnDestroy(){clearTimeout(this._fallbackTimer),this._eventCleanups?.forEach(Ye=>Ye()),this._dirChangeSubscription.unsubscribe()}_bindTransitionEvents(){this._ngZone.runOutsideAngular(()=>{const Ye=this._elementRef.nativeElement,Nt=Et=>{Et.target===this._contentElement?.nativeElement&&(this._elementRef.nativeElement.classList.remove("mat-tab-body-animating"),"transitionend"===Et.type&&this._transitionDone())};this._eventCleanups=[this._renderer.listen(Ye,"transitionstart",Et=>{Et.target===this._contentElement?.nativeElement&&(this._elementRef.nativeElement.classList.add("mat-tab-body-animating"),this._transitionStarted())}),this._renderer.listen(Ye,"transitionend",Nt),this._renderer.listen(Ye,"transitioncancel",Nt)]})}_transitionStarted(){clearTimeout(this._fallbackTimer);const Ye="center"===this._position;this._beforeCentering.emit(Ye),Ye&&this._onCentering.emit(this._elementRef.nativeElement.clientHeight)}_transitionDone(){"center"===this._position?this._onCentered.emit():"center"===this._previousPosition&&this._afterLeavingCenter.emit()}_setActiveClass(Ye){this._elementRef.nativeElement.classList.toggle("mat-mdc-tab-body-active",Ye)}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_isCenterPosition(){return 0===this._positionIndex}_computePositionAnimationState(Ye=this._getLayoutDirection()){this._previousPosition=this._position,this._position=this._positionIndex<0?"ltr"==Ye?"left":"right":this._positionIndex>0?"ltr"==Ye?"right":"left":"center",this._animationsDisabled()?this._simulateTransitionEvents():this._initialized&&("center"===this._position||"center"===this._previousPosition)&&(clearTimeout(this._fallbackTimer),this._fallbackTimer=this._ngZone.runOutsideAngular(()=>setTimeout(()=>this._simulateTransitionEvents(),100)))}_simulateTransitionEvents(){this._transitionStarted(),(0,m.mal)(()=>this._transitionDone(),{injector:this._injector})}_animationsDisabled(){return this._diAnimationsDisabled||"0ms"===this.animationDuration||"0s"===this.animationDuration}static \u0275fac=function(Nt){return new(Nt||Zt)};static \u0275cmp=m.VBU({type:Zt,selectors:[["mat-tab-body"]],viewQuery:function(Nt,Et){if(1&Nt&&(m.GBs(te,5),m.GBs(pe,5)),2&Nt){let Jt;m.mGM(Jt=m.lsd())&&(Et._portalHost=Jt.first),m.mGM(Jt=m.lsd())&&(Et._contentElement=Jt.first)}},hostAttrs:[1,"mat-mdc-tab-body"],hostVars:1,hostBindings:function(Nt,Et){2&Nt&&m.BMQ("inert","center"===Et._position?null:"")},inputs:{_content:[0,"content","_content"],animationDuration:"animationDuration",preserveContent:"preserveContent",position:"position"},outputs:{_onCentering:"_onCentering",_beforeCentering:"_beforeCentering",_onCentered:"_onCentered"},decls:3,vars:6,consts:[["content",""],["cdkScrollable","",1,"mat-mdc-tab-body-content"],["matTabBodyHost",""]],template:function(Nt,Et){1&Nt&&(m.j41(0,"div",1,0),m.DNE(2,be,0,0,"ng-template",2),m.k0s()),2&Nt&&m.AVh("mat-tab-body-content-left","left"===Et._position)("mat-tab-body-content-right","right"===Et._position)("mat-tab-body-content-can-animate","center"===Et._position||"center"===Et._previousPosition)},dependencies:[te,d.uv],styles:[".mat-mdc-tab-body{top:0;left:0;right:0;bottom:0;position:absolute;display:block;overflow:hidden;outline:0;flex-basis:100%}.mat-mdc-tab-body.mat-mdc-tab-body-active{position:relative;overflow-x:hidden;overflow-y:auto;z-index:1;flex-grow:1}.mat-mdc-tab-group.mat-mdc-tab-group-dynamic-height .mat-mdc-tab-body.mat-mdc-tab-body-active{overflow-y:hidden}.mat-mdc-tab-body-content{height:100%;overflow:auto;transform:none;visibility:hidden}.mat-tab-body-animating>.mat-mdc-tab-body-content,.mat-mdc-tab-body-active>.mat-mdc-tab-body-content{visibility:visible}.mat-tab-body-animating>.mat-mdc-tab-body-content{min-height:1px}.mat-mdc-tab-group-dynamic-height .mat-mdc-tab-body-content{overflow:hidden}.mat-tab-body-content-can-animate{transition:transform var(--mat-tab-animation-duration) 1ms cubic-bezier(0.35, 0, 0.25, 1)}.mat-mdc-tab-body-wrapper._mat-animation-noopable .mat-tab-body-content-can-animate{transition:none}.mat-tab-body-content-left{transform:translate3d(-100%, 0, 0)}.mat-tab-body-content-right{transform:translate3d(100%, 0, 0)}\n"],encapsulation:2})}return Zt})(),se=(()=>{class Zt{_elementRef=(0,w.WQX)(m.aKT);_changeDetectorRef=(0,w.WQX)(P.gRc);_ngZone=(0,w.WQX)(m.SKi);_tabsSubscription=q.yU.EMPTY;_tabLabelSubscription=q.yU.EMPTY;_tabBodySubscription=q.yU.EMPTY;_diAnimationsDisabled=(0,n.Rc)();_allTabs;_tabBodies;_tabBodyWrapper;_tabHeader;_tabs=new m.rOR;_indexToSelect=0;_lastFocusedTabIndex=null;_tabBodyWrapperHeight=0;color;get fitInkBarToContent(){return this._fitInkBarToContent}set fitInkBarToContent(Ye){this._fitInkBarToContent=Ye,this._changeDetectorRef.markForCheck()}_fitInkBarToContent=!1;stretchTabs=!0;alignTabs=null;dynamicHeight=!1;get selectedIndex(){return this._selectedIndex}set selectedIndex(Ye){this._indexToSelect=isNaN(Ye)?null:Ye}_selectedIndex=null;headerPosition="above";get animationDuration(){return this._animationDuration}set animationDuration(Ye){const Nt=Ye+"";this._animationDuration=/^\d+$/.test(Nt)?Ye+"ms":Nt}_animationDuration;get contentTabIndex(){return this._contentTabIndex}set contentTabIndex(Ye){this._contentTabIndex=isNaN(Ye)?null:Ye}_contentTabIndex;disablePagination=!1;disableRipple=!1;preserveContent=!1;get backgroundColor(){return this._backgroundColor}set backgroundColor(Ye){const Nt=this._elementRef.nativeElement.classList;Nt.remove("mat-tabs-with-background",`mat-background-${this.backgroundColor}`),Ye&&Nt.add("mat-tabs-with-background",`mat-background-${Ye}`),this._backgroundColor=Ye}_backgroundColor;ariaLabel;ariaLabelledby;selectedIndexChange=new m.bkB;focusChange=new m.bkB;animationDone=new m.bkB;selectedTabChange=new m.bkB(!0);_groupId;_isServer=!(0,w.WQX)(g.O).isBrowser;constructor(){const Ye=(0,w.WQX)(le,{optional:!0});this._groupId=(0,w.WQX)(t.g).getId("mat-tab-group-"),this.animationDuration=Ye&&Ye.animationDuration?Ye.animationDuration:"500ms",this.disablePagination=!(!Ye||null==Ye.disablePagination)&&Ye.disablePagination,this.dynamicHeight=!(!Ye||null==Ye.dynamicHeight)&&Ye.dynamicHeight,null!=Ye?.contentTabIndex&&(this.contentTabIndex=Ye.contentTabIndex),this.preserveContent=!!Ye?.preserveContent,this.fitInkBarToContent=!(!Ye||null==Ye.fitInkBarToContent)&&Ye.fitInkBarToContent,this.stretchTabs=!Ye||null==Ye.stretchTabs||Ye.stretchTabs,this.alignTabs=Ye&&null!=Ye.alignTabs?Ye.alignTabs:null}ngAfterContentChecked(){const Ye=this._indexToSelect=this._clampTabIndex(this._indexToSelect);if(this._selectedIndex!=Ye){const Nt=null==this._selectedIndex;if(!Nt){this.selectedTabChange.emit(this._createChangeEvent(Ye));const Et=this._tabBodyWrapper.nativeElement;Et.style.minHeight=Et.clientHeight+"px"}Promise.resolve().then(()=>{this._tabs.forEach((Et,Jt)=>Et.isActive=Jt===Ye),Nt||(this.selectedIndexChange.emit(Ye),this._tabBodyWrapper.nativeElement.style.minHeight="")})}this._tabs.forEach((Nt,Et)=>{Nt.position=Et-Ye,null!=this._selectedIndex&&0==Nt.position&&!Nt.origin&&(Nt.origin=Ye-this._selectedIndex)}),this._selectedIndex!==Ye&&(this._selectedIndex=Ye,this._lastFocusedTabIndex=null,this._changeDetectorRef.markForCheck())}ngAfterContentInit(){this._subscribeToAllTabChanges(),this._subscribeToTabLabels(),this._tabsSubscription=this._tabs.changes.subscribe(()=>{const Ye=this._clampTabIndex(this._indexToSelect);if(Ye===this._selectedIndex){const Nt=this._tabs.toArray();let Et;for(let Jt=0;Jt{Nt[Ye].isActive=!0,this.selectedTabChange.emit(this._createChangeEvent(Ye))})}this._changeDetectorRef.markForCheck()})}ngAfterViewInit(){this._tabBodySubscription=this._tabBodies.changes.subscribe(()=>this._bodyCentered(!0))}_subscribeToAllTabChanges(){this._allTabs.changes.pipe((0,me.Z)(this._allTabs)).subscribe(Ye=>{this._tabs.reset(Ye.filter(Nt=>Nt._closestTabGroup===this||!Nt._closestTabGroup)),this._tabs.notifyOnChanges()})}ngOnDestroy(){this._tabs.destroy(),this._tabsSubscription.unsubscribe(),this._tabLabelSubscription.unsubscribe(),this._tabBodySubscription.unsubscribe()}realignInkBar(){this._tabHeader&&this._tabHeader._alignInkBarToSelectedTab()}updatePagination(){this._tabHeader&&this._tabHeader.updatePagination()}focusTab(Ye){const Nt=this._tabHeader;Nt&&(Nt.focusIndex=Ye)}_focusChanged(Ye){this._lastFocusedTabIndex=Ye,this.focusChange.emit(this._createChangeEvent(Ye))}_createChangeEvent(Ye){const Nt=new ke;return Nt.index=Ye,this._tabs&&this._tabs.length&&(Nt.tab=this._tabs.toArray()[Ye]),Nt}_subscribeToTabLabels(){this._tabLabelSubscription&&this._tabLabelSubscription.unsubscribe(),this._tabLabelSubscription=(0,G.h)(...this._tabs.map(Ye=>Ye._stateChanges)).subscribe(()=>this._changeDetectorRef.markForCheck())}_clampTabIndex(Ye){return Math.min(this._tabs.length-1,Math.max(Ye||0,0))}_getTabLabelId(Ye,Nt){return Ye.id||`${this._groupId}-label-${Nt}`}_getTabContentId(Ye){return`${this._groupId}-content-${Ye}`}_setTabBodyWrapperHeight(Ye){if(!this.dynamicHeight||!this._tabBodyWrapperHeight)return void(this._tabBodyWrapperHeight=Ye);const Nt=this._tabBodyWrapper.nativeElement;Nt.style.height=this._tabBodyWrapperHeight+"px",this._tabBodyWrapper.nativeElement.offsetHeight&&(Nt.style.height=Ye+"px")}_removeTabBodyWrapperHeight(){const Ye=this._tabBodyWrapper.nativeElement;this._tabBodyWrapperHeight=Ye.clientHeight,Ye.style.height="",this._ngZone.run(()=>this.animationDone.emit())}_handleClick(Ye,Nt,Et){Nt.focusIndex=Et,Ye.disabled||(this.selectedIndex=Et)}_getTabIndex(Ye){return Ye===(this._lastFocusedTabIndex??this.selectedIndex)?0:-1}_tabFocusChanged(Ye,Nt){Ye&&"mouse"!==Ye&&"touch"!==Ye&&(this._tabHeader.focusIndex=Nt)}_bodyCentered(Ye){Ye&&this._tabBodies?.forEach((Nt,Et)=>Nt._setActiveClass(Et===this._selectedIndex))}_animationsDisabled(){return this._diAnimationsDisabled||"0"===this.animationDuration||"0ms"===this.animationDuration}static \u0275fac=function(Nt){return new(Nt||Zt)};static \u0275cmp=m.VBU({type:Zt,selectors:[["mat-tab-group"]],contentQueries:function(Nt,Et,Jt){if(1&Nt&&m.wni(Jt,ct,5),2&Nt){let qe;m.mGM(qe=m.lsd())&&(Et._allTabs=qe)}},viewQuery:function(Nt,Et){if(1&Nt&&(m.GBs(Be,5),m.GBs(_e,5),m.GBs(ce,5)),2&Nt){let Jt;m.mGM(Jt=m.lsd())&&(Et._tabBodyWrapper=Jt.first),m.mGM(Jt=m.lsd())&&(Et._tabHeader=Jt.first),m.mGM(Jt=m.lsd())&&(Et._tabBodies=Jt)}},hostAttrs:[1,"mat-mdc-tab-group"],hostVars:11,hostBindings:function(Nt,Et){2&Nt&&(m.BMQ("mat-align-tabs",Et.alignTabs),m.HbH("mat-"+(Et.color||"primary")),m.xc7("--mat-tab-animation-duration",Et.animationDuration),m.AVh("mat-mdc-tab-group-dynamic-height",Et.dynamicHeight)("mat-mdc-tab-group-inverted-header","below"===Et.headerPosition)("mat-mdc-tab-group-stretch-tabs",Et.stretchTabs))},inputs:{color:"color",fitInkBarToContent:[2,"fitInkBarToContent","fitInkBarToContent",P.L39],stretchTabs:[2,"mat-stretch-tabs","stretchTabs",P.L39],alignTabs:[0,"mat-align-tabs","alignTabs"],dynamicHeight:[2,"dynamicHeight","dynamicHeight",P.L39],selectedIndex:[2,"selectedIndex","selectedIndex",P.Udg],headerPosition:"headerPosition",animationDuration:"animationDuration",contentTabIndex:[2,"contentTabIndex","contentTabIndex",P.Udg],disablePagination:[2,"disablePagination","disablePagination",P.L39],disableRipple:[2,"disableRipple","disableRipple",P.L39],preserveContent:[2,"preserveContent","preserveContent",P.L39],backgroundColor:"backgroundColor",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"]},outputs:{selectedIndexChange:"selectedIndexChange",focusChange:"focusChange",animationDone:"animationDone",selectedTabChange:"selectedTabChange"},exportAs:["matTabGroup"],features:[m.Jv_([{provide:Ht,useExisting:Zt}])],ngContentSelectors:x,decls:9,vars:8,consts:[["tabHeader",""],["tabBodyWrapper",""],["tabNode",""],[3,"indexFocused","selectFocusedIndex","selectedIndex","disableRipple","disablePagination","aria-label","aria-labelledby"],["role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",1,"mdc-tab","mat-mdc-tab","mat-focus-indicator",3,"id","mdc-tab--active","class","disabled","fitInkBarToContent"],[1,"mat-mdc-tab-body-wrapper"],["role","tabpanel",3,"id","class","content","position","animationDuration","preserveContent"],["role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",1,"mdc-tab","mat-mdc-tab","mat-focus-indicator",3,"click","cdkFocusChange","id","disabled","fitInkBarToContent"],[1,"mdc-tab__ripple"],["mat-ripple","",1,"mat-mdc-tab-ripple",3,"matRippleTrigger","matRippleDisabled"],[1,"mdc-tab__content"],[1,"mdc-tab__text-label"],[3,"cdkPortalOutlet"],["role","tabpanel",3,"_onCentered","_onCentering","_beforeCentering","id","content","position","animationDuration","preserveContent"]],template:function(Nt,Et){if(1&Nt){const Jt=m.RV6();m.NAR(),m.j41(0,"mat-tab-header",3,0),m.bIt("indexFocused",function($e){return w.eBV(Jt),w.Njj(Et._focusChanged($e))})("selectFocusedIndex",function($e){return w.eBV(Jt),w.Njj(Et.selectedIndex=$e)}),m.Z7z(2,ge,8,17,"div",4,m.fX1),m.k0s(),m.nVh(4,ve,1,0),m.j41(5,"div",5,1),m.Z7z(7,Oe,1,10,"mat-tab-body",6,m.fX1),m.k0s()}2&Nt&&(m.Y8G("selectedIndex",Et.selectedIndex||0)("disableRipple",Et.disableRipple)("disablePagination",Et.disablePagination),m.jOp("aria-label",Et.ariaLabel)("aria-labelledby",Et.ariaLabelledby),m.R7$(2),m.Dyx(Et._tabs),m.R7$(2),m.vxM(Et._isServer?4:-1),m.R7$(),m.AVh("_mat-animation-noopable",Et._animationsDisabled()),m.R7$(2),m.Dyx(Et._tabs))},dependencies:[Rt,ht,i.vR,A.r6,o.I3,ce],styles:['.mdc-tab{min-width:90px;padding:0 24px;display:flex;flex:1 0 auto;justify-content:center;box-sizing:border-box;border:none;outline:none;text-align:center;white-space:nowrap;cursor:pointer;z-index:1;touch-action:manipulation}.mdc-tab__content{display:flex;align-items:center;justify-content:center;height:inherit;pointer-events:none}.mdc-tab__text-label{transition:150ms color linear;display:inline-block;line-height:1;z-index:2}.mdc-tab--active .mdc-tab__text-label{transition-delay:100ms}._mat-animation-noopable .mdc-tab__text-label{transition:none}.mdc-tab-indicator{display:flex;position:absolute;top:0;left:0;justify-content:center;width:100%;height:100%;pointer-events:none;z-index:1}.mdc-tab-indicator__content{transition:var(--mat-tab-animation-duration, 250ms) transform cubic-bezier(0.4, 0, 0.2, 1);transform-origin:left;opacity:0}.mdc-tab-indicator__content--underline{align-self:flex-end;box-sizing:border-box;width:100%;border-top-style:solid}.mdc-tab-indicator--active .mdc-tab-indicator__content{opacity:1}._mat-animation-noopable .mdc-tab-indicator__content,.mdc-tab-indicator--no-transition .mdc-tab-indicator__content{transition:none}.mat-mdc-tab-ripple.mat-mdc-tab-ripple{position:absolute;top:0;left:0;bottom:0;right:0;pointer-events:none}.mat-mdc-tab{-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none;background:none;height:var(--mat-tab-container-height, 48px);font-family:var(--mat-tab-label-text-font, var(--mat-sys-title-small-font));font-size:var(--mat-tab-label-text-size, var(--mat-sys-title-small-size));letter-spacing:var(--mat-tab-label-text-tracking, var(--mat-sys-title-small-tracking));line-height:var(--mat-tab-label-text-line-height, var(--mat-sys-title-small-line-height));font-weight:var(--mat-tab-label-text-weight, var(--mat-sys-title-small-weight))}.mat-mdc-tab.mdc-tab{flex-grow:0}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-indicator-color, var(--mat-sys-primary));border-top-width:var(--mat-tab-active-indicator-height, 2px);border-radius:var(--mat-tab-active-indicator-shape, 0)}.mat-mdc-tab:hover .mdc-tab__text-label{color:var(--mat-tab-inactive-hover-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab:focus .mdc-tab__text-label{color:var(--mat-tab-inactive-focus-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab.mdc-tab--active .mdc-tab__text-label{color:var(--mat-tab-active-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab.mdc-tab--active .mdc-tab__ripple::before,.mat-mdc-tab.mdc-tab--active .mat-ripple-element{background-color:var(--mat-tab-active-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab__text-label{color:var(--mat-tab-active-hover-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-hover-indicator-color, var(--mat-sys-primary))}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab__text-label{color:var(--mat-tab-active-focus-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-focus-indicator-color, var(--mat-sys-primary))}.mat-mdc-tab.mat-mdc-tab-disabled{opacity:.4;pointer-events:none}.mat-mdc-tab.mat-mdc-tab-disabled .mdc-tab__content{pointer-events:none}.mat-mdc-tab.mat-mdc-tab-disabled .mdc-tab__ripple::before,.mat-mdc-tab.mat-mdc-tab-disabled .mat-ripple-element{background-color:var(--mat-tab-disabled-ripple-color, var(--mat-sys-on-surface-variant))}.mat-mdc-tab .mdc-tab__ripple::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;pointer-events:none;background-color:var(--mat-tab-inactive-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab .mdc-tab__text-label{color:var(--mat-tab-inactive-label-text-color, var(--mat-sys-on-surface));display:inline-flex;align-items:center}.mat-mdc-tab .mdc-tab__content{position:relative;pointer-events:auto}.mat-mdc-tab:hover .mdc-tab__ripple::before{opacity:.04}.mat-mdc-tab.cdk-program-focused .mdc-tab__ripple::before,.mat-mdc-tab.cdk-keyboard-focused .mdc-tab__ripple::before{opacity:.12}.mat-mdc-tab .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-inactive-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs>.mat-mdc-tab-header .mat-mdc-tab{flex-grow:1}.mat-mdc-tab-group{display:flex;flex-direction:column;max-width:100%}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination{background-color:var(--mat-tab-background-color)}.mat-mdc-tab-group.mat-tabs-with-background.mat-primary>.mat-mdc-tab-header .mat-mdc-tab .mdc-tab__text-label{color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background.mat-primary>.mat-mdc-tab-header .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-header .mat-mdc-tab:not(.mdc-tab--active) .mdc-tab__text-label{color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-header .mat-mdc-tab:not(.mdc-tab--active) .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-focus-indicator::before,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-focus-indicator::before{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-ripple-element,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mdc-tab__ripple::before,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mdc-tab__ripple::before{background-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron{color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-mdc-tab-group-inverted-header{flex-direction:column-reverse}.mat-mdc-tab-group.mat-mdc-tab-group-inverted-header .mdc-tab-indicator__content--underline{align-self:flex-start}.mat-mdc-tab-body-wrapper{position:relative;overflow:hidden;display:flex;transition:height 500ms cubic-bezier(0.35, 0, 0.25, 1)}.mat-mdc-tab-body-wrapper._mat-animation-noopable{transition:none !important;animation:none !important}\n'],encapsulation:2})}return Zt})();class ke{index;tab}let Ue=(()=>{class Zt extends kt{_focusedItem=(0,w.vPA)(null);get fitInkBarToContent(){return this._fitInkBarToContent.value}set fitInkBarToContent(Ye){this._fitInkBarToContent.next(Ye),this._changeDetectorRef.markForCheck()}_fitInkBarToContent=new K.t(!1);stretchTabs=!0;get animationDuration(){return this._animationDuration}set animationDuration(Ye){const Nt=Ye+"";this._animationDuration=/^\d+$/.test(Nt)?Ye+"ms":Nt}_animationDuration;_items;get backgroundColor(){return this._backgroundColor}set backgroundColor(Ye){const Nt=this._elementRef.nativeElement.classList;Nt.remove("mat-tabs-with-background",`mat-background-${this.backgroundColor}`),Ye&&Nt.add("mat-tabs-with-background",`mat-background-${Ye}`),this._backgroundColor=Ye}_backgroundColor;get disableRipple(){return this._disableRipple()}set disableRipple(Ye){this._disableRipple.set(Ye)}_disableRipple=(0,w.vPA)(!1);color="primary";tabPanel;_tabListContainer;_tabList;_tabListInner;_nextPaginator;_previousPaginator;_inkBar;constructor(){const Ye=(0,w.WQX)(le,{optional:!0});super(),this.disablePagination=!(!Ye||null==Ye.disablePagination)&&Ye.disablePagination,this.fitInkBarToContent=!(!Ye||null==Ye.fitInkBarToContent)&&Ye.fitInkBarToContent,this.stretchTabs=!Ye||null==Ye.stretchTabs||Ye.stretchTabs}_itemSelected(){}ngAfterContentInit(){this._inkBar=new Z(this._items),this._items.changes.pipe((0,me.Z)(null),(0,D.Q)(this._destroyed)).subscribe(()=>this.updateActiveLink()),super.ngAfterContentInit(),this._keyManager.change.pipe((0,me.Z)(null),(0,D.Q)(this._destroyed)).subscribe(()=>this._focusedItem.set(this._keyManager?.activeItem||null))}ngAfterViewInit(){super.ngAfterViewInit()}updateActiveLink(){if(!this._items)return;const Ye=this._items.toArray();for(let Nt=0;Nt.mat-mdc-tab-link-container .mat-mdc-tab-links{justify-content:center}[mat-align-tabs=end]>.mat-mdc-tab-link-container .mat-mdc-tab-links{justify-content:flex-end}.cdk-drop-list .mat-mdc-tab-links,.mat-mdc-tab-links.cdk-drop-list{min-height:var(--mat-tab-container-height, 48px)}.mat-mdc-tab-link-container{display:flex;flex-grow:1;overflow:hidden;z-index:1;border-bottom-style:solid;border-bottom-width:var(--mat-tab-divider-height, 1px);border-bottom-color:var(--mat-tab-divider-color, var(--mat-sys-surface-variant))}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination{background-color:var(--mat-tab-background-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background.mat-primary>.mat-mdc-tab-link-container .mat-mdc-tab-link .mdc-tab__text-label{color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background.mat-primary>.mat-mdc-tab-link-container .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-link-container .mat-mdc-tab-link:not(.mdc-tab--active) .mdc-tab__text-label{color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-link-container .mat-mdc-tab-link:not(.mdc-tab--active) .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-focus-indicator::before,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-focus-indicator::before{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mdc-tab__ripple::before,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mdc-tab__ripple::before{background-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron{color:var(--mat-tab-foreground-color)}\n"],encapsulation:2})}return Zt})(),Ne=(()=>{class Zt extends J{_tabNavBar=(0,w.WQX)(Ue);elementRef=(0,w.WQX)(m.aKT);_focusMonitor=(0,w.WQX)(i.FN);_destroyed=new U.B;_isActive=!1;_tabIndex=(0,M.EW)(()=>this._tabNavBar._focusedItem()===this?this.tabIndex:-1);get active(){return this._isActive}set active(Ye){Ye!==this._isActive&&(this._isActive=Ye,this._tabNavBar.updateActiveLink())}disabled=!1;get disableRipple(){return this._disableRipple()}set disableRipple(Ye){this._disableRipple.set(Ye)}_disableRipple=(0,w.vPA)(!1);tabIndex=0;rippleConfig;get rippleDisabled(){return this.disabled||this.disableRipple||this._tabNavBar.disableRipple||!!this.rippleConfig.disabled}id=(0,w.WQX)(t.g).getId("mat-tab-link-");constructor(){super(),(0,w.WQX)(f.l).load(h.A);const Ye=(0,w.WQX)(A.$E,{optional:!0}),Nt=(0,w.WQX)(new P.ES_("tabindex"),{optional:!0});this.rippleConfig=Ye||{},this.tabIndex=null==Nt?0:parseInt(Nt)||0,(0,n.Rc)()&&(this.rippleConfig.animation={enterDuration:0,exitDuration:0}),this._tabNavBar._fitInkBarToContent.pipe((0,D.Q)(this._destroyed)).subscribe(Et=>{this.fitInkBarToContent=Et})}focus(){this.elementRef.nativeElement.focus()}ngAfterViewInit(){this._focusMonitor.monitor(this.elementRef)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete(),super.ngOnDestroy(),this._focusMonitor.stopMonitoring(this.elementRef)}_handleFocus(){this._tabNavBar.focusIndex=this._tabNavBar._items.toArray().indexOf(this)}_handleKeydown(Ye){(Ye.keyCode===e.t6||Ye.keyCode===e.Fm)&&(this.disabled?Ye.preventDefault():this._tabNavBar.tabPanel&&(Ye.keyCode===e.t6&&Ye.preventDefault(),this.elementRef.nativeElement.click()))}_getAriaControls(){return this._tabNavBar.tabPanel?this._tabNavBar.tabPanel?.id:this.elementRef.nativeElement.getAttribute("aria-controls")}_getAriaSelected(){return this._tabNavBar.tabPanel?this.active?"true":"false":this.elementRef.nativeElement.getAttribute("aria-selected")}_getAriaCurrent(){return this.active&&!this._tabNavBar.tabPanel?"page":null}_getRole(){return this._tabNavBar.tabPanel?"tab":this.elementRef.nativeElement.getAttribute("role")}static \u0275fac=function(Nt){return new(Nt||Zt)};static \u0275cmp=m.VBU({type:Zt,selectors:[["","mat-tab-link",""],["","matTabLink",""]],hostAttrs:[1,"mdc-tab","mat-mdc-tab-link","mat-focus-indicator"],hostVars:11,hostBindings:function(Nt,Et){1&Nt&&m.bIt("focus",function(){return Et._handleFocus()})("keydown",function(qe){return Et._handleKeydown(qe)}),2&Nt&&(m.BMQ("aria-controls",Et._getAriaControls())("aria-current",Et._getAriaCurrent())("aria-disabled",Et.disabled)("aria-selected",Et._getAriaSelected())("id",Et.id)("tabIndex",Et._tabIndex())("role",Et._getRole()),m.AVh("mat-mdc-tab-disabled",Et.disabled)("mdc-tab--active",Et.active))},inputs:{active:[2,"active","active",P.L39],disabled:[2,"disabled","disabled",P.L39],disableRipple:[2,"disableRipple","disableRipple",P.L39],tabIndex:[2,"tabIndex","tabIndex",Ye=>null==Ye?0:(0,P.Udg)(Ye)],id:"id"},exportAs:["matTabLink"],features:[m.Vt3],attrs:dt,ngContentSelectors:x,decls:5,vars:2,consts:[[1,"mdc-tab__ripple"],["mat-ripple","",1,"mat-mdc-tab-ripple",3,"matRippleTrigger","matRippleDisabled"],[1,"mdc-tab__content"],[1,"mdc-tab__text-label"]],template:function(Nt,Et){1&Nt&&(m.NAR(),m.nrm(0,"span",0)(1,"div",1),m.j41(2,"span",2)(3,"span",3),m.SdG(4),m.k0s()()),2&Nt&&(m.R7$(),m.Y8G("matRippleTrigger",Et.elementRef.nativeElement)("matRippleDisabled",Et.rippleDisabled))},dependencies:[A.r6],styles:['.mat-mdc-tab-link{-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none;background:none;height:var(--mat-tab-container-height, 48px);font-family:var(--mat-tab-label-text-font, var(--mat-sys-title-small-font));font-size:var(--mat-tab-label-text-size, var(--mat-sys-title-small-size));letter-spacing:var(--mat-tab-label-text-tracking, var(--mat-sys-title-small-tracking));line-height:var(--mat-tab-label-text-line-height, var(--mat-sys-title-small-line-height));font-weight:var(--mat-tab-label-text-weight, var(--mat-sys-title-small-weight))}.mat-mdc-tab-link.mdc-tab{flex-grow:0}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-indicator-color, var(--mat-sys-primary));border-top-width:var(--mat-tab-active-indicator-height, 2px);border-radius:var(--mat-tab-active-indicator-shape, 0)}.mat-mdc-tab-link:hover .mdc-tab__text-label{color:var(--mat-tab-inactive-hover-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link:focus .mdc-tab__text-label{color:var(--mat-tab-inactive-focus-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link.mdc-tab--active .mdc-tab__text-label{color:var(--mat-tab-active-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link.mdc-tab--active .mdc-tab__ripple::before,.mat-mdc-tab-link.mdc-tab--active .mat-ripple-element{background-color:var(--mat-tab-active-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link.mdc-tab--active:hover .mdc-tab__text-label{color:var(--mat-tab-active-hover-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link.mdc-tab--active:hover .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-hover-indicator-color, var(--mat-sys-primary))}.mat-mdc-tab-link.mdc-tab--active:focus .mdc-tab__text-label{color:var(--mat-tab-active-focus-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link.mdc-tab--active:focus .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-focus-indicator-color, var(--mat-sys-primary))}.mat-mdc-tab-link.mat-mdc-tab-disabled{opacity:.4;pointer-events:none}.mat-mdc-tab-link.mat-mdc-tab-disabled .mdc-tab__content{pointer-events:none}.mat-mdc-tab-link.mat-mdc-tab-disabled .mdc-tab__ripple::before,.mat-mdc-tab-link.mat-mdc-tab-disabled .mat-ripple-element{background-color:var(--mat-tab-disabled-ripple-color, var(--mat-sys-on-surface-variant))}.mat-mdc-tab-link .mdc-tab__ripple::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;pointer-events:none;background-color:var(--mat-tab-inactive-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link .mdc-tab__text-label{color:var(--mat-tab-inactive-label-text-color, var(--mat-sys-on-surface));display:inline-flex;align-items:center}.mat-mdc-tab-link .mdc-tab__content{position:relative;pointer-events:auto}.mat-mdc-tab-link:hover .mdc-tab__ripple::before{opacity:.04}.mat-mdc-tab-link.cdk-program-focused .mdc-tab__ripple::before,.mat-mdc-tab-link.cdk-keyboard-focused .mdc-tab__ripple::before{opacity:.12}.mat-mdc-tab-link .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-inactive-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab-header.mat-mdc-tab-nav-bar-stretch-tabs .mat-mdc-tab-link{flex-grow:1}.mat-mdc-tab-link::before{margin:5px}@media(max-width: 599px){.mat-mdc-tab-link{min-width:72px}}\n'],encapsulation:2,changeDetection:0})}return Zt})(),Kt=(()=>{class Zt{id=(0,w.WQX)(t.g).getId("mat-tab-nav-panel-");_activeTabId;static \u0275fac=function(Nt){return new(Nt||Zt)};static \u0275cmp=m.VBU({type:Zt,selectors:[["mat-tab-nav-panel"]],hostAttrs:["role","tabpanel",1,"mat-mdc-tab-nav-panel"],hostVars:2,hostBindings:function(Nt,Et){2&Nt&&m.BMQ("aria-labelledby",Et._activeTabId)("id",Et.id)},inputs:{id:"id"},exportAs:["matTabNavPanel"],ngContentSelectors:x,decls:1,vars:0,template:function(Nt,Et){1&Nt&&(m.NAR(),m.SdG(0))},encapsulation:2,changeDetection:0})}return Zt})(),yt=(()=>{class Zt{static \u0275fac=function(Nt){return new(Nt||Zt)};static \u0275mod=m.$C({type:Zt});static \u0275inj=w.G2t({imports:[k.y,k.y]})}return Zt})()},96867:function(Ae,ee,l){!function(i,t){"use strict";function p(D,n){if(!D)throw new Error(n||"Assertion failed")}function S(D,n){D.super_=n;var o=function(){};o.prototype=n.prototype,D.prototype=new o,D.prototype.constructor=D}function c(D,n,o){if(c.isBN(D))return D;this.negative=0,this.words=null,this.length=0,this.red=null,null!==D&&(("le"===n||"be"===n)&&(o=n,n=10),this._init(D||0,n||10,o||"be"))}var e;"object"==typeof i?i.exports=c:t.BN=c,c.BN=c,c.wordSize=26;try{e=typeof window<"u"&&typeof window.Buffer<"u"?window.Buffer:l(78982).Buffer}catch{}function T(D,n){var o=D.charCodeAt(n);return o>=65&&o<=70?o-55:o>=97&&o<=102?o-87:o-48&15}function g(D,n,o){var f=T(D,o);return o-1>=n&&(f|=T(D,o-1)<<4),f}function d(D,n,o,f){for(var h=0,b=Math.min(D.length,o),A=n;A=49?k-49+10:k>=17?k-17+10:k}return h}c.isBN=function(n){return n instanceof c||null!==n&&"object"==typeof n&&n.constructor.wordSize===c.wordSize&&Array.isArray(n.words)},c.max=function(n,o){return n.cmp(o)>0?n:o},c.min=function(n,o){return n.cmp(o)<0?n:o},c.prototype._init=function(n,o,f){if("number"==typeof n)return this._initNumber(n,o,f);if("object"==typeof n)return this._initArray(n,o,f);"hex"===o&&(o=16),p(o===(0|o)&&o>=2&&o<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[b]|=(A=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-k&67108863,(k+=24)>=26&&(k-=26,b++);else if("le"===f)for(h=0,b=0;h>>26-k&67108863,(k+=24)>=26&&(k-=26,b++);return this.strip()},c.prototype._parseHex=function(n,o,f){this.length=Math.ceil((n.length-o)/6),this.words=new Array(this.length);for(var h=0;h=o;h-=2)k=g(n,o,h)<=18?(b-=18,this.words[A+=1]|=k>>>26):b+=8;else for(h=(n.length-o)%2==0?o+1:o;h=18?(b-=18,this.words[A+=1]|=k>>>26):b+=8;this.strip()},c.prototype._parseBase=function(n,o,f){this.words=[0],this.length=1;for(var h=0,b=1;b<=67108863;b*=o)h++;h--,b=b/o|0;for(var A=n.length-f,k=A%h,x=Math.min(A,A-k)+f,r=0,_=f;_1&&0===this.words[this.length-1];)this.length--;return this._normSign()},c.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},c.prototype.inspect=function(){return(this.red?""};var w=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],m=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],P=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function j(D,n,o){o.negative=n.negative^D.negative;var f=D.length+n.length|0;o.length=f,f=f-1|0;var h=0|D.words[0],b=0|n.words[0],A=h*b,x=A/67108864|0;o.words[0]=67108863&A;for(var r=1;r>>26,W=67108863&x,I=Math.min(r,n.length-1),B=Math.max(0,r-D.length+1);B<=I;B++)_+=(A=(h=0|D.words[r-B|0])*(b=0|n.words[B])+W)/67108864|0,W=67108863&A;o.words[r]=0|W,x=0|_}return 0!==x?o.words[r]=0|x:o.length--,o.strip()}c.prototype.toString=function(n,o){var f;if(o=0|o||1,16===(n=n||10)||"hex"===n){f="";for(var h=0,b=0,A=0;A>>24-h&16777215,(h+=2)>=26&&(h-=26,A--),f=0!==b||A!==this.length-1?w[6-x.length]+x+f:x+f}for(0!==b&&(f=b.toString(16)+f);f.length%o!==0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}if(n===(0|n)&&n>=2&&n<=36){var r=m[n],_=P[n];f="";var W=this.clone();for(W.negative=0;!W.isZero();){var I=W.modn(_).toString(n);f=(W=W.idivn(_)).isZero()?I+f:w[r-I.length]+I+f}for(this.isZero()&&(f="0"+f);f.length%o!==0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}p(!1,"Base should be between 2 and 36")},c.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&p(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},c.prototype.toJSON=function(){return this.toString(16)},c.prototype.toBuffer=function(n,o){return p(typeof e<"u"),this.toArrayLike(e,n,o)},c.prototype.toArray=function(n,o){return this.toArrayLike(Array,n,o)},c.prototype.toArrayLike=function(n,o,f){var h=this.byteLength(),b=f||Math.max(1,h);p(h<=b,"byte array longer than desired length"),p(b>0,"Requested array length <= 0"),this.strip();var x,r,A="le"===o,k=new n(b),_=this.clone();if(A){for(r=0;!_.isZero();r++)x=_.andln(255),_.iushrn(8),k[r]=x;for(;r=4096&&(f+=13,o>>>=13),o>=64&&(f+=7,o>>>=7),o>=8&&(f+=4,o>>>=4),o>=2&&(f+=2,o>>>=2),f+o},c.prototype._zeroBits=function(n){if(0===n)return 26;var o=n,f=0;return!(8191&o)&&(f+=13,o>>>=13),!(127&o)&&(f+=7,o>>>=7),!(15&o)&&(f+=4,o>>>=4),!(3&o)&&(f+=2,o>>>=2),!(1&o)&&f++,f},c.prototype.bitLength=function(){var o=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+o},c.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,o=0;on.length?this.clone().ior(n):n.clone().ior(this)},c.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},c.prototype.iuand=function(n){var o;o=this.length>n.length?n:this;for(var f=0;fn.length?this.clone().iand(n):n.clone().iand(this)},c.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},c.prototype.iuxor=function(n){var o,f;this.length>n.length?(o=this,f=n):(o=n,f=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},c.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},c.prototype.inotn=function(n){p("number"==typeof n&&n>=0);var o=0|Math.ceil(n/26),f=n%26;this._expand(o),f>0&&o--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-f),this.strip()},c.prototype.notn=function(n){return this.clone().inotn(n)},c.prototype.setn=function(n,o){p("number"==typeof n&&n>=0);var f=n/26|0,h=n%26;return this._expand(f+1),this.words[f]=o?this.words[f]|1<n.length?(f=this,h=n):(f=n,h=this);for(var b=0,A=0;A>>26;for(;0!==b&&A>>26;if(this.length=f.length,0!==b)this.words[this.length]=b,this.length++;else if(f!==this)for(;An.length?this.clone().iadd(n):n.clone().iadd(this)},c.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var o=this.iadd(n);return n.negative=1,o._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,b,f=this.cmp(n);if(0===f)return this.negative=0,this.length=1,this.words[0]=0,this;f>0?(h=this,b=n):(h=n,b=this);for(var A=0,k=0;k>26,this.words[k]=67108863&o;for(;0!==A&&k>26,this.words[k]=67108863&o;if(0===A&&k>>13,re=0|h[1],pe=8191&re,be=re>>>13,Be=0|h[2],_e=8191&Be,ye=Be>>>13,Le=0|h[3],Ke=8191&Le,ge=Le>>>13,ve=0|h[4],Oe=8191&ve,Ee=ve>>>13,dt=0|h[5],nt=8191&dt,Ct=dt>>>13,Mt=0|h[6],lt=8191&Mt,Pe=Mt>>>13,Ht=0|h[7],ct=8191&Ht,Ce=Ht>>>13,ze=0|h[8],Z=8191&ze,J=ze>>>13,fe=0|h[9],Ie=8191&fe,ht=fe>>>13,li=0|b[0],Qt=8191&li,di=li>>>13,kt=0|b[1],Rt=8191&kt,le=kt>>>13,te=0|b[2],ce=8191&te,se=te>>>13,ke=0|b[3],Ue=8191&ke,Ne=ke>>>13,Kt=0|b[4],yt=8191&Kt,Vt=Kt>>>13,Zt=0|b[5],ti=8191&Zt,Ye=Zt>>>13,Nt=0|b[6],Et=8191&Nt,Jt=Nt>>>13,qe=0|b[7],$e=8191&qe,tt=qe>>>13,vi=0|b[8],ei=8191&vi,ci=vi>>>13,Hi=0|b[9],oi=8191&Hi,ui=Hi>>>13;f.negative=n.negative^o.negative,f.length=19;var ln=(k+(x=Math.imul(I,Qt))|0)+((8191&(r=(r=Math.imul(I,di))+Math.imul(B,Qt)|0))<<13)|0;k=((_=Math.imul(B,di))+(r>>>13)|0)+(ln>>>26)|0,ln&=67108863,x=Math.imul(pe,Qt),r=(r=Math.imul(pe,di))+Math.imul(be,Qt)|0,_=Math.imul(be,di);var nn=(k+(x=x+Math.imul(I,Rt)|0)|0)+((8191&(r=(r=r+Math.imul(I,le)|0)+Math.imul(B,Rt)|0))<<13)|0;k=((_=_+Math.imul(B,le)|0)+(r>>>13)|0)+(nn>>>26)|0,nn&=67108863,x=Math.imul(_e,Qt),r=(r=Math.imul(_e,di))+Math.imul(ye,Qt)|0,_=Math.imul(ye,di),x=x+Math.imul(pe,Rt)|0,r=(r=r+Math.imul(pe,le)|0)+Math.imul(be,Rt)|0,_=_+Math.imul(be,le)|0;var dn=(k+(x=x+Math.imul(I,ce)|0)|0)+((8191&(r=(r=r+Math.imul(I,se)|0)+Math.imul(B,ce)|0))<<13)|0;k=((_=_+Math.imul(B,se)|0)+(r>>>13)|0)+(dn>>>26)|0,dn&=67108863,x=Math.imul(Ke,Qt),r=(r=Math.imul(Ke,di))+Math.imul(ge,Qt)|0,_=Math.imul(ge,di),x=x+Math.imul(_e,Rt)|0,r=(r=r+Math.imul(_e,le)|0)+Math.imul(ye,Rt)|0,_=_+Math.imul(ye,le)|0,x=x+Math.imul(pe,ce)|0,r=(r=r+Math.imul(pe,se)|0)+Math.imul(be,ce)|0,_=_+Math.imul(be,se)|0;var zn=(k+(x=x+Math.imul(I,Ue)|0)|0)+((8191&(r=(r=r+Math.imul(I,Ne)|0)+Math.imul(B,Ue)|0))<<13)|0;k=((_=_+Math.imul(B,Ne)|0)+(r>>>13)|0)+(zn>>>26)|0,zn&=67108863,x=Math.imul(Oe,Qt),r=(r=Math.imul(Oe,di))+Math.imul(Ee,Qt)|0,_=Math.imul(Ee,di),x=x+Math.imul(Ke,Rt)|0,r=(r=r+Math.imul(Ke,le)|0)+Math.imul(ge,Rt)|0,_=_+Math.imul(ge,le)|0,x=x+Math.imul(_e,ce)|0,r=(r=r+Math.imul(_e,se)|0)+Math.imul(ye,ce)|0,_=_+Math.imul(ye,se)|0,x=x+Math.imul(pe,Ue)|0,r=(r=r+Math.imul(pe,Ne)|0)+Math.imul(be,Ue)|0,_=_+Math.imul(be,Ne)|0;var It=(k+(x=x+Math.imul(I,yt)|0)|0)+((8191&(r=(r=r+Math.imul(I,Vt)|0)+Math.imul(B,yt)|0))<<13)|0;k=((_=_+Math.imul(B,Vt)|0)+(r>>>13)|0)+(It>>>26)|0,It&=67108863,x=Math.imul(nt,Qt),r=(r=Math.imul(nt,di))+Math.imul(Ct,Qt)|0,_=Math.imul(Ct,di),x=x+Math.imul(Oe,Rt)|0,r=(r=r+Math.imul(Oe,le)|0)+Math.imul(Ee,Rt)|0,_=_+Math.imul(Ee,le)|0,x=x+Math.imul(Ke,ce)|0,r=(r=r+Math.imul(Ke,se)|0)+Math.imul(ge,ce)|0,_=_+Math.imul(ge,se)|0,x=x+Math.imul(_e,Ue)|0,r=(r=r+Math.imul(_e,Ne)|0)+Math.imul(ye,Ue)|0,_=_+Math.imul(ye,Ne)|0,x=x+Math.imul(pe,yt)|0,r=(r=r+Math.imul(pe,Vt)|0)+Math.imul(be,yt)|0,_=_+Math.imul(be,Vt)|0;var Tt=(k+(x=x+Math.imul(I,ti)|0)|0)+((8191&(r=(r=r+Math.imul(I,Ye)|0)+Math.imul(B,ti)|0))<<13)|0;k=((_=_+Math.imul(B,Ye)|0)+(r>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,x=Math.imul(lt,Qt),r=(r=Math.imul(lt,di))+Math.imul(Pe,Qt)|0,_=Math.imul(Pe,di),x=x+Math.imul(nt,Rt)|0,r=(r=r+Math.imul(nt,le)|0)+Math.imul(Ct,Rt)|0,_=_+Math.imul(Ct,le)|0,x=x+Math.imul(Oe,ce)|0,r=(r=r+Math.imul(Oe,se)|0)+Math.imul(Ee,ce)|0,_=_+Math.imul(Ee,se)|0,x=x+Math.imul(Ke,Ue)|0,r=(r=r+Math.imul(Ke,Ne)|0)+Math.imul(ge,Ue)|0,_=_+Math.imul(ge,Ne)|0,x=x+Math.imul(_e,yt)|0,r=(r=r+Math.imul(_e,Vt)|0)+Math.imul(ye,yt)|0,_=_+Math.imul(ye,Vt)|0,x=x+Math.imul(pe,ti)|0,r=(r=r+Math.imul(pe,Ye)|0)+Math.imul(be,ti)|0,_=_+Math.imul(be,Ye)|0;var Ze=(k+(x=x+Math.imul(I,Et)|0)|0)+((8191&(r=(r=r+Math.imul(I,Jt)|0)+Math.imul(B,Et)|0))<<13)|0;k=((_=_+Math.imul(B,Jt)|0)+(r>>>13)|0)+(Ze>>>26)|0,Ze&=67108863,x=Math.imul(ct,Qt),r=(r=Math.imul(ct,di))+Math.imul(Ce,Qt)|0,_=Math.imul(Ce,di),x=x+Math.imul(lt,Rt)|0,r=(r=r+Math.imul(lt,le)|0)+Math.imul(Pe,Rt)|0,_=_+Math.imul(Pe,le)|0,x=x+Math.imul(nt,ce)|0,r=(r=r+Math.imul(nt,se)|0)+Math.imul(Ct,ce)|0,_=_+Math.imul(Ct,se)|0,x=x+Math.imul(Oe,Ue)|0,r=(r=r+Math.imul(Oe,Ne)|0)+Math.imul(Ee,Ue)|0,_=_+Math.imul(Ee,Ne)|0,x=x+Math.imul(Ke,yt)|0,r=(r=r+Math.imul(Ke,Vt)|0)+Math.imul(ge,yt)|0,_=_+Math.imul(ge,Vt)|0,x=x+Math.imul(_e,ti)|0,r=(r=r+Math.imul(_e,Ye)|0)+Math.imul(ye,ti)|0,_=_+Math.imul(ye,Ye)|0,x=x+Math.imul(pe,Et)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(be,Et)|0,_=_+Math.imul(be,Jt)|0;var Ve=(k+(x=x+Math.imul(I,$e)|0)|0)+((8191&(r=(r=r+Math.imul(I,tt)|0)+Math.imul(B,$e)|0))<<13)|0;k=((_=_+Math.imul(B,tt)|0)+(r>>>13)|0)+(Ve>>>26)|0,Ve&=67108863,x=Math.imul(Z,Qt),r=(r=Math.imul(Z,di))+Math.imul(J,Qt)|0,_=Math.imul(J,di),x=x+Math.imul(ct,Rt)|0,r=(r=r+Math.imul(ct,le)|0)+Math.imul(Ce,Rt)|0,_=_+Math.imul(Ce,le)|0,x=x+Math.imul(lt,ce)|0,r=(r=r+Math.imul(lt,se)|0)+Math.imul(Pe,ce)|0,_=_+Math.imul(Pe,se)|0,x=x+Math.imul(nt,Ue)|0,r=(r=r+Math.imul(nt,Ne)|0)+Math.imul(Ct,Ue)|0,_=_+Math.imul(Ct,Ne)|0,x=x+Math.imul(Oe,yt)|0,r=(r=r+Math.imul(Oe,Vt)|0)+Math.imul(Ee,yt)|0,_=_+Math.imul(Ee,Vt)|0,x=x+Math.imul(Ke,ti)|0,r=(r=r+Math.imul(Ke,Ye)|0)+Math.imul(ge,ti)|0,_=_+Math.imul(ge,Ye)|0,x=x+Math.imul(_e,Et)|0,r=(r=r+Math.imul(_e,Jt)|0)+Math.imul(ye,Et)|0,_=_+Math.imul(ye,Jt)|0,x=x+Math.imul(pe,$e)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(be,$e)|0,_=_+Math.imul(be,tt)|0;var Fe=(k+(x=x+Math.imul(I,ei)|0)|0)+((8191&(r=(r=r+Math.imul(I,ci)|0)+Math.imul(B,ei)|0))<<13)|0;k=((_=_+Math.imul(B,ci)|0)+(r>>>13)|0)+(Fe>>>26)|0,Fe&=67108863,x=Math.imul(Ie,Qt),r=(r=Math.imul(Ie,di))+Math.imul(ht,Qt)|0,_=Math.imul(ht,di),x=x+Math.imul(Z,Rt)|0,r=(r=r+Math.imul(Z,le)|0)+Math.imul(J,Rt)|0,_=_+Math.imul(J,le)|0,x=x+Math.imul(ct,ce)|0,r=(r=r+Math.imul(ct,se)|0)+Math.imul(Ce,ce)|0,_=_+Math.imul(Ce,se)|0,x=x+Math.imul(lt,Ue)|0,r=(r=r+Math.imul(lt,Ne)|0)+Math.imul(Pe,Ue)|0,_=_+Math.imul(Pe,Ne)|0,x=x+Math.imul(nt,yt)|0,r=(r=r+Math.imul(nt,Vt)|0)+Math.imul(Ct,yt)|0,_=_+Math.imul(Ct,Vt)|0,x=x+Math.imul(Oe,ti)|0,r=(r=r+Math.imul(Oe,Ye)|0)+Math.imul(Ee,ti)|0,_=_+Math.imul(Ee,Ye)|0,x=x+Math.imul(Ke,Et)|0,r=(r=r+Math.imul(Ke,Jt)|0)+Math.imul(ge,Et)|0,_=_+Math.imul(ge,Jt)|0,x=x+Math.imul(_e,$e)|0,r=(r=r+Math.imul(_e,tt)|0)+Math.imul(ye,$e)|0,_=_+Math.imul(ye,tt)|0,x=x+Math.imul(pe,ei)|0,r=(r=r+Math.imul(pe,ci)|0)+Math.imul(be,ei)|0,_=_+Math.imul(be,ci)|0;var it=(k+(x=x+Math.imul(I,oi)|0)|0)+((8191&(r=(r=r+Math.imul(I,ui)|0)+Math.imul(B,oi)|0))<<13)|0;k=((_=_+Math.imul(B,ui)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,x=Math.imul(Ie,Rt),r=(r=Math.imul(Ie,le))+Math.imul(ht,Rt)|0,_=Math.imul(ht,le),x=x+Math.imul(Z,ce)|0,r=(r=r+Math.imul(Z,se)|0)+Math.imul(J,ce)|0,_=_+Math.imul(J,se)|0,x=x+Math.imul(ct,Ue)|0,r=(r=r+Math.imul(ct,Ne)|0)+Math.imul(Ce,Ue)|0,_=_+Math.imul(Ce,Ne)|0,x=x+Math.imul(lt,yt)|0,r=(r=r+Math.imul(lt,Vt)|0)+Math.imul(Pe,yt)|0,_=_+Math.imul(Pe,Vt)|0,x=x+Math.imul(nt,ti)|0,r=(r=r+Math.imul(nt,Ye)|0)+Math.imul(Ct,ti)|0,_=_+Math.imul(Ct,Ye)|0,x=x+Math.imul(Oe,Et)|0,r=(r=r+Math.imul(Oe,Jt)|0)+Math.imul(Ee,Et)|0,_=_+Math.imul(Ee,Jt)|0,x=x+Math.imul(Ke,$e)|0,r=(r=r+Math.imul(Ke,tt)|0)+Math.imul(ge,$e)|0,_=_+Math.imul(ge,tt)|0,x=x+Math.imul(_e,ei)|0,r=(r=r+Math.imul(_e,ci)|0)+Math.imul(ye,ei)|0,_=_+Math.imul(ye,ci)|0;var bt=(k+(x=x+Math.imul(pe,oi)|0)|0)+((8191&(r=(r=r+Math.imul(pe,ui)|0)+Math.imul(be,oi)|0))<<13)|0;k=((_=_+Math.imul(be,ui)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863,x=Math.imul(Ie,ce),r=(r=Math.imul(Ie,se))+Math.imul(ht,ce)|0,_=Math.imul(ht,se),x=x+Math.imul(Z,Ue)|0,r=(r=r+Math.imul(Z,Ne)|0)+Math.imul(J,Ue)|0,_=_+Math.imul(J,Ne)|0,x=x+Math.imul(ct,yt)|0,r=(r=r+Math.imul(ct,Vt)|0)+Math.imul(Ce,yt)|0,_=_+Math.imul(Ce,Vt)|0,x=x+Math.imul(lt,ti)|0,r=(r=r+Math.imul(lt,Ye)|0)+Math.imul(Pe,ti)|0,_=_+Math.imul(Pe,Ye)|0,x=x+Math.imul(nt,Et)|0,r=(r=r+Math.imul(nt,Jt)|0)+Math.imul(Ct,Et)|0,_=_+Math.imul(Ct,Jt)|0,x=x+Math.imul(Oe,$e)|0,r=(r=r+Math.imul(Oe,tt)|0)+Math.imul(Ee,$e)|0,_=_+Math.imul(Ee,tt)|0,x=x+Math.imul(Ke,ei)|0,r=(r=r+Math.imul(Ke,ci)|0)+Math.imul(ge,ei)|0,_=_+Math.imul(ge,ci)|0;var ut=(k+(x=x+Math.imul(_e,oi)|0)|0)+((8191&(r=(r=r+Math.imul(_e,ui)|0)+Math.imul(ye,oi)|0))<<13)|0;k=((_=_+Math.imul(ye,ui)|0)+(r>>>13)|0)+(ut>>>26)|0,ut&=67108863,x=Math.imul(Ie,Ue),r=(r=Math.imul(Ie,Ne))+Math.imul(ht,Ue)|0,_=Math.imul(ht,Ne),x=x+Math.imul(Z,yt)|0,r=(r=r+Math.imul(Z,Vt)|0)+Math.imul(J,yt)|0,_=_+Math.imul(J,Vt)|0,x=x+Math.imul(ct,ti)|0,r=(r=r+Math.imul(ct,Ye)|0)+Math.imul(Ce,ti)|0,_=_+Math.imul(Ce,Ye)|0,x=x+Math.imul(lt,Et)|0,r=(r=r+Math.imul(lt,Jt)|0)+Math.imul(Pe,Et)|0,_=_+Math.imul(Pe,Jt)|0,x=x+Math.imul(nt,$e)|0,r=(r=r+Math.imul(nt,tt)|0)+Math.imul(Ct,$e)|0,_=_+Math.imul(Ct,tt)|0,x=x+Math.imul(Oe,ei)|0,r=(r=r+Math.imul(Oe,ci)|0)+Math.imul(Ee,ei)|0,_=_+Math.imul(Ee,ci)|0;var jt=(k+(x=x+Math.imul(Ke,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Ke,ui)|0)+Math.imul(ge,oi)|0))<<13)|0;k=((_=_+Math.imul(ge,ui)|0)+(r>>>13)|0)+(jt>>>26)|0,jt&=67108863,x=Math.imul(Ie,yt),r=(r=Math.imul(Ie,Vt))+Math.imul(ht,yt)|0,_=Math.imul(ht,Vt),x=x+Math.imul(Z,ti)|0,r=(r=r+Math.imul(Z,Ye)|0)+Math.imul(J,ti)|0,_=_+Math.imul(J,Ye)|0,x=x+Math.imul(ct,Et)|0,r=(r=r+Math.imul(ct,Jt)|0)+Math.imul(Ce,Et)|0,_=_+Math.imul(Ce,Jt)|0,x=x+Math.imul(lt,$e)|0,r=(r=r+Math.imul(lt,tt)|0)+Math.imul(Pe,$e)|0,_=_+Math.imul(Pe,tt)|0,x=x+Math.imul(nt,ei)|0,r=(r=r+Math.imul(nt,ci)|0)+Math.imul(Ct,ei)|0,_=_+Math.imul(Ct,ci)|0;var ai=(k+(x=x+Math.imul(Oe,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Oe,ui)|0)+Math.imul(Ee,oi)|0))<<13)|0;k=((_=_+Math.imul(Ee,ui)|0)+(r>>>13)|0)+(ai>>>26)|0,ai&=67108863,x=Math.imul(Ie,ti),r=(r=Math.imul(Ie,Ye))+Math.imul(ht,ti)|0,_=Math.imul(ht,Ye),x=x+Math.imul(Z,Et)|0,r=(r=r+Math.imul(Z,Jt)|0)+Math.imul(J,Et)|0,_=_+Math.imul(J,Jt)|0,x=x+Math.imul(ct,$e)|0,r=(r=r+Math.imul(ct,tt)|0)+Math.imul(Ce,$e)|0,_=_+Math.imul(Ce,tt)|0,x=x+Math.imul(lt,ei)|0,r=(r=r+Math.imul(lt,ci)|0)+Math.imul(Pe,ei)|0,_=_+Math.imul(Pe,ci)|0;var pi=(k+(x=x+Math.imul(nt,oi)|0)|0)+((8191&(r=(r=r+Math.imul(nt,ui)|0)+Math.imul(Ct,oi)|0))<<13)|0;k=((_=_+Math.imul(Ct,ui)|0)+(r>>>13)|0)+(pi>>>26)|0,pi&=67108863,x=Math.imul(Ie,Et),r=(r=Math.imul(Ie,Jt))+Math.imul(ht,Et)|0,_=Math.imul(ht,Jt),x=x+Math.imul(Z,$e)|0,r=(r=r+Math.imul(Z,tt)|0)+Math.imul(J,$e)|0,_=_+Math.imul(J,tt)|0,x=x+Math.imul(ct,ei)|0,r=(r=r+Math.imul(ct,ci)|0)+Math.imul(Ce,ei)|0,_=_+Math.imul(Ce,ci)|0;var ki=(k+(x=x+Math.imul(lt,oi)|0)|0)+((8191&(r=(r=r+Math.imul(lt,ui)|0)+Math.imul(Pe,oi)|0))<<13)|0;k=((_=_+Math.imul(Pe,ui)|0)+(r>>>13)|0)+(ki>>>26)|0,ki&=67108863,x=Math.imul(Ie,$e),r=(r=Math.imul(Ie,tt))+Math.imul(ht,$e)|0,_=Math.imul(ht,tt),x=x+Math.imul(Z,ei)|0,r=(r=r+Math.imul(Z,ci)|0)+Math.imul(J,ei)|0,_=_+Math.imul(J,ci)|0;var Ki=(k+(x=x+Math.imul(ct,oi)|0)|0)+((8191&(r=(r=r+Math.imul(ct,ui)|0)+Math.imul(Ce,oi)|0))<<13)|0;k=((_=_+Math.imul(Ce,ui)|0)+(r>>>13)|0)+(Ki>>>26)|0,Ki&=67108863,x=Math.imul(Ie,ei),r=(r=Math.imul(Ie,ci))+Math.imul(ht,ei)|0,_=Math.imul(ht,ci);var Ji=(k+(x=x+Math.imul(Z,oi)|0)|0)+((8191&(r=(r=r+Math.imul(Z,ui)|0)+Math.imul(J,oi)|0))<<13)|0;k=((_=_+Math.imul(J,ui)|0)+(r>>>13)|0)+(Ji>>>26)|0,Ji&=67108863;var Dn=(k+(x=Math.imul(Ie,oi))|0)+((8191&(r=(r=Math.imul(Ie,ui))+Math.imul(ht,oi)|0))<<13)|0;return k=((_=Math.imul(ht,ui))+(r>>>13)|0)+(Dn>>>26)|0,Dn&=67108863,A[0]=ln,A[1]=nn,A[2]=dn,A[3]=zn,A[4]=It,A[5]=Tt,A[6]=Ze,A[7]=Ve,A[8]=Fe,A[9]=it,A[10]=bt,A[11]=ut,A[12]=jt,A[13]=ai,A[14]=pi,A[15]=ki,A[16]=Ki,A[17]=Ji,A[18]=Dn,0!==k&&(A[19]=k,f.length++),f};function q(D,n,o){return(new G).mulp(D,n,o)}function G(D,n){this.x=D,this.y=n}Math.imul||(U=j),c.prototype.mulTo=function(n,o){var f,h=this.length+n.length;return f=10===this.length&&10===n.length?U(this,n,o):h<63?j(this,n,o):h<1024?function K(D,n,o){o.negative=n.negative^D.negative,o.length=D.length+n.length;for(var f=0,h=0,b=0;b>>26)|0)>>>26,A&=67108863}o.words[b]=k,f=A,A=h}return 0!==f?o.words[b]=f:o.length--,o.strip()}(this,n,o):q(this,n,o),f},G.prototype.makeRBT=function(n){for(var o=new Array(n),f=c.prototype._countBits(n)-1,h=0;h>=1;return h},G.prototype.permute=function(n,o,f,h,b,A){for(var k=0;k>>=1)b++;return 1<>>=13),b>>>=13;for(A=2*o;A>=26,o+=h/67108864|0,o+=b>>>26,this.words[f]=67108863&b}return 0!==o&&(this.words[f]=o,this.length++),this.length=0===n?1:this.length,this},c.prototype.muln=function(n){return this.clone().imuln(n)},c.prototype.sqr=function(){return this.mul(this)},c.prototype.isqr=function(){return this.imul(this.clone())},c.prototype.pow=function(n){var o=function M(D){for(var n=new Array(D.bitLength()),o=0;o>>h}return n}(n);if(0===o.length)return new c(1);for(var f=this,h=0;h=0);var b,o=n%26,f=(n-o)/26,h=67108863>>>26-o<<26-o;if(0!==o){var A=0;for(b=0;b>>26-o}A&&(this.words[b]=A,this.length++)}if(0!==f){for(b=this.length-1;b>=0;b--)this.words[b+f]=this.words[b];for(b=0;b=0),h=o?(o-o%26)/26:0;var b=n%26,A=Math.min((n-b)/26,this.length),k=67108863^67108863>>>b<A)for(this.length-=A,r=0;r=0&&(0!==_||r>=h);r--){var W=0|this.words[r];this.words[r]=_<<26-b|W>>>b,_=W&k}return x&&0!==_&&(x.words[x.length++]=_),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},c.prototype.ishrn=function(n,o,f){return p(0===this.negative),this.iushrn(n,o,f)},c.prototype.shln=function(n){return this.clone().ishln(n)},c.prototype.ushln=function(n){return this.clone().iushln(n)},c.prototype.shrn=function(n){return this.clone().ishrn(n)},c.prototype.ushrn=function(n){return this.clone().iushrn(n)},c.prototype.testn=function(n){p("number"==typeof n&&n>=0);var o=n%26,f=(n-o)/26;return!(this.length<=f||!(this.words[f]&1<=0);var o=n%26,f=(n-o)/26;return p(0===this.negative,"imaskn works only with positive numbers"),this.length<=f?this:(0!==o&&f++,this.length=Math.min(f,this.length),0!==o&&(this.words[this.length-1]&=67108863^67108863>>>o<=67108864;o++)this.words[o]-=67108864,o===this.length-1?this.words[o+1]=1:this.words[o+1]++;return this.length=Math.max(this.length,o+1),this},c.prototype.isubn=function(n){if(p("number"==typeof n),p(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var o=0;o>26)-(x/67108864|0),this.words[b+f]=67108863&A}for(;b>26,this.words[b+f]=67108863&A;if(0===k)return this.strip();for(p(-1===k),k=0,b=0;b>26,this.words[b]=67108863&A;return this.negative=1,this.strip()},c.prototype._wordDiv=function(n,o){var f,h=this.clone(),b=n,A=0|b.words[b.length-1];0!=(f=26-this._countBits(A))&&(b=b.ushln(f),h.iushln(f),A=0|b.words[b.length-1]);var r,x=h.length-b.length;if("mod"!==o){(r=new c(null)).length=x+1,r.words=new Array(r.length);for(var _=0;_=0;I--){var B=67108864*(0|h.words[b.length+I])+(0|h.words[b.length+I-1]);for(B=Math.min(B/A|0,67108863),h._ishlnsubmul(b,B,I);0!==h.negative;)B--,h.negative=0,h._ishlnsubmul(b,1,I),h.isZero()||(h.negative^=1);r&&(r.words[I]=B)}return r&&r.strip(),h.strip(),"div"!==o&&0!==f&&h.iushrn(f),{div:r||null,mod:h}},c.prototype.divmod=function(n,o,f){return p(!n.isZero()),this.isZero()?{div:new c(0),mod:new c(0)}:0!==this.negative&&0===n.negative?(A=this.neg().divmod(n,o),"mod"!==o&&(h=A.div.neg()),"div"!==o&&(b=A.mod.neg(),f&&0!==b.negative&&b.iadd(n)),{div:h,mod:b}):0===this.negative&&0!==n.negative?(A=this.divmod(n.neg(),o),"mod"!==o&&(h=A.div.neg()),{div:h,mod:A.mod}):0!==(this.negative&n.negative)?(A=this.neg().divmod(n.neg(),o),"div"!==o&&(b=A.mod.neg(),f&&0!==b.negative&&b.isub(n)),{div:A.div,mod:b}):n.length>this.length||this.cmp(n)<0?{div:new c(0),mod:this}:1===n.length?"div"===o?{div:this.divn(n.words[0]),mod:null}:"mod"===o?{div:null,mod:new c(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new c(this.modn(n.words[0]))}:this._wordDiv(n,o);var h,b,A},c.prototype.div=function(n){return this.divmod(n,"div",!1).div},c.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},c.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},c.prototype.divRound=function(n){var o=this.divmod(n);if(o.mod.isZero())return o.div;var f=0!==o.div.negative?o.mod.isub(n):o.mod,h=n.ushrn(1),b=n.andln(1),A=f.cmp(h);return A<0||1===b&&0===A?o.div:0!==o.div.negative?o.div.isubn(1):o.div.iaddn(1)},c.prototype.modn=function(n){p(n<=67108863);for(var o=(1<<26)%n,f=0,h=this.length-1;h>=0;h--)f=(o*f+(0|this.words[h]))%n;return f},c.prototype.idivn=function(n){p(n<=67108863);for(var o=0,f=this.length-1;f>=0;f--){var h=(0|this.words[f])+67108864*o;this.words[f]=h/n|0,o=h%n}return this.strip()},c.prototype.divn=function(n){return this.clone().idivn(n)},c.prototype.egcd=function(n){p(0===n.negative),p(!n.isZero());var o=this,f=n.clone();o=0!==o.negative?o.umod(n):o.clone();for(var h=new c(1),b=new c(0),A=new c(0),k=new c(1),x=0;o.isEven()&&f.isEven();)o.iushrn(1),f.iushrn(1),++x;for(var r=f.clone(),_=o.clone();!o.isZero();){for(var W=0,I=1;0===(o.words[0]&I)&&W<26;++W,I<<=1);if(W>0)for(o.iushrn(W);W-- >0;)(h.isOdd()||b.isOdd())&&(h.iadd(r),b.isub(_)),h.iushrn(1),b.iushrn(1);for(var B=0,re=1;0===(f.words[0]&re)&&B<26;++B,re<<=1);if(B>0)for(f.iushrn(B);B-- >0;)(A.isOdd()||k.isOdd())&&(A.iadd(r),k.isub(_)),A.iushrn(1),k.iushrn(1);o.cmp(f)>=0?(o.isub(f),h.isub(A),b.isub(k)):(f.isub(o),A.isub(h),k.isub(b))}return{a:A,b:k,gcd:f.iushln(x)}},c.prototype._invmp=function(n){p(0===n.negative),p(!n.isZero());var W,o=this,f=n.clone();o=0!==o.negative?o.umod(n):o.clone();for(var h=new c(1),b=new c(0),A=f.clone();o.cmpn(1)>0&&f.cmpn(1)>0;){for(var k=0,x=1;0===(o.words[0]&x)&&k<26;++k,x<<=1);if(k>0)for(o.iushrn(k);k-- >0;)h.isOdd()&&h.iadd(A),h.iushrn(1);for(var r=0,_=1;0===(f.words[0]&_)&&r<26;++r,_<<=1);if(r>0)for(f.iushrn(r);r-- >0;)b.isOdd()&&b.iadd(A),b.iushrn(1);o.cmp(f)>=0?(o.isub(f),h.isub(b)):(f.isub(o),b.isub(h))}return(W=0===o.cmpn(1)?h:b).cmpn(0)<0&&W.iadd(n),W},c.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var o=this.clone(),f=n.clone();o.negative=0,f.negative=0;for(var h=0;o.isEven()&&f.isEven();h++)o.iushrn(1),f.iushrn(1);for(;;){for(;o.isEven();)o.iushrn(1);for(;f.isEven();)f.iushrn(1);var b=o.cmp(f);if(b<0){var A=o;o=f,f=A}else if(0===b||0===f.cmpn(1))break;o.isub(f)}return f.iushln(h)},c.prototype.invm=function(n){return this.egcd(n).a.umod(n)},c.prototype.isEven=function(){return!(1&this.words[0])},c.prototype.isOdd=function(){return!(1&~this.words[0])},c.prototype.andln=function(n){return this.words[0]&n},c.prototype.bincn=function(n){p("number"==typeof n);var o=n%26,f=(n-o)/26,h=1<>>26,this.words[A]=k&=67108863}return 0!==b&&(this.words[A]=b,this.length++),this},c.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},c.prototype.cmpn=function(n){var f,o=n<0;if(0!==this.negative&&!o)return-1;if(0===this.negative&&o)return 1;if(this.strip(),this.length>1)f=1;else{o&&(n=-n),p(n<=67108863,"Number is too big");var h=0|this.words[0];f=h===n?0:hn.length)return 1;if(this.length=0;f--){var h=0|this.words[f],b=0|n.words[f];if(h!==b){hb&&(o=1);break}}return o},c.prototype.gtn=function(n){return 1===this.cmpn(n)},c.prototype.gt=function(n){return 1===this.cmp(n)},c.prototype.gten=function(n){return this.cmpn(n)>=0},c.prototype.gte=function(n){return this.cmp(n)>=0},c.prototype.ltn=function(n){return-1===this.cmpn(n)},c.prototype.lt=function(n){return-1===this.cmp(n)},c.prototype.lten=function(n){return this.cmpn(n)<=0},c.prototype.lte=function(n){return this.cmp(n)<=0},c.prototype.eqn=function(n){return 0===this.cmpn(n)},c.prototype.eq=function(n){return 0===this.cmp(n)},c.red=function(n){return new me(n)},c.prototype.toRed=function(n){return p(!this.red,"Already a number in reduction context"),p(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},c.prototype.fromRed=function(){return p(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},c.prototype._forceRed=function(n){return this.red=n,this},c.prototype.forceRed=function(n){return p(!this.red,"Already a number in reduction context"),this._forceRed(n)},c.prototype.redAdd=function(n){return p(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},c.prototype.redIAdd=function(n){return p(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},c.prototype.redSub=function(n){return p(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},c.prototype.redISub=function(n){return p(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},c.prototype.redShl=function(n){return p(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},c.prototype.redMul=function(n){return p(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},c.prototype.redIMul=function(n){return p(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},c.prototype.redSqr=function(){return p(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},c.prototype.redISqr=function(){return p(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},c.prototype.redSqrt=function(){return p(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},c.prototype.redInvm=function(){return p(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},c.prototype.redNeg=function(){return p(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},c.prototype.redPow=function(n){return p(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var Q={k256:null,p224:null,p192:null,p25519:null};function $(D,n){this.name=D,this.p=new c(n,16),this.n=this.p.bitLength(),this.k=new c(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ae(){$.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ue(){$.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function oe(){$.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function he(){$.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function me(D){if("string"==typeof D){var n=c._prime(D);this.m=n.p,this.prime=n}else p(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function Te(D){me.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new c(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}$.prototype._tmp=function(){var n=new c(null);return n.words=new Array(Math.ceil(this.n/13)),n},$.prototype.ireduce=function(n){var f,o=n;do{this.split(o,this.tmp),f=(o=(o=this.imulK(o)).iadd(this.tmp)).bitLength()}while(f>this.n);var h=f0?o.isub(this.p):void 0!==o.strip?o.strip():o._strip(),o},$.prototype.split=function(n,o){n.iushrn(this.n,0,o)},$.prototype.imulK=function(n){return n.imul(this.k)},S(ae,$),ae.prototype.split=function(n,o){for(var f=4194303,h=Math.min(n.length,9),b=0;b>>22,A=k}n.words[b-10]=A>>>=22,n.length-=0===A&&n.length>10?10:9},ae.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var o=0,f=0;f>>=26,n.words[f]=b,o=h}return 0!==o&&(n.words[n.length++]=o),n},c._prime=function(n){if(Q[n])return Q[n];var o;if("k256"===n)o=new ae;else if("p224"===n)o=new ue;else if("p192"===n)o=new oe;else{if("p25519"!==n)throw new Error("Unknown prime "+n);o=new he}return Q[n]=o,o},me.prototype._verify1=function(n){p(0===n.negative,"red works only with positives"),p(n.red,"red works only with red numbers")},me.prototype._verify2=function(n,o){p(0===(n.negative|o.negative),"red works only with positives"),p(n.red&&n.red===o.red,"red works only with red numbers")},me.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},me.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},me.prototype.add=function(n,o){this._verify2(n,o);var f=n.add(o);return f.cmp(this.m)>=0&&f.isub(this.m),f._forceRed(this)},me.prototype.iadd=function(n,o){this._verify2(n,o);var f=n.iadd(o);return f.cmp(this.m)>=0&&f.isub(this.m),f},me.prototype.sub=function(n,o){this._verify2(n,o);var f=n.sub(o);return f.cmpn(0)<0&&f.iadd(this.m),f._forceRed(this)},me.prototype.isub=function(n,o){this._verify2(n,o);var f=n.isub(o);return f.cmpn(0)<0&&f.iadd(this.m),f},me.prototype.shl=function(n,o){return this._verify1(n),this.imod(n.ushln(o))},me.prototype.imul=function(n,o){return this._verify2(n,o),this.imod(n.imul(o))},me.prototype.mul=function(n,o){return this._verify2(n,o),this.imod(n.mul(o))},me.prototype.isqr=function(n){return this.imul(n,n.clone())},me.prototype.sqr=function(n){return this.mul(n,n)},me.prototype.sqrt=function(n){if(n.isZero())return n.clone();var o=this.m.andln(3);if(p(o%2==1),3===o){var f=this.m.add(new c(1)).iushrn(2);return this.pow(n,f)}for(var h=this.m.subn(1),b=0;!h.isZero()&&0===h.andln(1);)b++,h.iushrn(1);p(!h.isZero());var A=new c(1).toRed(this),k=A.redNeg(),x=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new c(2*r*r).toRed(this);0!==this.pow(r,x).cmp(k);)r.redIAdd(k);for(var _=this.pow(r,h),W=this.pow(n,h.addn(1).iushrn(1)),I=this.pow(n,h),B=b;0!==I.cmp(A);){for(var re=I,pe=0;0!==re.cmp(A);pe++)re=re.redSqr();p(pe=0;b--){for(var _=o.words[b],W=r-1;W>=0;W--){var I=_>>W&1;A!==h[0]&&(A=this.sqr(A)),0!==I||0!==k?(k<<=1,k|=I,(4===++x||0===b&&0===W)&&(A=this.mul(A,h[k]),x=0,k=0)):x=0}r=26}return A},me.prototype.convertTo=function(n){var o=n.umod(this.m);return o===n?o.clone():o},me.prototype.convertFrom=function(n){var o=n.clone();return o.red=null,o},c.mont=function(n){return new Te(n)},S(Te,me),Te.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},Te.prototype.convertFrom=function(n){var o=this.imod(n.mul(this.rinv));return o.red=null,o},Te.prototype.imul=function(n,o){if(n.isZero()||o.isZero())return n.words[0]=0,n.length=1,n;var f=n.imul(o),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),b=f.isub(h).iushrn(this.shift),A=b;return b.cmp(this.m)>=0?A=b.isub(this.m):b.cmpn(0)<0&&(A=b.iadd(this.m)),A._forceRed(this)},Te.prototype.mul=function(n,o){if(n.isZero()||o.isZero())return new c(0)._forceRed(this);var f=n.mul(o),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),b=f.isub(h).iushrn(this.shift),A=b;return b.cmp(this.m)>=0?A=b.isub(this.m):b.cmpn(0)<0&&(A=b.iadd(this.m)),A._forceRed(this)},Te.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Ae=l.nmd(Ae),this)},97290:(Ae,ee,l)=>{var i=l(71993),t=l(15066).Reporter,p=l(83838).Buffer;function S(e,T){t.call(this,T),p.isBuffer(e)?(this.base=e,this.offset=0,this.length=e.length):this.error("Input not Buffer")}function c(e,T){if(Array.isArray(e))this.length=0,this.value=e.map(function(g){return g instanceof c||(g=new c(g,T)),this.length+=g.length,g},this);else if("number"==typeof e){if(!(0<=e&&e<=255))return T.error("non-byte EncoderBuffer value");this.value=e,this.length=1}else if("string"==typeof e)this.value=e,this.length=p.byteLength(e);else{if(!p.isBuffer(e))return T.error("Unsupported type: "+typeof e);this.value=e,this.length=e.length}}i(S,t),ee.t=S,S.prototype.save=function(){return{offset:this.offset,reporter:t.prototype.save.call(this)}},S.prototype.restore=function(T){var g=new S(this.base);return g.offset=T.offset,g.length=this.offset,this.offset=T.offset,t.prototype.restore.call(this,T.reporter),g},S.prototype.isEmpty=function(){return this.offset===this.length},S.prototype.readUInt8=function(T){return this.offset+1<=this.length?this.base.readUInt8(this.offset++,!0):this.error(T||"DecoderBuffer overrun")},S.prototype.skip=function(T,g){if(!(this.offset+T<=this.length))return this.error(g||"DecoderBuffer overrun");var d=new S(this.base);return d._reporterState=this._reporterState,d.offset=this.offset,d.length=this.offset+T,this.offset+=T,d},S.prototype.raw=function(T){return this.base.slice(T?T.offset:this.offset,this.length)},ee.d=c,c.prototype.join=function(T,g){return T||(T=new p(this.length)),g||(g=0),0===this.length||(Array.isArray(this.value)?this.value.forEach(function(d){d.join(T,g),g+=d.length}):("number"==typeof this.value?T[g]=this.value:"string"==typeof this.value?T.write(this.value,g):p.isBuffer(this.value)&&this.value.copy(T,g),g+=this.length)),T}},97594:(Ae,ee,l)=>{"use strict";var i=l(5019),t=typeof globalThis>"u"?global:globalThis;Ae.exports=function(){for(var S=[],c=0;c{"use strict";l.d(ee,{u:()=>c});var i=l(58750),t=l(21413),p=l(47707),S=l(39974);function c(T={}){const{connector:g=()=>new t.B,resetOnError:d=!0,resetOnComplete:w=!0,resetOnRefCountZero:m=!0}=T;return P=>{let M,j,U,K=0,q=!1,G=!1;const Q=()=>{j?.unsubscribe(),j=void 0},$=()=>{Q(),M=U=void 0,q=G=!1},ae=()=>{const ue=M;$(),ue?.unsubscribe()};return(0,S.N)((ue,oe)=>{K++,!G&&!q&&Q();const he=U=U??g();oe.add(()=>{K--,0===K&&!G&&!q&&(j=e(ae,m))}),he.subscribe(oe),!M&&K>0&&(M=new p.Ms({next:me=>he.next(me),error:me=>{G=!0,Q(),j=e($,d,me),he.error(me)},complete:()=>{q=!0,Q(),j=e($,w),he.complete()}}),(0,i.Tg)(ue).subscribe(M))})(P)}}function e(T,g,...d){if(!0===g)return void T();if(!1===g)return;const w=new p.Ms({next:()=>{w.unsubscribe(),T()}});return(0,i.Tg)(g(...d)).subscribe(w)}},97669:Ae=>{"use strict";Ae.exports=typeof Reflect<"u"&&Reflect.getPrototypeOf||null},97768:(Ae,ee,l)=>{"use strict";l.d(ee,{FK:()=>D,Up:()=>me,VI:()=>he,nb:()=>$,oX:()=>Q,uY:()=>n,v5:()=>Te,x8:()=>oe});var i=l(2615),t=l(73664),p=l(59295),S=l(17705),c=l(89417),e=l(21413),T=l(7673),g=l(99172),d=l(56977),w=l(61577),m=l(89726),P=l(64123),M=l(67336),j=l(10438),U=l(44522),K=l(28203);const q=["*"];function G(o,f){1&o&&t.SdG(0)}let Q=(()=>{class o{_elementRef=(0,i.WQX)(t.aKT);constructor(){}focus(){this._elementRef.nativeElement.focus()}static \u0275fac=function(b){return new(b||o)};static \u0275dir=t.FsC({type:o,selectors:[["","cdkStepHeader",""]],hostAttrs:["role","tab"]})}return o})(),$=(()=>{class o{template=(0,i.WQX)(t.C4Q);constructor(){}static \u0275fac=function(b){return new(b||o)};static \u0275dir=t.FsC({type:o,selectors:[["","cdkStepLabel",""]]})}return o})();const oe=new i.nKC("STEPPER_GLOBAL_OPTIONS");let he=(()=>{class o{_stepperOptions;_stepper=(0,i.WQX)(me);_displayDefaultIndicatorType;stepLabel;_childForms;content;stepControl;get interacted(){return this._interacted()}set interacted(h){this._interacted.set(h)}_interacted=(0,i.vPA)(!1);interactedStream=new t.bkB;label;errorMessage;ariaLabel;ariaLabelledby;get state(){return this._state()}set state(h){this._state.set(h)}_state=(0,i.vPA)(void 0);get editable(){return this._editable()}set editable(h){this._editable.set(h)}_editable=(0,i.vPA)(!0);optional=!1;get completed(){const h=this._completedOverride(),b=this._interacted();return h??(b&&(!this.stepControl||this.stepControl.valid))}set completed(h){this._completedOverride.set(h)}_completedOverride=(0,i.vPA)(null);index=(0,i.vPA)(-1);isSelected=(0,p.EW)(()=>this._stepper.selectedIndex===this.index());indicatorType=(0,p.EW)(()=>{const h=this.isSelected(),b=this.completed,A=this._state()??"number",k=this._editable();return this._showError()&&this.hasError&&!h?"error":this._displayDefaultIndicatorType?!b||h?"number":k?"edit":"done":b&&!h?"done":b&&h?A:k&&h?"edit":A});isNavigable=(0,p.EW)(()=>{const h=this.isSelected();return this.completed||h||!this._stepper.linear});get hasError(){return this._customError()??this._getDefaultError()}set hasError(h){this._customError.set(h)}_customError=(0,i.vPA)(null);_getDefaultError(){return this.interacted&&!!this.stepControl?.invalid}constructor(){const h=(0,i.WQX)(oe,{optional:!0});this._stepperOptions=h||{},this._displayDefaultIndicatorType=!1!==this._stepperOptions.displayDefaultIndicatorType}select(){this._stepper.selected=this}reset(){this._interacted.set(!1),null!=this._completedOverride()&&this._completedOverride.set(!1),null!=this._customError()&&this._customError.set(!1),this.stepControl&&(this._childForms?.forEach(h=>h.resetForm?.()),this.stepControl.reset())}ngOnChanges(){this._stepper._stateChanged()}_markAsInteracted(){this._interacted()||(this._interacted.set(!0),this.interactedStream.emit(this))}_showError(){return this._stepperOptions.showError??null!=this._customError()}static \u0275fac=function(b){return new(b||o)};static \u0275cmp=t.VBU({type:o,selectors:[["cdk-step"]],contentQueries:function(b,A,k){if(1&b&&(t.wni(k,$,5),t.wni(k,c.ZU,5)),2&b){let x;t.mGM(x=t.lsd())&&(A.stepLabel=x.first),t.mGM(x=t.lsd())&&(A._childForms=x)}},viewQuery:function(b,A){if(1&b&&t.GBs(t.C4Q,7),2&b){let k;t.mGM(k=t.lsd())&&(A.content=k.first)}},inputs:{stepControl:"stepControl",label:"label",errorMessage:"errorMessage",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],state:"state",editable:[2,"editable","editable",S.L39],optional:[2,"optional","optional",S.L39],completed:[2,"completed","completed",S.L39],hasError:[2,"hasError","hasError",S.L39]},outputs:{interactedStream:"interacted"},exportAs:["cdkStep"],features:[t.OA$],ngContentSelectors:q,decls:1,vars:0,template:function(b,A){1&b&&(t.NAR(),t.PeT(0,G,1,0,"ng-template"))},encapsulation:2,changeDetection:0})}return o})(),me=(()=>{class o{_dir=(0,i.WQX)(w.dS,{optional:!0});_changeDetectorRef=(0,i.WQX)(S.gRc);_elementRef=(0,i.WQX)(t.aKT);_destroyed=new e.B;_keyManager;_steps;steps=new t.rOR;_stepHeader;_sortedHeaders=new t.rOR;linear=!1;get selectedIndex(){return this._selectedIndex()}set selectedIndex(h){this._steps?(this._isValidIndex(h),this.selectedIndex!==h&&(this.selected?._markAsInteracted(),!this._anyControlsInvalidOrPending(h)&&(h>=this.selectedIndex||this.steps.toArray()[h].editable)&&this._updateSelectedItemIndex(h))):this._selectedIndex.set(h)}_selectedIndex=(0,i.vPA)(0);get selected(){return this.steps?this.steps.toArray()[this.selectedIndex]:void 0}set selected(h){this.selectedIndex=h&&this.steps?this.steps.toArray().indexOf(h):-1}selectionChange=new t.bkB;selectedIndexChange=new t.bkB;_groupId=(0,i.WQX)(m.g).getId("cdk-stepper-");get orientation(){return this._orientation}set orientation(h){this._orientation=h,this._keyManager&&this._keyManager.withVerticalOrientation("vertical"===h)}_orientation="horizontal";constructor(){}ngAfterContentInit(){this._steps.changes.pipe((0,g.Z)(this._steps),(0,d.Q)(this._destroyed)).subscribe(h=>{this.steps.reset(h.filter(b=>b._stepper===this)),this.steps.forEach((b,A)=>b.index.set(A)),this.steps.notifyOnChanges()})}ngAfterViewInit(){if(this._stepHeader.changes.pipe((0,g.Z)(this._stepHeader),(0,d.Q)(this._destroyed)).subscribe(h=>{this._sortedHeaders.reset(h.toArray().sort((b,A)=>b._elementRef.nativeElement.compareDocumentPosition(A._elementRef.nativeElement)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1)),this._sortedHeaders.notifyOnChanges()}),this._keyManager=new P.B(this._sortedHeaders).withWrap().withHomeAndEnd().withVerticalOrientation("vertical"===this._orientation),this._keyManager.updateActiveItem(this.selectedIndex),(this._dir?this._dir.change:(0,T.of)()).pipe((0,g.Z)(this._layoutDirection()),(0,d.Q)(this._destroyed)).subscribe(h=>this._keyManager?.withHorizontalOrientation(h)),this._keyManager.updateActiveItem(this.selectedIndex),this.steps.changes.subscribe(()=>{this.selected||this._selectedIndex.set(Math.max(this.selectedIndex-1,0))}),this._isValidIndex(this.selectedIndex)||this._selectedIndex.set(0),this.linear&&this.selectedIndex>0){const h=this.steps.toArray().slice(0,this._selectedIndex());for(const b of h)b._markAsInteracted()}}ngOnDestroy(){this._keyManager?.destroy(),this.steps.destroy(),this._sortedHeaders.destroy(),this._destroyed.next(),this._destroyed.complete()}next(){this.selectedIndex=Math.min(this._selectedIndex()+1,this.steps.length-1)}previous(){this.selectedIndex=Math.max(this._selectedIndex()-1,0)}reset(){this._updateSelectedItemIndex(0),this.steps.forEach(h=>h.reset()),this._stateChanged()}_getStepLabelId(h){return`${this._groupId}-label-${h}`}_getStepContentId(h){return`${this._groupId}-content-${h}`}_stateChanged(){this._changeDetectorRef.markForCheck()}_getAnimationDirection(h){const b=h-this._selectedIndex();return b<0?"rtl"===this._layoutDirection()?"next":"previous":b>0?"rtl"===this._layoutDirection()?"previous":"next":"current"}_getFocusIndex(){return this._keyManager?this._keyManager.activeItemIndex:this._selectedIndex()}_updateSelectedItemIndex(h){const b=this.steps.toArray(),A=this._selectedIndex();this.selectionChange.emit({selectedIndex:h,previouslySelectedIndex:A,selectedStep:b[h],previouslySelectedStep:b[A]}),this._keyManager&&(this._containsFocus()?this._keyManager.setActiveItem(h):this._keyManager.updateActiveItem(h)),this._selectedIndex.set(h),this.selectedIndexChange.emit(h),this._stateChanged()}_onKeydown(h){const b=(0,M.rp)(h),A=h.keyCode,k=this._keyManager;null==k?.activeItemIndex||b||A!==j.t6&&A!==j.Fm?k?.setFocusOrigin("keyboard").onKeydown(h):(this.selectedIndex=k.activeItemIndex,h.preventDefault())}_anyControlsInvalidOrPending(h){return!!(this.linear&&h>=0)&&this.steps.toArray().slice(0,h).some(b=>{const A=b.stepControl;return(A?A.invalid||A.pending||!b.interacted:!b.completed)&&!b.optional&&!b._completedOverride()})}_layoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_containsFocus(){const h=this._elementRef.nativeElement,b=(0,U.vc)();return h===b||h.contains(b)}_isValidIndex(h){return h>-1&&(!this.steps||h{class o{_stepper=(0,i.WQX)(me);type="submit";constructor(){}static \u0275fac=function(b){return new(b||o)};static \u0275dir=t.FsC({type:o,selectors:[["button","cdkStepperNext",""]],hostVars:1,hostBindings:function(b,A){1&b&&t.bIt("click",function(){return A._stepper.next()}),2&b&&t.Avn("type",A.type)},inputs:{type:"type"}})}return o})(),D=(()=>{class o{_stepper=(0,i.WQX)(me);type="button";constructor(){}static \u0275fac=function(b){return new(b||o)};static \u0275dir=t.FsC({type:o,selectors:[["button","cdkStepperPrevious",""]],hostVars:1,hostBindings:function(b,A){1&b&&t.bIt("click",function(){return A._stepper.previous()}),2&b&&t.Avn("type",A.type)},inputs:{type:"type"}})}return o})(),n=(()=>{class o{static \u0275fac=function(b){return new(b||o)};static \u0275mod=t.$C({type:o});static \u0275inj=i.G2t({imports:[K.jI]})}return o})()},97840:(Ae,ee,l)=>{"use strict";Object.defineProperty(ee,"__esModule",{value:!0});var t=function i(c){return c&&"object"==typeof c&&"default"in c?c.default:c}(l(91426));ee.createDigest=(c,e,T)=>t.createHmac(c,Buffer.from(e,"hex")).update(Buffer.from(T,"hex")).digest().toString("hex"),ee.createRandomBytes=(c,e)=>t.randomBytes(c).toString(e)},98071:(Ae,ee,l)=>{"use strict";function i(t){return"function"==typeof t}l.d(ee,{T:()=>i})},98570:(Ae,ee,l)=>{"use strict";l.d(ee,{gP:()=>e,tU:()=>T});var i=l(17705),t=l(2615);const p=(0,i.naY)(),S=()=>null;let e=(()=>{var g;class d{invokeConsoleMethod(m,P){}static#e=g=()=>(this.\u0275fac=function(P){return new(P||d)},this.\u0275prov=t.jDH({token:d,factory:d.\u0275fac}))}return g(),d})(),T=(()=>{var g;class d{get info(){return p?console.log.bind(console):S}get warn(){return p?console.warn.bind(console):S}get error(){return p?console.error.bind(console):S}invokeConsoleMethod(m,P){(console[m]||console.log||S).apply(console,[P])}static#e=g=()=>(this.\u0275fac=function(P){return new(P||d)},this.\u0275prov=t.jDH({token:d,factory:d.\u0275fac}))}return g(),d})()},98613:(Ae,ee,l)=>{var i=l(65667),t=l(30715),p=l(37196),S=l(16508),c=l(14105),e=l(67211),T=l(10568),g=l(27054).Buffer;Ae.exports=function(M,j,U){var K;K=M.padding?M.padding:U?1:4;var Q,q=i(M),G=q.modulus.byteLength();if(j.length>G||new S(j).cmp(q.modulus)>=0)throw new Error("decryption error");Q=U?T(new S(j),q):c(j,q);var $=g.alloc(G-Q.length);if(Q=g.concat([$,Q],G),4===K)return function d(P,M){var j=P.modulus.byteLength(),U=e("sha1").update(g.alloc(0)).digest(),K=U.length;if(0!==M[0])throw new Error("decryption error");var q=M.slice(1,K+1),G=M.slice(K+1),Q=p(q,t(G,K)),$=p(G,t(Q,j-K-1));if(function m(P,M){P=g.from(P),M=g.from(M);var j=0,U=P.length;P.length!==M.length&&(j++,U=Math.min(P.length,M.length));for(var K=-1;++K=M.length){q++;break}var G=M.slice(2,K-1);if(("0002"!==U.toString("hex")&&!j||"0001"!==U.toString("hex")&&j)&&q++,G.length<8&&q++,q)throw new Error("decryption error");return M.slice(K)}(0,Q,U);if(3===K)return Q;throw new Error("unknown padding")}},98828:(Ae,ee,l)=>{"use strict";var i=l(88723),t=l(3136),p=t.getNAF,S=t.getJSF,c=t.assert;function e(g,d){this.type=g,this.p=new i(d.p,16),this.red=d.prime?i.red(d.prime):i.mont(this.p),this.zero=new i(0).toRed(this.red),this.one=new i(1).toRed(this.red),this.two=new i(2).toRed(this.red),this.n=d.n&&new i(d.n,16),this.g=d.g&&this.pointFromJSON(d.g,d.gRed),this._wnafT1=new Array(4),this._wnafT2=new Array(4),this._wnafT3=new Array(4),this._wnafT4=new Array(4),this._bitLength=this.n?this.n.bitLength():0;var w=this.n&&this.p.div(this.n);!w||w.cmpn(100)>0?this.redN=null:(this._maxwellTrick=!0,this.redN=this.n.toRed(this.red))}function T(g,d){this.curve=g,this.type=d,this.precomputed=null}Ae.exports=e,e.prototype.point=function(){throw new Error("Not implemented")},e.prototype.validate=function(){throw new Error("Not implemented")},e.prototype._fixedNafMul=function(d,w){c(d.precomputed);var m=d._getDoubles(),P=p(w,1,this._bitLength),M=(1<=U;q--)K=(K<<1)+P[q];j.push(K)}for(var G=this.jpoint(null,null,null),Q=this.jpoint(null,null,null),$=M;$>0;$--){for(U=0;U=0;K--){for(var q=0;K>=0&&0===j[K];K--)q++;if(K>=0&&q++,U=U.dblp(q),K<0)break;var G=j[K];c(0!==G),U="affine"===d.type?U.mixedAdd(G>0?M[G-1>>1]:M[-G-1>>1].neg()):U.add(G>0?M[G-1>>1]:M[-G-1>>1].neg())}return"affine"===d.type?U.toP():U},e.prototype._wnafMulAdd=function(d,w,m,P,M){var G,Q,$,j=this._wnafT1,U=this._wnafT2,K=this._wnafT3,q=0;for(G=0;G=1;G-=2){var ue=G-1,oe=G;if(1===j[ue]&&1===j[oe]){var he=[w[ue],null,null,w[oe]];0===w[ue].y.cmp(w[oe].y)?(he[1]=w[ue].add(w[oe]),he[2]=w[ue].toJ().mixedAdd(w[oe].neg())):0===w[ue].y.cmp(w[oe].y.redNeg())?(he[1]=w[ue].toJ().mixedAdd(w[oe]),he[2]=w[ue].add(w[oe].neg())):(he[1]=w[ue].toJ().mixedAdd(w[oe]),he[2]=w[ue].toJ().mixedAdd(w[oe].neg()));var me=[-3,-1,-5,-7,0,7,5,1,3],Te=S(m[ue],m[oe]);for(q=Math.max(Te[0].length,q),K[ue]=new Array(q),K[oe]=new Array(q),Q=0;Q=0;G--){for(var h=0;G>=0;){var b=!0;for(Q=0;Q=0&&h++,o=o.dblp(h),G<0)break;for(Q=0;Q0?$=U[Q][A-1>>1]:A<0&&($=U[Q][-A-1>>1].neg()),o="affine"===$.type?o.mixedAdd($):o.add($))}}for(G=0;G=Math.ceil((d.bitLength()+1)/w.step)},T.prototype._getDoubles=function(d,w){if(this.precomputed&&this.precomputed.doubles)return this.precomputed.doubles;for(var m=[this],P=this,M=0;M{"use strict";var i=l(65992),t=l(79477),p=l(95731);Ae.exports=function(){return p(i,t,arguments)}},99090:(Ae,ee,l)=>{"use strict";l.d(ee,{A:()=>t});var i=l(12593);class t extends i.l{setActiveItem(S){this.activeItem&&this.activeItem.setInactiveStyles(),super.setActiveItem(S),this.activeItem&&this.activeItem.setActiveStyles()}}},99172:(Ae,ee,l)=>{"use strict";l.d(ee,{Z:()=>S});var i=l(28793),t=l(9326),p=l(39974);function S(...c){const e=(0,t.lI)(c);return(0,p.N)((T,g)=>{(e?(0,i.x)(c,T,e):(0,i.x)(c,T)).subscribe(g)})}},99327:(Ae,ee,l)=>{"use strict";l.d(ee,{RH:()=>p,Rp:()=>S});var i=l(2615),t=l(73664);let p=(()=>{class c{static \u0275fac=function(g){return new(g||c)};static \u0275mod=t.$C({type:c});static \u0275inj=i.G2t({})}return c})();const S={XSmall:"(max-width: 599.98px)",Small:"(min-width: 600px) and (max-width: 959.98px)",Medium:"(min-width: 960px) and (max-width: 1279.98px)",Large:"(min-width: 1280px) and (max-width: 1919.98px)",XLarge:"(min-width: 1920px)",Handset:"(max-width: 599.98px) and (orientation: portrait), (max-width: 959.98px) and (orientation: landscape)",Tablet:"(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait), (min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)",Web:"(min-width: 840px) and (orientation: portrait), (min-width: 1280px) and (orientation: landscape)",HandsetPortrait:"(max-width: 599.98px) and (orientation: portrait)",TabletPortrait:"(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait)",WebPortrait:"(min-width: 840px) and (orientation: portrait)",HandsetLandscape:"(max-width: 959.98px) and (orientation: landscape)",TabletLandscape:"(min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)",WebLandscape:"(min-width: 1280px) and (orientation: landscape)"}},99359:(Ae,ee)=>{const l="[0-9]+";let t="(?:[u3000-u303F]|[u3040-u309F]|[u30A0-u30FF]|[uFF00-uFFEF]|[u4E00-u9FAF]|[u2605-u2606]|[u2190-u2195]|u203B|[u2010u2015u2018u2019u2025u2026u201Cu201Du2225u2260]|[u0391-u0451]|[u00A7u00A8u00B1u00B4u00D7u00F7])+";t=t.replace(/u/g,"\\u");const p="(?:(?![A-Z0-9 $%*+\\-./:]|"+t+")(?:.|[\r\n]))+";ee.KANJI=new RegExp(t,"g"),ee.BYTE_KANJI=new RegExp("[^A-Z0-9 $%*+\\-./:]+","g"),ee.BYTE=new RegExp(p,"g"),ee.NUMERIC=new RegExp(l,"g"),ee.ALPHANUMERIC=new RegExp("[A-Z $%*+\\-./:]+","g");const S=new RegExp("^"+t+"$"),c=new RegExp("^"+l+"$"),e=new RegExp("^[A-Z0-9 $%*+\\-./:]+$");ee.testKanji=function(g){return S.test(g)},ee.testNumeric=function(g){return c.test(g)},ee.testAlphanumeric=function(g){return e.test(g)}},99437:(Ae,ee,l)=>{"use strict";l.d(ee,{W:()=>S});var i=l(58750),t=l(54360),p=l(39974);function S(c){return(0,p.N)((e,T)=>{let w,g=null,d=!1;g=e.subscribe((0,t._)(T,void 0,void 0,m=>{w=(0,i.Tg)(c(m,S(c)(e))),g?(g.unsubscribe(),g=null,w.subscribe(T)):d=!0})),d&&(g.unsubscribe(),g=null,w.subscribe(T))})}},99560:(Ae,ee,l)=>{"use strict";Ae.exports=l(62951)},99898:(Ae,ee,l)=>{"use strict";l.d(ee,{B:()=>p});var i=l(39974),t=l(54360);function p(){return(0,i.N)((S,c)=>{let e=null;S._refCount++;const T=(0,t._)(c,void 0,void 0,void 0,()=>{if(!S||S._refCount<=0||0<--S._refCount)return void(e=null);const g=S._connection,d=e;e=null,g&&(!d||g===d)&&g.unsubscribe(),c.unsubscribe()});S.subscribe(T),T.closed||(e=S.connect())})}}},Ae=>{Ae(Ae.s=67947)}]); \ No newline at end of file diff --git a/frontend/polyfills.17d9756e1f282744.js b/frontend/polyfills.17d9756e1f282744.js new file mode 100644 index 00000000..9aa887bd --- /dev/null +++ b/frontend/polyfills.17d9756e1f282744.js @@ -0,0 +1 @@ +(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[461],{4050(Wt,z,W){window.global=window,window.global.Buffer=window.global.Buffer||W(3838).hp,window.global.process=window.global.process||W(573)},3981(Wt,z){"use strict";z.byteLength=function w(I){var b=Z(I),st=b[1];return 3*(b[0]+st)/4-st},z.toByteArray=function tt(I){var b,gt,q=Z(I),st=q[0],Ct=q[1],dt=new Rt(function u(I,b,q){return 3*(b+q)/4-q}(0,st,Ct)),Pt=0,jt=Ct>0?st-4:st;for(gt=0;gt>16&255,dt[Pt++]=b>>8&255,dt[Pt++]=255&b;return 2===Ct&&(b=N[I.charCodeAt(gt)]<<2|N[I.charCodeAt(gt+1)]>>4,dt[Pt++]=255&b),1===Ct&&(b=N[I.charCodeAt(gt)]<<10|N[I.charCodeAt(gt+1)]<<4|N[I.charCodeAt(gt+2)]>>2,dt[Pt++]=b>>8&255,dt[Pt++]=255&b),dt},z.fromByteArray=function It(I){for(var b,q=I.length,st=q%3,Ct=[],Pt=0,jt=q-st;Ptjt?jt:Pt+16383));return 1===st?Ct.push(W[(b=I[q-1])>>2]+W[b<<4&63]+"=="):2===st&&Ct.push(W[(b=(I[q-2]<<8)+I[q-1])>>10]+W[b>>4&63]+W[b<<2&63]+"="),Ct.join("")};for(var W=[],N=[],Rt=typeof Uint8Array<"u"?Uint8Array:Array,Et="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",ot=0;ot<64;++ot)W[ot]=Et[ot],N[Et.charCodeAt(ot)]=ot;function Z(I){var b=I.length;if(b%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var q=I.indexOf("=");return-1===q&&(q=b),[q,q===b?0:4-q%4]}function _t(I){return W[I>>18&63]+W[I>>12&63]+W[I>>6&63]+W[63&I]}function xt(I,b,q){for(var Ct=[],dt=b;dtlt)throw new RangeError('The value "'+r+'" is invalid for option "size"');const t=new Uint8Array(r);return Object.setPrototypeOf(t,u.prototype),t}function u(r,t,e){if("number"==typeof r){if("string"==typeof t)throw new TypeError('The "string" argument must be of type string. Received type number');return It(r)}return tt(r,t,e)}function tt(r,t,e){if("string"==typeof r)return function I(r,t){if(("string"!=typeof t||""===t)&&(t="utf8"),!u.isEncoding(t))throw new TypeError("Unknown encoding: "+t);const e=0|jt(r,t);let n=w(e);const i=n.write(r,t);return i!==e&&(n=n.slice(0,i)),n}(r,t);if(ArrayBuffer.isView(r))return function q(r){if(Ut(r,Uint8Array)){const t=new Uint8Array(r);return st(t.buffer,t.byteOffset,t.byteLength)}return b(r)}(r);if(null==r)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r);if(Ut(r,ArrayBuffer)||r&&Ut(r.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(Ut(r,SharedArrayBuffer)||r&&Ut(r.buffer,SharedArrayBuffer)))return st(r,t,e);if("number"==typeof r)throw new TypeError('The "value" argument must not be of type number. Received type number');const n=r.valueOf&&r.valueOf();if(null!=n&&n!==r)return u.from(n,t,e);const i=function Ct(r){if(u.isBuffer(r)){const t=0|dt(r.length),e=w(t);return 0===e.length||r.copy(e,0,0,t),e}return void 0!==r.length?"number"!=typeof r.length||we(r.length)?w(0):b(r):"Buffer"===r.type&&Array.isArray(r.data)?b(r.data):void 0}(r);if(i)return i;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof r[Symbol.toPrimitive])return u.from(r[Symbol.toPrimitive]("string"),t,e);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r)}function _t(r){if("number"!=typeof r)throw new TypeError('"size" argument must be of type number');if(r<0)throw new RangeError('The value "'+r+'" is invalid for option "size"')}function It(r){return _t(r),w(r<0?0:0|dt(r))}function b(r){const t=r.length<0?0:0|dt(r.length),e=w(t);for(let n=0;n=lt)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+lt.toString(16)+" bytes");return 0|r}function jt(r,t){if(u.isBuffer(r))return r.length;if(ArrayBuffer.isView(r)||Ut(r,ArrayBuffer))return r.byteLength;if("string"!=typeof r)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof r);const e=r.length,n=arguments.length>2&&!0===arguments[2];if(!n&&0===e)return 0;let i=!1;for(;;)switch(t){case"ascii":case"latin1":case"binary":return e;case"utf8":case"utf-8":return he(r).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*e;case"hex":return e>>>1;case"base64":return Te(r).length;default:if(i)return n?-1:he(r).length;t=(""+t).toLowerCase(),i=!0}}function gt(r,t,e){let n=!1;if((void 0===t||t<0)&&(t=0),t>this.length||((void 0===e||e>this.length)&&(e=this.length),e<=0)||(e>>>=0)<=(t>>>=0))return"";for(r||(r="utf8");;)switch(r){case"hex":return ye(this,t,e);case"utf8":case"utf-8":return ae(this,t,e);case"ascii":return Ie(this,t,e);case"latin1":case"binary":return le(this,t,e);case"base64":return Pe(this,t,e);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ve(this,t,e);default:if(n)throw new TypeError("Unknown encoding: "+r);r=(r+"").toLowerCase(),n=!0}}function St(r,t,e){const n=r[t];r[t]=r[e],r[e]=n}function Qt(r,t,e,n,i){if(0===r.length)return-1;if("string"==typeof e?(n=e,e=0):e>2147483647?e=2147483647:e<-2147483648&&(e=-2147483648),we(e=+e)&&(e=i?0:r.length-1),e<0&&(e=r.length+e),e>=r.length){if(i)return-1;e=r.length-1}else if(e<0){if(!i)return-1;e=0}if("string"==typeof t&&(t=u.from(t,n)),u.isBuffer(t))return 0===t.length?-1:se(r,t,e,n,i);if("number"==typeof t)return t&=255,"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(r,t,e):Uint8Array.prototype.lastIndexOf.call(r,t,e):se(r,[t],e,n,i);throw new TypeError("val must be string, number or Buffer")}function se(r,t,e,n,i){let ht,a=1,E=r.length,H=t.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(r.length<2||t.length<2)return-1;a=2,E/=2,H/=2,e/=2}function mt(Tt,rt){return 1===a?Tt[rt]:Tt.readUInt16BE(rt*a)}if(i){let Tt=-1;for(ht=e;htE&&(e=E-H),ht=e;ht>=0;ht--){let Tt=!0;for(let rt=0;rti&&(n=i):n=i;const a=t.length;let E;for(n>a/2&&(n=a/2),E=0;E>8,i=e%256,a.push(i),a.push(n);return a}(t,r.length-e),r,e,n)}function Pe(r,t,e){return Rt.fromByteArray(0===t&&e===r.length?r:r.slice(t,e))}function ae(r,t,e){e=Math.min(r.length,e);const n=[];let i=t;for(;i239?4:a>223?3:a>191?2:1;if(i+H<=e){let mt,ht,Tt,rt;switch(H){case 1:a<128&&(E=a);break;case 2:mt=r[i+1],128==(192&mt)&&(rt=(31&a)<<6|63&mt,rt>127&&(E=rt));break;case 3:mt=r[i+1],ht=r[i+2],128==(192&mt)&&128==(192&ht)&&(rt=(15&a)<<12|(63&mt)<<6|63&ht,rt>2047&&(rt<55296||rt>57343)&&(E=rt));break;case 4:mt=r[i+1],ht=r[i+2],Tt=r[i+3],128==(192&mt)&&128==(192&ht)&&128==(192&Tt)&&(rt=(15&a)<<18|(63&mt)<<12|(63&ht)<<6|63&Tt,rt>65535&&rt<1114112&&(E=rt))}}null===E?(E=65533,H=1):E>65535&&(E-=65536,n.push(E>>>10&1023|55296),E=56320|1023&E),n.push(E),i+=H}return function xe(r){const t=r.length;if(t<=4096)return String.fromCharCode.apply(String,r);let e="",n=0;for(;nn)&&(e=n);let i="";for(let a=t;ae)throw new RangeError("Trying to access beyond buffer length")}function At(r,t,e,n,i,a){if(!u.isBuffer(r))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>i||tr.length)throw new RangeError("Index out of range")}function Ee(r,t,e,n,i){Gt(t,n,i,r,e,7);let a=Number(t&BigInt(4294967295));r[e++]=a,a>>=8,r[e++]=a,a>>=8,r[e++]=a,a>>=8,r[e++]=a;let E=Number(t>>BigInt(32)&BigInt(4294967295));return r[e++]=E,E>>=8,r[e++]=E,E>>=8,r[e++]=E,E>>=8,r[e++]=E,e}function _e(r,t,e,n,i){Gt(t,n,i,r,e,7);let a=Number(t&BigInt(4294967295));r[e+7]=a,a>>=8,r[e+6]=a,a>>=8,r[e+5]=a,a>>=8,r[e+4]=a;let E=Number(t>>BigInt(32)&BigInt(4294967295));return r[e+3]=E,E>>=8,r[e+2]=E,E>>=8,r[e+1]=E,E>>=8,r[e]=E,e+8}function ge(r,t,e,n,i,a){if(e+n>r.length)throw new RangeError("Index out of range");if(e<0)throw new RangeError("Index out of range")}function Nt(r,t,e,n,i){return t=+t,e>>>=0,i||ge(r,0,e,4),Et.write(r,t,e,n,23,4),e+4}function te(r,t,e,n,i){return t=+t,e>>>=0,i||ge(r,0,e,8),Et.write(r,t,e,n,52,8),e+8}!(u.TYPED_ARRAY_SUPPORT=function Z(){try{const r=new Uint8Array(1),t={foo:function(){return 42}};return Object.setPrototypeOf(t,Uint8Array.prototype),Object.setPrototypeOf(r,t),42===r.foo()}catch{return!1}}())&&typeof console<"u"&&"function"==typeof console.error&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(u.prototype,"parent",{enumerable:!0,get:function(){if(u.isBuffer(this))return this.buffer}}),Object.defineProperty(u.prototype,"offset",{enumerable:!0,get:function(){if(u.isBuffer(this))return this.byteOffset}}),u.poolSize=8192,u.from=function(r,t,e){return tt(r,t,e)},Object.setPrototypeOf(u.prototype,Uint8Array.prototype),Object.setPrototypeOf(u,Uint8Array),u.alloc=function(r,t,e){return function xt(r,t,e){return _t(r),r<=0?w(r):void 0!==t?"string"==typeof e?w(r).fill(t,e):w(r).fill(t):w(r)}(r,t,e)},u.allocUnsafe=function(r){return It(r)},u.allocUnsafeSlow=function(r){return It(r)},u.isBuffer=function(t){return null!=t&&!0===t._isBuffer&&t!==u.prototype},u.compare=function(t,e){if(Ut(t,Uint8Array)&&(t=u.from(t,t.offset,t.byteLength)),Ut(e,Uint8Array)&&(e=u.from(e,e.offset,e.byteLength)),!u.isBuffer(t)||!u.isBuffer(e))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(t===e)return 0;let n=t.length,i=e.length;for(let a=0,E=Math.min(n,i);ai.length?(u.isBuffer(E)||(E=u.from(E)),E.copy(i,a)):Uint8Array.prototype.set.call(i,E,a);else{if(!u.isBuffer(E))throw new TypeError('"list" argument must be an Array of Buffers');E.copy(i,a)}a+=E.length}return i},u.byteLength=jt,u.prototype._isBuffer=!0,u.prototype.swap16=function(){const t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let e=0;ee&&(t+=" ... "),""},ot&&(u.prototype[ot]=u.prototype.inspect),u.prototype.compare=function(t,e,n,i,a){if(Ut(t,Uint8Array)&&(t=u.from(t,t.offset,t.byteLength)),!u.isBuffer(t))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(void 0===e&&(e=0),void 0===n&&(n=t?t.length:0),void 0===i&&(i=0),void 0===a&&(a=this.length),e<0||n>t.length||i<0||a>this.length)throw new RangeError("out of range index");if(i>=a&&e>=n)return 0;if(i>=a)return-1;if(e>=n)return 1;if(this===t)return 0;let E=(a>>>=0)-(i>>>=0),H=(n>>>=0)-(e>>>=0);const mt=Math.min(E,H),ht=this.slice(i,a),Tt=t.slice(e,n);for(let rt=0;rt>>=0,isFinite(n)?(n>>>=0,void 0===i&&(i="utf8")):(i=n,n=void 0)}const a=this.length-e;if((void 0===n||n>a)&&(n=a),t.length>0&&(n<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");i||(i="utf8");let E=!1;for(;;)switch(i){case"hex":return de(this,t,e,n);case"utf8":case"utf-8":return Q(this,t,e,n);case"ascii":case"latin1":case"binary":return ce(this,t,e,n);case"base64":return ue(this,t,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return vt(this,t,e,n);default:if(E)throw new TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase(),E=!0}},u.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},u.prototype.slice=function(t,e){const n=this.length;(t=~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),(e=void 0===e?n:~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),e>>=0,e>>>=0,n||wt(t,e,this.length);let i=this[t],a=1,E=0;for(;++E>>=0,e>>>=0,n||wt(t,e,this.length);let i=this[t+--e],a=1;for(;e>0&&(a*=256);)i+=this[t+--e]*a;return i},u.prototype.readUint8=u.prototype.readUInt8=function(t,e){return t>>>=0,e||wt(t,1,this.length),this[t]},u.prototype.readUint16LE=u.prototype.readUInt16LE=function(t,e){return t>>>=0,e||wt(t,2,this.length),this[t]|this[t+1]<<8},u.prototype.readUint16BE=u.prototype.readUInt16BE=function(t,e){return t>>>=0,e||wt(t,2,this.length),this[t]<<8|this[t+1]},u.prototype.readUint32LE=u.prototype.readUInt32LE=function(t,e){return t>>>=0,e||wt(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},u.prototype.readUint32BE=u.prototype.readUInt32BE=function(t,e){return t>>>=0,e||wt(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},u.prototype.readBigUInt64LE=Mt(function(t){Yt(t>>>=0,"offset");const e=this[t],n=this[t+7];(void 0===e||void 0===n)&&re(t,this.length-8);const i=e+256*this[++t]+65536*this[++t]+this[++t]*2**24,a=this[++t]+256*this[++t]+65536*this[++t]+n*2**24;return BigInt(i)+(BigInt(a)<>>=0,"offset");const e=this[t],n=this[t+7];(void 0===e||void 0===n)&&re(t,this.length-8);const i=e*2**24+65536*this[++t]+256*this[++t]+this[++t],a=this[++t]*2**24+65536*this[++t]+256*this[++t]+n;return(BigInt(i)<>>=0,e>>>=0,n||wt(t,e,this.length);let i=this[t],a=1,E=0;for(;++E=a&&(i-=Math.pow(2,8*e)),i},u.prototype.readIntBE=function(t,e,n){t>>>=0,e>>>=0,n||wt(t,e,this.length);let i=e,a=1,E=this[t+--i];for(;i>0&&(a*=256);)E+=this[t+--i]*a;return a*=128,E>=a&&(E-=Math.pow(2,8*e)),E},u.prototype.readInt8=function(t,e){return t>>>=0,e||wt(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},u.prototype.readInt16LE=function(t,e){t>>>=0,e||wt(t,2,this.length);const n=this[t]|this[t+1]<<8;return 32768&n?4294901760|n:n},u.prototype.readInt16BE=function(t,e){t>>>=0,e||wt(t,2,this.length);const n=this[t+1]|this[t]<<8;return 32768&n?4294901760|n:n},u.prototype.readInt32LE=function(t,e){return t>>>=0,e||wt(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},u.prototype.readInt32BE=function(t,e){return t>>>=0,e||wt(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},u.prototype.readBigInt64LE=Mt(function(t){Yt(t>>>=0,"offset");const e=this[t],n=this[t+7];return(void 0===e||void 0===n)&&re(t,this.length-8),(BigInt(this[t+4]+256*this[t+5]+65536*this[t+6]+(n<<24))<>>=0,"offset");const e=this[t],n=this[t+7];(void 0===e||void 0===n)&&re(t,this.length-8);const i=(e<<24)+65536*this[++t]+256*this[++t]+this[++t];return(BigInt(i)<>>=0,e||wt(t,4,this.length),Et.read(this,t,!0,23,4)},u.prototype.readFloatBE=function(t,e){return t>>>=0,e||wt(t,4,this.length),Et.read(this,t,!1,23,4)},u.prototype.readDoubleLE=function(t,e){return t>>>=0,e||wt(t,8,this.length),Et.read(this,t,!0,52,8)},u.prototype.readDoubleBE=function(t,e){return t>>>=0,e||wt(t,8,this.length),Et.read(this,t,!1,52,8)},u.prototype.writeUintLE=u.prototype.writeUIntLE=function(t,e,n,i){t=+t,e>>>=0,n>>>=0,i||At(this,t,e,n,Math.pow(2,8*n)-1,0);let a=1,E=0;for(this[e]=255&t;++E>>=0,n>>>=0,i||At(this,t,e,n,Math.pow(2,8*n)-1,0);let a=n-1,E=1;for(this[e+a]=255&t;--a>=0&&(E*=256);)this[e+a]=t/E&255;return e+n},u.prototype.writeUint8=u.prototype.writeUInt8=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,1,255,0),this[e]=255&t,e+1},u.prototype.writeUint16LE=u.prototype.writeUInt16LE=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,2,65535,0),this[e]=255&t,this[e+1]=t>>>8,e+2},u.prototype.writeUint16BE=u.prototype.writeUInt16BE=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,2,65535,0),this[e]=t>>>8,this[e+1]=255&t,e+2},u.prototype.writeUint32LE=u.prototype.writeUInt32LE=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,4,4294967295,0),this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t,e+4},u.prototype.writeUint32BE=u.prototype.writeUInt32BE=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,4,4294967295,0),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},u.prototype.writeBigUInt64LE=Mt(function(t,e=0){return Ee(this,t,e,BigInt(0),BigInt("0xffffffffffffffff"))}),u.prototype.writeBigUInt64BE=Mt(function(t,e=0){return _e(this,t,e,BigInt(0),BigInt("0xffffffffffffffff"))}),u.prototype.writeIntLE=function(t,e,n,i){if(t=+t,e>>>=0,!i){const mt=Math.pow(2,8*n-1);At(this,t,e,n,mt-1,-mt)}let a=0,E=1,H=0;for(this[e]=255&t;++a>>=0,!i){const mt=Math.pow(2,8*n-1);At(this,t,e,n,mt-1,-mt)}let a=n-1,E=1,H=0;for(this[e+a]=255&t;--a>=0&&(E*=256);)t<0&&0===H&&0!==this[e+a+1]&&(H=1),this[e+a]=(t/E|0)-H&255;return e+n},u.prototype.writeInt8=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,1,127,-128),t<0&&(t=255+t+1),this[e]=255&t,e+1},u.prototype.writeInt16LE=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,2,32767,-32768),this[e]=255&t,this[e+1]=t>>>8,e+2},u.prototype.writeInt16BE=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,2,32767,-32768),this[e]=t>>>8,this[e+1]=255&t,e+2},u.prototype.writeInt32LE=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,4,2147483647,-2147483648),this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24,e+4},u.prototype.writeInt32BE=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},u.prototype.writeBigInt64LE=Mt(function(t,e=0){return Ee(this,t,e,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),u.prototype.writeBigInt64BE=Mt(function(t,e=0){return _e(this,t,e,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),u.prototype.writeFloatLE=function(t,e,n){return Nt(this,t,e,!0,n)},u.prototype.writeFloatBE=function(t,e,n){return Nt(this,t,e,!1,n)},u.prototype.writeDoubleLE=function(t,e,n){return te(this,t,e,!0,n)},u.prototype.writeDoubleBE=function(t,e,n){return te(this,t,e,!1,n)},u.prototype.copy=function(t,e,n,i){if(!u.isBuffer(t))throw new TypeError("argument should be a Buffer");if(n||(n=0),!i&&0!==i&&(i=this.length),e>=t.length&&(e=t.length),e||(e=0),i>0&&i=this.length)throw new RangeError("Index out of range");if(i<0)throw new RangeError("sourceEnd out of bounds");i>this.length&&(i=this.length),t.length-e>>=0,n=void 0===n?this.length:n>>>0,t||(t=0),"number"==typeof t)for(a=e;a=n+4;e-=3)t=`_${r.slice(e-3,e)}${t}`;return`${r.slice(0,e)}${t}`}function Gt(r,t,e,n,i,a){if(r>e||r3?0===t||t===BigInt(0)?`>= 0${E} and < 2${E} ** ${8*(a+1)}${E}`:`>= -(2${E} ** ${8*(a+1)-1}${E}) and < 2 ** ${8*(a+1)-1}${E}`:`>= ${t}${E} and <= ${e}${E}`,new ee.ERR_OUT_OF_RANGE("value",H,r)}!function Se(r,t,e){Yt(t,"offset"),(void 0===r[t]||void 0===r[t+e])&&re(t,r.length-(e+1))}(n,i,a)}function Yt(r,t){if("number"!=typeof r)throw new ee.ERR_INVALID_ARG_TYPE(t,"number",r)}function re(r,t,e){throw Math.floor(r)!==r?(Yt(r,e),new ee.ERR_OUT_OF_RANGE(e||"offset","an integer",r)):t<0?new ee.ERR_BUFFER_OUT_OF_BOUNDS:new ee.ERR_OUT_OF_RANGE(e||"offset",`>= ${e?1:0} and <= ${t}`,r)}me("ERR_BUFFER_OUT_OF_BOUNDS",function(r){return r?`${r} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),me("ERR_INVALID_ARG_TYPE",function(r,t){return`The "${r}" argument must be of type number. Received type ${typeof t}`},TypeError),me("ERR_OUT_OF_RANGE",function(r,t,e){let n=`The value of "${r}" is out of range.`,i=e;return Number.isInteger(e)&&Math.abs(e)>2**32?i=Ht(String(e)):"bigint"==typeof e&&(i=String(e),(e>BigInt(2)**BigInt(32)||e<-(BigInt(2)**BigInt(32)))&&(i=Ht(i)),i+="n"),n+=` It must be ${t}. Received ${i}`,n},RangeError);const Ae=/[^+/0-9A-Za-z-_]/g;function he(r,t){let e;t=t||1/0;const n=r.length;let i=null;const a=[];for(let E=0;E55295&&e<57344){if(!i){if(e>56319){(t-=3)>-1&&a.push(239,191,189);continue}if(E+1===n){(t-=3)>-1&&a.push(239,191,189);continue}i=e;continue}if(e<56320){(t-=3)>-1&&a.push(239,191,189),i=e;continue}e=65536+(i-55296<<10|e-56320)}else i&&(t-=3)>-1&&a.push(239,191,189);if(i=null,e<128){if((t-=1)<0)break;a.push(e)}else if(e<2048){if((t-=2)<0)break;a.push(e>>6|192,63&e|128)}else if(e<65536){if((t-=3)<0)break;a.push(e>>12|224,e>>6&63|128,63&e|128)}else{if(!(e<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;a.push(e>>18|240,e>>12&63|128,e>>6&63|128,63&e|128)}}return a}function Te(r){return Rt.toByteArray(function Ot(r){if((r=(r=r.split("=")[0]).trim().replace(Ae,"")).length<2)return"";for(;r.length%4!=0;)r+="=";return r}(r))}function fe(r,t,e,n){let i;for(i=0;i=t.length||i>=r.length);++i)t[i+e]=r[i];return i}function Ut(r,t){return r instanceof t||null!=r&&null!=r.constructor&&null!=r.constructor.name&&r.constructor.name===t.name}function we(r){return r!=r}const De=function(){const r="0123456789abcdef",t=new Array(256);for(let e=0;e<16;++e){const n=16*e;for(let i=0;i<16;++i)t[n+i]=r[e]+r[i]}return t}();function Mt(r){return typeof BigInt>"u"?ne:r}function ne(){throw new Error("BigInt not supported")}},2020(Wt,z){z.read=function(W,N,Rt,Et,ot){var lt,Z,w=8*ot-Et-1,u=(1<>1,_t=-7,xt=Rt?ot-1:0,It=Rt?-1:1,I=W[N+xt];for(xt+=It,lt=I&(1<<-_t)-1,I>>=-_t,_t+=w;_t>0;lt=256*lt+W[N+xt],xt+=It,_t-=8);for(Z=lt&(1<<-_t)-1,lt>>=-_t,_t+=Et;_t>0;Z=256*Z+W[N+xt],xt+=It,_t-=8);if(0===lt)lt=1-tt;else{if(lt===u)return Z?NaN:1/0*(I?-1:1);Z+=Math.pow(2,Et),lt-=tt}return(I?-1:1)*Z*Math.pow(2,lt-Et)},z.write=function(W,N,Rt,Et,ot,lt){var Z,w,u,tt=8*lt-ot-1,_t=(1<>1,It=23===ot?Math.pow(2,-24)-Math.pow(2,-77):0,I=Et?0:lt-1,b=Et?1:-1,q=N<0||0===N&&1/N<0?1:0;for(N=Math.abs(N),isNaN(N)||N===1/0?(w=isNaN(N)?1:0,Z=_t):(Z=Math.floor(Math.log(N)/Math.LN2),N*(u=Math.pow(2,-Z))<1&&(Z--,u*=2),(N+=Z+xt>=1?It/u:It*Math.pow(2,1-xt))*u>=2&&(Z++,u/=2),Z+xt>=_t?(w=0,Z=_t):Z+xt>=1?(w=(N*u-1)*Math.pow(2,ot),Z+=xt):(w=N*Math.pow(2,xt-1)*Math.pow(2,ot),Z=0));ot>=8;W[Rt+I]=255&w,I+=b,w/=256,ot-=8);for(Z=Z<0;W[Rt+I]=255&Z,I+=b,Z/=256,tt-=8);W[Rt+I-b]|=128*q}},573(Wt){var W,N,z=Wt.exports={};function Rt(){throw new Error("setTimeout has not been defined")}function Et(){throw new Error("clearTimeout has not been defined")}function ot(b){if(W===setTimeout)return setTimeout(b,0);if((W===Rt||!W)&&setTimeout)return W=setTimeout,setTimeout(b,0);try{return W(b,0)}catch{try{return W.call(null,b,0)}catch{return W.call(this,b,0)}}}!function(){try{W="function"==typeof setTimeout?setTimeout:Rt}catch{W=Rt}try{N="function"==typeof clearTimeout?clearTimeout:Et}catch{N=Et}}();var u,Z=[],w=!1,tt=-1;function _t(){!w||!u||(w=!1,u.length?Z=u.concat(Z):tt=-1,Z.length&&xt())}function xt(){if(!w){var b=ot(_t);w=!0;for(var q=Z.length;q;){for(u=Z,Z=[];++tt1)for(var st=1;sto in s?Wt(s,o,{enumerable:!0,configurable:!0,writable:!0,value:y}):s[o]=y,lt=(s,o)=>{for(var y in o||(o={}))Rt.call(o,y)&&ot(s,y,o[y]);if(N)for(var y of N(o))Et.call(o,y)&&ot(s,y,o[y]);return s},w=(s,o,y)=>(ot(s,"symbol"!=typeof o?o+"":o,y),y),u=globalThis;function tt(s){return(u.__Zone_symbol_prefix||"__zone_symbol__")+s}var It=Object.getOwnPropertyDescriptor,I=Object.defineProperty,b=Object.getPrototypeOf,q=Object.create,st=Array.prototype.slice,Ct="addEventListener",dt="removeEventListener",Pt=tt(Ct),jt=tt(dt),gt="true",St="false",Qt=tt("");function se(s,o){return Zone.current.wrap(s,o)}function de(s,o,y,c,d){return Zone.current.scheduleMacroTask(s,o,y,c,d)}var Q=tt,ce=typeof window<"u",ue=ce?window:void 0,vt=ce&&ue||globalThis;function ae(s,o){for(let y=s.length-1;y>=0;y--)"function"==typeof s[y]&&(s[y]=se(s[y],o+"_"+y));return s}function xe(s){return!s||!1!==s.writable&&!("function"==typeof s.get&&typeof s.set>"u")}var Ie=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope,le=!("nw"in vt)&&typeof vt.process<"u"&&"[object process]"===vt.process.toString(),ye=!le&&!Ie&&!(!ce||!ue.HTMLElement),ve=typeof vt.process<"u"&&"[object process]"===vt.process.toString()&&!Ie&&!(!ce||!ue.HTMLElement),wt={},At=Q("enable_beforeunload"),Ee=function(s){if(!(s=s||vt.event))return;let o=wt[s.type];o||(o=wt[s.type]=Q("ON_PROPERTY"+s.type));const y=this||s.target||vt,c=y[o];let d;return ye&&y===ue&&"error"===s.type?(d=c&&c.call(this,s.message,s.filename,s.lineno,s.colno,s.error),!0===d&&s.preventDefault()):(d=c&&c.apply(this,arguments),"beforeunload"===s.type&&vt[At]&&"string"==typeof d?s.returnValue=d:null!=d&&!d&&s.preventDefault()),d};function _e(s,o,y){let c=It(s,o);if(!c&&y&&It(y,o)&&(c={enumerable:!0,configurable:!0}),!c||!c.configurable)return;const d=Q("on"+o+"patched");if(s.hasOwnProperty(d)&&s[d])return;delete c.writable,delete c.value;const _=c.get,D=c.set,x=o.slice(2);let S=wt[x];S||(S=wt[x]=Q("ON_PROPERTY"+x)),c.set=function(U){let B=this;!B&&s===vt&&(B=vt),B&&("function"==typeof B[S]&&B.removeEventListener(x,Ee),D?.call(B,null),B[S]=U,"function"==typeof U&&B.addEventListener(x,Ee,!1))},c.get=function(){let U=this;if(!U&&s===vt&&(U=vt),!U)return null;const B=U[S];if(B)return B;if(_){let L=_.call(this);if(L)return c.set.call(this,L),"function"==typeof U.removeAttribute&&U.removeAttribute(o),L}return null},I(s,o,c),s[d]=!0}function ge(s,o,y){if(o)for(let c=0;cfunction(D,x){const S=y(D,x);return S.cbIdx>=0&&"function"==typeof x[S.cbIdx]?de(S.name,x[S.cbIdx],S,d):_.apply(D,x)})}function Gt(s,o){s[Q("OriginalDelegate")]=o}function Yt(s){return"function"==typeof s}function re(s){return"number"==typeof s}var Ae={useG:!0},Ot={},he={},Be=new RegExp("^"+Qt+"(\\w+)(true|false)$"),Re=Q("propagationStopped");function Te(s,o){const y=(o?o(s):s)+St,c=(o?o(s):s)+gt,d=Qt+y,_=Qt+c;Ot[s]={},Ot[s][St]=d,Ot[s][gt]=_}function fe(s,o,y,c){const d=c&&c.add||Ct,_=c&&c.rm||dt,D=c&&c.listeners||"eventListeners",x=c&&c.rmAll||"removeAllListeners",S=Q(d),U="."+d+":",B="prependListener",L="."+B+":",Y=function(P,k,ct){if(P.isRemoved)return;const et=P.callback;let yt;"object"==typeof et&&et.handleEvent&&(P.callback=R=>et.handleEvent(R),P.originalDelegate=et);try{P.invoke(P,k,[ct])}catch(R){yt=R}const ut=P.options;return ut&&"object"==typeof ut&&ut.once&&k[_].call(k,ct.type,P.originalDelegate?P.originalDelegate:P.callback,ut),yt};function K(P,k,ct){if(!(k=k||s.event))return;const et=P||k.target||s,yt=et[Ot[k.type][ct?gt:St]];if(yt){const ut=[];if(1===yt.length){const R=Y(yt[0],et,k);R&&ut.push(R)}else{const R=yt.slice();for(let bt=0;bt{throw bt})}}}const Dt=function(P){return K(this,P,!1)},kt=function(P){return K(this,P,!0)};function Lt(P,k){if(!P)return!1;let ct=!0;k&&void 0!==k.useG&&(ct=k.useG);const et=k&&k.vh;let yt=!0;k&&void 0!==k.chkDup&&(yt=k.chkDup);let ut=!1;k&&void 0!==k.rt&&(ut=k.rt);let R=P;for(;R&&!R.hasOwnProperty(d);)R=b(R);if(!R&&P[d]&&(R=P),!R||R[S])return!1;const bt=k&&k.eventNameToString,j={},M=R[S]=R[d],X=R[Q(_)]=R[_],F=R[Q(D)]=R[D],Ft=R[Q(x)]=R[x];let Zt;k&&k.prepend&&(Zt=R[Q(k.prepend)]=R[k.prepend]);const it=ct?function(p){if(!j.isExisting)return M.call(j.target,j.eventName,j.capture?kt:Dt,j.options)}:function(p){return M.call(j.target,j.eventName,p.invoke,j.options)},J=ct?function(p){if(!p.isRemoved){const m=Ot[p.eventName];let C;m&&(C=m[p.capture?gt:St]);const O=C&&p.target[C];if(O)for(let v=0;vz(s,W({passive:!0})))(lt({},p)):p:{passive:!0}:p}(arguments[2],ie)),oe=$t?.signal;if(oe?.aborted)return;if(Kt)for(let Xt=0;Xtzt.zone.cancelTask(zt);p.call(oe,"abort",Xt,{once:!0}),zt.removeAbortListener=()=>oe.removeEventListener("abort",Xt)}return j.target=null,ke&&(ke.taskData=null),Ue&&(j.options.once=!0),"boolean"!=typeof zt.options&&(zt.options=$t),zt.target=V,zt.capture=Fe,zt.eventName=$,pt&&(zt.originalDelegate=ft),G?pe.unshift(zt):pe.push(zt),v?V:void 0}};return R[d]=g(M,U,it,J,ut),Zt&&(R[B]=g(Zt,L,function(p){return Zt.call(j.target,j.eventName,p.invoke,j.options)},J,ut,!0)),R[_]=function(){const p=this||s;let m=arguments[0];k&&k.transferEventName&&(m=k.transferEventName(m));const C=arguments[2],O=!!C&&("boolean"==typeof C||C.capture),v=arguments[1];if(!v)return X.apply(this,arguments);if(et&&!et(X,v,p,arguments))return;const G=Ot[m];let V;G&&(V=G[O?gt:St]);const $=V&&p[V];if($)for(let ft=0;ft<$.length;ft++){const pt=$[ft];if(Jt(pt,v))return $.splice(ft,1),pt.isRemoved=!0,0!==$.length||(pt.allRemoved=!0,p[V]=null,O||"string"!=typeof m)||(p[Qt+"ON_PROPERTY"+m]=null),pt.zone.cancelTask(pt),ut?p:void 0}return X.apply(this,arguments)},R[D]=function(){const p=this||s;let m=arguments[0];k&&k.transferEventName&&(m=k.transferEventName(m));const C=[],O=Ut(p,bt?bt(m):m);for(let v=0;vfunction(d,_){d[Re]=!0,c&&c.apply(d,_)})}var Mt=Q("zoneTask");function ne(s,o,y,c){let d=null,_=null;y+=c;const D={};function x(U){const B=U.data;B.args[0]=function(){return U.invoke.apply(this,arguments)};const L=d.apply(s,B.args);return re(L)?B.handleId=L:(B.handle=L,B.isRefreshable=Yt(L.refresh)),U}function S(U){const{handle:B,handleId:L}=U.data;return _.call(s,B??L)}d=Ht(s,o+=c,U=>function(B,L){var Y;if(Yt(L[0])){const K={isRefreshable:!1,isPeriodic:"Interval"===c,delay:"Timeout"===c||"Interval"===c?L[1]||0:void 0,args:L},Dt=L[0];L[0]=function(){try{return Dt.apply(this,arguments)}finally{const{handle:et,handleId:yt,isPeriodic:ut,isRefreshable:R}=K;!ut&&!R&&(yt?delete D[yt]:et&&(et[Mt]=null))}};const kt=de(o,L[0],K,x,S);if(!kt)return kt;const{handleId:Lt,handle:Bt,isRefreshable:P,isPeriodic:k}=kt.data;if(Lt)D[Lt]=kt;else if(Bt&&(Bt[Mt]=kt,P&&!k)){const ct=Bt.refresh;Bt.refresh=function(){const{zone:et,state:yt}=kt;return"notScheduled"===yt?(kt._state="scheduled",et._updateTaskCount(kt,1)):"running"===yt&&(kt._state="scheduling"),ct.call(this)}}return null!=(Y=Bt??Lt)?Y:kt}return U.apply(s,L)}),_=Ht(s,y,U=>function(B,L){const Y=L[0];let K;re(Y)?(K=D[Y],delete D[Y]):(K=Y?.[Mt],K?Y[Mt]=null:K=Y),K?.type?K.cancelFn&&K.zone.cancelTask(K):U.apply(s,L)})}function n(s,o,y){if(!y||0===y.length)return o;const c=y.filter(_=>_.target===s);if(0===c.length)return o;const d=c[0].ignoreProperties;return o.filter(_=>-1===d.indexOf(_))}function i(s,o,y,c){s&&ge(s,n(s,o,y),c)}function a(s){return Object.getOwnPropertyNames(s).filter(o=>o.startsWith("on")&&o.length>2).map(o=>o.substring(2))}function Tt(s,o,y,c,d){const _=Zone.__symbol__(c);if(o[_])return;const D=o[_]=o[c];o[c]=function(x,S,U){return S&&S.prototype&&d.forEach(function(B){const L=`${y}.${c}::`+B,Y=S.prototype;try{if(Y.hasOwnProperty(B)){const K=s.ObjectGetOwnPropertyDescriptor(Y,B);K&&K.value?(K.value=s.wrapWithCurrentZone(K.value,L),s._redefineProperty(S.prototype,B,K)):Y[B]&&(Y[B]=s.wrapWithCurrentZone(Y[B],L))}else Y[B]&&(Y[B]=s.wrapWithCurrentZone(Y[B],L))}catch{}}),D.call(o,x,S,U)},s.attachOriginToPatched(o[c],D)}var Le=function xt(){const o=globalThis,y=!0===o[tt("forceDuplicateZoneCheck")];if(o.Zone&&(y||"function"!=typeof o.Zone.__symbol__))throw new Error("Zone already loaded.");return null!=o.Zone||(o.Zone=function _t(){const s=u.performance;function o(nt){s&&s.mark&&s.mark(nt)}function y(nt,f){s&&s.measure&&s.measure(nt,f)}o("Zone");const c=class Oe{constructor(f,h){w(this,"_parent"),w(this,"_name"),w(this,"_properties"),w(this,"_zoneDelegate"),this._parent=f,this._name=h?h.name||"unnamed":"",this._properties=h&&h.properties||{},this._zoneDelegate=new D(this,this._parent&&this._parent._zoneDelegate,h)}static assertZonePatched(){if(u.Promise!==M.ZoneAwarePromise)throw new Error("Zone.js has detected that ZoneAwarePromise `(window|global).Promise` has been overwritten.\nMost likely cause is that a Promise polyfill has been loaded after Zone.js (Polyfilling Promise api is not necessary when zone.js is loaded. If you must load one, do so before loading zone.js.)")}static get root(){let f=Oe.current;for(;f.parent;)f=f.parent;return f}static get current(){return F.zone}static get currentTask(){return Ft}static __load_patch(f,h,l=!1){if(M.hasOwnProperty(f)){const A=!0===u[tt("forceDuplicateZoneCheck")];if(!l&&A)throw Error("Already loaded patch: "+f)}else if(!u["__Zone_disable_"+f]){const A="Zone:"+f;o(A),M[f]=h(u,Oe,X),y(A,A)}}get parent(){return this._parent}get name(){return this._name}get(f){const h=this.getZoneWith(f);if(h)return h._properties[f]}getZoneWith(f){let h=this;for(;h;){if(h._properties.hasOwnProperty(f))return h;h=h._parent}return null}fork(f){if(!f)throw new Error("ZoneSpec required!");return this._zoneDelegate.fork(this,f)}wrap(f,h){if("function"!=typeof f)throw new Error("Expecting function got: "+f);const l=this._zoneDelegate.intercept(this,f,h),A=this;return function(){return A.runGuarded(l,this,arguments,h)}}run(f,h,l,A){F={parent:F,zone:this};try{return this._zoneDelegate.invoke(this,f,h,l,A)}finally{F=F.parent}}runGuarded(f,h=null,l,A){F={parent:F,zone:this};try{try{return this._zoneDelegate.invoke(this,f,h,l,A)}catch(it){if(this._zoneDelegate.handleError(this,it))throw it}}finally{F=F.parent}}runTask(f,h,l){if(f.zone!=this)throw new Error("A task can only be run in the zone of creation! (Creation: "+(f.zone||Bt).name+"; Execution: "+this.name+")");const A=f,{type:it,data:{isPeriodic:J=!1,isRefreshable:qt=!1}={}}=f;if(f.state===P&&(it===j||it===bt))return;const Jt=f.state!=et;Jt&&A._transitionTo(et,ct);const Kt=Ft;Ft=A,F={parent:F,zone:this};try{it==bt&&f.data&&!J&&!qt&&(f.cancelFn=void 0);try{return this._zoneDelegate.invokeTask(this,A,h,l)}catch(Vt){if(this._zoneDelegate.handleError(this,Vt))throw Vt}}finally{const Vt=f.state;if(Vt!==P&&Vt!==ut)if(it==j||J||qt&&Vt===k)Jt&&A._transitionTo(ct,et,k);else{const T=A._zoneDelegates;this._updateTaskCount(A,-1),Jt&&A._transitionTo(P,et,P),qt&&(A._zoneDelegates=T)}F=F.parent,Ft=Kt}}scheduleTask(f){if(f.zone&&f.zone!==this){let l=this;for(;l;){if(l===f.zone)throw Error(`can not reschedule task to ${this.name} which is descendants of the original zone ${f.zone.name}`);l=l.parent}}f._transitionTo(k,P);const h=[];f._zoneDelegates=h,f._zone=this;try{f=this._zoneDelegate.scheduleTask(this,f)}catch(l){throw f._transitionTo(ut,k,P),this._zoneDelegate.handleError(this,l),l}return f._zoneDelegates===h&&this._updateTaskCount(f,1),f.state==k&&f._transitionTo(ct,k),f}scheduleMicroTask(f,h,l,A){return this.scheduleTask(new x(R,f,h,l,A,void 0))}scheduleMacroTask(f,h,l,A,it){return this.scheduleTask(new x(bt,f,h,l,A,it))}scheduleEventTask(f,h,l,A,it){return this.scheduleTask(new x(j,f,h,l,A,it))}cancelTask(f){if(f.zone!=this)throw new Error("A task can only be cancelled in the zone of creation! (Creation: "+(f.zone||Bt).name+"; Execution: "+this.name+")");if(f.state===ct||f.state===et){f._transitionTo(yt,ct,et);try{this._zoneDelegate.cancelTask(this,f)}catch(h){throw f._transitionTo(ut,yt),this._zoneDelegate.handleError(this,h),h}return this._updateTaskCount(f,-1),f._transitionTo(P,yt),f.runCount=-1,f}}_updateTaskCount(f,h){const l=f._zoneDelegates;-1==h&&(f._zoneDelegates=null);for(let A=0;Ant.hasTask(h,l),onScheduleTask:(nt,f,h,l)=>nt.scheduleTask(h,l),onInvokeTask:(nt,f,h,l,A,it)=>nt.invokeTask(h,l,A,it),onCancelTask:(nt,f,h,l)=>nt.cancelTask(h,l)};class D{constructor(f,h,l){w(this,"_zone"),w(this,"_taskCounts",{microTask:0,macroTask:0,eventTask:0}),w(this,"_parentDelegate"),w(this,"_forkDlgt"),w(this,"_forkZS"),w(this,"_forkCurrZone"),w(this,"_interceptDlgt"),w(this,"_interceptZS"),w(this,"_interceptCurrZone"),w(this,"_invokeDlgt"),w(this,"_invokeZS"),w(this,"_invokeCurrZone"),w(this,"_handleErrorDlgt"),w(this,"_handleErrorZS"),w(this,"_handleErrorCurrZone"),w(this,"_scheduleTaskDlgt"),w(this,"_scheduleTaskZS"),w(this,"_scheduleTaskCurrZone"),w(this,"_invokeTaskDlgt"),w(this,"_invokeTaskZS"),w(this,"_invokeTaskCurrZone"),w(this,"_cancelTaskDlgt"),w(this,"_cancelTaskZS"),w(this,"_cancelTaskCurrZone"),w(this,"_hasTaskDlgt"),w(this,"_hasTaskDlgtOwner"),w(this,"_hasTaskZS"),w(this,"_hasTaskCurrZone"),this._zone=f,this._parentDelegate=h,this._forkZS=l&&(l&&l.onFork?l:h._forkZS),this._forkDlgt=l&&(l.onFork?h:h._forkDlgt),this._forkCurrZone=l&&(l.onFork?this._zone:h._forkCurrZone),this._interceptZS=l&&(l.onIntercept?l:h._interceptZS),this._interceptDlgt=l&&(l.onIntercept?h:h._interceptDlgt),this._interceptCurrZone=l&&(l.onIntercept?this._zone:h._interceptCurrZone),this._invokeZS=l&&(l.onInvoke?l:h._invokeZS),this._invokeDlgt=l&&(l.onInvoke?h:h._invokeDlgt),this._invokeCurrZone=l&&(l.onInvoke?this._zone:h._invokeCurrZone),this._handleErrorZS=l&&(l.onHandleError?l:h._handleErrorZS),this._handleErrorDlgt=l&&(l.onHandleError?h:h._handleErrorDlgt),this._handleErrorCurrZone=l&&(l.onHandleError?this._zone:h._handleErrorCurrZone),this._scheduleTaskZS=l&&(l.onScheduleTask?l:h._scheduleTaskZS),this._scheduleTaskDlgt=l&&(l.onScheduleTask?h:h._scheduleTaskDlgt),this._scheduleTaskCurrZone=l&&(l.onScheduleTask?this._zone:h._scheduleTaskCurrZone),this._invokeTaskZS=l&&(l.onInvokeTask?l:h._invokeTaskZS),this._invokeTaskDlgt=l&&(l.onInvokeTask?h:h._invokeTaskDlgt),this._invokeTaskCurrZone=l&&(l.onInvokeTask?this._zone:h._invokeTaskCurrZone),this._cancelTaskZS=l&&(l.onCancelTask?l:h._cancelTaskZS),this._cancelTaskDlgt=l&&(l.onCancelTask?h:h._cancelTaskDlgt),this._cancelTaskCurrZone=l&&(l.onCancelTask?this._zone:h._cancelTaskCurrZone),this._hasTaskZS=null,this._hasTaskDlgt=null,this._hasTaskDlgtOwner=null,this._hasTaskCurrZone=null;const A=l&&l.onHasTask;(A||h&&h._hasTaskZS)&&(this._hasTaskZS=A?l:_,this._hasTaskDlgt=h,this._hasTaskDlgtOwner=this,this._hasTaskCurrZone=this._zone,l.onScheduleTask||(this._scheduleTaskZS=_,this._scheduleTaskDlgt=h,this._scheduleTaskCurrZone=this._zone),l.onInvokeTask||(this._invokeTaskZS=_,this._invokeTaskDlgt=h,this._invokeTaskCurrZone=this._zone),l.onCancelTask||(this._cancelTaskZS=_,this._cancelTaskDlgt=h,this._cancelTaskCurrZone=this._zone))}get zone(){return this._zone}fork(f,h){return this._forkZS?this._forkZS.onFork(this._forkDlgt,this.zone,f,h):new d(f,h)}intercept(f,h,l){return this._interceptZS?this._interceptZS.onIntercept(this._interceptDlgt,this._interceptCurrZone,f,h,l):h}invoke(f,h,l,A,it){return this._invokeZS?this._invokeZS.onInvoke(this._invokeDlgt,this._invokeCurrZone,f,h,l,A,it):h.apply(l,A)}handleError(f,h){return!this._handleErrorZS||this._handleErrorZS.onHandleError(this._handleErrorDlgt,this._handleErrorCurrZone,f,h)}scheduleTask(f,h){let l=h;if(this._scheduleTaskZS)this._hasTaskZS&&l._zoneDelegates.push(this._hasTaskDlgtOwner),l=this._scheduleTaskZS.onScheduleTask(this._scheduleTaskDlgt,this._scheduleTaskCurrZone,f,h),l||(l=h);else if(h.scheduleFn)h.scheduleFn(h);else{if(h.type!=R)throw new Error("Task is missing scheduleFn.");kt(h)}return l}invokeTask(f,h,l,A){return this._invokeTaskZS?this._invokeTaskZS.onInvokeTask(this._invokeTaskDlgt,this._invokeTaskCurrZone,f,h,l,A):h.callback.apply(l,A)}cancelTask(f,h){let l;if(this._cancelTaskZS)l=this._cancelTaskZS.onCancelTask(this._cancelTaskDlgt,this._cancelTaskCurrZone,f,h);else{if(!h.cancelFn)throw Error("Task is not cancelable");l=h.cancelFn(h)}return l}hasTask(f,h){try{this._hasTaskZS&&this._hasTaskZS.onHasTask(this._hasTaskDlgt,this._hasTaskCurrZone,f,h)}catch(l){this.handleError(f,l)}}_updateTaskCount(f,h){const l=this._taskCounts,A=l[f],it=l[f]=A+h;if(it<0)throw new Error("More tasks executed then were scheduled.");0!=A&&0!=it||this.hasTask(this._zone,{microTask:l.microTask>0,macroTask:l.macroTask>0,eventTask:l.eventTask>0,change:f})}}class x{constructor(f,h,l,A,it,J){if(w(this,"type"),w(this,"source"),w(this,"invoke"),w(this,"callback"),w(this,"data"),w(this,"scheduleFn"),w(this,"cancelFn"),w(this,"_zone",null),w(this,"runCount",0),w(this,"_zoneDelegates",null),w(this,"_state","notScheduled"),this.type=f,this.source=h,this.data=A,this.scheduleFn=it,this.cancelFn=J,!l)throw new Error("callback is not defined");this.callback=l;const qt=this;this.invoke=f===j&&A&&A.useG?x.invokeTask:function(){return x.invokeTask.call(u,qt,this,arguments)}}static invokeTask(f,h,l){f||(f=this),Zt++;try{return f.runCount++,f.zone.runTask(f,h,l)}finally{1==Zt&&Lt(),Zt--}}get zone(){return this._zone}get state(){return this._state}cancelScheduleRequest(){this._transitionTo(P,k)}_transitionTo(f,h,l){if(this._state!==h&&this._state!==l)throw new Error(`${this.type} '${this.source}': can not transition to '${f}', expecting state '${h}'${l?" or '"+l+"'":""}, was '${this._state}'.`);this._state=f,f==P&&(this._zoneDelegates=null)}toString(){return this.data&&typeof this.data.handleId<"u"?this.data.handleId.toString():Object.prototype.toString.call(this)}toJSON(){return{type:this.type,state:this.state,source:this.source,zone:this.zone.name,runCount:this.runCount}}}const S=tt("setTimeout"),U=tt("Promise"),B=tt("then");let K,L=[],Y=!1;function Dt(nt){if(K||u[U]&&(K=u[U].resolve(0)),K){let f=K[B];f||(f=K.then),f.call(K,nt)}else u[S](nt,0)}function kt(nt){0===Zt&&0===L.length&&Dt(Lt),nt&&L.push(nt)}function Lt(){if(!Y){for(Y=!0;L.length;){const nt=L;L=[];for(let f=0;fF,onUnhandledError:at,microtaskDrainDone:at,scheduleMicroTask:kt,showUncaughtError:()=>!d[tt("ignoreConsoleErrorUncaughtError")],patchEventTarget:()=>[],patchOnProperties:at,patchMethod:()=>at,bindArguments:()=>[],patchThen:()=>at,patchMacroTask:()=>at,patchEventPrototype:()=>at,getGlobalObjects:()=>{},ObjectDefineProperty:()=>at,ObjectGetOwnPropertyDescriptor:()=>{},ObjectCreate:()=>{},ArraySlice:()=>[],patchClass:()=>at,wrapWithCurrentZone:()=>at,filterProperties:()=>[],attachOriginToPatched:()=>at,_redefineProperty:()=>at,patchCallbacks:()=>at,nativeScheduleMicroTask:Dt};let F={parent:null,zone:new d(null,null)},Ft=null,Zt=0;function at(){}return y("Zone","Zone"),d}()),o.Zone}();(function Ge(s){(function mt(s){s.__load_patch("ZoneAwarePromise",(o,y,c)=>{const d=Object.getOwnPropertyDescriptor,_=Object.defineProperty,x=c.symbol,S=[],U=!1!==o[x("DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION")],B=x("Promise"),L=x("then");c.onUnhandledError=T=>{if(c.showUncaughtError()){const g=T&&T.rejection;g?console.error("Unhandled Promise rejection:",g instanceof Error?g.message:g,"; Zone:",T.zone.name,"; Task:",T.task&&T.task.source,"; Value:",g,g instanceof Error?g.stack:void 0):console.error(T)}},c.microtaskDrainDone=()=>{for(;S.length;){const T=S.shift();try{T.zone.runGuarded(()=>{throw T.throwOriginal?T.rejection:T})}catch(g){Dt(g)}}};const K=x("unhandledPromiseRejectionHandler");function Dt(T){c.onUnhandledError(T);try{const g=y[K];"function"==typeof g&&g.call(this,T)}catch{}}function kt(T){return T&&"function"==typeof T.then}function Lt(T){return T}function Bt(T){return J.reject(T)}const P=x("state"),k=x("value"),ct=x("finally"),et=x("parentPromiseValue"),yt=x("parentPromiseState"),R=null,j=!1;function X(T,g){return p=>{try{at(T,g,p)}catch(m){at(T,!1,m)}}}const F=function(){let T=!1;return function(p){return function(){T||(T=!0,p.apply(null,arguments))}}},Ft="Promise resolved with itself",Zt=x("currentTaskTrace");function at(T,g,p){const m=F();if(T===p)throw new TypeError(Ft);if(T[P]===R){let C=null;try{("object"==typeof p||"function"==typeof p)&&(C=p&&p.then)}catch(O){return m(()=>{at(T,!1,O)})(),T}if(g!==j&&p instanceof J&&p.hasOwnProperty(P)&&p.hasOwnProperty(k)&&p[P]!==R)f(p),at(T,p[P],p[k]);else if(g!==j&&"function"==typeof C)try{C.call(p,m(X(T,g)),m(X(T,!1)))}catch(O){m(()=>{at(T,!1,O)})()}else{T[P]=g;const O=T[k];if(T[k]=p,T[ct]===ct&&!0===g&&(T[P]=T[yt],T[k]=T[et]),g===j&&p instanceof Error){const v=y.currentTask&&y.currentTask.data&&y.currentTask.data.__creationTrace__;v&&_(p,Zt,{configurable:!0,enumerable:!1,writable:!0,value:v})}for(let v=0;v{try{const G=T[k],V=!!p&&ct===p[ct];V&&(p[et]=G,p[yt]=O);const $=g.run(v,void 0,V&&v!==Bt&&v!==Lt?[]:[G]);at(p,!0,$)}catch(G){at(p,!1,G)}},p)}const A=function(){},it=o.AggregateError;class J{static toString(){return"function ZoneAwarePromise() { [native code] }"}static resolve(g){return g instanceof J?g:at(new this(null),!0,g)}static reject(g){return at(new this(null),j,g)}static withResolvers(){const g={};return g.promise=new J((p,m)=>{g.resolve=p,g.reject=m}),g}static any(g){if(!g||"function"!=typeof g[Symbol.iterator])return Promise.reject(new it([],"All promises were rejected"));const p=[];let m=0;try{for(let v of g)m++,p.push(J.resolve(v))}catch{return Promise.reject(new it([],"All promises were rejected"))}if(0===m)return Promise.reject(new it([],"All promises were rejected"));let C=!1;const O=[];return new J((v,G)=>{for(let V=0;V{C||(C=!0,v($))},$=>{O.push($),m--,0===m&&(C=!0,G(new it(O,"All promises were rejected")))})})}static race(g){let p,m,C=new this((G,V)=>{p=G,m=V});function O(G){p(G)}function v(G){m(G)}for(let G of g)kt(G)||(G=this.resolve(G)),G.then(O,v);return C}static all(g){return J.allWithCallback(g)}static allSettled(g){return(this&&this.prototype instanceof J?this:J).allWithCallback(g,{thenCallback:m=>({status:"fulfilled",value:m}),errorCallback:m=>({status:"rejected",reason:m})})}static allWithCallback(g,p){let m,C,O=new this(($,ft)=>{m=$,C=ft}),v=2,G=0;const V=[];for(let $ of g){kt($)||($=this.resolve($));const ft=G;try{$.then(pt=>{V[ft]=p?p.thenCallback(pt):pt,v--,0===v&&m(V)},pt=>{p?(V[ft]=p.errorCallback(pt),v--,0===v&&m(V)):C(pt)})}catch(pt){C(pt)}v++,G++}return v-=2,0===v&&m(V),O}constructor(g){const p=this;if(!(p instanceof J))throw new Error("Must be an instanceof Promise.");p[P]=R,p[k]=[];try{const m=F();g&&g(m(X(p,!0)),m(X(p,j)))}catch(m){at(p,!1,m)}}get[Symbol.toStringTag](){return"Promise"}get[Symbol.species](){return J}then(g,p){var m;let C=null==(m=this.constructor)?void 0:m[Symbol.species];(!C||"function"!=typeof C)&&(C=this.constructor||J);const O=new C(A),v=y.current;return this[P]==R?this[k].push(v,O,g,p):h(this,v,O,g,p),O}catch(g){return this.then(null,g)}finally(g){var p;let m=null==(p=this.constructor)?void 0:p[Symbol.species];(!m||"function"!=typeof m)&&(m=J);const C=new m(A);C[ct]=ct;const O=y.current;return this[P]==R?this[k].push(O,C,g,g):h(this,O,C,g,g),C}}J.resolve=J.resolve,J.reject=J.reject,J.race=J.race,J.all=J.all;const qt=o[B]=o.Promise;o.Promise=J;const Jt=x("thenPatched");function Kt(T){const g=T.prototype,p=d(g,"then");if(p&&(!1===p.writable||!p.configurable))return;const m=g.then;g[L]=m,T.prototype.then=function(C,O){return new J((G,V)=>{m.call(this,G,V)}).then(C,O)},T[Jt]=!0}return c.patchThen=Kt,qt&&(Kt(qt),Ht(o,"fetch",T=>function Vt(T){return function(g,p){let m=T.apply(g,p);if(m instanceof J)return m;let C=m.constructor;return C[Jt]||Kt(C),m}}(T))),Promise[y.__symbol__("uncaughtPromiseErrors")]=S,J})})(s),function ht(s){s.__load_patch("toString",o=>{const y=Function.prototype.toString,c=Q("OriginalDelegate"),d=Q("Promise"),_=Q("Error"),D=function(){if("function"==typeof this){const B=this[c];if(B)return"function"==typeof B?y.call(B):Object.prototype.toString.call(B);if(this===Promise){const L=o[d];if(L)return y.call(L)}if(this===Error){const L=o[_];if(L)return y.call(L)}}return y.call(this)};D[c]=y,Function.prototype.toString=D;const x=Object.prototype.toString;Object.prototype.toString=function(){return"function"==typeof Promise&&this instanceof Promise?"[object Promise]":x.call(this)}})}(s),function rt(s){s.__load_patch("util",(o,y,c)=>{const d=a(o);c.patchOnProperties=ge,c.patchMethod=Ht,c.bindArguments=ae,c.patchMacroTask=Se;const _=y.__symbol__("BLACK_LISTED_EVENTS"),D=y.__symbol__("UNPATCHED_EVENTS");o[D]&&(o[_]=o[D]),o[_]&&(y[_]=y[D]=o[_]),c.patchEventPrototype=we,c.patchEventTarget=fe,c.ObjectDefineProperty=I,c.ObjectGetOwnPropertyDescriptor=It,c.ObjectCreate=q,c.ArraySlice=st,c.patchClass=te,c.wrapWithCurrentZone=se,c.filterProperties=n,c.attachOriginToPatched=Gt,c._redefineProperty=Object.defineProperty,c.patchCallbacks=Tt,c.getGlobalObjects=()=>({globalSources:he,zoneSymbolEventNames:Ot,eventNames:d,isBrowser:ye,isMix:ve,isNode:le,TRUE_STR:gt,FALSE_STR:St,ZONE_SYMBOL_PREFIX:Qt,ADD_EVENT_LISTENER_STR:Ct,REMOVE_EVENT_LISTENER_STR:dt})})}(s)})(Le),function H(s){s.__load_patch("timers",o=>{const c="clear";ne(o,"set",c,"Timeout"),ne(o,"set",c,"Interval"),ne(o,"set",c,"Immediate")}),s.__load_patch("requestAnimationFrame",o=>{ne(o,"request","cancel","AnimationFrame"),ne(o,"mozRequest","mozCancel","AnimationFrame"),ne(o,"webkitRequest","webkitCancel","AnimationFrame")}),s.__load_patch("blocking",(o,y)=>{const c=["alert","prompt","confirm"];for(let d=0;dfunction(U,B){return y.current.run(D,o,B,S)})}),s.__load_patch("EventTarget",(o,y,c)=>{(function e(s,o){o.patchEventPrototype(s,o)})(o,c),function t(s,o){if(Zone[o.symbol("patchEventTarget")])return;const{eventNames:y,zoneSymbolEventNames:c,TRUE_STR:d,FALSE_STR:_,ZONE_SYMBOL_PREFIX:D}=o.getGlobalObjects();for(let S=0;S{te("MutationObserver"),te("WebKitMutationObserver")}),s.__load_patch("IntersectionObserver",(o,y,c)=>{te("IntersectionObserver")}),s.__load_patch("FileReader",(o,y,c)=>{te("FileReader")}),s.__load_patch("on_property",(o,y,c)=>{!function E(s,o){if(le&&!ve||Zone[s.symbol("patchEvents")])return;const y=o.__Zone_ignore_on_properties;let c=[];if(ye){const d=window;c=c.concat(["Document","SVGElement","Element","HTMLElement","HTMLBodyElement","HTMLMediaElement","HTMLFrameSetElement","HTMLFrameElement","HTMLIFrameElement","HTMLMarqueeElement","Worker"]),i(d,a(d),y,b(d))}c=c.concat(["XMLHttpRequest","XMLHttpRequestEventTarget","IDBIndex","IDBRequest","IDBOpenDBRequest","IDBDatabase","IDBTransaction","IDBCursor","WebSocket"]);for(let d=0;d{!function r(s,o){const{isBrowser:y,isMix:c}=o.getGlobalObjects();(y||c)&&s.customElements&&"customElements"in s&&o.patchCallbacks(o,s.customElements,"customElements","define",["connectedCallback","disconnectedCallback","adoptedCallback","attributeChangedCallback","formAssociatedCallback","formDisabledCallback","formResetCallback","formStateRestoreCallback"])}(o,c)}),s.__load_patch("XHR",(o,y)=>{!function U(B){const L=B.XMLHttpRequest;if(!L)return;const Y=L.prototype;let Dt=Y[Pt],kt=Y[jt];if(!Dt){const M=B.XMLHttpRequestEventTarget;if(M){const X=M.prototype;Dt=X[Pt],kt=X[jt]}}const Lt="readystatechange",Bt="scheduled";function P(M){const X=M.data,F=X.target;F[D]=!1,F[S]=!1;const Ft=F[_];Dt||(Dt=F[Pt],kt=F[jt]),Ft&&kt.call(F,Lt,Ft);const Zt=F[_]=()=>{if(F.readyState===F.DONE)if(!X.aborted&&F[D]&&M.state===Bt){const nt=F[y.__symbol__("loadfalse")];if(0!==F.status&&nt&&nt.length>0){const f=M.invoke;M.invoke=function(){const h=F[y.__symbol__("loadfalse")];for(let l=0;lfunction(M,X){return M[d]=0==X[2],M[x]=X[1],et.apply(M,X)}),ut=Q("fetchTaskAborting"),R=Q("fetchTaskScheduling"),bt=Ht(Y,"send",()=>function(M,X){if(!0===y.current[R]||M[d])return bt.apply(M,X);{const F={target:M,url:M[x],isPeriodic:!1,args:X,aborted:!1},Ft=de("XMLHttpRequest.send",k,F,P,ct);M&&!0===M[S]&&!F.aborted&&Ft.state===Bt&&Ft.invoke()}}),j=Ht(Y,"abort",()=>function(M,X){const F=function K(M){return M[c]}(M);if(F&&"string"==typeof F.type){if(null==F.cancelFn||F.data&&F.data.aborted)return;F.zone.cancelTask(F)}else if(!0===y.current[ut])return j.apply(M,X)})}(o);const c=Q("xhrTask"),d=Q("xhrSync"),_=Q("xhrListener"),D=Q("xhrScheduled"),x=Q("xhrURL"),S=Q("xhrErrorBeforeScheduled")}),s.__load_patch("geolocation",o=>{o.navigator&&o.navigator.geolocation&&function be(s,o){const y=s.constructor.name;for(let c=0;c{const S=function(){return x.apply(this,ae(arguments,y+"."+d))};return Gt(S,x),S})(_)}}}(o.navigator.geolocation,["getCurrentPosition","watchPosition"])}),s.__load_patch("PromiseRejectionEvent",(o,y)=>{function c(d){return function(_){Ut(o,d).forEach(x=>{const S=o.PromiseRejectionEvent;if(S){const U=new S(d,{promise:_.promise,reason:_.rejection});x.invoke(U)}})}}o.PromiseRejectionEvent&&(y[Q("unhandledPromiseRejectionHandler")]=c("unhandledrejection"),y[Q("rejectionHandledHandler")]=c("rejectionhandled"))}),s.__load_patch("queueMicrotask",(o,y,c)=>{!function De(s,o){o.patchMethod(s,"queueMicrotask",y=>function(c,d){Zone.current.scheduleMicroTask("queueMicrotask",d[0])})}(o,c)})}(Le)}},Wt=>{var z=N=>Wt(Wt.s=N);z(6935),z(4050)}]); \ No newline at end of file diff --git a/frontend/polyfills.31e6e7ecf45bc58d.js b/frontend/polyfills.31e6e7ecf45bc58d.js deleted file mode 100644 index e53ee184..00000000 --- a/frontend/polyfills.31e6e7ecf45bc58d.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[461],{13981:(Wt,j)=>{"use strict";j.byteLength=function i(b){var x=N(b),lt=x[1];return 3*(x[0]+lt)/4-lt},j.toByteArray=function et(b){var x,rt,H=N(b),lt=H[0],vt=H[1],Tt=new bt(function K(b,x,H){return 3*(x+H)/4-H}(0,lt,vt)),Ct=0,Ht=vt>0?lt-4:lt;for(rt=0;rt>16&255,Tt[Ct++]=x>>8&255,Tt[Ct++]=255&x;return 2===vt&&(x=A[b.charCodeAt(rt)]<<2|A[b.charCodeAt(rt+1)]>>4,Tt[Ct++]=255&x),1===vt&&(x=A[b.charCodeAt(rt)]<<10|A[b.charCodeAt(rt+1)]<<4|A[b.charCodeAt(rt+2)]>>2,Tt[Ct++]=x>>8&255,Tt[Ct++]=255&x),Tt},j.fromByteArray=function Rt(b){for(var x,H=b.length,lt=H%3,vt=[],Ct=0,Ht=H-lt;CtHt?Ht:Ct+16383));return 1===lt?vt.push(W[(x=b[H-1])>>2]+W[x<<4&63]+"=="):2===lt&&vt.push(W[(x=(b[H-2]<<8)+b[H-1])>>10]+W[x>>4&63]+W[x<<2&63]+"="),vt.join("")};for(var W=[],A=[],bt=typeof Uint8Array<"u"?Uint8Array:Array,Bt="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",tt=0;tt<64;++tt)W[tt]=Bt[tt],A[Bt.charCodeAt(tt)]=tt;function N(b){var x=b.length;if(x%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var H=b.indexOf("=");return-1===H&&(H=x),[H,H===x?0:4-H%4]}function mt(b){return W[b>>18&63]+W[b>>12&63]+W[b>>6&63]+W[63&b]}function yt(b,x,H){for(var vt=[],Tt=x;Tt{j.read=function(W,A,bt,Bt,tt){var gt,N,i=8*tt-Bt-1,K=(1<>1,mt=-7,yt=bt?tt-1:0,Rt=bt?-1:1,b=W[A+yt];for(yt+=Rt,gt=b&(1<<-mt)-1,b>>=-mt,mt+=i;mt>0;gt=256*gt+W[A+yt],yt+=Rt,mt-=8);for(N=gt&(1<<-mt)-1,gt>>=-mt,mt+=Bt;mt>0;N=256*N+W[A+yt],yt+=Rt,mt-=8);if(0===gt)gt=1-et;else{if(gt===K)return N?NaN:1/0*(b?-1:1);N+=Math.pow(2,Bt),gt-=et}return(b?-1:1)*N*Math.pow(2,gt-Bt)},j.write=function(W,A,bt,Bt,tt,gt){var N,i,K,et=8*gt-tt-1,mt=(1<>1,Rt=23===tt?Math.pow(2,-24)-Math.pow(2,-77):0,b=Bt?0:gt-1,x=Bt?1:-1,H=A<0||0===A&&1/A<0?1:0;for(A=Math.abs(A),isNaN(A)||A===1/0?(i=isNaN(A)?1:0,N=mt):(N=Math.floor(Math.log(A)/Math.LN2),A*(K=Math.pow(2,-N))<1&&(N--,K*=2),(A+=N+yt>=1?Rt/K:Rt*Math.pow(2,1-yt))*K>=2&&(N++,K/=2),N+yt>=mt?(i=0,N=mt):N+yt>=1?(i=(A*K-1)*Math.pow(2,tt),N+=yt):(i=A*Math.pow(2,yt-1)*Math.pow(2,tt),N=0));tt>=8;W[bt+b]=255&i,b+=x,i/=256,tt-=8);for(N=N<0;W[bt+b]=255&N,b+=x,N/=256,et-=8);W[bt+b-x]|=128*H}},24050:(Wt,j,W)=>{window.global=window,window.global.Buffer=window.global.Buffer||W(83838).Buffer,window.global.process=window.global.process||W(40573)},40573:Wt=>{var W,A,j=Wt.exports={};function bt(){throw new Error("setTimeout has not been defined")}function Bt(){throw new Error("clearTimeout has not been defined")}function tt(x){if(W===setTimeout)return setTimeout(x,0);if((W===bt||!W)&&setTimeout)return W=setTimeout,setTimeout(x,0);try{return W(x,0)}catch{try{return W.call(null,x,0)}catch{return W.call(this,x,0)}}}!function(){try{W="function"==typeof setTimeout?setTimeout:bt}catch{W=bt}try{A="function"==typeof clearTimeout?clearTimeout:Bt}catch{A=Bt}}();var K,N=[],i=!1,et=-1;function mt(){!i||!K||(i=!1,K.length?N=K.concat(N):et=-1,N.length&&yt())}function yt(){if(!i){var x=tt(mt);i=!0;for(var H=N.length;H;){for(K=N,N=[];++et1)for(var lt=1;lt{"use strict";const A=W(13981),bt=W(22020),Bt="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;j.Buffer=i,j.SlowBuffer=function Tt(r){return+r!=r&&(r=0),i.alloc(+r)},j.INSPECT_MAX_BYTES=50;const tt=2147483647;function N(r){if(r>tt)throw new RangeError('The value "'+r+'" is invalid for option "size"');const t=new Uint8Array(r);return Object.setPrototypeOf(t,i.prototype),t}function i(r,t,e){if("number"==typeof r){if("string"==typeof t)throw new TypeError('The "string" argument must be of type string. Received type number');return yt(r)}return K(r,t,e)}function K(r,t,e){if("string"==typeof r)return function Rt(r,t){if(("string"!=typeof t||""===t)&&(t="utf8"),!i.isEncoding(t))throw new TypeError("Unknown encoding: "+t);const e=0|Ct(r,t);let n=N(e);const o=n.write(r,t);return o!==e&&(n=n.slice(0,o)),n}(r,t);if(ArrayBuffer.isView(r))return function x(r){if(jt(r,Uint8Array)){const t=new Uint8Array(r);return H(t.buffer,t.byteOffset,t.byteLength)}return b(r)}(r);if(null==r)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r);if(jt(r,ArrayBuffer)||r&&jt(r.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(jt(r,SharedArrayBuffer)||r&&jt(r.buffer,SharedArrayBuffer)))return H(r,t,e);if("number"==typeof r)throw new TypeError('The "value" argument must not be of type number. Received type number');const n=r.valueOf&&r.valueOf();if(null!=n&&n!==r)return i.from(n,t,e);const o=function lt(r){if(i.isBuffer(r)){const t=0|vt(r.length),e=N(t);return 0===e.length||r.copy(e,0,0,t),e}return void 0!==r.length?"number"!=typeof r.length||ue(r.length)?N(0):b(r):"Buffer"===r.type&&Array.isArray(r.data)?b(r.data):void 0}(r);if(o)return o;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof r[Symbol.toPrimitive])return i.from(r[Symbol.toPrimitive]("string"),t,e);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r)}function et(r){if("number"!=typeof r)throw new TypeError('"size" argument must be of type number');if(r<0)throw new RangeError('The value "'+r+'" is invalid for option "size"')}function yt(r){return et(r),N(r<0?0:0|vt(r))}function b(r){const t=r.length<0?0:0|vt(r.length),e=N(t);for(let n=0;n=tt)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+tt.toString(16)+" bytes");return 0|r}function Ct(r,t){if(i.isBuffer(r))return r.length;if(ArrayBuffer.isView(r)||jt(r,ArrayBuffer))return r.byteLength;if("string"!=typeof r)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof r);const e=r.length,n=arguments.length>2&&!0===arguments[2];if(!n&&0===e)return 0;let o=!1;for(;;)switch(t){case"ascii":case"latin1":case"binary":return e;case"utf8":case"utf-8":return Dt(r).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*e;case"hex":return e>>>1;case"base64":return ge(r).length;default:if(o)return n?-1:Dt(r).length;t=(""+t).toLowerCase(),o=!0}}function Ht(r,t,e){let n=!1;if((void 0===t||t<0)&&(t=0),t>this.length||((void 0===e||e>this.length)&&(e=this.length),e<=0)||(e>>>=0)<=(t>>>=0))return"";for(r||(r="utf8");;)switch(r){case"hex":return ce(this,t,e);case"utf8":case"utf-8":return Te(this,t,e);case"ascii":return we(this,t,e);case"latin1":case"binary":return ke(this,t,e);case"base64":return xt(this,t,e);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return pe(this,t,e);default:if(n)throw new TypeError("Unknown encoding: "+r);r=(r+"").toLowerCase(),n=!0}}function rt(r,t,e){const n=r[t];r[t]=r[e],r[e]=n}function Mt(r,t,e,n,o){if(0===r.length)return-1;if("string"==typeof e?(n=e,e=0):e>2147483647?e=2147483647:e<-2147483648&&(e=-2147483648),ue(e=+e)&&(e=o?0:r.length-1),e<0&&(e=r.length+e),e>=r.length){if(o)return-1;e=r.length-1}else if(e<0){if(!o)return-1;e=0}if("string"==typeof t&&(t=i.from(t,n)),i.isBuffer(t))return 0===t.length?-1:Qt(r,t,e,n,o);if("number"==typeof t)return t&=255,"function"==typeof Uint8Array.prototype.indexOf?o?Uint8Array.prototype.indexOf.call(r,t,e):Uint8Array.prototype.lastIndexOf.call(r,t,e):Qt(r,[t],e,n,o);throw new TypeError("val must be string, number or Buffer")}function Qt(r,t,e,n,o){let ht,a=1,E=r.length,G=t.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(r.length<2||t.length<2)return-1;a=2,E/=2,G/=2,e/=2}function Et(_t,it){return 1===a?_t[it]:_t.readUInt16BE(it*a)}if(o){let _t=-1;for(ht=e;htE&&(e=E-G),ht=e;ht>=0;ht--){let _t=!0;for(let it=0;ito&&(n=o):n=o;const a=t.length;let E;for(n>a/2&&(n=a/2),E=0;E>8,o=e%256,a.push(o),a.push(n);return a}(t,r.length-e),r,e,n)}function xt(r,t,e){return A.fromByteArray(0===t&&e===r.length?r:r.slice(t,e))}function Te(r,t,e){e=Math.min(r.length,e);const n=[];let o=t;for(;o239?4:a>223?3:a>191?2:1;if(o+G<=e){let Et,ht,_t,it;switch(G){case 1:a<128&&(E=a);break;case 2:Et=r[o+1],128==(192&Et)&&(it=(31&a)<<6|63&Et,it>127&&(E=it));break;case 3:Et=r[o+1],ht=r[o+2],128==(192&Et)&&128==(192&ht)&&(it=(15&a)<<12|(63&Et)<<6|63&ht,it>2047&&(it<55296||it>57343)&&(E=it));break;case 4:Et=r[o+1],ht=r[o+2],_t=r[o+3],128==(192&Et)&&128==(192&ht)&&128==(192&_t)&&(it=(15&a)<<18|(63&Et)<<12|(63&ht)<<6|63&_t,it>65535&&it<1114112&&(E=it))}}null===E?(E=65533,G=1):E>65535&&(E-=65536,n.push(E>>>10&1023|55296),E=56320|1023&E),n.push(E),o+=G}return function Pe(r){const t=r.length;if(t<=se)return String.fromCharCode.apply(String,r);let e="",n=0;for(;no.length?(i.isBuffer(E)||(E=i.from(E)),E.copy(o,a)):Uint8Array.prototype.set.call(o,E,a);else{if(!i.isBuffer(E))throw new TypeError('"list" argument must be an Array of Buffers');E.copy(o,a)}a+=E.length}return o},i.byteLength=Ct,i.prototype._isBuffer=!0,i.prototype.swap16=function(){const t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let e=0;ee&&(t+=" ... "),""},Bt&&(i.prototype[Bt]=i.prototype.inspect),i.prototype.compare=function(t,e,n,o,a){if(jt(t,Uint8Array)&&(t=i.from(t,t.offset,t.byteLength)),!i.isBuffer(t))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(void 0===e&&(e=0),void 0===n&&(n=t?t.length:0),void 0===o&&(o=0),void 0===a&&(a=this.length),e<0||n>t.length||o<0||a>this.length)throw new RangeError("out of range index");if(o>=a&&e>=n)return 0;if(o>=a)return-1;if(e>=n)return 1;if(this===t)return 0;let E=(a>>>=0)-(o>>>=0),G=(n>>>=0)-(e>>>=0);const Et=Math.min(E,G),ht=this.slice(o,a),_t=t.slice(e,n);for(let it=0;it>>=0,isFinite(n)?(n>>>=0,void 0===o&&(o="utf8")):(o=n,n=void 0)}const a=this.length-e;if((void 0===n||n>a)&&(n=a),t.length>0&&(n<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");o||(o="utf8");let E=!1;for(;;)switch(o){case"hex":return he(this,t,e,n);case"utf8":case"utf-8":return fe(this,t,e,n);case"ascii":case"latin1":case"binary":return Q(this,t,e,n);case"base64":return ie(this,t,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return oe(this,t,e,n);default:if(E)throw new TypeError("Unknown encoding: "+o);o=(""+o).toLowerCase(),E=!0}},i.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};const se=4096;function we(r,t,e){let n="";e=Math.min(r.length,e);for(let o=t;on)&&(e=n);let o="";for(let a=t;ae)throw new RangeError("Trying to access beyond buffer length")}function Pt(r,t,e,n,o,a){if(!i.isBuffer(r))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>o||tr.length)throw new RangeError("Index out of range")}function be(r,t,e,n,o){Ie(t,n,o,r,e,7);let a=Number(t&BigInt(4294967295));r[e++]=a,a>>=8,r[e++]=a,a>>=8,r[e++]=a,a>>=8,r[e++]=a;let E=Number(t>>BigInt(32)&BigInt(4294967295));return r[e++]=E,E>>=8,r[e++]=E,E>>=8,r[e++]=E,E>>=8,r[e++]=E,e}function de(r,t,e,n,o){Ie(t,n,o,r,e,7);let a=Number(t&BigInt(4294967295));r[e+7]=a,a>>=8,r[e+6]=a,a>>=8,r[e+5]=a,a>>=8,r[e+4]=a;let E=Number(t>>BigInt(32)&BigInt(4294967295));return r[e+3]=E,E>>=8,r[e+2]=E,E>>=8,r[e+1]=E,E>>=8,r[e]=E,e+8}function ye(r,t,e,n,o,a){if(e+n>r.length)throw new RangeError("Index out of range");if(e<0)throw new RangeError("Index out of range")}function Ee(r,t,e,n,o){return t=+t,e>>>=0,o||ye(r,0,e,4),bt.write(r,t,e,n,23,4),e+4}function Ot(r,t,e,n,o){return t=+t,e>>>=0,o||ye(r,0,e,8),bt.write(r,t,e,n,52,8),e+8}i.prototype.slice=function(t,e){const n=this.length;(t=~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),(e=void 0===e?n:~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),e>>=0,e>>>=0,n||It(t,e,this.length);let o=this[t],a=1,E=0;for(;++E>>=0,e>>>=0,n||It(t,e,this.length);let o=this[t+--e],a=1;for(;e>0&&(a*=256);)o+=this[t+--e]*a;return o},i.prototype.readUint8=i.prototype.readUInt8=function(t,e){return t>>>=0,e||It(t,1,this.length),this[t]},i.prototype.readUint16LE=i.prototype.readUInt16LE=function(t,e){return t>>>=0,e||It(t,2,this.length),this[t]|this[t+1]<<8},i.prototype.readUint16BE=i.prototype.readUInt16BE=function(t,e){return t>>>=0,e||It(t,2,this.length),this[t]<<8|this[t+1]},i.prototype.readUint32LE=i.prototype.readUInt32LE=function(t,e){return t>>>=0,e||It(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},i.prototype.readUint32BE=i.prototype.readUInt32BE=function(t,e){return t>>>=0,e||It(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},i.prototype.readBigUInt64LE=qt(function(t){At(t>>>=0,"offset");const e=this[t],n=this[t+7];(void 0===e||void 0===n)&&te(t,this.length-8);const o=e+256*this[++t]+65536*this[++t]+this[++t]*2**24,a=this[++t]+256*this[++t]+65536*this[++t]+n*2**24;return BigInt(o)+(BigInt(a)<>>=0,"offset");const e=this[t],n=this[t+7];(void 0===e||void 0===n)&&te(t,this.length-8);const o=e*2**24+65536*this[++t]+256*this[++t]+this[++t],a=this[++t]*2**24+65536*this[++t]+256*this[++t]+n;return(BigInt(o)<>>=0,e>>>=0,n||It(t,e,this.length);let o=this[t],a=1,E=0;for(;++E=a&&(o-=Math.pow(2,8*e)),o},i.prototype.readIntBE=function(t,e,n){t>>>=0,e>>>=0,n||It(t,e,this.length);let o=e,a=1,E=this[t+--o];for(;o>0&&(a*=256);)E+=this[t+--o]*a;return a*=128,E>=a&&(E-=Math.pow(2,8*e)),E},i.prototype.readInt8=function(t,e){return t>>>=0,e||It(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},i.prototype.readInt16LE=function(t,e){t>>>=0,e||It(t,2,this.length);const n=this[t]|this[t+1]<<8;return 32768&n?4294901760|n:n},i.prototype.readInt16BE=function(t,e){t>>>=0,e||It(t,2,this.length);const n=this[t+1]|this[t]<<8;return 32768&n?4294901760|n:n},i.prototype.readInt32LE=function(t,e){return t>>>=0,e||It(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},i.prototype.readInt32BE=function(t,e){return t>>>=0,e||It(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},i.prototype.readBigInt64LE=qt(function(t){At(t>>>=0,"offset");const e=this[t],n=this[t+7];return(void 0===e||void 0===n)&&te(t,this.length-8),(BigInt(this[t+4]+256*this[t+5]+65536*this[t+6]+(n<<24))<>>=0,"offset");const e=this[t],n=this[t+7];(void 0===e||void 0===n)&&te(t,this.length-8);const o=(e<<24)+65536*this[++t]+256*this[++t]+this[++t];return(BigInt(o)<>>=0,e||It(t,4,this.length),bt.read(this,t,!0,23,4)},i.prototype.readFloatBE=function(t,e){return t>>>=0,e||It(t,4,this.length),bt.read(this,t,!1,23,4)},i.prototype.readDoubleLE=function(t,e){return t>>>=0,e||It(t,8,this.length),bt.read(this,t,!0,52,8)},i.prototype.readDoubleBE=function(t,e){return t>>>=0,e||It(t,8,this.length),bt.read(this,t,!1,52,8)},i.prototype.writeUintLE=i.prototype.writeUIntLE=function(t,e,n,o){t=+t,e>>>=0,n>>>=0,o||Pt(this,t,e,n,Math.pow(2,8*n)-1,0);let a=1,E=0;for(this[e]=255&t;++E>>=0,n>>>=0,o||Pt(this,t,e,n,Math.pow(2,8*n)-1,0);let a=n-1,E=1;for(this[e+a]=255&t;--a>=0&&(E*=256);)this[e+a]=t/E&255;return e+n},i.prototype.writeUint8=i.prototype.writeUInt8=function(t,e,n){return t=+t,e>>>=0,n||Pt(this,t,e,1,255,0),this[e]=255&t,e+1},i.prototype.writeUint16LE=i.prototype.writeUInt16LE=function(t,e,n){return t=+t,e>>>=0,n||Pt(this,t,e,2,65535,0),this[e]=255&t,this[e+1]=t>>>8,e+2},i.prototype.writeUint16BE=i.prototype.writeUInt16BE=function(t,e,n){return t=+t,e>>>=0,n||Pt(this,t,e,2,65535,0),this[e]=t>>>8,this[e+1]=255&t,e+2},i.prototype.writeUint32LE=i.prototype.writeUInt32LE=function(t,e,n){return t=+t,e>>>=0,n||Pt(this,t,e,4,4294967295,0),this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t,e+4},i.prototype.writeUint32BE=i.prototype.writeUInt32BE=function(t,e,n){return t=+t,e>>>=0,n||Pt(this,t,e,4,4294967295,0),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},i.prototype.writeBigUInt64LE=qt(function(t,e=0){return be(this,t,e,BigInt(0),BigInt("0xffffffffffffffff"))}),i.prototype.writeBigUInt64BE=qt(function(t,e=0){return de(this,t,e,BigInt(0),BigInt("0xffffffffffffffff"))}),i.prototype.writeIntLE=function(t,e,n,o){if(t=+t,e>>>=0,!o){const Et=Math.pow(2,8*n-1);Pt(this,t,e,n,Et-1,-Et)}let a=0,E=1,G=0;for(this[e]=255&t;++a>>=0,!o){const Et=Math.pow(2,8*n-1);Pt(this,t,e,n,Et-1,-Et)}let a=n-1,E=1,G=0;for(this[e+a]=255&t;--a>=0&&(E*=256);)t<0&&0===G&&0!==this[e+a+1]&&(G=1),this[e+a]=(t/E|0)-G&255;return e+n},i.prototype.writeInt8=function(t,e,n){return t=+t,e>>>=0,n||Pt(this,t,e,1,127,-128),t<0&&(t=255+t+1),this[e]=255&t,e+1},i.prototype.writeInt16LE=function(t,e,n){return t=+t,e>>>=0,n||Pt(this,t,e,2,32767,-32768),this[e]=255&t,this[e+1]=t>>>8,e+2},i.prototype.writeInt16BE=function(t,e,n){return t=+t,e>>>=0,n||Pt(this,t,e,2,32767,-32768),this[e]=t>>>8,this[e+1]=255&t,e+2},i.prototype.writeInt32LE=function(t,e,n){return t=+t,e>>>=0,n||Pt(this,t,e,4,2147483647,-2147483648),this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24,e+4},i.prototype.writeInt32BE=function(t,e,n){return t=+t,e>>>=0,n||Pt(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},i.prototype.writeBigInt64LE=qt(function(t,e=0){return be(this,t,e,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),i.prototype.writeBigInt64BE=qt(function(t,e=0){return de(this,t,e,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),i.prototype.writeFloatLE=function(t,e,n){return Ee(this,t,e,!0,n)},i.prototype.writeFloatBE=function(t,e,n){return Ee(this,t,e,!1,n)},i.prototype.writeDoubleLE=function(t,e,n){return Ot(this,t,e,!0,n)},i.prototype.writeDoubleBE=function(t,e,n){return Ot(this,t,e,!1,n)},i.prototype.copy=function(t,e,n,o){if(!i.isBuffer(t))throw new TypeError("argument should be a Buffer");if(n||(n=0),!o&&0!==o&&(o=this.length),e>=t.length&&(e=t.length),e||(e=0),o>0&&o=this.length)throw new RangeError("Index out of range");if(o<0)throw new RangeError("sourceEnd out of bounds");o>this.length&&(o=this.length),t.length-e>>=0,n=void 0===n?this.length:n>>>0,t||(t=0),"number"==typeof t)for(a=e;a=n+4;e-=3)t=`_${r.slice(e-3,e)}${t}`;return`${r.slice(0,e)}${t}`}function Ie(r,t,e,n,o,a){if(r>e||r3?0===t||t===BigInt(0)?`>= 0${E} and < 2${E} ** ${8*(a+1)}${E}`:`>= -(2${E} ** ${8*(a+1)-1}${E}) and < 2 ** ${8*(a+1)-1}${E}`:`>= ${t}${E} and <= ${e}${E}`,new Zt.ERR_OUT_OF_RANGE("value",G,r)}!function Gt(r,t,e){At(t,"offset"),(void 0===r[t]||void 0===r[t+e])&&te(t,r.length-(e+1))}(n,o,a)}function At(r,t){if("number"!=typeof r)throw new Zt.ERR_INVALID_ARG_TYPE(t,"number",r)}function te(r,t,e){throw Math.floor(r)!==r?(At(r,e),new Zt.ERR_OUT_OF_RANGE(e||"offset","an integer",r)):t<0?new Zt.ERR_BUFFER_OUT_OF_BOUNDS:new Zt.ERR_OUT_OF_RANGE(e||"offset",`>= ${e?1:0} and <= ${t}`,r)}_e("ERR_BUFFER_OUT_OF_BOUNDS",function(r){return r?`${r} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),_e("ERR_INVALID_ARG_TYPE",function(r,t){return`The "${r}" argument must be of type number. Received type ${typeof t}`},TypeError),_e("ERR_OUT_OF_RANGE",function(r,t,e){let n=`The value of "${r}" is out of range.`,o=e;return Number.isInteger(e)&&Math.abs(e)>2**32?o=xe(String(e)):"bigint"==typeof e&&(o=String(e),(e>BigInt(2)**BigInt(32)||e<-(BigInt(2)**BigInt(32)))&&(o=xe(o)),o+="n"),n+=` It must be ${t}. Received ${o}`,n},RangeError);const Be=/[^+/0-9A-Za-z-_]/g;function Dt(r,t){let e;t=t||1/0;const n=r.length;let o=null;const a=[];for(let E=0;E55295&&e<57344){if(!o){if(e>56319){(t-=3)>-1&&a.push(239,191,189);continue}if(E+1===n){(t-=3)>-1&&a.push(239,191,189);continue}o=e;continue}if(e<56320){(t-=3)>-1&&a.push(239,191,189),o=e;continue}e=65536+(o-55296<<10|e-56320)}else o&&(t-=3)>-1&&a.push(239,191,189);if(o=null,e<128){if((t-=1)<0)break;a.push(e)}else if(e<2048){if((t-=2)<0)break;a.push(e>>6|192,63&e|128)}else if(e<65536){if((t-=3)<0)break;a.push(e>>12|224,e>>6&63|128,63&e|128)}else{if(!(e<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;a.push(e>>18|240,e>>12&63|128,e>>6&63|128,63&e|128)}}return a}function ge(r){return A.toByteArray(function Se(r){if((r=(r=r.split("=")[0]).trim().replace(Be,"")).length<2)return"";for(;r.length%4!=0;)r+="=";return r}(r))}function re(r,t,e,n){let o;for(o=0;o=t.length||o>=r.length);++o)t[o+e]=r[o];return o}function jt(r,t){return r instanceof t||null!=r&&null!=r.constructor&&null!=r.constructor.name&&r.constructor.name===t.name}function ue(r){return r!=r}const Ae=function(){const r="0123456789abcdef",t=new Array(256);for(let e=0;e<16;++e){const n=16*e;for(let o=0;o<16;++o)t[n+o]=r[e]+r[o]}return t}();function qt(r){return typeof BigInt>"u"?ae:r}function ae(){throw new Error("BigInt not supported")}},96935:()=>{"use strict";var Wt=Object.defineProperty,j=Object.defineProperties,W=Object.getOwnPropertyDescriptors,A=Object.getOwnPropertySymbols,bt=Object.prototype.hasOwnProperty,Bt=Object.prototype.propertyIsEnumerable,tt=(c,s,y)=>s in c?Wt(c,s,{enumerable:!0,configurable:!0,writable:!0,value:y}):c[s]=y,gt=(c,s)=>{for(var y in s||(s={}))bt.call(s,y)&&tt(c,y,s[y]);if(A)for(var y of A(s))Bt.call(s,y)&&tt(c,y,s[y]);return c},i=(c,s,y)=>(tt(c,"symbol"!=typeof s?s+"":s,y),y),K=globalThis;function et(c){return(K.__Zone_symbol_prefix||"__zone_symbol__")+c}var Rt=Object.getOwnPropertyDescriptor,b=Object.defineProperty,x=Object.getPrototypeOf,H=Object.create,lt=Array.prototype.slice,vt="addEventListener",Tt="removeEventListener",Ct=et(vt),Ht=et(Tt),rt="true",Mt="false",Qt=et("");function he(c,s){return Zone.current.wrap(c,s)}function fe(c,s,y,u,d){return Zone.current.scheduleMacroTask(c,s,y,u,d)}var Q=et,ie=typeof window<"u",oe=ie?window:void 0,xt=ie&&oe||globalThis;function se(c,s){for(let y=c.length-1;y>=0;y--)"function"==typeof c[y]&&(c[y]=he(c[y],s+"_"+y));return c}function we(c){return!c||!1!==c.writable&&!("function"==typeof c.get&&typeof c.set>"u")}var ke=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope,ce=!("nw"in xt)&&typeof xt.process<"u"&&"[object process]"===xt.process.toString(),pe=!ce&&!ke&&!(!ie||!oe.HTMLElement),It=typeof xt.process<"u"&&"[object process]"===xt.process.toString()&&!ke&&!(!ie||!oe.HTMLElement),Pt={},be=Q("enable_beforeunload"),de=function(c){if(!(c=c||xt.event))return;let s=Pt[c.type];s||(s=Pt[c.type]=Q("ON_PROPERTY"+c.type));const y=this||c.target||xt,u=y[s];let d;return pe&&y===oe&&"error"===c.type?(d=u&&u.call(this,c.message,c.filename,c.lineno,c.colno,c.error),!0===d&&c.preventDefault()):(d=u&&u.apply(this,arguments),"beforeunload"===c.type&&xt[be]&&"string"==typeof d?c.returnValue=d:null!=d&&!d&&c.preventDefault()),d};function ye(c,s,y){let u=Rt(c,s);if(!u&&y&&Rt(y,s)&&(u={enumerable:!0,configurable:!0}),!u||!u.configurable)return;const d=Q("on"+s+"patched");if(c.hasOwnProperty(d)&&c[d])return;delete u.writable,delete u.value;const _=u.get,D=u.set,k=s.slice(2);let P=Pt[k];P||(P=Pt[k]=Q("ON_PROPERTY"+k)),u.set=function(U){let B=this;!B&&c===xt&&(B=xt),B&&("function"==typeof B[P]&&B.removeEventListener(k,de),D?.call(B,null),B[P]=U,"function"==typeof U&&B.addEventListener(k,de,!1))},u.get=function(){let U=this;if(!U&&c===xt&&(U=xt),!U)return null;const B=U[P];if(B)return B;if(_){let L=_.call(this);if(L)return u.set.call(this,L),"function"==typeof U.removeAttribute&&U.removeAttribute(s),L}return null},b(c,s,u),c[d]=!0}function Ee(c,s,y){if(s)for(let u=0;ufunction(D,k){const P=y(D,k);return P.cbIdx>=0&&"function"==typeof k[P.cbIdx]?fe(P.name,k[P.cbIdx],P,d):_.apply(D,k)})}function At(c,s){c[Q("OriginalDelegate")]=s}function te(c){return"function"==typeof c}function Be(c){return"number"==typeof c}var Se={useG:!0},Dt={},ve={},Re=new RegExp("^"+Qt+"(\\w+)(true|false)$"),ge=Q("propagationStopped");function re(c,s){const y=(s?s(c):c)+Mt,u=(s?s(c):c)+rt,d=Qt+y,_=Qt+u;Dt[c]={},Dt[c][Mt]=d,Dt[c][rt]=_}function jt(c,s,y,u){const d=u&&u.add||vt,_=u&&u.rm||Tt,D=u&&u.listeners||"eventListeners",k=u&&u.rmAll||"removeAllListeners",P=Q(d),U="."+d+":",B="prependListener",L="."+B+":",X=function(C,w,ct){if(C.isRemoved)return;const nt=C.callback;let dt;"object"==typeof nt&&nt.handleEvent&&(C.callback=v=>nt.handleEvent(v),C.originalDelegate=nt);try{C.invoke(C,w,[ct])}catch(v){dt=v}const ut=C.options;return ut&&"object"==typeof ut&&ut.once&&w[_].call(w,ct.type,C.originalDelegate?C.originalDelegate:C.callback,ut),dt};function J(C,w,ct){if(!(w=w||c.event))return;const nt=C||w.target||c,dt=nt[Dt[w.type][ct?rt:Mt]];if(dt){const ut=[];if(1===dt.length){const v=X(dt[0],nt,w);v&&ut.push(v)}else{const v=dt.slice();for(let kt=0;kt{throw kt})}}}const Ft=function(C){return J(this,C,!1)},wt=function(C){return J(this,C,!0)};function Lt(C,w){if(!C)return!1;let ct=!0;w&&void 0!==w.useG&&(ct=w.useG);const nt=w&&w.vh;let dt=!0;w&&void 0!==w.chkDup&&(dt=w.chkDup);let ut=!1;w&&void 0!==w.rt&&(ut=w.rt);let v=C;for(;v&&!v.hasOwnProperty(d);)v=x(v);if(!v&&C[d]&&(v=C),!v||v[P])return!1;const kt=w&&w.eventNameToString,Z={},M=v[P]=v[d],q=v[Q(_)]=v[_],F=v[Q(D)]=v[D],Nt=v[Q(k)]=v[k];let Ut;w&&w.prepend&&(Ut=v[Q(w.prepend)]=v[w.prepend]);const st=ct?function(p){if(!Z.isExisting)return M.call(Z.target,Z.eventName,Z.capture?wt:Ft,Z.options)}:function(p){return M.call(Z.target,Z.eventName,p.invoke,Z.options)},Y=ct?function(p){if(!p.isRemoved){const m=Dt[p.eventName];let R;m&&(R=m[p.capture?rt:Mt]);const O=R&&p.target[R];if(O)for(let I=0;Ij(c,W({passive:!0})))(gt({},p)):p:{passive:!0}:p}(arguments[2],ee)),ne=$t?.signal;if(ne?.aborted)return;if(Kt)for(let Yt=0;Ytzt.zone.cancelTask(zt);p.call(ne,"abort",Yt,{once:!0}),zt.removeAbortListener=()=>ne.removeEventListener("abort",Yt)}return Z.target=null,me&&(me.taskData=null),Le&&(Z.options.once=!0),"boolean"!=typeof zt.options&&(zt.options=$t),zt.target=$,zt.capture=De,zt.eventName=z,pt&&(zt.originalDelegate=ft),V?le.unshift(zt):le.push(zt),I?$:void 0}};return v[d]=g(M,U,st,Y,ut),Ut&&(v[B]=g(Ut,L,function(p){return Ut.call(Z.target,Z.eventName,p.invoke,Z.options)},Y,ut,!0)),v[_]=function(){const p=this||c;let m=arguments[0];w&&w.transferEventName&&(m=w.transferEventName(m));const R=arguments[2],O=!!R&&("boolean"==typeof R||R.capture),I=arguments[1];if(!I)return q.apply(this,arguments);if(nt&&!nt(q,I,p,arguments))return;const V=Dt[m];let $;V&&($=V[O?rt:Mt]);const z=$&&p[$];if(z)for(let ft=0;ftfunction(d,_){d[ge]=!0,u&&u.apply(d,_)})}var ae=Q("zoneTask");function r(c,s,y,u){let d=null,_=null;y+=u;const D={};function k(U){const B=U.data;B.args[0]=function(){return U.invoke.apply(this,arguments)};const L=d.apply(c,B.args);return Be(L)?B.handleId=L:(B.handle=L,B.isRefreshable=te(L.refresh)),U}function P(U){const{handle:B,handleId:L}=U.data;return _.call(c,B??L)}d=Gt(c,s+=u,U=>function(B,L){var X;if(te(L[0])){const J={isRefreshable:!1,isPeriodic:"Interval"===u,delay:"Timeout"===u||"Interval"===u?L[1]||0:void 0,args:L},Ft=L[0];L[0]=function(){try{return Ft.apply(this,arguments)}finally{const{handle:nt,handleId:dt,isPeriodic:ut,isRefreshable:v}=J;!ut&&!v&&(dt?delete D[dt]:nt&&(nt[ae]=null))}};const wt=fe(s,L[0],J,k,P);if(!wt)return wt;const{handleId:Lt,handle:St,isRefreshable:C,isPeriodic:w}=wt.data;if(Lt)D[Lt]=wt;else if(St&&(St[ae]=wt,C&&!w)){const ct=St.refresh;St.refresh=function(){const{zone:nt,state:dt}=wt;return"notScheduled"===dt?(wt._state="scheduled",nt._updateTaskCount(wt,1)):"running"===dt&&(wt._state="scheduling"),ct.call(this)}}return null!=(X=St??Lt)?X:wt}return U.apply(c,L)}),_=Gt(c,y,U=>function(B,L){const X=L[0];let J;Be(X)?(J=D[X],delete D[X]):(J=X?.[ae],J?X[ae]=null:J=X),J?.type?J.cancelFn&&J.zone.cancelTask(J):U.apply(c,L)})}function o(c,s,y){if(!y||0===y.length)return s;const u=y.filter(_=>_.target===c);if(0===u.length)return s;const d=u[0].ignoreProperties;return s.filter(_=>-1===d.indexOf(_))}function a(c,s,y,u){c&&Ee(c,o(c,s,y),u)}function E(c){return Object.getOwnPropertyNames(c).filter(s=>s.startsWith("on")&&s.length>2).map(s=>s.substring(2))}function it(c,s,y,u,d){const _=Zone.__symbol__(u);if(s[_])return;const D=s[_]=s[u];s[u]=function(k,P,U){return P&&P.prototype&&d.forEach(function(B){const L=`${y}.${u}::`+B,X=P.prototype;try{if(X.hasOwnProperty(B)){const J=c.ObjectGetOwnPropertyDescriptor(X,B);J&&J.value?(J.value=c.wrapWithCurrentZone(J.value,L),c._redefineProperty(P.prototype,B,J)):X[B]&&(X[B]=c.wrapWithCurrentZone(X[B],L))}else X[B]&&(X[B]=c.wrapWithCurrentZone(X[B],L))}catch{}}),D.call(s,k,P,U)},c.attachOriginToPatched(s[u],D)}var Oe=function yt(){const s=globalThis,y=!0===s[et("forceDuplicateZoneCheck")];if(s.Zone&&(y||"function"!=typeof s.Zone.__symbol__))throw new Error("Zone already loaded.");return null!=s.Zone||(s.Zone=function mt(){const c=K.performance;function s(ot){c&&c.mark&&c.mark(ot)}function y(ot,f){c&&c.measure&&c.measure(ot,f)}s("Zone");const u=class Ne{constructor(f,h){i(this,"_parent"),i(this,"_name"),i(this,"_properties"),i(this,"_zoneDelegate"),this._parent=f,this._name=h?h.name||"unnamed":"",this._properties=h&&h.properties||{},this._zoneDelegate=new D(this,this._parent&&this._parent._zoneDelegate,h)}static assertZonePatched(){if(K.Promise!==M.ZoneAwarePromise)throw new Error("Zone.js has detected that ZoneAwarePromise `(window|global).Promise` has been overwritten.\nMost likely cause is that a Promise polyfill has been loaded after Zone.js (Polyfilling Promise api is not necessary when zone.js is loaded. If you must load one, do so before loading zone.js.)")}static get root(){let f=Ne.current;for(;f.parent;)f=f.parent;return f}static get current(){return F.zone}static get currentTask(){return Nt}static __load_patch(f,h,l=!1){if(M.hasOwnProperty(f)){const S=!0===K[et("forceDuplicateZoneCheck")];if(!l&&S)throw Error("Already loaded patch: "+f)}else if(!K["__Zone_disable_"+f]){const S="Zone:"+f;s(S),M[f]=h(K,Ne,q),y(S,S)}}get parent(){return this._parent}get name(){return this._name}get(f){const h=this.getZoneWith(f);if(h)return h._properties[f]}getZoneWith(f){let h=this;for(;h;){if(h._properties.hasOwnProperty(f))return h;h=h._parent}return null}fork(f){if(!f)throw new Error("ZoneSpec required!");return this._zoneDelegate.fork(this,f)}wrap(f,h){if("function"!=typeof f)throw new Error("Expecting function got: "+f);const l=this._zoneDelegate.intercept(this,f,h),S=this;return function(){return S.runGuarded(l,this,arguments,h)}}run(f,h,l,S){F={parent:F,zone:this};try{return this._zoneDelegate.invoke(this,f,h,l,S)}finally{F=F.parent}}runGuarded(f,h=null,l,S){F={parent:F,zone:this};try{try{return this._zoneDelegate.invoke(this,f,h,l,S)}catch(st){if(this._zoneDelegate.handleError(this,st))throw st}}finally{F=F.parent}}runTask(f,h,l){if(f.zone!=this)throw new Error("A task can only be run in the zone of creation! (Creation: "+(f.zone||St).name+"; Execution: "+this.name+")");const S=f,{type:st,data:{isPeriodic:Y=!1,isRefreshable:Xt=!1}={}}=f;if(f.state===C&&(st===Z||st===kt))return;const Jt=f.state!=nt;Jt&&S._transitionTo(nt,ct);const Kt=Nt;Nt=S,F={parent:F,zone:this};try{st==kt&&f.data&&!Y&&!Xt&&(f.cancelFn=void 0);try{return this._zoneDelegate.invokeTask(this,S,h,l)}catch(Vt){if(this._zoneDelegate.handleError(this,Vt))throw Vt}}finally{const Vt=f.state;if(Vt!==C&&Vt!==ut)if(st==Z||Y||Xt&&Vt===w)Jt&&S._transitionTo(ct,nt,w);else{const T=S._zoneDelegates;this._updateTaskCount(S,-1),Jt&&S._transitionTo(C,nt,C),Xt&&(S._zoneDelegates=T)}F=F.parent,Nt=Kt}}scheduleTask(f){if(f.zone&&f.zone!==this){let l=this;for(;l;){if(l===f.zone)throw Error(`can not reschedule task to ${this.name} which is descendants of the original zone ${f.zone.name}`);l=l.parent}}f._transitionTo(w,C);const h=[];f._zoneDelegates=h,f._zone=this;try{f=this._zoneDelegate.scheduleTask(this,f)}catch(l){throw f._transitionTo(ut,w,C),this._zoneDelegate.handleError(this,l),l}return f._zoneDelegates===h&&this._updateTaskCount(f,1),f.state==w&&f._transitionTo(ct,w),f}scheduleMicroTask(f,h,l,S){return this.scheduleTask(new k(v,f,h,l,S,void 0))}scheduleMacroTask(f,h,l,S,st){return this.scheduleTask(new k(kt,f,h,l,S,st))}scheduleEventTask(f,h,l,S,st){return this.scheduleTask(new k(Z,f,h,l,S,st))}cancelTask(f){if(f.zone!=this)throw new Error("A task can only be cancelled in the zone of creation! (Creation: "+(f.zone||St).name+"; Execution: "+this.name+")");if(f.state===ct||f.state===nt){f._transitionTo(dt,ct,nt);try{this._zoneDelegate.cancelTask(this,f)}catch(h){throw f._transitionTo(ut,dt),this._zoneDelegate.handleError(this,h),h}return this._updateTaskCount(f,-1),f._transitionTo(C,dt),f.runCount=-1,f}}_updateTaskCount(f,h){const l=f._zoneDelegates;-1==h&&(f._zoneDelegates=null);for(let S=0;Sot.hasTask(h,l),onScheduleTask:(ot,f,h,l)=>ot.scheduleTask(h,l),onInvokeTask:(ot,f,h,l,S,st)=>ot.invokeTask(h,l,S,st),onCancelTask:(ot,f,h,l)=>ot.cancelTask(h,l)};class D{constructor(f,h,l){i(this,"_zone"),i(this,"_taskCounts",{microTask:0,macroTask:0,eventTask:0}),i(this,"_parentDelegate"),i(this,"_forkDlgt"),i(this,"_forkZS"),i(this,"_forkCurrZone"),i(this,"_interceptDlgt"),i(this,"_interceptZS"),i(this,"_interceptCurrZone"),i(this,"_invokeDlgt"),i(this,"_invokeZS"),i(this,"_invokeCurrZone"),i(this,"_handleErrorDlgt"),i(this,"_handleErrorZS"),i(this,"_handleErrorCurrZone"),i(this,"_scheduleTaskDlgt"),i(this,"_scheduleTaskZS"),i(this,"_scheduleTaskCurrZone"),i(this,"_invokeTaskDlgt"),i(this,"_invokeTaskZS"),i(this,"_invokeTaskCurrZone"),i(this,"_cancelTaskDlgt"),i(this,"_cancelTaskZS"),i(this,"_cancelTaskCurrZone"),i(this,"_hasTaskDlgt"),i(this,"_hasTaskDlgtOwner"),i(this,"_hasTaskZS"),i(this,"_hasTaskCurrZone"),this._zone=f,this._parentDelegate=h,this._forkZS=l&&(l&&l.onFork?l:h._forkZS),this._forkDlgt=l&&(l.onFork?h:h._forkDlgt),this._forkCurrZone=l&&(l.onFork?this._zone:h._forkCurrZone),this._interceptZS=l&&(l.onIntercept?l:h._interceptZS),this._interceptDlgt=l&&(l.onIntercept?h:h._interceptDlgt),this._interceptCurrZone=l&&(l.onIntercept?this._zone:h._interceptCurrZone),this._invokeZS=l&&(l.onInvoke?l:h._invokeZS),this._invokeDlgt=l&&(l.onInvoke?h:h._invokeDlgt),this._invokeCurrZone=l&&(l.onInvoke?this._zone:h._invokeCurrZone),this._handleErrorZS=l&&(l.onHandleError?l:h._handleErrorZS),this._handleErrorDlgt=l&&(l.onHandleError?h:h._handleErrorDlgt),this._handleErrorCurrZone=l&&(l.onHandleError?this._zone:h._handleErrorCurrZone),this._scheduleTaskZS=l&&(l.onScheduleTask?l:h._scheduleTaskZS),this._scheduleTaskDlgt=l&&(l.onScheduleTask?h:h._scheduleTaskDlgt),this._scheduleTaskCurrZone=l&&(l.onScheduleTask?this._zone:h._scheduleTaskCurrZone),this._invokeTaskZS=l&&(l.onInvokeTask?l:h._invokeTaskZS),this._invokeTaskDlgt=l&&(l.onInvokeTask?h:h._invokeTaskDlgt),this._invokeTaskCurrZone=l&&(l.onInvokeTask?this._zone:h._invokeTaskCurrZone),this._cancelTaskZS=l&&(l.onCancelTask?l:h._cancelTaskZS),this._cancelTaskDlgt=l&&(l.onCancelTask?h:h._cancelTaskDlgt),this._cancelTaskCurrZone=l&&(l.onCancelTask?this._zone:h._cancelTaskCurrZone),this._hasTaskZS=null,this._hasTaskDlgt=null,this._hasTaskDlgtOwner=null,this._hasTaskCurrZone=null;const S=l&&l.onHasTask;(S||h&&h._hasTaskZS)&&(this._hasTaskZS=S?l:_,this._hasTaskDlgt=h,this._hasTaskDlgtOwner=this,this._hasTaskCurrZone=this._zone,l.onScheduleTask||(this._scheduleTaskZS=_,this._scheduleTaskDlgt=h,this._scheduleTaskCurrZone=this._zone),l.onInvokeTask||(this._invokeTaskZS=_,this._invokeTaskDlgt=h,this._invokeTaskCurrZone=this._zone),l.onCancelTask||(this._cancelTaskZS=_,this._cancelTaskDlgt=h,this._cancelTaskCurrZone=this._zone))}get zone(){return this._zone}fork(f,h){return this._forkZS?this._forkZS.onFork(this._forkDlgt,this.zone,f,h):new d(f,h)}intercept(f,h,l){return this._interceptZS?this._interceptZS.onIntercept(this._interceptDlgt,this._interceptCurrZone,f,h,l):h}invoke(f,h,l,S,st){return this._invokeZS?this._invokeZS.onInvoke(this._invokeDlgt,this._invokeCurrZone,f,h,l,S,st):h.apply(l,S)}handleError(f,h){return!this._handleErrorZS||this._handleErrorZS.onHandleError(this._handleErrorDlgt,this._handleErrorCurrZone,f,h)}scheduleTask(f,h){let l=h;if(this._scheduleTaskZS)this._hasTaskZS&&l._zoneDelegates.push(this._hasTaskDlgtOwner),l=this._scheduleTaskZS.onScheduleTask(this._scheduleTaskDlgt,this._scheduleTaskCurrZone,f,h),l||(l=h);else if(h.scheduleFn)h.scheduleFn(h);else{if(h.type!=v)throw new Error("Task is missing scheduleFn.");wt(h)}return l}invokeTask(f,h,l,S){return this._invokeTaskZS?this._invokeTaskZS.onInvokeTask(this._invokeTaskDlgt,this._invokeTaskCurrZone,f,h,l,S):h.callback.apply(l,S)}cancelTask(f,h){let l;if(this._cancelTaskZS)l=this._cancelTaskZS.onCancelTask(this._cancelTaskDlgt,this._cancelTaskCurrZone,f,h);else{if(!h.cancelFn)throw Error("Task is not cancelable");l=h.cancelFn(h)}return l}hasTask(f,h){try{this._hasTaskZS&&this._hasTaskZS.onHasTask(this._hasTaskDlgt,this._hasTaskCurrZone,f,h)}catch(l){this.handleError(f,l)}}_updateTaskCount(f,h){const l=this._taskCounts,S=l[f],st=l[f]=S+h;if(st<0)throw new Error("More tasks executed then were scheduled.");0!=S&&0!=st||this.hasTask(this._zone,{microTask:l.microTask>0,macroTask:l.macroTask>0,eventTask:l.eventTask>0,change:f})}}class k{constructor(f,h,l,S,st,Y){if(i(this,"type"),i(this,"source"),i(this,"invoke"),i(this,"callback"),i(this,"data"),i(this,"scheduleFn"),i(this,"cancelFn"),i(this,"_zone",null),i(this,"runCount",0),i(this,"_zoneDelegates",null),i(this,"_state","notScheduled"),this.type=f,this.source=h,this.data=S,this.scheduleFn=st,this.cancelFn=Y,!l)throw new Error("callback is not defined");this.callback=l;const Xt=this;this.invoke=f===Z&&S&&S.useG?k.invokeTask:function(){return k.invokeTask.call(K,Xt,this,arguments)}}static invokeTask(f,h,l){f||(f=this),Ut++;try{return f.runCount++,f.zone.runTask(f,h,l)}finally{1==Ut&&Lt(),Ut--}}get zone(){return this._zone}get state(){return this._state}cancelScheduleRequest(){this._transitionTo(C,w)}_transitionTo(f,h,l){if(this._state!==h&&this._state!==l)throw new Error(`${this.type} '${this.source}': can not transition to '${f}', expecting state '${h}'${l?" or '"+l+"'":""}, was '${this._state}'.`);this._state=f,f==C&&(this._zoneDelegates=null)}toString(){return this.data&&typeof this.data.handleId<"u"?this.data.handleId.toString():Object.prototype.toString.call(this)}toJSON(){return{type:this.type,state:this.state,source:this.source,zone:this.zone.name,runCount:this.runCount}}}const P=et("setTimeout"),U=et("Promise"),B=et("then");let J,L=[],X=!1;function Ft(ot){if(J||K[U]&&(J=K[U].resolve(0)),J){let f=J[B];f||(f=J.then),f.call(J,ot)}else K[P](ot,0)}function wt(ot){0===Ut&&0===L.length&&Ft(Lt),ot&&L.push(ot)}function Lt(){if(!X){for(X=!0;L.length;){const ot=L;L=[];for(let f=0;fF,onUnhandledError:at,microtaskDrainDone:at,scheduleMicroTask:wt,showUncaughtError:()=>!d[et("ignoreConsoleErrorUncaughtError")],patchEventTarget:()=>[],patchOnProperties:at,patchMethod:()=>at,bindArguments:()=>[],patchThen:()=>at,patchMacroTask:()=>at,patchEventPrototype:()=>at,getGlobalObjects:()=>{},ObjectDefineProperty:()=>at,ObjectGetOwnPropertyDescriptor:()=>{},ObjectCreate:()=>{},ArraySlice:()=>[],patchClass:()=>at,wrapWithCurrentZone:()=>at,filterProperties:()=>[],attachOriginToPatched:()=>at,_redefineProperty:()=>at,patchCallbacks:()=>at,nativeScheduleMicroTask:Ft};let F={parent:null,zone:new d(null,null)},Nt=null,Ut=0;function at(){}return y("Zone","Zone"),d}()),s.Zone}();(function Ge(c){(function ht(c){c.__load_patch("ZoneAwarePromise",(s,y,u)=>{const d=Object.getOwnPropertyDescriptor,_=Object.defineProperty,k=u.symbol,P=[],U=!1!==s[k("DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION")],B=k("Promise"),L=k("then");u.onUnhandledError=T=>{if(u.showUncaughtError()){const g=T&&T.rejection;g?console.error("Unhandled Promise rejection:",g instanceof Error?g.message:g,"; Zone:",T.zone.name,"; Task:",T.task&&T.task.source,"; Value:",g,g instanceof Error?g.stack:void 0):console.error(T)}},u.microtaskDrainDone=()=>{for(;P.length;){const T=P.shift();try{T.zone.runGuarded(()=>{throw T.throwOriginal?T.rejection:T})}catch(g){Ft(g)}}};const J=k("unhandledPromiseRejectionHandler");function Ft(T){u.onUnhandledError(T);try{const g=y[J];"function"==typeof g&&g.call(this,T)}catch{}}function wt(T){return T&&"function"==typeof T.then}function Lt(T){return T}function St(T){return Y.reject(T)}const C=k("state"),w=k("value"),ct=k("finally"),nt=k("parentPromiseValue"),dt=k("parentPromiseState"),v=null,Z=!1;function q(T,g){return p=>{try{at(T,g,p)}catch(m){at(T,!1,m)}}}const F=function(){let T=!1;return function(p){return function(){T||(T=!0,p.apply(null,arguments))}}},Nt="Promise resolved with itself",Ut=k("currentTaskTrace");function at(T,g,p){const m=F();if(T===p)throw new TypeError(Nt);if(T[C]===v){let R=null;try{("object"==typeof p||"function"==typeof p)&&(R=p&&p.then)}catch(O){return m(()=>{at(T,!1,O)})(),T}if(g!==Z&&p instanceof Y&&p.hasOwnProperty(C)&&p.hasOwnProperty(w)&&p[C]!==v)f(p),at(T,p[C],p[w]);else if(g!==Z&&"function"==typeof R)try{R.call(p,m(q(T,g)),m(q(T,!1)))}catch(O){m(()=>{at(T,!1,O)})()}else{T[C]=g;const O=T[w];if(T[w]=p,T[ct]===ct&&!0===g&&(T[C]=T[dt],T[w]=T[nt]),g===Z&&p instanceof Error){const I=y.currentTask&&y.currentTask.data&&y.currentTask.data.__creationTrace__;I&&_(p,Ut,{configurable:!0,enumerable:!1,writable:!0,value:I})}for(let I=0;I{try{const V=T[w],$=!!p&&ct===p[ct];$&&(p[nt]=V,p[dt]=O);const z=g.run(I,void 0,$&&I!==St&&I!==Lt?[]:[V]);at(p,!0,z)}catch(V){at(p,!1,V)}},p)}const S=function(){},st=s.AggregateError;class Y{static toString(){return"function ZoneAwarePromise() { [native code] }"}static resolve(g){return g instanceof Y?g:at(new this(null),!0,g)}static reject(g){return at(new this(null),Z,g)}static withResolvers(){const g={};return g.promise=new Y((p,m)=>{g.resolve=p,g.reject=m}),g}static any(g){if(!g||"function"!=typeof g[Symbol.iterator])return Promise.reject(new st([],"All promises were rejected"));const p=[];let m=0;try{for(let I of g)m++,p.push(Y.resolve(I))}catch{return Promise.reject(new st([],"All promises were rejected"))}if(0===m)return Promise.reject(new st([],"All promises were rejected"));let R=!1;const O=[];return new Y((I,V)=>{for(let $=0;${R||(R=!0,I(z))},z=>{O.push(z),m--,0===m&&(R=!0,V(new st(O,"All promises were rejected")))})})}static race(g){let p,m,R=new this((V,$)=>{p=V,m=$});function O(V){p(V)}function I(V){m(V)}for(let V of g)wt(V)||(V=this.resolve(V)),V.then(O,I);return R}static all(g){return Y.allWithCallback(g)}static allSettled(g){return(this&&this.prototype instanceof Y?this:Y).allWithCallback(g,{thenCallback:m=>({status:"fulfilled",value:m}),errorCallback:m=>({status:"rejected",reason:m})})}static allWithCallback(g,p){let m,R,O=new this((z,ft)=>{m=z,R=ft}),I=2,V=0;const $=[];for(let z of g){wt(z)||(z=this.resolve(z));const ft=V;try{z.then(pt=>{$[ft]=p?p.thenCallback(pt):pt,I--,0===I&&m($)},pt=>{p?($[ft]=p.errorCallback(pt),I--,0===I&&m($)):R(pt)})}catch(pt){R(pt)}I++,V++}return I-=2,0===I&&m($),O}constructor(g){const p=this;if(!(p instanceof Y))throw new Error("Must be an instanceof Promise.");p[C]=v,p[w]=[];try{const m=F();g&&g(m(q(p,!0)),m(q(p,Z)))}catch(m){at(p,!1,m)}}get[Symbol.toStringTag](){return"Promise"}get[Symbol.species](){return Y}then(g,p){var m;let R=null==(m=this.constructor)?void 0:m[Symbol.species];(!R||"function"!=typeof R)&&(R=this.constructor||Y);const O=new R(S),I=y.current;return this[C]==v?this[w].push(I,O,g,p):h(this,I,O,g,p),O}catch(g){return this.then(null,g)}finally(g){var p;let m=null==(p=this.constructor)?void 0:p[Symbol.species];(!m||"function"!=typeof m)&&(m=Y);const R=new m(S);R[ct]=ct;const O=y.current;return this[C]==v?this[w].push(O,R,g,g):h(this,O,R,g,g),R}}Y.resolve=Y.resolve,Y.reject=Y.reject,Y.race=Y.race,Y.all=Y.all;const Xt=s[B]=s.Promise;s.Promise=Y;const Jt=k("thenPatched");function Kt(T){const g=T.prototype,p=d(g,"then");if(p&&(!1===p.writable||!p.configurable))return;const m=g.then;g[L]=m,T.prototype.then=function(R,O){return new Y((V,$)=>{m.call(this,V,$)}).then(R,O)},T[Jt]=!0}return u.patchThen=Kt,Xt&&(Kt(Xt),Gt(s,"fetch",T=>function Vt(T){return function(g,p){let m=T.apply(g,p);if(m instanceof Y)return m;let R=m.constructor;return R[Jt]||Kt(R),m}}(T))),Promise[y.__symbol__("uncaughtPromiseErrors")]=P,Y})})(c),function _t(c){c.__load_patch("toString",s=>{const y=Function.prototype.toString,u=Q("OriginalDelegate"),d=Q("Promise"),_=Q("Error"),D=function(){if("function"==typeof this){const B=this[u];if(B)return"function"==typeof B?y.call(B):Object.prototype.toString.call(B);if(this===Promise){const L=s[d];if(L)return y.call(L)}if(this===Error){const L=s[_];if(L)return y.call(L)}}return y.call(this)};D[u]=y,Function.prototype.toString=D;const k=Object.prototype.toString;Object.prototype.toString=function(){return"function"==typeof Promise&&this instanceof Promise?"[object Promise]":k.call(this)}})}(c),function He(c){c.__load_patch("util",(s,y,u)=>{const d=E(s);u.patchOnProperties=Ee,u.patchMethod=Gt,u.bindArguments=se,u.patchMacroTask=Ie;const _=y.__symbol__("BLACK_LISTED_EVENTS"),D=y.__symbol__("UNPATCHED_EVENTS");s[D]&&(s[_]=s[D]),s[_]&&(y[_]=y[D]=s[_]),u.patchEventPrototype=Ae,u.patchEventTarget=jt,u.ObjectDefineProperty=b,u.ObjectGetOwnPropertyDescriptor=Rt,u.ObjectCreate=H,u.ArraySlice=lt,u.patchClass=Zt,u.wrapWithCurrentZone=he,u.filterProperties=o,u.attachOriginToPatched=At,u._redefineProperty=Object.defineProperty,u.patchCallbacks=it,u.getGlobalObjects=()=>({globalSources:ve,zoneSymbolEventNames:Dt,eventNames:d,isBrowser:pe,isMix:It,isNode:ce,TRUE_STR:rt,FALSE_STR:Mt,ZONE_SYMBOL_PREFIX:Qt,ADD_EVENT_LISTENER_STR:vt,REMOVE_EVENT_LISTENER_STR:Tt})})}(c)})(Oe),function Et(c){c.__load_patch("timers",s=>{const u="clear";r(s,"set",u,"Timeout"),r(s,"set",u,"Interval"),r(s,"set",u,"Immediate")}),c.__load_patch("requestAnimationFrame",s=>{r(s,"request","cancel","AnimationFrame"),r(s,"mozRequest","mozCancel","AnimationFrame"),r(s,"webkitRequest","webkitCancel","AnimationFrame")}),c.__load_patch("blocking",(s,y)=>{const u=["alert","prompt","confirm"];for(let d=0;dfunction(U,B){return y.current.run(D,s,B,P)})}),c.__load_patch("EventTarget",(s,y,u)=>{(function n(c,s){s.patchEventPrototype(c,s)})(s,u),function e(c,s){if(Zone[s.symbol("patchEventTarget")])return;const{eventNames:y,zoneSymbolEventNames:u,TRUE_STR:d,FALSE_STR:_,ZONE_SYMBOL_PREFIX:D}=s.getGlobalObjects();for(let P=0;P{Zt("MutationObserver"),Zt("WebKitMutationObserver")}),c.__load_patch("IntersectionObserver",(s,y,u)=>{Zt("IntersectionObserver")}),c.__load_patch("FileReader",(s,y,u)=>{Zt("FileReader")}),c.__load_patch("on_property",(s,y,u)=>{!function G(c,s){if(ce&&!It||Zone[c.symbol("patchEvents")])return;const y=s.__Zone_ignore_on_properties;let u=[];if(pe){const d=window;u=u.concat(["Document","SVGElement","Element","HTMLElement","HTMLBodyElement","HTMLMediaElement","HTMLFrameSetElement","HTMLFrameElement","HTMLIFrameElement","HTMLMarqueeElement","Worker"]),a(d,E(d),y,x(d))}u=u.concat(["XMLHttpRequest","XMLHttpRequestEventTarget","IDBIndex","IDBRequest","IDBOpenDBRequest","IDBDatabase","IDBTransaction","IDBCursor","WebSocket"]);for(let d=0;d{!function t(c,s){const{isBrowser:y,isMix:u}=s.getGlobalObjects();(y||u)&&c.customElements&&"customElements"in c&&s.patchCallbacks(s,c.customElements,"customElements","define",["connectedCallback","disconnectedCallback","adoptedCallback","attributeChangedCallback","formAssociatedCallback","formDisabledCallback","formResetCallback","formStateRestoreCallback"])}(s,u)}),c.__load_patch("XHR",(s,y)=>{!function U(B){const L=B.XMLHttpRequest;if(!L)return;const X=L.prototype;let Ft=X[Ct],wt=X[Ht];if(!Ft){const M=B.XMLHttpRequestEventTarget;if(M){const q=M.prototype;Ft=q[Ct],wt=q[Ht]}}const Lt="readystatechange",St="scheduled";function C(M){const q=M.data,F=q.target;F[D]=!1,F[P]=!1;const Nt=F[_];Ft||(Ft=F[Ct],wt=F[Ht]),Nt&&wt.call(F,Lt,Nt);const Ut=F[_]=()=>{if(F.readyState===F.DONE)if(!q.aborted&&F[D]&&M.state===St){const ot=F[y.__symbol__("loadfalse")];if(0!==F.status&&ot&&ot.length>0){const f=M.invoke;M.invoke=function(){const h=F[y.__symbol__("loadfalse")];for(let l=0;lfunction(M,q){return M[d]=0==q[2],M[k]=q[1],nt.apply(M,q)}),ut=Q("fetchTaskAborting"),v=Q("fetchTaskScheduling"),kt=Gt(X,"send",()=>function(M,q){if(!0===y.current[v]||M[d])return kt.apply(M,q);{const F={target:M,url:M[k],isPeriodic:!1,args:q,aborted:!1},Nt=fe("XMLHttpRequest.send",w,F,C,ct);M&&!0===M[P]&&!F.aborted&&Nt.state===St&&Nt.invoke()}}),Z=Gt(X,"abort",()=>function(M,q){const F=function J(M){return M[u]}(M);if(F&&"string"==typeof F.type){if(null==F.cancelFn||F.data&&F.data.aborted)return;F.zone.cancelTask(F)}else if(!0===y.current[ut])return Z.apply(M,q)})}(s);const u=Q("xhrTask"),d=Q("xhrSync"),_=Q("xhrListener"),D=Q("xhrScheduled"),k=Q("xhrURL"),P=Q("xhrErrorBeforeScheduled")}),c.__load_patch("geolocation",s=>{s.navigator&&s.navigator.geolocation&&function Pe(c,s){const y=c.constructor.name;for(let u=0;u{const P=function(){return k.apply(this,se(arguments,y+"."+d))};return At(P,k),P})(_)}}}(s.navigator.geolocation,["getCurrentPosition","watchPosition"])}),c.__load_patch("PromiseRejectionEvent",(s,y)=>{function u(d){return function(_){ue(s,d).forEach(k=>{const P=s.PromiseRejectionEvent;if(P){const U=new P(d,{promise:_.promise,reason:_.rejection});k.invoke(U)}})}}s.PromiseRejectionEvent&&(y[Q("unhandledPromiseRejectionHandler")]=u("unhandledrejection"),y[Q("rejectionHandledHandler")]=u("rejectionhandled"))}),c.__load_patch("queueMicrotask",(s,y,u)=>{!function qt(c,s){s.patchMethod(c,"queueMicrotask",y=>function(u,d){Zone.current.scheduleMicroTask("queueMicrotask",d[0])})}(s,u)})}(Oe)}},Wt=>{var j=A=>Wt(Wt.s=A);j(96935),j(24050)}]); \ No newline at end of file diff --git a/frontend/runtime.785eb15c327b373a.js b/frontend/runtime.785eb15c327b373a.js new file mode 100644 index 00000000..fda6f4e7 --- /dev/null +++ b/frontend/runtime.785eb15c327b373a.js @@ -0,0 +1 @@ +(()=>{"use strict";var e,v={},m={};function r(e){var o=m[e];if(void 0!==o)return o.exports;var t=m[e]={exports:{}};return v[e].call(t.exports,t,t.exports,r),t.exports}r.m=v,e=[],r.O=(o,t,i,f)=>{if(!t){var a=1/0;for(n=0;n=f)&&Object.keys(r.O).every(b=>r.O[b](t[u]))?t.splice(u--,1):(s=!1,f0&&e[n-1][2]>f;n--)e[n]=e[n-1];e[n]=[t,i,f]},r.d=(e,o)=>{for(var t in o)r.o(o,t)&&!r.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:o[t]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((o,t)=>(r.f[t](e,o),o),[])),r.u=e=>e+"."+{17:"da5e0b6abb96d103",190:"0e6572086349bd7c",193:"5eec0042e2c6f1a7",853:"e46ed60b577aec33"}[e]+".js",r.miniCssF=e=>{},r.o=(e,o)=>Object.prototype.hasOwnProperty.call(e,o),(()=>{var e={},o="RTLApp:";r.l=(t,i,f,n)=>{if(e[t])e[t].push(i);else{var a,s;if(void 0!==f)for(var u=document.getElementsByTagName("script"),d=0;d{a.onerror=a.onload=null,clearTimeout(p);var g=e[t];if(delete e[t],a.parentNode&&a.parentNode.removeChild(a),g&&g.forEach(_=>_(b)),h)return h(b)},p=setTimeout(c.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=c.bind(null,a.onerror),a.onload=c.bind(null,a.onload),s&&document.head.appendChild(a)}}})(),(()=>{var e;r.tt=()=>(void 0===e&&(e={createScriptURL:o=>o},typeof trustedTypes<"u"&&trustedTypes.createPolicy&&(e=trustedTypes.createPolicy("angular#bundler",e))),e)})(),r.tu=e=>r.tt().createScriptURL(e),r.p="",(()=>{var e={121:0};r.f.j=(i,f)=>{var n=r.o(e,i)?e[i]:void 0;if(0!==n)if(n)f.push(n[2]);else if(121!=i){var a=new Promise((l,c)=>n=e[i]=[l,c]);f.push(n[2]=a);var s=r.p+r.u(i),u=new Error;r.l(s,l=>{if(r.o(e,i)&&(0!==(n=e[i])&&(e[i]=void 0),n)){var c=l&&("load"===l.type?"missing":l.type),p=l&&l.target&&l.target.src;u.message="Loading chunk "+i+" failed.\n("+c+": "+p+")",u.name="ChunkLoadError",u.type=c,u.request=p,n[1](u)}},"chunk-"+i,i)}else e[i]=0},r.O.j=i=>0===e[i];var o=(i,f)=>{var u,d,[n,a,s]=f,l=0;if(n.some(p=>0!==e[p])){for(u in a)r.o(a,u)&&(r.m[u]=a[u]);if(s)var c=s(r)}for(i&&i(f);l{"use strict";var e,v={},m={};function r(e){var o=m[e];if(void 0!==o)return o.exports;var t=m[e]={id:e,loaded:!1,exports:{}};return v[e].call(t.exports,t,t.exports,r),t.loaded=!0,t.exports}r.m=v,e=[],r.O=(o,t,i,f)=>{if(!t){var a=1/0;for(n=0;n=f)&&Object.keys(r.O).every(b=>r.O[b](t[l]))?t.splice(l--,1):(c=!1,f0&&e[n-1][2]>f;n--)e[n]=e[n-1];e[n]=[t,i,f]},r.d=(e,o)=>{for(var t in o)r.o(o,t)&&!r.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:o[t]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((o,t)=>(r.f[t](e,o),o),[])),r.u=e=>e+"."+{17:"b882df9dedeedc74",190:"558182128d53aa6a",193:"0936738599c66c4e",853:"a5bf31a92e24292f"}[e]+".js",r.miniCssF=e=>{},r.o=(e,o)=>Object.prototype.hasOwnProperty.call(e,o),(()=>{var e={},o="RTLApp:";r.l=(t,i,f,n)=>{if(e[t])e[t].push(i);else{var a,c;if(void 0!==f)for(var l=document.getElementsByTagName("script"),d=0;d{a.onerror=a.onload=null,clearTimeout(p);var h=e[t];if(delete e[t],a.parentNode&&a.parentNode.removeChild(a),h&&h.forEach(y=>y(b)),g)return g(b)},p=setTimeout(s.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=s.bind(null,a.onerror),a.onload=s.bind(null,a.onload),c&&document.head.appendChild(a)}}})(),r.r=e=>{typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{var e;r.tt=()=>(void 0===e&&(e={createScriptURL:o=>o},typeof trustedTypes<"u"&&trustedTypes.createPolicy&&(e=trustedTypes.createPolicy("angular#bundler",e))),e)})(),r.tu=e=>r.tt().createScriptURL(e),r.p="",(()=>{var e={121:0};r.f.j=(i,f)=>{var n=r.o(e,i)?e[i]:void 0;if(0!==n)if(n)f.push(n[2]);else if(121!=i){var a=new Promise((u,s)=>n=e[i]=[u,s]);f.push(n[2]=a);var c=r.p+r.u(i),l=new Error;r.l(c,u=>{if(r.o(e,i)&&(0!==(n=e[i])&&(e[i]=void 0),n)){var s=u&&("load"===u.type?"missing":u.type),p=u&&u.target&&u.target.src;l.message="Loading chunk "+i+" failed.\n("+s+": "+p+")",l.name="ChunkLoadError",l.type=s,l.request=p,n[1](l)}},"chunk-"+i,i)}else e[i]=0},r.O.j=i=>0===e[i];var o=(i,f)=>{var l,d,[n,a,c]=f,u=0;if(n.some(p=>0!==e[p])){for(l in a)r.o(a,l)&&(r.m[l]=a[l]);if(c)var s=c(r)}for(i&&i(f);u.ps__rail-x,.ps--active-y>.ps__rail-y{display:block;background-color:transparent}.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y,.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y{opacity:.6}.ps .ps__rail-x:hover,.ps .ps__rail-y:hover,.ps .ps__rail-x:focus,.ps .ps__rail-y:focus,.ps .ps__rail-x.ps--clicking,.ps .ps__rail-y.ps--clicking{background-color:transparent;opacity:.9}.ps__thumb-x{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,height .2s ease-in-out;-webkit-transition:background-color .2s linear,height .2s ease-in-out;height:4px;bottom:2px;position:absolute}.ps__thumb-y{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,width .2s ease-in-out;-webkit-transition:background-color .2s linear,width .2s ease-in-out;width:4px;right:2px;position:absolute}.ps__rail-x:hover>.ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x,.ps__rail-x.ps--clicking .ps__thumb-x{background-color:#999;height:6px}.ps__rail-y:hover>.ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y,.ps__rail-y.ps--clicking .ps__thumb-y{background-color:#999;width:6px}@supports (-ms-overflow-style: none){.ps{overflow:auto!important}}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.ps{overflow:auto!important}}html{width:100%;height:99%;line-height:1.5;overflow-x:hidden;font-family:Roboto,sans-serif!important;font-size:95%}@media only screen and (max-width:56.25em){html{font-size:90%}}@media only screen and (max-width:37.5em){html{font-size:80%}}body{box-sizing:border-box;height:100%;margin:0;overflow:hidden}.rtl-container{position:absolute;width:100%;height:100%;inset:0;overflow:hidden}.rtl-container .mat-menu-panel .mat-menu-content{padding-top:0;padding-bottom:0}.rtl-container .mat-nested-tree-node-child>.mat-tree-node{padding-left:2.5rem}.mat-sidenav-container .mat-sidenav-content{height:95vh;min-height:95vh}.sidenav{width:16rem!important;height:100%;overflow:hidden!important}span.page-text,.mat-mdc-slide-toggle,.material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:3rem}.mat-mdc-checkbox{min-height:4rem}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:"liga"}.sticky{position:fixed;top:0;z-index:9999}.horizontal-menu{padding:0;z-index:999;position:fixed;top:0;height:4rem;overflow:visible}.inner-sidenav-content{position:relative;inset:0;padding:.75rem}@media only screen and (max-width:56.25em){.inner-sidenav-content{padding:.5rem}}@media only screen and (max-width:37.5em){.inner-sidenav-content{padding:.5rem .25rem}}.top-50{top:50px}*{margin:0;padding:0}.rtl-spinner{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;width:100%;position:fixed;background:#fff;z-index:999999;visibility:visible;opacity:1}.rtl-spinner h4{margin-top:.625rem}.spinner-dialog-panel .mat-mdc-dialog-container .mat-mdc-dialog-surface{background:transparent;box-shadow:none}.mat-mdc-dialog-container .mat-mdc-dialog-surface{overflow:hidden}@media only screen and (max-width:75em){button.mdc-button{min-width:50px}}@media only screen and (max-width:56.25em){button.mdc-button{min-width:40px}}@media only screen and (max-width:37.5em){button.mdc-button{min-width:20px}}button.mdc-button.mat-mdc-button-base{font-size:103%;font-weight:500;font-family:Roboto,sans-serif}button.mdc-button.mat-mdc-button-base.mat-mdc-unelevated-button{margin-bottom:1rem}.mat-mdc-icon-button.mat-mdc-button-base.btn-icon-small{height:40px;padding:.75rem}.mdc-floating-label{will-change:unset!important}.mat-mdc-form-field.mat-form-field-disabled,.mat-mdc-form-field.mat-form-field-disabled .mat-mdc-text-field-wrapper.mdc-text-field--disable,.mat-mdc-form-field.mat-form-field-disabled .mdc-floating-label.mat-mdc-floating-label,.mat-mdc-form-field.mat-form-field-disabled .mat-mdc-input-element.mat-mdc-form-field-input-control,.mat-mdc-slide-toggle .mdc-switch.mdc-switch--disabled{cursor:not-allowed}.padding-gap{padding:.5rem!important}@media only screen and (max-width:56.25em){.padding-gap{padding:.25rem!important}}@media only screen and (max-width:37.5em){.padding-gap{padding:.125rem!important}}.padding-gap-x{padding:0 .5rem!important}@media only screen and (max-width:75em){.padding-gap-x{padding:0 .25rem!important}}@media only screen and (max-width:56.25em){.padding-gap-x{padding:0 .25rem!important}}@media only screen and (max-width:37.5em){.padding-gap-x{padding:0 .125rem!important}}.padding-gap-large{padding:1rem!important}@media only screen and (max-width:75em){.padding-gap-large{padding:2rem!important}}@media only screen and (max-width:56.25em){.padding-gap-large{padding:.25rem!important}}@media only screen and (max-width:37.5em){.padding-gap-large{padding:.125rem!important}}.padding-gap-x-large{padding:0 1rem!important}@media only screen and (max-width:75em){.padding-gap-x-large{padding:0 .5rem!important}}@media only screen and (max-width:56.25em){.padding-gap-x-large{padding:0 .25rem!important}}@media only screen and (max-width:37.5em){.padding-gap-x-large{padding:0 .125rem!important}}.padding-gap-bottom-large{padding-bottom:1rem!important}@media only screen and (max-width:56.25em){.padding-gap-bottom-large{padding-bottom:.5rem!important}}@media only screen and (max-width:37.5em){.padding-gap-bottom-large{padding-bottom:.125rem!important}}.overflow-wrap{overflow-wrap:break-word!important;overflow:hidden}.mat-mdc-card{padding:0!important;overflow:hidden;border-radius:2px!important}.mat-mdc-card-original{padding:1rem!important;border-radius:4px!important}.mat-mdc-form-field-flex .mat-mdc-form-field-icon-suffix,.mat-mdc-form-field-flex .mat-mdc-form-field-icon-prefix{padding-right:1rem}mat-card-content.mat-mdc-card-content:first-child{padding-top:0}.card-content-gap{padding:.6rem 1rem!important;height:100%}@media only screen and (max-width:56.25em){.card-content-gap{padding:.5rem!important}}@media only screen and (max-width:37.5em){.card-content-gap{padding:.25rem .125rem!important}}.routing-tabs-block .mat-mdc-tab-body-wrapper{padding:0!important;min-height:100px}.mat-mdc-card-actions{display:block;margin-bottom:1rem;padding-left:.3333333333rem;padding-right:.3333333333rem}.mat-mdc-card-content,.mat-mdc-card-subtitle,.mat-mdc-card-title{display:block;margin-bottom:1rem}.mat-mdc-card-content form,.mat-mdc-card-subtitle form,.mat-mdc-card-title form{overflow:hidden}.mat-mdc-card-title{font-size:125%}.mat-mdc-card-subtitle{font-size:120%}.mat-mdc-card-header-text{margin:0!important;line-height:1}.mat-form-field-wrapper{width:100%}.mat-mdc-select{margin:0 1rem 0 0}.green{color:#28ca43!important}.yellow{color:#ffbd2e!important}.red{color:#c62828!important}.grey{color:#ccc!important}.mt-1px{margin-top:1px!important}.mt-2px{margin-top:2px!important}.mt-4px{margin-top:4px!important}.mt-5px{margin-top:5px!important}.my-2px{margin:2px 0!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.625rem!important}@media only screen and (max-width:56.25em){.mt-1{margin-top:.5rem!important}}@media only screen and (max-width:37.5em){.mt-1{margin-top:.5rem!important}}.mb-0{margin-bottom:0!important}.mb-2px{margin-bottom:2px!important}.mb-5px{margin-bottom:5px!important}.mb-1{margin-bottom:.625rem!important}@media only screen and (max-width:56.25em){.mb-1{margin-bottom:.5rem!important}}@media only screen and (max-width:37.5em){.mb-1{margin-bottom:.5rem!important}}.mb-6{margin-bottom:3.75rem!important}@media only screen and (max-width:56.25em){.mb-6{margin-bottom:3rem!important}}@media only screen and (max-width:37.5em){.mb-6{margin-bottom:3rem!important}}.ml-0{margin-left:0!important}.ml-half{margin-left:.25rem!important}.ml-1{margin-left:.625rem!important}@media only screen and (max-width:56.25em){.ml-1{margin-left:.25rem!important}}@media only screen and (max-width:37.5em){.ml-1{margin-left:2px!important}}.ml-minus-1{margin-left:-.625rem!important}.mr-0{margin-right:0!important}.mr-3px{margin-right:3px!important}.mr-5px{margin-right:5px!important}.mr-1{margin-right:.625rem!important}@media only screen and (max-width:56.25em){.mr-1{margin-right:.25rem!important}}@media only screen and (max-width:37.5em){.mr-1{margin-right:2px!important}}.mx-1{margin:0 .625rem!important}@media only screen and (max-width:56.25em){.mx-1{margin:0 .25rem!important}}@media only screen and (max-width:37.5em){.mx-1{margin:0 2px!important}}.my-1{margin:.625rem 0!important}@media only screen and (max-width:56.25em){.my-1{margin:.5rem 0!important}}@media only screen and (max-width:37.5em){.my-1{margin:.5rem 0!important}}.m-1{margin:.625rem!important}@media only screen and (max-width:56.25em){.m-1{margin:.5rem!important}}@media only screen and (max-width:37.5em){.m-1{margin:.5rem!important}}.mt-2{margin-top:1.25rem!important}@media only screen and (max-width:56.25em){.mt-2{margin-top:1rem!important}}@media only screen and (max-width:37.5em){.mt-2{margin-top:1rem!important}}.mt-3{margin-top:2rem!important}@media only screen and (max-width:56.25em){.mt-3{margin-top:1.5rem!important}}@media only screen and (max-width:37.5em){.mt-3{margin-top:1.5rem!important}}.mt-4{margin-top:2.5rem!important}@media only screen and (max-width:56.25em){.mt-4{margin-top:2rem!important}}@media only screen and (max-width:37.5em){.mt-4{margin-top:2rem!important}}.mt-6{margin-top:3.75rem!important}@media only screen and (max-width:56.25em){.mt-6{margin-top:3rem!important}}@media only screen and (max-width:37.5em){.mt-6{margin-top:3rem!important}}.mt-minus-1{margin-top:-.625rem!important}@media only screen and (max-width:56.25em){.mt-minus-1{margin-top:-.5rem!important}}@media only screen and (max-width:37.5em){.mt-minus-1{margin-top:-.5rem!important}}.mt-minus-2{margin-top:-1.25rem!important}@media only screen and (max-width:56.25em){.mt-minus-2{margin-top:-1rem!important}}@media only screen and (max-width:37.5em){.mt-minus-2{margin-top:-1rem!important}}.mb-2{margin-bottom:1rem!important}@media only screen and (max-width:56.25em){.mb-2{margin-bottom:1rem!important}}@media only screen and (max-width:37.5em){.mb-2{margin-bottom:1rem!important}}.mb-3{margin-bottom:2rem!important}@media only screen and (max-width:56.25em){.mb-3{margin-bottom:1.5rem!important}}@media only screen and (max-width:37.5em){.mb-3{margin-bottom:1.5rem!important}}.mb-4{margin-bottom:2.5rem!important}@media only screen and (max-width:56.25em){.mb-4{margin-bottom:1.25rem!important}}@media only screen and (max-width:37.5em){.mb-4{margin-bottom:1.25rem!important}}.ml-2{margin-left:1.25rem!important}@media only screen and (max-width:56.25em){.ml-2{margin-left:.5rem!important}}@media only screen and (max-width:37.5em){.ml-2{margin-left:.25rem!important}}.mr-2{margin-right:1.25rem!important}@media only screen and (max-width:56.25em){.mr-2{margin-right:.5rem!important}}@media only screen and (max-width:37.5em){.mr-2{margin-right:.25rem!important}}.ml-4{margin-left:2.5rem!important}@media only screen and (max-width:56.25em){.ml-4{margin-left:1rem!important}}@media only screen and (max-width:37.5em){.ml-4{margin-left:.5rem!important}}.ml-5{margin-left:3rem!important}@media only screen and (max-width:56.25em){.ml-5{margin-left:1.25rem!important}}@media only screen and (max-width:37.5em){.ml-5{margin-left:.625rem!important}}.mr-4{margin-right:2.5rem!important}@media only screen and (max-width:56.25em){.mr-4{margin-right:1rem!important}}@media only screen and (max-width:37.5em){.mr-4{margin-right:.5rem!important}}.mr-5{margin-right:3rem!important}@media only screen and (max-width:56.25em){.mr-5{margin-right:1.25rem!important}}@media only screen and (max-width:37.5em){.mr-5{margin-right:.625rem!important}}.mr-6{margin-right:3.75rem!important}@media only screen and (max-width:56.25em){.mr-6{margin-right:2rem!important}}@media only screen and (max-width:37.5em){.mr-6{margin-right:1.25rem!important}}.mx-2{margin:0 1.25rem!important}@media only screen and (max-width:56.25em){.mx-2{margin:0 .5rem!important}}@media only screen and (max-width:37.5em){.mx-2{margin:0 .25rem!important}}.my-0{margin-top:0!important;margin-bottom:0!important}.my-2{margin:1.25rem 0!important}@media only screen and (max-width:56.25em){.my-2{margin:1rem 0!important}}@media only screen and (max-width:37.5em){.my-2{margin:1rem 0!important}}.my-3{margin:2rem 0!important}@media only screen and (max-width:56.25em){.my-3{margin:1.5rem 0!important}}@media only screen and (max-width:37.5em){.my-3{margin:1.5rem 0!important}}.my-4{margin:2.5rem 0!important}@media only screen and (max-width:56.25em){.my-4{margin:1.25rem 0!important}}@media only screen and (max-width:37.5em){.my-4{margin:1.25rem 0!important}}.m-2{margin:1.25rem!important}@media only screen and (max-width:56.25em){.m-2{margin:1rem!important}}@media only screen and (max-width:37.5em){.m-2{margin:1rem!important}}.pt-1{padding-top:.625rem!important}@media only screen and (max-width:56.25em){.pt-1{padding-top:.5rem!important}}@media only screen and (max-width:37.5em){.pt-1{padding-top:.5rem!important}}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.625rem!important}@media only screen and (max-width:56.25em){.pb-1{padding-bottom:.5rem!important}}@media only screen and (max-width:37.5em){.pb-1{padding-bottom:.5rem!important}}.pl-5px{padding-left:5px!important}@media only screen and (max-width:56.25em){.pl-5px{padding-left:.25rem!important}}@media only screen and (max-width:37.5em){.pl-5px{padding-left:3px!important}}.pl-1{padding-left:.625rem!important}@media only screen and (max-width:56.25em){.pl-1{padding-left:.25rem!important}}@media only screen and (max-width:37.5em){.pl-1{padding-left:2px!important}}.pl-15px{padding-left:1rem!important}@media only screen and (max-width:56.25em){.pl-15px{padding-left:.3333333333rem!important}}@media only screen and (max-width:37.5em){.pl-15px{padding-left:.25rem!important}}.pr-0{padding-right:0!important}.pr-1{padding-right:.625rem!important}@media only screen and (max-width:56.25em){.pr-1{padding-right:.25rem!important}}@media only screen and (max-width:37.5em){.pr-1{padding-right:2px!important}}.pr-3{padding-right:2rem!important}@media only screen and (max-width:56.25em){.pr-3{padding-right:.75rem!important}}@media only screen and (max-width:37.5em){.pr-3{padding-right:.3333333333rem!important}}.pr-4{padding-right:2.5rem!important}@media only screen and (max-width:56.25em){.pr-4{padding-right:1rem!important}}@media only screen and (max-width:37.5em){.pr-4{padding-right:.5rem!important}}.pr-4px{padding-right:.25rem!important}.pr-6px{padding-right:.3333333333rem!important}.p-0{padding:0!important}.p-5px{padding:5px!important}.pl-0{padding-left:0!important}.px-1{padding:0 .625rem!important}@media only screen and (max-width:56.25em){.px-1{padding:0 .25rem!important}}@media only screen and (max-width:37.5em){.px-1{padding:0 2px!important}}.py-0{padding:.625rem 0!important}@media only screen and (max-width:56.25em){.py-0{padding:.5rem 0!important}}@media only screen and (max-width:37.5em){.py-0{padding:.5rem 0!important}}.py-1{padding:.625rem 0!important}@media only screen and (max-width:56.25em){.py-1{padding:.5rem 0!important}}@media only screen and (max-width:37.5em){.py-1{padding:.5rem 0!important}}.p-1{padding:.625rem!important}@media only screen and (max-width:56.25em){.p-1{padding:.5rem!important}}@media only screen and (max-width:37.5em){.p-1{padding:.5rem!important}}.p-16{padding:1rem!important}@media only screen and (max-width:56.25em){.p-16{padding:.5rem!important}}@media only screen and (max-width:37.5em){.p-16{padding:.25rem!important}}.pt-2{padding-top:1.25rem!important}@media only screen and (max-width:56.25em){.pt-2{padding-top:1rem!important}}@media only screen and (max-width:37.5em){.pt-2{padding-top:1rem!important}}.pt-3{padding-top:2rem!important}@media only screen and (max-width:56.25em){.pt-3{padding-top:1.5rem!important}}@media only screen and (max-width:37.5em){.pt-3{padding-top:1.5rem!important}}.pb-2{padding-bottom:1.25rem!important}@media only screen and (max-width:56.25em){.pb-2{padding-bottom:1rem!important}}@media only screen and (max-width:37.5em){.pb-2{padding-bottom:1rem!important}}.pl-2{padding-left:1.25rem!important}@media only screen and (max-width:56.25em){.pl-2{padding-left:.5rem!important}}@media only screen and (max-width:37.5em){.pl-2{padding-left:.25rem!important}}.pt-4{padding-top:1.25rem!important}@media only screen and (max-width:56.25em){.pt-4{padding-top:1.5rem!important}}@media only screen and (max-width:37.5em){.pt-4{padding-top:1.5rem!important}}.pl-3{padding-left:2rem!important}@media only screen and (max-width:56.25em){.pl-3{padding-left:.75rem!important}}@media only screen and (max-width:37.5em){.pl-3{padding-left:.3333333333rem!important}}.pl-4{padding-left:2.5rem!important}@media only screen and (max-width:56.25em){.pl-4{padding-left:1rem!important}}@media only screen and (max-width:37.5em){.pl-4{padding-left:.5rem!important}}.pr-2{padding-right:1.25rem!important}@media only screen and (max-width:56.25em){.pr-2{padding-right:.5rem!important}}@media only screen and (max-width:37.5em){.pr-2{padding-right:.25rem!important}}.pr-5{padding-right:2.5rem!important}@media only screen and (max-width:56.25em){.pr-5{padding-right:1rem!important}}@media only screen and (max-width:37.5em){.pr-5{padding-right:.5rem!important}}.px-2{padding:0 1.25rem!important}@media only screen and (max-width:56.25em){.px-2{padding:0 .5rem!important}}@media only screen and (max-width:37.5em){.px-2{padding:0 .25rem!important}}.px-3{padding:0 2rem!important}@media only screen and (max-width:56.25em){.px-3{padding:0 .75rem!important}}@media only screen and (max-width:37.5em){.px-3{padding:0 .3333333333rem!important}}.px-4{padding:0 2.5rem!important}@media only screen and (max-width:56.25em){.px-4{padding:0 1rem!important}}@media only screen and (max-width:37.5em){.px-4{padding:0 .5rem!important}}.py-2{padding:1.25rem 0!important}@media only screen and (max-width:56.25em){.py-2{padding:1rem 0!important}}@media only screen and (max-width:37.5em){.py-2{padding:1rem 0!important}}.p-2{padding:1.25rem!important}@media only screen and (max-width:56.25em){.p-2{padding:1rem!important}}@media only screen and (max-width:37.5em){.p-2{padding:1rem!important}}.p-24{padding:1.5rem!important}@media only screen and (max-width:56.25em){.p-24{padding:.75rem!important}}@media only screen and (max-width:37.5em){.p-24{padding:.625rem!important}}.ps-2{padding-left:1.25rem!important}.m-1px{margin:1px!important}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-y-hidden{overflow-y:hidden!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-auto{overflow:auto}.mat-footer-row .mat-footer-cell{border-bottom:none!important}.mat-row:last-child .mdc-data-table__cell{border-bottom:none!important}.mat-mdc-form-field-infix{width:14rem!important}.flex-ellipsis{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-right:2rem}.mat-list,.mat-list .mat-list-item .mat-list-item-content,.mat-nav-list,.mat-selection-list{padding:0!important}.inline-spinner{display:inline-flex!important;top:5px!important}.top-minus-5px{position:relative;top:-5px}.top-minus-25px{position:relative;top:-1.5rem;margin-bottom:-1.5rem!important}.top-minus-30px{position:relative;top:-2rem}.cursor-pointer:hover{cursor:pointer!important}.cursor-default:hover{cursor:default!important}.cursor-not-allowed:hover{cursor:not-allowed!important}.inline-flex{display:inline-flex!important}.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.op-image{box-shadow:0 0 2px #ccc;border:2px solid;border-color:transparent;cursor:pointer;transition:.2s}.settings-icon{position:fixed;top:30%;right:0;width:.25rem;height:2.5rem;opacity:.6;cursor:pointer;z-index:999999}.test-banner{padding-top:2px;background-color:#fc7783;text-transform:uppercase;border-radius:2px}.currency-icon.currency-icon-small{max-width:.8375rem;max-height:.8375rem}.currency-icon.currency-icon-medium{max-width:1rem;max-height:1rem}.currency-icon.currency-icon-large{max-width:1.125rem;max-height:1.125rem}.currency-icon.currency-icon-x-large{max-width:1.25rem;max-height:1.25rem}.fa-icon-small,.top-icon-small{min-width:1.25rem}.fa-icon-small svg,.top-icon-small svg{min-width:1.25rem}.botlz-icon-sm{min-width:1rem;width:1rem;max-width:1rem}.copy-icon{position:relative;top:.25rem}.copy-icon-smaller{position:relative;top:2px}.top-5px{position:relative;top:5px}.animate-settings{animation:animate-settings 10s linear infinite}@keyframes animate-settings{to{transform:rotate(360deg)}}.mt-minus-5{position:relative;margin-top:-5px}.color-white{color:#fff!important}.custom-card{padding:0 0 .5rem!important}.not-found-box{min-width:50%}.w-100{width:100%!important}.w-96{width:96%!important}.w-84{width:84%!important}.h-100{height:100%!important}.h-93{height:93%!important}.h-40{height:400px!important}.h-46{height:460px!important}.h-50{height:500px!important}.h-10{height:100px!important}.h-4{height:12rem!important}.h-35px{height:35px!important}a{outline:none;text-decoration:none;text-decoration:underline}.mat-tree{width:100%}.mat-tree-node,.mat-nested-tree-node-parent{min-height:3rem;height:3rem;padding:0 .75rem;cursor:pointer}@media only screen and (max-width:37.5em){.mat-tree-node,.mat-nested-tree-node-parent{min-height:4rem;height:4rem}}.mat-tree-node:focus,.mat-tree-node:active,.mat-nested-tree-node:focus,.mat-nested-tree-node:active,.mat-nested-tree-node-parent:focus,.mat-nested-tree-node-parent:active,.mat-tree-node span:focus,.mat-tree-node span:active,.mat-nested-tree-node-parent span:focus,.mat-nested-tree-node-parent span:active,.mat-tree-node div:focus,.mat-tree-node div:active,.mat-nested-tree-node-parent div:focus,.mat-nested-tree-node-parent div:active,.mat-tree-node .mat-icon:focus,.mat-tree-node .mat-icon:active,.mat-nested-tree-node-parent .mat-icon:focus,.mat-nested-tree-node-parent .mat-icon:active{outline:none}.lnd-info{height:6rem}.flex-wrap{flex-wrap:wrap!important}.word-break{word-break:break-all!important}.font-bold-500{font-weight:500!important}.font-bold-700{font-weight:700!important}.pubkey-info-top{flex-wrap:wrap;margin-top:1px;min-height:1rem;cursor:pointer;display:flex;align-content:center}.logo{font-weight:700;letter-spacing:1px}.fa-icon-regular{min-width:2.5rem;width:2.5rem;max-width:2.5rem}.icon-large{margin-left:-100%}.icon-small{height:1.25rem!important;width:1.25rem!important}.icon-smaller{height:.625rem!important;width:.625rem!important}.mat-icon-36{width:2.25rem!important;height:2.25rem!important}.mat-mdc-select.multi-node-select{width:84%}.page-title-container{font-size:110%;padding:0 .75rem;margin-bottom:.5rem}@media only screen and (max-width:56.25em){.page-title-container{padding:0 .5rem;margin:.5rem 0}}@media only screen and (max-width:37.5em){.page-title-container{padding:0 .5rem;margin:.5rem 0}}table{width:100%}th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 1rem}@media only screen and (max-width:75em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .5rem}}@media only screen and (max-width:56.25em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .25rem}}@media only screen and (max-width:37.5em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .125rem}}th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:1rem}@media only screen and (max-width:75em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.5rem!important}}@media only screen and (max-width:56.25em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.25rem!important}}@media only screen and (max-width:37.5em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.125rem!important}}th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:1rem}@media only screen and (max-width:75em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.5rem!important}}@media only screen and (max-width:56.25em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.25rem!important}}@media only screen and (max-width:37.5em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.125rem!important}}.dot{display:inline-flex;width:.8rem;height:.8rem;border-radius:.8rem;margin:.25rem 0 0}.dot.tiny-dot{width:.5rem;height:.5rem;border-radius:.5rem;margin:0 .3333333333rem 1px 0}.dot.green{background-color:#28ca43}.dot.yellow{background-color:#ffbd2e}.dot.red{background-color:#c62828}.dot.grey{background-color:#ccc}.font-size-80{font-size:80%!important}.font-size-90{font-size:90%!important}.font-size-120{font-size:120%!important}.font-size-200{font-size:200%!important}.font-size-300{font-size:300%!important}.font-weight-500{font-weight:500!important}.font-weight-900{font-weight:900!important}.pre-wrap{white-space:pre-wrap!important}.display-none{display:none!important}.mat-divider.mat-divider-horizontal.mat-divider-inset{margin-left:1rem}.mat-vertical-stepper-header{padding:.625rem .625rem .625rem .5rem!important}.mat-vertical-stepper-content{margin:0 .5rem}.ellipsis-child{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.blinker{animation:blink-animation 1s steps(5,start) infinite;-webkit-animation:blink-animation 1s steps(5,start) infinite}@keyframes blink-animation{to{visibility:hidden}}.mat-progress-bar.dashboard-progress-bar{height:6px;min-height:6px}.alert{margin-bottom:.625rem;padding:.3333333333rem .625rem;border-radius:2px}.dashboard-vert-menu.mat-menu-panel{min-height:3rem}.mat-mdc-tab .mdc-tab__content{overflow:hidden!important}.mdc-tab__text-label{opacity:1;padding:0;min-width:11rem}@media only screen and (max-width:56.25em){.mdc-tab__text-label{min-width:auto}}@media only screen and (max-width:37.5em){.mdc-tab__text-label{min-width:auto}}.dashboard-card{margin-bottom:0}.dashboard-card .mat-mdc-card-header{padding:16px 0 0 16px}.dashboard-card .mat-mdc-card-content.dashboard-card-content{margin-bottom:0}.dashboard-tabs-group.mat-mdc-tab-group{max-width:91%}.dashboard-tabs-group .mat-mdc-tab-list{width:100%}.dashboard-tabs-group .mdc-tab{margin:0;padding:0 1.5rem;display:flex;flex:1 0 auto;justify-content:center}.dashboard-tabs-group.mat-mdc-tab-group .mat-mdc-tab .mdc-tab__content .mdc-tab__text-label{min-width:5.5rem}.node-grid-tile.mat-grid-tile .mat-figure{align-items:start}.mat-vertical-content-container{margin-left:1.25rem!important}.xs-scroll-y{overflow-y:scroll;max-height:600px}.h-2{min-height:1.25rem!important}.border-valid{border:1px solid #28ca43!important}.border-invalid{border:1px solid #c62828!important}.icon-green{fill:#28ca43}.visible{visibility:visible!important}.hidden{visibility:hidden!important}.h-5{height:50px}.btn-sticky-container{height:0;opacity:.5}.btn-sticky-container .mat-icon{animation:scrollDownAnimation 2s infinite}@keyframes scrollDownAnimation{0%{transform:translateY(0)}10%{transform:translateY(-20%)}20%{transform:translateY(20%)}30%{transform:translateY(-20%)}40%{transform:translateY(20%)}50%{transform:translateY(0)}}.mat-form-field-appearance-legacy.mat-form-field-disabled input,.mat-form-field-appearance-legacy.mat-form-field-disabled mat-select,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-trigger,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-value,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-arro-wrapper,.mat-form-field-appearance-legacy.mat-form-field-disabled textarea,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-infix{cursor:not-allowed}.mat-mdc-tooltip-panel{max-width:25rem!important}.ngx-charts-tooltip-content.type-tooltip{background:#323232e6!important}.ngx-charts-tooltip-content .tooltip-caret{border-top-color:#323232e6!important}.mat-mdc-tooltip-panel .mdc-tooltip__surface{min-width:10rem;max-width:unset;text-align:start}.go-to-link{text-decoration:underline;font-weight:500;cursor:pointer}.mat-mdc-card.dashboard-card{padding:0 .75rem!important}@media only screen and (max-width:56.25em){.mat-mdc-card.dashboard-card{padding:.25rem .625rem!important}}@media only screen and (max-width:37.5em){.mat-mdc-card.dashboard-card{padding:.25rem .5rem!important}}.mat-mdc-card.dashboard-card.p-0{padding:0!important}.mat-mdc-card.dashboard-card .mat-mdc-card-header-text{width:100%}.mat-progress-bar{min-height:4px}.dashboard-card-content{text-align:left}.ellipsis-parent{display:flex}.mat-column-actions{min-height:3.25rem}@media only screen and (max-width:37.5em){.mat-column-actions{min-height:4.1rem}}.mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 1rem}@media only screen and (max-width:56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 .5rem}}@media only screen and (max-width:37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 .25rem}}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header .mat-expansion-indicator{margin-top:-5px}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 1.5rem 1rem}@media only screen and (max-width:56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 .5rem .5rem}}@media only screen and (max-width:37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 .25rem .125rem}}@media only screen and (max-width:56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-title,.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-description{margin-right:.5rem}}@media only screen and (max-width:37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-title,.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-description{margin-right:.25rem}}.flex-9{flex:1 1 9%}.flex-17{flex:1 1 17%}.flex-20{flex:1 1 20%}.flex-25{flex:1 1 25%}.flex-30{flex:1 1 30%}.flex-35{flex:1 1 35%}.flex-40{flex:1 1 40%}.flex-48{flex:1 1 48%}.flex-50{flex:1 1 50%}.flex-70{flex:1 1 70%}.flex-83{flex:1 1 83%}.flex-91{flex:1 1 91%}.flex-100{flex:1 1 100%}.align-center-start{display:flex;justify-content:center;align-items:flex-start}.align-center-center{display:flex;justify-content:center;align-items:center}html{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12)}html{--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}html{--mat-option-selected-state-label-text-color: #5e4ea5;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}html{--mat-optgroup-label-text-color: rgba(0, 0, 0, .87)}html{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #5e4ea5;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #5e4ea5;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}html{--mat-card-elevated-container-shape: 4px;--mat-card-outlined-container-shape: 4px;--mat-card-filled-container-shape: 4px;--mat-card-outlined-outline-width: 1px}html{--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12)}html{--mat-progress-bar-active-indicator-height: 4px;--mat-progress-bar-track-height: 4px;--mat-progress-bar-track-shape: 0}.mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #5e4ea5;--mat-progress-bar-track-color: rgba(94, 78, 165, .25)}.mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}html{--mat-tooltip-container-shape: 4px;--mat-tooltip-supporting-text-line-height: 16px}html{--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white}html{--mat-form-field-filled-active-indicator-height: 1px;--mat-form-field-filled-focus-active-indicator-height: 2px;--mat-form-field-filled-container-shape: 4px;--mat-form-field-outlined-outline-width: 1px;--mat-form-field-outlined-focus-outline-width: 2px;--mat-form-field-outlined-container-shape: 4px}html{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-filled-caret-color: #5e4ea5;--mat-form-field-filled-focus-active-indicator-color: #5e4ea5;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-outlined-caret-color: #5e4ea5;--mat-form-field-outlined-focus-outline-color: #5e4ea5;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020}.mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}html{--mat-form-field-container-height: 56px;--mat-form-field-filled-label-display: block;--mat-form-field-container-vertical-padding: 16px;--mat-form-field-filled-with-label-container-padding-top: 24px;--mat-form-field-filled-with-label-container-padding-bottom: 8px}html{--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12)}html{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #5e4ea5;--mat-select-invalid-arrow-color: #b00020}.mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}html{--mat-select-arrow-transform: translateY(-8px)}html{--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12)}html{--mat-autocomplete-background-color: white}html{--mat-dialog-container-shape: 4px;--mat-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px}html{--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54)}.mat-mdc-standard-chip{--mat-chip-container-shape-radius: 16px;--mat-chip-disabled-container-opacity: .4;--mat-chip-disabled-outline-color: transparent;--mat-chip-flat-selected-outline-width: 0;--mat-chip-focus-outline-color: transparent;--mat-chip-hover-state-layer-opacity: .04;--mat-chip-outline-color: transparent;--mat-chip-outline-width: 0;--mat-chip-selected-hover-state-layer-opacity: .04;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-focus-state-layer-opacity: 0;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-with-avatar-avatar-shape-radius: 14px;--mat-chip-with-avatar-avatar-size: 28px;--mat-chip-with-avatar-disabled-avatar-opacity: 1;--mat-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-with-icon-icon-size: 18px;--mat-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1}.mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #5e4ea5;--mat-chip-elevated-disabled-container-color: #5e4ea5;--mat-chip-elevated-selected-container-color: #5e4ea5;--mat-chip-flat-disabled-selected-container-color: #5e4ea5;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.mat-mdc-chip.mat-mdc-standard-chip{--mat-chip-container-height: 32px}html{--mat-slide-toggle-disabled-handle-opacity: .38;--mat-slide-toggle-disabled-selected-handle-opacity: .38;--mat-slide-toggle-disabled-selected-icon-opacity: .38;--mat-slide-toggle-disabled-track-opacity: .12;--mat-slide-toggle-disabled-unselected-handle-opacity: .38;--mat-slide-toggle-disabled-unselected-icon-opacity: .38;--mat-slide-toggle-disabled-unselected-track-outline-color: transparent;--mat-slide-toggle-disabled-unselected-track-outline-width: 1px;--mat-slide-toggle-handle-height: 20px;--mat-slide-toggle-handle-shape: 10px;--mat-slide-toggle-handle-width: 20px;--mat-slide-toggle-hidden-track-opacity: 1;--mat-slide-toggle-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-slide-toggle-pressed-handle-size: 20px;--mat-slide-toggle-selected-focus-state-layer-opacity: .12;--mat-slide-toggle-selected-handle-horizontal-margin: 0;--mat-slide-toggle-selected-handle-size: 20px;--mat-slide-toggle-selected-hover-state-layer-opacity: .04;--mat-slide-toggle-selected-icon-size: 18px;--mat-slide-toggle-selected-pressed-handle-horizontal-margin: 0;--mat-slide-toggle-selected-pressed-state-layer-opacity: .12;--mat-slide-toggle-selected-track-outline-color: transparent;--mat-slide-toggle-selected-track-outline-width: 1px;--mat-slide-toggle-selected-with-icon-handle-horizontal-margin: 0;--mat-slide-toggle-track-height: 14px;--mat-slide-toggle-track-outline-color: transparent;--mat-slide-toggle-track-outline-width: 1px;--mat-slide-toggle-track-shape: 7px;--mat-slide-toggle-track-width: 36px;--mat-slide-toggle-unselected-focus-state-layer-opacity: .12;--mat-slide-toggle-unselected-handle-horizontal-margin: 0;--mat-slide-toggle-unselected-handle-size: 20px;--mat-slide-toggle-unselected-hover-state-layer-opacity: .12;--mat-slide-toggle-unselected-icon-size: 18px;--mat-slide-toggle-unselected-pressed-handle-horizontal-margin: 0;--mat-slide-toggle-unselected-pressed-state-layer-opacity: .1;--mat-slide-toggle-unselected-with-icon-handle-horizontal-margin: 0;--mat-slide-toggle-visible-track-opacity: 1;--mat-slide-toggle-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-slide-toggle-with-icon-handle-size: 20px;--mat-slide-toggle-touch-target-size: 48px}html{--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-handle-color: #5e4ea5;--mat-slide-toggle-selected-hover-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-pressed-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-focus-handle-color: #5e4ea5;--mat-slide-toggle-selected-hover-handle-color: #5e4ea5;--mat-slide-toggle-selected-pressed-handle-color: #5e4ea5;--mat-slide-toggle-selected-focus-track-color: #8e83c0;--mat-slide-toggle-selected-hover-track-color: #8e83c0;--mat-slide-toggle-selected-pressed-track-color: #8e83c0;--mat-slide-toggle-selected-track-color: #8e83c0;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12)}.mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}html{--mat-slide-toggle-state-layer-size: 40px;--mat-slide-toggle-touch-target-display: block}html{--mat-radio-disabled-selected-icon-opacity: .38;--mat-radio-disabled-unselected-icon-opacity: .38;--mat-radio-state-layer-size: 40px;--mat-radio-touch-target-size: 48px}.mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #5e4ea5;--mat-radio-selected-hover-icon-color: #5e4ea5;--mat-radio-selected-icon-color: #5e4ea5;--mat-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}html{--mat-radio-state-layer-size: 40px;--mat-radio-touch-target-display: block}html{--mat-slider-active-track-height: 6px;--mat-slider-active-track-shape: 9999px;--mat-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-handle-height: 20px;--mat-slider-handle-shape: 50%;--mat-slider-handle-width: 20px;--mat-slider-inactive-track-height: 4px;--mat-slider-inactive-track-shape: 9999px;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-container-transform: translateX(-50%);--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-width: auto;--mat-slider-with-overlap-handle-outline-width: 1px;--mat-slider-with-tick-marks-active-container-opacity: .6;--mat-slider-with-tick-marks-container-shape: 50%;--mat-slider-with-tick-marks-container-size: 2px;--mat-slider-with-tick-marks-inactive-container-opacity: .6;--mat-slider-value-indicator-transform-origin: bottom}html{--mat-slider-active-track-color: #5e4ea5;--mat-slider-focus-handle-color: #5e4ea5;--mat-slider-handle-color: #5e4ea5;--mat-slider-hover-handle-color: #5e4ea5;--mat-slider-focus-state-layer-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #5e4ea5 4%, transparent);--mat-slider-inactive-track-color: #5e4ea5;--mat-slider-ripple-color: #5e4ea5;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #5e4ea5;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87)}.mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}html{--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12)}html{--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12)}html{--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mat-list-list-item-container-shape: 0;--mat-list-list-item-leading-avatar-shape: 50%;--mat-list-list-item-container-color: transparent;--mat-list-list-item-selected-container-color: transparent;--mat-list-list-item-leading-avatar-color: transparent;--mat-list-list-item-leading-icon-size: 24px;--mat-list-list-item-leading-avatar-size: 40px;--mat-list-list-item-trailing-icon-size: 24px;--mat-list-list-item-disabled-state-layer-color: transparent;--mat-list-list-item-disabled-state-layer-opacity: 0;--mat-list-list-item-disabled-label-text-opacity: .38;--mat-list-list-item-disabled-leading-icon-opacity: .38;--mat-list-list-item-disabled-trailing-icon-opacity: .38}html{--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12}.mdc-list-item__start,.mdc-list-item__end{--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #5e4ea5;--mat-radio-selected-hover-icon-color: #5e4ea5;--mat-radio-selected-icon-color: #5e4ea5;--mat-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.mat-accent .mdc-list-item__start,.mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.mat-warn .mdc-list-item__start,.mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #5e4ea5;--mat-checkbox-selected-hover-icon-color: #5e4ea5;--mat-checkbox-selected-icon-color: #5e4ea5;--mat-checkbox-selected-pressed-icon-color: #5e4ea5;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #5e4ea5;--mat-checkbox-selected-hover-state-layer-color: #5e4ea5;--mat-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#5e4ea5}.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}html{--mat-list-list-item-leading-icon-start-space: 16px;--mat-list-list-item-leading-icon-end-space: 32px;--mat-list-list-item-one-line-container-height: 48px;--mat-list-list-item-two-line-container-height: 64px;--mat-list-list-item-three-line-container-height: 88px}.mdc-list-item__start,.mdc-list-item__end{--mat-radio-state-layer-size: 40px;--mat-radio-touch-target-display: block}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line{height:56px}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines{height:72px}html{--mat-paginator-page-size-select-width: 84px;--mat-paginator-page-size-select-touch-target-height: 48px}html{--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}html{--mat-paginator-container-size: 56px;--mat-paginator-form-field-container-height: 40px;--mat-paginator-form-field-container-vertical-padding: 8px;--mat-paginator-touch-target-display: block}html{--mat-tab-container-height: 48px;--mat-tab-divider-color: transparent;--mat-tab-divider-height: 0;--mat-tab-active-indicator-height: 2px;--mat-tab-active-indicator-shape: 0}.mat-mdc-tab-group,.mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #5e4ea5;--mat-tab-active-ripple-color: #5e4ea5;--mat-tab-inactive-ripple-color: #5e4ea5;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #5e4ea5;--mat-tab-active-hover-label-text-color: #5e4ea5;--mat-tab-active-focus-indicator-color: #5e4ea5;--mat-tab-active-hover-indicator-color: #5e4ea5;--mat-tab-active-indicator-color: #5e4ea5}.mat-mdc-tab-group.mat-accent,.mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.mat-mdc-tab-group.mat-warn,.mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.mat-mdc-tab-group.mat-background-primary,.mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #5e4ea5;--mat-tab-foreground-color: #ffffff}.mat-mdc-tab-group.mat-background-accent,.mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.mat-mdc-tab-group.mat-background-warn,.mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.mat-mdc-tab-header{--mat-tab-container-height: 48px}html{--mat-checkbox-disabled-selected-checkmark-color: white;--mat-checkbox-selected-focus-state-layer-opacity: .12;--mat-checkbox-selected-hover-state-layer-opacity: .04;--mat-checkbox-selected-pressed-state-layer-opacity: .12;--mat-checkbox-unselected-focus-state-layer-opacity: .12;--mat-checkbox-unselected-hover-state-layer-opacity: .04;--mat-checkbox-unselected-pressed-state-layer-opacity: .12;--mat-checkbox-touch-target-size: 48px}html{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #5e4ea5;--mat-checkbox-selected-hover-icon-color: #5e4ea5;--mat-checkbox-selected-icon-color: #5e4ea5;--mat-checkbox-selected-pressed-icon-color: #5e4ea5;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #5e4ea5;--mat-checkbox-selected-hover-state-layer-color: #5e4ea5;--mat-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}html{--mat-checkbox-touch-target-display: block;--mat-checkbox-state-layer-size: 40px}html{--mat-button-filled-container-shape: 4px;--mat-button-filled-horizontal-padding: 16px;--mat-button-filled-icon-offset: -4px;--mat-button-filled-icon-spacing: 8px;--mat-button-filled-touch-target-size: 48px;--mat-button-outlined-container-shape: 4px;--mat-button-outlined-horizontal-padding: 15px;--mat-button-outlined-icon-offset: -4px;--mat-button-outlined-icon-spacing: 8px;--mat-button-outlined-keep-touch-target: false;--mat-button-outlined-outline-width: 1px;--mat-button-outlined-touch-target-size: 48px;--mat-button-protected-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-button-protected-container-shape: 4px;--mat-button-protected-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-button-protected-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-button-protected-horizontal-padding: 16px;--mat-button-protected-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-button-protected-icon-offset: -4px;--mat-button-protected-icon-spacing: 8px;--mat-button-protected-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-button-protected-touch-target-size: 48px;--mat-button-text-container-shape: 4px;--mat-button-text-horizontal-padding: 8px;--mat-button-text-icon-offset: 0;--mat-button-text-icon-spacing: 8px;--mat-button-text-with-icon-horizontal-padding: 8px;--mat-button-text-touch-target-size: 48px;--mat-button-tonal-container-shape: 4px;--mat-button-tonal-horizontal-padding: 16px;--mat-button-tonal-icon-offset: -4px;--mat-button-tonal-icon-spacing: 8px;--mat-button-tonal-touch-target-size: 48px}html{--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-button.mat-primary,.mat-mdc-unelevated-button.mat-primary,.mat-mdc-raised-button.mat-primary,.mat-mdc-outlined-button.mat-primary,.mat-tonal-button.mat-primary{--mat-button-filled-container-color: #5e4ea5;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #5e4ea5;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-button-outlined-state-layer-color: #5e4ea5;--mat-button-protected-container-color: #5e4ea5;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #5e4ea5;--mat-button-text-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-button-text-state-layer-color: #5e4ea5;--mat-button-tonal-container-color: #5e4ea5;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.mat-mdc-button.mat-accent,.mat-mdc-unelevated-button.mat-accent,.mat-mdc-raised-button.mat-accent,.mat-mdc-outlined-button.mat-accent,.mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.mat-mdc-button.mat-warn,.mat-mdc-unelevated-button.mat-warn,.mat-mdc-raised-button.mat-warn,.mat-mdc-outlined-button.mat-warn,.mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}html{--mat-button-filled-container-height: 36px;--mat-button-filled-touch-target-display: block;--mat-button-outlined-container-height: 36px;--mat-button-outlined-touch-target-display: block;--mat-button-protected-container-height: 36px;--mat-button-protected-touch-target-display: block;--mat-button-text-container-height: 36px;--mat-button-text-touch-target-display: block;--mat-button-tonal-container-height: 36px;--mat-button-tonal-touch-target-display: block}html{--mat-icon-button-icon-size: 24px;--mat-icon-button-container-shape: 50%;--mat-icon-button-touch-target-size: 48px}html{--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #5e4ea5;--mat-icon-button-state-layer-color: #5e4ea5;--mat-icon-button-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent)}.mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}html{--mat-icon-button-touch-target-display: block}.mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size: 48px;--mat-icon-button-state-layer-size: 48px;width:var(--mat-icon-button-state-layer-size);height:var(--mat-icon-button-state-layer-size);padding:12px}html{--mat-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-container-shape: 50%;--mat-fab-touch-target-size: 48px;--mat-fab-extended-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-extended-container-height: 48px;--mat-fab-extended-container-shape: 24px;--mat-fab-extended-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-extended-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-extended-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-small-container-shape: 50%;--mat-fab-small-touch-target-size: 48px;--mat-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12)}html{--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-fab.mat-primary,.mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #5e4ea5;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-fab-small-container-color: #5e4ea5;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.mat-mdc-fab.mat-accent,.mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.mat-mdc-fab.mat-warn,.mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}html{--mat-fab-small-touch-target-display: block;--mat-fab-touch-target-display: block}html{--mat-snack-bar-container-shape: 4px}html{--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #8e83c0}html{--mat-table-row-item-outline-width: 1px}html{--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12)}html{--mat-table-header-container-height: 56px;--mat-table-footer-container-height: 52px;--mat-table-row-item-container-height: 52px}html{--mat-progress-spinner-active-indicator-width: 4px;--mat-progress-spinner-size: 48px}html{--mat-progress-spinner-active-indicator-color: #5e4ea5}.mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}html{--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0}html{--mat-badge-background-color: #5e4ea5;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}html{--mat-bottom-sheet-container-shape: 4px}html{--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white}html{--mat-button-toggle-focus-state-layer-opacity: .12;--mat-button-toggle-hover-state-layer-opacity: .04;--mat-button-toggle-legacy-focus-state-layer-opacity: 1;--mat-button-toggle-legacy-height: 36px;--mat-button-toggle-legacy-shape: 2px;--mat-button-toggle-shape: 4px}html{--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87)}html{--mat-button-toggle-height: 48px}html{--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12)}html{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #5e4ea5 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #5e4ea5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #5e4ea5 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #5e4ea5 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #5e4ea5;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.mat-datepicker-content.mat-accent,.mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.mat-datepicker-content.mat-warn,.mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.mat-calendar-controls{--mat-icon-button-touch-target-display: none}.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size: 40px;--mat-icon-button-state-layer-size: 40px;width:var(--mat-icon-button-state-layer-size);height:var(--mat-icon-button-state-layer-size);padding:8px}html{--mat-divider-width: 1px}html{--mat-divider-color: rgba(0, 0, 0, .12)}html{--mat-expansion-container-shape: 4px;--mat-expansion-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none}html{--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54)}html{--mat-expansion-header-collapsed-state-height: 48px;--mat-expansion-header-expanded-state-height: 64px}html{--mat-icon-color: inherit}.mat-icon.mat-primary{--mat-icon-color: #5e4ea5}.mat-icon.mat-accent{--mat-icon-color: #424242}.mat-icon.mat-warn{--mat-icon-color: #b00020}html{--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto}html{--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6)}html{--mat-stepper-header-focus-state-layer-shape: 0;--mat-stepper-header-hover-state-layer-shape: 0}html{--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #5e4ea5;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #5e4ea5;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #5e4ea5;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent}.mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}html{--mat-stepper-header-height: 72px}html{--mat-sort-arrow-color: rgba(0, 0, 0, .87)}html{--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87)}.mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #5e4ea5;--mat-toolbar-container-text-color: #ffffff}.mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}html{--mat-toolbar-standard-height: 64px;--mat-toolbar-mobile-height: 56px}html{--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}html{--mat-tree-node-min-height: 48px}html{--mat-timepicker-container-shape: 4px;--mat-timepicker-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12)}html{--mat-timepicker-container-background-color: white}.rtl-container.purple.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.purple.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.purple.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.purple.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.purple.day .bg-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.purple.day .page-title,.rtl-container.purple.day .mat-mdc-select-value,.rtl-container.purple.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.purple.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.purple.day .help-expansion .mat-expansion-panel-header,.rtl-container.purple.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.purple.day .help-expansion .mat-expansion-indicator:after,.rtl-container.purple.day .help-expansion .mat-expansion-panel-content,.rtl-container.purple.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#5e4ea5}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.purple.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#5e4ea5}.rtl-container.purple.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.purple.day .mat-tree-node:hover,.rtl-container.purple.day .mat-nested-tree-node-parent:hover,.rtl-container.purple.day .mat-select-panel .mat-option:hover,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#5e4ea5;cursor:pointer}.rtl-container.purple.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.purple.day .mat-tree-node:hover .mat-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#5e4ea5}.rtl-container.purple.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.purple.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#5e4ea5}.rtl-container.purple.day .spinner-container h2{color:#fff}.rtl-container.purple.day .ng-fa-icon,.rtl-container.purple.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.purple.day .mat-form-field-suffix{color:#0000008a}.rtl-container.purple.day .mat-stroked-button.mat-primary{border-color:#5e4ea5}.rtl-container.purple.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.purple.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.purple.day .selected-color{border-color:#8e83c0}.rtl-container.purple.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.purple.day table.mat-mdc-table thead tr th,.rtl-container.purple.day .page-title-container,.rtl-container.purple.day .page-sub-title-container{color:#0000008a}.rtl-container.purple.day .page-title-container .page-title-img,.rtl-container.purple.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.purple.day .page-title-container .mat-input-element,.rtl-container.purple.day .page-title-container .mat-radio-label-content,.rtl-container.purple.day .page-title-container .theme-name,.rtl-container.purple.day .page-sub-title-container .mat-input-element,.rtl-container.purple.day .page-sub-title-container .mat-radio-label-content,.rtl-container.purple.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.purple.day .cc-data-block .cc-data-title{color:#5e4ea5}.rtl-container.purple.day .active-link,.rtl-container.purple.day .active-link .fa-icon-small{color:#5e4ea5;font-weight:500;cursor:pointer;fill:#5e4ea5}.rtl-container.purple.day .mat-tree-node:hover,.rtl-container.purple.day .mat-nested-tree-node-parent:hover,.rtl-container.purple.day .mat-select-panel .mat-option:hover,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#5e4ea5;cursor:pointer;background:#0000000a}.rtl-container.purple.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.purple.day .mat-tree-node:hover .mat-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#5e4ea5}.rtl-container.purple.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.purple.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#5e4ea5}.rtl-container.purple.day .mat-tree-node .sidenav-img,.rtl-container.purple.day .mat-nested-tree-node .sidenav-img,.rtl-container.purple.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.purple.day .page-title-container .page-title-img,.rtl-container.purple.day svg.top-icon-small{fill:#000000de}.rtl-container.purple.day .mat-progress-bar-fill:after{background-color:#312579}.rtl-container.purple.day .modal-qr-code-container{background:#0000001f}.rtl-container.purple.day .mdc-tab__text-label,.rtl-container.purple.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.purple.day .mat-mdc-card,.rtl-container.purple.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.purple.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.purple.day .dashboard-info-title{color:#5e4ea5}.rtl-container.purple.day .dashboard-capacity-header,.rtl-container.purple.day .dashboard-info-value{color:#0000008a}.rtl-container.purple.day .color-primary{color:#5e4ea5!important}.rtl-container.purple.day .dot-primary{background-color:#5e4ea5!important}.rtl-container.purple.day .dot-primary-lighter{background-color:#8e83c0!important}.rtl-container.purple.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .mat-mdc-form-field-hint{color:#5e4ea5}.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.purple.day .mat-mdc-form-field-hint fa-icon svg path{fill:#5e4ea5}.rtl-container.purple.day .currency-icon path,.rtl-container.purple.day .currency-icon polygon{fill:#0000008a}.rtl-container.purple.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.purple.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.purple.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-primary-lighter{stroke:#8e83c0}.rtl-container.purple.day svg .stroke-color-primary{stroke:#5e4ea5}.rtl-container.purple.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.purple.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-1{fill:#fff}.rtl-container.purple.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.purple.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-6{fill:#fff}.rtl-container.purple.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-9{fill:#fff}.rtl-container.purple.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.purple.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.purple.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-16{fill:#404040}.rtl-container.purple.day svg .fill-color-17{fill:#404040}.rtl-container.purple.day svg .fill-color-18{fill:#000}.rtl-container.purple.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-24{fill:#000}.rtl-container.purple.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.purple.day svg .fill-color-27{fill:#000}.rtl-container.purple.day svg .fill-color-28{fill:#313131}.rtl-container.purple.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-30{fill:#fff}.rtl-container.purple.day svg .fill-color-31{fill:#5e4ea5}.rtl-container.purple.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.purple.day svg .fill-color-primary{fill:#5e4ea5}.rtl-container.purple.day svg .fill-color-primary-lighter{fill:#8e83c0}.rtl-container.purple.day svg .fill-color-primary-darker{fill:#5e4ea5}.rtl-container.purple.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.purple.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.purple.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#5e4ea5}.rtl-container.purple.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.purple.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.purple.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.purple.day .material-icons.mat-icon-no-color,.rtl-container.purple.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.purple.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.purple.day .material-icons.info-icon.info-icon-primary{color:#5e4ea5}.rtl-container.purple.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.purple.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.purple.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.purple.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.purple.day .material-icons.info-icon.arrow-downward,.rtl-container.purple.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.purple.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#5e4ea5}.rtl-container.purple.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#312579}.rtl-container.purple.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#afa7d2}.rtl-container.purple.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.purple.day .mat-progress-bar-buffer{background-color:#cfcae4}.rtl-container.purple.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.purple.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.purple.day .foreground.mat-progress-spinner circle,.rtl-container.purple.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.purple.day .mat-toolbar-row,.rtl-container.purple.day .mat-toolbar-single-row{height:4rem}.rtl-container.purple.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day a{color:#5e4ea5}.rtl-container.purple.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.purple.day .h-active-link{border-bottom:2px solid white}.rtl-container.purple.day .mat-icon-36{color:#0000008a}.rtl-container.purple.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.purple.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.purple.day .genseed-message{width:10%;color:#5e4ea5}.rtl-container.purple.day .border-primary{border:1px solid #5e4ea5}.rtl-container.purple.day .border-accent{border:1px solid #9e9e9e}.rtl-container.purple.day .border-warn{border:1px solid #b00020}.rtl-container.purple.day .material-icons.primary{color:#5e4ea5}.rtl-container.purple.day .material-icons.accent{color:#9e9e9e}.rtl-container.purple.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.purple.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.purple.day .row-disabled{background-color:gray}.rtl-container.purple.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.purple.day .mat-mdc-card-content,.rtl-container.purple.day .mat-mdc-card-subtitle,.rtl-container.purple.day .mat-mdc-card-title{color:#0000008a}.rtl-container.purple.day .mat-menu-panel{min-width:4rem}.rtl-container.purple.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.purple.day .horizontal-button:hover{background:#8e83c0;color:#9e9e9e}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#5e4ea5}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.purple.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.purple.day .mat-button,.rtl-container.purple.day .mat-icon-button,.rtl-container.purple.day .mat-stroked-button,.rtl-container.purple.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.purple.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.purple.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.purple.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.purple.day .cc-data-block .cc-data-value{color:#000}.rtl-container.purple.day .mat-cell,.rtl-container.purple.day .mat-header-cell,.rtl-container.purple.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.purple.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.purple.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#5e4ea5}.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#5e4ea5;opacity:1}.rtl-container.purple.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.purple.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.purple.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.purple.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.purple.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.purple.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.purple.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.purple.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.purple.day .more-button{color:#000}.rtl-container.purple.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.purple.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.purple.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.purple.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.purple.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.purple.day .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.purple.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.purple.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.purple.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.purple.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.purple.day .tab-badge .mat-badge-content.mat-badge-active{background:#5e4ea5}.rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.purple.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.purple.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.purple.day .rtl-select-overlay{min-width:7rem}}.rtl-container.purple.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.purple.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.purple.day .table-actions-button{min-width:8rem}.rtl-container.purple.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.purple.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.purple.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.purple.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#afa7d2!important}.rtl-container.purple.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#56479d!important}.rtl-container.purple.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.purple.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.purple.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.purple.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.purple.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.purple.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.purple.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.purple.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.purple.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.purple.day .color-warn{color:#b00020}.rtl-container.purple.day .fill-warn{fill:#b00020}.rtl-container.purple.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.purple.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.purple.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.purple.day .alert.alert-info a{color:#004085}.rtl-container.purple.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.purple.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.purple.day .alert.alert-warn a{color:#856404}.rtl-container.purple.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.purple.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.purple.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.purple.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.purple.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.purple.day .failed-status{color:#b00020}.rtl-container.purple.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.purple.day .svg-fill-primary{fill:#5e4ea5}.rtl-container.purple.day .svg-fill-primary-lighter{fill:#8e83c0}.rtl-container.purple.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.purple.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.purple.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.purple.day .dashboard-card-content .underline,.rtl-container.purple.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.purple.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.purple.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.purple.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#5e4ea5}.rtl-container.purple.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.purple.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#5e4ea5}.rtl-container.purple.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.purple.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#5e4ea5}.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon{color:#5e4ea5}.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon path{fill:#5e4ea5}.rtl-container.purple.day .fa-icon-primary{color:#5e4ea5}.rtl-container.purple.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day ngx-charts-bar-vertical text,.rtl-container.purple.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.purple.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.purple.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.purple.day .mat-paginator-container{padding:0}.rtl-container.purple.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.purple.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.purple.day .invoice-animation-div .particles-circle{position:absolute;background-color:#5e4ea5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #5e4ea5;background-color:transparent}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.purple.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.purple.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.purple.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.purple.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.purple.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #5e4ea5;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-filled-caret-color: #5e4ea5;--mat-form-field-filled-focus-active-indicator-color: #5e4ea5;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-outlined-caret-color: #5e4ea5;--mat-form-field-outlined-focus-outline-color: #5e4ea5;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #5e4ea5;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-handle-color: #5e4ea5;--mat-slide-toggle-selected-hover-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-pressed-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-focus-handle-color: #5e4ea5;--mat-slide-toggle-selected-hover-handle-color: #5e4ea5;--mat-slide-toggle-selected-pressed-handle-color: #5e4ea5;--mat-slide-toggle-selected-focus-track-color: #56479d;--mat-slide-toggle-selected-hover-track-color: #56479d;--mat-slide-toggle-selected-pressed-track-color: #56479d;--mat-slide-toggle-selected-track-color: #56479d;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #5e4ea5;--mat-slider-focus-handle-color: #5e4ea5;--mat-slider-handle-color: #5e4ea5;--mat-slider-hover-handle-color: #5e4ea5;--mat-slider-focus-state-layer-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #5e4ea5 4%, transparent);--mat-slider-inactive-track-color: #5e4ea5;--mat-slider-ripple-color: #5e4ea5;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #5e4ea5;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #56479d;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #5e4ea5;--mat-badge-background-color: #5e4ea5;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #5e4ea5 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #5e4ea5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #5e4ea5 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #5e4ea5 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #5e4ea5;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #5e4ea5;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #5e4ea5;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #5e4ea5;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.purple.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.purple.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.purple.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #5e4ea5;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #5e4ea5;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.purple.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.purple.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.purple.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #5e4ea5;--mat-progress-bar-track-color: rgba(94, 78, 165, .25)}.rtl-container.purple.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.purple.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.purple.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.purple.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.purple.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.purple.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.purple.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #5e4ea5;--mat-chip-elevated-disabled-container-color: #5e4ea5;--mat-chip-elevated-selected-container-color: #5e4ea5;--mat-chip-flat-disabled-selected-container-color: #5e4ea5;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.purple.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.purple.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.purple.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #5e4ea5;--mat-radio-selected-hover-icon-color: #5e4ea5;--mat-radio-selected-icon-color: #5e4ea5;--mat-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.purple.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.purple.night .mdc-list-item__start,.rtl-container.purple.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #5e4ea5;--mat-radio-selected-hover-icon-color: #5e4ea5;--mat-radio-selected-icon-color: #5e4ea5;--mat-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-accent .mdc-list-item__start,.rtl-container.purple.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-warn .mdc-list-item__start,.rtl-container.purple.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #5e4ea5;--mat-checkbox-selected-hover-icon-color: #5e4ea5;--mat-checkbox-selected-icon-color: #5e4ea5;--mat-checkbox-selected-pressed-icon-color: #5e4ea5;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #5e4ea5;--mat-checkbox-selected-hover-state-layer-color: #5e4ea5;--mat-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#5e4ea5}.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.purple.night .mat-mdc-tab-group,.rtl-container.purple.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #5e4ea5;--mat-tab-active-ripple-color: #5e4ea5;--mat-tab-inactive-ripple-color: #5e4ea5;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #5e4ea5;--mat-tab-active-hover-label-text-color: #5e4ea5;--mat-tab-active-focus-indicator-color: #5e4ea5;--mat-tab-active-hover-indicator-color: #5e4ea5;--mat-tab-active-indicator-color: #5e4ea5}.rtl-container.purple.night .mat-mdc-tab-group.mat-accent,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.purple.night .mat-mdc-tab-group.mat-warn,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #5e4ea5;--mat-tab-foreground-color: #ffffff}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.purple.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #5e4ea5;--mat-checkbox-selected-hover-icon-color: #5e4ea5;--mat-checkbox-selected-icon-color: #5e4ea5;--mat-checkbox-selected-pressed-icon-color: #5e4ea5;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #5e4ea5;--mat-checkbox-selected-hover-state-layer-color: #5e4ea5;--mat-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-button.mat-primary,.rtl-container.purple.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.purple.night .mat-mdc-raised-button.mat-primary,.rtl-container.purple.night .mat-mdc-outlined-button.mat-primary,.rtl-container.purple.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #5e4ea5;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #5e4ea5;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-button-outlined-state-layer-color: #5e4ea5;--mat-button-protected-container-color: #5e4ea5;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #5e4ea5;--mat-button-text-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-button-text-state-layer-color: #5e4ea5;--mat-button-tonal-container-color: #5e4ea5;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.rtl-container.purple.night .mat-mdc-button.mat-accent,.rtl-container.purple.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.purple.night .mat-mdc-raised-button.mat-accent,.rtl-container.purple.night .mat-mdc-outlined-button.mat-accent,.rtl-container.purple.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.purple.night .mat-mdc-button.mat-warn,.rtl-container.purple.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.purple.night .mat-mdc-raised-button.mat-warn,.rtl-container.purple.night .mat-mdc-outlined-button.mat-warn,.rtl-container.purple.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.purple.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #5e4ea5;--mat-icon-button-state-layer-color: #5e4ea5;--mat-icon-button-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent)}.rtl-container.purple.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.purple.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.purple.night .mat-mdc-fab.mat-primary,.rtl-container.purple.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #5e4ea5;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-fab-small-container-color: #5e4ea5;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.rtl-container.purple.night .mat-mdc-fab.mat-accent,.rtl-container.purple.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.purple.night .mat-mdc-fab.mat-warn,.rtl-container.purple.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.purple.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.purple.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.purple.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.purple.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.purple.night .mat-datepicker-content.mat-accent,.rtl-container.purple.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.purple.night .mat-datepicker-content.mat-warn,.rtl-container.purple.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.purple.night .mat-icon.mat-primary{--mat-icon-color: #5e4ea5}.rtl-container.purple.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.purple.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.purple.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.purple.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.purple.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #5e4ea5;--mat-toolbar-container-text-color: #ffffff}.rtl-container.purple.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.purple.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.purple.night .mat-primary{color:#9787ff!important}.rtl-container.purple.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.purple.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.purple.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.purple.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.purple.night .bg-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#9787ff}.rtl-container.purple.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.purple.night .currency-icon path,.rtl-container.purple.night .currency-icon polygon{fill:#fff}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.purple.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#9787ff}.rtl-container.purple.night .cc-data-block .cc-data-title{color:#9787ff}.rtl-container.purple.night .mat-stroked-button.mat-primary{border-color:#9787ff;color:#9787ff}.rtl-container.purple.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.purple.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.purple.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.purple.night .active-link,.rtl-container.purple.night .active-link .fa-icon-small,.rtl-container.purple.night .mat-select-panel .mat-option.mat-active,.rtl-container.purple.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#9787ff;font-weight:500;cursor:pointer;fill:#9787ff}.rtl-container.purple.night .help-expansion .mat-expansion-panel-header,.rtl-container.purple.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.purple.night .help-expansion .mat-expansion-indicator:after,.rtl-container.purple.night .help-expansion .mat-expansion-panel-content,.rtl-container.purple.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.purple.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.purple.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.purple.night .mat-expansion-panel,.rtl-container.purple.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.purple.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.purple.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.purple.night .mdc-data-table__header-cell,.rtl-container.purple.night .mat-mdc-paginator,.rtl-container.purple.night .mat-mdc-form-field-focus-overlay,.rtl-container.purple.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.purple.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.purple.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#9787ff}.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.purple.night .svg-donation{opacity:1!important}.rtl-container.purple.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#9787ff!important}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#9787ff!important}.rtl-container.purple.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#5e4ea5}.rtl-container.purple.night a{color:#9787ff!important;cursor:pointer}.rtl-container.purple.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.purple.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.purple.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.purple.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.purple.night .mat-mdc-select-placeholder,.rtl-container.purple.night .mat-mdc-select-value,.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#9787ff}.rtl-container.purple.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.purple.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.purple.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#9787ff}.rtl-container.purple.night .mat-tree-node:hover,.rtl-container.purple.night .mat-nested-tree-node-parent:hover,.rtl-container.purple.night .mat-select-panel .mat-option:hover,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#9787ff;cursor:pointer;background:#ffffff0f}.rtl-container.purple.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.purple.night .mat-tree-node:hover .mat-icon,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.purple.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.purple.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#9787ff}.rtl-container.purple.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.purple.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.purple.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.purple.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#9787ff}.rtl-container.purple.night .mat-tree-node:hover .boltz-icon,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.purple.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#9787ff}.rtl-container.purple.night .mat-tree-node .sidenav-img,.rtl-container.purple.night .mat-nested-tree-node .sidenav-img,.rtl-container.purple.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.purple.night .page-title-container .page-title-img,.rtl-container.purple.night svg.top-icon-small{fill:#fff}.rtl-container.purple.night .selected-color{border-color:#8e83c0}.rtl-container.purple.night .mat-progress-bar-fill:after{background-color:#56479d}.rtl-container.purple.night .chart-legend .legend-label:hover,.rtl-container.purple.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.purple.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.purple.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#9787ff}.rtl-container.purple.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.purple.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#9787ff}.rtl-container.purple.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#9787ff}.rtl-container.purple.night .mat-select-panel{background-color:#121212}.rtl-container.purple.night .mat-tree{background:#121212}.rtl-container.purple.night h4{color:#9787ff}.rtl-container.purple.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.purple.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.purple.night .dashboard-info-title{color:#9787ff}.rtl-container.purple.night .dashboard-info-value,.rtl-container.purple.night .dashboard-capacity-header{color:#fff}.rtl-container.purple.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.purple.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.purple.night .color-primary{color:#9787ff!important}.rtl-container.purple.night .dot-primary{background-color:#9787ff!important}.rtl-container.purple.night .dot-primary-lighter{background-color:#5e4ea5!important}.rtl-container.purple.night .mat-stepper-vertical{background-color:#121212}.rtl-container.purple.night .spinner-container h2{color:#9787ff}.rtl-container.purple.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.purple.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.purple.night svg .boltz-icon-fill{fill:#fff}.rtl-container.purple.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-primary-lighter{stroke:#8e83c0}.rtl-container.purple.night svg .stroke-color-primary{stroke:#5e4ea5}.rtl-container.purple.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.purple.night svg .fill-color-0{fill:#171717}.rtl-container.purple.night svg .fill-color-1{fill:#232323}.rtl-container.purple.night svg .fill-color-2{fill:#222}.rtl-container.purple.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.purple.night svg .fill-color-4{fill:#383838}.rtl-container.purple.night svg .fill-color-5{fill:#555}.rtl-container.purple.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.purple.night svg .fill-color-7{fill:#202020}.rtl-container.purple.night svg .fill-color-8{fill:#242424}.rtl-container.purple.night svg .fill-color-9{fill:#262626}.rtl-container.purple.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.purple.night svg .fill-color-11{fill:#171717}.rtl-container.purple.night svg .fill-color-12{fill:#ccc}.rtl-container.purple.night svg .fill-color-13{fill:#adadad}.rtl-container.purple.night svg .fill-color-14{fill:#ababab}.rtl-container.purple.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.purple.night svg .fill-color-16{fill:#707070}.rtl-container.purple.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.purple.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.purple.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.purple.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.purple.night svg .fill-color-21{fill:#cacaca}.rtl-container.purple.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.purple.night svg .fill-color-23{fill:#777}.rtl-container.purple.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.purple.night svg .fill-color-25{fill:#252525}.rtl-container.purple.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.purple.night svg .fill-color-27{fill:#000}.rtl-container.purple.night svg .fill-color-28{fill:#313131}.rtl-container.purple.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.purple.night svg .fill-color-30{fill:#fff}.rtl-container.purple.night svg .fill-color-31{fill:#5e4ea5}.rtl-container.purple.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.purple.night svg .fill-color-primary{fill:#5e4ea5}.rtl-container.purple.night svg .fill-color-primary-lighter{fill:#8e83c0}.rtl-container.purple.night svg .fill-color-primary-darker{fill:#9787ff}.rtl-container.purple.night .mat-select-value,.rtl-container.purple.night .mat-select-arrow{color:#fff}.rtl-container.purple.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.purple.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.purple.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.purple.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.purple.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.purple.night .mat-button.mat-primary,.rtl-container.purple.night .mat-icon-button.mat-primary,.rtl-container.purple.night .mat-stroked-button.mat-primary{color:#9787ff}.rtl-container.purple.night tr.alert.alert-warn .mat-cell,.rtl-container.purple.night tr.alert.alert-warn .mat-header-cell,.rtl-container.purple.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.purple.night .material-icons.info-icon{font-size:100%;color:#9787ff}.rtl-container.purple.night .material-icons.info-icon.info-icon-primary{color:#9787ff}.rtl-container.purple.night .material-icons.info-icon.info-icon-text,.rtl-container.purple.night .material-icons.info-icon.arrow-downward,.rtl-container.purple.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.purple.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#9787ff}.rtl-container.purple.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#42358a}.rtl-container.purple.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#9787ff}.rtl-container.purple.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.purple.night .mat-progress-bar-buffer{background-color:#cfcae4}.rtl-container.purple.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.purple.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.purple.night .foreground.mat-progress-spinner circle,.rtl-container.purple.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.purple.night .mat-toolbar-row,.rtl-container.purple.night .mat-toolbar-single-row{height:4rem}.rtl-container.purple.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.purple.night a{color:#5e4ea5}.rtl-container.purple.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.purple.night .h-active-link{border-bottom:2px solid white}.rtl-container.purple.night .mat-icon-36{color:#ffffffb3}.rtl-container.purple.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.purple.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.purple.night .genseed-message{width:10%;color:#5e4ea5}.rtl-container.purple.night .border-primary{border:1px solid #5e4ea5}.rtl-container.purple.night .border-accent{border:1px solid #aaaaaa}.rtl-container.purple.night .border-warn{border:1px solid #b00020}.rtl-container.purple.night .material-icons.primary{color:#5e4ea5}.rtl-container.purple.night .material-icons.accent{color:#aaa}.rtl-container.purple.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.purple.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.purple.night .row-disabled{background-color:gray}.rtl-container.purple.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.purple.night .mat-mdc-card-content,.rtl-container.purple.night .mat-mdc-card-subtitle,.rtl-container.purple.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.purple.night .mat-menu-panel{min-width:4rem}.rtl-container.purple.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.purple.night .horizontal-button:hover{background:#8e83c0;color:#aaa}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#5e4ea5}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.purple.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.purple.night .mat-button,.rtl-container.purple.night .mat-icon-button,.rtl-container.purple.night .mat-stroked-button,.rtl-container.purple.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.purple.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.purple.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.purple.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.purple.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.purple.night .mat-cell,.rtl-container.purple.night .mat-header-cell,.rtl-container.purple.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.purple.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.purple.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#5e4ea5}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#5e4ea5;opacity:1}.rtl-container.purple.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.purple.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.purple.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.purple.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.purple.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.purple.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.purple.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.purple.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.purple.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.purple.night .more-button{color:#fff}.rtl-container.purple.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.purple.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.purple.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.purple.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.purple.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.purple.night .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.purple.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.purple.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.purple.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.purple.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.purple.night .tab-badge .mat-badge-content.mat-badge-active{background:#5e4ea5}.rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.purple.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.purple.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.purple.night .rtl-select-overlay{min-width:7rem}}.rtl-container.purple.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.purple.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.purple.night .table-actions-button{min-width:8rem}.rtl-container.purple.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.purple.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.purple.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.purple.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#afa7d2!important}.rtl-container.purple.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#56479d!important}.rtl-container.purple.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.purple.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.purple.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.purple.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.purple.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.purple.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.purple.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.purple.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.purple.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.purple.night .color-warn{color:#b00020}.rtl-container.purple.night .fill-warn{fill:#b00020}.rtl-container.purple.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.purple.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.purple.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.purple.night .alert.alert-info a{color:#004085}.rtl-container.purple.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.purple.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.purple.night .alert.alert-warn a{color:#856404}.rtl-container.purple.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.purple.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.purple.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.purple.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.purple.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.purple.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.purple.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.purple.night .failed-status{color:#b00020}.rtl-container.purple.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.purple.night .svg-fill-primary{fill:#5e4ea5}.rtl-container.purple.night .svg-fill-primary-lighter{fill:#8e83c0}.rtl-container.purple.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.purple.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.purple.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.purple.night .dashboard-card-content .underline,.rtl-container.purple.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.purple.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.purple.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#5e4ea5}.rtl-container.purple.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.purple.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#5e4ea5}.rtl-container.purple.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.purple.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#5e4ea5}.rtl-container.purple.night .mat-mdc-form-field-hint .currency-icon{color:#5e4ea5}.rtl-container.purple.night .mat-mdc-form-field-hint .currency-icon path{fill:#5e4ea5}.rtl-container.purple.night .fa-icon-primary{color:#5e4ea5}.rtl-container.purple.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night ngx-charts-bar-vertical text,.rtl-container.purple.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.purple.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.purple.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.purple.night .mat-paginator-container{padding:0}.rtl-container.purple.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.purple.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.purple.night .invoice-animation-div .particles-circle{position:absolute;background-color:#5e4ea5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #5e4ea5;background-color:transparent}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.purple.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.purple.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.purple.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.purple.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.blue.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #1976d2;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-filled-caret-color: #1976d2;--mat-form-field-filled-focus-active-indicator-color: #1976d2;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-outlined-caret-color: #1976d2;--mat-form-field-outlined-focus-outline-color: #1976d2;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #1976d2;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #1976d2;--mat-slide-toggle-selected-handle-color: #1976d2;--mat-slide-toggle-selected-hover-state-layer-color: #1976d2;--mat-slide-toggle-selected-pressed-state-layer-color: #1976d2;--mat-slide-toggle-selected-focus-handle-color: #1976d2;--mat-slide-toggle-selected-hover-handle-color: #1976d2;--mat-slide-toggle-selected-pressed-handle-color: #1976d2;--mat-slide-toggle-selected-focus-track-color: #64b5f6;--mat-slide-toggle-selected-hover-track-color: #64b5f6;--mat-slide-toggle-selected-pressed-track-color: #64b5f6;--mat-slide-toggle-selected-track-color: #64b5f6;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #1976d2;--mat-slider-focus-handle-color: #1976d2;--mat-slider-handle-color: #1976d2;--mat-slider-hover-handle-color: #1976d2;--mat-slider-focus-state-layer-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #1976d2 4%, transparent);--mat-slider-inactive-track-color: #1976d2;--mat-slider-ripple-color: #1976d2;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #1976d2;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #64b5f6;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #1976d2;--mat-badge-background-color: #1976d2;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #1976d2 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #1976d2;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #1976d2 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #1976d2 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #1976d2;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #1976d2;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #1976d2;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #1976d2;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.blue.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.blue.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.blue.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #1976d2;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #1976d2;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.blue.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.blue.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.blue.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #1976d2;--mat-progress-bar-track-color: rgba(25, 118, 210, .25)}.rtl-container.blue.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.blue.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.blue.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.blue.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.blue.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.blue.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.blue.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #1976d2;--mat-chip-elevated-disabled-container-color: #1976d2;--mat-chip-elevated-selected-container-color: #1976d2;--mat-chip-flat-disabled-selected-container-color: #1976d2;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.blue.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.blue.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.blue.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #1976d2;--mat-radio-selected-hover-icon-color: #1976d2;--mat-radio-selected-icon-color: #1976d2;--mat-radio-selected-pressed-icon-color: #1976d2;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.blue.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.blue.day .mdc-list-item__start,.rtl-container.blue.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #1976d2;--mat-radio-selected-hover-icon-color: #1976d2;--mat-radio-selected-icon-color: #1976d2;--mat-radio-selected-pressed-icon-color: #1976d2;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-accent .mdc-list-item__start,.rtl-container.blue.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-warn .mdc-list-item__start,.rtl-container.blue.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #1976d2;--mat-checkbox-selected-hover-icon-color: #1976d2;--mat-checkbox-selected-icon-color: #1976d2;--mat-checkbox-selected-pressed-icon-color: #1976d2;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #1976d2;--mat-checkbox-selected-hover-state-layer-color: #1976d2;--mat-checkbox-selected-pressed-state-layer-color: #1976d2;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#1976d2}.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.blue.day .mat-mdc-tab-group,.rtl-container.blue.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #1976d2;--mat-tab-active-ripple-color: #1976d2;--mat-tab-inactive-ripple-color: #1976d2;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #1976d2;--mat-tab-active-hover-label-text-color: #1976d2;--mat-tab-active-focus-indicator-color: #1976d2;--mat-tab-active-hover-indicator-color: #1976d2;--mat-tab-active-indicator-color: #1976d2}.rtl-container.blue.day .mat-mdc-tab-group.mat-accent,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.blue.day .mat-mdc-tab-group.mat-warn,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #1976d2;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.blue.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #1976d2;--mat-checkbox-selected-hover-icon-color: #1976d2;--mat-checkbox-selected-icon-color: #1976d2;--mat-checkbox-selected-pressed-icon-color: #1976d2;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #1976d2;--mat-checkbox-selected-hover-state-layer-color: #1976d2;--mat-checkbox-selected-pressed-state-layer-color: #1976d2;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-button.mat-primary,.rtl-container.blue.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.blue.day .mat-mdc-raised-button.mat-primary,.rtl-container.blue.day .mat-mdc-outlined-button.mat-primary,.rtl-container.blue.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #1976d2;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #1976d2;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-button-outlined-state-layer-color: #1976d2;--mat-button-protected-container-color: #1976d2;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #1976d2;--mat-button-text-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-button-text-state-layer-color: #1976d2;--mat-button-tonal-container-color: #1976d2;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.blue.day .mat-mdc-button.mat-accent,.rtl-container.blue.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.blue.day .mat-mdc-raised-button.mat-accent,.rtl-container.blue.day .mat-mdc-outlined-button.mat-accent,.rtl-container.blue.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.blue.day .mat-mdc-button.mat-warn,.rtl-container.blue.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.blue.day .mat-mdc-raised-button.mat-warn,.rtl-container.blue.day .mat-mdc-outlined-button.mat-warn,.rtl-container.blue.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.blue.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #1976d2;--mat-icon-button-state-layer-color: #1976d2;--mat-icon-button-ripple-color: color-mix(in srgb, #1976d2 12%, transparent)}.rtl-container.blue.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.blue.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.blue.day .mat-mdc-fab.mat-primary,.rtl-container.blue.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #1976d2;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-fab-small-container-color: #1976d2;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.blue.day .mat-mdc-fab.mat-accent,.rtl-container.blue.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.blue.day .mat-mdc-fab.mat-warn,.rtl-container.blue.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.blue.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.blue.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.blue.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.blue.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.blue.day .mat-datepicker-content.mat-accent,.rtl-container.blue.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-datepicker-content.mat-warn,.rtl-container.blue.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-icon.mat-primary{--mat-icon-color: #1976d2}.rtl-container.blue.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.blue.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.blue.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #1976d2;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.blue.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.blue.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.blue.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.blue.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.blue.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.blue.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.blue.day .bg-primary{background-color:#2196f3;color:#fff}.rtl-container.blue.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.blue.day .page-title,.rtl-container.blue.day .mat-mdc-select-value,.rtl-container.blue.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.blue.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.blue.day .help-expansion .mat-expansion-panel-header,.rtl-container.blue.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.blue.day .help-expansion .mat-expansion-indicator:after,.rtl-container.blue.day .help-expansion .mat-expansion-panel-content,.rtl-container.blue.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#2196f3}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.blue.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#2196f3}.rtl-container.blue.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.blue.day .mat-tree-node:hover,.rtl-container.blue.day .mat-nested-tree-node-parent:hover,.rtl-container.blue.day .mat-select-panel .mat-option:hover,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#2196f3;cursor:pointer}.rtl-container.blue.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.blue.day .mat-tree-node:hover .mat-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#2196f3}.rtl-container.blue.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.blue.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#2196f3}.rtl-container.blue.day .spinner-container h2{color:#fff}.rtl-container.blue.day .ng-fa-icon,.rtl-container.blue.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.blue.day .mat-form-field-suffix{color:#0000008a}.rtl-container.blue.day .mat-stroked-button.mat-primary{border-color:#2196f3}.rtl-container.blue.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.blue.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.blue.day .selected-color{border-color:#90caf9}.rtl-container.blue.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.blue.day table.mat-mdc-table thead tr th,.rtl-container.blue.day .page-title-container,.rtl-container.blue.day .page-sub-title-container{color:#0000008a}.rtl-container.blue.day .page-title-container .page-title-img,.rtl-container.blue.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.blue.day .page-title-container .mat-input-element,.rtl-container.blue.day .page-title-container .mat-radio-label-content,.rtl-container.blue.day .page-title-container .theme-name,.rtl-container.blue.day .page-sub-title-container .mat-input-element,.rtl-container.blue.day .page-sub-title-container .mat-radio-label-content,.rtl-container.blue.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.blue.day .cc-data-block .cc-data-title{color:#2196f3}.rtl-container.blue.day .active-link,.rtl-container.blue.day .active-link .fa-icon-small{color:#2196f3;font-weight:500;cursor:pointer;fill:#2196f3}.rtl-container.blue.day .mat-tree-node:hover,.rtl-container.blue.day .mat-nested-tree-node-parent:hover,.rtl-container.blue.day .mat-select-panel .mat-option:hover,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#2196f3;cursor:pointer;background:#0000000a}.rtl-container.blue.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.blue.day .mat-tree-node:hover .mat-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#2196f3}.rtl-container.blue.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.blue.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#2196f3}.rtl-container.blue.day .mat-tree-node .sidenav-img,.rtl-container.blue.day .mat-nested-tree-node .sidenav-img,.rtl-container.blue.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.blue.day .page-title-container .page-title-img,.rtl-container.blue.day svg.top-icon-small{fill:#000000de}.rtl-container.blue.day .mat-progress-bar-fill:after{background-color:#0d47a1}.rtl-container.blue.day .modal-qr-code-container{background:#0000001f}.rtl-container.blue.day .mdc-tab__text-label,.rtl-container.blue.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.blue.day .mat-mdc-card,.rtl-container.blue.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.blue.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.blue.day .dashboard-info-title{color:#2196f3}.rtl-container.blue.day .dashboard-capacity-header,.rtl-container.blue.day .dashboard-info-value{color:#0000008a}.rtl-container.blue.day .color-primary{color:#2196f3!important}.rtl-container.blue.day .dot-primary{background-color:#2196f3!important}.rtl-container.blue.day .dot-primary-lighter{background-color:#90caf9!important}.rtl-container.blue.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .mat-mdc-form-field-hint{color:#2196f3}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.blue.day .mat-mdc-form-field-hint fa-icon svg path{fill:#2196f3}.rtl-container.blue.day .currency-icon path,.rtl-container.blue.day .currency-icon polygon{fill:#0000008a}.rtl-container.blue.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.blue.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.blue.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-primary-lighter{stroke:#90caf9}.rtl-container.blue.day svg .stroke-color-primary{stroke:#2196f3}.rtl-container.blue.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.blue.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-1{fill:#fff}.rtl-container.blue.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.blue.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-6{fill:#fff}.rtl-container.blue.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-9{fill:#fff}.rtl-container.blue.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.blue.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.blue.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-16{fill:#404040}.rtl-container.blue.day svg .fill-color-17{fill:#404040}.rtl-container.blue.day svg .fill-color-18{fill:#000}.rtl-container.blue.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-24{fill:#000}.rtl-container.blue.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.blue.day svg .fill-color-27{fill:#000}.rtl-container.blue.day svg .fill-color-28{fill:#313131}.rtl-container.blue.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-30{fill:#fff}.rtl-container.blue.day svg .fill-color-31{fill:#2196f3}.rtl-container.blue.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.blue.day svg .fill-color-primary{fill:#2196f3}.rtl-container.blue.day svg .fill-color-primary-lighter{fill:#90caf9}.rtl-container.blue.day svg .fill-color-primary-darker{fill:#2196f3}.rtl-container.blue.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.blue.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.blue.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#2196f3}.rtl-container.blue.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.blue.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.blue.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.blue.day .material-icons.mat-icon-no-color,.rtl-container.blue.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.blue.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.blue.day .material-icons.info-icon.info-icon-primary{color:#2196f3}.rtl-container.blue.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.blue.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.blue.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.blue.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.blue.day .material-icons.info-icon.arrow-downward,.rtl-container.blue.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.blue.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#2196f3}.rtl-container.blue.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#0d47a1}.rtl-container.blue.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#90caf9}.rtl-container.blue.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.blue.day .mat-progress-bar-buffer{background-color:#bbdefb}.rtl-container.blue.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.blue.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.blue.day .foreground.mat-progress-spinner circle,.rtl-container.blue.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.blue.day .mat-toolbar-row,.rtl-container.blue.day .mat-toolbar-single-row{height:4rem}.rtl-container.blue.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day a{color:#2196f3}.rtl-container.blue.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.blue.day .h-active-link{border-bottom:2px solid white}.rtl-container.blue.day .mat-icon-36{color:#0000008a}.rtl-container.blue.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.blue.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.blue.day .genseed-message{width:10%;color:#2196f3}.rtl-container.blue.day .border-primary{border:1px solid #2196f3}.rtl-container.blue.day .border-accent{border:1px solid #9e9e9e}.rtl-container.blue.day .border-warn{border:1px solid #b00020}.rtl-container.blue.day .material-icons.primary{color:#2196f3}.rtl-container.blue.day .material-icons.accent{color:#9e9e9e}.rtl-container.blue.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.blue.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.blue.day .row-disabled{background-color:gray}.rtl-container.blue.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.blue.day .mat-mdc-card-content,.rtl-container.blue.day .mat-mdc-card-subtitle,.rtl-container.blue.day .mat-mdc-card-title{color:#0000008a}.rtl-container.blue.day .mat-menu-panel{min-width:4rem}.rtl-container.blue.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.blue.day .horizontal-button:hover{background:#90caf9;color:#9e9e9e}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#2196f3}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.blue.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.blue.day .mat-button,.rtl-container.blue.day .mat-icon-button,.rtl-container.blue.day .mat-stroked-button,.rtl-container.blue.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.blue.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.blue.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.blue.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.blue.day .cc-data-block .cc-data-value{color:#000}.rtl-container.blue.day .mat-cell,.rtl-container.blue.day .mat-header-cell,.rtl-container.blue.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.blue.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.blue.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#2196f3}.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#2196f3;opacity:1}.rtl-container.blue.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.blue.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.blue.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.blue.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.blue.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.blue.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.blue.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.blue.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.blue.day .more-button{color:#000}.rtl-container.blue.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.blue.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.blue.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.blue.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.blue.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.blue.day .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.blue.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.blue.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.blue.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.blue.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.blue.day .tab-badge .mat-badge-content.mat-badge-active{background:#2196f3}.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.blue.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.blue.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.blue.day .rtl-select-overlay{min-width:7rem}}.rtl-container.blue.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.blue.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.blue.day .table-actions-button{min-width:8rem}.rtl-container.blue.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.blue.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.blue.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.blue.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#90caf9!important}.rtl-container.blue.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#1e88e5!important}.rtl-container.blue.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.blue.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.blue.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.blue.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.blue.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.blue.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.blue.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.blue.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.blue.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.blue.day .color-warn{color:#b00020}.rtl-container.blue.day .fill-warn{fill:#b00020}.rtl-container.blue.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.blue.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.blue.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.blue.day .alert.alert-info a{color:#004085}.rtl-container.blue.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.blue.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.blue.day .alert.alert-warn a{color:#856404}.rtl-container.blue.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.blue.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.blue.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.blue.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.blue.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.blue.day .failed-status{color:#b00020}.rtl-container.blue.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.blue.day .svg-fill-primary{fill:#2196f3}.rtl-container.blue.day .svg-fill-primary-lighter{fill:#90caf9}.rtl-container.blue.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.blue.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.blue.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.blue.day .dashboard-card-content .underline,.rtl-container.blue.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.blue.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.blue.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#2196f3}.rtl-container.blue.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.blue.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#2196f3}.rtl-container.blue.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.blue.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#2196f3}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon{color:#2196f3}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon path{fill:#2196f3}.rtl-container.blue.day .fa-icon-primary{color:#2196f3}.rtl-container.blue.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day ngx-charts-bar-vertical text,.rtl-container.blue.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.blue.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.blue.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.blue.day .mat-paginator-container{padding:0}.rtl-container.blue.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.blue.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.blue.day .invoice-animation-div .particles-circle{position:absolute;background-color:#2196f3;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #2196f3;background-color:transparent}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.blue.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.blue.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.blue.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.blue.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.blue.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #1976d2;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-filled-caret-color: #1976d2;--mat-form-field-filled-focus-active-indicator-color: #1976d2;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-outlined-caret-color: #1976d2;--mat-form-field-outlined-focus-outline-color: #1976d2;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #1976d2;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #1976d2;--mat-slide-toggle-selected-handle-color: #1976d2;--mat-slide-toggle-selected-hover-state-layer-color: #1976d2;--mat-slide-toggle-selected-pressed-state-layer-color: #1976d2;--mat-slide-toggle-selected-focus-handle-color: #1976d2;--mat-slide-toggle-selected-hover-handle-color: #1976d2;--mat-slide-toggle-selected-pressed-handle-color: #1976d2;--mat-slide-toggle-selected-focus-track-color: #1e88e5;--mat-slide-toggle-selected-hover-track-color: #1e88e5;--mat-slide-toggle-selected-pressed-track-color: #1e88e5;--mat-slide-toggle-selected-track-color: #1e88e5;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #1976d2;--mat-slider-focus-handle-color: #1976d2;--mat-slider-handle-color: #1976d2;--mat-slider-hover-handle-color: #1976d2;--mat-slider-focus-state-layer-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #1976d2 4%, transparent);--mat-slider-inactive-track-color: #1976d2;--mat-slider-ripple-color: #1976d2;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #1976d2;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #1e88e5;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #1976d2;--mat-badge-background-color: #1976d2;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #1976d2 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #1976d2;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #1976d2 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #1976d2 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #1976d2;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #1976d2;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #1976d2;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #1976d2;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.blue.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.blue.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.blue.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #1976d2;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #1976d2;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.blue.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.blue.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.blue.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #1976d2;--mat-progress-bar-track-color: rgba(25, 118, 210, .25)}.rtl-container.blue.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.blue.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.blue.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.blue.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.blue.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.blue.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.blue.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #1976d2;--mat-chip-elevated-disabled-container-color: #1976d2;--mat-chip-elevated-selected-container-color: #1976d2;--mat-chip-flat-disabled-selected-container-color: #1976d2;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.blue.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.blue.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.blue.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #1976d2;--mat-radio-selected-hover-icon-color: #1976d2;--mat-radio-selected-icon-color: #1976d2;--mat-radio-selected-pressed-icon-color: #1976d2;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.blue.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.blue.night .mdc-list-item__start,.rtl-container.blue.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #1976d2;--mat-radio-selected-hover-icon-color: #1976d2;--mat-radio-selected-icon-color: #1976d2;--mat-radio-selected-pressed-icon-color: #1976d2;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-accent .mdc-list-item__start,.rtl-container.blue.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-warn .mdc-list-item__start,.rtl-container.blue.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #1976d2;--mat-checkbox-selected-hover-icon-color: #1976d2;--mat-checkbox-selected-icon-color: #1976d2;--mat-checkbox-selected-pressed-icon-color: #1976d2;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #1976d2;--mat-checkbox-selected-hover-state-layer-color: #1976d2;--mat-checkbox-selected-pressed-state-layer-color: #1976d2;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#1976d2}.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.blue.night .mat-mdc-tab-group,.rtl-container.blue.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #1976d2;--mat-tab-active-ripple-color: #1976d2;--mat-tab-inactive-ripple-color: #1976d2;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #1976d2;--mat-tab-active-hover-label-text-color: #1976d2;--mat-tab-active-focus-indicator-color: #1976d2;--mat-tab-active-hover-indicator-color: #1976d2;--mat-tab-active-indicator-color: #1976d2}.rtl-container.blue.night .mat-mdc-tab-group.mat-accent,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.blue.night .mat-mdc-tab-group.mat-warn,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #1976d2;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.blue.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #1976d2;--mat-checkbox-selected-hover-icon-color: #1976d2;--mat-checkbox-selected-icon-color: #1976d2;--mat-checkbox-selected-pressed-icon-color: #1976d2;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #1976d2;--mat-checkbox-selected-hover-state-layer-color: #1976d2;--mat-checkbox-selected-pressed-state-layer-color: #1976d2;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-button.mat-primary,.rtl-container.blue.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.blue.night .mat-mdc-raised-button.mat-primary,.rtl-container.blue.night .mat-mdc-outlined-button.mat-primary,.rtl-container.blue.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #1976d2;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #1976d2;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-button-outlined-state-layer-color: #1976d2;--mat-button-protected-container-color: #1976d2;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #1976d2;--mat-button-text-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-button-text-state-layer-color: #1976d2;--mat-button-tonal-container-color: #1976d2;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.blue.night .mat-mdc-button.mat-accent,.rtl-container.blue.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.blue.night .mat-mdc-raised-button.mat-accent,.rtl-container.blue.night .mat-mdc-outlined-button.mat-accent,.rtl-container.blue.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.blue.night .mat-mdc-button.mat-warn,.rtl-container.blue.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.blue.night .mat-mdc-raised-button.mat-warn,.rtl-container.blue.night .mat-mdc-outlined-button.mat-warn,.rtl-container.blue.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.blue.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #1976d2;--mat-icon-button-state-layer-color: #1976d2;--mat-icon-button-ripple-color: color-mix(in srgb, #1976d2 12%, transparent)}.rtl-container.blue.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.blue.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.blue.night .mat-mdc-fab.mat-primary,.rtl-container.blue.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #1976d2;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-fab-small-container-color: #1976d2;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.blue.night .mat-mdc-fab.mat-accent,.rtl-container.blue.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.blue.night .mat-mdc-fab.mat-warn,.rtl-container.blue.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.blue.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.blue.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.blue.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.blue.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.blue.night .mat-datepicker-content.mat-accent,.rtl-container.blue.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.blue.night .mat-datepicker-content.mat-warn,.rtl-container.blue.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.blue.night .mat-icon.mat-primary{--mat-icon-color: #1976d2}.rtl-container.blue.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.blue.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.blue.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.blue.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #1976d2;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.blue.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.blue.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.blue.night .mat-primary{color:#448aff!important}.rtl-container.blue.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.blue.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.blue.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.blue.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.blue.night .bg-primary{background-color:#2196f3;color:#fff}.rtl-container.blue.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#448aff}.rtl-container.blue.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#448aff}.rtl-container.blue.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#448aff}.rtl-container.blue.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.blue.night .currency-icon path,.rtl-container.blue.night .currency-icon polygon{fill:#fff}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.blue.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#448aff}.rtl-container.blue.night .cc-data-block .cc-data-title{color:#448aff}.rtl-container.blue.night .mat-stroked-button.mat-primary{border-color:#448aff;color:#448aff}.rtl-container.blue.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.blue.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.blue.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.blue.night .active-link,.rtl-container.blue.night .active-link .fa-icon-small,.rtl-container.blue.night .mat-select-panel .mat-option.mat-active,.rtl-container.blue.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#448aff;font-weight:500;cursor:pointer;fill:#448aff}.rtl-container.blue.night .help-expansion .mat-expansion-panel-header,.rtl-container.blue.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.blue.night .help-expansion .mat-expansion-indicator:after,.rtl-container.blue.night .help-expansion .mat-expansion-panel-content,.rtl-container.blue.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.blue.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.blue.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.blue.night .mat-expansion-panel,.rtl-container.blue.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.blue.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.blue.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.blue.night .mdc-data-table__header-cell,.rtl-container.blue.night .mat-mdc-paginator,.rtl-container.blue.night .mat-mdc-form-field-focus-overlay,.rtl-container.blue.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.blue.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.blue.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#448aff}.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.blue.night .svg-donation{opacity:1!important}.rtl-container.blue.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#448aff!important}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#448aff!important}.rtl-container.blue.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#448aff}.rtl-container.blue.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#2196f3}.rtl-container.blue.night a{color:#448aff!important;cursor:pointer}.rtl-container.blue.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.blue.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.blue.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.blue.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.blue.night .mat-mdc-select-placeholder,.rtl-container.blue.night .mat-mdc-select-value,.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#448aff}.rtl-container.blue.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.blue.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#448aff}.rtl-container.blue.night .mat-tree-node:hover,.rtl-container.blue.night .mat-nested-tree-node-parent:hover,.rtl-container.blue.night .mat-select-panel .mat-option:hover,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#448aff;cursor:pointer;background:#ffffff0f}.rtl-container.blue.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.blue.night .mat-tree-node:hover .mat-icon,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.blue.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.blue.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#448aff}.rtl-container.blue.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.blue.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.blue.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.blue.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#448aff}.rtl-container.blue.night .mat-tree-node:hover .boltz-icon,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.blue.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#448aff}.rtl-container.blue.night .mat-tree-node .sidenav-img,.rtl-container.blue.night .mat-nested-tree-node .sidenav-img,.rtl-container.blue.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.blue.night .page-title-container .page-title-img,.rtl-container.blue.night svg.top-icon-small{fill:#fff}.rtl-container.blue.night .selected-color{border-color:#90caf9}.rtl-container.blue.night .mat-progress-bar-fill:after{background-color:#1e88e5}.rtl-container.blue.night .chart-legend .legend-label:hover,.rtl-container.blue.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.blue.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.blue.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#448aff}.rtl-container.blue.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.blue.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#448aff}.rtl-container.blue.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#448aff}.rtl-container.blue.night .mat-select-panel{background-color:#121212}.rtl-container.blue.night .mat-tree{background:#121212}.rtl-container.blue.night h4{color:#448aff}.rtl-container.blue.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.blue.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.blue.night .dashboard-info-title{color:#448aff}.rtl-container.blue.night .dashboard-info-value,.rtl-container.blue.night .dashboard-capacity-header{color:#fff}.rtl-container.blue.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.blue.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.blue.night .color-primary{color:#448aff!important}.rtl-container.blue.night .dot-primary{background-color:#448aff!important}.rtl-container.blue.night .dot-primary-lighter{background-color:#2196f3!important}.rtl-container.blue.night .mat-stepper-vertical{background-color:#121212}.rtl-container.blue.night .spinner-container h2{color:#448aff}.rtl-container.blue.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.blue.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.blue.night svg .boltz-icon-fill{fill:#fff}.rtl-container.blue.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-primary-lighter{stroke:#90caf9}.rtl-container.blue.night svg .stroke-color-primary{stroke:#2196f3}.rtl-container.blue.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.blue.night svg .fill-color-0{fill:#171717}.rtl-container.blue.night svg .fill-color-1{fill:#232323}.rtl-container.blue.night svg .fill-color-2{fill:#222}.rtl-container.blue.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.blue.night svg .fill-color-4{fill:#383838}.rtl-container.blue.night svg .fill-color-5{fill:#555}.rtl-container.blue.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.blue.night svg .fill-color-7{fill:#202020}.rtl-container.blue.night svg .fill-color-8{fill:#242424}.rtl-container.blue.night svg .fill-color-9{fill:#262626}.rtl-container.blue.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.blue.night svg .fill-color-11{fill:#171717}.rtl-container.blue.night svg .fill-color-12{fill:#ccc}.rtl-container.blue.night svg .fill-color-13{fill:#adadad}.rtl-container.blue.night svg .fill-color-14{fill:#ababab}.rtl-container.blue.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.blue.night svg .fill-color-16{fill:#707070}.rtl-container.blue.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.blue.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.blue.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.blue.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.blue.night svg .fill-color-21{fill:#cacaca}.rtl-container.blue.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.blue.night svg .fill-color-23{fill:#777}.rtl-container.blue.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.blue.night svg .fill-color-25{fill:#252525}.rtl-container.blue.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.blue.night svg .fill-color-27{fill:#000}.rtl-container.blue.night svg .fill-color-28{fill:#313131}.rtl-container.blue.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.blue.night svg .fill-color-30{fill:#fff}.rtl-container.blue.night svg .fill-color-31{fill:#2196f3}.rtl-container.blue.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.blue.night svg .fill-color-primary{fill:#2196f3}.rtl-container.blue.night svg .fill-color-primary-lighter{fill:#90caf9}.rtl-container.blue.night svg .fill-color-primary-darker{fill:#448aff}.rtl-container.blue.night .mat-select-value,.rtl-container.blue.night .mat-select-arrow{color:#fff}.rtl-container.blue.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.blue.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.blue.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.blue.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.blue.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.blue.night .mat-button.mat-primary,.rtl-container.blue.night .mat-icon-button.mat-primary,.rtl-container.blue.night .mat-stroked-button.mat-primary{color:#448aff}.rtl-container.blue.night tr.alert.alert-warn .mat-cell,.rtl-container.blue.night tr.alert.alert-warn .mat-header-cell,.rtl-container.blue.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.blue.night .material-icons.info-icon{font-size:100%;color:#448aff}.rtl-container.blue.night .material-icons.info-icon.info-icon-primary{color:#448aff}.rtl-container.blue.night .material-icons.info-icon.info-icon-text,.rtl-container.blue.night .material-icons.info-icon.arrow-downward,.rtl-container.blue.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.blue.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#448aff}.rtl-container.blue.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#1565c0}.rtl-container.blue.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#448aff}.rtl-container.blue.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.blue.night .mat-progress-bar-buffer{background-color:#bbdefb}.rtl-container.blue.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.blue.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.blue.night .foreground.mat-progress-spinner circle,.rtl-container.blue.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.blue.night .mat-toolbar-row,.rtl-container.blue.night .mat-toolbar-single-row{height:4rem}.rtl-container.blue.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.blue.night a{color:#2196f3}.rtl-container.blue.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.blue.night .h-active-link{border-bottom:2px solid white}.rtl-container.blue.night .mat-icon-36{color:#ffffffb3}.rtl-container.blue.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.blue.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.blue.night .genseed-message{width:10%;color:#2196f3}.rtl-container.blue.night .border-primary{border:1px solid #2196f3}.rtl-container.blue.night .border-accent{border:1px solid #aaaaaa}.rtl-container.blue.night .border-warn{border:1px solid #b00020}.rtl-container.blue.night .material-icons.primary{color:#2196f3}.rtl-container.blue.night .material-icons.accent{color:#aaa}.rtl-container.blue.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.blue.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.blue.night .row-disabled{background-color:gray}.rtl-container.blue.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.blue.night .mat-mdc-card-content,.rtl-container.blue.night .mat-mdc-card-subtitle,.rtl-container.blue.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.blue.night .mat-menu-panel{min-width:4rem}.rtl-container.blue.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.blue.night .horizontal-button:hover{background:#90caf9;color:#aaa}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#2196f3}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.blue.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.blue.night .mat-button,.rtl-container.blue.night .mat-icon-button,.rtl-container.blue.night .mat-stroked-button,.rtl-container.blue.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.blue.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.blue.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.blue.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.blue.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.blue.night .mat-cell,.rtl-container.blue.night .mat-header-cell,.rtl-container.blue.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.blue.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.blue.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#2196f3}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#2196f3;opacity:1}.rtl-container.blue.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.blue.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.blue.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.blue.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.blue.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.blue.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.blue.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.blue.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.blue.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.blue.night .more-button{color:#fff}.rtl-container.blue.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.blue.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.blue.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.blue.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.blue.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.blue.night .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.blue.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.blue.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.blue.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.blue.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.blue.night .tab-badge .mat-badge-content.mat-badge-active{background:#2196f3}.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.blue.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.blue.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.blue.night .rtl-select-overlay{min-width:7rem}}.rtl-container.blue.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.blue.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.blue.night .table-actions-button{min-width:8rem}.rtl-container.blue.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.blue.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.blue.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.blue.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#90caf9!important}.rtl-container.blue.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#1e88e5!important}.rtl-container.blue.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.blue.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.blue.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.blue.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.blue.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.blue.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.blue.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.blue.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.blue.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.blue.night .color-warn{color:#b00020}.rtl-container.blue.night .fill-warn{fill:#b00020}.rtl-container.blue.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.blue.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.blue.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.blue.night .alert.alert-info a{color:#004085}.rtl-container.blue.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.blue.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.blue.night .alert.alert-warn a{color:#856404}.rtl-container.blue.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.blue.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.blue.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.blue.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.blue.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.blue.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.blue.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.blue.night .failed-status{color:#b00020}.rtl-container.blue.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.blue.night .svg-fill-primary{fill:#2196f3}.rtl-container.blue.night .svg-fill-primary-lighter{fill:#90caf9}.rtl-container.blue.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.blue.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.blue.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.blue.night .dashboard-card-content .underline,.rtl-container.blue.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.blue.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.blue.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#2196f3}.rtl-container.blue.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.blue.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#2196f3}.rtl-container.blue.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.blue.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#2196f3}.rtl-container.blue.night .mat-mdc-form-field-hint .currency-icon{color:#2196f3}.rtl-container.blue.night .mat-mdc-form-field-hint .currency-icon path{fill:#2196f3}.rtl-container.blue.night .fa-icon-primary{color:#2196f3}.rtl-container.blue.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night ngx-charts-bar-vertical text,.rtl-container.blue.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.blue.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.blue.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.blue.night .mat-paginator-container{padding:0}.rtl-container.blue.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.blue.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.blue.night .invoice-animation-div .particles-circle{position:absolute;background-color:#2196f3;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #2196f3;background-color:transparent}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.blue.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.blue.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.blue.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.blue.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.indigo.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #3f51b5;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-filled-caret-color: #3f51b5;--mat-form-field-filled-focus-active-indicator-color: #3f51b5;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-outlined-caret-color: #3f51b5;--mat-form-field-outlined-focus-outline-color: #3f51b5;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #3f51b5;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #3f51b5;--mat-slide-toggle-selected-handle-color: #3f51b5;--mat-slide-toggle-selected-hover-state-layer-color: #3f51b5;--mat-slide-toggle-selected-pressed-state-layer-color: #3f51b5;--mat-slide-toggle-selected-focus-handle-color: #3f51b5;--mat-slide-toggle-selected-hover-handle-color: #3f51b5;--mat-slide-toggle-selected-pressed-handle-color: #3f51b5;--mat-slide-toggle-selected-focus-track-color: #7986cb;--mat-slide-toggle-selected-hover-track-color: #7986cb;--mat-slide-toggle-selected-pressed-track-color: #7986cb;--mat-slide-toggle-selected-track-color: #7986cb;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #3f51b5;--mat-slider-focus-handle-color: #3f51b5;--mat-slider-handle-color: #3f51b5;--mat-slider-hover-handle-color: #3f51b5;--mat-slider-focus-state-layer-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #3f51b5 4%, transparent);--mat-slider-inactive-track-color: #3f51b5;--mat-slider-ripple-color: #3f51b5;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #3f51b5;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #7986cb;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #3f51b5;--mat-badge-background-color: #3f51b5;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #3f51b5 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #3f51b5 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #3f51b5 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #3f51b5;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #3f51b5;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #3f51b5;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #3f51b5;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.indigo.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.indigo.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.indigo.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #3f51b5;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #3f51b5;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.indigo.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.indigo.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.indigo.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #3f51b5;--mat-progress-bar-track-color: rgba(63, 81, 181, .25)}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.indigo.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.indigo.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.indigo.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.indigo.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.indigo.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #3f51b5;--mat-chip-elevated-disabled-container-color: #3f51b5;--mat-chip-elevated-selected-container-color: #3f51b5;--mat-chip-flat-disabled-selected-container-color: #3f51b5;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.indigo.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.indigo.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.indigo.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #3f51b5;--mat-radio-selected-hover-icon-color: #3f51b5;--mat-radio-selected-icon-color: #3f51b5;--mat-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.indigo.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.indigo.day .mdc-list-item__start,.rtl-container.indigo.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #3f51b5;--mat-radio-selected-hover-icon-color: #3f51b5;--mat-radio-selected-icon-color: #3f51b5;--mat-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-accent .mdc-list-item__start,.rtl-container.indigo.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-warn .mdc-list-item__start,.rtl-container.indigo.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #3f51b5;--mat-checkbox-selected-hover-icon-color: #3f51b5;--mat-checkbox-selected-icon-color: #3f51b5;--mat-checkbox-selected-pressed-icon-color: #3f51b5;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #3f51b5;--mat-checkbox-selected-hover-state-layer-color: #3f51b5;--mat-checkbox-selected-pressed-state-layer-color: #3f51b5;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.indigo.day .mat-mdc-tab-group,.rtl-container.indigo.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #3f51b5;--mat-tab-active-ripple-color: #3f51b5;--mat-tab-inactive-ripple-color: #3f51b5;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #3f51b5;--mat-tab-active-hover-label-text-color: #3f51b5;--mat-tab-active-focus-indicator-color: #3f51b5;--mat-tab-active-hover-indicator-color: #3f51b5;--mat-tab-active-indicator-color: #3f51b5}.rtl-container.indigo.day .mat-mdc-tab-group.mat-accent,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.indigo.day .mat-mdc-tab-group.mat-warn,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #3f51b5;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.indigo.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #3f51b5;--mat-checkbox-selected-hover-icon-color: #3f51b5;--mat-checkbox-selected-icon-color: #3f51b5;--mat-checkbox-selected-pressed-icon-color: #3f51b5;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #3f51b5;--mat-checkbox-selected-hover-state-layer-color: #3f51b5;--mat-checkbox-selected-pressed-state-layer-color: #3f51b5;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-button.mat-primary,.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.indigo.day .mat-mdc-raised-button.mat-primary,.rtl-container.indigo.day .mat-mdc-outlined-button.mat-primary,.rtl-container.indigo.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #3f51b5;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #3f51b5;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-button-outlined-state-layer-color: #3f51b5;--mat-button-protected-container-color: #3f51b5;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #3f51b5;--mat-button-text-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-button-text-state-layer-color: #3f51b5;--mat-button-tonal-container-color: #3f51b5;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.day .mat-mdc-button.mat-accent,.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.indigo.day .mat-mdc-raised-button.mat-accent,.rtl-container.indigo.day .mat-mdc-outlined-button.mat-accent,.rtl-container.indigo.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.indigo.day .mat-mdc-button.mat-warn,.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.indigo.day .mat-mdc-raised-button.mat-warn,.rtl-container.indigo.day .mat-mdc-outlined-button.mat-warn,.rtl-container.indigo.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.indigo.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #3f51b5;--mat-icon-button-state-layer-color: #3f51b5;--mat-icon-button-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.indigo.day .mat-mdc-fab.mat-primary,.rtl-container.indigo.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #3f51b5;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-fab-small-container-color: #3f51b5;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.day .mat-mdc-fab.mat-accent,.rtl-container.indigo.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.indigo.day .mat-mdc-fab.mat-warn,.rtl-container.indigo.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.indigo.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.indigo.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.indigo.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.indigo.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.indigo.day .mat-datepicker-content.mat-accent,.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-datepicker-content.mat-warn,.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-icon.mat-primary{--mat-icon-color: #3f51b5}.rtl-container.indigo.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.indigo.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.indigo.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #3f51b5;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.indigo.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.indigo.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.indigo.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.indigo.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.indigo.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.indigo.day .bg-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.indigo.day .page-title,.rtl-container.indigo.day .mat-mdc-select-value,.rtl-container.indigo.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.indigo.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.indigo.day .help-expansion .mat-expansion-indicator:after,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-content,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#3f51b5}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.indigo.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#3f51b5}.rtl-container.indigo.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.indigo.day .mat-tree-node:hover,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover,.rtl-container.indigo.day .mat-select-panel .mat-option:hover,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#3f51b5;cursor:pointer}.rtl-container.indigo.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.indigo.day .mat-tree-node:hover .mat-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#3f51b5}.rtl-container.indigo.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#3f51b5}.rtl-container.indigo.day .spinner-container h2{color:#fff}.rtl-container.indigo.day .ng-fa-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.indigo.day .mat-form-field-suffix{color:#0000008a}.rtl-container.indigo.day .mat-stroked-button.mat-primary{border-color:#3f51b5}.rtl-container.indigo.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.indigo.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.indigo.day .selected-color{border-color:#9fa8da}.rtl-container.indigo.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.indigo.day table.mat-mdc-table thead tr th,.rtl-container.indigo.day .page-title-container,.rtl-container.indigo.day .page-sub-title-container{color:#0000008a}.rtl-container.indigo.day .page-title-container .page-title-img,.rtl-container.indigo.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.indigo.day .page-title-container .mat-input-element,.rtl-container.indigo.day .page-title-container .mat-radio-label-content,.rtl-container.indigo.day .page-title-container .theme-name,.rtl-container.indigo.day .page-sub-title-container .mat-input-element,.rtl-container.indigo.day .page-sub-title-container .mat-radio-label-content,.rtl-container.indigo.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.indigo.day .cc-data-block .cc-data-title{color:#3f51b5}.rtl-container.indigo.day .active-link,.rtl-container.indigo.day .active-link .fa-icon-small{color:#3f51b5;font-weight:500;cursor:pointer;fill:#3f51b5}.rtl-container.indigo.day .mat-tree-node:hover,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover,.rtl-container.indigo.day .mat-select-panel .mat-option:hover,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#3f51b5;cursor:pointer;background:#0000000a}.rtl-container.indigo.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.indigo.day .mat-tree-node:hover .mat-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#3f51b5}.rtl-container.indigo.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#3f51b5}.rtl-container.indigo.day .mat-tree-node .sidenav-img,.rtl-container.indigo.day .mat-nested-tree-node .sidenav-img,.rtl-container.indigo.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.indigo.day .page-title-container .page-title-img,.rtl-container.indigo.day svg.top-icon-small{fill:#000000de}.rtl-container.indigo.day .mat-progress-bar-fill:after{background-color:#1a237e}.rtl-container.indigo.day .modal-qr-code-container{background:#0000001f}.rtl-container.indigo.day .mdc-tab__text-label,.rtl-container.indigo.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.indigo.day .mat-mdc-card,.rtl-container.indigo.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.indigo.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.indigo.day .dashboard-info-title{color:#3f51b5}.rtl-container.indigo.day .dashboard-capacity-header,.rtl-container.indigo.day .dashboard-info-value{color:#0000008a}.rtl-container.indigo.day .color-primary{color:#3f51b5!important}.rtl-container.indigo.day .dot-primary{background-color:#3f51b5!important}.rtl-container.indigo.day .dot-primary-lighter{background-color:#9fa8da!important}.rtl-container.indigo.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-mdc-form-field-hint{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.indigo.day .mat-mdc-form-field-hint fa-icon svg path{fill:#3f51b5}.rtl-container.indigo.day .currency-icon path,.rtl-container.indigo.day .currency-icon polygon{fill:#0000008a}.rtl-container.indigo.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.indigo.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.indigo.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-primary-lighter{stroke:#9fa8da}.rtl-container.indigo.day svg .stroke-color-primary{stroke:#3f51b5}.rtl-container.indigo.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.indigo.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-1{fill:#fff}.rtl-container.indigo.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.indigo.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-6{fill:#fff}.rtl-container.indigo.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-9{fill:#fff}.rtl-container.indigo.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.indigo.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.indigo.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-16{fill:#404040}.rtl-container.indigo.day svg .fill-color-17{fill:#404040}.rtl-container.indigo.day svg .fill-color-18{fill:#000}.rtl-container.indigo.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-24{fill:#000}.rtl-container.indigo.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.indigo.day svg .fill-color-27{fill:#000}.rtl-container.indigo.day svg .fill-color-28{fill:#313131}.rtl-container.indigo.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-30{fill:#fff}.rtl-container.indigo.day svg .fill-color-31{fill:#3f51b5}.rtl-container.indigo.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.indigo.day svg .fill-color-primary{fill:#3f51b5}.rtl-container.indigo.day svg .fill-color-primary-lighter{fill:#9fa8da}.rtl-container.indigo.day svg .fill-color-primary-darker{fill:#3f51b5}.rtl-container.indigo.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.indigo.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.indigo.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#3f51b5}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.indigo.day .material-icons.mat-icon-no-color,.rtl-container.indigo.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.indigo.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.indigo.day .material-icons.info-icon.info-icon-primary{color:#3f51b5}.rtl-container.indigo.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.indigo.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.indigo.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.indigo.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.indigo.day .material-icons.info-icon.arrow-downward,.rtl-container.indigo.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.indigo.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#3f51b5}.rtl-container.indigo.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#1a237e}.rtl-container.indigo.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#9fa8da}.rtl-container.indigo.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.indigo.day .mat-progress-bar-buffer{background-color:#c5cae9}.rtl-container.indigo.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.indigo.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.indigo.day .foreground.mat-progress-spinner circle,.rtl-container.indigo.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.indigo.day .mat-toolbar-row,.rtl-container.indigo.day .mat-toolbar-single-row{height:4rem}.rtl-container.indigo.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day a{color:#3f51b5}.rtl-container.indigo.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.indigo.day .h-active-link{border-bottom:2px solid white}.rtl-container.indigo.day .mat-icon-36{color:#0000008a}.rtl-container.indigo.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.indigo.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.indigo.day .genseed-message{width:10%;color:#3f51b5}.rtl-container.indigo.day .border-primary{border:1px solid #3f51b5}.rtl-container.indigo.day .border-accent{border:1px solid #9e9e9e}.rtl-container.indigo.day .border-warn{border:1px solid #b00020}.rtl-container.indigo.day .material-icons.primary{color:#3f51b5}.rtl-container.indigo.day .material-icons.accent{color:#9e9e9e}.rtl-container.indigo.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.indigo.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.indigo.day .row-disabled{background-color:gray}.rtl-container.indigo.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.indigo.day .mat-mdc-card-content,.rtl-container.indigo.day .mat-mdc-card-subtitle,.rtl-container.indigo.day .mat-mdc-card-title{color:#0000008a}.rtl-container.indigo.day .mat-menu-panel{min-width:4rem}.rtl-container.indigo.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.indigo.day .horizontal-button:hover{background:#9fa8da;color:#9e9e9e}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#3f51b5}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.indigo.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.indigo.day .mat-button,.rtl-container.indigo.day .mat-icon-button,.rtl-container.indigo.day .mat-stroked-button,.rtl-container.indigo.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.indigo.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.indigo.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.indigo.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.indigo.day .cc-data-block .cc-data-value{color:#000}.rtl-container.indigo.day .mat-cell,.rtl-container.indigo.day .mat-header-cell,.rtl-container.indigo.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.indigo.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.indigo.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#3f51b5}.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#3f51b5;opacity:1}.rtl-container.indigo.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.indigo.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.indigo.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.indigo.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.indigo.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.indigo.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.indigo.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.indigo.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.indigo.day .more-button{color:#000}.rtl-container.indigo.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.indigo.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.indigo.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.indigo.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.indigo.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.indigo.day .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.indigo.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.indigo.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.indigo.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.indigo.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.indigo.day .tab-badge .mat-badge-content.mat-badge-active{background:#3f51b5}.rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.indigo.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.indigo.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.indigo.day .rtl-select-overlay{min-width:7rem}}.rtl-container.indigo.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.indigo.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.indigo.day .table-actions-button{min-width:8rem}.rtl-container.indigo.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.indigo.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.indigo.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.indigo.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#9fa8da!important}.rtl-container.indigo.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#3949ab!important}.rtl-container.indigo.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.indigo.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.indigo.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.indigo.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.indigo.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.indigo.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.indigo.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.indigo.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.indigo.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.indigo.day .color-warn{color:#b00020}.rtl-container.indigo.day .fill-warn{fill:#b00020}.rtl-container.indigo.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.indigo.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.indigo.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.indigo.day .alert.alert-info a{color:#004085}.rtl-container.indigo.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.indigo.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.indigo.day .alert.alert-warn a{color:#856404}.rtl-container.indigo.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.indigo.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.indigo.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.indigo.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.indigo.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.indigo.day .failed-status{color:#b00020}.rtl-container.indigo.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.indigo.day .svg-fill-primary{fill:#3f51b5}.rtl-container.indigo.day .svg-fill-primary-lighter{fill:#9fa8da}.rtl-container.indigo.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.indigo.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.indigo.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.indigo.day .dashboard-card-content .underline,.rtl-container.indigo.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.indigo.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#3f51b5}.rtl-container.indigo.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#3f51b5}.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon path{fill:#3f51b5}.rtl-container.indigo.day .fa-icon-primary{color:#3f51b5}.rtl-container.indigo.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day ngx-charts-bar-vertical text,.rtl-container.indigo.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.indigo.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.indigo.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.indigo.day .mat-paginator-container{padding:0}.rtl-container.indigo.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.indigo.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.indigo.day .invoice-animation-div .particles-circle{position:absolute;background-color:#3f51b5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #3f51b5;background-color:transparent}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.indigo.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.indigo.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.indigo.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.indigo.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.indigo.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #3f51b5;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-filled-caret-color: #3f51b5;--mat-form-field-filled-focus-active-indicator-color: #3f51b5;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-outlined-caret-color: #3f51b5;--mat-form-field-outlined-focus-outline-color: #3f51b5;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #3f51b5;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #3f51b5;--mat-slide-toggle-selected-handle-color: #3f51b5;--mat-slide-toggle-selected-hover-state-layer-color: #3f51b5;--mat-slide-toggle-selected-pressed-state-layer-color: #3f51b5;--mat-slide-toggle-selected-focus-handle-color: #3f51b5;--mat-slide-toggle-selected-hover-handle-color: #3f51b5;--mat-slide-toggle-selected-pressed-handle-color: #3f51b5;--mat-slide-toggle-selected-focus-track-color: #3949ab;--mat-slide-toggle-selected-hover-track-color: #3949ab;--mat-slide-toggle-selected-pressed-track-color: #3949ab;--mat-slide-toggle-selected-track-color: #3949ab;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #3f51b5;--mat-slider-focus-handle-color: #3f51b5;--mat-slider-handle-color: #3f51b5;--mat-slider-hover-handle-color: #3f51b5;--mat-slider-focus-state-layer-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #3f51b5 4%, transparent);--mat-slider-inactive-track-color: #3f51b5;--mat-slider-ripple-color: #3f51b5;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #3f51b5;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #3949ab;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #3f51b5;--mat-badge-background-color: #3f51b5;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #3f51b5 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #3f51b5 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #3f51b5 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #3f51b5;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #3f51b5;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #3f51b5;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #3f51b5;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.indigo.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.indigo.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.indigo.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #3f51b5;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #3f51b5;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.indigo.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.indigo.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.indigo.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #3f51b5;--mat-progress-bar-track-color: rgba(63, 81, 181, .25)}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.indigo.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.indigo.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.indigo.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.indigo.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.indigo.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #3f51b5;--mat-chip-elevated-disabled-container-color: #3f51b5;--mat-chip-elevated-selected-container-color: #3f51b5;--mat-chip-flat-disabled-selected-container-color: #3f51b5;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.indigo.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.indigo.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.indigo.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #3f51b5;--mat-radio-selected-hover-icon-color: #3f51b5;--mat-radio-selected-icon-color: #3f51b5;--mat-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.indigo.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.indigo.night .mdc-list-item__start,.rtl-container.indigo.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #3f51b5;--mat-radio-selected-hover-icon-color: #3f51b5;--mat-radio-selected-icon-color: #3f51b5;--mat-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-accent .mdc-list-item__start,.rtl-container.indigo.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-warn .mdc-list-item__start,.rtl-container.indigo.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #3f51b5;--mat-checkbox-selected-hover-icon-color: #3f51b5;--mat-checkbox-selected-icon-color: #3f51b5;--mat-checkbox-selected-pressed-icon-color: #3f51b5;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #3f51b5;--mat-checkbox-selected-hover-state-layer-color: #3f51b5;--mat-checkbox-selected-pressed-state-layer-color: #3f51b5;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#3f51b5}.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.indigo.night .mat-mdc-tab-group,.rtl-container.indigo.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #3f51b5;--mat-tab-active-ripple-color: #3f51b5;--mat-tab-inactive-ripple-color: #3f51b5;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #3f51b5;--mat-tab-active-hover-label-text-color: #3f51b5;--mat-tab-active-focus-indicator-color: #3f51b5;--mat-tab-active-hover-indicator-color: #3f51b5;--mat-tab-active-indicator-color: #3f51b5}.rtl-container.indigo.night .mat-mdc-tab-group.mat-accent,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.indigo.night .mat-mdc-tab-group.mat-warn,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #3f51b5;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.indigo.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #3f51b5;--mat-checkbox-selected-hover-icon-color: #3f51b5;--mat-checkbox-selected-icon-color: #3f51b5;--mat-checkbox-selected-pressed-icon-color: #3f51b5;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #3f51b5;--mat-checkbox-selected-hover-state-layer-color: #3f51b5;--mat-checkbox-selected-pressed-state-layer-color: #3f51b5;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-button.mat-primary,.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.indigo.night .mat-mdc-raised-button.mat-primary,.rtl-container.indigo.night .mat-mdc-outlined-button.mat-primary,.rtl-container.indigo.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #3f51b5;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #3f51b5;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-button-outlined-state-layer-color: #3f51b5;--mat-button-protected-container-color: #3f51b5;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #3f51b5;--mat-button-text-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-button-text-state-layer-color: #3f51b5;--mat-button-tonal-container-color: #3f51b5;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.night .mat-mdc-button.mat-accent,.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.indigo.night .mat-mdc-raised-button.mat-accent,.rtl-container.indigo.night .mat-mdc-outlined-button.mat-accent,.rtl-container.indigo.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.indigo.night .mat-mdc-button.mat-warn,.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.indigo.night .mat-mdc-raised-button.mat-warn,.rtl-container.indigo.night .mat-mdc-outlined-button.mat-warn,.rtl-container.indigo.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #3f51b5;--mat-icon-button-state-layer-color: #3f51b5;--mat-icon-button-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.indigo.night .mat-mdc-fab.mat-primary,.rtl-container.indigo.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #3f51b5;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-fab-small-container-color: #3f51b5;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.night .mat-mdc-fab.mat-accent,.rtl-container.indigo.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.indigo.night .mat-mdc-fab.mat-warn,.rtl-container.indigo.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.indigo.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.indigo.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.indigo.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.indigo.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.indigo.night .mat-datepicker-content.mat-accent,.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.indigo.night .mat-datepicker-content.mat-warn,.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.indigo.night .mat-icon.mat-primary{--mat-icon-color: #3f51b5}.rtl-container.indigo.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.indigo.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.indigo.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.indigo.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #3f51b5;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.indigo.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.indigo.night .mat-primary{color:#536dfe!important}.rtl-container.indigo.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.indigo.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.indigo.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.indigo.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.indigo.night .bg-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.indigo.night .currency-icon path,.rtl-container.indigo.night .currency-icon polygon{fill:#fff}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.indigo.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#536dfe}.rtl-container.indigo.night .cc-data-block .cc-data-title{color:#536dfe}.rtl-container.indigo.night .mat-stroked-button.mat-primary{border-color:#536dfe;color:#536dfe}.rtl-container.indigo.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.indigo.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.indigo.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.indigo.night .active-link,.rtl-container.indigo.night .active-link .fa-icon-small,.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active,.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#536dfe;font-weight:500;cursor:pointer;fill:#536dfe}.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.indigo.night .help-expansion .mat-expansion-indicator:after,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-content,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.indigo.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.indigo.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.indigo.night .mat-expansion-panel,.rtl-container.indigo.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.indigo.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.indigo.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.indigo.night .mdc-data-table__header-cell,.rtl-container.indigo.night .mat-mdc-paginator,.rtl-container.indigo.night .mat-mdc-form-field-focus-overlay,.rtl-container.indigo.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.indigo.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.indigo.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#536dfe}.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.indigo.night .svg-donation{opacity:1!important}.rtl-container.indigo.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#536dfe!important}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#536dfe!important}.rtl-container.indigo.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#3f51b5}.rtl-container.indigo.night a{color:#536dfe!important;cursor:pointer}.rtl-container.indigo.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.indigo.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.indigo.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.indigo.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.indigo.night .mat-mdc-select-placeholder,.rtl-container.indigo.night .mat-mdc-select-value,.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#536dfe}.rtl-container.indigo.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.indigo.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#536dfe}.rtl-container.indigo.night .mat-tree-node:hover,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover,.rtl-container.indigo.night .mat-select-panel .mat-option:hover,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#536dfe;cursor:pointer;background:#ffffff0f}.rtl-container.indigo.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.indigo.night .mat-tree-node:hover .mat-icon,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#536dfe}.rtl-container.indigo.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.indigo.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#536dfe}.rtl-container.indigo.night .mat-tree-node:hover .boltz-icon,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#536dfe}.rtl-container.indigo.night .mat-tree-node .sidenav-img,.rtl-container.indigo.night .mat-nested-tree-node .sidenav-img,.rtl-container.indigo.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.indigo.night .page-title-container .page-title-img,.rtl-container.indigo.night svg.top-icon-small{fill:#fff}.rtl-container.indigo.night .selected-color{border-color:#9fa8da}.rtl-container.indigo.night .mat-progress-bar-fill:after{background-color:#3949ab}.rtl-container.indigo.night .chart-legend .legend-label:hover,.rtl-container.indigo.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.indigo.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.indigo.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#536dfe}.rtl-container.indigo.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.indigo.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#536dfe}.rtl-container.indigo.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#536dfe}.rtl-container.indigo.night .mat-select-panel{background-color:#121212}.rtl-container.indigo.night .mat-tree{background:#121212}.rtl-container.indigo.night h4{color:#536dfe}.rtl-container.indigo.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.indigo.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.indigo.night .dashboard-info-title{color:#536dfe}.rtl-container.indigo.night .dashboard-info-value,.rtl-container.indigo.night .dashboard-capacity-header{color:#fff}.rtl-container.indigo.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.indigo.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.indigo.night .color-primary{color:#536dfe!important}.rtl-container.indigo.night .dot-primary{background-color:#536dfe!important}.rtl-container.indigo.night .dot-primary-lighter{background-color:#3f51b5!important}.rtl-container.indigo.night .mat-stepper-vertical{background-color:#121212}.rtl-container.indigo.night .spinner-container h2{color:#536dfe}.rtl-container.indigo.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.indigo.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.indigo.night svg .boltz-icon-fill{fill:#fff}.rtl-container.indigo.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-primary-lighter{stroke:#9fa8da}.rtl-container.indigo.night svg .stroke-color-primary{stroke:#3f51b5}.rtl-container.indigo.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.indigo.night svg .fill-color-0{fill:#171717}.rtl-container.indigo.night svg .fill-color-1{fill:#232323}.rtl-container.indigo.night svg .fill-color-2{fill:#222}.rtl-container.indigo.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.indigo.night svg .fill-color-4{fill:#383838}.rtl-container.indigo.night svg .fill-color-5{fill:#555}.rtl-container.indigo.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.indigo.night svg .fill-color-7{fill:#202020}.rtl-container.indigo.night svg .fill-color-8{fill:#242424}.rtl-container.indigo.night svg .fill-color-9{fill:#262626}.rtl-container.indigo.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.indigo.night svg .fill-color-11{fill:#171717}.rtl-container.indigo.night svg .fill-color-12{fill:#ccc}.rtl-container.indigo.night svg .fill-color-13{fill:#adadad}.rtl-container.indigo.night svg .fill-color-14{fill:#ababab}.rtl-container.indigo.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.indigo.night svg .fill-color-16{fill:#707070}.rtl-container.indigo.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.indigo.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.indigo.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.indigo.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.indigo.night svg .fill-color-21{fill:#cacaca}.rtl-container.indigo.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.indigo.night svg .fill-color-23{fill:#777}.rtl-container.indigo.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.indigo.night svg .fill-color-25{fill:#252525}.rtl-container.indigo.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.indigo.night svg .fill-color-27{fill:#000}.rtl-container.indigo.night svg .fill-color-28{fill:#313131}.rtl-container.indigo.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.indigo.night svg .fill-color-30{fill:#fff}.rtl-container.indigo.night svg .fill-color-31{fill:#3f51b5}.rtl-container.indigo.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.indigo.night svg .fill-color-primary{fill:#3f51b5}.rtl-container.indigo.night svg .fill-color-primary-lighter{fill:#9fa8da}.rtl-container.indigo.night svg .fill-color-primary-darker{fill:#536dfe}.rtl-container.indigo.night .mat-select-value,.rtl-container.indigo.night .mat-select-arrow{color:#fff}.rtl-container.indigo.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.indigo.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.indigo.night .mat-button.mat-primary,.rtl-container.indigo.night .mat-icon-button.mat-primary,.rtl-container.indigo.night .mat-stroked-button.mat-primary{color:#536dfe}.rtl-container.indigo.night tr.alert.alert-warn .mat-cell,.rtl-container.indigo.night tr.alert.alert-warn .mat-header-cell,.rtl-container.indigo.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.indigo.night .material-icons.info-icon{font-size:100%;color:#536dfe}.rtl-container.indigo.night .material-icons.info-icon.info-icon-primary{color:#536dfe}.rtl-container.indigo.night .material-icons.info-icon.info-icon-text,.rtl-container.indigo.night .material-icons.info-icon.arrow-downward,.rtl-container.indigo.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.indigo.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#536dfe}.rtl-container.indigo.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#283593}.rtl-container.indigo.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#536dfe}.rtl-container.indigo.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.indigo.night .mat-progress-bar-buffer{background-color:#c5cae9}.rtl-container.indigo.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.indigo.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.indigo.night .foreground.mat-progress-spinner circle,.rtl-container.indigo.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.indigo.night .mat-toolbar-row,.rtl-container.indigo.night .mat-toolbar-single-row{height:4rem}.rtl-container.indigo.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.indigo.night a{color:#3f51b5}.rtl-container.indigo.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.indigo.night .h-active-link{border-bottom:2px solid white}.rtl-container.indigo.night .mat-icon-36{color:#ffffffb3}.rtl-container.indigo.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.indigo.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.indigo.night .genseed-message{width:10%;color:#3f51b5}.rtl-container.indigo.night .border-primary{border:1px solid #3f51b5}.rtl-container.indigo.night .border-accent{border:1px solid #aaaaaa}.rtl-container.indigo.night .border-warn{border:1px solid #b00020}.rtl-container.indigo.night .material-icons.primary{color:#3f51b5}.rtl-container.indigo.night .material-icons.accent{color:#aaa}.rtl-container.indigo.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.indigo.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.indigo.night .row-disabled{background-color:gray}.rtl-container.indigo.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.indigo.night .mat-mdc-card-content,.rtl-container.indigo.night .mat-mdc-card-subtitle,.rtl-container.indigo.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.indigo.night .mat-menu-panel{min-width:4rem}.rtl-container.indigo.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.indigo.night .horizontal-button:hover{background:#9fa8da;color:#aaa}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#3f51b5}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.indigo.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.indigo.night .mat-button,.rtl-container.indigo.night .mat-icon-button,.rtl-container.indigo.night .mat-stroked-button,.rtl-container.indigo.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.indigo.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.indigo.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.indigo.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.indigo.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.indigo.night .mat-cell,.rtl-container.indigo.night .mat-header-cell,.rtl-container.indigo.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.indigo.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.indigo.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#3f51b5}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#3f51b5;opacity:1}.rtl-container.indigo.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.indigo.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.indigo.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.indigo.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.indigo.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.indigo.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.indigo.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.indigo.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.indigo.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.indigo.night .more-button{color:#fff}.rtl-container.indigo.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.indigo.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.indigo.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.indigo.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.indigo.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.indigo.night .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.indigo.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.indigo.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.indigo.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.indigo.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.indigo.night .tab-badge .mat-badge-content.mat-badge-active{background:#3f51b5}.rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.indigo.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.indigo.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.indigo.night .rtl-select-overlay{min-width:7rem}}.rtl-container.indigo.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.indigo.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.indigo.night .table-actions-button{min-width:8rem}.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.indigo.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.indigo.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.indigo.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#9fa8da!important}.rtl-container.indigo.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#3949ab!important}.rtl-container.indigo.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.indigo.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.indigo.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.indigo.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.indigo.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.indigo.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.indigo.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.indigo.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.indigo.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.indigo.night .color-warn{color:#b00020}.rtl-container.indigo.night .fill-warn{fill:#b00020}.rtl-container.indigo.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.indigo.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.indigo.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.indigo.night .alert.alert-info a{color:#004085}.rtl-container.indigo.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.indigo.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.indigo.night .alert.alert-warn a{color:#856404}.rtl-container.indigo.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.indigo.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.indigo.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.indigo.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.indigo.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.indigo.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.indigo.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.indigo.night .failed-status{color:#b00020}.rtl-container.indigo.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.indigo.night .svg-fill-primary{fill:#3f51b5}.rtl-container.indigo.night .svg-fill-primary-lighter{fill:#9fa8da}.rtl-container.indigo.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.indigo.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.indigo.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.indigo.night .dashboard-card-content .underline,.rtl-container.indigo.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.indigo.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#3f51b5}.rtl-container.indigo.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#3f51b5}.rtl-container.indigo.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#3f51b5}.rtl-container.indigo.night .mat-mdc-form-field-hint .currency-icon{color:#3f51b5}.rtl-container.indigo.night .mat-mdc-form-field-hint .currency-icon path{fill:#3f51b5}.rtl-container.indigo.night .fa-icon-primary{color:#3f51b5}.rtl-container.indigo.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night ngx-charts-bar-vertical text,.rtl-container.indigo.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.indigo.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.indigo.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.indigo.night .mat-paginator-container{padding:0}.rtl-container.indigo.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.indigo.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.indigo.night .invoice-animation-div .particles-circle{position:absolute;background-color:#3f51b5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #3f51b5;background-color:transparent}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.indigo.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.indigo.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.indigo.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.indigo.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.green.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #185127;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-filled-caret-color: #185127;--mat-form-field-filled-focus-active-indicator-color: #185127;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-outlined-caret-color: #185127;--mat-form-field-outlined-focus-outline-color: #185127;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #185127;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #185127;--mat-slide-toggle-selected-handle-color: #185127;--mat-slide-toggle-selected-hover-state-layer-color: #185127;--mat-slide-toggle-selected-pressed-state-layer-color: #185127;--mat-slide-toggle-selected-focus-handle-color: #185127;--mat-slide-toggle-selected-hover-handle-color: #185127;--mat-slide-toggle-selected-pressed-handle-color: #185127;--mat-slide-toggle-selected-focus-track-color: #5d8568;--mat-slide-toggle-selected-hover-track-color: #5d8568;--mat-slide-toggle-selected-pressed-track-color: #5d8568;--mat-slide-toggle-selected-track-color: #5d8568;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #185127;--mat-slider-focus-handle-color: #185127;--mat-slider-handle-color: #185127;--mat-slider-hover-handle-color: #185127;--mat-slider-focus-state-layer-color: color-mix(in srgb, #185127 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #185127 4%, transparent);--mat-slider-inactive-track-color: #185127;--mat-slider-ripple-color: #185127;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #185127;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #5d8568;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #185127;--mat-badge-background-color: #185127;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #185127 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #185127;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #185127 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #185127 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #185127 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #185127;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #185127;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #185127;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #185127;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.green.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.green.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.green.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #185127;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #185127;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.green.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.green.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.green.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #185127;--mat-progress-bar-track-color: rgba(24, 81, 39, .25)}.rtl-container.green.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.green.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.green.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.green.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.green.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.green.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.green.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #185127;--mat-chip-elevated-disabled-container-color: #185127;--mat-chip-elevated-selected-container-color: #185127;--mat-chip-flat-disabled-selected-container-color: #185127;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.green.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.green.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.green.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #185127;--mat-radio-selected-hover-icon-color: #185127;--mat-radio-selected-icon-color: #185127;--mat-radio-selected-pressed-icon-color: #185127;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.green.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.green.day .mdc-list-item__start,.rtl-container.green.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #185127;--mat-radio-selected-hover-icon-color: #185127;--mat-radio-selected-icon-color: #185127;--mat-radio-selected-pressed-icon-color: #185127;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-accent .mdc-list-item__start,.rtl-container.green.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-warn .mdc-list-item__start,.rtl-container.green.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #185127;--mat-checkbox-selected-hover-icon-color: #185127;--mat-checkbox-selected-icon-color: #185127;--mat-checkbox-selected-pressed-icon-color: #185127;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #185127;--mat-checkbox-selected-hover-state-layer-color: #185127;--mat-checkbox-selected-pressed-state-layer-color: #185127;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#185127}.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.green.day .mat-mdc-tab-group,.rtl-container.green.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #185127;--mat-tab-active-ripple-color: #185127;--mat-tab-inactive-ripple-color: #185127;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #185127;--mat-tab-active-hover-label-text-color: #185127;--mat-tab-active-focus-indicator-color: #185127;--mat-tab-active-hover-indicator-color: #185127;--mat-tab-active-indicator-color: #185127}.rtl-container.green.day .mat-mdc-tab-group.mat-accent,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.green.day .mat-mdc-tab-group.mat-warn,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.green.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #185127;--mat-tab-foreground-color: #ffffff}.rtl-container.green.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.green.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.green.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #185127;--mat-checkbox-selected-hover-icon-color: #185127;--mat-checkbox-selected-icon-color: #185127;--mat-checkbox-selected-pressed-icon-color: #185127;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #185127;--mat-checkbox-selected-hover-state-layer-color: #185127;--mat-checkbox-selected-pressed-state-layer-color: #185127;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-button.mat-primary,.rtl-container.green.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.green.day .mat-mdc-raised-button.mat-primary,.rtl-container.green.day .mat-mdc-outlined-button.mat-primary,.rtl-container.green.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #185127;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #185127;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-button-outlined-state-layer-color: #185127;--mat-button-protected-container-color: #185127;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #185127;--mat-button-text-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-button-text-state-layer-color: #185127;--mat-button-tonal-container-color: #185127;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.rtl-container.green.day .mat-mdc-button.mat-accent,.rtl-container.green.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.green.day .mat-mdc-raised-button.mat-accent,.rtl-container.green.day .mat-mdc-outlined-button.mat-accent,.rtl-container.green.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.green.day .mat-mdc-button.mat-warn,.rtl-container.green.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.green.day .mat-mdc-raised-button.mat-warn,.rtl-container.green.day .mat-mdc-outlined-button.mat-warn,.rtl-container.green.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.green.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #185127;--mat-icon-button-state-layer-color: #185127;--mat-icon-button-ripple-color: color-mix(in srgb, #185127 12%, transparent)}.rtl-container.green.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.green.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.green.day .mat-mdc-fab.mat-primary,.rtl-container.green.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #185127;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-fab-small-container-color: #185127;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.rtl-container.green.day .mat-mdc-fab.mat-accent,.rtl-container.green.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.green.day .mat-mdc-fab.mat-warn,.rtl-container.green.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.green.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.green.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.green.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.green.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.green.day .mat-datepicker-content.mat-accent,.rtl-container.green.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-datepicker-content.mat-warn,.rtl-container.green.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-icon.mat-primary{--mat-icon-color: #185127}.rtl-container.green.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.green.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.green.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #185127;--mat-toolbar-container-text-color: #ffffff}.rtl-container.green.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.green.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.green.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.green.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.green.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.green.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.green.day .bg-primary{background-color:#185127;color:#fff}.rtl-container.green.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.green.day .page-title,.rtl-container.green.day .mat-mdc-select-value,.rtl-container.green.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.green.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.green.day .help-expansion .mat-expansion-panel-header,.rtl-container.green.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.green.day .help-expansion .mat-expansion-indicator:after,.rtl-container.green.day .help-expansion .mat-expansion-panel-content,.rtl-container.green.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#185127}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.green.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#185127}.rtl-container.green.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.green.day .mat-tree-node:hover,.rtl-container.green.day .mat-nested-tree-node-parent:hover,.rtl-container.green.day .mat-select-panel .mat-option:hover,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#185127;cursor:pointer}.rtl-container.green.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.green.day .mat-tree-node:hover .mat-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#185127}.rtl-container.green.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.green.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.green.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#185127}.rtl-container.green.day .spinner-container h2{color:#fff}.rtl-container.green.day .ng-fa-icon,.rtl-container.green.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.green.day .mat-form-field-suffix{color:#0000008a}.rtl-container.green.day .mat-stroked-button.mat-primary{border-color:#185127}.rtl-container.green.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.green.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.green.day .selected-color{border-color:#5d8568}.rtl-container.green.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.green.day table.mat-mdc-table thead tr th,.rtl-container.green.day .page-title-container,.rtl-container.green.day .page-sub-title-container{color:#0000008a}.rtl-container.green.day .page-title-container .page-title-img,.rtl-container.green.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.green.day .page-title-container .mat-input-element,.rtl-container.green.day .page-title-container .mat-radio-label-content,.rtl-container.green.day .page-title-container .theme-name,.rtl-container.green.day .page-sub-title-container .mat-input-element,.rtl-container.green.day .page-sub-title-container .mat-radio-label-content,.rtl-container.green.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.green.day .cc-data-block .cc-data-title{color:#185127}.rtl-container.green.day .active-link,.rtl-container.green.day .active-link .fa-icon-small{color:#185127;font-weight:500;cursor:pointer;fill:#185127}.rtl-container.green.day .mat-tree-node:hover,.rtl-container.green.day .mat-nested-tree-node-parent:hover,.rtl-container.green.day .mat-select-panel .mat-option:hover,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#185127;cursor:pointer;background:#0000000a}.rtl-container.green.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.green.day .mat-tree-node:hover .mat-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#185127}.rtl-container.green.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.green.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.green.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#185127}.rtl-container.green.day .mat-tree-node .sidenav-img,.rtl-container.green.day .mat-nested-tree-node .sidenav-img,.rtl-container.green.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.green.day .page-title-container .page-title-img,.rtl-container.green.day svg.top-icon-small{fill:#000000de}.rtl-container.green.day .mat-progress-bar-fill:after{background-color:#08270e}.rtl-container.green.day .modal-qr-code-container{background:#0000001f}.rtl-container.green.day .mdc-tab__text-label,.rtl-container.green.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.green.day .mat-mdc-card,.rtl-container.green.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.green.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.green.day .dashboard-info-title{color:#185127}.rtl-container.green.day .dashboard-capacity-header,.rtl-container.green.day .dashboard-info-value{color:#0000008a}.rtl-container.green.day .color-primary{color:#185127!important}.rtl-container.green.day .dot-primary{background-color:#185127!important}.rtl-container.green.day .dot-primary-lighter{background-color:#5d8568!important}.rtl-container.green.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .mat-mdc-form-field-hint{color:#185127}.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.green.day .mat-mdc-form-field-hint fa-icon svg path{fill:#185127}.rtl-container.green.day .currency-icon path,.rtl-container.green.day .currency-icon polygon{fill:#0000008a}.rtl-container.green.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.green.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.green.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-primary-lighter{stroke:#5d8568}.rtl-container.green.day svg .stroke-color-primary{stroke:#185127}.rtl-container.green.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.green.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-1{fill:#fff}.rtl-container.green.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.green.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-6{fill:#fff}.rtl-container.green.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-9{fill:#fff}.rtl-container.green.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.green.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.green.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-16{fill:#404040}.rtl-container.green.day svg .fill-color-17{fill:#404040}.rtl-container.green.day svg .fill-color-18{fill:#000}.rtl-container.green.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-24{fill:#000}.rtl-container.green.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.green.day svg .fill-color-27{fill:#000}.rtl-container.green.day svg .fill-color-28{fill:#313131}.rtl-container.green.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-30{fill:#fff}.rtl-container.green.day svg .fill-color-31{fill:#185127}.rtl-container.green.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.green.day svg .fill-color-primary{fill:#185127}.rtl-container.green.day svg .fill-color-primary-lighter{fill:#5d8568}.rtl-container.green.day svg .fill-color-primary-darker{fill:#185127}.rtl-container.green.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.green.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.green.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#185127}.rtl-container.green.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.green.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.green.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.green.day .material-icons.mat-icon-no-color,.rtl-container.green.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.green.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.green.day .material-icons.info-icon.info-icon-primary{color:#185127}.rtl-container.green.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.green.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.green.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.green.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.green.day .material-icons.info-icon.arrow-downward,.rtl-container.green.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.green.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.green.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#185127}.rtl-container.green.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.green.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#08270e}.rtl-container.green.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.green.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#8ca893}.rtl-container.green.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.green.day .mat-progress-bar-buffer{background-color:#bacbbe}.rtl-container.green.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.green.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.green.day .foreground.mat-progress-spinner circle,.rtl-container.green.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.green.day .mat-toolbar-row,.rtl-container.green.day .mat-toolbar-single-row{height:4rem}.rtl-container.green.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.green.day a{color:#185127}.rtl-container.green.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.green.day .h-active-link{border-bottom:2px solid white}.rtl-container.green.day .mat-icon-36{color:#0000008a}.rtl-container.green.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.green.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.green.day .genseed-message{width:10%;color:#185127}.rtl-container.green.day .border-primary{border:1px solid #185127}.rtl-container.green.day .border-accent{border:1px solid #9e9e9e}.rtl-container.green.day .border-warn{border:1px solid #b00020}.rtl-container.green.day .material-icons.primary{color:#185127}.rtl-container.green.day .material-icons.accent{color:#9e9e9e}.rtl-container.green.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.green.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.green.day .row-disabled{background-color:gray}.rtl-container.green.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.green.day .mat-mdc-card-content,.rtl-container.green.day .mat-mdc-card-subtitle,.rtl-container.green.day .mat-mdc-card-title{color:#0000008a}.rtl-container.green.day .mat-menu-panel{min-width:4rem}.rtl-container.green.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.green.day .horizontal-button:hover{background:#5d8568;color:#9e9e9e}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#185127}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.green.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.green.day .mat-button,.rtl-container.green.day .mat-icon-button,.rtl-container.green.day .mat-stroked-button,.rtl-container.green.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.green.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.green.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.green.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.green.day .cc-data-block .cc-data-value{color:#000}.rtl-container.green.day .mat-cell,.rtl-container.green.day .mat-header-cell,.rtl-container.green.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.green.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.green.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#185127}.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#185127;opacity:1}.rtl-container.green.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.green.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.green.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.green.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.green.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.green.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.green.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.green.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.green.day .more-button{color:#000}.rtl-container.green.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.green.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.green.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.green.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.green.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.green.day .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.green.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.green.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.green.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.green.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.green.day .tab-badge .mat-badge-content.mat-badge-active{background:#185127}.rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.green.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.green.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.green.day .rtl-select-overlay{min-width:7rem}}.rtl-container.green.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.green.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.green.day .table-actions-button{min-width:8rem}.rtl-container.green.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.green.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.green.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.green.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#8ca893!important}.rtl-container.green.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#154a23!important}.rtl-container.green.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.green.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.green.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.green.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.green.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.green.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.green.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.green.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.green.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.green.day .color-warn{color:#b00020}.rtl-container.green.day .fill-warn{fill:#b00020}.rtl-container.green.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.green.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.green.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.green.day .alert.alert-info a{color:#004085}.rtl-container.green.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.green.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.green.day .alert.alert-warn a{color:#856404}.rtl-container.green.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.green.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.green.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.green.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.green.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.green.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.green.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.green.day .failed-status{color:#b00020}.rtl-container.green.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.green.day .svg-fill-primary{fill:#185127}.rtl-container.green.day .svg-fill-primary-lighter{fill:#5d8568}.rtl-container.green.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.green.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.green.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.green.day .dashboard-card-content .underline,.rtl-container.green.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.green.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.green.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#185127}.rtl-container.green.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.green.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#185127}.rtl-container.green.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.green.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#185127}.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon{color:#185127}.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon path{fill:#185127}.rtl-container.green.day .fa-icon-primary{color:#185127}.rtl-container.green.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day ngx-charts-bar-vertical text,.rtl-container.green.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.green.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.green.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.green.day .mat-paginator-container{padding:0}.rtl-container.green.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.green.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.green.day .invoice-animation-div .particles-circle{position:absolute;background-color:#185127;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #185127;background-color:transparent}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.green.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.green.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.green.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.green.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.green.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #185127;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-filled-caret-color: #185127;--mat-form-field-filled-focus-active-indicator-color: #185127;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-outlined-caret-color: #185127;--mat-form-field-outlined-focus-outline-color: #185127;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #185127;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #185127;--mat-slide-toggle-selected-handle-color: #185127;--mat-slide-toggle-selected-hover-state-layer-color: #185127;--mat-slide-toggle-selected-pressed-state-layer-color: #185127;--mat-slide-toggle-selected-focus-handle-color: #185127;--mat-slide-toggle-selected-hover-handle-color: #185127;--mat-slide-toggle-selected-pressed-handle-color: #185127;--mat-slide-toggle-selected-focus-track-color: #154a23;--mat-slide-toggle-selected-hover-track-color: #154a23;--mat-slide-toggle-selected-pressed-track-color: #154a23;--mat-slide-toggle-selected-track-color: #154a23;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #185127;--mat-slider-focus-handle-color: #185127;--mat-slider-handle-color: #185127;--mat-slider-hover-handle-color: #185127;--mat-slider-focus-state-layer-color: color-mix(in srgb, #185127 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #185127 4%, transparent);--mat-slider-inactive-track-color: #185127;--mat-slider-ripple-color: #185127;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #185127;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #154a23;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #185127;--mat-badge-background-color: #185127;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #185127 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #185127;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #185127 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #185127 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #185127 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #185127;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #185127;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #185127;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #185127;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.green.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.green.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.green.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #185127;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #185127;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.green.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.green.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.green.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #185127;--mat-progress-bar-track-color: rgba(24, 81, 39, .25)}.rtl-container.green.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.green.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.green.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.green.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.green.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.green.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.green.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #185127;--mat-chip-elevated-disabled-container-color: #185127;--mat-chip-elevated-selected-container-color: #185127;--mat-chip-flat-disabled-selected-container-color: #185127;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.green.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.green.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.green.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #185127;--mat-radio-selected-hover-icon-color: #185127;--mat-radio-selected-icon-color: #185127;--mat-radio-selected-pressed-icon-color: #185127;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.green.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.green.night .mdc-list-item__start,.rtl-container.green.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #185127;--mat-radio-selected-hover-icon-color: #185127;--mat-radio-selected-icon-color: #185127;--mat-radio-selected-pressed-icon-color: #185127;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-accent .mdc-list-item__start,.rtl-container.green.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-warn .mdc-list-item__start,.rtl-container.green.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #185127;--mat-checkbox-selected-hover-icon-color: #185127;--mat-checkbox-selected-icon-color: #185127;--mat-checkbox-selected-pressed-icon-color: #185127;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #185127;--mat-checkbox-selected-hover-state-layer-color: #185127;--mat-checkbox-selected-pressed-state-layer-color: #185127;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#185127}.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.green.night .mat-mdc-tab-group,.rtl-container.green.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #185127;--mat-tab-active-ripple-color: #185127;--mat-tab-inactive-ripple-color: #185127;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #185127;--mat-tab-active-hover-label-text-color: #185127;--mat-tab-active-focus-indicator-color: #185127;--mat-tab-active-hover-indicator-color: #185127;--mat-tab-active-indicator-color: #185127}.rtl-container.green.night .mat-mdc-tab-group.mat-accent,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.green.night .mat-mdc-tab-group.mat-warn,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.green.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #185127;--mat-tab-foreground-color: #ffffff}.rtl-container.green.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.green.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.green.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #185127;--mat-checkbox-selected-hover-icon-color: #185127;--mat-checkbox-selected-icon-color: #185127;--mat-checkbox-selected-pressed-icon-color: #185127;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #185127;--mat-checkbox-selected-hover-state-layer-color: #185127;--mat-checkbox-selected-pressed-state-layer-color: #185127;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-button.mat-primary,.rtl-container.green.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.green.night .mat-mdc-raised-button.mat-primary,.rtl-container.green.night .mat-mdc-outlined-button.mat-primary,.rtl-container.green.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #185127;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #185127;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-button-outlined-state-layer-color: #185127;--mat-button-protected-container-color: #185127;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #185127;--mat-button-text-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-button-text-state-layer-color: #185127;--mat-button-tonal-container-color: #185127;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.rtl-container.green.night .mat-mdc-button.mat-accent,.rtl-container.green.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.green.night .mat-mdc-raised-button.mat-accent,.rtl-container.green.night .mat-mdc-outlined-button.mat-accent,.rtl-container.green.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.green.night .mat-mdc-button.mat-warn,.rtl-container.green.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.green.night .mat-mdc-raised-button.mat-warn,.rtl-container.green.night .mat-mdc-outlined-button.mat-warn,.rtl-container.green.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.green.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #185127;--mat-icon-button-state-layer-color: #185127;--mat-icon-button-ripple-color: color-mix(in srgb, #185127 12%, transparent)}.rtl-container.green.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.green.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.green.night .mat-mdc-fab.mat-primary,.rtl-container.green.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #185127;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-fab-small-container-color: #185127;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.rtl-container.green.night .mat-mdc-fab.mat-accent,.rtl-container.green.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.green.night .mat-mdc-fab.mat-warn,.rtl-container.green.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.green.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.green.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.green.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.green.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.green.night .mat-datepicker-content.mat-accent,.rtl-container.green.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.green.night .mat-datepicker-content.mat-warn,.rtl-container.green.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.green.night .mat-icon.mat-primary{--mat-icon-color: #185127}.rtl-container.green.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.green.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.green.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.green.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #185127;--mat-toolbar-container-text-color: #ffffff}.rtl-container.green.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.green.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.green.night .mat-primary{color:#30ff4b!important}.rtl-container.green.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.green.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.green.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.green.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.green.night .bg-primary{background-color:#185127;color:#fff}.rtl-container.green.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#30ff4b}.rtl-container.green.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.green.night .currency-icon path,.rtl-container.green.night .currency-icon polygon{fill:#fff}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.green.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#30ff4b}.rtl-container.green.night .cc-data-block .cc-data-title{color:#30ff4b}.rtl-container.green.night .mat-stroked-button.mat-primary{border-color:#30ff4b;color:#30ff4b}.rtl-container.green.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.green.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.green.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.green.night .active-link,.rtl-container.green.night .active-link .fa-icon-small,.rtl-container.green.night .mat-select-panel .mat-option.mat-active,.rtl-container.green.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#30ff4b;font-weight:500;cursor:pointer;fill:#30ff4b}.rtl-container.green.night .help-expansion .mat-expansion-panel-header,.rtl-container.green.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.green.night .help-expansion .mat-expansion-indicator:after,.rtl-container.green.night .help-expansion .mat-expansion-panel-content,.rtl-container.green.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.green.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.green.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.green.night .mat-expansion-panel,.rtl-container.green.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.green.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.green.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.green.night .mdc-data-table__header-cell,.rtl-container.green.night .mat-mdc-paginator,.rtl-container.green.night .mat-mdc-form-field-focus-overlay,.rtl-container.green.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.green.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.green.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#30ff4b}.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.green.night .svg-donation{opacity:1!important}.rtl-container.green.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#30ff4b!important}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#30ff4b!important}.rtl-container.green.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#185127}.rtl-container.green.night a{color:#30ff4b!important;cursor:pointer}.rtl-container.green.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.green.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.green.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.green.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.green.night .mat-mdc-select-placeholder,.rtl-container.green.night .mat-mdc-select-value,.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#30ff4b}.rtl-container.green.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.green.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#30ff4b}.rtl-container.green.night .mat-tree-node:hover,.rtl-container.green.night .mat-nested-tree-node-parent:hover,.rtl-container.green.night .mat-select-panel .mat-option:hover,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#30ff4b;cursor:pointer;background:#ffffff0f}.rtl-container.green.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.green.night .mat-tree-node:hover .mat-icon,.rtl-container.green.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.green.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.green.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.green.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#30ff4b}.rtl-container.green.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.green.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.green.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.green.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.green.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.green.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#30ff4b}.rtl-container.green.night .mat-tree-node:hover .boltz-icon,.rtl-container.green.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.green.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#30ff4b}.rtl-container.green.night .mat-tree-node .sidenav-img,.rtl-container.green.night .mat-nested-tree-node .sidenav-img,.rtl-container.green.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.green.night .page-title-container .page-title-img,.rtl-container.green.night svg.top-icon-small{fill:#fff}.rtl-container.green.night .selected-color{border-color:#5d8568}.rtl-container.green.night .mat-progress-bar-fill:after{background-color:#154a23}.rtl-container.green.night .chart-legend .legend-label:hover,.rtl-container.green.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.green.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.green.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#30ff4b}.rtl-container.green.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.green.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#30ff4b}.rtl-container.green.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#30ff4b}.rtl-container.green.night .mat-select-panel{background-color:#121212}.rtl-container.green.night .mat-tree{background:#121212}.rtl-container.green.night h4{color:#30ff4b}.rtl-container.green.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.green.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.green.night .dashboard-info-title{color:#30ff4b}.rtl-container.green.night .dashboard-info-value,.rtl-container.green.night .dashboard-capacity-header{color:#fff}.rtl-container.green.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.green.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.green.night .color-primary{color:#30ff4b!important}.rtl-container.green.night .dot-primary{background-color:#30ff4b!important}.rtl-container.green.night .dot-primary-lighter{background-color:#185127!important}.rtl-container.green.night .mat-stepper-vertical{background-color:#121212}.rtl-container.green.night .spinner-container h2{color:#30ff4b}.rtl-container.green.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.green.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.green.night svg .boltz-icon-fill{fill:#fff}.rtl-container.green.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-primary-lighter{stroke:#5d8568}.rtl-container.green.night svg .stroke-color-primary{stroke:#185127}.rtl-container.green.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.green.night svg .fill-color-0{fill:#171717}.rtl-container.green.night svg .fill-color-1{fill:#232323}.rtl-container.green.night svg .fill-color-2{fill:#222}.rtl-container.green.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.green.night svg .fill-color-4{fill:#383838}.rtl-container.green.night svg .fill-color-5{fill:#555}.rtl-container.green.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.green.night svg .fill-color-7{fill:#202020}.rtl-container.green.night svg .fill-color-8{fill:#242424}.rtl-container.green.night svg .fill-color-9{fill:#262626}.rtl-container.green.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.green.night svg .fill-color-11{fill:#171717}.rtl-container.green.night svg .fill-color-12{fill:#ccc}.rtl-container.green.night svg .fill-color-13{fill:#adadad}.rtl-container.green.night svg .fill-color-14{fill:#ababab}.rtl-container.green.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.green.night svg .fill-color-16{fill:#707070}.rtl-container.green.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.green.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.green.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.green.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.green.night svg .fill-color-21{fill:#cacaca}.rtl-container.green.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.green.night svg .fill-color-23{fill:#777}.rtl-container.green.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.green.night svg .fill-color-25{fill:#252525}.rtl-container.green.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.green.night svg .fill-color-27{fill:#000}.rtl-container.green.night svg .fill-color-28{fill:#313131}.rtl-container.green.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.green.night svg .fill-color-30{fill:#fff}.rtl-container.green.night svg .fill-color-31{fill:#185127}.rtl-container.green.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.green.night svg .fill-color-primary{fill:#185127}.rtl-container.green.night svg .fill-color-primary-lighter{fill:#5d8568}.rtl-container.green.night svg .fill-color-primary-darker{fill:#30ff4b}.rtl-container.green.night .mat-select-value,.rtl-container.green.night .mat-select-arrow{color:#fff}.rtl-container.green.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.green.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.green.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.green.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.green.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.green.night .mat-button.mat-primary,.rtl-container.green.night .mat-icon-button.mat-primary,.rtl-container.green.night .mat-stroked-button.mat-primary{color:#30ff4b}.rtl-container.green.night tr.alert.alert-warn .mat-cell,.rtl-container.green.night tr.alert.alert-warn .mat-header-cell,.rtl-container.green.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.green.night .material-icons.info-icon{font-size:100%;color:#30ff4b}.rtl-container.green.night .material-icons.info-icon.info-icon-primary{color:#30ff4b}.rtl-container.green.night .material-icons.info-icon.info-icon-text,.rtl-container.green.night .material-icons.info-icon.arrow-downward,.rtl-container.green.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.green.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.green.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#30ff4b}.rtl-container.green.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.green.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#0e3717}.rtl-container.green.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.green.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#30ff4b}.rtl-container.green.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.green.night .mat-progress-bar-buffer{background-color:#bacbbe}.rtl-container.green.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.green.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.green.night .foreground.mat-progress-spinner circle,.rtl-container.green.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.green.night .mat-toolbar-row,.rtl-container.green.night .mat-toolbar-single-row{height:4rem}.rtl-container.green.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.green.night a{color:#185127}.rtl-container.green.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.green.night .h-active-link{border-bottom:2px solid white}.rtl-container.green.night .mat-icon-36{color:#ffffffb3}.rtl-container.green.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.green.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.green.night .genseed-message{width:10%;color:#185127}.rtl-container.green.night .border-primary{border:1px solid #185127}.rtl-container.green.night .border-accent{border:1px solid #aaaaaa}.rtl-container.green.night .border-warn{border:1px solid #b00020}.rtl-container.green.night .material-icons.primary{color:#185127}.rtl-container.green.night .material-icons.accent{color:#aaa}.rtl-container.green.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.green.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.green.night .row-disabled{background-color:gray}.rtl-container.green.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.green.night .mat-mdc-card-content,.rtl-container.green.night .mat-mdc-card-subtitle,.rtl-container.green.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.green.night .mat-menu-panel{min-width:4rem}.rtl-container.green.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.green.night .horizontal-button:hover{background:#5d8568;color:#aaa}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#185127}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.green.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.green.night .mat-button,.rtl-container.green.night .mat-icon-button,.rtl-container.green.night .mat-stroked-button,.rtl-container.green.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.green.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.green.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.green.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.green.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.green.night .mat-cell,.rtl-container.green.night .mat-header-cell,.rtl-container.green.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.green.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.green.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#185127}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#185127;opacity:1}.rtl-container.green.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.green.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.green.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.green.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.green.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.green.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.green.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.green.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.green.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.green.night .more-button{color:#fff}.rtl-container.green.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.green.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.green.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.green.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.green.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.green.night .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.green.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.green.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.green.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.green.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.green.night .tab-badge .mat-badge-content.mat-badge-active{background:#185127}.rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.green.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.green.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.green.night .rtl-select-overlay{min-width:7rem}}.rtl-container.green.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.green.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.green.night .table-actions-button{min-width:8rem}.rtl-container.green.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.green.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.green.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.green.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#8ca893!important}.rtl-container.green.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#154a23!important}.rtl-container.green.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.green.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.green.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.green.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.green.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.green.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.green.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.green.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.green.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.green.night .color-warn{color:#b00020}.rtl-container.green.night .fill-warn{fill:#b00020}.rtl-container.green.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.green.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.green.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.green.night .alert.alert-info a{color:#004085}.rtl-container.green.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.green.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.green.night .alert.alert-warn a{color:#856404}.rtl-container.green.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.green.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.green.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.green.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.green.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.green.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.green.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.green.night .failed-status{color:#b00020}.rtl-container.green.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.green.night .svg-fill-primary{fill:#185127}.rtl-container.green.night .svg-fill-primary-lighter{fill:#5d8568}.rtl-container.green.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.green.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.green.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.green.night .dashboard-card-content .underline,.rtl-container.green.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.green.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.green.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#185127}.rtl-container.green.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.green.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#185127}.rtl-container.green.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.green.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#185127}.rtl-container.green.night .mat-mdc-form-field-hint .currency-icon{color:#185127}.rtl-container.green.night .mat-mdc-form-field-hint .currency-icon path{fill:#185127}.rtl-container.green.night .fa-icon-primary{color:#185127}.rtl-container.green.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night ngx-charts-bar-vertical text,.rtl-container.green.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.green.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.green.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.green.night .mat-paginator-container{padding:0}.rtl-container.green.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.green.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.green.night .invoice-animation-div .particles-circle{position:absolute;background-color:#185127;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #185127;background-color:transparent}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.green.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.green.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.green.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.green.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.teal.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #00695c;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-filled-caret-color: #00695c;--mat-form-field-filled-focus-active-indicator-color: #00695c;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-outlined-caret-color: #00695c;--mat-form-field-outlined-focus-outline-color: #00695c;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #00695c;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #00695c;--mat-slide-toggle-selected-handle-color: #00695c;--mat-slide-toggle-selected-hover-state-layer-color: #00695c;--mat-slide-toggle-selected-pressed-state-layer-color: #00695c;--mat-slide-toggle-selected-focus-handle-color: #00695c;--mat-slide-toggle-selected-hover-handle-color: #00695c;--mat-slide-toggle-selected-pressed-handle-color: #00695c;--mat-slide-toggle-selected-focus-track-color: #4db6ac;--mat-slide-toggle-selected-hover-track-color: #4db6ac;--mat-slide-toggle-selected-pressed-track-color: #4db6ac;--mat-slide-toggle-selected-track-color: #4db6ac;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #00695c;--mat-slider-focus-handle-color: #00695c;--mat-slider-handle-color: #00695c;--mat-slider-hover-handle-color: #00695c;--mat-slider-focus-state-layer-color: color-mix(in srgb, #00695c 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #00695c 4%, transparent);--mat-slider-inactive-track-color: #00695c;--mat-slider-ripple-color: #00695c;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #00695c;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #4db6ac;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #00695c;--mat-badge-background-color: #00695c;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #00695c 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #00695c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #00695c 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #00695c 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #00695c 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #00695c;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #00695c;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #00695c;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #00695c;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.teal.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.teal.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.teal.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #00695c;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #00695c;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.teal.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.teal.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.teal.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #00695c;--mat-progress-bar-track-color: rgba(0, 105, 92, .25)}.rtl-container.teal.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.teal.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.teal.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.teal.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.teal.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.teal.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.teal.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #00695c;--mat-chip-elevated-disabled-container-color: #00695c;--mat-chip-elevated-selected-container-color: #00695c;--mat-chip-flat-disabled-selected-container-color: #00695c;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.teal.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.teal.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.teal.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #00695c;--mat-radio-selected-hover-icon-color: #00695c;--mat-radio-selected-icon-color: #00695c;--mat-radio-selected-pressed-icon-color: #00695c;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.teal.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.teal.day .mdc-list-item__start,.rtl-container.teal.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #00695c;--mat-radio-selected-hover-icon-color: #00695c;--mat-radio-selected-icon-color: #00695c;--mat-radio-selected-pressed-icon-color: #00695c;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-accent .mdc-list-item__start,.rtl-container.teal.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-warn .mdc-list-item__start,.rtl-container.teal.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #00695c;--mat-checkbox-selected-hover-icon-color: #00695c;--mat-checkbox-selected-icon-color: #00695c;--mat-checkbox-selected-pressed-icon-color: #00695c;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #00695c;--mat-checkbox-selected-hover-state-layer-color: #00695c;--mat-checkbox-selected-pressed-state-layer-color: #00695c;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#00695c}.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.teal.day .mat-mdc-tab-group,.rtl-container.teal.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #00695c;--mat-tab-active-ripple-color: #00695c;--mat-tab-inactive-ripple-color: #00695c;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #00695c;--mat-tab-active-hover-label-text-color: #00695c;--mat-tab-active-focus-indicator-color: #00695c;--mat-tab-active-hover-indicator-color: #00695c;--mat-tab-active-indicator-color: #00695c}.rtl-container.teal.day .mat-mdc-tab-group.mat-accent,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.teal.day .mat-mdc-tab-group.mat-warn,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #00695c;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.teal.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #00695c;--mat-checkbox-selected-hover-icon-color: #00695c;--mat-checkbox-selected-icon-color: #00695c;--mat-checkbox-selected-pressed-icon-color: #00695c;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #00695c;--mat-checkbox-selected-hover-state-layer-color: #00695c;--mat-checkbox-selected-pressed-state-layer-color: #00695c;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-button.mat-primary,.rtl-container.teal.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.teal.day .mat-mdc-raised-button.mat-primary,.rtl-container.teal.day .mat-mdc-outlined-button.mat-primary,.rtl-container.teal.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #00695c;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #00695c;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-button-outlined-state-layer-color: #00695c;--mat-button-protected-container-color: #00695c;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #00695c;--mat-button-text-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-button-text-state-layer-color: #00695c;--mat-button-tonal-container-color: #00695c;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.teal.day .mat-mdc-button.mat-accent,.rtl-container.teal.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.teal.day .mat-mdc-raised-button.mat-accent,.rtl-container.teal.day .mat-mdc-outlined-button.mat-accent,.rtl-container.teal.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.teal.day .mat-mdc-button.mat-warn,.rtl-container.teal.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.teal.day .mat-mdc-raised-button.mat-warn,.rtl-container.teal.day .mat-mdc-outlined-button.mat-warn,.rtl-container.teal.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.teal.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #00695c;--mat-icon-button-state-layer-color: #00695c;--mat-icon-button-ripple-color: color-mix(in srgb, #00695c 12%, transparent)}.rtl-container.teal.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.teal.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.teal.day .mat-mdc-fab.mat-primary,.rtl-container.teal.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #00695c;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-fab-small-container-color: #00695c;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.teal.day .mat-mdc-fab.mat-accent,.rtl-container.teal.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.teal.day .mat-mdc-fab.mat-warn,.rtl-container.teal.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.teal.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.teal.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.teal.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.teal.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.teal.day .mat-datepicker-content.mat-accent,.rtl-container.teal.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-datepicker-content.mat-warn,.rtl-container.teal.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-icon.mat-primary{--mat-icon-color: #00695c}.rtl-container.teal.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.teal.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.teal.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #00695c;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.teal.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.teal.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.teal.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.teal.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.teal.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.teal.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.teal.day .bg-primary{background-color:#009688;color:#fff}.rtl-container.teal.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.teal.day .page-title,.rtl-container.teal.day .mat-mdc-select-value,.rtl-container.teal.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.teal.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.teal.day .help-expansion .mat-expansion-panel-header,.rtl-container.teal.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.teal.day .help-expansion .mat-expansion-indicator:after,.rtl-container.teal.day .help-expansion .mat-expansion-panel-content,.rtl-container.teal.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#009688}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.teal.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#009688}.rtl-container.teal.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.teal.day .mat-tree-node:hover,.rtl-container.teal.day .mat-nested-tree-node-parent:hover,.rtl-container.teal.day .mat-select-panel .mat-option:hover,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#009688;cursor:pointer}.rtl-container.teal.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.teal.day .mat-tree-node:hover .mat-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#009688}.rtl-container.teal.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.teal.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#009688}.rtl-container.teal.day .spinner-container h2{color:#fff}.rtl-container.teal.day .ng-fa-icon,.rtl-container.teal.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.teal.day .mat-form-field-suffix{color:#0000008a}.rtl-container.teal.day .mat-stroked-button.mat-primary{border-color:#009688}.rtl-container.teal.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.teal.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.teal.day .selected-color{border-color:#4db6ac}.rtl-container.teal.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.teal.day table.mat-mdc-table thead tr th,.rtl-container.teal.day .page-title-container,.rtl-container.teal.day .page-sub-title-container{color:#0000008a}.rtl-container.teal.day .page-title-container .page-title-img,.rtl-container.teal.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.teal.day .page-title-container .mat-input-element,.rtl-container.teal.day .page-title-container .mat-radio-label-content,.rtl-container.teal.day .page-title-container .theme-name,.rtl-container.teal.day .page-sub-title-container .mat-input-element,.rtl-container.teal.day .page-sub-title-container .mat-radio-label-content,.rtl-container.teal.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.teal.day .cc-data-block .cc-data-title{color:#009688}.rtl-container.teal.day .active-link,.rtl-container.teal.day .active-link .fa-icon-small{color:#009688;font-weight:500;cursor:pointer;fill:#009688}.rtl-container.teal.day .mat-tree-node:hover,.rtl-container.teal.day .mat-nested-tree-node-parent:hover,.rtl-container.teal.day .mat-select-panel .mat-option:hover,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#009688;cursor:pointer;background:#0000000a}.rtl-container.teal.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.teal.day .mat-tree-node:hover .mat-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#009688}.rtl-container.teal.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.teal.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#009688}.rtl-container.teal.day .mat-tree-node .sidenav-img,.rtl-container.teal.day .mat-nested-tree-node .sidenav-img,.rtl-container.teal.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.teal.day .page-title-container .page-title-img,.rtl-container.teal.day svg.top-icon-small{fill:#000000de}.rtl-container.teal.day .mat-progress-bar-fill:after{background-color:#004d40}.rtl-container.teal.day .modal-qr-code-container{background:#0000001f}.rtl-container.teal.day .mdc-tab__text-label,.rtl-container.teal.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.teal.day .mat-mdc-card,.rtl-container.teal.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.teal.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.teal.day .dashboard-info-title{color:#009688}.rtl-container.teal.day .dashboard-capacity-header,.rtl-container.teal.day .dashboard-info-value{color:#0000008a}.rtl-container.teal.day .color-primary{color:#009688!important}.rtl-container.teal.day .dot-primary{background-color:#009688!important}.rtl-container.teal.day .dot-primary-lighter{background-color:#4db6ac!important}.rtl-container.teal.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .mat-mdc-form-field-hint{color:#009688}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.teal.day .mat-mdc-form-field-hint fa-icon svg path{fill:#009688}.rtl-container.teal.day .currency-icon path,.rtl-container.teal.day .currency-icon polygon{fill:#0000008a}.rtl-container.teal.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.teal.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.teal.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-primary-lighter{stroke:#4db6ac}.rtl-container.teal.day svg .stroke-color-primary{stroke:#009688}.rtl-container.teal.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.teal.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-1{fill:#fff}.rtl-container.teal.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.teal.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-6{fill:#fff}.rtl-container.teal.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-9{fill:#fff}.rtl-container.teal.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.teal.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.teal.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-16{fill:#404040}.rtl-container.teal.day svg .fill-color-17{fill:#404040}.rtl-container.teal.day svg .fill-color-18{fill:#000}.rtl-container.teal.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-24{fill:#000}.rtl-container.teal.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.teal.day svg .fill-color-27{fill:#000}.rtl-container.teal.day svg .fill-color-28{fill:#313131}.rtl-container.teal.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-30{fill:#fff}.rtl-container.teal.day svg .fill-color-31{fill:#009688}.rtl-container.teal.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.teal.day svg .fill-color-primary{fill:#009688}.rtl-container.teal.day svg .fill-color-primary-lighter{fill:#4db6ac}.rtl-container.teal.day svg .fill-color-primary-darker{fill:#009688}.rtl-container.teal.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.teal.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.teal.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#009688}.rtl-container.teal.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.teal.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.teal.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.teal.day .material-icons.mat-icon-no-color,.rtl-container.teal.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.teal.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.teal.day .material-icons.info-icon.info-icon-primary{color:#009688}.rtl-container.teal.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.teal.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.teal.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.teal.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.teal.day .material-icons.info-icon.arrow-downward,.rtl-container.teal.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.teal.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#009688}.rtl-container.teal.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#004d40}.rtl-container.teal.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#80cbc4}.rtl-container.teal.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.teal.day .mat-progress-bar-buffer{background-color:#b2dfdb}.rtl-container.teal.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.teal.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.teal.day .foreground.mat-progress-spinner circle,.rtl-container.teal.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.teal.day .mat-toolbar-row,.rtl-container.teal.day .mat-toolbar-single-row{height:4rem}.rtl-container.teal.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day a{color:#009688}.rtl-container.teal.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.teal.day .h-active-link{border-bottom:2px solid white}.rtl-container.teal.day .mat-icon-36{color:#0000008a}.rtl-container.teal.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.teal.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.teal.day .genseed-message{width:10%;color:#009688}.rtl-container.teal.day .border-primary{border:1px solid #009688}.rtl-container.teal.day .border-accent{border:1px solid #9e9e9e}.rtl-container.teal.day .border-warn{border:1px solid #b00020}.rtl-container.teal.day .material-icons.primary{color:#009688}.rtl-container.teal.day .material-icons.accent{color:#9e9e9e}.rtl-container.teal.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.teal.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.teal.day .row-disabled{background-color:gray}.rtl-container.teal.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.teal.day .mat-mdc-card-content,.rtl-container.teal.day .mat-mdc-card-subtitle,.rtl-container.teal.day .mat-mdc-card-title{color:#0000008a}.rtl-container.teal.day .mat-menu-panel{min-width:4rem}.rtl-container.teal.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.teal.day .horizontal-button:hover{background:#4db6ac;color:#9e9e9e}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#009688}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.teal.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.teal.day .mat-button,.rtl-container.teal.day .mat-icon-button,.rtl-container.teal.day .mat-stroked-button,.rtl-container.teal.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.teal.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.teal.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.teal.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.teal.day .cc-data-block .cc-data-value{color:#000}.rtl-container.teal.day .mat-cell,.rtl-container.teal.day .mat-header-cell,.rtl-container.teal.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.teal.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.teal.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#009688}.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#009688;opacity:1}.rtl-container.teal.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.teal.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.teal.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.teal.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.teal.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.teal.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.teal.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.teal.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.teal.day .more-button{color:#000}.rtl-container.teal.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.teal.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.teal.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.teal.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.teal.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.teal.day .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.teal.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.teal.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.teal.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.teal.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.teal.day .tab-badge .mat-badge-content.mat-badge-active{background:#009688}.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.teal.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.teal.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.teal.day .rtl-select-overlay{min-width:7rem}}.rtl-container.teal.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.teal.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.teal.day .table-actions-button{min-width:8rem}.rtl-container.teal.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.teal.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.teal.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.teal.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#80cbc4!important}.rtl-container.teal.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#00897b!important}.rtl-container.teal.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.teal.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.teal.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.teal.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.teal.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.teal.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.teal.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.teal.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.teal.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.teal.day .color-warn{color:#b00020}.rtl-container.teal.day .fill-warn{fill:#b00020}.rtl-container.teal.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.teal.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.teal.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.teal.day .alert.alert-info a{color:#004085}.rtl-container.teal.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.teal.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.teal.day .alert.alert-warn a{color:#856404}.rtl-container.teal.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.teal.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.teal.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.teal.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.teal.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.teal.day .failed-status{color:#b00020}.rtl-container.teal.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.teal.day .svg-fill-primary{fill:#009688}.rtl-container.teal.day .svg-fill-primary-lighter{fill:#4db6ac}.rtl-container.teal.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.teal.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.teal.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.teal.day .dashboard-card-content .underline,.rtl-container.teal.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.teal.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.teal.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#009688}.rtl-container.teal.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.teal.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#009688}.rtl-container.teal.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.teal.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#009688}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon{color:#009688}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon path{fill:#009688}.rtl-container.teal.day .fa-icon-primary{color:#009688}.rtl-container.teal.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day ngx-charts-bar-vertical text,.rtl-container.teal.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.teal.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.teal.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.teal.day .mat-paginator-container{padding:0}.rtl-container.teal.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.teal.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.teal.day .invoice-animation-div .particles-circle{position:absolute;background-color:#009688;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #009688;background-color:transparent}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.teal.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.teal.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.teal.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.teal.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.teal.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #00695c;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-filled-caret-color: #00695c;--mat-form-field-filled-focus-active-indicator-color: #00695c;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-outlined-caret-color: #00695c;--mat-form-field-outlined-focus-outline-color: #00695c;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #00695c;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #00695c;--mat-slide-toggle-selected-handle-color: #00695c;--mat-slide-toggle-selected-hover-state-layer-color: #00695c;--mat-slide-toggle-selected-pressed-state-layer-color: #00695c;--mat-slide-toggle-selected-focus-handle-color: #00695c;--mat-slide-toggle-selected-hover-handle-color: #00695c;--mat-slide-toggle-selected-pressed-handle-color: #00695c;--mat-slide-toggle-selected-focus-track-color: #00897b;--mat-slide-toggle-selected-hover-track-color: #00897b;--mat-slide-toggle-selected-pressed-track-color: #00897b;--mat-slide-toggle-selected-track-color: #00897b;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #00695c;--mat-slider-focus-handle-color: #00695c;--mat-slider-handle-color: #00695c;--mat-slider-hover-handle-color: #00695c;--mat-slider-focus-state-layer-color: color-mix(in srgb, #00695c 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #00695c 4%, transparent);--mat-slider-inactive-track-color: #00695c;--mat-slider-ripple-color: #00695c;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #00695c;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #00897b;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #00695c;--mat-badge-background-color: #00695c;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #00695c 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #00695c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #00695c 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #00695c 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #00695c 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #00695c;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #00695c;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #00695c;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #00695c;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.teal.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.teal.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.teal.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #00695c;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #00695c;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.teal.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.teal.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.teal.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #00695c;--mat-progress-bar-track-color: rgba(0, 105, 92, .25)}.rtl-container.teal.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.teal.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.teal.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.teal.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.teal.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.teal.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.teal.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #00695c;--mat-chip-elevated-disabled-container-color: #00695c;--mat-chip-elevated-selected-container-color: #00695c;--mat-chip-flat-disabled-selected-container-color: #00695c;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.teal.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.teal.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.teal.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #00695c;--mat-radio-selected-hover-icon-color: #00695c;--mat-radio-selected-icon-color: #00695c;--mat-radio-selected-pressed-icon-color: #00695c;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.teal.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.teal.night .mdc-list-item__start,.rtl-container.teal.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #00695c;--mat-radio-selected-hover-icon-color: #00695c;--mat-radio-selected-icon-color: #00695c;--mat-radio-selected-pressed-icon-color: #00695c;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-accent .mdc-list-item__start,.rtl-container.teal.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-warn .mdc-list-item__start,.rtl-container.teal.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #00695c;--mat-checkbox-selected-hover-icon-color: #00695c;--mat-checkbox-selected-icon-color: #00695c;--mat-checkbox-selected-pressed-icon-color: #00695c;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #00695c;--mat-checkbox-selected-hover-state-layer-color: #00695c;--mat-checkbox-selected-pressed-state-layer-color: #00695c;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#00695c}.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.teal.night .mat-mdc-tab-group,.rtl-container.teal.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #00695c;--mat-tab-active-ripple-color: #00695c;--mat-tab-inactive-ripple-color: #00695c;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #00695c;--mat-tab-active-hover-label-text-color: #00695c;--mat-tab-active-focus-indicator-color: #00695c;--mat-tab-active-hover-indicator-color: #00695c;--mat-tab-active-indicator-color: #00695c}.rtl-container.teal.night .mat-mdc-tab-group.mat-accent,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.teal.night .mat-mdc-tab-group.mat-warn,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #00695c;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.teal.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #00695c;--mat-checkbox-selected-hover-icon-color: #00695c;--mat-checkbox-selected-icon-color: #00695c;--mat-checkbox-selected-pressed-icon-color: #00695c;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #00695c;--mat-checkbox-selected-hover-state-layer-color: #00695c;--mat-checkbox-selected-pressed-state-layer-color: #00695c;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-button.mat-primary,.rtl-container.teal.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.teal.night .mat-mdc-raised-button.mat-primary,.rtl-container.teal.night .mat-mdc-outlined-button.mat-primary,.rtl-container.teal.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #00695c;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #00695c;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-button-outlined-state-layer-color: #00695c;--mat-button-protected-container-color: #00695c;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #00695c;--mat-button-text-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-button-text-state-layer-color: #00695c;--mat-button-tonal-container-color: #00695c;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.teal.night .mat-mdc-button.mat-accent,.rtl-container.teal.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.teal.night .mat-mdc-raised-button.mat-accent,.rtl-container.teal.night .mat-mdc-outlined-button.mat-accent,.rtl-container.teal.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.teal.night .mat-mdc-button.mat-warn,.rtl-container.teal.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.teal.night .mat-mdc-raised-button.mat-warn,.rtl-container.teal.night .mat-mdc-outlined-button.mat-warn,.rtl-container.teal.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.teal.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #00695c;--mat-icon-button-state-layer-color: #00695c;--mat-icon-button-ripple-color: color-mix(in srgb, #00695c 12%, transparent)}.rtl-container.teal.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.teal.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.teal.night .mat-mdc-fab.mat-primary,.rtl-container.teal.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #00695c;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-fab-small-container-color: #00695c;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.teal.night .mat-mdc-fab.mat-accent,.rtl-container.teal.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.teal.night .mat-mdc-fab.mat-warn,.rtl-container.teal.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.teal.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.teal.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.teal.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.teal.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.teal.night .mat-datepicker-content.mat-accent,.rtl-container.teal.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.teal.night .mat-datepicker-content.mat-warn,.rtl-container.teal.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.teal.night .mat-icon.mat-primary{--mat-icon-color: #00695c}.rtl-container.teal.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.teal.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.teal.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.teal.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #00695c;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.teal.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.teal.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.teal.night .mat-primary{color:#64ffda!important}.rtl-container.teal.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.teal.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.teal.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.teal.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.teal.night .bg-primary{background-color:#009688;color:#fff}.rtl-container.teal.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#64ffda}.rtl-container.teal.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.teal.night .currency-icon path,.rtl-container.teal.night .currency-icon polygon{fill:#fff}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.teal.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#64ffda}.rtl-container.teal.night .cc-data-block .cc-data-title{color:#64ffda}.rtl-container.teal.night .mat-stroked-button.mat-primary{border-color:#64ffda;color:#64ffda}.rtl-container.teal.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.teal.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.teal.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.teal.night .active-link,.rtl-container.teal.night .active-link .fa-icon-small,.rtl-container.teal.night .mat-select-panel .mat-option.mat-active,.rtl-container.teal.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#64ffda;font-weight:500;cursor:pointer;fill:#64ffda}.rtl-container.teal.night .help-expansion .mat-expansion-panel-header,.rtl-container.teal.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.teal.night .help-expansion .mat-expansion-indicator:after,.rtl-container.teal.night .help-expansion .mat-expansion-panel-content,.rtl-container.teal.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.teal.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.teal.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.teal.night .mat-expansion-panel,.rtl-container.teal.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.teal.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.teal.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.teal.night .mdc-data-table__header-cell,.rtl-container.teal.night .mat-mdc-paginator,.rtl-container.teal.night .mat-mdc-form-field-focus-overlay,.rtl-container.teal.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.teal.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.teal.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#64ffda}.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.teal.night .svg-donation{opacity:1!important}.rtl-container.teal.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#64ffda!important}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#64ffda!important}.rtl-container.teal.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#009688}.rtl-container.teal.night a{color:#64ffda!important;cursor:pointer}.rtl-container.teal.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.teal.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.teal.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.teal.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.teal.night .mat-mdc-select-placeholder,.rtl-container.teal.night .mat-mdc-select-value,.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#64ffda}.rtl-container.teal.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.teal.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#64ffda}.rtl-container.teal.night .mat-tree-node:hover,.rtl-container.teal.night .mat-nested-tree-node-parent:hover,.rtl-container.teal.night .mat-select-panel .mat-option:hover,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#64ffda;cursor:pointer;background:#ffffff0f}.rtl-container.teal.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.teal.night .mat-tree-node:hover .mat-icon,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.teal.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.teal.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#64ffda}.rtl-container.teal.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.teal.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.teal.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.teal.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#64ffda}.rtl-container.teal.night .mat-tree-node:hover .boltz-icon,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.teal.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#64ffda}.rtl-container.teal.night .mat-tree-node .sidenav-img,.rtl-container.teal.night .mat-nested-tree-node .sidenav-img,.rtl-container.teal.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.teal.night .page-title-container .page-title-img,.rtl-container.teal.night svg.top-icon-small{fill:#fff}.rtl-container.teal.night .selected-color{border-color:#4db6ac}.rtl-container.teal.night .mat-progress-bar-fill:after{background-color:#00897b}.rtl-container.teal.night .chart-legend .legend-label:hover,.rtl-container.teal.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.teal.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.teal.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#64ffda}.rtl-container.teal.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.teal.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#64ffda}.rtl-container.teal.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#64ffda}.rtl-container.teal.night .mat-select-panel{background-color:#121212}.rtl-container.teal.night .mat-tree{background:#121212}.rtl-container.teal.night h4{color:#64ffda}.rtl-container.teal.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.teal.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.teal.night .dashboard-info-title{color:#64ffda}.rtl-container.teal.night .dashboard-info-value,.rtl-container.teal.night .dashboard-capacity-header{color:#fff}.rtl-container.teal.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.teal.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.teal.night .color-primary{color:#64ffda!important}.rtl-container.teal.night .dot-primary{background-color:#64ffda!important}.rtl-container.teal.night .dot-primary-lighter{background-color:#009688!important}.rtl-container.teal.night .mat-stepper-vertical{background-color:#121212}.rtl-container.teal.night .spinner-container h2{color:#64ffda}.rtl-container.teal.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.teal.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.teal.night svg .boltz-icon-fill{fill:#fff}.rtl-container.teal.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-primary-lighter{stroke:#4db6ac}.rtl-container.teal.night svg .stroke-color-primary{stroke:#009688}.rtl-container.teal.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.teal.night svg .fill-color-0{fill:#171717}.rtl-container.teal.night svg .fill-color-1{fill:#232323}.rtl-container.teal.night svg .fill-color-2{fill:#222}.rtl-container.teal.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.teal.night svg .fill-color-4{fill:#383838}.rtl-container.teal.night svg .fill-color-5{fill:#555}.rtl-container.teal.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.teal.night svg .fill-color-7{fill:#202020}.rtl-container.teal.night svg .fill-color-8{fill:#242424}.rtl-container.teal.night svg .fill-color-9{fill:#262626}.rtl-container.teal.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.teal.night svg .fill-color-11{fill:#171717}.rtl-container.teal.night svg .fill-color-12{fill:#ccc}.rtl-container.teal.night svg .fill-color-13{fill:#adadad}.rtl-container.teal.night svg .fill-color-14{fill:#ababab}.rtl-container.teal.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.teal.night svg .fill-color-16{fill:#707070}.rtl-container.teal.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.teal.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.teal.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.teal.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.teal.night svg .fill-color-21{fill:#cacaca}.rtl-container.teal.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.teal.night svg .fill-color-23{fill:#777}.rtl-container.teal.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.teal.night svg .fill-color-25{fill:#252525}.rtl-container.teal.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.teal.night svg .fill-color-27{fill:#000}.rtl-container.teal.night svg .fill-color-28{fill:#313131}.rtl-container.teal.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.teal.night svg .fill-color-30{fill:#fff}.rtl-container.teal.night svg .fill-color-31{fill:#009688}.rtl-container.teal.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.teal.night svg .fill-color-primary{fill:#009688}.rtl-container.teal.night svg .fill-color-primary-lighter{fill:#4db6ac}.rtl-container.teal.night svg .fill-color-primary-darker{fill:#64ffda}.rtl-container.teal.night .mat-select-value,.rtl-container.teal.night .mat-select-arrow{color:#fff}.rtl-container.teal.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.teal.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.teal.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.teal.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.teal.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.teal.night .mat-button.mat-primary,.rtl-container.teal.night .mat-icon-button.mat-primary,.rtl-container.teal.night .mat-stroked-button.mat-primary{color:#64ffda}.rtl-container.teal.night tr.alert.alert-warn .mat-cell,.rtl-container.teal.night tr.alert.alert-warn .mat-header-cell,.rtl-container.teal.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.teal.night .material-icons.info-icon{font-size:100%;color:#64ffda}.rtl-container.teal.night .material-icons.info-icon.info-icon-primary{color:#64ffda}.rtl-container.teal.night .material-icons.info-icon.info-icon-text,.rtl-container.teal.night .material-icons.info-icon.arrow-downward,.rtl-container.teal.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.teal.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#64ffda}.rtl-container.teal.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#00695c}.rtl-container.teal.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#64ffda}.rtl-container.teal.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.teal.night .mat-progress-bar-buffer{background-color:#b2dfdb}.rtl-container.teal.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.teal.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.teal.night .foreground.mat-progress-spinner circle,.rtl-container.teal.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.teal.night .mat-toolbar-row,.rtl-container.teal.night .mat-toolbar-single-row{height:4rem}.rtl-container.teal.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.teal.night a{color:#009688}.rtl-container.teal.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.teal.night .h-active-link{border-bottom:2px solid white}.rtl-container.teal.night .mat-icon-36{color:#ffffffb3}.rtl-container.teal.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.teal.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.teal.night .genseed-message{width:10%;color:#009688}.rtl-container.teal.night .border-primary{border:1px solid #009688}.rtl-container.teal.night .border-accent{border:1px solid #aaaaaa}.rtl-container.teal.night .border-warn{border:1px solid #b00020}.rtl-container.teal.night .material-icons.primary{color:#009688}.rtl-container.teal.night .material-icons.accent{color:#aaa}.rtl-container.teal.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.teal.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.teal.night .row-disabled{background-color:gray}.rtl-container.teal.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.teal.night .mat-mdc-card-content,.rtl-container.teal.night .mat-mdc-card-subtitle,.rtl-container.teal.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.teal.night .mat-menu-panel{min-width:4rem}.rtl-container.teal.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.teal.night .horizontal-button:hover{background:#4db6ac;color:#aaa}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#009688}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.teal.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.teal.night .mat-button,.rtl-container.teal.night .mat-icon-button,.rtl-container.teal.night .mat-stroked-button,.rtl-container.teal.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.teal.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.teal.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.teal.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.teal.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.teal.night .mat-cell,.rtl-container.teal.night .mat-header-cell,.rtl-container.teal.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.teal.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.teal.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#009688}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#009688;opacity:1}.rtl-container.teal.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.teal.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.teal.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.teal.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.teal.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.teal.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.teal.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.teal.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.teal.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.teal.night .more-button{color:#fff}.rtl-container.teal.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.teal.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.teal.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.teal.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.teal.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.teal.night .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.teal.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.teal.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.teal.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.teal.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.teal.night .tab-badge .mat-badge-content.mat-badge-active{background:#009688}.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.teal.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.teal.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.teal.night .rtl-select-overlay{min-width:7rem}}.rtl-container.teal.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.teal.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.teal.night .table-actions-button{min-width:8rem}.rtl-container.teal.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.teal.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.teal.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.teal.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#80cbc4!important}.rtl-container.teal.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#00897b!important}.rtl-container.teal.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.teal.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.teal.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.teal.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.teal.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.teal.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.teal.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.teal.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.teal.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.teal.night .color-warn{color:#b00020}.rtl-container.teal.night .fill-warn{fill:#b00020}.rtl-container.teal.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.teal.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.teal.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.teal.night .alert.alert-info a{color:#004085}.rtl-container.teal.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.teal.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.teal.night .alert.alert-warn a{color:#856404}.rtl-container.teal.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.teal.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.teal.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.teal.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.teal.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.teal.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.teal.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.teal.night .failed-status{color:#b00020}.rtl-container.teal.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.teal.night .svg-fill-primary{fill:#009688}.rtl-container.teal.night .svg-fill-primary-lighter{fill:#4db6ac}.rtl-container.teal.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.teal.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.teal.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.teal.night .dashboard-card-content .underline,.rtl-container.teal.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.teal.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.teal.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#009688}.rtl-container.teal.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.teal.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#009688}.rtl-container.teal.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.teal.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#009688}.rtl-container.teal.night .mat-mdc-form-field-hint .currency-icon{color:#009688}.rtl-container.teal.night .mat-mdc-form-field-hint .currency-icon path{fill:#009688}.rtl-container.teal.night .fa-icon-primary{color:#009688}.rtl-container.teal.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night ngx-charts-bar-vertical text,.rtl-container.teal.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.teal.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.teal.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.teal.night .mat-paginator-container{padding:0}.rtl-container.teal.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.teal.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.teal.night .invoice-animation-div .particles-circle{position:absolute;background-color:#009688;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #009688;background-color:transparent}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.teal.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.teal.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.teal.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.teal.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.pink.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #e91e63;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-filled-caret-color: #e91e63;--mat-form-field-filled-focus-active-indicator-color: #e91e63;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-outlined-caret-color: #e91e63;--mat-form-field-outlined-focus-outline-color: #e91e63;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #e91e63;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #e91e63;--mat-slide-toggle-selected-handle-color: #e91e63;--mat-slide-toggle-selected-hover-state-layer-color: #e91e63;--mat-slide-toggle-selected-pressed-state-layer-color: #e91e63;--mat-slide-toggle-selected-focus-handle-color: #e91e63;--mat-slide-toggle-selected-hover-handle-color: #e91e63;--mat-slide-toggle-selected-pressed-handle-color: #e91e63;--mat-slide-toggle-selected-focus-track-color: #f06292;--mat-slide-toggle-selected-hover-track-color: #f06292;--mat-slide-toggle-selected-pressed-track-color: #f06292;--mat-slide-toggle-selected-track-color: #f06292;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #e91e63;--mat-slider-focus-handle-color: #e91e63;--mat-slider-handle-color: #e91e63;--mat-slider-hover-handle-color: #e91e63;--mat-slider-focus-state-layer-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #e91e63 4%, transparent);--mat-slider-inactive-track-color: #e91e63;--mat-slider-ripple-color: #e91e63;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #e91e63;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #f06292;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #e91e63;--mat-badge-background-color: #e91e63;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #e91e63 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #e91e63;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #e91e63 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #e91e63 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #e91e63;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #e91e63;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #e91e63;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #e91e63;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.pink.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.pink.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.pink.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #e91e63;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #e91e63;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.pink.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.pink.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.pink.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #e91e63;--mat-progress-bar-track-color: rgba(233, 30, 99, .25)}.rtl-container.pink.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.pink.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.pink.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.pink.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.pink.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.pink.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.pink.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #e91e63;--mat-chip-elevated-disabled-container-color: #e91e63;--mat-chip-elevated-selected-container-color: #e91e63;--mat-chip-flat-disabled-selected-container-color: #e91e63;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.pink.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.pink.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.pink.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #e91e63;--mat-radio-selected-hover-icon-color: #e91e63;--mat-radio-selected-icon-color: #e91e63;--mat-radio-selected-pressed-icon-color: #e91e63;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.pink.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.pink.day .mdc-list-item__start,.rtl-container.pink.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #e91e63;--mat-radio-selected-hover-icon-color: #e91e63;--mat-radio-selected-icon-color: #e91e63;--mat-radio-selected-pressed-icon-color: #e91e63;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-accent .mdc-list-item__start,.rtl-container.pink.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-warn .mdc-list-item__start,.rtl-container.pink.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #e91e63;--mat-checkbox-selected-hover-icon-color: #e91e63;--mat-checkbox-selected-icon-color: #e91e63;--mat-checkbox-selected-pressed-icon-color: #e91e63;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #e91e63;--mat-checkbox-selected-hover-state-layer-color: #e91e63;--mat-checkbox-selected-pressed-state-layer-color: #e91e63;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#e91e63}.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.pink.day .mat-mdc-tab-group,.rtl-container.pink.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #e91e63;--mat-tab-active-ripple-color: #e91e63;--mat-tab-inactive-ripple-color: #e91e63;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #e91e63;--mat-tab-active-hover-label-text-color: #e91e63;--mat-tab-active-focus-indicator-color: #e91e63;--mat-tab-active-hover-indicator-color: #e91e63;--mat-tab-active-indicator-color: #e91e63}.rtl-container.pink.day .mat-mdc-tab-group.mat-accent,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.pink.day .mat-mdc-tab-group.mat-warn,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #e91e63;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.pink.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #e91e63;--mat-checkbox-selected-hover-icon-color: #e91e63;--mat-checkbox-selected-icon-color: #e91e63;--mat-checkbox-selected-pressed-icon-color: #e91e63;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #e91e63;--mat-checkbox-selected-hover-state-layer-color: #e91e63;--mat-checkbox-selected-pressed-state-layer-color: #e91e63;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-button.mat-primary,.rtl-container.pink.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.pink.day .mat-mdc-raised-button.mat-primary,.rtl-container.pink.day .mat-mdc-outlined-button.mat-primary,.rtl-container.pink.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #e91e63;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #e91e63;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-button-outlined-state-layer-color: #e91e63;--mat-button-protected-container-color: #e91e63;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #e91e63;--mat-button-text-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-button-text-state-layer-color: #e91e63;--mat-button-tonal-container-color: #e91e63;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.pink.day .mat-mdc-button.mat-accent,.rtl-container.pink.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.pink.day .mat-mdc-raised-button.mat-accent,.rtl-container.pink.day .mat-mdc-outlined-button.mat-accent,.rtl-container.pink.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.pink.day .mat-mdc-button.mat-warn,.rtl-container.pink.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.pink.day .mat-mdc-raised-button.mat-warn,.rtl-container.pink.day .mat-mdc-outlined-button.mat-warn,.rtl-container.pink.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.pink.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #e91e63;--mat-icon-button-state-layer-color: #e91e63;--mat-icon-button-ripple-color: color-mix(in srgb, #e91e63 12%, transparent)}.rtl-container.pink.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.pink.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.pink.day .mat-mdc-fab.mat-primary,.rtl-container.pink.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #e91e63;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-fab-small-container-color: #e91e63;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.pink.day .mat-mdc-fab.mat-accent,.rtl-container.pink.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.pink.day .mat-mdc-fab.mat-warn,.rtl-container.pink.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.pink.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.pink.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.pink.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.pink.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.pink.day .mat-datepicker-content.mat-accent,.rtl-container.pink.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-datepicker-content.mat-warn,.rtl-container.pink.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-icon.mat-primary{--mat-icon-color: #e91e63}.rtl-container.pink.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.pink.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.pink.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #e91e63;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.pink.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.pink.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.pink.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.pink.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.pink.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.pink.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.pink.day .bg-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.pink.day .page-title,.rtl-container.pink.day .mat-mdc-select-value,.rtl-container.pink.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.pink.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.pink.day .help-expansion .mat-expansion-panel-header,.rtl-container.pink.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.pink.day .help-expansion .mat-expansion-indicator:after,.rtl-container.pink.day .help-expansion .mat-expansion-panel-content,.rtl-container.pink.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#e91e63}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.pink.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#e91e63}.rtl-container.pink.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.pink.day .mat-tree-node:hover,.rtl-container.pink.day .mat-nested-tree-node-parent:hover,.rtl-container.pink.day .mat-select-panel .mat-option:hover,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#e91e63;cursor:pointer}.rtl-container.pink.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.pink.day .mat-tree-node:hover .mat-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#e91e63}.rtl-container.pink.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.pink.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#e91e63}.rtl-container.pink.day .spinner-container h2{color:#fff}.rtl-container.pink.day .ng-fa-icon,.rtl-container.pink.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.pink.day .mat-form-field-suffix{color:#0000008a}.rtl-container.pink.day .mat-stroked-button.mat-primary{border-color:#e91e63}.rtl-container.pink.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.pink.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.pink.day .selected-color{border-color:#f06292}.rtl-container.pink.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.pink.day table.mat-mdc-table thead tr th,.rtl-container.pink.day .page-title-container,.rtl-container.pink.day .page-sub-title-container{color:#0000008a}.rtl-container.pink.day .page-title-container .page-title-img,.rtl-container.pink.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.pink.day .page-title-container .mat-input-element,.rtl-container.pink.day .page-title-container .mat-radio-label-content,.rtl-container.pink.day .page-title-container .theme-name,.rtl-container.pink.day .page-sub-title-container .mat-input-element,.rtl-container.pink.day .page-sub-title-container .mat-radio-label-content,.rtl-container.pink.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.pink.day .cc-data-block .cc-data-title{color:#e91e63}.rtl-container.pink.day .active-link,.rtl-container.pink.day .active-link .fa-icon-small{color:#e91e63;font-weight:500;cursor:pointer;fill:#e91e63}.rtl-container.pink.day .mat-tree-node:hover,.rtl-container.pink.day .mat-nested-tree-node-parent:hover,.rtl-container.pink.day .mat-select-panel .mat-option:hover,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#e91e63;cursor:pointer;background:#0000000a}.rtl-container.pink.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.pink.day .mat-tree-node:hover .mat-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#e91e63}.rtl-container.pink.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.pink.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#e91e63}.rtl-container.pink.day .mat-tree-node .sidenav-img,.rtl-container.pink.day .mat-nested-tree-node .sidenav-img,.rtl-container.pink.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.pink.day .page-title-container .page-title-img,.rtl-container.pink.day svg.top-icon-small{fill:#000000de}.rtl-container.pink.day .mat-progress-bar-fill:after{background-color:#880e4f}.rtl-container.pink.day .modal-qr-code-container{background:#0000001f}.rtl-container.pink.day .mdc-tab__text-label,.rtl-container.pink.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.pink.day .mat-mdc-card,.rtl-container.pink.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.pink.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.pink.day .dashboard-info-title{color:#e91e63}.rtl-container.pink.day .dashboard-capacity-header,.rtl-container.pink.day .dashboard-info-value{color:#0000008a}.rtl-container.pink.day .color-primary{color:#e91e63!important}.rtl-container.pink.day .dot-primary{background-color:#e91e63!important}.rtl-container.pink.day .dot-primary-lighter{background-color:#f06292!important}.rtl-container.pink.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .mat-mdc-form-field-hint{color:#e91e63}.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.pink.day .mat-mdc-form-field-hint fa-icon svg path{fill:#e91e63}.rtl-container.pink.day .currency-icon path,.rtl-container.pink.day .currency-icon polygon{fill:#0000008a}.rtl-container.pink.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.pink.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.pink.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-primary-lighter{stroke:#f06292}.rtl-container.pink.day svg .stroke-color-primary{stroke:#e91e63}.rtl-container.pink.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.pink.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-1{fill:#fff}.rtl-container.pink.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.pink.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-6{fill:#fff}.rtl-container.pink.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-9{fill:#fff}.rtl-container.pink.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.pink.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.pink.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-16{fill:#404040}.rtl-container.pink.day svg .fill-color-17{fill:#404040}.rtl-container.pink.day svg .fill-color-18{fill:#000}.rtl-container.pink.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-24{fill:#000}.rtl-container.pink.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.pink.day svg .fill-color-27{fill:#000}.rtl-container.pink.day svg .fill-color-28{fill:#313131}.rtl-container.pink.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-30{fill:#fff}.rtl-container.pink.day svg .fill-color-31{fill:#e91e63}.rtl-container.pink.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.pink.day svg .fill-color-primary{fill:#e91e63}.rtl-container.pink.day svg .fill-color-primary-lighter{fill:#f06292}.rtl-container.pink.day svg .fill-color-primary-darker{fill:#e91e63}.rtl-container.pink.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.pink.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.pink.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#e91e63}.rtl-container.pink.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.pink.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.pink.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.pink.day .material-icons.mat-icon-no-color,.rtl-container.pink.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.pink.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.pink.day .material-icons.info-icon.info-icon-primary{color:#e91e63}.rtl-container.pink.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.pink.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.pink.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.pink.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.pink.day .material-icons.info-icon.arrow-downward,.rtl-container.pink.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.pink.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#e91e63}.rtl-container.pink.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#880e4f}.rtl-container.pink.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#f48fb1}.rtl-container.pink.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.pink.day .mat-progress-bar-buffer{background-color:#f8bbd0}.rtl-container.pink.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.pink.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.pink.day .foreground.mat-progress-spinner circle,.rtl-container.pink.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.pink.day .mat-toolbar-row,.rtl-container.pink.day .mat-toolbar-single-row{height:4rem}.rtl-container.pink.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day a{color:#e91e63}.rtl-container.pink.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.pink.day .h-active-link{border-bottom:2px solid white}.rtl-container.pink.day .mat-icon-36{color:#0000008a}.rtl-container.pink.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.pink.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.pink.day .genseed-message{width:10%;color:#e91e63}.rtl-container.pink.day .border-primary{border:1px solid #e91e63}.rtl-container.pink.day .border-accent{border:1px solid #9e9e9e}.rtl-container.pink.day .border-warn{border:1px solid #b00020}.rtl-container.pink.day .material-icons.primary{color:#e91e63}.rtl-container.pink.day .material-icons.accent{color:#9e9e9e}.rtl-container.pink.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.pink.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.pink.day .row-disabled{background-color:gray}.rtl-container.pink.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.pink.day .mat-mdc-card-content,.rtl-container.pink.day .mat-mdc-card-subtitle,.rtl-container.pink.day .mat-mdc-card-title{color:#0000008a}.rtl-container.pink.day .mat-menu-panel{min-width:4rem}.rtl-container.pink.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.pink.day .horizontal-button:hover{background:#f06292;color:#9e9e9e}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#e91e63}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.pink.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.pink.day .mat-button,.rtl-container.pink.day .mat-icon-button,.rtl-container.pink.day .mat-stroked-button,.rtl-container.pink.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.pink.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.pink.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.pink.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.pink.day .cc-data-block .cc-data-value{color:#000}.rtl-container.pink.day .mat-cell,.rtl-container.pink.day .mat-header-cell,.rtl-container.pink.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.pink.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.pink.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#e91e63}.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#e91e63;opacity:1}.rtl-container.pink.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.pink.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.pink.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.pink.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.pink.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.pink.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.pink.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.pink.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.pink.day .more-button{color:#000}.rtl-container.pink.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.pink.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.pink.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.pink.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.pink.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.pink.day .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.pink.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.pink.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.pink.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.pink.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.pink.day .tab-badge .mat-badge-content.mat-badge-active{background:#e91e63}.rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.pink.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.pink.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.pink.day .rtl-select-overlay{min-width:7rem}}.rtl-container.pink.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.pink.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.pink.day .table-actions-button{min-width:8rem}.rtl-container.pink.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.pink.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.pink.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.pink.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#f48fb1!important}.rtl-container.pink.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#d81b60!important}.rtl-container.pink.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.pink.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.pink.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.pink.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.pink.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.pink.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.pink.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.pink.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.pink.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.pink.day .color-warn{color:#b00020}.rtl-container.pink.day .fill-warn{fill:#b00020}.rtl-container.pink.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.pink.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.pink.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.pink.day .alert.alert-info a{color:#004085}.rtl-container.pink.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.pink.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.pink.day .alert.alert-warn a{color:#856404}.rtl-container.pink.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.pink.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.pink.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.pink.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.pink.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.pink.day .failed-status{color:#b00020}.rtl-container.pink.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.pink.day .svg-fill-primary{fill:#e91e63}.rtl-container.pink.day .svg-fill-primary-lighter{fill:#f06292}.rtl-container.pink.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.pink.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.pink.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.pink.day .dashboard-card-content .underline,.rtl-container.pink.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.pink.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.pink.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#e91e63}.rtl-container.pink.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.pink.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#e91e63}.rtl-container.pink.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.pink.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#e91e63}.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon{color:#e91e63}.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon path{fill:#e91e63}.rtl-container.pink.day .fa-icon-primary{color:#e91e63}.rtl-container.pink.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day ngx-charts-bar-vertical text,.rtl-container.pink.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.pink.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.pink.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.pink.day .mat-paginator-container{padding:0}.rtl-container.pink.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.pink.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.pink.day .invoice-animation-div .particles-circle{position:absolute;background-color:#e91e63;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #e91e63;background-color:transparent}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.pink.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.pink.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.pink.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.pink.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.pink.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #e91e63;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-filled-caret-color: #e91e63;--mat-form-field-filled-focus-active-indicator-color: #e91e63;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-outlined-caret-color: #e91e63;--mat-form-field-outlined-focus-outline-color: #e91e63;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #e91e63;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #e91e63;--mat-slide-toggle-selected-handle-color: #e91e63;--mat-slide-toggle-selected-hover-state-layer-color: #e91e63;--mat-slide-toggle-selected-pressed-state-layer-color: #e91e63;--mat-slide-toggle-selected-focus-handle-color: #e91e63;--mat-slide-toggle-selected-hover-handle-color: #e91e63;--mat-slide-toggle-selected-pressed-handle-color: #e91e63;--mat-slide-toggle-selected-focus-track-color: #d81b60;--mat-slide-toggle-selected-hover-track-color: #d81b60;--mat-slide-toggle-selected-pressed-track-color: #d81b60;--mat-slide-toggle-selected-track-color: #d81b60;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #e91e63;--mat-slider-focus-handle-color: #e91e63;--mat-slider-handle-color: #e91e63;--mat-slider-hover-handle-color: #e91e63;--mat-slider-focus-state-layer-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #e91e63 4%, transparent);--mat-slider-inactive-track-color: #e91e63;--mat-slider-ripple-color: #e91e63;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #e91e63;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #d81b60;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #e91e63;--mat-badge-background-color: #e91e63;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #e91e63 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #e91e63;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #e91e63 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #e91e63 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #e91e63;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #e91e63;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #e91e63;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #e91e63;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.pink.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.pink.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.pink.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #e91e63;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #e91e63;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.pink.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.pink.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.pink.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #e91e63;--mat-progress-bar-track-color: rgba(233, 30, 99, .25)}.rtl-container.pink.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.pink.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.pink.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.pink.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.pink.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.pink.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.pink.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #e91e63;--mat-chip-elevated-disabled-container-color: #e91e63;--mat-chip-elevated-selected-container-color: #e91e63;--mat-chip-flat-disabled-selected-container-color: #e91e63;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.pink.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.pink.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.pink.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #e91e63;--mat-radio-selected-hover-icon-color: #e91e63;--mat-radio-selected-icon-color: #e91e63;--mat-radio-selected-pressed-icon-color: #e91e63;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.pink.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.pink.night .mdc-list-item__start,.rtl-container.pink.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #e91e63;--mat-radio-selected-hover-icon-color: #e91e63;--mat-radio-selected-icon-color: #e91e63;--mat-radio-selected-pressed-icon-color: #e91e63;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-accent .mdc-list-item__start,.rtl-container.pink.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-warn .mdc-list-item__start,.rtl-container.pink.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #e91e63;--mat-checkbox-selected-hover-icon-color: #e91e63;--mat-checkbox-selected-icon-color: #e91e63;--mat-checkbox-selected-pressed-icon-color: #e91e63;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #e91e63;--mat-checkbox-selected-hover-state-layer-color: #e91e63;--mat-checkbox-selected-pressed-state-layer-color: #e91e63;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#e91e63}.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.pink.night .mat-mdc-tab-group,.rtl-container.pink.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #e91e63;--mat-tab-active-ripple-color: #e91e63;--mat-tab-inactive-ripple-color: #e91e63;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #e91e63;--mat-tab-active-hover-label-text-color: #e91e63;--mat-tab-active-focus-indicator-color: #e91e63;--mat-tab-active-hover-indicator-color: #e91e63;--mat-tab-active-indicator-color: #e91e63}.rtl-container.pink.night .mat-mdc-tab-group.mat-accent,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.pink.night .mat-mdc-tab-group.mat-warn,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #e91e63;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.pink.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #e91e63;--mat-checkbox-selected-hover-icon-color: #e91e63;--mat-checkbox-selected-icon-color: #e91e63;--mat-checkbox-selected-pressed-icon-color: #e91e63;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #e91e63;--mat-checkbox-selected-hover-state-layer-color: #e91e63;--mat-checkbox-selected-pressed-state-layer-color: #e91e63;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-button.mat-primary,.rtl-container.pink.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.pink.night .mat-mdc-raised-button.mat-primary,.rtl-container.pink.night .mat-mdc-outlined-button.mat-primary,.rtl-container.pink.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #e91e63;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #e91e63;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-button-outlined-state-layer-color: #e91e63;--mat-button-protected-container-color: #e91e63;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #e91e63;--mat-button-text-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-button-text-state-layer-color: #e91e63;--mat-button-tonal-container-color: #e91e63;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.pink.night .mat-mdc-button.mat-accent,.rtl-container.pink.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.pink.night .mat-mdc-raised-button.mat-accent,.rtl-container.pink.night .mat-mdc-outlined-button.mat-accent,.rtl-container.pink.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.pink.night .mat-mdc-button.mat-warn,.rtl-container.pink.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.pink.night .mat-mdc-raised-button.mat-warn,.rtl-container.pink.night .mat-mdc-outlined-button.mat-warn,.rtl-container.pink.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.pink.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #e91e63;--mat-icon-button-state-layer-color: #e91e63;--mat-icon-button-ripple-color: color-mix(in srgb, #e91e63 12%, transparent)}.rtl-container.pink.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.pink.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.pink.night .mat-mdc-fab.mat-primary,.rtl-container.pink.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #e91e63;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-fab-small-container-color: #e91e63;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.pink.night .mat-mdc-fab.mat-accent,.rtl-container.pink.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.pink.night .mat-mdc-fab.mat-warn,.rtl-container.pink.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.pink.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.pink.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.pink.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.pink.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.pink.night .mat-datepicker-content.mat-accent,.rtl-container.pink.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.pink.night .mat-datepicker-content.mat-warn,.rtl-container.pink.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.pink.night .mat-icon.mat-primary{--mat-icon-color: #e91e63}.rtl-container.pink.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.pink.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.pink.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.pink.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #e91e63;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.pink.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.pink.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.pink.night .mat-primary{color:#ff4081!important}.rtl-container.pink.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.pink.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.pink.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.pink.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.pink.night .bg-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#ff4081}.rtl-container.pink.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.pink.night .currency-icon path,.rtl-container.pink.night .currency-icon polygon{fill:#fff}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.pink.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#ff4081}.rtl-container.pink.night .cc-data-block .cc-data-title{color:#ff4081}.rtl-container.pink.night .mat-stroked-button.mat-primary{border-color:#ff4081;color:#ff4081}.rtl-container.pink.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.pink.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.pink.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.pink.night .active-link,.rtl-container.pink.night .active-link .fa-icon-small,.rtl-container.pink.night .mat-select-panel .mat-option.mat-active,.rtl-container.pink.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#ff4081;font-weight:500;cursor:pointer;fill:#ff4081}.rtl-container.pink.night .help-expansion .mat-expansion-panel-header,.rtl-container.pink.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.pink.night .help-expansion .mat-expansion-indicator:after,.rtl-container.pink.night .help-expansion .mat-expansion-panel-content,.rtl-container.pink.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.pink.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.pink.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.pink.night .mat-expansion-panel,.rtl-container.pink.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.pink.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.pink.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.pink.night .mdc-data-table__header-cell,.rtl-container.pink.night .mat-mdc-paginator,.rtl-container.pink.night .mat-mdc-form-field-focus-overlay,.rtl-container.pink.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.pink.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.pink.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#ff4081}.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.pink.night .svg-donation{opacity:1!important}.rtl-container.pink.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#ff4081!important}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#ff4081!important}.rtl-container.pink.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#e91e63}.rtl-container.pink.night a{color:#ff4081!important;cursor:pointer}.rtl-container.pink.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.pink.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.pink.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.pink.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.pink.night .mat-mdc-select-placeholder,.rtl-container.pink.night .mat-mdc-select-value,.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#ff4081}.rtl-container.pink.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.pink.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#ff4081}.rtl-container.pink.night .mat-tree-node:hover,.rtl-container.pink.night .mat-nested-tree-node-parent:hover,.rtl-container.pink.night .mat-select-panel .mat-option:hover,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#ff4081;cursor:pointer;background:#ffffff0f}.rtl-container.pink.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.pink.night .mat-tree-node:hover .mat-icon,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.pink.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.pink.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#ff4081}.rtl-container.pink.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.pink.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.pink.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.pink.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#ff4081}.rtl-container.pink.night .mat-tree-node:hover .boltz-icon,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.pink.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#ff4081}.rtl-container.pink.night .mat-tree-node .sidenav-img,.rtl-container.pink.night .mat-nested-tree-node .sidenav-img,.rtl-container.pink.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.pink.night .page-title-container .page-title-img,.rtl-container.pink.night svg.top-icon-small{fill:#fff}.rtl-container.pink.night .selected-color{border-color:#f06292}.rtl-container.pink.night .mat-progress-bar-fill:after{background-color:#d81b60}.rtl-container.pink.night .chart-legend .legend-label:hover,.rtl-container.pink.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.pink.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.pink.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#ff4081}.rtl-container.pink.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.pink.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#ff4081}.rtl-container.pink.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#ff4081}.rtl-container.pink.night .mat-select-panel{background-color:#121212}.rtl-container.pink.night .mat-tree{background:#121212}.rtl-container.pink.night h4{color:#ff4081}.rtl-container.pink.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.pink.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.pink.night .dashboard-info-title{color:#ff4081}.rtl-container.pink.night .dashboard-info-value,.rtl-container.pink.night .dashboard-capacity-header{color:#fff}.rtl-container.pink.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.pink.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.pink.night .color-primary{color:#ff4081!important}.rtl-container.pink.night .dot-primary{background-color:#ff4081!important}.rtl-container.pink.night .dot-primary-lighter{background-color:#e91e63!important}.rtl-container.pink.night .mat-stepper-vertical{background-color:#121212}.rtl-container.pink.night .spinner-container h2{color:#ff4081}.rtl-container.pink.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.pink.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.pink.night svg .boltz-icon-fill{fill:#fff}.rtl-container.pink.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-primary-lighter{stroke:#f06292}.rtl-container.pink.night svg .stroke-color-primary{stroke:#e91e63}.rtl-container.pink.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.pink.night svg .fill-color-0{fill:#171717}.rtl-container.pink.night svg .fill-color-1{fill:#232323}.rtl-container.pink.night svg .fill-color-2{fill:#222}.rtl-container.pink.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.pink.night svg .fill-color-4{fill:#383838}.rtl-container.pink.night svg .fill-color-5{fill:#555}.rtl-container.pink.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.pink.night svg .fill-color-7{fill:#202020}.rtl-container.pink.night svg .fill-color-8{fill:#242424}.rtl-container.pink.night svg .fill-color-9{fill:#262626}.rtl-container.pink.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.pink.night svg .fill-color-11{fill:#171717}.rtl-container.pink.night svg .fill-color-12{fill:#ccc}.rtl-container.pink.night svg .fill-color-13{fill:#adadad}.rtl-container.pink.night svg .fill-color-14{fill:#ababab}.rtl-container.pink.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.pink.night svg .fill-color-16{fill:#707070}.rtl-container.pink.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.pink.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.pink.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.pink.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.pink.night svg .fill-color-21{fill:#cacaca}.rtl-container.pink.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.pink.night svg .fill-color-23{fill:#777}.rtl-container.pink.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.pink.night svg .fill-color-25{fill:#252525}.rtl-container.pink.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.pink.night svg .fill-color-27{fill:#000}.rtl-container.pink.night svg .fill-color-28{fill:#313131}.rtl-container.pink.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.pink.night svg .fill-color-30{fill:#fff}.rtl-container.pink.night svg .fill-color-31{fill:#e91e63}.rtl-container.pink.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.pink.night svg .fill-color-primary{fill:#e91e63}.rtl-container.pink.night svg .fill-color-primary-lighter{fill:#f06292}.rtl-container.pink.night svg .fill-color-primary-darker{fill:#ff4081}.rtl-container.pink.night .mat-select-value,.rtl-container.pink.night .mat-select-arrow{color:#fff}.rtl-container.pink.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.pink.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.pink.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.pink.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.pink.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.pink.night .mat-button.mat-primary,.rtl-container.pink.night .mat-icon-button.mat-primary,.rtl-container.pink.night .mat-stroked-button.mat-primary{color:#ff4081}.rtl-container.pink.night tr.alert.alert-warn .mat-cell,.rtl-container.pink.night tr.alert.alert-warn .mat-header-cell,.rtl-container.pink.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.pink.night .material-icons.info-icon{font-size:100%;color:#ff4081}.rtl-container.pink.night .material-icons.info-icon.info-icon-primary{color:#ff4081}.rtl-container.pink.night .material-icons.info-icon.info-icon-text,.rtl-container.pink.night .material-icons.info-icon.arrow-downward,.rtl-container.pink.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.pink.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#ff4081}.rtl-container.pink.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#ad1457}.rtl-container.pink.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#ff4081}.rtl-container.pink.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.pink.night .mat-progress-bar-buffer{background-color:#f8bbd0}.rtl-container.pink.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.pink.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.pink.night .foreground.mat-progress-spinner circle,.rtl-container.pink.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.pink.night .mat-toolbar-row,.rtl-container.pink.night .mat-toolbar-single-row{height:4rem}.rtl-container.pink.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.pink.night a{color:#e91e63}.rtl-container.pink.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.pink.night .h-active-link{border-bottom:2px solid white}.rtl-container.pink.night .mat-icon-36{color:#ffffffb3}.rtl-container.pink.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.pink.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.pink.night .genseed-message{width:10%;color:#e91e63}.rtl-container.pink.night .border-primary{border:1px solid #e91e63}.rtl-container.pink.night .border-accent{border:1px solid #aaaaaa}.rtl-container.pink.night .border-warn{border:1px solid #b00020}.rtl-container.pink.night .material-icons.primary{color:#e91e63}.rtl-container.pink.night .material-icons.accent{color:#aaa}.rtl-container.pink.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.pink.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.pink.night .row-disabled{background-color:gray}.rtl-container.pink.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.pink.night .mat-mdc-card-content,.rtl-container.pink.night .mat-mdc-card-subtitle,.rtl-container.pink.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.pink.night .mat-menu-panel{min-width:4rem}.rtl-container.pink.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.pink.night .horizontal-button:hover{background:#f06292;color:#aaa}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#e91e63}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.pink.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.pink.night .mat-button,.rtl-container.pink.night .mat-icon-button,.rtl-container.pink.night .mat-stroked-button,.rtl-container.pink.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.pink.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.pink.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.pink.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.pink.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.pink.night .mat-cell,.rtl-container.pink.night .mat-header-cell,.rtl-container.pink.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.pink.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.pink.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#e91e63}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#e91e63;opacity:1}.rtl-container.pink.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.pink.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.pink.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.pink.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.pink.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.pink.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.pink.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.pink.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.pink.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.pink.night .more-button{color:#fff}.rtl-container.pink.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.pink.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.pink.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.pink.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.pink.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.pink.night .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.pink.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.pink.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.pink.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.pink.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.pink.night .tab-badge .mat-badge-content.mat-badge-active{background:#e91e63}.rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.pink.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.pink.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.pink.night .rtl-select-overlay{min-width:7rem}}.rtl-container.pink.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.pink.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.pink.night .table-actions-button{min-width:8rem}.rtl-container.pink.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.pink.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.pink.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.pink.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#f48fb1!important}.rtl-container.pink.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#d81b60!important}.rtl-container.pink.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.pink.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.pink.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.pink.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.pink.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.pink.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.pink.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.pink.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.pink.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.pink.night .color-warn{color:#b00020}.rtl-container.pink.night .fill-warn{fill:#b00020}.rtl-container.pink.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.pink.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.pink.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.pink.night .alert.alert-info a{color:#004085}.rtl-container.pink.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.pink.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.pink.night .alert.alert-warn a{color:#856404}.rtl-container.pink.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.pink.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.pink.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.pink.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.pink.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.pink.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.pink.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.pink.night .failed-status{color:#b00020}.rtl-container.pink.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.pink.night .svg-fill-primary{fill:#e91e63}.rtl-container.pink.night .svg-fill-primary-lighter{fill:#f06292}.rtl-container.pink.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.pink.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.pink.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.pink.night .dashboard-card-content .underline,.rtl-container.pink.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.pink.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.pink.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#e91e63}.rtl-container.pink.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.pink.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#e91e63}.rtl-container.pink.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.pink.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#e91e63}.rtl-container.pink.night .mat-mdc-form-field-hint .currency-icon{color:#e91e63}.rtl-container.pink.night .mat-mdc-form-field-hint .currency-icon path{fill:#e91e63}.rtl-container.pink.night .fa-icon-primary{color:#e91e63}.rtl-container.pink.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night ngx-charts-bar-vertical text,.rtl-container.pink.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.pink.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.pink.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.pink.night .mat-paginator-container{padding:0}.rtl-container.pink.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.pink.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.pink.night .invoice-animation-div .particles-circle{position:absolute;background-color:#e91e63;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #e91e63;background-color:transparent}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.pink.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.pink.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.pink.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.pink.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.yellow.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #945f1f;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-filled-caret-color: #945f1f;--mat-form-field-filled-focus-active-indicator-color: #945f1f;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-outlined-caret-color: #945f1f;--mat-form-field-outlined-focus-outline-color: #945f1f;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #945f1f;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #945f1f;--mat-slide-toggle-selected-handle-color: #945f1f;--mat-slide-toggle-selected-hover-state-layer-color: #945f1f;--mat-slide-toggle-selected-pressed-state-layer-color: #945f1f;--mat-slide-toggle-selected-focus-handle-color: #945f1f;--mat-slide-toggle-selected-hover-handle-color: #945f1f;--mat-slide-toggle-selected-pressed-handle-color: #945f1f;--mat-slide-toggle-selected-focus-track-color: #b48f62;--mat-slide-toggle-selected-hover-track-color: #b48f62;--mat-slide-toggle-selected-pressed-track-color: #b48f62;--mat-slide-toggle-selected-track-color: #b48f62;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #945f1f;--mat-slider-focus-handle-color: #945f1f;--mat-slider-handle-color: #945f1f;--mat-slider-hover-handle-color: #945f1f;--mat-slider-focus-state-layer-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #945f1f 4%, transparent);--mat-slider-inactive-track-color: #945f1f;--mat-slider-ripple-color: #945f1f;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #945f1f;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #b48f62;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #945f1f;--mat-badge-background-color: #945f1f;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #945f1f 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #945f1f;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #945f1f 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #945f1f 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #945f1f;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #945f1f;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #945f1f;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #945f1f;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.yellow.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.yellow.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.yellow.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #945f1f;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #945f1f;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.yellow.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.yellow.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.yellow.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #945f1f;--mat-progress-bar-track-color: rgba(148, 95, 31, .25)}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.yellow.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.yellow.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.yellow.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.yellow.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.yellow.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #945f1f;--mat-chip-elevated-disabled-container-color: #945f1f;--mat-chip-elevated-selected-container-color: #945f1f;--mat-chip-flat-disabled-selected-container-color: #945f1f;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.yellow.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.yellow.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.yellow.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #945f1f;--mat-radio-selected-hover-icon-color: #945f1f;--mat-radio-selected-icon-color: #945f1f;--mat-radio-selected-pressed-icon-color: #945f1f;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.yellow.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.yellow.day .mdc-list-item__start,.rtl-container.yellow.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #945f1f;--mat-radio-selected-hover-icon-color: #945f1f;--mat-radio-selected-icon-color: #945f1f;--mat-radio-selected-pressed-icon-color: #945f1f;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-accent .mdc-list-item__start,.rtl-container.yellow.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-warn .mdc-list-item__start,.rtl-container.yellow.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #945f1f;--mat-checkbox-selected-hover-icon-color: #945f1f;--mat-checkbox-selected-icon-color: #945f1f;--mat-checkbox-selected-pressed-icon-color: #945f1f;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #945f1f;--mat-checkbox-selected-hover-state-layer-color: #945f1f;--mat-checkbox-selected-pressed-state-layer-color: #945f1f;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#945f1f}.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.yellow.day .mat-mdc-tab-group,.rtl-container.yellow.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #945f1f;--mat-tab-active-ripple-color: #945f1f;--mat-tab-inactive-ripple-color: #945f1f;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #945f1f;--mat-tab-active-hover-label-text-color: #945f1f;--mat-tab-active-focus-indicator-color: #945f1f;--mat-tab-active-hover-indicator-color: #945f1f;--mat-tab-active-indicator-color: #945f1f}.rtl-container.yellow.day .mat-mdc-tab-group.mat-accent,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.yellow.day .mat-mdc-tab-group.mat-warn,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #945f1f;--mat-tab-foreground-color: #ffffff}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.yellow.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #945f1f;--mat-checkbox-selected-hover-icon-color: #945f1f;--mat-checkbox-selected-icon-color: #945f1f;--mat-checkbox-selected-pressed-icon-color: #945f1f;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #945f1f;--mat-checkbox-selected-hover-state-layer-color: #945f1f;--mat-checkbox-selected-pressed-state-layer-color: #945f1f;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-button.mat-primary,.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.yellow.day .mat-mdc-raised-button.mat-primary,.rtl-container.yellow.day .mat-mdc-outlined-button.mat-primary,.rtl-container.yellow.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #945f1f;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #945f1f;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-button-outlined-state-layer-color: #945f1f;--mat-button-protected-container-color: #945f1f;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #945f1f;--mat-button-text-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-button-text-state-layer-color: #945f1f;--mat-button-tonal-container-color: #945f1f;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.rtl-container.yellow.day .mat-mdc-button.mat-accent,.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.yellow.day .mat-mdc-raised-button.mat-accent,.rtl-container.yellow.day .mat-mdc-outlined-button.mat-accent,.rtl-container.yellow.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.yellow.day .mat-mdc-button.mat-warn,.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.yellow.day .mat-mdc-raised-button.mat-warn,.rtl-container.yellow.day .mat-mdc-outlined-button.mat-warn,.rtl-container.yellow.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.yellow.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #945f1f;--mat-icon-button-state-layer-color: #945f1f;--mat-icon-button-ripple-color: color-mix(in srgb, #945f1f 12%, transparent)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.yellow.day .mat-mdc-fab.mat-primary,.rtl-container.yellow.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #945f1f;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-fab-small-container-color: #945f1f;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.rtl-container.yellow.day .mat-mdc-fab.mat-accent,.rtl-container.yellow.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.yellow.day .mat-mdc-fab.mat-warn,.rtl-container.yellow.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.yellow.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.yellow.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.yellow.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.yellow.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.yellow.day .mat-datepicker-content.mat-accent,.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-datepicker-content.mat-warn,.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-icon.mat-primary{--mat-icon-color: #945f1f}.rtl-container.yellow.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.yellow.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.yellow.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #945f1f;--mat-toolbar-container-text-color: #ffffff}.rtl-container.yellow.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.yellow.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.yellow.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.yellow.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.yellow.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.yellow.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.yellow.day .bg-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.yellow.day .page-title,.rtl-container.yellow.day .mat-mdc-select-value,.rtl-container.yellow.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.yellow.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.yellow.day .help-expansion .mat-expansion-indicator:after,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-content,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#945f1f}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.yellow.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#945f1f}.rtl-container.yellow.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.yellow.day .mat-tree-node:hover,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover,.rtl-container.yellow.day .mat-select-panel .mat-option:hover,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#945f1f;cursor:pointer}.rtl-container.yellow.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.yellow.day .mat-tree-node:hover .mat-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#945f1f}.rtl-container.yellow.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#945f1f}.rtl-container.yellow.day .spinner-container h2{color:#fff}.rtl-container.yellow.day .ng-fa-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.yellow.day .mat-form-field-suffix{color:#0000008a}.rtl-container.yellow.day .mat-stroked-button.mat-primary{border-color:#945f1f}.rtl-container.yellow.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.yellow.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.yellow.day .selected-color{border-color:#b48f62}.rtl-container.yellow.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.yellow.day table.mat-mdc-table thead tr th,.rtl-container.yellow.day .page-title-container,.rtl-container.yellow.day .page-sub-title-container{color:#0000008a}.rtl-container.yellow.day .page-title-container .page-title-img,.rtl-container.yellow.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.yellow.day .page-title-container .mat-input-element,.rtl-container.yellow.day .page-title-container .mat-radio-label-content,.rtl-container.yellow.day .page-title-container .theme-name,.rtl-container.yellow.day .page-sub-title-container .mat-input-element,.rtl-container.yellow.day .page-sub-title-container .mat-radio-label-content,.rtl-container.yellow.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.yellow.day .cc-data-block .cc-data-title{color:#945f1f}.rtl-container.yellow.day .active-link,.rtl-container.yellow.day .active-link .fa-icon-small{color:#945f1f;font-weight:500;cursor:pointer;fill:#945f1f}.rtl-container.yellow.day .mat-tree-node:hover,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover,.rtl-container.yellow.day .mat-select-panel .mat-option:hover,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#945f1f;cursor:pointer;background:#0000000a}.rtl-container.yellow.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.yellow.day .mat-tree-node:hover .mat-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#945f1f}.rtl-container.yellow.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#945f1f}.rtl-container.yellow.day .mat-tree-node .sidenav-img,.rtl-container.yellow.day .mat-nested-tree-node .sidenav-img,.rtl-container.yellow.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.yellow.day .page-title-container .page-title-img,.rtl-container.yellow.day svg.top-icon-small{fill:#000000de}.rtl-container.yellow.day .mat-progress-bar-fill:after{background-color:#65320a}.rtl-container.yellow.day .modal-qr-code-container{background:#0000001f}.rtl-container.yellow.day .mdc-tab__text-label,.rtl-container.yellow.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.yellow.day .mat-mdc-card,.rtl-container.yellow.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.yellow.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.yellow.day .dashboard-info-title{color:#945f1f}.rtl-container.yellow.day .dashboard-capacity-header,.rtl-container.yellow.day .dashboard-info-value{color:#0000008a}.rtl-container.yellow.day .color-primary{color:#945f1f!important}.rtl-container.yellow.day .dot-primary{background-color:#945f1f!important}.rtl-container.yellow.day .dot-primary-lighter{background-color:#b48f62!important}.rtl-container.yellow.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-mdc-form-field-hint{color:#945f1f}.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.yellow.day .mat-mdc-form-field-hint fa-icon svg path{fill:#945f1f}.rtl-container.yellow.day .currency-icon path,.rtl-container.yellow.day .currency-icon polygon{fill:#0000008a}.rtl-container.yellow.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.yellow.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.yellow.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-primary-lighter{stroke:#b48f62}.rtl-container.yellow.day svg .stroke-color-primary{stroke:#945f1f}.rtl-container.yellow.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.yellow.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-1{fill:#fff}.rtl-container.yellow.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.yellow.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-6{fill:#fff}.rtl-container.yellow.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-9{fill:#fff}.rtl-container.yellow.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.yellow.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.yellow.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-16{fill:#404040}.rtl-container.yellow.day svg .fill-color-17{fill:#404040}.rtl-container.yellow.day svg .fill-color-18{fill:#000}.rtl-container.yellow.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-24{fill:#000}.rtl-container.yellow.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.yellow.day svg .fill-color-27{fill:#000}.rtl-container.yellow.day svg .fill-color-28{fill:#313131}.rtl-container.yellow.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-30{fill:#fff}.rtl-container.yellow.day svg .fill-color-31{fill:#945f1f}.rtl-container.yellow.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.yellow.day svg .fill-color-primary{fill:#945f1f}.rtl-container.yellow.day svg .fill-color-primary-lighter{fill:#b48f62}.rtl-container.yellow.day svg .fill-color-primary-darker{fill:#945f1f}.rtl-container.yellow.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.yellow.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.yellow.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#945f1f}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.yellow.day .material-icons.mat-icon-no-color,.rtl-container.yellow.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.yellow.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.yellow.day .material-icons.info-icon.info-icon-primary{color:#945f1f}.rtl-container.yellow.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.yellow.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.yellow.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.yellow.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.yellow.day .material-icons.info-icon.arrow-downward,.rtl-container.yellow.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.yellow.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#945f1f}.rtl-container.yellow.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#65320a}.rtl-container.yellow.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#caaf8f}.rtl-container.yellow.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.yellow.day .mat-progress-bar-buffer{background-color:#dfcfbc}.rtl-container.yellow.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.yellow.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.yellow.day .foreground.mat-progress-spinner circle,.rtl-container.yellow.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.yellow.day .mat-toolbar-row,.rtl-container.yellow.day .mat-toolbar-single-row{height:4rem}.rtl-container.yellow.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day a{color:#945f1f}.rtl-container.yellow.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.yellow.day .h-active-link{border-bottom:2px solid white}.rtl-container.yellow.day .mat-icon-36{color:#0000008a}.rtl-container.yellow.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.yellow.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.yellow.day .genseed-message{width:10%;color:#945f1f}.rtl-container.yellow.day .border-primary{border:1px solid #945f1f}.rtl-container.yellow.day .border-accent{border:1px solid #9e9e9e}.rtl-container.yellow.day .border-warn{border:1px solid #b00020}.rtl-container.yellow.day .material-icons.primary{color:#945f1f}.rtl-container.yellow.day .material-icons.accent{color:#9e9e9e}.rtl-container.yellow.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.yellow.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.yellow.day .row-disabled{background-color:gray}.rtl-container.yellow.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.yellow.day .mat-mdc-card-content,.rtl-container.yellow.day .mat-mdc-card-subtitle,.rtl-container.yellow.day .mat-mdc-card-title{color:#0000008a}.rtl-container.yellow.day .mat-menu-panel{min-width:4rem}.rtl-container.yellow.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.yellow.day .horizontal-button:hover{background:#b48f62;color:#9e9e9e}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#945f1f}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.yellow.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.yellow.day .mat-button,.rtl-container.yellow.day .mat-icon-button,.rtl-container.yellow.day .mat-stroked-button,.rtl-container.yellow.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.yellow.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.yellow.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.yellow.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.yellow.day .cc-data-block .cc-data-value{color:#000}.rtl-container.yellow.day .mat-cell,.rtl-container.yellow.day .mat-header-cell,.rtl-container.yellow.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.yellow.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.yellow.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#945f1f}.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#945f1f;opacity:1}.rtl-container.yellow.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.yellow.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.yellow.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.yellow.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.yellow.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.yellow.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.yellow.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.yellow.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.yellow.day .more-button{color:#000}.rtl-container.yellow.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.yellow.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.yellow.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.yellow.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.yellow.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.yellow.day .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.yellow.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.yellow.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.yellow.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.yellow.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.yellow.day .tab-badge .mat-badge-content.mat-badge-active{background:#945f1f}.rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.yellow.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.yellow.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.yellow.day .rtl-select-overlay{min-width:7rem}}.rtl-container.yellow.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.yellow.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.yellow.day .table-actions-button{min-width:8rem}.rtl-container.yellow.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.yellow.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.yellow.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.yellow.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#caaf8f!important}.rtl-container.yellow.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#8c571b!important}.rtl-container.yellow.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.yellow.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.yellow.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.yellow.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.yellow.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.yellow.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.yellow.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.yellow.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.yellow.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.yellow.day .color-warn{color:#b00020}.rtl-container.yellow.day .fill-warn{fill:#b00020}.rtl-container.yellow.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.yellow.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.yellow.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.yellow.day .alert.alert-info a{color:#004085}.rtl-container.yellow.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.yellow.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.yellow.day .alert.alert-warn a{color:#856404}.rtl-container.yellow.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.yellow.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.yellow.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.yellow.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.yellow.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.yellow.day .failed-status{color:#b00020}.rtl-container.yellow.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.yellow.day .svg-fill-primary{fill:#945f1f}.rtl-container.yellow.day .svg-fill-primary-lighter{fill:#b48f62}.rtl-container.yellow.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.yellow.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.yellow.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.yellow.day .dashboard-card-content .underline,.rtl-container.yellow.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.yellow.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#945f1f}.rtl-container.yellow.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#945f1f}.rtl-container.yellow.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#945f1f}.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon{color:#945f1f}.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon path{fill:#945f1f}.rtl-container.yellow.day .fa-icon-primary{color:#945f1f}.rtl-container.yellow.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day ngx-charts-bar-vertical text,.rtl-container.yellow.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.yellow.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.yellow.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.yellow.day .mat-paginator-container{padding:0}.rtl-container.yellow.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.yellow.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.yellow.day .invoice-animation-div .particles-circle{position:absolute;background-color:#945f1f;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #945f1f;background-color:transparent}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.yellow.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.yellow.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.yellow.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.yellow.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.yellow.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #945f1f;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-filled-caret-color: #945f1f;--mat-form-field-filled-focus-active-indicator-color: #945f1f;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-outlined-caret-color: #945f1f;--mat-form-field-outlined-focus-outline-color: #945f1f;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #945f1f;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #945f1f;--mat-slide-toggle-selected-handle-color: #945f1f;--mat-slide-toggle-selected-hover-state-layer-color: #945f1f;--mat-slide-toggle-selected-pressed-state-layer-color: #945f1f;--mat-slide-toggle-selected-focus-handle-color: #945f1f;--mat-slide-toggle-selected-hover-handle-color: #945f1f;--mat-slide-toggle-selected-pressed-handle-color: #945f1f;--mat-slide-toggle-selected-focus-track-color: #8c571b;--mat-slide-toggle-selected-hover-track-color: #8c571b;--mat-slide-toggle-selected-pressed-track-color: #8c571b;--mat-slide-toggle-selected-track-color: #8c571b;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #945f1f;--mat-slider-focus-handle-color: #945f1f;--mat-slider-handle-color: #945f1f;--mat-slider-hover-handle-color: #945f1f;--mat-slider-focus-state-layer-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #945f1f 4%, transparent);--mat-slider-inactive-track-color: #945f1f;--mat-slider-ripple-color: #945f1f;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #945f1f;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #8c571b;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #945f1f;--mat-badge-background-color: #945f1f;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #945f1f 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #945f1f;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #945f1f 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #945f1f 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #945f1f;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #945f1f;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #945f1f;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #945f1f;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.yellow.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.yellow.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.yellow.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #945f1f;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #945f1f;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.yellow.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.yellow.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.yellow.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #945f1f;--mat-progress-bar-track-color: rgba(148, 95, 31, .25)}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.yellow.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.yellow.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.yellow.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.yellow.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.yellow.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #945f1f;--mat-chip-elevated-disabled-container-color: #945f1f;--mat-chip-elevated-selected-container-color: #945f1f;--mat-chip-flat-disabled-selected-container-color: #945f1f;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.yellow.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.yellow.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.yellow.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #945f1f;--mat-radio-selected-hover-icon-color: #945f1f;--mat-radio-selected-icon-color: #945f1f;--mat-radio-selected-pressed-icon-color: #945f1f;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.yellow.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.yellow.night .mdc-list-item__start,.rtl-container.yellow.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #945f1f;--mat-radio-selected-hover-icon-color: #945f1f;--mat-radio-selected-icon-color: #945f1f;--mat-radio-selected-pressed-icon-color: #945f1f;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-accent .mdc-list-item__start,.rtl-container.yellow.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-warn .mdc-list-item__start,.rtl-container.yellow.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #945f1f;--mat-checkbox-selected-hover-icon-color: #945f1f;--mat-checkbox-selected-icon-color: #945f1f;--mat-checkbox-selected-pressed-icon-color: #945f1f;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #945f1f;--mat-checkbox-selected-hover-state-layer-color: #945f1f;--mat-checkbox-selected-pressed-state-layer-color: #945f1f;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#945f1f}.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.yellow.night .mat-mdc-tab-group,.rtl-container.yellow.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #945f1f;--mat-tab-active-ripple-color: #945f1f;--mat-tab-inactive-ripple-color: #945f1f;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #945f1f;--mat-tab-active-hover-label-text-color: #945f1f;--mat-tab-active-focus-indicator-color: #945f1f;--mat-tab-active-hover-indicator-color: #945f1f;--mat-tab-active-indicator-color: #945f1f}.rtl-container.yellow.night .mat-mdc-tab-group.mat-accent,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.yellow.night .mat-mdc-tab-group.mat-warn,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #945f1f;--mat-tab-foreground-color: #ffffff}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.yellow.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #945f1f;--mat-checkbox-selected-hover-icon-color: #945f1f;--mat-checkbox-selected-icon-color: #945f1f;--mat-checkbox-selected-pressed-icon-color: #945f1f;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #945f1f;--mat-checkbox-selected-hover-state-layer-color: #945f1f;--mat-checkbox-selected-pressed-state-layer-color: #945f1f;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-button.mat-primary,.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.yellow.night .mat-mdc-raised-button.mat-primary,.rtl-container.yellow.night .mat-mdc-outlined-button.mat-primary,.rtl-container.yellow.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #945f1f;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #945f1f;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-button-outlined-state-layer-color: #945f1f;--mat-button-protected-container-color: #945f1f;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #945f1f;--mat-button-text-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-button-text-state-layer-color: #945f1f;--mat-button-tonal-container-color: #945f1f;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.rtl-container.yellow.night .mat-mdc-button.mat-accent,.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.yellow.night .mat-mdc-raised-button.mat-accent,.rtl-container.yellow.night .mat-mdc-outlined-button.mat-accent,.rtl-container.yellow.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.yellow.night .mat-mdc-button.mat-warn,.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.yellow.night .mat-mdc-raised-button.mat-warn,.rtl-container.yellow.night .mat-mdc-outlined-button.mat-warn,.rtl-container.yellow.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #945f1f;--mat-icon-button-state-layer-color: #945f1f;--mat-icon-button-ripple-color: color-mix(in srgb, #945f1f 12%, transparent)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.yellow.night .mat-mdc-fab.mat-primary,.rtl-container.yellow.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #945f1f;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-fab-small-container-color: #945f1f;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.rtl-container.yellow.night .mat-mdc-fab.mat-accent,.rtl-container.yellow.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.yellow.night .mat-mdc-fab.mat-warn,.rtl-container.yellow.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.yellow.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.yellow.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.yellow.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.yellow.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.yellow.night .mat-datepicker-content.mat-accent,.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.yellow.night .mat-datepicker-content.mat-warn,.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.yellow.night .mat-icon.mat-primary{--mat-icon-color: #945f1f}.rtl-container.yellow.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.yellow.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.yellow.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.yellow.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #945f1f;--mat-toolbar-container-text-color: #ffffff}.rtl-container.yellow.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.yellow.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.yellow.night .mat-primary{color:#ffa164!important}.rtl-container.yellow.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.yellow.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.yellow.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.yellow.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.yellow.night .bg-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.yellow.night .currency-icon path,.rtl-container.yellow.night .currency-icon polygon{fill:#fff}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.yellow.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#ffa164}.rtl-container.yellow.night .cc-data-block .cc-data-title{color:#ffa164}.rtl-container.yellow.night .mat-stroked-button.mat-primary{border-color:#ffa164;color:#ffa164}.rtl-container.yellow.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.yellow.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.yellow.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.yellow.night .active-link,.rtl-container.yellow.night .active-link .fa-icon-small,.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active,.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#ffa164;font-weight:500;cursor:pointer;fill:#ffa164}.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.yellow.night .help-expansion .mat-expansion-indicator:after,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-content,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.yellow.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.yellow.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.yellow.night .mat-expansion-panel,.rtl-container.yellow.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.yellow.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.yellow.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.yellow.night .mdc-data-table__header-cell,.rtl-container.yellow.night .mat-mdc-paginator,.rtl-container.yellow.night .mat-mdc-form-field-focus-overlay,.rtl-container.yellow.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.yellow.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.yellow.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#ffa164}.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.yellow.night .svg-donation{opacity:1!important}.rtl-container.yellow.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#ffa164!important}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#ffa164!important}.rtl-container.yellow.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#945f1f}.rtl-container.yellow.night a{color:#ffa164!important;cursor:pointer}.rtl-container.yellow.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.yellow.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.yellow.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.yellow.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.yellow.night .mat-mdc-select-placeholder,.rtl-container.yellow.night .mat-mdc-select-value,.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#ffa164}.rtl-container.yellow.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.yellow.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#ffa164}.rtl-container.yellow.night .mat-tree-node:hover,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover,.rtl-container.yellow.night .mat-select-panel .mat-option:hover,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#ffa164;cursor:pointer;background:#ffffff0f}.rtl-container.yellow.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.yellow.night .mat-tree-node:hover .mat-icon,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#ffa164}.rtl-container.yellow.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.yellow.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#ffa164}.rtl-container.yellow.night .mat-tree-node:hover .boltz-icon,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#ffa164}.rtl-container.yellow.night .mat-tree-node .sidenav-img,.rtl-container.yellow.night .mat-nested-tree-node .sidenav-img,.rtl-container.yellow.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.yellow.night .page-title-container .page-title-img,.rtl-container.yellow.night svg.top-icon-small{fill:#fff}.rtl-container.yellow.night .selected-color{border-color:#b48f62}.rtl-container.yellow.night .mat-progress-bar-fill:after{background-color:#8c571b}.rtl-container.yellow.night .chart-legend .legend-label:hover,.rtl-container.yellow.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.yellow.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.yellow.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#ffa164}.rtl-container.yellow.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.yellow.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#ffa164}.rtl-container.yellow.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#ffa164}.rtl-container.yellow.night .mat-select-panel{background-color:#121212}.rtl-container.yellow.night .mat-tree{background:#121212}.rtl-container.yellow.night h4{color:#ffa164}.rtl-container.yellow.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.yellow.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.yellow.night .dashboard-info-title{color:#ffa164}.rtl-container.yellow.night .dashboard-info-value,.rtl-container.yellow.night .dashboard-capacity-header{color:#fff}.rtl-container.yellow.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.yellow.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.yellow.night .color-primary{color:#ffa164!important}.rtl-container.yellow.night .dot-primary{background-color:#ffa164!important}.rtl-container.yellow.night .dot-primary-lighter{background-color:#945f1f!important}.rtl-container.yellow.night .mat-stepper-vertical{background-color:#121212}.rtl-container.yellow.night .spinner-container h2{color:#ffa164}.rtl-container.yellow.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.yellow.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.yellow.night svg .boltz-icon-fill{fill:#fff}.rtl-container.yellow.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-primary-lighter{stroke:#b48f62}.rtl-container.yellow.night svg .stroke-color-primary{stroke:#945f1f}.rtl-container.yellow.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.yellow.night svg .fill-color-0{fill:#171717}.rtl-container.yellow.night svg .fill-color-1{fill:#232323}.rtl-container.yellow.night svg .fill-color-2{fill:#222}.rtl-container.yellow.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.yellow.night svg .fill-color-4{fill:#383838}.rtl-container.yellow.night svg .fill-color-5{fill:#555}.rtl-container.yellow.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.yellow.night svg .fill-color-7{fill:#202020}.rtl-container.yellow.night svg .fill-color-8{fill:#242424}.rtl-container.yellow.night svg .fill-color-9{fill:#262626}.rtl-container.yellow.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.yellow.night svg .fill-color-11{fill:#171717}.rtl-container.yellow.night svg .fill-color-12{fill:#ccc}.rtl-container.yellow.night svg .fill-color-13{fill:#adadad}.rtl-container.yellow.night svg .fill-color-14{fill:#ababab}.rtl-container.yellow.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.yellow.night svg .fill-color-16{fill:#707070}.rtl-container.yellow.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.yellow.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.yellow.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.yellow.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.yellow.night svg .fill-color-21{fill:#cacaca}.rtl-container.yellow.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.yellow.night svg .fill-color-23{fill:#777}.rtl-container.yellow.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.yellow.night svg .fill-color-25{fill:#252525}.rtl-container.yellow.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.yellow.night svg .fill-color-27{fill:#000}.rtl-container.yellow.night svg .fill-color-28{fill:#313131}.rtl-container.yellow.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.yellow.night svg .fill-color-30{fill:#fff}.rtl-container.yellow.night svg .fill-color-31{fill:#945f1f}.rtl-container.yellow.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.yellow.night svg .fill-color-primary{fill:#945f1f}.rtl-container.yellow.night svg .fill-color-primary-lighter{fill:#b48f62}.rtl-container.yellow.night svg .fill-color-primary-darker{fill:#ffa164}.rtl-container.yellow.night .mat-select-value,.rtl-container.yellow.night .mat-select-arrow{color:#fff}.rtl-container.yellow.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.yellow.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.yellow.night .mat-button.mat-primary,.rtl-container.yellow.night .mat-icon-button.mat-primary,.rtl-container.yellow.night .mat-stroked-button.mat-primary{color:#ffa164}.rtl-container.yellow.night tr.alert.alert-warn .mat-cell,.rtl-container.yellow.night tr.alert.alert-warn .mat-header-cell,.rtl-container.yellow.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.yellow.night .material-icons.info-icon{font-size:100%;color:#ffa164}.rtl-container.yellow.night .material-icons.info-icon.info-icon-primary{color:#ffa164}.rtl-container.yellow.night .material-icons.info-icon.info-icon-text,.rtl-container.yellow.night .material-icons.info-icon.arrow-downward,.rtl-container.yellow.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.yellow.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#ffa164}.rtl-container.yellow.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#774312}.rtl-container.yellow.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#ffa164}.rtl-container.yellow.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.yellow.night .mat-progress-bar-buffer{background-color:#dfcfbc}.rtl-container.yellow.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.yellow.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.yellow.night .foreground.mat-progress-spinner circle,.rtl-container.yellow.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.yellow.night .mat-toolbar-row,.rtl-container.yellow.night .mat-toolbar-single-row{height:4rem}.rtl-container.yellow.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.yellow.night a{color:#945f1f}.rtl-container.yellow.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.yellow.night .h-active-link{border-bottom:2px solid white}.rtl-container.yellow.night .mat-icon-36{color:#ffffffb3}.rtl-container.yellow.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.yellow.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.yellow.night .genseed-message{width:10%;color:#945f1f}.rtl-container.yellow.night .border-primary{border:1px solid #945f1f}.rtl-container.yellow.night .border-accent{border:1px solid #aaaaaa}.rtl-container.yellow.night .border-warn{border:1px solid #b00020}.rtl-container.yellow.night .material-icons.primary{color:#945f1f}.rtl-container.yellow.night .material-icons.accent{color:#aaa}.rtl-container.yellow.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.yellow.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.yellow.night .row-disabled{background-color:gray}.rtl-container.yellow.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.yellow.night .mat-mdc-card-content,.rtl-container.yellow.night .mat-mdc-card-subtitle,.rtl-container.yellow.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.yellow.night .mat-menu-panel{min-width:4rem}.rtl-container.yellow.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.yellow.night .horizontal-button:hover{background:#b48f62;color:#aaa}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#945f1f}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.yellow.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.yellow.night .mat-button,.rtl-container.yellow.night .mat-icon-button,.rtl-container.yellow.night .mat-stroked-button,.rtl-container.yellow.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.yellow.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.yellow.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.yellow.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.yellow.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.yellow.night .mat-cell,.rtl-container.yellow.night .mat-header-cell,.rtl-container.yellow.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.yellow.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.yellow.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#945f1f}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#945f1f;opacity:1}.rtl-container.yellow.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.yellow.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.yellow.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.yellow.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.yellow.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.yellow.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.yellow.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.yellow.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.yellow.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.yellow.night .more-button{color:#fff}.rtl-container.yellow.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.yellow.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.yellow.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.yellow.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.yellow.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.yellow.night .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.yellow.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.yellow.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.yellow.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.yellow.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.yellow.night .tab-badge .mat-badge-content.mat-badge-active{background:#945f1f}.rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.yellow.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.yellow.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.yellow.night .rtl-select-overlay{min-width:7rem}}.rtl-container.yellow.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.yellow.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.yellow.night .table-actions-button{min-width:8rem}.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.yellow.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.yellow.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.yellow.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#caaf8f!important}.rtl-container.yellow.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#8c571b!important}.rtl-container.yellow.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.yellow.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.yellow.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.yellow.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.yellow.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.yellow.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.yellow.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.yellow.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.yellow.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.yellow.night .color-warn{color:#b00020}.rtl-container.yellow.night .fill-warn{fill:#b00020}.rtl-container.yellow.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.yellow.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.yellow.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.yellow.night .alert.alert-info a{color:#004085}.rtl-container.yellow.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.yellow.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.yellow.night .alert.alert-warn a{color:#856404}.rtl-container.yellow.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.yellow.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.yellow.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.yellow.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.yellow.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.yellow.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.yellow.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.yellow.night .failed-status{color:#b00020}.rtl-container.yellow.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.yellow.night .svg-fill-primary{fill:#945f1f}.rtl-container.yellow.night .svg-fill-primary-lighter{fill:#b48f62}.rtl-container.yellow.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.yellow.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.yellow.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.yellow.night .dashboard-card-content .underline,.rtl-container.yellow.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.yellow.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#945f1f}.rtl-container.yellow.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#945f1f}.rtl-container.yellow.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#945f1f}.rtl-container.yellow.night .mat-mdc-form-field-hint .currency-icon{color:#945f1f}.rtl-container.yellow.night .mat-mdc-form-field-hint .currency-icon path{fill:#945f1f}.rtl-container.yellow.night .fa-icon-primary{color:#945f1f}.rtl-container.yellow.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night ngx-charts-bar-vertical text,.rtl-container.yellow.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.yellow.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.yellow.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.yellow.night .mat-paginator-container{padding:0}.rtl-container.yellow.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.yellow.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.yellow.night .invoice-animation-div .particles-circle{position:absolute;background-color:#945f1f;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #945f1f;background-color:transparent}@keyframes particles-1{0%{transform:scale(1);visibility:visible}to{left:199px;top:201px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}@keyframes particles-2{0%{transform:scale(1);visibility:visible}to{left:-40px;top:82px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}@keyframes particles-3{0%{transform:scale(1);visibility:visible}to{left:162px;top:109px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}@keyframes particles-4{0%{transform:scale(1);visibility:visible}to{left:223px;top:78px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}@keyframes particles-5{0%{transform:scale(1);visibility:visible}to{left:184px;top:113px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}@keyframes particles-6{0%{transform:scale(1);visibility:visible}to{left:-42px;top:-238px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}@keyframes particles-7{0%{transform:scale(1);visibility:visible}to{left:150px;top:-98px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}@keyframes particles-8{0%{transform:scale(1);visibility:visible}to{left:62px;top:225px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}@keyframes particles-9{0%{transform:scale(1);visibility:visible}to{left:113px;top:86px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}@keyframes particles-10{0%{transform:scale(1);visibility:visible}to{left:229px;top:-127px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}@keyframes particles-11{0%{transform:scale(1);visibility:visible}to{left:243px;top:-106px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}@keyframes particles-12{0%{transform:scale(1);visibility:visible}to{left:-168px;top:138px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}@keyframes particles-13{0%{transform:scale(1);visibility:visible}to{left:-124px;top:62px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}@keyframes particles-14{0%{transform:scale(1);visibility:visible}to{left:246px;top:30px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}@keyframes particles-15{0%{transform:scale(1);visibility:visible}to{left:-22px;top:-171px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}@keyframes particles-16{0%{transform:scale(1);visibility:visible}to{left:-144px;top:115px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}@keyframes particles-17{0%{transform:scale(1);visibility:visible}to{left:209px;top:84px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}@keyframes particles-18{0%{transform:scale(1);visibility:visible}to{left:84px;top:-190px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}@keyframes particles-19{0%{transform:scale(1);visibility:visible}to{left:-94px;top:208px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}@keyframes particles-20{0%{transform:scale(1);visibility:visible}to{left:147px;top:203px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}@keyframes particles-21{0%{transform:scale(1);visibility:visible}to{left:178px;top:206px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}@keyframes particles-22{0%{transform:scale(1);visibility:visible}to{left:-10px;top:-226px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}@keyframes particles-23{0%{transform:scale(1);visibility:visible}to{left:3px;top:222px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}@keyframes particles-24{0%{transform:scale(1);visibility:visible}to{left:-182px;top:-44px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}@keyframes particles-25{0%{transform:scale(1);visibility:visible}to{left:-146px;top:166px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}@keyframes particles-26{0%{transform:scale(1);visibility:visible}to{left:144px;top:218px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}@keyframes particles-27{0%{transform:scale(1);visibility:visible}to{left:48px;top:222px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}@keyframes particles-28{0%{transform:scale(1);visibility:visible}to{left:-48px;top:50px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}@keyframes particles-29{0%{transform:scale(1);visibility:visible}to{left:-228px;top:-15px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}@keyframes particles-30{0%{transform:scale(1);visibility:visible}to{left:91px;top:-199px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}@keyframes particles-31{0%{transform:scale(1);visibility:visible}to{left:-40px;top:104px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}@keyframes particles-32{0%{transform:scale(1);visibility:visible}to{left:-102px;top:4px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}@keyframes particles-33{0%{transform:scale(1);visibility:visible}to{left:-26px;top:-89px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}@keyframes particles-34{0%{transform:scale(1);visibility:visible}to{left:-151px;top:-149px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}@keyframes particles-35{0%{transform:scale(1);visibility:visible}to{left:186px;top:200px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.yellow.night .wiggle{animation:.5s wiggle ease-in-out infinite}@keyframes wiggle{0%{transform:rotate(-3deg)}20%{transform:rotate(20deg)}40%{transform:rotate(-15deg)}60%{transform:rotate(5deg)}90%{transform:rotate(-1deg)}to{transform:rotate(0)}}.rtl-container.yellow.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.yellow.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.yellow.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}@keyframes shockwaveJump{0%{transform:scale(1)}40%{transform:scale(1.08)}50%{transform:scale(.98)}55%{transform:scale(1.02)}60%{transform:scale(.98)}to{transform:scale(1)}}@keyframes shockwave{0%{transform:scale(1);box-shadow:0 0 2px #00000026,inset 0 0 1px #00000026}95%{box-shadow:0 0 50px #0000,inset 0 0 30px #0000}to{transform:scale(2.25)}}@font-face{font-family:Material Icons;font-style:normal;font-weight:400;font-display:block;src:url(material-icons.59322316b3fd6063.woff2) format("woff2"),url(material-icons.4ad034d2c499d9b6.woff) format("woff")}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Outlined;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-outlined.f86cb7b0aa53f0fe.woff2) format("woff2"),url(material-icons-outlined.78a93b2079680a08.woff) format("woff")}.material-icons-outlined{font-family:Material Icons Outlined;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Round;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-round.b10ec9db5b7fbc74.woff2) format("woff2"),url(material-icons-round.92dc7ca2f4c591e7.woff) format("woff")}.material-icons-round{font-family:Material Icons Round;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Sharp;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-sharp.3885863ee4746422.woff2) format("woff2"),url(material-icons-sharp.a71cb2bf66c604de.woff) format("woff")}.material-icons-sharp{font-family:Material Icons Sharp;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Two Tone;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-two-tone.675bd578bd14533e.woff2) format("woff2"),url(material-icons-two-tone.588d63134de807a7.woff) format("woff")}.material-icons-two-tone{font-family:Material Icons Two Tone;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Roboto;src:url(Roboto-Thin.f7a95c9c5999532c.woff2) format("woff2"),url(Roboto-Thin.c13c157cb81e8ebb.woff) format("woff");font-weight:100;font-style:normal}@font-face{font-family:Roboto-Thin;src:url(Roboto-Thin.f7a95c9c5999532c.woff2) format("woff2"),url(Roboto-Thin.c13c157cb81e8ebb.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-ThinItalic.b0e084abf689f393.woff2) format("woff2"),url(Roboto-ThinItalic.1111028df6cea564.woff) format("woff");font-weight:100;font-style:italic}@font-face{font-family:Roboto-ThinItalic;src:url(Roboto-ThinItalic.b0e084abf689f393.woff2) format("woff2"),url(Roboto-ThinItalic.1111028df6cea564.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Light.0e01b6cd13b3857f.woff2) format("woff2"),url(Roboto-Light.603ca9a537b88428.woff) format("woff");font-weight:300;font-style:normal}@font-face{font-family:Roboto-Light;src:url(Roboto-Light.0e01b6cd13b3857f.woff2) format("woff2"),url(Roboto-Light.603ca9a537b88428.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-LightItalic.232ef4b20215f720.woff2) format("woff2"),url(Roboto-LightItalic.1b5e142f787151c8.woff) format("woff");font-weight:300;font-style:italic}@font-face{font-family:Roboto-LightItalic;src:url(Roboto-LightItalic.232ef4b20215f720.woff2) format("woff2"),url(Roboto-LightItalic.1b5e142f787151c8.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Regular.475ba9e4e2d63456.woff2) format("woff2"),url(Roboto-Regular.bcefbfee882bc1cb.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:Roboto-Regular;src:url(Roboto-Regular.475ba9e4e2d63456.woff2) format("woff2"),url(Roboto-Regular.bcefbfee882bc1cb.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-RegularItalic.e3a9ebdaac06bbc4.woff2) format("woff2"),url(Roboto-RegularItalic.0668fae6af0cf8c2.woff) format("woff");font-weight:400;font-style:italic}@font-face{font-family:Roboto-RegularItalic;src:url(Roboto-RegularItalic.e3a9ebdaac06bbc4.woff2) format("woff2"),url(Roboto-RegularItalic.0668fae6af0cf8c2.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Medium.457532032ceb0168.woff2) format("woff2"),url(Roboto-Medium.6e1ae5f0b324a0aa.woff) format("woff");font-weight:500;font-style:normal}@font-face{font-family:Roboto-Medium;src:url(Roboto-Medium.457532032ceb0168.woff2) format("woff2"),url(Roboto-Medium.6e1ae5f0b324a0aa.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-MediumItalic.872f7060602d55d2.woff2) format("woff2"),url(Roboto-MediumItalic.e06fb533801cbb08.woff) format("woff");font-weight:500;font-style:italic}@font-face{font-family:Roboto-MediumItalic;src:url(Roboto-MediumItalic.872f7060602d55d2.woff2) format("woff2"),url(Roboto-MediumItalic.e06fb533801cbb08.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Bold.447291a88c067396.woff2) format("woff2"),url(Roboto-Bold.fc482e6133cf5e26.woff) format("woff");font-weight:700;font-style:normal}@font-face{font-family:Roboto-Bold;src:url(Roboto-Bold.447291a88c067396.woff2) format("woff2"),url(Roboto-Bold.fc482e6133cf5e26.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-BoldItalic.1b15168ef6fa4e16.woff2) format("woff2"),url(Roboto-BoldItalic.e26ba339b06f09f7.woff) format("woff");font-weight:700;font-style:italic}@font-face{font-family:Roboto-BoldItalic;src:url(Roboto-BoldItalic.1b15168ef6fa4e16.woff2) format("woff2"),url(Roboto-BoldItalic.e26ba339b06f09f7.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Black.2eaa390d458c877d.woff2) format("woff2"),url(Roboto-Black.b25f67ad8583da68.woff) format("woff");font-weight:900;font-style:normal}@font-face{font-family:Roboto-Black;src:url(Roboto-Black.2eaa390d458c877d.woff2) format("woff2"),url(Roboto-Black.b25f67ad8583da68.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-BlackItalic.7dc03ee444552bc5.woff2) format("woff2"),url(Roboto-BlackItalic.c8dc642467cb3099.woff) format("woff");font-weight:900;font-style:italic}@font-face{font-family:Roboto-BlackItalic;src:url(Roboto-BlackItalic.7dc03ee444552bc5.woff2) format("woff2"),url(Roboto-BlackItalic.c8dc642467cb3099.woff) format("woff")} diff --git a/frontend/styles.fd10c5bd3cf185ab.css b/frontend/styles.fd10c5bd3cf185ab.css deleted file mode 100644 index 852309a9..00000000 --- a/frontend/styles.fd10c5bd3cf185ab.css +++ /dev/null @@ -1 +0,0 @@ -.ps{overflow:hidden!important;overflow-anchor:none;-ms-overflow-style:none;touch-action:auto;-ms-touch-action:auto}.ps__rail-x{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;height:15px;bottom:0;margin-top:-15px;position:relative}.ps__rail-y{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;width:0px;right:0;position:relative}.ps--active-x>.ps__rail-x,.ps--active-y>.ps__rail-y{display:block;background-color:transparent}.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y,.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y{opacity:.6}.ps .ps__rail-x:hover,.ps .ps__rail-y:hover,.ps .ps__rail-x:focus,.ps .ps__rail-y:focus,.ps .ps__rail-x.ps--clicking,.ps .ps__rail-y.ps--clicking{background-color:transparent;opacity:.9}.ps__thumb-x{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,height .2s ease-in-out;-webkit-transition:background-color .2s linear,height .2s ease-in-out;height:4px;bottom:2px;position:absolute}.ps__thumb-y{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,width .2s ease-in-out;-webkit-transition:background-color .2s linear,width .2s ease-in-out;width:4px;right:2px;position:absolute}.ps__rail-x:hover>.ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x,.ps__rail-x.ps--clicking .ps__thumb-x{background-color:#999;height:6px}.ps__rail-y:hover>.ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y,.ps__rail-y.ps--clicking .ps__thumb-y{background-color:#999;width:6px}@supports (-ms-overflow-style: none){.ps{overflow:auto!important}}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.ps{overflow:auto!important}}html{width:100%;height:99%;line-height:1.5;overflow-x:hidden;font-family:Roboto,sans-serif!important;font-size:95%}@media only screen and (max-width: 56.25em){html{font-size:90%}}@media only screen and (max-width: 37.5em){html{font-size:80%}}body{box-sizing:border-box;height:100%;margin:0;overflow:hidden}.rtl-container{position:absolute;width:100%;height:100%;inset:0;overflow:hidden}.rtl-container .mat-menu-panel .mat-menu-content{padding-top:0;padding-bottom:0}.rtl-container .mat-nested-tree-node-child>.mat-tree-node{padding-left:2.5rem}.mat-sidenav-container .mat-sidenav-content{height:95vh;min-height:95vh}.sidenav{width:16rem!important;height:100%;overflow:hidden!important}span.page-text,.mat-mdc-slide-toggle,.material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:3rem}.mat-mdc-checkbox{min-height:4rem}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:"liga"}.sticky{position:fixed;top:0;z-index:9999}.horizontal-menu{padding:0;z-index:999;position:fixed;top:0;height:4rem;overflow:visible}.inner-sidenav-content{position:relative;inset:0;padding:.75rem}@media only screen and (max-width: 56.25em){.inner-sidenav-content{padding:.5rem}}@media only screen and (max-width: 37.5em){.inner-sidenav-content{padding:.5rem .25rem}}.top-50{top:50px}*{margin:0;padding:0}.rtl-spinner{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;width:100%;position:fixed;background:#fff;z-index:999999;visibility:visible;opacity:1}.rtl-spinner h4{margin-top:.625rem}.spinner-dialog-panel .mat-mdc-dialog-container .mat-mdc-dialog-surface{background:transparent;box-shadow:none}.mat-mdc-dialog-container .mat-mdc-dialog-surface{overflow:hidden}@media only screen and (max-width: 75em){button.mdc-button{min-width:50px}}@media only screen and (max-width: 56.25em){button.mdc-button{min-width:40px}}@media only screen and (max-width: 37.5em){button.mdc-button{min-width:20px}}button.mdc-button.mat-mdc-button-base{font-size:103%;font-weight:500;font-family:Roboto,sans-serif}button.mdc-button.mat-mdc-button-base.mat-mdc-unelevated-button{margin-bottom:1rem}.mat-mdc-icon-button.mat-mdc-button-base.btn-icon-small{height:40px;padding:.75rem}.mdc-floating-label{will-change:unset!important}.mat-mdc-form-field.mat-form-field-disabled,.mat-mdc-form-field.mat-form-field-disabled .mat-mdc-text-field-wrapper.mdc-text-field--disable,.mat-mdc-form-field.mat-form-field-disabled .mdc-floating-label.mat-mdc-floating-label,.mat-mdc-form-field.mat-form-field-disabled .mat-mdc-input-element.mat-mdc-form-field-input-control,.mat-mdc-slide-toggle .mdc-switch.mdc-switch--disabled{cursor:not-allowed}.padding-gap{padding:.5rem!important}@media only screen and (max-width: 56.25em){.padding-gap{padding:.25rem!important}}@media only screen and (max-width: 37.5em){.padding-gap{padding:.125rem!important}}.padding-gap-x{padding:0 .5rem!important}@media only screen and (max-width: 75em){.padding-gap-x{padding:0 .25rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-x{padding:0 .25rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-x{padding:0 .125rem!important}}.padding-gap-large{padding:1rem!important}@media only screen and (max-width: 75em){.padding-gap-large{padding:2rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-large{padding:.25rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-large{padding:.125rem!important}}.padding-gap-x-large{padding:0 1rem!important}@media only screen and (max-width: 75em){.padding-gap-x-large{padding:0 .5rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-x-large{padding:0 .25rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-x-large{padding:0 .125rem!important}}.padding-gap-bottom-large{padding-bottom:1rem!important}@media only screen and (max-width: 56.25em){.padding-gap-bottom-large{padding-bottom:.5rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-bottom-large{padding-bottom:.125rem!important}}.overflow-wrap{overflow-wrap:break-word!important;overflow:hidden}.mat-mdc-card{padding:0!important;overflow:hidden;border-radius:2px!important}.mat-mdc-card-original{padding:1rem!important;border-radius:4px!important}.mat-mdc-form-field-flex .mat-mdc-form-field-icon-suffix,.mat-mdc-form-field-flex .mat-mdc-form-field-icon-prefix{padding-right:1rem}mat-card-content.mat-mdc-card-content:first-child{padding-top:0}.card-content-gap{padding:.6rem 1rem!important;height:100%}@media only screen and (max-width: 56.25em){.card-content-gap{padding:.5rem!important}}@media only screen and (max-width: 37.5em){.card-content-gap{padding:.25rem .125rem!important}}.routing-tabs-block .mat-mdc-tab-body-wrapper{padding:0!important;min-height:100px}.mat-mdc-card-actions{display:block;margin-bottom:1rem;padding-left:.3333333333rem;padding-right:.3333333333rem}.mat-mdc-card-content,.mat-mdc-card-subtitle,.mat-mdc-card-title{display:block;margin-bottom:1rem}.mat-mdc-card-content form,.mat-mdc-card-subtitle form,.mat-mdc-card-title form{overflow:hidden}.mat-mdc-card-title{font-size:125%}.mat-mdc-card-subtitle{font-size:120%}.mat-mdc-card-header-text{margin:0!important;line-height:1}.mat-form-field-wrapper{width:100%}.mat-mdc-select{margin:0 1rem 0 0}.green{color:#28ca43!important}.yellow{color:#ffbd2e!important}.red{color:#c62828!important}.grey{color:#ccc!important}.mt-1px{margin-top:1px!important}.mt-2px{margin-top:2px!important}.mt-4px{margin-top:4px!important}.mt-5px{margin-top:5px!important}.my-2px{margin:2px 0!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.625rem!important}@media only screen and (max-width: 56.25em){.mt-1{margin-top:.5rem!important}}@media only screen and (max-width: 37.5em){.mt-1{margin-top:.5rem!important}}.mb-0{margin-bottom:0!important}.mb-2px{margin-bottom:2px!important}.mb-5px{margin-bottom:5px!important}.mb-1{margin-bottom:.625rem!important}@media only screen and (max-width: 56.25em){.mb-1{margin-bottom:.5rem!important}}@media only screen and (max-width: 37.5em){.mb-1{margin-bottom:.5rem!important}}.mb-6{margin-bottom:3.75rem!important}@media only screen and (max-width: 56.25em){.mb-6{margin-bottom:3rem!important}}@media only screen and (max-width: 37.5em){.mb-6{margin-bottom:3rem!important}}.ml-0{margin-left:0!important}.ml-half{margin-left:.25rem!important}.ml-1{margin-left:.625rem!important}@media only screen and (max-width: 56.25em){.ml-1{margin-left:.25rem!important}}@media only screen and (max-width: 37.5em){.ml-1{margin-left:2px!important}}.ml-minus-1{margin-left:-.625rem!important}.mr-0{margin-right:0!important}.mr-3px{margin-right:3px!important}.mr-5px{margin-right:5px!important}.mr-1{margin-right:.625rem!important}@media only screen and (max-width: 56.25em){.mr-1{margin-right:.25rem!important}}@media only screen and (max-width: 37.5em){.mr-1{margin-right:2px!important}}.mx-1{margin:0 .625rem!important}@media only screen and (max-width: 56.25em){.mx-1{margin:0 .25rem!important}}@media only screen and (max-width: 37.5em){.mx-1{margin:0 2px!important}}.my-1{margin:.625rem 0!important}@media only screen and (max-width: 56.25em){.my-1{margin:.5rem 0!important}}@media only screen and (max-width: 37.5em){.my-1{margin:.5rem 0!important}}.m-1{margin:.625rem!important}@media only screen and (max-width: 56.25em){.m-1{margin:.5rem!important}}@media only screen and (max-width: 37.5em){.m-1{margin:.5rem!important}}.mt-2{margin-top:1.25rem!important}@media only screen and (max-width: 56.25em){.mt-2{margin-top:1rem!important}}@media only screen and (max-width: 37.5em){.mt-2{margin-top:1rem!important}}.mt-3{margin-top:2rem!important}@media only screen and (max-width: 56.25em){.mt-3{margin-top:1.5rem!important}}@media only screen and (max-width: 37.5em){.mt-3{margin-top:1.5rem!important}}.mt-4{margin-top:2.5rem!important}@media only screen and (max-width: 56.25em){.mt-4{margin-top:2rem!important}}@media only screen and (max-width: 37.5em){.mt-4{margin-top:2rem!important}}.mt-6{margin-top:3.75rem!important}@media only screen and (max-width: 56.25em){.mt-6{margin-top:3rem!important}}@media only screen and (max-width: 37.5em){.mt-6{margin-top:3rem!important}}.mt-minus-1{margin-top:-.625rem!important}@media only screen and (max-width: 56.25em){.mt-minus-1{margin-top:-.5rem!important}}@media only screen and (max-width: 37.5em){.mt-minus-1{margin-top:-.5rem!important}}.mt-minus-2{margin-top:-1.25rem!important}@media only screen and (max-width: 56.25em){.mt-minus-2{margin-top:-1rem!important}}@media only screen and (max-width: 37.5em){.mt-minus-2{margin-top:-1rem!important}}.mb-2{margin-bottom:1rem!important}@media only screen and (max-width: 56.25em){.mb-2{margin-bottom:1rem!important}}@media only screen and (max-width: 37.5em){.mb-2{margin-bottom:1rem!important}}.mb-3{margin-bottom:2rem!important}@media only screen and (max-width: 56.25em){.mb-3{margin-bottom:1.5rem!important}}@media only screen and (max-width: 37.5em){.mb-3{margin-bottom:1.5rem!important}}.mb-4{margin-bottom:2.5rem!important}@media only screen and (max-width: 56.25em){.mb-4{margin-bottom:1.25rem!important}}@media only screen and (max-width: 37.5em){.mb-4{margin-bottom:1.25rem!important}}.ml-2{margin-left:1.25rem!important}@media only screen and (max-width: 56.25em){.ml-2{margin-left:.5rem!important}}@media only screen and (max-width: 37.5em){.ml-2{margin-left:.25rem!important}}.mr-2{margin-right:1.25rem!important}@media only screen and (max-width: 56.25em){.mr-2{margin-right:.5rem!important}}@media only screen and (max-width: 37.5em){.mr-2{margin-right:.25rem!important}}.ml-4{margin-left:2.5rem!important}@media only screen and (max-width: 56.25em){.ml-4{margin-left:1rem!important}}@media only screen and (max-width: 37.5em){.ml-4{margin-left:.5rem!important}}.ml-5{margin-left:3rem!important}@media only screen and (max-width: 56.25em){.ml-5{margin-left:1.25rem!important}}@media only screen and (max-width: 37.5em){.ml-5{margin-left:.625rem!important}}.mr-4{margin-right:2.5rem!important}@media only screen and (max-width: 56.25em){.mr-4{margin-right:1rem!important}}@media only screen and (max-width: 37.5em){.mr-4{margin-right:.5rem!important}}.mr-5{margin-right:3rem!important}@media only screen and (max-width: 56.25em){.mr-5{margin-right:1.25rem!important}}@media only screen and (max-width: 37.5em){.mr-5{margin-right:.625rem!important}}.mr-6{margin-right:3.75rem!important}@media only screen and (max-width: 56.25em){.mr-6{margin-right:2rem!important}}@media only screen and (max-width: 37.5em){.mr-6{margin-right:1.25rem!important}}.mx-2{margin:0 1.25rem!important}@media only screen and (max-width: 56.25em){.mx-2{margin:0 .5rem!important}}@media only screen and (max-width: 37.5em){.mx-2{margin:0 .25rem!important}}.my-0{margin-top:0!important;margin-bottom:0!important}.my-2{margin:1.25rem 0!important}@media only screen and (max-width: 56.25em){.my-2{margin:1rem 0!important}}@media only screen and (max-width: 37.5em){.my-2{margin:1rem 0!important}}.my-3{margin:2rem 0!important}@media only screen and (max-width: 56.25em){.my-3{margin:1.5rem 0!important}}@media only screen and (max-width: 37.5em){.my-3{margin:1.5rem 0!important}}.my-4{margin:2.5rem 0!important}@media only screen and (max-width: 56.25em){.my-4{margin:1.25rem 0!important}}@media only screen and (max-width: 37.5em){.my-4{margin:1.25rem 0!important}}.m-2{margin:1.25rem!important}@media only screen and (max-width: 56.25em){.m-2{margin:1rem!important}}@media only screen and (max-width: 37.5em){.m-2{margin:1rem!important}}.pt-1{padding-top:.625rem!important}@media only screen and (max-width: 56.25em){.pt-1{padding-top:.5rem!important}}@media only screen and (max-width: 37.5em){.pt-1{padding-top:.5rem!important}}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.625rem!important}@media only screen and (max-width: 56.25em){.pb-1{padding-bottom:.5rem!important}}@media only screen and (max-width: 37.5em){.pb-1{padding-bottom:.5rem!important}}.pl-5px{padding-left:5px!important}@media only screen and (max-width: 56.25em){.pl-5px{padding-left:.25rem!important}}@media only screen and (max-width: 37.5em){.pl-5px{padding-left:3px!important}}.pl-1{padding-left:.625rem!important}@media only screen and (max-width: 56.25em){.pl-1{padding-left:.25rem!important}}@media only screen and (max-width: 37.5em){.pl-1{padding-left:2px!important}}.pl-15px{padding-left:1rem!important}@media only screen and (max-width: 56.25em){.pl-15px{padding-left:.3333333333rem!important}}@media only screen and (max-width: 37.5em){.pl-15px{padding-left:.25rem!important}}.pr-0{padding-right:0!important}.pr-1{padding-right:.625rem!important}@media only screen and (max-width: 56.25em){.pr-1{padding-right:.25rem!important}}@media only screen and (max-width: 37.5em){.pr-1{padding-right:2px!important}}.pr-3{padding-right:2rem!important}@media only screen and (max-width: 56.25em){.pr-3{padding-right:.75rem!important}}@media only screen and (max-width: 37.5em){.pr-3{padding-right:.3333333333rem!important}}.pr-4{padding-right:2.5rem!important}@media only screen and (max-width: 56.25em){.pr-4{padding-right:1rem!important}}@media only screen and (max-width: 37.5em){.pr-4{padding-right:.5rem!important}}.pr-4px{padding-right:.25rem!important}.pr-6px{padding-right:.3333333333rem!important}.p-0{padding:0!important}.p-5px{padding:5px!important}.pl-0{padding-left:0!important}.px-1{padding:0 .625rem!important}@media only screen and (max-width: 56.25em){.px-1{padding:0 .25rem!important}}@media only screen and (max-width: 37.5em){.px-1{padding:0 2px!important}}.py-0{padding:.625rem 0!important}@media only screen and (max-width: 56.25em){.py-0{padding:.5rem 0!important}}@media only screen and (max-width: 37.5em){.py-0{padding:.5rem 0!important}}.py-1{padding:.625rem 0!important}@media only screen and (max-width: 56.25em){.py-1{padding:.5rem 0!important}}@media only screen and (max-width: 37.5em){.py-1{padding:.5rem 0!important}}.p-1{padding:.625rem!important}@media only screen and (max-width: 56.25em){.p-1{padding:.5rem!important}}@media only screen and (max-width: 37.5em){.p-1{padding:.5rem!important}}.p-16{padding:1rem!important}@media only screen and (max-width: 56.25em){.p-16{padding:.5rem!important}}@media only screen and (max-width: 37.5em){.p-16{padding:.25rem!important}}.pt-2{padding-top:1.25rem!important}@media only screen and (max-width: 56.25em){.pt-2{padding-top:1rem!important}}@media only screen and (max-width: 37.5em){.pt-2{padding-top:1rem!important}}.pt-3{padding-top:2rem!important}@media only screen and (max-width: 56.25em){.pt-3{padding-top:1.5rem!important}}@media only screen and (max-width: 37.5em){.pt-3{padding-top:1.5rem!important}}.pb-2{padding-bottom:1.25rem!important}@media only screen and (max-width: 56.25em){.pb-2{padding-bottom:1rem!important}}@media only screen and (max-width: 37.5em){.pb-2{padding-bottom:1rem!important}}.pl-2{padding-left:1.25rem!important}@media only screen and (max-width: 56.25em){.pl-2{padding-left:.5rem!important}}@media only screen and (max-width: 37.5em){.pl-2{padding-left:.25rem!important}}.pt-4{padding-top:1.25rem!important}@media only screen and (max-width: 56.25em){.pt-4{padding-top:1.5rem!important}}@media only screen and (max-width: 37.5em){.pt-4{padding-top:1.5rem!important}}.pl-3{padding-left:2rem!important}@media only screen and (max-width: 56.25em){.pl-3{padding-left:.75rem!important}}@media only screen and (max-width: 37.5em){.pl-3{padding-left:.3333333333rem!important}}.pl-4{padding-left:2.5rem!important}@media only screen and (max-width: 56.25em){.pl-4{padding-left:1rem!important}}@media only screen and (max-width: 37.5em){.pl-4{padding-left:.5rem!important}}.pr-2{padding-right:1.25rem!important}@media only screen and (max-width: 56.25em){.pr-2{padding-right:.5rem!important}}@media only screen and (max-width: 37.5em){.pr-2{padding-right:.25rem!important}}.pr-5{padding-right:2.5rem!important}@media only screen and (max-width: 56.25em){.pr-5{padding-right:1rem!important}}@media only screen and (max-width: 37.5em){.pr-5{padding-right:.5rem!important}}.px-2{padding:0 1.25rem!important}@media only screen and (max-width: 56.25em){.px-2{padding:0 .5rem!important}}@media only screen and (max-width: 37.5em){.px-2{padding:0 .25rem!important}}.px-3{padding:0 2rem!important}@media only screen and (max-width: 56.25em){.px-3{padding:0 .75rem!important}}@media only screen and (max-width: 37.5em){.px-3{padding:0 .3333333333rem!important}}.px-4{padding:0 2.5rem!important}@media only screen and (max-width: 56.25em){.px-4{padding:0 1rem!important}}@media only screen and (max-width: 37.5em){.px-4{padding:0 .5rem!important}}.py-2{padding:1.25rem 0!important}@media only screen and (max-width: 56.25em){.py-2{padding:1rem 0!important}}@media only screen and (max-width: 37.5em){.py-2{padding:1rem 0!important}}.p-2{padding:1.25rem!important}@media only screen and (max-width: 56.25em){.p-2{padding:1rem!important}}@media only screen and (max-width: 37.5em){.p-2{padding:1rem!important}}.p-24{padding:1.5rem!important}@media only screen and (max-width: 56.25em){.p-24{padding:.75rem!important}}@media only screen and (max-width: 37.5em){.p-24{padding:.625rem!important}}.ps-2{padding-left:1.25rem!important}.m-1px{margin:1px!important}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-y-hidden{overflow-y:hidden!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-auto{overflow:auto}.mat-footer-row .mat-footer-cell{border-bottom:none!important}.mat-row:last-child .mdc-data-table__cell{border-bottom:none!important}.mat-mdc-form-field-infix{width:14rem!important}.flex-ellipsis{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-right:2rem}.mat-list,.mat-list .mat-list-item .mat-list-item-content,.mat-nav-list,.mat-selection-list{padding:0!important}.inline-spinner{display:inline-flex!important;top:5px!important}.top-minus-5px{position:relative;top:-5px}.top-minus-25px{position:relative;top:-1.5rem;margin-bottom:-1.5rem!important}.top-minus-30px{position:relative;top:-2rem}.cursor-pointer:hover{cursor:pointer!important}.cursor-default:hover{cursor:default!important}.cursor-not-allowed:hover{cursor:not-allowed!important}.inline-flex{display:inline-flex!important}.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.op-image{box-shadow:0 0 2px #ccc;border:2px solid;border-color:transparent;cursor:pointer;transition:.2s}.settings-icon{position:fixed;top:30%;right:0;width:.25rem;height:2.5rem;opacity:.6;cursor:pointer;z-index:999999}.test-banner{padding-top:2px;background-color:#fc7783;text-transform:uppercase;border-radius:2px}.currency-icon.currency-icon-small{max-width:.8375rem;max-height:.8375rem}.currency-icon.currency-icon-medium{max-width:1rem;max-height:1rem}.currency-icon.currency-icon-large{max-width:1.125rem;max-height:1.125rem}.currency-icon.currency-icon-x-large{max-width:1.25rem;max-height:1.25rem}.fa-icon-small,.top-icon-small{min-width:1.25rem}.fa-icon-small svg,.top-icon-small svg{min-width:1.25rem}.botlz-icon-sm{min-width:1rem;width:1rem;max-width:1rem}.copy-icon{position:relative;top:.25rem}.copy-icon-smaller{position:relative;top:2px}.top-5px{position:relative;top:5px}.animate-settings{animation:animate-settings 10s linear infinite}@keyframes animate-settings{to{transform:rotate(360deg)}}.mt-minus-5{position:relative;margin-top:-5px}.color-white{color:#fff!important}.custom-card{padding:0 0 .5rem!important}.not-found-box{min-width:50%}.w-100{width:100%!important}.w-96{width:96%!important}.w-84{width:84%!important}.h-100{height:100%!important}.h-93{height:93%!important}.h-40{height:400px!important}.h-46{height:460px!important}.h-50{height:500px!important}.h-10{height:100px!important}.h-4{height:12rem!important}.h-35px{height:35px!important}a{outline:none;text-decoration:none;text-decoration:underline}.mat-tree{width:100%}.mat-tree-node,.mat-nested-tree-node-parent{min-height:3rem;height:3rem;padding:0 .75rem;cursor:pointer}@media only screen and (max-width: 37.5em){.mat-tree-node,.mat-nested-tree-node-parent{min-height:4rem;height:4rem}}.mat-tree-node:focus,.mat-tree-node:active,.mat-nested-tree-node:focus,.mat-nested-tree-node:active,.mat-nested-tree-node-parent:focus,.mat-nested-tree-node-parent:active,.mat-tree-node span:focus,.mat-tree-node span:active,.mat-nested-tree-node-parent span:focus,.mat-nested-tree-node-parent span:active,.mat-tree-node div:focus,.mat-tree-node div:active,.mat-nested-tree-node-parent div:focus,.mat-nested-tree-node-parent div:active,.mat-tree-node .mat-icon:focus,.mat-tree-node .mat-icon:active,.mat-nested-tree-node-parent .mat-icon:focus,.mat-nested-tree-node-parent .mat-icon:active{outline:none}.lnd-info{height:6rem}.flex-wrap{flex-wrap:wrap!important}.word-break{word-break:break-all!important}.font-bold-500{font-weight:500!important}.font-bold-700{font-weight:700!important}.pubkey-info-top{flex-wrap:wrap;margin-top:1px;min-height:1rem;cursor:pointer;display:flex;align-content:center}.logo{font-weight:700;letter-spacing:1px}.fa-icon-regular{min-width:2.5rem;width:2.5rem;max-width:2.5rem}.icon-large{margin-left:-100%}.icon-small{height:1.25rem!important;width:1.25rem!important}.icon-smaller{height:.625rem!important;width:.625rem!important}.mat-icon-36{width:2.25rem!important;height:2.25rem!important}.mat-mdc-select.multi-node-select{width:84%}.page-title-container{font-size:110%;padding:0 .75rem;margin-bottom:.5rem}@media only screen and (max-width: 56.25em){.page-title-container{padding:0 .5rem;margin:.5rem 0}}@media only screen and (max-width: 37.5em){.page-title-container{padding:0 .5rem;margin:.5rem 0}}table{width:100%}th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 1rem}@media only screen and (max-width: 75em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .5rem}}@media only screen and (max-width: 56.25em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .25rem}}@media only screen and (max-width: 37.5em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .125rem}}th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:1rem}@media only screen and (max-width: 75em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.5rem!important}}@media only screen and (max-width: 56.25em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.25rem!important}}@media only screen and (max-width: 37.5em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.125rem!important}}th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:1rem}@media only screen and (max-width: 75em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.5rem!important}}@media only screen and (max-width: 56.25em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.25rem!important}}@media only screen and (max-width: 37.5em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.125rem!important}}.dot{display:inline-flex;width:.8rem;height:.8rem;border-radius:.8rem;margin:.25rem 0 0}.dot.tiny-dot{width:.5rem;height:.5rem;border-radius:.5rem;margin:0 .3333333333rem 1px 0}.dot.green{background-color:#28ca43}.dot.yellow{background-color:#ffbd2e}.dot.red{background-color:#c62828}.dot.grey{background-color:#ccc}.font-size-80{font-size:80%!important}.font-size-90{font-size:90%!important}.font-size-120{font-size:120%!important}.font-size-200{font-size:200%!important}.font-size-300{font-size:300%!important}.font-weight-500{font-weight:500!important}.font-weight-900{font-weight:900!important}.pre-wrap{white-space:pre-wrap!important}.display-none{display:none!important}.mat-divider.mat-divider-horizontal.mat-divider-inset{margin-left:1rem}.mat-vertical-stepper-header{padding:.625rem .625rem .625rem .5rem!important}.mat-vertical-stepper-content{margin:0 .5rem}.ellipsis-child{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.blinker{animation:blink-animation 1s steps(5,start) infinite;-webkit-animation:blink-animation 1s steps(5,start) infinite}@keyframes blink-animation{to{visibility:hidden}}.mat-progress-bar.dashboard-progress-bar{height:6px;min-height:6px}.alert{margin-bottom:.625rem;padding:.3333333333rem .625rem;border-radius:2px}.dashboard-vert-menu.mat-menu-panel{min-height:3rem}.mat-mdc-tab .mdc-tab__content{overflow:hidden!important}.mdc-tab__text-label{opacity:1;padding:0;min-width:11rem}@media only screen and (max-width: 56.25em){.mdc-tab__text-label{min-width:auto}}@media only screen and (max-width: 37.5em){.mdc-tab__text-label{min-width:auto}}.dashboard-card{margin-bottom:0}.dashboard-card .mat-mdc-card-header{padding:16px 0 0 16px}.dashboard-card .mat-mdc-card-content.dashboard-card-content{margin-bottom:0}.dashboard-tabs-group.mat-mdc-tab-group{max-width:91%}.dashboard-tabs-group .mat-mdc-tab-list{width:100%}.dashboard-tabs-group .mdc-tab{margin:0;padding:0 1.5rem;display:flex;flex:1 0 auto;justify-content:center}.dashboard-tabs-group.mat-mdc-tab-group .mat-mdc-tab .mdc-tab__content .mdc-tab__text-label{min-width:5.5rem}.node-grid-tile.mat-grid-tile .mat-figure{align-items:start}.mat-vertical-content-container{margin-left:1.25rem!important}.xs-scroll-y{overflow-y:scroll;max-height:600px}.h-2{min-height:1.25rem!important}.border-valid{border:1px solid #28ca43!important}.border-invalid{border:1px solid #c62828!important}.icon-green{fill:#28ca43}.visible{visibility:visible!important}.hidden{visibility:hidden!important}.h-5{height:50px}.btn-sticky-container{height:0;opacity:.5}.btn-sticky-container .mat-icon{animation:scrollDownAnimation 2s infinite}@keyframes scrollDownAnimation{0%{transform:translateY(0)}10%{transform:translateY(-20%)}20%{transform:translateY(20%)}30%{transform:translateY(-20%)}40%{transform:translateY(20%)}50%{transform:translateY(0)}}.mat-form-field-appearance-legacy.mat-form-field-disabled input,.mat-form-field-appearance-legacy.mat-form-field-disabled mat-select,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-trigger,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-value,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-arro-wrapper,.mat-form-field-appearance-legacy.mat-form-field-disabled textarea,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-infix{cursor:not-allowed}.mat-mdc-tooltip-panel{max-width:25rem!important}.ngx-charts-tooltip-content.type-tooltip{background:#323232e6!important}.ngx-charts-tooltip-content .tooltip-caret{border-top-color:#323232e6!important}.mat-mdc-tooltip-panel .mdc-tooltip__surface{min-width:10rem;max-width:unset;text-align:start}.go-to-link{text-decoration:underline;font-weight:500;cursor:pointer}.mat-mdc-card.dashboard-card{padding:0 .75rem!important}@media only screen and (max-width: 56.25em){.mat-mdc-card.dashboard-card{padding:.25rem .625rem!important}}@media only screen and (max-width: 37.5em){.mat-mdc-card.dashboard-card{padding:.25rem .5rem!important}}.mat-mdc-card.dashboard-card.p-0{padding:0!important}.mat-mdc-card.dashboard-card .mat-mdc-card-header-text{width:100%}.mat-progress-bar{min-height:4px}.dashboard-card-content{text-align:left}.ellipsis-parent{display:flex}.mat-column-actions{min-height:3.25rem}@media only screen and (max-width: 37.5em){.mat-column-actions{min-height:4.1rem}}.mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 1rem}@media only screen and (max-width: 56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 .5rem}}@media only screen and (max-width: 37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 .25rem}}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header .mat-expansion-indicator{margin-top:-5px}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 1.5rem 1rem}@media only screen and (max-width: 56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 .5rem .5rem}}@media only screen and (max-width: 37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 .25rem .125rem}}@media only screen and (max-width: 56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-title,.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-description{margin-right:.5rem}}@media only screen and (max-width: 37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-title,.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-description{margin-right:.25rem}}.flex-9{flex:1 1 9%}.flex-17{flex:1 1 17%}.flex-20{flex:1 1 20%}.flex-25{flex:1 1 25%}.flex-30{flex:1 1 30%}.flex-35{flex:1 1 35%}.flex-40{flex:1 1 40%}.flex-48{flex:1 1 48%}.flex-50{flex:1 1 50%}.flex-70{flex:1 1 70%}.flex-83{flex:1 1 83%}.flex-91{flex:1 1 91%}.flex-100{flex:1 1 100%}.align-center-start{display:flex;justify-content:center;align-items:flex-start}.align-center-center{display:flex;justify-content:center;align-items:center}html{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12)}html{--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}html{--mat-option-selected-state-label-text-color: #5e4ea5;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}html{--mat-optgroup-label-text-color: rgba(0, 0, 0, .87)}html{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #5e4ea5;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #5e4ea5;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}html{--mat-card-elevated-container-shape: 4px;--mat-card-outlined-container-shape: 4px;--mat-card-filled-container-shape: 4px;--mat-card-outlined-outline-width: 1px}html{--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12)}html{--mat-progress-bar-active-indicator-height: 4px;--mat-progress-bar-track-height: 4px;--mat-progress-bar-track-shape: 0}.mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #5e4ea5;--mat-progress-bar-track-color: rgba(94, 78, 165, .25)}.mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}html{--mat-tooltip-container-shape: 4px;--mat-tooltip-supporting-text-line-height: 16px}html{--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white}html{--mat-form-field-filled-active-indicator-height: 1px;--mat-form-field-filled-focus-active-indicator-height: 2px;--mat-form-field-filled-container-shape: 4px;--mat-form-field-outlined-outline-width: 1px;--mat-form-field-outlined-focus-outline-width: 2px;--mat-form-field-outlined-container-shape: 4px}html{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-filled-caret-color: #5e4ea5;--mat-form-field-filled-focus-active-indicator-color: #5e4ea5;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-outlined-caret-color: #5e4ea5;--mat-form-field-outlined-focus-outline-color: #5e4ea5;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020}.mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}html{--mat-form-field-container-height: 56px;--mat-form-field-filled-label-display: block;--mat-form-field-container-vertical-padding: 16px;--mat-form-field-filled-with-label-container-padding-top: 24px;--mat-form-field-filled-with-label-container-padding-bottom: 8px}html{--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12)}html{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #5e4ea5;--mat-select-invalid-arrow-color: #b00020}.mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}html{--mat-select-arrow-transform: translateY(-8px)}html{--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12)}html{--mat-autocomplete-background-color: white}html{--mat-dialog-container-shape: 4px;--mat-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px}html{--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54)}.mat-mdc-standard-chip{--mat-chip-container-shape-radius: 16px;--mat-chip-disabled-container-opacity: .4;--mat-chip-disabled-outline-color: transparent;--mat-chip-flat-selected-outline-width: 0;--mat-chip-focus-outline-color: transparent;--mat-chip-hover-state-layer-opacity: .04;--mat-chip-outline-color: transparent;--mat-chip-outline-width: 0;--mat-chip-selected-hover-state-layer-opacity: .04;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-focus-state-layer-opacity: 0;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-with-avatar-avatar-shape-radius: 14px;--mat-chip-with-avatar-avatar-size: 28px;--mat-chip-with-avatar-disabled-avatar-opacity: 1;--mat-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-with-icon-icon-size: 18px;--mat-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1}.mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #5e4ea5;--mat-chip-elevated-disabled-container-color: #5e4ea5;--mat-chip-elevated-selected-container-color: #5e4ea5;--mat-chip-flat-disabled-selected-container-color: #5e4ea5;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.mat-mdc-chip.mat-mdc-standard-chip{--mat-chip-container-height: 32px}html{--mat-slide-toggle-disabled-handle-opacity: .38;--mat-slide-toggle-disabled-selected-handle-opacity: .38;--mat-slide-toggle-disabled-selected-icon-opacity: .38;--mat-slide-toggle-disabled-track-opacity: .12;--mat-slide-toggle-disabled-unselected-handle-opacity: .38;--mat-slide-toggle-disabled-unselected-icon-opacity: .38;--mat-slide-toggle-disabled-unselected-track-outline-color: transparent;--mat-slide-toggle-disabled-unselected-track-outline-width: 1px;--mat-slide-toggle-handle-height: 20px;--mat-slide-toggle-handle-shape: 10px;--mat-slide-toggle-handle-width: 20px;--mat-slide-toggle-hidden-track-opacity: 1;--mat-slide-toggle-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-slide-toggle-pressed-handle-size: 20px;--mat-slide-toggle-selected-focus-state-layer-opacity: .12;--mat-slide-toggle-selected-handle-horizontal-margin: 0;--mat-slide-toggle-selected-handle-size: 20px;--mat-slide-toggle-selected-hover-state-layer-opacity: .04;--mat-slide-toggle-selected-icon-size: 18px;--mat-slide-toggle-selected-pressed-handle-horizontal-margin: 0;--mat-slide-toggle-selected-pressed-state-layer-opacity: .12;--mat-slide-toggle-selected-track-outline-color: transparent;--mat-slide-toggle-selected-track-outline-width: 1px;--mat-slide-toggle-selected-with-icon-handle-horizontal-margin: 0;--mat-slide-toggle-track-height: 14px;--mat-slide-toggle-track-outline-color: transparent;--mat-slide-toggle-track-outline-width: 1px;--mat-slide-toggle-track-shape: 7px;--mat-slide-toggle-track-width: 36px;--mat-slide-toggle-unselected-focus-state-layer-opacity: .12;--mat-slide-toggle-unselected-handle-horizontal-margin: 0;--mat-slide-toggle-unselected-handle-size: 20px;--mat-slide-toggle-unselected-hover-state-layer-opacity: .12;--mat-slide-toggle-unselected-icon-size: 18px;--mat-slide-toggle-unselected-pressed-handle-horizontal-margin: 0;--mat-slide-toggle-unselected-pressed-state-layer-opacity: .1;--mat-slide-toggle-unselected-with-icon-handle-horizontal-margin: 0;--mat-slide-toggle-visible-track-opacity: 1;--mat-slide-toggle-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-slide-toggle-with-icon-handle-size: 20px;--mat-slide-toggle-touch-target-size: 48px}html{--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-handle-color: #5e4ea5;--mat-slide-toggle-selected-hover-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-pressed-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-focus-handle-color: #5e4ea5;--mat-slide-toggle-selected-hover-handle-color: #5e4ea5;--mat-slide-toggle-selected-pressed-handle-color: #5e4ea5;--mat-slide-toggle-selected-focus-track-color: #8e83c0;--mat-slide-toggle-selected-hover-track-color: #8e83c0;--mat-slide-toggle-selected-pressed-track-color: #8e83c0;--mat-slide-toggle-selected-track-color: #8e83c0;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12)}.mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}html{--mat-slide-toggle-state-layer-size: 40px;--mat-slide-toggle-touch-target-display: block}html{--mat-radio-disabled-selected-icon-opacity: .38;--mat-radio-disabled-unselected-icon-opacity: .38;--mat-radio-state-layer-size: 40px;--mat-radio-touch-target-size: 48px}.mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #5e4ea5;--mat-radio-selected-hover-icon-color: #5e4ea5;--mat-radio-selected-icon-color: #5e4ea5;--mat-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}html{--mat-radio-state-layer-size: 40px;--mat-radio-touch-target-display: block}html{--mat-slider-active-track-height: 6px;--mat-slider-active-track-shape: 9999px;--mat-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-handle-height: 20px;--mat-slider-handle-shape: 50%;--mat-slider-handle-width: 20px;--mat-slider-inactive-track-height: 4px;--mat-slider-inactive-track-shape: 9999px;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-container-transform: translateX(-50%);--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-width: auto;--mat-slider-with-overlap-handle-outline-width: 1px;--mat-slider-with-tick-marks-active-container-opacity: .6;--mat-slider-with-tick-marks-container-shape: 50%;--mat-slider-with-tick-marks-container-size: 2px;--mat-slider-with-tick-marks-inactive-container-opacity: .6;--mat-slider-value-indicator-transform-origin: bottom}html{--mat-slider-active-track-color: #5e4ea5;--mat-slider-focus-handle-color: #5e4ea5;--mat-slider-handle-color: #5e4ea5;--mat-slider-hover-handle-color: #5e4ea5;--mat-slider-focus-state-layer-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #5e4ea5 4%, transparent);--mat-slider-inactive-track-color: #5e4ea5;--mat-slider-ripple-color: #5e4ea5;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #5e4ea5;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87)}.mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}html{--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12)}html{--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12)}html{--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mat-list-list-item-container-shape: 0;--mat-list-list-item-leading-avatar-shape: 50%;--mat-list-list-item-container-color: transparent;--mat-list-list-item-selected-container-color: transparent;--mat-list-list-item-leading-avatar-color: transparent;--mat-list-list-item-leading-icon-size: 24px;--mat-list-list-item-leading-avatar-size: 40px;--mat-list-list-item-trailing-icon-size: 24px;--mat-list-list-item-disabled-state-layer-color: transparent;--mat-list-list-item-disabled-state-layer-opacity: 0;--mat-list-list-item-disabled-label-text-opacity: .38;--mat-list-list-item-disabled-leading-icon-opacity: .38;--mat-list-list-item-disabled-trailing-icon-opacity: .38}html{--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12}.mdc-list-item__start,.mdc-list-item__end{--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #5e4ea5;--mat-radio-selected-hover-icon-color: #5e4ea5;--mat-radio-selected-icon-color: #5e4ea5;--mat-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.mat-accent .mdc-list-item__start,.mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.mat-warn .mdc-list-item__start,.mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #5e4ea5;--mat-checkbox-selected-hover-icon-color: #5e4ea5;--mat-checkbox-selected-icon-color: #5e4ea5;--mat-checkbox-selected-pressed-icon-color: #5e4ea5;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #5e4ea5;--mat-checkbox-selected-hover-state-layer-color: #5e4ea5;--mat-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#5e4ea5}.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}html{--mat-list-list-item-leading-icon-start-space: 16px;--mat-list-list-item-leading-icon-end-space: 32px;--mat-list-list-item-one-line-container-height: 48px;--mat-list-list-item-two-line-container-height: 64px;--mat-list-list-item-three-line-container-height: 88px}.mdc-list-item__start,.mdc-list-item__end{--mat-radio-state-layer-size: 40px;--mat-radio-touch-target-display: block}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line{height:56px}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines{height:72px}html{--mat-paginator-page-size-select-width: 84px;--mat-paginator-page-size-select-touch-target-height: 48px}html{--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}html{--mat-paginator-container-size: 56px;--mat-paginator-form-field-container-height: 40px;--mat-paginator-form-field-container-vertical-padding: 8px;--mat-paginator-touch-target-display: block}html{--mat-tab-container-height: 48px;--mat-tab-divider-color: transparent;--mat-tab-divider-height: 0;--mat-tab-active-indicator-height: 2px;--mat-tab-active-indicator-shape: 0}.mat-mdc-tab-group,.mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #5e4ea5;--mat-tab-active-ripple-color: #5e4ea5;--mat-tab-inactive-ripple-color: #5e4ea5;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #5e4ea5;--mat-tab-active-hover-label-text-color: #5e4ea5;--mat-tab-active-focus-indicator-color: #5e4ea5;--mat-tab-active-hover-indicator-color: #5e4ea5;--mat-tab-active-indicator-color: #5e4ea5}.mat-mdc-tab-group.mat-accent,.mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.mat-mdc-tab-group.mat-warn,.mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.mat-mdc-tab-group.mat-background-primary,.mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #5e4ea5;--mat-tab-foreground-color: #ffffff}.mat-mdc-tab-group.mat-background-accent,.mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.mat-mdc-tab-group.mat-background-warn,.mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.mat-mdc-tab-header{--mat-tab-container-height: 48px}html{--mat-checkbox-disabled-selected-checkmark-color: white;--mat-checkbox-selected-focus-state-layer-opacity: .12;--mat-checkbox-selected-hover-state-layer-opacity: .04;--mat-checkbox-selected-pressed-state-layer-opacity: .12;--mat-checkbox-unselected-focus-state-layer-opacity: .12;--mat-checkbox-unselected-hover-state-layer-opacity: .04;--mat-checkbox-unselected-pressed-state-layer-opacity: .12;--mat-checkbox-touch-target-size: 48px}html{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #5e4ea5;--mat-checkbox-selected-hover-icon-color: #5e4ea5;--mat-checkbox-selected-icon-color: #5e4ea5;--mat-checkbox-selected-pressed-icon-color: #5e4ea5;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #5e4ea5;--mat-checkbox-selected-hover-state-layer-color: #5e4ea5;--mat-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}html{--mat-checkbox-touch-target-display: block;--mat-checkbox-state-layer-size: 40px}html{--mat-button-filled-container-shape: 4px;--mat-button-filled-horizontal-padding: 16px;--mat-button-filled-icon-offset: -4px;--mat-button-filled-icon-spacing: 8px;--mat-button-filled-touch-target-size: 48px;--mat-button-outlined-container-shape: 4px;--mat-button-outlined-horizontal-padding: 15px;--mat-button-outlined-icon-offset: -4px;--mat-button-outlined-icon-spacing: 8px;--mat-button-outlined-keep-touch-target: false;--mat-button-outlined-outline-width: 1px;--mat-button-outlined-touch-target-size: 48px;--mat-button-protected-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-button-protected-container-shape: 4px;--mat-button-protected-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-button-protected-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-button-protected-horizontal-padding: 16px;--mat-button-protected-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-button-protected-icon-offset: -4px;--mat-button-protected-icon-spacing: 8px;--mat-button-protected-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-button-protected-touch-target-size: 48px;--mat-button-text-container-shape: 4px;--mat-button-text-horizontal-padding: 8px;--mat-button-text-icon-offset: 0;--mat-button-text-icon-spacing: 8px;--mat-button-text-with-icon-horizontal-padding: 8px;--mat-button-text-touch-target-size: 48px;--mat-button-tonal-container-shape: 4px;--mat-button-tonal-horizontal-padding: 16px;--mat-button-tonal-icon-offset: -4px;--mat-button-tonal-icon-spacing: 8px;--mat-button-tonal-touch-target-size: 48px}html{--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-button.mat-primary,.mat-mdc-unelevated-button.mat-primary,.mat-mdc-raised-button.mat-primary,.mat-mdc-outlined-button.mat-primary,.mat-tonal-button.mat-primary{--mat-button-filled-container-color: #5e4ea5;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #5e4ea5;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-button-outlined-state-layer-color: #5e4ea5;--mat-button-protected-container-color: #5e4ea5;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #5e4ea5;--mat-button-text-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-button-text-state-layer-color: #5e4ea5;--mat-button-tonal-container-color: #5e4ea5;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.mat-mdc-button.mat-accent,.mat-mdc-unelevated-button.mat-accent,.mat-mdc-raised-button.mat-accent,.mat-mdc-outlined-button.mat-accent,.mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.mat-mdc-button.mat-warn,.mat-mdc-unelevated-button.mat-warn,.mat-mdc-raised-button.mat-warn,.mat-mdc-outlined-button.mat-warn,.mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}html{--mat-button-filled-container-height: 36px;--mat-button-filled-touch-target-display: block;--mat-button-outlined-container-height: 36px;--mat-button-outlined-touch-target-display: block;--mat-button-protected-container-height: 36px;--mat-button-protected-touch-target-display: block;--mat-button-text-container-height: 36px;--mat-button-text-touch-target-display: block;--mat-button-tonal-container-height: 36px;--mat-button-tonal-touch-target-display: block}html{--mat-icon-button-icon-size: 24px;--mat-icon-button-container-shape: 50%;--mat-icon-button-touch-target-size: 48px}html{--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #5e4ea5;--mat-icon-button-state-layer-color: #5e4ea5;--mat-icon-button-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent)}.mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}html{--mat-icon-button-touch-target-display: block}.mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size: 48px;--mat-icon-button-state-layer-size: 48px;width:var(--mat-icon-button-state-layer-size);height:var(--mat-icon-button-state-layer-size);padding:12px}html{--mat-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-container-shape: 50%;--mat-fab-touch-target-size: 48px;--mat-fab-extended-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-extended-container-height: 48px;--mat-fab-extended-container-shape: 24px;--mat-fab-extended-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-extended-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-extended-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-small-container-shape: 50%;--mat-fab-small-touch-target-size: 48px;--mat-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12)}html{--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-fab.mat-primary,.mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #5e4ea5;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-fab-small-container-color: #5e4ea5;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.mat-mdc-fab.mat-accent,.mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.mat-mdc-fab.mat-warn,.mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}html{--mat-fab-small-touch-target-display: block;--mat-fab-touch-target-display: block}html{--mat-snack-bar-container-shape: 4px}html{--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #8e83c0}html{--mat-table-row-item-outline-width: 1px}html{--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12)}html{--mat-table-header-container-height: 56px;--mat-table-footer-container-height: 52px;--mat-table-row-item-container-height: 52px}html{--mat-progress-spinner-active-indicator-width: 4px;--mat-progress-spinner-size: 48px}html{--mat-progress-spinner-active-indicator-color: #5e4ea5}.mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}html{--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0}html{--mat-badge-background-color: #5e4ea5;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}html{--mat-bottom-sheet-container-shape: 4px}html{--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white}html{--mat-button-toggle-focus-state-layer-opacity: .12;--mat-button-toggle-hover-state-layer-opacity: .04;--mat-button-toggle-legacy-focus-state-layer-opacity: 1;--mat-button-toggle-legacy-height: 36px;--mat-button-toggle-legacy-shape: 2px;--mat-button-toggle-shape: 4px}html{--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87)}html{--mat-button-toggle-height: 48px}html{--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12)}html{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #5e4ea5 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #5e4ea5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #5e4ea5 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #5e4ea5 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #5e4ea5;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.mat-datepicker-content.mat-accent,.mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.mat-datepicker-content.mat-warn,.mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.mat-calendar-controls{--mat-icon-button-touch-target-display: none}.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size: 40px;--mat-icon-button-state-layer-size: 40px;width:var(--mat-icon-button-state-layer-size);height:var(--mat-icon-button-state-layer-size);padding:8px}html{--mat-divider-width: 1px}html{--mat-divider-color: rgba(0, 0, 0, .12)}html{--mat-expansion-container-shape: 4px;--mat-expansion-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none}html{--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54)}html{--mat-expansion-header-collapsed-state-height: 48px;--mat-expansion-header-expanded-state-height: 64px}html{--mat-icon-color: inherit}.mat-icon.mat-primary{--mat-icon-color: #5e4ea5}.mat-icon.mat-accent{--mat-icon-color: #424242}.mat-icon.mat-warn{--mat-icon-color: #b00020}html{--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto}html{--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6)}html{--mat-stepper-header-focus-state-layer-shape: 0;--mat-stepper-header-hover-state-layer-shape: 0}html{--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #5e4ea5;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #5e4ea5;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #5e4ea5;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent}.mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}html{--mat-stepper-header-height: 72px}html{--mat-sort-arrow-color: rgba(0, 0, 0, .87)}html{--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87)}.mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #5e4ea5;--mat-toolbar-container-text-color: #ffffff}.mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}html{--mat-toolbar-standard-height: 64px;--mat-toolbar-mobile-height: 56px}html{--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}html{--mat-tree-node-min-height: 48px}html{--mat-timepicker-container-shape: 4px;--mat-timepicker-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12)}html{--mat-timepicker-container-background-color: white}.rtl-container.purple.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.purple.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.purple.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.purple.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.purple.day .bg-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.purple.day .page-title,.rtl-container.purple.day .mat-mdc-select-value,.rtl-container.purple.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.purple.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.purple.day .help-expansion .mat-expansion-panel-header,.rtl-container.purple.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.purple.day .help-expansion .mat-expansion-indicator:after,.rtl-container.purple.day .help-expansion .mat-expansion-panel-content,.rtl-container.purple.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#5e4ea5}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.purple.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#5e4ea5}.rtl-container.purple.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.purple.day .mat-tree-node:hover,.rtl-container.purple.day .mat-nested-tree-node-parent:hover,.rtl-container.purple.day .mat-select-panel .mat-option:hover,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#5e4ea5;cursor:pointer}.rtl-container.purple.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.purple.day .mat-tree-node:hover .mat-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#5e4ea5}.rtl-container.purple.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.purple.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#5e4ea5}.rtl-container.purple.day .spinner-container h2{color:#fff}.rtl-container.purple.day .ng-fa-icon,.rtl-container.purple.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.purple.day .mat-form-field-suffix{color:#0000008a}.rtl-container.purple.day .mat-stroked-button.mat-primary{border-color:#5e4ea5}.rtl-container.purple.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.purple.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.purple.day .selected-color{border-color:#8e83c0}.rtl-container.purple.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.purple.day table.mat-mdc-table thead tr th,.rtl-container.purple.day .page-title-container,.rtl-container.purple.day .page-sub-title-container{color:#0000008a}.rtl-container.purple.day .page-title-container .page-title-img,.rtl-container.purple.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.purple.day .page-title-container .mat-input-element,.rtl-container.purple.day .page-title-container .mat-radio-label-content,.rtl-container.purple.day .page-title-container .theme-name,.rtl-container.purple.day .page-sub-title-container .mat-input-element,.rtl-container.purple.day .page-sub-title-container .mat-radio-label-content,.rtl-container.purple.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.purple.day .cc-data-block .cc-data-title{color:#5e4ea5}.rtl-container.purple.day .active-link,.rtl-container.purple.day .active-link .fa-icon-small{color:#5e4ea5;font-weight:500;cursor:pointer;fill:#5e4ea5}.rtl-container.purple.day .mat-tree-node:hover,.rtl-container.purple.day .mat-nested-tree-node-parent:hover,.rtl-container.purple.day .mat-select-panel .mat-option:hover,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#5e4ea5;cursor:pointer;background:#0000000a}.rtl-container.purple.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.purple.day .mat-tree-node:hover .mat-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#5e4ea5}.rtl-container.purple.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.purple.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#5e4ea5}.rtl-container.purple.day .mat-tree-node .sidenav-img,.rtl-container.purple.day .mat-nested-tree-node .sidenav-img,.rtl-container.purple.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.purple.day .page-title-container .page-title-img,.rtl-container.purple.day svg.top-icon-small{fill:#000000de}.rtl-container.purple.day .mat-progress-bar-fill:after{background-color:#312579}.rtl-container.purple.day .modal-qr-code-container{background:#0000001f}.rtl-container.purple.day .mdc-tab__text-label,.rtl-container.purple.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.purple.day .mat-mdc-card,.rtl-container.purple.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.purple.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.purple.day .dashboard-info-title{color:#5e4ea5}.rtl-container.purple.day .dashboard-capacity-header,.rtl-container.purple.day .dashboard-info-value{color:#0000008a}.rtl-container.purple.day .color-primary{color:#5e4ea5!important}.rtl-container.purple.day .dot-primary{background-color:#5e4ea5!important}.rtl-container.purple.day .dot-primary-lighter{background-color:#8e83c0!important}.rtl-container.purple.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .mat-mdc-form-field-hint{color:#5e4ea5}.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.purple.day .mat-mdc-form-field-hint fa-icon svg path{fill:#5e4ea5}.rtl-container.purple.day .currency-icon path,.rtl-container.purple.day .currency-icon polygon{fill:#0000008a}.rtl-container.purple.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.purple.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.purple.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-primary-lighter{stroke:#8e83c0}.rtl-container.purple.day svg .stroke-color-primary{stroke:#5e4ea5}.rtl-container.purple.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.purple.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-1{fill:#fff}.rtl-container.purple.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.purple.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-6{fill:#fff}.rtl-container.purple.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-9{fill:#fff}.rtl-container.purple.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.purple.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.purple.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-16{fill:#404040}.rtl-container.purple.day svg .fill-color-17{fill:#404040}.rtl-container.purple.day svg .fill-color-18{fill:#000}.rtl-container.purple.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-24{fill:#000}.rtl-container.purple.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.purple.day svg .fill-color-27{fill:#000}.rtl-container.purple.day svg .fill-color-28{fill:#313131}.rtl-container.purple.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-30{fill:#fff}.rtl-container.purple.day svg .fill-color-31{fill:#5e4ea5}.rtl-container.purple.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.purple.day svg .fill-color-primary{fill:#5e4ea5}.rtl-container.purple.day svg .fill-color-primary-lighter{fill:#8e83c0}.rtl-container.purple.day svg .fill-color-primary-darker{fill:#5e4ea5}.rtl-container.purple.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.purple.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.purple.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#5e4ea5}.rtl-container.purple.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.purple.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.purple.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.purple.day .material-icons.mat-icon-no-color,.rtl-container.purple.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.purple.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.purple.day .material-icons.info-icon.info-icon-primary{color:#5e4ea5}.rtl-container.purple.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.purple.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.purple.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.purple.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.purple.day .material-icons.info-icon.arrow-downward,.rtl-container.purple.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.purple.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#5e4ea5}.rtl-container.purple.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#312579}.rtl-container.purple.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#afa7d2}.rtl-container.purple.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.purple.day .mat-progress-bar-buffer{background-color:#cfcae4}.rtl-container.purple.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.purple.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.purple.day .foreground.mat-progress-spinner circle,.rtl-container.purple.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.purple.day .mat-toolbar-row,.rtl-container.purple.day .mat-toolbar-single-row{height:4rem}.rtl-container.purple.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day a{color:#5e4ea5}.rtl-container.purple.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.purple.day .h-active-link{border-bottom:2px solid white}.rtl-container.purple.day .mat-icon-36{color:#0000008a}.rtl-container.purple.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.purple.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.purple.day .genseed-message{width:10%;color:#5e4ea5}.rtl-container.purple.day .border-primary{border:1px solid #5e4ea5}.rtl-container.purple.day .border-accent{border:1px solid #9e9e9e}.rtl-container.purple.day .border-warn{border:1px solid #b00020}.rtl-container.purple.day .material-icons.primary{color:#5e4ea5}.rtl-container.purple.day .material-icons.accent{color:#9e9e9e}.rtl-container.purple.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.purple.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.purple.day .row-disabled{background-color:gray}.rtl-container.purple.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.purple.day .mat-mdc-card-content,.rtl-container.purple.day .mat-mdc-card-subtitle,.rtl-container.purple.day .mat-mdc-card-title{color:#0000008a}.rtl-container.purple.day .mat-menu-panel{min-width:4rem}.rtl-container.purple.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.purple.day .horizontal-button:hover{background:#8e83c0;color:#9e9e9e}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#5e4ea5}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.purple.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.purple.day .mat-button,.rtl-container.purple.day .mat-icon-button,.rtl-container.purple.day .mat-stroked-button,.rtl-container.purple.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.purple.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.purple.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.purple.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.purple.day .cc-data-block .cc-data-value{color:#000}.rtl-container.purple.day .mat-cell,.rtl-container.purple.day .mat-header-cell,.rtl-container.purple.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.purple.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.purple.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#5e4ea5}.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#5e4ea5;opacity:1}.rtl-container.purple.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.purple.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.purple.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.purple.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.purple.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.purple.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.purple.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.purple.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.purple.day .more-button{color:#000}.rtl-container.purple.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.purple.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.purple.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.purple.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.purple.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.purple.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.purple.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.purple.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.purple.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.purple.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.purple.day .tab-badge .mat-badge-content.mat-badge-active{background:#5e4ea5}.rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width: 37.5em){.rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.purple.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.purple.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.purple.day .rtl-select-overlay{min-width:7rem}}.rtl-container.purple.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.purple.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.purple.day .table-actions-button{min-width:8rem}.rtl-container.purple.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.purple.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.purple.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.purple.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#afa7d2!important}.rtl-container.purple.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#56479d!important}.rtl-container.purple.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.purple.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.purple.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.purple.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.purple.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.purple.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.purple.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.purple.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.purple.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.purple.day .color-warn{color:#b00020}.rtl-container.purple.day .fill-warn{fill:#b00020}.rtl-container.purple.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.purple.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.purple.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.purple.day .alert.alert-info a{color:#004085}.rtl-container.purple.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.purple.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.purple.day .alert.alert-warn a{color:#856404}.rtl-container.purple.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.purple.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.purple.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.purple.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.purple.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.purple.day .failed-status{color:#b00020}.rtl-container.purple.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.purple.day .svg-fill-primary{fill:#5e4ea5}.rtl-container.purple.day .svg-fill-primary-lighter{fill:#8e83c0}.rtl-container.purple.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.purple.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.purple.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.purple.day .dashboard-card-content .underline,.rtl-container.purple.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.purple.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.purple.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.purple.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#5e4ea5}.rtl-container.purple.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.purple.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#5e4ea5}.rtl-container.purple.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.purple.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#5e4ea5}.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon{color:#5e4ea5}.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon path{fill:#5e4ea5}.rtl-container.purple.day .fa-icon-primary{color:#5e4ea5}.rtl-container.purple.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day ngx-charts-bar-vertical text,.rtl-container.purple.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.purple.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.purple.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.purple.day .mat-paginator-container{padding:0}.rtl-container.purple.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.purple.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.purple.day .invoice-animation-div .particles-circle{position:absolute;background-color:#5e4ea5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #5e4ea5;background-color:transparent}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.purple.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.purple.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.purple.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.purple.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.purple.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #5e4ea5;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-filled-caret-color: #5e4ea5;--mat-form-field-filled-focus-active-indicator-color: #5e4ea5;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-outlined-caret-color: #5e4ea5;--mat-form-field-outlined-focus-outline-color: #5e4ea5;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #5e4ea5;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-handle-color: #5e4ea5;--mat-slide-toggle-selected-hover-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-pressed-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-focus-handle-color: #5e4ea5;--mat-slide-toggle-selected-hover-handle-color: #5e4ea5;--mat-slide-toggle-selected-pressed-handle-color: #5e4ea5;--mat-slide-toggle-selected-focus-track-color: #56479d;--mat-slide-toggle-selected-hover-track-color: #56479d;--mat-slide-toggle-selected-pressed-track-color: #56479d;--mat-slide-toggle-selected-track-color: #56479d;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #5e4ea5;--mat-slider-focus-handle-color: #5e4ea5;--mat-slider-handle-color: #5e4ea5;--mat-slider-hover-handle-color: #5e4ea5;--mat-slider-focus-state-layer-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #5e4ea5 4%, transparent);--mat-slider-inactive-track-color: #5e4ea5;--mat-slider-ripple-color: #5e4ea5;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #5e4ea5;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #56479d;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #5e4ea5;--mat-badge-background-color: #5e4ea5;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #5e4ea5 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #5e4ea5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #5e4ea5 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #5e4ea5 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #5e4ea5;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #5e4ea5;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #5e4ea5;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #5e4ea5;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.purple.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.purple.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.purple.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #5e4ea5;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #5e4ea5;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.purple.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.purple.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.purple.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #5e4ea5;--mat-progress-bar-track-color: rgba(94, 78, 165, .25)}.rtl-container.purple.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.purple.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.purple.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.purple.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.purple.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.purple.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.purple.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #5e4ea5;--mat-chip-elevated-disabled-container-color: #5e4ea5;--mat-chip-elevated-selected-container-color: #5e4ea5;--mat-chip-flat-disabled-selected-container-color: #5e4ea5;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.purple.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.purple.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.purple.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #5e4ea5;--mat-radio-selected-hover-icon-color: #5e4ea5;--mat-radio-selected-icon-color: #5e4ea5;--mat-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.purple.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.purple.night .mdc-list-item__start,.rtl-container.purple.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #5e4ea5;--mat-radio-selected-hover-icon-color: #5e4ea5;--mat-radio-selected-icon-color: #5e4ea5;--mat-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-accent .mdc-list-item__start,.rtl-container.purple.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-warn .mdc-list-item__start,.rtl-container.purple.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #5e4ea5;--mat-checkbox-selected-hover-icon-color: #5e4ea5;--mat-checkbox-selected-icon-color: #5e4ea5;--mat-checkbox-selected-pressed-icon-color: #5e4ea5;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #5e4ea5;--mat-checkbox-selected-hover-state-layer-color: #5e4ea5;--mat-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#5e4ea5}.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.purple.night .mat-mdc-tab-group,.rtl-container.purple.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #5e4ea5;--mat-tab-active-ripple-color: #5e4ea5;--mat-tab-inactive-ripple-color: #5e4ea5;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #5e4ea5;--mat-tab-active-hover-label-text-color: #5e4ea5;--mat-tab-active-focus-indicator-color: #5e4ea5;--mat-tab-active-hover-indicator-color: #5e4ea5;--mat-tab-active-indicator-color: #5e4ea5}.rtl-container.purple.night .mat-mdc-tab-group.mat-accent,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.purple.night .mat-mdc-tab-group.mat-warn,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #5e4ea5;--mat-tab-foreground-color: #ffffff}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.purple.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #5e4ea5;--mat-checkbox-selected-hover-icon-color: #5e4ea5;--mat-checkbox-selected-icon-color: #5e4ea5;--mat-checkbox-selected-pressed-icon-color: #5e4ea5;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #5e4ea5;--mat-checkbox-selected-hover-state-layer-color: #5e4ea5;--mat-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-button.mat-primary,.rtl-container.purple.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.purple.night .mat-mdc-raised-button.mat-primary,.rtl-container.purple.night .mat-mdc-outlined-button.mat-primary,.rtl-container.purple.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #5e4ea5;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #5e4ea5;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-button-outlined-state-layer-color: #5e4ea5;--mat-button-protected-container-color: #5e4ea5;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #5e4ea5;--mat-button-text-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-button-text-state-layer-color: #5e4ea5;--mat-button-tonal-container-color: #5e4ea5;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.rtl-container.purple.night .mat-mdc-button.mat-accent,.rtl-container.purple.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.purple.night .mat-mdc-raised-button.mat-accent,.rtl-container.purple.night .mat-mdc-outlined-button.mat-accent,.rtl-container.purple.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.purple.night .mat-mdc-button.mat-warn,.rtl-container.purple.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.purple.night .mat-mdc-raised-button.mat-warn,.rtl-container.purple.night .mat-mdc-outlined-button.mat-warn,.rtl-container.purple.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.purple.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #5e4ea5;--mat-icon-button-state-layer-color: #5e4ea5;--mat-icon-button-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent)}.rtl-container.purple.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.purple.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.purple.night .mat-mdc-fab.mat-primary,.rtl-container.purple.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #5e4ea5;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-fab-small-container-color: #5e4ea5;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.rtl-container.purple.night .mat-mdc-fab.mat-accent,.rtl-container.purple.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.purple.night .mat-mdc-fab.mat-warn,.rtl-container.purple.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.purple.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.purple.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.purple.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.purple.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.purple.night .mat-datepicker-content.mat-accent,.rtl-container.purple.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.purple.night .mat-datepicker-content.mat-warn,.rtl-container.purple.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.purple.night .mat-icon.mat-primary{--mat-icon-color: #5e4ea5}.rtl-container.purple.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.purple.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.purple.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.purple.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.purple.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #5e4ea5;--mat-toolbar-container-text-color: #ffffff}.rtl-container.purple.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.purple.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.purple.night .mat-primary{color:#9787ff!important}.rtl-container.purple.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.purple.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.purple.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.purple.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.purple.night .bg-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#9787ff}.rtl-container.purple.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.purple.night .currency-icon path,.rtl-container.purple.night .currency-icon polygon{fill:#fff}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.purple.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#9787ff}.rtl-container.purple.night .cc-data-block .cc-data-title{color:#9787ff}.rtl-container.purple.night .mat-stroked-button.mat-primary{border-color:#9787ff;color:#9787ff}.rtl-container.purple.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.purple.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.purple.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.purple.night .active-link,.rtl-container.purple.night .active-link .fa-icon-small,.rtl-container.purple.night .mat-select-panel .mat-option.mat-active,.rtl-container.purple.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#9787ff;font-weight:500;cursor:pointer;fill:#9787ff}.rtl-container.purple.night .help-expansion .mat-expansion-panel-header,.rtl-container.purple.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.purple.night .help-expansion .mat-expansion-indicator:after,.rtl-container.purple.night .help-expansion .mat-expansion-panel-content,.rtl-container.purple.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.purple.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.purple.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.purple.night .mat-expansion-panel,.rtl-container.purple.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.purple.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.purple.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.purple.night .mdc-data-table__header-cell,.rtl-container.purple.night .mat-mdc-paginator,.rtl-container.purple.night .mat-mdc-form-field-focus-overlay,.rtl-container.purple.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.purple.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.purple.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#9787ff}.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.purple.night .svg-donation{opacity:1!important}.rtl-container.purple.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#9787ff!important}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#9787ff!important}.rtl-container.purple.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#5e4ea5}.rtl-container.purple.night a{color:#9787ff!important;cursor:pointer}.rtl-container.purple.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.purple.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.purple.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.purple.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.purple.night .mat-mdc-select-placeholder,.rtl-container.purple.night .mat-mdc-select-value,.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#9787ff}.rtl-container.purple.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.purple.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.purple.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#9787ff}.rtl-container.purple.night .mat-tree-node:hover,.rtl-container.purple.night .mat-nested-tree-node-parent:hover,.rtl-container.purple.night .mat-select-panel .mat-option:hover,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#9787ff;cursor:pointer;background:#ffffff0f}.rtl-container.purple.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.purple.night .mat-tree-node:hover .mat-icon,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.purple.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.purple.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#9787ff}.rtl-container.purple.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.purple.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.purple.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.purple.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#9787ff}.rtl-container.purple.night .mat-tree-node:hover .boltz-icon,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.purple.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#9787ff}.rtl-container.purple.night .mat-tree-node .sidenav-img,.rtl-container.purple.night .mat-nested-tree-node .sidenav-img,.rtl-container.purple.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.purple.night .page-title-container .page-title-img,.rtl-container.purple.night svg.top-icon-small{fill:#fff}.rtl-container.purple.night .selected-color{border-color:#8e83c0}.rtl-container.purple.night .mat-progress-bar-fill:after{background-color:#56479d}.rtl-container.purple.night .chart-legend .legend-label:hover,.rtl-container.purple.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.purple.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.purple.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#9787ff}.rtl-container.purple.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.purple.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#9787ff}.rtl-container.purple.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#9787ff}.rtl-container.purple.night .mat-select-panel{background-color:#121212}.rtl-container.purple.night .mat-tree{background:#121212}.rtl-container.purple.night h4{color:#9787ff}.rtl-container.purple.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.purple.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.purple.night .dashboard-info-title{color:#9787ff}.rtl-container.purple.night .dashboard-info-value,.rtl-container.purple.night .dashboard-capacity-header{color:#fff}.rtl-container.purple.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.purple.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.purple.night .color-primary{color:#9787ff!important}.rtl-container.purple.night .dot-primary{background-color:#9787ff!important}.rtl-container.purple.night .dot-primary-lighter{background-color:#5e4ea5!important}.rtl-container.purple.night .mat-stepper-vertical{background-color:#121212}.rtl-container.purple.night .spinner-container h2{color:#9787ff}.rtl-container.purple.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.purple.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.purple.night svg .boltz-icon-fill{fill:#fff}.rtl-container.purple.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-primary-lighter{stroke:#8e83c0}.rtl-container.purple.night svg .stroke-color-primary{stroke:#5e4ea5}.rtl-container.purple.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.purple.night svg .fill-color-0{fill:#171717}.rtl-container.purple.night svg .fill-color-1{fill:#232323}.rtl-container.purple.night svg .fill-color-2{fill:#222}.rtl-container.purple.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.purple.night svg .fill-color-4{fill:#383838}.rtl-container.purple.night svg .fill-color-5{fill:#555}.rtl-container.purple.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.purple.night svg .fill-color-7{fill:#202020}.rtl-container.purple.night svg .fill-color-8{fill:#242424}.rtl-container.purple.night svg .fill-color-9{fill:#262626}.rtl-container.purple.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.purple.night svg .fill-color-11{fill:#171717}.rtl-container.purple.night svg .fill-color-12{fill:#ccc}.rtl-container.purple.night svg .fill-color-13{fill:#adadad}.rtl-container.purple.night svg .fill-color-14{fill:#ababab}.rtl-container.purple.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.purple.night svg .fill-color-16{fill:#707070}.rtl-container.purple.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.purple.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.purple.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.purple.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.purple.night svg .fill-color-21{fill:#cacaca}.rtl-container.purple.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.purple.night svg .fill-color-23{fill:#777}.rtl-container.purple.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.purple.night svg .fill-color-25{fill:#252525}.rtl-container.purple.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.purple.night svg .fill-color-27{fill:#000}.rtl-container.purple.night svg .fill-color-28{fill:#313131}.rtl-container.purple.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.purple.night svg .fill-color-30{fill:#fff}.rtl-container.purple.night svg .fill-color-31{fill:#5e4ea5}.rtl-container.purple.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.purple.night svg .fill-color-primary{fill:#5e4ea5}.rtl-container.purple.night svg .fill-color-primary-lighter{fill:#8e83c0}.rtl-container.purple.night svg .fill-color-primary-darker{fill:#9787ff}.rtl-container.purple.night .mat-select-value,.rtl-container.purple.night .mat-select-arrow{color:#fff}.rtl-container.purple.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.purple.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.purple.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.purple.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.purple.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.purple.night .mat-button.mat-primary,.rtl-container.purple.night .mat-icon-button.mat-primary,.rtl-container.purple.night .mat-stroked-button.mat-primary{color:#9787ff}.rtl-container.purple.night tr.alert.alert-warn .mat-cell,.rtl-container.purple.night tr.alert.alert-warn .mat-header-cell,.rtl-container.purple.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.purple.night .material-icons.info-icon{font-size:100%;color:#9787ff}.rtl-container.purple.night .material-icons.info-icon.info-icon-primary{color:#9787ff}.rtl-container.purple.night .material-icons.info-icon.info-icon-text,.rtl-container.purple.night .material-icons.info-icon.arrow-downward,.rtl-container.purple.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.purple.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#9787ff}.rtl-container.purple.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#42358a}.rtl-container.purple.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#9787ff}.rtl-container.purple.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.purple.night .mat-progress-bar-buffer{background-color:#cfcae4}.rtl-container.purple.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.purple.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.purple.night .foreground.mat-progress-spinner circle,.rtl-container.purple.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.purple.night .mat-toolbar-row,.rtl-container.purple.night .mat-toolbar-single-row{height:4rem}.rtl-container.purple.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.purple.night a{color:#5e4ea5}.rtl-container.purple.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.purple.night .h-active-link{border-bottom:2px solid white}.rtl-container.purple.night .mat-icon-36{color:#ffffffb3}.rtl-container.purple.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.purple.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.purple.night .genseed-message{width:10%;color:#5e4ea5}.rtl-container.purple.night .border-primary{border:1px solid #5e4ea5}.rtl-container.purple.night .border-accent{border:1px solid #aaaaaa}.rtl-container.purple.night .border-warn{border:1px solid #b00020}.rtl-container.purple.night .material-icons.primary{color:#5e4ea5}.rtl-container.purple.night .material-icons.accent{color:#aaa}.rtl-container.purple.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.purple.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.purple.night .row-disabled{background-color:gray}.rtl-container.purple.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.purple.night .mat-mdc-card-content,.rtl-container.purple.night .mat-mdc-card-subtitle,.rtl-container.purple.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.purple.night .mat-menu-panel{min-width:4rem}.rtl-container.purple.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.purple.night .horizontal-button:hover{background:#8e83c0;color:#aaa}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#5e4ea5}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.purple.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.purple.night .mat-button,.rtl-container.purple.night .mat-icon-button,.rtl-container.purple.night .mat-stroked-button,.rtl-container.purple.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.purple.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.purple.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.purple.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.purple.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.purple.night .mat-cell,.rtl-container.purple.night .mat-header-cell,.rtl-container.purple.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.purple.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.purple.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#5e4ea5}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#5e4ea5;opacity:1}.rtl-container.purple.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.purple.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.purple.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.purple.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.purple.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.purple.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.purple.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.purple.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.purple.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.purple.night .more-button{color:#fff}.rtl-container.purple.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.purple.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.purple.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.purple.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.purple.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.purple.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.purple.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.purple.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.purple.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.purple.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.purple.night .tab-badge .mat-badge-content.mat-badge-active{background:#5e4ea5}.rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width: 37.5em){.rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.purple.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.purple.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.purple.night .rtl-select-overlay{min-width:7rem}}.rtl-container.purple.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.purple.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.purple.night .table-actions-button{min-width:8rem}.rtl-container.purple.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.purple.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.purple.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.purple.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#afa7d2!important}.rtl-container.purple.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#56479d!important}.rtl-container.purple.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.purple.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.purple.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.purple.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.purple.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.purple.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.purple.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.purple.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.purple.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.purple.night .color-warn{color:#b00020}.rtl-container.purple.night .fill-warn{fill:#b00020}.rtl-container.purple.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.purple.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.purple.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.purple.night .alert.alert-info a{color:#004085}.rtl-container.purple.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.purple.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.purple.night .alert.alert-warn a{color:#856404}.rtl-container.purple.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.purple.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.purple.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.purple.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.purple.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.purple.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.purple.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.purple.night .failed-status{color:#b00020}.rtl-container.purple.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.purple.night .svg-fill-primary{fill:#5e4ea5}.rtl-container.purple.night .svg-fill-primary-lighter{fill:#8e83c0}.rtl-container.purple.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.purple.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.purple.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.purple.night .dashboard-card-content .underline,.rtl-container.purple.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.purple.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.purple.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#5e4ea5}.rtl-container.purple.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.purple.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#5e4ea5}.rtl-container.purple.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.purple.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#5e4ea5}.rtl-container.purple.night .mat-mdc-form-field-hint .currency-icon{color:#5e4ea5}.rtl-container.purple.night .mat-mdc-form-field-hint .currency-icon path{fill:#5e4ea5}.rtl-container.purple.night .fa-icon-primary{color:#5e4ea5}.rtl-container.purple.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night ngx-charts-bar-vertical text,.rtl-container.purple.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.purple.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.purple.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.purple.night .mat-paginator-container{padding:0}.rtl-container.purple.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.purple.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.purple.night .invoice-animation-div .particles-circle{position:absolute;background-color:#5e4ea5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #5e4ea5;background-color:transparent}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.purple.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.purple.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.purple.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.purple.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.blue.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #1976d2;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-filled-caret-color: #1976d2;--mat-form-field-filled-focus-active-indicator-color: #1976d2;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-outlined-caret-color: #1976d2;--mat-form-field-outlined-focus-outline-color: #1976d2;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #1976d2;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #1976d2;--mat-slide-toggle-selected-handle-color: #1976d2;--mat-slide-toggle-selected-hover-state-layer-color: #1976d2;--mat-slide-toggle-selected-pressed-state-layer-color: #1976d2;--mat-slide-toggle-selected-focus-handle-color: #1976d2;--mat-slide-toggle-selected-hover-handle-color: #1976d2;--mat-slide-toggle-selected-pressed-handle-color: #1976d2;--mat-slide-toggle-selected-focus-track-color: #64b5f6;--mat-slide-toggle-selected-hover-track-color: #64b5f6;--mat-slide-toggle-selected-pressed-track-color: #64b5f6;--mat-slide-toggle-selected-track-color: #64b5f6;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #1976d2;--mat-slider-focus-handle-color: #1976d2;--mat-slider-handle-color: #1976d2;--mat-slider-hover-handle-color: #1976d2;--mat-slider-focus-state-layer-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #1976d2 4%, transparent);--mat-slider-inactive-track-color: #1976d2;--mat-slider-ripple-color: #1976d2;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #1976d2;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #64b5f6;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #1976d2;--mat-badge-background-color: #1976d2;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #1976d2 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #1976d2;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #1976d2 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #1976d2 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #1976d2;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #1976d2;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #1976d2;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #1976d2;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.blue.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.blue.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.blue.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #1976d2;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #1976d2;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.blue.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.blue.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.blue.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #1976d2;--mat-progress-bar-track-color: rgba(25, 118, 210, .25)}.rtl-container.blue.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.blue.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.blue.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.blue.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.blue.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.blue.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.blue.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #1976d2;--mat-chip-elevated-disabled-container-color: #1976d2;--mat-chip-elevated-selected-container-color: #1976d2;--mat-chip-flat-disabled-selected-container-color: #1976d2;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.blue.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.blue.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.blue.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #1976d2;--mat-radio-selected-hover-icon-color: #1976d2;--mat-radio-selected-icon-color: #1976d2;--mat-radio-selected-pressed-icon-color: #1976d2;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.blue.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.blue.day .mdc-list-item__start,.rtl-container.blue.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #1976d2;--mat-radio-selected-hover-icon-color: #1976d2;--mat-radio-selected-icon-color: #1976d2;--mat-radio-selected-pressed-icon-color: #1976d2;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-accent .mdc-list-item__start,.rtl-container.blue.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-warn .mdc-list-item__start,.rtl-container.blue.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #1976d2;--mat-checkbox-selected-hover-icon-color: #1976d2;--mat-checkbox-selected-icon-color: #1976d2;--mat-checkbox-selected-pressed-icon-color: #1976d2;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #1976d2;--mat-checkbox-selected-hover-state-layer-color: #1976d2;--mat-checkbox-selected-pressed-state-layer-color: #1976d2;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#1976d2}.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.blue.day .mat-mdc-tab-group,.rtl-container.blue.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #1976d2;--mat-tab-active-ripple-color: #1976d2;--mat-tab-inactive-ripple-color: #1976d2;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #1976d2;--mat-tab-active-hover-label-text-color: #1976d2;--mat-tab-active-focus-indicator-color: #1976d2;--mat-tab-active-hover-indicator-color: #1976d2;--mat-tab-active-indicator-color: #1976d2}.rtl-container.blue.day .mat-mdc-tab-group.mat-accent,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.blue.day .mat-mdc-tab-group.mat-warn,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #1976d2;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.blue.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #1976d2;--mat-checkbox-selected-hover-icon-color: #1976d2;--mat-checkbox-selected-icon-color: #1976d2;--mat-checkbox-selected-pressed-icon-color: #1976d2;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #1976d2;--mat-checkbox-selected-hover-state-layer-color: #1976d2;--mat-checkbox-selected-pressed-state-layer-color: #1976d2;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-button.mat-primary,.rtl-container.blue.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.blue.day .mat-mdc-raised-button.mat-primary,.rtl-container.blue.day .mat-mdc-outlined-button.mat-primary,.rtl-container.blue.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #1976d2;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #1976d2;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-button-outlined-state-layer-color: #1976d2;--mat-button-protected-container-color: #1976d2;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #1976d2;--mat-button-text-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-button-text-state-layer-color: #1976d2;--mat-button-tonal-container-color: #1976d2;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.blue.day .mat-mdc-button.mat-accent,.rtl-container.blue.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.blue.day .mat-mdc-raised-button.mat-accent,.rtl-container.blue.day .mat-mdc-outlined-button.mat-accent,.rtl-container.blue.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.blue.day .mat-mdc-button.mat-warn,.rtl-container.blue.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.blue.day .mat-mdc-raised-button.mat-warn,.rtl-container.blue.day .mat-mdc-outlined-button.mat-warn,.rtl-container.blue.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.blue.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #1976d2;--mat-icon-button-state-layer-color: #1976d2;--mat-icon-button-ripple-color: color-mix(in srgb, #1976d2 12%, transparent)}.rtl-container.blue.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.blue.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.blue.day .mat-mdc-fab.mat-primary,.rtl-container.blue.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #1976d2;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-fab-small-container-color: #1976d2;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.blue.day .mat-mdc-fab.mat-accent,.rtl-container.blue.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.blue.day .mat-mdc-fab.mat-warn,.rtl-container.blue.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.blue.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.blue.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.blue.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.blue.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.blue.day .mat-datepicker-content.mat-accent,.rtl-container.blue.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-datepicker-content.mat-warn,.rtl-container.blue.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-icon.mat-primary{--mat-icon-color: #1976d2}.rtl-container.blue.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.blue.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.blue.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #1976d2;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.blue.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.blue.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.blue.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.blue.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.blue.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.blue.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.blue.day .bg-primary{background-color:#2196f3;color:#fff}.rtl-container.blue.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.blue.day .page-title,.rtl-container.blue.day .mat-mdc-select-value,.rtl-container.blue.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.blue.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.blue.day .help-expansion .mat-expansion-panel-header,.rtl-container.blue.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.blue.day .help-expansion .mat-expansion-indicator:after,.rtl-container.blue.day .help-expansion .mat-expansion-panel-content,.rtl-container.blue.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#2196f3}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.blue.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#2196f3}.rtl-container.blue.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.blue.day .mat-tree-node:hover,.rtl-container.blue.day .mat-nested-tree-node-parent:hover,.rtl-container.blue.day .mat-select-panel .mat-option:hover,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#2196f3;cursor:pointer}.rtl-container.blue.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.blue.day .mat-tree-node:hover .mat-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#2196f3}.rtl-container.blue.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.blue.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#2196f3}.rtl-container.blue.day .spinner-container h2{color:#fff}.rtl-container.blue.day .ng-fa-icon,.rtl-container.blue.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.blue.day .mat-form-field-suffix{color:#0000008a}.rtl-container.blue.day .mat-stroked-button.mat-primary{border-color:#2196f3}.rtl-container.blue.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.blue.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.blue.day .selected-color{border-color:#90caf9}.rtl-container.blue.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.blue.day table.mat-mdc-table thead tr th,.rtl-container.blue.day .page-title-container,.rtl-container.blue.day .page-sub-title-container{color:#0000008a}.rtl-container.blue.day .page-title-container .page-title-img,.rtl-container.blue.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.blue.day .page-title-container .mat-input-element,.rtl-container.blue.day .page-title-container .mat-radio-label-content,.rtl-container.blue.day .page-title-container .theme-name,.rtl-container.blue.day .page-sub-title-container .mat-input-element,.rtl-container.blue.day .page-sub-title-container .mat-radio-label-content,.rtl-container.blue.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.blue.day .cc-data-block .cc-data-title{color:#2196f3}.rtl-container.blue.day .active-link,.rtl-container.blue.day .active-link .fa-icon-small{color:#2196f3;font-weight:500;cursor:pointer;fill:#2196f3}.rtl-container.blue.day .mat-tree-node:hover,.rtl-container.blue.day .mat-nested-tree-node-parent:hover,.rtl-container.blue.day .mat-select-panel .mat-option:hover,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#2196f3;cursor:pointer;background:#0000000a}.rtl-container.blue.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.blue.day .mat-tree-node:hover .mat-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#2196f3}.rtl-container.blue.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.blue.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#2196f3}.rtl-container.blue.day .mat-tree-node .sidenav-img,.rtl-container.blue.day .mat-nested-tree-node .sidenav-img,.rtl-container.blue.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.blue.day .page-title-container .page-title-img,.rtl-container.blue.day svg.top-icon-small{fill:#000000de}.rtl-container.blue.day .mat-progress-bar-fill:after{background-color:#0d47a1}.rtl-container.blue.day .modal-qr-code-container{background:#0000001f}.rtl-container.blue.day .mdc-tab__text-label,.rtl-container.blue.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.blue.day .mat-mdc-card,.rtl-container.blue.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.blue.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.blue.day .dashboard-info-title{color:#2196f3}.rtl-container.blue.day .dashboard-capacity-header,.rtl-container.blue.day .dashboard-info-value{color:#0000008a}.rtl-container.blue.day .color-primary{color:#2196f3!important}.rtl-container.blue.day .dot-primary{background-color:#2196f3!important}.rtl-container.blue.day .dot-primary-lighter{background-color:#90caf9!important}.rtl-container.blue.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .mat-mdc-form-field-hint{color:#2196f3}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.blue.day .mat-mdc-form-field-hint fa-icon svg path{fill:#2196f3}.rtl-container.blue.day .currency-icon path,.rtl-container.blue.day .currency-icon polygon{fill:#0000008a}.rtl-container.blue.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.blue.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.blue.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-primary-lighter{stroke:#90caf9}.rtl-container.blue.day svg .stroke-color-primary{stroke:#2196f3}.rtl-container.blue.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.blue.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-1{fill:#fff}.rtl-container.blue.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.blue.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-6{fill:#fff}.rtl-container.blue.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-9{fill:#fff}.rtl-container.blue.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.blue.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.blue.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-16{fill:#404040}.rtl-container.blue.day svg .fill-color-17{fill:#404040}.rtl-container.blue.day svg .fill-color-18{fill:#000}.rtl-container.blue.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-24{fill:#000}.rtl-container.blue.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.blue.day svg .fill-color-27{fill:#000}.rtl-container.blue.day svg .fill-color-28{fill:#313131}.rtl-container.blue.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-30{fill:#fff}.rtl-container.blue.day svg .fill-color-31{fill:#2196f3}.rtl-container.blue.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.blue.day svg .fill-color-primary{fill:#2196f3}.rtl-container.blue.day svg .fill-color-primary-lighter{fill:#90caf9}.rtl-container.blue.day svg .fill-color-primary-darker{fill:#2196f3}.rtl-container.blue.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.blue.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.blue.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#2196f3}.rtl-container.blue.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.blue.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.blue.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.blue.day .material-icons.mat-icon-no-color,.rtl-container.blue.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.blue.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.blue.day .material-icons.info-icon.info-icon-primary{color:#2196f3}.rtl-container.blue.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.blue.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.blue.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.blue.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.blue.day .material-icons.info-icon.arrow-downward,.rtl-container.blue.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.blue.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#2196f3}.rtl-container.blue.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#0d47a1}.rtl-container.blue.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#90caf9}.rtl-container.blue.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.blue.day .mat-progress-bar-buffer{background-color:#bbdefb}.rtl-container.blue.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.blue.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.blue.day .foreground.mat-progress-spinner circle,.rtl-container.blue.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.blue.day .mat-toolbar-row,.rtl-container.blue.day .mat-toolbar-single-row{height:4rem}.rtl-container.blue.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day a{color:#2196f3}.rtl-container.blue.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.blue.day .h-active-link{border-bottom:2px solid white}.rtl-container.blue.day .mat-icon-36{color:#0000008a}.rtl-container.blue.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.blue.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.blue.day .genseed-message{width:10%;color:#2196f3}.rtl-container.blue.day .border-primary{border:1px solid #2196f3}.rtl-container.blue.day .border-accent{border:1px solid #9e9e9e}.rtl-container.blue.day .border-warn{border:1px solid #b00020}.rtl-container.blue.day .material-icons.primary{color:#2196f3}.rtl-container.blue.day .material-icons.accent{color:#9e9e9e}.rtl-container.blue.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.blue.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.blue.day .row-disabled{background-color:gray}.rtl-container.blue.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.blue.day .mat-mdc-card-content,.rtl-container.blue.day .mat-mdc-card-subtitle,.rtl-container.blue.day .mat-mdc-card-title{color:#0000008a}.rtl-container.blue.day .mat-menu-panel{min-width:4rem}.rtl-container.blue.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.blue.day .horizontal-button:hover{background:#90caf9;color:#9e9e9e}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#2196f3}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.blue.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.blue.day .mat-button,.rtl-container.blue.day .mat-icon-button,.rtl-container.blue.day .mat-stroked-button,.rtl-container.blue.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.blue.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.blue.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.blue.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.blue.day .cc-data-block .cc-data-value{color:#000}.rtl-container.blue.day .mat-cell,.rtl-container.blue.day .mat-header-cell,.rtl-container.blue.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.blue.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.blue.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#2196f3}.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#2196f3;opacity:1}.rtl-container.blue.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.blue.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.blue.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.blue.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.blue.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.blue.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.blue.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.blue.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.blue.day .more-button{color:#000}.rtl-container.blue.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.blue.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.blue.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.blue.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.blue.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.blue.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.blue.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.blue.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.blue.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.blue.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.blue.day .tab-badge .mat-badge-content.mat-badge-active{background:#2196f3}.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width: 37.5em){.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.blue.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.blue.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.blue.day .rtl-select-overlay{min-width:7rem}}.rtl-container.blue.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.blue.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.blue.day .table-actions-button{min-width:8rem}.rtl-container.blue.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.blue.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.blue.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.blue.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#90caf9!important}.rtl-container.blue.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#1e88e5!important}.rtl-container.blue.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.blue.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.blue.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.blue.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.blue.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.blue.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.blue.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.blue.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.blue.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.blue.day .color-warn{color:#b00020}.rtl-container.blue.day .fill-warn{fill:#b00020}.rtl-container.blue.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.blue.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.blue.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.blue.day .alert.alert-info a{color:#004085}.rtl-container.blue.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.blue.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.blue.day .alert.alert-warn a{color:#856404}.rtl-container.blue.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.blue.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.blue.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.blue.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.blue.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.blue.day .failed-status{color:#b00020}.rtl-container.blue.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.blue.day .svg-fill-primary{fill:#2196f3}.rtl-container.blue.day .svg-fill-primary-lighter{fill:#90caf9}.rtl-container.blue.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.blue.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.blue.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.blue.day .dashboard-card-content .underline,.rtl-container.blue.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.blue.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.blue.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#2196f3}.rtl-container.blue.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.blue.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#2196f3}.rtl-container.blue.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.blue.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#2196f3}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon{color:#2196f3}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon path{fill:#2196f3}.rtl-container.blue.day .fa-icon-primary{color:#2196f3}.rtl-container.blue.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day ngx-charts-bar-vertical text,.rtl-container.blue.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.blue.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.blue.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.blue.day .mat-paginator-container{padding:0}.rtl-container.blue.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.blue.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.blue.day .invoice-animation-div .particles-circle{position:absolute;background-color:#2196f3;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #2196f3;background-color:transparent}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.blue.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.blue.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.blue.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.blue.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.blue.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #1976d2;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-filled-caret-color: #1976d2;--mat-form-field-filled-focus-active-indicator-color: #1976d2;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-outlined-caret-color: #1976d2;--mat-form-field-outlined-focus-outline-color: #1976d2;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #1976d2;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #1976d2;--mat-slide-toggle-selected-handle-color: #1976d2;--mat-slide-toggle-selected-hover-state-layer-color: #1976d2;--mat-slide-toggle-selected-pressed-state-layer-color: #1976d2;--mat-slide-toggle-selected-focus-handle-color: #1976d2;--mat-slide-toggle-selected-hover-handle-color: #1976d2;--mat-slide-toggle-selected-pressed-handle-color: #1976d2;--mat-slide-toggle-selected-focus-track-color: #1e88e5;--mat-slide-toggle-selected-hover-track-color: #1e88e5;--mat-slide-toggle-selected-pressed-track-color: #1e88e5;--mat-slide-toggle-selected-track-color: #1e88e5;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #1976d2;--mat-slider-focus-handle-color: #1976d2;--mat-slider-handle-color: #1976d2;--mat-slider-hover-handle-color: #1976d2;--mat-slider-focus-state-layer-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #1976d2 4%, transparent);--mat-slider-inactive-track-color: #1976d2;--mat-slider-ripple-color: #1976d2;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #1976d2;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #1e88e5;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #1976d2;--mat-badge-background-color: #1976d2;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #1976d2 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #1976d2;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #1976d2 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #1976d2 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #1976d2;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #1976d2;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #1976d2;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #1976d2;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.blue.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.blue.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.blue.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #1976d2;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #1976d2;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.blue.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.blue.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.blue.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #1976d2;--mat-progress-bar-track-color: rgba(25, 118, 210, .25)}.rtl-container.blue.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.blue.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.blue.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.blue.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.blue.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.blue.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.blue.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #1976d2;--mat-chip-elevated-disabled-container-color: #1976d2;--mat-chip-elevated-selected-container-color: #1976d2;--mat-chip-flat-disabled-selected-container-color: #1976d2;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.blue.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.blue.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.blue.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #1976d2;--mat-radio-selected-hover-icon-color: #1976d2;--mat-radio-selected-icon-color: #1976d2;--mat-radio-selected-pressed-icon-color: #1976d2;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.blue.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.blue.night .mdc-list-item__start,.rtl-container.blue.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #1976d2;--mat-radio-selected-hover-icon-color: #1976d2;--mat-radio-selected-icon-color: #1976d2;--mat-radio-selected-pressed-icon-color: #1976d2;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-accent .mdc-list-item__start,.rtl-container.blue.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-warn .mdc-list-item__start,.rtl-container.blue.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #1976d2;--mat-checkbox-selected-hover-icon-color: #1976d2;--mat-checkbox-selected-icon-color: #1976d2;--mat-checkbox-selected-pressed-icon-color: #1976d2;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #1976d2;--mat-checkbox-selected-hover-state-layer-color: #1976d2;--mat-checkbox-selected-pressed-state-layer-color: #1976d2;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#1976d2}.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.blue.night .mat-mdc-tab-group,.rtl-container.blue.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #1976d2;--mat-tab-active-ripple-color: #1976d2;--mat-tab-inactive-ripple-color: #1976d2;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #1976d2;--mat-tab-active-hover-label-text-color: #1976d2;--mat-tab-active-focus-indicator-color: #1976d2;--mat-tab-active-hover-indicator-color: #1976d2;--mat-tab-active-indicator-color: #1976d2}.rtl-container.blue.night .mat-mdc-tab-group.mat-accent,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.blue.night .mat-mdc-tab-group.mat-warn,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #1976d2;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.blue.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #1976d2;--mat-checkbox-selected-hover-icon-color: #1976d2;--mat-checkbox-selected-icon-color: #1976d2;--mat-checkbox-selected-pressed-icon-color: #1976d2;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #1976d2;--mat-checkbox-selected-hover-state-layer-color: #1976d2;--mat-checkbox-selected-pressed-state-layer-color: #1976d2;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-button.mat-primary,.rtl-container.blue.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.blue.night .mat-mdc-raised-button.mat-primary,.rtl-container.blue.night .mat-mdc-outlined-button.mat-primary,.rtl-container.blue.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #1976d2;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #1976d2;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-button-outlined-state-layer-color: #1976d2;--mat-button-protected-container-color: #1976d2;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #1976d2;--mat-button-text-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-button-text-state-layer-color: #1976d2;--mat-button-tonal-container-color: #1976d2;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.blue.night .mat-mdc-button.mat-accent,.rtl-container.blue.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.blue.night .mat-mdc-raised-button.mat-accent,.rtl-container.blue.night .mat-mdc-outlined-button.mat-accent,.rtl-container.blue.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.blue.night .mat-mdc-button.mat-warn,.rtl-container.blue.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.blue.night .mat-mdc-raised-button.mat-warn,.rtl-container.blue.night .mat-mdc-outlined-button.mat-warn,.rtl-container.blue.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.blue.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #1976d2;--mat-icon-button-state-layer-color: #1976d2;--mat-icon-button-ripple-color: color-mix(in srgb, #1976d2 12%, transparent)}.rtl-container.blue.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.blue.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.blue.night .mat-mdc-fab.mat-primary,.rtl-container.blue.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #1976d2;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-fab-small-container-color: #1976d2;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.blue.night .mat-mdc-fab.mat-accent,.rtl-container.blue.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.blue.night .mat-mdc-fab.mat-warn,.rtl-container.blue.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.blue.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.blue.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.blue.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.blue.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.blue.night .mat-datepicker-content.mat-accent,.rtl-container.blue.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.blue.night .mat-datepicker-content.mat-warn,.rtl-container.blue.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.blue.night .mat-icon.mat-primary{--mat-icon-color: #1976d2}.rtl-container.blue.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.blue.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.blue.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.blue.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #1976d2;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.blue.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.blue.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.blue.night .mat-primary{color:#448aff!important}.rtl-container.blue.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.blue.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.blue.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.blue.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.blue.night .bg-primary{background-color:#2196f3;color:#fff}.rtl-container.blue.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#448aff}.rtl-container.blue.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#448aff}.rtl-container.blue.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#448aff}.rtl-container.blue.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.blue.night .currency-icon path,.rtl-container.blue.night .currency-icon polygon{fill:#fff}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.blue.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#448aff}.rtl-container.blue.night .cc-data-block .cc-data-title{color:#448aff}.rtl-container.blue.night .mat-stroked-button.mat-primary{border-color:#448aff;color:#448aff}.rtl-container.blue.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.blue.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.blue.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.blue.night .active-link,.rtl-container.blue.night .active-link .fa-icon-small,.rtl-container.blue.night .mat-select-panel .mat-option.mat-active,.rtl-container.blue.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#448aff;font-weight:500;cursor:pointer;fill:#448aff}.rtl-container.blue.night .help-expansion .mat-expansion-panel-header,.rtl-container.blue.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.blue.night .help-expansion .mat-expansion-indicator:after,.rtl-container.blue.night .help-expansion .mat-expansion-panel-content,.rtl-container.blue.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.blue.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.blue.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.blue.night .mat-expansion-panel,.rtl-container.blue.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.blue.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.blue.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.blue.night .mdc-data-table__header-cell,.rtl-container.blue.night .mat-mdc-paginator,.rtl-container.blue.night .mat-mdc-form-field-focus-overlay,.rtl-container.blue.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.blue.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.blue.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#448aff}.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.blue.night .svg-donation{opacity:1!important}.rtl-container.blue.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#448aff!important}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#448aff!important}.rtl-container.blue.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#448aff}.rtl-container.blue.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#2196f3}.rtl-container.blue.night a{color:#448aff!important;cursor:pointer}.rtl-container.blue.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.blue.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.blue.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.blue.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.blue.night .mat-mdc-select-placeholder,.rtl-container.blue.night .mat-mdc-select-value,.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#448aff}.rtl-container.blue.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.blue.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#448aff}.rtl-container.blue.night .mat-tree-node:hover,.rtl-container.blue.night .mat-nested-tree-node-parent:hover,.rtl-container.blue.night .mat-select-panel .mat-option:hover,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#448aff;cursor:pointer;background:#ffffff0f}.rtl-container.blue.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.blue.night .mat-tree-node:hover .mat-icon,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.blue.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.blue.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#448aff}.rtl-container.blue.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.blue.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.blue.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.blue.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#448aff}.rtl-container.blue.night .mat-tree-node:hover .boltz-icon,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.blue.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#448aff}.rtl-container.blue.night .mat-tree-node .sidenav-img,.rtl-container.blue.night .mat-nested-tree-node .sidenav-img,.rtl-container.blue.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.blue.night .page-title-container .page-title-img,.rtl-container.blue.night svg.top-icon-small{fill:#fff}.rtl-container.blue.night .selected-color{border-color:#90caf9}.rtl-container.blue.night .mat-progress-bar-fill:after{background-color:#1e88e5}.rtl-container.blue.night .chart-legend .legend-label:hover,.rtl-container.blue.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.blue.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.blue.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#448aff}.rtl-container.blue.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.blue.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#448aff}.rtl-container.blue.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#448aff}.rtl-container.blue.night .mat-select-panel{background-color:#121212}.rtl-container.blue.night .mat-tree{background:#121212}.rtl-container.blue.night h4{color:#448aff}.rtl-container.blue.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.blue.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.blue.night .dashboard-info-title{color:#448aff}.rtl-container.blue.night .dashboard-info-value,.rtl-container.blue.night .dashboard-capacity-header{color:#fff}.rtl-container.blue.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.blue.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.blue.night .color-primary{color:#448aff!important}.rtl-container.blue.night .dot-primary{background-color:#448aff!important}.rtl-container.blue.night .dot-primary-lighter{background-color:#2196f3!important}.rtl-container.blue.night .mat-stepper-vertical{background-color:#121212}.rtl-container.blue.night .spinner-container h2{color:#448aff}.rtl-container.blue.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.blue.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.blue.night svg .boltz-icon-fill{fill:#fff}.rtl-container.blue.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-primary-lighter{stroke:#90caf9}.rtl-container.blue.night svg .stroke-color-primary{stroke:#2196f3}.rtl-container.blue.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.blue.night svg .fill-color-0{fill:#171717}.rtl-container.blue.night svg .fill-color-1{fill:#232323}.rtl-container.blue.night svg .fill-color-2{fill:#222}.rtl-container.blue.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.blue.night svg .fill-color-4{fill:#383838}.rtl-container.blue.night svg .fill-color-5{fill:#555}.rtl-container.blue.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.blue.night svg .fill-color-7{fill:#202020}.rtl-container.blue.night svg .fill-color-8{fill:#242424}.rtl-container.blue.night svg .fill-color-9{fill:#262626}.rtl-container.blue.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.blue.night svg .fill-color-11{fill:#171717}.rtl-container.blue.night svg .fill-color-12{fill:#ccc}.rtl-container.blue.night svg .fill-color-13{fill:#adadad}.rtl-container.blue.night svg .fill-color-14{fill:#ababab}.rtl-container.blue.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.blue.night svg .fill-color-16{fill:#707070}.rtl-container.blue.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.blue.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.blue.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.blue.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.blue.night svg .fill-color-21{fill:#cacaca}.rtl-container.blue.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.blue.night svg .fill-color-23{fill:#777}.rtl-container.blue.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.blue.night svg .fill-color-25{fill:#252525}.rtl-container.blue.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.blue.night svg .fill-color-27{fill:#000}.rtl-container.blue.night svg .fill-color-28{fill:#313131}.rtl-container.blue.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.blue.night svg .fill-color-30{fill:#fff}.rtl-container.blue.night svg .fill-color-31{fill:#2196f3}.rtl-container.blue.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.blue.night svg .fill-color-primary{fill:#2196f3}.rtl-container.blue.night svg .fill-color-primary-lighter{fill:#90caf9}.rtl-container.blue.night svg .fill-color-primary-darker{fill:#448aff}.rtl-container.blue.night .mat-select-value,.rtl-container.blue.night .mat-select-arrow{color:#fff}.rtl-container.blue.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.blue.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.blue.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.blue.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.blue.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.blue.night .mat-button.mat-primary,.rtl-container.blue.night .mat-icon-button.mat-primary,.rtl-container.blue.night .mat-stroked-button.mat-primary{color:#448aff}.rtl-container.blue.night tr.alert.alert-warn .mat-cell,.rtl-container.blue.night tr.alert.alert-warn .mat-header-cell,.rtl-container.blue.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.blue.night .material-icons.info-icon{font-size:100%;color:#448aff}.rtl-container.blue.night .material-icons.info-icon.info-icon-primary{color:#448aff}.rtl-container.blue.night .material-icons.info-icon.info-icon-text,.rtl-container.blue.night .material-icons.info-icon.arrow-downward,.rtl-container.blue.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.blue.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#448aff}.rtl-container.blue.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#1565c0}.rtl-container.blue.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#448aff}.rtl-container.blue.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.blue.night .mat-progress-bar-buffer{background-color:#bbdefb}.rtl-container.blue.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.blue.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.blue.night .foreground.mat-progress-spinner circle,.rtl-container.blue.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.blue.night .mat-toolbar-row,.rtl-container.blue.night .mat-toolbar-single-row{height:4rem}.rtl-container.blue.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.blue.night a{color:#2196f3}.rtl-container.blue.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.blue.night .h-active-link{border-bottom:2px solid white}.rtl-container.blue.night .mat-icon-36{color:#ffffffb3}.rtl-container.blue.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.blue.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.blue.night .genseed-message{width:10%;color:#2196f3}.rtl-container.blue.night .border-primary{border:1px solid #2196f3}.rtl-container.blue.night .border-accent{border:1px solid #aaaaaa}.rtl-container.blue.night .border-warn{border:1px solid #b00020}.rtl-container.blue.night .material-icons.primary{color:#2196f3}.rtl-container.blue.night .material-icons.accent{color:#aaa}.rtl-container.blue.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.blue.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.blue.night .row-disabled{background-color:gray}.rtl-container.blue.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.blue.night .mat-mdc-card-content,.rtl-container.blue.night .mat-mdc-card-subtitle,.rtl-container.blue.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.blue.night .mat-menu-panel{min-width:4rem}.rtl-container.blue.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.blue.night .horizontal-button:hover{background:#90caf9;color:#aaa}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#2196f3}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.blue.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.blue.night .mat-button,.rtl-container.blue.night .mat-icon-button,.rtl-container.blue.night .mat-stroked-button,.rtl-container.blue.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.blue.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.blue.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.blue.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.blue.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.blue.night .mat-cell,.rtl-container.blue.night .mat-header-cell,.rtl-container.blue.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.blue.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.blue.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#2196f3}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#2196f3;opacity:1}.rtl-container.blue.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.blue.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.blue.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.blue.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.blue.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.blue.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.blue.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.blue.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.blue.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.blue.night .more-button{color:#fff}.rtl-container.blue.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.blue.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.blue.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.blue.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.blue.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.blue.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.blue.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.blue.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.blue.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.blue.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.blue.night .tab-badge .mat-badge-content.mat-badge-active{background:#2196f3}.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width: 37.5em){.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.blue.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.blue.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.blue.night .rtl-select-overlay{min-width:7rem}}.rtl-container.blue.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.blue.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.blue.night .table-actions-button{min-width:8rem}.rtl-container.blue.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.blue.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.blue.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.blue.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#90caf9!important}.rtl-container.blue.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#1e88e5!important}.rtl-container.blue.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.blue.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.blue.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.blue.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.blue.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.blue.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.blue.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.blue.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.blue.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.blue.night .color-warn{color:#b00020}.rtl-container.blue.night .fill-warn{fill:#b00020}.rtl-container.blue.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.blue.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.blue.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.blue.night .alert.alert-info a{color:#004085}.rtl-container.blue.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.blue.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.blue.night .alert.alert-warn a{color:#856404}.rtl-container.blue.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.blue.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.blue.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.blue.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.blue.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.blue.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.blue.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.blue.night .failed-status{color:#b00020}.rtl-container.blue.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.blue.night .svg-fill-primary{fill:#2196f3}.rtl-container.blue.night .svg-fill-primary-lighter{fill:#90caf9}.rtl-container.blue.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.blue.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.blue.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.blue.night .dashboard-card-content .underline,.rtl-container.blue.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.blue.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.blue.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#2196f3}.rtl-container.blue.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.blue.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#2196f3}.rtl-container.blue.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.blue.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#2196f3}.rtl-container.blue.night .mat-mdc-form-field-hint .currency-icon{color:#2196f3}.rtl-container.blue.night .mat-mdc-form-field-hint .currency-icon path{fill:#2196f3}.rtl-container.blue.night .fa-icon-primary{color:#2196f3}.rtl-container.blue.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night ngx-charts-bar-vertical text,.rtl-container.blue.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.blue.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.blue.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.blue.night .mat-paginator-container{padding:0}.rtl-container.blue.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.blue.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.blue.night .invoice-animation-div .particles-circle{position:absolute;background-color:#2196f3;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #2196f3;background-color:transparent}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.blue.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.blue.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.blue.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.blue.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.indigo.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #3f51b5;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-filled-caret-color: #3f51b5;--mat-form-field-filled-focus-active-indicator-color: #3f51b5;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-outlined-caret-color: #3f51b5;--mat-form-field-outlined-focus-outline-color: #3f51b5;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #3f51b5;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #3f51b5;--mat-slide-toggle-selected-handle-color: #3f51b5;--mat-slide-toggle-selected-hover-state-layer-color: #3f51b5;--mat-slide-toggle-selected-pressed-state-layer-color: #3f51b5;--mat-slide-toggle-selected-focus-handle-color: #3f51b5;--mat-slide-toggle-selected-hover-handle-color: #3f51b5;--mat-slide-toggle-selected-pressed-handle-color: #3f51b5;--mat-slide-toggle-selected-focus-track-color: #7986cb;--mat-slide-toggle-selected-hover-track-color: #7986cb;--mat-slide-toggle-selected-pressed-track-color: #7986cb;--mat-slide-toggle-selected-track-color: #7986cb;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #3f51b5;--mat-slider-focus-handle-color: #3f51b5;--mat-slider-handle-color: #3f51b5;--mat-slider-hover-handle-color: #3f51b5;--mat-slider-focus-state-layer-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #3f51b5 4%, transparent);--mat-slider-inactive-track-color: #3f51b5;--mat-slider-ripple-color: #3f51b5;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #3f51b5;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #7986cb;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #3f51b5;--mat-badge-background-color: #3f51b5;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #3f51b5 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #3f51b5 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #3f51b5 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #3f51b5;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #3f51b5;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #3f51b5;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #3f51b5;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.indigo.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.indigo.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.indigo.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #3f51b5;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #3f51b5;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.indigo.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.indigo.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.indigo.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #3f51b5;--mat-progress-bar-track-color: rgba(63, 81, 181, .25)}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.indigo.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.indigo.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.indigo.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.indigo.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.indigo.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #3f51b5;--mat-chip-elevated-disabled-container-color: #3f51b5;--mat-chip-elevated-selected-container-color: #3f51b5;--mat-chip-flat-disabled-selected-container-color: #3f51b5;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.indigo.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.indigo.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.indigo.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #3f51b5;--mat-radio-selected-hover-icon-color: #3f51b5;--mat-radio-selected-icon-color: #3f51b5;--mat-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.indigo.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.indigo.day .mdc-list-item__start,.rtl-container.indigo.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #3f51b5;--mat-radio-selected-hover-icon-color: #3f51b5;--mat-radio-selected-icon-color: #3f51b5;--mat-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-accent .mdc-list-item__start,.rtl-container.indigo.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-warn .mdc-list-item__start,.rtl-container.indigo.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #3f51b5;--mat-checkbox-selected-hover-icon-color: #3f51b5;--mat-checkbox-selected-icon-color: #3f51b5;--mat-checkbox-selected-pressed-icon-color: #3f51b5;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #3f51b5;--mat-checkbox-selected-hover-state-layer-color: #3f51b5;--mat-checkbox-selected-pressed-state-layer-color: #3f51b5;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.indigo.day .mat-mdc-tab-group,.rtl-container.indigo.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #3f51b5;--mat-tab-active-ripple-color: #3f51b5;--mat-tab-inactive-ripple-color: #3f51b5;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #3f51b5;--mat-tab-active-hover-label-text-color: #3f51b5;--mat-tab-active-focus-indicator-color: #3f51b5;--mat-tab-active-hover-indicator-color: #3f51b5;--mat-tab-active-indicator-color: #3f51b5}.rtl-container.indigo.day .mat-mdc-tab-group.mat-accent,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.indigo.day .mat-mdc-tab-group.mat-warn,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #3f51b5;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.indigo.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #3f51b5;--mat-checkbox-selected-hover-icon-color: #3f51b5;--mat-checkbox-selected-icon-color: #3f51b5;--mat-checkbox-selected-pressed-icon-color: #3f51b5;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #3f51b5;--mat-checkbox-selected-hover-state-layer-color: #3f51b5;--mat-checkbox-selected-pressed-state-layer-color: #3f51b5;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-button.mat-primary,.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.indigo.day .mat-mdc-raised-button.mat-primary,.rtl-container.indigo.day .mat-mdc-outlined-button.mat-primary,.rtl-container.indigo.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #3f51b5;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #3f51b5;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-button-outlined-state-layer-color: #3f51b5;--mat-button-protected-container-color: #3f51b5;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #3f51b5;--mat-button-text-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-button-text-state-layer-color: #3f51b5;--mat-button-tonal-container-color: #3f51b5;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.day .mat-mdc-button.mat-accent,.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.indigo.day .mat-mdc-raised-button.mat-accent,.rtl-container.indigo.day .mat-mdc-outlined-button.mat-accent,.rtl-container.indigo.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.indigo.day .mat-mdc-button.mat-warn,.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.indigo.day .mat-mdc-raised-button.mat-warn,.rtl-container.indigo.day .mat-mdc-outlined-button.mat-warn,.rtl-container.indigo.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.indigo.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #3f51b5;--mat-icon-button-state-layer-color: #3f51b5;--mat-icon-button-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.indigo.day .mat-mdc-fab.mat-primary,.rtl-container.indigo.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #3f51b5;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-fab-small-container-color: #3f51b5;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.day .mat-mdc-fab.mat-accent,.rtl-container.indigo.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.indigo.day .mat-mdc-fab.mat-warn,.rtl-container.indigo.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.indigo.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.indigo.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.indigo.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.indigo.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.indigo.day .mat-datepicker-content.mat-accent,.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-datepicker-content.mat-warn,.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-icon.mat-primary{--mat-icon-color: #3f51b5}.rtl-container.indigo.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.indigo.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.indigo.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #3f51b5;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.indigo.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.indigo.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.indigo.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.indigo.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.indigo.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.indigo.day .bg-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.indigo.day .page-title,.rtl-container.indigo.day .mat-mdc-select-value,.rtl-container.indigo.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.indigo.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.indigo.day .help-expansion .mat-expansion-indicator:after,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-content,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#3f51b5}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.indigo.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#3f51b5}.rtl-container.indigo.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.indigo.day .mat-tree-node:hover,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover,.rtl-container.indigo.day .mat-select-panel .mat-option:hover,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#3f51b5;cursor:pointer}.rtl-container.indigo.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.indigo.day .mat-tree-node:hover .mat-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#3f51b5}.rtl-container.indigo.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#3f51b5}.rtl-container.indigo.day .spinner-container h2{color:#fff}.rtl-container.indigo.day .ng-fa-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.indigo.day .mat-form-field-suffix{color:#0000008a}.rtl-container.indigo.day .mat-stroked-button.mat-primary{border-color:#3f51b5}.rtl-container.indigo.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.indigo.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.indigo.day .selected-color{border-color:#9fa8da}.rtl-container.indigo.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.indigo.day table.mat-mdc-table thead tr th,.rtl-container.indigo.day .page-title-container,.rtl-container.indigo.day .page-sub-title-container{color:#0000008a}.rtl-container.indigo.day .page-title-container .page-title-img,.rtl-container.indigo.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.indigo.day .page-title-container .mat-input-element,.rtl-container.indigo.day .page-title-container .mat-radio-label-content,.rtl-container.indigo.day .page-title-container .theme-name,.rtl-container.indigo.day .page-sub-title-container .mat-input-element,.rtl-container.indigo.day .page-sub-title-container .mat-radio-label-content,.rtl-container.indigo.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.indigo.day .cc-data-block .cc-data-title{color:#3f51b5}.rtl-container.indigo.day .active-link,.rtl-container.indigo.day .active-link .fa-icon-small{color:#3f51b5;font-weight:500;cursor:pointer;fill:#3f51b5}.rtl-container.indigo.day .mat-tree-node:hover,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover,.rtl-container.indigo.day .mat-select-panel .mat-option:hover,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#3f51b5;cursor:pointer;background:#0000000a}.rtl-container.indigo.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.indigo.day .mat-tree-node:hover .mat-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#3f51b5}.rtl-container.indigo.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#3f51b5}.rtl-container.indigo.day .mat-tree-node .sidenav-img,.rtl-container.indigo.day .mat-nested-tree-node .sidenav-img,.rtl-container.indigo.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.indigo.day .page-title-container .page-title-img,.rtl-container.indigo.day svg.top-icon-small{fill:#000000de}.rtl-container.indigo.day .mat-progress-bar-fill:after{background-color:#1a237e}.rtl-container.indigo.day .modal-qr-code-container{background:#0000001f}.rtl-container.indigo.day .mdc-tab__text-label,.rtl-container.indigo.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.indigo.day .mat-mdc-card,.rtl-container.indigo.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.indigo.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.indigo.day .dashboard-info-title{color:#3f51b5}.rtl-container.indigo.day .dashboard-capacity-header,.rtl-container.indigo.day .dashboard-info-value{color:#0000008a}.rtl-container.indigo.day .color-primary{color:#3f51b5!important}.rtl-container.indigo.day .dot-primary{background-color:#3f51b5!important}.rtl-container.indigo.day .dot-primary-lighter{background-color:#9fa8da!important}.rtl-container.indigo.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-mdc-form-field-hint{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.indigo.day .mat-mdc-form-field-hint fa-icon svg path{fill:#3f51b5}.rtl-container.indigo.day .currency-icon path,.rtl-container.indigo.day .currency-icon polygon{fill:#0000008a}.rtl-container.indigo.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.indigo.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.indigo.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-primary-lighter{stroke:#9fa8da}.rtl-container.indigo.day svg .stroke-color-primary{stroke:#3f51b5}.rtl-container.indigo.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.indigo.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-1{fill:#fff}.rtl-container.indigo.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.indigo.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-6{fill:#fff}.rtl-container.indigo.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-9{fill:#fff}.rtl-container.indigo.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.indigo.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.indigo.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-16{fill:#404040}.rtl-container.indigo.day svg .fill-color-17{fill:#404040}.rtl-container.indigo.day svg .fill-color-18{fill:#000}.rtl-container.indigo.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-24{fill:#000}.rtl-container.indigo.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.indigo.day svg .fill-color-27{fill:#000}.rtl-container.indigo.day svg .fill-color-28{fill:#313131}.rtl-container.indigo.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-30{fill:#fff}.rtl-container.indigo.day svg .fill-color-31{fill:#3f51b5}.rtl-container.indigo.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.indigo.day svg .fill-color-primary{fill:#3f51b5}.rtl-container.indigo.day svg .fill-color-primary-lighter{fill:#9fa8da}.rtl-container.indigo.day svg .fill-color-primary-darker{fill:#3f51b5}.rtl-container.indigo.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.indigo.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.indigo.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#3f51b5}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.indigo.day .material-icons.mat-icon-no-color,.rtl-container.indigo.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.indigo.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.indigo.day .material-icons.info-icon.info-icon-primary{color:#3f51b5}.rtl-container.indigo.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.indigo.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.indigo.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.indigo.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.indigo.day .material-icons.info-icon.arrow-downward,.rtl-container.indigo.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.indigo.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#3f51b5}.rtl-container.indigo.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#1a237e}.rtl-container.indigo.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#9fa8da}.rtl-container.indigo.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.indigo.day .mat-progress-bar-buffer{background-color:#c5cae9}.rtl-container.indigo.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.indigo.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.indigo.day .foreground.mat-progress-spinner circle,.rtl-container.indigo.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.indigo.day .mat-toolbar-row,.rtl-container.indigo.day .mat-toolbar-single-row{height:4rem}.rtl-container.indigo.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day a{color:#3f51b5}.rtl-container.indigo.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.indigo.day .h-active-link{border-bottom:2px solid white}.rtl-container.indigo.day .mat-icon-36{color:#0000008a}.rtl-container.indigo.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.indigo.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.indigo.day .genseed-message{width:10%;color:#3f51b5}.rtl-container.indigo.day .border-primary{border:1px solid #3f51b5}.rtl-container.indigo.day .border-accent{border:1px solid #9e9e9e}.rtl-container.indigo.day .border-warn{border:1px solid #b00020}.rtl-container.indigo.day .material-icons.primary{color:#3f51b5}.rtl-container.indigo.day .material-icons.accent{color:#9e9e9e}.rtl-container.indigo.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.indigo.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.indigo.day .row-disabled{background-color:gray}.rtl-container.indigo.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.indigo.day .mat-mdc-card-content,.rtl-container.indigo.day .mat-mdc-card-subtitle,.rtl-container.indigo.day .mat-mdc-card-title{color:#0000008a}.rtl-container.indigo.day .mat-menu-panel{min-width:4rem}.rtl-container.indigo.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.indigo.day .horizontal-button:hover{background:#9fa8da;color:#9e9e9e}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#3f51b5}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.indigo.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.indigo.day .mat-button,.rtl-container.indigo.day .mat-icon-button,.rtl-container.indigo.day .mat-stroked-button,.rtl-container.indigo.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.indigo.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.indigo.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.indigo.day .cc-data-block .cc-data-value{color:#000}.rtl-container.indigo.day .mat-cell,.rtl-container.indigo.day .mat-header-cell,.rtl-container.indigo.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.indigo.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.indigo.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#3f51b5}.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#3f51b5;opacity:1}.rtl-container.indigo.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.indigo.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.indigo.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.indigo.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.indigo.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.indigo.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.indigo.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.indigo.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.indigo.day .more-button{color:#000}.rtl-container.indigo.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.indigo.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.indigo.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.indigo.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.indigo.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.indigo.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.indigo.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.indigo.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.indigo.day .tab-badge .mat-badge-content.mat-badge-active{background:#3f51b5}.rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.indigo.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.indigo.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day .rtl-select-overlay{min-width:7rem}}.rtl-container.indigo.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.indigo.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.indigo.day .table-actions-button{min-width:8rem}.rtl-container.indigo.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.indigo.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.indigo.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.indigo.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#9fa8da!important}.rtl-container.indigo.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#3949ab!important}.rtl-container.indigo.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.indigo.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.indigo.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.indigo.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.indigo.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.indigo.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.indigo.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.indigo.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.indigo.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.indigo.day .color-warn{color:#b00020}.rtl-container.indigo.day .fill-warn{fill:#b00020}.rtl-container.indigo.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.indigo.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.indigo.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.indigo.day .alert.alert-info a{color:#004085}.rtl-container.indigo.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.indigo.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.indigo.day .alert.alert-warn a{color:#856404}.rtl-container.indigo.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.indigo.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.indigo.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.indigo.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.indigo.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.indigo.day .failed-status{color:#b00020}.rtl-container.indigo.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.indigo.day .svg-fill-primary{fill:#3f51b5}.rtl-container.indigo.day .svg-fill-primary-lighter{fill:#9fa8da}.rtl-container.indigo.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.indigo.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.indigo.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.indigo.day .dashboard-card-content .underline,.rtl-container.indigo.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.indigo.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#3f51b5}.rtl-container.indigo.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#3f51b5}.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon path{fill:#3f51b5}.rtl-container.indigo.day .fa-icon-primary{color:#3f51b5}.rtl-container.indigo.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day ngx-charts-bar-vertical text,.rtl-container.indigo.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.indigo.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.indigo.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.indigo.day .mat-paginator-container{padding:0}.rtl-container.indigo.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.indigo.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.indigo.day .invoice-animation-div .particles-circle{position:absolute;background-color:#3f51b5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #3f51b5;background-color:transparent}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.indigo.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.indigo.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.indigo.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.indigo.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.indigo.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #3f51b5;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-filled-caret-color: #3f51b5;--mat-form-field-filled-focus-active-indicator-color: #3f51b5;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-outlined-caret-color: #3f51b5;--mat-form-field-outlined-focus-outline-color: #3f51b5;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #3f51b5;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #3f51b5;--mat-slide-toggle-selected-handle-color: #3f51b5;--mat-slide-toggle-selected-hover-state-layer-color: #3f51b5;--mat-slide-toggle-selected-pressed-state-layer-color: #3f51b5;--mat-slide-toggle-selected-focus-handle-color: #3f51b5;--mat-slide-toggle-selected-hover-handle-color: #3f51b5;--mat-slide-toggle-selected-pressed-handle-color: #3f51b5;--mat-slide-toggle-selected-focus-track-color: #3949ab;--mat-slide-toggle-selected-hover-track-color: #3949ab;--mat-slide-toggle-selected-pressed-track-color: #3949ab;--mat-slide-toggle-selected-track-color: #3949ab;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #3f51b5;--mat-slider-focus-handle-color: #3f51b5;--mat-slider-handle-color: #3f51b5;--mat-slider-hover-handle-color: #3f51b5;--mat-slider-focus-state-layer-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #3f51b5 4%, transparent);--mat-slider-inactive-track-color: #3f51b5;--mat-slider-ripple-color: #3f51b5;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #3f51b5;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #3949ab;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #3f51b5;--mat-badge-background-color: #3f51b5;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #3f51b5 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #3f51b5 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #3f51b5 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #3f51b5;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #3f51b5;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #3f51b5;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #3f51b5;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.indigo.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.indigo.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.indigo.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #3f51b5;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #3f51b5;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.indigo.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.indigo.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.indigo.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #3f51b5;--mat-progress-bar-track-color: rgba(63, 81, 181, .25)}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.indigo.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.indigo.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.indigo.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.indigo.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.indigo.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #3f51b5;--mat-chip-elevated-disabled-container-color: #3f51b5;--mat-chip-elevated-selected-container-color: #3f51b5;--mat-chip-flat-disabled-selected-container-color: #3f51b5;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.indigo.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.indigo.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.indigo.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #3f51b5;--mat-radio-selected-hover-icon-color: #3f51b5;--mat-radio-selected-icon-color: #3f51b5;--mat-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.indigo.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.indigo.night .mdc-list-item__start,.rtl-container.indigo.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #3f51b5;--mat-radio-selected-hover-icon-color: #3f51b5;--mat-radio-selected-icon-color: #3f51b5;--mat-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-accent .mdc-list-item__start,.rtl-container.indigo.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-warn .mdc-list-item__start,.rtl-container.indigo.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #3f51b5;--mat-checkbox-selected-hover-icon-color: #3f51b5;--mat-checkbox-selected-icon-color: #3f51b5;--mat-checkbox-selected-pressed-icon-color: #3f51b5;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #3f51b5;--mat-checkbox-selected-hover-state-layer-color: #3f51b5;--mat-checkbox-selected-pressed-state-layer-color: #3f51b5;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#3f51b5}.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.indigo.night .mat-mdc-tab-group,.rtl-container.indigo.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #3f51b5;--mat-tab-active-ripple-color: #3f51b5;--mat-tab-inactive-ripple-color: #3f51b5;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #3f51b5;--mat-tab-active-hover-label-text-color: #3f51b5;--mat-tab-active-focus-indicator-color: #3f51b5;--mat-tab-active-hover-indicator-color: #3f51b5;--mat-tab-active-indicator-color: #3f51b5}.rtl-container.indigo.night .mat-mdc-tab-group.mat-accent,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.indigo.night .mat-mdc-tab-group.mat-warn,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #3f51b5;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.indigo.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #3f51b5;--mat-checkbox-selected-hover-icon-color: #3f51b5;--mat-checkbox-selected-icon-color: #3f51b5;--mat-checkbox-selected-pressed-icon-color: #3f51b5;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #3f51b5;--mat-checkbox-selected-hover-state-layer-color: #3f51b5;--mat-checkbox-selected-pressed-state-layer-color: #3f51b5;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-button.mat-primary,.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.indigo.night .mat-mdc-raised-button.mat-primary,.rtl-container.indigo.night .mat-mdc-outlined-button.mat-primary,.rtl-container.indigo.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #3f51b5;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #3f51b5;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-button-outlined-state-layer-color: #3f51b5;--mat-button-protected-container-color: #3f51b5;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #3f51b5;--mat-button-text-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-button-text-state-layer-color: #3f51b5;--mat-button-tonal-container-color: #3f51b5;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.night .mat-mdc-button.mat-accent,.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.indigo.night .mat-mdc-raised-button.mat-accent,.rtl-container.indigo.night .mat-mdc-outlined-button.mat-accent,.rtl-container.indigo.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.indigo.night .mat-mdc-button.mat-warn,.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.indigo.night .mat-mdc-raised-button.mat-warn,.rtl-container.indigo.night .mat-mdc-outlined-button.mat-warn,.rtl-container.indigo.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #3f51b5;--mat-icon-button-state-layer-color: #3f51b5;--mat-icon-button-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.indigo.night .mat-mdc-fab.mat-primary,.rtl-container.indigo.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #3f51b5;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-fab-small-container-color: #3f51b5;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.night .mat-mdc-fab.mat-accent,.rtl-container.indigo.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.indigo.night .mat-mdc-fab.mat-warn,.rtl-container.indigo.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.indigo.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.indigo.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.indigo.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.indigo.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.indigo.night .mat-datepicker-content.mat-accent,.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.indigo.night .mat-datepicker-content.mat-warn,.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.indigo.night .mat-icon.mat-primary{--mat-icon-color: #3f51b5}.rtl-container.indigo.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.indigo.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.indigo.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.indigo.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #3f51b5;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.indigo.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.indigo.night .mat-primary{color:#536dfe!important}.rtl-container.indigo.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.indigo.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.indigo.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.indigo.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.indigo.night .bg-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.indigo.night .currency-icon path,.rtl-container.indigo.night .currency-icon polygon{fill:#fff}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.indigo.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#536dfe}.rtl-container.indigo.night .cc-data-block .cc-data-title{color:#536dfe}.rtl-container.indigo.night .mat-stroked-button.mat-primary{border-color:#536dfe;color:#536dfe}.rtl-container.indigo.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.indigo.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.indigo.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.indigo.night .active-link,.rtl-container.indigo.night .active-link .fa-icon-small,.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active,.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#536dfe;font-weight:500;cursor:pointer;fill:#536dfe}.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.indigo.night .help-expansion .mat-expansion-indicator:after,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-content,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.indigo.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.indigo.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.indigo.night .mat-expansion-panel,.rtl-container.indigo.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.indigo.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.indigo.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.indigo.night .mdc-data-table__header-cell,.rtl-container.indigo.night .mat-mdc-paginator,.rtl-container.indigo.night .mat-mdc-form-field-focus-overlay,.rtl-container.indigo.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.indigo.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.indigo.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#536dfe}.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.indigo.night .svg-donation{opacity:1!important}.rtl-container.indigo.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#536dfe!important}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#536dfe!important}.rtl-container.indigo.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#3f51b5}.rtl-container.indigo.night a{color:#536dfe!important;cursor:pointer}.rtl-container.indigo.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.indigo.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.indigo.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.indigo.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.indigo.night .mat-mdc-select-placeholder,.rtl-container.indigo.night .mat-mdc-select-value,.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#536dfe}.rtl-container.indigo.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.indigo.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#536dfe}.rtl-container.indigo.night .mat-tree-node:hover,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover,.rtl-container.indigo.night .mat-select-panel .mat-option:hover,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#536dfe;cursor:pointer;background:#ffffff0f}.rtl-container.indigo.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.indigo.night .mat-tree-node:hover .mat-icon,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#536dfe}.rtl-container.indigo.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.indigo.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#536dfe}.rtl-container.indigo.night .mat-tree-node:hover .boltz-icon,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#536dfe}.rtl-container.indigo.night .mat-tree-node .sidenav-img,.rtl-container.indigo.night .mat-nested-tree-node .sidenav-img,.rtl-container.indigo.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.indigo.night .page-title-container .page-title-img,.rtl-container.indigo.night svg.top-icon-small{fill:#fff}.rtl-container.indigo.night .selected-color{border-color:#9fa8da}.rtl-container.indigo.night .mat-progress-bar-fill:after{background-color:#3949ab}.rtl-container.indigo.night .chart-legend .legend-label:hover,.rtl-container.indigo.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.indigo.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.indigo.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#536dfe}.rtl-container.indigo.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.indigo.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#536dfe}.rtl-container.indigo.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#536dfe}.rtl-container.indigo.night .mat-select-panel{background-color:#121212}.rtl-container.indigo.night .mat-tree{background:#121212}.rtl-container.indigo.night h4{color:#536dfe}.rtl-container.indigo.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.indigo.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.indigo.night .dashboard-info-title{color:#536dfe}.rtl-container.indigo.night .dashboard-info-value,.rtl-container.indigo.night .dashboard-capacity-header{color:#fff}.rtl-container.indigo.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.indigo.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.indigo.night .color-primary{color:#536dfe!important}.rtl-container.indigo.night .dot-primary{background-color:#536dfe!important}.rtl-container.indigo.night .dot-primary-lighter{background-color:#3f51b5!important}.rtl-container.indigo.night .mat-stepper-vertical{background-color:#121212}.rtl-container.indigo.night .spinner-container h2{color:#536dfe}.rtl-container.indigo.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.indigo.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.indigo.night svg .boltz-icon-fill{fill:#fff}.rtl-container.indigo.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-primary-lighter{stroke:#9fa8da}.rtl-container.indigo.night svg .stroke-color-primary{stroke:#3f51b5}.rtl-container.indigo.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.indigo.night svg .fill-color-0{fill:#171717}.rtl-container.indigo.night svg .fill-color-1{fill:#232323}.rtl-container.indigo.night svg .fill-color-2{fill:#222}.rtl-container.indigo.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.indigo.night svg .fill-color-4{fill:#383838}.rtl-container.indigo.night svg .fill-color-5{fill:#555}.rtl-container.indigo.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.indigo.night svg .fill-color-7{fill:#202020}.rtl-container.indigo.night svg .fill-color-8{fill:#242424}.rtl-container.indigo.night svg .fill-color-9{fill:#262626}.rtl-container.indigo.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.indigo.night svg .fill-color-11{fill:#171717}.rtl-container.indigo.night svg .fill-color-12{fill:#ccc}.rtl-container.indigo.night svg .fill-color-13{fill:#adadad}.rtl-container.indigo.night svg .fill-color-14{fill:#ababab}.rtl-container.indigo.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.indigo.night svg .fill-color-16{fill:#707070}.rtl-container.indigo.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.indigo.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.indigo.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.indigo.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.indigo.night svg .fill-color-21{fill:#cacaca}.rtl-container.indigo.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.indigo.night svg .fill-color-23{fill:#777}.rtl-container.indigo.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.indigo.night svg .fill-color-25{fill:#252525}.rtl-container.indigo.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.indigo.night svg .fill-color-27{fill:#000}.rtl-container.indigo.night svg .fill-color-28{fill:#313131}.rtl-container.indigo.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.indigo.night svg .fill-color-30{fill:#fff}.rtl-container.indigo.night svg .fill-color-31{fill:#3f51b5}.rtl-container.indigo.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.indigo.night svg .fill-color-primary{fill:#3f51b5}.rtl-container.indigo.night svg .fill-color-primary-lighter{fill:#9fa8da}.rtl-container.indigo.night svg .fill-color-primary-darker{fill:#536dfe}.rtl-container.indigo.night .mat-select-value,.rtl-container.indigo.night .mat-select-arrow{color:#fff}.rtl-container.indigo.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.indigo.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.indigo.night .mat-button.mat-primary,.rtl-container.indigo.night .mat-icon-button.mat-primary,.rtl-container.indigo.night .mat-stroked-button.mat-primary{color:#536dfe}.rtl-container.indigo.night tr.alert.alert-warn .mat-cell,.rtl-container.indigo.night tr.alert.alert-warn .mat-header-cell,.rtl-container.indigo.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.indigo.night .material-icons.info-icon{font-size:100%;color:#536dfe}.rtl-container.indigo.night .material-icons.info-icon.info-icon-primary{color:#536dfe}.rtl-container.indigo.night .material-icons.info-icon.info-icon-text,.rtl-container.indigo.night .material-icons.info-icon.arrow-downward,.rtl-container.indigo.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.indigo.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#536dfe}.rtl-container.indigo.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#283593}.rtl-container.indigo.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#536dfe}.rtl-container.indigo.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.indigo.night .mat-progress-bar-buffer{background-color:#c5cae9}.rtl-container.indigo.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.indigo.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.indigo.night .foreground.mat-progress-spinner circle,.rtl-container.indigo.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.indigo.night .mat-toolbar-row,.rtl-container.indigo.night .mat-toolbar-single-row{height:4rem}.rtl-container.indigo.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.indigo.night a{color:#3f51b5}.rtl-container.indigo.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.indigo.night .h-active-link{border-bottom:2px solid white}.rtl-container.indigo.night .mat-icon-36{color:#ffffffb3}.rtl-container.indigo.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.indigo.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.indigo.night .genseed-message{width:10%;color:#3f51b5}.rtl-container.indigo.night .border-primary{border:1px solid #3f51b5}.rtl-container.indigo.night .border-accent{border:1px solid #aaaaaa}.rtl-container.indigo.night .border-warn{border:1px solid #b00020}.rtl-container.indigo.night .material-icons.primary{color:#3f51b5}.rtl-container.indigo.night .material-icons.accent{color:#aaa}.rtl-container.indigo.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.indigo.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.indigo.night .row-disabled{background-color:gray}.rtl-container.indigo.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.indigo.night .mat-mdc-card-content,.rtl-container.indigo.night .mat-mdc-card-subtitle,.rtl-container.indigo.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.indigo.night .mat-menu-panel{min-width:4rem}.rtl-container.indigo.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.indigo.night .horizontal-button:hover{background:#9fa8da;color:#aaa}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#3f51b5}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.indigo.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.indigo.night .mat-button,.rtl-container.indigo.night .mat-icon-button,.rtl-container.indigo.night .mat-stroked-button,.rtl-container.indigo.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.indigo.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.indigo.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.indigo.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.indigo.night .mat-cell,.rtl-container.indigo.night .mat-header-cell,.rtl-container.indigo.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.indigo.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.indigo.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#3f51b5}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#3f51b5;opacity:1}.rtl-container.indigo.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.indigo.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.indigo.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.indigo.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.indigo.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.indigo.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.indigo.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.indigo.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.indigo.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.indigo.night .more-button{color:#fff}.rtl-container.indigo.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.indigo.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.indigo.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.indigo.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.indigo.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.indigo.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.indigo.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.indigo.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.indigo.night .tab-badge .mat-badge-content.mat-badge-active{background:#3f51b5}.rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.indigo.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.indigo.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night .rtl-select-overlay{min-width:7rem}}.rtl-container.indigo.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.indigo.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.indigo.night .table-actions-button{min-width:8rem}.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.indigo.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.indigo.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.indigo.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#9fa8da!important}.rtl-container.indigo.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#3949ab!important}.rtl-container.indigo.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.indigo.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.indigo.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.indigo.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.indigo.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.indigo.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.indigo.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.indigo.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.indigo.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.indigo.night .color-warn{color:#b00020}.rtl-container.indigo.night .fill-warn{fill:#b00020}.rtl-container.indigo.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.indigo.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.indigo.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.indigo.night .alert.alert-info a{color:#004085}.rtl-container.indigo.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.indigo.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.indigo.night .alert.alert-warn a{color:#856404}.rtl-container.indigo.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.indigo.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.indigo.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.indigo.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.indigo.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.indigo.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.indigo.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.indigo.night .failed-status{color:#b00020}.rtl-container.indigo.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.indigo.night .svg-fill-primary{fill:#3f51b5}.rtl-container.indigo.night .svg-fill-primary-lighter{fill:#9fa8da}.rtl-container.indigo.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.indigo.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.indigo.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.indigo.night .dashboard-card-content .underline,.rtl-container.indigo.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.indigo.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#3f51b5}.rtl-container.indigo.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#3f51b5}.rtl-container.indigo.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#3f51b5}.rtl-container.indigo.night .mat-mdc-form-field-hint .currency-icon{color:#3f51b5}.rtl-container.indigo.night .mat-mdc-form-field-hint .currency-icon path{fill:#3f51b5}.rtl-container.indigo.night .fa-icon-primary{color:#3f51b5}.rtl-container.indigo.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night ngx-charts-bar-vertical text,.rtl-container.indigo.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.indigo.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.indigo.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.indigo.night .mat-paginator-container{padding:0}.rtl-container.indigo.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.indigo.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.indigo.night .invoice-animation-div .particles-circle{position:absolute;background-color:#3f51b5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #3f51b5;background-color:transparent}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.indigo.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.indigo.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.indigo.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.indigo.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.green.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #185127;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-filled-caret-color: #185127;--mat-form-field-filled-focus-active-indicator-color: #185127;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-outlined-caret-color: #185127;--mat-form-field-outlined-focus-outline-color: #185127;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #185127;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #185127;--mat-slide-toggle-selected-handle-color: #185127;--mat-slide-toggle-selected-hover-state-layer-color: #185127;--mat-slide-toggle-selected-pressed-state-layer-color: #185127;--mat-slide-toggle-selected-focus-handle-color: #185127;--mat-slide-toggle-selected-hover-handle-color: #185127;--mat-slide-toggle-selected-pressed-handle-color: #185127;--mat-slide-toggle-selected-focus-track-color: #5d8568;--mat-slide-toggle-selected-hover-track-color: #5d8568;--mat-slide-toggle-selected-pressed-track-color: #5d8568;--mat-slide-toggle-selected-track-color: #5d8568;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #185127;--mat-slider-focus-handle-color: #185127;--mat-slider-handle-color: #185127;--mat-slider-hover-handle-color: #185127;--mat-slider-focus-state-layer-color: color-mix(in srgb, #185127 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #185127 4%, transparent);--mat-slider-inactive-track-color: #185127;--mat-slider-ripple-color: #185127;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #185127;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #5d8568;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #185127;--mat-badge-background-color: #185127;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #185127 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #185127;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #185127 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #185127 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #185127 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #185127;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #185127;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #185127;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #185127;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.green.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.green.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.green.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #185127;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #185127;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.green.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.green.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.green.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #185127;--mat-progress-bar-track-color: rgba(24, 81, 39, .25)}.rtl-container.green.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.green.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.green.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.green.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.green.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.green.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.green.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #185127;--mat-chip-elevated-disabled-container-color: #185127;--mat-chip-elevated-selected-container-color: #185127;--mat-chip-flat-disabled-selected-container-color: #185127;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.green.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.green.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.green.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #185127;--mat-radio-selected-hover-icon-color: #185127;--mat-radio-selected-icon-color: #185127;--mat-radio-selected-pressed-icon-color: #185127;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.green.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.green.day .mdc-list-item__start,.rtl-container.green.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #185127;--mat-radio-selected-hover-icon-color: #185127;--mat-radio-selected-icon-color: #185127;--mat-radio-selected-pressed-icon-color: #185127;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-accent .mdc-list-item__start,.rtl-container.green.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-warn .mdc-list-item__start,.rtl-container.green.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #185127;--mat-checkbox-selected-hover-icon-color: #185127;--mat-checkbox-selected-icon-color: #185127;--mat-checkbox-selected-pressed-icon-color: #185127;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #185127;--mat-checkbox-selected-hover-state-layer-color: #185127;--mat-checkbox-selected-pressed-state-layer-color: #185127;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#185127}.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.green.day .mat-mdc-tab-group,.rtl-container.green.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #185127;--mat-tab-active-ripple-color: #185127;--mat-tab-inactive-ripple-color: #185127;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #185127;--mat-tab-active-hover-label-text-color: #185127;--mat-tab-active-focus-indicator-color: #185127;--mat-tab-active-hover-indicator-color: #185127;--mat-tab-active-indicator-color: #185127}.rtl-container.green.day .mat-mdc-tab-group.mat-accent,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.green.day .mat-mdc-tab-group.mat-warn,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.green.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #185127;--mat-tab-foreground-color: #ffffff}.rtl-container.green.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.green.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.green.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #185127;--mat-checkbox-selected-hover-icon-color: #185127;--mat-checkbox-selected-icon-color: #185127;--mat-checkbox-selected-pressed-icon-color: #185127;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #185127;--mat-checkbox-selected-hover-state-layer-color: #185127;--mat-checkbox-selected-pressed-state-layer-color: #185127;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-button.mat-primary,.rtl-container.green.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.green.day .mat-mdc-raised-button.mat-primary,.rtl-container.green.day .mat-mdc-outlined-button.mat-primary,.rtl-container.green.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #185127;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #185127;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-button-outlined-state-layer-color: #185127;--mat-button-protected-container-color: #185127;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #185127;--mat-button-text-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-button-text-state-layer-color: #185127;--mat-button-tonal-container-color: #185127;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.rtl-container.green.day .mat-mdc-button.mat-accent,.rtl-container.green.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.green.day .mat-mdc-raised-button.mat-accent,.rtl-container.green.day .mat-mdc-outlined-button.mat-accent,.rtl-container.green.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.green.day .mat-mdc-button.mat-warn,.rtl-container.green.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.green.day .mat-mdc-raised-button.mat-warn,.rtl-container.green.day .mat-mdc-outlined-button.mat-warn,.rtl-container.green.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.green.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #185127;--mat-icon-button-state-layer-color: #185127;--mat-icon-button-ripple-color: color-mix(in srgb, #185127 12%, transparent)}.rtl-container.green.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.green.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.green.day .mat-mdc-fab.mat-primary,.rtl-container.green.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #185127;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-fab-small-container-color: #185127;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.rtl-container.green.day .mat-mdc-fab.mat-accent,.rtl-container.green.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.green.day .mat-mdc-fab.mat-warn,.rtl-container.green.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.green.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.green.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.green.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.green.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.green.day .mat-datepicker-content.mat-accent,.rtl-container.green.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-datepicker-content.mat-warn,.rtl-container.green.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-icon.mat-primary{--mat-icon-color: #185127}.rtl-container.green.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.green.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.green.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #185127;--mat-toolbar-container-text-color: #ffffff}.rtl-container.green.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.green.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.green.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.green.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.green.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.green.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.green.day .bg-primary{background-color:#185127;color:#fff}.rtl-container.green.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.green.day .page-title,.rtl-container.green.day .mat-mdc-select-value,.rtl-container.green.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.green.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.green.day .help-expansion .mat-expansion-panel-header,.rtl-container.green.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.green.day .help-expansion .mat-expansion-indicator:after,.rtl-container.green.day .help-expansion .mat-expansion-panel-content,.rtl-container.green.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#185127}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.green.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#185127}.rtl-container.green.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.green.day .mat-tree-node:hover,.rtl-container.green.day .mat-nested-tree-node-parent:hover,.rtl-container.green.day .mat-select-panel .mat-option:hover,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#185127;cursor:pointer}.rtl-container.green.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.green.day .mat-tree-node:hover .mat-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#185127}.rtl-container.green.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.green.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.green.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#185127}.rtl-container.green.day .spinner-container h2{color:#fff}.rtl-container.green.day .ng-fa-icon,.rtl-container.green.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.green.day .mat-form-field-suffix{color:#0000008a}.rtl-container.green.day .mat-stroked-button.mat-primary{border-color:#185127}.rtl-container.green.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.green.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.green.day .selected-color{border-color:#5d8568}.rtl-container.green.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.green.day table.mat-mdc-table thead tr th,.rtl-container.green.day .page-title-container,.rtl-container.green.day .page-sub-title-container{color:#0000008a}.rtl-container.green.day .page-title-container .page-title-img,.rtl-container.green.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.green.day .page-title-container .mat-input-element,.rtl-container.green.day .page-title-container .mat-radio-label-content,.rtl-container.green.day .page-title-container .theme-name,.rtl-container.green.day .page-sub-title-container .mat-input-element,.rtl-container.green.day .page-sub-title-container .mat-radio-label-content,.rtl-container.green.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.green.day .cc-data-block .cc-data-title{color:#185127}.rtl-container.green.day .active-link,.rtl-container.green.day .active-link .fa-icon-small{color:#185127;font-weight:500;cursor:pointer;fill:#185127}.rtl-container.green.day .mat-tree-node:hover,.rtl-container.green.day .mat-nested-tree-node-parent:hover,.rtl-container.green.day .mat-select-panel .mat-option:hover,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#185127;cursor:pointer;background:#0000000a}.rtl-container.green.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.green.day .mat-tree-node:hover .mat-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#185127}.rtl-container.green.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.green.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.green.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#185127}.rtl-container.green.day .mat-tree-node .sidenav-img,.rtl-container.green.day .mat-nested-tree-node .sidenav-img,.rtl-container.green.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.green.day .page-title-container .page-title-img,.rtl-container.green.day svg.top-icon-small{fill:#000000de}.rtl-container.green.day .mat-progress-bar-fill:after{background-color:#08270e}.rtl-container.green.day .modal-qr-code-container{background:#0000001f}.rtl-container.green.day .mdc-tab__text-label,.rtl-container.green.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.green.day .mat-mdc-card,.rtl-container.green.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.green.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.green.day .dashboard-info-title{color:#185127}.rtl-container.green.day .dashboard-capacity-header,.rtl-container.green.day .dashboard-info-value{color:#0000008a}.rtl-container.green.day .color-primary{color:#185127!important}.rtl-container.green.day .dot-primary{background-color:#185127!important}.rtl-container.green.day .dot-primary-lighter{background-color:#5d8568!important}.rtl-container.green.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .mat-mdc-form-field-hint{color:#185127}.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.green.day .mat-mdc-form-field-hint fa-icon svg path{fill:#185127}.rtl-container.green.day .currency-icon path,.rtl-container.green.day .currency-icon polygon{fill:#0000008a}.rtl-container.green.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.green.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.green.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-primary-lighter{stroke:#5d8568}.rtl-container.green.day svg .stroke-color-primary{stroke:#185127}.rtl-container.green.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.green.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-1{fill:#fff}.rtl-container.green.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.green.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-6{fill:#fff}.rtl-container.green.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-9{fill:#fff}.rtl-container.green.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.green.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.green.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-16{fill:#404040}.rtl-container.green.day svg .fill-color-17{fill:#404040}.rtl-container.green.day svg .fill-color-18{fill:#000}.rtl-container.green.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-24{fill:#000}.rtl-container.green.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.green.day svg .fill-color-27{fill:#000}.rtl-container.green.day svg .fill-color-28{fill:#313131}.rtl-container.green.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-30{fill:#fff}.rtl-container.green.day svg .fill-color-31{fill:#185127}.rtl-container.green.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.green.day svg .fill-color-primary{fill:#185127}.rtl-container.green.day svg .fill-color-primary-lighter{fill:#5d8568}.rtl-container.green.day svg .fill-color-primary-darker{fill:#185127}.rtl-container.green.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.green.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.green.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#185127}.rtl-container.green.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.green.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.green.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.green.day .material-icons.mat-icon-no-color,.rtl-container.green.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.green.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.green.day .material-icons.info-icon.info-icon-primary{color:#185127}.rtl-container.green.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.green.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.green.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.green.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.green.day .material-icons.info-icon.arrow-downward,.rtl-container.green.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.green.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.green.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#185127}.rtl-container.green.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.green.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#08270e}.rtl-container.green.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.green.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#8ca893}.rtl-container.green.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.green.day .mat-progress-bar-buffer{background-color:#bacbbe}.rtl-container.green.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.green.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.green.day .foreground.mat-progress-spinner circle,.rtl-container.green.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.green.day .mat-toolbar-row,.rtl-container.green.day .mat-toolbar-single-row{height:4rem}.rtl-container.green.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.green.day a{color:#185127}.rtl-container.green.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.green.day .h-active-link{border-bottom:2px solid white}.rtl-container.green.day .mat-icon-36{color:#0000008a}.rtl-container.green.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.green.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.green.day .genseed-message{width:10%;color:#185127}.rtl-container.green.day .border-primary{border:1px solid #185127}.rtl-container.green.day .border-accent{border:1px solid #9e9e9e}.rtl-container.green.day .border-warn{border:1px solid #b00020}.rtl-container.green.day .material-icons.primary{color:#185127}.rtl-container.green.day .material-icons.accent{color:#9e9e9e}.rtl-container.green.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.green.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.green.day .row-disabled{background-color:gray}.rtl-container.green.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.green.day .mat-mdc-card-content,.rtl-container.green.day .mat-mdc-card-subtitle,.rtl-container.green.day .mat-mdc-card-title{color:#0000008a}.rtl-container.green.day .mat-menu-panel{min-width:4rem}.rtl-container.green.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.green.day .horizontal-button:hover{background:#5d8568;color:#9e9e9e}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#185127}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.green.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.green.day .mat-button,.rtl-container.green.day .mat-icon-button,.rtl-container.green.day .mat-stroked-button,.rtl-container.green.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.green.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.green.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.green.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.green.day .cc-data-block .cc-data-value{color:#000}.rtl-container.green.day .mat-cell,.rtl-container.green.day .mat-header-cell,.rtl-container.green.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.green.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.green.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#185127}.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#185127;opacity:1}.rtl-container.green.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.green.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.green.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.green.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.green.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.green.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.green.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.green.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.green.day .more-button{color:#000}.rtl-container.green.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.green.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.green.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.green.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.green.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.green.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.green.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.green.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.green.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.green.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.green.day .tab-badge .mat-badge-content.mat-badge-active{background:#185127}.rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width: 37.5em){.rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.green.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.green.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.green.day .rtl-select-overlay{min-width:7rem}}.rtl-container.green.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.green.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.green.day .table-actions-button{min-width:8rem}.rtl-container.green.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.green.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.green.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.green.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#8ca893!important}.rtl-container.green.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#154a23!important}.rtl-container.green.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.green.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.green.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.green.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.green.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.green.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.green.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.green.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.green.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.green.day .color-warn{color:#b00020}.rtl-container.green.day .fill-warn{fill:#b00020}.rtl-container.green.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.green.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.green.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.green.day .alert.alert-info a{color:#004085}.rtl-container.green.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.green.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.green.day .alert.alert-warn a{color:#856404}.rtl-container.green.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.green.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.green.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.green.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.green.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.green.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.green.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.green.day .failed-status{color:#b00020}.rtl-container.green.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.green.day .svg-fill-primary{fill:#185127}.rtl-container.green.day .svg-fill-primary-lighter{fill:#5d8568}.rtl-container.green.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.green.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.green.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.green.day .dashboard-card-content .underline,.rtl-container.green.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.green.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.green.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#185127}.rtl-container.green.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.green.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#185127}.rtl-container.green.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.green.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#185127}.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon{color:#185127}.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon path{fill:#185127}.rtl-container.green.day .fa-icon-primary{color:#185127}.rtl-container.green.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day ngx-charts-bar-vertical text,.rtl-container.green.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.green.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.green.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.green.day .mat-paginator-container{padding:0}.rtl-container.green.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.green.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.green.day .invoice-animation-div .particles-circle{position:absolute;background-color:#185127;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #185127;background-color:transparent}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.green.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.green.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.green.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.green.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.green.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #185127;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-filled-caret-color: #185127;--mat-form-field-filled-focus-active-indicator-color: #185127;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-outlined-caret-color: #185127;--mat-form-field-outlined-focus-outline-color: #185127;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #185127;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #185127;--mat-slide-toggle-selected-handle-color: #185127;--mat-slide-toggle-selected-hover-state-layer-color: #185127;--mat-slide-toggle-selected-pressed-state-layer-color: #185127;--mat-slide-toggle-selected-focus-handle-color: #185127;--mat-slide-toggle-selected-hover-handle-color: #185127;--mat-slide-toggle-selected-pressed-handle-color: #185127;--mat-slide-toggle-selected-focus-track-color: #154a23;--mat-slide-toggle-selected-hover-track-color: #154a23;--mat-slide-toggle-selected-pressed-track-color: #154a23;--mat-slide-toggle-selected-track-color: #154a23;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #185127;--mat-slider-focus-handle-color: #185127;--mat-slider-handle-color: #185127;--mat-slider-hover-handle-color: #185127;--mat-slider-focus-state-layer-color: color-mix(in srgb, #185127 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #185127 4%, transparent);--mat-slider-inactive-track-color: #185127;--mat-slider-ripple-color: #185127;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #185127;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #154a23;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #185127;--mat-badge-background-color: #185127;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #185127 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #185127;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #185127 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #185127 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #185127 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #185127;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #185127;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #185127;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #185127;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.green.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.green.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.green.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #185127;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #185127;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.green.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.green.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.green.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #185127;--mat-progress-bar-track-color: rgba(24, 81, 39, .25)}.rtl-container.green.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.green.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.green.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.green.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.green.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.green.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.green.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #185127;--mat-chip-elevated-disabled-container-color: #185127;--mat-chip-elevated-selected-container-color: #185127;--mat-chip-flat-disabled-selected-container-color: #185127;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.green.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.green.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.green.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #185127;--mat-radio-selected-hover-icon-color: #185127;--mat-radio-selected-icon-color: #185127;--mat-radio-selected-pressed-icon-color: #185127;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.green.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.green.night .mdc-list-item__start,.rtl-container.green.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #185127;--mat-radio-selected-hover-icon-color: #185127;--mat-radio-selected-icon-color: #185127;--mat-radio-selected-pressed-icon-color: #185127;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-accent .mdc-list-item__start,.rtl-container.green.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-warn .mdc-list-item__start,.rtl-container.green.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #185127;--mat-checkbox-selected-hover-icon-color: #185127;--mat-checkbox-selected-icon-color: #185127;--mat-checkbox-selected-pressed-icon-color: #185127;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #185127;--mat-checkbox-selected-hover-state-layer-color: #185127;--mat-checkbox-selected-pressed-state-layer-color: #185127;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#185127}.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.green.night .mat-mdc-tab-group,.rtl-container.green.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #185127;--mat-tab-active-ripple-color: #185127;--mat-tab-inactive-ripple-color: #185127;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #185127;--mat-tab-active-hover-label-text-color: #185127;--mat-tab-active-focus-indicator-color: #185127;--mat-tab-active-hover-indicator-color: #185127;--mat-tab-active-indicator-color: #185127}.rtl-container.green.night .mat-mdc-tab-group.mat-accent,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.green.night .mat-mdc-tab-group.mat-warn,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.green.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #185127;--mat-tab-foreground-color: #ffffff}.rtl-container.green.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.green.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.green.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #185127;--mat-checkbox-selected-hover-icon-color: #185127;--mat-checkbox-selected-icon-color: #185127;--mat-checkbox-selected-pressed-icon-color: #185127;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #185127;--mat-checkbox-selected-hover-state-layer-color: #185127;--mat-checkbox-selected-pressed-state-layer-color: #185127;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-button.mat-primary,.rtl-container.green.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.green.night .mat-mdc-raised-button.mat-primary,.rtl-container.green.night .mat-mdc-outlined-button.mat-primary,.rtl-container.green.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #185127;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #185127;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-button-outlined-state-layer-color: #185127;--mat-button-protected-container-color: #185127;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #185127;--mat-button-text-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-button-text-state-layer-color: #185127;--mat-button-tonal-container-color: #185127;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.rtl-container.green.night .mat-mdc-button.mat-accent,.rtl-container.green.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.green.night .mat-mdc-raised-button.mat-accent,.rtl-container.green.night .mat-mdc-outlined-button.mat-accent,.rtl-container.green.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.green.night .mat-mdc-button.mat-warn,.rtl-container.green.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.green.night .mat-mdc-raised-button.mat-warn,.rtl-container.green.night .mat-mdc-outlined-button.mat-warn,.rtl-container.green.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.green.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #185127;--mat-icon-button-state-layer-color: #185127;--mat-icon-button-ripple-color: color-mix(in srgb, #185127 12%, transparent)}.rtl-container.green.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.green.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.green.night .mat-mdc-fab.mat-primary,.rtl-container.green.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #185127;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-fab-small-container-color: #185127;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.rtl-container.green.night .mat-mdc-fab.mat-accent,.rtl-container.green.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.green.night .mat-mdc-fab.mat-warn,.rtl-container.green.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.green.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.green.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.green.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.green.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.green.night .mat-datepicker-content.mat-accent,.rtl-container.green.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.green.night .mat-datepicker-content.mat-warn,.rtl-container.green.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.green.night .mat-icon.mat-primary{--mat-icon-color: #185127}.rtl-container.green.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.green.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.green.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.green.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #185127;--mat-toolbar-container-text-color: #ffffff}.rtl-container.green.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.green.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.green.night .mat-primary{color:#30ff4b!important}.rtl-container.green.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.green.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.green.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.green.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.green.night .bg-primary{background-color:#185127;color:#fff}.rtl-container.green.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#30ff4b}.rtl-container.green.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.green.night .currency-icon path,.rtl-container.green.night .currency-icon polygon{fill:#fff}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.green.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#30ff4b}.rtl-container.green.night .cc-data-block .cc-data-title{color:#30ff4b}.rtl-container.green.night .mat-stroked-button.mat-primary{border-color:#30ff4b;color:#30ff4b}.rtl-container.green.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.green.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.green.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.green.night .active-link,.rtl-container.green.night .active-link .fa-icon-small,.rtl-container.green.night .mat-select-panel .mat-option.mat-active,.rtl-container.green.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#30ff4b;font-weight:500;cursor:pointer;fill:#30ff4b}.rtl-container.green.night .help-expansion .mat-expansion-panel-header,.rtl-container.green.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.green.night .help-expansion .mat-expansion-indicator:after,.rtl-container.green.night .help-expansion .mat-expansion-panel-content,.rtl-container.green.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.green.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.green.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.green.night .mat-expansion-panel,.rtl-container.green.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.green.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.green.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.green.night .mdc-data-table__header-cell,.rtl-container.green.night .mat-mdc-paginator,.rtl-container.green.night .mat-mdc-form-field-focus-overlay,.rtl-container.green.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.green.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.green.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#30ff4b}.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.green.night .svg-donation{opacity:1!important}.rtl-container.green.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#30ff4b!important}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#30ff4b!important}.rtl-container.green.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#185127}.rtl-container.green.night a{color:#30ff4b!important;cursor:pointer}.rtl-container.green.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.green.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.green.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.green.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.green.night .mat-mdc-select-placeholder,.rtl-container.green.night .mat-mdc-select-value,.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#30ff4b}.rtl-container.green.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.green.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#30ff4b}.rtl-container.green.night .mat-tree-node:hover,.rtl-container.green.night .mat-nested-tree-node-parent:hover,.rtl-container.green.night .mat-select-panel .mat-option:hover,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#30ff4b;cursor:pointer;background:#ffffff0f}.rtl-container.green.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.green.night .mat-tree-node:hover .mat-icon,.rtl-container.green.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.green.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.green.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.green.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#30ff4b}.rtl-container.green.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.green.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.green.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.green.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.green.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.green.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#30ff4b}.rtl-container.green.night .mat-tree-node:hover .boltz-icon,.rtl-container.green.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.green.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#30ff4b}.rtl-container.green.night .mat-tree-node .sidenav-img,.rtl-container.green.night .mat-nested-tree-node .sidenav-img,.rtl-container.green.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.green.night .page-title-container .page-title-img,.rtl-container.green.night svg.top-icon-small{fill:#fff}.rtl-container.green.night .selected-color{border-color:#5d8568}.rtl-container.green.night .mat-progress-bar-fill:after{background-color:#154a23}.rtl-container.green.night .chart-legend .legend-label:hover,.rtl-container.green.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.green.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.green.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#30ff4b}.rtl-container.green.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.green.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#30ff4b}.rtl-container.green.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#30ff4b}.rtl-container.green.night .mat-select-panel{background-color:#121212}.rtl-container.green.night .mat-tree{background:#121212}.rtl-container.green.night h4{color:#30ff4b}.rtl-container.green.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.green.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.green.night .dashboard-info-title{color:#30ff4b}.rtl-container.green.night .dashboard-info-value,.rtl-container.green.night .dashboard-capacity-header{color:#fff}.rtl-container.green.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.green.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.green.night .color-primary{color:#30ff4b!important}.rtl-container.green.night .dot-primary{background-color:#30ff4b!important}.rtl-container.green.night .dot-primary-lighter{background-color:#185127!important}.rtl-container.green.night .mat-stepper-vertical{background-color:#121212}.rtl-container.green.night .spinner-container h2{color:#30ff4b}.rtl-container.green.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.green.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.green.night svg .boltz-icon-fill{fill:#fff}.rtl-container.green.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-primary-lighter{stroke:#5d8568}.rtl-container.green.night svg .stroke-color-primary{stroke:#185127}.rtl-container.green.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.green.night svg .fill-color-0{fill:#171717}.rtl-container.green.night svg .fill-color-1{fill:#232323}.rtl-container.green.night svg .fill-color-2{fill:#222}.rtl-container.green.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.green.night svg .fill-color-4{fill:#383838}.rtl-container.green.night svg .fill-color-5{fill:#555}.rtl-container.green.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.green.night svg .fill-color-7{fill:#202020}.rtl-container.green.night svg .fill-color-8{fill:#242424}.rtl-container.green.night svg .fill-color-9{fill:#262626}.rtl-container.green.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.green.night svg .fill-color-11{fill:#171717}.rtl-container.green.night svg .fill-color-12{fill:#ccc}.rtl-container.green.night svg .fill-color-13{fill:#adadad}.rtl-container.green.night svg .fill-color-14{fill:#ababab}.rtl-container.green.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.green.night svg .fill-color-16{fill:#707070}.rtl-container.green.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.green.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.green.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.green.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.green.night svg .fill-color-21{fill:#cacaca}.rtl-container.green.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.green.night svg .fill-color-23{fill:#777}.rtl-container.green.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.green.night svg .fill-color-25{fill:#252525}.rtl-container.green.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.green.night svg .fill-color-27{fill:#000}.rtl-container.green.night svg .fill-color-28{fill:#313131}.rtl-container.green.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.green.night svg .fill-color-30{fill:#fff}.rtl-container.green.night svg .fill-color-31{fill:#185127}.rtl-container.green.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.green.night svg .fill-color-primary{fill:#185127}.rtl-container.green.night svg .fill-color-primary-lighter{fill:#5d8568}.rtl-container.green.night svg .fill-color-primary-darker{fill:#30ff4b}.rtl-container.green.night .mat-select-value,.rtl-container.green.night .mat-select-arrow{color:#fff}.rtl-container.green.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.green.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.green.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.green.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.green.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.green.night .mat-button.mat-primary,.rtl-container.green.night .mat-icon-button.mat-primary,.rtl-container.green.night .mat-stroked-button.mat-primary{color:#30ff4b}.rtl-container.green.night tr.alert.alert-warn .mat-cell,.rtl-container.green.night tr.alert.alert-warn .mat-header-cell,.rtl-container.green.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.green.night .material-icons.info-icon{font-size:100%;color:#30ff4b}.rtl-container.green.night .material-icons.info-icon.info-icon-primary{color:#30ff4b}.rtl-container.green.night .material-icons.info-icon.info-icon-text,.rtl-container.green.night .material-icons.info-icon.arrow-downward,.rtl-container.green.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.green.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.green.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#30ff4b}.rtl-container.green.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.green.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#0e3717}.rtl-container.green.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.green.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#30ff4b}.rtl-container.green.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.green.night .mat-progress-bar-buffer{background-color:#bacbbe}.rtl-container.green.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.green.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.green.night .foreground.mat-progress-spinner circle,.rtl-container.green.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.green.night .mat-toolbar-row,.rtl-container.green.night .mat-toolbar-single-row{height:4rem}.rtl-container.green.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.green.night a{color:#185127}.rtl-container.green.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.green.night .h-active-link{border-bottom:2px solid white}.rtl-container.green.night .mat-icon-36{color:#ffffffb3}.rtl-container.green.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.green.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.green.night .genseed-message{width:10%;color:#185127}.rtl-container.green.night .border-primary{border:1px solid #185127}.rtl-container.green.night .border-accent{border:1px solid #aaaaaa}.rtl-container.green.night .border-warn{border:1px solid #b00020}.rtl-container.green.night .material-icons.primary{color:#185127}.rtl-container.green.night .material-icons.accent{color:#aaa}.rtl-container.green.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.green.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.green.night .row-disabled{background-color:gray}.rtl-container.green.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.green.night .mat-mdc-card-content,.rtl-container.green.night .mat-mdc-card-subtitle,.rtl-container.green.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.green.night .mat-menu-panel{min-width:4rem}.rtl-container.green.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.green.night .horizontal-button:hover{background:#5d8568;color:#aaa}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#185127}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.green.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.green.night .mat-button,.rtl-container.green.night .mat-icon-button,.rtl-container.green.night .mat-stroked-button,.rtl-container.green.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.green.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.green.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.green.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.green.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.green.night .mat-cell,.rtl-container.green.night .mat-header-cell,.rtl-container.green.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.green.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.green.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#185127}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#185127;opacity:1}.rtl-container.green.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.green.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.green.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.green.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.green.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.green.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.green.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.green.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.green.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.green.night .more-button{color:#fff}.rtl-container.green.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.green.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.green.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.green.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.green.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.green.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.green.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.green.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.green.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.green.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.green.night .tab-badge .mat-badge-content.mat-badge-active{background:#185127}.rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width: 37.5em){.rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.green.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.green.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.green.night .rtl-select-overlay{min-width:7rem}}.rtl-container.green.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.green.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.green.night .table-actions-button{min-width:8rem}.rtl-container.green.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.green.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.green.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.green.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#8ca893!important}.rtl-container.green.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#154a23!important}.rtl-container.green.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.green.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.green.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.green.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.green.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.green.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.green.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.green.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.green.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.green.night .color-warn{color:#b00020}.rtl-container.green.night .fill-warn{fill:#b00020}.rtl-container.green.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.green.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.green.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.green.night .alert.alert-info a{color:#004085}.rtl-container.green.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.green.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.green.night .alert.alert-warn a{color:#856404}.rtl-container.green.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.green.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.green.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.green.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.green.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.green.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.green.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.green.night .failed-status{color:#b00020}.rtl-container.green.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.green.night .svg-fill-primary{fill:#185127}.rtl-container.green.night .svg-fill-primary-lighter{fill:#5d8568}.rtl-container.green.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.green.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.green.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.green.night .dashboard-card-content .underline,.rtl-container.green.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.green.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.green.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#185127}.rtl-container.green.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.green.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#185127}.rtl-container.green.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.green.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#185127}.rtl-container.green.night .mat-mdc-form-field-hint .currency-icon{color:#185127}.rtl-container.green.night .mat-mdc-form-field-hint .currency-icon path{fill:#185127}.rtl-container.green.night .fa-icon-primary{color:#185127}.rtl-container.green.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night ngx-charts-bar-vertical text,.rtl-container.green.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.green.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.green.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.green.night .mat-paginator-container{padding:0}.rtl-container.green.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.green.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.green.night .invoice-animation-div .particles-circle{position:absolute;background-color:#185127;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #185127;background-color:transparent}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.green.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.green.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.green.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.green.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.teal.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #00695c;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-filled-caret-color: #00695c;--mat-form-field-filled-focus-active-indicator-color: #00695c;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-outlined-caret-color: #00695c;--mat-form-field-outlined-focus-outline-color: #00695c;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #00695c;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #00695c;--mat-slide-toggle-selected-handle-color: #00695c;--mat-slide-toggle-selected-hover-state-layer-color: #00695c;--mat-slide-toggle-selected-pressed-state-layer-color: #00695c;--mat-slide-toggle-selected-focus-handle-color: #00695c;--mat-slide-toggle-selected-hover-handle-color: #00695c;--mat-slide-toggle-selected-pressed-handle-color: #00695c;--mat-slide-toggle-selected-focus-track-color: #4db6ac;--mat-slide-toggle-selected-hover-track-color: #4db6ac;--mat-slide-toggle-selected-pressed-track-color: #4db6ac;--mat-slide-toggle-selected-track-color: #4db6ac;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #00695c;--mat-slider-focus-handle-color: #00695c;--mat-slider-handle-color: #00695c;--mat-slider-hover-handle-color: #00695c;--mat-slider-focus-state-layer-color: color-mix(in srgb, #00695c 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #00695c 4%, transparent);--mat-slider-inactive-track-color: #00695c;--mat-slider-ripple-color: #00695c;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #00695c;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #4db6ac;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #00695c;--mat-badge-background-color: #00695c;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #00695c 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #00695c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #00695c 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #00695c 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #00695c 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #00695c;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #00695c;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #00695c;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #00695c;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.teal.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.teal.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.teal.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #00695c;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #00695c;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.teal.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.teal.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.teal.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #00695c;--mat-progress-bar-track-color: rgba(0, 105, 92, .25)}.rtl-container.teal.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.teal.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.teal.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.teal.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.teal.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.teal.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.teal.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #00695c;--mat-chip-elevated-disabled-container-color: #00695c;--mat-chip-elevated-selected-container-color: #00695c;--mat-chip-flat-disabled-selected-container-color: #00695c;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.teal.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.teal.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.teal.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #00695c;--mat-radio-selected-hover-icon-color: #00695c;--mat-radio-selected-icon-color: #00695c;--mat-radio-selected-pressed-icon-color: #00695c;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.teal.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.teal.day .mdc-list-item__start,.rtl-container.teal.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #00695c;--mat-radio-selected-hover-icon-color: #00695c;--mat-radio-selected-icon-color: #00695c;--mat-radio-selected-pressed-icon-color: #00695c;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-accent .mdc-list-item__start,.rtl-container.teal.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-warn .mdc-list-item__start,.rtl-container.teal.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #00695c;--mat-checkbox-selected-hover-icon-color: #00695c;--mat-checkbox-selected-icon-color: #00695c;--mat-checkbox-selected-pressed-icon-color: #00695c;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #00695c;--mat-checkbox-selected-hover-state-layer-color: #00695c;--mat-checkbox-selected-pressed-state-layer-color: #00695c;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#00695c}.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.teal.day .mat-mdc-tab-group,.rtl-container.teal.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #00695c;--mat-tab-active-ripple-color: #00695c;--mat-tab-inactive-ripple-color: #00695c;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #00695c;--mat-tab-active-hover-label-text-color: #00695c;--mat-tab-active-focus-indicator-color: #00695c;--mat-tab-active-hover-indicator-color: #00695c;--mat-tab-active-indicator-color: #00695c}.rtl-container.teal.day .mat-mdc-tab-group.mat-accent,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.teal.day .mat-mdc-tab-group.mat-warn,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #00695c;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.teal.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #00695c;--mat-checkbox-selected-hover-icon-color: #00695c;--mat-checkbox-selected-icon-color: #00695c;--mat-checkbox-selected-pressed-icon-color: #00695c;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #00695c;--mat-checkbox-selected-hover-state-layer-color: #00695c;--mat-checkbox-selected-pressed-state-layer-color: #00695c;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-button.mat-primary,.rtl-container.teal.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.teal.day .mat-mdc-raised-button.mat-primary,.rtl-container.teal.day .mat-mdc-outlined-button.mat-primary,.rtl-container.teal.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #00695c;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #00695c;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-button-outlined-state-layer-color: #00695c;--mat-button-protected-container-color: #00695c;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #00695c;--mat-button-text-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-button-text-state-layer-color: #00695c;--mat-button-tonal-container-color: #00695c;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.teal.day .mat-mdc-button.mat-accent,.rtl-container.teal.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.teal.day .mat-mdc-raised-button.mat-accent,.rtl-container.teal.day .mat-mdc-outlined-button.mat-accent,.rtl-container.teal.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.teal.day .mat-mdc-button.mat-warn,.rtl-container.teal.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.teal.day .mat-mdc-raised-button.mat-warn,.rtl-container.teal.day .mat-mdc-outlined-button.mat-warn,.rtl-container.teal.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.teal.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #00695c;--mat-icon-button-state-layer-color: #00695c;--mat-icon-button-ripple-color: color-mix(in srgb, #00695c 12%, transparent)}.rtl-container.teal.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.teal.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.teal.day .mat-mdc-fab.mat-primary,.rtl-container.teal.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #00695c;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-fab-small-container-color: #00695c;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.teal.day .mat-mdc-fab.mat-accent,.rtl-container.teal.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.teal.day .mat-mdc-fab.mat-warn,.rtl-container.teal.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.teal.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.teal.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.teal.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.teal.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.teal.day .mat-datepicker-content.mat-accent,.rtl-container.teal.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-datepicker-content.mat-warn,.rtl-container.teal.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-icon.mat-primary{--mat-icon-color: #00695c}.rtl-container.teal.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.teal.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.teal.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #00695c;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.teal.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.teal.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.teal.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.teal.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.teal.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.teal.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.teal.day .bg-primary{background-color:#009688;color:#fff}.rtl-container.teal.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.teal.day .page-title,.rtl-container.teal.day .mat-mdc-select-value,.rtl-container.teal.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.teal.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.teal.day .help-expansion .mat-expansion-panel-header,.rtl-container.teal.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.teal.day .help-expansion .mat-expansion-indicator:after,.rtl-container.teal.day .help-expansion .mat-expansion-panel-content,.rtl-container.teal.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#009688}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.teal.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#009688}.rtl-container.teal.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.teal.day .mat-tree-node:hover,.rtl-container.teal.day .mat-nested-tree-node-parent:hover,.rtl-container.teal.day .mat-select-panel .mat-option:hover,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#009688;cursor:pointer}.rtl-container.teal.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.teal.day .mat-tree-node:hover .mat-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#009688}.rtl-container.teal.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.teal.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#009688}.rtl-container.teal.day .spinner-container h2{color:#fff}.rtl-container.teal.day .ng-fa-icon,.rtl-container.teal.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.teal.day .mat-form-field-suffix{color:#0000008a}.rtl-container.teal.day .mat-stroked-button.mat-primary{border-color:#009688}.rtl-container.teal.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.teal.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.teal.day .selected-color{border-color:#4db6ac}.rtl-container.teal.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.teal.day table.mat-mdc-table thead tr th,.rtl-container.teal.day .page-title-container,.rtl-container.teal.day .page-sub-title-container{color:#0000008a}.rtl-container.teal.day .page-title-container .page-title-img,.rtl-container.teal.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.teal.day .page-title-container .mat-input-element,.rtl-container.teal.day .page-title-container .mat-radio-label-content,.rtl-container.teal.day .page-title-container .theme-name,.rtl-container.teal.day .page-sub-title-container .mat-input-element,.rtl-container.teal.day .page-sub-title-container .mat-radio-label-content,.rtl-container.teal.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.teal.day .cc-data-block .cc-data-title{color:#009688}.rtl-container.teal.day .active-link,.rtl-container.teal.day .active-link .fa-icon-small{color:#009688;font-weight:500;cursor:pointer;fill:#009688}.rtl-container.teal.day .mat-tree-node:hover,.rtl-container.teal.day .mat-nested-tree-node-parent:hover,.rtl-container.teal.day .mat-select-panel .mat-option:hover,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#009688;cursor:pointer;background:#0000000a}.rtl-container.teal.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.teal.day .mat-tree-node:hover .mat-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#009688}.rtl-container.teal.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.teal.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#009688}.rtl-container.teal.day .mat-tree-node .sidenav-img,.rtl-container.teal.day .mat-nested-tree-node .sidenav-img,.rtl-container.teal.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.teal.day .page-title-container .page-title-img,.rtl-container.teal.day svg.top-icon-small{fill:#000000de}.rtl-container.teal.day .mat-progress-bar-fill:after{background-color:#004d40}.rtl-container.teal.day .modal-qr-code-container{background:#0000001f}.rtl-container.teal.day .mdc-tab__text-label,.rtl-container.teal.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.teal.day .mat-mdc-card,.rtl-container.teal.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.teal.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.teal.day .dashboard-info-title{color:#009688}.rtl-container.teal.day .dashboard-capacity-header,.rtl-container.teal.day .dashboard-info-value{color:#0000008a}.rtl-container.teal.day .color-primary{color:#009688!important}.rtl-container.teal.day .dot-primary{background-color:#009688!important}.rtl-container.teal.day .dot-primary-lighter{background-color:#4db6ac!important}.rtl-container.teal.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .mat-mdc-form-field-hint{color:#009688}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.teal.day .mat-mdc-form-field-hint fa-icon svg path{fill:#009688}.rtl-container.teal.day .currency-icon path,.rtl-container.teal.day .currency-icon polygon{fill:#0000008a}.rtl-container.teal.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.teal.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.teal.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-primary-lighter{stroke:#4db6ac}.rtl-container.teal.day svg .stroke-color-primary{stroke:#009688}.rtl-container.teal.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.teal.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-1{fill:#fff}.rtl-container.teal.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.teal.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-6{fill:#fff}.rtl-container.teal.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-9{fill:#fff}.rtl-container.teal.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.teal.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.teal.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-16{fill:#404040}.rtl-container.teal.day svg .fill-color-17{fill:#404040}.rtl-container.teal.day svg .fill-color-18{fill:#000}.rtl-container.teal.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-24{fill:#000}.rtl-container.teal.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.teal.day svg .fill-color-27{fill:#000}.rtl-container.teal.day svg .fill-color-28{fill:#313131}.rtl-container.teal.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-30{fill:#fff}.rtl-container.teal.day svg .fill-color-31{fill:#009688}.rtl-container.teal.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.teal.day svg .fill-color-primary{fill:#009688}.rtl-container.teal.day svg .fill-color-primary-lighter{fill:#4db6ac}.rtl-container.teal.day svg .fill-color-primary-darker{fill:#009688}.rtl-container.teal.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.teal.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.teal.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#009688}.rtl-container.teal.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.teal.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.teal.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.teal.day .material-icons.mat-icon-no-color,.rtl-container.teal.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.teal.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.teal.day .material-icons.info-icon.info-icon-primary{color:#009688}.rtl-container.teal.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.teal.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.teal.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.teal.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.teal.day .material-icons.info-icon.arrow-downward,.rtl-container.teal.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.teal.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#009688}.rtl-container.teal.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#004d40}.rtl-container.teal.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#80cbc4}.rtl-container.teal.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.teal.day .mat-progress-bar-buffer{background-color:#b2dfdb}.rtl-container.teal.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.teal.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.teal.day .foreground.mat-progress-spinner circle,.rtl-container.teal.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.teal.day .mat-toolbar-row,.rtl-container.teal.day .mat-toolbar-single-row{height:4rem}.rtl-container.teal.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day a{color:#009688}.rtl-container.teal.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.teal.day .h-active-link{border-bottom:2px solid white}.rtl-container.teal.day .mat-icon-36{color:#0000008a}.rtl-container.teal.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.teal.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.teal.day .genseed-message{width:10%;color:#009688}.rtl-container.teal.day .border-primary{border:1px solid #009688}.rtl-container.teal.day .border-accent{border:1px solid #9e9e9e}.rtl-container.teal.day .border-warn{border:1px solid #b00020}.rtl-container.teal.day .material-icons.primary{color:#009688}.rtl-container.teal.day .material-icons.accent{color:#9e9e9e}.rtl-container.teal.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.teal.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.teal.day .row-disabled{background-color:gray}.rtl-container.teal.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.teal.day .mat-mdc-card-content,.rtl-container.teal.day .mat-mdc-card-subtitle,.rtl-container.teal.day .mat-mdc-card-title{color:#0000008a}.rtl-container.teal.day .mat-menu-panel{min-width:4rem}.rtl-container.teal.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.teal.day .horizontal-button:hover{background:#4db6ac;color:#9e9e9e}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#009688}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.teal.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.teal.day .mat-button,.rtl-container.teal.day .mat-icon-button,.rtl-container.teal.day .mat-stroked-button,.rtl-container.teal.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.teal.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.teal.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.teal.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.teal.day .cc-data-block .cc-data-value{color:#000}.rtl-container.teal.day .mat-cell,.rtl-container.teal.day .mat-header-cell,.rtl-container.teal.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.teal.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.teal.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#009688}.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#009688;opacity:1}.rtl-container.teal.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.teal.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.teal.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.teal.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.teal.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.teal.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.teal.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.teal.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.teal.day .more-button{color:#000}.rtl-container.teal.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.teal.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.teal.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.teal.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.teal.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.teal.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.teal.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.teal.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.teal.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.teal.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.teal.day .tab-badge .mat-badge-content.mat-badge-active{background:#009688}.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width: 37.5em){.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.teal.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.teal.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.teal.day .rtl-select-overlay{min-width:7rem}}.rtl-container.teal.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.teal.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.teal.day .table-actions-button{min-width:8rem}.rtl-container.teal.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.teal.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.teal.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.teal.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#80cbc4!important}.rtl-container.teal.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#00897b!important}.rtl-container.teal.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.teal.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.teal.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.teal.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.teal.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.teal.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.teal.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.teal.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.teal.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.teal.day .color-warn{color:#b00020}.rtl-container.teal.day .fill-warn{fill:#b00020}.rtl-container.teal.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.teal.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.teal.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.teal.day .alert.alert-info a{color:#004085}.rtl-container.teal.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.teal.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.teal.day .alert.alert-warn a{color:#856404}.rtl-container.teal.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.teal.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.teal.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.teal.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.teal.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.teal.day .failed-status{color:#b00020}.rtl-container.teal.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.teal.day .svg-fill-primary{fill:#009688}.rtl-container.teal.day .svg-fill-primary-lighter{fill:#4db6ac}.rtl-container.teal.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.teal.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.teal.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.teal.day .dashboard-card-content .underline,.rtl-container.teal.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.teal.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.teal.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#009688}.rtl-container.teal.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.teal.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#009688}.rtl-container.teal.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.teal.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#009688}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon{color:#009688}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon path{fill:#009688}.rtl-container.teal.day .fa-icon-primary{color:#009688}.rtl-container.teal.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day ngx-charts-bar-vertical text,.rtl-container.teal.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.teal.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.teal.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.teal.day .mat-paginator-container{padding:0}.rtl-container.teal.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.teal.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.teal.day .invoice-animation-div .particles-circle{position:absolute;background-color:#009688;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #009688;background-color:transparent}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.teal.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.teal.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.teal.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.teal.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.teal.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #00695c;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-filled-caret-color: #00695c;--mat-form-field-filled-focus-active-indicator-color: #00695c;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-outlined-caret-color: #00695c;--mat-form-field-outlined-focus-outline-color: #00695c;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #00695c;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #00695c;--mat-slide-toggle-selected-handle-color: #00695c;--mat-slide-toggle-selected-hover-state-layer-color: #00695c;--mat-slide-toggle-selected-pressed-state-layer-color: #00695c;--mat-slide-toggle-selected-focus-handle-color: #00695c;--mat-slide-toggle-selected-hover-handle-color: #00695c;--mat-slide-toggle-selected-pressed-handle-color: #00695c;--mat-slide-toggle-selected-focus-track-color: #00897b;--mat-slide-toggle-selected-hover-track-color: #00897b;--mat-slide-toggle-selected-pressed-track-color: #00897b;--mat-slide-toggle-selected-track-color: #00897b;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #00695c;--mat-slider-focus-handle-color: #00695c;--mat-slider-handle-color: #00695c;--mat-slider-hover-handle-color: #00695c;--mat-slider-focus-state-layer-color: color-mix(in srgb, #00695c 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #00695c 4%, transparent);--mat-slider-inactive-track-color: #00695c;--mat-slider-ripple-color: #00695c;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #00695c;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #00897b;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #00695c;--mat-badge-background-color: #00695c;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #00695c 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #00695c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #00695c 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #00695c 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #00695c 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #00695c;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #00695c;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #00695c;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #00695c;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.teal.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.teal.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.teal.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #00695c;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #00695c;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.teal.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.teal.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.teal.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #00695c;--mat-progress-bar-track-color: rgba(0, 105, 92, .25)}.rtl-container.teal.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.teal.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.teal.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.teal.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.teal.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.teal.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.teal.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #00695c;--mat-chip-elevated-disabled-container-color: #00695c;--mat-chip-elevated-selected-container-color: #00695c;--mat-chip-flat-disabled-selected-container-color: #00695c;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.teal.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.teal.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.teal.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #00695c;--mat-radio-selected-hover-icon-color: #00695c;--mat-radio-selected-icon-color: #00695c;--mat-radio-selected-pressed-icon-color: #00695c;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.teal.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.teal.night .mdc-list-item__start,.rtl-container.teal.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #00695c;--mat-radio-selected-hover-icon-color: #00695c;--mat-radio-selected-icon-color: #00695c;--mat-radio-selected-pressed-icon-color: #00695c;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-accent .mdc-list-item__start,.rtl-container.teal.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-warn .mdc-list-item__start,.rtl-container.teal.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #00695c;--mat-checkbox-selected-hover-icon-color: #00695c;--mat-checkbox-selected-icon-color: #00695c;--mat-checkbox-selected-pressed-icon-color: #00695c;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #00695c;--mat-checkbox-selected-hover-state-layer-color: #00695c;--mat-checkbox-selected-pressed-state-layer-color: #00695c;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#00695c}.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.teal.night .mat-mdc-tab-group,.rtl-container.teal.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #00695c;--mat-tab-active-ripple-color: #00695c;--mat-tab-inactive-ripple-color: #00695c;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #00695c;--mat-tab-active-hover-label-text-color: #00695c;--mat-tab-active-focus-indicator-color: #00695c;--mat-tab-active-hover-indicator-color: #00695c;--mat-tab-active-indicator-color: #00695c}.rtl-container.teal.night .mat-mdc-tab-group.mat-accent,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.teal.night .mat-mdc-tab-group.mat-warn,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #00695c;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.teal.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #00695c;--mat-checkbox-selected-hover-icon-color: #00695c;--mat-checkbox-selected-icon-color: #00695c;--mat-checkbox-selected-pressed-icon-color: #00695c;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #00695c;--mat-checkbox-selected-hover-state-layer-color: #00695c;--mat-checkbox-selected-pressed-state-layer-color: #00695c;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-button.mat-primary,.rtl-container.teal.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.teal.night .mat-mdc-raised-button.mat-primary,.rtl-container.teal.night .mat-mdc-outlined-button.mat-primary,.rtl-container.teal.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #00695c;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #00695c;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-button-outlined-state-layer-color: #00695c;--mat-button-protected-container-color: #00695c;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #00695c;--mat-button-text-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-button-text-state-layer-color: #00695c;--mat-button-tonal-container-color: #00695c;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.teal.night .mat-mdc-button.mat-accent,.rtl-container.teal.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.teal.night .mat-mdc-raised-button.mat-accent,.rtl-container.teal.night .mat-mdc-outlined-button.mat-accent,.rtl-container.teal.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.teal.night .mat-mdc-button.mat-warn,.rtl-container.teal.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.teal.night .mat-mdc-raised-button.mat-warn,.rtl-container.teal.night .mat-mdc-outlined-button.mat-warn,.rtl-container.teal.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.teal.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #00695c;--mat-icon-button-state-layer-color: #00695c;--mat-icon-button-ripple-color: color-mix(in srgb, #00695c 12%, transparent)}.rtl-container.teal.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.teal.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.teal.night .mat-mdc-fab.mat-primary,.rtl-container.teal.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #00695c;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-fab-small-container-color: #00695c;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.teal.night .mat-mdc-fab.mat-accent,.rtl-container.teal.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.teal.night .mat-mdc-fab.mat-warn,.rtl-container.teal.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.teal.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.teal.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.teal.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.teal.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.teal.night .mat-datepicker-content.mat-accent,.rtl-container.teal.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.teal.night .mat-datepicker-content.mat-warn,.rtl-container.teal.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.teal.night .mat-icon.mat-primary{--mat-icon-color: #00695c}.rtl-container.teal.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.teal.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.teal.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.teal.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #00695c;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.teal.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.teal.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.teal.night .mat-primary{color:#64ffda!important}.rtl-container.teal.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.teal.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.teal.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.teal.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.teal.night .bg-primary{background-color:#009688;color:#fff}.rtl-container.teal.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#64ffda}.rtl-container.teal.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.teal.night .currency-icon path,.rtl-container.teal.night .currency-icon polygon{fill:#fff}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.teal.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#64ffda}.rtl-container.teal.night .cc-data-block .cc-data-title{color:#64ffda}.rtl-container.teal.night .mat-stroked-button.mat-primary{border-color:#64ffda;color:#64ffda}.rtl-container.teal.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.teal.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.teal.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.teal.night .active-link,.rtl-container.teal.night .active-link .fa-icon-small,.rtl-container.teal.night .mat-select-panel .mat-option.mat-active,.rtl-container.teal.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#64ffda;font-weight:500;cursor:pointer;fill:#64ffda}.rtl-container.teal.night .help-expansion .mat-expansion-panel-header,.rtl-container.teal.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.teal.night .help-expansion .mat-expansion-indicator:after,.rtl-container.teal.night .help-expansion .mat-expansion-panel-content,.rtl-container.teal.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.teal.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.teal.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.teal.night .mat-expansion-panel,.rtl-container.teal.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.teal.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.teal.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.teal.night .mdc-data-table__header-cell,.rtl-container.teal.night .mat-mdc-paginator,.rtl-container.teal.night .mat-mdc-form-field-focus-overlay,.rtl-container.teal.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.teal.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.teal.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#64ffda}.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.teal.night .svg-donation{opacity:1!important}.rtl-container.teal.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#64ffda!important}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#64ffda!important}.rtl-container.teal.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#009688}.rtl-container.teal.night a{color:#64ffda!important;cursor:pointer}.rtl-container.teal.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.teal.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.teal.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.teal.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.teal.night .mat-mdc-select-placeholder,.rtl-container.teal.night .mat-mdc-select-value,.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#64ffda}.rtl-container.teal.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.teal.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#64ffda}.rtl-container.teal.night .mat-tree-node:hover,.rtl-container.teal.night .mat-nested-tree-node-parent:hover,.rtl-container.teal.night .mat-select-panel .mat-option:hover,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#64ffda;cursor:pointer;background:#ffffff0f}.rtl-container.teal.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.teal.night .mat-tree-node:hover .mat-icon,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.teal.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.teal.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#64ffda}.rtl-container.teal.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.teal.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.teal.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.teal.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#64ffda}.rtl-container.teal.night .mat-tree-node:hover .boltz-icon,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.teal.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#64ffda}.rtl-container.teal.night .mat-tree-node .sidenav-img,.rtl-container.teal.night .mat-nested-tree-node .sidenav-img,.rtl-container.teal.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.teal.night .page-title-container .page-title-img,.rtl-container.teal.night svg.top-icon-small{fill:#fff}.rtl-container.teal.night .selected-color{border-color:#4db6ac}.rtl-container.teal.night .mat-progress-bar-fill:after{background-color:#00897b}.rtl-container.teal.night .chart-legend .legend-label:hover,.rtl-container.teal.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.teal.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.teal.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#64ffda}.rtl-container.teal.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.teal.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#64ffda}.rtl-container.teal.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#64ffda}.rtl-container.teal.night .mat-select-panel{background-color:#121212}.rtl-container.teal.night .mat-tree{background:#121212}.rtl-container.teal.night h4{color:#64ffda}.rtl-container.teal.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.teal.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.teal.night .dashboard-info-title{color:#64ffda}.rtl-container.teal.night .dashboard-info-value,.rtl-container.teal.night .dashboard-capacity-header{color:#fff}.rtl-container.teal.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.teal.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.teal.night .color-primary{color:#64ffda!important}.rtl-container.teal.night .dot-primary{background-color:#64ffda!important}.rtl-container.teal.night .dot-primary-lighter{background-color:#009688!important}.rtl-container.teal.night .mat-stepper-vertical{background-color:#121212}.rtl-container.teal.night .spinner-container h2{color:#64ffda}.rtl-container.teal.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.teal.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.teal.night svg .boltz-icon-fill{fill:#fff}.rtl-container.teal.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-primary-lighter{stroke:#4db6ac}.rtl-container.teal.night svg .stroke-color-primary{stroke:#009688}.rtl-container.teal.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.teal.night svg .fill-color-0{fill:#171717}.rtl-container.teal.night svg .fill-color-1{fill:#232323}.rtl-container.teal.night svg .fill-color-2{fill:#222}.rtl-container.teal.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.teal.night svg .fill-color-4{fill:#383838}.rtl-container.teal.night svg .fill-color-5{fill:#555}.rtl-container.teal.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.teal.night svg .fill-color-7{fill:#202020}.rtl-container.teal.night svg .fill-color-8{fill:#242424}.rtl-container.teal.night svg .fill-color-9{fill:#262626}.rtl-container.teal.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.teal.night svg .fill-color-11{fill:#171717}.rtl-container.teal.night svg .fill-color-12{fill:#ccc}.rtl-container.teal.night svg .fill-color-13{fill:#adadad}.rtl-container.teal.night svg .fill-color-14{fill:#ababab}.rtl-container.teal.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.teal.night svg .fill-color-16{fill:#707070}.rtl-container.teal.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.teal.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.teal.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.teal.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.teal.night svg .fill-color-21{fill:#cacaca}.rtl-container.teal.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.teal.night svg .fill-color-23{fill:#777}.rtl-container.teal.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.teal.night svg .fill-color-25{fill:#252525}.rtl-container.teal.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.teal.night svg .fill-color-27{fill:#000}.rtl-container.teal.night svg .fill-color-28{fill:#313131}.rtl-container.teal.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.teal.night svg .fill-color-30{fill:#fff}.rtl-container.teal.night svg .fill-color-31{fill:#009688}.rtl-container.teal.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.teal.night svg .fill-color-primary{fill:#009688}.rtl-container.teal.night svg .fill-color-primary-lighter{fill:#4db6ac}.rtl-container.teal.night svg .fill-color-primary-darker{fill:#64ffda}.rtl-container.teal.night .mat-select-value,.rtl-container.teal.night .mat-select-arrow{color:#fff}.rtl-container.teal.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.teal.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.teal.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.teal.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.teal.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.teal.night .mat-button.mat-primary,.rtl-container.teal.night .mat-icon-button.mat-primary,.rtl-container.teal.night .mat-stroked-button.mat-primary{color:#64ffda}.rtl-container.teal.night tr.alert.alert-warn .mat-cell,.rtl-container.teal.night tr.alert.alert-warn .mat-header-cell,.rtl-container.teal.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.teal.night .material-icons.info-icon{font-size:100%;color:#64ffda}.rtl-container.teal.night .material-icons.info-icon.info-icon-primary{color:#64ffda}.rtl-container.teal.night .material-icons.info-icon.info-icon-text,.rtl-container.teal.night .material-icons.info-icon.arrow-downward,.rtl-container.teal.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.teal.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#64ffda}.rtl-container.teal.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#00695c}.rtl-container.teal.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#64ffda}.rtl-container.teal.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.teal.night .mat-progress-bar-buffer{background-color:#b2dfdb}.rtl-container.teal.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.teal.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.teal.night .foreground.mat-progress-spinner circle,.rtl-container.teal.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.teal.night .mat-toolbar-row,.rtl-container.teal.night .mat-toolbar-single-row{height:4rem}.rtl-container.teal.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.teal.night a{color:#009688}.rtl-container.teal.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.teal.night .h-active-link{border-bottom:2px solid white}.rtl-container.teal.night .mat-icon-36{color:#ffffffb3}.rtl-container.teal.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.teal.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.teal.night .genseed-message{width:10%;color:#009688}.rtl-container.teal.night .border-primary{border:1px solid #009688}.rtl-container.teal.night .border-accent{border:1px solid #aaaaaa}.rtl-container.teal.night .border-warn{border:1px solid #b00020}.rtl-container.teal.night .material-icons.primary{color:#009688}.rtl-container.teal.night .material-icons.accent{color:#aaa}.rtl-container.teal.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.teal.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.teal.night .row-disabled{background-color:gray}.rtl-container.teal.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.teal.night .mat-mdc-card-content,.rtl-container.teal.night .mat-mdc-card-subtitle,.rtl-container.teal.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.teal.night .mat-menu-panel{min-width:4rem}.rtl-container.teal.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.teal.night .horizontal-button:hover{background:#4db6ac;color:#aaa}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#009688}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.teal.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.teal.night .mat-button,.rtl-container.teal.night .mat-icon-button,.rtl-container.teal.night .mat-stroked-button,.rtl-container.teal.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.teal.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.teal.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.teal.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.teal.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.teal.night .mat-cell,.rtl-container.teal.night .mat-header-cell,.rtl-container.teal.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.teal.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.teal.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#009688}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#009688;opacity:1}.rtl-container.teal.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.teal.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.teal.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.teal.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.teal.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.teal.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.teal.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.teal.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.teal.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.teal.night .more-button{color:#fff}.rtl-container.teal.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.teal.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.teal.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.teal.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.teal.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.teal.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.teal.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.teal.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.teal.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.teal.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.teal.night .tab-badge .mat-badge-content.mat-badge-active{background:#009688}.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width: 37.5em){.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.teal.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.teal.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.teal.night .rtl-select-overlay{min-width:7rem}}.rtl-container.teal.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.teal.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.teal.night .table-actions-button{min-width:8rem}.rtl-container.teal.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.teal.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.teal.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.teal.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#80cbc4!important}.rtl-container.teal.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#00897b!important}.rtl-container.teal.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.teal.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.teal.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.teal.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.teal.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.teal.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.teal.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.teal.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.teal.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.teal.night .color-warn{color:#b00020}.rtl-container.teal.night .fill-warn{fill:#b00020}.rtl-container.teal.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.teal.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.teal.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.teal.night .alert.alert-info a{color:#004085}.rtl-container.teal.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.teal.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.teal.night .alert.alert-warn a{color:#856404}.rtl-container.teal.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.teal.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.teal.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.teal.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.teal.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.teal.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.teal.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.teal.night .failed-status{color:#b00020}.rtl-container.teal.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.teal.night .svg-fill-primary{fill:#009688}.rtl-container.teal.night .svg-fill-primary-lighter{fill:#4db6ac}.rtl-container.teal.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.teal.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.teal.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.teal.night .dashboard-card-content .underline,.rtl-container.teal.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.teal.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.teal.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#009688}.rtl-container.teal.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.teal.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#009688}.rtl-container.teal.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.teal.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#009688}.rtl-container.teal.night .mat-mdc-form-field-hint .currency-icon{color:#009688}.rtl-container.teal.night .mat-mdc-form-field-hint .currency-icon path{fill:#009688}.rtl-container.teal.night .fa-icon-primary{color:#009688}.rtl-container.teal.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night ngx-charts-bar-vertical text,.rtl-container.teal.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.teal.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.teal.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.teal.night .mat-paginator-container{padding:0}.rtl-container.teal.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.teal.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.teal.night .invoice-animation-div .particles-circle{position:absolute;background-color:#009688;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #009688;background-color:transparent}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.teal.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.teal.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.teal.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.teal.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.pink.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #e91e63;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-filled-caret-color: #e91e63;--mat-form-field-filled-focus-active-indicator-color: #e91e63;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-outlined-caret-color: #e91e63;--mat-form-field-outlined-focus-outline-color: #e91e63;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #e91e63;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #e91e63;--mat-slide-toggle-selected-handle-color: #e91e63;--mat-slide-toggle-selected-hover-state-layer-color: #e91e63;--mat-slide-toggle-selected-pressed-state-layer-color: #e91e63;--mat-slide-toggle-selected-focus-handle-color: #e91e63;--mat-slide-toggle-selected-hover-handle-color: #e91e63;--mat-slide-toggle-selected-pressed-handle-color: #e91e63;--mat-slide-toggle-selected-focus-track-color: #f06292;--mat-slide-toggle-selected-hover-track-color: #f06292;--mat-slide-toggle-selected-pressed-track-color: #f06292;--mat-slide-toggle-selected-track-color: #f06292;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #e91e63;--mat-slider-focus-handle-color: #e91e63;--mat-slider-handle-color: #e91e63;--mat-slider-hover-handle-color: #e91e63;--mat-slider-focus-state-layer-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #e91e63 4%, transparent);--mat-slider-inactive-track-color: #e91e63;--mat-slider-ripple-color: #e91e63;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #e91e63;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #f06292;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #e91e63;--mat-badge-background-color: #e91e63;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #e91e63 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #e91e63;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #e91e63 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #e91e63 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #e91e63;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #e91e63;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #e91e63;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #e91e63;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.pink.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.pink.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.pink.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #e91e63;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #e91e63;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.pink.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.pink.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.pink.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #e91e63;--mat-progress-bar-track-color: rgba(233, 30, 99, .25)}.rtl-container.pink.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.pink.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.pink.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.pink.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.pink.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.pink.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.pink.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #e91e63;--mat-chip-elevated-disabled-container-color: #e91e63;--mat-chip-elevated-selected-container-color: #e91e63;--mat-chip-flat-disabled-selected-container-color: #e91e63;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.pink.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.pink.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.pink.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #e91e63;--mat-radio-selected-hover-icon-color: #e91e63;--mat-radio-selected-icon-color: #e91e63;--mat-radio-selected-pressed-icon-color: #e91e63;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.pink.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.pink.day .mdc-list-item__start,.rtl-container.pink.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #e91e63;--mat-radio-selected-hover-icon-color: #e91e63;--mat-radio-selected-icon-color: #e91e63;--mat-radio-selected-pressed-icon-color: #e91e63;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-accent .mdc-list-item__start,.rtl-container.pink.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-warn .mdc-list-item__start,.rtl-container.pink.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #e91e63;--mat-checkbox-selected-hover-icon-color: #e91e63;--mat-checkbox-selected-icon-color: #e91e63;--mat-checkbox-selected-pressed-icon-color: #e91e63;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #e91e63;--mat-checkbox-selected-hover-state-layer-color: #e91e63;--mat-checkbox-selected-pressed-state-layer-color: #e91e63;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#e91e63}.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.pink.day .mat-mdc-tab-group,.rtl-container.pink.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #e91e63;--mat-tab-active-ripple-color: #e91e63;--mat-tab-inactive-ripple-color: #e91e63;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #e91e63;--mat-tab-active-hover-label-text-color: #e91e63;--mat-tab-active-focus-indicator-color: #e91e63;--mat-tab-active-hover-indicator-color: #e91e63;--mat-tab-active-indicator-color: #e91e63}.rtl-container.pink.day .mat-mdc-tab-group.mat-accent,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.pink.day .mat-mdc-tab-group.mat-warn,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #e91e63;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.pink.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #e91e63;--mat-checkbox-selected-hover-icon-color: #e91e63;--mat-checkbox-selected-icon-color: #e91e63;--mat-checkbox-selected-pressed-icon-color: #e91e63;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #e91e63;--mat-checkbox-selected-hover-state-layer-color: #e91e63;--mat-checkbox-selected-pressed-state-layer-color: #e91e63;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-button.mat-primary,.rtl-container.pink.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.pink.day .mat-mdc-raised-button.mat-primary,.rtl-container.pink.day .mat-mdc-outlined-button.mat-primary,.rtl-container.pink.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #e91e63;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #e91e63;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-button-outlined-state-layer-color: #e91e63;--mat-button-protected-container-color: #e91e63;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #e91e63;--mat-button-text-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-button-text-state-layer-color: #e91e63;--mat-button-tonal-container-color: #e91e63;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.pink.day .mat-mdc-button.mat-accent,.rtl-container.pink.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.pink.day .mat-mdc-raised-button.mat-accent,.rtl-container.pink.day .mat-mdc-outlined-button.mat-accent,.rtl-container.pink.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.pink.day .mat-mdc-button.mat-warn,.rtl-container.pink.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.pink.day .mat-mdc-raised-button.mat-warn,.rtl-container.pink.day .mat-mdc-outlined-button.mat-warn,.rtl-container.pink.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.pink.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #e91e63;--mat-icon-button-state-layer-color: #e91e63;--mat-icon-button-ripple-color: color-mix(in srgb, #e91e63 12%, transparent)}.rtl-container.pink.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.pink.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.pink.day .mat-mdc-fab.mat-primary,.rtl-container.pink.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #e91e63;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-fab-small-container-color: #e91e63;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.pink.day .mat-mdc-fab.mat-accent,.rtl-container.pink.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.pink.day .mat-mdc-fab.mat-warn,.rtl-container.pink.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.pink.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.pink.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.pink.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.pink.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.pink.day .mat-datepicker-content.mat-accent,.rtl-container.pink.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-datepicker-content.mat-warn,.rtl-container.pink.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-icon.mat-primary{--mat-icon-color: #e91e63}.rtl-container.pink.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.pink.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.pink.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #e91e63;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.pink.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.pink.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.pink.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.pink.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.pink.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.pink.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.pink.day .bg-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.pink.day .page-title,.rtl-container.pink.day .mat-mdc-select-value,.rtl-container.pink.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.pink.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.pink.day .help-expansion .mat-expansion-panel-header,.rtl-container.pink.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.pink.day .help-expansion .mat-expansion-indicator:after,.rtl-container.pink.day .help-expansion .mat-expansion-panel-content,.rtl-container.pink.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#e91e63}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.pink.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#e91e63}.rtl-container.pink.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.pink.day .mat-tree-node:hover,.rtl-container.pink.day .mat-nested-tree-node-parent:hover,.rtl-container.pink.day .mat-select-panel .mat-option:hover,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#e91e63;cursor:pointer}.rtl-container.pink.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.pink.day .mat-tree-node:hover .mat-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#e91e63}.rtl-container.pink.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.pink.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#e91e63}.rtl-container.pink.day .spinner-container h2{color:#fff}.rtl-container.pink.day .ng-fa-icon,.rtl-container.pink.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.pink.day .mat-form-field-suffix{color:#0000008a}.rtl-container.pink.day .mat-stroked-button.mat-primary{border-color:#e91e63}.rtl-container.pink.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.pink.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.pink.day .selected-color{border-color:#f06292}.rtl-container.pink.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.pink.day table.mat-mdc-table thead tr th,.rtl-container.pink.day .page-title-container,.rtl-container.pink.day .page-sub-title-container{color:#0000008a}.rtl-container.pink.day .page-title-container .page-title-img,.rtl-container.pink.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.pink.day .page-title-container .mat-input-element,.rtl-container.pink.day .page-title-container .mat-radio-label-content,.rtl-container.pink.day .page-title-container .theme-name,.rtl-container.pink.day .page-sub-title-container .mat-input-element,.rtl-container.pink.day .page-sub-title-container .mat-radio-label-content,.rtl-container.pink.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.pink.day .cc-data-block .cc-data-title{color:#e91e63}.rtl-container.pink.day .active-link,.rtl-container.pink.day .active-link .fa-icon-small{color:#e91e63;font-weight:500;cursor:pointer;fill:#e91e63}.rtl-container.pink.day .mat-tree-node:hover,.rtl-container.pink.day .mat-nested-tree-node-parent:hover,.rtl-container.pink.day .mat-select-panel .mat-option:hover,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#e91e63;cursor:pointer;background:#0000000a}.rtl-container.pink.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.pink.day .mat-tree-node:hover .mat-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#e91e63}.rtl-container.pink.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.pink.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#e91e63}.rtl-container.pink.day .mat-tree-node .sidenav-img,.rtl-container.pink.day .mat-nested-tree-node .sidenav-img,.rtl-container.pink.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.pink.day .page-title-container .page-title-img,.rtl-container.pink.day svg.top-icon-small{fill:#000000de}.rtl-container.pink.day .mat-progress-bar-fill:after{background-color:#880e4f}.rtl-container.pink.day .modal-qr-code-container{background:#0000001f}.rtl-container.pink.day .mdc-tab__text-label,.rtl-container.pink.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.pink.day .mat-mdc-card,.rtl-container.pink.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.pink.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.pink.day .dashboard-info-title{color:#e91e63}.rtl-container.pink.day .dashboard-capacity-header,.rtl-container.pink.day .dashboard-info-value{color:#0000008a}.rtl-container.pink.day .color-primary{color:#e91e63!important}.rtl-container.pink.day .dot-primary{background-color:#e91e63!important}.rtl-container.pink.day .dot-primary-lighter{background-color:#f06292!important}.rtl-container.pink.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .mat-mdc-form-field-hint{color:#e91e63}.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.pink.day .mat-mdc-form-field-hint fa-icon svg path{fill:#e91e63}.rtl-container.pink.day .currency-icon path,.rtl-container.pink.day .currency-icon polygon{fill:#0000008a}.rtl-container.pink.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.pink.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.pink.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-primary-lighter{stroke:#f06292}.rtl-container.pink.day svg .stroke-color-primary{stroke:#e91e63}.rtl-container.pink.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.pink.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-1{fill:#fff}.rtl-container.pink.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.pink.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-6{fill:#fff}.rtl-container.pink.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-9{fill:#fff}.rtl-container.pink.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.pink.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.pink.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-16{fill:#404040}.rtl-container.pink.day svg .fill-color-17{fill:#404040}.rtl-container.pink.day svg .fill-color-18{fill:#000}.rtl-container.pink.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-24{fill:#000}.rtl-container.pink.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.pink.day svg .fill-color-27{fill:#000}.rtl-container.pink.day svg .fill-color-28{fill:#313131}.rtl-container.pink.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-30{fill:#fff}.rtl-container.pink.day svg .fill-color-31{fill:#e91e63}.rtl-container.pink.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.pink.day svg .fill-color-primary{fill:#e91e63}.rtl-container.pink.day svg .fill-color-primary-lighter{fill:#f06292}.rtl-container.pink.day svg .fill-color-primary-darker{fill:#e91e63}.rtl-container.pink.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.pink.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.pink.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#e91e63}.rtl-container.pink.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.pink.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.pink.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.pink.day .material-icons.mat-icon-no-color,.rtl-container.pink.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.pink.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.pink.day .material-icons.info-icon.info-icon-primary{color:#e91e63}.rtl-container.pink.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.pink.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.pink.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.pink.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.pink.day .material-icons.info-icon.arrow-downward,.rtl-container.pink.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.pink.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#e91e63}.rtl-container.pink.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#880e4f}.rtl-container.pink.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#f48fb1}.rtl-container.pink.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.pink.day .mat-progress-bar-buffer{background-color:#f8bbd0}.rtl-container.pink.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.pink.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.pink.day .foreground.mat-progress-spinner circle,.rtl-container.pink.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.pink.day .mat-toolbar-row,.rtl-container.pink.day .mat-toolbar-single-row{height:4rem}.rtl-container.pink.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day a{color:#e91e63}.rtl-container.pink.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.pink.day .h-active-link{border-bottom:2px solid white}.rtl-container.pink.day .mat-icon-36{color:#0000008a}.rtl-container.pink.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.pink.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.pink.day .genseed-message{width:10%;color:#e91e63}.rtl-container.pink.day .border-primary{border:1px solid #e91e63}.rtl-container.pink.day .border-accent{border:1px solid #9e9e9e}.rtl-container.pink.day .border-warn{border:1px solid #b00020}.rtl-container.pink.day .material-icons.primary{color:#e91e63}.rtl-container.pink.day .material-icons.accent{color:#9e9e9e}.rtl-container.pink.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.pink.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.pink.day .row-disabled{background-color:gray}.rtl-container.pink.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.pink.day .mat-mdc-card-content,.rtl-container.pink.day .mat-mdc-card-subtitle,.rtl-container.pink.day .mat-mdc-card-title{color:#0000008a}.rtl-container.pink.day .mat-menu-panel{min-width:4rem}.rtl-container.pink.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.pink.day .horizontal-button:hover{background:#f06292;color:#9e9e9e}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#e91e63}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.pink.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.pink.day .mat-button,.rtl-container.pink.day .mat-icon-button,.rtl-container.pink.day .mat-stroked-button,.rtl-container.pink.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.pink.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.pink.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.pink.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.pink.day .cc-data-block .cc-data-value{color:#000}.rtl-container.pink.day .mat-cell,.rtl-container.pink.day .mat-header-cell,.rtl-container.pink.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.pink.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.pink.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#e91e63}.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#e91e63;opacity:1}.rtl-container.pink.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.pink.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.pink.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.pink.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.pink.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.pink.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.pink.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.pink.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.pink.day .more-button{color:#000}.rtl-container.pink.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.pink.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.pink.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.pink.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.pink.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.pink.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.pink.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.pink.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.pink.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.pink.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.pink.day .tab-badge .mat-badge-content.mat-badge-active{background:#e91e63}.rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width: 37.5em){.rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.pink.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.pink.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.pink.day .rtl-select-overlay{min-width:7rem}}.rtl-container.pink.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.pink.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.pink.day .table-actions-button{min-width:8rem}.rtl-container.pink.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.pink.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.pink.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.pink.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#f48fb1!important}.rtl-container.pink.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#d81b60!important}.rtl-container.pink.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.pink.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.pink.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.pink.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.pink.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.pink.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.pink.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.pink.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.pink.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.pink.day .color-warn{color:#b00020}.rtl-container.pink.day .fill-warn{fill:#b00020}.rtl-container.pink.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.pink.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.pink.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.pink.day .alert.alert-info a{color:#004085}.rtl-container.pink.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.pink.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.pink.day .alert.alert-warn a{color:#856404}.rtl-container.pink.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.pink.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.pink.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.pink.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.pink.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.pink.day .failed-status{color:#b00020}.rtl-container.pink.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.pink.day .svg-fill-primary{fill:#e91e63}.rtl-container.pink.day .svg-fill-primary-lighter{fill:#f06292}.rtl-container.pink.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.pink.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.pink.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.pink.day .dashboard-card-content .underline,.rtl-container.pink.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.pink.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.pink.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#e91e63}.rtl-container.pink.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.pink.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#e91e63}.rtl-container.pink.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.pink.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#e91e63}.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon{color:#e91e63}.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon path{fill:#e91e63}.rtl-container.pink.day .fa-icon-primary{color:#e91e63}.rtl-container.pink.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day ngx-charts-bar-vertical text,.rtl-container.pink.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.pink.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.pink.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.pink.day .mat-paginator-container{padding:0}.rtl-container.pink.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.pink.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.pink.day .invoice-animation-div .particles-circle{position:absolute;background-color:#e91e63;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #e91e63;background-color:transparent}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.pink.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.pink.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.pink.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.pink.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.pink.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #e91e63;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-filled-caret-color: #e91e63;--mat-form-field-filled-focus-active-indicator-color: #e91e63;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-outlined-caret-color: #e91e63;--mat-form-field-outlined-focus-outline-color: #e91e63;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #e91e63;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #e91e63;--mat-slide-toggle-selected-handle-color: #e91e63;--mat-slide-toggle-selected-hover-state-layer-color: #e91e63;--mat-slide-toggle-selected-pressed-state-layer-color: #e91e63;--mat-slide-toggle-selected-focus-handle-color: #e91e63;--mat-slide-toggle-selected-hover-handle-color: #e91e63;--mat-slide-toggle-selected-pressed-handle-color: #e91e63;--mat-slide-toggle-selected-focus-track-color: #d81b60;--mat-slide-toggle-selected-hover-track-color: #d81b60;--mat-slide-toggle-selected-pressed-track-color: #d81b60;--mat-slide-toggle-selected-track-color: #d81b60;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #e91e63;--mat-slider-focus-handle-color: #e91e63;--mat-slider-handle-color: #e91e63;--mat-slider-hover-handle-color: #e91e63;--mat-slider-focus-state-layer-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #e91e63 4%, transparent);--mat-slider-inactive-track-color: #e91e63;--mat-slider-ripple-color: #e91e63;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #e91e63;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #d81b60;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #e91e63;--mat-badge-background-color: #e91e63;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #e91e63 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #e91e63;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #e91e63 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #e91e63 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #e91e63;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #e91e63;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #e91e63;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #e91e63;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.pink.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.pink.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.pink.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #e91e63;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #e91e63;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.pink.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.pink.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.pink.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #e91e63;--mat-progress-bar-track-color: rgba(233, 30, 99, .25)}.rtl-container.pink.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.pink.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.pink.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.pink.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.pink.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.pink.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.pink.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #e91e63;--mat-chip-elevated-disabled-container-color: #e91e63;--mat-chip-elevated-selected-container-color: #e91e63;--mat-chip-flat-disabled-selected-container-color: #e91e63;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.pink.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.pink.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.pink.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #e91e63;--mat-radio-selected-hover-icon-color: #e91e63;--mat-radio-selected-icon-color: #e91e63;--mat-radio-selected-pressed-icon-color: #e91e63;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.pink.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.pink.night .mdc-list-item__start,.rtl-container.pink.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #e91e63;--mat-radio-selected-hover-icon-color: #e91e63;--mat-radio-selected-icon-color: #e91e63;--mat-radio-selected-pressed-icon-color: #e91e63;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-accent .mdc-list-item__start,.rtl-container.pink.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-warn .mdc-list-item__start,.rtl-container.pink.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #e91e63;--mat-checkbox-selected-hover-icon-color: #e91e63;--mat-checkbox-selected-icon-color: #e91e63;--mat-checkbox-selected-pressed-icon-color: #e91e63;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #e91e63;--mat-checkbox-selected-hover-state-layer-color: #e91e63;--mat-checkbox-selected-pressed-state-layer-color: #e91e63;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#e91e63}.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.pink.night .mat-mdc-tab-group,.rtl-container.pink.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #e91e63;--mat-tab-active-ripple-color: #e91e63;--mat-tab-inactive-ripple-color: #e91e63;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #e91e63;--mat-tab-active-hover-label-text-color: #e91e63;--mat-tab-active-focus-indicator-color: #e91e63;--mat-tab-active-hover-indicator-color: #e91e63;--mat-tab-active-indicator-color: #e91e63}.rtl-container.pink.night .mat-mdc-tab-group.mat-accent,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.pink.night .mat-mdc-tab-group.mat-warn,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #e91e63;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.pink.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #e91e63;--mat-checkbox-selected-hover-icon-color: #e91e63;--mat-checkbox-selected-icon-color: #e91e63;--mat-checkbox-selected-pressed-icon-color: #e91e63;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #e91e63;--mat-checkbox-selected-hover-state-layer-color: #e91e63;--mat-checkbox-selected-pressed-state-layer-color: #e91e63;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-button.mat-primary,.rtl-container.pink.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.pink.night .mat-mdc-raised-button.mat-primary,.rtl-container.pink.night .mat-mdc-outlined-button.mat-primary,.rtl-container.pink.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #e91e63;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #e91e63;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-button-outlined-state-layer-color: #e91e63;--mat-button-protected-container-color: #e91e63;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #e91e63;--mat-button-text-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-button-text-state-layer-color: #e91e63;--mat-button-tonal-container-color: #e91e63;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.pink.night .mat-mdc-button.mat-accent,.rtl-container.pink.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.pink.night .mat-mdc-raised-button.mat-accent,.rtl-container.pink.night .mat-mdc-outlined-button.mat-accent,.rtl-container.pink.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.pink.night .mat-mdc-button.mat-warn,.rtl-container.pink.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.pink.night .mat-mdc-raised-button.mat-warn,.rtl-container.pink.night .mat-mdc-outlined-button.mat-warn,.rtl-container.pink.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.pink.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #e91e63;--mat-icon-button-state-layer-color: #e91e63;--mat-icon-button-ripple-color: color-mix(in srgb, #e91e63 12%, transparent)}.rtl-container.pink.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.pink.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.pink.night .mat-mdc-fab.mat-primary,.rtl-container.pink.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #e91e63;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-fab-small-container-color: #e91e63;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.pink.night .mat-mdc-fab.mat-accent,.rtl-container.pink.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.pink.night .mat-mdc-fab.mat-warn,.rtl-container.pink.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.pink.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.pink.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.pink.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.pink.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.pink.night .mat-datepicker-content.mat-accent,.rtl-container.pink.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.pink.night .mat-datepicker-content.mat-warn,.rtl-container.pink.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.pink.night .mat-icon.mat-primary{--mat-icon-color: #e91e63}.rtl-container.pink.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.pink.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.pink.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.pink.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #e91e63;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.pink.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.pink.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.pink.night .mat-primary{color:#ff4081!important}.rtl-container.pink.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.pink.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.pink.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.pink.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.pink.night .bg-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#ff4081}.rtl-container.pink.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.pink.night .currency-icon path,.rtl-container.pink.night .currency-icon polygon{fill:#fff}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.pink.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#ff4081}.rtl-container.pink.night .cc-data-block .cc-data-title{color:#ff4081}.rtl-container.pink.night .mat-stroked-button.mat-primary{border-color:#ff4081;color:#ff4081}.rtl-container.pink.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.pink.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.pink.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.pink.night .active-link,.rtl-container.pink.night .active-link .fa-icon-small,.rtl-container.pink.night .mat-select-panel .mat-option.mat-active,.rtl-container.pink.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#ff4081;font-weight:500;cursor:pointer;fill:#ff4081}.rtl-container.pink.night .help-expansion .mat-expansion-panel-header,.rtl-container.pink.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.pink.night .help-expansion .mat-expansion-indicator:after,.rtl-container.pink.night .help-expansion .mat-expansion-panel-content,.rtl-container.pink.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.pink.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.pink.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.pink.night .mat-expansion-panel,.rtl-container.pink.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.pink.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.pink.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.pink.night .mdc-data-table__header-cell,.rtl-container.pink.night .mat-mdc-paginator,.rtl-container.pink.night .mat-mdc-form-field-focus-overlay,.rtl-container.pink.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.pink.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.pink.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#ff4081}.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.pink.night .svg-donation{opacity:1!important}.rtl-container.pink.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#ff4081!important}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#ff4081!important}.rtl-container.pink.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#e91e63}.rtl-container.pink.night a{color:#ff4081!important;cursor:pointer}.rtl-container.pink.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.pink.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.pink.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.pink.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.pink.night .mat-mdc-select-placeholder,.rtl-container.pink.night .mat-mdc-select-value,.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#ff4081}.rtl-container.pink.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.pink.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#ff4081}.rtl-container.pink.night .mat-tree-node:hover,.rtl-container.pink.night .mat-nested-tree-node-parent:hover,.rtl-container.pink.night .mat-select-panel .mat-option:hover,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#ff4081;cursor:pointer;background:#ffffff0f}.rtl-container.pink.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.pink.night .mat-tree-node:hover .mat-icon,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.pink.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.pink.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#ff4081}.rtl-container.pink.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.pink.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.pink.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.pink.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#ff4081}.rtl-container.pink.night .mat-tree-node:hover .boltz-icon,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.pink.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#ff4081}.rtl-container.pink.night .mat-tree-node .sidenav-img,.rtl-container.pink.night .mat-nested-tree-node .sidenav-img,.rtl-container.pink.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.pink.night .page-title-container .page-title-img,.rtl-container.pink.night svg.top-icon-small{fill:#fff}.rtl-container.pink.night .selected-color{border-color:#f06292}.rtl-container.pink.night .mat-progress-bar-fill:after{background-color:#d81b60}.rtl-container.pink.night .chart-legend .legend-label:hover,.rtl-container.pink.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.pink.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.pink.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#ff4081}.rtl-container.pink.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.pink.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#ff4081}.rtl-container.pink.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#ff4081}.rtl-container.pink.night .mat-select-panel{background-color:#121212}.rtl-container.pink.night .mat-tree{background:#121212}.rtl-container.pink.night h4{color:#ff4081}.rtl-container.pink.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.pink.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.pink.night .dashboard-info-title{color:#ff4081}.rtl-container.pink.night .dashboard-info-value,.rtl-container.pink.night .dashboard-capacity-header{color:#fff}.rtl-container.pink.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.pink.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.pink.night .color-primary{color:#ff4081!important}.rtl-container.pink.night .dot-primary{background-color:#ff4081!important}.rtl-container.pink.night .dot-primary-lighter{background-color:#e91e63!important}.rtl-container.pink.night .mat-stepper-vertical{background-color:#121212}.rtl-container.pink.night .spinner-container h2{color:#ff4081}.rtl-container.pink.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.pink.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.pink.night svg .boltz-icon-fill{fill:#fff}.rtl-container.pink.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-primary-lighter{stroke:#f06292}.rtl-container.pink.night svg .stroke-color-primary{stroke:#e91e63}.rtl-container.pink.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.pink.night svg .fill-color-0{fill:#171717}.rtl-container.pink.night svg .fill-color-1{fill:#232323}.rtl-container.pink.night svg .fill-color-2{fill:#222}.rtl-container.pink.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.pink.night svg .fill-color-4{fill:#383838}.rtl-container.pink.night svg .fill-color-5{fill:#555}.rtl-container.pink.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.pink.night svg .fill-color-7{fill:#202020}.rtl-container.pink.night svg .fill-color-8{fill:#242424}.rtl-container.pink.night svg .fill-color-9{fill:#262626}.rtl-container.pink.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.pink.night svg .fill-color-11{fill:#171717}.rtl-container.pink.night svg .fill-color-12{fill:#ccc}.rtl-container.pink.night svg .fill-color-13{fill:#adadad}.rtl-container.pink.night svg .fill-color-14{fill:#ababab}.rtl-container.pink.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.pink.night svg .fill-color-16{fill:#707070}.rtl-container.pink.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.pink.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.pink.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.pink.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.pink.night svg .fill-color-21{fill:#cacaca}.rtl-container.pink.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.pink.night svg .fill-color-23{fill:#777}.rtl-container.pink.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.pink.night svg .fill-color-25{fill:#252525}.rtl-container.pink.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.pink.night svg .fill-color-27{fill:#000}.rtl-container.pink.night svg .fill-color-28{fill:#313131}.rtl-container.pink.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.pink.night svg .fill-color-30{fill:#fff}.rtl-container.pink.night svg .fill-color-31{fill:#e91e63}.rtl-container.pink.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.pink.night svg .fill-color-primary{fill:#e91e63}.rtl-container.pink.night svg .fill-color-primary-lighter{fill:#f06292}.rtl-container.pink.night svg .fill-color-primary-darker{fill:#ff4081}.rtl-container.pink.night .mat-select-value,.rtl-container.pink.night .mat-select-arrow{color:#fff}.rtl-container.pink.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.pink.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.pink.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.pink.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.pink.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.pink.night .mat-button.mat-primary,.rtl-container.pink.night .mat-icon-button.mat-primary,.rtl-container.pink.night .mat-stroked-button.mat-primary{color:#ff4081}.rtl-container.pink.night tr.alert.alert-warn .mat-cell,.rtl-container.pink.night tr.alert.alert-warn .mat-header-cell,.rtl-container.pink.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.pink.night .material-icons.info-icon{font-size:100%;color:#ff4081}.rtl-container.pink.night .material-icons.info-icon.info-icon-primary{color:#ff4081}.rtl-container.pink.night .material-icons.info-icon.info-icon-text,.rtl-container.pink.night .material-icons.info-icon.arrow-downward,.rtl-container.pink.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.pink.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#ff4081}.rtl-container.pink.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#ad1457}.rtl-container.pink.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#ff4081}.rtl-container.pink.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.pink.night .mat-progress-bar-buffer{background-color:#f8bbd0}.rtl-container.pink.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.pink.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.pink.night .foreground.mat-progress-spinner circle,.rtl-container.pink.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.pink.night .mat-toolbar-row,.rtl-container.pink.night .mat-toolbar-single-row{height:4rem}.rtl-container.pink.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.pink.night a{color:#e91e63}.rtl-container.pink.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.pink.night .h-active-link{border-bottom:2px solid white}.rtl-container.pink.night .mat-icon-36{color:#ffffffb3}.rtl-container.pink.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.pink.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.pink.night .genseed-message{width:10%;color:#e91e63}.rtl-container.pink.night .border-primary{border:1px solid #e91e63}.rtl-container.pink.night .border-accent{border:1px solid #aaaaaa}.rtl-container.pink.night .border-warn{border:1px solid #b00020}.rtl-container.pink.night .material-icons.primary{color:#e91e63}.rtl-container.pink.night .material-icons.accent{color:#aaa}.rtl-container.pink.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.pink.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.pink.night .row-disabled{background-color:gray}.rtl-container.pink.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.pink.night .mat-mdc-card-content,.rtl-container.pink.night .mat-mdc-card-subtitle,.rtl-container.pink.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.pink.night .mat-menu-panel{min-width:4rem}.rtl-container.pink.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.pink.night .horizontal-button:hover{background:#f06292;color:#aaa}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#e91e63}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.pink.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.pink.night .mat-button,.rtl-container.pink.night .mat-icon-button,.rtl-container.pink.night .mat-stroked-button,.rtl-container.pink.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.pink.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.pink.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.pink.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.pink.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.pink.night .mat-cell,.rtl-container.pink.night .mat-header-cell,.rtl-container.pink.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.pink.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.pink.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#e91e63}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#e91e63;opacity:1}.rtl-container.pink.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.pink.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.pink.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.pink.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.pink.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.pink.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.pink.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.pink.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.pink.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.pink.night .more-button{color:#fff}.rtl-container.pink.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.pink.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.pink.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.pink.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.pink.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.pink.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.pink.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.pink.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.pink.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.pink.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.pink.night .tab-badge .mat-badge-content.mat-badge-active{background:#e91e63}.rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width: 37.5em){.rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.pink.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.pink.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.pink.night .rtl-select-overlay{min-width:7rem}}.rtl-container.pink.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.pink.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.pink.night .table-actions-button{min-width:8rem}.rtl-container.pink.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.pink.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.pink.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.pink.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#f48fb1!important}.rtl-container.pink.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#d81b60!important}.rtl-container.pink.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.pink.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.pink.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.pink.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.pink.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.pink.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.pink.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.pink.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.pink.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.pink.night .color-warn{color:#b00020}.rtl-container.pink.night .fill-warn{fill:#b00020}.rtl-container.pink.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.pink.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.pink.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.pink.night .alert.alert-info a{color:#004085}.rtl-container.pink.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.pink.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.pink.night .alert.alert-warn a{color:#856404}.rtl-container.pink.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.pink.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.pink.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.pink.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.pink.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.pink.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.pink.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.pink.night .failed-status{color:#b00020}.rtl-container.pink.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.pink.night .svg-fill-primary{fill:#e91e63}.rtl-container.pink.night .svg-fill-primary-lighter{fill:#f06292}.rtl-container.pink.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.pink.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.pink.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.pink.night .dashboard-card-content .underline,.rtl-container.pink.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.pink.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.pink.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#e91e63}.rtl-container.pink.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.pink.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#e91e63}.rtl-container.pink.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.pink.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#e91e63}.rtl-container.pink.night .mat-mdc-form-field-hint .currency-icon{color:#e91e63}.rtl-container.pink.night .mat-mdc-form-field-hint .currency-icon path{fill:#e91e63}.rtl-container.pink.night .fa-icon-primary{color:#e91e63}.rtl-container.pink.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night ngx-charts-bar-vertical text,.rtl-container.pink.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.pink.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.pink.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.pink.night .mat-paginator-container{padding:0}.rtl-container.pink.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.pink.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.pink.night .invoice-animation-div .particles-circle{position:absolute;background-color:#e91e63;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #e91e63;background-color:transparent}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.pink.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.pink.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.pink.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.pink.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.yellow.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #945f1f;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-filled-caret-color: #945f1f;--mat-form-field-filled-focus-active-indicator-color: #945f1f;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-outlined-caret-color: #945f1f;--mat-form-field-outlined-focus-outline-color: #945f1f;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #945f1f;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #945f1f;--mat-slide-toggle-selected-handle-color: #945f1f;--mat-slide-toggle-selected-hover-state-layer-color: #945f1f;--mat-slide-toggle-selected-pressed-state-layer-color: #945f1f;--mat-slide-toggle-selected-focus-handle-color: #945f1f;--mat-slide-toggle-selected-hover-handle-color: #945f1f;--mat-slide-toggle-selected-pressed-handle-color: #945f1f;--mat-slide-toggle-selected-focus-track-color: #b48f62;--mat-slide-toggle-selected-hover-track-color: #b48f62;--mat-slide-toggle-selected-pressed-track-color: #b48f62;--mat-slide-toggle-selected-track-color: #b48f62;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #945f1f;--mat-slider-focus-handle-color: #945f1f;--mat-slider-handle-color: #945f1f;--mat-slider-hover-handle-color: #945f1f;--mat-slider-focus-state-layer-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #945f1f 4%, transparent);--mat-slider-inactive-track-color: #945f1f;--mat-slider-ripple-color: #945f1f;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #945f1f;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #b48f62;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #945f1f;--mat-badge-background-color: #945f1f;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #945f1f 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #945f1f;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #945f1f 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #945f1f 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #945f1f;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #945f1f;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #945f1f;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #945f1f;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.yellow.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.yellow.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.yellow.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #945f1f;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #945f1f;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.yellow.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.yellow.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.yellow.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #945f1f;--mat-progress-bar-track-color: rgba(148, 95, 31, .25)}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.yellow.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.yellow.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.yellow.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.yellow.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.yellow.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #945f1f;--mat-chip-elevated-disabled-container-color: #945f1f;--mat-chip-elevated-selected-container-color: #945f1f;--mat-chip-flat-disabled-selected-container-color: #945f1f;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.yellow.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.yellow.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.yellow.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #945f1f;--mat-radio-selected-hover-icon-color: #945f1f;--mat-radio-selected-icon-color: #945f1f;--mat-radio-selected-pressed-icon-color: #945f1f;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.yellow.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.yellow.day .mdc-list-item__start,.rtl-container.yellow.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #945f1f;--mat-radio-selected-hover-icon-color: #945f1f;--mat-radio-selected-icon-color: #945f1f;--mat-radio-selected-pressed-icon-color: #945f1f;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-accent .mdc-list-item__start,.rtl-container.yellow.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-warn .mdc-list-item__start,.rtl-container.yellow.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #945f1f;--mat-checkbox-selected-hover-icon-color: #945f1f;--mat-checkbox-selected-icon-color: #945f1f;--mat-checkbox-selected-pressed-icon-color: #945f1f;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #945f1f;--mat-checkbox-selected-hover-state-layer-color: #945f1f;--mat-checkbox-selected-pressed-state-layer-color: #945f1f;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#945f1f}.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.yellow.day .mat-mdc-tab-group,.rtl-container.yellow.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #945f1f;--mat-tab-active-ripple-color: #945f1f;--mat-tab-inactive-ripple-color: #945f1f;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #945f1f;--mat-tab-active-hover-label-text-color: #945f1f;--mat-tab-active-focus-indicator-color: #945f1f;--mat-tab-active-hover-indicator-color: #945f1f;--mat-tab-active-indicator-color: #945f1f}.rtl-container.yellow.day .mat-mdc-tab-group.mat-accent,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.yellow.day .mat-mdc-tab-group.mat-warn,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #945f1f;--mat-tab-foreground-color: #ffffff}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.yellow.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #945f1f;--mat-checkbox-selected-hover-icon-color: #945f1f;--mat-checkbox-selected-icon-color: #945f1f;--mat-checkbox-selected-pressed-icon-color: #945f1f;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #945f1f;--mat-checkbox-selected-hover-state-layer-color: #945f1f;--mat-checkbox-selected-pressed-state-layer-color: #945f1f;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-button.mat-primary,.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.yellow.day .mat-mdc-raised-button.mat-primary,.rtl-container.yellow.day .mat-mdc-outlined-button.mat-primary,.rtl-container.yellow.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #945f1f;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #945f1f;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-button-outlined-state-layer-color: #945f1f;--mat-button-protected-container-color: #945f1f;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #945f1f;--mat-button-text-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-button-text-state-layer-color: #945f1f;--mat-button-tonal-container-color: #945f1f;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.rtl-container.yellow.day .mat-mdc-button.mat-accent,.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.yellow.day .mat-mdc-raised-button.mat-accent,.rtl-container.yellow.day .mat-mdc-outlined-button.mat-accent,.rtl-container.yellow.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.yellow.day .mat-mdc-button.mat-warn,.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.yellow.day .mat-mdc-raised-button.mat-warn,.rtl-container.yellow.day .mat-mdc-outlined-button.mat-warn,.rtl-container.yellow.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.yellow.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #945f1f;--mat-icon-button-state-layer-color: #945f1f;--mat-icon-button-ripple-color: color-mix(in srgb, #945f1f 12%, transparent)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.yellow.day .mat-mdc-fab.mat-primary,.rtl-container.yellow.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #945f1f;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-fab-small-container-color: #945f1f;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.rtl-container.yellow.day .mat-mdc-fab.mat-accent,.rtl-container.yellow.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.yellow.day .mat-mdc-fab.mat-warn,.rtl-container.yellow.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.yellow.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.yellow.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.yellow.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.yellow.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.yellow.day .mat-datepicker-content.mat-accent,.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-datepicker-content.mat-warn,.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-icon.mat-primary{--mat-icon-color: #945f1f}.rtl-container.yellow.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.yellow.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.yellow.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #945f1f;--mat-toolbar-container-text-color: #ffffff}.rtl-container.yellow.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.yellow.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.yellow.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.yellow.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.yellow.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.yellow.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.yellow.day .bg-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.yellow.day .page-title,.rtl-container.yellow.day .mat-mdc-select-value,.rtl-container.yellow.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.yellow.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.yellow.day .help-expansion .mat-expansion-indicator:after,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-content,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#945f1f}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.yellow.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#945f1f}.rtl-container.yellow.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.yellow.day .mat-tree-node:hover,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover,.rtl-container.yellow.day .mat-select-panel .mat-option:hover,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#945f1f;cursor:pointer}.rtl-container.yellow.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.yellow.day .mat-tree-node:hover .mat-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#945f1f}.rtl-container.yellow.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#945f1f}.rtl-container.yellow.day .spinner-container h2{color:#fff}.rtl-container.yellow.day .ng-fa-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.yellow.day .mat-form-field-suffix{color:#0000008a}.rtl-container.yellow.day .mat-stroked-button.mat-primary{border-color:#945f1f}.rtl-container.yellow.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.yellow.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.yellow.day .selected-color{border-color:#b48f62}.rtl-container.yellow.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.yellow.day table.mat-mdc-table thead tr th,.rtl-container.yellow.day .page-title-container,.rtl-container.yellow.day .page-sub-title-container{color:#0000008a}.rtl-container.yellow.day .page-title-container .page-title-img,.rtl-container.yellow.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.yellow.day .page-title-container .mat-input-element,.rtl-container.yellow.day .page-title-container .mat-radio-label-content,.rtl-container.yellow.day .page-title-container .theme-name,.rtl-container.yellow.day .page-sub-title-container .mat-input-element,.rtl-container.yellow.day .page-sub-title-container .mat-radio-label-content,.rtl-container.yellow.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.yellow.day .cc-data-block .cc-data-title{color:#945f1f}.rtl-container.yellow.day .active-link,.rtl-container.yellow.day .active-link .fa-icon-small{color:#945f1f;font-weight:500;cursor:pointer;fill:#945f1f}.rtl-container.yellow.day .mat-tree-node:hover,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover,.rtl-container.yellow.day .mat-select-panel .mat-option:hover,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#945f1f;cursor:pointer;background:#0000000a}.rtl-container.yellow.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.yellow.day .mat-tree-node:hover .mat-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#945f1f}.rtl-container.yellow.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#945f1f}.rtl-container.yellow.day .mat-tree-node .sidenav-img,.rtl-container.yellow.day .mat-nested-tree-node .sidenav-img,.rtl-container.yellow.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.yellow.day .page-title-container .page-title-img,.rtl-container.yellow.day svg.top-icon-small{fill:#000000de}.rtl-container.yellow.day .mat-progress-bar-fill:after{background-color:#65320a}.rtl-container.yellow.day .modal-qr-code-container{background:#0000001f}.rtl-container.yellow.day .mdc-tab__text-label,.rtl-container.yellow.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.yellow.day .mat-mdc-card,.rtl-container.yellow.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.yellow.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.yellow.day .dashboard-info-title{color:#945f1f}.rtl-container.yellow.day .dashboard-capacity-header,.rtl-container.yellow.day .dashboard-info-value{color:#0000008a}.rtl-container.yellow.day .color-primary{color:#945f1f!important}.rtl-container.yellow.day .dot-primary{background-color:#945f1f!important}.rtl-container.yellow.day .dot-primary-lighter{background-color:#b48f62!important}.rtl-container.yellow.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-mdc-form-field-hint{color:#945f1f}.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.yellow.day .mat-mdc-form-field-hint fa-icon svg path{fill:#945f1f}.rtl-container.yellow.day .currency-icon path,.rtl-container.yellow.day .currency-icon polygon{fill:#0000008a}.rtl-container.yellow.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.yellow.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.yellow.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-primary-lighter{stroke:#b48f62}.rtl-container.yellow.day svg .stroke-color-primary{stroke:#945f1f}.rtl-container.yellow.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.yellow.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-1{fill:#fff}.rtl-container.yellow.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.yellow.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-6{fill:#fff}.rtl-container.yellow.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-9{fill:#fff}.rtl-container.yellow.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.yellow.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.yellow.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-16{fill:#404040}.rtl-container.yellow.day svg .fill-color-17{fill:#404040}.rtl-container.yellow.day svg .fill-color-18{fill:#000}.rtl-container.yellow.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-24{fill:#000}.rtl-container.yellow.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.yellow.day svg .fill-color-27{fill:#000}.rtl-container.yellow.day svg .fill-color-28{fill:#313131}.rtl-container.yellow.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-30{fill:#fff}.rtl-container.yellow.day svg .fill-color-31{fill:#945f1f}.rtl-container.yellow.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.yellow.day svg .fill-color-primary{fill:#945f1f}.rtl-container.yellow.day svg .fill-color-primary-lighter{fill:#b48f62}.rtl-container.yellow.day svg .fill-color-primary-darker{fill:#945f1f}.rtl-container.yellow.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.yellow.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.yellow.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#945f1f}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.yellow.day .material-icons.mat-icon-no-color,.rtl-container.yellow.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.yellow.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.yellow.day .material-icons.info-icon.info-icon-primary{color:#945f1f}.rtl-container.yellow.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.yellow.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.yellow.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.yellow.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.yellow.day .material-icons.info-icon.arrow-downward,.rtl-container.yellow.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.yellow.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#945f1f}.rtl-container.yellow.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#65320a}.rtl-container.yellow.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#caaf8f}.rtl-container.yellow.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.yellow.day .mat-progress-bar-buffer{background-color:#dfcfbc}.rtl-container.yellow.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.yellow.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.yellow.day .foreground.mat-progress-spinner circle,.rtl-container.yellow.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.yellow.day .mat-toolbar-row,.rtl-container.yellow.day .mat-toolbar-single-row{height:4rem}.rtl-container.yellow.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day a{color:#945f1f}.rtl-container.yellow.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.yellow.day .h-active-link{border-bottom:2px solid white}.rtl-container.yellow.day .mat-icon-36{color:#0000008a}.rtl-container.yellow.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.yellow.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.yellow.day .genseed-message{width:10%;color:#945f1f}.rtl-container.yellow.day .border-primary{border:1px solid #945f1f}.rtl-container.yellow.day .border-accent{border:1px solid #9e9e9e}.rtl-container.yellow.day .border-warn{border:1px solid #b00020}.rtl-container.yellow.day .material-icons.primary{color:#945f1f}.rtl-container.yellow.day .material-icons.accent{color:#9e9e9e}.rtl-container.yellow.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.yellow.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.yellow.day .row-disabled{background-color:gray}.rtl-container.yellow.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.yellow.day .mat-mdc-card-content,.rtl-container.yellow.day .mat-mdc-card-subtitle,.rtl-container.yellow.day .mat-mdc-card-title{color:#0000008a}.rtl-container.yellow.day .mat-menu-panel{min-width:4rem}.rtl-container.yellow.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.yellow.day .horizontal-button:hover{background:#b48f62;color:#9e9e9e}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#945f1f}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.yellow.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.yellow.day .mat-button,.rtl-container.yellow.day .mat-icon-button,.rtl-container.yellow.day .mat-stroked-button,.rtl-container.yellow.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.yellow.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.yellow.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.yellow.day .cc-data-block .cc-data-value{color:#000}.rtl-container.yellow.day .mat-cell,.rtl-container.yellow.day .mat-header-cell,.rtl-container.yellow.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.yellow.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.yellow.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#945f1f}.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#945f1f;opacity:1}.rtl-container.yellow.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.yellow.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.yellow.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.yellow.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.yellow.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.yellow.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.yellow.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.yellow.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.yellow.day .more-button{color:#000}.rtl-container.yellow.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.yellow.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.yellow.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.yellow.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.yellow.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.yellow.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.yellow.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.yellow.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.yellow.day .tab-badge .mat-badge-content.mat-badge-active{background:#945f1f}.rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.yellow.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.yellow.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day .rtl-select-overlay{min-width:7rem}}.rtl-container.yellow.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.yellow.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.yellow.day .table-actions-button{min-width:8rem}.rtl-container.yellow.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.yellow.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.yellow.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.yellow.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#caaf8f!important}.rtl-container.yellow.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#8c571b!important}.rtl-container.yellow.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.yellow.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.yellow.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.yellow.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.yellow.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.yellow.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.yellow.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.yellow.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.yellow.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.yellow.day .color-warn{color:#b00020}.rtl-container.yellow.day .fill-warn{fill:#b00020}.rtl-container.yellow.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.yellow.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.yellow.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.yellow.day .alert.alert-info a{color:#004085}.rtl-container.yellow.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.yellow.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.yellow.day .alert.alert-warn a{color:#856404}.rtl-container.yellow.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.yellow.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.yellow.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.yellow.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.yellow.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.yellow.day .failed-status{color:#b00020}.rtl-container.yellow.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.yellow.day .svg-fill-primary{fill:#945f1f}.rtl-container.yellow.day .svg-fill-primary-lighter{fill:#b48f62}.rtl-container.yellow.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.yellow.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.yellow.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.yellow.day .dashboard-card-content .underline,.rtl-container.yellow.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.yellow.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#945f1f}.rtl-container.yellow.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#945f1f}.rtl-container.yellow.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#945f1f}.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon{color:#945f1f}.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon path{fill:#945f1f}.rtl-container.yellow.day .fa-icon-primary{color:#945f1f}.rtl-container.yellow.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day ngx-charts-bar-vertical text,.rtl-container.yellow.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.yellow.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.yellow.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.yellow.day .mat-paginator-container{padding:0}.rtl-container.yellow.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.yellow.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.yellow.day .invoice-animation-div .particles-circle{position:absolute;background-color:#945f1f;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #945f1f;background-color:transparent}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.yellow.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.yellow.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.yellow.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.yellow.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.yellow.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #945f1f;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-filled-caret-color: #945f1f;--mat-form-field-filled-focus-active-indicator-color: #945f1f;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-outlined-caret-color: #945f1f;--mat-form-field-outlined-focus-outline-color: #945f1f;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #945f1f;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #945f1f;--mat-slide-toggle-selected-handle-color: #945f1f;--mat-slide-toggle-selected-hover-state-layer-color: #945f1f;--mat-slide-toggle-selected-pressed-state-layer-color: #945f1f;--mat-slide-toggle-selected-focus-handle-color: #945f1f;--mat-slide-toggle-selected-hover-handle-color: #945f1f;--mat-slide-toggle-selected-pressed-handle-color: #945f1f;--mat-slide-toggle-selected-focus-track-color: #8c571b;--mat-slide-toggle-selected-hover-track-color: #8c571b;--mat-slide-toggle-selected-pressed-track-color: #8c571b;--mat-slide-toggle-selected-track-color: #8c571b;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #945f1f;--mat-slider-focus-handle-color: #945f1f;--mat-slider-handle-color: #945f1f;--mat-slider-hover-handle-color: #945f1f;--mat-slider-focus-state-layer-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #945f1f 4%, transparent);--mat-slider-inactive-track-color: #945f1f;--mat-slider-ripple-color: #945f1f;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #945f1f;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #8c571b;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #945f1f;--mat-badge-background-color: #945f1f;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #945f1f 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #945f1f;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #945f1f 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #945f1f 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #945f1f;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #945f1f;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #945f1f;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #945f1f;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.yellow.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.yellow.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.yellow.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #945f1f;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #945f1f;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.yellow.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.yellow.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.yellow.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #945f1f;--mat-progress-bar-track-color: rgba(148, 95, 31, .25)}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.yellow.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.yellow.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.yellow.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.yellow.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.yellow.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #945f1f;--mat-chip-elevated-disabled-container-color: #945f1f;--mat-chip-elevated-selected-container-color: #945f1f;--mat-chip-flat-disabled-selected-container-color: #945f1f;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.yellow.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.yellow.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.yellow.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #945f1f;--mat-radio-selected-hover-icon-color: #945f1f;--mat-radio-selected-icon-color: #945f1f;--mat-radio-selected-pressed-icon-color: #945f1f;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.yellow.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.yellow.night .mdc-list-item__start,.rtl-container.yellow.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #945f1f;--mat-radio-selected-hover-icon-color: #945f1f;--mat-radio-selected-icon-color: #945f1f;--mat-radio-selected-pressed-icon-color: #945f1f;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-accent .mdc-list-item__start,.rtl-container.yellow.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-warn .mdc-list-item__start,.rtl-container.yellow.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #945f1f;--mat-checkbox-selected-hover-icon-color: #945f1f;--mat-checkbox-selected-icon-color: #945f1f;--mat-checkbox-selected-pressed-icon-color: #945f1f;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #945f1f;--mat-checkbox-selected-hover-state-layer-color: #945f1f;--mat-checkbox-selected-pressed-state-layer-color: #945f1f;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#945f1f}.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.yellow.night .mat-mdc-tab-group,.rtl-container.yellow.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #945f1f;--mat-tab-active-ripple-color: #945f1f;--mat-tab-inactive-ripple-color: #945f1f;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #945f1f;--mat-tab-active-hover-label-text-color: #945f1f;--mat-tab-active-focus-indicator-color: #945f1f;--mat-tab-active-hover-indicator-color: #945f1f;--mat-tab-active-indicator-color: #945f1f}.rtl-container.yellow.night .mat-mdc-tab-group.mat-accent,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.yellow.night .mat-mdc-tab-group.mat-warn,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #945f1f;--mat-tab-foreground-color: #ffffff}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.yellow.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #945f1f;--mat-checkbox-selected-hover-icon-color: #945f1f;--mat-checkbox-selected-icon-color: #945f1f;--mat-checkbox-selected-pressed-icon-color: #945f1f;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #945f1f;--mat-checkbox-selected-hover-state-layer-color: #945f1f;--mat-checkbox-selected-pressed-state-layer-color: #945f1f;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-button.mat-primary,.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.yellow.night .mat-mdc-raised-button.mat-primary,.rtl-container.yellow.night .mat-mdc-outlined-button.mat-primary,.rtl-container.yellow.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #945f1f;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #945f1f;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-button-outlined-state-layer-color: #945f1f;--mat-button-protected-container-color: #945f1f;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #945f1f;--mat-button-text-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-button-text-state-layer-color: #945f1f;--mat-button-tonal-container-color: #945f1f;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.rtl-container.yellow.night .mat-mdc-button.mat-accent,.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.yellow.night .mat-mdc-raised-button.mat-accent,.rtl-container.yellow.night .mat-mdc-outlined-button.mat-accent,.rtl-container.yellow.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.yellow.night .mat-mdc-button.mat-warn,.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.yellow.night .mat-mdc-raised-button.mat-warn,.rtl-container.yellow.night .mat-mdc-outlined-button.mat-warn,.rtl-container.yellow.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #945f1f;--mat-icon-button-state-layer-color: #945f1f;--mat-icon-button-ripple-color: color-mix(in srgb, #945f1f 12%, transparent)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.yellow.night .mat-mdc-fab.mat-primary,.rtl-container.yellow.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #945f1f;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-fab-small-container-color: #945f1f;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.rtl-container.yellow.night .mat-mdc-fab.mat-accent,.rtl-container.yellow.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.yellow.night .mat-mdc-fab.mat-warn,.rtl-container.yellow.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.yellow.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.yellow.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.yellow.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.yellow.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.yellow.night .mat-datepicker-content.mat-accent,.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.yellow.night .mat-datepicker-content.mat-warn,.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.yellow.night .mat-icon.mat-primary{--mat-icon-color: #945f1f}.rtl-container.yellow.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.yellow.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.yellow.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.yellow.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #945f1f;--mat-toolbar-container-text-color: #ffffff}.rtl-container.yellow.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.yellow.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.yellow.night .mat-primary{color:#ffa164!important}.rtl-container.yellow.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.yellow.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.yellow.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.yellow.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.yellow.night .bg-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.yellow.night .currency-icon path,.rtl-container.yellow.night .currency-icon polygon{fill:#fff}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.yellow.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#ffa164}.rtl-container.yellow.night .cc-data-block .cc-data-title{color:#ffa164}.rtl-container.yellow.night .mat-stroked-button.mat-primary{border-color:#ffa164;color:#ffa164}.rtl-container.yellow.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.yellow.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.yellow.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.yellow.night .active-link,.rtl-container.yellow.night .active-link .fa-icon-small,.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active,.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#ffa164;font-weight:500;cursor:pointer;fill:#ffa164}.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.yellow.night .help-expansion .mat-expansion-indicator:after,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-content,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.yellow.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.yellow.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.yellow.night .mat-expansion-panel,.rtl-container.yellow.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.yellow.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.yellow.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.yellow.night .mdc-data-table__header-cell,.rtl-container.yellow.night .mat-mdc-paginator,.rtl-container.yellow.night .mat-mdc-form-field-focus-overlay,.rtl-container.yellow.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.yellow.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.yellow.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#ffa164}.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.yellow.night .svg-donation{opacity:1!important}.rtl-container.yellow.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#ffa164!important}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#ffa164!important}.rtl-container.yellow.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#945f1f}.rtl-container.yellow.night a{color:#ffa164!important;cursor:pointer}.rtl-container.yellow.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.yellow.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.yellow.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.yellow.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.yellow.night .mat-mdc-select-placeholder,.rtl-container.yellow.night .mat-mdc-select-value,.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#ffa164}.rtl-container.yellow.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.yellow.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#ffa164}.rtl-container.yellow.night .mat-tree-node:hover,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover,.rtl-container.yellow.night .mat-select-panel .mat-option:hover,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#ffa164;cursor:pointer;background:#ffffff0f}.rtl-container.yellow.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.yellow.night .mat-tree-node:hover .mat-icon,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#ffa164}.rtl-container.yellow.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.yellow.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#ffa164}.rtl-container.yellow.night .mat-tree-node:hover .boltz-icon,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#ffa164}.rtl-container.yellow.night .mat-tree-node .sidenav-img,.rtl-container.yellow.night .mat-nested-tree-node .sidenav-img,.rtl-container.yellow.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.yellow.night .page-title-container .page-title-img,.rtl-container.yellow.night svg.top-icon-small{fill:#fff}.rtl-container.yellow.night .selected-color{border-color:#b48f62}.rtl-container.yellow.night .mat-progress-bar-fill:after{background-color:#8c571b}.rtl-container.yellow.night .chart-legend .legend-label:hover,.rtl-container.yellow.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.yellow.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.yellow.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#ffa164}.rtl-container.yellow.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.yellow.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#ffa164}.rtl-container.yellow.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#ffa164}.rtl-container.yellow.night .mat-select-panel{background-color:#121212}.rtl-container.yellow.night .mat-tree{background:#121212}.rtl-container.yellow.night h4{color:#ffa164}.rtl-container.yellow.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.yellow.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.yellow.night .dashboard-info-title{color:#ffa164}.rtl-container.yellow.night .dashboard-info-value,.rtl-container.yellow.night .dashboard-capacity-header{color:#fff}.rtl-container.yellow.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.yellow.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.yellow.night .color-primary{color:#ffa164!important}.rtl-container.yellow.night .dot-primary{background-color:#ffa164!important}.rtl-container.yellow.night .dot-primary-lighter{background-color:#945f1f!important}.rtl-container.yellow.night .mat-stepper-vertical{background-color:#121212}.rtl-container.yellow.night .spinner-container h2{color:#ffa164}.rtl-container.yellow.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.yellow.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.yellow.night svg .boltz-icon-fill{fill:#fff}.rtl-container.yellow.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-primary-lighter{stroke:#b48f62}.rtl-container.yellow.night svg .stroke-color-primary{stroke:#945f1f}.rtl-container.yellow.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.yellow.night svg .fill-color-0{fill:#171717}.rtl-container.yellow.night svg .fill-color-1{fill:#232323}.rtl-container.yellow.night svg .fill-color-2{fill:#222}.rtl-container.yellow.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.yellow.night svg .fill-color-4{fill:#383838}.rtl-container.yellow.night svg .fill-color-5{fill:#555}.rtl-container.yellow.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.yellow.night svg .fill-color-7{fill:#202020}.rtl-container.yellow.night svg .fill-color-8{fill:#242424}.rtl-container.yellow.night svg .fill-color-9{fill:#262626}.rtl-container.yellow.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.yellow.night svg .fill-color-11{fill:#171717}.rtl-container.yellow.night svg .fill-color-12{fill:#ccc}.rtl-container.yellow.night svg .fill-color-13{fill:#adadad}.rtl-container.yellow.night svg .fill-color-14{fill:#ababab}.rtl-container.yellow.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.yellow.night svg .fill-color-16{fill:#707070}.rtl-container.yellow.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.yellow.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.yellow.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.yellow.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.yellow.night svg .fill-color-21{fill:#cacaca}.rtl-container.yellow.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.yellow.night svg .fill-color-23{fill:#777}.rtl-container.yellow.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.yellow.night svg .fill-color-25{fill:#252525}.rtl-container.yellow.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.yellow.night svg .fill-color-27{fill:#000}.rtl-container.yellow.night svg .fill-color-28{fill:#313131}.rtl-container.yellow.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.yellow.night svg .fill-color-30{fill:#fff}.rtl-container.yellow.night svg .fill-color-31{fill:#945f1f}.rtl-container.yellow.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.yellow.night svg .fill-color-primary{fill:#945f1f}.rtl-container.yellow.night svg .fill-color-primary-lighter{fill:#b48f62}.rtl-container.yellow.night svg .fill-color-primary-darker{fill:#ffa164}.rtl-container.yellow.night .mat-select-value,.rtl-container.yellow.night .mat-select-arrow{color:#fff}.rtl-container.yellow.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.yellow.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.yellow.night .mat-button.mat-primary,.rtl-container.yellow.night .mat-icon-button.mat-primary,.rtl-container.yellow.night .mat-stroked-button.mat-primary{color:#ffa164}.rtl-container.yellow.night tr.alert.alert-warn .mat-cell,.rtl-container.yellow.night tr.alert.alert-warn .mat-header-cell,.rtl-container.yellow.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.yellow.night .material-icons.info-icon{font-size:100%;color:#ffa164}.rtl-container.yellow.night .material-icons.info-icon.info-icon-primary{color:#ffa164}.rtl-container.yellow.night .material-icons.info-icon.info-icon-text,.rtl-container.yellow.night .material-icons.info-icon.arrow-downward,.rtl-container.yellow.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.yellow.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#ffa164}.rtl-container.yellow.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#774312}.rtl-container.yellow.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#ffa164}.rtl-container.yellow.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.yellow.night .mat-progress-bar-buffer{background-color:#dfcfbc}.rtl-container.yellow.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.yellow.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.yellow.night .foreground.mat-progress-spinner circle,.rtl-container.yellow.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.yellow.night .mat-toolbar-row,.rtl-container.yellow.night .mat-toolbar-single-row{height:4rem}.rtl-container.yellow.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.yellow.night a{color:#945f1f}.rtl-container.yellow.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.yellow.night .h-active-link{border-bottom:2px solid white}.rtl-container.yellow.night .mat-icon-36{color:#ffffffb3}.rtl-container.yellow.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.yellow.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.yellow.night .genseed-message{width:10%;color:#945f1f}.rtl-container.yellow.night .border-primary{border:1px solid #945f1f}.rtl-container.yellow.night .border-accent{border:1px solid #aaaaaa}.rtl-container.yellow.night .border-warn{border:1px solid #b00020}.rtl-container.yellow.night .material-icons.primary{color:#945f1f}.rtl-container.yellow.night .material-icons.accent{color:#aaa}.rtl-container.yellow.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.yellow.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.yellow.night .row-disabled{background-color:gray}.rtl-container.yellow.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.yellow.night .mat-mdc-card-content,.rtl-container.yellow.night .mat-mdc-card-subtitle,.rtl-container.yellow.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.yellow.night .mat-menu-panel{min-width:4rem}.rtl-container.yellow.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.yellow.night .horizontal-button:hover{background:#b48f62;color:#aaa}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#945f1f}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.yellow.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.yellow.night .mat-button,.rtl-container.yellow.night .mat-icon-button,.rtl-container.yellow.night .mat-stroked-button,.rtl-container.yellow.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.yellow.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.yellow.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.yellow.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.yellow.night .mat-cell,.rtl-container.yellow.night .mat-header-cell,.rtl-container.yellow.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.yellow.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.yellow.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#945f1f}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#945f1f;opacity:1}.rtl-container.yellow.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.yellow.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.yellow.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.yellow.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.yellow.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.yellow.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.yellow.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.yellow.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.yellow.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.yellow.night .more-button{color:#fff}.rtl-container.yellow.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.yellow.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.yellow.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.yellow.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.yellow.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.yellow.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.yellow.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.yellow.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.yellow.night .tab-badge .mat-badge-content.mat-badge-active{background:#945f1f}.rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.yellow.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.yellow.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night .rtl-select-overlay{min-width:7rem}}.rtl-container.yellow.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.yellow.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.yellow.night .table-actions-button{min-width:8rem}.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.yellow.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.yellow.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.yellow.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#caaf8f!important}.rtl-container.yellow.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#8c571b!important}.rtl-container.yellow.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.yellow.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.yellow.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.yellow.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.yellow.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.yellow.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.yellow.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.yellow.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.yellow.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.yellow.night .color-warn{color:#b00020}.rtl-container.yellow.night .fill-warn{fill:#b00020}.rtl-container.yellow.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.yellow.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.yellow.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.yellow.night .alert.alert-info a{color:#004085}.rtl-container.yellow.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.yellow.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.yellow.night .alert.alert-warn a{color:#856404}.rtl-container.yellow.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.yellow.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.yellow.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.yellow.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.yellow.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.yellow.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.yellow.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.yellow.night .failed-status{color:#b00020}.rtl-container.yellow.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.yellow.night .svg-fill-primary{fill:#945f1f}.rtl-container.yellow.night .svg-fill-primary-lighter{fill:#b48f62}.rtl-container.yellow.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.yellow.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.yellow.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.yellow.night .dashboard-card-content .underline,.rtl-container.yellow.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.yellow.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#945f1f}.rtl-container.yellow.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#945f1f}.rtl-container.yellow.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#945f1f}.rtl-container.yellow.night .mat-mdc-form-field-hint .currency-icon{color:#945f1f}.rtl-container.yellow.night .mat-mdc-form-field-hint .currency-icon path{fill:#945f1f}.rtl-container.yellow.night .fa-icon-primary{color:#945f1f}.rtl-container.yellow.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night ngx-charts-bar-vertical text,.rtl-container.yellow.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.yellow.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.yellow.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.yellow.night .mat-paginator-container{padding:0}.rtl-container.yellow.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.yellow.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.yellow.night .invoice-animation-div .particles-circle{position:absolute;background-color:#945f1f;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #945f1f;background-color:transparent}@keyframes particles-1{0%{transform:scale(1);visibility:visible}to{left:199px;top:201px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}@keyframes particles-2{0%{transform:scale(1);visibility:visible}to{left:-40px;top:82px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}@keyframes particles-3{0%{transform:scale(1);visibility:visible}to{left:162px;top:109px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}@keyframes particles-4{0%{transform:scale(1);visibility:visible}to{left:223px;top:78px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}@keyframes particles-5{0%{transform:scale(1);visibility:visible}to{left:184px;top:113px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}@keyframes particles-6{0%{transform:scale(1);visibility:visible}to{left:-42px;top:-238px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}@keyframes particles-7{0%{transform:scale(1);visibility:visible}to{left:150px;top:-98px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}@keyframes particles-8{0%{transform:scale(1);visibility:visible}to{left:62px;top:225px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}@keyframes particles-9{0%{transform:scale(1);visibility:visible}to{left:113px;top:86px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}@keyframes particles-10{0%{transform:scale(1);visibility:visible}to{left:229px;top:-127px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}@keyframes particles-11{0%{transform:scale(1);visibility:visible}to{left:243px;top:-106px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}@keyframes particles-12{0%{transform:scale(1);visibility:visible}to{left:-168px;top:138px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}@keyframes particles-13{0%{transform:scale(1);visibility:visible}to{left:-124px;top:62px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}@keyframes particles-14{0%{transform:scale(1);visibility:visible}to{left:246px;top:30px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}@keyframes particles-15{0%{transform:scale(1);visibility:visible}to{left:-22px;top:-171px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}@keyframes particles-16{0%{transform:scale(1);visibility:visible}to{left:-144px;top:115px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}@keyframes particles-17{0%{transform:scale(1);visibility:visible}to{left:209px;top:84px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}@keyframes particles-18{0%{transform:scale(1);visibility:visible}to{left:84px;top:-190px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}@keyframes particles-19{0%{transform:scale(1);visibility:visible}to{left:-94px;top:208px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}@keyframes particles-20{0%{transform:scale(1);visibility:visible}to{left:147px;top:203px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}@keyframes particles-21{0%{transform:scale(1);visibility:visible}to{left:178px;top:206px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}@keyframes particles-22{0%{transform:scale(1);visibility:visible}to{left:-10px;top:-226px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}@keyframes particles-23{0%{transform:scale(1);visibility:visible}to{left:3px;top:222px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}@keyframes particles-24{0%{transform:scale(1);visibility:visible}to{left:-182px;top:-44px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}@keyframes particles-25{0%{transform:scale(1);visibility:visible}to{left:-146px;top:166px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}@keyframes particles-26{0%{transform:scale(1);visibility:visible}to{left:144px;top:218px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}@keyframes particles-27{0%{transform:scale(1);visibility:visible}to{left:48px;top:222px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}@keyframes particles-28{0%{transform:scale(1);visibility:visible}to{left:-48px;top:50px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}@keyframes particles-29{0%{transform:scale(1);visibility:visible}to{left:-228px;top:-15px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}@keyframes particles-30{0%{transform:scale(1);visibility:visible}to{left:91px;top:-199px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}@keyframes particles-31{0%{transform:scale(1);visibility:visible}to{left:-40px;top:104px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}@keyframes particles-32{0%{transform:scale(1);visibility:visible}to{left:-102px;top:4px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}@keyframes particles-33{0%{transform:scale(1);visibility:visible}to{left:-26px;top:-89px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}@keyframes particles-34{0%{transform:scale(1);visibility:visible}to{left:-151px;top:-149px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}@keyframes particles-35{0%{transform:scale(1);visibility:visible}to{left:186px;top:200px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.yellow.night .wiggle{animation:.5s wiggle ease-in-out infinite}@keyframes wiggle{0%{transform:rotate(-3deg)}20%{transform:rotate(20deg)}40%{transform:rotate(-15deg)}60%{transform:rotate(5deg)}90%{transform:rotate(-1deg)}to{transform:rotate(0)}}.rtl-container.yellow.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.yellow.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.yellow.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}@keyframes shockwaveJump{0%{transform:scale(1)}40%{transform:scale(1.08)}50%{transform:scale(.98)}55%{transform:scale(1.02)}60%{transform:scale(.98)}to{transform:scale(1)}}@keyframes shockwave{0%{transform:scale(1);box-shadow:0 0 2px #00000026,inset 0 0 1px #00000026}95%{box-shadow:0 0 50px #0000,inset 0 0 30px #0000}to{transform:scale(2.25)}}@font-face{font-family:Material Icons;font-style:normal;font-weight:400;font-display:block;src:url(material-icons.59322316b3fd6063.woff2) format("woff2"),url(material-icons.4ad034d2c499d9b6.woff) format("woff")}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Outlined;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-outlined.f86cb7b0aa53f0fe.woff2) format("woff2"),url(material-icons-outlined.78a93b2079680a08.woff) format("woff")}.material-icons-outlined{font-family:Material Icons Outlined;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Round;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-round.b10ec9db5b7fbc74.woff2) format("woff2"),url(material-icons-round.92dc7ca2f4c591e7.woff) format("woff")}.material-icons-round{font-family:Material Icons Round;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Sharp;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-sharp.3885863ee4746422.woff2) format("woff2"),url(material-icons-sharp.a71cb2bf66c604de.woff) format("woff")}.material-icons-sharp{font-family:Material Icons Sharp;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Two Tone;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-two-tone.675bd578bd14533e.woff2) format("woff2"),url(material-icons-two-tone.588d63134de807a7.woff) format("woff")}.material-icons-two-tone{font-family:Material Icons Two Tone;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Roboto;src:url(Roboto-Thin.f7a95c9c5999532c.woff2) format("woff2"),url(Roboto-Thin.c13c157cb81e8ebb.woff) format("woff");font-weight:100;font-style:normal}@font-face{font-family:Roboto-Thin;src:url(Roboto-Thin.f7a95c9c5999532c.woff2) format("woff2"),url(Roboto-Thin.c13c157cb81e8ebb.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-ThinItalic.b0e084abf689f393.woff2) format("woff2"),url(Roboto-ThinItalic.1111028df6cea564.woff) format("woff");font-weight:100;font-style:italic}@font-face{font-family:Roboto-ThinItalic;src:url(Roboto-ThinItalic.b0e084abf689f393.woff2) format("woff2"),url(Roboto-ThinItalic.1111028df6cea564.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Light.0e01b6cd13b3857f.woff2) format("woff2"),url(Roboto-Light.603ca9a537b88428.woff) format("woff");font-weight:300;font-style:normal}@font-face{font-family:Roboto-Light;src:url(Roboto-Light.0e01b6cd13b3857f.woff2) format("woff2"),url(Roboto-Light.603ca9a537b88428.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-LightItalic.232ef4b20215f720.woff2) format("woff2"),url(Roboto-LightItalic.1b5e142f787151c8.woff) format("woff");font-weight:300;font-style:italic}@font-face{font-family:Roboto-LightItalic;src:url(Roboto-LightItalic.232ef4b20215f720.woff2) format("woff2"),url(Roboto-LightItalic.1b5e142f787151c8.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Regular.475ba9e4e2d63456.woff2) format("woff2"),url(Roboto-Regular.bcefbfee882bc1cb.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:Roboto-Regular;src:url(Roboto-Regular.475ba9e4e2d63456.woff2) format("woff2"),url(Roboto-Regular.bcefbfee882bc1cb.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-RegularItalic.e3a9ebdaac06bbc4.woff2) format("woff2"),url(Roboto-RegularItalic.0668fae6af0cf8c2.woff) format("woff");font-weight:400;font-style:italic}@font-face{font-family:Roboto-RegularItalic;src:url(Roboto-RegularItalic.e3a9ebdaac06bbc4.woff2) format("woff2"),url(Roboto-RegularItalic.0668fae6af0cf8c2.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Medium.457532032ceb0168.woff2) format("woff2"),url(Roboto-Medium.6e1ae5f0b324a0aa.woff) format("woff");font-weight:500;font-style:normal}@font-face{font-family:Roboto-Medium;src:url(Roboto-Medium.457532032ceb0168.woff2) format("woff2"),url(Roboto-Medium.6e1ae5f0b324a0aa.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-MediumItalic.872f7060602d55d2.woff2) format("woff2"),url(Roboto-MediumItalic.e06fb533801cbb08.woff) format("woff");font-weight:500;font-style:italic}@font-face{font-family:Roboto-MediumItalic;src:url(Roboto-MediumItalic.872f7060602d55d2.woff2) format("woff2"),url(Roboto-MediumItalic.e06fb533801cbb08.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Bold.447291a88c067396.woff2) format("woff2"),url(Roboto-Bold.fc482e6133cf5e26.woff) format("woff");font-weight:700;font-style:normal}@font-face{font-family:Roboto-Bold;src:url(Roboto-Bold.447291a88c067396.woff2) format("woff2"),url(Roboto-Bold.fc482e6133cf5e26.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-BoldItalic.1b15168ef6fa4e16.woff2) format("woff2"),url(Roboto-BoldItalic.e26ba339b06f09f7.woff) format("woff");font-weight:700;font-style:italic}@font-face{font-family:Roboto-BoldItalic;src:url(Roboto-BoldItalic.1b15168ef6fa4e16.woff2) format("woff2"),url(Roboto-BoldItalic.e26ba339b06f09f7.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Black.2eaa390d458c877d.woff2) format("woff2"),url(Roboto-Black.b25f67ad8583da68.woff) format("woff");font-weight:900;font-style:normal}@font-face{font-family:Roboto-Black;src:url(Roboto-Black.2eaa390d458c877d.woff2) format("woff2"),url(Roboto-Black.b25f67ad8583da68.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-BlackItalic.7dc03ee444552bc5.woff2) format("woff2"),url(Roboto-BlackItalic.c8dc642467cb3099.woff) format("woff");font-weight:900;font-style:italic}@font-face{font-family:Roboto-BlackItalic;src:url(Roboto-BlackItalic.7dc03ee444552bc5.woff2) format("woff2"),url(Roboto-BlackItalic.c8dc642467cb3099.woff) format("woff")} diff --git a/package-lock.json b/package-lock.json index 0794a3b8..028a8f84 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rtl", - "version": "0.15.7-beta", + "version": "0.15.10-beta", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rtl", - "version": "0.15.7-beta", + "version": "0.15.10-beta", "license": "MIT", "dependencies": { "@ngrx/effects": "21.0.1", @@ -14,11 +14,10 @@ "@swimlane/ngx-charts": "23.1.0", "angular-user-idle": "4.0.0", "atob": "2.1.2", - "axios": "1.13.2", + "axios": "1.18.1", "buffer": "6.0.3", "cookie-parser": "1.4.7", - "crypto-browserify": "3.12.1", - "csurf": "1.11.0", + "csrf-csrf": "4.0.3", "express": "5.2.1", "express-session": "1.18.2", "hocon-parser": "1.0.1", @@ -27,40 +26,36 @@ "ng-qrcode": "21.0.0", "ngx-perfect-scrollbar-next": "10.1.1", "otplib": "12.0.1", - "pdfmake": "0.3.2", + "pdfmake": "0.3.11", "process": "0.11.10", - "request": "2.88.2", - "request-promise": "4.2.6", "rxjs": "7.8.2", "sha256": "0.2.0", "socket.io-client": "4.8.3", - "stream-browserify": "3.0.0", "tslib": "2.8.1", - "vm-browserify": "1.1.2", - "ws": "8.19.0", + "ws": "8.21.0", "zone.js": "0.16.0" }, "devDependencies": { - "@angular-devkit/build-angular": "20.3.14", + "@angular-devkit/build-angular": "20.3.32", "@angular-eslint/builder": "20.7.0", "@angular-eslint/eslint-plugin": "20.7.0", "@angular-eslint/eslint-plugin-template": "20.7.0", "@angular-eslint/schematics": "20.7.0", "@angular-eslint/template-parser": "20.7.0", - "@angular/animations": "20.3.14", - "@angular/build": "20.3.14", + "@angular/animations": "20.3.27", + "@angular/build": "20.3.32", "@angular/cdk": "20.2.14", - "@angular/cli": "20.3.14", - "@angular/common": "20.3.14", - "@angular/compiler": "20.3.14", - "@angular/compiler-cli": "20.3.14", - "@angular/core": "20.3.14", + "@angular/cli": "20.3.32", + "@angular/common": "20.3.27", + "@angular/compiler": "20.3.27", + "@angular/compiler-cli": "20.3.27", + "@angular/core": "20.3.27", "@angular/flex-layout": "15.0.0-beta.42", - "@angular/forms": "20.3.14", + "@angular/forms": "20.3.27", "@angular/material": "20.2.14", - "@angular/platform-browser": "20.3.14", - "@angular/platform-browser-dynamic": "20.3.14", - "@angular/router": "20.3.14", + "@angular/platform-browser": "20.3.27", + "@angular/platform-browser-dynamic": "20.3.27", + "@angular/router": "20.3.27", "@eslint/eslintrc": "3.3.3", "@fortawesome/angular-fontawesome": "4.0.0", "@fortawesome/fontawesome-svg-core": "7.1.0", @@ -69,10 +64,10 @@ "@ngrx/store-devtools": "21.0.1", "@types/jasmine": "5.1.15", "@types/node": "20.19.30", - "@typescript-eslint/eslint-plugin": "8.53.0", - "@typescript-eslint/parser": "8.53.0", + "@typescript-eslint/eslint-plugin": "8.65.0", + "@typescript-eslint/parser": "8.65.0", "dotenv": "17.2.3", - "eslint": "9.39.2", + "eslint": "9.39.5", "eslint-plugin-deprecation": "3.0.0", "jasmine-core": "5.13.0", "jasmine-spec-reporter": "7.0.0", @@ -82,8 +77,7 @@ "karma-jasmine": "5.1.0", "karma-jasmine-html-reporter": "2.1.0", "material-icons": "1.13.14", - "nodemon": "3.1.11", - "protractor": "7.0.0", + "nodemon": "3.1.14", "roboto-fontface": "0.10.0", "ts-node": "10.9.2", "typescript": "5.8.3" @@ -313,13 +307,13 @@ } }, "node_modules/@angular-devkit/architect": { - "version": "0.2003.14", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.2003.14.tgz", - "integrity": "sha512-dVlWqaYu0PIgHTBu16uYUS6lJOIpXCpOYhPWuYwqdo7a4x2HcagPQ+omUZJTA6kukh7ROpKcRoiy/DsO/DgvUA==", + "version": "0.2003.32", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.2003.32.tgz", + "integrity": "sha512-V5d531w97LENARKdYk5Km0F2rt8NPEL3rXUQk7+gbo9r/jgLWn9GU3VHQ30oBWXnU7Vu00Hdp/8yFeYgpWqSow==", "dev": true, "license": "MIT", "dependencies": { - "@angular-devkit/core": "20.3.14", + "@angular-devkit/core": "20.3.32", "rxjs": "7.8.2" }, "engines": { @@ -329,18 +323,18 @@ } }, "node_modules/@angular-devkit/build-angular": { - "version": "20.3.14", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-20.3.14.tgz", - "integrity": "sha512-L3saxbGXUgSSXfCrWHTl9eBAxzcA1oSrb0ojL+NBiJ82Zhx1a3XIGSTNg7YkCrXHaLx+fvuoeyT7xyBH18zYZw==", + "version": "20.3.32", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-20.3.32.tgz", + "integrity": "sha512-1prN/HmTkL2TTd4zoNz/fFOds9eUc78winkjvBRxTL+OuUQMIeWIjpUui53mk2qdeW9ImiITcqCQVpZL95fLvQ==", "dev": true, "license": "MIT", "dependencies": { "@ampproject/remapping": "2.3.0", - "@angular-devkit/architect": "0.2003.14", - "@angular-devkit/build-webpack": "0.2003.14", - "@angular-devkit/core": "20.3.14", - "@angular/build": "20.3.14", - "@babel/core": "7.28.3", + "@angular-devkit/architect": "0.2003.32", + "@angular-devkit/build-webpack": "0.2003.32", + "@angular-devkit/core": "20.3.32", + "@angular/build": "20.3.32", + "@babel/core": "7.29.7", "@babel/generator": "7.28.3", "@babel/helper-annotate-as-pure": "7.27.3", "@babel/helper-split-export-declaration": "7.24.7", @@ -350,16 +344,16 @@ "@babel/preset-env": "7.28.3", "@babel/runtime": "7.28.3", "@discoveryjs/json-ext": "0.6.3", - "@ngtools/webpack": "20.3.14", + "@ngtools/webpack": "20.3.32", "ansi-colors": "4.1.3", "autoprefixer": "10.4.21", "babel-loader": "10.0.0", "browserslist": "^4.21.5", - "copy-webpack-plugin": "13.0.1", + "copy-webpack-plugin": "14.0.0", "css-loader": "7.1.2", - "esbuild-wasm": "0.25.9", + "esbuild-wasm": "0.28.1", "fast-glob": "3.3.3", - "http-proxy-middleware": "3.0.5", + "http-proxy-middleware": "3.0.7", "istanbul-lib-instrument": "6.0.3", "jsonc-parser": "3.3.1", "karma-source-map-support": "1.4.0", @@ -370,9 +364,9 @@ "mini-css-extract-plugin": "2.9.4", "open": "10.2.0", "ora": "8.2.0", - "picomatch": "4.0.3", - "piscina": "5.1.3", - "postcss": "8.5.6", + "picomatch": "4.0.4", + "piscina": "5.2.0", + "postcss": "8.5.12", "postcss-loader": "8.1.1", "resolve-url-loader": "5.0.0", "rxjs": "7.8.2", @@ -384,9 +378,9 @@ "terser": "5.43.1", "tree-kill": "1.2.2", "tslib": "2.8.1", - "webpack": "5.101.2", + "webpack": "5.105.0", "webpack-dev-middleware": "7.4.2", - "webpack-dev-server": "5.2.2", + "webpack-dev-server": "5.2.5", "webpack-merge": "6.0.1", "webpack-subresource-integrity": "5.1.0" }, @@ -396,7 +390,7 @@ "yarn": ">= 1.13.0" }, "optionalDependencies": { - "esbuild": "0.25.9" + "esbuild": "0.28.1" }, "peerDependencies": { "@angular/compiler-cli": "^20.0.0", @@ -405,7 +399,7 @@ "@angular/platform-browser": "^20.0.0", "@angular/platform-server": "^20.0.0", "@angular/service-worker": "^20.0.0", - "@angular/ssr": "^20.3.14", + "@angular/ssr": "^20.3.32", "@web/test-runner": "^0.20.0", "browser-sync": "^3.0.2", "jest": "^29.5.0 || ^30.2.0", @@ -462,13 +456,13 @@ } }, "node_modules/@angular-devkit/build-webpack": { - "version": "0.2003.14", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.2003.14.tgz", - "integrity": "sha512-kE5bCHnmkWRhCxTlZj1E75UECArc1tq3RC1LMMeJL0Wj6tFO5Y33u16zucXbGqYHZETuz4svR0/u800bjMaQyg==", + "version": "0.2003.32", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.2003.32.tgz", + "integrity": "sha512-dFyM5Qkgl6wgSb8EJF8uZCt9K+VUsDP8APS5siCNHyhjzjACqDevk5RwqWCfPU/QjzlgCp11MbkKr/Y2sgaDcw==", "dev": true, "license": "MIT", "dependencies": { - "@angular-devkit/architect": "0.2003.14", + "@angular-devkit/architect": "0.2003.32", "rxjs": "7.8.2" }, "engines": { @@ -482,16 +476,16 @@ } }, "node_modules/@angular-devkit/core": { - "version": "20.3.14", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-20.3.14.tgz", - "integrity": "sha512-hWQVi73aGdIRInJqNia79Yi6SzqEThkfLug3AdZiNuNvYMaxAI347yPQz4f3Dr/i0QuiqRq/T8zfqbr46tfCqg==", + "version": "20.3.32", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-20.3.32.tgz", + "integrity": "sha512-pXipSsYP/XTEAljmwqgy1u3GR/ZzSMg1FERINekGT61Th1pGhzjs02rPgbyftqz2e5/tfQ6XgTP7xYzm3+S35Q==", "dev": true, "license": "MIT", "dependencies": { - "ajv": "8.17.1", + "ajv": "8.18.0", "ajv-formats": "3.0.1", "jsonc-parser": "3.3.1", - "picomatch": "4.0.3", + "picomatch": "4.0.4", "rxjs": "7.8.2", "source-map": "0.7.6" }, @@ -510,13 +504,13 @@ } }, "node_modules/@angular-devkit/schematics": { - "version": "20.3.14", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-20.3.14.tgz", - "integrity": "sha512-+Al9QojzTucccSUnJI+9x64Nnuev82eIgIlb1Ov9hLR572SNtjhV7zIXIalphFghEy+SPvynRuvOSc69Otp3Fg==", + "version": "20.3.32", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-20.3.32.tgz", + "integrity": "sha512-UxWncmJTcYMDEaAKRi3QHU3qXivIcIOulFOKozW8svfs/A43Oq1GG4kvDZ+WVf/w2UWTmMaSlfFa4KIQciSIDA==", "dev": true, "license": "MIT", "dependencies": { - "@angular-devkit/core": "20.3.14", + "@angular-devkit/core": "20.3.32", "jsonc-parser": "3.3.1", "magic-string": "0.30.17", "ora": "8.2.0", @@ -647,9 +641,10 @@ } }, "node_modules/@angular/animations": { - "version": "20.3.14", - "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-20.3.14.tgz", - "integrity": "sha512-Sx3/XNu2rR+R8T8JkJEaIpZDZPk0IecS0Ayt6HTanNUZXuw0HVou3vkjR5B2St5nM4MXs0gh+S6aLNuArtqJTQ==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-20.3.27.tgz", + "integrity": "sha512-BgGTloDiD3qIFVSxZq8xO6CiyhKn00WbhQQiklZF8WI2hXd3Hmc1OUAAHqSMh2c9uL7X1ZYkg9lSzjiasK2vKg==", + "deprecated": "@angular/animations is deprecated. Use `animate.enter` and `animate.leave` instead. For more information see: https://v22.angular.dev/guide/animations.", "dev": true, "license": "MIT", "dependencies": { @@ -659,26 +654,26 @@ "node": "^20.19.0 || ^22.12.0 || >=24.0.0" }, "peerDependencies": { - "@angular/core": "20.3.14" + "@angular/core": "20.3.27" } }, "node_modules/@angular/build": { - "version": "20.3.14", - "resolved": "https://registry.npmjs.org/@angular/build/-/build-20.3.14.tgz", - "integrity": "sha512-ajFJqTqyI2N9PYcWVxUfb6YEUQsZ13jsBzI/kDpeEZZCGadLJGSMZVNwkX7n9Csw7gzertpenGBXsSTxUjd8TA==", + "version": "20.3.32", + "resolved": "https://registry.npmjs.org/@angular/build/-/build-20.3.32.tgz", + "integrity": "sha512-ph/qcT6C7RYriU5dxXfNrYBEvCwU4acxTNoxkdGQHYxM7iOKT0K1YO6v5JBNRZ1S4LOJhWmGaWzJ+sRei0iGsQ==", "dev": true, "license": "MIT", "dependencies": { "@ampproject/remapping": "2.3.0", - "@angular-devkit/architect": "0.2003.14", - "@babel/core": "7.28.3", + "@angular-devkit/architect": "0.2003.32", + "@babel/core": "7.29.7", "@babel/helper-annotate-as-pure": "7.27.3", "@babel/helper-split-export-declaration": "7.24.7", "@inquirer/confirm": "5.1.14", "@vitejs/plugin-basic-ssl": "2.1.0", "beasties": "0.3.5", "browserslist": "^4.23.0", - "esbuild": "0.25.9", + "esbuild": "0.28.1", "https-proxy-agent": "7.0.6", "istanbul-lib-instrument": "6.0.3", "jsonc-parser": "3.3.1", @@ -686,14 +681,14 @@ "magic-string": "0.30.17", "mrmime": "2.0.1", "parse5-html-rewriting-stream": "8.0.0", - "picomatch": "4.0.3", - "piscina": "5.1.3", - "rollup": "4.52.3", + "picomatch": "4.0.4", + "piscina": "5.2.0", + "rollup": "4.59.0", "sass": "1.90.0", "semver": "7.7.2", "source-map-support": "0.5.21", "tinyglobby": "0.2.14", - "vite": "7.1.11", + "vite": "7.3.6", "watchpack": "2.4.4" }, "engines": { @@ -712,7 +707,7 @@ "@angular/platform-browser": "^20.0.0", "@angular/platform-server": "^20.0.0", "@angular/service-worker": "^20.0.0", - "@angular/ssr": "^20.3.14", + "@angular/ssr": "^20.3.32", "karma": "^6.4.0", "less": "^4.2.0", "ng-packagr": "^20.0.0", @@ -778,26 +773,26 @@ } }, "node_modules/@angular/cli": { - "version": "20.3.14", - "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-20.3.14.tgz", - "integrity": "sha512-vlvnxyUtPnETl5az+creSPOrcnrZC5mhD5hSGl2WoqhYeyWdyUwsC9KLSy8/5gCH/4TNwtjqeX3Pw0KaAJUoCQ==", + "version": "20.3.32", + "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-20.3.32.tgz", + "integrity": "sha512-WIMbTrEJYVVz4Phs8nn6yK/bzCSt1dDlxtAEnS2melTWXKGF6WK/OqVaH0+Cox0SNagA81dvvSbGlFYCxncYfQ==", "dev": true, "license": "MIT", "dependencies": { - "@angular-devkit/architect": "0.2003.14", - "@angular-devkit/core": "20.3.14", - "@angular-devkit/schematics": "20.3.14", + "@angular-devkit/architect": "0.2003.32", + "@angular-devkit/core": "20.3.32", + "@angular-devkit/schematics": "20.3.32", "@inquirer/prompts": "7.8.2", "@listr2/prompt-adapter-inquirer": "3.0.1", - "@modelcontextprotocol/sdk": "1.25.2", - "@schematics/angular": "20.3.14", + "@modelcontextprotocol/sdk": "1.26.0", + "@schematics/angular": "20.3.32", "@yarnpkg/lockfile": "1.1.0", "algoliasearch": "5.35.0", "ini": "5.0.0", "jsonc-parser": "3.3.1", "listr2": "9.0.1", "npm-package-arg": "13.0.0", - "pacote": "21.0.0", + "pacote": "21.5.1", "resolve": "1.22.10", "semver": "7.7.2", "yargs": "18.0.0", @@ -823,9 +818,9 @@ } }, "node_modules/@angular/common": { - "version": "20.3.14", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-20.3.14.tgz", - "integrity": "sha512-OOUvjTtnpktJLsNupA+GFT2q5zNocPdpOENA8aSrXvAheNybLjgi+otO3U3sQsvB1VwaoEZ9GT5O3lZlstnA/A==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-20.3.27.tgz", + "integrity": "sha512-4ectYP60XatB9zZ40WlfmaTzjmEhaz8SSqLsbZI4VZ8gDb5qNmxWtwwt8UxS3NmDHEgqdNL8UPO4E94+yKCICg==", "dev": true, "license": "MIT", "dependencies": { @@ -835,14 +830,14 @@ "node": "^20.19.0 || ^22.12.0 || >=24.0.0" }, "peerDependencies": { - "@angular/core": "20.3.14", + "@angular/core": "20.3.27", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/compiler": { - "version": "20.3.14", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-20.3.14.tgz", - "integrity": "sha512-KFbfPPAbclzGDujCVruflCD9j4Zwwxvrg7Y4C9GJYs3LZ85t+BfIMDDnvpBUM07ZLnfY4TO4gQdHmJAcaGGXDQ==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-20.3.27.tgz", + "integrity": "sha512-in3THZ678GAYuOR9RZV18+zZz0KGhlGikyUEfLeALLjGf9ZaR3n+t19BmYx6G2VkF/Xqadne1omQ2vbl6PRASA==", "dev": true, "license": "MIT", "dependencies": { @@ -853,13 +848,13 @@ } }, "node_modules/@angular/compiler-cli": { - "version": "20.3.14", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-20.3.14.tgz", - "integrity": "sha512-lFg9ikwRClzDPjdFiwynbVFIi1RJZf/0i+OHa3Ns2gzXxJeHNKMJrHHjWZ2DU4N2UpxH0YAPe22N9Bie28IuQQ==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-20.3.27.tgz", + "integrity": "sha512-R0j9mFfUdGmmw867V/TfMSOBkLZT6ASxyY5tc1NDNmxQioZDVIDP9pqBOayzhJ0xiuDc9JellQXUTZ+vm+b/Zg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/core": "7.28.3", + "@babel/core": "7.29.7", "@jridgewell/sourcemap-codec": "^1.4.14", "chokidar": "^4.0.0", "convert-source-map": "^1.5.1", @@ -876,7 +871,7 @@ "node": "^20.19.0 || ^22.12.0 || >=24.0.0" }, "peerDependencies": { - "@angular/compiler": "20.3.14", + "@angular/compiler": "20.3.27", "typescript": ">=5.8 <6.0" }, "peerDependenciesMeta": { @@ -886,9 +881,9 @@ } }, "node_modules/@angular/core": { - "version": "20.3.14", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-20.3.14.tgz", - "integrity": "sha512-rpyEbhWF6Fj/xI9IvNLZh5QBUYnoXuF7vX54CCtyQ2MHALxRR/aa1WRxjRM96cF2OqodQ/Gj3oYW8ei8hlBh4w==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-20.3.27.tgz", + "integrity": "sha512-8EfYIUST5CKldOF4MAYWTFFRB7EtwqUoQBZdar6US39/EEzWm/wm/iRNkH2jmKe4YuPa2GoeHS1WQ8VRuOk7Dg==", "dev": true, "license": "MIT", "dependencies": { @@ -898,7 +893,7 @@ "node": "^20.19.0 || ^22.12.0 || >=24.0.0" }, "peerDependencies": { - "@angular/compiler": "20.3.14", + "@angular/compiler": "20.3.27", "rxjs": "^6.5.3 || ^7.4.0", "zone.js": "~0.15.0" }, @@ -930,9 +925,9 @@ } }, "node_modules/@angular/forms": { - "version": "20.3.14", - "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-20.3.14.tgz", - "integrity": "sha512-fGrJ589tU+AKoxf+kaRrEw7wlSfVr1/z/Fz625ggFCc6ySQEityKW3JsnLfNkh5qGrdxib4BOfF78f9J7Pyk+w==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-20.3.27.tgz", + "integrity": "sha512-cNG26wi3tr3m8At6puxJpAMVk9mBhEqREA4Jk/klalMwWuYEf8ApTEAw0a5NUfMxDkL3dcJJwDRf8rK6ma6TYQ==", "dev": true, "license": "MIT", "dependencies": { @@ -942,9 +937,9 @@ "node": "^20.19.0 || ^22.12.0 || >=24.0.0" }, "peerDependencies": { - "@angular/common": "20.3.14", - "@angular/core": "20.3.14", - "@angular/platform-browser": "20.3.14", + "@angular/common": "20.3.27", + "@angular/core": "20.3.27", + "@angular/platform-browser": "20.3.27", "rxjs": "^6.5.3 || ^7.4.0" } }, @@ -967,9 +962,9 @@ } }, "node_modules/@angular/platform-browser": { - "version": "20.3.14", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-20.3.14.tgz", - "integrity": "sha512-Lviz9GfsIyOIBDal8QhIBKU8OMH29A0RhFw2opTC50sqKadXLN9CD7iSaAwQbNLc4mc3JAF4zth0AzKdHLbz7Q==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-20.3.27.tgz", + "integrity": "sha512-IV2zQ4zk6liyw5NE48bQqSk3nOAZ1rmDAQi7W4Kw0N8cs9MYVgK3zulo0zx5UqSv1kuNDAGb0HPR5tUGVOf9kw==", "dev": true, "license": "MIT", "dependencies": { @@ -979,9 +974,9 @@ "node": "^20.19.0 || ^22.12.0 || >=24.0.0" }, "peerDependencies": { - "@angular/animations": "20.3.14", - "@angular/common": "20.3.14", - "@angular/core": "20.3.14" + "@angular/animations": "20.3.27", + "@angular/common": "20.3.27", + "@angular/core": "20.3.27" }, "peerDependenciesMeta": { "@angular/animations": { @@ -990,9 +985,10 @@ } }, "node_modules/@angular/platform-browser-dynamic": { - "version": "20.3.14", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-20.3.14.tgz", - "integrity": "sha512-g9z/g8gIOrBCX1SQ/GWwB0+JXBC6CKe0+yRyy9GGeBLm/YXWZHxTkmnDmueXXfPtUl8TOAInE22wlLcfunWTrg==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-20.3.27.tgz", + "integrity": "sha512-4UUs8vOswgBOWCRoeZrswguarBLrM3j6WGb927Y3GXdN37fVJQYjyKHivNeQwZvwsGgl5Nl6mvpBpZv47n/OrQ==", + "deprecated": "@angular/platform-browser-dynamic is deprecated. Use `@angular/platform-browser` instead.", "dev": true, "license": "MIT", "dependencies": { @@ -1002,16 +998,16 @@ "node": "^20.19.0 || ^22.12.0 || >=24.0.0" }, "peerDependencies": { - "@angular/common": "20.3.14", - "@angular/compiler": "20.3.14", - "@angular/core": "20.3.14", - "@angular/platform-browser": "20.3.14" + "@angular/common": "20.3.27", + "@angular/compiler": "20.3.27", + "@angular/core": "20.3.27", + "@angular/platform-browser": "20.3.27" } }, "node_modules/@angular/router": { - "version": "20.3.14", - "resolved": "https://registry.npmjs.org/@angular/router/-/router-20.3.14.tgz", - "integrity": "sha512-gi7/NuHRS9n9RCwh03VuVFizVMa2lKL/s+7yP3Ecq2nQ5uSeTMWb/91OmGEBwncI3wKPkYdQ9g3n6PvK/O8uDQ==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/router/-/router-20.3.27.tgz", + "integrity": "sha512-F3hfJQ0GAuD6LdeB7A6fMfaErc4HXCtCQGh3C/8VrbVEbGfIgSveNjQXzGYPNklnOLhj1BmWf5w0WniUAEjLBA==", "dev": true, "license": "MIT", "dependencies": { @@ -1021,20 +1017,20 @@ "node": "^20.19.0 || ^22.12.0 || >=24.0.0" }, "peerDependencies": { - "@angular/common": "20.3.14", - "@angular/core": "20.3.14", - "@angular/platform-browser": "20.3.14", + "@angular/common": "20.3.27", + "@angular/core": "20.3.27", + "@angular/platform-browser": "20.3.27", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@babel/code-frame": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.28.6.tgz", - "integrity": "sha512-JYgintcMjRiCvS8mMECzaEn+m3PfoQiyqukOMCCVQtoJGYJw8j/8LBJEiqkHLkfwCcs74E3pbAUFNg7d9VNJ+Q==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz", + "integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-validator-identifier": "^7.28.5", + "@babel/helper-validator-identifier": "^7.29.7", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" }, @@ -1043,9 +1039,9 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.6.tgz", - "integrity": "sha512-2lfu57JtzctfIrcGMz992hyLlByuzgIk58+hhGCxjKZ3rWI82NnVLjXcaTqkI2NvlcvOskZaiZ5kjUALo3Lpxg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz", + "integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==", "dev": true, "license": "MIT", "engines": { @@ -1053,22 +1049,22 @@ } }, "node_modules/@babel/core": { - "version": "7.28.3", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.3.tgz", - "integrity": "sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz", + "integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==", "dev": true, "license": "MIT", "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.27.1", - "@babel/generator": "^7.28.3", - "@babel/helper-compilation-targets": "^7.27.2", - "@babel/helper-module-transforms": "^7.28.3", - "@babel/helpers": "^7.28.3", - "@babel/parser": "^7.28.3", - "@babel/template": "^7.27.2", - "@babel/traverse": "^7.28.3", - "@babel/types": "^7.28.2", + "@babel/code-frame": "^7.29.7", + "@babel/generator": "^7.29.7", + "@babel/helper-compilation-targets": "^7.29.7", + "@babel/helper-module-transforms": "^7.29.7", + "@babel/helpers": "^7.29.7", + "@babel/parser": "^7.29.7", + "@babel/template": "^7.29.7", + "@babel/traverse": "^7.29.7", + "@babel/types": "^7.29.7", + "@jridgewell/remapping": "^2.3.5", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -1083,6 +1079,23 @@ "url": "https://opencollective.com/babel" } }, + "node_modules/@babel/core/node_modules/@babel/generator": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz", + "integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.7", + "@babel/types": "^7.29.7", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/core/node_modules/convert-source-map": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", @@ -1131,14 +1144,14 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", - "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz", + "integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==", "dev": true, "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.28.6", - "@babel/helper-validator-option": "^7.27.1", + "@babel/compat-data": "^7.29.7", + "@babel/helper-validator-option": "^7.29.7", "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" @@ -1158,18 +1171,18 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.6.tgz", - "integrity": "sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.29.7.tgz", + "integrity": "sha512-IY3ZD9Tmooqr3TUhc3DUWxiuo8xx1DWLhd5M7hQ+ZWJamqM2BbalrBJb2MisSLoYorOj75U03qULCxQTY9r3hg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.27.3", - "@babel/helper-member-expression-to-functions": "^7.28.5", - "@babel/helper-optimise-call-expression": "^7.27.1", - "@babel/helper-replace-supers": "^7.28.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", - "@babel/traverse": "^7.28.6", + "@babel/helper-annotate-as-pure": "^7.29.7", + "@babel/helper-member-expression-to-functions": "^7.29.7", + "@babel/helper-optimise-call-expression": "^7.29.7", + "@babel/helper-replace-supers": "^7.29.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.29.7", + "@babel/traverse": "^7.29.7", "semver": "^6.3.1" }, "engines": { @@ -1179,6 +1192,19 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.29.7.tgz", + "integrity": "sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", @@ -1190,13 +1216,13 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz", - "integrity": "sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.29.7.tgz", + "integrity": "sha512-907Uymvqgg1dwUA+7IGwFAOSYzQOuzPXKNJ1yxzwPffzkYFg2q2eHi1fIOs6sXkG9NbIUMunnUlkYsfRFNvomg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-annotate-as-pure": "^7.29.7", "regexpu-core": "^6.3.1", "semver": "^6.3.1" }, @@ -1207,6 +1233,19 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.29.7.tgz", + "integrity": "sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", @@ -1218,26 +1257,48 @@ } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz", - "integrity": "sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==", + "version": "0.6.8", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.8.tgz", + "integrity": "sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.27.2", - "@babel/helper-plugin-utils": "^7.27.1", - "debug": "^4.4.1", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "debug": "^4.4.3", "lodash.debounce": "^4.0.8", - "resolve": "^1.22.10" + "resolve": "^1.22.11" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/resolve": { + "version": "1.22.12", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.12.tgz", + "integrity": "sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/@babel/helper-globals": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", - "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz", + "integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==", "dev": true, "license": "MIT", "engines": { @@ -1245,43 +1306,43 @@ } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz", - "integrity": "sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.29.7.tgz", + "integrity": "sha512-j+7JYmk1JYDtACIGj0QJqqWZjoUpMoEikQGADMaHgCMCSDqd2+P32rfcibUNrGOMWrlzK1WJBdxrB3JJQZwWtg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/traverse": "^7.28.5", - "@babel/types": "^7.28.5" + "@babel/traverse": "^7.29.7", + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", - "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz", + "integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==", "dev": true, "license": "MIT", "dependencies": { - "@babel/traverse": "^7.28.6", - "@babel/types": "^7.28.6" + "@babel/traverse": "^7.29.7", + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz", - "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz", + "integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.28.6", - "@babel/helper-validator-identifier": "^7.28.5", - "@babel/traverse": "^7.28.6" + "@babel/helper-module-imports": "^7.29.7", + "@babel/helper-validator-identifier": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1291,22 +1352,22 @@ } }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", - "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.29.7.tgz", + "integrity": "sha512-+kmGVjcT9RGYzoDwdwEqEvGgKe3BYq+O1iGzjFubaNgZHwYHP6lsF2Yghf4kEuv9BV7tYDZ913aBW9am6YKong==", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.27.1" + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz", - "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.29.7.tgz", + "integrity": "sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==", "dev": true, "license": "MIT", "engines": { @@ -1314,15 +1375,15 @@ } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz", - "integrity": "sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.29.7.tgz", + "integrity": "sha512-16AMiW26DbXWBbr3B8wNozKM0ydMLB892vaOaJW/fPJdnT8vJk5sdkQcU/isqUxyCE0cEoa8wZOcbgDuC4b6Og==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.27.1", - "@babel/helper-wrap-function": "^7.27.1", - "@babel/traverse": "^7.27.1" + "@babel/helper-annotate-as-pure": "^7.29.7", + "@babel/helper-wrap-function": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1331,16 +1392,29 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.28.6.tgz", - "integrity": "sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==", + "node_modules/@babel/helper-remap-async-to-generator/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.29.7.tgz", + "integrity": "sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-member-expression-to-functions": "^7.28.5", - "@babel/helper-optimise-call-expression": "^7.27.1", - "@babel/traverse": "^7.28.6" + "@babel/types": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.29.7.tgz", + "integrity": "sha512-atfGXWSeCiF4DnKZIfmJfQRkSw9b9gNNXR1kqKjbhG4pGYCOnkp8OcTB8E3NXjBu8NpheSnOeNKz8KT7UNFTmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.29.7", + "@babel/helper-optimise-call-expression": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1350,14 +1424,14 @@ } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", - "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.29.7.tgz", + "integrity": "sha512-brcMGQaVzIeUb+6/bs1Av0f8YuNNjKY2JyvfRCsFuFsdKccEQ5Ges2y74D74NZ1Rz8lKJ9ksJkfqwQFJ/iNEyQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/traverse": "^7.27.1", - "@babel/types": "^7.27.1" + "@babel/traverse": "^7.29.7", + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1377,9 +1451,9 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", - "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz", + "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==", "dev": true, "license": "MIT", "engines": { @@ -1387,9 +1461,9 @@ } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", - "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz", + "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==", "dev": true, "license": "MIT", "engines": { @@ -1397,9 +1471,9 @@ } }, "node_modules/@babel/helper-validator-option": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", - "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz", + "integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==", "dev": true, "license": "MIT", "engines": { @@ -1407,42 +1481,42 @@ } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.28.6.tgz", - "integrity": "sha512-z+PwLziMNBeSQJonizz2AGnndLsP2DeGHIxDAn+wdHOGuo4Fo1x1HBPPXeE9TAOPHNNWQKCSlA2VZyYyyibDnQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.29.7.tgz", + "integrity": "sha512-iES0Skag9ERIF68aXadpO6dbXa03mNWK3sEqJaMnLNs/eC3l0lkImdfoy6Y09/SfkpawdAB4RjQ7PVA7TcVGdw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/template": "^7.28.6", - "@babel/traverse": "^7.28.6", - "@babel/types": "^7.28.6" + "@babel/template": "^7.29.7", + "@babel/traverse": "^7.29.7", + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.6.tgz", - "integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.7.tgz", + "integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/template": "^7.28.6", - "@babel/types": "^7.28.6" + "@babel/template": "^7.29.7", + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.6.tgz", - "integrity": "sha512-TeR9zWR18BvbfPmGbLampPMW+uW1NZnJlRuuHso8i87QZNq2JRF9i6RgxRqtEq+wQGsS19NNTWr2duhnE49mfQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz", + "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.28.6" + "@babel/types": "^7.29.7" }, "bin": { "parser": "bin/babel-parser.js" @@ -1452,14 +1526,14 @@ } }, "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz", - "integrity": "sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.29.7.tgz", + "integrity": "sha512-j8SrR0zLZrRsC09DlszEx8FpMiwukKffYXMK0d5LmOglO7vGG6sz/BR/20yHqWH+Lnn31JTt2PE3hIWNgM2J6w==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1", - "@babel/traverse": "^7.28.5" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1469,13 +1543,13 @@ } }, "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz", - "integrity": "sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.29.7.tgz", + "integrity": "sha512-r8j8escF+U2FUHo0KOhPUdMzUO+jp9fInva6+ACVAF3Y97Ev+5iNZwiqTghmzNeWwDkOPlYuTcfb1vDaoZKmAQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1485,13 +1559,13 @@ } }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz", - "integrity": "sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.29.7.tgz", + "integrity": "sha512-GE1TFSiuFeGsCxmYXZl8HwoPrVlwe4rHPFE8weieGKZqnDORK+Ar3vgWMgW+AOxQ6/2TgLSKx9p6W7O4rC6qgQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1501,15 +1575,15 @@ } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz", - "integrity": "sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.29.7.tgz", + "integrity": "sha512-QQt9qKHZ2sg/kivaLr7lnQr8HVrQDdBNSfCsTjiDxRuX/K5ORyKq+Bu8Xr0cDE3Dfkv0cw28Ve0EKyKMvulkOw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1", - "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", - "@babel/plugin-transform-optional-chaining": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.29.7", + "@babel/plugin-transform-optional-chaining": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1519,14 +1593,14 @@ } }, "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.6.tgz", - "integrity": "sha512-a0aBScVTlNaiUe35UtfxAN7A/tehvvG4/ByO6+46VPKTRSlfnAFsgKy0FUh+qAkQrDTmhDkT+IBOKlOoMUxQ0g==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.29.7.tgz", + "integrity": "sha512-pn6QacGLgvCcwc+syUhKE/qSjV2D1IHDB84RNxWYSt1mW3K/SCtjinZ2p0cETJxAWBjPy3K/1lHwG5BjjPxNlw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.28.6", - "@babel/traverse": "^7.28.6" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1549,13 +1623,13 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.28.6.tgz", - "integrity": "sha512-pSJUpFHdx9z5nqTSirOCMtYVP2wFgoWhP0p3g8ONK/4IHhLIBd0B9NYqAvIUAhq+OkhO4VM1tENCt0cjlsNShw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.29.7.tgz", + "integrity": "sha512-/An1OCBN93thpBAGyfsK2pcf0jvju1SAtKkL2Ny++B5Sy6sqgzXDQH1cZxWbF96Wuk+bn41MDA9bLd4VVAw6rw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1565,13 +1639,13 @@ } }, "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.28.6.tgz", - "integrity": "sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.29.7.tgz", + "integrity": "sha512-zGYcYfq/WmZ4V+kBIXQon9dSSc8ircGZqw9ZaNhhGj9nZkeBu1jHLBDQqYYi5WA9uawvA2sIMbry2nCFhf5Djg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1598,13 +1672,13 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz", - "integrity": "sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.29.7.tgz", + "integrity": "sha512-N7zArUXWzAMzm+/N0uPBeVB3Fam5lMxtUwMmDK5f/IBBS7a7p1qeUoxd/6CckXoxUdgsntq1Dh8xNW06maZbDQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1650,13 +1724,13 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz", - "integrity": "sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.29.7.tgz", + "integrity": "sha512-cUSmjh72N+rN4PrkFlN1dJwNCwjVp5d38/CQrEsFggkD10UiFlBFgdH3tv5dNsLuHY+3S8db2xCHjhZcv5WgvA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1666,13 +1740,13 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.6.tgz", - "integrity": "sha512-tt/7wOtBmwHPNMPu7ax4pdPz6shjFrmHDghvNC+FG9Qvj7D6mJcoRQIF5dy4njmxR941l6rgtvfSB2zX3VlUIw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.29.7.tgz", + "integrity": "sha512-ONyr4+AZhKh8yKWInVxU9AXA9EbsyeLcL6V0dJy6M2/62vuvpGm29zzuymbTpdc451GEpDIdAyPLP3r+P61yKQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1682,14 +1756,14 @@ } }, "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.28.6.tgz", - "integrity": "sha512-dY2wS3I2G7D697VHndN91TJr8/AAfXQNt5ynCTI/MpxMsSzHp+52uNivYT5wCPax3whc47DR8Ba7cmlQMg24bw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.29.7.tgz", + "integrity": "sha512-GtcpjFvanPfzNQi3eTitsCqtRRmmqzpy/A+yhTR1HaZo1Ly3EA8ZXxlPyHdR8/IuRMYc3E4wdGBewB2QKQjAaA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.28.6", - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-create-class-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1699,14 +1773,14 @@ } }, "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.6.tgz", - "integrity": "sha512-rfQ++ghVwTWTqQ7w8qyDxL1XGihjBss4CmTgGRCTAC9RIbhVpyp4fOeZtta0Lbf+dTNIVJer6ych2ibHwkZqsQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.29.7.tgz", + "integrity": "sha512-kibJgmEdX2iMwsHY2tSZNDgj8PwIlCQz7FK9KuGKO8zsuoUwSEhoNnNVp/emKWrbY4HeO6kkXfdMqRKKKXBm2A==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.28.6", - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-create-class-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1716,18 +1790,18 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.6.tgz", - "integrity": "sha512-EF5KONAqC5zAqT783iMGuM2ZtmEBy+mJMOKl2BCvPZ2lVrwvXnB6o+OBWCS+CoeCCpVRF2sA2RBKUxvT8tQT5Q==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.29.7.tgz", + "integrity": "sha512-qV0OGGBVacduzQHE649JyCneOFI/maT+YKsO+K4Yi3xv2wTPNjM/W2o2gdzMwEAZz7fXNTHAe0NcSg30bIN69g==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.27.3", - "@babel/helper-compilation-targets": "^7.28.6", - "@babel/helper-globals": "^7.28.0", - "@babel/helper-plugin-utils": "^7.28.6", - "@babel/helper-replace-supers": "^7.28.6", - "@babel/traverse": "^7.28.6" + "@babel/helper-annotate-as-pure": "^7.29.7", + "@babel/helper-compilation-targets": "^7.29.7", + "@babel/helper-globals": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/helper-replace-supers": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1736,15 +1810,28 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.28.6.tgz", - "integrity": "sha512-bcc3k0ijhHbc2lEfpFHgx7eYw9KNXqOerKWfzbxEHUGKnS3sz9C4CNL9OiFN1297bDNfUiSO7DaLzbvHQQQ1BQ==", + "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.29.7.tgz", + "integrity": "sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.28.6", - "@babel/template": "^7.28.6" + "@babel/types": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.29.7.tgz", + "integrity": "sha512-RK7/IyU5phpuCdBAuig5VkzG/EnbDaui5SQGdU9BFrHdV+mV4cUjLMQ9lJDjLNtWHsqtiefpGZUXQP2BiTYMsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/template": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1754,14 +1841,14 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz", - "integrity": "sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.29.7.tgz", + "integrity": "sha512-iPX8aD6H9zV5s7ZsqTdNocPN/MGQ5sSMnElKrktxjJRMnB2jN/1p2+R7GkfD6CAYoVFqy5A4XnSIUeGgJzIWpg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1", - "@babel/traverse": "^7.28.5" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1771,14 +1858,14 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.28.6.tgz", - "integrity": "sha512-SljjowuNKB7q5Oayv4FoPzeB74g3QgLt8IVJw9ADvWy3QnUb/01aw8I4AVv8wYnPvQz2GDDZ/g3GhcNyDBI4Bg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.29.7.tgz", + "integrity": "sha512-3qc18hsD2RdZiyJNDNc7HQpv6xbncwh8FYtxNFFzclSyh/trPD9KkVR9BDECUjDLvb7yJVF15GfYUuC+LMkkiQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.28.5", - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-create-regexp-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1788,13 +1875,13 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz", - "integrity": "sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.29.7.tgz", + "integrity": "sha512-6IvRRriEMqnBwD6chtxdLpMYCHWEzN+oL5cyQtjykya19UgzbmKhxmhZgKC/LHxS2nYr9Q/qYPZ5Lr6jOL9+yQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1804,14 +1891,14 @@ } }, "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.28.6.tgz", - "integrity": "sha512-5suVoXjC14lUN6ZL9OLKIHCNVWCrqGqlmEp/ixdXjvgnEl/kauLvvMO/Xw9NyMc95Joj1AeLVPVMvibBgSoFlA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.29.7.tgz", + "integrity": "sha512-2wiIyo2BjtgU7HufSeDnL9L2O7zr8jmhFKuSr65VpRkUiRKRNpb0mdlk56+XPPKoIrfHqzbMuglDvZun0RISsA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.28.5", - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-create-regexp-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1821,13 +1908,13 @@ } }, "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz", - "integrity": "sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.29.7.tgz", + "integrity": "sha512-giOlEm/EFjfjr+te9NsdjkUo2v4f8rS/SXPumRVHAtbNcyNlvtREkU1dZzaIDclNpnaVhlCqRdFKhJBjBikzLg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1837,14 +1924,14 @@ } }, "node_modules/@babel/plugin-transform-explicit-resource-management": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.6.tgz", - "integrity": "sha512-Iao5Konzx2b6g7EPqTy40UZbcdXE126tTxVFr/nAIj+WItNxjKSYTEw3RC+A2/ZetmdJsgueL1KhaMCQHkLPIg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.29.7.tgz", + "integrity": "sha512-Rstj7coNz8sE+7Ju7ihpHLI564lsK5pUpNNlvptCIC/16E/S5hbl6n3kESPKdNRmqEWlpn5xpS5Q2dvXBsySLw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.28.6", - "@babel/plugin-transform-destructuring": "^7.28.5" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/plugin-transform-destructuring": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1854,13 +1941,13 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.6.tgz", - "integrity": "sha512-WitabqiGjV/vJ0aPOLSFfNY1u9U3R7W36B03r5I2KoNix+a3sOhJ3pKFB3R5It9/UiK78NiO0KE9P21cMhlPkw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.29.7.tgz", + "integrity": "sha512-zFpMOTLZBdW5LfObqcSbL6kefg4R4eLdmvS0wbN9M6D5Mym/sKm9toOoWyVOa+xDjvCnuWcHls2YonXwHvH3CQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1870,13 +1957,13 @@ } }, "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz", - "integrity": "sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.29.7.tgz", + "integrity": "sha512-24B2nOy2TeJSMheqwPD4DDQOV/elLSIlKxjZt4i05H5AgdPdWR3n18HnNrcJ+j76WJd9gbwb9jPjNYUy6RautA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1886,14 +1973,14 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz", - "integrity": "sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.29.7.tgz", + "integrity": "sha512-zeSIHh0+E1Um1WJRXCFlHQYu2ieJNdivLLjlBEp+dIBu3S51n+SZZmIXjxnItw6pz56Cn+KvK68BIBVsxq2JiQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1", - "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1903,15 +1990,15 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz", - "integrity": "sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.29.7.tgz", + "integrity": "sha512-otRWaHXE6fbAGkePvaj/kvs3HsqXfPhlnzwSOlnFgbqCPMd975dW+4wZ00WFBt+/YlBGcJwNrARQTOJOb4ZrIg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.27.1", - "@babel/helper-plugin-utils": "^7.27.1", - "@babel/traverse": "^7.27.1" + "@babel/helper-compilation-targets": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1921,13 +2008,13 @@ } }, "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.28.6.tgz", - "integrity": "sha512-Nr+hEN+0geQkzhbdgQVPoqr47lZbm+5fCUmO70722xJZd0Mvb59+33QLImGj6F+DkK3xgDi1YVysP8whD6FQAw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.29.7.tgz", + "integrity": "sha512-RRnE2+eon1rJAq8MnoF1b5kTpY1vU88twHcvcKMrsqP/jxIRqDVs9iJB5fqPuqyeFAW0wJo4MlUIPpQCq/aRsg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1937,13 +2024,13 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz", - "integrity": "sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.29.7.tgz", + "integrity": "sha512-DZ/oLP21ZuWx1vKqnoNv6/tvEK48AQOBRai40CX9dTjGluvT/YZCyY3rryDtyUqCEoyNroy5KKPwX2iQCiRvyw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1953,13 +2040,13 @@ } }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.6.tgz", - "integrity": "sha512-+anKKair6gpi8VsM/95kmomGNMD0eLz1NQ8+Pfw5sAwWH9fGYXT50E55ZpV0pHUHWf6IUTWPM+f/7AAff+wr9A==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.29.7.tgz", + "integrity": "sha512-A0H91hh6W8MFRkp5TqJmMr39jzGD1A1E1Ysiv2O06Sfbhkapm+XyIzxWCEh5kqwOZ1/8QZ0dY3SeQ7XBqfJd5Q==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1969,13 +2056,13 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz", - "integrity": "sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.29.7.tgz", + "integrity": "sha512-hl1kwFZCCiDyfH25Xmco9jTrkPgnS9pmOzSG7W5I4SaGbLeqKv417hcU2RKmaxoPEgsoJh7ZPOrnPGq99bHoUg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1985,14 +2072,14 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz", - "integrity": "sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.29.7.tgz", + "integrity": "sha512-fxtQoH3m5ywUSIfaH0FGCzWu4McsYon5bD3K4XnskC7f+OyQMj7rsOMi4NvvmJ83WwBAg4UCe+ov4VZlqEvyew==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.27.1", - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-module-transforms": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2002,14 +2089,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.28.6.tgz", - "integrity": "sha512-jppVbf8IV9iWWwWTQIxJMAJCWBuuKx71475wHwYytrRGQ2CWiDvYlADQno3tcYpS/T2UUWFQp3nVtYfK/YBQrA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.29.7.tgz", + "integrity": "sha512-j0vCldybPC5b5dwCQOJ21uKtHzt7hxLygJTg9eF1ScfaikEDNfzn94XoW5Fi+seBR0nCyL23xaBFFkq7dTM8XQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.28.6", - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-module-transforms": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2019,16 +2106,16 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.28.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.28.5.tgz", - "integrity": "sha512-vn5Jma98LCOeBy/KpeQhXcV2WZgaRUtjwQmjoBuLNlOmkg0fB5pdvYVeWRYI69wWKwK2cD1QbMiUQnoujWvrew==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.29.7.tgz", + "integrity": "sha512-TM2ZcQLoG2/y4HODiStCo10DibYhWhGWAwVv+EQKmG/7GFl0N+AAmUiXOMKM+aiJ9XBJ9AHVZBvTzMnJ2sM3cQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.28.3", - "@babel/helper-plugin-utils": "^7.27.1", - "@babel/helper-validator-identifier": "^7.28.5", - "@babel/traverse": "^7.28.5" + "@babel/helper-module-transforms": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/helper-validator-identifier": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2038,14 +2125,14 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz", - "integrity": "sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.29.7.tgz", + "integrity": "sha512-B4UkaTK3QpgCwJnrxKfMPKdo92CN7OKXAlpAAnM3UPu0Q0lCCk57ylA9AJbRy2v8dDKOPAAWcoR6CMyeoHwRCA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.27.1", - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-module-transforms": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2055,14 +2142,14 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz", - "integrity": "sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.29.7.tgz", + "integrity": "sha512-vuFoLwr4qnv2xbZ16SQd6uPcH5FNrLHhk/Jzo++0XJFcaDsr4gjJVg6j398oMHiC+83k/GiBzviwF5KBJkPUtQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.27.1", - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-create-regexp-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2072,13 +2159,13 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz", - "integrity": "sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.29.7.tgz", + "integrity": "sha512-fEo41GmsOUhOBlw8ioo6zvjX5Xc2Lqkzlyfqbpsk3eB6TReV18uhxZ0esfEokVbY2+PVJAQHNKxER6lGrzNd3A==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2088,13 +2175,13 @@ } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.28.6.tgz", - "integrity": "sha512-3wKbRgmzYbw24mDJXT7N+ADXw8BC/imU9yo9c9X9NKaLF1fW+e5H1U5QjMUBe4Qo4Ox/o++IyUkl1sVCLgevKg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.29.7.tgz", + "integrity": "sha512-idmp1dFaekP9GbcMvG24Kvw2BfhFZjHnNJCkV4WuIY4PskJzwI3f1N5OdgYke38T7rftO6ERulFRn2cFeZwRkg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2104,13 +2191,13 @@ } }, "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.28.6.tgz", - "integrity": "sha512-SJR8hPynj8outz+SlStQSwvziMN4+Bq99it4tMIf5/Caq+3iOc0JtKyse8puvyXkk3eFRIA5ID/XfunGgO5i6w==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.29.7.tgz", + "integrity": "sha512-zR7fv/z14OjgHl4AgRtkDBvBMhIzCxqV/qN/2BCRC7LjFwvuzjYe7gDWxC4Wl/SNsLM6SE1IWvRPYMgSJaUvNw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2120,17 +2207,17 @@ } }, "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.6.tgz", - "integrity": "sha512-5rh+JR4JBC4pGkXLAcYdLHZjXudVxWMXbB6u6+E9lRL5TrGVbHt1TjxGbZ8CkmYw9zjkB7jutzOROArsqtncEA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.29.7.tgz", + "integrity": "sha512-Ld98jn4c0smUywL57m7SgsHq3OpThOa6LqZJif3G6jYOovPleoFhVrBJ1WegRApSFB2wu4+RelAj9AC9G08Z4A==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.28.6", - "@babel/helper-plugin-utils": "^7.28.6", - "@babel/plugin-transform-destructuring": "^7.28.5", - "@babel/plugin-transform-parameters": "^7.27.7", - "@babel/traverse": "^7.28.6" + "@babel/helper-compilation-targets": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/plugin-transform-destructuring": "^7.29.7", + "@babel/plugin-transform-parameters": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2140,14 +2227,14 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz", - "integrity": "sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.29.7.tgz", + "integrity": "sha512-Ea/diGcw0twB5IlZPO5sgET6fJsLJqPABqTuFWIR+iMPGPZJkATEIWx0wa+aEQ5UY1CBQyP/gkAiLEqn1vBiQA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1", - "@babel/helper-replace-supers": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/helper-replace-supers": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2157,13 +2244,13 @@ } }, "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.28.6.tgz", - "integrity": "sha512-R8ja/Pyrv0OGAvAXQhSTmWyPJPml+0TMqXlO5w+AsMEiwb2fg3WkOvob7UxFSL3OIttFSGSRFKQsOhJ/X6HQdQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.29.7.tgz", + "integrity": "sha512-sLsyndxK2VwX6yNUOakMb7Sh553ZTe/vVM1XJ+9Z5aW1ytsc8xOIwmyk05NNjN60vkc5/KqoTH6hB4V41LJhng==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2173,14 +2260,14 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.6.tgz", - "integrity": "sha512-A4zobikRGJTsX9uqVFdafzGkqD30t26ck2LmOzAuLL8b2x6k3TIqRiT2xVvA9fNmFeTX484VpsdgmKNA0bS23w==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.29.7.tgz", + "integrity": "sha512-6GM1dhvK3gNODkXcEcMCOLEDCLSoZ/sBbro2Ax8HURyasQ4NshagQixkRFdh5niI6E4gmA/jYI/4aT7rRos3ZQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.28.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2190,13 +2277,13 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.27.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz", - "integrity": "sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.29.7.tgz", + "integrity": "sha512-ZDOBqV/qLYJI0YElr8DcENEyARsFQeESqWXH6gZlghYXuPPjvweuDhP4VyEi4BlUBlLRFZVjxoZDMjxhLW766g==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2206,14 +2293,14 @@ } }, "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.28.6.tgz", - "integrity": "sha512-piiuapX9CRv7+0st8lmuUlRSmX6mBcVeNQ1b4AYzJxfCMuBfB0vBXDiGSmm03pKJw1v6cZ8KSeM+oUnM6yAExg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.29.7.tgz", + "integrity": "sha512-/6Rz4DK1ETDEM/bWHsPHcaEe7ZaT1EqSXjtSP/L0DijOYuaUhiRiOKcwpZ8P7zR4xXEHc2ITdiCgBm9Tpyv9ug==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.28.6", - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-create-class-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2223,15 +2310,15 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.28.6.tgz", - "integrity": "sha512-b97jvNSOb5+ehyQmBpmhOCiUC5oVK4PMnpRvO7+ymFBoqYjeDHIU9jnrNUuwHOiL9RpGDoKBpSViarV+BU+eVA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.29.7.tgz", + "integrity": "sha512-+BNo06dnrzdNNqCm1X6YUaVv0DKk8Q+JYcoZfOkLhYWNCXzlwTSRq8zGWayT1csjcpNXV9CQTBRRbmTLZac5cA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.27.3", - "@babel/helper-create-class-features-plugin": "^7.28.6", - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-annotate-as-pure": "^7.29.7", + "@babel/helper-create-class-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2240,14 +2327,27 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz", - "integrity": "sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==", + "node_modules/@babel/plugin-transform-private-property-in-object/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.29.7.tgz", + "integrity": "sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/types": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.29.7.tgz", + "integrity": "sha512-bOMRLQuI0A5ZqHq3OWJ89/rXpJ/NJrbVhXiP4zwPGMs6kpcVsuTUNjwoE30K0Qm3mf48a/TnRYYD6vPNqcg6jA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2257,13 +2357,13 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.6.tgz", - "integrity": "sha512-eZhoEZHYQLL5uc1gS5e9/oTknS0sSSAtd5TkKMUp3J+S/CaUjagc0kOUPsEbDmMeva0nC3WWl4SxVY6+OBuxfw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.29.7.tgz", + "integrity": "sha512-rNNFV0DBAJp988xW2DOntfDoYn1eR8GGF5AT5vYc+rjyfaQkM242c9tZUHHPe7KYaiJizXPWhQTzzdbXySyhBw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2273,14 +2373,14 @@ } }, "node_modules/@babel/plugin-transform-regexp-modifiers": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.28.6.tgz", - "integrity": "sha512-QGWAepm9qxpaIs7UM9FvUSnCGlb8Ua1RhyM4/veAxLwt3gMat/LSGrZixyuj4I6+Kn9iwvqCyPTtbdxanYoWYg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.29.7.tgz", + "integrity": "sha512-mB5Fs0VWrJ42ZCmc8114v60qetdaUVNkj9PmSZRmanCZM3S9hm0CFRLjRmYIsuXav14l2jvZ+4T8iiCGnhj3nQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.28.5", - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-create-regexp-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2290,13 +2390,13 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz", - "integrity": "sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.29.7.tgz", + "integrity": "sha512-5+YhdpVgmfSmwZyLMftfaiffLRMHjzIRHFHHLdibcSyJm2pasMrKHrO3Ptrt2DRshjvpgjEJJ1zVW14WPq/6QA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2337,13 +2437,13 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz", - "integrity": "sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.29.7.tgz", + "integrity": "sha512-I+WYbGBAiCn7nA6xBrlgPH+MB7HWb4u8pv5S0Pv7OtwNvIFvCCb24YlttKEeUFVurfBCEaOTnuhlqsb7f0Z5Dg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2353,14 +2453,14 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.28.6.tgz", - "integrity": "sha512-9U4QObUC0FtJl05AsUcodau/RWDytrU6uKgkxu09mLR9HLDAtUMoPuuskm5huQsoktmsYpI+bGmq+iapDcriKA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.29.7.tgz", + "integrity": "sha512-/u5K1QWada7tbYNqTjMh96718g9NTwh9tfPJMsSmVsQwGT447FskV+KcfeXkXq2GWki4EM/MuTdmBec+hOuVTQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.28.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2370,13 +2470,13 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz", - "integrity": "sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.29.7.tgz", + "integrity": "sha512-BCHzNYJGe9l7EpwwDBN/ztlL2NYFFq8hp9ddjtUEM9f2O7S7kKV/lL6Fwo7IF7NSkYhPK2vO+86nIGltA90MsA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2386,13 +2486,13 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz", - "integrity": "sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.29.7.tgz", + "integrity": "sha512-NCSEJ4sLFU2gqAub45HYh4fus2yQ36rr6ei6vpU7NdoJqCpxvEG8E6eJpscGyXP3VHD2Ny+fSXr04k1hoUrFqA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2402,13 +2502,13 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz", - "integrity": "sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.29.7.tgz", + "integrity": "sha512-223mNGoTkBiTEWFoK+Q6Go3tueMRclO8vxxxxquNCYuNI4jWOofFKJRRDu6SDrB8Sgo1UEGW9T4GAQ8ZyRso1A==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2418,13 +2518,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz", - "integrity": "sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.29.7.tgz", + "integrity": "sha512-jCfXxSjf94lf4E0hKE0AByxF6F3/pVFqRdUUNkDJhsY0m1ZKjnN6ZYyMeHNpzflxb/0q5b7t3p+BE+SLF1WOtA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2434,14 +2534,14 @@ } }, "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.28.6.tgz", - "integrity": "sha512-4Wlbdl/sIZjzi/8St0evF0gEZrgOswVO6aOzqxh1kDZOl9WmLrHq2HtGhnOJZmHZYKP8WZ1MDLCt5DAWwRo57A==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.29.7.tgz", + "integrity": "sha512-OgZ+zoAJgZLUCunsTRQ5LAjOywDv5zzZ2/hQ5aMw1pGXyY2rtE8/chXYUmu3AlVHKpm10KEdG9aMwbI/K76ZGw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.28.5", - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-create-regexp-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2451,14 +2551,14 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz", - "integrity": "sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.29.7.tgz", + "integrity": "sha512-7D/x/23/d/3VqZ0QA+LGbZMlGwZjztBygSWWWsfTPoQ1oQ6Q1P6Mr3d0kk42XabyUVw+fha3LqdRsFqeKqvCyA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.27.1", - "@babel/helper-plugin-utils": "^7.27.1" + "@babel/helper-create-regexp-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2468,14 +2568,14 @@ } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.28.6.tgz", - "integrity": "sha512-/wHc/paTUmsDYN7SZkpWxogTOBNnlx7nBQYfy6JJlCT7G3mVhltk3e++N7zV0XfgGsrqBxd4rJQt9H16I21Y1Q==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.29.7.tgz", + "integrity": "sha512-BLOhLht9DOJwIxlmp91wHvkXv1lguuHS3/FwUO8HL1H0u8s4hR1gASVFyilu9iGtcTRYqjTZmlsFFeQletntEg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.28.5", - "@babel/helper-plugin-utils": "^7.28.6" + "@babel/helper-create-regexp-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2605,33 +2705,33 @@ } }, "node_modules/@babel/template": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", - "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz", + "integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.28.6", - "@babel/parser": "^7.28.6", - "@babel/types": "^7.28.6" + "@babel/code-frame": "^7.29.7", + "@babel/parser": "^7.29.7", + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.6.tgz", - "integrity": "sha512-fgWX62k02qtjqdSNTAGxmKYY/7FSL9WAS1o2Hu5+I5m9T0yxZzr4cnrfXQ/MX0rIifthCSs6FKTlzYbJcPtMNg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.7.tgz", + "integrity": "sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.28.6", - "@babel/generator": "^7.28.6", - "@babel/helper-globals": "^7.28.0", - "@babel/parser": "^7.28.6", - "@babel/template": "^7.28.6", - "@babel/types": "^7.28.6", + "@babel/code-frame": "^7.29.7", + "@babel/generator": "^7.29.7", + "@babel/helper-globals": "^7.29.7", + "@babel/parser": "^7.29.7", + "@babel/template": "^7.29.7", + "@babel/types": "^7.29.7", "debug": "^4.3.1" }, "engines": { @@ -2639,14 +2739,14 @@ } }, "node_modules/@babel/traverse/node_modules/@babel/generator": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.6.tgz", - "integrity": "sha512-lOoVRwADj8hjf7al89tvQ2a1lf53Z+7tiXMgpZJL3maQPDxh0DgLMN62B2MKUOFcoodBHLMbDM6WAbKgNy5Suw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz", + "integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/parser": "^7.28.6", - "@babel/types": "^7.28.6", + "@babel/parser": "^7.29.7", + "@babel/types": "^7.29.7", "@jridgewell/gen-mapping": "^0.3.12", "@jridgewell/trace-mapping": "^0.3.28", "jsesc": "^3.0.2" @@ -2656,14 +2756,14 @@ } }, "node_modules/@babel/types": { - "version": "7.28.6", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.6.tgz", - "integrity": "sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz", + "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-string-parser": "^7.27.1", - "@babel/helper-validator-identifier": "^7.28.5" + "@babel/helper-string-parser": "^7.29.7", + "@babel/helper-validator-identifier": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2714,9 +2814,9 @@ } }, "node_modules/@esbuild/aix-ppc64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.9.tgz", - "integrity": "sha512-OaGtL73Jck6pBKjNIe24BnFE6agGl+6KxDtTfHhy1HmhthfKouEcOhqpSL64K4/0WCtbKFLOdzD/44cJ4k9opA==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.1.tgz", + "integrity": "sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==", "cpu": [ "ppc64" ], @@ -2731,9 +2831,9 @@ } }, "node_modules/@esbuild/android-arm": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.9.tgz", - "integrity": "sha512-5WNI1DaMtxQ7t7B6xa572XMXpHAaI/9Hnhk8lcxF4zVN4xstUgTlvuGDorBguKEnZO70qwEcLpfifMLoxiPqHQ==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.1.tgz", + "integrity": "sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==", "cpu": [ "arm" ], @@ -2748,9 +2848,9 @@ } }, "node_modules/@esbuild/android-arm64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.9.tgz", - "integrity": "sha512-IDrddSmpSv51ftWslJMvl3Q2ZT98fUSL2/rlUXuVqRXHCs5EUF1/f+jbjF5+NG9UffUDMCiTyh8iec7u8RlTLg==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.1.tgz", + "integrity": "sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==", "cpu": [ "arm64" ], @@ -2765,9 +2865,9 @@ } }, "node_modules/@esbuild/android-x64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.9.tgz", - "integrity": "sha512-I853iMZ1hWZdNllhVZKm34f4wErd4lMyeV7BLzEExGEIZYsOzqDWDf+y082izYUE8gtJnYHdeDpN/6tUdwvfiw==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.1.tgz", + "integrity": "sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==", "cpu": [ "x64" ], @@ -2782,9 +2882,9 @@ } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.9.tgz", - "integrity": "sha512-XIpIDMAjOELi/9PB30vEbVMs3GV1v2zkkPnuyRRURbhqjyzIINwj+nbQATh4H9GxUgH1kFsEyQMxwiLFKUS6Rg==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.1.tgz", + "integrity": "sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==", "cpu": [ "arm64" ], @@ -2799,9 +2899,9 @@ } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.9.tgz", - "integrity": "sha512-jhHfBzjYTA1IQu8VyrjCX4ApJDnH+ez+IYVEoJHeqJm9VhG9Dh2BYaJritkYK3vMaXrf7Ogr/0MQ8/MeIefsPQ==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.1.tgz", + "integrity": "sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==", "cpu": [ "x64" ], @@ -2816,9 +2916,9 @@ } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.9.tgz", - "integrity": "sha512-z93DmbnY6fX9+KdD4Ue/H6sYs+bhFQJNCPZsi4XWJoYblUqT06MQUdBCpcSfuiN72AbqeBFu5LVQTjfXDE2A6Q==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.1.tgz", + "integrity": "sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==", "cpu": [ "arm64" ], @@ -2833,9 +2933,9 @@ } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.9.tgz", - "integrity": "sha512-mrKX6H/vOyo5v71YfXWJxLVxgy1kyt1MQaD8wZJgJfG4gq4DpQGpgTB74e5yBeQdyMTbgxp0YtNj7NuHN0PoZg==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.1.tgz", + "integrity": "sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==", "cpu": [ "x64" ], @@ -2850,9 +2950,9 @@ } }, "node_modules/@esbuild/linux-arm": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.9.tgz", - "integrity": "sha512-HBU2Xv78SMgaydBmdor38lg8YDnFKSARg1Q6AT0/y2ezUAKiZvc211RDFHlEZRFNRVhcMamiToo7bDx3VEOYQw==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.1.tgz", + "integrity": "sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==", "cpu": [ "arm" ], @@ -2867,9 +2967,9 @@ } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.9.tgz", - "integrity": "sha512-BlB7bIcLT3G26urh5Dmse7fiLmLXnRlopw4s8DalgZ8ef79Jj4aUcYbk90g8iCa2467HX8SAIidbL7gsqXHdRw==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.1.tgz", + "integrity": "sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==", "cpu": [ "arm64" ], @@ -2884,9 +2984,9 @@ } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.9.tgz", - "integrity": "sha512-e7S3MOJPZGp2QW6AK6+Ly81rC7oOSerQ+P8L0ta4FhVi+/j/v2yZzx5CqqDaWjtPFfYz21Vi1S0auHrap3Ma3A==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.1.tgz", + "integrity": "sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==", "cpu": [ "ia32" ], @@ -2901,9 +3001,9 @@ } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.9.tgz", - "integrity": "sha512-Sbe10Bnn0oUAB2AalYztvGcK+o6YFFA/9829PhOCUS9vkJElXGdphz0A3DbMdP8gmKkqPmPcMJmJOrI3VYB1JQ==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.1.tgz", + "integrity": "sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==", "cpu": [ "loong64" ], @@ -2918,9 +3018,9 @@ } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.9.tgz", - "integrity": "sha512-YcM5br0mVyZw2jcQeLIkhWtKPeVfAerES5PvOzaDxVtIyZ2NUBZKNLjC5z3/fUlDgT6w89VsxP2qzNipOaaDyA==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.1.tgz", + "integrity": "sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==", "cpu": [ "mips64el" ], @@ -2935,9 +3035,9 @@ } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.9.tgz", - "integrity": "sha512-++0HQvasdo20JytyDpFvQtNrEsAgNG2CY1CLMwGXfFTKGBGQT3bOeLSYE2l1fYdvML5KUuwn9Z8L1EWe2tzs1w==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.1.tgz", + "integrity": "sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==", "cpu": [ "ppc64" ], @@ -2952,9 +3052,9 @@ } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.9.tgz", - "integrity": "sha512-uNIBa279Y3fkjV+2cUjx36xkx7eSjb8IvnL01eXUKXez/CBHNRw5ekCGMPM0BcmqBxBcdgUWuUXmVWwm4CH9kg==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.1.tgz", + "integrity": "sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==", "cpu": [ "riscv64" ], @@ -2969,9 +3069,9 @@ } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.9.tgz", - "integrity": "sha512-Mfiphvp3MjC/lctb+7D287Xw1DGzqJPb/J2aHHcHxflUo+8tmN/6d4k6I2yFR7BVo5/g7x2Monq4+Yew0EHRIA==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.1.tgz", + "integrity": "sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==", "cpu": [ "s390x" ], @@ -2986,9 +3086,9 @@ } }, "node_modules/@esbuild/linux-x64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.9.tgz", - "integrity": "sha512-iSwByxzRe48YVkmpbgoxVzn76BXjlYFXC7NvLYq+b+kDjyyk30J0JY47DIn8z1MO3K0oSl9fZoRmZPQI4Hklzg==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.1.tgz", + "integrity": "sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==", "cpu": [ "x64" ], @@ -3003,9 +3103,9 @@ } }, "node_modules/@esbuild/netbsd-arm64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.9.tgz", - "integrity": "sha512-9jNJl6FqaUG+COdQMjSCGW4QiMHH88xWbvZ+kRVblZsWrkXlABuGdFJ1E9L7HK+T0Yqd4akKNa/lO0+jDxQD4Q==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.1.tgz", + "integrity": "sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==", "cpu": [ "arm64" ], @@ -3020,9 +3120,9 @@ } }, "node_modules/@esbuild/netbsd-x64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.9.tgz", - "integrity": "sha512-RLLdkflmqRG8KanPGOU7Rpg829ZHu8nFy5Pqdi9U01VYtG9Y0zOG6Vr2z4/S+/3zIyOxiK6cCeYNWOFR9QP87g==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.1.tgz", + "integrity": "sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==", "cpu": [ "x64" ], @@ -3037,9 +3137,9 @@ } }, "node_modules/@esbuild/openbsd-arm64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.9.tgz", - "integrity": "sha512-YaFBlPGeDasft5IIM+CQAhJAqS3St3nJzDEgsgFixcfZeyGPCd6eJBWzke5piZuZ7CtL656eOSYKk4Ls2C0FRQ==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.1.tgz", + "integrity": "sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==", "cpu": [ "arm64" ], @@ -3054,9 +3154,9 @@ } }, "node_modules/@esbuild/openbsd-x64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.9.tgz", - "integrity": "sha512-1MkgTCuvMGWuqVtAvkpkXFmtL8XhWy+j4jaSO2wxfJtilVCi0ZE37b8uOdMItIHz4I6z1bWWtEX4CJwcKYLcuA==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.1.tgz", + "integrity": "sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==", "cpu": [ "x64" ], @@ -3071,9 +3171,9 @@ } }, "node_modules/@esbuild/openharmony-arm64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.9.tgz", - "integrity": "sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.1.tgz", + "integrity": "sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==", "cpu": [ "arm64" ], @@ -3088,9 +3188,9 @@ } }, "node_modules/@esbuild/sunos-x64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.9.tgz", - "integrity": "sha512-WjH4s6hzo00nNezhp3wFIAfmGZ8U7KtrJNlFMRKxiI9mxEK1scOMAaa9i4crUtu+tBr+0IN6JCuAcSBJZfnphw==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.1.tgz", + "integrity": "sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==", "cpu": [ "x64" ], @@ -3105,9 +3205,9 @@ } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.9.tgz", - "integrity": "sha512-mGFrVJHmZiRqmP8xFOc6b84/7xa5y5YvR1x8djzXpJBSv/UsNK6aqec+6JDjConTgvvQefdGhFDAs2DLAds6gQ==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.1.tgz", + "integrity": "sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==", "cpu": [ "arm64" ], @@ -3122,9 +3222,9 @@ } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.9.tgz", - "integrity": "sha512-b33gLVU2k11nVx1OhX3C8QQP6UHQK4ZtN56oFWvVXvz2VkDoe6fbG8TOgHFxEvqeqohmRnIHe5A1+HADk4OQww==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.1.tgz", + "integrity": "sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==", "cpu": [ "ia32" ], @@ -3139,9 +3239,9 @@ } }, "node_modules/@esbuild/win32-x64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.9.tgz", - "integrity": "sha512-PPOl1mi6lpLNQxnGoyAfschAodRFYXJ+9fs6WHXz7CSWKbOqiMZsubC+BQsVKuul+3vKLuwTHsS2c2y9EoKwxQ==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.1.tgz", + "integrity": "sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==", "cpu": [ "x64" ], @@ -3185,15 +3285,15 @@ } }, "node_modules/@eslint/config-array": { - "version": "0.21.1", - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz", - "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==", + "version": "0.21.2", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz", + "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==", "dev": true, "license": "Apache-2.0", "dependencies": { "@eslint/object-schema": "^2.1.7", "debug": "^4.3.1", - "minimatch": "^3.1.2" + "minimatch": "^3.1.5" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -3250,9 +3350,9 @@ } }, "node_modules/@eslint/eslintrc/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz", + "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==", "dev": true, "license": "MIT", "dependencies": { @@ -3284,9 +3384,9 @@ "license": "MIT" }, "node_modules/@eslint/js": { - "version": "9.39.2", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.2.tgz", - "integrity": "sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==", + "version": "9.39.5", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.5.tgz", + "integrity": "sha512-QywQuszQh77pIXCsq998c8hbhSTI/azTty1Z6N53dmAudKHhy573j3yvRLsX2BSp8YpLtoCEG8E9DJe+8zUh4A==", "dev": true, "license": "MIT", "engines": { @@ -3383,10 +3483,20 @@ "node": ">=6" } }, + "node_modules/@gar/promise-retry": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@gar/promise-retry/-/promise-retry-1.0.3.tgz", + "integrity": "sha512-GmzA9ckNokPypTg10pgpeHNQe7ph+iIKKmhKu3Ob9ANkswreCx7R3cKmY781K8QK3AqVL3xVh9A42JvIAbkkSA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^20.17.0 || >=22.9.0" + } + }, "node_modules/@hono/node-server": { - "version": "1.19.9", - "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.9.tgz", - "integrity": "sha512-vHL6w3ecZsky+8P5MD+eFfaGTyCeOHUIFYMGpQGbrBTSmNNoxv0if69rEZ5giu36weC5saFuznL411gRX7bJDw==", + "version": "1.19.14", + "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.14.tgz", + "integrity": "sha512-GwtvgtXxnWsucXvbQXkRgqksiH2Qed37H9xHZocE5sA3N8O8O8/8FA3uclQXxXVzc9XBZuEOMK7+r02FmSpHtw==", "dev": true, "license": "MIT", "engines": { @@ -3397,29 +3507,43 @@ } }, "node_modules/@humanfs/core": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", - "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz", + "integrity": "sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==", "dev": true, "license": "Apache-2.0", + "dependencies": { + "@humanfs/types": "^0.15.0" + }, "engines": { "node": ">=18.18.0" } }, "node_modules/@humanfs/node": { - "version": "0.16.7", - "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz", - "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.8.tgz", + "integrity": "sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@humanfs/core": "^0.19.1", + "@humanfs/core": "^0.19.2", + "@humanfs/types": "^0.15.0", "@humanwhocodes/retry": "^0.4.0" }, "engines": { "node": ">=18.18.0" } }, + "node_modules/@humanfs/types": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/@humanfs/types/-/types-0.15.0.tgz", + "integrity": "sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, "node_modules/@humanwhocodes/module-importer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", @@ -3798,103 +3922,6 @@ } } }, - "node_modules/@isaacs/balanced-match": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz", - "integrity": "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": "20 || >=22" - } - }, - "node_modules/@isaacs/brace-expansion": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz", - "integrity": "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@isaacs/balanced-match": "^4.0.1" - }, - "engines": { - "node": "20 || >=22" - } - }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "license": "ISC", - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-styles": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", - "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true, - "license": "MIT" - }, - "node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, "node_modules/@isaacs/fs-minipass": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz", @@ -3909,9 +3936,9 @@ } }, "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.6.tgz", + "integrity": "sha512-+Sg6GCR/wy1oSmQDFq4LQDAhm3ETKnorxN+y5nbLULOR3P0c14f2Wurzj3/xqPXtasLFfHd5iRFQ7AJt4KH2cw==", "dev": true, "license": "MIT", "engines": { @@ -3929,6 +3956,17 @@ "@jridgewell/trace-mapping": "^0.3.24" } }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", @@ -3986,9 +4024,9 @@ } }, "node_modules/@jsonjoy.com/buffers": { - "version": "17.65.0", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-17.65.0.tgz", - "integrity": "sha512-eBrIXd0/Ld3p9lpDDlMaMn6IEfWqtHMD+z61u0JrIiPzsV1r7m6xDZFRxJyvIFTEO+SWdYF9EiQbXZGd8BzPfA==", + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-17.67.0.tgz", + "integrity": "sha512-tfExRpYxBvi32vPs9ZHaTjSP4fHAfzSmcahOfNxtvGHcyJel+aibkPlGeBB+7AoC6hL7lXIE++8okecBxx7lcw==", "dev": true, "license": "Apache-2.0", "engines": { @@ -4020,14 +4058,14 @@ } }, "node_modules/@jsonjoy.com/fs-core": { - "version": "4.56.4", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-core/-/fs-core-4.56.4.tgz", - "integrity": "sha512-mgiAa7w0N0mlr7G3PUY/iRSYuJwyZmHBt+y7D9veiXfAqsIhEi9+FCu47tU+y/3KPqaTNJMsfgAGwUnLPnRdqA==", + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-core/-/fs-core-4.64.0.tgz", + "integrity": "sha512-zs2TAq7Six5jgMuoMNjpspAvOP3mhtgq/k1UyQodEzCtQi/N83y2/y+zcvnZSGp/Rxq96DBN+bValOBQAyn/ew==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@jsonjoy.com/fs-node-builtins": "4.56.4", - "@jsonjoy.com/fs-node-utils": "4.56.4", + "@jsonjoy.com/fs-node-builtins": "4.64.0", + "@jsonjoy.com/fs-node-utils": "4.64.0", "thingies": "^2.5.0" }, "engines": { @@ -4042,15 +4080,15 @@ } }, "node_modules/@jsonjoy.com/fs-fsa": { - "version": "4.56.4", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-fsa/-/fs-fsa-4.56.4.tgz", - "integrity": "sha512-D6tHSr8xMiZnV9pQcX0ysoEg1kTsTFK6fRV+TX+1uFcEiNKJR7hooGBq8iKnkZCXRxY8S4nZJ+rErpVF1XJ4vw==", + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-fsa/-/fs-fsa-4.64.0.tgz", + "integrity": "sha512-nMWOVbkLFyEgmXZih3wyvxA9XpgyyqyfrINMHvEFqhi7uqfRl7c9ERJt6yX7vgMPrB9Uo+OJO+Spa0cFzPD01w==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@jsonjoy.com/fs-core": "4.56.4", - "@jsonjoy.com/fs-node-builtins": "4.56.4", - "@jsonjoy.com/fs-node-utils": "4.56.4", + "@jsonjoy.com/fs-core": "4.64.0", + "@jsonjoy.com/fs-node-builtins": "4.64.0", + "@jsonjoy.com/fs-node-utils": "4.64.0", "thingies": "^2.5.0" }, "engines": { @@ -4065,16 +4103,17 @@ } }, "node_modules/@jsonjoy.com/fs-node": { - "version": "4.56.4", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node/-/fs-node-4.56.4.tgz", - "integrity": "sha512-4G7KBypcWy2BGPnuDCmUQWHasbNZnEqcb3DLODuH22J8fre7YK8MiyciIohkUTFMqR9qem84LK22T1FmUwiTSQ==", + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node/-/fs-node-4.64.0.tgz", + "integrity": "sha512-dO+NNkODbUli4uV42bcNrrLvq5rE7SNpdZ5TNd0dtbLsAaNK3MDiIC9lUi+brboGoIjW6vd2fB1qao60nrk5xA==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@jsonjoy.com/fs-core": "4.56.4", - "@jsonjoy.com/fs-node-builtins": "4.56.4", - "@jsonjoy.com/fs-node-utils": "4.56.4", - "@jsonjoy.com/fs-print": "4.56.4", + "@jsonjoy.com/fs-core": "4.64.0", + "@jsonjoy.com/fs-node-builtins": "4.64.0", + "@jsonjoy.com/fs-node-utils": "4.64.0", + "@jsonjoy.com/fs-print": "4.64.0", + "@jsonjoy.com/fs-snapshot": "4.64.0", "glob-to-regex.js": "^1.0.0", "thingies": "^2.5.0" }, @@ -4090,9 +4129,9 @@ } }, "node_modules/@jsonjoy.com/fs-node-builtins": { - "version": "4.56.4", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-builtins/-/fs-node-builtins-4.56.4.tgz", - "integrity": "sha512-/HMj267Ygg/fa3kHuZL+L7rVXvZ7HT2Bm7d8CpKs6l7QpT4mzTnN4f2/E0u+LsrrJVbT+R34/nsBr2dIZSYIgg==", + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-builtins/-/fs-node-builtins-4.64.0.tgz", + "integrity": "sha512-/o7WRFhUWaM/fOrslwLZGnzn4RmRILykn+lAL+mNObqqRNw+CQSiij6hpCeZ+C7buhdoVo7go/OYqzaSUfDYmA==", "dev": true, "license": "Apache-2.0", "engines": { @@ -4107,15 +4146,15 @@ } }, "node_modules/@jsonjoy.com/fs-node-to-fsa": { - "version": "4.56.4", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-to-fsa/-/fs-node-to-fsa-4.56.4.tgz", - "integrity": "sha512-Wewg2JlMkFpUt2Z+RrhdxLrbG6o4XAZB9UdGbpcQS+acvwytmhEjUCCodD3kqY5wPSNpnIbD614VeTA/5jPzvg==", + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-to-fsa/-/fs-node-to-fsa-4.64.0.tgz", + "integrity": "sha512-WDD9WVs0hb7UAEKTgZW2f66WDrbj7gIIWwpP3spbLyXa0rghtUaFTB8L4gdR3ZCWwiKIsj38/CNijpVmpnuPUw==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@jsonjoy.com/fs-fsa": "4.56.4", - "@jsonjoy.com/fs-node-builtins": "4.56.4", - "@jsonjoy.com/fs-node-utils": "4.56.4" + "@jsonjoy.com/fs-fsa": "4.64.0", + "@jsonjoy.com/fs-node-builtins": "4.64.0", + "@jsonjoy.com/fs-node-utils": "4.64.0" }, "engines": { "node": ">=10.0" @@ -4129,13 +4168,14 @@ } }, "node_modules/@jsonjoy.com/fs-node-utils": { - "version": "4.56.4", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-utils/-/fs-node-utils-4.56.4.tgz", - "integrity": "sha512-7yvPBX+YUPvoljJ5ELmHrK7sLYzEVdLnILoNXLtsztN4Ag8UbS7DteWRiW3BFAUIvI4kDBJ8OymdxwLLCkX+AQ==", + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-utils/-/fs-node-utils-4.64.0.tgz", + "integrity": "sha512-k5Indsx9hWW9xSF7Y6oSKKwtCUNhzZxadub3owhIlitc+iMRVlPPdX2duTKQWBL3qNWpXya8jykgaaWpheeS4w==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@jsonjoy.com/fs-node-builtins": "4.56.4" + "@jsonjoy.com/fs-node-builtins": "4.64.0", + "glob-to-regex.js": "^1.0.1" }, "engines": { "node": ">=10.0" @@ -4149,13 +4189,13 @@ } }, "node_modules/@jsonjoy.com/fs-print": { - "version": "4.56.4", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-print/-/fs-print-4.56.4.tgz", - "integrity": "sha512-GtTDri9Ot1l7XPe3ft+ViTqxFOqtKcM4RLyXEXWDvQEoqgmU/6bCNNjfSze9VlpfC8KfuUYAixuDLD1quzHdow==", + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-print/-/fs-print-4.64.0.tgz", + "integrity": "sha512-PHZFccchvkhWrwPWHjmVAhbC3vSHCtyZvlZfJJ3ho2bnzl450hXri6/8e6pbkWdH+SkmLXNml0sV8e5HDAfxKw==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@jsonjoy.com/fs-node-utils": "4.56.4", + "@jsonjoy.com/fs-node-utils": "4.64.0", "tree-dump": "^1.1.0" }, "engines": { @@ -4170,14 +4210,14 @@ } }, "node_modules/@jsonjoy.com/fs-snapshot": { - "version": "4.56.4", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-snapshot/-/fs-snapshot-4.56.4.tgz", - "integrity": "sha512-qQxl+GVp9gzT21/Ot8qa+pcNurpfTL/ruMODYmshpcTLXy6x06aP4/xdhBOJpBclhqbnQcMTVDCny98CtGvyzQ==", + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-snapshot/-/fs-snapshot-4.64.0.tgz", + "integrity": "sha512-oM7UDeL83q6NBzzsfKAsYKXKVXlykKFqqOLh4xZZKAzzROTlInkPbc6LTDGThEOnPiFiUzA7tYziHG9xavd76Q==", "dev": true, "license": "Apache-2.0", "dependencies": { "@jsonjoy.com/buffers": "^17.65.0", - "@jsonjoy.com/fs-node-utils": "4.56.4", + "@jsonjoy.com/fs-node-utils": "4.64.0", "@jsonjoy.com/json-pack": "^17.65.0", "@jsonjoy.com/util": "^17.65.0" }, @@ -4193,9 +4233,9 @@ } }, "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/base64": { - "version": "17.65.0", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-17.65.0.tgz", - "integrity": "sha512-Xrh7Fm/M0QAYpekSgmskdZYnFdSGnsxJ/tHaolA4bNwWdG9i65S8m83Meh7FOxyJyQAdo4d4J97NOomBLEfkDQ==", + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-17.67.0.tgz", + "integrity": "sha512-5SEsJGsm15aP8TQGkDfJvz9axgPwAEm98S5DxOuYe8e1EbfajcDmgeXXzccEjh+mLnjqEKrkBdjHWS5vFNwDdw==", "dev": true, "license": "Apache-2.0", "engines": { @@ -4210,9 +4250,9 @@ } }, "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/codegen": { - "version": "17.65.0", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-17.65.0.tgz", - "integrity": "sha512-7MXcRYe7n3BG+fo3jicvjB0+6ypl2Y/bQp79Sp7KeSiiCgLqw4Oled6chVv07/xLVTdo3qa1CD0VCCnPaw+RGA==", + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-17.67.0.tgz", + "integrity": "sha512-idnkUplROpdBOV0HMcwhsCUS5TRUi9poagdGs70A6S4ux9+/aPuKbh8+UYRTLYQHtXvAdNfQWXDqZEx5k4Dj2Q==", "dev": true, "license": "Apache-2.0", "engines": { @@ -4227,17 +4267,17 @@ } }, "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/json-pack": { - "version": "17.65.0", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-17.65.0.tgz", - "integrity": "sha512-e0SG/6qUCnVhHa0rjDJHgnXnbsacooHVqQHxspjvlYQSkHm+66wkHw6Gql+3u/WxI/b1VsOdUi0M+fOtkgKGdQ==", + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-17.67.0.tgz", + "integrity": "sha512-t0ejURcGaZsn1ClbJ/3kFqSOjlryd92eQY465IYrezsXmPcfHPE/av4twRSxf6WE+TkZgLY+71vCZbiIiFKA/w==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@jsonjoy.com/base64": "17.65.0", - "@jsonjoy.com/buffers": "17.65.0", - "@jsonjoy.com/codegen": "17.65.0", - "@jsonjoy.com/json-pointer": "17.65.0", - "@jsonjoy.com/util": "17.65.0", + "@jsonjoy.com/base64": "17.67.0", + "@jsonjoy.com/buffers": "17.67.0", + "@jsonjoy.com/codegen": "17.67.0", + "@jsonjoy.com/json-pointer": "17.67.0", + "@jsonjoy.com/util": "17.67.0", "hyperdyperid": "^1.2.0", "thingies": "^2.5.0", "tree-dump": "^1.1.0" @@ -4254,13 +4294,13 @@ } }, "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/json-pointer": { - "version": "17.65.0", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-17.65.0.tgz", - "integrity": "sha512-uhTe+XhlIZpWOxgPcnO+iSCDgKKBpwkDVTyYiXX9VayGV8HSFVJM67M6pUE71zdnXF1W0Da21AvnhlmdwYPpow==", + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-17.67.0.tgz", + "integrity": "sha512-+iqOFInH+QZGmSuaybBUNdh7yvNrXvqR+h3wjXm0N/3JK1EyyFAeGJvqnmQL61d1ARLlk/wJdFKSL+LHJ1eaUA==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@jsonjoy.com/util": "17.65.0" + "@jsonjoy.com/util": "17.67.0" }, "engines": { "node": ">=10.0" @@ -4274,14 +4314,14 @@ } }, "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/util": { - "version": "17.65.0", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-17.65.0.tgz", - "integrity": "sha512-cWiEHZccQORf96q2y6zU3wDeIVPeidmGqd9cNKJRYoVHTV0S1eHPy5JTbHpMnGfDvtvujQwQozOqgO9ABu6h0w==", + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-17.67.0.tgz", + "integrity": "sha512-6+8xBaz1rLSohlGh68D1pdw3AwDi9xydm8QNlAFkvnavCJYSze+pxoW2VKP8p308jtlMRLs5NTHfPlZLd4w7ew==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@jsonjoy.com/buffers": "17.65.0", - "@jsonjoy.com/codegen": "17.65.0" + "@jsonjoy.com/buffers": "17.67.0", + "@jsonjoy.com/codegen": "17.67.0" }, "engines": { "node": ">=10.0" @@ -4520,13 +4560,13 @@ ] }, "node_modules/@modelcontextprotocol/sdk": { - "version": "1.25.2", - "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.25.2.tgz", - "integrity": "sha512-LZFeo4F9M5qOhC/Uc1aQSrBHxMrvxett+9KLHt7OhcExtoiRN9DKgbZffMP/nxjutWDQpfMDfP3nkHI4X9ijww==", + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.26.0.tgz", + "integrity": "sha512-Y5RmPncpiDtTXDbLKswIJzTqu2hyBKxTNsgKqKclDbhIgg1wgtf1fRuvxgTnRfcnxtvvgbIEcqUOzZrJ6iSReg==", "dev": true, "license": "MIT", "dependencies": { - "@hono/node-server": "^1.19.7", + "@hono/node-server": "^1.19.9", "ajv": "^8.17.1", "ajv-formats": "^3.0.1", "content-type": "^1.0.5", @@ -4534,14 +4574,15 @@ "cross-spawn": "^7.0.5", "eventsource": "^3.0.2", "eventsource-parser": "^3.0.0", - "express": "^5.0.1", - "express-rate-limit": "^7.5.0", - "jose": "^6.1.1", + "express": "^5.2.1", + "express-rate-limit": "^8.2.1", + "hono": "^4.11.4", + "jose": "^6.1.3", "json-schema-typed": "^8.0.2", "pkce-challenge": "^5.0.0", "raw-body": "^3.0.0", "zod": "^3.25 || ^4.0", - "zod-to-json-schema": "^3.25.0" + "zod-to-json-schema": "^3.25.1" }, "engines": { "node": ">=18" @@ -4560,9 +4601,9 @@ } }, "node_modules/@msgpackr-extract/msgpackr-extract-darwin-arm64": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.3.tgz", - "integrity": "sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.4.tgz", + "integrity": "sha512-LCkGo6JDfaBhgST7UpPWgNgLINpcpabaHfyz5OBx75nUYxBsaEPxjnyNjWpeb/xBup/682QnBfRBy2/LvPutZQ==", "cpu": [ "arm64" ], @@ -4574,9 +4615,9 @@ ] }, "node_modules/@msgpackr-extract/msgpackr-extract-darwin-x64": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.3.tgz", - "integrity": "sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.4.tgz", + "integrity": "sha512-zExlW9zUJKZH/tOtVMttwjKa4Xm/3KcNjnE3dPN92uCktwavMxpgCA3MoJK/DOnTWsQgo224OaST27/mPNAf+w==", "cpu": [ "x64" ], @@ -4588,9 +4629,9 @@ ] }, "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.3.tgz", - "integrity": "sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.4.tgz", + "integrity": "sha512-Tg3yX65f5GbtXLkrYEHE5oibZG9epyYWas7FogTTEJeDEF9JlXJzKgXaNhT3UXlTOeA+AfZpYZYZ0uPj7Cfquw==", "cpu": [ "arm" ], @@ -4602,9 +4643,9 @@ ] }, "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm64": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.3.tgz", - "integrity": "sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.4.tgz", + "integrity": "sha512-dgX0P/9wGPJeHFBG+ZmhgE6bmtMt7NP5CRBGyyktpopdk/mW4POnrpQsSLtKI1dwpc+pPLuXHDh6vvskyQE/sw==", "cpu": [ "arm64" ], @@ -4616,9 +4657,9 @@ ] }, "node_modules/@msgpackr-extract/msgpackr-extract-linux-x64": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.3.tgz", - "integrity": "sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.4.tgz", + "integrity": "sha512-8TNXMEjJc3QEy7R/x1INhgiU+XakDAFUzBhaz7+Rbrs8NH5UQeHQxxmzsSBJGyV6I1jW79undiQm8tOI+D+8FQ==", "cpu": [ "x64" ], @@ -4630,9 +4671,9 @@ ] }, "node_modules/@msgpackr-extract/msgpackr-extract-win32-x64": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.3.tgz", - "integrity": "sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.4.tgz", + "integrity": "sha512-CmCXPQrkbwExx3j946/PtHWHbYJiCRBRDl4BlkRQcJB/YOwQxJRTpoo7aTsortjgoJ1x7opzTSxn7C+ASSLVjQ==", "cpu": [ "x64" ], @@ -4787,6 +4828,9 @@ "arm64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -4804,6 +4848,9 @@ "arm64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ @@ -4821,6 +4868,9 @@ "ppc64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -4838,6 +4888,9 @@ "riscv64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -4855,6 +4908,9 @@ "s390x" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -4872,6 +4928,9 @@ "x64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -4889,6 +4948,9 @@ "x64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ @@ -5009,9 +5071,9 @@ } }, "node_modules/@ngtools/webpack": { - "version": "20.3.14", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-20.3.14.tgz", - "integrity": "sha512-2rI9naKQBtoyQmddCnPp94o0lQVl5VPsCefntMg2T0XCCdyNj2OK4X4QCVRrtAcTwlYMysDSTpPKE/VkPcjIQA==", + "version": "20.3.32", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-20.3.32.tgz", + "integrity": "sha512-a3KWNfv3NEyNHdGusIP/+lfLtjH7L5rcqgouBm6v3t1vHQ4zg2sNgoYIQIJCAJnFI2b080YrP9jh2FqKTCJlug==", "dev": true, "license": "MIT", "engines": { @@ -5025,6 +5087,30 @@ "webpack": "^5.54.0" } }, + "node_modules/@noble/ciphers": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@noble/ciphers/-/ciphers-1.3.0.tgz", + "integrity": "sha512-2I0gnIVPtfnMw9ee9h1dJG7tp81+8Ob3OJb3Mv37rx5L40/b0i7djjCVvGOVqc9AEIQyvyu1i6ypKdFw8R8gQw==", + "license": "MIT", + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@noble/hashes": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz", + "integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==", + "license": "MIT", + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -5064,309 +5150,298 @@ } }, "node_modules/@npmcli/agent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-3.0.0.tgz", - "integrity": "sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-4.0.2.tgz", + "integrity": "sha512-EUEuWAxnL07Sp5/iC/1X6Xj+XThUvnbei9zfRWZdEXa7lss9RTHMhAHBeg+MZ5To9s/gGaSI+UwZTPdYMvKSeg==", "dev": true, "license": "ISC", "dependencies": { "agent-base": "^7.1.0", "http-proxy-agent": "^7.0.0", "https-proxy-agent": "^7.0.1", - "lru-cache": "^10.0.1", + "lru-cache": "^11.2.1", "socks-proxy-agent": "^8.0.3" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/agent/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "version": "11.5.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.2.tgz", + "integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==", "dev": true, - "license": "ISC" + "license": "BlueOak-1.0.0", + "engines": { + "node": "20 || >=22" + } }, "node_modules/@npmcli/fs": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-4.0.0.tgz", - "integrity": "sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-5.0.0.tgz", + "integrity": "sha512-7OsC1gNORBEawOa5+j2pXN9vsicaIOH5cPXxoR6fJOmH6/EXpJB2CajXOu1fPRFun2m1lktEFX11+P89hqO/og==", "dev": true, "license": "ISC", "dependencies": { "semver": "^7.3.5" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/git": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-6.0.3.tgz", - "integrity": "sha512-GUYESQlxZRAdhs3UhbB6pVRNUELQOHXwK9ruDkwmCv2aZ5y0SApQzUJCg02p3A7Ue2J5hxvlk1YI53c00NmRyQ==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-7.0.2.tgz", + "integrity": "sha512-oeolHDjExNAJAnlYP2qzNjMX/Xi9bmu78C9dIGr4xjobrSKbuMYCph8lTzn4vnW3NjIqVmw/f8BCfouqyJXlRg==", "dev": true, "license": "ISC", "dependencies": { - "@npmcli/promise-spawn": "^8.0.0", - "ini": "^5.0.0", - "lru-cache": "^10.0.1", - "npm-pick-manifest": "^10.0.0", - "proc-log": "^5.0.0", - "promise-retry": "^2.0.1", + "@gar/promise-retry": "^1.0.0", + "@npmcli/promise-spawn": "^9.0.0", + "ini": "^6.0.0", + "lru-cache": "^11.2.1", + "npm-pick-manifest": "^11.0.1", + "proc-log": "^6.0.0", "semver": "^7.3.5", - "which": "^5.0.0" + "which": "^6.0.0" }, "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/@npmcli/git/node_modules/ini": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-5.0.0.tgz", - "integrity": "sha512-+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw==", - "dev": true, - "license": "ISC", - "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/git/node_modules/isexe": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", - "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-4.0.0.tgz", + "integrity": "sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==", "dev": true, - "license": "ISC", + "license": "BlueOak-1.0.0", "engines": { - "node": ">=16" + "node": ">=20" } }, "node_modules/@npmcli/git/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "version": "11.5.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.2.tgz", + "integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==", "dev": true, - "license": "ISC" + "license": "BlueOak-1.0.0", + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/@npmcli/git/node_modules/proc-log": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz", + "integrity": "sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^20.17.0 || >=22.9.0" + } }, "node_modules/@npmcli/git/node_modules/which": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-5.0.0.tgz", - "integrity": "sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-6.0.1.tgz", + "integrity": "sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==", "dev": true, "license": "ISC", "dependencies": { - "isexe": "^3.1.1" + "isexe": "^4.0.0" }, "bin": { "node-which": "bin/which.js" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/installed-package-contents": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-3.0.0.tgz", - "integrity": "sha512-fkxoPuFGvxyrH+OQzyTkX2LUEamrF4jZSmxjAtPPHHGO0dqsQ8tTKjnIS8SAnPHdk2I03BDtSMR5K/4loKg79Q==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-4.0.0.tgz", + "integrity": "sha512-yNyAdkBxB72gtZ4GrwXCM0ZUedo9nIbOMKfGjt6Cu6DXf0p8y1PViZAKDC8q8kv/fufx0WTjRBdSlyrvnP7hmA==", "dev": true, "license": "ISC", "dependencies": { - "npm-bundled": "^4.0.0", - "npm-normalize-package-bin": "^4.0.0" + "npm-bundled": "^5.0.0", + "npm-normalize-package-bin": "^5.0.0" }, "bin": { "installed-package-contents": "bin/index.js" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/node-gyp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-4.0.0.tgz", - "integrity": "sha512-+t5DZ6mO/QFh78PByMq1fGSAub/agLJZDRfJRMeOSNCt8s9YVlTjmGpIPwPhvXTGUIJk+WszlT0rQa1W33yzNA==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-5.0.0.tgz", + "integrity": "sha512-uuG5HZFXLfyFKqg8QypsmgLQW7smiRjVc45bqD/ofZZcR/uxEjgQU8qDPv0s9TEeMUiAAU/GC5bR6++UdTirIQ==", "dev": true, "license": "ISC", "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/package-json": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-6.2.0.tgz", - "integrity": "sha512-rCNLSB/JzNvot0SEyXqWZ7tX2B5dD2a1br2Dp0vSYVo5jh8Z0EZ7lS9TsZ1UtziddB1UfNUaMCc538/HztnJGA==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-7.0.5.tgz", + "integrity": "sha512-iVuTlG3ORq2iaVa1IWUxAO/jIp77tUKBhoMjuzYW2kL4MLN1bi/ofqkZ7D7OOwh8coAx1/S2ge0rMdGv8sLSOQ==", "dev": true, "license": "ISC", "dependencies": { - "@npmcli/git": "^6.0.0", - "glob": "^10.2.2", - "hosted-git-info": "^8.0.0", - "json-parse-even-better-errors": "^4.0.0", - "proc-log": "^5.0.0", + "@npmcli/git": "^7.0.0", + "glob": "^13.0.0", + "hosted-git-info": "^9.0.0", + "json-parse-even-better-errors": "^5.0.0", + "proc-log": "^6.0.0", "semver": "^7.5.3", - "validate-npm-package-license": "^3.0.4" + "spdx-expression-parse": "^4.0.0" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" + } + }, + "node_modules/@npmcli/package-json/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" } }, "node_modules/@npmcli/package-json/node_modules/brace-expansion": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", - "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.7.tgz", + "integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==", "dev": true, "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" } }, "node_modules/@npmcli/package-json/node_modules/glob": { - "version": "10.5.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", - "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", + "version": "13.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-13.0.6.tgz", + "integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==", "dev": true, - "license": "ISC", + "license": "BlueOak-1.0.0", "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" + "minimatch": "^10.2.2", + "minipass": "^7.1.3", + "path-scurry": "^2.0.2" }, - "bin": { - "glob": "dist/esm/bin.mjs" + "engines": { + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@npmcli/package-json/node_modules/hosted-git-info": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-8.1.0.tgz", - "integrity": "sha512-Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw==", - "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^10.0.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/@npmcli/package-json/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", - "dev": true, - "license": "ISC" - }, "node_modules/@npmcli/package-json/node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", "dev": true, - "license": "ISC", + "license": "BlueOak-1.0.0", "dependencies": { - "brace-expansion": "^2.0.1" + "brace-expansion": "^5.0.5" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/@npmcli/package-json/node_modules/proc-log": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz", + "integrity": "sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^20.17.0 || >=22.9.0" + } + }, "node_modules/@npmcli/promise-spawn": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-8.0.3.tgz", - "integrity": "sha512-Yb00SWaL4F8w+K8YGhQ55+xE4RUNdMHV43WZGsiTM92gS+lC0mGsn7I4hLug7pbao035S6bj3Y3w0cUNGLfmkg==", + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-9.0.1.tgz", + "integrity": "sha512-OLUaoqBuyxeTqUvjA3FZFiXUfYC1alp3Sa99gW3EUDz3tZ3CbXDdcZ7qWKBzicrJleIgucoWamWH1saAmH/l2Q==", "dev": true, "license": "ISC", "dependencies": { - "which": "^5.0.0" + "which": "^6.0.0" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/promise-spawn/node_modules/isexe": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", - "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-4.0.0.tgz", + "integrity": "sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==", "dev": true, - "license": "ISC", + "license": "BlueOak-1.0.0", "engines": { - "node": ">=16" + "node": ">=20" } }, "node_modules/@npmcli/promise-spawn/node_modules/which": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-5.0.0.tgz", - "integrity": "sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-6.0.1.tgz", + "integrity": "sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==", "dev": true, "license": "ISC", "dependencies": { - "isexe": "^3.1.1" + "isexe": "^4.0.0" }, "bin": { "node-which": "bin/which.js" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/redact": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/@npmcli/redact/-/redact-3.2.2.tgz", - "integrity": "sha512-7VmYAmk4csGv08QzrDKScdzn11jHPFGyqJW39FyPgPuAp3zIaUmuCo1yxw9aGs+NEJuTGQ9Gwqpt93vtJubucg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/redact/-/redact-4.0.0.tgz", + "integrity": "sha512-gOBg5YHMfZy+TfHArfVogwgfBeQnKbbGo3pSUyK/gSI0AVu+pEiDVcKlQb0D8Mg1LNRZILZ6XG8I5dJ4KuAd9Q==", "dev": true, "license": "ISC", "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/run-script": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-9.1.0.tgz", - "integrity": "sha512-aoNSbxtkePXUlbZB+anS1LqsJdctG5n3UVhfU47+CDdwMi6uNTBMF9gPcQRnqghQd2FGzcwwIFBruFMxjhBewg==", + "version": "10.0.4", + "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-10.0.4.tgz", + "integrity": "sha512-mGUWr1uMnf0le2TwfOZY4SFxZGXGfm4Jtay/nwAa2FLNAKXUoUwaGwBMNH36UHPtinWfTSJ3nqFQr0091CxVGg==", "dev": true, "license": "ISC", "dependencies": { - "@npmcli/node-gyp": "^4.0.0", - "@npmcli/package-json": "^6.0.0", - "@npmcli/promise-spawn": "^8.0.0", - "node-gyp": "^11.0.0", - "proc-log": "^5.0.0", - "which": "^5.0.0" + "@npmcli/node-gyp": "^5.0.0", + "@npmcli/package-json": "^7.0.0", + "@npmcli/promise-spawn": "^9.0.0", + "node-gyp": "^12.1.0", + "proc-log": "^6.0.0" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, - "node_modules/@npmcli/run-script/node_modules/isexe": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", - "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "node_modules/@npmcli/run-script/node_modules/proc-log": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz", + "integrity": "sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==", "dev": true, "license": "ISC", "engines": { - "node": ">=16" - } - }, - "node_modules/@npmcli/run-script/node_modules/which": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-5.0.0.tgz", - "integrity": "sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^3.1.1" - }, - "bin": { - "node-which": "bin/which.js" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@otplib/core": { @@ -5420,9 +5495,9 @@ } }, "node_modules/@parcel/watcher": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.4.tgz", - "integrity": "sha512-WYa2tUVV5HiArWPB3ydlOc4R2ivq0IDrlqhMi3l7mVsFEXNcTfxYFPIHXHXIh/ca/y/V5N4E1zecyxdIBjYnkQ==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.6.tgz", + "integrity": "sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==", "dev": true, "hasInstallScript": true, "license": "MIT", @@ -5441,25 +5516,25 @@ "url": "https://opencollective.com/parcel" }, "optionalDependencies": { - "@parcel/watcher-android-arm64": "2.5.4", - "@parcel/watcher-darwin-arm64": "2.5.4", - "@parcel/watcher-darwin-x64": "2.5.4", - "@parcel/watcher-freebsd-x64": "2.5.4", - "@parcel/watcher-linux-arm-glibc": "2.5.4", - "@parcel/watcher-linux-arm-musl": "2.5.4", - "@parcel/watcher-linux-arm64-glibc": "2.5.4", - "@parcel/watcher-linux-arm64-musl": "2.5.4", - "@parcel/watcher-linux-x64-glibc": "2.5.4", - "@parcel/watcher-linux-x64-musl": "2.5.4", - "@parcel/watcher-win32-arm64": "2.5.4", - "@parcel/watcher-win32-ia32": "2.5.4", - "@parcel/watcher-win32-x64": "2.5.4" + "@parcel/watcher-android-arm64": "2.5.6", + "@parcel/watcher-darwin-arm64": "2.5.6", + "@parcel/watcher-darwin-x64": "2.5.6", + "@parcel/watcher-freebsd-x64": "2.5.6", + "@parcel/watcher-linux-arm-glibc": "2.5.6", + "@parcel/watcher-linux-arm-musl": "2.5.6", + "@parcel/watcher-linux-arm64-glibc": "2.5.6", + "@parcel/watcher-linux-arm64-musl": "2.5.6", + "@parcel/watcher-linux-x64-glibc": "2.5.6", + "@parcel/watcher-linux-x64-musl": "2.5.6", + "@parcel/watcher-win32-arm64": "2.5.6", + "@parcel/watcher-win32-ia32": "2.5.6", + "@parcel/watcher-win32-x64": "2.5.6" } }, "node_modules/@parcel/watcher-android-arm64": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.4.tgz", - "integrity": "sha512-hoh0vx4v+b3BNI7Cjoy2/B0ARqcwVNrzN/n7DLq9ZB4I3lrsvhrkCViJyfTj/Qi5xM9YFiH4AmHGK6pgH1ss7g==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz", + "integrity": "sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==", "cpu": [ "arm64" ], @@ -5478,9 +5553,9 @@ } }, "node_modules/@parcel/watcher-darwin-arm64": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.4.tgz", - "integrity": "sha512-kphKy377pZiWpAOyTgQYPE5/XEKVMaj6VUjKT5VkNyUJlr2qZAn8gIc7CPzx+kbhvqHDT9d7EqdOqRXT6vk0zw==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz", + "integrity": "sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==", "cpu": [ "arm64" ], @@ -5499,9 +5574,9 @@ } }, "node_modules/@parcel/watcher-darwin-x64": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.4.tgz", - "integrity": "sha512-UKaQFhCtNJW1A9YyVz3Ju7ydf6QgrpNQfRZ35wNKUhTQ3dxJ/3MULXN5JN/0Z80V/KUBDGa3RZaKq1EQT2a2gg==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz", + "integrity": "sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==", "cpu": [ "x64" ], @@ -5520,9 +5595,9 @@ } }, "node_modules/@parcel/watcher-freebsd-x64": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.4.tgz", - "integrity": "sha512-Dib0Wv3Ow/m2/ttvLdeI2DBXloO7t3Z0oCp4bAb2aqyqOjKPPGrg10pMJJAQ7tt8P4V2rwYwywkDhUia/FgS+Q==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz", + "integrity": "sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==", "cpu": [ "x64" ], @@ -5541,13 +5616,16 @@ } }, "node_modules/@parcel/watcher-linux-arm-glibc": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.4.tgz", - "integrity": "sha512-I5Vb769pdf7Q7Sf4KNy8Pogl/URRCKu9ImMmnVKYayhynuyGYMzuI4UOWnegQNa2sGpsPSbzDsqbHNMyeyPCgw==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz", + "integrity": "sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==", "cpu": [ "arm" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -5562,13 +5640,16 @@ } }, "node_modules/@parcel/watcher-linux-arm-musl": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.4.tgz", - "integrity": "sha512-kGO8RPvVrcAotV4QcWh8kZuHr9bXi9a3bSZw7kFarYR0+fGliU7hd/zevhjw8fnvIKG3J9EO5G6sXNGCSNMYPQ==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz", + "integrity": "sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==", "cpu": [ "arm" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ @@ -5583,13 +5664,16 @@ } }, "node_modules/@parcel/watcher-linux-arm64-glibc": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.4.tgz", - "integrity": "sha512-KU75aooXhqGFY2W5/p8DYYHt4hrjHZod8AhcGAmhzPn/etTa+lYCDB2b1sJy3sWJ8ahFVTdy+EbqSBvMx3iFlw==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz", + "integrity": "sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==", "cpu": [ "arm64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -5604,13 +5688,16 @@ } }, "node_modules/@parcel/watcher-linux-arm64-musl": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.4.tgz", - "integrity": "sha512-Qx8uNiIekVutnzbVdrgSanM+cbpDD3boB1f8vMtnuG5Zau4/bdDbXyKwIn0ToqFhIuob73bcxV9NwRm04/hzHQ==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz", + "integrity": "sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==", "cpu": [ "arm64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ @@ -5625,13 +5712,16 @@ } }, "node_modules/@parcel/watcher-linux-x64-glibc": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.4.tgz", - "integrity": "sha512-UYBQvhYmgAv61LNUn24qGQdjtycFBKSK3EXr72DbJqX9aaLbtCOO8+1SkKhD/GNiJ97ExgcHBrukcYhVjrnogA==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz", + "integrity": "sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==", "cpu": [ "x64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -5646,13 +5736,16 @@ } }, "node_modules/@parcel/watcher-linux-x64-musl": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.4.tgz", - "integrity": "sha512-YoRWCVgxv8akZrMhdyVi6/TyoeeMkQ0PGGOf2E4omODrvd1wxniXP+DBynKoHryStks7l+fDAMUBRzqNHrVOpg==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz", + "integrity": "sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==", "cpu": [ "x64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ @@ -5667,9 +5760,9 @@ } }, "node_modules/@parcel/watcher-win32-arm64": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.4.tgz", - "integrity": "sha512-iby+D/YNXWkiQNYcIhg8P5hSjzXEHaQrk2SLrWOUD7VeC4Ohu0WQvmV+HDJokZVJ2UjJ4AGXW3bx7Lls9Ln4TQ==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz", + "integrity": "sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==", "cpu": [ "arm64" ], @@ -5688,9 +5781,9 @@ } }, "node_modules/@parcel/watcher-win32-ia32": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.4.tgz", - "integrity": "sha512-vQN+KIReG0a2ZDpVv8cgddlf67J8hk1WfZMMP7sMeZmJRSmEax5xNDNWKdgqSe2brOKTQQAs3aCCUal2qBHAyg==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz", + "integrity": "sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==", "cpu": [ "ia32" ], @@ -5709,9 +5802,9 @@ } }, "node_modules/@parcel/watcher-win32-x64": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.4.tgz", - "integrity": "sha512-3A6efb6BOKwyw7yk9ro2vus2YTt2nvcd56AuzxdMiVOxL9umDyN5PKkKfZ/gZ9row41SjVmTVQNWQhaRRGpOKw==", + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz", + "integrity": "sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==", "cpu": [ "x64" ], @@ -5737,21 +5830,179 @@ "license": "MIT", "optional": true }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "node_modules/@peculiar/asn1-cms": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-cms/-/asn1-cms-2.8.0.tgz", + "integrity": "sha512-NgekZOrSJFSBFLFoLfwePguAWAx7z1+f2TEsWFUMyiqqfntZ4+S/S5hzqME3q4pCA0iOsFKdwiQ35dwY24eVqA==", "dev": true, "license": "MIT", - "optional": true, + "dependencies": { + "@peculiar/asn1-schema": "^2.8.0", + "@peculiar/asn1-x509": "^2.8.0", + "@peculiar/asn1-x509-attr": "^2.8.0", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-csr": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-csr/-/asn1-csr-2.8.0.tgz", + "integrity": "sha512-akbF8+uvleHs8sejNPQxwmVFuInAg6FMNHOwMILXfP518YfFJwdR3jr6oNUPOaEJfuEhn/vkNOCIT6ASUd4mbg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.8.0", + "@peculiar/asn1-x509": "^2.8.0", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-ecc": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-ecc/-/asn1-ecc-2.8.0.tgz", + "integrity": "sha512-ohwlk+u9Rv2NOAY1c6MfHj45ATVF8R1DUN/WCgABiRtLi2ZftlZWZX7KvpAbU8v9xPcmoILfELeEABj/rn18AQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.8.0", + "@peculiar/asn1-x509": "^2.8.0", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-pfx": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-pfx/-/asn1-pfx-2.8.0.tgz", + "integrity": "sha512-5yof1ytoB++RQtaFbqSUJ8pxDJtZT6vbVqZ8XoJ61ph7UjNVvfFwAilnCodqkNsAodpy13gDhoxZXw00pghnyg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-cms": "^2.8.0", + "@peculiar/asn1-pkcs8": "^2.8.0", + "@peculiar/asn1-rsa": "^2.8.0", + "@peculiar/asn1-schema": "^2.8.0", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-pkcs8": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-pkcs8/-/asn1-pkcs8-2.8.0.tgz", + "integrity": "sha512-qAKXtLpBEw9LqhKpjw3ajZSXlBur+ipW+y2ivVBQAG6F6qRx94yO+1ZR4mvw+YaCfKSaOzLeYEzsPaBp4SJELA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.8.0", + "@peculiar/asn1-x509": "^2.8.0", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-pkcs9": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-pkcs9/-/asn1-pkcs9-2.8.0.tgz", + "integrity": "sha512-b5nDWCnkV60+cQ141D6sVVwK9nz64R5n3zSVnklGd+ECdkW2Ol3U1a6yYFlalpSOaD557yuJB64A+q42jG7lUQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-cms": "^2.8.0", + "@peculiar/asn1-pfx": "^2.8.0", + "@peculiar/asn1-pkcs8": "^2.8.0", + "@peculiar/asn1-schema": "^2.8.0", + "@peculiar/asn1-x509": "^2.8.0", + "@peculiar/asn1-x509-attr": "^2.8.0", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-rsa": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-rsa/-/asn1-rsa-2.8.0.tgz", + "integrity": "sha512-zHEUlCqB2mk7x2lxDwHHJy7hWZOPdGHVlsmITWKB5/PbQo61atbu9PJ/0r9dQNMwFzbKPXZ8uK8/91eUhRznSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.8.0", + "@peculiar/asn1-x509": "^2.8.0", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-schema": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.8.0.tgz", + "integrity": "sha512-7YT0U/ze0tF2QOBbE15gKZwy5tvgGyLRiRHLzhlbOpf7BT032oBSd0haZqXn5W6l26WLlu3dyxzjM+2638/z2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/utils": "^2.0.2", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-x509": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-x509/-/asn1-x509-2.8.0.tgz", + "integrity": "sha512-N0CMuhWUzsWEVq6F1q9X6+VKUnWzSW+cSVg+aPaGGwDdbFoFWTYgin5MHwXgpWd6y9COMBxnfy/Qc+Xc7F0Zwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.8.0", + "@peculiar/utils": "^2.0.2", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-x509-attr": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-x509-attr/-/asn1-x509-attr-2.8.0.tgz", + "integrity": "sha512-tHjkfS/qhMnmrlB2J9NhflQlQ7In3khO3CfmVrriOlpTeErY9ZIKOso1hQ5JQiyrJ7ShvqVPk7E5fQmbclkSKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.8.0", + "@peculiar/asn1-x509": "^2.8.0", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@peculiar/utils/-/utils-2.0.3.tgz", + "integrity": "sha512-+oL3HPFRIZ1St2K50lWCXiioIgSoxzz7R1J3uF6neO2yl1sgmpgY6XXJH4BdpoDkMWznQTeYF6oWNDZLCdQ4eQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/x509": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/@peculiar/x509/-/x509-1.14.3.tgz", + "integrity": "sha512-C2Xj8FZ0uHWeCXXqX5B4/gVFQmtSkiuOolzAgutjTfseNOHT3pUjljDZsTSxXFGgio54bCzVFqmEOUrIVk8RDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-cms": "^2.6.0", + "@peculiar/asn1-csr": "^2.6.0", + "@peculiar/asn1-ecc": "^2.6.0", + "@peculiar/asn1-pkcs9": "^2.6.0", + "@peculiar/asn1-rsa": "^2.6.0", + "@peculiar/asn1-schema": "^2.6.0", + "@peculiar/asn1-x509": "^2.6.0", + "pvtsutils": "^1.3.6", + "reflect-metadata": "^0.2.2", + "tslib": "^2.8.1", + "tsyringe": "^4.10.0" + }, "engines": { - "node": ">=14" + "node": ">=20.0.0" } }, "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.3.tgz", - "integrity": "sha512-h6cqHGZ6VdnwliFG1NXvMPTy/9PS3h8oLh7ImwR+kl+oYnQizgjxsONmmPSb2C66RksfkfIxEVtDSEcJiO0tqw==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz", + "integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==", "cpu": [ "arm" ], @@ -5763,9 +6014,9 @@ ] }, "node_modules/@rollup/rollup-android-arm64": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.3.tgz", - "integrity": "sha512-wd+u7SLT/u6knklV/ifG7gr5Qy4GUbH2hMWcDauPFJzmCZUAJ8L2bTkVXC2niOIxp8lk3iH/QX8kSrUxVZrOVw==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz", + "integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==", "cpu": [ "arm64" ], @@ -5777,9 +6028,9 @@ ] }, "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.3.tgz", - "integrity": "sha512-lj9ViATR1SsqycwFkJCtYfQTheBdvlWJqzqxwc9f2qrcVrQaF/gCuBRTiTolkRWS6KvNxSk4KHZWG7tDktLgjg==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz", + "integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==", "cpu": [ "arm64" ], @@ -5791,9 +6042,9 @@ ] }, "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.3.tgz", - "integrity": "sha512-+Dyo7O1KUmIsbzx1l+4V4tvEVnVQqMOIYtrxK7ncLSknl1xnMHLgn7gddJVrYPNZfEB8CIi3hK8gq8bDhb3h5A==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz", + "integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==", "cpu": [ "x64" ], @@ -5805,9 +6056,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-arm64": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.3.tgz", - "integrity": "sha512-u9Xg2FavYbD30g3DSfNhxgNrxhi6xVG4Y6i9Ur1C7xUuGDW3banRbXj+qgnIrwRN4KeJ396jchwy9bCIzbyBEQ==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz", + "integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==", "cpu": [ "arm64" ], @@ -5819,9 +6070,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-x64": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.3.tgz", - "integrity": "sha512-5M8kyi/OX96wtD5qJR89a/3x5x8x5inXBZO04JWhkQb2JWavOWfjgkdvUqibGJeNNaz1/Z1PPza5/tAPXICI6A==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz", + "integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==", "cpu": [ "x64" ], @@ -5833,13 +6084,16 @@ ] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.3.tgz", - "integrity": "sha512-IoerZJ4l1wRMopEHRKOO16e04iXRDyZFZnNZKrWeNquh5d6bucjezgd+OxG03mOMTnS1x7hilzb3uURPkJ0OfA==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz", + "integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==", "cpu": [ "arm" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -5847,13 +6101,16 @@ ] }, "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.3.tgz", - "integrity": "sha512-ZYdtqgHTDfvrJHSh3W22TvjWxwOgc3ThK/XjgcNGP2DIwFIPeAPNsQxrJO5XqleSlgDux2VAoWQ5iJrtaC1TbA==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz", + "integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==", "cpu": [ "arm" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ @@ -5861,13 +6118,16 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.3.tgz", - "integrity": "sha512-NcViG7A0YtuFDA6xWSgmFb6iPFzHlf5vcqb2p0lGEbT+gjrEEz8nC/EeDHvx6mnGXnGCC1SeVV+8u+smj0CeGQ==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz", + "integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==", "cpu": [ "arm64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -5875,13 +6135,16 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.3.tgz", - "integrity": "sha512-d3pY7LWno6SYNXRm6Ebsq0DJGoiLXTb83AIPCXl9fmtIQs/rXoS8SJxxUNtFbJ5MiOvs+7y34np77+9l4nfFMw==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz", + "integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==", "cpu": [ "arm64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ @@ -5889,13 +6152,33 @@ ] }, "node_modules/@rollup/rollup-linux-loong64-gnu": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.3.tgz", - "integrity": "sha512-3y5GA0JkBuirLqmjwAKwB0keDlI6JfGYduMlJD/Rl7fvb4Ni8iKdQs1eiunMZJhwDWdCvrcqXRY++VEBbvk6Eg==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz", + "integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==", "cpu": [ "loong64" ], "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz", + "integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==", + "cpu": [ + "loong64" + ], + "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ @@ -5903,13 +6186,33 @@ ] }, "node_modules/@rollup/rollup-linux-ppc64-gnu": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.3.tgz", - "integrity": "sha512-AUUH65a0p3Q0Yfm5oD2KVgzTKgwPyp9DSXc3UA7DtxhEb/WSPfbG4wqXeSN62OG5gSo18em4xv6dbfcUGXcagw==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz", + "integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==", "cpu": [ "ppc64" ], "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz", + "integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ @@ -5917,13 +6220,16 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.3.tgz", - "integrity": "sha512-1makPhFFVBqZE+XFg3Dkq+IkQ7JvmUrwwqaYBL2CE+ZpxPaqkGaiWFEWVGyvTwZace6WLJHwjVh/+CXbKDGPmg==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz", + "integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==", "cpu": [ "riscv64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -5931,13 +6237,16 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-musl": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.3.tgz", - "integrity": "sha512-OOFJa28dxfl8kLOPMUOQBCO6z3X2SAfzIE276fwT52uXDWUS178KWq0pL7d6p1kz7pkzA0yQwtqL0dEPoVcRWg==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz", + "integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==", "cpu": [ "riscv64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ @@ -5945,13 +6254,16 @@ ] }, "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.3.tgz", - "integrity": "sha512-jMdsML2VI5l+V7cKfZx3ak+SLlJ8fKvLJ0Eoa4b9/vCUrzXKgoKxvHqvJ/mkWhFiyp88nCkM5S2v6nIwRtPcgg==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz", + "integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==", "cpu": [ "s390x" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -5959,13 +6271,16 @@ ] }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.3.tgz", - "integrity": "sha512-tPgGd6bY2M2LJTA1uGq8fkSPK8ZLYjDjY+ZLK9WHncCnfIz29LIXIqUgzCR0hIefzy6Hpbe8Th5WOSwTM8E7LA==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz", + "integrity": "sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==", "cpu": [ "x64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -5973,9 +6288,26 @@ ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.3.tgz", - "integrity": "sha512-BCFkJjgk+WFzP+tcSMXq77ymAPIxsX9lFJWs+2JzuZTLtksJ2o5hvgTdIcZ5+oKzUDMwI0PfWzRBYAydAHF2Mw==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz", + "integrity": "sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz", + "integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==", "cpu": [ "x64" ], @@ -5983,13 +6315,13 @@ "license": "MIT", "optional": true, "os": [ - "linux" + "openbsd" ] }, "node_modules/@rollup/rollup-openharmony-arm64": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.3.tgz", - "integrity": "sha512-KTD/EqjZF3yvRaWUJdD1cW+IQBk4fbQaHYJUmP8N4XoKFZilVL8cobFSTDnjTtxWJQ3JYaMgF4nObY/+nYkumA==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz", + "integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==", "cpu": [ "arm64" ], @@ -6001,9 +6333,9 @@ ] }, "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.3.tgz", - "integrity": "sha512-+zteHZdoUYLkyYKObGHieibUFLbttX2r+58l27XZauq0tcWYYuKUwY2wjeCN9oK1Um2YgH2ibd6cnX/wFD7DuA==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz", + "integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==", "cpu": [ "arm64" ], @@ -6015,9 +6347,9 @@ ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.3.tgz", - "integrity": "sha512-of1iHkTQSo3kr6dTIRX6t81uj/c/b15HXVsPcEElN5sS859qHrOepM5p9G41Hah+CTqSh2r8Bm56dL2z9UQQ7g==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz", + "integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==", "cpu": [ "ia32" ], @@ -6029,9 +6361,9 @@ ] }, "node_modules/@rollup/rollup-win32-x64-gnu": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.3.tgz", - "integrity": "sha512-s0hybmlHb56mWVZQj8ra9048/WZTPLILKxcvcq+8awSZmyiSUZjjem1AhU3Tf4ZKpYhK4mg36HtHDOe8QJS5PQ==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz", + "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==", "cpu": [ "x64" ], @@ -6043,9 +6375,9 @@ ] }, "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.3.tgz", - "integrity": "sha512-zGIbEVVXVtauFgl3MRwGWEN36P5ZGenHRMgNw88X5wEhEBpq0XrMEZwOn07+ICrwM17XO5xfMZqh0OldCH5VTA==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz", + "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==", "cpu": [ "x64" ], @@ -6057,14 +6389,14 @@ ] }, "node_modules/@schematics/angular": { - "version": "20.3.14", - "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-20.3.14.tgz", - "integrity": "sha512-JO37puMXFWN8YWqZZJ/URs8vPJNszZXcIyBnYdKDWTGaAnbOZMu0nzQlOC+h5NM7R5cPQtOpJv0wxEnY6EYI4A==", + "version": "20.3.32", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-20.3.32.tgz", + "integrity": "sha512-asporFGNP/U4p/A6jHqRmC8zGBxsSbjA/17I0p1tIW4HLbDTwJ0Z1gTSGpkHGRGTeowPZZSCj7s0IWVoaBCjnA==", "dev": true, "license": "MIT", "dependencies": { - "@angular-devkit/core": "20.3.14", - "@angular-devkit/schematics": "20.3.14", + "@angular-devkit/core": "20.3.32", + "@angular-devkit/schematics": "20.3.32", "jsonc-parser": "3.3.1" }, "engines": { @@ -6074,32 +6406,32 @@ } }, "node_modules/@sigstore/bundle": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-3.1.0.tgz", - "integrity": "sha512-Mm1E3/CmDDCz3nDhFKTuYdB47EdRFRQMOE/EAbiG1MJW77/w1b3P7Qx7JSrVJs8PfwOLOVcKQCHErIwCTyPbag==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-4.0.0.tgz", + "integrity": "sha512-NwCl5Y0V6Di0NexvkTqdoVfmjTaQwoLM236r89KEojGmq/jMls8S+zb7yOwAPdXvbwfKDlP+lmXgAL4vKSQT+A==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@sigstore/protobuf-specs": "^0.4.0" + "@sigstore/protobuf-specs": "^0.5.0" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@sigstore/core": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@sigstore/core/-/core-2.0.0.tgz", - "integrity": "sha512-nYxaSb/MtlSI+JWcwTHQxyNmWeWrUXJJ/G4liLrGG7+tS4vAz6LF3xRXqLH6wPIVUoZQel2Fs4ddLx4NCpiIYg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@sigstore/core/-/core-3.2.1.tgz", + "integrity": "sha512-qRsxPnCrbC/puegGxKuynfnxgLiHqWStrSjxkoB4YKqq3Z3s4cyZyj42ZdWFAEblNP65C+rBH8EuREHIXoi83g==", "dev": true, "license": "Apache-2.0", "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@sigstore/protobuf-specs": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.4.3.tgz", - "integrity": "sha512-fk2zjD9117RL9BjqEwF7fwv7Q/P9yGsMV4MUJZ/DocaQJ6+3pKr+syBq1owU5Q5qGw5CUbXzm+4yJ2JVRDQeSA==", + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.5.1.tgz", + "integrity": "sha512-/ScWUhhoFasJsSRGTVBwId1loQjjnjAfE4djL6ZhrXRpNCmPTnUKF5Jokd58ILseOMjzET3UrMOtJPS9sYeI0g==", "dev": true, "license": "Apache-2.0", "engines": { @@ -6107,50 +6439,60 @@ } }, "node_modules/@sigstore/sign": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-3.1.0.tgz", - "integrity": "sha512-knzjmaOHOov1Ur7N/z4B1oPqZ0QX5geUfhrVaqVlu+hl0EAoL4o+l0MSULINcD5GCWe3Z0+YJO8ues6vFlW0Yw==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-4.1.1.tgz", + "integrity": "sha512-Hf4xglukg0XXQ2RiD5vSoLjdPe8OBUPA8XeVjUObheuDcWdYWrnH/BNmxZCzkAy68MzmNCxXLeurJvs6hcP2OQ==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@sigstore/bundle": "^3.1.0", - "@sigstore/core": "^2.0.0", - "@sigstore/protobuf-specs": "^0.4.0", - "make-fetch-happen": "^14.0.2", - "proc-log": "^5.0.0", - "promise-retry": "^2.0.1" + "@gar/promise-retry": "^1.0.2", + "@sigstore/bundle": "^4.0.0", + "@sigstore/core": "^3.2.0", + "@sigstore/protobuf-specs": "^0.5.0", + "make-fetch-happen": "^15.0.4", + "proc-log": "^6.1.0" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" + } + }, + "node_modules/@sigstore/sign/node_modules/proc-log": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz", + "integrity": "sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@sigstore/tuf": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-3.1.1.tgz", - "integrity": "sha512-eFFvlcBIoGwVkkwmTi/vEQFSva3xs5Ot3WmBcjgjVdiaoelBLQaQ/ZBfhlG0MnG0cmTYScPpk7eDdGDWUcFUmg==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-4.0.2.tgz", + "integrity": "sha512-TCAzTy0xzdP79EnxSjq9KQ3eaR7+FmudLC6eRKknVKZbV7ZNlGLClAAQb/HMNJ5n2OBNk2GT1tEmU0xuPr+SLQ==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@sigstore/protobuf-specs": "^0.4.1", - "tuf-js": "^3.0.1" + "@sigstore/protobuf-specs": "^0.5.0", + "tuf-js": "^4.1.0" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@sigstore/verify": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@sigstore/verify/-/verify-2.1.1.tgz", - "integrity": "sha512-hVJD77oT67aowHxwT4+M6PGOp+E2LtLdTK3+FC0lBO9T7sYwItDMXZ7Z07IDCvR1M717a4axbIWckrW67KMP/w==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@sigstore/verify/-/verify-3.1.1.tgz", + "integrity": "sha512-qv7+G3J2cc6wwFj3yKvXOamzqhMwSk1ogPGmhpS8iXllcPrJaIIBA+4HbttlHVu1pqWTdmaCH/WE7UOC51kdoA==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@sigstore/bundle": "^3.1.0", - "@sigstore/core": "^2.0.0", - "@sigstore/protobuf-specs": "^0.4.1" + "@sigstore/bundle": "^4.0.0", + "@sigstore/core": "^3.2.1", + "@sigstore/protobuf-specs": "^0.5.0" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@socket.io/component-emitter": { @@ -6160,9 +6502,9 @@ "license": "MIT" }, "node_modules/@swc/helpers": { - "version": "0.5.18", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.18.tgz", - "integrity": "sha512-TXTnIcNJQEKwThMMqBXsZ4VGAza6bvN4pa41Rkqoio6QBKMvo+5lexeTMScGCIxtzgQJzElcvIltani+adC5PQ==", + "version": "0.5.23", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.23.tgz", + "integrity": "sha512-5lSsMOTXURePglDfvuAQUqkGek9Hg2kksOYay2m0+XR++b2NWYL/4sWyuvVBIs8oKnJaxkdi9whaL/sqN13afw==", "license": "Apache-2.0", "dependencies": { "tslib": "^2.8.0" @@ -6240,40 +6582,53 @@ } }, "node_modules/@tufjs/models": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-3.0.1.tgz", - "integrity": "sha512-UUYHISyhCU3ZgN8yaear3cGATHb3SMuKHsQ/nVbHXcmnBf+LzQ/cQfhNG+rfaSHgqGKNEm2cOCLVLELStUQ1JA==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-4.1.0.tgz", + "integrity": "sha512-Y8cK9aggNRsqJVaKUlEYs4s7CvQ1b1ta2DVPyAimb0I2qhzjNk+A+mxvll/klL0RlfuIUei8BF7YWiua4kQqww==", "dev": true, "license": "MIT", "dependencies": { "@tufjs/canonical-json": "2.0.0", - "minimatch": "^9.0.5" + "minimatch": "^10.1.1" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" + } + }, + "node_modules/@tufjs/models/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" } }, "node_modules/@tufjs/models/node_modules/brace-expansion": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", - "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.7.tgz", + "integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==", "dev": true, "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" } }, "node_modules/@tufjs/models/node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", "dev": true, - "license": "ISC", + "license": "BlueOak-1.0.0", "dependencies": { - "brace-expansion": "^2.0.1" + "brace-expansion": "^5.0.5" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -6361,9 +6716,9 @@ "license": "MIT" }, "node_modules/@types/estree": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", - "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz", + "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==", "dev": true, "license": "MIT" }, @@ -6381,9 +6736,9 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "4.19.8", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.8.tgz", - "integrity": "sha512-02S5fmqeoKzVZCHPZid4b8JH2eM5HzQLZWN2FohQEy/0eXTq8VXZfSN6Pcr3F6N9R/vNrj7cpgbhjie6m/1tCA==", + "version": "4.19.9", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.9.tgz", + "integrity": "sha512-QP2ESEe/ImWY0HDwNAnK9PvEffUyhLTnWkk7KXzHfyeWAnlrDe1fN77bXl6ia8KT3wPlmA7t9/VPRpnf4Ex9sg==", "dev": true, "license": "MIT", "dependencies": { @@ -6441,27 +6796,10 @@ "undici-types": "~6.21.0" } }, - "node_modules/@types/node-forge": { - "version": "1.3.14", - "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.14.tgz", - "integrity": "sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/q": { - "version": "0.0.32", - "resolved": "https://registry.npmjs.org/@types/q/-/q-0.0.32.tgz", - "integrity": "sha512-qYi3YV9inU/REEfxwVcGZzbS3KG/Xs90lv0Pr+lDtuVjBPGd1A+eciXzVSaRvLify132BfcvhvEjeVahrUl0Ug==", - "dev": true, - "license": "MIT" - }, "node_modules/@types/qs": { - "version": "6.14.0", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.14.0.tgz", - "integrity": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==", + "version": "6.15.1", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.15.1.tgz", + "integrity": "sha512-GZHUBZR9hckSUhrxmp1nG6NwdpM9fCunJwyThLW1X3AyHgd9IlHb6VANpQQqDr2o/qQp6McZ3y/IA2rVzKzSbw==", "dev": true, "license": "MIT" }, @@ -6479,13 +6817,6 @@ "dev": true, "license": "MIT" }, - "node_modules/@types/selenium-webdriver": { - "version": "3.0.26", - "resolved": "https://registry.npmjs.org/@types/selenium-webdriver/-/selenium-webdriver-3.0.26.tgz", - "integrity": "sha512-dyIGFKXfUFiwkMfNGn1+F6b80ZjR3uSYv1j6xVJSDlft5waZ2cwkHW4e7zNzvq7hiEackcgvBpmnXZrI1GltPg==", - "dev": true, - "license": "MIT" - }, "node_modules/@types/send": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/@types/send/-/send-1.2.1.tgz", @@ -6556,20 +6887,20 @@ } }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.53.0.tgz", - "integrity": "sha512-eEXsVvLPu8Z4PkFibtuFJLJOTAV/nPdgtSjkGoPpddpFk3/ym2oy97jynY6ic2m6+nc5M8SE1e9v/mHKsulcJg==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.65.0.tgz", + "integrity": "sha512-IEgob78X12rHpUmtcwFsXhZdVGJtwTVP8FiCLZkR6GlYVrl2PcuB+KhCE5BlVC/eQpQnu8WXRtkHZuPar+gCRA==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/regexpp": "^4.12.2", - "@typescript-eslint/scope-manager": "8.53.0", - "@typescript-eslint/type-utils": "8.53.0", - "@typescript-eslint/utils": "8.53.0", - "@typescript-eslint/visitor-keys": "8.53.0", + "@typescript-eslint/scope-manager": "8.65.0", + "@typescript-eslint/type-utils": "8.65.0", + "@typescript-eslint/utils": "8.65.0", + "@typescript-eslint/visitor-keys": "8.65.0", "ignore": "^7.0.5", "natural-compare": "^1.4.0", - "ts-api-utils": "^2.4.0" + "ts-api-utils": "^2.5.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -6579,22 +6910,22 @@ "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "@typescript-eslint/parser": "^8.53.0", - "eslint": "^8.57.0 || ^9.0.0", - "typescript": ">=4.8.4 <6.0.0" + "@typescript-eslint/parser": "^8.65.0", + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/parser": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.53.0.tgz", - "integrity": "sha512-npiaib8XzbjtzS2N4HlqPvlpxpmZ14FjSJrteZpPxGUaYPlvhzlzUZ4mZyABo0EFrOWnvyd0Xxroq//hKhtAWg==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.65.0.tgz", + "integrity": "sha512-CZ4nMxWwgu1HEEFNkeaCptra9QCtkmKdgf3sWh1rl1trIhmxLilgTV4cwcbQ4wemnT4sWQN8CaKOmdYx+g2gMA==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/scope-manager": "8.53.0", - "@typescript-eslint/types": "8.53.0", - "@typescript-eslint/typescript-estree": "8.53.0", - "@typescript-eslint/visitor-keys": "8.53.0", + "@typescript-eslint/scope-manager": "8.65.0", + "@typescript-eslint/types": "8.65.0", + "@typescript-eslint/typescript-estree": "8.65.0", + "@typescript-eslint/visitor-keys": "8.65.0", "debug": "^4.4.3" }, "engines": { @@ -6605,19 +6936,19 @@ "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0", - "typescript": ">=4.8.4 <6.0.0" + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/project-service": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.53.0.tgz", - "integrity": "sha512-Bl6Gdr7NqkqIP5yP9z1JU///Nmes4Eose6L1HwpuVHwScgDPPuEWbUVhvlZmb8hy0vX9syLk5EGNL700WcBlbg==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.65.0.tgz", + "integrity": "sha512-SxnPhbTsGahizDgbu7oqFH/xVtzIqMd/s+WtnSxNxJZJpLbdT5IPdzg8EZxO3+PoKahXmwJLeNQOpKJb3/bi7Q==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/tsconfig-utils": "^8.53.0", - "@typescript-eslint/types": "^8.53.0", + "@typescript-eslint/tsconfig-utils": "^8.65.0", + "@typescript-eslint/types": "^8.65.0", "debug": "^4.4.3" }, "engines": { @@ -6628,18 +6959,18 @@ "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "typescript": ">=4.8.4 <6.0.0" + "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.53.0.tgz", - "integrity": "sha512-kWNj3l01eOGSdVBnfAF2K1BTh06WS0Yet6JUgb9Cmkqaz3Jlu0fdVUjj9UI8gPidBWSMqDIglmEXifSgDT/D0g==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.65.0.tgz", + "integrity": "sha512-Esbl8OSYiVxBokYgWPf7VVWg/BE798wXhimnn9ML9Pt5qoDf8bfQlgjlKXR/k98+AcNzlLKYrpCcrcuZ9DZLgg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.53.0", - "@typescript-eslint/visitor-keys": "8.53.0" + "@typescript-eslint/types": "8.65.0", + "@typescript-eslint/visitor-keys": "8.65.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -6650,9 +6981,9 @@ } }, "node_modules/@typescript-eslint/tsconfig-utils": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.53.0.tgz", - "integrity": "sha512-K6Sc0R5GIG6dNoPdOooQ+KtvT5KCKAvTcY8h2rIuul19vxH5OTQk7ArKkd4yTzkw66WnNY0kPPzzcmWA+XRmiA==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.65.0.tgz", + "integrity": "sha512-j6GzGqCiRdA7Qhur2VVmKZAkBLfnHFQfx4TaJGL9RMveZqCo48jSHHO0DTgizEnGhtWnqmbtCUSrqSkdiY/0Hg==", "dev": true, "license": "MIT", "engines": { @@ -6663,21 +6994,21 @@ "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "typescript": ">=4.8.4 <6.0.0" + "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/type-utils": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.53.0.tgz", - "integrity": "sha512-BBAUhlx7g4SmcLhn8cnbxoxtmS7hcq39xKCgiutL3oNx1TaIp+cny51s8ewnKMpVUKQUGb41RAUWZ9kxYdovuw==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.65.0.tgz", + "integrity": "sha512-YjaZ7PRI5qY7ax2L3PbvX0rRyGtipAReCWs0mhhDBHjH/vl0g0BonaGXrKdKpMbIIsMIwDgbk/xzkBTyAltS5g==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.53.0", - "@typescript-eslint/typescript-estree": "8.53.0", - "@typescript-eslint/utils": "8.53.0", + "@typescript-eslint/types": "8.65.0", + "@typescript-eslint/typescript-estree": "8.65.0", + "@typescript-eslint/utils": "8.65.0", "debug": "^4.4.3", - "ts-api-utils": "^2.4.0" + "ts-api-utils": "^2.5.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -6687,14 +7018,14 @@ "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0", - "typescript": ">=4.8.4 <6.0.0" + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/types": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.53.0.tgz", - "integrity": "sha512-Bmh9KX31Vlxa13+PqPvt4RzKRN1XORYSLlAE+sO1i28NkisGbTtSLFVB3l7PWdHtR3E0mVMuC7JilWJ99m2HxQ==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.65.0.tgz", + "integrity": "sha512-JSSwWNy+H0E/01jJEM+hrX6N0OFDzFzeIhHFSAS01tlVaevpG8cFyYRPhS5yjGOvBUx3sqQHVMjCL1CAZZMxBg==", "dev": true, "license": "MIT", "engines": { @@ -6706,21 +7037,21 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.53.0.tgz", - "integrity": "sha512-pw0c0Gdo7Z4xOG987u3nJ8akL9093yEEKv8QTJ+Bhkghj1xyj8cgPaavlr9rq8h7+s6plUJ4QJYw2gCZodqmGw==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.65.0.tgz", + "integrity": "sha512-JboAE2swaYt4tb1fHhHTABE2K+OLy09XfcTbhnk4Pw96f9dd2e9iYsJ28gBggHlo5z5x1rkyWvcPoTuNTd4oGg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/project-service": "8.53.0", - "@typescript-eslint/tsconfig-utils": "8.53.0", - "@typescript-eslint/types": "8.53.0", - "@typescript-eslint/visitor-keys": "8.53.0", + "@typescript-eslint/project-service": "8.65.0", + "@typescript-eslint/tsconfig-utils": "8.65.0", + "@typescript-eslint/types": "8.65.0", + "@typescript-eslint/visitor-keys": "8.65.0", "debug": "^4.4.3", - "minimatch": "^9.0.5", + "minimatch": "^10.2.2", "semver": "^7.7.3", "tinyglobby": "^0.2.15", - "ts-api-utils": "^2.4.0" + "ts-api-utils": "^2.5.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -6730,39 +7061,52 @@ "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "typescript": ">=4.8.4 <6.0.0" + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" } }, "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", - "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.8.tgz", + "integrity": "sha512-JZyDyq3D4AUifKTPOB7DELf6XsB3WdPuNxCtob1vFXPsSXhdAiHBWJ/tJ8HAc9aH84BK+5JFZLNkJKx3G9kzQg==", "dev": true, "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "20 || >=22" } }, "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "version": "10.2.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.6.tgz", + "integrity": "sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==", "dev": true, - "license": "ISC", + "license": "BlueOak-1.0.0", "dependencies": { - "brace-expansion": "^2.0.1" + "brace-expansion": "^5.0.8" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { - "version": "7.7.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", - "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "version": "7.8.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz", + "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==", "dev": true, "license": "ISC", "bin": { @@ -6773,14 +7117,14 @@ } }, "node_modules/@typescript-eslint/typescript-estree/node_modules/tinyglobby": { - "version": "0.2.15", - "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", - "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz", + "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==", "dev": true, "license": "MIT", "dependencies": { "fdir": "^6.5.0", - "picomatch": "^4.0.3" + "picomatch": "^4.0.4" }, "engines": { "node": ">=12.0.0" @@ -6790,16 +7134,16 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.53.0.tgz", - "integrity": "sha512-XDY4mXTez3Z1iRDI5mbRhH4DFSt46oaIFsLg+Zn97+sYrXACziXSQcSelMybnVZ5pa1P6xYkPr5cMJyunM1ZDA==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.65.0.tgz", + "integrity": "sha512-gXiwIHsYreboxeJucHKPvgwl7dXt50mF8s1/c00cP/WoVTyWKFdtfhRWwZiXYFU5H2O8vVoSLNrexFZjYS/SGA==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.9.1", - "@typescript-eslint/scope-manager": "8.53.0", - "@typescript-eslint/types": "8.53.0", - "@typescript-eslint/typescript-estree": "8.53.0" + "@typescript-eslint/scope-manager": "8.65.0", + "@typescript-eslint/types": "8.65.0", + "@typescript-eslint/typescript-estree": "8.65.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -6809,19 +7153,19 @@ "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0", - "typescript": ">=4.8.4 <6.0.0" + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.53.0.tgz", - "integrity": "sha512-LZ2NqIHFhvFwxG0qZeLL9DvdNAHPGCY5dIRwBhyYeU+LfLhcStE1ImjsuTG/WaVh3XysGaeLW8Rqq7cGkPCFvw==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.65.0.tgz", + "integrity": "sha512-8C71BQkGjiMmXtop7pHVJu1l2NNShFdkCyD6a2ezzs5vU/L3LRtb69EtcteFwz0mYMPzIgOw0n6OV4VBUWZd7A==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.53.0", - "eslint-visitor-keys": "^4.2.1" + "@typescript-eslint/types": "8.65.0", + "eslint-visitor-keys": "^5.0.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -6832,13 +7176,13 @@ } }, "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", - "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", + "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==", "dev": true, "license": "Apache-2.0", "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": "^20.19.0 || ^22.13.0 || >=24" }, "funding": { "url": "https://opencollective.com/eslint" @@ -7040,13 +7384,13 @@ "license": "BSD-2-Clause" }, "node_modules/abbrev": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-3.0.1.tgz", - "integrity": "sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-4.0.0.tgz", + "integrity": "sha512-a1wflyaL0tHtJSmLSOVybYhy22vRih4eduhhrkcjgrWGnRfrZtovJ2FRjxuTtkkj47O/baf0R86QU5OuYpz8fA==", "dev": true, "license": "ISC", "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/accepts": { @@ -7063,9 +7407,9 @@ } }, "node_modules/acorn": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", - "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "version": "8.17.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.17.0.tgz", + "integrity": "sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==", "dev": true, "license": "MIT", "bin": { @@ -7099,9 +7443,9 @@ } }, "node_modules/acorn-walk": { - "version": "8.3.4", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", - "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", + "version": "8.3.5", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.5.tgz", + "integrity": "sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==", "dev": true, "license": "MIT", "dependencies": { @@ -7140,16 +7484,6 @@ "node": ">=8.9.0" } }, - "node_modules/adm-zip": { - "version": "0.5.16", - "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.16.tgz", - "integrity": "sha512-TGw5yVi4saajsSEgz25grObGHEUaDrniwvA2qwSC060KfqGPdglhvPMA2lPIoxs3PQIItj2iag35fONcQqgUaQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12.0" - } - }, "node_modules/agent-base": { "version": "7.1.4", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz", @@ -7161,9 +7495,9 @@ } }, "node_modules/ajv": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", - "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz", + "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==", "dev": true, "license": "MIT", "dependencies": { @@ -7259,9 +7593,9 @@ } }, "node_modules/ansi-escapes": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.2.0.tgz", - "integrity": "sha512-g6LhBsl+GBPRWGWsBtutpzBYuIIdBkLEvad5C/va/74Db018+5TZiyA26cZJAr3Rft5lprVqOIPxf5Vid6tqAw==", + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.3.0.tgz", + "integrity": "sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==", "dev": true, "license": "MIT", "dependencies": { @@ -7326,9 +7660,9 @@ } }, "node_modules/anymatch/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", "dev": true, "license": "MIT", "engines": { @@ -7369,72 +7703,19 @@ "dev": true, "license": "MIT" }, - "node_modules/array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "node_modules/asn1js": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/asn1js/-/asn1js-3.0.10.tgz", + "integrity": "sha512-S2s3aOytiKdFRdulw2qPE51MzjzVOisppcVv7jVFR+Kw0kxwvFrDcYA0h7Ndqbmj0HkMIXYWaoj7fli8kgx1eg==", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", "dependencies": { - "array-uniq": "^1.0.1" + "pvtsutils": "^1.3.6", + "pvutils": "^1.1.5", + "tslib": "^2.8.1" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", - "license": "MIT", - "dependencies": { - "safer-buffer": "~2.1.0" - } - }, - "node_modules/asn1.js": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", - "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", - "license": "MIT", - "dependencies": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "node_modules/asn1.js/node_modules/bn.js": { - "version": "4.12.2", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz", - "integrity": "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==", - "license": "MIT" - }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", - "license": "MIT", - "engines": { - "node": ">=0.8" + "node": ">=12.0.0" } }, "node_modules/asynckit": { @@ -7493,45 +7774,41 @@ "postcss": "^8.1.0" } }, - "node_modules/available-typed-arrays": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", - "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", - "license": "MIT", - "dependencies": { - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", - "license": "Apache-2.0", - "engines": { - "node": "*" - } - }, - "node_modules/aws4": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.2.tgz", - "integrity": "sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==", - "license": "MIT" - }, "node_modules/axios": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.13.2.tgz", - "integrity": "sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==", + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.18.1.tgz", + "integrity": "sha512-3nTvFlvpn9Zu/RkHUqtc7/+al4UpRW5az71ap5zccp6e8RAYEzhMTecX8Dz1wWDYrPpUoB1HAQEGEAEvUr7S9g==", "license": "MIT", "dependencies": { - "follow-redirects": "^1.15.6", - "form-data": "^4.0.4", - "proxy-from-env": "^1.1.0" + "follow-redirects": "^1.16.0", + "form-data": "^4.0.5", + "https-proxy-agent": "^5.0.1", + "proxy-from-env": "^2.1.0" + } + }, + "node_modules/axios/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/axios/node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" } }, "node_modules/axobject-query": { @@ -7562,14 +7839,14 @@ } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.14", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz", - "integrity": "sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==", + "version": "0.4.17", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.17.tgz", + "integrity": "sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==", "dev": true, "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.27.7", - "@babel/helper-define-polyfill-provider": "^0.6.5", + "@babel/compat-data": "^7.28.6", + "@babel/helper-define-polyfill-provider": "^0.6.8", "semver": "^6.3.1" }, "peerDependencies": { @@ -7601,13 +7878,13 @@ } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz", - "integrity": "sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==", + "version": "0.6.8", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.8.tgz", + "integrity": "sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.5" + "@babel/helper-define-polyfill-provider": "^0.6.8" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" @@ -7651,13 +7928,16 @@ } }, "node_modules/baseline-browser-mapping": { - "version": "2.9.16", - "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.16.tgz", - "integrity": "sha512-KeUZdBuxngy825i8xvzaK1Ncnkx0tBmb3k8DkEuqjKRkmtvNTjey2ZsNeh8Dw4lfKvbCOu9oeNx2TKm2vHqcRw==", + "version": "2.10.43", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.43.tgz", + "integrity": "sha512-AjYpR78kDWAY3Efj+cDTFH9t9SCoL7OoTp1BOb0mQV7S+6CiLwnWM3FyxhJtdPufDFKzmCSFoUncKjWgJEZTCQ==", "dev": true, "license": "Apache-2.0", "bin": { - "baseline-browser-mapping": "dist/cli.js" + "baseline-browser-mapping": "dist/cli.cjs" + }, + "engines": { + "node": ">=6.0.0" } }, "node_modules/batch": { @@ -7667,15 +7947,6 @@ "dev": true, "license": "MIT" }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", - "license": "BSD-3-Clause", - "dependencies": { - "tweetnacl": "^0.14.3" - } - }, "node_modules/beasties": { "version": "0.3.5", "resolved": "https://registry.npmjs.org/beasties/-/beasties-0.3.5.tgz", @@ -7719,49 +7990,21 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/blocking-proxy": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/blocking-proxy/-/blocking-proxy-1.0.1.tgz", - "integrity": "sha512-KE8NFMZr3mN2E0HcvCgRtX7DjhiIQrwle+nSVJVC/yqFb9+xznHl2ZcoBp2L9qzkI4t4cBFJ1efXF8Dwi132RA==", - "dev": true, - "license": "MIT", - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "blocking-proxy": "built/lib/bin.js" - }, - "engines": { - "node": ">=6.9.x" - } - }, - "node_modules/bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", - "license": "MIT" - }, - "node_modules/bn.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.2.tgz", - "integrity": "sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==", - "license": "MIT" - }, "node_modules/body-parser": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz", - "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.3.0.tgz", + "integrity": "sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==", "license": "MIT", "dependencies": { "bytes": "^3.1.2", - "content-type": "^1.0.5", + "content-type": "^2.0.0", "debug": "^4.4.3", - "http-errors": "^2.0.0", - "iconv-lite": "^0.7.0", + "http-errors": "^2.0.1", + "iconv-lite": "^0.7.2", "on-finished": "^2.4.1", - "qs": "^6.14.1", - "raw-body": "^3.0.1", - "type-is": "^2.0.1" + "qs": "^6.15.2", + "raw-body": "^3.0.2", + "type-is": "^2.1.0" }, "engines": { "node": ">=18" @@ -7771,6 +8014,19 @@ "url": "https://opencollective.com/express" } }, + "node_modules/body-parser/node_modules/content-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz", + "integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, "node_modules/body-parser/node_modules/http-errors": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", @@ -7807,9 +8063,9 @@ } }, "node_modules/bonjour-service": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.3.0.tgz", - "integrity": "sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==", + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.4.3.tgz", + "integrity": "sha512-2Kd5UYlFUVgAKMTyuBLl6w49wqfOnbxHqmuH0oCl/n7TfAikR0zoowNOP5BU4dfXmm+Vr9JyEN370auSMx+CNg==", "dev": true, "license": "MIT", "dependencies": { @@ -7825,9 +8081,9 @@ "license": "ISC" }, "node_modules/brace-expansion": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", - "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "version": "1.1.16", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.16.tgz", + "integrity": "sha512-IDw48K2/2kRkg9LdJxurvq3lV3aBgq0REY89duEqFRthjlPdXHKMj7EnQOXVckxzgisinf3nHfrcE2FufFLXMw==", "dev": true, "license": "MIT", "dependencies": { @@ -7848,12 +8104,6 @@ "node": ">=8" } }, - "node_modules/brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", - "license": "MIT" - }, "node_modules/brotli": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/brotli/-/brotli-1.3.3.tgz", @@ -7863,81 +8113,19 @@ "base64-js": "^1.1.2" } }, - "node_modules/browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "node_modules/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", "license": "MIT", "dependencies": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "license": "MIT", - "dependencies": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "node_modules/browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "license": "MIT", - "dependencies": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/browserify-rsa": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.1.tgz", - "integrity": "sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==", - "license": "MIT", - "dependencies": { - "bn.js": "^5.2.1", - "randombytes": "^2.1.0", - "safe-buffer": "^5.2.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/browserify-sign": { - "version": "4.2.5", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.5.tgz", - "integrity": "sha512-C2AUdAJg6rlM2W5QMp2Q4KGQMVBwR1lIimTsUnutJ8bMpW5B52pGpR2gEnNBNwijumDo5FojQ0L9JrXA8m4YEw==", - "license": "ISC", - "dependencies": { - "bn.js": "^5.2.2", - "browserify-rsa": "^4.1.1", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.6.1", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.9", - "readable-stream": "^2.3.8", - "safe-buffer": "^5.2.1" - }, - "engines": { - "node": ">= 0.10" + "pako": "~1.0.5" } }, "node_modules/browserslist": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz", - "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", + "version": "4.28.6", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.6.tgz", + "integrity": "sha512-FQBYNK15VMslhLHpA7+n+n1GOlF1kId2xcCg7/j95f24AOF6VDYMNH4mFxF7KuaTdv627faazpOAjFzMrfJOUw==", "dev": true, "funding": [ { @@ -7955,11 +8143,11 @@ ], "license": "MIT", "dependencies": { - "baseline-browser-mapping": "^2.9.0", - "caniuse-lite": "^1.0.30001759", - "electron-to-chromium": "^1.5.263", - "node-releases": "^2.0.27", - "update-browserslist-db": "^1.2.0" + "baseline-browser-mapping": "^2.10.42", + "caniuse-lite": "^1.0.30001803", + "electron-to-chromium": "^1.5.389", + "node-releases": "^2.0.51", + "update-browserslist-db": "^1.2.3" }, "bin": { "browserslist": "cli.js" @@ -7968,53 +8156,6 @@ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/browserstack": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/browserstack/-/browserstack-1.6.1.tgz", - "integrity": "sha512-GxtFjpIaKdbAyzHfFDKixKO8IBT7wR3NjbzrGc78nNs/Ciys9wU3/nBtsqsWv5nDSrdI5tz0peKuzCPuNXNUiw==", - "dev": true, - "license": "MIT", - "dependencies": { - "https-proxy-agent": "^2.2.1" - } - }, - "node_modules/browserstack/node_modules/agent-base": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz", - "integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==", - "dev": true, - "license": "MIT", - "dependencies": { - "es6-promisify": "^5.0.0" - }, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/browserstack/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/browserstack/node_modules/https-proxy-agent": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz", - "integrity": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==", - "dev": true, - "license": "MIT", - "dependencies": { - "agent-base": "^4.3.0", - "debug": "^3.1.0" - }, - "engines": { - "node": ">= 4.5.0" - } - }, "node_modules/buffer": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", @@ -8052,12 +8193,6 @@ "dev": true, "license": "MIT" }, - "node_modules/buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", - "license": "MIT" - }, "node_modules/bundle-name": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", @@ -8083,139 +8218,105 @@ "node": ">= 0.8" } }, + "node_modules/bytestreamjs": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/bytestreamjs/-/bytestreamjs-2.0.1.tgz", + "integrity": "sha512-U1Z/ob71V/bXfVABvNr/Kumf5VyeQRBEm6Txb0PQ6S7V5GpBM3w4Cbqz/xPDicR5tN0uvDifng8C+5qECeGwyQ==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/cacache": { - "version": "19.0.1", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-19.0.1.tgz", - "integrity": "sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==", + "version": "20.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-20.0.4.tgz", + "integrity": "sha512-M3Lab8NPYlZU2exsL3bMVvMrMqgwCnMWfdZbK28bn3pK6APT/Te/I8hjRPNu1uwORY9a1eEQoifXbKPQMfMTOA==", "dev": true, "license": "ISC", "dependencies": { - "@npmcli/fs": "^4.0.0", + "@npmcli/fs": "^5.0.0", "fs-minipass": "^3.0.0", - "glob": "^10.2.2", - "lru-cache": "^10.0.1", + "glob": "^13.0.0", + "lru-cache": "^11.1.0", "minipass": "^7.0.3", "minipass-collect": "^2.0.1", "minipass-flush": "^1.0.5", "minipass-pipeline": "^1.2.4", "p-map": "^7.0.2", - "ssri": "^12.0.0", - "tar": "^7.4.3", - "unique-filename": "^4.0.0" + "ssri": "^13.0.0" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" + } + }, + "node_modules/cacache/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" } }, "node_modules/cacache/node_modules/brace-expansion": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", - "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.7.tgz", + "integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==", "dev": true, "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/cacache/node_modules/chownr": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", - "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", - "dev": true, - "license": "BlueOak-1.0.0", + "balanced-match": "^4.0.2" + }, "engines": { - "node": ">=18" + "node": "18 || 20 || >=22" } }, "node_modules/cacache/node_modules/glob": { - "version": "10.5.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", - "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", + "version": "13.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-13.0.6.tgz", + "integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==", "dev": true, - "license": "ISC", + "license": "BlueOak-1.0.0", "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" + "minimatch": "^10.2.2", + "minipass": "^7.1.3", + "path-scurry": "^2.0.2" }, - "bin": { - "glob": "dist/esm/bin.mjs" + "engines": { + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/cacache/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "version": "11.5.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.2.tgz", + "integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==", "dev": true, - "license": "ISC" + "license": "BlueOak-1.0.0", + "engines": { + "node": "20 || >=22" + } }, "node_modules/cacache/node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", "dev": true, - "license": "ISC", + "license": "BlueOak-1.0.0", "dependencies": { - "brace-expansion": "^2.0.1" + "brace-expansion": "^5.0.5" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/cacache/node_modules/tar": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.5.tgz", - "integrity": "sha512-ocjwSUBo2V8ExKxy9FH6iROIsK60OCW//h14MFYpivNSYIj7ntgm35ijGT82Jl//xwbxBhIYXkfAovjtVm9nrA==", - "dev": true, - "license": "BlueOak-1.0.0", - "dependencies": { - "@isaacs/fs-minipass": "^4.0.0", - "chownr": "^3.0.0", - "minipass": "^7.1.2", - "minizlib": "^3.1.0", - "yallist": "^5.0.0" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/cacache/node_modules/yallist": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", - "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", - "dev": true, - "license": "BlueOak-1.0.0", - "engines": { - "node": ">=18" - } - }, - "node_modules/call-bind": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", - "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", - "license": "MIT", - "dependencies": { - "call-bind-apply-helpers": "^1.0.0", - "es-define-property": "^1.0.0", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/call-bind-apply-helpers": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", @@ -8265,9 +8366,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001765", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001765.tgz", - "integrity": "sha512-LWcNtSyZrakjECqmpP4qdg0MMGdN368D7X8XvvAqOcqMv0RxnlqVKZl2V6/mBR68oYMxOZPLw/gO7DuisMHUvQ==", + "version": "1.0.30001806", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001806.tgz", + "integrity": "sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw==", "dev": true, "funding": [ { @@ -8285,12 +8386,6 @@ ], "license": "CC-BY-4.0" }, - "node_modules/caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", - "license": "Apache-2.0" - }, "node_modules/chalk": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", @@ -8309,9 +8404,9 @@ } }, "node_modules/chardet": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-2.1.1.tgz", - "integrity": "sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-2.2.0.tgz", + "integrity": "sha512-rddelWYNPRrXq6PtNEN2S3f6t9ILzvqaN5pVgi4kqt9jHQaXIial9PznB5iSPVlQSLNaaH22ItWz3EJtQ10+OA==", "dev": true, "license": "MIT" }, @@ -8332,13 +8427,13 @@ } }, "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", + "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", "dev": true, - "license": "ISC", + "license": "BlueOak-1.0.0", "engines": { - "node": ">=10" + "node": ">=18" } }, "node_modules/chrome-trace-event": { @@ -8351,20 +8446,6 @@ "node": ">=6.0" } }, - "node_modules/cipher-base": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.7.tgz", - "integrity": "sha512-Mz9QMT5fJe7bKI7MH31UilT5cEK5EHHRCccw/YRFsRY47AuNgaV6HY3rscp0/I4Q+tTW/5zoqpSeRRI54TkDWA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.4", - "safe-buffer": "^5.2.1", - "to-buffer": "^1.2.2" - }, - "engines": { - "node": ">= 0.10" - } - }, "node_modules/cli-cursor": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz", @@ -8720,9 +8801,9 @@ } }, "node_modules/content-disposition": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.1.tgz", - "integrity": "sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.1.0.tgz", + "integrity": "sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==", "license": "MIT", "engines": { "node": ">=18" @@ -8800,20 +8881,20 @@ } }, "node_modules/copy-webpack-plugin": { - "version": "13.0.1", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-13.0.1.tgz", - "integrity": "sha512-J+YV3WfhY6W/Xf9h+J1znYuqTye2xkBUIGyTPWuBAT27qajBa5mR4f8WBmfDY3YjRftT2kqZZiLi1qf0H+UOFw==", + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-14.0.0.tgz", + "integrity": "sha512-3JLW90aBGeaTLpM7mYQKpnVdgsUZRExY55giiZgLuX/xTQRUs1dOCwbBnWnvY6Q6rfZoXMNwzOQJCSZPppfqXA==", "dev": true, "license": "MIT", "dependencies": { "glob-parent": "^6.0.1", "normalize-path": "^3.0.0", "schema-utils": "^4.2.0", - "serialize-javascript": "^6.0.2", + "serialize-javascript": "^7.0.3", "tinyglobby": "^0.2.12" }, "engines": { - "node": ">= 18.12.0" + "node": ">= 20.9.0" }, "funding": { "type": "opencollective", @@ -8824,13 +8905,13 @@ } }, "node_modules/core-js-compat": { - "version": "3.47.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.47.0.tgz", - "integrity": "sha512-IGfuznZ/n7Kp9+nypamBhvwdwLsW6KC8IOaURw2doAK5e98AG3acVLdh0woOnEqCfUtS+Vu882JE4k/DAm3ItQ==", + "version": "3.49.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.49.0.tgz", + "integrity": "sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA==", "dev": true, "license": "MIT", "dependencies": { - "browserslist": "^4.28.0" + "browserslist": "^4.28.1" }, "funding": { "type": "opencollective", @@ -8841,12 +8922,13 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true, "license": "MIT" }, "node_modules/cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "version": "2.8.6", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz", + "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==", "dev": true, "license": "MIT", "dependencies": { @@ -8855,12 +8937,16 @@ }, "engines": { "node": ">= 0.10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/cosmiconfig": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", - "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.2.tgz", + "integrity": "sha512-gtTZxTDau1wL7Y7zifc2dd8jHSK/k6BTx/2Xp/BpdlAdnlYWFVt7qhJqgwi7637yRwRQ3qL4ZidbB4I8tA5VOg==", "dev": true, "license": "MIT", "dependencies": { @@ -8884,49 +8970,6 @@ } } }, - "node_modules/create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", - "license": "MIT", - "dependencies": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" - } - }, - "node_modules/create-ecdh/node_modules/bn.js": { - "version": "4.12.2", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz", - "integrity": "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==", - "license": "MIT" - }, - "node_modules/create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "license": "MIT", - "dependencies": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "node_modules/create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "license": "MIT", - "dependencies": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, "node_modules/create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", @@ -8949,50 +8992,48 @@ "node": ">= 8" } }, - "node_modules/crypto-browserify": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.1.tgz", - "integrity": "sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==", - "license": "MIT", + "node_modules/csrf-csrf": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/csrf-csrf/-/csrf-csrf-4.0.3.tgz", + "integrity": "sha512-DaygOzelL4Qo1pHwI9LPyZL+X2456/OzpT596kNeZGiTSqKVDOk/9PPJ+FjzZacjMUEusOHw3WJKe1RW4iUhrw==", + "license": "ISC", "dependencies": { - "browserify-cipher": "^1.0.1", - "browserify-sign": "^4.2.3", - "create-ecdh": "^4.0.4", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "diffie-hellman": "^5.0.3", - "hash-base": "~3.0.4", - "inherits": "^2.0.4", - "pbkdf2": "^3.1.2", - "public-encrypt": "^4.0.3", - "randombytes": "^2.1.0", - "randomfill": "^1.0.4" - }, - "engines": { - "node": ">= 0.10" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "http-errors": "^2.0.0" } }, - "node_modules/crypto-js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz", - "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==", - "license": "MIT" - }, - "node_modules/csrf": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/csrf/-/csrf-3.1.0.tgz", - "integrity": "sha512-uTqEnCvWRk042asU6JtapDTcJeeailFy4ydOQS28bj1hcLnYRiqi8SsD2jS412AY1I/4qdOwWZun774iqywf9w==", + "node_modules/csrf-csrf/node_modules/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", "license": "MIT", "dependencies": { - "rndm": "1.2.0", - "tsscmp": "1.0.6", - "uid-safe": "2.1.5" + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" }, "engines": { "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/csrf-csrf/node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/csrf-csrf/node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" } }, "node_modules/css-loader": { @@ -9074,31 +9115,6 @@ "node": ">=4" } }, - "node_modules/csurf": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/csurf/-/csurf-1.11.0.tgz", - "integrity": "sha512-UCtehyEExKTxgiu8UHdGvHj4tnpE/Qctue03Giq5gPgMQ9cg/ciod5blZQ5a4uCEenNQjxyGuzygLdKUmee/bQ==", - "deprecated": "This package is archived and no longer maintained. For support, visit https://github.com/expressjs/express/discussions", - "license": "MIT", - "dependencies": { - "cookie": "0.4.0", - "cookie-signature": "1.0.6", - "csrf": "3.1.0", - "http-errors": "~1.7.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/csurf/node_modules/cookie": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, "node_modules/custom-event": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz", @@ -9342,18 +9358,6 @@ "d3-selection": "2 - 3" } }, - "node_modules/dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", - "license": "MIT", - "dependencies": { - "assert-plus": "^1.0.0" - }, - "engines": { - "node": ">=0.10" - } - }, "node_modules/date-format": { "version": "4.0.14", "resolved": "https://registry.npmjs.org/date-format/-/date-format-4.0.14.tgz", @@ -9398,9 +9402,9 @@ "license": "MIT" }, "node_modules/default-browser": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.4.0.tgz", - "integrity": "sha512-XDuvSq38Hr1MdN47EDvYtx3U0MTqpCEn+F6ft8z2vYDzMrvQhVp0ui9oQdqW3MvK3vqUETglt1tVGgjLuJ5izg==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.5.0.tgz", + "integrity": "sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==", "dev": true, "license": "MIT", "dependencies": { @@ -9427,23 +9431,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "license": "MIT", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/define-lazy-prop": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", @@ -9457,39 +9444,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/del": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", - "integrity": "sha512-Z4fzpbIRjOu7lO5jCETSWoqUDVe0IPOlfugBsF6suen2LKDlVb4QZpKEM9P+buNJ4KI1eN7I083w/pbKUpsrWQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "globby": "^5.0.0", - "is-path-cwd": "^1.0.0", - "is-path-in-cwd": "^1.0.0", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "rimraf": "^2.2.8" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/del/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", - "dev": true, - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -9508,16 +9462,6 @@ "node": ">= 0.8" } }, - "node_modules/des.js": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", - "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, "node_modules/destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", @@ -9570,23 +9514,6 @@ "node": ">=0.3.1" } }, - "node_modules/diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "license": "MIT", - "dependencies": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - } - }, - "node_modules/diffie-hellman/node_modules/bn.js": { - "version": "4.12.2", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz", - "integrity": "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==", - "license": "MIT" - }, "node_modules/dijkstrajs": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.3.tgz", @@ -9718,23 +9645,6 @@ "node": ">= 0.4" } }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true, - "license": "MIT" - }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", - "license": "MIT", - "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, "node_modules/ecdsa-sig-formatter": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", @@ -9751,33 +9661,12 @@ "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.5.267", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz", - "integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==", + "version": "1.5.393", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.393.tgz", + "integrity": "sha512-kiDJdIUawuEIcp9XoICKp1iTYDEbgguIPq526N1Q7jIQDeQ3CqoMx71025PI/7E48Ddtw2HuWsVjY7afEgNxmg==", "dev": true, "license": "ISC" }, - "node_modules/elliptic": { - "version": "6.6.1", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.6.1.tgz", - "integrity": "sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==", - "license": "MIT", - "dependencies": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/elliptic/node_modules/bn.js": { - "version": "4.12.2", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz", - "integrity": "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==", - "license": "MIT" - }, "node_modules/emoji-regex": { "version": "10.6.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz", @@ -9804,86 +9693,41 @@ "node": ">= 0.8" } }, - "node_modules/encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "iconv-lite": "^0.6.2" - } - }, - "node_modules/encoding/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/engine.io": { - "version": "6.6.5", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.6.5.tgz", - "integrity": "sha512-2RZdgEbXmp5+dVbRm0P7HQUImZpICccJy7rN7Tv+SFa55pH+lxnuw6/K1ZxxBfHoYpSkHLAO92oa8O4SwFXA2A==", + "version": "6.6.9", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.6.9.tgz", + "integrity": "sha512-clKkw4C7nJ22mGgoVcCg6V/W/TxdNyIOTr89k2ONZu81qqkddPFDF0LXcbAwhzPD8DjkiRCjzuiO6Y+fkpD4vg==", "dev": true, "license": "MIT", "dependencies": { "@types/cors": "^2.8.12", "@types/node": ">=10.0.0", + "@types/ws": "^8.5.12", "accepts": "~1.3.4", "base64id": "2.0.0", "cookie": "~0.7.2", "cors": "~2.8.5", "debug": "~4.4.1", "engine.io-parser": "~5.2.1", - "ws": "~8.18.3" + "ws": "~8.21.0" }, "engines": { "node": ">=10.2.0" } }, "node_modules/engine.io-client": { - "version": "6.6.4", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.6.4.tgz", - "integrity": "sha512-+kjUJnZGwzewFDw951CDWcwj35vMNf2fcj7xQWOctq1F2i1jkDdVvdFG9kM/BEChymCH36KgjnW0NsL58JYRxw==", + "version": "6.6.6", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.6.6.tgz", + "integrity": "sha512-iY6QdftLQ9pyiPoX082bpf/u1UewnOaJrtJIF9T0++QB34lZrj0uP+Q/bj8AlUsAxqhnkTV2BS8SBZSxOmoV5Q==", "license": "MIT", "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.4.1", "engine.io-parser": "~5.2.1", - "ws": "~8.18.3", + "ws": "~8.21.0", "xmlhttprequest-ssl": "~2.1.1" } }, - "node_modules/engine.io-client/node_modules/ws": { - "version": "8.18.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", - "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==", - "license": "MIT", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, "node_modules/engine.io-parser": { "version": "5.2.3", "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.3.tgz", @@ -9940,37 +9784,15 @@ "node": ">= 0.6" } }, - "node_modules/engine.io/node_modules/ws": { - "version": "8.18.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", - "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, "node_modules/enhanced-resolve": { - "version": "5.18.4", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.4.tgz", - "integrity": "sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==", + "version": "5.24.2", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.24.2.tgz", + "integrity": "sha512-rpsZEGT1jFuve6QlpyRp9ckQ+kN61hvF9BzCPyMdaKTm8UJce96KBn3sorXOFXlzjPrs3Vc4T1NsSroZ3PxlFw==", "dev": true, "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" + "tapable": "^2.3.3" }, "engines": { "node": ">=10.13.0" @@ -10028,13 +9850,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true, - "license": "MIT" - }, "node_modules/errno": { "version": "0.1.8", "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", @@ -10078,16 +9893,16 @@ } }, "node_modules/es-module-lexer": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", - "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.3.1.tgz", + "integrity": "sha512-shc1dbU90Yl/xq1QrC7QRtfcwURZuVRfPhZbDoldJ1cn1gzDvBaBWlv0eFolj5+0znnPJz5TXLxsN77X/12KTA==", "dev": true, "license": "MIT" }, "node_modules/es-object-atoms": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", - "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz", + "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==", "license": "MIT", "dependencies": { "es-errors": "^1.3.0" @@ -10111,27 +9926,10 @@ "node": ">= 0.4" } }, - "node_modules/es6-promise": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", - "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==", - "dev": true, - "license": "MIT" - }, - "node_modules/es6-promisify": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", - "integrity": "sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "es6-promise": "^4.0.3" - } - }, "node_modules/esbuild": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.9.tgz", - "integrity": "sha512-CRbODhYyQx3qp7ZEwzxOk4JBqmD/seJrzPa/cGjY1VtIn5E09Oi9/dB4JwctnfZ8Q8iT7rioVv5k/FNT/uf54g==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.1.tgz", + "integrity": "sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==", "dev": true, "hasInstallScript": true, "license": "MIT", @@ -10142,38 +9940,38 @@ "node": ">=18" }, "optionalDependencies": { - "@esbuild/aix-ppc64": "0.25.9", - "@esbuild/android-arm": "0.25.9", - "@esbuild/android-arm64": "0.25.9", - "@esbuild/android-x64": "0.25.9", - "@esbuild/darwin-arm64": "0.25.9", - "@esbuild/darwin-x64": "0.25.9", - "@esbuild/freebsd-arm64": "0.25.9", - "@esbuild/freebsd-x64": "0.25.9", - "@esbuild/linux-arm": "0.25.9", - "@esbuild/linux-arm64": "0.25.9", - "@esbuild/linux-ia32": "0.25.9", - "@esbuild/linux-loong64": "0.25.9", - "@esbuild/linux-mips64el": "0.25.9", - "@esbuild/linux-ppc64": "0.25.9", - "@esbuild/linux-riscv64": "0.25.9", - "@esbuild/linux-s390x": "0.25.9", - "@esbuild/linux-x64": "0.25.9", - "@esbuild/netbsd-arm64": "0.25.9", - "@esbuild/netbsd-x64": "0.25.9", - "@esbuild/openbsd-arm64": "0.25.9", - "@esbuild/openbsd-x64": "0.25.9", - "@esbuild/openharmony-arm64": "0.25.9", - "@esbuild/sunos-x64": "0.25.9", - "@esbuild/win32-arm64": "0.25.9", - "@esbuild/win32-ia32": "0.25.9", - "@esbuild/win32-x64": "0.25.9" + "@esbuild/aix-ppc64": "0.28.1", + "@esbuild/android-arm": "0.28.1", + "@esbuild/android-arm64": "0.28.1", + "@esbuild/android-x64": "0.28.1", + "@esbuild/darwin-arm64": "0.28.1", + "@esbuild/darwin-x64": "0.28.1", + "@esbuild/freebsd-arm64": "0.28.1", + "@esbuild/freebsd-x64": "0.28.1", + "@esbuild/linux-arm": "0.28.1", + "@esbuild/linux-arm64": "0.28.1", + "@esbuild/linux-ia32": "0.28.1", + "@esbuild/linux-loong64": "0.28.1", + "@esbuild/linux-mips64el": "0.28.1", + "@esbuild/linux-ppc64": "0.28.1", + "@esbuild/linux-riscv64": "0.28.1", + "@esbuild/linux-s390x": "0.28.1", + "@esbuild/linux-x64": "0.28.1", + "@esbuild/netbsd-arm64": "0.28.1", + "@esbuild/netbsd-x64": "0.28.1", + "@esbuild/openbsd-arm64": "0.28.1", + "@esbuild/openbsd-x64": "0.28.1", + "@esbuild/openharmony-arm64": "0.28.1", + "@esbuild/sunos-x64": "0.28.1", + "@esbuild/win32-arm64": "0.28.1", + "@esbuild/win32-ia32": "0.28.1", + "@esbuild/win32-x64": "0.28.1" } }, "node_modules/esbuild-wasm": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.25.9.tgz", - "integrity": "sha512-Jpv5tCSwQg18aCqCRD3oHIX/prBhXMDapIoG//A+6+dV0e7KQMGFg85ihJ5T1EeMjbZjON3TqFy0VrGAnIHLDA==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.28.1.tgz", + "integrity": "sha512-p/GD4E8oYRjg3kjdKrnMb0s4PzXgJF42e0MF4H0+ACyK/kIlFRp3e0fzOleIG+wBBm6MM3XQrbpe7soEA+vJIA==", "dev": true, "license": "MIT", "bin": { @@ -10213,25 +10011,25 @@ } }, "node_modules/eslint": { - "version": "9.39.2", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.2.tgz", - "integrity": "sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==", + "version": "9.39.5", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.5.tgz", + "integrity": "sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.1", - "@eslint/config-array": "^0.21.1", + "@eslint/config-array": "^0.21.2", "@eslint/config-helpers": "^0.4.2", "@eslint/core": "^0.17.0", - "@eslint/eslintrc": "^3.3.1", - "@eslint/js": "9.39.2", + "@eslint/eslintrc": "^3.3.6", + "@eslint/js": "9.39.5", "@eslint/plugin-kit": "^0.4.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", - "ajv": "^6.12.4", + "ajv": "^6.14.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", @@ -10250,7 +10048,7 @@ "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", + "minimatch": "^3.1.5", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, @@ -10401,9 +10199,9 @@ } }, "node_modules/eslint-plugin-deprecation/node_modules/brace-expansion": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", - "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.2.tgz", + "integrity": "sha512-w5JZcKgdhDOgOwm8H+KgbosopHMuGcl6qbulwjtz3SM7I7P3yW1eAjzMPLrIE+NQ9vjgANKHWeMHnrT0OXW1oA==", "dev": true, "license": "MIT", "dependencies": { @@ -10442,13 +10240,13 @@ } }, "node_modules/eslint-plugin-deprecation/node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "version": "9.0.9", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz", + "integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==", "dev": true, "license": "ISC", "dependencies": { - "brace-expansion": "^2.0.1" + "brace-expansion": "^2.0.2" }, "engines": { "node": ">=16 || 14 >=14.17" @@ -10471,9 +10269,9 @@ } }, "node_modules/eslint-scope": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-9.1.0.tgz", - "integrity": "sha512-CkWE42hOJsNj9FJRaoMX9waUFYhqY4jmyLFdAdzZr6VaCg3ynLYx4WnOdkaIifGfH4gsUcBTn4OZbHXkpLD0FQ==", + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-9.1.2.tgz", + "integrity": "sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -10502,10 +10300,34 @@ "url": "https://opencollective.com/eslint" } }, + "node_modules/eslint/node_modules/@eslint/eslintrc": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.6.tgz", + "integrity": "sha512-l2Ul9PrHsPCKcEY/ac7VgFj9D80C7S68sOKc618SyHDPK36s1XcFebXY0iTzUVn4Yq+YbwvSnDmCz9yxjX+QrA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.14.0", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.3.0", + "minimatch": "^3.1.5", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, "node_modules/eslint/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz", + "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==", "dev": true, "license": "MIT", "dependencies": { @@ -10683,34 +10505,15 @@ } }, "node_modules/eventsource-parser": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.0.6.tgz", - "integrity": "sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.1.0.tgz", + "integrity": "sha512-kJezFj9YFAMLeORyi7aCLxLbD5/qWMQnoMVlVPyHIll7lgRJCc3JVln9Vgl9nwQi0YkMnhdGTMNn7CkRRAptMg==", "dev": true, "license": "MIT", "engines": { "node": ">=18.0.0" } }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "license": "MIT", - "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "node_modules/exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/exponential-backoff": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.3.tgz", @@ -10762,11 +10565,15 @@ } }, "node_modules/express-rate-limit": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-7.5.1.tgz", - "integrity": "sha512-7iN8iPMDzOMHPUYllBEsQdWVB6fPDMPqwjBaFrgr4Jgr/+okjvzAy+UHlYYL/Vs0OsOrMkwS6PJDkFlJwoxUnw==", + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.6.0.tgz", + "integrity": "sha512-XKJXDsASUOo0LLtFwW5hCcQGH0N4WQc/Rn8/Pvoia+TJFOkkFPvrtW9lZOeeNcxQJspvOIERMwiRLsVFlhHEkA==", "dev": true, "license": "MIT", + "dependencies": { + "debug": "^4.4.3", + "ip-address": "^10.2.0" + }, "engines": { "node": ">= 16" }, @@ -10865,15 +10672,7 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "license": "MIT" - }, - "node_modules/extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", - "engines": [ - "node >=0.6.0" - ], + "dev": true, "license": "MIT" }, "node_modules/fast-deep-equal": { @@ -10916,6 +10715,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, "license": "MIT" }, "node_modules/fast-levenshtein": { @@ -10926,9 +10726,9 @@ "license": "MIT" }, "node_modules/fast-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz", - "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.4.tgz", + "integrity": "sha512-8JnbkQ4juDyvYs4mgFGQqg4yCYtFDtUtmp2QIQq11ZZe5CFQ5wcqm1rqDgAh/QdMySuBnPzMUiJUNZG5N/AiQw==", "dev": true, "funding": [ { @@ -11072,16 +10872,16 @@ } }, "node_modules/flatted": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", - "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz", + "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==", "dev": true, "license": "ISC" }, "node_modules/follow-redirects": { - "version": "1.15.11", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz", - "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==", + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.16.0.tgz", + "integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==", "funding": [ { "type": "individual", @@ -11115,58 +10915,17 @@ "unicode-trie": "^2.0.0" } }, - "node_modules/for-each": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", - "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", - "license": "MIT", - "dependencies": { - "is-callable": "^1.2.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/foreground-child": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", - "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", - "dev": true, - "license": "ISC", - "dependencies": { - "cross-spawn": "^7.0.6", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", - "license": "Apache-2.0", - "engines": { - "node": "*" - } - }, "node_modules/form-data": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz", - "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.6.tgz", + "integrity": "sha512-vKatAh4SlVfgbv+YtmhiRjhEMJsYpsG1Y2rMQtR+SVSbytsSD1YGzDIcrAJmdFec88u/+VoGmxnl+80gL1tRCQ==", "license": "MIT", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "es-set-tostringtag": "^2.1.0", - "hasown": "^2.0.2", - "mime-types": "^2.1.12" + "hasown": "^2.0.4", + "mime-types": "^2.1.35" }, "engines": { "node": ">= 6" @@ -11304,9 +11063,9 @@ } }, "node_modules/get-east-asian-width": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz", - "integrity": "sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz", + "integrity": "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==", "dev": true, "license": "MIT", "engines": { @@ -11353,20 +11112,11 @@ "node": ">= 0.4" } }, - "node_modules/getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", - "license": "MIT", - "dependencies": { - "assert-plus": "^1.0.0" - } - }, "node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", + "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", "dev": true, "license": "ISC", "dependencies": { @@ -11434,24 +11184,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globby": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", - "integrity": "sha512-HJRTIH2EeH44ka+LWig+EqT2ONSYpVlNfx6pyd592/VF1TbfljJ7elwie7oSwcViLGqOdWocSdu2txwBF9bjmQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-union": "^1.0.1", - "arrify": "^1.0.0", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/gopd": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", @@ -11487,51 +11219,6 @@ "dev": true, "license": "MIT" }, - "node_modules/har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", - "license": "ISC", - "engines": { - "node": ">=4" - } - }, - "node_modules/har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "deprecated": "this library is no longer supported", - "license": "MIT", - "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/har-validator/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/har-validator/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "license": "MIT" - }, "node_modules/has": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", @@ -11552,18 +11239,6 @@ "node": ">=8" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "license": "MIT", - "dependencies": { - "es-define-property": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/has-symbols": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", @@ -11591,33 +11266,10 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hash-base": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.5.tgz", - "integrity": "sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.4", - "safe-buffer": "^5.2.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz", + "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==", "license": "MIT", "dependencies": { "function-bind": "^1.1.2" @@ -11626,27 +11278,26 @@ "node": ">= 0.4" } }, - "node_modules/hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", - "license": "MIT", - "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, "node_modules/hocon-parser": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/hocon-parser/-/hocon-parser-1.0.1.tgz", "integrity": "sha512-qMKuQh6pLPQc0gXsl91hAJEjD4JghV1VukO5gKOzjolCnupCbGHpERzMCkZLwVDLq7sL8xR6P4iWhcM1my3HtA==", "license": "ISC" }, + "node_modules/hono": { + "version": "4.12.31", + "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.31.tgz", + "integrity": "sha512-zJIHFrl6bq3RDd2YusFNCDlM8qUprxKswyi/OPzPyzKDdyBXDqWx8bZlZ7R+saTdSTatUmb3O7K4SspGPaEOQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16.9.0" + } + }, "node_modules/hosted-git-info": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-9.0.2.tgz", - "integrity": "sha512-M422h7o/BR3rmCQ8UHi7cyyMqKltdP9Uo+J2fXK+RSAY+wTcKOIRyhTuKv4qn+DJf3g+PL890AzId5KZpX+CBg==", + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-9.0.3.tgz", + "integrity": "sha512-Hc+ghLoSt6QaYZUv0WBiIvmMDZuZZ7oaDvdH8MbfOO4lOsxdXLEvuC6ePoGs9H1X9oCLyq6+NVN0MKqD+ydxyg==", "dev": true, "license": "ISC", "dependencies": { @@ -11657,9 +11308,9 @@ } }, "node_modules/hosted-git-info/node_modules/lru-cache": { - "version": "11.2.4", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz", - "integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==", + "version": "11.5.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.2.tgz", + "integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==", "dev": true, "license": "BlueOak-1.0.0", "engines": { @@ -11687,9 +11338,9 @@ "license": "MIT" }, "node_modules/htmlparser2": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.0.0.tgz", - "integrity": "sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.1.0.tgz", + "integrity": "sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==", "dev": true, "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", @@ -11702,14 +11353,14 @@ "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.3", - "domutils": "^3.2.1", - "entities": "^6.0.0" + "domutils": "^3.2.2", + "entities": "^7.0.1" } }, "node_modules/htmlparser2/node_modules/entities": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", - "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz", + "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==", "dev": true, "license": "BSD-2-Clause", "engines": { @@ -11733,40 +11384,6 @@ "dev": true, "license": "MIT" }, - "node_modules/http-errors": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", - "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", - "license": "MIT", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/http-errors/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/http-errors/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, "node_modules/http-parser-js": { "version": "0.5.10", "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.10.tgz", @@ -11804,9 +11421,9 @@ } }, "node_modules/http-proxy-middleware": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-3.0.5.tgz", - "integrity": "sha512-GLZZm1X38BPY4lkXA01jhwxvDoOkkXqjgVyUzVxiEK4iuRu03PZoYHhHRwxnfhQMDuaxi3vVri0YgSro/1oWqg==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-3.0.7.tgz", + "integrity": "sha512-iwbQltVlx8bCrqePUM8C+hllHvdawVhQJaLrj1X7qllkvFQdXFsr16pW/mo9+JDVjN+QO2XUx9jd8SmoFkE5qw==", "dev": true, "license": "MIT", "dependencies": { @@ -11818,22 +11435,7 @@ "micromatch": "^4.0.8" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", - "license": "MIT", - "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - }, - "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" + "node": "^14.18.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/https-proxy-agent": { @@ -11861,9 +11463,9 @@ } }, "node_modules/iconv-lite": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz", - "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==", + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.3.tgz", + "integrity": "sha512-IKXpvIzjnC9XTAUbVBcMfGS0EPaIXtW6v+zr+RRp+hqULEpo0owZax6wyRwPOJbWbzjYspQwusTsfVr0ifh4uQ==", "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" @@ -11939,17 +11541,40 @@ "node": "^20.17.0 || >=22.9.0" } }, + "node_modules/ignore-walk/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/ignore-walk/node_modules/brace-expansion": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.7.tgz", + "integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" + } + }, "node_modules/ignore-walk/node_modules/minimatch": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.1.1.tgz", - "integrity": "sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==", + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", "dev": true, "license": "BlueOak-1.0.0", "dependencies": { - "@isaacs/brace-expansion": "^5.0.0" + "brace-expansion": "^5.0.5" }, "engines": { - "node": "20 || >=22" + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -11969,17 +11594,10 @@ "node": ">=0.10.0" } }, - "node_modules/immediate": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", - "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", - "dev": true, - "license": "MIT" - }, "node_modules/immutable": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.4.tgz", - "integrity": "sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==", + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.9.tgz", + "integrity": "sha512-m8nVez3rwrgmWxtLMt1ZYXB2Lv7OKYn/disyxAlSDYAlKSlFoPPfIAmAM/M5xqL4m4C/wAPw7S2/CNaUii1Hxg==", "dev": true, "license": "MIT" }, @@ -12047,9 +11665,9 @@ } }, "node_modules/ip-address": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.1.0.tgz", - "integrity": "sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==", + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.2.0.tgz", + "integrity": "sha512-/+S6j4E9AHvW9SWMSEY9Xfy66O5PWvVEJ08O0y5JGyEKQpojb0K0GKpz/v5HJ/G0vi3D2sjGK78119oXZeE0qA==", "dev": true, "license": "MIT", "engines": { @@ -12085,18 +11703,6 @@ "node": ">=8" } }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/is-core-module": { "version": "2.13.0", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", @@ -12195,9 +11801,9 @@ } }, "node_modules/is-network-error": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/is-network-error/-/is-network-error-1.3.0.tgz", - "integrity": "sha512-6oIwpsgRfnDiyEDLMay/GqCl3HoAtH5+RUKW29gYkL0QA+ipzpDLA16yQs7/RHCSu+BwgbJaOUqa4A99qNVQVw==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/is-network-error/-/is-network-error-1.3.2.tgz", + "integrity": "sha512-PhBY86zaxNZUuWP6h13Vu5oFe0XY6/UlKzQnYFELzGVHygP3MxmvTfYSG7GN3aIab/iWudSMgjSnG9Dq+nHrgA==", "dev": true, "license": "MIT", "engines": { @@ -12217,42 +11823,6 @@ "node": ">=0.12.0" } }, - "node_modules/is-path-cwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", - "integrity": "sha512-cnS56eR9SPAscL77ik76ATVqoPARTqPIVkMDVxRaWH06zT+6+CzIroYRJ0VVvm0Z1zfAvxvz9i/D3Ppjaqt5Nw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-path-in-cwd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", - "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-path-inside": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-path-inside": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha512-qhsCR/Esx4U4hg/9I19OVUAJkGWtjRYHMRgUMZE2TDdj+Ag+kttZanLupfddNyglzz50cUlmWzUaI37GDfNx/g==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-is-inside": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/is-plain-obj": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", @@ -12301,27 +11871,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-typed-array": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", - "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", - "license": "MIT", - "dependencies": { - "which-typed-array": "^1.1.16" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "license": "MIT" - }, "node_modules/is-unicode-supported": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", @@ -12343,9 +11892,9 @@ "license": "MIT" }, "node_modules/is-wsl": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", - "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.1.tgz", + "integrity": "sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==", "dev": true, "license": "MIT", "dependencies": { @@ -12362,6 +11911,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true, "license": "MIT" }, "node_modules/isbinaryfile": { @@ -12394,12 +11944,6 @@ "node": ">=0.10.0" } }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", - "license": "MIT" - }, "node_modules/istanbul-lib-coverage": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", @@ -12481,37 +12025,6 @@ "node": ">=8" } }, - "node_modules/jackspeak": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", - "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", - "dev": true, - "license": "BlueOak-1.0.0", - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" - } - }, - "node_modules/jasmine": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/jasmine/-/jasmine-2.8.0.tgz", - "integrity": "sha512-KbdGQTf5jbZgltoHs31XGiChAPumMSY64OZMWLNYnEnMfG5uwGBhffePwuskexjT+/Jea/gU3qAU8344hNohSw==", - "dev": true, - "license": "MIT", - "dependencies": { - "exit": "^0.1.2", - "glob": "^7.0.6", - "jasmine-core": "~2.8.0" - }, - "bin": { - "jasmine": "bin/jasmine.js" - } - }, "node_modules/jasmine-core": { "version": "5.13.0", "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-5.13.0.tgz", @@ -12529,23 +12042,6 @@ "colors": "1.4.0" } }, - "node_modules/jasmine/node_modules/jasmine-core": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-2.8.0.tgz", - "integrity": "sha512-SNkOkS+/jMZvLhuSx1fjhcNWUC/KG6oVyFUGkSBEr9n1axSNduWU8GlI7suaHXr4yxjet6KjrUZxUTE5WzzWwQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/jasminewd2": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/jasminewd2/-/jasminewd2-2.2.0.tgz", - "integrity": "sha512-Rn0nZe4rfDhzA63Al3ZGh0E+JTmM6ESZYXJGKuqKGZObsAB9fwXPD03GjtIEvJBDOhN94T5MzbwZSqzFHSQPzg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6.9.x" - } - }, "node_modules/jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -12588,20 +12084,19 @@ } }, "node_modules/jose": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/jose/-/jose-6.1.3.tgz", - "integrity": "sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ==", + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/jose/-/jose-6.2.3.tgz", + "integrity": "sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw==", "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/panva" } }, - "node_modules/jpeg-exif": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/jpeg-exif/-/jpeg-exif-1.1.4.tgz", - "integrity": "sha512-a+bKEcCjtuW5WTdgeXFzswSrdqi0jk4XlEtZlx5A94wCoBpFjfFTbo/Tra5SpNCl/YFZPvcV1dJc+TAYeg6ROQ==", - "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", + "node_modules/js-md5": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/js-md5/-/js-md5-0.8.3.tgz", + "integrity": "sha512-qR0HB5uP6wCuRMrWPTrkMaev7MJZwJuuw4fnwAzRgP4J4/F8RwtodOKpGp4XpqsLBFzzgqIO42efFAyz2Et6KQ==", "license": "MIT" }, "node_modules/js-tokens": { @@ -12612,10 +12107,20 @@ "license": "MIT" }, "node_modules/js-yaml": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", - "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.3.0.tgz", + "integrity": "sha512-1td788aAnnZ5qs7V2QIRl1owjtYpbKt749Y3xauqQgwIIGF/xXWz1wMTEBx5O3LK3lXLVuqXPdPxj2BoFHaW9Q==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/puzrin" + }, + { + "type": "github", + "url": "https://github.com/sponsors/nodeca" + } + ], "license": "MIT", "dependencies": { "argparse": "^2.0.1" @@ -12624,12 +12129,6 @@ "js-yaml": "bin/js-yaml.js" } }, - "node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", - "license": "MIT" - }, "node_modules/jsesc": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", @@ -12651,21 +12150,15 @@ "license": "MIT" }, "node_modules/json-parse-even-better-errors": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-4.0.0.tgz", - "integrity": "sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-5.0.0.tgz", + "integrity": "sha512-ZF1nxZ28VhQouRWhUcVlUIN3qwSgPuswK05s/HIaoetAoE/9tngVmCHjSxmSQPav1nd+lPtTL0YZ/2AFdR/iYQ==", "dev": true, "license": "MIT", "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, - "node_modules/json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", - "license": "(AFL-2.1 OR BSD-3-Clause)" - }, "node_modules/json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", @@ -12687,12 +12180,6 @@ "dev": true, "license": "MIT" }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", - "license": "ISC" - }, "node_modules/json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", @@ -12755,34 +12242,6 @@ "npm": ">=6" } }, - "node_modules/jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", - "license": "MIT", - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/jszip": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", - "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", - "dev": true, - "license": "(MIT OR GPL-3.0-or-later)", - "dependencies": { - "lie": "~3.3.0", - "pako": "~1.0.2", - "readable-stream": "~2.3.6", - "setimmediate": "^1.0.5" - } - }, "node_modules/jwa": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.1.tgz", @@ -12957,9 +12416,9 @@ } }, "node_modules/karma/node_modules/body-parser": { - "version": "1.20.4", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.4.tgz", - "integrity": "sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==", + "version": "1.20.6", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.6.tgz", + "integrity": "sha512-p5tAzS57i5MV9fZFDj9LeIiTZEufbSe2eDozP+ElheSUq1m74CRq1jI4mYNDdVs9vQztXFLuk/Gd6BWTdwRJ5g==", "dev": true, "license": "MIT", "dependencies": { @@ -12971,7 +12430,7 @@ "http-errors": "~2.0.1", "iconv-lite": "~0.4.24", "on-finished": "~2.4.1", - "qs": "~6.14.0", + "qs": "~6.15.1", "raw-body": "~2.5.3", "type-is": "~1.6.18", "unpipe": "~1.0.0" @@ -13133,9 +12592,9 @@ "license": "MIT" }, "node_modules/karma/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", "dev": true, "license": "MIT", "engines": { @@ -13249,9 +12708,9 @@ } }, "node_modules/karma/node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "version": "16.2.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.2.tgz", + "integrity": "sha512-Nt9ZJjXTv5R8MHbqby/wXQ6Gi0Bb3TcYZkR1bzuL4yB2OxWPkXknz513gEF0GoA6tn00UpbPvERW8rzCuWCA6w==", "dev": true, "license": "MIT", "dependencies": { @@ -13298,14 +12757,14 @@ } }, "node_modules/launch-editor": { - "version": "2.12.0", - "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.12.0.tgz", - "integrity": "sha512-giOHXoOtifjdHqUamwKq6c49GzBdLjvxrd2D+Q4V6uOHopJv7p9VJxikDsQ/CBXZbEITgUqSVHXLTG3VhPP1Dg==", + "version": "2.14.1", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.14.1.tgz", + "integrity": "sha512-QWBrQsMpH7gPr965dsKD/3cKWiNoTjpATQf++Xq63N6sKRGMwlVXz41O1IZTMfZQgBctD/K5Zt06+/I6pP6+HA==", "dev": true, "license": "MIT", "dependencies": { "picocolors": "^1.1.1", - "shell-quote": "^1.8.3" + "shell-quote": "^1.8.4" } }, "node_modules/less": { @@ -13456,16 +12915,6 @@ } } }, - "node_modules/lie": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", - "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "immediate": "~3.0.5" - } - }, "node_modules/linebreak": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/linebreak/-/linebreak-1.1.0.tgz", @@ -13577,9 +13026,9 @@ } }, "node_modules/loader-runner": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.1.tgz", - "integrity": "sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==", + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.2.tgz", + "integrity": "sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w==", "dev": true, "license": "MIT", "engines": { @@ -13617,9 +13066,10 @@ } }, "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz", + "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==", + "dev": true, "license": "MIT" }, "node_modules/lodash.debounce": { @@ -13853,26 +13303,37 @@ "license": "ISC" }, "node_modules/make-fetch-happen": { - "version": "14.0.3", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz", - "integrity": "sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==", + "version": "15.0.6", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-15.0.6.tgz", + "integrity": "sha512-Je0fLJ0F5atA7F+eIlLzk+Wkcl57JDf4kf+EW8xiP5E31xOQxkIxTbgf1Oi1Lw9tRI9UEMRdI5Vz2xTzoNU1Jw==", "dev": true, "license": "ISC", "dependencies": { - "@npmcli/agent": "^3.0.0", - "cacache": "^19.0.1", + "@gar/promise-retry": "^1.0.0", + "@npmcli/agent": "^4.0.0", + "@npmcli/redact": "^4.0.0", + "cacache": "^20.0.1", "http-cache-semantics": "^4.1.1", "minipass": "^7.0.2", - "minipass-fetch": "^4.0.0", + "minipass-fetch": "^5.0.0", "minipass-flush": "^1.0.5", "minipass-pipeline": "^1.2.4", "negotiator": "^1.0.0", - "proc-log": "^5.0.0", - "promise-retry": "^2.0.1", - "ssri": "^12.0.0" + "proc-log": "^6.0.0", + "ssri": "^13.0.0" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" + } + }, + "node_modules/make-fetch-happen/node_modules/proc-log": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz", + "integrity": "sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/material-icons": { @@ -13891,17 +13352,6 @@ "node": ">= 0.4" } }, - "node_modules/md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "license": "MIT", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, "node_modules/media-typer": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz", @@ -13912,20 +13362,20 @@ } }, "node_modules/memfs": { - "version": "4.56.4", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.56.4.tgz", - "integrity": "sha512-GKqmHEFyFwccco9NmTEY38AemzpNLs5tKKxGfNpnLI/5D92NAr7STItdzTMeUlKdd3FjkE5w18TPLyKTb6MDVA==", + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.64.0.tgz", + "integrity": "sha512-Kw72fgY7Wn+sD8KmtNWSafl1dz0UvAsE/PHs3YVfLiaZuA3HxNm9sRLqAu0ATiBGJvME1PxZXbBZPv5GycDeAw==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@jsonjoy.com/fs-core": "4.56.4", - "@jsonjoy.com/fs-fsa": "4.56.4", - "@jsonjoy.com/fs-node": "4.56.4", - "@jsonjoy.com/fs-node-builtins": "4.56.4", - "@jsonjoy.com/fs-node-to-fsa": "4.56.4", - "@jsonjoy.com/fs-node-utils": "4.56.4", - "@jsonjoy.com/fs-print": "4.56.4", - "@jsonjoy.com/fs-snapshot": "^4.56.4", + "@jsonjoy.com/fs-core": "4.64.0", + "@jsonjoy.com/fs-fsa": "4.64.0", + "@jsonjoy.com/fs-node": "4.64.0", + "@jsonjoy.com/fs-node-builtins": "4.64.0", + "@jsonjoy.com/fs-node-to-fsa": "4.64.0", + "@jsonjoy.com/fs-node-utils": "4.64.0", + "@jsonjoy.com/fs-print": "4.64.0", + "@jsonjoy.com/fs-snapshot": "4.64.0", "@jsonjoy.com/json-pack": "^1.11.0", "@jsonjoy.com/util": "^1.9.0", "glob-to-regex.js": "^1.0.1", @@ -13995,9 +13445,9 @@ } }, "node_modules/micromatch/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", "dev": true, "license": "MIT", "engines": { @@ -14007,25 +13457,6 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "license": "MIT", - "dependencies": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - }, - "bin": { - "miller-rabin": "bin/miller-rabin" - } - }, - "node_modules/miller-rabin/node_modules/bn.js": { - "version": "4.12.2", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz", - "integrity": "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==", - "license": "MIT" - }, "node_modules/mime": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", @@ -14102,18 +13533,13 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true, "license": "ISC" }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", - "license": "MIT" - }, "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", "dev": true, "license": "ISC", "dependencies": { @@ -14134,11 +13560,11 @@ } }, "node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz", + "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==", "dev": true, - "license": "ISC", + "license": "BlueOak-1.0.0", "engines": { "node": ">=16 || 14 >=14.17" } @@ -14157,29 +13583,29 @@ } }, "node_modules/minipass-fetch": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-4.0.1.tgz", - "integrity": "sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ==", + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-5.0.2.tgz", + "integrity": "sha512-2d0q2a8eCi2IRg/IGubCNRJoYbA1+YPXAzQVRFmB45gdGZafyivnZ5YSEfo3JikbjGxOdntGFvBQGqaSMXlAFQ==", "dev": true, "license": "MIT", "dependencies": { "minipass": "^7.0.3", - "minipass-sized": "^1.0.3", + "minipass-sized": "^2.0.0", "minizlib": "^3.0.1" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" }, "optionalDependencies": { - "encoding": "^0.1.13" + "iconv-lite": "^0.7.2" } }, "node_modules/minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.7.tgz", + "integrity": "sha512-TbqTz9cUwWyHS2Dy89P3ocAGUGxKjjLuR9z8w4WUTGAVgEj17/4nhgo2Du56i0Fm3Pm30g4iA8Lcqctc76jCzA==", "dev": true, - "license": "ISC", + "license": "BlueOak-1.0.0", "dependencies": { "minipass": "^3.0.0" }, @@ -14241,38 +13667,18 @@ "license": "ISC" }, "node_modules/minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-2.0.0.tgz", + "integrity": "sha512-zSsHhto5BcUVM2m1LurnXY6M//cGhVaegT71OfOXoprxT6o780GZd792ea6FfrQkuU4usHZIUczAQMRUE2plzA==", "dev": true, "license": "ISC", "dependencies": { - "minipass": "^3.0.0" + "minipass": "^7.1.2" }, "engines": { "node": ">=8" } }, - "node_modules/minipass-sized/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-sized/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "license": "ISC" - }, "node_modules/minizlib": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.1.0.tgz", @@ -14316,9 +13722,9 @@ "license": "MIT" }, "node_modules/msgpackr": { - "version": "1.11.8", - "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.11.8.tgz", - "integrity": "sha512-bC4UGzHhVvgDNS7kn9tV8fAucIYUBuGojcaLiz7v+P63Lmtm0Xeji8B/8tYKddALXxJLpwIeBmUN3u64C4YkRA==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.12.1.tgz", + "integrity": "sha512-4EUH9tQHnMmEgzW/MdAP0KIfa1T9AF+htl0ffe2n5vb2EKn9y2co8ccpgWko6S52Jy1PQZKwRnx5/KkYjtd9MQ==", "dev": true, "license": "MIT", "optional": true, @@ -14327,9 +13733,9 @@ } }, "node_modules/msgpackr-extract": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-3.0.3.tgz", - "integrity": "sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-3.0.4.tgz", + "integrity": "sha512-4kmO/MdyUIkLIvTPr8VHLil4AtoKIoniWPIEk5+CDy0xnWC84azhSFmuJ7PxZdsYtiP5kEeQsORAVIeMgxT+Hw==", "dev": true, "hasInstallScript": true, "license": "MIT", @@ -14341,12 +13747,12 @@ "download-msgpackr-prebuilds": "bin/download-prebuilds.js" }, "optionalDependencies": { - "@msgpackr-extract/msgpackr-extract-darwin-arm64": "3.0.3", - "@msgpackr-extract/msgpackr-extract-darwin-x64": "3.0.3", - "@msgpackr-extract/msgpackr-extract-linux-arm": "3.0.3", - "@msgpackr-extract/msgpackr-extract-linux-arm64": "3.0.3", - "@msgpackr-extract/msgpackr-extract-linux-x64": "3.0.3", - "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.3" + "@msgpackr-extract/msgpackr-extract-darwin-arm64": "3.0.4", + "@msgpackr-extract/msgpackr-extract-darwin-x64": "3.0.4", + "@msgpackr-extract/msgpackr-extract-linux-arm": "3.0.4", + "@msgpackr-extract/msgpackr-extract-linux-arm64": "3.0.4", + "@msgpackr-extract/msgpackr-extract-linux-x64": "3.0.4", + "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.4" } }, "node_modules/multicast-dns": { @@ -14374,9 +13780,9 @@ } }, "node_modules/nanoid": { - "version": "3.3.11", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", - "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "version": "3.3.16", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.16.tgz", + "integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==", "dev": true, "funding": [ { @@ -14400,9 +13806,9 @@ "license": "MIT" }, "node_modules/needle": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/needle/-/needle-3.3.1.tgz", - "integrity": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-3.5.0.tgz", + "integrity": "sha512-jaQyPKKk2YokHrEg+vFDYxXIHTCBgiZwSHOoVx/8V3GIBS8/VN6NdVRmg8q1ERtPkMvmOvebsgga4sAj5hls/w==", "dev": true, "license": "MIT", "optional": true, @@ -14484,39 +13890,29 @@ "license": "MIT", "optional": true }, - "node_modules/node-forge": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.3.tgz", - "integrity": "sha512-rLvcdSyRCyouf6jcOIPe/BgwG/d7hKjzMKOas33/pHEr6gbq18IK9zV7DiPvzsz0oBJPme6qr6H6kGZuI9/DZg==", - "dev": true, - "license": "(BSD-3-Clause OR GPL-2.0)", - "engines": { - "node": ">= 6.13.0" - } - }, "node_modules/node-gyp": { - "version": "11.5.0", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-11.5.0.tgz", - "integrity": "sha512-ra7Kvlhxn5V9Slyus0ygMa2h+UqExPqUIkfk7Pc8QTLT956JLSy51uWFwHtIYy0vI8cB4BDhc/S03+880My/LQ==", + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-12.4.0.tgz", + "integrity": "sha512-OMcPNvqTCFUnNaBlmdgq+lfNqY7gTiSmNRDjY3uAXRyudeKZEZxu3CLtjMQrx4zZxCX2b/mpNqTtwuCJgXhHkw==", "dev": true, "license": "MIT", "dependencies": { "env-paths": "^2.2.0", "exponential-backoff": "^3.1.1", "graceful-fs": "^4.2.6", - "make-fetch-happen": "^14.0.3", - "nopt": "^8.0.0", - "proc-log": "^5.0.0", + "nopt": "^9.0.0", + "proc-log": "^6.0.0", "semver": "^7.3.5", - "tar": "^7.4.3", + "tar": "^7.5.4", "tinyglobby": "^0.2.12", - "which": "^5.0.0" + "undici": "^6.25.0", + "which": "^6.0.0" }, "bin": { "node-gyp": "bin/node-gyp.js" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/node-gyp-build-optional-packages": { @@ -14535,87 +13931,63 @@ "node-gyp-build-optional-packages-test": "build-test.js" } }, - "node_modules/node-gyp/node_modules/chownr": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", - "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", + "node_modules/node-gyp/node_modules/isexe": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-4.0.0.tgz", + "integrity": "sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==", "dev": true, "license": "BlueOak-1.0.0", "engines": { - "node": ">=18" + "node": ">=20" } }, - "node_modules/node-gyp/node_modules/isexe": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", - "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "node_modules/node-gyp/node_modules/proc-log": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz", + "integrity": "sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==", "dev": true, "license": "ISC", "engines": { - "node": ">=16" - } - }, - "node_modules/node-gyp/node_modules/tar": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.5.tgz", - "integrity": "sha512-ocjwSUBo2V8ExKxy9FH6iROIsK60OCW//h14MFYpivNSYIj7ntgm35ijGT82Jl//xwbxBhIYXkfAovjtVm9nrA==", - "dev": true, - "license": "BlueOak-1.0.0", - "dependencies": { - "@isaacs/fs-minipass": "^4.0.0", - "chownr": "^3.0.0", - "minipass": "^7.1.2", - "minizlib": "^3.1.0", - "yallist": "^5.0.0" - }, - "engines": { - "node": ">=18" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/node-gyp/node_modules/which": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-5.0.0.tgz", - "integrity": "sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-6.0.1.tgz", + "integrity": "sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==", "dev": true, "license": "ISC", "dependencies": { - "isexe": "^3.1.1" + "isexe": "^4.0.0" }, "bin": { "node-which": "bin/which.js" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, - "node_modules/node-gyp/node_modules/yallist": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", - "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", + "node_modules/node-releases": { + "version": "2.0.51", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.51.tgz", + "integrity": "sha512-wRNIrw4DmVLKQlbgOMdkMx27Wrpzes2hh5Jtbi2bjPd+4wJstWIqP5A+lscnqbm0xxmT5Bpg8Lec5ItEBwx6BQ==", "dev": true, - "license": "BlueOak-1.0.0", + "license": "MIT", "engines": { "node": ">=18" } }, - "node_modules/node-releases": { - "version": "2.0.27", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", - "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", - "dev": true, - "license": "MIT" - }, "node_modules/nodemon": { - "version": "3.1.11", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.11.tgz", - "integrity": "sha512-is96t8F/1//UHAjNPHpbsNY46ELPpftGUoSVNXwUfMk/qdjSylYrWSu1XavVTBOn526kFiOR733ATgNBCQyH0g==", + "version": "3.1.14", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.14.tgz", + "integrity": "sha512-jakjZi93UtB3jHMWsXL68FXSAosbLfY0In5gtKq3niLSkrWznrVBzXFNOEMJUfc9+Ke7SHWoAZsiMkNP3vq6Jw==", "dev": true, "license": "MIT", "dependencies": { "chokidar": "^3.5.2", "debug": "^4", "ignore-by-default": "^1.0.1", - "minimatch": "^3.1.2", + "minimatch": "^10.2.1", "pstree.remy": "^1.1.8", "semver": "^7.5.3", "simple-update-notifier": "^2.0.0", @@ -14634,6 +14006,29 @@ "url": "https://opencollective.com/nodemon" } }, + "node_modules/nodemon/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/nodemon/node_modules/brace-expansion": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.8.tgz", + "integrity": "sha512-JZyDyq3D4AUifKTPOB7DELf6XsB3WdPuNxCtob1vFXPsSXhdAiHBWJ/tJ8HAc9aH84BK+5JFZLNkJKx3G9kzQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "20 || >=22" + } + }, "node_modules/nodemon/node_modules/chokidar": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", @@ -14682,10 +14077,26 @@ "node": ">=4" } }, + "node_modules/nodemon/node_modules/minimatch": { + "version": "10.2.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.6.tgz", + "integrity": "sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "brace-expansion": "^5.0.8" + }, + "engines": { + "node": "18 || 20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/nodemon/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", "dev": true, "license": "MIT", "engines": { @@ -14722,19 +14133,19 @@ } }, "node_modules/nopt": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-8.1.0.tgz", - "integrity": "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-9.0.0.tgz", + "integrity": "sha512-Zhq3a+yFKrYwSBluL4H9XP3m3y5uvQkB/09CwDruCiRmR/UJYnn9W4R48ry0uGC70aeTPKLynBtscP9efFFcPw==", "dev": true, "license": "ISC", "dependencies": { - "abbrev": "^3.0.0" + "abbrev": "^4.0.0" }, "bin": { "nopt": "bin/nopt.js" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/normalize-path": { @@ -14758,39 +14169,39 @@ } }, "node_modules/npm-bundled": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-4.0.0.tgz", - "integrity": "sha512-IxaQZDMsqfQ2Lz37VvyyEtKLe8FsRZuysmedy/N06TU1RyVppYKXrO4xIhR0F+7ubIBox6Q7nir6fQI3ej39iA==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-5.0.0.tgz", + "integrity": "sha512-JLSpbzh6UUXIEoqPsYBvVNVmyrjVZ1fzEFbqxKkTJQkWBO3xFzFT+KDnSKQWwOQNbuWRwt5LSD6HOTLGIWzfrw==", "dev": true, "license": "ISC", "dependencies": { - "npm-normalize-package-bin": "^4.0.0" + "npm-normalize-package-bin": "^5.0.0" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/npm-install-checks": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-7.1.2.tgz", - "integrity": "sha512-z9HJBCYw9Zr8BqXcllKIs5nI+QggAImbBdHphOzVYrz2CB4iQ6FzWyKmlqDZua+51nAu7FcemlbTc9VgQN5XDQ==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-8.0.0.tgz", + "integrity": "sha512-ScAUdMpyzkbpxoNekQ3tNRdFI8SJ86wgKZSQZdUxT+bj0wVFpsEMWnkXP0twVe1gJyNF5apBWDJhhIbgrIViRA==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "semver": "^7.1.1" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/npm-normalize-package-bin": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-4.0.0.tgz", - "integrity": "sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-5.0.0.tgz", + "integrity": "sha512-CJi3OS4JLsNMmr2u07OJlhcrPxCeOeP/4xq67aWNai6TNWWbTrlNDgl8NcFKVlcBKp18GPj+EzbNIgrBfZhsag==", "dev": true, "license": "ISC", "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/npm-package-arg": { @@ -14810,9 +14221,9 @@ } }, "node_modules/npm-packlist": { - "version": "10.0.3", - "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-10.0.3.tgz", - "integrity": "sha512-zPukTwJMOu5X5uvm0fztwS5Zxyvmk38H/LfidkOMt3gbZVCyro2cD/ETzwzVPcWZA3JOyPznfUN/nkyFiyUbxg==", + "version": "10.0.4", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-10.0.4.tgz", + "integrity": "sha512-uMW73iajD8hiH4ZBxEV3HC+eTnppIqwakjOYuvgddnalIw2lJguKviK1pcUJDlIWm1wSJkchpDZDSVVsZEYRng==", "dev": true, "license": "ISC", "dependencies": { @@ -14834,111 +14245,49 @@ } }, "node_modules/npm-pick-manifest": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-10.0.0.tgz", - "integrity": "sha512-r4fFa4FqYY8xaM7fHecQ9Z2nE9hgNfJR+EmoKv0+chvzWkBcORX3r0FpTByP+CbOVJDladMXnPQGVN8PBLGuTQ==", + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-11.0.3.tgz", + "integrity": "sha512-buzyCfeoGY/PxKqmBqn1IUJrZnUi1VVJTdSSRPGI60tJdUhUoSQFhs0zycJokDdOznQentgrpf8LayEHyyYlqQ==", "dev": true, "license": "ISC", "dependencies": { - "npm-install-checks": "^7.1.0", - "npm-normalize-package-bin": "^4.0.0", - "npm-package-arg": "^12.0.0", + "npm-install-checks": "^8.0.0", + "npm-normalize-package-bin": "^5.0.0", + "npm-package-arg": "^13.0.0", "semver": "^7.3.5" }, "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm-pick-manifest/node_modules/hosted-git-info": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-8.1.0.tgz", - "integrity": "sha512-Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw==", - "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^10.0.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm-pick-manifest/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/npm-pick-manifest/node_modules/npm-package-arg": { - "version": "12.0.2", - "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-12.0.2.tgz", - "integrity": "sha512-f1NpFjNI9O4VbKMOlA5QoBq/vSQPORHcTZ2feJpFkTHJ9eQkdlmZEKSjcAhxTGInC7RlEyScT9ui67NaOsjFWA==", - "dev": true, - "license": "ISC", - "dependencies": { - "hosted-git-info": "^8.0.0", - "proc-log": "^5.0.0", - "semver": "^7.3.5", - "validate-npm-package-name": "^6.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/npm-registry-fetch": { - "version": "18.0.2", - "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-18.0.2.tgz", - "integrity": "sha512-LeVMZBBVy+oQb5R6FDV9OlJCcWDU+al10oKpe+nsvcHnG24Z3uM3SvJYKfGJlfGjVU8v9liejCrUR/M5HO5NEQ==", + "version": "19.1.1", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-19.1.1.tgz", + "integrity": "sha512-TakBap6OM1w0H73VZVDf44iFXsOS3h+L4wVMXmbWOQroZgFhMch0juN6XSzBNlD965yIKvWg2dfu7NSiaYLxtw==", "dev": true, "license": "ISC", "dependencies": { - "@npmcli/redact": "^3.0.0", + "@npmcli/redact": "^4.0.0", "jsonparse": "^1.3.1", - "make-fetch-happen": "^14.0.0", + "make-fetch-happen": "^15.0.0", "minipass": "^7.0.2", - "minipass-fetch": "^4.0.0", + "minipass-fetch": "^5.0.0", "minizlib": "^3.0.1", - "npm-package-arg": "^12.0.0", - "proc-log": "^5.0.0" + "npm-package-arg": "^13.0.0", + "proc-log": "^6.0.0" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, - "node_modules/npm-registry-fetch/node_modules/hosted-git-info": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-8.1.0.tgz", - "integrity": "sha512-Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw==", + "node_modules/npm-registry-fetch/node_modules/proc-log": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz", + "integrity": "sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==", "dev": true, "license": "ISC", - "dependencies": { - "lru-cache": "^10.0.1" - }, "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm-registry-fetch/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/npm-registry-fetch/node_modules/npm-package-arg": { - "version": "12.0.2", - "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-12.0.2.tgz", - "integrity": "sha512-f1NpFjNI9O4VbKMOlA5QoBq/vSQPORHcTZ2feJpFkTHJ9eQkdlmZEKSjcAhxTGInC7RlEyScT9ui67NaOsjFWA==", - "dev": true, - "license": "ISC", - "dependencies": { - "hosted-git-info": "^8.0.0", - "proc-log": "^5.0.0", - "semver": "^7.3.5", - "validate-npm-package-name": "^6.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/nth-check": { @@ -14954,15 +14303,6 @@ "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "license": "Apache-2.0", - "engines": { - "node": "*" - } - }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", @@ -15107,16 +14447,6 @@ "license": "MIT", "optional": true }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/otplib": { "version": "12.0.1", "resolved": "https://registry.npmjs.org/otplib/-/otplib-12.0.1.tgz", @@ -15161,9 +14491,9 @@ } }, "node_modules/p-map": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.4.tgz", - "integrity": "sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.5.tgz", + "integrity": "sha512-e8vJF4XdVkzqqSHguEMz41mQO1wKwxKm5ENrUJQUu9kLDCtn83cxbyHZcszr4QC5zEA7WffRRC4gsTecC7J9oA==", "dev": true, "license": "MIT", "engines": { @@ -15191,16 +14521,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-retry/node_modules/retry": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, "node_modules/p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", @@ -15210,37 +14530,30 @@ "node": ">=6" } }, - "node_modules/package-json-from-dist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", - "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", - "dev": true, - "license": "BlueOak-1.0.0" - }, "node_modules/pacote": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/pacote/-/pacote-21.0.0.tgz", - "integrity": "sha512-lcqexq73AMv6QNLo7SOpz0JJoaGdS3rBFgF122NZVl1bApo2mfu+XzUBU/X/XsiJu+iUmKpekRayqQYAs+PhkA==", + "version": "21.5.1", + "resolved": "https://registry.npmjs.org/pacote/-/pacote-21.5.1.tgz", + "integrity": "sha512-KvcJ9iy3crysCsgqc4+PknH/w6jkrp8JN36mpZBPwNaDRwTfMZD37YzRazNstiZUOhuF5pno9f78n9mEJBavwg==", "dev": true, "license": "ISC", "dependencies": { - "@npmcli/git": "^6.0.0", - "@npmcli/installed-package-contents": "^3.0.0", - "@npmcli/package-json": "^6.0.0", - "@npmcli/promise-spawn": "^8.0.0", - "@npmcli/run-script": "^9.0.0", - "cacache": "^19.0.0", + "@gar/promise-retry": "^1.0.0", + "@npmcli/git": "^7.0.0", + "@npmcli/installed-package-contents": "^4.0.0", + "@npmcli/package-json": "^7.0.0", + "@npmcli/promise-spawn": "^9.0.0", + "@npmcli/run-script": "^10.0.0", + "cacache": "^20.0.0", "fs-minipass": "^3.0.0", "minipass": "^7.0.2", - "npm-package-arg": "^12.0.0", - "npm-packlist": "^10.0.0", - "npm-pick-manifest": "^10.0.0", - "npm-registry-fetch": "^18.0.0", - "proc-log": "^5.0.0", - "promise-retry": "^2.0.1", - "sigstore": "^3.0.0", - "ssri": "^12.0.0", - "tar": "^6.1.11" + "npm-package-arg": "^13.0.0", + "npm-packlist": "^10.0.1", + "npm-pick-manifest": "^11.0.1", + "npm-registry-fetch": "^19.0.0", + "proc-log": "^6.0.0", + "sigstore": "^4.0.0", + "ssri": "^13.0.0", + "tar": "^7.4.3" }, "bin": { "pacote": "bin/index.js" @@ -15249,47 +14562,20 @@ "node": "^20.17.0 || >=22.9.0" } }, - "node_modules/pacote/node_modules/hosted-git-info": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-8.1.0.tgz", - "integrity": "sha512-Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw==", + "node_modules/pacote/node_modules/proc-log": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz", + "integrity": "sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==", "dev": true, "license": "ISC", - "dependencies": { - "lru-cache": "^10.0.1" - }, "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/pacote/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/pacote/node_modules/npm-package-arg": { - "version": "12.0.2", - "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-12.0.2.tgz", - "integrity": "sha512-f1NpFjNI9O4VbKMOlA5QoBq/vSQPORHcTZ2feJpFkTHJ9eQkdlmZEKSjcAhxTGInC7RlEyScT9ui67NaOsjFWA==", - "dev": true, - "license": "ISC", - "dependencies": { - "hosted-git-info": "^8.0.0", - "proc-log": "^5.0.0", - "semver": "^7.3.5", - "validate-npm-package-name": "^6.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/pako": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", - "dev": true, "license": "(MIT AND Zlib)" }, "node_modules/parent-module": { @@ -15305,22 +14591,6 @@ "node": ">=6" } }, - "node_modules/parse-asn1": { - "version": "5.1.9", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.9.tgz", - "integrity": "sha512-fIYNuZ/HastSb80baGOuPRo1O9cf4baWw5WsAp7dBuUzeTD/BoaG8sVTdlPFksBE2lF21dN+A1AnrpIjSWqHHg==", - "license": "ISC", - "dependencies": { - "asn1.js": "^4.10.1", - "browserify-aes": "^1.2.0", - "evp_bytestokey": "^1.0.3", - "pbkdf2": "^3.1.5", - "safe-buffer": "^5.2.1" - }, - "engines": { - "node": ">= 0.10" - } - }, "node_modules/parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", @@ -15358,13 +14628,13 @@ } }, "node_modules/parse5": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-8.0.0.tgz", - "integrity": "sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-8.0.1.tgz", + "integrity": "sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw==", "dev": true, "license": "MIT", "dependencies": { - "entities": "^6.0.0" + "entities": "^8.0.0" }, "funding": { "url": "https://github.com/inikulin/parse5?sponsor=1" @@ -15412,13 +14682,13 @@ } }, "node_modules/parse5/node_modules/entities": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", - "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-8.0.0.tgz", + "integrity": "sha512-zwfzJecQ/Uej6tusMqwAqU/6KL2XaB2VZ2Jg54Je6ahNBGNH6Ek6g3jjNCF0fG9EWQKGZNddNjU5F1ZQn/sBnA==", "dev": true, "license": "BSD-2-Clause", "engines": { - "node": ">=0.12" + "node": ">=20.19.0" }, "funding": { "url": "https://github.com/fb55/entities?sponsor=1" @@ -15452,13 +14722,6 @@ "node": ">=0.10.0" } }, - "node_modules/path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", - "dev": true, - "license": "(WTFPL OR MIT)" - }, "node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", @@ -15477,33 +14740,36 @@ "license": "MIT" }, "node_modules/path-scurry": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", - "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.2.tgz", + "integrity": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==", "dev": true, "license": "BlueOak-1.0.0", "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" }, "engines": { - "node": ">=16 || 14 >=14.18" + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "version": "11.5.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.2.tgz", + "integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==", "dev": true, - "license": "ISC" + "license": "BlueOak-1.0.0", + "engines": { + "node": "20 || >=22" + } }, "node_modules/path-to-regexp": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.3.0.tgz", - "integrity": "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.4.2.tgz", + "integrity": "sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==", "license": "MIT", "funding": { "type": "opencollective", @@ -15520,44 +14786,28 @@ "node": ">=8" } }, - "node_modules/pbkdf2": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.5.tgz", - "integrity": "sha512-Q3CG/cYvCO1ye4QKkuH7EXxs3VC/rI1/trd+qX2+PolbaKG0H+bgcZzrTt96mMyRtejk+JMCiLUn3y29W8qmFQ==", - "license": "MIT", - "dependencies": { - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "ripemd160": "^2.0.3", - "safe-buffer": "^5.2.1", - "sha.js": "^2.4.12", - "to-buffer": "^1.2.1" - }, - "engines": { - "node": ">= 0.10" - } - }, "node_modules/pdfkit": { - "version": "0.17.2", - "resolved": "https://registry.npmjs.org/pdfkit/-/pdfkit-0.17.2.tgz", - "integrity": "sha512-UnwF5fXy08f0dnp4jchFYAROKMNTaPqb/xgR8GtCzIcqoTnbOqtp3bwKvO4688oHI6vzEEs8Q6vqqEnC5IUELw==", + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/pdfkit/-/pdfkit-0.19.1.tgz", + "integrity": "sha512-6Gzk+wDwTs4VSxsR5rCMTnIl5nlmkye1oWB0l2hDB1EX6ZNSIBroKQEv+2+fPPn+stVjyqzmsqRJVDfB9fo5DA==", "license": "MIT", "dependencies": { - "crypto-js": "^4.2.0", + "@noble/ciphers": "^1.0.0", + "@noble/hashes": "^1.6.0", "fontkit": "^2.0.4", - "jpeg-exif": "^1.1.4", + "js-md5": "^0.8.3", "linebreak": "^1.1.0", - "png-js": "^1.0.0" + "png-js": "^1.1.0" } }, "node_modules/pdfmake": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/pdfmake/-/pdfmake-0.3.2.tgz", - "integrity": "sha512-9I0wBLSpVd9viay0Wkpp0sBoawNOZQd4NKXe+hT8wV/cMH84/hw2FCOItb0/Po5HyEZjipibZsAGutkCULVM9A==", + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/pdfmake/-/pdfmake-0.3.11.tgz", + "integrity": "sha512-Uc49J9hUMyuqJk+U+PxlpBpPr96A4HOOfesGx609EPr2ue82+5/Smq/KTAkEqh0/jUGSi1fumvqZ5yAWijJTJg==", "license": "MIT", "dependencies": { "linebreak": "^1.1.0", - "pdfkit": "^0.17.2", + "pdfkit": "^0.19.1", "xmldoc": "^2.0.3" }, "engines": { @@ -15570,12 +14820,6 @@ "integrity": "sha512-dzalfutyP3e/FOpdlhVryN4AJ5XDVauVWxybSkLZmakFE2sS3y3pc4JnSprw8tGmHvkaG5Edr5T7LBTZ+WWU2g==", "license": "MIT" }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", - "license": "MIT" - }, "node_modules/picocolors": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", @@ -15584,9 +14828,9 @@ "license": "ISC" }, "node_modules/picomatch": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", - "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", "dev": true, "license": "MIT", "engines": { @@ -15596,43 +14840,10 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", - "dev": true, - "license": "MIT", - "dependencies": { - "pinkie": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/piscina": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/piscina/-/piscina-5.1.3.tgz", - "integrity": "sha512-0u3N7H4+hbr40KjuVn2uNhOcthu/9usKhnw5vT3J7ply79v3D3M8naI00el9Klcy16x557VsEkkUQaHCWFXC/g==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/piscina/-/piscina-5.2.0.tgz", + "integrity": "sha512-DszUCKeVN/5G5QKo6jAVHL8fmKnkJvQ0ACiVgY7YGCq3TUB2oznAOayvZPIAdEThvhczkXR+qm3IHsNXpFCYfA==", "dev": true, "license": "MIT", "engines": { @@ -15652,10 +14863,44 @@ "node": ">=16.20.0" } }, + "node_modules/pkijs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/pkijs/-/pkijs-3.4.0.tgz", + "integrity": "sha512-emEcLuomt2j03vxD54giVB4SxTjnsqkU692xZOZXHDVoYyypEm+b3jpiTcc+Cf+myooc+/Ly0z01jqeNHVgJGw==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@noble/hashes": "1.4.0", + "asn1js": "^3.0.6", + "bytestreamjs": "^2.0.1", + "pvtsutils": "^1.3.6", + "pvutils": "^1.1.3", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/pkijs/node_modules/@noble/hashes": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz", + "integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, "node_modules/png-js": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/png-js/-/png-js-1.0.0.tgz", - "integrity": "sha512-k+YsbhpA9e+EFfKjTCH3VW6aoKlyNYI6NYdTfDL4CIvFnvsuO84ttonmZE7rc+v23SLTH8XX+5w/Ak9v0xGY4g==" + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/png-js/-/png-js-1.1.0.tgz", + "integrity": "sha512-PM/uYGzGdNSzqeOgly68+6wKQDL1SY0a/N+OEa/+br6LnHWOAJB0Npiamnodfq3jd2LS/i2fMeOKSAILjA+m5Q==", + "dependencies": { + "browserify-zlib": "^0.2.0" + } }, "node_modules/pngjs": { "version": "5.0.0", @@ -15666,19 +14911,10 @@ "node": ">=10.13.0" } }, - "node_modules/possible-typed-array-names": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", - "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, "node_modules/postcss": { - "version": "8.5.6", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", - "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "version": "8.5.12", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.12.tgz", + "integrity": "sha512-W62t/Se6rA0Az3DfCL0AqJwXuKwBeYg6nOaIgzP+xZ7N5BFCI7DYi1qs6ygUYT6rvfi6t9k65UMLJC+PHZpDAA==", "dev": true, "funding": [ { @@ -15807,9 +15043,9 @@ } }, "node_modules/postcss-selector-parser": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", - "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz", + "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==", "dev": true, "license": "MIT", "dependencies": { @@ -15860,218 +15096,9 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "license": "MIT" - }, - "node_modules/promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", - "dev": true, - "license": "MIT", - "dependencies": { - "err-code": "^2.0.2", - "retry": "^0.12.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/protractor": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/protractor/-/protractor-7.0.0.tgz", - "integrity": "sha512-UqkFjivi4GcvUQYzqGYNe0mLzfn5jiLmO8w9nMhQoJRLhy2grJonpga2IWhI6yJO30LibWXJJtA4MOIZD2GgZw==", - "deprecated": "We have news to share - Protractor is deprecated and will reach end-of-life by Summer 2023. To learn more and find out about other options please refer to this post on the Angular blog. Thank you for using and contributing to Protractor. https://goo.gle/state-of-e2e-in-angular", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/q": "^0.0.32", - "@types/selenium-webdriver": "^3.0.0", - "blocking-proxy": "^1.0.0", - "browserstack": "^1.5.1", - "chalk": "^1.1.3", - "glob": "^7.0.3", - "jasmine": "2.8.0", - "jasminewd2": "^2.1.0", - "q": "1.4.1", - "saucelabs": "^1.5.0", - "selenium-webdriver": "3.6.0", - "source-map-support": "~0.4.0", - "webdriver-js-extender": "2.1.0", - "webdriver-manager": "^12.1.7", - "yargs": "^15.3.1" - }, - "bin": { - "protractor": "bin/protractor", - "webdriver-manager": "bin/webdriver-manager" - }, - "engines": { - "node": ">=10.13.x" - } - }, - "node_modules/protractor/node_modules/cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" - } - }, - "node_modules/protractor/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true, "license": "MIT" }, - "node_modules/protractor/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/protractor/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/protractor/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/protractor/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/protractor/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/protractor/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/protractor/node_modules/source-map-support": { - "version": "0.4.18", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", - "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", - "dev": true, - "license": "MIT", - "dependencies": { - "source-map": "^0.5.6" - } - }, - "node_modules/protractor/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/protractor/node_modules/y18n": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/protractor/node_modules/yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", - "dev": true, - "license": "MIT", - "dependencies": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/protractor/node_modules/yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", @@ -16086,10 +15113,13 @@ } }, "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "license": "MIT" + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz", + "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==", + "license": "MIT", + "engines": { + "node": ">=10" + } }, "node_modules/prr": { "version": "1.0.1", @@ -16099,27 +15129,6 @@ "license": "MIT", "optional": true }, - "node_modules/psl": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz", - "integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==", - "license": "MIT", - "dependencies": { - "punycode": "^2.3.1" - }, - "funding": { - "url": "https://github.com/sponsors/lupomontero" - } - }, - "node_modules/psl/node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/pstree.remy": { "version": "1.1.8", "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", @@ -16127,26 +15136,6 @@ "dev": true, "license": "MIT" }, - "node_modules/public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "license": "MIT", - "dependencies": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/public-encrypt/node_modules/bn.js": { - "version": "4.12.2", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz", - "integrity": "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==", - "license": "MIT" - }, "node_modules/punycode": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", @@ -16154,16 +15143,24 @@ "dev": true, "license": "MIT" }, - "node_modules/q": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.4.1.tgz", - "integrity": "sha512-/CdEdaw49VZVmyIDGUQKDDT53c7qBkO6g5CefWz91Ae+l4+cRtcDYwMTXh6me4O8TMldeGHG3N2Bl84V78Ywbg==", - "deprecated": "You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.\n\n(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)", + "node_modules/pvtsutils": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/pvtsutils/-/pvtsutils-1.3.6.tgz", + "integrity": "sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "^2.8.1" + } + }, + "node_modules/pvutils": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/pvutils/-/pvutils-1.1.5.tgz", + "integrity": "sha512-KTqnxsgGiQ6ZAzZCVlJH5eOjSnvlyEgx1m8bkRJfOhmGRqfo5KLvmAlACQkrjEtOQ4B7wF9TdSLIs9O90MX9xA==", "dev": true, "license": "MIT", "engines": { - "node": ">=0.6.0", - "teleport": ">=0.2.0" + "node": ">=16.0.0" } }, "node_modules/qjobs": { @@ -16327,12 +15324,13 @@ } }, "node_modules/qs": { - "version": "6.14.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.1.tgz", - "integrity": "sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==", + "version": "6.15.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.3.tgz", + "integrity": "sha512-O9gl3zCl5h5blw1KGUzQKhA5oUXSl8rwUIM5o0S3nCXMliSvy5Dzx7/DJcI+SwgICv+IneSZwhBh1oSyEHA71A==", "license": "BSD-3-Clause", "dependencies": { - "side-channel": "^1.1.0" + "es-define-property": "^1.0.1", + "side-channel": "^1.1.1" }, "engines": { "node": ">=0.6" @@ -16371,32 +15369,17 @@ "node": ">= 0.8" } }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "license": "MIT", - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "license": "MIT", - "dependencies": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.3.0.tgz", + "integrity": "sha512-hek2mFQpPuI4E1BBKrSto+BU3e3x4xuarsbiwr3+lf7p44juvFMV0XFWQAP3xUyqXA4RrXLIoaSUGbSt056ZMw==", "license": "MIT", "engines": { "node": ">= 0.6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/raw-body": { @@ -16453,6 +15436,7 @@ "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", @@ -16468,6 +15452,7 @@ "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, "license": "MIT" }, "node_modules/readdirp": { @@ -16544,9 +15529,9 @@ "license": "MIT" }, "node_modules/regjsparser": { - "version": "0.13.0", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.13.0.tgz", - "integrity": "sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==", + "version": "0.13.2", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.13.2.tgz", + "integrity": "sha512-NgRBy2Nx/bE+9F27nVHnqcN5HjyLmecqsqx2PJHu3/IEtADD4WuxuXIVExD5PoSDFVrl78dOonfcOe5O+5nbzQ==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -16556,116 +15541,6 @@ "regjsparser": "bin/parser" } }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", - "license": "Apache-2.0", - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/request-promise": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/request-promise/-/request-promise-4.2.6.tgz", - "integrity": "sha512-HCHI3DJJUakkOr8fNoCc73E5nU5bqITjOYFMDrKHYOXWXrgD/SBaC7LjwuPymUprRyuF06UK7hd/lMHkmUXglQ==", - "deprecated": "request-promise has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142", - "license": "ISC", - "dependencies": { - "bluebird": "^3.5.0", - "request-promise-core": "1.1.4", - "stealthy-require": "^1.1.1", - "tough-cookie": "^2.3.3" - }, - "engines": { - "node": ">=0.10.0" - }, - "peerDependencies": { - "request": "^2.34" - } - }, - "node_modules/request-promise-core": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", - "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", - "license": "ISC", - "dependencies": { - "lodash": "^4.17.19" - }, - "engines": { - "node": ">=0.10.0" - }, - "peerDependencies": { - "request": "^2.34" - } - }, - "node_modules/request/node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "license": "MIT", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" - } - }, - "node_modules/request/node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/request/node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "license": "MIT", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/request/node_modules/qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.6" - } - }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -16801,9 +15676,9 @@ "license": "MIT" }, "node_modules/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", "dev": true, "license": "MIT", "engines": { @@ -16845,40 +15720,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/ripemd160": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.3.tgz", - "integrity": "sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA==", - "license": "MIT", - "dependencies": { - "hash-base": "^3.1.2", - "inherits": "^2.0.4" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/ripemd160/node_modules/hash-base": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.2.tgz", - "integrity": "sha512-Bb33KbowVTIj5s7Ked1OsqHUeCpz//tPwR+E2zJgJKo9Z5XolZ9b6bdUgjmYlwnWhoOQKoTd1TYToZGn5mAYOg==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^2.3.8", - "safe-buffer": "^5.2.1", - "to-buffer": "^1.2.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/rndm": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/rndm/-/rndm-1.2.0.tgz", - "integrity": "sha512-fJhQQI5tLrQvYIYFpOnFinzv9dwmR7hRnUz1XqP3OJ1jIweTNOd6aTO4jwQSgcBSFUB+/KHJxuGneime+FdzOw==", - "license": "MIT" - }, "node_modules/roboto-fontface": { "version": "0.10.0", "resolved": "https://registry.npmjs.org/roboto-fontface/-/roboto-fontface-0.10.0.tgz", @@ -16887,9 +15728,9 @@ "license": "Apache-2.0" }, "node_modules/rollup": { - "version": "4.52.3", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.52.3.tgz", - "integrity": "sha512-RIDh866U8agLgiIcdpB+COKnlCreHJLfIhWC3LVflku5YHfpnsIKigRZeFfMfCc4dVcqNVfQQ5gO/afOck064A==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.59.0.tgz", + "integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==", "dev": true, "license": "MIT", "dependencies": { @@ -16903,31 +15744,41 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.52.3", - "@rollup/rollup-android-arm64": "4.52.3", - "@rollup/rollup-darwin-arm64": "4.52.3", - "@rollup/rollup-darwin-x64": "4.52.3", - "@rollup/rollup-freebsd-arm64": "4.52.3", - "@rollup/rollup-freebsd-x64": "4.52.3", - "@rollup/rollup-linux-arm-gnueabihf": "4.52.3", - "@rollup/rollup-linux-arm-musleabihf": "4.52.3", - "@rollup/rollup-linux-arm64-gnu": "4.52.3", - "@rollup/rollup-linux-arm64-musl": "4.52.3", - "@rollup/rollup-linux-loong64-gnu": "4.52.3", - "@rollup/rollup-linux-ppc64-gnu": "4.52.3", - "@rollup/rollup-linux-riscv64-gnu": "4.52.3", - "@rollup/rollup-linux-riscv64-musl": "4.52.3", - "@rollup/rollup-linux-s390x-gnu": "4.52.3", - "@rollup/rollup-linux-x64-gnu": "4.52.3", - "@rollup/rollup-linux-x64-musl": "4.52.3", - "@rollup/rollup-openharmony-arm64": "4.52.3", - "@rollup/rollup-win32-arm64-msvc": "4.52.3", - "@rollup/rollup-win32-ia32-msvc": "4.52.3", - "@rollup/rollup-win32-x64-gnu": "4.52.3", - "@rollup/rollup-win32-x64-msvc": "4.52.3", + "@rollup/rollup-android-arm-eabi": "4.59.0", + "@rollup/rollup-android-arm64": "4.59.0", + "@rollup/rollup-darwin-arm64": "4.59.0", + "@rollup/rollup-darwin-x64": "4.59.0", + "@rollup/rollup-freebsd-arm64": "4.59.0", + "@rollup/rollup-freebsd-x64": "4.59.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.59.0", + "@rollup/rollup-linux-arm-musleabihf": "4.59.0", + "@rollup/rollup-linux-arm64-gnu": "4.59.0", + "@rollup/rollup-linux-arm64-musl": "4.59.0", + "@rollup/rollup-linux-loong64-gnu": "4.59.0", + "@rollup/rollup-linux-loong64-musl": "4.59.0", + "@rollup/rollup-linux-ppc64-gnu": "4.59.0", + "@rollup/rollup-linux-ppc64-musl": "4.59.0", + "@rollup/rollup-linux-riscv64-gnu": "4.59.0", + "@rollup/rollup-linux-riscv64-musl": "4.59.0", + "@rollup/rollup-linux-s390x-gnu": "4.59.0", + "@rollup/rollup-linux-x64-gnu": "4.59.0", + "@rollup/rollup-linux-x64-musl": "4.59.0", + "@rollup/rollup-openbsd-x64": "4.59.0", + "@rollup/rollup-openharmony-arm64": "4.59.0", + "@rollup/rollup-win32-arm64-msvc": "4.59.0", + "@rollup/rollup-win32-ia32-msvc": "4.59.0", + "@rollup/rollup-win32-x64-gnu": "4.59.0", + "@rollup/rollup-win32-x64-msvc": "4.59.0", "fsevents": "~2.3.2" } }, + "node_modules/rollup/node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, "node_modules/router": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz", @@ -17096,59 +15947,10 @@ } } }, - "node_modules/saucelabs": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/saucelabs/-/saucelabs-1.5.0.tgz", - "integrity": "sha512-jlX3FGdWvYf4Q3LFfFWS1QvPg3IGCGWxIc8QBFdPTbpTJnt/v17FHXYVAn7C8sHf1yUXo2c7yIM0isDryfYtHQ==", - "dev": true, - "dependencies": { - "https-proxy-agent": "^2.2.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/saucelabs/node_modules/agent-base": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz", - "integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==", - "dev": true, - "license": "MIT", - "dependencies": { - "es6-promisify": "^5.0.0" - }, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/saucelabs/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/saucelabs/node_modules/https-proxy-agent": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz", - "integrity": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==", - "dev": true, - "license": "MIT", - "dependencies": { - "agent-base": "^4.3.0", - "debug": "^3.1.0" - }, - "engines": { - "node": ">= 4.5.0" - } - }, "node_modules/sax": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.4.tgz", - "integrity": "sha512-1n3r/tGXO6b6VXMdFT54SHzT9ytu9yr7TaELowdYpMqY/Ao7EnlQGmAQ1+RatX7Tkkdm6hONI2owqNx2aZj5Sw==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.6.0.tgz", + "integrity": "sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==", "license": "BlueOak-1.0.0", "engines": { "node": ">=11.0.0" @@ -17199,61 +16001,18 @@ "dev": true, "license": "MIT" }, - "node_modules/selenium-webdriver": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-3.6.0.tgz", - "integrity": "sha512-WH7Aldse+2P5bbFBO4Gle/nuQOdVwpHMTL6raL3uuBj/vPG07k6uzt3aiahu352ONBr5xXh0hDlM3LhtXPOC4Q==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "jszip": "^3.1.3", - "rimraf": "^2.5.4", - "tmp": "0.0.30", - "xml2js": "^0.4.17" - }, - "engines": { - "node": ">= 6.9.0" - } - }, - "node_modules/selenium-webdriver/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", - "dev": true, - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/selenium-webdriver/node_modules/tmp": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.30.tgz", - "integrity": "sha512-HXdTB7lvMwcb55XFfrTM8CPr/IYREk4hVBFaQ4b/6nInrluSL86hfHm7vu0luYKCfyBZp2trCjpc8caC3vVM3w==", - "dev": true, - "license": "MIT", - "dependencies": { - "os-tmpdir": "~1.0.1" - }, - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/selfsigned": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", - "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-5.5.0.tgz", + "integrity": "sha512-ftnu3TW4+3eBfLRFnDEkzGxSF/10BJBkaLJuBHZX0kiPS7bRdlpZGu6YGt4KngMkdTwJE6MbjavFpqHvqVt+Ew==", "dev": true, "license": "MIT", "dependencies": { - "@types/node-forge": "^1.3.0", - "node-forge": "^1" + "@peculiar/x509": "^1.14.2", + "pkijs": "^3.3.3" }, "engines": { - "node": ">=10" + "node": ">=18" } }, "node_modules/semver": { @@ -17330,32 +16089,36 @@ } }, "node_modules/serialize-javascript": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", - "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-7.0.7.tgz", + "integrity": "sha512-YAy8Od6KV+uuwUuU50np8fGB/Aues6Y0nAhA9y/hId74PlKUcme4pXcBD46NWKr1Q4osN/iseZ17YqO1XfmI8g==", "dev": true, "license": "BSD-3-Clause", - "dependencies": { - "randombytes": "^2.1.0" + "engines": { + "node": ">=20.0.0" } }, "node_modules/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.2.tgz", + "integrity": "sha512-KDj11HScOaLmrPxl70KYNW1PksP4Nb/CLL2yvC+Qd2kHMPEEpfc4Re2e4FOay+bC/+XQl/7zAcWON3JVo5v3KQ==", "dev": true, "license": "MIT", "dependencies": { - "accepts": "~1.3.4", + "accepts": "~1.3.8", "batch": "0.6.1", "debug": "2.6.9", "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.17", - "parseurl": "~1.3.2" + "http-errors": "~1.8.0", + "mime-types": "~2.1.35", + "parseurl": "~1.3.3" }, "engines": { "node": ">= 0.8.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/serve-index/node_modules/accepts": { @@ -17393,28 +16156,22 @@ } }, "node_modules/serve-index/node_modules/http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", "dev": true, "license": "MIT", "dependencies": { "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" }, "engines": { "node": ">= 0.6" } }, - "node_modules/serve-index/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true, - "license": "ISC" - }, "node_modules/serve-index/node_modules/mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", @@ -17456,9 +16213,9 @@ } }, "node_modules/serve-index/node_modules/setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", "dev": true, "license": "ISC" }, @@ -17472,6 +16229,16 @@ "node": ">= 0.6" } }, + "node_modules/serve-index/node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, "node_modules/serve-static": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz", @@ -17497,56 +16264,6 @@ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", "license": "ISC" }, - "node_modules/set-function-length": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - "license": "MIT", - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", - "dev": true, - "license": "MIT" - }, - "node_modules/setprototypeof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", - "license": "ISC" - }, - "node_modules/sha.js": { - "version": "2.4.12", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.12.tgz", - "integrity": "sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==", - "license": "(MIT AND BSD-3-Clause)", - "dependencies": { - "inherits": "^2.0.4", - "safe-buffer": "^5.2.1", - "to-buffer": "^1.2.0" - }, - "bin": { - "sha.js": "bin.js" - }, - "engines": { - "node": ">= 0.10" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/sha256": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/sha256/-/sha256-0.2.0.tgz", @@ -17593,9 +16310,9 @@ } }, "node_modules/shell-quote": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz", - "integrity": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.10.0.tgz", + "integrity": "sha512-w1aiOKwKuRgtwAReIIj89puqg+I7GvX4IbLrvmhXbzQsj1+Zwi4VO3+fa6ZF91TWSjIxoEkKnMeHcLEODK5ZXA==", "dev": true, "license": "MIT", "engines": { @@ -17606,14 +16323,14 @@ } }, "node_modules/side-channel": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", - "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.1.tgz", + "integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==", "license": "MIT", "dependencies": { "es-errors": "^1.3.0", - "object-inspect": "^1.13.3", - "side-channel-list": "^1.0.0", + "object-inspect": "^1.13.4", + "side-channel-list": "^1.0.1", "side-channel-map": "^1.0.1", "side-channel-weakmap": "^1.0.2" }, @@ -17625,13 +16342,13 @@ } }, "node_modules/side-channel-list": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", - "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz", + "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==", "license": "MIT", "dependencies": { "es-errors": "^1.3.0", - "object-inspect": "^1.13.3" + "object-inspect": "^1.13.4" }, "engines": { "node": ">= 0.4" @@ -17691,21 +16408,21 @@ } }, "node_modules/sigstore": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-3.1.0.tgz", - "integrity": "sha512-ZpzWAFHIFqyFE56dXqgX/DkDRZdz+rRcjoIk/RQU4IX0wiCv1l8S7ZrXDHcCc+uaf+6o7w3h2l3g6GYG5TKN9Q==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-4.1.1.tgz", + "integrity": "sha512-endqECJkfhozrXMK5ngu/UAA0xVcVEFdnHJCElGaExypjW+HK5i6zu3NteLoaX/iFbRUbC3+DjttQs0GARr+5w==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@sigstore/bundle": "^3.1.0", - "@sigstore/core": "^2.0.0", - "@sigstore/protobuf-specs": "^0.4.0", - "@sigstore/sign": "^3.1.0", - "@sigstore/tuf": "^3.1.0", - "@sigstore/verify": "^2.1.0" + "@sigstore/bundle": "^4.0.0", + "@sigstore/core": "^3.2.1", + "@sigstore/protobuf-specs": "^0.5.0", + "@sigstore/sign": "^4.1.1", + "@sigstore/tuf": "^4.0.2", + "@sigstore/verify": "^3.1.1" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/simple-update-notifier": { @@ -17792,36 +16509,14 @@ } }, "node_modules/socket.io-adapter": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.6.tgz", - "integrity": "sha512-DkkO/dz7MGln0dHn5bmN3pPy+JmywNICWrJqVWiVOyvXjWQFIv9c2h24JrQLLFJ2aQVQf/Cvl1vblnd4r2apLQ==", + "version": "2.5.8", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.8.tgz", + "integrity": "sha512-6Oy52pbg+kvdCVvjcN+FnY7BvxZ7cIHNScbvztT/It5d0vbwoJoVZmF2gjJmnV0/4WlXRfG15zc45ySk9Ah8bw==", "dev": true, "license": "MIT", "dependencies": { "debug": "~4.4.1", - "ws": "~8.18.3" - } - }, - "node_modules/socket.io-adapter/node_modules/ws": { - "version": "8.18.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", - "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } + "ws": "~8.21.0" } }, "node_modules/socket.io-client": { @@ -17840,9 +16535,9 @@ } }, "node_modules/socket.io-parser": { - "version": "4.2.5", - "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.5.tgz", - "integrity": "sha512-bPMmpy/5WWKHea5Y/jYAP6k74A+hvmRCQaJuJB6I/ML5JZq/KfNieUVo/3Mh7SAqn7TyFdIo6wqYHInG1MU1bQ==", + "version": "4.2.7", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.7.tgz", + "integrity": "sha512-IH/iSeO9T6gz1KkFleGDWkG9N3dl4jXVYUtMhIqH10Md0ttMer8nUNWiP1DKuNrybD2xBrixLJdCC9J6ECoYkg==", "license": "MIT", "dependencies": { "@socket.io/component-emitter": "~3.1.0", @@ -17915,6 +16610,7 @@ "version": "8.3.2", "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "deprecated": "uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028).", "dev": true, "license": "MIT", "bin": { @@ -17922,13 +16618,13 @@ } }, "node_modules/socks": { - "version": "2.8.7", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.7.tgz", - "integrity": "sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==", + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.9.tgz", + "integrity": "sha512-LJhUYUvItdQ0LkJTmPeaEObWXAqFyfmP85x0tch/ez9cahmhlBBLbIqDFnvBnUJGagb0JbIQrkBs1wJ+yRYpEw==", "dev": true, "license": "MIT", "dependencies": { - "ip-address": "^10.0.1", + "ip-address": "^10.1.1", "smart-buffer": "^4.2.0" }, "engines": { @@ -18026,17 +16722,6 @@ "node": ">=0.10.0" } }, - "node_modules/spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, "node_modules/spdx-exceptions": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", @@ -18045,9 +16730,9 @@ "license": "CC-BY-3.0" }, "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-4.0.0.tgz", + "integrity": "sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==", "dev": true, "license": "MIT", "dependencies": { @@ -18056,9 +16741,9 @@ } }, "node_modules/spdx-license-ids": { - "version": "3.0.22", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz", - "integrity": "sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==", + "version": "3.0.23", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.23.tgz", + "integrity": "sha512-CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw==", "dev": true, "license": "CC0-1.0" }, @@ -18109,42 +16794,17 @@ "node": ">= 6" } }, - "node_modules/sshpk": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz", - "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==", - "license": "MIT", - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "bin": { - "sshpk-conv": "bin/sshpk-conv", - "sshpk-sign": "bin/sshpk-sign", - "sshpk-verify": "bin/sshpk-verify" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/ssri": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-12.0.0.tgz", - "integrity": "sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==", + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-13.0.1.tgz", + "integrity": "sha512-QUiRf1+u9wPTL/76GTYlKttDEBWV1ga9ZXW8BG6kfdeyyM8LGPix9gROyg9V2+P0xNyF3X2Go526xKFdMZrHSQ==", "dev": true, "license": "ISC", "dependencies": { "minipass": "^7.0.3" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/statuses": { @@ -18169,39 +16829,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/stealthy-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", - "integrity": "sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==", - "license": "ISC", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/stream-browserify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", - "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", - "license": "MIT", - "dependencies": { - "inherits": "~2.0.4", - "readable-stream": "^3.5.0" - } - }, - "node_modules/stream-browserify/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/streamroller": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-3.1.5.tgz", @@ -18221,6 +16848,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" @@ -18230,6 +16858,7 @@ "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, "license": "MIT" }, "node_modules/string-width": { @@ -18250,39 +16879,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true, - "license": "MIT" - }, - "node_modules/string-width-cjs/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -18295,20 +16891,6 @@ "node": ">=8" } }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", @@ -18349,9 +16931,9 @@ } }, "node_modules/tapable": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz", - "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz", + "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==", "dev": true, "license": "MIT", "engines": { @@ -18363,106 +16945,31 @@ } }, "node_modules/tar": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", - "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", - "deprecated": "Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exhorbitant rates) by contacting i@izs.me", + "version": "7.5.22", + "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.22.tgz", + "integrity": "sha512-MFO/QzvtAOmJbkhOaCTvbGcFN9L9b+JunIsDwaKljSOdcLMea3NJ1k9Usz/rjdfSXTq4dfzfeS7W4p4YOAAHeA==", "dev": true, - "license": "ISC", + "license": "BlueOak-1.0.0", "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" + "@isaacs/fs-minipass": "^4.0.0", + "chownr": "^3.0.0", + "minipass": "^7.1.2", + "minizlib": "^3.1.0", + "yallist": "^5.0.0" }, "engines": { - "node": ">=10" - } - }, - "node_modules/tar/node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/tar/node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=8" - } - }, - "node_modules/tar/node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "license": "MIT", - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/tar/node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/tar/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "license": "MIT", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" + "node": ">=18" } }, "node_modules/tar/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", + "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", "dev": true, - "license": "ISC" + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=18" + } }, "node_modules/terser": { "version": "5.43.1", @@ -18484,16 +16991,15 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.16", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.16.tgz", - "integrity": "sha512-h9oBFCWrq78NyWWVcSwZarJkZ01c2AyGrzs1crmHZO3QUg9D61Wu4NPjBy69n7JqylFF5y+CsUZYmYEIZ3mR+Q==", + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.6.1.tgz", + "integrity": "sha512-201R5j+sJpK8nFWwKVyNfZot8FaJbLZDq5evriVzbV1wDtSXDjRUDRfJzHpAaxFDMEhsZL1QkeqM61wgsS3KaQ==", "dev": true, "license": "MIT", "dependencies": { "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", "schema-utils": "^4.3.0", - "serialize-javascript": "^6.0.2", "terser": "^5.31.1" }, "engines": { @@ -18507,21 +17013,48 @@ "webpack": "^5.1.0" }, "peerDependenciesMeta": { + "@minify-html/node": { + "optional": true + }, "@swc/core": { "optional": true }, + "@swc/css": { + "optional": true + }, + "@swc/html": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "cssnano": { + "optional": true + }, + "csso": { + "optional": true + }, "esbuild": { "optional": true }, + "html-minifier-terser": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "postcss": { + "optional": true + }, "uglify-js": { "optional": true } } }, "node_modules/thingies": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/thingies/-/thingies-2.5.0.tgz", - "integrity": "sha512-s+2Bwztg6PhWUD7XMfeYm5qliDdSiZm7M7n8KjTkIsm3l/2lgVRc2/Gx/v+ZX8lT4FMA+i8aQvhcWylldc+ZNw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/thingies/-/thingies-2.6.0.tgz", + "integrity": "sha512-rMHRjmlFLM1R96UYPvpmnc3LYtdFrT33JIB7L9hetGue1qAPfn1N2LJeEjxUSidu1Iku+haLZXDuEXUHNGO/lg==", "dev": true, "license": "MIT", "engines": { @@ -18590,35 +17123,15 @@ } }, "node_modules/tmp": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.5.tgz", - "integrity": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==", + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.7.tgz", + "integrity": "sha512-e0votIpp4Uo2AJYSzVHV6xCcawuiez3DzqDAbrTc3YxBkplN6e+dM13ZeIcZnDg/QpSuU2zfZ3rzwY8ukEnaXw==", "dev": true, "license": "MIT", "engines": { "node": ">=14.14" } }, - "node_modules/to-buffer": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.2.2.tgz", - "integrity": "sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==", - "license": "MIT", - "dependencies": { - "isarray": "^2.0.5", - "safe-buffer": "^5.2.1", - "typed-array-buffer": "^1.0.3" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/to-buffer/node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "license": "MIT" - }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", @@ -18632,15 +17145,6 @@ "node": ">=8.0" } }, - "node_modules/toidentifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", - "license": "MIT", - "engines": { - "node": ">=0.6" - } - }, "node_modules/touch": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz", @@ -18651,28 +17155,6 @@ "nodetouch": "bin/nodetouch.js" } }, - "node_modules/tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "license": "BSD-3-Clause", - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/tough-cookie/node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/tree-dump": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/tree-dump/-/tree-dump-1.1.0.tgz", @@ -18701,9 +17183,9 @@ } }, "node_modules/ts-api-utils": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.4.0.tgz", - "integrity": "sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.5.0.tgz", + "integrity": "sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==", "dev": true, "license": "MIT", "engines": { @@ -18763,48 +17245,41 @@ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "license": "0BSD" }, - "node_modules/tsscmp": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", - "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==", - "license": "MIT", - "engines": { - "node": ">=0.6.x" - } - }, - "node_modules/tuf-js": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-3.1.0.tgz", - "integrity": "sha512-3T3T04WzowbwV2FDiGXBbr81t64g1MUGGJRgT4x5o97N+8ArdhVCAF9IxFrxuSJmM3E5Asn7nKHkao0ibcZXAg==", + "node_modules/tsyringe": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/tsyringe/-/tsyringe-4.10.0.tgz", + "integrity": "sha512-axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw==", "dev": true, "license": "MIT", "dependencies": { - "@tufjs/models": "3.0.1", - "debug": "^4.4.1", - "make-fetch-happen": "^14.0.3" + "tslib": "^1.9.3" }, "engines": { - "node": "^18.17.0 || >=20.5.0" + "node": ">= 6.0.0" } }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", - "license": "Apache-2.0", + "node_modules/tsyringe/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true, + "license": "0BSD" + }, + "node_modules/tuf-js": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-4.1.0.tgz", + "integrity": "sha512-50QV99kCKH5P/Vs4E2Gzp7BopNV+KzTXqWeaxrfu5IQJBOULRsTIS9seSsOVT8ZnGXzCyx55nYWAi4qJzpZKEQ==", + "dev": true, + "license": "MIT", "dependencies": { - "safe-buffer": "^5.0.1" + "@tufjs/models": "4.1.0", + "debug": "^4.4.3", + "make-fetch-happen": "^15.0.1" }, "engines": { - "node": "*" + "node": "^20.17.0 || >=22.9.0" } }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", - "license": "Unlicense" - }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", @@ -18819,31 +17294,34 @@ } }, "node_modules/type-is": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz", - "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.1.0.tgz", + "integrity": "sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==", "license": "MIT", "dependencies": { - "content-type": "^1.0.5", + "content-type": "^2.0.0", "media-typer": "^1.1.0", "mime-types": "^3.0.0" }, "engines": { - "node": ">= 0.6" + "node": ">= 18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/typed-array-buffer": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", - "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", + "node_modules/type-is/node_modules/content-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz", + "integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==", "license": "MIT", - "dependencies": { - "call-bound": "^1.0.3", - "es-errors": "^1.3.0", - "is-typed-array": "^1.1.14" - }, "engines": { - "node": ">= 0.4" + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/typed-assert": { @@ -18913,6 +17391,16 @@ "dev": true, "license": "MIT" }, + "node_modules/undici": { + "version": "6.27.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.27.0.tgz", + "integrity": "sha512-YmfV3YnEDzXRC5lZ2jWtWWHKGUm1zIt8AhesR1tens+HTNv+YZlN/dp6G727LOvMJ8xjP9Be7Y2Sdr96LDm+pg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.17" + } + }, "node_modules/undici-types": { "version": "6.21.0", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", @@ -18990,32 +17478,6 @@ "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", "license": "MIT" }, - "node_modules/unique-filename": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-4.0.0.tgz", - "integrity": "sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "unique-slug": "^5.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/unique-slug": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-5.0.0.tgz", - "integrity": "sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==", - "dev": true, - "license": "ISC", - "dependencies": { - "imurmurhash": "^0.1.4" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, "node_modules/universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", @@ -19070,6 +17532,7 @@ "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "punycode": "^2.1.0" @@ -19079,6 +17542,7 @@ "version": "2.3.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -19088,6 +17552,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true, "license": "MIT" }, "node_modules/utils-merge": { @@ -19100,16 +17565,6 @@ "node": ">= 0.4.0" } }, - "node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", - "license": "MIT", - "bin": { - "uuid": "bin/uuid" - } - }, "node_modules/v8-compile-cache-lib": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", @@ -19117,17 +17572,6 @@ "dev": true, "license": "MIT" }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, "node_modules/validate-npm-package-name": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-6.0.2.tgz", @@ -19147,34 +17591,14 @@ "node": ">= 0.8" } }, - "node_modules/verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", - "engines": [ - "node >=0.6.0" - ], - "license": "MIT", - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "node_modules/verror/node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", - "license": "MIT" - }, "node_modules/vite": { - "version": "7.1.11", - "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.11.tgz", - "integrity": "sha512-uzcxnSDVjAopEUjljkWh8EIrg6tlzrjFUfMcR1EVsRDGwf/ccef0qQPRyOrROwhrTDaApueq+ja+KLPlzR/zdg==", + "version": "7.3.6", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.6.tgz", + "integrity": "sha512-4XP60spRGjSZFf1qYH+dJIkK2znL3zQfl9KkOV9MkkRR/3Dls0dxaBsQPTloEc5BLXWPL9vsOxopxyKoMmDueg==", "dev": true, "license": "MIT", "dependencies": { - "esbuild": "^0.25.0", + "esbuild": "^0.27.0 || ^0.28.0", "fdir": "^6.5.0", "picomatch": "^4.0.3", "postcss": "^8.5.6", @@ -19243,14 +17667,14 @@ } }, "node_modules/vite/node_modules/tinyglobby": { - "version": "0.2.15", - "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", - "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz", + "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==", "dev": true, "license": "MIT", "dependencies": { "fdir": "^6.5.0", - "picomatch": "^4.0.3" + "picomatch": "^4.0.4" }, "engines": { "node": ">=12.0.0" @@ -19259,12 +17683,6 @@ "url": "https://github.com/sponsors/SuperchupuDev" } }, - "node_modules/vm-browserify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", - "license": "MIT" - }, "node_modules/void-elements": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz", @@ -19307,81 +17725,10 @@ "license": "MIT", "optional": true }, - "node_modules/webdriver-js-extender": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/webdriver-js-extender/-/webdriver-js-extender-2.1.0.tgz", - "integrity": "sha512-lcUKrjbBfCK6MNsh7xaY2UAUmZwe+/ib03AjVOpFobX4O7+83BUveSrLfU0Qsyb1DaKJdQRbuU+kM9aZ6QUhiQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/selenium-webdriver": "^3.0.0", - "selenium-webdriver": "^3.0.1" - }, - "engines": { - "node": ">=6.9.x" - } - }, - "node_modules/webdriver-manager": { - "version": "12.1.9", - "resolved": "https://registry.npmjs.org/webdriver-manager/-/webdriver-manager-12.1.9.tgz", - "integrity": "sha512-Yl113uKm8z4m/KMUVWHq1Sjtla2uxEBtx2Ue3AmIlnlPAKloDn/Lvmy6pqWCUersVISpdMeVpAaGbNnvMuT2LQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "adm-zip": "^0.5.2", - "chalk": "^1.1.1", - "del": "^2.2.0", - "glob": "^7.0.3", - "ini": "^1.3.4", - "minimist": "^1.2.0", - "q": "^1.4.1", - "request": "^2.87.0", - "rimraf": "^2.5.2", - "semver": "^5.3.0", - "xml2js": "^0.4.17" - }, - "bin": { - "webdriver-manager": "bin/webdriver-manager" - }, - "engines": { - "node": ">=6.9.x" - } - }, - "node_modules/webdriver-manager/node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true, - "license": "ISC" - }, - "node_modules/webdriver-manager/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", - "dev": true, - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/webdriver-manager/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver" - } - }, "node_modules/webpack": { - "version": "5.101.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.101.2.tgz", - "integrity": "sha512-4JLXU0tD6OZNVqlwzm3HGEhAHufSiyv+skb7q0d2367VDMzrU1Q/ZeepvkcHH0rZie6uqEtTQQe0OEOOluH3Mg==", + "version": "5.105.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.105.0.tgz", + "integrity": "sha512-gX/dMkRQc7QOMzgTe6KsYFM7DxeIONQSui1s0n/0xht36HvrgbxtM1xBlgx596NbpHuQU8P7QpKwrZYwUX48nw==", "dev": true, "license": "MIT", "dependencies": { @@ -19393,22 +17740,22 @@ "@webassemblyjs/wasm-parser": "^1.14.1", "acorn": "^8.15.0", "acorn-import-phases": "^1.0.3", - "browserslist": "^4.24.0", + "browserslist": "^4.28.1", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.17.3", - "es-module-lexer": "^1.2.1", + "enhanced-resolve": "^5.19.0", + "es-module-lexer": "^2.0.0", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", + "loader-runner": "^4.3.1", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^4.3.2", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.11", - "watchpack": "^2.4.1", + "schema-utils": "^4.3.3", + "tapable": "^2.3.0", + "terser-webpack-plugin": "^5.3.16", + "watchpack": "^2.5.1", "webpack-sources": "^3.3.3" }, "bin": { @@ -19481,15 +17828,15 @@ } }, "node_modules/webpack-dev-server": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.2.2.tgz", - "integrity": "sha512-QcQ72gh8a+7JO63TAx/6XZf/CWhgMzu5m0QirvPfGvptOusAxG12w2+aua1Jkjr7hzaWDnJ2n6JFeexMHI+Zjg==", + "version": "5.2.5", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.2.5.tgz", + "integrity": "sha512-4wZtCquSuv9CKX8oybo+mqxtxZqWz47uM1Ch94lxowBztOhWCbhqvRbfC/mODOwxgV2brY+JGZpHq58/SuVFYg==", "dev": true, "license": "MIT", "dependencies": { "@types/bonjour": "^3.5.13", "@types/connect-history-api-fallback": "^1.5.4", - "@types/express": "^4.17.21", + "@types/express": "^4.17.25", "@types/express-serve-static-core": "^4.17.21", "@types/serve-index": "^1.9.4", "@types/serve-static": "^1.15.5", @@ -19499,9 +17846,9 @@ "bonjour-service": "^1.2.1", "chokidar": "^3.6.0", "colorette": "^2.0.10", - "compression": "^1.7.4", + "compression": "^1.8.1", "connect-history-api-fallback": "^2.0.0", - "express": "^4.21.2", + "express": "^4.22.1", "graceful-fs": "^4.2.6", "http-proxy-middleware": "^2.0.9", "ipaddr.js": "^2.1.0", @@ -19509,7 +17856,7 @@ "open": "^10.0.3", "p-retry": "^6.2.0", "schema-utils": "^4.2.0", - "selfsigned": "^2.4.1", + "selfsigned": "^5.5.0", "serve-index": "^1.9.1", "sockjs": "^0.3.24", "spdy": "^4.0.2", @@ -19553,9 +17900,9 @@ } }, "node_modules/webpack-dev-server/node_modules/body-parser": { - "version": "1.20.4", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.4.tgz", - "integrity": "sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==", + "version": "1.20.6", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.6.tgz", + "integrity": "sha512-p5tAzS57i5MV9fZFDj9LeIiTZEufbSe2eDozP+ElheSUq1m74CRq1jI4mYNDdVs9vQztXFLuk/Gd6BWTdwRJ5g==", "dev": true, "license": "MIT", "dependencies": { @@ -19567,7 +17914,7 @@ "http-errors": "~2.0.1", "iconv-lite": "~0.4.24", "on-finished": "~2.4.1", - "qs": "~6.14.0", + "qs": "~6.15.1", "raw-body": "~2.5.3", "type-is": "~1.6.18", "unpipe": "~1.0.0" @@ -19633,15 +17980,15 @@ "license": "MIT" }, "node_modules/webpack-dev-server/node_modules/express": { - "version": "4.22.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.22.1.tgz", - "integrity": "sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==", + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.22.2.tgz", + "integrity": "sha512-IuL+Elrou2ZvCFHs18/CIzy2Nzvo25nZ1/D2eIZlz7c+QUayAcYoiM2BthCjs+EBHVpjYjcuLDAiCWgeIX3X1Q==", "dev": true, "license": "MIT", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "~1.20.3", + "body-parser": "~1.20.5", "content-disposition": "~0.5.4", "content-type": "~1.0.4", "cookie": "~0.7.1", @@ -19660,7 +18007,7 @@ "parseurl": "~1.3.3", "path-to-regexp": "~0.1.12", "proxy-addr": "~2.0.7", - "qs": "~6.14.0", + "qs": "~6.15.1", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "~0.19.0", @@ -19743,9 +18090,9 @@ } }, "node_modules/webpack-dev-server/node_modules/http-proxy-middleware": { - "version": "2.0.9", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.9.tgz", - "integrity": "sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q==", + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.10.tgz", + "integrity": "sha512-RKzRWNPxUZqbuk3BC5mGVJbBnWgr+diEnjJexIOytFbBzDy88Fbh/YvBr3DsNrl1jYAfjWfpATEv0NO35FDuPQ==", "dev": true, "license": "MIT", "dependencies": { @@ -19781,9 +18128,9 @@ } }, "node_modules/webpack-dev-server/node_modules/ipaddr.js": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.3.0.tgz", - "integrity": "sha512-Zv/pA+ciVFbCSBBjGfaKUya/CcGmUHzTydLMaTwrUUEM2DIEO3iZvueGxmacvmN50fGpGVKeTXpb2LcYQxeVdg==", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.4.0.tgz", + "integrity": "sha512-9VGk3HGanVE6JoZXHiCpnGy5X0jYDnN4EA4lntFPj+1vIWlFhIylq2CrrCOJH9EAhc5CYhq18F2Av2tgoAPsYQ==", "dev": true, "license": "MIT", "engines": { @@ -19857,16 +18204,16 @@ } }, "node_modules/webpack-dev-server/node_modules/path-to-regexp": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", - "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.13.tgz", + "integrity": "sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==", "dev": true, "license": "MIT" }, "node_modules/webpack-dev-server/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", "dev": true, "license": "MIT", "engines": { @@ -19876,6 +18223,16 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, + "node_modules/webpack-dev-server/node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, "node_modules/webpack-dev-server/node_modules/raw-body": { "version": "2.5.3", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz", @@ -19993,9 +18350,9 @@ } }, "node_modules/webpack-sources": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.3.tgz", - "integrity": "sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==", + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.5.1.tgz", + "integrity": "sha512-jyuiGJdtvY434z5bUZrjz67v76/ePNvFZTp9Mdz29IlH4+GPsgyGjiv0fKI+M7BdkU6ADjulUcKAd3tUK3WlEw==", "dev": true, "license": "MIT", "engines": { @@ -20078,10 +18435,23 @@ "node": ">= 0.6" } }, + "node_modules/webpack/node_modules/watchpack": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.5.2.tgz", + "integrity": "sha512-6i/00NBjP4yGPs+caKSyRfpTF/8Torsu0MOW3mMzIbhgISFder8i7xbqgHlLMwJrdiN8ndBV3UA1/AfzPSr+jg==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, "node_modules/websocket-driver": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", - "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.5.tgz", + "integrity": "sha512-ZL2+3c7kMBdIRCMz6l8jQMHyGVxj+UL+xVk74Ombiciboca8rHa15L86B19E5oh1pL9Ii/uj54gtsIrZGMo6zA==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -20125,27 +18495,6 @@ "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", "license": "ISC" }, - "node_modules/which-typed-array": { - "version": "1.1.20", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.20.tgz", - "integrity": "sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==", - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.8", - "call-bound": "^1.0.4", - "for-each": "^0.3.5", - "get-proto": "^1.0.1", - "gopd": "^1.2.0", - "has-tostringtag": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/wildcard": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", @@ -20177,57 +18526,6 @@ "node": ">=8" } }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true, - "license": "MIT" - }, - "node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/wrap-ansi/node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", @@ -20264,9 +18562,9 @@ "license": "ISC" }, "node_modules/ws": { - "version": "8.19.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.19.0.tgz", - "integrity": "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==", + "version": "8.21.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz", + "integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==", "license": "MIT", "engines": { "node": ">=10.0.0" @@ -20300,30 +18598,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/xml2js": { - "version": "0.4.23", - "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", - "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", - "dev": true, - "license": "MIT", - "dependencies": { - "sax": ">=0.6.0", - "xmlbuilder": "~11.0.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/xmlbuilder": { - "version": "11.0.1", - "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", - "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4.0" - } - }, "node_modules/xmldoc": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/xmldoc/-/xmldoc-2.0.3.tgz", @@ -20436,13 +18710,13 @@ } }, "node_modules/zod-to-json-schema": { - "version": "3.25.1", - "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.1.tgz", - "integrity": "sha512-pM/SU9d3YAggzi6MtR4h7ruuQlqKtad8e9S0fmxcMi+ueAK5Korys/aWcV9LIIHTVbj01NdzxcnXSN+O74ZIVA==", + "version": "3.25.2", + "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.2.tgz", + "integrity": "sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==", "dev": true, "license": "ISC", "peerDependencies": { - "zod": "^3.25 || ^4" + "zod": "^3.25.28 || ^4" } }, "node_modules/zone.js": { diff --git a/package.json b/package.json index be12a75b..e680a466 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rtl", - "version": "0.15.7-beta", + "version": "0.15.10-beta", "license": "MIT", "type": "module", "scripts": { @@ -16,7 +16,8 @@ "server": "set NODE_ENV=development&&nodemon --watch backend --watch server ./rtl.js", "serverUbuntu": "NODE_ENV=development nodemon --watch backend --watch server ./rtl.js", "testdev": "ng test --watch=true --code-coverage", - "test": "ng test --watch=false --browsers=ChromeHeadless", + "testbackend": "node --test test/backend/*.test.mjs", + "test": "npm run buildbackend && npm run testbackend && ng test --watch=false --browsers=ChromeHeadless", "lint": "eslint" }, "private": true, @@ -26,11 +27,10 @@ "@swimlane/ngx-charts": "23.1.0", "angular-user-idle": "4.0.0", "atob": "2.1.2", - "axios": "1.13.2", + "axios": "1.18.1", "buffer": "6.0.3", "cookie-parser": "1.4.7", - "crypto-browserify": "3.12.1", - "csurf": "1.11.0", + "csrf-csrf": "4.0.3", "express": "5.2.1", "express-session": "1.18.2", "hocon-parser": "1.0.1", @@ -39,40 +39,36 @@ "ng-qrcode": "21.0.0", "ngx-perfect-scrollbar-next": "10.1.1", "otplib": "12.0.1", - "pdfmake": "0.3.2", + "pdfmake": "0.3.11", "process": "0.11.10", - "request": "2.88.2", - "request-promise": "4.2.6", "rxjs": "7.8.2", "sha256": "0.2.0", "socket.io-client": "4.8.3", - "stream-browserify": "3.0.0", "tslib": "2.8.1", - "vm-browserify": "1.1.2", - "ws": "8.19.0", + "ws": "8.21.0", "zone.js": "0.16.0" }, "devDependencies": { - "@angular-devkit/build-angular": "20.3.14", + "@angular-devkit/build-angular": "20.3.32", "@angular-eslint/builder": "20.7.0", "@angular-eslint/eslint-plugin": "20.7.0", "@angular-eslint/eslint-plugin-template": "20.7.0", "@angular-eslint/schematics": "20.7.0", "@angular-eslint/template-parser": "20.7.0", - "@angular/animations": "20.3.14", - "@angular/build": "20.3.14", + "@angular/animations": "20.3.27", + "@angular/build": "20.3.32", "@angular/cdk": "20.2.14", - "@angular/cli": "20.3.14", - "@angular/common": "20.3.14", - "@angular/compiler": "20.3.14", - "@angular/compiler-cli": "20.3.14", - "@angular/core": "20.3.14", + "@angular/cli": "20.3.32", + "@angular/common": "20.3.27", + "@angular/compiler": "20.3.27", + "@angular/compiler-cli": "20.3.27", + "@angular/core": "20.3.27", "@angular/flex-layout": "15.0.0-beta.42", - "@angular/forms": "20.3.14", + "@angular/forms": "20.3.27", "@angular/material": "20.2.14", - "@angular/platform-browser": "20.3.14", - "@angular/platform-browser-dynamic": "20.3.14", - "@angular/router": "20.3.14", + "@angular/platform-browser": "20.3.27", + "@angular/platform-browser-dynamic": "20.3.27", + "@angular/router": "20.3.27", "@eslint/eslintrc": "3.3.3", "@fortawesome/angular-fontawesome": "4.0.0", "@fortawesome/fontawesome-svg-core": "7.1.0", @@ -81,10 +77,10 @@ "@ngrx/store-devtools": "21.0.1", "@types/jasmine": "5.1.15", "@types/node": "20.19.30", - "@typescript-eslint/eslint-plugin": "8.53.0", - "@typescript-eslint/parser": "8.53.0", + "@typescript-eslint/eslint-plugin": "8.65.0", + "@typescript-eslint/parser": "8.65.0", "dotenv": "17.2.3", - "eslint": "9.39.2", + "eslint": "9.39.5", "eslint-plugin-deprecation": "3.0.0", "jasmine-core": "5.13.0", "jasmine-spec-reporter": "7.0.0", @@ -94,8 +90,7 @@ "karma-jasmine": "5.1.0", "karma-jasmine-html-reporter": "2.1.0", "material-icons": "1.13.14", - "nodemon": "3.1.11", - "protractor": "7.0.0", + "nodemon": "3.1.14", "roboto-fontface": "0.10.0", "ts-node": "10.9.2", "typescript": "5.8.3" diff --git a/release-notes/Release-notes-0.15.10.md b/release-notes/Release-notes-0.15.10.md new file mode 100644 index 00000000..876c3360 --- /dev/null +++ b/release-notes/Release-notes-0.15.10.md @@ -0,0 +1,102 @@ +# Release Notes — 0.15.10 + +This document collects the changes that go into the 0.15.10 release. Each PR merged for +this release should add its entry under the appropriate section below. + +## Bug Fixes + +- **Auth: harden login request validation** + ([#1654](https://github.com/Ride-The-Lightning/RTL/pull/1654)). + Tightens server-side validation of authentication requests and adds regression coverage + (`test/backend/authenticate.test.mjs`). Users who have two-factor authentication enabled + are encouraged to update promptly. + +- **Config & logging: reduce exposure of authentication secrets** + ([#1659](https://github.com/Ride-The-Lightning/RTL/pull/1659)). + Tightens redaction of authentication material in node logs and configuration API + responses, pins deployment-level authentication settings server-side, contains backup + file downloads to the node's backup directory, and hardens the settings persistence + path. Adds regression coverage (`test/backend/common.test.mjs`). Users are encouraged + to update promptly. + +- **Eclair: stop logging the node's auth header at DEBUG level** + ([#1664](https://github.com/Ride-The-Lightning/RTL/pull/1664)). + `getChannels` in the Eclair channels controller logged its entire request options object, + which for Eclair carries HTTP basic auth — so raising an Eclair node's `logLevel` to + `DEBUG` wrote `authorization: Basic ` into the node log, a recoverable form of the + configured `lnApiPassword`. The log now carries only the request url and form, matching + every other DEBUG log in the controllers. Present since 0.12.0 and only reachable by + opting in to `DEBUG` (the default level is `ERROR`), but it contradicted the logging + guarantee stated for #1659. Regression coverage added + (`test/backend/eclair-channels.test.mjs`). Found by auditing node logs at `DEBUG` while + verifying this release against the regtest fixture. + +## Code Health + +- **Bound remaining unbounded LND alias-resolution fan-outs** + ([#1651](https://github.com/Ride-The-Lightning/RTL/pull/1651), fixes + [#1630](https://github.com/Ride-The-Lightning/RTL/issues/1630)). + Mirrors the `runWithConcurrencyLimit(tasks, 20, done)` pattern introduced in #1629 + across the remaining unbounded `Promise.all(map(...))` alias-resolution fan-outs in + the LND graph and channels controllers, preventing a large node from firing one + alias-lookup request per peer, channel, or hop all at once. + + During review, a related race condition was found and fixed: the module-level + `options` variable in these controllers was reassigned per-request, but + `getAliasForChannel` and `getAliasFromPubkey` read it by closure rather than + receiving it as a parameter. Once alias-resolution tasks were deferred across + event-loop turns by the concurrency limiter, a concurrent request to a different + node could overwrite `options` mid-fan-out, causing a task to send with the wrong + node's credentials or URL. Both functions now accept an explicit `requestOptions` + parameter, and each handler captures a per-request copy before building the task + thunks. The catch blocks inside the concurrency-limit callbacks were also updated + to log raw exceptions directly instead of routing them through `handleError` + (which expects an HTTP-error-shaped value), matching the existing pattern used + by `closeChannel`. + +- **Batch dependency update resolving the open Dependabot security PRs** + ([#1653](https://github.com/Ride-The-Lightning/RTL/pull/1653)). + Dependabot had three open security PRs against `master` (#1648, #1649, #1650). Rather than + merging them piecemeal (they conflict with each other on `package-lock.json` and target the + wrong branch for the release flow), the fixes were applied in one pass on the release branch. + The only production exposure was `axios`, carrying ten advisories at 1.16.0 — prototype + pollution in request-option merging, `formDataToJSON` recursion DoS, `maxBodyLength` bypasses + on fetch/HTTP2 uploads, and a `NO_PROXY` bypass — now on 1.18.1 (a patch above Dependabot's + validated 1.18.0, which was superseded during the batch). The lockfile was regenerated from + scratch rather than incrementally patched, and the flagged transitive deps were moved to their + fixed in-range versions (`fast-uri` 3.1.4, plus `form-data`, `qs`, `tough-cookie`, `tar`, + `del` and `globby`). The dev toolchain took safe patch/minor bumps: `nodemon` 3.1.14, + `eslint` 9.39.5, and `@typescript-eslint/*` 8.65.0. + + The unused `protractor` devDependency was also dropped. It had been dead since the Angular + scaffold that introduced it — no `e2e/` directory, no `protractor.conf.js`, and no `e2e` + target in `angular.json`, leaving a single line in `package.json` as its only reference — + while dragging in 100 packages and the deprecated `request` stack. Removing it clears both + remaining critical advisories (`request`, `form-data`) along with fourteen others + (`adm-zip`, `selenium-webdriver`, `webdriver-manager`, `xml2js`, `tmp`, `rimraf` and the + rest of the webdriver chain). + + `npm audit`: **50 vulnerabilities (2 critical, 37 high, 10 moderate, 1 low) → 29 + (0 critical, 23 high, 6 moderate)**, and **production dependencies are now clean at 0** + (from 1 high). Everything still flagged is dev-only build tooling that cannot be fixed by a + version bump: the Angular CLI chain (`@hono/node-server` and `@modelcontextprotocol/sdk` + need Angular 21, i.e. `@angular/core` ^21 and TypeScript ≥5.9 — a framework migration, not a + bump; #1650 is left for that work), the `@angular-eslint` line, and the karma/jasmine stack. + None of it ships in the released bundle. + +- **Angular framework patch update to 20.3.27** + ([#1661](https://github.com/Ride-The-Lightning/RTL/pull/1661)). + Dependabot opened one PR per package against `master` for `@angular/core` (#1658), + `@angular/compiler` (#1657) and `@angular/common` (#1655). The framework packages are + pinned to exact versions and their peer ranges require them to move as a set, so the three + were applied as a single batch on the release branch, taking all nine 20.3.26 packages + (`animations`, `common`, `compiler`, `compiler-cli`, `core`, `forms`, `platform-browser`, + `platform-browser-dynamic`, `router`) to 20.3.27. Upstream fixes only, no advisories: + the compiler now disallows `i18n` event attributes and limits its possible-event-handler + check to property names longer than two characters, `HttpClient` distinguishes repeated + transfer-cache params, and `platform-server` picks up a newer `domino`. + + This stays inside Angular 20 — the build toolchain (`@angular/build`, `@angular/cli` + 20.3.32) and `@angular/cdk`/`@angular/material` (20.2.14) are already at the top of their + v20 lines, so nothing in this batch pulls in the Angular 21 migration still tracked by + #1650. `frontend/` was rebuilt for the new framework code. diff --git a/release-notes/Release-notes-0.15.9.md b/release-notes/Release-notes-0.15.9.md new file mode 100644 index 00000000..4824eb00 --- /dev/null +++ b/release-notes/Release-notes-0.15.9.md @@ -0,0 +1,304 @@ +# Release Notes — 0.15.9 + +This document collects the changes that go into the 0.15.9 release. Each PR merged for +this release should add its entry under the appropriate section below. + +## Bug Fixes + +- **Multi-node: preserve per-node auth when saving application settings** + ([#1645](https://github.com/Ride-The-Lightning/RTL/pull/1645), supersedes + [#1598](https://github.com/Ride-The-Lightning/RTL/pull/1598)). + When saving application settings on a multi-node setup, `addSecureData` matched each saved + node against the in-memory config by **array position** (`appConfig.nodes[i]`), so once nodes + were reordered or one was removed, another node's `macaroonPath`/`runePath` could be grafted + onto the wrong node — corrupting its authentication. Matching is now keyed by `node.index` + (via a lookup map) in both `addSecureData` and the config-write path, and the persisted + `RTL-Config.json` is sanitized of runtime-only fields (the request `options` object and the + resolved `runeValue`) so they are never written to disk. Contributed by @CosimoRicciardi in + #1598; landed here rebased onto the release branch with a regression test + (`test/backend/rtlconf.test.mjs`). + +- **All implementations: fix a page-load error when a channel's alias is undefined** + ([#1581](https://github.com/Ride-The-Lightning/RTL/pull/1581)). + On the home dashboard, channel labels were rendered as `(channel.alias || channel.peer_id).length` + (and the `remote_alias`/`shortChannelId` variants). When both the alias and its fallback id were + undefined, calling `.length` on `undefined` threw during change detection and errored the page on + load. The bindings now fall back to an empty string (`|| ''`, with optional chaining) so a missing + alias can no longer break the page. + +- **Multi-node: fix stale auth options blocking a node whose credentials weren't ready at startup** + ([#1601](https://github.com/Ride-The-Lightning/RTL/pull/1601)). + `CommonService.setOptions` short-circuited on `this.nodes[0]` regardless of which node was being + processed, so once the first node's auth headers loaded, every subsequent call returned early. A + second node whose credential load had failed — e.g. a Core Lightning rune file written + asynchronously after RTL starts — was never retried and kept failing with `missing rune!` until + RTL was restarted. The cache check is now per-node, so a node that failed to initialize is retried + on the next request once its credential is available, while already-loaded nodes are still skipped. + +- **Core Lightning: fix contradictory channel connection status between the list and the + detail panel** ([#1625](https://github.com/Ride-The-Lightning/RTL/pull/1625), fixes + [#1606](https://github.com/Ride-The-Lightning/RTL/issues/1606)). + CLN's `listpeerchannels` reports connection state as `peer_connected`, but the open and + pending channel-list columns read the legacy `connected` field, which the backend never + populated. The list therefore always rendered "Disconnected" while the detail panel (which + reads `peer_connected`) showed the true state. The backend now normalizes + `connected = peer_connected` in the `listPeerChannels` response so legacy consumers stay in + sync, and the list columns read `peer_connected` directly. Regression tests were added for + both channel tables. + +- **Core Lightning: fix the channel View Info modal rendering blank for disconnected channels** + ([#1625](https://github.com/Ride-The-Lightning/RTL/pull/1625), fixes + [#1606](https://github.com/Ride-The-Lightning/RTL/issues/1606)). + The channel information modal renders a block-explorer link from `selNode.settings.blockExplorerUrl`, + but the pending/inactive channels table opened the modal without passing `selNode`. With it + undefined, that binding threw during change detection and blanked every field below it — State, + Connected, Private and the balances all showed no value. Because a disconnected channel moves to + the pending/inactive table, this is exactly what was seen on "View Info" for a disconnected + channel. The pending table now passes `selNode` (matching the open table), and the modal guards + the explorer link so a missing `selNode` can no longer blank the dialog. The LND channel + information modal had the same unguarded `selNode.settings.blockExplorerUrl` binding (reachable + from the active-HTLCs and channel-backup tables, which open it without `selNode`), so the same + guard was applied there for parity. Eclair's modal doesn't use `selNode.settings`, so it is + unaffected. + +- **All implementations: restore the "items per page" dropdown (and first/last-page buttons) + on paginated tables** ([#1626](https://github.com/Ride-The-Lightning/RTL/pull/1626), fixes + [#1580](https://github.com/Ride-The-Lightning/RTL/issues/1580)). + A dependency-update commit in the 0.15.8-beta cycle mechanically renamed the paginator + binding `[showFirstLastButtons]` to `[hidePageSize]` on every `mat-paginator` while keeping + the same `screenSize === XS ? false : true` expression. Because the two properties have + opposite polarity, this inverted the behavior: on desktop the page-size selector was hidden, + so users were locked to 10 items per page with no way to raise it — and the first/last-page + buttons were dropped everywhere as collateral. Reverting the ~44 affected paginators back to + `[showFirstLastButtons]` restores both behaviors across the LND, Core Lightning, Eclair and + shared tables. + +- **Accessibility: add missing form-field labels and remove positive tab indexes** + ([#1609](https://github.com/Ride-The-Lightning/RTL/pull/1609), fixes + [#1566](https://github.com/Ride-The-Lightning/RTL/issues/1566)). + Several `mat-select` and datepicker controls across the send, invoice, open/close-channel, + bump-fee, public-key and settings forms were rendered without a `mat-label`, so screen readers + had no way to announce their purpose (WCAG 1.3.1 / 3.3.2). Descriptive labels were added to + the affected controls. The forms also relied on positive `tabindex` values, an anti-pattern + (WCAG 2.4.3) that produced an inconsistent keyboard order; these were removed so focus follows + natural DOM order across the LND, Core Lightning, Eclair and shared modals. + +- **Bound peer/route alias resolution to stop clnrest "Resource temporarily unavailable" errors** + ([#1629](https://github.com/Ride-The-Lightning/RTL/pull/1629), + fixes [#1501](https://github.com/Ride-The-Lightning/RTL/issues/1501)). + RTL resolves peer aliases by calling `listnodes` (CLN) / `graph/node` (LND) once per peer. A + prior fix bounded this to 20 concurrent calls (plus a cache) for the CLN channel list, but the + Core Lightning **peers list** and **route lookup** — and the LND **peers list** — still fired an + unbounded `Promise.all`, one request per peer at once. On Core Lightning nodes with many peers + this overwhelms clnrest and fails with `Resource temporarily unavailable (os error 11)` + (`EAGAIN`), leaving raw node IDs instead of aliases. All of these paths now use the same 20-way + concurrency limit (Eclair already resolves aliases inline from a bulk nodes list, so it is + unaffected). The CLN alias lookup was also made self-contained so aliases resolve regardless of + which screen is opened first; the limiter now resolves immediately for an empty or non-positive + input (which would previously never send a response); and the CLN alias cache gained a 6-hour TTL + and a max size so aliases refresh without an RTL restart and the cache can't grow unbounded. + +- **Reports: realign the Scroll Range select with the date picker** + ([#1637](https://github.com/Ride-The-Lightning/RTL/pull/1637), fixes + [#1635](https://github.com/Ride-The-Lightning/RTL/issues/1635)). + The a11y fix in #1609 wrapped the Reports page's bare Scroll Range `mat-select` in a + `mat-form-field` so it could carry a label, but the new wrapper reserved Material's + hint/subscript space below the input (78.8px total vs the date field's 56px) and was + top-anchored, leaving the Monthly/Yearly Date picker sitting ~11px lower than the select + on every implementation's report screens. The field now uses `subscriptSizing="dynamic"` + (no hints are used, so no space is reserved) and centers on the cross axis, restoring the + aligned 56px control row from v0.15.8 while keeping the accessibility label. Verified by + measuring the rendered layout headlessly against the regtest fixture: both fields now + render at identical top/height. + +## Enhancements + +- **Add a Disable Authentication option** + ([#1582](https://github.com/Ride-The-Lightning/RTL/pull/1582)). + A new `disableAuth` config flag (or `DISABLE_AUTH` environment variable) lets RTL run without its + login screen — intended for node-platform vendors who put their own authentication layer in front + of RTL, not for standalone users. When enabled, RTL issues a session token automatically and + disables password updates and 2FA; a configured `APP_PASSWORD` is rejected as incompatible. + Backend, frontend, and configuration docs were updated. + +- **LND: show "Blocks till Maturity" by default on the Pending Force Closing list** + ([#1627](https://github.com/Ride-The-Lightning/RTL/pull/1627), fixes + [#1567](https://github.com/Ride-The-Lightning/RTL/issues/1567)). + Blocks-till-maturity is critical for a force-closing channel, but it was only visible in the + per-channel detail modal. The column and its data binding already existed in the table (and + was selectable via column settings); it was simply absent from the default column selection. + Added `blocks_til_maturity` to the `pending_force_closing` defaults for both the desktop and + mobile (SM) layouts, so it's surfaced on the list out of the box. Users who have already + customized this page keep their saved columns and can add it via the column-settings gear. + +## Code Health + +- **LND: remove the deprecated `outgoing_chan_id` from QueryRoutes** + ([#1591](https://github.com/Ride-The-Lightning/RTL/pull/1591)). + LND deprecated the singular `outgoing_chan_id` query parameter on `QueryRoutes` as of + v0.20.0 in favor of the plural `outgoing_chan_ids`. The code path was already unreachable + in RTL — no caller of the `GetQueryRoutes` action ever populated `outgoingChanId`, so the + parameter was never sent — so this drops the unused model field, the effect's conditional + URL builder, and the server-side passthrough. The plural `outgoing_chan_ids` used by the + send-payment and rebalance flows is unaffected. + +- **LND: migrate `sat_per_byte` to `sat_per_vbyte` in node requests** + ([#1592](https://github.com/Ride-The-Lightning/RTL/pull/1592)). + LND's v0.21.0 release notes deprecate the `sat_per_byte` field, with removal planned in + v0.22 across `CloseChannel`, `OpenChannel`, `SendCoins`, `SendMany` and + `walletrpc.BumpFee`. LND already interprets the old field as sat/vbyte internally, so + this is a pure wire-format rename with no value conversion. The close-channel, + open-channel, send-coins and bump-fee request paths (and their matching TypeScript + identifiers) now send `sat_per_vbyte`, keeping RTL compatible ahead of the removal. + +- **Batch dependency update resolving all 20 open Dependabot security PRs** + ([#1633](https://github.com/Ride-The-Lightning/RTL/pull/1633)). + Dependabot had 20 open security-alert PRs against `master` (#1583–#1617). Rather than + merging them piecemeal (they conflict with each other on `package-lock.json` and target + the wrong branch for the release flow), the same bumps were applied in one pass on the + release branch: `axios` 1.16.0 and `ws` 8.21.0 (direct), the socket.io server stack + (`engine.io`, `engine.io-client`, `socket.io-adapter`, `socket.io-parser`), express's + `path-to-regexp`, `follow-redirects`, `lodash`, and the rest of the flagged transitive + deps; the Angular framework packages moved in lockstep to 20.3.26 and the CLI/build + toolchain to 20.3.32 (which drops the vulnerable `node-forge` from the tree entirely). + In-range fixes Dependabot hadn't re-opened PRs for (`pdfmake` 0.3.11 for its SSRF + advisory, `qs`, `uuid`, `tough-cookie`, `cookie`, `ajv`, `bn.js`, `elliptic`) were + picked up in the same pass. `npm audit` goes from 85 vulnerabilities (23 production) + to 29 (13 production, none high or critical besides the `request` stack); everything + remaining requires code changes, not version bumps — the deprecated + `request`/`request-promise` stack, `csurf` and the `crypto-browserify` polyfill + chain — and is tracked separately. Verified with a clean lint, the full frontend test suite, both production + builds, and an end-to-end smoke test of the docker regtest fixture across LND, Core + Lightning and Eclair (auth, getinfo, channel lists, and the WebSocket upgrade path). + +- **Replace the deprecated `request`/`request-promise` HTTP stack with axios** + ([#1638](https://github.com/Ride-The-Lightning/RTL/pull/1638), part of + [#1634](https://github.com/Ride-The-Lightning/RTL/issues/1634)). + `request` has been deprecated and unmaintained since 2020 and carries an unfixable SSRF + advisory plus vulnerable pinned copies of `form-data` (critical), `qs`, `tough-cookie` and + `uuid` — 8 of the 13 production `npm audit` findings left after #1633, none fixable by a + version bump. All 36 backend files that imported `request-promise` (the LND, Core Lightning + and Eclair controllers, Boltz/Loop/RTLConf shared controllers, `common.ts` and the LND + websocket client) now go through a small compatibility wrapper (`server/utils/request.ts`) + backed by `axios` — already a production dependency, so nothing new is added. The wrapper + accepts the existing request-promise options (`qs`, `form` including pre-encoded string + bodies, `body`, `baseUrl`/`uri`, `rejectUnauthorized`, `json`), resolves with the response + body directly, and rejects with a plain object mirroring request-promise's + `StatusCodeError`/`RequestError` shape, so `CommonService.handleError`'s status-code and + message extraction (including the `ECONNREFUSED` → 503 mapping and Eclair's status-code + special case) behaves as before; auth headers are omitted from rejected errors so they + cannot leak into logs. Callers without `json: true` still receive the raw text body, and + LND's line-delimited `/v2/router/send` stream still surfaces as a string for the existing + parser. Production `npm audit` drops from 13 findings (2 critical) to 6 low, all in the + `crypto-browserify`/`elliptic` polyfill chain tracked in #1634. Verified end-to-end against + the docker regtest fixture: 43 API checks across all three implementations (reads, invoice + creation, a routed LND payment over the streaming endpoint, cross-implementation payments + from Core Lightning and Eclair, message sign/verify, channel backup to disk, bad-invoice + and node-unreachable error mapping) plus a clean lint and both production builds. + +- **Replace the deprecated `csurf` middleware with `csrf-csrf`** + ([#1643](https://github.com/Ride-The-Lightning/RTL/pull/1643), part of + [#1634](https://github.com/Ride-The-Lightning/RTL/issues/1634)). + `csurf` has been deprecated since 2022 and pins an old `cookie` release with a known + advisory; npm's only offered "fix" is a downgrade. It is now replaced by the maintained + `csrf-csrf` (v4), which implements the same double-submit-cookie pattern with an + HMAC-signed, session-bound token keyed on RTL's existing boot secret. The frontend + contract is unchanged — the token still arrives in the `XSRF-TOKEN` cookie/header and is + echoed back as `x-xsrf-token` (all header/body/query token sources csurf accepted are + still accepted), the signed token cookie keeps the `_csrf` name (now httpOnly), and the + `EBADCSRFTOKEN` error path in `app.ts` applies as before, so no Angular or Quickpay + changes were needed. One behavioral fix this surfaced: `app.ts` called `req.csrfToken()` + twice (cookie + header) — harmless under csurf, but token-desyncing under csrf-csrf — + and now generates the token once per request. Tokens are also now bound to the session, + so a token stolen from one session no longer validates in another — a check csurf's + cookie mode didn't perform (and the websocket upgrade check in `authCheck.ts` keeps its + previous semantics). Production `npm audit` drops from 6 low findings to 4, all in the + `crypto-browserify`/`elliptic` chain tracked in #1634. Verified against the docker + regtest fixture: both API suites (43 checks across LND, Core Lightning and Eclair) plus + a dedicated CSRF battery — valid-token auth, missing/garbage token → 403, + cross-session token replay → 403, token stability, the `XSRF-TOKEN` response header for + Quickpay, and the websocket handshake. + **Note for third-party scripts / API consumers**: because tokens are session-bound, the + session cookie (`connect.sid`) must now be carried alongside the `_csrf` cookie and the + token header — a token without its session no longer validates. Handshake against `GET /` + (or any non-static route): static-served paths such as `/rtl/` do not mint CSRF cookies. + If a token goes stale (destroyed or expired session, or an RTL restart), the 403 response + re-mints fresh `XSRF-TOKEN`/`_csrf` cookies, so retrying with the new token succeeds. + +- **Drop the `crypto-browserify` polyfill chain by moving 2FA TOTP to WebCrypto** + ([#1644](https://github.com/Ride-The-Lightning/RTL/pull/1644), closes + [#1634](https://github.com/Ride-The-Lightning/RTL/issues/1634)). + The frontend build pulled in the browser polyfills `crypto-browserify`, `stream-browserify` + and `vm-browserify` (mapped in via `tsconfig.json` `paths`) solely because `otplib`'s + `@otplib/plugin-crypto` requires Node's `crypto`. That chain carried the last remaining + production `npm audit` findings — the `elliptic` advisory (GHSA-848j-6mx2-7j84, no fixed + release) plus `browserify-sign`/`create-ecdh`. The two-factor-auth settings dialog — the only + browser consumer of `otplib` — now uses a small WebCrypto-based TOTP service + (`src/app/shared/services/totp.service.ts`, RFC 6238: HMAC-SHA1, 6 digits, 30s step) instead, + so `otplib` is no longer bundled and the three polyfills and their `tsconfig` path mappings are + removed. The backend still verifies login tokens with `otplib`, and the new service is a + byte-for-byte match for it (verified against otplib and the RFC 6238 test vectors), so existing + authenticator enrollments keep working unchanged. `token.check()` becomes async (WebCrypto's + digest API is promise-based); the dialog's verify handler was updated accordingly. **Production + `npm audit` now reports zero vulnerabilities** (down from 13, incl. 2 critical, at the start of + this dependency-cleanup series). Verified against the docker regtest fixture: enrolling a 2FA + secret generated by the new service, confirming the backend's `otplib` accepts a token it + produces at login, and rejecting wrong/absent tokens — plus a unit spec covering the RFC 6238 + vectors, `keyuri` parity, and base32 round-tripping, both API suites, and the full frontend + spec suite (204 specs). + +- **Rebuild the compiled CLN channels controller to match its source** + ([#1631](https://github.com/Ride-The-Lightning/RTL/pull/1631)). + The #1606 fix updated `server/controllers/cln/channels.ts` to mirror `peer_connected` onto the + legacy `connected` field, but the committed compiled artifact + `backend/controllers/cln/channels.js` was never regenerated, so it lagged its source. Rebuilt it + so the committed backend output includes the connected-mirror line. + +## Developer Tooling + +- **Link the release notes from the README for discoverability** + ([#1646](https://github.com/Ride-The-Lightning/RTL/pull/1646)). + The `release-notes/` folder was not referenced anywhere — no README link, workflow, or + script — so it was effectively undiscoverable. The README's intro navigation now links to + it (`[Release Notes](../release-notes)`, alongside the existing docs links), so the + per-release notes are reachable from the repo homepage. The folder stays at the repo root + (release history is content, not `.github/` repo-meta). + +- **Documented the Dependabot / dependency-update process in CONTRIBUTING.md** + ([#1636](https://github.com/Ride-The-Lightning/RTL/pull/1636)). + Dependabot's security PRs target `master` and are never merged individually — they are + resolved in batch dependency-update PRs against the current release branch (as done in + #1633). That process was previously undocumented. CONTRIBUTING.md now has a "Handling + Dependabot PRs" section covering the full flow: collecting targets (including in-range + fixes hidden by exact pins), applying bumps with Angular in lockstep, regenerating the + lockfile from scratch, rebuilding and committing the compiled artifacts, verification, + and tracking deprecated packages that need code-level replacement in dedicated issues. + +- **Rebuilt the regtest docker fixture** + ([#1621](https://github.com/Ride-The-Lightning/RTL/pull/1621)). + The `docker/` dev setup had been unable to start since February 2021 — a broken `boltz` service + (undeclared `BOLTZ_*` variables, a non-existent build context, and undeclared volumes) made + Compose reject the whole project, so even `docker compose up -d bitcoind` failed. It was replaced + with a working regtest network: `bitcoind` 30.0 + three LND 0.20.0-beta nodes + (alice → bob → carol, so RTL's routing/forwarding screens have data) + RTL, all using Polar's + multi-arch images (nothing built locally; works on arm64), plus a deterministic `seed.sh`. The + Core Lightning node below was later added on top of this fixture. + +- **Added a Core Lightning node to the regtest docker fixture** + ([#1625](https://github.com/Ride-The-Lightning/RTL/pull/1625)). + The `docker/` fixture now runs a `cln` node (official `elementsproject/lightningd` image) + alongside the three LND nodes, wired to RTL over clnrest with rune auth, and the seed opens + a `cln→alice` channel. This gives RTL's Core Lightning screens a real backend for local + development and testing — it was used to verify the CLN channel-connection fix above + end-to-end. See `docker/README.md`. + +- **Added an Eclair node to the regtest docker fixture** + ([#1632](https://github.com/Ride-The-Lightning/RTL/pull/1632)). + The `docker/` fixture now runs an `eclair` node alongside the LND and Core Lightning nodes, + completing backend coverage of all three implementations RTL supports. RTL talks to its HTTP + API with basic auth (`lnApiPassword`), and the seed opens an `eclair→bob` channel plus + payments and an open invoice so RTL's Eclair screens have data. Polar's multi-arch + `polarlightning/eclair` image is used because the official `acinq/eclair` image is amd64-only + and its versioned tags are years stale. Since Eclair drives a bitcoind wallet rather than its + own, an init container creates a dedicated `eclair` wallet before the node starts — otherwise + it would attach to the fixture's mining wallet. A `bin/e-cli` helper wraps `eclair-cli`. diff --git a/server/controllers/cln/channels.ts b/server/controllers/cln/channels.ts index 4fd52cd1..dce63045 100644 --- a/server/controllers/cln/channels.ts +++ b/server/controllers/cln/channels.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { getAlias } from './network.js'; @@ -21,6 +21,11 @@ export const listPeerChannels = (req, res, next) => { const getPeerAliasesTasks = body.channels.map((channel) => () => { channel.to_them_msat = channel.total_msat - channel.to_us_msat; channel.balancedness = (channel.total_msat === 0) ? 1 : (1 - Math.abs((channel.to_us_msat - channel.to_them_msat) / channel.total_msat)).toFixed(3); + // listpeerchannels reports connection state as peer_connected. Mirror it onto the + // documented legacy 'connected' field (see the Channel model) as a real boolean, so + // any backward-compat consumer of this endpoint gets a defined true/false rather than + // undefined when peer_connected is absent (issue #1606). + channel.connected = !!channel.peer_connected; return getAlias(req.session.selectedNode, channel, 'peer_id'); }); common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { diff --git a/server/controllers/cln/getInfo.ts b/server/controllers/cln/getInfo.ts index ac311a74..79b93384 100644 --- a/server/controllers/cln/getInfo.ts +++ b/server/controllers/cln/getInfo.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { CLWSClient, CLWebSocketClient } from './webSocketClient.js'; diff --git a/server/controllers/cln/invoices.ts b/server/controllers/cln/invoices.ts index 225ceeed..be729498 100644 --- a/server/controllers/cln/invoices.ts +++ b/server/controllers/cln/invoices.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; diff --git a/server/controllers/cln/network.ts b/server/controllers/cln/network.ts index 03d30f04..8a107c96 100644 --- a/server/controllers/cln/network.ts +++ b/server/controllers/cln/network.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; @@ -6,7 +6,11 @@ import { SelectedNode } from '../../models/config.model.js'; let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; -const aliasCache = new Map(); +// Alias cache: peerId -> { alias, ts }. Bounded by a TTL so an updated node alias is picked +// up without an RTL restart, and by a max size so it can't grow unbounded (evicts oldest). +const ALIAS_CACHE_TTL = 6 * 60 * 60 * 1000; // 6 hours +const ALIAS_CACHE_MAX = 5000; +const aliasCache = new Map(); export const getRoute = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Getting Network Routes..' }); @@ -16,9 +20,18 @@ export const getRoute = (req, res, next) => { options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Network Routes Received', data: body }); - return Promise.all(body.route?.map((rt) => getAlias(req.session.selectedNode, rt, 'id'))).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Network Routes with Alias Received', data: body }); - res.status(200).json(body || []); + // Resolve hop aliases with a bounded number of concurrent listnodes calls, matching the + // peers/channels paths, so a long route can't storm clnrest (#1501). + const getRouteAliasesTasks = (body.route || []).map((rt) => () => getAlias(req.session.selectedNode, rt, 'id')); + common.runWithConcurrencyLimit(getRouteAliasesTasks, 20, () => { + // Guard the response-send: the limiter invokes this outside the surrounding .catch. + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Network Routes with Alias Received', data: body }); + res.status(200).json(body || []); + } catch (e) { + const err = common.handleError(e, 'Network', 'Query Routes Error', req.session.selectedNode); + if (!res.headersSent) { res.status(err.statusCode).json({ message: err.message, error: err.error }); } + } }); }).catch((errRes) => { const err = common.handleError(errRes, 'Network', 'Query Routes Error', req.session.selectedNode); @@ -87,18 +100,34 @@ export const getAlias = (selNode: SelectedNode, peer: any, id: string) => { return Promise.resolve(peer); } - if (aliasCache.has(peerId)) { - peer.alias = aliasCache.get(peerId)!; + const cached = aliasCache.get(peerId); + if (cached && (Date.now() - cached.ts) < ALIAS_CACHE_TTL) { + peer.alias = cached.alias; return Promise.resolve(peer); } - options.url = selNode.settings.lnServerUrl + '/v1/listnodes'; - options.body = { id: peerId }; + // Build a self-contained request from the selected node's own auth options rather than the + // shared module-level 'options', which is only set by a prior network.ts endpoint call. That + // coupling meant a cold Peers/route lookup (no prior network call) dereferenced a null 'options' + // and threw; now that the limiter swallows per-task throws, that surfaced as a 200 with every + // alias unset (#1501 review F1). selNode.authentication.options is guaranteed present here + // because every caller runs getOptions() first. + const nodeOptions = selNode.authentication?.options; + if (!nodeOptions || !nodeOptions.headers) { + peer.alias = peerId.substring(0, 20); + return Promise.resolve(peer); + } + const aliasOptions = { ...nodeOptions, method: 'POST', url: selNode.settings.lnServerUrl + '/v1/listnodes', body: { id: peerId }, json: true, qs: {} }; + delete aliasOptions.form; - return request.post(options).then((body) => { + return request.post(aliasOptions).then((body) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Network', msg: 'Peer Alias Finished', data: body }); const alias = body.nodes?.[0]?.alias || peerId.substring(0, 20); - aliasCache.set(peerId, alias); + // Re-insert so a refreshed entry moves to the most-recent position, then evict the + // oldest if we're over the cap (Map preserves insertion order). + aliasCache.delete(peerId); + aliasCache.set(peerId, { alias, ts: Date.now() }); + if (aliasCache.size > ALIAS_CACHE_MAX) { aliasCache.delete(aliasCache.keys().next().value); } peer.alias = alias; return peer; }).catch((errRes) => { diff --git a/server/controllers/cln/offers.ts b/server/controllers/cln/offers.ts index a515db41..9662c1e8 100644 --- a/server/controllers/cln/offers.ts +++ b/server/controllers/cln/offers.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { Database, DatabaseService } from '../../utils/database.js'; diff --git a/server/controllers/cln/onchain.ts b/server/controllers/cln/onchain.ts index 0495499b..d7cce50c 100644 --- a/server/controllers/cln/onchain.ts +++ b/server/controllers/cln/onchain.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; diff --git a/server/controllers/cln/payments.ts b/server/controllers/cln/payments.ts index fbf424aa..9553af31 100644 --- a/server/controllers/cln/payments.ts +++ b/server/controllers/cln/payments.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { Database, DatabaseService } from '../../utils/database.js'; diff --git a/server/controllers/cln/peers.ts b/server/controllers/cln/peers.ts index 2772cf40..8106bbb4 100644 --- a/server/controllers/cln/peers.ts +++ b/server/controllers/cln/peers.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { getAlias } from './network.js'; @@ -15,9 +15,20 @@ export const getPeers = (req, res, next) => { request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers List Received', data: body }); const peers = !body.peers ? [] : body.peers; - return Promise.all(peers?.map((peer) => getAlias(req.session.selectedNode, peer, 'id'))).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); - res.status(200).json(body.peers || []); + // Resolve peer aliases with a bounded number of concurrent listnodes calls. An unbounded + // Promise.all here fires one request per peer at once, which overwhelms clnrest on nodes + // with many peers and fails with "Resource temporarily unavailable (os error 11)" (#1501). + const getPeerAliasesTasks = peers.map((peer) => () => getAlias(req.session.selectedNode, peer, 'id')); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { + // The limiter invokes this outside the surrounding .then/.catch chain, so guard the + // response-send: a throw here would otherwise be an unhandled rejection with no response. + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); + res.status(200).json(body.peers || []); + } catch (e) { + const err = common.handleError(e, 'Peers', 'List Peers Error', req.session.selectedNode); + if (!res.headersSent) { res.status(err.statusCode).json({ message: err.message, error: err.error }); } + } }); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'List Peers Error', req.session.selectedNode); @@ -37,8 +48,18 @@ export const postPeer = (req, res, next) => { listOptions.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listpeers'; request.post(listOptions).then((listPeersRes) => { const peers = listPeersRes && listPeersRes.peers ? common.newestOnTop(listPeersRes.peers, 'id', connectRes.id) : []; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: peers }); - res.status(201).json(peers); + // Resolve aliases (bounded) for the returned peers so a freshly connected peer shows its + // alias rather than a raw node id, matching getPeers and the LND postPeer path (#1629 F5). + const getPeerAliasesTasks = peers.map((peer) => () => getAlias(req.session.selectedNode, peer, 'id')); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: peers }); + res.status(201).json(peers); + } catch (e) { + const err = common.handleError(e, 'Peers', 'Connect Peer Error', req.session.selectedNode); + if (!res.headersSent) { res.status(err.statusCode).json({ message: err.message, error: err.error }); } + } + }); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'Connect Peer Error', req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); diff --git a/server/controllers/cln/utility.ts b/server/controllers/cln/utility.ts index 2949d40d..dbcb8bca 100644 --- a/server/controllers/cln/utility.ts +++ b/server/controllers/cln/utility.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; @@ -42,7 +42,7 @@ export const verifyMessage = (req, res, next) => { if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/checkmessage'; options.body = req.body; - request.post(options, (error, response, body) => { + request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Message Verified', data: body }); res.status(201).json(body); }).catch((errRes) => { diff --git a/server/controllers/eclair/channels.ts b/server/controllers/eclair/channels.ts index 733ad381..24dcf4ce 100644 --- a/server/controllers/eclair/channels.ts +++ b/server/controllers/eclair/channels.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; @@ -55,7 +55,10 @@ export const getChannels = (req, res, next) => { options.form = req.query; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Channels Node Id', data: options.form }); } - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Options', data: options }); + // Log the call's shape only. Eclair authenticates with HTTP basic auth, so the options + // object carries the node's lnApiPassword in its authorization header, and node logs are + // routinely shared when debugging. + logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Options', data: { url: options.url, form: options.form } }); if (common.read_dummy_data) { common.getDummyData('Channels', req.session.selectedNode.lnImplementation).then((data) => { res.status(200).json(data); }); } else { @@ -68,7 +71,7 @@ export const getChannels = (req, res, next) => { }); } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Empty Channels List Received' }); - res.status(200).json([]); + return res.status(200).json([]); } }). catch((errRes) => { diff --git a/server/controllers/eclair/fees.ts b/server/controllers/eclair/fees.ts index afd2b2ed..19a25f4f 100644 --- a/server/controllers/eclair/fees.ts +++ b/server/controllers/eclair/fees.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; diff --git a/server/controllers/eclair/getInfo.ts b/server/controllers/eclair/getInfo.ts index 67f6c0de..3fda9d46 100644 --- a/server/controllers/eclair/getInfo.ts +++ b/server/controllers/eclair/getInfo.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { ECLWSClient, ECLWebSocketClient } from './webSocketClient.js'; diff --git a/server/controllers/eclair/invoices.ts b/server/controllers/eclair/invoices.ts index 372b4c24..a6f80ab5 100644 --- a/server/controllers/eclair/invoices.ts +++ b/server/controllers/eclair/invoices.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; diff --git a/server/controllers/eclair/network.ts b/server/controllers/eclair/network.ts index a9cf0736..ac89a89b 100644 --- a/server/controllers/eclair/network.ts +++ b/server/controllers/eclair/network.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; diff --git a/server/controllers/eclair/onchain.ts b/server/controllers/eclair/onchain.ts index 4da0b24a..b2f9b001 100644 --- a/server/controllers/eclair/onchain.ts +++ b/server/controllers/eclair/onchain.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; diff --git a/server/controllers/eclair/payments.ts b/server/controllers/eclair/payments.ts index 80339325..921f386e 100644 --- a/server/controllers/eclair/payments.ts +++ b/server/controllers/eclair/payments.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; @@ -89,7 +89,7 @@ export const queryPaymentRoute = (req, res, next) => { }); } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Empty Payment Route Information Received' }); - res.status(200).json({ routes: [] }); + return res.status(200).json({ routes: [] }); } }).catch((errRes) => { const err = common.handleError(errRes, 'Payments', 'Query Route Error', req.session.selectedNode); diff --git a/server/controllers/eclair/peers.ts b/server/controllers/eclair/peers.ts index 2690774d..a0712a75 100644 --- a/server/controllers/eclair/peers.ts +++ b/server/controllers/eclair/peers.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; @@ -42,7 +42,7 @@ export const getPeers = (req, res, next) => { }); } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Empty Peers Received' }); - res.status(200).json([]); + return res.status(200).json([]); } }). catch((errRes) => { @@ -91,7 +91,7 @@ export const connectPeer = (req, res, next) => { res.status(201).json(peers); }); } else { - res.status(201).json([]); + return res.status(201).json([]); } }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'Connect Peer Error', req.session.selectedNode); diff --git a/server/controllers/lnd/balance.ts b/server/controllers/lnd/balance.ts index fde5efa8..0cc6a3d6 100644 --- a/server/controllers/lnd/balance.ts +++ b/server/controllers/lnd/balance.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; diff --git a/server/controllers/lnd/channels.ts b/server/controllers/lnd/channels.ts index b5e104d9..7bbdfbe0 100644 --- a/server/controllers/lnd/channels.ts +++ b/server/controllers/lnd/channels.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; @@ -6,10 +6,10 @@ let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; -export const getAliasForChannel = (selNode: SelectedNode, channel) => { +export const getAliasForChannel = (selNode: SelectedNode, channel, requestOptions) => { const pubkey = (channel.remote_pubkey) ? channel.remote_pubkey : (channel.remote_node_pub) ? channel.remote_node_pub : ''; - options.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; - return request(options).then((aliasBody) => { + requestOptions.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; + return request(requestOptions).then((aliasBody) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Channels', msg: 'Alias Received', data: aliasBody.node.alias }); channel.remote_alias = aliasBody.node.alias && aliasBody.node.alias !== '' ? aliasBody.node.alias : aliasBody.node.pub_key.slice(0, 20); return channel; @@ -31,20 +31,23 @@ export const getAllChannels = (req, res, next) => { request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Channels List Received', data: body }); if (body.channels) { - return Promise.all( - body.channels?.map((channel) => { - local = (channel.local_balance) ? +channel.local_balance : 0; - remote = (channel.remote_balance) ? +channel.remote_balance : 0; - total = local + remote; - channel.balancedness = (total === 0) ? 1 : (1 - Math.abs((local - remote) / total)).toFixed(3); - return getAliasForChannel(req.session.selectedNode, channel); - }) - ).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Sorted Channels List Received', data: body }); - return res.status(200).json(body); - }).catch((errRes) => { - const err = common.handleError(errRes, 'Channels', 'Get All Channel Aliases Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); + body.channels.forEach((channel) => { + local = (channel.local_balance) ? +channel.local_balance : 0; + remote = (channel.remote_balance) ? +channel.remote_balance : 0; + total = local + remote; + channel.balancedness = (total === 0) ? 1 : (1 - Math.abs((local - remote) / total)).toFixed(3); + }); + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getChannelAliasesTasks = body.channels.map((channel) => () => getAliasForChannel(selNode, channel, { ...requestOptions })); + common.runWithConcurrencyLimit(getChannelAliasesTasks, 20, () => { + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Sorted Channels List Received', data: body }); + return res.status(200).json(body); + } catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Channels', msg: 'Get All Channel Aliases Error', error: e.message }); + if (!res.headersSent) { res.status(500).json({ message: 'Get All Channel Aliases Error', error: e.message }); } + } }); } else { body.channels = []; @@ -67,27 +70,30 @@ export const getPendingChannels = (req, res, next) => { if (!body.total_limbo_balance) { body.total_limbo_balance = 0; } - const promises = []; + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getPendingAliasesTasks = []; if (body.pending_open_channels && body.pending_open_channels.length > 0) { - body.pending_open_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + body.pending_open_channels?.map((channel) => getPendingAliasesTasks.push(() => getAliasForChannel(selNode, channel.channel, { ...requestOptions }))); } if (body.pending_force_closing_channels && body.pending_force_closing_channels.length > 0) { - body.pending_force_closing_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + body.pending_force_closing_channels?.map((channel) => getPendingAliasesTasks.push(() => getAliasForChannel(selNode, channel.channel, { ...requestOptions }))); } if (body.pending_closing_channels && body.pending_closing_channels.length > 0) { - body.pending_closing_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + body.pending_closing_channels?.map((channel) => getPendingAliasesTasks.push(() => getAliasForChannel(selNode, channel.channel, { ...requestOptions }))); } if (body.waiting_close_channels && body.waiting_close_channels.length > 0) { - body.waiting_close_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + body.waiting_close_channels?.map((channel) => getPendingAliasesTasks.push(() => getAliasForChannel(selNode, channel.channel, { ...requestOptions }))); } - return Promise.all(promises).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Pending Channels List Received', data: body }); - return res.status(200).json(body); - }). - catch((errRes) => { - const err = common.handleError(errRes, 'Channels', 'Get Pending Channel Aliases Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); - }); + common.runWithConcurrencyLimit(getPendingAliasesTasks, 20, () => { + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Pending Channels List Received', data: body }); + return res.status(200).json(body); + } catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Channels', msg: 'Get Pending Channel Aliases Error', error: e.message }); + if (!res.headersSent) { res.status(500).json({ message: 'Get Pending Channel Aliases Error', error: e.message }); } + } + }); }).catch((errRes) => { const err = common.handleError(errRes, 'Channels', 'List Pending Channels Error', req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); @@ -102,17 +108,20 @@ export const getClosedChannels = (req, res, next) => { options.qs = req.query; request(options).then((body) => { if (body.channels && body.channels.length > 0) { - return Promise.all( - body.channels?.map((channel) => { - channel.close_type = (!channel.close_type) ? 'COOPERATIVE_CLOSE' : channel.close_type; - return getAliasForChannel(req.session.selectedNode, channel); - }) - ).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Closed Channels List Received', data: body }); - return res.status(200).json(body); - }).catch((errRes) => { - const err = common.handleError(errRes, 'Channels', 'Get Closed Channel Aliases Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); + body.channels.forEach((channel) => { + channel.close_type = (!channel.close_type) ? 'COOPERATIVE_CLOSE' : channel.close_type; + }); + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getClosedAliasesTasks = body.channels.map((channel) => () => getAliasForChannel(selNode, channel, { ...requestOptions })); + common.runWithConcurrencyLimit(getClosedAliasesTasks, 20, () => { + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Closed Channels List Received', data: body }); + return res.status(200).json(body); + } catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Channels', msg: 'Get Closed Channel Aliases Error', error: e.message }); + if (!res.headersSent) { res.status(500).json({ message: 'Get Closed Channel Aliases Error', error: e.message }); } + } }); } else { body.channels = []; @@ -139,7 +148,7 @@ export const postChannel = (req, res, next) => { if (trans_type === '1') { options.form.target_conf = trans_type_value; } else if (trans_type === '2') { - options.form.sat_per_byte = trans_type_value; + options.form.sat_per_vbyte = trans_type_value; } if (commitment_type) { options.form.commitment_type = commitment_type; @@ -167,9 +176,15 @@ export const closeChannel = (req, res, next) => { const channelpoint = req.params.channelPoint?.replace(':', '/'); options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/' + channelpoint + '?force=' + req.query.force; if (req.query.target_conf) { options.url = options.url + '&target_conf=' + req.query.target_conf; } - if (req.query.sat_per_byte) { options.url = options.url + '&sat_per_byte=' + req.query.sat_per_byte; } + if (req.query.sat_per_vbyte) { options.url = options.url + '&sat_per_vbyte=' + req.query.sat_per_vbyte; } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Closing Channel Options URL', data: options.url }); - request.delete(options); + // Fire-and-forget: LND keeps the close stream open until the closing tx + // confirms, so exempt it from the request timeout; the 202 is already sent, + // so log a rejection instead of letting it crash the process. + request.delete({ ...options, timeout: 0 }).catch((errRes) => { + const err = common.handleError(errRes, 'Channels', 'Close Channel Error', req.session.selectedNode); + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Channels', msg: 'Close Channel Error', error: err }); + }); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Channel Close Requested' }); res.status(202).json({ message: 'Close channel request has been submitted.' }); } catch (error: any) { diff --git a/server/controllers/lnd/channelsBackup.ts b/server/controllers/lnd/channelsBackup.ts index 85c4f13f..80974f65 100644 --- a/server/controllers/lnd/channelsBackup.ts +++ b/server/controllers/lnd/channelsBackup.ts @@ -1,6 +1,6 @@ import * as fs from 'fs'; import { sep } from 'path'; -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; diff --git a/server/controllers/lnd/fees.ts b/server/controllers/lnd/fees.ts index 428b1a41..d722a659 100644 --- a/server/controllers/lnd/fees.ts +++ b/server/controllers/lnd/fees.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { getAllForwardingEvents } from './switch.js'; diff --git a/server/controllers/lnd/getInfo.ts b/server/controllers/lnd/getInfo.ts index 658975ef..f4d09154 100644 --- a/server/controllers/lnd/getInfo.ts +++ b/server/controllers/lnd/getInfo.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { LNDWSClient, LNDWebSocketClient } from './webSocketClient.js'; diff --git a/server/controllers/lnd/graph.ts b/server/controllers/lnd/graph.ts index 6f5ff67b..86d14267 100644 --- a/server/controllers/lnd/graph.ts +++ b/server/controllers/lnd/graph.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; @@ -6,9 +6,9 @@ let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; -export const getAliasFromPubkey = (selNode: SelectedNode, pubkey) => { - options.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; - return request(options).then((res) => { +export const getAliasFromPubkey = (selNode: SelectedNode, pubkey, requestOptions) => { + requestOptions.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; + return request(requestOptions).then((res) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Graph', msg: 'Alias Received', data: res.node.alias }); return res.node.alias; }). @@ -76,27 +76,27 @@ export const getQueryRoutes = (req, res, next) => { options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/graph/routes/' + req.params.destPubkey + '/' + req.params.amount; - if (req.query.outgoing_chan_id) { - options.url = options.url + '?outgoing_chan_id=' + req.query.outgoing_chan_id; - } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Graph', msg: 'Query Routes URL', data: options.url }); request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Graph', msg: 'Query Routes Received', data: body }); if (body.routes && body.routes.length && body.routes.length > 0 && body.routes[0].hops && body.routes[0].hops.length && body.routes[0].hops.length > 0) { - return Promise.all(body.routes[0].hops?.map((hop) => getAliasFromPubkey(req.session.selectedNode, hop.pub_key))). - then((values) => { + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getRouteAliasesTasks = body.routes[0].hops.map((hop) => () => getAliasFromPubkey(selNode, hop.pub_key, { ...requestOptions })); + common.runWithConcurrencyLimit(getRouteAliasesTasks, 20, (values) => { + try { body.routes[0].hops?.map((hop, i) => { hop.hop_sequence = i + 1; - hop.pubkey_alias = values[i]; + hop.pubkey_alias = typeof values[i] === 'string' ? values[i] : 'Unknown'; return hop; }); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Graph Routes with Alias Received', data: body }); res.status(200).json(body); - }). - catch((errRes) => { - const err = common.handleError(errRes, 'Graph', 'Get Query Routes Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); - }); + } catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Graph', msg: 'Get Query Routes Error', error: e.message }); + if (!res.headersSent) { res.status(500).json({ message: 'Get Query Routes Error', error: e.message }); } + } + }); } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Graph Routes Received', data: body }); return res.status(200).json(body); @@ -141,15 +141,19 @@ export const getAliasesForPubkeys = (req, res, next) => { if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } if (req.query.pubkeys) { const pubkeyArr = req.query.pubkeys.split(','); - return Promise.all(pubkeyArr?.map((pubkey) => getAliasFromPubkey(req.session.selectedNode, pubkey))). - then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Node Alias', data: values }); - res.status(200).json(values); - }). - catch((errRes) => { - const err = common.handleError(errRes, 'Graph', 'Get Aliases for Pubkeys Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); - }); + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getAliasesTasks = pubkeyArr.map((pubkey) => () => getAliasFromPubkey(selNode, pubkey, { ...requestOptions })); + common.runWithConcurrencyLimit(getAliasesTasks, 20, (values) => { + try { + const safeValues = values.map((v) => (typeof v === 'string' ? v : 'Unknown')); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Node Alias', data: safeValues }); + res.status(200).json(safeValues); + } catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Graph', msg: 'Get Aliases for Pubkeys Error', error: e.message }); + if (!res.headersSent) { res.status(500).json({ message: 'Get Aliases for Pubkeys Error', error: e.message }); } + } + }); } else { return res.status(200).json([]); } diff --git a/server/controllers/lnd/invoices.ts b/server/controllers/lnd/invoices.ts index 4a9f6adb..3979bcd0 100644 --- a/server/controllers/lnd/invoices.ts +++ b/server/controllers/lnd/invoices.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { LNDWSClient, LNDWebSocketClient } from './webSocketClient.js'; @@ -22,7 +22,7 @@ const extractKeysendMessage = (invoice) => { } } } - return ''; + return invoice.memo || ''; }; export const invoiceLookup = (req, res, next) => { @@ -61,7 +61,7 @@ export const listInvoices = (req, res, next) => { invoice.r_preimage = invoice.r_preimage ? Buffer.from(invoice.r_preimage, 'base64').toString('hex') : ''; invoice.r_hash = invoice.r_hash ? Buffer.from(invoice.r_hash, 'base64').toString('hex') : ''; invoice.description_hash = invoice.description_hash ? Buffer.from(invoice.description_hash, 'base64').toString('hex') : null; - invoice.memo = extractKeysendMessage(invoice) || ''; + invoice.memo = extractKeysendMessage(invoice); }); } logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Sorted Invoices List Received', data: body }); diff --git a/server/controllers/lnd/message.ts b/server/controllers/lnd/message.ts index 864dddd4..f86d81b7 100644 --- a/server/controllers/lnd/message.ts +++ b/server/controllers/lnd/message.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; diff --git a/server/controllers/lnd/newAddress.ts b/server/controllers/lnd/newAddress.ts index cbeb6fc8..ecd1a261 100644 --- a/server/controllers/lnd/newAddress.ts +++ b/server/controllers/lnd/newAddress.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; diff --git a/server/controllers/lnd/payments.ts b/server/controllers/lnd/payments.ts index 211a91f7..11e104ac 100644 --- a/server/controllers/lnd/payments.ts +++ b/server/controllers/lnd/payments.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; @@ -88,6 +88,9 @@ export const paymentLookup = (req, res, next) => { options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/router/track/' + req.params.paymentHash; + // Deliberately keep the wrapper's default timeout here: this holds a + // browser-facing response open while tracking, and payments in flight + // longer than that are delivered via the websocket subscription instead. request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Information Received for ' + req.params.paymentHash, data: body }); res.status(200).json(body.result || body); @@ -106,10 +109,13 @@ export const sendPayment = (req, res, next) => { req.body.last_hop_pubkey = Buffer.from(req.body.last_hop_pubkey, 'hex').toString('base64'); } req.body.amp = req.body.amp ?? false; - req.body.timeout_seconds = req.body.timeout_seconds || 600; + req.body.timeout_seconds = (Number.isFinite(+req.body.timeout_seconds) && +req.body.timeout_seconds > 0) ? +req.body.timeout_seconds : 600; options.form = JSON.stringify(req.body); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'Send Payment Options', data: options.form }); - request.post(options).then((body) => { + // LND ends the stream at timeout_seconds with a FAILURE_REASON_TIMEOUT result; + // give the transport a margin over that so LND's mapped failure always wins + // the race against the wrapper's own timeout. + request.post({ ...options, timeout: (+req.body.timeout_seconds + 60) * 1000 }).then((body) => { const results = body.split('\n').filter(Boolean).map((jsonString) => JSON.parse(jsonString)); body = results.length > 0 ? results[results.length - 1] : { result: { status: 'UNKNOWN' } }; if (body.result.status === 'FAILED') { diff --git a/server/controllers/lnd/peers.ts b/server/controllers/lnd/peers.ts index 0723ea03..3f460b65 100644 --- a/server/controllers/lnd/peers.ts +++ b/server/controllers/lnd/peers.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; @@ -26,9 +26,18 @@ export const getPeers = (req, res, next) => { request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers List Received', data: body }); const peers = !body.peers ? [] : body.peers; - return Promise.all(peers?.map((peer) => getAliasForPeers(req.session.selectedNode, peer))).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); - res.status(200).json(body.peers); + // Bound concurrent alias lookups so a node with many peers can't fire one graph/node + // request per peer at once and overwhelm the backend (parity with the CLN fix, #1501). + const getPeerAliasesTasks = peers.map((peer) => () => getAliasForPeers(req.session.selectedNode, peer)); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { + // Guard the response-send: the limiter invokes this outside the surrounding .catch. + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); + res.status(200).json(body.peers); + } catch (e) { + const err = common.handleError(e, 'Peers', 'List Peers Error', req.session.selectedNode); + if (!res.headersSent) { res.status(err.statusCode).json({ message: err.message, error: err.error }); } + } }); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'List Peers Error', req.session.selectedNode); @@ -51,15 +60,21 @@ export const postPeer = (req, res, next) => { options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/peers'; request(options).then((body) => { const peers = (!body.peers) ? [] : body.peers; - return Promise.all(peers?.map((peer) => getAliasForPeers(req.session.selectedNode, peer))).then((values) => { - if (body.peers) { - body.peers = common.newestOnTop(body.peers, 'pub_key', pubkey); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: body }); + // Bound concurrent alias lookups (parity with the CLN fix, #1501). + const getPeerAliasesTasks = peers.map((peer) => () => getAliasForPeers(req.session.selectedNode, peer)); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { + // Guard the response-send: the limiter invokes this outside the surrounding .catch, and + // this replaced an explicit inner .catch — a throw here must not hang the POST (#1629 F4). + try { + if (body.peers) { + body.peers = common.newestOnTop(body.peers, 'pub_key', pubkey); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: body }); + } + res.status(201).json(body.peers); + } catch (e) { + const err = common.handleError(e, 'Peers', 'Connect Peer Error', req.session.selectedNode); + if (!res.headersSent) { res.status(err.statusCode).json({ message: err.message, error: err.error }); } } - res.status(201).json(body.peers); - }).catch((errRes) => { - const err = common.handleError(errRes, 'Peers', 'Connect Peer Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); }); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'Connect Peer Error', req.session.selectedNode); diff --git a/server/controllers/lnd/switch.ts b/server/controllers/lnd/switch.ts index be755263..5c00044a 100644 --- a/server/controllers/lnd/switch.ts +++ b/server/controllers/lnd/switch.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; diff --git a/server/controllers/lnd/transactions.ts b/server/controllers/lnd/transactions.ts index d92ea3ea..e77e9ee7 100644 --- a/server/controllers/lnd/transactions.ts +++ b/server/controllers/lnd/transactions.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; @@ -28,7 +28,7 @@ export const postTransactions = (req, res, next) => { options.form = { amount: amount, addr: address, - sat_per_byte: fees, + sat_per_vbyte: fees, target_conf: blocks }; if (sendAll) { options.form.send_all = sendAll; } diff --git a/server/controllers/lnd/wallet.ts b/server/controllers/lnd/wallet.ts index 2782cd56..0b4afbd2 100644 --- a/server/controllers/lnd/wallet.ts +++ b/server/controllers/lnd/wallet.ts @@ -1,5 +1,5 @@ import atob from 'atob'; -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; @@ -110,7 +110,7 @@ export const getUTXOs = (req, res, next) => { }; export const bumpFee = (req, res, next) => { - const { txid, outputIndex, targetConf, satPerByte } = req.body; + const { txid, outputIndex, targetConf, satPerVByte } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Bumping Fee..' }); options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } @@ -122,8 +122,8 @@ export const bumpFee = (req, res, next) => { }; if (targetConf) { options.form.target_conf = targetConf; - } else if (satPerByte) { - options.form.sat_per_byte = satPerByte; + } else if (satPerVByte) { + options.form.sat_per_vbyte = satPerVByte; } options.form = JSON.stringify(options.form); request.post(options).then((body) => { diff --git a/server/controllers/lnd/webSocketClient.ts b/server/controllers/lnd/webSocketClient.ts index 09605704..ef3a791b 100644 --- a/server/controllers/lnd/webSocketClient.ts +++ b/server/controllers/lnd/webSocketClient.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import * as fs from 'fs'; import { join } from 'path'; @@ -58,7 +58,9 @@ export class LNDWebSocketClient { public subscribeToInvoice = (options: any, selectedNode: SelectedNode, rHash: string) => { rHash = rHash?.replace(/\+/g, '-')?.replace(/[/]/g, '_'); this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Subscribing to Invoice ' + rHash + ' ..' }); - options.url = selectedNode.settings.lnServerUrl + '/v2/invoices/subscribe/' + rHash; + // Copy the options: the caller may pass the session-cached object, and the + // long poll needs an unbounded timeout without leaking it to other calls. + options = { ...options, url: selectedNode.settings.lnServerUrl + '/v2/invoices/subscribe/' + rHash, timeout: 0 }; request(options).then((msg) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Invoice Information Received for ' + rHash }); if (typeof msg === 'string') { @@ -82,7 +84,9 @@ export class LNDWebSocketClient { public subscribeToPayment = (options: any, selectedNode: SelectedNode, paymentHash: string) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Subscribing to Payment ' + paymentHash + ' ..' }); - options.url = selectedNode.settings.lnServerUrl + '/v2/router/track/' + paymentHash; + // Copy the options: the long poll needs an unbounded timeout without + // leaking it to other calls sharing the object. + options = { ...options, url: selectedNode.settings.lnServerUrl + '/v2/router/track/' + paymentHash, timeout: 0 }; request(options).then((msg) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Payment Information Received for ' + paymentHash }); msg['type'] = 'payment'; diff --git a/server/controllers/shared/RTLConf.ts b/server/controllers/shared/RTLConf.ts index f698db4f..f3755f81 100644 --- a/server/controllers/shared/RTLConf.ts +++ b/server/controllers/shared/RTLConf.ts @@ -1,9 +1,9 @@ import jwt from 'jsonwebtoken'; import * as fs from 'fs'; -import { sep } from 'path'; +import { resolve, sep } from 'path'; import ini from 'ini'; import parseHocon from 'hocon-parser'; -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Database, DatabaseService } from '../../utils/database.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; @@ -81,7 +81,22 @@ export const getCurrencyRates = (req, res, next) => { export const getFile = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting File..' }); - const file = req.query.path ? req.query.path : (req.session.selectedNode.settings.channelBackupPath + sep + 'channel-' + req.query.channel?.replace(':', '-') + '.bak'); + const channelBackupPath = req.session.selectedNode.settings.channelBackupPath; + let file = ''; + if (req.query.path) { + // The UI only ever requests channel backup files; contain caller paths to the node's + // backup directory so this endpoint cannot read the config, macaroons or the SSO + // cookie (getConfig serves the config file masked; this must not bypass that). + const resolved = resolve(req.query.path); + if (resolved !== resolve(channelBackupPath) && !resolved.startsWith(resolve(channelBackupPath) + sep)) { + logger.log({ selectedNode: req.session.selectedNode, level: 'WARN', fileName: 'RTLConf', msg: 'Blocked file read outside the channel backup directory', data: req.query.path }); + const err = common.handleError({ statusCode: 403, message: 'Reading File Error', error: 'File path is outside the channel backup directory' }, 'RTLConf', 'Reading File Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + } + file = resolved; + } else { + file = channelBackupPath + sep + 'channel-' + req.query.channel?.replace(':', '-') + '.bak'; + } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'RTLConf', msg: 'Channel Point', data: req.query.channel }); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'RTLConf', msg: 'File Path', data: file }); fs.readFile(file, 'utf8', (errRes, data) => { @@ -91,7 +106,8 @@ export const getFile = (req, res, next) => { const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); return res.status(err.statusCode).json({ message: err.error, error: err.error }); } else { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'File Data Received', data: data }); + // File contents can carry node credentials; never write them to the log. + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'File Data Received' }); res.status(200).json(data); } }); @@ -112,7 +128,6 @@ export const getApplicationSettings = (req, res, next) => { delete appConfData.SSO.rtlCookiePath; delete appConfData.SSO.cookieValue; delete appConfData.SSO.logoutRedirectLink; - appConfData.secret2FA = ''; appConfData.dbDirectoryPath = ''; appConfData.nodes[selNodeIdx].authentication = new Authentication(); delete appConfData.nodes[selNodeIdx].settings.bitcoindConfigPath; @@ -201,28 +216,47 @@ export const getConfig = (req, res, next) => { export const updateNodeSettings = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Node Settings..' }); const RTLConfFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; - const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); - const node = config.nodes.find((node) => (node.index === req.session.selectedNode.index)); - if (node && node.settings) { - node.settings = req.body.settings; - if (req.body.authentication.boltzMacaroonPath) { - node.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; - } else { - delete node.authentication.boltzMacaroonPath; - } - if (req.body.authentication.swapMacaroonPath) { - node.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; - } else { - delete node.authentication.swapMacaroonPath; - } - } try { + const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); + const node = config.nodes.find((node) => (node.index === req.session.selectedNode.index)); + if (node && node.settings) { + // channelBackupPath anchors getFile's containment root and is documented as a + // config-file-only setting; accepting it from the API would let the caller being + // contained choose the containment base. Pin it to the server-held value. + const serverChannelBackupPath = node.settings.channelBackupPath; + node.settings = { ...node.settings, ...req.body.settings }; + node.settings.channelBackupPath = serverChannelBackupPath; + if (node.authentication && req.body.authentication) { + if (req.body.authentication.boltzMacaroonPath) { + node.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; + } else { + delete node.authentication.boltzMacaroonPath; + } + if (req.body.authentication.swapMacaroonPath) { + node.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; + } else { + delete node.authentication.swapMacaroonPath; + } + } + } fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); const selectedNode = common.findNode(req.session.selectedNode.index); if (selectedNode && selectedNode.settings) { - selectedNode.settings = req.body.settings; - selectedNode.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; - selectedNode.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; + const serverChannelBackupPath = selectedNode.settings.channelBackupPath; + selectedNode.settings = { ...selectedNode.settings, ...req.body.settings }; + selectedNode.settings.channelBackupPath = serverChannelBackupPath; + if (selectedNode.authentication && req.body.authentication) { + if (req.body.authentication.boltzMacaroonPath) { + selectedNode.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; + } else { + delete selectedNode.authentication.boltzMacaroonPath; + } + if (req.body.authentication.swapMacaroonPath) { + selectedNode.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; + } else { + delete selectedNode.authentication.swapMacaroonPath; + } + } common.replaceNode(req, selectedNode); } let responseNode = JSON.parse(JSON.stringify(common.selectedNode)); @@ -240,17 +274,79 @@ export const updateApplicationSettings = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Application Settings..' }); const RTLConfFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; try { - const config = common.addSecureData(req.body); - common.appConfig = JSON.parse(JSON.stringify(config)); - delete config.selectedNodeIndex; - delete config.enable2FA; - delete config.allowPasswordUpdate; - delete config.rtlConfFilePath; - delete config.rtlPass; - fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); - const newConfig = JSON.parse(JSON.stringify(common.appConfig)); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Application Settings Updated', data: common.maskPasswords(newConfig) }); - res.status(201).json(common.removeSecureData(newConfig)); + const oldConfig = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); + const config = common.addSecureData(JSON.parse(JSON.stringify(req.body))); + const runtimeConfig = oldConfig; + Object.keys(config).forEach((key) => { + if (key !== 'nodes') { + runtimeConfig[key] = config[key]; + } + }); + if (config.nodes && config.nodes.length > 0) { + const oldNodes = (common.appConfig.nodes && common.appConfig.nodes.length > 0) ? common.appConfig.nodes : (oldConfig.nodes || []); + const newNodesMap = new Map(config.nodes.map((node) => [node.index, node])); + const updatedAndExistingNodes = oldNodes.map((oldNode) => { + const newNode = newNodesMap.get(oldNode.index); + newNodesMap.delete(oldNode.index); + const node = newNode ? { + ...oldNode, + ...newNode, + authentication: { ...(oldNode.authentication || {}), ...(newNode.authentication || {}) }, + settings: { ...(oldNode.settings || {}), ...(newNode.settings || {}) } + } : { + ...oldNode, + authentication: { ...(oldNode.authentication || {}) }, + settings: { ...(oldNode.settings || {}) } + }; + return node; + }); + const newOnlyNodes = [...newNodesMap.values()].map((newNode) => JSON.parse(JSON.stringify(newNode))); + runtimeConfig.nodes = [...updatedAndExistingNodes, ...newOnlyNodes]; + } + const newAppConfig = JSON.parse(JSON.stringify({ + ...runtimeConfig, + selectedNodeIndex: config.selectedNodeIndex !== undefined ? + config.selectedNodeIndex : common.appConfig.selectedNodeIndex, + enable2FA: config.enable2FA !== undefined ? + config.enable2FA : common.appConfig.enable2FA, + allowPasswordUpdate: config.allowPasswordUpdate !== undefined ? + config.allowPasswordUpdate : common.appConfig.allowPasswordUpdate, + rtlConfFilePath: common.appConfig.rtlConfFilePath, + rtlPass: common.appConfig.rtlPass + })); + const fileConfig = JSON.parse(JSON.stringify(newAppConfig)); + delete fileConfig.selectedNodeIndex; + delete fileConfig.enable2FA; + delete fileConfig.allowPasswordUpdate; + delete fileConfig.rtlConfFilePath; + delete fileConfig.rtlPass; + delete fileConfig.multiPass; + // Runtime-only SSO bearer; must not be persisted with the config. + if (fileConfig.SSO) { delete fileConfig.SSO.cookieValue; } + fileConfig.nodes?.forEach((node) => { + delete node.authentication?.options; + delete node.authentication?.runeValue; + }); + // Persist atomically (temp file + rename, so a mid-write failure cannot truncate the + // config) and only then adopt the new runtime config, so a failed write leaves the + // process on the old one. The temp file inherits the existing file's mode so a + // hardened 0600 is not silently downgraded; a fresh file gets 0600. Symlinks and + // single-file bind mounts cannot be renamed over — fall back to an in-place write, + // which preserves inode and mode. + const tempConfigFile = RTLConfFile + '.tmp'; + try { + fs.writeFileSync(tempConfigFile, JSON.stringify(fileConfig, null, 2), 'utf-8'); + fs.chmodSync(tempConfigFile, fs.existsSync(RTLConfFile) ? (fs.statSync(RTLConfFile).mode & 0o777) : 0o600); + fs.renameSync(tempConfigFile, RTLConfFile); + } catch { + fs.rmSync(tempConfigFile, { force: true, recursive: true }); + fs.writeFileSync(RTLConfFile, JSON.stringify(fileConfig, null, 2), 'utf-8'); + } + common.appConfig = newAppConfig; + // removeSecureData clones, so the runtime config is untouched; it strips rtlPass, + // the TOTP seed, the SSO cookie and all per-node credentials symmetrically. + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Application Settings Updated', data: common.removeSecureData(newAppConfig) }); + res.status(201).json(common.removeSecureData(newAppConfig)); } catch (errRes) { const errMsg = 'Update Default Node Error'; const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); diff --git a/server/controllers/shared/authenticate.ts b/server/controllers/shared/authenticate.ts index 21ca9615..e8917e67 100644 --- a/server/controllers/shared/authenticate.ts +++ b/server/controllers/shared/authenticate.ts @@ -21,6 +21,9 @@ const loginInterval = setInterval(() => { } } }, LOCKING_PERIOD); +// The sweeper must not hold the event loop open on its own (it would keep +// `node --test` or a CLI invocation alive for the full 30-minute period). +loginInterval.unref(); export const getFailedInfo = (reqIP, currentTime) => { let failed = { count: 0, lastTried: currentTime }; @@ -49,10 +52,30 @@ const handleMultipleFailedAttemptsError = (failed, currentTime, errMsg) => { export const verifyToken = (twoFAToken) => !!(common.appConfig.secret2FA && common.appConfig.secret2FA !== '' && (otplib as any).authenticator.check(twoFAToken, common.appConfig.secret2FA)); +// Mirrors isAuthenticated: a request carrying a valid session JWT has already +// completed 2FA at login, since tokens are only minted after verification when +// 2FA is enabled. Used to exempt in-app re-authorization (e.g. the password +// prompt before on-chain sends) from the TOTP requirement without opening a +// password-only path. +const hasValidAuthToken = (req) => { + try { + const token = req.headers.authorization.split(' ')[1]; + jwt.verify(token, common.secret_key); + return true; + } catch (error) { + return false; + } +}; + export const authenticateUser = (req, res, next) => { const { authenticateWith, authenticationValue, twoFAToken } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'Authenticating User..' }); - if (+common.appConfig.SSO.rtlSSO) { + if (!!common.appConfig.disableAuth) { + if (!req.session.selectedNode) { req.session.selectedNode = common.selectedNode; } + const token = jwt.sign({ user: 'AUTH_DISABLED_USER' }, common.secret_key); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'User Disabled Authentication' }); + res.status(200).json({ token: token }); + } else if (+common.appConfig.SSO.rtlSSO) { if (authenticateWith === 'JWT' && jwt.verify(authenticationValue, common.secret_key)) { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'User Authenticated' }); res.status(406).json({ message: 'SSO Authentication Error', error: 'Login with Password is not allowed with SSO.' }); @@ -75,8 +98,15 @@ export const authenticateUser = (req, res, next) => { const failed = getFailedInfo(reqIP, currentTime); const password = authenticationValue; if (common.appConfig.rtlPass === password && failed.count < ALLOWED_LOGIN_ATTEMPTS) { - if (twoFAToken && twoFAToken !== '') { - if (!verifyToken(twoFAToken)) { + // Gate on the server-side 2FA configuration, not on the request: when 2FA is + // enabled a token is mandatory, so a request omitting twoFAToken is rejected + // instead of silently skipping verification. The login UI keys its token prompt + // on enable2FA, so both fields are consulted — a stale secret with 2FA disabled + // must not lock the operator out of a UI that never prompts for a token. + // Requests with a valid session token (in-app re-authorization, e.g. the + // password prompt before on-chain sends) are exempt from the TOTP requirement. + if (common.appConfig.enable2FA && common.appConfig.secret2FA && common.appConfig.secret2FA !== '' && !hasValidAuthToken(req)) { + if (typeof twoFAToken !== 'string' || twoFAToken === '' || !verifyToken(twoFAToken)) { logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Authenticate', msg: 'Invalid Token! Failed IP ' + reqIP, error: { error: 'Invalid token.' } }); failed.count = failed.count + 1; failed.lastTried = currentTime; diff --git a/server/controllers/shared/boltz.ts b/server/controllers/shared/boltz.ts index 90da9d6e..ec11267a 100644 --- a/server/controllers/shared/boltz.ts +++ b/server/controllers/shared/boltz.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; diff --git a/server/controllers/shared/loop.ts b/server/controllers/shared/loop.ts index b86a81bd..ede3b14d 100644 --- a/server/controllers/shared/loop.ts +++ b/server/controllers/shared/loop.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; diff --git a/server/models/config.model.ts b/server/models/config.model.ts index c9761292..d6ee76cf 100644 --- a/server/models/config.model.ts +++ b/server/models/config.model.ts @@ -55,6 +55,7 @@ export class ApplicationConfig { public selectedNodeIndex: number, public dbDirectoryPath?: string, public rtlConfFilePath?: string, + public disableAuth?: boolean, public rtlPass?: string, public multiPass?: string, public multiPassHashed?: string, diff --git a/server/routes/shared/authenticate.ts b/server/routes/shared/authenticate.ts index e4785b1f..8359eefa 100644 --- a/server/routes/shared/authenticate.ts +++ b/server/routes/shared/authenticate.ts @@ -1,12 +1,15 @@ import exprs from 'express'; const { Router } = exprs; import { authenticateUser, verifyToken, resetPassword, logoutUser } from '../../controllers/shared/authenticate.js'; +import { isAuthenticated } from '../../utils/authCheck.js'; const router = Router(); router.post('/', authenticateUser); router.post('/token', verifyToken); -router.post('/reset', resetPassword); +// Password changes mint a fresh session token, so the route requires an existing +// authenticated session; the frontend interceptor attaches it for the settings UI. +router.post('/reset', isAuthenticated, resetPassword); router.get('/logout', logoutUser); export default router; diff --git a/server/utils/app.ts b/server/utils/app.ts index 4c3c9e28..7f0373a8 100644 --- a/server/utils/app.ts +++ b/server/utils/app.ts @@ -59,18 +59,22 @@ export class ExpressApplication { this.app.use(this.common.baseHref + '/api/ecl', eclRoutes); this.app.use(this.common.baseHref, express.static(join(this.directoryName, '../..', 'frontend'))); this.app.use((req: any, res, next) => { - res.cookie('XSRF-TOKEN', req.csrfToken ? req.csrfToken() : (req.cookies && req.cookies._csrf) ? req.cookies._csrf : ''); // RTL Angular Frontend - res.setHeader('XSRF-TOKEN', req.csrfToken ? req.csrfToken() : (req.cookies && req.cookies._csrf) ? req.cookies._csrf : ''); // RTL Quickpay JQuery + // Generate the token once per request: with csrf-csrf every call mints a + // new token on a first visit, so calling twice would desync the cookie + // from the header and the _csrf cookie it must match. + const csrfToken = req.csrfToken ? req.csrfToken() : (req.cookies && req.cookies._csrf) ? req.cookies._csrf : ''; + res.cookie('XSRF-TOKEN', csrfToken); // RTL Angular Frontend + res.setHeader('XSRF-TOKEN', csrfToken); // RTL Quickpay JQuery res.sendFile(join(this.directoryName, '../..', 'frontend', 'index.html')); }); this.app.use((err, req, res, next) => { - this.handleApplicationErrors(err, res); + this.handleApplicationErrors(err, req, res); next(); }); this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'App', msg: 'Application Routes Set' }); }; - public handleApplicationErrors = (err, res) => { + public handleApplicationErrors = (err, req, res) => { switch (err.code) { case 'EACCES': this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'Server requires elevated privileges' }); @@ -85,6 +89,15 @@ export class ExpressApplication { res.status(401).send('Server is down/locked.'); break; case 'EBADCSRFTOKEN': + // Re-mint the token for the current session so a client retry succeeds + // (the stale one may be bound to a destroyed session or rotated secret). + try { + const csrfToken = CSRF.reMintToken(req, res); + res.cookie('XSRF-TOKEN', csrfToken); + res.setHeader('XSRF-TOKEN', csrfToken); + } catch (csrfError) { + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'CSRF Token Re-Mint Failed', error: csrfError }); + } this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'Invalid CSRF token. Form tempered.' }); res.status(403).send('Invalid CSRF token, form tempered.'); break; diff --git a/server/utils/authCheck.ts b/server/utils/authCheck.ts index 16306ef7..bc48f6fb 100644 --- a/server/utils/authCheck.ts +++ b/server/utils/authCheck.ts @@ -1,11 +1,11 @@ import jwt from 'jsonwebtoken'; -import csurf from 'csurf/index.js'; +import CSRF from './csrf.js'; import { Common, CommonService } from './common.js'; import { Logger, LoggerService } from './logger.js'; const common: CommonService = Common; const logger: LoggerService = Logger; -const csurfProtection = csurf({ cookie: true }); +const csurfProtection = CSRF.csrfProtection; export const isAuthenticated = (req, res, next) => { try { diff --git a/server/utils/common.ts b/server/utils/common.ts index f86ce407..a3b452f3 100644 --- a/server/utils/common.ts +++ b/server/utils/common.ts @@ -2,7 +2,7 @@ import * as fs from 'fs'; import { join, dirname, isAbsolute, resolve, sep } from 'path'; import { fileURLToPath } from 'url'; import * as crypto from 'crypto'; -import request from 'request-promise'; +import request from './request.js'; import { Logger, LoggerService } from './logger.js'; import { ApplicationConfig, SelectedNode } from '../models/config.model.js'; @@ -27,23 +27,37 @@ export class CommonService { constructor() {} public maskPasswords = (obj) => { - const keys = Object.keys(obj); - const length = keys.length; - if (length !== 0) { - for (let i = 0; i < length; i++) { - if (typeof obj[keys[i]] === 'object') { - keys[keys[i]] = this.maskPasswords(obj[keys[i]]); - } - if (typeof keys[i] === 'string' && - ((keys[i].toLowerCase().includes('password') && keys[i] !== 'allowPasswordUpdate') || keys[i].toLowerCase().includes('multipass') || - keys[i].toLowerCase().includes('rpcpass') || keys[i].toLowerCase().includes('rpcpassword') || - keys[i].toLowerCase().includes('rpcuser')) - ) { - obj[keys[i]] = '*'.repeat(20); + // Clone up front: masking a live config object must not blank the credentials LN + // requests authenticate with (mirrors removeSecureData). + const masked = JSON.parse(JSON.stringify(obj)); + const maskRecursive = (current) => { + const keys = Object.keys(current); + const length = keys.length; + if (length !== 0) { + for (let i = 0; i < length; i++) { + // Header maps always carry credentials in this codebase (macaroon, rune, basic + // auth). Key-substring matching cannot catch them without also hiding the *Path + // fields the settings UI legitimately shows, so mask the whole map. + if (keys[i] === 'headers' && current[keys[i]] && typeof current[keys[i]] === 'object') { + Object.keys(current[keys[i]]).forEach((headerKey) => { current[keys[i]][headerKey] = '*'.repeat(20); }); + } else if (current[keys[i]] && typeof current[keys[i]] === 'object') { + // Truthiness guard: null is 'object' too and must not reach Object.keys. + maskRecursive(current[keys[i]]); + } + if (typeof keys[i] === 'string' && + ((keys[i].toLowerCase().includes('password') && keys[i] !== 'allowPasswordUpdate') || keys[i].toLowerCase().includes('multipass') || + keys[i].toLowerCase().includes('rpcpass') || keys[i].toLowerCase().includes('rpcpassword') || + keys[i].toLowerCase().includes('rpcuser') || keys[i].toLowerCase().includes('rpcauth') || + keys[i].toLowerCase().includes('secret2fa') || keys[i].toLowerCase().includes('cookievalue') || + keys[i].toLowerCase().includes('rtlpass') || keys[i].toLowerCase().includes('runevalue')) + ) { + current[keys[i]] = '*'.repeat(20); + } } } - } - return obj; + return current; + }; + return maskRecursive(masked); }; public removeAuthSecureData = (node: SelectedNode) => { @@ -58,39 +72,68 @@ export class CommonService { }; public removeSecureData = (config: ApplicationConfig) => { - delete config.rtlConfFilePath; - delete config.rtlPass; - delete config.multiPass; - delete config.multiPassHashed; - delete config.secret2FA; - config.nodes?.map((node) => this.removeAuthSecureData(node)); - return config; + // Clone before deleting: cookieValue is runtime-only, so mutating a caller's live + // appConfig would destroy SSO state with no way to restore it. + const sanitized = JSON.parse(JSON.stringify(config)); + delete sanitized.rtlConfFilePath; + delete sanitized.rtlPass; + delete sanitized.multiPass; + delete sanitized.multiPassHashed; + delete sanitized.secret2FA; + // The SSO cookie is a live bearer credential; it must never leave the server. + if (sanitized.SSO) { delete sanitized.SSO.cookieValue; } + sanitized.nodes?.forEach((node) => this.removeAuthSecureData(node)); + return sanitized; }; public addSecureData = (config: ApplicationConfig) => { config.rtlConfFilePath = this.appConfig.rtlConfFilePath; config.rtlPass = this.appConfig.rtlPass; - config.multiPassHashed = this.appConfig.multiPassHashed; - config.SSO.rtlCookiePath = this.appConfig.SSO.rtlCookiePath; + // Pin the hash only when the server holds one: on a default install's first boot the + // file already has multiPassHashed but the in-memory config does not, and pinning + // undefined would erase the only password from the file on save, bricking the boot. + if (this.appConfig.multiPassHashed) { + config.multiPassHashed = this.appConfig.multiPassHashed; + } else { + delete config.multiPassHashed; + } + // Deployment-level switches are pinned to server-held values: the settings API must + // not flip the authentication mode (disableAuth, SSO) or move SSO fields, the + // password policy, or the database location; no UI flow writes them. Pinning the + // whole SSO object also means a trimmed or missing SSO object can never wipe server + // state. + config.disableAuth = this.appConfig.disableAuth; + config.allowPasswordUpdate = this.appConfig.allowPasswordUpdate; + config.dbDirectoryPath = this.appConfig.dbDirectoryPath; + config.SSO = JSON.parse(JSON.stringify(this.appConfig.SSO || {})); if (this.appConfig.multiPass) { config.multiPass = this.appConfig.multiPass; } - if (config.secret2FA === this.appConfig.secret2FA) { + // Restore the TOTP seed when the client omits it — and when it sends an empty seed + // while still claiming 2FA is on (an inconsistent pair no honest flow produces). + // The settings UI's enable flow sends a non-empty seed; its disable flow sends an + // empty seed with enable2FA false. Both are honored. + if (config.secret2FA === undefined || (config.secret2FA === '' && config.enable2FA)) { config.secret2FA = this.appConfig.secret2FA; } - config.nodes.map((node, i) => { - if (this.appConfig && this.appConfig.nodes && this.appConfig.nodes.length > i && this.appConfig.nodes[i].authentication) { - if (this.appConfig.nodes[i].authentication.macaroonPath) { - node.authentication.macaroonPath = this.appConfig.nodes[i].authentication.macaroonPath; + // enable2FA derives from the seed, matching the boot-time derivation in config.ts, + // so the two fields can never diverge after a save. + config.enable2FA = !!config.secret2FA; + const appConfigNodes = new Map(this.appConfig.nodes?.map((node) => [node.index, node]) || []); + config.nodes?.forEach((node) => { + const appConfigNode = appConfigNodes.get(node.index); + if (appConfigNode?.authentication) { + node.authentication = node.authentication || {}; + if (appConfigNode.authentication.macaroonPath) { + node.authentication.macaroonPath = appConfigNode.authentication.macaroonPath; } - if (this.appConfig.nodes[i].authentication.runePath) { - node.authentication.runePath = this.appConfig.nodes[i].authentication.runePath; + if (appConfigNode.authentication.runePath) { + node.authentication.runePath = appConfigNode.authentication.runePath; } - if (this.appConfig.nodes[i].authentication.lnApiPassword) { - node.authentication.lnApiPassword = this.appConfig.nodes[i].authentication.lnApiPassword; + if (appConfigNode.authentication.lnApiPassword) { + node.authentication.lnApiPassword = appConfigNode.authentication.lnApiPassword; } } - return node; }); return config; }; @@ -110,7 +153,7 @@ export class CommonService { this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Loop macaroon Error', error: err }); } } - this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Swap Options', data: swapOptions }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Swap Options Set' }); return swapOptions; }; @@ -128,7 +171,7 @@ export class CommonService { this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Boltz macaroon Error', error: err }); } } - this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Boltz Options', data: boltzOptions }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Boltz Options Set' }); return boltzOptions; }; @@ -177,7 +220,7 @@ export class CommonService { } } if (req.session.selectedNode) { - this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Updated Node Options for ' + req.session.selectedNode.lnNode, data: req.session.selectedNode.authentication.options }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Updated Node Options for ' + req.session.selectedNode.lnNode }); } return { status: 200, message: 'Updated Successfully' }; } catch (err) { @@ -204,9 +247,9 @@ export class CommonService { }; public setOptions = (req) => { - if (this.nodes[0].authentication.options && this.nodes[0].authentication.options.headers) { return; } if (this.nodes && this.nodes.length > 0) { this.nodes.forEach((node) => { + if (node.authentication.options && node.authentication.options.headers) { return; } node.authentication.options = { url: '', rejectUnauthorized: false, @@ -245,7 +288,7 @@ export class CommonService { form: '' }; } - this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Set Node Options for ' + node.lnNode, data: node.authentication.options }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Set Node Options for ' + node.lnNode }); }); this.updateSelectedNodeOptions(req); } @@ -362,10 +405,11 @@ export class CommonService { this.logger.log({ selectedNode: selectedNode, level: 'ERROR', fileName: fileName, msg: errMsg, error: (typeof err === 'object' ? JSON.stringify(err) : err) }); let newErrorObj = { statusCode: 500, message: '', error: '' }; if (err.code && err.code === 'ENOENT') { + // The absolute path stays in the server log above but is not echoed to clients. newErrorObj = { statusCode: 500, - message: 'No such file or directory ' + (err.path ? err.path : ''), - error: 'No such file or directory ' + (err.path ? err.path : '') + message: 'No such file or directory', + error: 'No such file or directory' }; } else { newErrorObj = { @@ -582,14 +626,25 @@ export class CommonService { }; public runWithConcurrencyLimit = (tasks, limit, done) => { - const results = new Array(tasks.length); + const results = new Array(tasks?.length || 0); + // 'done' must fire exactly once. Guard it: multiple runNext() completions (e.g. several + // non-function task elements draining synchronously) must not send the response twice. + let finished = false; + const finish = () => { + if (finished) { return; } + finished = true; + done(results); + }; + // No tasks: the start loop below never runs, so 'done' would never fire and the + // response would hang. Resolve immediately for empty lists (e.g. a node with no peers). + if (!tasks || tasks.length === 0) { return finish(); } let nextIndex = 0; let activeCount = 0; const runNext = () => { if (nextIndex >= tasks.length) { if (activeCount === 0) { - done(results); // all tasks are finished + finish(); // all tasks are finished } return; } @@ -615,7 +670,10 @@ export class CommonService { }); }; - for (let i = 0; i < limit && i < tasks.length; i++) { + // Normalize to at least 1: a non-positive limit would start no tasks, so 'done' (only + // reached from a task's finally) would never fire and the response would hang. + const startCount = Math.max(1, limit); + for (let i = 0; i < startCount && i < tasks.length; i++) { runNext(); } }; diff --git a/server/utils/config.ts b/server/utils/config.ts index 36456dfe..30b73c59 100644 --- a/server/utils/config.ts +++ b/server/utils/config.ts @@ -126,9 +126,17 @@ export class ConfigService { private validateNodeConfig = (config) => { config.allowPasswordUpdate = true; if ((process?.env?.RTL_SSO && +process?.env?.RTL_SSO === 0) || (typeof process?.env?.RTL_SSO === 'undefined' && +config.SSO.rtlSSO === 0)) { - if (process?.env?.APP_PASSWORD && process?.env?.APP_PASSWORD.trim() !== '') { + if (!!process?.env?.DISABLE_AUTH || !!config.disableAuth) { + config.allowPasswordUpdate = false; + config.enable2FA = false; + this.logger.log({ selectedNode: this.common.selectedNode, level: 'WARN', fileName: 'Config', msg: 'Authentication is Disabled via environment or config' }); + if (process?.env?.APP_PASSWORD && process?.env?.APP_PASSWORD.trim() !== '') { + this.errMsg = this.errMsg + '\nRTL Password cannot be set with disabled authentication. Please remove disableAuth option or password.'; + } + } else if (process?.env?.APP_PASSWORD && process?.env?.APP_PASSWORD.trim() !== '') { config.rtlPass = this.hash.update(process?.env?.APP_PASSWORD).digest('hex'); config.allowPasswordUpdate = false; + this.logger.log({ selectedNode: this.common.selectedNode, level: 'WARN', fileName: 'Config', msg: 'Passing APP_PASSWORD via environment is suggested for standalone RTL application' }); } else if (config.multiPassHashed && config.multiPassHashed !== '') { config.rtlPass = config.multiPassHashed; } else if (config.multiPass && config.multiPass !== '') { @@ -276,7 +284,9 @@ export class ConfigService { this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while creating the backup directory: \n' + err }); } this.common.nodes[idx].settings.logFile = config.rtlConfFilePath + '/logs/RTL-Node-' + node.index + '.log'; - this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'Config', msg: 'Node Config: ' + JSON.stringify(this.common.nodes[idx]) }); + // maskPasswords keeps paths visible for debugging while redacting credential + // fields such as lnApiPassword before they reach the log file. + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'Config', msg: 'Node Config: ' + JSON.stringify(this.common.maskPasswords(this.common.nodes[idx])) }); const log_file = this.common.nodes[idx].settings.logFile; if (fs.existsSync(log_file || '')) { fs.writeFile((log_file || ''), '', () => { }); diff --git a/server/utils/csrf.ts b/server/utils/csrf.ts index 074a2dea..d145d4e6 100644 --- a/server/utils/csrf.ts +++ b/server/utils/csrf.ts @@ -1,14 +1,36 @@ -import csurf from 'csurf/index.js'; +import { doubleCsrf } from 'csrf-csrf'; import { Application } from 'express'; import { Logger, LoggerService } from './logger.js'; import { Common, CommonService } from './common.js'; class CSRF { - public csrfProtection = csurf({ cookie: true }); public logger: LoggerService = Logger; public common: CommonService = Common; + // Signed double-submit-cookie protection (replaces the deprecated csurf). + // The signed token lives in the httpOnly '_csrf' cookie; the client echoes + // the same token (read from the XSRF-TOKEN cookie set in app.ts) in a + // header. The cookie is not secure-only because RTL commonly serves plain + // HTTP (matching the session cookie); token sources match what csurf + // accepted. The error code EBADCSRFTOKEN is handled in app.ts. + private doubleCsrfUtilities = doubleCsrf({ + getSecret: () => this.common.secret_key, + getSessionIdentifier: (req: any) => (req.session ? req.session.id : ''), + cookieName: '_csrf', + cookieOptions: { sameSite: 'strict', path: '/', secure: false, httpOnly: true }, + getCsrfTokenFromRequest: (req: any) => (req.body && req.body._csrf) || (req.query && req.query._csrf) || + req.headers['csrf-token'] || req.headers['xsrf-token'] || + req.headers['x-csrf-token'] || req.headers['x-xsrf-token'] + }); + + public csrfProtection = this.doubleCsrfUtilities.doubleCsrfProtection; + + // Force-mints a fresh token for the current session, discarding any token + // cookie bound to a previous session or boot secret (used by the + // EBADCSRFTOKEN error path in app.ts so a client retry succeeds). + public reMintToken = (req, res) => this.doubleCsrfUtilities.generateCsrfToken(req, res, { overwrite: true }); + public mount(app: Application): Application { this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'CSRF', msg: 'Setting up CSRF..' }); if (process.env.NODE_ENV !== 'development') { diff --git a/server/utils/request.ts b/server/utils/request.ts new file mode 100644 index 00000000..38ea1cdd --- /dev/null +++ b/server/utils/request.ts @@ -0,0 +1,90 @@ +import axios from 'axios'; +import * as https from 'https'; + +// Drop-in replacement for the deprecated request-promise, backed by axios. +// Accepts the same options shape used across the controllers ({ url, baseUrl, +// uri, qs, form, body, headers, rejectUnauthorized, json }), resolves with the +// response body directly and rejects with a plain, serializable object that +// mirrors request-promise's StatusCodeError/RequestError shape expected by +// CommonService.handleError. Auth headers are intentionally excluded from the +// rejected error so they can never leak into logs or API error responses. + +const insecureAgent = new https.Agent({ rejectUnauthorized: false }); + +const buildConfig = (options, method: string) => { + const config: any = { + url: options.url && options.url !== '' ? options.url : options.uri, + method: method || options.method || 'GET', + headers: options.headers ? { ...options.headers } : {}, + // Bound hung upstreams; 10 minutes accommodates the slowest legitimate + // operations (LND's /v2/router/send streams up to timeout_seconds=600 and + // slow CLN channel operations get req.setTimeout(600000) upstream). + // Callers can override per request; 0 disables the bound entirely, which + // the LND invoice/payment subscription streams need (open until settled). + timeout: options.timeout !== null && options.timeout !== undefined ? options.timeout : 600000 + }; + if (options.baseUrl) { config.baseURL = options.baseUrl; } + if (options.qs && Object.keys(options.qs).length > 0) { config.params = options.qs; } + if (options.rejectUnauthorized === false) { config.httpsAgent = insecureAgent; } + if (options.form !== null && options.form !== undefined) { + if (typeof options.form === 'string') { + // Pre-encoded (or raw JSON string for LND's wallet endpoints), send as-is. + config.data = options.form; + } else { + const params = new URLSearchParams(); + Object.entries(options.form).forEach(([key, value]) => { + if (value === null || value === undefined) { return; } + if (Array.isArray(value)) { + // Eclair parses list fields as comma-separated values; omit empty lists + // (request-promise's qs encoding also dropped them). + if (value.length > 0) { params.append(key, value.join(',')); } + } else { + params.append(key, String(value)); + } + }); + config.data = params; + } + config.headers['Content-Type'] = 'application/x-www-form-urlencoded'; + } else if (options.body !== null && options.body !== undefined) { + config.data = options.body; + } + if (options.json !== true) { + // Callers without json: true (block explorer, currency rates) JSON.parse the body themselves. + config.responseType = 'text'; + config.transformResponse = [(data) => data]; + } + return config; +}; + +const toRequestPromiseError = (err, config) => { + const errOptions = { url: config.url, method: config.method }; + if (err.response) { + return { + name: 'StatusCodeError', + statusCode: err.response.status, + message: err.response.status + ' - ' + JSON.stringify(err.response.data), + error: err.response.data, + options: errOptions + }; + } + const message = err.message && err.message !== '' ? err.message : err.code; + return { + name: 'RequestError', + message: message, + error: { code: err.code, message: message }, + options: errOptions + }; +}; + +const call = (options, method?: string) => { + const config = buildConfig(options, method); + return axios.request(config).then((response) => response.data).catch((err) => Promise.reject(toRequestPromiseError(err, config))); +}; + +const request = (options) => call(options); +request.get = (options) => call(options, 'GET'); +request.post = (options) => call(options, 'POST'); +request.put = (options) => call(options, 'PUT'); +request.delete = (options) => call(options, 'DELETE'); + +export default request; diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 1ea29e4d..b4f1f48d 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -103,7 +103,9 @@ export class AppComponent implements OnInit, AfterViewInit, OnDestroy { subscribe((action: (any)) => { if (action.type === RTLActions.SET_APPLICATION_SETTINGS) { if (!this.sessionService.getItem('token')) { - if (+action.payload.SSO.rtlSSO) { + if (!!action.payload.disableAuth) { + this.store.dispatch(login({ payload: { password: 'disabledAuth', defaultPassword: false } })); + } else if (+action.payload.SSO.rtlSSO) { if (!this.accessKey || this.accessKey.trim().length < 32) { this.router.navigate(['./error'], { state: { errorCode: '406', errorMessage: 'Access key too short. It should be at least 32 characters long.' } }); } else { diff --git a/src/app/cln/home/channel-capacity-info/channel-capacity-info.component.html b/src/app/cln/home/channel-capacity-info/channel-capacity-info.component.html index d271d367..f9adf678 100644 --- a/src/app/cln/home/channel-capacity-info/channel-capacity-info.component.html +++ b/src/app/cln/home/channel-capacity-info/channel-capacity-info.component.html @@ -16,7 +16,7 @@

- {{(channel.alias || channel.peer_id) | slice:0:24}}{{(channel.alias || channel.peer_id).length > 25 ? '...' : ''}} + {{(channel?.alias || channel?.peer_id || '') | slice:0:24}}{{(channel.alias || channel.peer_id || '').length > 25 ? '...' : ''}}
Local:{{channel.to_us_msat/1000 || 0 | number:'1.0-0'}} Sats diff --git a/src/app/cln/home/channel-liquidity-info/channel-liquidity-info.component.html b/src/app/cln/home/channel-liquidity-info/channel-liquidity-info.component.html index cfbc9f6e..8ae4a6fb 100644 --- a/src/app/cln/home/channel-liquidity-info/channel-liquidity-info.component.html +++ b/src/app/cln/home/channel-liquidity-info/channel-liquidity-info.component.html @@ -9,7 +9,7 @@
- {{(channel.alias || channel.peer_id) | slice:0:24}}{{(channel.alias || channel.peer_id).length > 25 ? '...' : ''}} + {{(channel.alias || channel.peer_id || '') | slice:0:24}}{{(channel.alias || channel.peer_id || '').length > 25 ? '...' : ''}}
Capacity: {{channel.to_them_msat/1000 || 0 | number:'1.0-0'}} Sats diff --git a/src/app/cln/liquidity-ads/liquidity-ads-list/liquidity-ads-list.component.html b/src/app/cln/liquidity-ads/liquidity-ads-list/liquidity-ads-list.component.html index cf5a6b22..c20c87b3 100644 --- a/src/app/cln/liquidity-ads/liquidity-ads-list/liquidity-ads-list.component.html +++ b/src/app/cln/liquidity-ads/liquidity-ads-list/liquidity-ads-list.component.html @@ -167,7 +167,7 @@
- +
diff --git a/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.html b/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.html index b9dbd8fc..09e80cd7 100644 --- a/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.html +++ b/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.html @@ -4,7 +4,7 @@
{{sweepAll ? 'Sweep All Funds' : 'Send Funds'}}
- +
@@ -23,18 +23,19 @@
Bitcoin Address - + Bitcoin address is required. Amount - + Amount replaced by UTXO balance {{selAmountUnit}} {{amountError}} - + Amount Unit + {{amountUnit}} @@ -43,7 +44,7 @@
Fee Rate - + {{feeRateType.feeRateType}} @@ -51,15 +52,15 @@ Fee Rate (Sats/vByte) - + Fee Rate is required.
- + Min Confirmation Blocks - + Min Confirmation Blocks is required.
@@ -74,13 +75,13 @@
Coin Selection - + {{totalSelectedUTXOAmount | number}} Sats ({{selUTXOs.length > 1 ? selUTXOs.length + ' UTXOs' : '1 UTXO'}}) {{utxo.amount_msat/1000 | number:'1.0-0'}} Sats
- + Use selected UTXOs balance info_outline @@ -94,8 +95,8 @@ {{sendFundError}}
- - + +
@@ -112,12 +113,12 @@
Password - + Password is required.
- +
@@ -127,14 +128,14 @@
Bitcoin Address - + Bitcoin address is required.
Fee Rate - + {{feeRateType.feeRateType}} @@ -142,22 +143,22 @@ Fee Rate (Sats/vByte) - + Fee Rate is required.
- + Min Confirmation Blocks - + Min Confirmation Blocks is required.
- +
@@ -174,14 +175,14 @@ {{sendFundError}}
- +
- +
diff --git a/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.html b/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.html index 90e9777a..feff7444 100644 --- a/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.html +++ b/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.html @@ -104,7 +104,7 @@ - +
diff --git a/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.html b/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.html index bae4fabe..07b1aa93 100644 --- a/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.html +++ b/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.html @@ -4,7 +4,7 @@
Bump Fee
- +
@@ -29,14 +29,14 @@
Output Index - + Output Index required. Invalid index value. Fees (Sats/vByte) + type="number" name="fees" required [step]="1" [min]="0" [(ngModel)]="fees"> Fees is required.
@@ -47,8 +47,8 @@
- - + +
diff --git a/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.html b/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.html index a4f938ce..0fb69f9d 100644 --- a/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.html +++ b/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.html @@ -43,7 +43,7 @@

Funding Transaction ID

{{channel.funding_txid}} - + diff --git a/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.ts b/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.ts index a2053d0a..25c6cd37 100644 --- a/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.ts +++ b/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.ts @@ -57,6 +57,7 @@ export class CLNChannelInformationComponent implements OnInit { } onExplorerClicked() { + if (!this.selNode?.settings?.blockExplorerUrl) { return; } window.open(this.selNode.settings.blockExplorerUrl + '/tx/' + this.channel.funding_txid, '_blank'); } diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.html b/src/app/cln/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.html index 9041d995..8c2c1861 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.html +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.html @@ -142,5 +142,5 @@ - + diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html b/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html index d8ec138e..53e283cc 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html @@ -66,7 +66,7 @@ Connected - {{(channel?.connected) ? 'Connected' : 'Disconnected'}} + {{(channel?.peer_connected) ? 'Connected' : 'Disconnected'}} Local Reserve (Sats) @@ -142,5 +142,5 @@ - + diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.spec.ts b/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.spec.ts index 7984afa9..89408e46 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.spec.ts +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.spec.ts @@ -19,6 +19,7 @@ import { CLNChannelOpenTableComponent } from './channel-open-table.component'; import { ExtraOptions, Route, Router } from '@angular/router'; import { HttpClientTestingModule, provideHttpClientTesting } from '@angular/common/http/testing'; import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http'; +import { MatTableDataSource } from '@angular/material/table'; describe('CLNChannelOpenTableComponent', () => { let component: CLNChannelOpenTableComponent; @@ -58,6 +59,29 @@ describe('CLNChannelOpenTableComponent', () => { expect(component).toBeTruthy(); }); + const connectedCellText = (): string => { + const cell = fixture.nativeElement.querySelector('td.mat-column-connected'); + return cell ? cell.textContent.trim() : ''; + }; + + const renderSingleChannel = (channel: any) => { + component.displayedColumns = ['connected']; + component.channels = new MatTableDataSource([channel]); + fixture.detectChanges(); + }; + + // Issue #1606: the connected column must reflect peer_connected (what listpeerchannels + // returns), not the legacy 'connected' field, so it stays consistent with the detail panel. + it('should render Connected from peer_connected even when legacy connected is false', () => { + renderSingleChannel({ peer_connected: true, connected: false }); + expect(connectedCellText()).toBe('Connected'); + }); + + it('should render Disconnected from peer_connected even when legacy connected is true', () => { + renderSingleChannel({ peer_connected: false, connected: true }); + expect(connectedCellText()).toBe('Disconnected'); + }); + afterEach(() => { TestBed.resetTestingModule(); }); diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html index 4042080d..40ce7c28 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html @@ -58,7 +58,7 @@ Connected - {{(channel?.connected) ? 'Connected' : 'Disconnected'}} + {{(channel?.peer_connected) ? 'Connected' : 'Disconnected'}} State @@ -108,7 +108,7 @@ View Info - Close Channel + Close Channel Bump Fee @@ -127,5 +127,5 @@ - + diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.spec.ts b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.spec.ts index 5d97bffe..dd9acf83 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.spec.ts +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.spec.ts @@ -1,5 +1,5 @@ import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing'; -import { StoreModule } from '@ngrx/store'; +import { Store, StoreModule } from '@ngrx/store'; import { RootReducer } from '../../../../../store/rtl.reducers'; import { LNDReducer } from '../../../../../lnd/store/lnd.reducers'; @@ -15,6 +15,7 @@ import { RTLEffects } from '../../../../../store/rtl.effects'; import { SharedModule } from '../../../../../shared/shared.module'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { DataService } from '../../../../../shared/services/data.service'; +import { MatTableDataSource } from '@angular/material/table'; describe('CLNChannelPendingTableComponent', () => { let component: CLNChannelPendingTableComponent; @@ -49,6 +50,43 @@ describe('CLNChannelPendingTableComponent', () => { expect(component).toBeTruthy(); }); + const connectedCellText = (): string => { + const cell = fixture.nativeElement.querySelector('td.mat-column-connected'); + return cell ? cell.textContent.trim() : ''; + }; + + const renderSingleChannel = (channel: any) => { + component.displayedColumns = ['connected']; + component.channels = new MatTableDataSource([channel]); + fixture.detectChanges(); + }; + + // Issue #1606: the connected column must reflect peer_connected (what listpeerchannels + // returns), not the legacy 'connected' field, so it stays consistent with the detail panel. + it('should render Connected from peer_connected even when legacy connected is false', () => { + renderSingleChannel({ peer_connected: true, connected: false }); + expect(connectedCellText()).toBe('Connected'); + }); + + it('should render Disconnected from peer_connected even when legacy connected is true', () => { + renderSingleChannel({ peer_connected: false, connected: true }); + expect(connectedCellText()).toBe('Disconnected'); + }); + + // Issue #1606: the channel information modal reads selNode.settings.blockExplorerUrl, so the + // pending table must pass selNode when opening it. Without it the modal throws mid-render and + // blanks State/Connected/balances for disconnected channels (which live in this table). + it('should pass selNode when opening the channel information modal', () => { + const store = TestBed.inject(Store); + const dispatchSpy = spyOn(store, 'dispatch'); + const selNode: any = { settings: { blockExplorerUrl: 'https://mempool.space' } }; + component.selNode = selNode; + component.onChannelClick({ short_channel_id: '120x1x0', peer_connected: false } as any, {} as any); + expect(dispatchSpy).toHaveBeenCalled(); + const action: any = dispatchSpy.calls.mostRecent().args[0]; + expect(action.payload.data.selNode).toBe(selNode); + }); + afterEach(() => { TestBed.resetTestingModule(); }); diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts index 4b6d8fb0..5e1bf058 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts @@ -20,6 +20,8 @@ import { openAlert, openConfirmation } from '../../../../../store/rtl.actions'; import { RTLState } from '../../../../../store/rtl.state'; import { closeChannel } from '../../../../store/cln.actions'; import { channels, clnPageSettings, nodeInfoAndBalanceAndNumPeers } from '../../../../store/cln.selector'; +import { rootSelectedNode } from '../../../../../store/rtl.selector'; +import { Node } from '../../../../../shared/models/RTLconfig'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../../../shared/pipes/app.pipe'; import { MAT_SELECT_CONFIG } from '@angular/material/select'; @@ -62,6 +64,7 @@ export class CLNChannelPendingTableComponent implements OnInit, AfterViewInit, O public errorMessage = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; + public selNode: Node | null = null; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService, private camelCaseWithReplace: CamelCaseWithReplacePipe) { @@ -109,6 +112,10 @@ export class CLNChannelPendingTableComponent implements OnInit, AfterViewInit, O } this.logger.info(channelsSeletor); }); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[4])). + subscribe((nodeSettings) => { + this.selNode = nodeSettings; + }); } ngAfterViewInit() { @@ -133,6 +140,7 @@ export class CLNChannelPendingTableComponent implements OnInit, AfterViewInit, O payload: { data: { channel: selChannel, + selNode: this.selNode, showCopy: true, component: CLNChannelInformationComponent } diff --git a/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.html b/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.html index cbf8edd2..edc32560 100644 --- a/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.html +++ b/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.html @@ -4,14 +4,14 @@
{{alertTitle}}
- +
Peer Alias - + {{peer.alias ? peer.alias : peer.id ? peer.id : ''}} @@ -24,14 +24,14 @@
Amount - + Remaining: {{totalBalance - ((fundingAmount) ? fundingAmount : 0) | number}}{{flgUseAllBalance ? '. Amount replaced by UTXO balance' : ''}} Sats Amount is required. Amount must be less than or equal to {{totalBalance}}.
- Private Channel + Private Channel
@@ -58,7 +58,7 @@
Fee Rate - + {{feeRateType.feeRateType}} @@ -66,30 +66,30 @@ Fee Rate (Sats/vByte) - + Mempool Min: {{recommendedFee.minimumFee}} (Sats/vByte) Fee Rate is required. Lower than min feerate {{recommendedFee.minimumFee}} in the mempool.
- + Min Confirmation Blocks - + Min Blocks is required.
Coin Selection - + {{totalSelectedUTXOAmount | number}} Sats ({{selUTXOs.length > 1 ? selUTXOs.length + ' UTXOs' : '1 UTXO'}}) {{(utxo.amount_msat) / 1000 | number:'1.0-0'}} Sats
- + Use selected UTXOs balance info_outline @@ -102,8 +102,8 @@ {{channelConnectionError}}
- - + +
diff --git a/src/app/cln/peers-channels/peers/peers.component.html b/src/app/cln/peers-channels/peers/peers.component.html index d5430a0b..489ad3e4 100644 --- a/src/app/cln/peers-channels/peers/peers.component.html +++ b/src/app/cln/peers-channels/peers/peers.component.html @@ -88,6 +88,6 @@ - + \ No newline at end of file diff --git a/src/app/cln/routing/failed-transactions/failed-transactions.component.html b/src/app/cln/routing/failed-transactions/failed-transactions.component.html index bb8b19c6..07551d49 100644 --- a/src/app/cln/routing/failed-transactions/failed-transactions.component.html +++ b/src/app/cln/routing/failed-transactions/failed-transactions.component.html @@ -108,5 +108,5 @@ - + diff --git a/src/app/cln/routing/forwarding-history/forwarding-history.component.html b/src/app/cln/routing/forwarding-history/forwarding-history.component.html index 5f069bf7..80bcb25e 100644 --- a/src/app/cln/routing/forwarding-history/forwarding-history.component.html +++ b/src/app/cln/routing/forwarding-history/forwarding-history.component.html @@ -110,5 +110,5 @@ - + diff --git a/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.html b/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.html index 2e74411e..6e49b304 100644 --- a/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.html +++ b/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.html @@ -93,5 +93,5 @@ - + diff --git a/src/app/cln/routing/routing-peers/routing-peers.component.html b/src/app/cln/routing/routing-peers/routing-peers.component.html index aec134f7..59e3befc 100644 --- a/src/app/cln/routing/routing-peers/routing-peers.component.html +++ b/src/app/cln/routing/routing-peers/routing-peers.component.html @@ -51,7 +51,7 @@ - +
@@ -112,7 +112,7 @@ - +
diff --git a/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.html b/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.html index 43f6f457..8721733c 100644 --- a/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.html +++ b/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.html @@ -4,18 +4,18 @@
Create Invoice
- +
Description - +
Amount - + Sats = @@ -28,17 +28,18 @@ Expiry - + {{selTimeUnit | titlecase}} - + Time Unit + {{timeUnit | titlecase}}
- Private Routing Hints + Private Routing Hints info_outline
@@ -46,8 +47,8 @@ {{invoiceError}}
- - + +
diff --git a/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.html b/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.html index 2f3d562a..9f839f8b 100644 --- a/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.html +++ b/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.html @@ -141,6 +141,6 @@ - + \ No newline at end of file diff --git a/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.html b/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.html index 0e49f4de..ba66caea 100644 --- a/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.html +++ b/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.html @@ -90,6 +90,6 @@ - + diff --git a/src/app/cln/transactions/offers/offers-table/offers-table.component.html b/src/app/cln/transactions/offers/offers-table/offers-table.component.html index 8d2604b8..2d9a8611 100644 --- a/src/app/cln/transactions/offers/offers-table/offers-table.component.html +++ b/src/app/cln/transactions/offers/offers-table/offers-table.component.html @@ -93,6 +93,6 @@ - + \ No newline at end of file diff --git a/src/app/cln/transactions/payments/lightning-payments.component.html b/src/app/cln/transactions/payments/lightning-payments.component.html index b40609a9..77ce2b51 100644 --- a/src/app/cln/transactions/payments/lightning-payments.component.html +++ b/src/app/cln/transactions/payments/lightning-payments.component.html @@ -263,6 +263,6 @@ - + diff --git a/src/app/eclair/home/channel-liquidity-info/channel-liquidity-info.component.html b/src/app/eclair/home/channel-liquidity-info/channel-liquidity-info.component.html index 0f4f1918..bec96389 100644 --- a/src/app/eclair/home/channel-liquidity-info/channel-liquidity-info.component.html +++ b/src/app/eclair/home/channel-liquidity-info/channel-liquidity-info.component.html @@ -9,7 +9,7 @@
- {{(channel.alias || channel.shortChannelId) | slice:0:24}}{{(channel.alias || channel.shortChannelId).length > 25 ? '...' : ''}} + {{(channel.alias || channel.shortChannelId || '') | slice:0:24}}{{(channel.alias || channel.shortChannelId || '').length > 25 ? '...' : ''}}
Capacity: {{channel.toRemote || 0 | number:'1.0-0'}} Sats diff --git a/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.html b/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.html index a5de950b..0dbd488e 100644 --- a/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.html +++ b/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.html @@ -4,7 +4,7 @@
Send Payment
- +
@@ -23,24 +23,25 @@
Bitcoin Address - + Bitcoin address is required. Amount - + {{selAmountUnit}} {{amountError}} - + Amount Unit + {{amountUnit}}
Target Confirmation Blocks - + Target Confirmation Blocks is required.
@@ -50,8 +51,8 @@ {{sendFundError}}
- - + +
diff --git a/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.html b/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.html index 7012f638..48e426c0 100644 --- a/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.html +++ b/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.html @@ -90,9 +90,9 @@ - + - +
\ No newline at end of file diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.html b/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.html index 916276f9..4c302d42 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.html +++ b/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.html @@ -110,5 +110,5 @@ - + diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html b/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html index 7a9974a2..259d811b 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html +++ b/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html @@ -121,5 +121,5 @@ - + diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html b/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html index 3462673b..271fba30 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html +++ b/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html @@ -87,5 +87,5 @@ - + diff --git a/src/app/eclair/peers-channels/peers/peers.component.html b/src/app/eclair/peers-channels/peers/peers.component.html index 91d099e7..a4a240c9 100644 --- a/src/app/eclair/peers-channels/peers/peers.component.html +++ b/src/app/eclair/peers-channels/peers/peers.component.html @@ -90,6 +90,6 @@ - + diff --git a/src/app/eclair/routing/forwarding-history/forwarding-history.component.html b/src/app/eclair/routing/forwarding-history/forwarding-history.component.html index ac57766a..0447b1b5 100644 --- a/src/app/eclair/routing/forwarding-history/forwarding-history.component.html +++ b/src/app/eclair/routing/forwarding-history/forwarding-history.component.html @@ -115,5 +115,5 @@ - + diff --git a/src/app/eclair/routing/routing-peers/routing-peers.component.html b/src/app/eclair/routing/routing-peers/routing-peers.component.html index 7446bdf0..ba8cf531 100644 --- a/src/app/eclair/routing/routing-peers/routing-peers.component.html +++ b/src/app/eclair/routing/routing-peers/routing-peers.component.html @@ -61,7 +61,7 @@ - +
@@ -122,7 +122,7 @@ - +
diff --git a/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.html b/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.html index 3fbb8556..b1332f0f 100644 --- a/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.html +++ b/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.html @@ -4,19 +4,19 @@
Create Invoice
- +
Description - + Description is required.
Amount - + Sats = @@ -29,11 +29,12 @@ Expiry - + {{selTimeUnit | titlecase}} - + Time Unit + {{timeUnit | titlecase}} @@ -43,8 +44,8 @@ {{invoiceError}}
- - + +
diff --git a/src/app/eclair/transactions/invoices/lightning-invoices.component.html b/src/app/eclair/transactions/invoices/lightning-invoices.component.html index 6b88528d..6d7b2d94 100644 --- a/src/app/eclair/transactions/invoices/lightning-invoices.component.html +++ b/src/app/eclair/transactions/invoices/lightning-invoices.component.html @@ -136,8 +136,8 @@ - + - + diff --git a/src/app/eclair/transactions/payments/lightning-payments.component.html b/src/app/eclair/transactions/payments/lightning-payments.component.html index 5611bad0..871fb044 100644 --- a/src/app/eclair/transactions/payments/lightning-payments.component.html +++ b/src/app/eclair/transactions/payments/lightning-payments.component.html @@ -250,8 +250,8 @@ - + - + diff --git a/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.html b/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.html index 0ee95087..bff98dd7 100644 --- a/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.html +++ b/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.html @@ -66,5 +66,5 @@ - + diff --git a/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.html b/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.html index 6d2bc112..0f0c9135 100644 --- a/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.html +++ b/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.html @@ -53,5 +53,5 @@ - + diff --git a/src/app/lnd/home/channel-capacity-info/channel-capacity-info.component.html b/src/app/lnd/home/channel-capacity-info/channel-capacity-info.component.html index ee465823..8aeae58d 100644 --- a/src/app/lnd/home/channel-capacity-info/channel-capacity-info.component.html +++ b/src/app/lnd/home/channel-capacity-info/channel-capacity-info.component.html @@ -16,7 +16,7 @@
- {{(channel.remote_alias || channel.remote_pubkey) | slice:0:24}}{{(channel.remote_alias || channel.remote_pubkey).length > 25 ? '...' : ''}} + {{(channel.remote_alias || channel.remote_pubkey || '') | slice:0:24}}{{(channel.remote_alias || channel.remote_pubkey || '').length > 25 ? '...' : ''}}
Local:{{channel.local_balance || 0 | number}} Sats diff --git a/src/app/lnd/home/channel-liquidity-info/channel-liquidity-info.component.html b/src/app/lnd/home/channel-liquidity-info/channel-liquidity-info.component.html index 3acd5a81..124e7a2c 100644 --- a/src/app/lnd/home/channel-liquidity-info/channel-liquidity-info.component.html +++ b/src/app/lnd/home/channel-liquidity-info/channel-liquidity-info.component.html @@ -8,7 +8,7 @@
- {{(channel.remote_alias || channel.remote_pubkey) | slice:0:24}}{{(channel.remote_alias || channel.remote_pubkey).length > 25 ? '...' : ''}} + {{(channel.remote_alias || channel.remote_pubkey || '') | slice:0:24}}{{(channel.remote_alias || channel.remote_pubkey || '').length > 25 ? '...' : ''}}
Capacity: {{channel.remote_balance || 0 | number}} Sats diff --git a/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.html b/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.html index c9e26bed..c75d009a 100644 --- a/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.html +++ b/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.html @@ -4,7 +4,7 @@
{{sweepAll ? 'Sweep All Funds' : 'Send Funds'}}
- +
@@ -23,23 +23,25 @@
Bitcoin Address - + Bitcoin address is required. Amount - + {{selAmountUnit}} {{amountError}} - + Amount Unit + {{amountUnit}}
- + Transaction Type + {{transType.name}} @@ -47,12 +49,12 @@ Number of Blocks - + Number of blocks is required. Fees (Sats/vByte) - + Fees is required.
@@ -62,8 +64,8 @@ {{sendFundError}}
- - + +
@@ -79,12 +81,12 @@
Password - + Password is required.
- +
@@ -94,11 +96,12 @@
Bitcoin Address - + Bitcoin address is required. - + Transaction Type + {{transType.name}} @@ -106,17 +109,17 @@ Number of Blocks - + Number of blocks is required. Fees (Sats/vByte) - + Fees is required.
- +
@@ -133,14 +136,14 @@ {{sendFundError}}
- +
- +
diff --git a/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.html b/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.html index ce1b995d..4ca03fda 100644 --- a/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.html +++ b/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.html @@ -89,7 +89,7 @@ - +
\ No newline at end of file diff --git a/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.html b/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.html index 5079d9e2..4a181262 100644 --- a/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.html +++ b/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.html @@ -105,7 +105,7 @@ - + diff --git a/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.html b/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.html index 4e6ace3f..fed60c10 100644 --- a/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.html +++ b/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.html @@ -4,7 +4,7 @@
Bump Fee
- +
@@ -30,12 +30,13 @@
Index for Change Output - + Index for change output is required. Invalid index value. - + Transaction Type + {{transType.name}} @@ -44,12 +45,12 @@ Number of Blocks + [step]="1" [min]="0" [(ngModel)]="blocks"> Number of blocks is required. Fees (Sats/vByte) - + Fees is required.
@@ -60,8 +61,8 @@
- - + +
diff --git a/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.html b/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.html index afa7c8f0..700c4b5d 100644 --- a/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.html +++ b/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.html @@ -27,7 +27,7 @@

Channel Point

{{channel.channel_point}} - + diff --git a/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.ts b/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.ts index 56b1b110..9677afcf 100644 --- a/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.ts +++ b/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.ts @@ -52,6 +52,7 @@ export class ChannelInformationComponent implements OnInit { } onExplorerClicked() { + if (!this.selNode?.settings?.blockExplorerUrl) { return; } window.open(this.selNode.settings.blockExplorerUrl + '/tx/' + this.channel.channel_point, '_blank'); } diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.html b/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.html index 954cb995..256aff7f 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.html +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.html @@ -138,5 +138,5 @@ - + diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.html b/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.html index 986a3050..0748fcc8 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.html +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.html @@ -129,5 +129,5 @@ - + diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html b/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html index 85580752..8bf67408 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html @@ -175,5 +175,5 @@ - + diff --git a/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.html b/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.html index 552010b1..f75154c2 100644 --- a/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.html +++ b/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.html @@ -4,7 +4,7 @@
{{channelToClose.active ? 'Close Channel' : 'Force Close Channel'}}
- +
@@ -37,7 +37,8 @@
- + Transaction Type + {{transType.name}} @@ -50,22 +51,22 @@ Number of Blocks + [step]="1" [min]="0" [(ngModel)]="blocks"> Number of blocks is required. Fees (Sats/vByte) + type="number" name="ccfees" required [step]="1" [min]="0" [(ngModel)]="fees"> Fees is required.
- - - + + +
diff --git a/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.ts b/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.ts index 3e2af124..129a47a6 100644 --- a/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.ts +++ b/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.ts @@ -71,7 +71,7 @@ export class CloseChannelComponent implements OnInit, OnDestroy { closeChannelParams.targetConf = this.blocks; } if (this.fees) { - closeChannelParams.satPerByte = this.fees; + closeChannelParams.satPerVByte = this.fees; } this.store.dispatch(closeChannel({ payload: closeChannelParams })); this.dialogRef.close(false); diff --git a/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.html b/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.html index 88f319b8..37605eeb 100644 --- a/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.html +++ b/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.html @@ -4,14 +4,14 @@
{{alertTitle}}
- +
Peer Alias - + {{peer.alias ? peer.alias : peer.pub_key ? peer.pub_key : ''}} @@ -24,14 +24,14 @@
Amount - + (Remaining: {{totalBalance - ((fundingAmount) ? fundingAmount : 0) | number}}) Sats Amount is required. Amount must be less than or equal to {{totalBalance}}.
- Private Channel + Private Channel
@@ -56,7 +56,8 @@
- + Transaction Type + {{transType.name}} @@ -64,7 +65,7 @@ {{selTransType==='0' ? 'Default' : selTransType==='1' ? 'Target Confirmation Blocks' : 'Fee (Sats/vByte)'}} - + Mempool Min: {{recommendedFee.minimumFee}} (Sats/vByte) Target Confirmation Blocks is required. Fee is required. @@ -73,10 +74,10 @@
- Taproot Channel + Taproot Channel
- Spend Unconfirmed Output + Spend Unconfirmed Output
@@ -87,8 +88,8 @@ {{channelConnectionError}}
- - + +
diff --git a/src/app/lnd/peers-channels/peers/peers.component.html b/src/app/lnd/peers-channels/peers/peers.component.html index 10616df3..3c521d09 100644 --- a/src/app/lnd/peers-channels/peers/peers.component.html +++ b/src/app/lnd/peers-channels/peers/peers.component.html @@ -109,6 +109,6 @@ - + \ No newline at end of file diff --git a/src/app/lnd/routing/forwarding-history/forwarding-history.component.html b/src/app/lnd/routing/forwarding-history/forwarding-history.component.html index a0534994..5700bc62 100644 --- a/src/app/lnd/routing/forwarding-history/forwarding-history.component.html +++ b/src/app/lnd/routing/forwarding-history/forwarding-history.component.html @@ -91,5 +91,5 @@ - + diff --git a/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.html b/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.html index 18437641..4309fd7c 100644 --- a/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.html +++ b/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.html @@ -129,6 +129,6 @@ - + diff --git a/src/app/lnd/routing/routing-peers/routing-peers.component.html b/src/app/lnd/routing/routing-peers/routing-peers.component.html index b343c11a..730de508 100644 --- a/src/app/lnd/routing/routing-peers/routing-peers.component.html +++ b/src/app/lnd/routing/routing-peers/routing-peers.component.html @@ -65,7 +65,7 @@ - +
@@ -123,7 +123,7 @@
- +
diff --git a/src/app/lnd/store/lnd.effects.ts b/src/app/lnd/store/lnd.effects.ts index a8493af8..af9d99bb 100644 --- a/src/app/lnd/store/lnd.effects.ts +++ b/src/app/lnd/store/lnd.effects.ts @@ -345,8 +345,8 @@ export class LNDEffects implements OnDestroy { if (action.payload.targetConf) { reqUrl = reqUrl + '&target_conf=' + action.payload.targetConf; } - if (action.payload.satPerByte) { - reqUrl = reqUrl + '&sat_per_byte=' + action.payload.satPerByte; + if (action.payload.satPerVByte) { + reqUrl = reqUrl + '&sat_per_vbyte=' + action.payload.satPerVByte; } return this.httpClient.delete(reqUrl).pipe( map((postRes: any) => { @@ -874,10 +874,7 @@ export class LNDEffects implements OnDestroy { queryRoutesFetch = createEffect(() => this.actions.pipe( ofType(LNDActions.GET_QUERY_ROUTES_LND), mergeMap((action: { type: string, payload: GetQueryRoutes }) => { - let url = this.CHILD_API_URL + API_END_POINTS.NETWORK_API + '/routes/' + action.payload.destPubkey + '/' + action.payload.amount; - if (action.payload.outgoingChanId) { - url = url + '?outgoing_chan_id=' + action.payload.outgoingChanId; - } + const url = this.CHILD_API_URL + API_END_POINTS.NETWORK_API + '/routes/' + action.payload.destPubkey + '/' + action.payload.amount; return this.httpClient.get(url).pipe( map((qrRes: any) => { this.logger.info(qrRes); diff --git a/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.html b/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.html index 0d160827..91177974 100644 --- a/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.html +++ b/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.html @@ -4,17 +4,17 @@
Create Invoice
- +
Memo - + Amount - + Sats = @@ -27,21 +27,22 @@ Expiry - + {{selTimeUnit | titlecase}} - + Time Unit + {{timeUnit | titlecase}}
- Private Routing Hints + Private Routing Hints info_outline
- AMP Invoice + AMP Invoice info_outline
@@ -50,8 +51,8 @@ {{invoiceError}}
- - + +
diff --git a/src/app/lnd/transactions/invoices/lightning-invoices.component.html b/src/app/lnd/transactions/invoices/lightning-invoices.component.html index 57b91c4e..25547bd6 100644 --- a/src/app/lnd/transactions/invoices/lightning-invoices.component.html +++ b/src/app/lnd/transactions/invoices/lightning-invoices.component.html @@ -187,7 +187,7 @@ - + \ No newline at end of file diff --git a/src/app/lnd/transactions/payments/lightning-payments.component.html b/src/app/lnd/transactions/payments/lightning-payments.component.html index 8a796a91..081755d7 100644 --- a/src/app/lnd/transactions/payments/lightning-payments.component.html +++ b/src/app/lnd/transactions/payments/lightning-payments.component.html @@ -292,7 +292,7 @@ - + diff --git a/src/app/shared/components/data-modal/show-pubkey/show-pubkey.component.html b/src/app/shared/components/data-modal/show-pubkey/show-pubkey.component.html index bb4c7251..8f4b642b 100644 --- a/src/app/shared/components/data-modal/show-pubkey/show-pubkey.component.html +++ b/src/app/shared/components/data-modal/show-pubkey/show-pubkey.component.html @@ -8,7 +8,7 @@ {{selInfoType.infoName}} - +
@@ -17,7 +17,8 @@
- + Info Type + {{infoType.infoName}} @@ -32,7 +33,7 @@
- +
diff --git a/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.ts b/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.ts index bfa5fd26..dc5cde0e 100644 --- a/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.ts +++ b/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.ts @@ -7,7 +7,6 @@ import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog'; import { MatSnackBar } from '@angular/material/snack-bar'; import { MatStepper } from '@angular/material/stepper'; import { faInfoCircle, faCopy, faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; -import { authenticator } from 'otplib'; import * as sha256 from 'sha256'; import { RTLConfiguration } from '../../../models/RTLconfig'; @@ -15,6 +14,7 @@ import { AuthConfig } from '../../../models/alertData'; import { RTLEffects } from '../../../../store/rtl.effects'; import { RTLState } from '../../../../store/rtl.state'; import { isAuthorized, updateApplicationSettings } from '../../../../store/rtl.actions'; +import { TotpService } from '../../../services/totp.service'; @Component({ standalone: false, @@ -30,6 +30,7 @@ export class TwoFactorAuthComponent implements OnInit, OnDestroy { public faInfoCircle = faInfoCircle; public flgValidated = false; public isTokenValid = true; + private verifyingToken = false; public otpauth = ''; public appConfig: RTLConfiguration | null = null; public flgEditable = true; @@ -51,7 +52,7 @@ export class TwoFactorAuthComponent implements OnInit, OnDestroy { disableFormGroup: UntypedFormGroup = this.formBuilder.group({}); unSubs: Array> = [new Subject(), new Subject()]; - constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: AuthConfig, private store: Store, private formBuilder: UntypedFormBuilder, private rtlEffects: RTLEffects, private snackBar: MatSnackBar) { } + constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: AuthConfig, private store: Store, private formBuilder: UntypedFormBuilder, private rtlEffects: RTLEffects, private snackBar: MatSnackBar, private totpService: TotpService) { } ngOnInit() { this.appConfig = this.data.appConfig || null; @@ -62,8 +63,8 @@ export class TwoFactorAuthComponent implements OnInit, OnDestroy { } generateSecret() { - const secret2fa = authenticator.generateSecret(); - this.otpauth = authenticator.keyuri('', 'Ride The Lightning (RTL)', secret2fa); + const secret2fa = this.totpService.generateSecret(); + this.otpauth = this.totpService.keyuri('', 'Ride The Lightning (RTL)', secret2fa); return secret2fa; } @@ -98,18 +99,25 @@ export class TwoFactorAuthComponent implements OnInit, OnDestroy { this.generateSecret(); this.isTokenValid = true; } else { - if (!this.tokenFormGroup.controls.token.value) { + if (!this.tokenFormGroup.controls.token.value || this.verifyingToken) { return true; } - this.isTokenValid = authenticator.check(this.tokenFormGroup.controls.token.value, this.secretFormGroup.controls.secret.value); - if (!this.isTokenValid) { - this.tokenFormGroup.controls.token.setErrors({ notValid: true }); - return true; - } - this.appConfig.enable2FA = true; - this.appConfig.secret2FA = this.secretFormGroup.controls.secret.value; - this.store.dispatch(updateApplicationSettings({ payload: { showSnackBar: false, message: 'Two factor authentication enabled successfully.', config: this.appConfig } })); - this.tokenFormGroup.controls.token.setValue(''); + // check() is async, so guard against a second click dispatching the update twice. + this.verifyingToken = true; + this.totpService.check(this.tokenFormGroup.controls.token.value, this.secretFormGroup.controls.secret.value).then((isTokenValid) => { + this.verifyingToken = false; + this.isTokenValid = isTokenValid; + if (!isTokenValid) { + this.tokenFormGroup.controls.token.setErrors({ notValid: true }); + return; + } + this.appConfig.enable2FA = true; + this.appConfig.secret2FA = this.secretFormGroup.controls.secret.value; + this.store.dispatch(updateApplicationSettings({ payload: { showSnackBar: false, message: 'Two factor authentication enabled successfully.', config: this.appConfig } })); + this.tokenFormGroup.controls.token.setValue(''); + this.flgValidated = true; + }); + return; } this.flgValidated = true; } diff --git a/src/app/shared/components/horizontal-scroller/horizontal-scroller.component.html b/src/app/shared/components/horizontal-scroller/horizontal-scroller.component.html index a5cc3023..24031dd3 100644 --- a/src/app/shared/components/horizontal-scroller/horizontal-scroller.component.html +++ b/src/app/shared/components/horizontal-scroller/horizontal-scroller.component.html @@ -1,34 +1,39 @@
- - + +
- - + +
- - - {{scrollRange | titlecase}} - - + + Scroll Range + + + {{scrollRange | titlecase}} + + +
- Monthly Date + - Yearly Date + diff --git a/src/app/shared/components/ln-services/boltz/swaps/swaps.component.html b/src/app/shared/components/ln-services/boltz/swaps/swaps.component.html index 655c7d33..c686b92f 100755 --- a/src/app/shared/components/ln-services/boltz/swaps/swaps.component.html +++ b/src/app/shared/components/ln-services/boltz/swaps/swaps.component.html @@ -138,7 +138,7 @@ - +
diff --git a/src/app/shared/components/ln-services/loop/swaps/swaps.component.html b/src/app/shared/components/ln-services/loop/swaps/swaps.component.html index 101879db..2c95a7a9 100755 --- a/src/app/shared/components/ln-services/loop/swaps/swaps.component.html +++ b/src/app/shared/components/ln-services/loop/swaps/swaps.component.html @@ -99,7 +99,7 @@ - + diff --git a/src/app/shared/components/login/login.component.ts b/src/app/shared/components/login/login.component.ts index 2ab3bced..fc5b11cd 100644 --- a/src/app/shared/components/login/login.component.ts +++ b/src/app/shared/components/login/login.component.ts @@ -11,6 +11,7 @@ import { RTLConfiguration } from '../../models/RTLconfig'; import { APICallStatusEnum, PASSWORD_BLACKLIST, RTLActions, ScreenSizeEnum } from '../../services/consts-enums-functions'; import { CommonService } from '../../services/common.service'; import { LoggerService } from '../../services/logger.service'; +import { SessionService } from '../../services/session.service'; import { RTLEffects } from '../../../store/rtl.effects'; import { RTLState } from '../../../store/rtl.state'; @@ -39,7 +40,7 @@ export class LoginComponent implements OnInit, OnDestroy { public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private actions: Actions, private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService) { } + constructor(private actions: Actions, private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService, private sessionService: SessionService) { } ngOnInit() { this.screenSize = this.commonService.getScreenSize(); @@ -63,6 +64,13 @@ export class LoginComponent implements OnInit, OnDestroy { subscribe((action: any) => { this.logoutReason = action.payload; }); + // Logout navigates with a full document load (to re-mint the CSRF token), + // so the reason arrives via sessionStorage instead of the action stream. + const storedLogoutReason = this.sessionService.getItem('logoutReason'); + if (storedLogoutReason) { + this.logoutReason = storedLogoutReason; + this.sessionService.removeItem('logoutReason'); + } } onLogin(): boolean | void { diff --git a/src/app/shared/components/settings/app-settings/app-settings.component.html b/src/app/shared/components/settings/app-settings/app-settings.component.html index 99d69fab..28e843af 100644 --- a/src/app/shared/components/settings/app-settings/app-settings.component.html +++ b/src/app/shared/components/settings/app-settings/app-settings.component.html @@ -7,7 +7,8 @@
- + Default Node + {{node.lnNode}} ({{node.lnImplementation}}) @@ -16,8 +17,8 @@
- - + +
@@ -28,6 +29,6 @@ Add New Node
- +
--> diff --git a/src/app/shared/components/transactions-report-table/transactions-report-table.component.html b/src/app/shared/components/transactions-report-table/transactions-report-table.component.html index 5aa2f473..2dec5a57 100644 --- a/src/app/shared/components/transactions-report-table/transactions-report-table.component.html +++ b/src/app/shared/components/transactions-report-table/transactions-report-table.component.html @@ -60,7 +60,7 @@ - + diff --git a/src/app/shared/models/RTLconfig.ts b/src/app/shared/models/RTLconfig.ts index 810850b1..80125bd6 100644 --- a/src/app/shared/models/RTLconfig.ts +++ b/src/app/shared/models/RTLconfig.ts @@ -51,6 +51,7 @@ export class RTLConfiguration { public SSO: SSO, public enable2FA: boolean, public secret2FA: string, + public disableAuth: boolean, public allowPasswordUpdate: boolean, public nodes: Node[] ) { } diff --git a/src/app/shared/models/lndModels.ts b/src/app/shared/models/lndModels.ts index a3f3c21f..62c2786e 100644 --- a/src/app/shared/models/lndModels.ts +++ b/src/app/shared/models/lndModels.ts @@ -534,7 +534,7 @@ export interface CloseChannel { channelPoint: string; forcibly: boolean; targetConf?: number; - satPerByte?: number; + satPerVByte?: number; } export interface FetchInvoices { @@ -571,7 +571,6 @@ export interface GetNewAddress { export interface GetQueryRoutes { destPubkey: string; amount: number; - outgoingChanId?: string; } export interface InitWallet { diff --git a/src/app/shared/services/consts-enums-functions.ts b/src/app/shared/services/consts-enums-functions.ts index 041df132..2b544cab 100644 --- a/src/app/shared/services/consts-enums-functions.ts +++ b/src/app/shared/services/consts-enums-functions.ts @@ -16,7 +16,7 @@ export const SECS_IN_YEAR = 31536000; export const DEFAULT_INVOICE_EXPIRY = HOUR_SECONDS * 24 * 7; -export const VERSION = '0.15.7-beta'; +export const VERSION = '0.15.10-beta'; export const API_URL = isDevMode() ? 'http://localhost:3000/rtl/api' : './api'; @@ -138,6 +138,7 @@ export enum AlertTypeEnum { } export enum AuthenticateWith { + NOAUTH = 'NOAUTH', JWT = 'JWT', PASSWORD = 'PASSWORD' } @@ -933,8 +934,8 @@ export const LND_DEFAULT_PAGE_SETTINGS: PageSettings[] = [ columnSelectionSM: ['remote_alias', 'capacity'], columnSelection: ['remote_alias', 'commit_fee', 'commit_weight', 'capacity'] }, { tableId: 'pending_force_closing', sortBy: 'limbo_balance', sortOrder: SortOrderEnum.DESCENDING, - columnSelectionSM: ['remote_alias', 'limbo_balance'], - columnSelection: ['remote_alias', 'recovered_balance', 'limbo_balance', 'capacity'] }, + columnSelectionSM: ['remote_alias', 'blocks_til_maturity', 'limbo_balance'], + columnSelection: ['remote_alias', 'blocks_til_maturity', 'recovered_balance', 'limbo_balance', 'capacity'] }, { tableId: 'pending_closing', sortBy: 'capacity', sortOrder: SortOrderEnum.DESCENDING, columnSelectionSM: ['remote_alias', 'capacity'], columnSelection: ['remote_alias', 'local_balance', 'remote_balance', 'capacity'] }, diff --git a/src/app/shared/services/data.service.ts b/src/app/shared/services/data.service.ts index 4dcbe108..7f19707f 100644 --- a/src/app/shared/services/data.service.ts +++ b/src/app/shared/services/data.service.ts @@ -53,16 +53,17 @@ export class DataService implements OnDestroy { decodePayment(payment: string, fromDialog: boolean) { return this.lnImplementationUpdated.pipe(first(), mergeMap((updatedLnImplementation) => { - let url = this.APIUrl + '/' + updatedLnImplementation + API_END_POINTS.PAYMENTS_API + '/decode/' + payment; - let method = 'GET'; - let body = null; - if (updatedLnImplementation === 'cln') { - url = this.APIUrl + '/' + updatedLnImplementation + API_END_POINTS.UTILITY_API + '/decode'; - body = { string: payment }; - method = 'POST'; - } this.store.dispatch(openSpinner({ payload: UI_MESSAGES.DECODE_PAYMENT })); - return this.httpClient.request(method, url, { body: JSON.stringify(body), headers: { 'Content-Type': 'application/json' } }).pipe( + let request$; + if (updatedLnImplementation === 'cln') { + const url = this.APIUrl + '/' + updatedLnImplementation + API_END_POINTS.UTILITY_API + '/decode'; + const body = { string: payment }; + request$ = this.httpClient.post(url, body, { headers: { 'Content-Type': 'application/json' } }); + } else { + const url = this.APIUrl + '/' + updatedLnImplementation + API_END_POINTS.PAYMENTS_API + '/decode/' + payment; + request$ = this.httpClient.get(url); + } + return request$.pipe( takeUntil(this.unSubs[0]), map((res: any) => { this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.DECODE_PAYMENT })); @@ -72,11 +73,10 @@ export class DataService implements OnDestroy { if (fromDialog) { this.handleErrorWithoutAlert('Decode Payment', UI_MESSAGES.DECODE_PAYMENT, err); } else { - this.handleErrorWithAlert('decodePaymentData', UI_MESSAGES.DECODE_PAYMENT, 'Decode Payment Failed', url, err); + this.handleErrorWithAlert('decodePaymentData', UI_MESSAGES.DECODE_PAYMENT, 'Decode Payment Failed', this.APIUrl + '/' + updatedLnImplementation + (updatedLnImplementation === 'cln' ? API_END_POINTS.UTILITY_API + '/decode' : API_END_POINTS.PAYMENTS_API + '/decode/' + payment), err); } return throwError(() => new Error(this.extractErrorMessage(err))); - }) - ); + })); })); } @@ -171,14 +171,14 @@ export class DataService implements OnDestroy { })); } - bumpFee(txid: string, outputIndex: number, targetConf: number | null, satPerByte: number | null) { + bumpFee(txid: string, outputIndex: number, targetConf: number | null, satPerVByte: number | null) { return this.lnImplementationUpdated.pipe(first(), mergeMap((updatedLnImplementation) => { const bumpFeeBody: any = { txid: txid, outputIndex: outputIndex }; if (targetConf) { bumpFeeBody.targetConf = targetConf; } - if (satPerByte) { - bumpFeeBody.satPerByte = satPerByte; + if (satPerVByte) { + bumpFeeBody.satPerVByte = satPerVByte; } this.store.dispatch(openSpinner({ payload: UI_MESSAGES.BUMP_FEE })); return this.httpClient.post(this.APIUrl + '/' + updatedLnImplementation + API_END_POINTS.WALLET_API + '/bumpfee', bumpFeeBody).pipe( diff --git a/src/app/shared/services/totp.service.spec.ts b/src/app/shared/services/totp.service.spec.ts new file mode 100644 index 00000000..3ff0476f --- /dev/null +++ b/src/app/shared/services/totp.service.spec.ts @@ -0,0 +1,50 @@ +import { TestBed } from '@angular/core/testing'; + +import { TotpService } from './totp.service'; + +describe('TotpService', () => { + let service: TotpService; + // RFC 6238 appendix B secret ("12345678901234567890" ascii) in base32. + const rfcSecret = 'GEZDGNBVGY3TQOJQGEZDGNBVGY3TQOJQ'; + + beforeEach(() => { + TestBed.configureTestingModule({ providers: [TotpService] }); + service = TestBed.inject(TotpService); + }); + + it('should generate RFC 6238 SHA1 test-vector tokens (matching otplib)', async () => { + // 6-digit truncations of the appendix B vectors; verified identical to + // otplib.authenticator.generate() at the same epochs. + expect(await service.generate(rfcSecret, 59000)).toBe('287082'); + expect(await service.generate(rfcSecret, 1111111109000)).toBe('081804'); + expect(await service.generate(rfcSecret, 1234567890000)).toBe('005924'); + expect(await service.generate(rfcSecret, 2000000000000)).toBe('279037'); + }); + + it('should check tokens against the same epoch window', async () => { + expect(await service.check('287082', rfcSecret, 59000)).toBe(true); + expect(await service.check('287082', rfcSecret, 2000000000000)).toBe(false); + expect(await service.check('123456', rfcSecret, 59000)).toBe(false); + expect(await service.check('28708a', rfcSecret, 59000)).toBe(false); + expect(await service.check('', rfcSecret, 59000)).toBe(false); + }); + + it('should reject an invalid base32 secret instead of throwing', async () => { + expect(await service.check('287082', 'not!base32', 59000)).toBe(false); + }); + + it('should generate 16 character base32 secrets', () => { + const secret = service.generateSecret(); + expect(secret.length).toBe(16); + expect(secret).toMatch(/^[A-Z2-7]+$/); + expect(service.generateSecret()).not.toBe(secret); + }); + + it('should build the same keyuri as otplib.authenticator.keyuri', () => { + // Exact output of authenticator.keyuri('', 'Ride The Lightning (RTL)', secret). + expect(service.keyuri('', 'Ride The Lightning (RTL)', rfcSecret)).toBe( + 'otpauth://totp/Ride%20The%20Lightning%20(RTL):?secret=' + rfcSecret + + '&period=30&digits=6&algorithm=SHA1&issuer=Ride%20The%20Lightning%20(RTL)' + ); + }); +}); diff --git a/src/app/shared/services/totp.service.ts b/src/app/shared/services/totp.service.ts new file mode 100644 index 00000000..d8fb3fcc --- /dev/null +++ b/src/app/shared/services/totp.service.ts @@ -0,0 +1,96 @@ +import { Injectable } from '@angular/core'; + +/** + * RFC 6238 TOTP (SHA1, 6 digits, 30 second step, window 0) implemented with + * WebCrypto, replacing otplib in the browser bundle so the crypto-browserify + * polyfill chain can be dropped. The backend still verifies login tokens with + * otplib, so the parameters here must stay in sync with + * server/controllers/shared/authenticate.ts (otplib authenticator defaults). + */ +@Injectable({ providedIn: 'root' }) +export class TotpService { + + private base32Chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ234567'; + + generateSecret(numberOfBytes: number = 10): string { + const bytes = new Uint8Array(numberOfBytes); + window.crypto.getRandomValues(bytes); + return this.base32Encode(bytes); + } + + keyuri(accountName: string, issuer: string, secret: string): string { + return 'otpauth://totp/' + encodeURIComponent(issuer) + ':' + encodeURIComponent(accountName) + + '?secret=' + secret + '&period=30&digits=6&algorithm=SHA1&issuer=' + encodeURIComponent(issuer); + } + + check(token: string, secret: string, epochMs?: number): Promise { + if (!((/^\d+$/).test(token))) { return Promise.resolve(false); } + return this.generate(secret, epochMs).then((expectedToken) => expectedToken === token).catch(() => false); + } + + async generate(secret: string, epochMs?: number): Promise { + const counter = Math.floor((epochMs ?? Date.now()) / 30 / 1000); + const counterBytes = new Uint8Array(8); + let remaining = counter; + for (let i = 7; i >= 0; i--) { + counterBytes[i] = remaining & 0xff; + remaining = Math.floor(remaining / 256); + } + const hmacKey = this.createHmacKey(this.base32Decode(secret)); + const cryptoKey = await window.crypto.subtle.importKey('raw', hmacKey, { name: 'HMAC', hash: 'SHA-1' }, false, ['sign']); + const digest = new Uint8Array(await window.crypto.subtle.sign('HMAC', cryptoKey, counterBytes)); + const offset = digest[digest.length - 1] & 0xf; + const binary = ((digest[offset] & 0x7f) << 24) | ((digest[offset + 1] & 0xff) << 16) | ((digest[offset + 2] & 0xff) << 8) | (digest[offset + 3] & 0xff); + return String(binary % (10 ** 6)).padStart(6, '0'); + } + + // Mirrors otplib's totpPadSecret for SHA1 (repeat to 20 bytes below 10 bytes). + // Never triggers for the 10 byte secrets generated above, which is the only + // case RTL produces; note otplib itself under-repeats to 18 bytes for 1- and + // 9-byte secrets, so parity is exact only for the secrets used here. + private createHmacKey(secretBytes: Uint8Array): Uint8Array { + if (secretBytes.length * 2 >= 20) { return secretBytes; } + const padded = new Uint8Array(20); + for (let i = 0; i < padded.length; i++) { + padded[i] = secretBytes[i % secretBytes.length]; + } + return padded; + } + + private base32Encode(bytes: Uint8Array): string { + let bits = 0; + let value = 0; + let encoded = ''; + for (const byte of bytes) { + value = (value << 8) | byte; + bits += 8; + while (bits >= 5) { + encoded += this.base32Chars[(value >>> (bits - 5)) & 31]; + bits -= 5; + } + } + if (bits > 0) { + encoded += this.base32Chars[(value << (5 - bits)) & 31]; + } + return encoded; + } + + private base32Decode(secret: string): Uint8Array { + const normalized = secret.toUpperCase().replace(/[=]+$/, ''); + let bits = 0; + let value = 0; + const bytes: number[] = []; + for (const char of normalized) { + const index = this.base32Chars.indexOf(char); + if (index < 0) { throw new Error('Invalid base32 character in secret.'); } + value = (value << 5) | index; + bits += 5; + if (bits >= 8) { + bytes.push((value >>> (bits - 8)) & 0xff); + bits -= 8; + } + } + return Uint8Array.from(bytes); + } + +} diff --git a/src/app/shared/test-helpers/mock-services.ts b/src/app/shared/test-helpers/mock-services.ts index 45233d78..33057fbc 100644 --- a/src/app/shared/test-helpers/mock-services.ts +++ b/src/app/shared/test-helpers/mock-services.ts @@ -98,7 +98,7 @@ export class mockDataService { return of(mockResponseData.verifyMessage); }; - bumpFee(txid: string, outputIndex: number, targetConf: number, satPerByte: number) { + bumpFee(txid: string, outputIndex: number, targetConf: number, satPerVByte: number) { return of(mockResponseData.bumpFee); }; diff --git a/src/app/store/rtl.effects.ts b/src/app/store/rtl.effects.ts index a9072bce..66ea5af5 100644 --- a/src/app/store/rtl.effects.ts +++ b/src/app/store/rtl.effects.ts @@ -368,7 +368,7 @@ export class RTLEffects implements OnDestroy { this.store.dispatch(resetECLStore()); this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'Login', status: APICallStatusEnum.INITIATED } })); return this.httpClient.post(API_END_POINTS.AUTHENTICATE_API, { - authenticateWith: (!action.payload.password) ? AuthenticateWith.JWT : AuthenticateWith.PASSWORD, + authenticateWith: (action.payload.password === 'disabledAuth') ? AuthenticateWith.NOAUTH : (!action.payload.password) ? AuthenticateWith.JWT : AuthenticateWith.PASSWORD, authenticationValue: (!action.payload.password) ? (this.sessionService.getItem('token') ? this.sessionService.getItem('token') : '') : action.payload.password, twoFAToken: (action.payload.twoFAToken) ? action.payload.twoFAToken : '' }).pipe( @@ -423,18 +423,31 @@ export class RTLEffects implements OnDestroy { this.store.dispatch(openSpinner({ payload: UI_MESSAGES.LOG_OUT })); if (appConfig.SSO && +appConfig.SSO.rtlSSO) { window.location.href = appConfig.SSO.logoutRedirectLink; - } else { - this.router.navigate(['./login'], { state: { logoutReason: action.payload } }); } this.sessionService.clearAll(); this.store.dispatch(setNodeData({ payload: {} })); this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.LOG_OUT })); this.logger.info('Logged out from browser'); + // Navigate with a full document load once the server has destroyed the + // session, so a fresh CSRF token (bound to the new session) is minted + // before the next login. The reason survives the reload in sessionStorage. + const navigateToLogin = () => { + if (!(appConfig.SSO && +appConfig.SSO.rtlSSO)) { + if (action.payload) { this.sessionService.setItem('logoutReason', action.payload); } + window.location.href = document.baseURI + 'login'; + } + }; return this.httpClient.get(API_END_POINTS.AUTHENTICATE_API + '/logout'). pipe(map((postRes: any) => { this.logger.info(postRes); this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.LOG_OUT })); this.logger.info('Logged out from server'); + navigateToLogin(); + }), catchError((err) => { + this.logger.error(err); + this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.LOG_OUT })); + navigateToLogin(); + return of({ type: RTLActions.VOID }); })); })), { dispatch: false } diff --git a/src/app/store/rtl.state.ts b/src/app/store/rtl.state.ts index 02255b8a..9d0553f7 100644 --- a/src/app/store/rtl.state.ts +++ b/src/app/store/rtl.state.ts @@ -30,6 +30,7 @@ export const initRootState: RootState = { SSO: { rtlSSO: 0, logoutRedirectLink: '' }, enable2FA: false, secret2FA: '', + disableAuth: false, allowPasswordUpdate: true, nodes: [{ settings: initNodeSettings, authentication: initNodeAuthentication }] }, diff --git a/test/backend/authenticate.test.mjs b/test/backend/authenticate.test.mjs new file mode 100644 index 00000000..14b8d797 --- /dev/null +++ b/test/backend/authenticate.test.mjs @@ -0,0 +1,171 @@ +import assert from 'node:assert/strict'; +import test from 'node:test'; + +import jwt from 'jsonwebtoken'; +import * as otplib from 'otplib'; +import { authenticateUser } from '../../backend/controllers/shared/authenticate.js'; +import { Common } from '../../backend/utils/common.js'; + +const { authenticator } = otplib; + +const TOTP_SECRET = 'JBSWY3DPEHPK3PXP'; +const PASSWORD_HASH = 'hashed-password'; + +const setupAppConfig = (enable2FA, secret2FA) => { + Common.appConfig = { + defaultNodeIndex: 0, + selectedNodeIndex: 0, + rtlConfFilePath: '', + dbDirectoryPath: '', + rtlPass: PASSWORD_HASH, + allowPasswordUpdate: true, + enable2FA: enable2FA, + secret2FA: secret2FA, + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '', cookieValue: '' }, + nodes: [] + }; + Common.selectedNode = null; + Common.nodes = []; +}; + +// failedLoginAttempts is module-level state in authenticate.js, keyed by the request IP +// from common.getRequestIP, which prefers x-forwarded-for (server/utils/common.ts). +// Unique IPs give each call a fresh counter; tests exercising the counter itself pass an +// explicit ip to share one key across calls. +let ipCounter = 0; +const nextIP = () => '10.0.0.' + (ipCounter = ipCounter + 1); +const mockRequest = ({ twoFAToken, ip, authToken, password } = {}) => { + const headers = { 'x-forwarded-for': ip || nextIP() }; + if (authToken) { headers.authorization = 'Bearer ' + authToken; } + return { + body: { authenticateWith: 'PASSWORD', authenticationValue: password || PASSWORD_HASH, twoFAToken: twoFAToken }, + session: {}, + headers: headers, + connection: {}, + socket: {} + }; +}; + +const mockResponse = () => { + const res = { statusCode: null, body: null }; + res.status = (code) => { + res.statusCode = code; + return { json: (body) => { res.body = body; } }; + }; + return res; +}; + +const mockSessionToken = () => jwt.sign({ user: 'NODE_USER' }, Common.secret_key); + +test('rejects login without a 2FA token when 2FA is enabled', () => { + setupAppConfig(true, TOTP_SECRET); + for (const missingToken of [undefined, '']) { + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: missingToken }), res, null); + assert.equal(res.statusCode, 401); + assert.match(res.body.error, /2FA/); + } +}); + +test('rejects login with an invalid 2FA token when 2FA is enabled', () => { + setupAppConfig(true, TOTP_SECRET); + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: '000000' }), res, null); + assert.equal(res.statusCode, 401); + assert.match(res.body.error, /2FA/); +}); + +test('rejects a non-string 2FA token when 2FA is enabled', () => { + setupAppConfig(true, TOTP_SECRET); + // A JSON body can carry an array/object/number. otplib 12.0.1 coerces and rejects these + // (digit regex, then strict === against the string token), but the typeof guard keeps the + // rejection explicit and independent of otplib internals. + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: ['1', '2', '3', '4', '5', '6'] }), res, null); + assert.equal(res.statusCode, 401); + assert.match(res.body.error, /2FA/); +}); + +test('accepts login with a valid 2FA token when 2FA is enabled', () => { + setupAppConfig(true, TOTP_SECRET); + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: authenticator.generate(TOTP_SECRET) }), res, null); + assert.equal(res.statusCode, 200); + assert.equal(typeof res.body.token, 'string'); +}); + +test('accepts password-only re-authorization from an authenticated session when 2FA is enabled', () => { + // In-app re-authorization (e.g. the password prompt before on-chain sends) carries the + // session JWT via the auth interceptor; that session was itself minted after 2FA. + setupAppConfig(true, TOTP_SECRET); + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: undefined, authToken: mockSessionToken() }), res, null); + assert.equal(res.statusCode, 200); + assert.equal(typeof res.body.token, 'string'); +}); + +test('rejects a wrong password even with an authenticated session when 2FA is enabled', () => { + setupAppConfig(true, TOTP_SECRET); + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: undefined, authToken: mockSessionToken(), password: 'wrong-hash' }), res, null); + assert.equal(res.statusCode, 401); + assert.match(res.body.error, /Invalid Password/); +}); + +test('locks out after five failed 2FA attempts, even for a then-valid token', () => { + setupAppConfig(true, TOTP_SECRET); + const ip = nextIP(); // one shared counter key for every attempt in this test + for (let i = 0; i < 4; i++) { + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: '000000', ip: ip }), res, null); + assert.equal(res.statusCode, 401); + assert.match(res.body.error, /2FA/); + } + const fifth = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: '000000', ip: ip }), fifth, null); + assert.equal(fifth.statusCode, 401); + assert.match(fifth.body.error, /locked/); + const sixth = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: authenticator.generate(TOTP_SECRET), ip: ip }), sixth, null); + assert.equal(sixth.statusCode, 401); + assert.match(sixth.body.error, /locked/); +}); + +test('accepts password-only login when 2FA is not configured', () => { + setupAppConfig(false, ''); + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: undefined }), res, null); + assert.equal(res.statusCode, 200); + assert.equal(typeof res.body.token, 'string'); +}); + +test('accepts a stale token in the request when 2FA is not configured', () => { + // Pins an intentional behavior change: previously a non-empty twoFAToken with no + // configured secret was rejected (verifyToken short-circuits on the empty secret); + // with no 2FA configured the token is now ignored entirely. + setupAppConfig(false, ''); + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: '123456' }), res, null); + assert.equal(res.statusCode, 200); + assert.equal(typeof res.body.token, 'string'); +}); + +test('does not require a token when 2FA is disabled but a stale secret remains', () => { + // The login UI prompts only when enable2FA is set, so enforcing a token on a stale + // secret would lock the operator out of a UI that never asks for one. + setupAppConfig(false, TOTP_SECRET); + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: undefined }), res, null); + assert.equal(res.statusCode, 200); + assert.equal(typeof res.body.token, 'string'); +}); + +test('does not enforce a token when 2FA is enabled without a secret', () => { + // Divergence is only reachable via a crafted settings update; a token could never + // verify against an empty secret, so enforcing would lock everyone out. + setupAppConfig(true, ''); + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: undefined }), res, null); + assert.equal(res.statusCode, 200); + assert.equal(typeof res.body.token, 'string'); +}); diff --git a/test/backend/common.test.mjs b/test/backend/common.test.mjs new file mode 100644 index 00000000..5b49f5bd --- /dev/null +++ b/test/backend/common.test.mjs @@ -0,0 +1,209 @@ +import assert from 'node:assert/strict'; +import test from 'node:test'; + +import { Common } from '../../backend/utils/common.js'; + +test('maskPasswords masks TOTP and SSO cookie secrets along with passwords', () => { + const config = { + secret2FA: 'JBSWY3DPEHPK3PXP', + multiPassHashed: 'password-hash', + SSO: { rtlSSO: 1, rtlCookiePath: '/cookie-path', cookieValue: 'live-sso-cookie' }, + nodes: [{ index: 1, authentication: { lnApiPassword: 'eclair-pass', macaroonPath: '/macaroon/path' } }] + }; + const masked = Common.maskPasswords(config); + assert.equal(masked.secret2FA, '*'.repeat(20)); + assert.equal(masked.SSO.cookieValue, '*'.repeat(20)); + assert.equal(masked.multiPassHashed, '*'.repeat(20)); + assert.equal(masked.nodes[0].authentication.lnApiPassword, '*'.repeat(20)); + // Paths are configuration, not secrets — they must stay visible for the settings UI. + assert.equal(masked.nodes[0].authentication.macaroonPath, '/macaroon/path'); + assert.equal(masked.SSO.rtlCookiePath, '/cookie-path'); +}); + +test('removeSecureData strips the SSO cookie along with the other secrets', () => { + const config = { + rtlConfFilePath: '/conf', + rtlPass: 'password-hash', + multiPassHashed: 'password-hash', + secret2FA: 'JBSWY3DPEHPK3PXP', + SSO: { rtlSSO: 1, rtlCookiePath: '/cookie-path', logoutRedirectLink: '', cookieValue: 'live-sso-cookie' }, + nodes: [{ index: 1, authentication: { macaroonPath: '/macaroon/path', runeValue: 'rune', options: {} } }] + }; + const cleaned = Common.removeSecureData(config); + assert.equal(cleaned.rtlConfFilePath, undefined); + assert.equal(cleaned.rtlPass, undefined); + assert.equal(cleaned.multiPassHashed, undefined); + assert.equal(cleaned.secret2FA, undefined); + assert.equal(cleaned.SSO.cookieValue, undefined); + // Non-secret SSO settings survive — the settings UI renders them. + assert.equal(cleaned.SSO.rtlCookiePath, '/cookie-path'); + assert.equal(cleaned.nodes[0].authentication.macaroonPath, undefined); +}); + +test('removeSecureData does not mutate its input', () => { + // cookieValue is runtime-only: if a caller ever passes the live appConfig, an in-place + // delete would wipe SSO state with no way to restore it. The function must clone. + const config = { rtlPass: 'password-hash', SSO: { cookieValue: 'live-sso-cookie' }, nodes: [] }; + Common.removeSecureData(config); + assert.equal(config.rtlPass, 'password-hash'); + assert.equal(config.SSO.cookieValue, 'live-sso-cookie'); +}); + +test('maskPasswords masks rtlPass and runeValue', () => { + const config = { + rtlPass: 'login-hash', + nodes: [{ index: 1, authentication: { runeValue: 'cln-rune' } }] + }; + const masked = Common.maskPasswords(config); + assert.equal(masked.rtlPass, '*'.repeat(20)); + assert.equal(masked.nodes[0].authentication.runeValue, '*'.repeat(20)); +}); + +test('maskPasswords tolerates null values and numeric keys without skipping secrets', () => { + // Integer-like keys order first; the recursion must not clobber its own key list, and + // typeof null === 'object' must not send it into Object.keys(null). + const config = { '1': { nested: 'value' }, lnApiPassword: 'eclair-pass', nothing: null }; + const masked = Common.maskPasswords(config); + assert.equal(masked.lnApiPassword, '*'.repeat(20)); + assert.equal(masked.nothing, null); + assert.deepEqual(masked['1'], { nested: 'value' }); +}); + +test('handleError does not echo the absolute file path to the caller', () => { + // The path belongs in the server log, not in the API response. + const err = Common.handleError({ code: 'ENOENT', path: '/secret/dir/RTL-Config.json' }, 'Test', 'Reading Config Error', { lnImplementation: 'LND', settings: {} }); + assert.equal(err.error.includes('/secret/dir'), false); + assert.equal(err.message.includes('/secret/dir'), false); +}); + +test('handleError keeps the absolute path out of controller-wrapped errors too', () => { + // RTLConf handlers pass { statusCode, message, error: errRes } wrappers; the response + // must resolve to the caller's generic message, never the wrapped fs error's path. + const err = Common.handleError( + { statusCode: 500, message: 'Reading File Error', error: { code: 'ENOENT', path: '/secret/dir/x.bak' } }, + 'Test', 'Reading File Error', { lnImplementation: 'LND', settings: {} } + ); + assert.equal(err.error.includes('/secret/dir'), false); + assert.equal(err.message.includes('/secret/dir'), false); +}); + +test('maskPasswords masks every value under a headers key', () => { + // Header values are always credential carriers here (macaroon, rune, basic auth), and + // key-substring matching cannot catch them without also hiding *Path fields. + const config = { + authentication: { + macaroonPath: '/visible/path', + options: { headers: { 'Grpc-Metadata-macaroon': 'deadbeef', rune: 'cln-rune', authorization: 'Basic xyz' } } + } + }; + const masked = Common.maskPasswords(config); + assert.equal(masked.authentication.options.headers['Grpc-Metadata-macaroon'], '*'.repeat(20)); + assert.equal(masked.authentication.options.headers.rune, '*'.repeat(20)); + assert.equal(masked.authentication.options.headers.authorization, '*'.repeat(20)); + assert.equal(masked.authentication.macaroonPath, '/visible/path'); +}); + +const seedAppConfig = () => { + Common.appConfig = { + defaultNodeIndex: 0, + selectedNodeIndex: 0, + rtlConfFilePath: '/conf', + dbDirectoryPath: '/db', + rtlPass: 'server-hash', + allowPasswordUpdate: true, + enable2FA: true, + secret2FA: 'server-seed', + disableAuth: false, + SSO: { rtlSSO: 0, rtlCookiePath: '/server-cookie', logoutRedirectLink: 'https://server-logout', cookieValue: 'server-cookie' }, + nodes: [] + }; + Common.selectedNode = null; + Common.nodes = []; +}; + +test('addSecureData pins disableAuth and the SSO object to server-held values', () => { + // The settings API must not be able to flip the authentication mode or move SSO fields; + // client-supplied values for these are deployment-level switches, not settings. + seedAppConfig(); + const config = Common.addSecureData({ + disableAuth: true, + SSO: { rtlSSO: 1, rtlCookiePath: '/client-path', logoutRedirectLink: 'https://client', cookieValue: 'client-cookie' }, + secret2FA: 'client-seed', + nodes: [] + }); + assert.equal(config.disableAuth, false); + assert.deepEqual(config.SSO, { rtlSSO: 0, rtlCookiePath: '/server-cookie', logoutRedirectLink: 'https://server-logout', cookieValue: 'server-cookie' }); + // An explicit non-empty seed is the settings UI's enable flow and is honored. + assert.equal(config.secret2FA, 'client-seed'); + assert.equal(config.enable2FA, true); +}); + +test('addSecureData restores an omitted TOTP seed and derives enable2FA from the seed', () => { + seedAppConfig(); + const config = Common.addSecureData({ nodes: [] }); + assert.equal(config.secret2FA, 'server-seed'); + assert.equal(config.enable2FA, true); +}); + +test('addSecureData treats an empty seed with 2FA claimed on as an omission', () => { + // The pre-login config response shape carries secret2FA: ''; echoing it must not wipe + // the seed while enable2FA stays on. + seedAppConfig(); + const config = Common.addSecureData({ secret2FA: '', enable2FA: true, nodes: [] }); + assert.equal(config.secret2FA, 'server-seed'); + assert.equal(config.enable2FA, true); +}); + +test('addSecureData honors an explicit seed wipe only when 2FA is disabled', () => { + // The settings UI's disable flow sends secret2FA: '' together with enable2FA: false. + seedAppConfig(); + const config = Common.addSecureData({ secret2FA: '', enable2FA: false, nodes: [] }); + assert.equal(config.secret2FA, ''); + assert.equal(config.enable2FA, false); +}); + +test('addSecureData does not pin an undefined multiPassHashed over the persisted one', () => { + // First-boot state of a default install: the file already holds multiPassHashed (the + // boot converted it), but the in-memory appConfig still holds plaintext multiPass and + // no hash. Pinning undefined here would erase the only password from the file on save + // and brick the next boot. + seedAppConfig(); + Common.appConfig.multiPassHashed = undefined; + Common.appConfig.multiPass = 'password'; + const config = Common.addSecureData({ nodes: [] }); + assert.equal(Object.prototype.hasOwnProperty.call(config, 'multiPassHashed'), false); + assert.equal(config.multiPass, 'password'); +}); + +test('addSecureData pins multiPassHashed when the server holds one', () => { + seedAppConfig(); + Common.appConfig.multiPassHashed = 'server-hash-value'; + const config = Common.addSecureData({ multiPassHashed: 'client-value', nodes: [] }); + assert.equal(config.multiPassHashed, 'server-hash-value'); +}); + +test('addSecureData pins allowPasswordUpdate and dbDirectoryPath to server-held values', () => { + // allowPasswordUpdate is false precisely when the password is environment-managed, and + // dbDirectoryPath redirects the runtime database — neither is writable from the UI. + seedAppConfig(); + Common.appConfig.allowPasswordUpdate = false; + Common.appConfig.dbDirectoryPath = '/server-db'; + const config = Common.addSecureData({ allowPasswordUpdate: true, dbDirectoryPath: '/client-db', nodes: [] }); + assert.equal(config.allowPasswordUpdate, false); + assert.equal(config.dbDirectoryPath, '/server-db'); +}); + +test('maskPasswords masks bitcoind rpcauth', () => { + const config = { rpcauth: 'user:salt$hmac', rpcuser: 'user', rpcpassword: 'pass' }; + const masked = Common.maskPasswords(config); + assert.equal(masked.rpcauth, '*'.repeat(20)); + assert.equal(masked.rpcuser, '*'.repeat(20)); + assert.equal(masked.rpcpassword, '*'.repeat(20)); +}); + +test('maskPasswords does not mutate its input', () => { + // Masking a live object must not blank the credentials LN requests authenticate with. + const config = { authentication: { options: { headers: { 'Grpc-Metadata-macaroon': 'deadbeef' } } } }; + Common.maskPasswords(config); + assert.equal(config.authentication.options.headers['Grpc-Metadata-macaroon'], 'deadbeef'); +}); diff --git a/test/backend/eclair-channels.test.mjs b/test/backend/eclair-channels.test.mjs new file mode 100644 index 00000000..a1e811e2 --- /dev/null +++ b/test/backend/eclair-channels.test.mjs @@ -0,0 +1,62 @@ +import assert from 'node:assert/strict'; +import { mkdtempSync, readFileSync, rmSync, writeFileSync } from 'node:fs'; +import { tmpdir } from 'node:os'; +import { join } from 'node:path'; +import test from 'node:test'; + +import { getChannels } from '../../backend/controllers/eclair/channels.js'; + +// Eclair authenticates with HTTP basic auth, so the request options carry the node's +// lnApiPassword in the authorization header. A DEBUG log of the whole options object +// therefore writes a recoverable credential into the node log file. +const buildRequest = (logFile) => ({ + session: { + selectedNode: { + index: 1, + lnNode: 'eclair-node', + lnImplementation: 'ECL', + authentication: { + options: { + url: '', + rejectUnauthorized: false, + json: true, + headers: { authorization: 'Basic ' + Buffer.from(':super-secret-password').toString('base64') } + } + }, + settings: { lnServerUrl: 'http://127.0.0.1:1/', logLevel: 'DEBUG', logFile: logFile } + } + }, + query: {} +}); + +const waitForLog = async (logFile) => { + // logger.log appends asynchronously; give it a few turns to flush. + for (let i = 0; i < 40; i++) { + const contents = readFileSync(logFile, 'utf-8'); + if (contents.includes('Channels =>')) { return contents; } + await new Promise((resolve) => setTimeout(resolve, 25)); + } + return readFileSync(logFile, 'utf-8'); +}; + +test('getChannels does not write the eclair auth header to the node log at DEBUG level', async () => { + const tempDir = mkdtempSync(join(tmpdir(), 'ecl-channels-')); + const logFile = join(tempDir, 'RTL-Node-1.log'); + writeFileSync(logFile, ''); + const req = buildRequest(logFile); + const res = { status: () => ({ json: () => { } }) }; + + try { + getChannels(req, res, () => { }); + const contents = await waitForLog(logFile); + + assert.ok(contents.includes('Channels =>'), 'expected the controller to have logged at DEBUG level'); + assert.ok(!contents.includes('authorization'), 'auth header key must not reach the node log'); + assert.ok(!contents.includes('super-secret-password'), 'lnApiPassword must not reach the node log'); + assert.ok(!contents.includes(Buffer.from(':super-secret-password').toString('base64')), 'encoded credential must not reach the node log'); + // The diagnostic value of the log — where the call went — is still there. + assert.ok(contents.includes('/channels'), 'request url should still be logged for diagnostics'); + } finally { + rmSync(tempDir, { force: true, recursive: true }); + } +}); diff --git a/test/backend/rtlconf.test.mjs b/test/backend/rtlconf.test.mjs new file mode 100644 index 00000000..3aafeb1a --- /dev/null +++ b/test/backend/rtlconf.test.mjs @@ -0,0 +1,602 @@ +import assert from 'node:assert/strict'; +import { chmodSync, mkdirSync, mkdtempSync, readFileSync, rmSync, statSync, writeFileSync } from 'node:fs'; +import { tmpdir } from 'node:os'; +import { join, sep } from 'node:path'; +import test from 'node:test'; + +import { updateApplicationSettings, updateNodeSettings, getFile } from '../../backend/controllers/shared/RTLConf.js'; +import { Common } from '../../backend/utils/common.js'; +import { WSServer } from '../../backend/utils/webSocketServer.js'; + +const clone = (value) => JSON.parse(JSON.stringify(value)); + +test('updateApplicationSettings preserves indexed node auth and sanitizes only persisted config', () => { + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-')); + const oldConfig = { + defaultNodeIndex: 0, + dbDirectoryPath: '/db', + SSO: { rtlSSO: 0, rtlCookiePath: '/cookie', logoutRedirectLink: '', cookieValue: '' }, + nodes: [ + { + index: 0, + lnNode: 'lnd-main', + lnImplementation: 'LND', + authentication: { macaroonPath: '/lnd/admin' }, + settings: { userPersona: 'OPERATOR', themeMode: 'DAY' } + }, + { + index: 2, + lnNode: 'cln-secondary', + lnImplementation: 'CLN', + authentication: { runePath: '/cln/rune' }, + settings: { userPersona: 'MERCHANT', themeMode: 'NIGHT', blockExplorerUrl: 'https://old.example' } + } + ] + }; + const runtimeConfig = clone({ + ...oldConfig, + selectedNodeIndex: 2, + enable2FA: true, + allowPasswordUpdate: true, + rtlConfFilePath: tempDir, + rtlPass: 'hashed-password', + multiPassHashed: 'multi-pass-hash', + nodes: [ + { + ...oldConfig.nodes[0], + authentication: { + ...oldConfig.nodes[0].authentication, + options: { headers: { 'Grpc-Metadata-macaroon': 'runtime-lnd-macaroon' } } + } + }, + { + ...oldConfig.nodes[1], + authentication: { + ...oldConfig.nodes[1].authentication, + runeValue: 'runtime-rune', + options: { headers: { rune: 'runtime-rune' } } + } + } + ] + }); + const requestBody = { + defaultNodeIndex: 0, + selectedNodeIndex: 2, + enable2FA: false, + allowPasswordUpdate: false, + dbDirectoryPath: '/db-updated', + secret2FA: '', + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '', cookieValue: '' }, + nodes: [ + { + index: 2, + lnNode: 'cln-secondary', + lnImplementation: 'CLN', + authentication: { swapMacaroonPath: '/loop/cln' }, + settings: { themeMode: 'DAY' } + }, + { + index: 5, + lnNode: 'new-lnd', + lnImplementation: 'LND', + authentication: { macaroonPath: '/new-lnd/admin' }, + settings: { userPersona: 'OPERATOR' } + } + ] + }; + + try { + Common.appConfig = clone(runtimeConfig); + Common.nodes = clone(runtimeConfig.nodes); + Common.selectedNode = Common.nodes[1]; + writeFileSync(join(tempDir, 'RTL-Config.json'), JSON.stringify(oldConfig, null, 2), 'utf-8'); + + let responseStatus; + let responseBody; + updateApplicationSettings( + { body: clone(requestBody), session: { selectedNode: Common.selectedNode } }, + { + status: (status) => { + responseStatus = status; + return { + json: (body) => { + responseBody = body; + } + }; + } + }, + null + ); + + assert.equal(responseStatus, 201); + assert.deepEqual(Common.appConfig.nodes.map((node) => node.index), [0, 2, 5]); + + const runtimeClnNode = Common.appConfig.nodes[1]; + assert.equal(runtimeClnNode.authentication.runePath, '/cln/rune'); + assert.equal(runtimeClnNode.authentication.macaroonPath, undefined); + assert.equal(runtimeClnNode.authentication.runeValue, 'runtime-rune'); + assert.deepEqual(runtimeClnNode.authentication.options, { headers: { rune: 'runtime-rune' } }); + assert.equal(runtimeClnNode.authentication.swapMacaroonPath, '/loop/cln'); + assert.equal(runtimeClnNode.settings.themeMode, 'DAY'); + assert.equal(runtimeClnNode.settings.blockExplorerUrl, 'https://old.example'); + + const fileConfig = JSON.parse(readFileSync(join(tempDir, 'RTL-Config.json'), 'utf-8')); + assert.deepEqual(fileConfig.nodes.map((node) => node.index), [0, 2, 5]); + assert.equal(fileConfig.rtlPass, undefined); + assert.equal(fileConfig.rtlConfFilePath, undefined); + assert.equal(fileConfig.selectedNodeIndex, undefined); + assert.equal(fileConfig.enable2FA, undefined); + assert.equal(fileConfig.allowPasswordUpdate, undefined); + assert.equal(fileConfig.nodes[1].authentication.runePath, '/cln/rune'); + assert.equal(fileConfig.nodes[1].authentication.macaroonPath, undefined); + assert.equal(fileConfig.nodes[1].authentication.runeValue, undefined); + assert.equal(fileConfig.nodes[1].authentication.options, undefined); + assert.equal(responseBody.nodes[1].authentication.runePath, undefined); + } finally { + clearInterval(WSServer.pingInterval); + rmSync(tempDir, { force: true, recursive: true }); + } +}); + +test('updateApplicationSettings keeps the SSO cookie server-side without exposing or persisting it', () => { + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-sso-')); + const oldConfig = { + defaultNodeIndex: 0, + dbDirectoryPath: '/db', + SSO: { rtlSSO: 1, rtlCookiePath: '/cookie-path', logoutRedirectLink: '' }, + nodes: [ + { + index: 0, + lnNode: 'lnd-main', + lnImplementation: 'LND', + authentication: { macaroonPath: '/lnd/admin' }, + settings: { userPersona: 'OPERATOR', themeMode: 'DAY' } + } + ] + }; + const runtimeConfig = clone({ + ...oldConfig, + selectedNodeIndex: 0, + enable2FA: false, + allowPasswordUpdate: true, + rtlConfFilePath: tempDir, + rtlPass: 'hashed-password', + SSO: { rtlSSO: 1, rtlCookiePath: '/cookie-path', logoutRedirectLink: '', cookieValue: 'live-sso-cookie' } + }); + // The request carries only what the sanitized client can have seen: no cookieValue. + // The server must re-attach it — a settings save must never wipe the live cookie — + // while keeping it out of both the response and the persisted file. + const requestBody = { + ...clone(oldConfig), + selectedNodeIndex: 0, + enable2FA: false, + allowPasswordUpdate: true, + SSO: { rtlSSO: 1, rtlCookiePath: '/cookie-path', logoutRedirectLink: '' } + }; + + try { + Common.appConfig = clone(runtimeConfig); + Common.nodes = clone(runtimeConfig.nodes); + Common.selectedNode = Common.nodes[0]; + writeFileSync(join(tempDir, 'RTL-Config.json'), JSON.stringify(oldConfig, null, 2), 'utf-8'); + + let responseStatus; + let responseBody; + updateApplicationSettings( + { body: clone(requestBody), session: { selectedNode: Common.selectedNode } }, + { + status: (status) => { + responseStatus = status; + return { + json: (body) => { + responseBody = body; + } + }; + } + }, + null + ); + + assert.equal(responseStatus, 201); + assert.equal(Common.appConfig.SSO.cookieValue, 'live-sso-cookie'); + assert.equal(Common.appConfig.SSO.rtlCookiePath, '/cookie-path'); + const fileConfig = JSON.parse(readFileSync(join(tempDir, 'RTL-Config.json'), 'utf-8')); + assert.equal(fileConfig.SSO.cookieValue, undefined); + assert.equal(responseBody.SSO.cookieValue, undefined); + } finally { + clearInterval(WSServer.pingInterval); + rmSync(tempDir, { force: true, recursive: true }); + } +}); + +test('updateApplicationSettings restores omitted secret2FA and merges a trimmed SSO object', () => { + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-secrets-')); + const oldConfig = { + defaultNodeIndex: 0, + dbDirectoryPath: '/db', + SSO: { rtlSSO: 0, rtlCookiePath: '/cookie-path', logoutRedirectLink: 'https://logout.example' }, + nodes: [ + { + index: 0, + lnNode: 'lnd-main', + lnImplementation: 'LND', + authentication: { macaroonPath: '/lnd/admin' }, + settings: { userPersona: 'OPERATOR', themeMode: 'DAY' } + } + ] + }; + const runtimeConfig = clone({ + ...oldConfig, + selectedNodeIndex: 0, + enable2FA: true, + allowPasswordUpdate: true, + rtlConfFilePath: tempDir, + rtlPass: 'hashed-password', + secret2FA: 'live-totp-seed', + SSO: { rtlSSO: 0, rtlCookiePath: '/cookie-path', logoutRedirectLink: 'https://logout.example', cookieValue: 'live-sso-cookie' } + }); + // Sanitized responses carry neither secret2FA nor cookieValue, so an echoing client + // omits both; a trimmed SSO object also lacks logoutRedirectLink. All three must + // survive the save server-side. + const requestBody = { + ...clone(oldConfig), + selectedNodeIndex: 0, + enable2FA: true, + allowPasswordUpdate: true, + SSO: { rtlSSO: 0 } + }; + + try { + Common.appConfig = clone(runtimeConfig); + Common.nodes = clone(runtimeConfig.nodes); + Common.selectedNode = Common.nodes[0]; + writeFileSync(join(tempDir, 'RTL-Config.json'), JSON.stringify(oldConfig, null, 2), 'utf-8'); + + let responseStatus; + updateApplicationSettings( + { body: clone(requestBody), session: { selectedNode: Common.selectedNode } }, + { + status: (status) => { + responseStatus = status; + return { json: () => {} }; + } + }, + null + ); + + assert.equal(responseStatus, 201); + assert.equal(Common.appConfig.secret2FA, 'live-totp-seed'); + assert.equal(Common.appConfig.enable2FA, true); + assert.equal(Common.appConfig.SSO.cookieValue, 'live-sso-cookie'); + assert.equal(Common.appConfig.SSO.logoutRedirectLink, 'https://logout.example'); + assert.equal(Common.appConfig.SSO.rtlSSO, 0); + const fileConfig = JSON.parse(readFileSync(join(tempDir, 'RTL-Config.json'), 'utf-8')); + assert.equal(fileConfig.SSO.cookieValue, undefined); + assert.equal(fileConfig.secret2FA, 'live-totp-seed'); + } finally { + clearInterval(WSServer.pingInterval); + rmSync(tempDir, { force: true, recursive: true }); + } +}); + +test('updateApplicationSettings tolerates a request body without an SSO object', () => { + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-nosso-')); + const oldConfig = { + defaultNodeIndex: 0, + dbDirectoryPath: '/db', + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '' }, + nodes: [ + { + index: 0, + lnNode: 'lnd-main', + lnImplementation: 'LND', + authentication: { macaroonPath: '/lnd/admin' }, + settings: { userPersona: 'OPERATOR', themeMode: 'DAY' } + } + ] + }; + const requestBody = clone(oldConfig); + delete requestBody.SSO; + + try { + Common.appConfig = clone({ + ...oldConfig, + selectedNodeIndex: 0, + rtlConfFilePath: tempDir, + rtlPass: 'hashed-password', + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '', cookieValue: '' } + }); + Common.nodes = clone(oldConfig.nodes); + Common.selectedNode = Common.nodes[0]; + writeFileSync(join(tempDir, 'RTL-Config.json'), JSON.stringify(oldConfig, null, 2), 'utf-8'); + + let responseStatus; + updateApplicationSettings( + { body: requestBody, session: { selectedNode: Common.selectedNode } }, + { + status: (status) => { + responseStatus = status; + return { json: () => {} }; + } + }, + null + ); + + assert.equal(responseStatus, 201); + assert.equal(typeof Common.appConfig.SSO, 'object'); + } finally { + clearInterval(WSServer.pingInterval); + rmSync(tempDir, { force: true, recursive: true }); + } +}); + +test('updateApplicationSettings leaves the runtime config untouched when the file write fails', () => { + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-writefail-')); + const confPath = join(tempDir, 'RTL-Config.json'); + const oldConfig = { + defaultNodeIndex: 0, + dbDirectoryPath: '/db', + SSO: { rtlSSO: 0, rtlCookiePath: '/cookie-path', logoutRedirectLink: '' }, + nodes: [ + { + index: 0, + lnNode: 'lnd-main', + lnImplementation: 'LND', + authentication: { macaroonPath: '/lnd/admin' }, + settings: { userPersona: 'OPERATOR', themeMode: 'DAY' } + } + ] + }; + const runtimeConfig = clone({ + ...oldConfig, + selectedNodeIndex: 0, + rtlConfFilePath: tempDir, + rtlPass: 'hashed-password', + secret2FA: 'live-totp-seed', + SSO: { rtlSSO: 0, rtlCookiePath: '/cookie-path', logoutRedirectLink: '', cookieValue: 'live-sso-cookie' } + }); + const requestBody = { + ...clone(oldConfig), + selectedNodeIndex: 0, + SSO: { rtlSSO: 0 }, + nodes: [{ ...clone(oldConfig.nodes[0]), settings: { themeMode: 'NIGHT' } }] + }; + + try { + Common.appConfig = clone(runtimeConfig); + Common.nodes = clone(runtimeConfig.nodes); + Common.selectedNode = Common.nodes[0]; + writeFileSync(confPath, JSON.stringify(oldConfig, null, 2), 'utf-8'); + // Both write paths must fail: a read-only dir defeats the temp-file write, and a + // read-only file defeats the in-place fallback. + chmodSync(confPath, 0o444); + chmodSync(tempDir, 0o555); + + let responseStatus = null; + updateApplicationSettings( + { body: clone(requestBody), session: { selectedNode: Common.selectedNode } }, + { + status: (status) => { + responseStatus = status; + return { json: () => {} }; + } + }, + null + ); + + assert.equal(responseStatus, 500); + // The failed write must not have committed the prospective config in memory either. + assert.equal(Common.appConfig.secret2FA, 'live-totp-seed'); + assert.equal(Common.appConfig.SSO.cookieValue, 'live-sso-cookie'); + assert.equal(Common.appConfig.nodes[0].settings.themeMode, 'DAY'); + // And the on-disk file still parses as the pre-call config. + const onDisk = JSON.parse(readFileSync(confPath, 'utf-8')); + assert.equal(onDisk.nodes.length, 1); + } finally { + clearInterval(WSServer.pingInterval); + chmodSync(confPath, 0o644); + chmodSync(tempDir, 0o755); + rmSync(tempDir, { force: true, recursive: true }); + } +}); + +test('updateApplicationSettings preserves the config file mode across the atomic write', () => { + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-mode-')); + const confPath = join(tempDir, 'RTL-Config.json'); + const oldConfig = { + defaultNodeIndex: 0, + dbDirectoryPath: '/db', + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '' }, + nodes: [ + { + index: 0, + lnNode: 'lnd-main', + lnImplementation: 'LND', + authentication: { macaroonPath: '/lnd/admin' }, + settings: { userPersona: 'OPERATOR', themeMode: 'DAY' } + } + ] + }; + + try { + Common.appConfig = clone({ + ...oldConfig, + selectedNodeIndex: 0, + rtlConfFilePath: tempDir, + rtlPass: 'hashed-password', + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '', cookieValue: '' } + }); + Common.nodes = clone(oldConfig.nodes); + Common.selectedNode = Common.nodes[0]; + writeFileSync(confPath, JSON.stringify(oldConfig, null, 2), 'utf-8'); + chmodSync(confPath, 0o600); // operator-hardened; must not be silently downgraded + + let responseStatus = null; + updateApplicationSettings( + { body: clone(oldConfig), session: { selectedNode: Common.selectedNode } }, + { + status: (status) => { + responseStatus = status; + return { json: () => {} }; + } + }, + null + ); + + assert.equal(responseStatus, 201); + assert.equal(statSync(confPath).mode & 0o777, 0o600); + } finally { + clearInterval(WSServer.pingInterval); + rmSync(tempDir, { force: true, recursive: true }); + } +}); + +test('updateApplicationSettings falls back to an in-place write when the rename fails', () => { + // Single-file bind mounts and symlinks cannot be renamed over; the save must still work. + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-fallback-')); + const confPath = join(tempDir, 'RTL-Config.json'); + const oldConfig = { + defaultNodeIndex: 0, + dbDirectoryPath: '/db', + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '' }, + nodes: [ + { + index: 0, + lnNode: 'lnd-main', + lnImplementation: 'LND', + authentication: { macaroonPath: '/lnd/admin' }, + settings: { userPersona: 'OPERATOR', themeMode: 'DAY' } + } + ] + }; + + try { + Common.appConfig = clone({ + ...oldConfig, + selectedNodeIndex: 0, + rtlConfFilePath: tempDir, + rtlPass: 'hashed-password', + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '', cookieValue: '' } + }); + Common.nodes = clone(oldConfig.nodes); + Common.selectedNode = Common.nodes[0]; + writeFileSync(confPath, JSON.stringify(oldConfig, null, 2), 'utf-8'); + chmodSync(confPath, 0o600); + mkdirSync(confPath + '.tmp'); // forces the temp write to fail, exercising the fallback + + let responseStatus = null; + updateApplicationSettings( + { body: clone(oldConfig), session: { selectedNode: Common.selectedNode } }, + { + status: (status) => { + responseStatus = status; + return { json: () => {} }; + } + }, + null + ); + + assert.equal(responseStatus, 201); + assert.equal(statSync(confPath).mode & 0o777, 0o600); // in-place write keeps the inode + assert.deepEqual(JSON.parse(readFileSync(confPath, 'utf-8')).nodes.length, 1); + } finally { + clearInterval(WSServer.pingInterval); + rmSync(tempDir, { force: true, recursive: true }); + } +}); + +test('updateNodeSettings pins channelBackupPath to the server-held value', () => { + // channelBackupPath anchors getFile's containment root; accepting it from the request + // would let the caller being contained choose the containment base. + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-nodesettings-')); + const oldConfig = { + defaultNodeIndex: 0, + dbDirectoryPath: '/db', + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '' }, + nodes: [ + { + index: 0, + lnNode: 'lnd-main', + lnImplementation: 'LND', + authentication: { macaroonPath: '/lnd/admin' }, + settings: { userPersona: 'OPERATOR', themeMode: 'DAY', channelBackupPath: '/server/backups' } + } + ] + }; + + try { + Common.appConfig = clone({ ...oldConfig, rtlConfFilePath: tempDir }); + Common.nodes = clone(oldConfig.nodes); + Common.selectedNode = Common.nodes[0]; + writeFileSync(join(tempDir, 'RTL-Config.json'), JSON.stringify(oldConfig, null, 2), 'utf-8'); + + let responseStatus = null; + updateNodeSettings( + { + body: { settings: { themeMode: 'NIGHT', channelBackupPath: tempDir } }, + session: { selectedNode: Common.nodes[0] } + }, + { + status: (status) => { + responseStatus = status; + return { json: () => {} }; + } + }, + null + ); + + assert.equal(responseStatus, 201); + const fileNode = JSON.parse(readFileSync(join(tempDir, 'RTL-Config.json'), 'utf-8')).nodes[0]; + assert.equal(fileNode.settings.channelBackupPath, '/server/backups'); + assert.equal(fileNode.settings.themeMode, 'NIGHT'); // other settings still merge + assert.equal(Common.nodes[0].settings.channelBackupPath, '/server/backups'); + } finally { + clearInterval(WSServer.pingInterval); + rmSync(tempDir, { force: true, recursive: true }); + } +}); + +test('getFile contains caller paths to the channel backup directory', async () => { + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-getfile-')); + const backupDir = join(tempDir, 'backups'); + mkdirSync(backupDir); + writeFileSync(join(tempDir, 'secret.bak'), 'top-secret', 'utf-8'); + writeFileSync(join(backupDir, 'channel-1x2x3.bak'), 'backup-data', 'utf-8'); + const session = { selectedNode: { lnImplementation: 'LND', settings: { channelBackupPath: backupDir } } }; + const mockRes = () => { + const res = { statusCode: null, body: null }; + res.status = (code) => { + res.statusCode = code; + return { json: (body) => { res.body = body; } }; + }; + return res; + }; + + try { + // An escaping path is rejected before any read. + const rejected = mockRes(); + getFile({ query: { path: join(tempDir, 'secret.bak') }, session }, rejected, null); + assert.equal(rejected.statusCode, 403); + + // A contained path is served. + const served = mockRes(); + await new Promise((resolve) => { + const res = { status: (code) => { served.statusCode = code; return { json: (body) => { served.body = body; resolve(); } }; } }; + getFile({ query: { path: join(backupDir, 'channel-1x2x3.bak') }, session }, res, null); + }); + assert.equal(served.statusCode, 200); + assert.equal(served.body, 'backup-data'); + + // A contained but missing file returns a path-free error (the ENOENT branch). + const missing = mockRes(); + await new Promise((resolve) => { + const res = { status: (code) => { missing.statusCode = code; return { json: (body) => { missing.body = body; resolve(); } }; } }; + getFile({ query: { path: join(backupDir, 'channel-missing.bak') }, session }, res, null); + }); + assert.equal(missing.statusCode, 500); + assert.equal(JSON.stringify(missing.body).includes(backupDir), false); + } finally { + clearInterval(WSServer.pingInterval); + rmSync(tempDir, { force: true, recursive: true }); + } +}); diff --git a/tsconfig.json b/tsconfig.json index 0ce7fd1e..6a6dd493 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -24,13 +24,7 @@ "lib": [ "ES2022", "dom" - ], - "paths": { - "crypto": ["node_modules/crypto-browserify"], - "stream": ["node_modules/stream-browserify"], - "vm": ["node_modules/vm-browserify"], - "process": ["node_modules/process/browser"] - } + ] }, "include": [ "./server/**/*",